commit 90a72e28746785814abbb21bbe74d21f36c662b9 Author: Adam Goldsmith Date: Tue Sep 29 00:19:59 2020 -0400 Initial Commit - probably last workshop version diff --git a/unpacked.ttslua b/unpacked.ttslua new file mode 100644 index 000000000..ad787d951 --- /dev/null +++ b/unpacked.ttslua @@ -0,0 +1,571 @@ +--[[ 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 +end diff --git a/unpacked.yaml b/unpacked.yaml new file mode 100644 index 000000000..74533c8a6 --- /dev/null +++ b/unpacked.yaml @@ -0,0 +1,3554 @@ +CameraStates: +- null +- Distance: 115.348495 + Position: + x: -53.3735352 + y: -2.5 + z: -2.35673118 + Rotation: + x: 52.0051575 + y: 90.63039 + z: 0.0 + Zoomed: false +- null +- null +- null +- null +- null +- null +- null +- null +Date: 4/25/2020 10:42:14 PM +DecalPallet: [] +Decals: +- CustomDecal: + ImageURL: http://cloud-3.steamusercontent.com/ugc/762723517668191286/060F6D064234DEF36A1D03D7F1948C5AD0048210/ + Name: coreback + Size: 1.0 + Transform: + posX: 19.712471 + posY: 1.45593762 + posZ: -27.474596 + rotX: 89.92599 + rotY: 119.6785 + rotZ: 0.0 + scaleX: 4.5454545 + scaleY: 1.0 + scaleZ: 1.0 +- CustomDecal: + ImageURL: http://cloud-3.steamusercontent.com/ugc/762723517668188427/E36A08E64A32CBF0E49CE9FF4E736DFD15E1ED44/ + Name: coreback + Size: 1.0 + Transform: + posX: 18.1265659 + posY: 1.45798874 + posZ: -28.0173264 + rotX: 89.92867 + rotY: 119.678604 + rotZ: 0.0 + scaleX: 3.37662339 + scaleY: 1.0 + scaleZ: 1.0 +- CustomDecal: + ImageURL: http://cloud-3.steamusercontent.com/ugc/762723517668195080/B2A3C1CD2F5103D2116FFFAC88FAEAAC92A12CEF/ + Name: arrow + Size: 1.5 + Transform: + posX: 20.0233021 + posY: 1.45641136 + posZ: -24.394371 + rotX: 89.92867 + rotY: 119.678604 + rotZ: 0.0 + scaleX: 2.78571415 + scaleY: 1.5 + scaleZ: 1.5 +- CustomDecal: + ImageURL: http://cloud-3.steamusercontent.com/ugc/778493489662313324/9E134E04126C4F4B046B4B9F32BB3076D2A6BA99/ + Name: Skills + Size: 2.0 + Transform: + posX: 61.2332726 + posY: 1.30891752 + posZ: 91.5914 + rotX: 89.98022 + rotY: 89.81581 + rotZ: 0.0 + scaleX: 4.11320734 + scaleY: 2.0 + scaleZ: 2.0 +- CustomDecal: + ImageURL: http://cloud-3.steamusercontent.com/ugc/778493489662313324/9E134E04126C4F4B046B4B9F32BB3076D2A6BA99/ + Name: Skills + Size: 2.0 + Transform: + posX: 27.11481 + posY: 1.29655087 + posZ: 91.67478 + rotX: 89.98022 + rotY: 89.81581 + rotZ: 0.0 + scaleX: 4.11320734 + scaleY: 2.0 + scaleZ: 2.0 +- CustomDecal: + ImageURL: http://cloud-3.steamusercontent.com/ugc/778493489662323727/04AAC3AAF324B6EFA5FCBAB7517E9F60779A4A97/ + Name: Events + Size: 2.0 + Transform: + posX: 21.7725372 + posY: 1.29454148 + posZ: 91.43833 + rotX: 89.98022 + rotY: 89.81581 + rotZ: 0.0 + scaleX: 4.11320734 + scaleY: 2.0 + scaleZ: 2.0 +- CustomDecal: + ImageURL: http://cloud-3.steamusercontent.com/ugc/778493489662323727/04AAC3AAF324B6EFA5FCBAB7517E9F60779A4A97/ + Name: Events + Size: 2.0 + Transform: + posX: 55.82646 + posY: 1.30688775 + posZ: 91.3655548 + rotX: 89.98022 + rotY: 89.81581 + rotZ: 0.0 + scaleX: 4.11320734 + scaleY: 2.0 + scaleZ: 2.0 +- CustomDecal: + ImageURL: http://cloud-3.steamusercontent.com/ugc/778493489662326825/7BDC0073B6F32D95681FC913F1B74367603C3A74/ + Name: Assets + Size: 2.0 + Transform: + posX: 46.9817848 + posY: 1.303688 + posZ: 91.40827 + rotX: 89.98022 + rotY: 89.81581 + rotZ: 0.0 + scaleX: 4.11320734 + scaleY: 2.0 + scaleZ: 2.0 +- CustomDecal: + ImageURL: http://cloud-3.steamusercontent.com/ugc/778493489662326825/7BDC0073B6F32D95681FC913F1B74367603C3A74/ + Name: Assets + Size: 2.0 + Transform: + posX: 13.0595322 + posY: 1.29134977 + posZ: 91.34483 + rotX: 89.98022 + rotY: 89.81581 + rotZ: 0.0 + scaleX: 4.11320734 + scaleY: 2.0 + scaleZ: 2.0 +- CustomDecal: + ImageURL: http://cloud-3.steamusercontent.com/ugc/778493489662365362/5E32F79A20CE08645685B9E21C968B5529F6211B/ + Name: byd1 + Size: 6.0 + Transform: + posX: 66.42334 + posY: 1.31007206 + posZ: 89.09634 + rotX: 90.0 + rotY: 89.6493454 + rotZ: 0.0 + scaleX: 8.856089 + scaleY: 6.0 + scaleZ: 6.0 +- CustomDecal: + ImageURL: http://cloud-3.steamusercontent.com/ugc/778493489662368853/0E71DE1DA56E2C70B71CA2933F79B6AB8C205633/ + Name: byd1 + Size: 6.0 + Transform: + posX: 32.6523666 + posY: 1.29778242 + posZ: 89.0116653 + rotX: 90.0 + rotY: 89.6492844 + rotZ: 0.0 + scaleX: 8.856089 + scaleY: 6.0 + scaleZ: 6.0 +- CustomDecal: + ImageURL: http://cloud-3.steamusercontent.com/ugc/778493489662721586/01BBDCC9C7329160F609CBD25416D94BCB3B3624/ + Name: investigator + Size: 5.0 + Transform: + posX: -2.04820824 + posY: 1.31497526 + posZ: -68.77239 + rotX: 90.0 + rotY: 90.1486 + rotZ: 0.0 + scaleX: 28.95939 + scaleY: 5.0 + scaleZ: 5.0 +- CustomDecal: + ImageURL: http://cloud-3.steamusercontent.com/ugc/778493489662313324/9E134E04126C4F4B046B4B9F32BB3076D2A6BA99/ + Name: Skills + Size: 2.0 + Transform: + posX: 60.9872475 + posY: 1.30847371 + posZ: -48.24206 + rotX: 90.0 + rotY: 89.98215 + rotZ: 0.0 + scaleX: 4.11320734 + scaleY: 2.0 + scaleZ: 2.0 +- CustomDecal: + ImageURL: http://cloud-3.steamusercontent.com/ugc/778493489662323727/04AAC3AAF324B6EFA5FCBAB7517E9F60779A4A97/ + Name: Events + Size: 2.0 + Transform: + posX: 55.54042 + posY: 1.306443 + posZ: -48.4215431 + rotX: 90.0 + rotY: 89.98215 + rotZ: 0.0 + scaleX: 4.11320734 + scaleY: 2.0 + scaleZ: 2.0 +- CustomDecal: + ImageURL: http://cloud-3.steamusercontent.com/ugc/778493489662323727/04AAC3AAF324B6EFA5FCBAB7517E9F60779A4A97/ + Name: Events + Size: 2.0 + Transform: + posX: 21.897892 + posY: 1.29423475 + posZ: -48.3876762 + rotX: 90.0 + rotY: 89.98215 + rotZ: 0.0 + scaleX: 4.11320734 + scaleY: 2.0 + scaleZ: 2.0 +- CustomDecal: + ImageURL: http://cloud-3.steamusercontent.com/ugc/778493489662326825/7BDC0073B6F32D95681FC913F1B74367603C3A74/ + Name: Assets + Size: 2.0 + Transform: + posX: 13.1350346 + posY: 1.32644534 + posZ: -48.4255066 + rotX: 90.0 + rotY: 89.98215 + rotZ: 0.0 + scaleX: 4.11320734 + scaleY: 2.0 + scaleZ: 2.0 +- CustomDecal: + ImageURL: http://cloud-3.steamusercontent.com/ugc/778493489662326825/7BDC0073B6F32D95681FC913F1B74367603C3A74/ + Name: Assets + Size: 2.0 + Transform: + posX: 46.7216225 + posY: 1.30324411 + posZ: -48.40832 + rotX: 90.0 + rotY: 89.98215 + rotZ: 0.0 + scaleX: 4.11320734 + scaleY: 2.0 + scaleZ: 2.0 +- CustomDecal: + ImageURL: http://cloud-3.steamusercontent.com/ugc/778493489662963046/942C2A8A331A0CE8799146E267EECFDDAC120462/ + Name: byd1 + Size: 6.0 + Transform: + posX: 66.00776 + posY: 1.30955052 + posZ: -50.79205 + rotX: 90.0 + rotY: 89.98215 + rotZ: 0.0 + scaleX: 8.856089 + scaleY: 6.0 + scaleZ: 6.0 +- CustomDecal: + ImageURL: http://cloud-3.steamusercontent.com/ugc/778493489662964851/5585B168A6CC0DF9A1C99F87D09FFDBA48CE7836/ + Name: byd1 + Size: 6.0 + Transform: + posX: 32.4619 + posY: 1.29737866 + posZ: -50.7540169 + rotX: 90.0 + rotY: 89.98215 + rotZ: 0.0 + scaleX: 8.856089 + scaleY: 6.0 + scaleZ: 6.0 +- CustomDecal: + ImageURL: http://cloud-3.steamusercontent.com/ugc/778493489662313324/9E134E04126C4F4B046B4B9F32BB3076D2A6BA99/ + Name: Skills + Size: 2.0 + Transform: + posX: 27.0429382 + posY: 1.296181 + posZ: -48.1225853 + rotX: 89.98022 + rotY: 89.81553 + rotZ: 0.0 + scaleX: 4.11320734 + scaleY: 2.0 + scaleZ: 2.0 +- CustomDecal: + ImageURL: http://cloud-3.steamusercontent.com/ugc/778493489663165750/12560E74C12348D568F2AC783038FD0B03B174CB/ + Name: title1 + Size: 3.0 + Transform: + posX: 73.72363 + posY: 1.30945539 + posZ: -60.69058 + rotX: 90.0 + rotY: 90.00583 + rotZ: 0.0 + scaleX: 29.3161755 + scaleY: 3.0 + scaleZ: 3.0 +- CustomDecal: + ImageURL: http://cloud-3.steamusercontent.com/ugc/778493489666540963/2174C8AE6D35379EB36C6D2BFFAF46BFE1034356/ + Name: investigator + Size: 2.5 + Transform: + posX: 74.08891 + posY: 1.31138253 + posZ: 84.06255 + rotX: 90.0 + rotY: 90.31553 + rotZ: 0.0 + scaleX: 19.1489372 + scaleY: 2.5 + scaleZ: 2.5 +- CustomDecal: + ImageURL: http://cloud-3.steamusercontent.com/ugc/1016065907887960215/D7D7C85CE6A43DCECC195C08A479C2AB08364DBE/ + Name: coming soon + Size: 10.0 + Transform: + posX: 32.2491035 + posY: 1.45076382 + posZ: 14.3083544 + rotX: 89.92599 + rotY: 269.944366 + rotZ: 0.0 + scaleX: 10.0 + scaleY: 10.0 + scaleZ: 10.0 +GameMode: Arkham Horror LCG - Super Complete Edition +Gravity: 0.5 +Grid: + BothSnapping: false + Color: + b: 0.0 + g: 0.0 + r: 0.0 + Lines: false + Offset: false + Opacity: 0.75 + PosOffset: + x: 0.0 + y: 1.0 + z: 0.0 + Snapping: false + ThickLines: false + Type: 0 + xSize: 2.0 + ySize: 2.0 +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.6055984 + scaleY: 7.002465 + scaleZ: 6.945379 + - Color: Orange + Transform: + posX: -65.72001 + posY: 6.0 + posZ: -13.61 + rotX: 0.0 + rotY: 90.0 + rotZ: 0.0 + scaleX: 22.6054668 + scaleY: 7.0 + scaleZ: 6.94532728 + - Color: Red + Transform: + posX: -27.96 + posY: 6.0 + posZ: -36.3643074 + rotX: 0.0 + rotY: 1.00179122e-05 + rotZ: 0.0 + scaleX: 21.9605045 + scaleY: 7.0 + scaleZ: 6.517999 + - Color: Green + Transform: + posX: -27.96 + posY: 6.0 + posZ: 36.05262 + rotX: 0.0 + rotY: 180.0 + rotZ: 0.0 + scaleX: 21.9605045 + scaleY: 7.0 + scaleZ: 6.517999 + Hiding: 2 +Lighting: + AmbientEquatorColor: + b: 0.5 + g: 0.5 + r: 0.5 + AmbientGroundColor: + b: 0.5 + g: 0.5 + r: 0.5 + AmbientIntensity: 1.3 + AmbientSkyColor: + b: 0.5 + g: 0.5 + r: 0.5 + AmbientType: 0 + LightColor: + b: 0.8902 + g: 0.9804 + r: 1.0 + LightIntensity: 0.54 + LutContribution: 1.0 + LutIndex: 0 + ReflectionIntensity: 1.0 +LuaScript: !include 'unpacked.ttslua' +LuaScriptState: '' +MusicPlayer: + AudioLibrary: + - Item1: http://cloud-3.steamusercontent.com/ugc/784110538847453001/4481D1CC5684FCF04AB143954DEFE09E94BF5CEB/ + Item2: 'Laudanum - Atrium Carceri: Black Corner Den' + - Item1: http://cloud-3.steamusercontent.com/ugc/784110538847453925/A083A3784DAC15D75513F92C54642D58B05FA996/ + Item2: 'Prepare the Stage of Night - Atrium Carceri: Black Corner Den' + - Item1: http://cloud-3.steamusercontent.com/ugc/784110538847448789/4E04CB9EBECDF5BEA8EF1B146ACAB711D9AF5F0F/ + Item2: 'An Atrementous City - Atrium Carceri: Black Corner Den' + - Item1: http://cloud-3.steamusercontent.com/ugc/784110538847444523/8C8AE52CABE62CF84AEA1B9A6055C0C39375FCDB/ + Item2: 'A Deeper Dream - Atrium Carceri: Black Corner Den' + - Item1: http://cloud-3.steamusercontent.com/ugc/784110538847455056/0D6EAB8903C3B6E44CB2F3F2ACF34297F3757DC4/ + Item2: 'Wind-Up Orchestra - Atrium Carceri: Black Corner Den' + - Item1: http://cloud-3.steamusercontent.com/ugc/784110538847451936/3D8B9C473889956F22DF84285A5BA9ABBCEE4D8F/ + Item2: 'House of Tinctures - Atrium Carceri: Black Corner Den' + - Item1: http://cloud-3.steamusercontent.com/ugc/784110538847450067/DC4A12A8E621CFE19BAB9AB6B6BD30C337B39B27/ + Item2: 'End of the Century - Atrium Carceri: Black Corner Den' + - Item1: http://cloud-3.steamusercontent.com/ugc/784110538843610156/990053307E71986B46045FF0EC8BFABBD6EBE7BF/ + Item2: Cthulhu - Cryo Chamber + - Item1: http://cloud-3.steamusercontent.com/ugc/784110538848438651/B87CFA9DAAB2DDF3ECCD714348B23498AFCC7804/ + Item2: Azathoth 1 - Cryo Chamber + - Item1: http://cloud-3.steamusercontent.com/ugc/784110538848445981/7CAE63540FD2C218DD5B85D53B391C6DE1D0D200/ + Item2: Azathoth 2 - Cryo Chamber + - Item1: http://cloud-3.steamusercontent.com/ugc/784110538848464736/632CB8C59B9E7B0979A40468E0F0AE2ACB1B6B21/ + Item2: Nyarlathotep 1 - Cryo Chamber + - Item1: http://cloud-3.steamusercontent.com/ugc/784110538848480793/17DC9A3323A5381B1DD7316C67F3F554FDC52B27/ + Item2: Nyarlathotep 2 - Cryo Chamber + - Item1: http://cloud-3.steamusercontent.com/ugc/784110538848485973/A65ABDA232410FB64FA0A4BD26431ACDF3E2D46A/ + Item2: Nyarlathotep 3 - Cryo Chamber + - Item1: http://cloud-3.steamusercontent.com/ugc/784110538848495368/3236262EB67C1DFE3DC26574452EDE61B825B201/ + Item2: Shub-Niggurath 1 - Cryo Chamber + - Item1: http://cloud-3.steamusercontent.com/ugc/784110538848498833/955B04EC164A2A2DF6AA683A44451A24E6BC3453/ + Item2: Shub-Niggurath 2 - Cryo Chamber + - Item1: http://cloud-3.steamusercontent.com/ugc/784110538848501343/E56987BC93B5E591A7764C29400DC29CCBFDD3DD/ + Item2: Yog-Sothoth 1 - Cryo Chamber + - Item1: http://cloud-3.steamusercontent.com/ugc/784110538848504941/FA9BA511380775C163A0C0F08FA3D1CA033E68E2/ + Item2: Yog-Sothoth 2 - Cryo Chamber + - Item1: http://cloud-3.steamusercontent.com/ugc/784110538848530903/E08BB3474D49477CAA9B78D3A8AA54FDC757B351/ + Item2: 'The Gargantuan Tower - Atrium Carceri: Metropolis' + - Item1: http://cloud-3.steamusercontent.com/ugc/784110538848530379/F1C98200F021A2471E5575DE934C62C927A8FFA4/ + Item2: 'The Dark Mother - Atrium Carceri: Metropolis' + - Item1: http://cloud-3.steamusercontent.com/ugc/784110538848526667/76C6786A4A463EF6A7E43DE6C407246A8ED5D6F6/ + Item2: 'Across the Sea of the Dead - Atrium Carceri: Metropolis' + - Item1: http://cloud-3.steamusercontent.com/ugc/784110538848527228/A96DC0E3ED5C000807E8C8600BA52F9282FE35EB/ + Item2: 'Black Needle - Atrium Carceri: Metropolis' + - Item1: http://cloud-3.steamusercontent.com/ugc/784110538848527836/48245BF2494C1865834A412BC7E591EA04F3A919/ + Item2: 'Decrepit City - Atrium Carceri: Metropolis' + - Item1: http://cloud-3.steamusercontent.com/ugc/784110538848529472/D4C99D8D6C0E16AB561FA6C190B18E96D808DE8B/ + Item2: 'Sacred Slab - Atrium Carceri: Metropolis' + - Item1: http://cloud-3.steamusercontent.com/ugc/784110538848525938/26EC4322860F6AE86A1EADBED45E91C6E6F599B0/ + Item2: '200 Days - Atrium Carceri: Metropolis' + - Item1: http://cloud-3.steamusercontent.com/ugc/784110538848528926/CC697AF9346939B202B65F863B641DC562039E0F/ + Item2: 'Industrial District - Atrium Carceri: Metropolis' + - Item1: http://cloud-3.steamusercontent.com/ugc/784110538848528271/E2BA3FB96D587B12148FE05FEA5E4E5C886CAA43/ + Item2: 'Heart of the Metropolis - Atrium Carceri: Metropolis' + - Item1: http://cloud-3.steamusercontent.com/ugc/784110538848529861/BC675583A20F58532A065945588D352295AFDDB9/ + Item2: 'The Cowled Seers - Atrium Carceri: Metropolis' + - Item1: http://cloud-3.steamusercontent.com/ugc/784110538848531283/612B88F51901DE770452542640D1F89C9604BDBF/ + Item2: 'The Machine - Atrium Carceri: Metropolis' + CurrentAudioTitle: 'Laudanum - Atrium Carceri: Black Corner Den' + CurrentAudioURL: http://cloud-3.steamusercontent.com/ugc/784110538847453001/4481D1CC5684FCF04AB143954DEFE09E94BF5CEB/ + PlaylistEntry: 0 + RepeatSong: false +Note: '' +ObjectStates: +- !include 'unpacked/Custom_Assetbundle afc863.yaml' +- !include 'unpacked/Custom_Assetbundle c8edca.yaml' +- !include 'unpacked/Custom_Assetbundle 393bf7.yaml' +- !include 'unpacked/Custom_Assetbundle 12c65e.yaml' +- !include 'unpacked/Chinese_Checkers_Piece Flex Table Control bd69bd.yaml' +- !include 'unpacked/Custom_Assetbundle f938a2.yaml' +- !include 'unpacked/Custom_Assetbundle 9f95fd.yaml' +- !include 'unpacked/Custom_Assetbundle 35b95f.yaml' +- !include 'unpacked/Custom_Assetbundle 5af8f2.yaml' +- !include 'unpacked/Custom_Tile 9f334f.yaml' +- !include 'unpacked/Custom_Tile 91dd9b.yaml' +- !include 'unpacked/Custom_Tile Data Helper 708279.yaml' +- !include 'unpacked/Custom_Assetbundle 5706ae.yaml' +- !include 'unpacked/Custom_Tile 6161b4.yaml' +- !include 'unpacked/Custom_Model 7165a9.yaml' +- !include 'unpacked/Custom_Model 87ccfc.yaml' +- !include 'unpacked/Custom_Model 0532e0.yaml' +- !include 'unpacked/Custom_Model a90f21.yaml' +- !include 'unpacked/Custom_Model 180a23.yaml' +- !include 'unpacked/Custom_Model 5d61e2.yaml' +- !include 'unpacked/Custom_Tile 463022.yaml' +- !include 'unpacked/Custom_Tile 9487a4.yaml' +- !include 'unpacked/Custom_Tile 23a43c.yaml' +- !include 'unpacked/Custom_Tile 5450cc.yaml' +- !include 'unpacked/Custom_Token 7bff34.yaml' +- !include 'unpacked/BlockRectangle 402b5e.yaml' +- !include 'unpacked/ScriptingTrigger 83ef06.yaml' +- !include 'unpacked/BlockRectangle 612072.yaml' +- !include 'unpacked/Custom_Model_Infinite_Bag Clue tokens 11e0cf.yaml' +- !include 'unpacked/Custom_Model_Infinite_Bag Doom tokens b015d8.yaml' +- !include 'unpacked/Custom_Token Doom counter 85c4c6.yaml' +- !include 'unpacked/Custom_Model_Bag Arkhamdb bag b85d6d.yaml' +- !include 'unpacked/Custom_Token Playmat Swapper b7b45b.yaml' +- !include 'unpacked/Custom_Tile 2eca7c.yaml' +- !include 'unpacked/Custom_Tile fb09d4.yaml' +- !include 'unpacked/3DText 65eb7e.yaml' +- !include 'unpacked/Custom_Model Neutral 6f53a6.yaml' +- !include 'unpacked/Custom_Model Neutral 9869d0.yaml' +- !include 'unpacked/Custom_Model Neutral 54f7c4.yaml' +- !include 'unpacked/Custom_Model Neutral 09f8c0.yaml' +- !include 'unpacked/Custom_Model Neutral 64a43f.yaml' +- !include 'unpacked/Custom_Model Neutral 1b8aa1.yaml' +- !include 'unpacked/Custom_Model Neutral 0422c7.yaml' +- !include 'unpacked/Custom_Model Neutral 53a5e0.yaml' +- !include 'unpacked/Custom_Model Neutral cbe115.yaml' +- !include 'unpacked/Custom_Model Neutral 307786.yaml' +- !include 'unpacked/Custom_Model Neutral 062773.yaml' +- !include 'unpacked/Custom_Token set active investigators f182ee.yaml' +- !include 'unpacked/ScriptingTrigger c506bf.yaml' +- !include 'unpacked/ScriptingTrigger cbc751.yaml' +- !include 'unpacked/ScriptingTrigger 57c22c.yaml' +- !include 'unpacked/ScriptingTrigger 67ce9a.yaml' +- !include 'unpacked/Card Detailed phase reference 68fe54.yaml' +- !include 'unpacked/Card Rules Index 91c83e.yaml' +- !include 'unpacked/Custom_Token Resources 4406f0.yaml' +- !include 'unpacked/Custom_Token Damage eb08d6.yaml' +- !include 'unpacked/Custom_Token Horror 468e88.yaml' +- !include 'unpacked/Custom_Token Damage e64eec.yaml' +- !include 'unpacked/Custom_Token Horror 0257d9.yaml' +- !include 'unpacked/Custom_Token Resources 816d84.yaml' +- !include 'unpacked/Custom_Token Damage 591a45.yaml' +- !include 'unpacked/Custom_Token Horror beb964.yaml' +- !include 'unpacked/Custom_Token Resources a4b60d.yaml' +- !include 'unpacked/Custom_Token Damage 1f5a0a.yaml' +- !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 2 Orange bd0ff4.yaml' +- !include 'unpacked/Custom_Tile Playermat 4 Red 0840d5.yaml' +- !include 'unpacked/Custom_Tile ArkhamDBTile 928c8e.yaml' +- !include 'unpacked/Custom_Token Playarea 721ba2.yaml' +- !include 'unpacked/Custom_Model 4ee1f2.yaml' +- !include 'unpacked/Custom_Model_Bag The Side Missions 791837.yaml' +- !include 'unpacked/Custom_Model_Bag Campaign Guides fb8135.yaml' +- !include 'unpacked/Custom_Model_Bag Rulebooks, Guides and Tablets 304ffc.yaml' +- !include 'unpacked/Custom_Model f18c2d.yaml' +- !include 'unpacked/Custom_Model 4be4a3.yaml' +- !include 'unpacked/Custom_Model d7c767.yaml' +- !include 'unpacked/Custom_Model 270f7a.yaml' +- !include 'unpacked/Custom_Model f42af3.yaml' +- !include 'unpacked/Custom_Model 0a3b03.yaml' +- !include 'unpacked/Custom_Model 0c05e4.yaml' +- !include 'unpacked/Custom_Model b486bd.yaml' +- !include 'unpacked/Custom_Model_Bag Trash 70b9f6.yaml' +- !include 'unpacked/Custom_Model_Infinite_Bag Resource tokens 0168ae.yaml' +- !include 'unpacked/Custom_Model_Infinite_Bag Horror tokens ae1a4e.yaml' +- !include 'unpacked/Custom_Model_Infinite_Bag Damage Tokens b0ef6c.yaml' +- !include 'unpacked/Custom_Model_Infinite_Bag Connection markers b118af.yaml' +- !include 'unpacked/Custom_Model_Bag Trash 4b8594.yaml' +- !include 'unpacked/Custom_Model_Bag Trash 5f896a.yaml' +- !include 'unpacked/Custom_Model_Bag Trash 147e80.yaml' +- !include 'unpacked/Custom_Model_Bag Trash f7b6c8.yaml' +- !include 'unpacked/Custom_PDF d99993.yaml' +- !include 'unpacked/Custom_Model_Infinite_Bag Doom tokens 16724b.yaml' +- !include 'unpacked/Custom_Model_Infinite_Bag Clue tokens fae2f6.yaml' +- !include 'unpacked/Custom_Model_Infinite_Bag Clue tokens 3b2550.yaml' +- !include 'unpacked/Custom_Model_Infinite_Bag Horror tokens 7bd2a0.yaml' +- !include 'unpacked/Custom_Model_Infinite_Bag Doom tokens 16fcd6.yaml' +- !include 'unpacked/Custom_Model_Infinite_Bag Damage Tokens 93f4a0.yaml' +- !include 'unpacked/Custom_Model_Infinite_Bag Resource tokens fd617a.yaml' +- !include 'unpacked/Custom_Model_Infinite_Bag Connection markers 5dcccb.yaml' +- !include 'unpacked/Custom_Model_Infinite_Bag Clue tokens 31fa39.yaml' +- !include 'unpacked/Custom_Model_Infinite_Bag Horror tokens c3ecf4.yaml' +- !include 'unpacked/Custom_Model_Infinite_Bag Doom tokens 47ffc3.yaml' +- !include 'unpacked/Custom_Model_Infinite_Bag Damage Tokens 480bda.yaml' +- !include 'unpacked/Custom_Model_Infinite_Bag Resource tokens 9fadf9.yaml' +- !include 'unpacked/Custom_Model_Infinite_Bag Connection markers 170f10.yaml' +- !include 'unpacked/Custom_Model Neutral 81729d.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' +- !include 'unpacked/BlockRectangle fd45ba.yaml' +- !include 'unpacked/BlockRectangle 598e49.yaml' +- !include 'unpacked/Custom_Model_Bag Weakness decks 750fdd.yaml' +- !include 'unpacked/BlockRectangle e679ba.yaml' +- !include 'unpacked/3DText e51c92.yaml' +- !include 'unpacked/3DText 6f870e.yaml' +- !include 'unpacked/3DText 778306.yaml' +- !include 'unpacked/3DText ca78c7.yaml' +- !include 'unpacked/3DText 9f04cb.yaml' +- !include 'unpacked/3DText 260e0c.yaml' +- !include 'unpacked/3DText bb4ade.yaml' +- !include 'unpacked/BlockRectangle 8008a9.yaml' +- !include 'unpacked/Custom_Model_Bag Neutral a4d0e8.yaml' +- !include 'unpacked/BlockRectangle 976c46.yaml' +- !include 'unpacked/3DText e85ff9.yaml' +- !include 'unpacked/BlockRectangle 90b6d0.yaml' +- !include 'unpacked/BlockRectangle 6111ed.yaml' +- !include 'unpacked/BlockRectangle 23379e.yaml' +- !include 'unpacked/BlockRectangle a83d14.yaml' +- !include 'unpacked/BlockRectangle fa73f3.yaml' +- !include 'unpacked/BlockRectangle beb9c1.yaml' +- !include 'unpacked/BlockRectangle 784031.yaml' +- !include 'unpacked/3DText b32e04.yaml' +- !include 'unpacked/Custom_Model_Bag Rogue d46fae.yaml' +- !include 'unpacked/Custom_Model_Bag Neutral 065f29.yaml' +- !include 'unpacked/Custom_Model_Bag Rogue eaf093.yaml' +- !include 'unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130.yaml' +- !include 'unpacked/Custom_Model_Bag Encounter Sets fcfa7f.yaml' +- !include 'unpacked/Custom_Model_Bag Survivor 9c814b.yaml' +- !include 'unpacked/Custom_Model_Bag Guardian 1d802b.yaml' +- !include 'unpacked/Custom_Model_Bag Seeker 43a175.yaml' +- !include 'unpacked/Custom_Model_Bag Mystic b4d9bf.yaml' +- !include 'unpacked/Custom_Model_Bag Guardian 816ad8.yaml' +- !include 'unpacked/Custom_Model_Bag Seeker 75373e.yaml' +- !include 'unpacked/Custom_Model_Bag Mystic 64bb5b.yaml' +- !include 'unpacked/Custom_Model_Bag Survivor 432630.yaml' +- !include 'unpacked/FogOfWarTrigger 3aab97.yaml' +- !include 'unpacked/Custom_Token Resources aa9093.yaml' +- !include 'unpacked/Custom_Token Resources 326ec4.yaml' +- !include 'unpacked/Custom_Token Resources 1d8875.yaml' +- !include 'unpacked/Custom_Token Resources 25103c.yaml' +- !include 'unpacked/Custom_Model_Bag Leaked Starter Deck Cards 42cd6e.yaml' +- !include 'unpacked/Custom_Model_Bag Rogue deaa6d.yaml' +- !include 'unpacked/Custom_Model_Bag Mystic 6117a1.yaml' +- !include 'unpacked/Custom_Model_Bag Survivor c02830.yaml' +- !include 'unpacked/Custom_Model_Bag Neutral aef7dd.yaml' +- !include 'unpacked/Custom_Model_Bag Neutral c5261f.yaml' +- !include 'unpacked/Custom_Model_Bag Seeker cb4f32.yaml' +- !include 'unpacked/Custom_Model_Bag Neutral 6aaeb5.yaml' +- !include 'unpacked/Custom_Model_Bag Rogue 0038cb.yaml' +- !include 'unpacked/Custom_Model_Bag Mystic b950f3.yaml' +- !include 'unpacked/Custom_Model_Bag Seeker 37a0cb.yaml' +- !include 'unpacked/Custom_Model_Bag Survivor 068ba0.yaml' +- !include 'unpacked/Custom_Model_Bag Taboo Cards 1fc4e0.yaml' +- !include 'unpacked/Custom_Model_Bag Guardian 402f5d.yaml' +- !include 'unpacked/Custom_Model_Bag Guardian cd002a.yaml' +- !include 'unpacked/Custom_Model_Bag Chaos Bag fea079.yaml' +- !include 'unpacked/Custom_Model_Bag The Dream-Eaters 0240d0.yaml' +- !include 'unpacked/Custom_Model_Bag Core 5579e4.yaml' +- !include 'unpacked/Custom_Model_Bag The Dunwich Legacy df7121.yaml' +- !include 'unpacked/Custom_Model_Bag The Path to Carcosa 1b887c.yaml' +- !include 'unpacked/Custom_Model_Bag The Circle Undone 61e777.yaml' +- !include 'unpacked/Custom_Model_Bag Core 2585f4.yaml' +- !include 'unpacked/Custom_Model_Bag The Dunwich Legacy 5889dd.yaml' +- !include 'unpacked/Custom_Model_Bag The Path to Carcosa 899c3a.yaml' +- !include 'unpacked/Custom_Model_Bag The Forgotten Age 03b888.yaml' +- !include 'unpacked/Custom_Model_Bag The Circle Undone 0dcbe8.yaml' +- !include 'unpacked/Custom_Model_Bag The Dream-Eaters a34f34.yaml' +- !include 'unpacked/Custom_Model_Bag Promo Investigators 35fb9c.yaml' +- !include 'unpacked/Custom_Model_Bag Chaos Token Reserve 106418.yaml' +- !include 'unpacked/Custom_Model_Bag Idol Thoughts 2d417b.yaml' +- !include 'unpacked/3DText 67c2f4.yaml' +- !include 'unpacked/Custom_Tile b9140e.yaml' +- !include 'unpacked/Custom_Model_Bag The Forgotten Age 0ff458.yaml' +- !include 'unpacked/Custom_Token Doom counter 1235d9.yaml' +PlayArea: 1.0 +Rules: '' +SaveName: Arkham Horror LCG - Super Complete Edition +Sky: Sky_Museum +SkyURL: https://i.imgur.com/GkQqaOF.jpg +SnapPoints: +- Position: + x: -3.845435 + y: 1.58976722 + z: 10.3834543 + Rotation: + x: 359.919739 + y: 269.999573 + z: 0.0168350544 +- Position: + x: -2.72472644 + y: 1.585399 + z: 0.373324752 +- Position: + x: -5.31640673 + y: 1.58825409 + z: 0.378317744 +- Position: + x: -2.68854523 + y: 1.58325064 + z: -5.04852962 +- Position: + x: -3.95596576 + y: 1.58430552 + z: -10.4411573 + Rotation: + x: 359.919739 + y: 270.003235 + z: 0.01682912 +- Position: + x: 1.75446582 + y: 1.574745 + z: -14.1857309 + Rotation: + x: 0.0113445576 + y: 315.009125 + z: 0.0220897216 +- Position: + x: -47.7640343 + y: 1.54184234 + z: -21.1023788 + Rotation: + x: 359.9201 + y: 270.000183 + z: 0.0168620814 +- Position: + x: -47.7640343 + y: 1.54165757 + z: -22.3407784 + Rotation: + x: 359.9201 + y: 270.0006 + z: 0.0168691035 +- Position: + x: -47.7640266 + y: 1.54117012 + z: -23.5710926 + Rotation: + x: 359.9201 + y: 270.00058 + z: 0.0168637782 +- Position: + x: -47.7639427 + y: 1.55540693 + z: 23.50612 + Rotation: + x: 359.9201 + y: 270.000366 + z: 0.016871931 +- Position: + x: -47.7639427 + y: 1.55472648 + z: 22.2677231 + Rotation: + x: 359.9201 + y: 270.000977 + z: 0.0168490242 +- Position: + x: -47.7639351 + y: 1.55435538 + z: 21.0374069 + Rotation: + x: 359.9201 + y: 270.0006 + z: 0.0168621428 +- Position: + x: -20.2555027 + y: 1.515446 + z: 19.26074 + Rotation: + x: 359.983154 + y: 0.0197058022 + z: 359.9201 +- Position: + x: -19.0251865 + y: 1.51380873 + z: 19.26075 + Rotation: + x: 359.983154 + y: 0.0200998988 + z: 359.9201 +- Position: + x: -17.7867889 + y: 1.51204312 + z: 19.26075 + Rotation: + x: 359.983154 + y: 0.019635139 + z: 359.9201 +- Position: + x: -20.1443539 + y: 1.50389183 + z: -19.3585243 + Rotation: + x: 0.0168991 + y: 179.987747 + z: 0.07989301 +- Position: + x: -18.9059563 + y: 1.50211513 + z: -19.3585243 + Rotation: + x: 0.0169066451 + y: 179.9881 + z: 0.07989447 +- Position: + x: -17.6756458 + y: 1.50049651 + z: -19.358511 + Rotation: + x: 0.0169040821 + y: 179.987854 + z: 0.07989501 +- Position: + x: -43.37005 + y: 1.64700723 + z: 15.1900015 + Rotation: + x: 359.9201 + y: 270.0276 + z: 0.0168321952 +- Position: + x: -43.370018 + y: 1.64425993 + z: 7.56962061 + Rotation: + x: 359.9201 + y: 270.027618 + z: 0.0168310646 +- Position: + x: -43.3700027 + y: 1.64225531 + z: -0.02999994 + Rotation: + x: 359.9201 + y: 270.0274 + z: 0.0168344658 +- Position: + x: -43.3700638 + y: 1.63971853 + z: -7.7 + Rotation: + x: 359.9201 + y: 270.0277 + z: 0.0168305077 +- Position: + x: -43.37012 + y: 1.63784754 + z: -15.28 + Rotation: + x: 359.9201 + y: 270.027069 + z: 0.0168322 +- Position: + x: -36.7733078 + y: 1.62873137 + z: -15.28 + Rotation: + x: 359.9201 + y: 270.0271 + z: 0.0168333072 +- Position: + x: -36.77326 + y: 1.63104331 + z: -7.7 + Rotation: + x: 359.9201 + y: 270.0277 + z: 0.0168298464 +- Position: + x: -36.77319 + y: 1.63347471 + z: -0.0299996752 + Rotation: + x: 359.9201 + y: 270.027466 + z: 0.016830802 +- Position: + x: -36.77321 + y: 1.63546467 + z: 7.57000065 + Rotation: + x: 359.9201 + y: 270.027649 + z: 0.0168310981 +- Position: + x: -36.77324 + y: 1.6375246 + z: 15.1900024 + Rotation: + x: 359.9201 + y: 270.027466 + z: 0.0168305077 +- Position: + x: -30.224287 + y: 1.62843 + z: 15.1900015 + Rotation: + x: 359.9201 + y: 270.0276 + z: 0.0168302115 +- Position: + x: -30.2242565 + y: 1.62627017 + z: 7.57 + Rotation: + x: 359.9201 + y: 270.027618 + z: 0.0168303512 +- Position: + x: -30.2242374 + y: 1.62384152 + z: -0.0299994443 + Rotation: + x: 359.9201 + y: 270.027466 + z: 0.01683095 +- Position: + x: -30.2243061 + y: 1.62182045 + z: -7.70000029 + Rotation: + x: 359.9201 + y: 270.027679 + z: 0.0168308988 +- Position: + x: -30.2243557 + y: 1.619888 + z: -15.28 + Rotation: + x: 359.9201 + y: 270.026978 + z: 0.0168320984 +- Position: + x: -23.6766357 + y: 1.61027014 + z: -15.2800007 + Rotation: + x: 359.9201 + y: 270.02713 + z: 0.0168321785 +- Position: + x: -23.67659 + y: 1.612856 + z: -7.70000029 + Rotation: + x: 359.9201 + y: 270.027771 + z: 0.0168297477 +- Position: + x: -23.6765213 + y: 1.61451125 + z: -0.0299998261 + Rotation: + x: 359.9201 + y: 270.027466 + z: 0.0168311764 +- Position: + x: -23.67654 + y: 1.6168257 + z: 7.570001 + Rotation: + x: 359.9201 + y: 270.0277 + z: 0.0168301668 +- Position: + x: -23.67657 + y: 1.61912513 + z: 15.1900005 + Rotation: + x: 359.9201 + y: 270.027618 + z: 0.0168319754 +- Position: + x: -17.1200542 + y: 1.61067736 + z: 15.1900005 + Rotation: + x: 359.9201 + y: 270.027527 + z: 0.016832035 +- Position: + x: -17.12002 + y: 1.60809219 + z: 7.57000065 + Rotation: + x: 359.9201 + y: 270.027618 + z: 0.0168309156 +- Position: + x: -17.1200027 + y: 1.6060853 + z: -0.0299997777 + Rotation: + x: 359.9201 + y: 270.027466 + z: 0.0168315787 +- Position: + x: -17.1200714 + y: 1.60347533 + z: -7.70000029 + Rotation: + x: 359.9201 + y: 270.027649 + z: 0.0168311615 +- Position: + x: -17.120121 + y: 1.60156679 + z: -15.2800007 + Rotation: + x: 359.9201 + y: 270.026917 + z: 0.016833229 +- Position: + x: -43.3700027 + y: 1.64513254 + z: 11.46 +- Position: + x: -43.3700027 + y: 1.64333713 + z: 3.86000085 +- Position: + x: -43.3700027 + y: 1.64140487 + z: -3.82999945 +- Position: + x: -43.37 + y: 1.63861811 + z: -11.5100012 +- Position: + x: -36.77319 + y: 1.63090754 + z: -11.51 +- Position: + x: -36.77319 + y: 1.63239479 + z: -3.83 +- Position: + x: -36.7731934 + y: 1.63394141 + z: 3.86000061 +- Position: + x: -36.7731934 + y: 1.63626719 + z: 11.4600019 +- Position: + x: -30.2242413 + y: 1.626422 + z: 11.4600019 +- Position: + x: -30.2242413 + y: 1.62466407 + z: 3.86000085 +- Position: + x: -30.2242374 + y: 1.62282109 + z: -3.82999969 +- Position: + x: -30.2242374 + y: 1.62101281 + z: -11.51 +- Position: + x: -23.6765213 + y: 1.61238325 + z: -11.51 +- Position: + x: -23.6765213 + y: 1.61426854 + z: -3.82999921 +- Position: + x: -23.6765251 + y: 1.61644459 + z: 3.86000013 +- Position: + x: -23.6765251 + y: 1.618611 + z: 11.4600019 +- Position: + x: -17.1200047 + y: 1.6088289 + z: 11.460001 +- Position: + x: -17.1200066 + y: 1.60692859 + z: 3.86000037 +- Position: + x: -17.1200085 + y: 1.6050005 + z: -3.83 +- Position: + x: -17.1200047 + y: 1.60282743 + z: -11.51 +- Position: + x: 22.9514027 + y: 1.45106924 + z: -30.8727665 + Rotation: + x: 359.920563 + y: 300.012024 + z: 359.973663 +- Position: + x: 38.66109 + y: 1.41606772 + z: -36.0124245 + Rotation: + x: 359.929657 + y: 315.014771 + z: 359.953766 +- Position: + x: -5.3694253 + y: 1.58748043 + z: -5.09977245 +- Position: + x: -47.7700577 + y: 1.5540359 + z: 19.7594471 + Rotation: + x: 359.9201 + y: 269.981384 + z: 0.0169203151 +- Position: + x: -47.7703552 + y: 1.55352783 + z: 18.4533367 + Rotation: + x: 359.9201 + y: 269.981384 + z: 0.0169184469 +- Position: + x: -47.76952 + y: 1.54237592 + z: -18.54153 + Rotation: + x: 359.920135 + y: 269.981079 + z: 0.0169145186 +- Position: + x: -47.76952 + y: 1.54228687 + z: -19.84764 + Rotation: + x: 359.9201 + y: 269.981476 + z: 0.016917346 +- Position: + x: -21.2858257 + y: 1.50565612 + z: -19.352438 + Rotation: + x: 0.01685757 + y: 180.003113 + z: 0.0798824951 +- Position: + x: -22.49995 + y: 1.50744331 + z: -19.3514824 + Rotation: + x: 0.0166406352 + y: 180.160553 + z: 0.0799282342 +- Position: + x: -21.5195179 + y: 1.5173384 + z: 19.260006 + Rotation: + x: 359.983124 + y: 0.00329320785 + z: 359.9201 +- Position: + x: -22.8255882 + y: 1.51926339 + z: 19.260004 + Rotation: + x: 359.983154 + y: 0.00271474943 + z: 359.9201 +- Position: + x: -1.46550024 + y: 1.475424 + z: -26.9304066 +- Position: + x: -20.9389057 + y: 1.26746678 + z: 85.60665 +- Position: + x: -20.9389076 + y: 1.26645875 + z: 83.30666 +- Position: + x: -20.9389038 + y: 1.26574934 + z: 81.00666 +- Position: + x: -20.9389019 + y: 1.2649827 + z: 78.70666 +- Position: + x: -20.9388981 + y: 1.26454091 + z: 76.4066544 +- Position: + x: -20.9389 + y: 1.26380777 + z: 74.10665 +- Position: + x: -20.9389133 + y: 1.26316476 + z: 71.80665 +- Position: + x: -20.93891 + y: 1.262509 + z: 69.5066452 +- Position: + x: -20.9389038 + y: 1.26141346 + z: 64.90665 +- Position: + x: -20.9389076 + y: 1.26190877 + z: 67.20665 +- Position: + x: -20.9389057 + y: 1.26024914 + z: 62.6065826 +- Position: + x: -20.9389114 + y: 1.25962758 + z: 60.30655 +- Position: + x: -20.9389133 + y: 1.25898314 + z: 58.00654 +- Position: + x: -20.93891 + y: 1.25834715 + z: 55.70664 +- Position: + x: -20.9389076 + y: 1.2578826 + z: 53.40664 +- Position: + x: -20.93687 + y: 1.25715 + z: 51.10642 +- Position: + x: -24.4533653 + y: 1.26596868 + z: 85.59461 +- Position: + x: -24.453371 + y: 1.26535738 + z: 83.2946243 +- Position: + x: -24.4533672 + y: 1.26434422 + z: 80.99462 +- Position: + x: -24.45337 + y: 1.26368392 + z: 78.69461 +- Position: + x: -24.4533634 + y: 1.26301813 + z: 76.39461 +- Position: + x: -24.453371 + y: 1.262502 + z: 74.0946045 +- Position: + x: -24.4533768 + y: 1.2617588 + z: 71.7946 +- Position: + x: -24.4533768 + y: 1.26133192 + z: 69.4946 +- Position: + x: -24.453373 + y: 1.2606411 + z: 67.1946 +- Position: + x: -24.453371 + y: 1.2598412 + z: 64.8946 +- Position: + x: -24.4533749 + y: 1.259108 + z: 62.594532 +- Position: + x: -24.45338 + y: 1.25863564 + z: 60.29453 +- Position: + x: -24.4534 + y: 1.25791037 + z: 57.994503 +- Position: + x: -24.4533978 + y: 1.25690889 + z: 55.6946 +- Position: + x: -24.4446354 + y: 1.25593579 + z: 51.0944252 +- Position: + x: -24.45326 + y: 1.25634432 + z: 53.3946381 +- Position: + x: -20.8025455 + y: 1.26917124 + z: 91.59857 +- Position: + x: -33.8014221 + y: 1.26442635 + z: 91.60342 +- Position: + x: -33.8782272 + y: 1.262609 + z: 85.60903 +- Position: + x: -33.8782272 + y: 1.26209974 + z: 83.3090439 +- Position: + x: -37.3926849 + y: 1.261385 + z: 85.59699 +- Position: + x: -37.3926926 + y: 1.26059008 + z: 83.2970047 +- Position: + x: -37.39269 + y: 1.25996923 + z: 80.997 +- Position: + x: -33.8782234 + y: 1.26102686 + z: 81.00904 +- Position: + x: -33.8782234 + y: 1.26047421 + z: 78.70904 +- Position: + x: -37.39269 + y: 1.25935566 + z: 78.69699 +- Position: + x: -37.3926926 + y: 1.25817132 + z: 74.0969849 +- Position: + x: -33.87822 + y: 1.259699 + z: 76.4090347 +- Position: + x: -37.3926849 + y: 1.25872183 + z: 76.39699 +- Position: + x: -33.87822 + y: 1.2591089 + z: 74.10903 +- Position: + x: -33.8782349 + y: 1.258448 + z: 71.80903 +- Position: + x: -37.3926964 + y: 1.25731874 + z: 71.79698 +- Position: + x: -37.3926964 + y: 1.25662065 + z: 69.49698 +- Position: + x: -33.87823 + y: 1.25750113 + z: 69.5090256 +- Position: + x: -33.8782272 + y: 1.25697291 + z: 67.20903 +- Position: + x: -37.3926926 + y: 1.25570011 + z: 67.19698 +- Position: + x: -37.3926926 + y: 1.25489891 + z: 64.89698 +- Position: + x: -33.8782234 + y: 1.2563194 + z: 64.90903 +- Position: + x: -33.8782272 + y: 1.25568974 + z: 62.60879 +- Position: + x: -37.3926964 + y: 1.25411487 + z: 62.59674 +- Position: + x: -37.3927 + y: 1.2536732 + z: 60.2967377 +- Position: + x: -33.87823 + y: 1.25482333 + z: 60.3087578 +- Position: + x: -33.8782349 + y: 1.2545011 + z: 58.0087471 +- Position: + x: -37.39272 + y: 1.25332761 + z: 57.99671 +- Position: + x: -37.39272 + y: 1.2524116 + z: 55.6968079 +- Position: + x: -33.87823 + y: 1.2535708 + z: 55.708847 +- Position: + x: -33.8782272 + y: 1.25299418 + z: 53.4088478 +- Position: + x: -37.3925819 + y: 1.25163436 + z: 53.3968468 +- Position: + x: -37.3839569 + y: 1.25111818 + z: 51.0966339 +- Position: + x: -33.87619 + y: 1.25225854 + z: 51.1086273 +- Position: + x: 37.2278175 + y: 1.28320289 + z: 70.5374 +- Position: + x: 62.5637169 + y: 1.29313 + z: 70.53486 +- Position: + x: 66.61391 + y: 1.29616284 + z: 75.8792953 +- Position: + x: 66.5779953 + y: 1.294907 + z: 70.50754 +- Position: + x: 66.5937347 + y: 1.29304647 + z: 65.0752258 +- Position: + x: 66.5834 + y: 1.29176581 + z: 59.6779671 +- Position: + x: 66.57824 + y: 1.290194 + z: 54.34889 +- Position: + x: 66.59369 + y: 1.288504 + z: 49.02466 +- Position: + x: 3.50752234 + y: 1.27286875 + z: 70.54001 +- Position: + x: 7.01576233 + y: 1.27948463 + z: 92.44871 +- Position: + x: 7.015757 + y: 1.27880454 + z: 90.14872 +- Position: + x: 10.5688543 + y: 1.27985168 + z: 90.16075 +- Position: + x: 10.5688581 + y: 1.28065729 + z: 92.46074 +- Position: + x: 10.5688591 + y: 1.27966821 + z: 87.86075 +- Position: + x: 7.015761 + y: 1.27787244 + z: 87.84872 +- Position: + x: 7.01575851 + y: 1.27752852 + z: 85.5487061 +- Position: + x: 10.5688591 + y: 1.27841532 + z: 85.5607452 +- Position: + x: 10.5688629 + y: 1.27727687 + z: 83.26074 +- Position: + x: 7.015766 + y: 1.27657807 + z: 83.2487 +- Position: + x: 7.01575661 + y: 1.27631176 + z: 80.9487 +- Position: + x: 10.568861 + y: 1.27718866 + z: 80.96074 +- Position: + x: 10.5688486 + y: 1.27665031 + z: 78.6607361 +- Position: + x: 7.01575136 + y: 1.27522457 + z: 78.6487 +- Position: + x: 7.015752 + y: 1.27480459 + z: 76.3486938 +- Position: + x: 10.5688534 + y: 1.2757057 + z: 76.36073 +- Position: + x: 10.5688572 + y: 1.27526021 + z: 74.06074 +- Position: + x: 7.015757 + y: 1.27410209 + z: 74.0487 +- Position: + x: 7.01575661 + y: 1.27343428 + z: 71.7486954 +- Position: + x: 10.56886 + y: 1.27433491 + z: 71.7607346 +- Position: + x: 10.5688543 + y: 1.27388811 + z: 69.46073 +- Position: + x: 7.01575136 + y: 1.27282774 + z: 69.44869 +- Position: + x: 7.015745 + y: 1.27190745 + z: 67.14869 +- Position: + x: 10.5688486 + y: 1.27289593 + z: 67.1607 +- Position: + x: 10.5688477 + y: 1.27257442 + z: 64.86069 +- Position: + x: 7.015724 + y: 1.2716248 + z: 64.84866 +- Position: + x: 7.01572847 + y: 1.2708993 + z: 62.54876 +- Position: + x: 10.5688534 + y: 1.27157724 + z: 62.5607872 +- Position: + x: 10.5688553 + y: 1.27118742 + z: 60.260788 +- Position: + x: 7.015866 + y: 1.27007294 + z: 60.2488 +- Position: + x: 7.01897049 + y: 1.2691958 + z: 57.9485741 +- Position: + x: 10.5687609 + y: 1.2699585 + z: 55.66079 +- Position: + x: 10.5708923 + y: 1.27034569 + z: 57.9605675 +- Position: + x: 7.018971 + y: 1.26869416 + z: 55.64923 +- Position: + x: 10.5688934 + y: 1.26913786 + z: 53.36077 +- Position: + x: 7.01897049 + y: 1.26808763 + z: 53.3492279 +- Position: + x: 10.55307 + y: 1.26868379 + z: 51.07133 +- Position: + x: 7.018971 + y: 1.26739657 + z: 51.0597725 +- Position: + x: 10.5529 + y: 1.26793182 + z: 48.7640038 +- Position: + x: 7.0189724 + y: 1.26687849 + z: 48.75275 +- Position: + x: 15.618392 + y: 1.28249657 + z: 92.4528 +- Position: + x: 15.618392 + y: 1.28172028 + z: 90.15277 +- Position: + x: 15.618392 + y: 1.28105569 + z: 87.8528061 +- Position: + x: 15.6183939 + y: 1.280486 + z: 85.5527954 +- Position: + x: 15.6183929 + y: 1.27977073 + z: 83.25279 +- Position: + x: 15.6183939 + y: 1.27920556 + z: 80.95279 +- Position: + x: 15.618392 + y: 1.278576 + z: 78.65279 +- Position: + x: 15.618392 + y: 1.27781188 + z: 76.35278 +- Position: + x: 15.6183939 + y: 1.2769022 + z: 74.05279 +- Position: + x: 15.6183939 + y: 1.27609718 + z: 71.7527847 +- Position: + x: 15.6183929 + y: 1.27544236 + z: 69.45278 +- Position: + x: 15.618392 + y: 1.27475131 + z: 67.1526947 +- Position: + x: 15.618392 + y: 1.27422774 + z: 64.85267 +- Position: + x: 15.618392 + y: 1.27378035 + z: 62.5527649 +- Position: + x: 15.618392 + y: 1.27304506 + z: 60.2528038 +- Position: + x: 15.6183939 + y: 1.2721076 + z: 57.95258 +- Position: + x: 15.6183939 + y: 1.27158046 + z: 55.6527977 +- Position: + x: 15.61839 + y: 1.27097058 + z: 53.35279 +- Position: + x: 15.6027021 + y: 1.270357 + z: 51.06334 +- Position: + x: 15.6023245 + y: 1.26981318 + z: 48.75681 +- Position: + x: 19.2681637 + y: 1.27094579 + z: 48.74529 +- Position: + x: 19.268322 + y: 1.27157021 + z: 51.05174 +- Position: + x: 19.2841434 + y: 1.27217364 + z: 53.34118 +- Position: + x: 19.28401 + y: 1.27290571 + z: 55.6411972 +- Position: + x: 19.2861385 + y: 1.27361393 + z: 57.9409752 +- Position: + x: 19.2841053 + y: 1.27427375 + z: 60.2411957 +- Position: + x: 19.2841053 + y: 1.274904 + z: 62.5411949 +- Position: + x: 19.2840977 + y: 1.27549374 + z: 64.841095 +- Position: + x: 19.2841015 + y: 1.27632153 + z: 67.1411057 +- Position: + x: 19.2841015 + y: 1.27722418 + z: 69.44122 +- Position: + x: 19.2841034 + y: 1.27778184 + z: 71.74123 +- Position: + x: 19.2841034 + y: 1.27829564 + z: 74.04123 +- Position: + x: 19.2840977 + y: 1.279033 + z: 76.3412247 +- Position: + x: 19.2841072 + y: 1.27946568 + z: 78.64123 +- Position: + x: 19.2841072 + y: 1.28029776 + z: 80.94123 +- Position: + x: 19.284111 + y: 1.2810564 + z: 83.2412338 +- Position: + x: 19.2841129 + y: 1.28163671 + z: 85.54124 +- Position: + x: 19.2841072 + y: 1.2821939 + z: 87.84124 +- Position: + x: 19.284111 + y: 1.28341722 + z: 90.14124 +- Position: + x: 19.2841129 + y: 1.28383148 + z: 92.44123 +- Position: + x: 24.4393864 + y: 1.28555894 + z: 92.39038 +- Position: + x: 24.439394 + y: 1.2850647 + z: 90.0903854 +- Position: + x: 24.4393978 + y: 1.28444541 + z: 87.79039 +- Position: + x: 24.439394 + y: 1.28386235 + z: 85.49038 +- Position: + x: 24.43941 + y: 1.28331983 + z: 83.1903839 +- Position: + x: 24.4393787 + y: 1.282383 + z: 80.8903656 +- Position: + x: 24.43939 + y: 1.28175271 + z: 78.59038 +- Position: + x: 24.4393845 + y: 1.28111815 + z: 76.2903748 +- Position: + x: 24.439394 + y: 1.28045738 + z: 73.99038 +- Position: + x: 24.4393864 + y: 1.27957439 + z: 71.69038 +- Position: + x: 24.43939 + y: 1.27911115 + z: 69.39037 +- Position: + x: 24.43939 + y: 1.278357 + z: 67.09025 +- Position: + x: 24.4393864 + y: 1.27746212 + z: 64.7902451 +- Position: + x: 24.4393864 + y: 1.2770915 + z: 62.4903374 +- Position: + x: 24.4393826 + y: 1.27609587 + z: 60.19034 +- Position: + x: 24.4414349 + y: 1.275549 + z: 57.8901176 +- Position: + x: 24.439291 + y: 1.27480686 + z: 55.59034 +- Position: + x: 24.43943 + y: 1.27408791 + z: 53.29033 +- Position: + x: 24.4236012 + y: 1.27369976 + z: 51.000885 +- Position: + x: 24.4255886 + y: 1.27273834 + z: 48.64892 +- Position: + x: 40.9634361 + y: 1.27867866 + z: 48.75275 +- Position: + x: 44.4973679 + y: 1.27999043 + z: 48.7640038 +- Position: + x: 44.49754 + y: 1.28049874 + z: 51.07133 +- Position: + x: 40.9634361 + y: 1.2794311 + z: 51.0597725 +- Position: + x: 40.9634361 + y: 1.28026581 + z: 53.3492279 +- Position: + x: 44.51336 + y: 1.28135872 + z: 53.36077 +- Position: + x: 44.51323 + y: 1.28220212 + z: 55.66079 +- Position: + x: 40.9634361 + y: 1.28108048 + z: 55.64923 +- Position: + x: 40.9634361 + y: 1.28155029 + z: 57.9485741 +- Position: + x: 44.5153542 + y: 1.28290355 + z: 57.9605675 +- Position: + x: 44.5133171 + y: 1.28334069 + z: 60.260788 +- Position: + x: 40.96033 + y: 1.28247023 + z: 60.2488 +- Position: + x: 40.9601936 + y: 1.28316569 + z: 62.54876 +- Position: + x: 44.5133171 + y: 1.2841984 + z: 62.5607872 +- Position: + x: 44.5133133 + y: 1.2848525 + z: 64.86069 +- Position: + x: 40.96019 + y: 1.2840817 + z: 64.84866 +- Position: + x: 40.9602127 + y: 1.28449643 + z: 67.14869 +- Position: + x: 44.5133133 + y: 1.28557062 + z: 67.1607 +- Position: + x: 44.5133171 + y: 1.28613317 + z: 69.46073 +- Position: + x: 40.9602127 + y: 1.28530955 + z: 69.44869 +- Position: + x: 40.96022 + y: 1.28582716 + z: 71.7486954 +- Position: + x: 44.51332 + y: 1.28678668 + z: 71.7607346 +- Position: + x: 44.5133171 + y: 1.28763461 + z: 74.06074 +- Position: + x: 40.9602165 + y: 1.28676808 + z: 74.0487 +- Position: + x: 40.9602165 + y: 1.28737 + z: 76.3486938 +- Position: + x: 44.5133171 + y: 1.2882973 + z: 76.36073 +- Position: + x: 44.5133171 + y: 1.28890324 + z: 78.6607361 +- Position: + x: 40.9602127 + y: 1.28790629 + z: 78.6487 +- Position: + x: 40.9602242 + y: 1.28869033 + z: 80.9487 +- Position: + x: 44.5133247 + y: 1.28948355 + z: 80.96074 +- Position: + x: 44.51333 + y: 1.29005146 + z: 83.26074 +- Position: + x: 40.960228 + y: 1.28926826 + z: 83.2487 +- Position: + x: 40.960228 + y: 1.29017448 + z: 85.5487061 +- Position: + x: 44.51333 + y: 1.29109383 + z: 85.5607452 +- Position: + x: 44.5133247 + y: 1.29181123 + z: 87.86075 +- Position: + x: 40.9602242 + y: 1.29071677 + z: 87.84872 +- Position: + x: 40.9602242 + y: 1.29106641 + z: 90.14872 +- Position: + x: 44.51332 + y: 1.29212594 + z: 90.16075 +- Position: + x: 44.5133247 + y: 1.29288888 + z: 92.46074 +- Position: + x: 40.9602242 + y: 1.29189122 + z: 92.44871 +- Position: + x: 49.56286 + y: 1.29470038 + z: 92.4528 +- Position: + x: 53.2285767 + y: 1.29660666 + z: 92.44123 +- Position: + x: 53.2285767 + y: 1.29568541 + z: 90.14124 +- Position: + x: 49.56286 + y: 1.29423237 + z: 90.15277 +- Position: + x: 49.56286 + y: 1.293214 + z: 85.5527954 +- Position: + x: 53.2285767 + y: 1.2948004 + z: 87.84124 +- Position: + x: 49.56286 + y: 1.29357529 + z: 87.8528061 +- Position: + x: 53.22858 + y: 1.29403818 + z: 85.54124 +- Position: + x: 49.56286 + y: 1.29238141 + z: 83.25279 +- Position: + x: 53.22858 + y: 1.29348159 + z: 83.2412338 +- Position: + x: 49.56286 + y: 1.29205048 + z: 80.95279 +- Position: + x: 53.2285767 + y: 1.29293251 + z: 80.94123 +- Position: + x: 49.56286 + y: 1.291133 + z: 78.65279 +- Position: + x: 53.22857 + y: 1.29205287 + z: 78.64123 +- Position: + x: 49.56286 + y: 1.289854 + z: 74.05279 +- Position: + x: 53.22857 + y: 1.29160774 + z: 76.3412247 +- Position: + x: 49.56286 + y: 1.29015315 + z: 76.35278 +- Position: + x: 53.2285728 + y: 1.2909112 + z: 74.04123 +- Position: + x: 49.56286 + y: 1.288802 + z: 71.7527847 +- Position: + x: 53.2285728 + y: 1.289899 + z: 71.74123 +- Position: + x: 49.56286 + y: 1.28820527 + z: 69.45278 +- Position: + x: 53.22857 + y: 1.28912687 + z: 69.44122 +- Position: + x: 49.56286 + y: 1.28758645 + z: 67.1526947 +- Position: + x: 53.2285652 + y: 1.28840756 + z: 67.1411057 +- Position: + x: 53.2285652 + y: 1.28799891 + z: 64.841095 +- Position: + x: 49.56286 + y: 1.28675449 + z: 64.85267 +- Position: + x: 49.56286 + y: 1.28612339 + z: 62.5527649 +- Position: + x: 53.22857 + y: 1.28716826 + z: 62.5411949 +- Position: + x: 53.2306061 + y: 1.286359 + z: 57.9409752 +- Position: + x: 49.56286 + y: 1.285639 + z: 60.2528038 +- Position: + x: 53.22857 + y: 1.28661871 + z: 60.2411957 +- Position: + x: 49.56286 + y: 1.28503168 + z: 57.95258 +- Position: + x: 53.22848 + y: 1.28564227 + z: 55.6411972 +- Position: + x: 49.56286 + y: 1.28426623 + z: 55.6527977 +- Position: + x: 53.22861 + y: 1.28459334 + z: 53.34118 +- Position: + x: 49.54717 + y: 1.28261352 + z: 51.06334 +- Position: + x: 49.56286 + y: 1.28365183 + z: 53.35279 +- Position: + x: 53.21279 + y: 1.2838558 + z: 51.05174 +- Position: + x: 53.21263 + y: 1.28320742 + z: 48.74529 +- Position: + x: 49.54679 + y: 1.28225446 + z: 48.75681 +- Position: + x: 58.3700562 + y: 1.28495312 + z: 48.6489143 +- Position: + x: 58.3680649 + y: 1.28596377 + z: 51.0008774 +- Position: + x: 58.38389 + y: 1.28678489 + z: 53.2903175 +- Position: + x: 58.38375 + y: 1.2875427 + z: 55.5903358 +- Position: + x: 58.38588 + y: 1.28792191 + z: 57.8901138 +- Position: + x: 58.3838425 + y: 1.28834844 + z: 60.1903343 +- Position: + x: 58.3838425 + y: 1.28872633 + z: 62.4903336 +- Position: + x: 58.3838425 + y: 1.29039466 + z: 67.09024 +- Position: + x: 58.3838425 + y: 1.28979969 + z: 64.79024 +- Position: + x: 58.3838425 + y: 1.290749 + z: 69.3903656 +- Position: + x: 58.3838425 + y: 1.29203963 + z: 71.69037 +- Position: + x: 58.3838425 + y: 1.29232371 + z: 73.99037 +- Position: + x: 58.3838425 + y: 1.2929641 + z: 76.29037 +- Position: + x: 58.3838425 + y: 1.293665 + z: 78.59037 +- Position: + x: 58.38385 + y: 1.294165 + z: 80.89037 +- Position: + x: 58.3838577 + y: 1.29487526 + z: 83.19038 +- Position: + x: 58.3838577 + y: 1.2958343 + z: 85.49038 +- Position: + x: 58.38385 + y: 1.2963804 + z: 87.79038 +- Position: + x: 58.38385 + y: 1.29708922 + z: 90.0903854 +- Position: + x: 58.38385 + y: 1.29774785 + z: 92.39037 +- Position: + x: 28.5874481 + y: 1.27948081 + z: 70.53424 +- Position: + x: 32.98367 + y: 1.28400874 + z: 76.4049759 +- Position: + x: 32.9482231 + y: 1.28263986 + z: 71.03354 +- Position: + x: 32.9639626 + y: 1.281022 + z: 65.60122 +- Position: + x: 32.9536247 + y: 1.27946663 + z: 60.2039642 +- Position: + x: 32.94842 + y: 1.27789152 + z: 54.8748856 +- Position: + x: 32.9639168 + y: 1.27612925 + z: 49.5506554 +- Position: + x: -26.3000088 + y: 1.3009671 + z: -53.43685 +- Position: + x: -22.6138859 + y: 1.30193734 + z: -53.4381142 +- Position: + x: -19.3000031 + y: 1.3032428 + z: -53.43582 +- Position: + x: -16.64005 + y: 1.30449986 + z: -52.15201 +- Position: + x: -16.6400528 + y: 1.30425811 + z: -53.3904076 +- Position: + x: -16.6400547 + y: 1.30388188 + z: -54.62073 +- Position: + x: -19.30006 + y: 1.3010509 + z: -61.23324 +- Position: + x: -16.64007 + y: 1.30185783 + z: -61.2309761 +- Position: + x: -16.6400738 + y: 1.30217159 + z: -60.0009766 +- Position: + x: -16.64003 + y: 1.30137312 + z: -62.4609146 +- Position: + x: -22.6169434 + y: 1.2998848 + z: -61.24137 +- Position: + x: -26.3001442 + y: 1.29872739 + z: -61.2409668 +- Position: + x: -26.3001881 + y: 1.29632378 + z: -69.060585 +- Position: + x: -22.615675 + y: 1.297138 + z: -69.0756 +- Position: + x: -19.29586 + y: 1.29860735 + z: -69.06069 +- Position: + x: -16.6400661 + y: 1.29980421 + z: -67.82058 +- Position: + x: -16.6402836 + y: 1.29948664 + z: -69.0602951 +- Position: + x: -16.6400623 + y: 1.29911947 + z: -70.29058 +- Position: + x: -16.6402931 + y: 1.29759026 + z: -75.70543 +- Position: + x: -16.6395817 + y: 1.297198 + z: -76.94563 +- Position: + x: -16.6401215 + y: 1.29682636 + z: -78.17564 +- Position: + x: -19.2935925 + y: 1.29627025 + z: -76.9415359 +- Position: + x: -22.6157455 + y: 1.29521048 + z: -76.94603 +- Position: + x: -26.3001842 + y: 1.293819 + z: -76.94564 +- Position: + x: -26.299593 + y: 1.29146552 + z: -84.81799 +- Position: + x: -22.6168957 + y: 1.29257679 + z: -84.81849 +- Position: + x: -19.2997684 + y: 1.2937001 + z: -84.81817 +- Position: + x: -16.6393929 + y: 1.29451442 + z: -86.0185852 +- Position: + x: -16.6402264 + y: 1.29479432 + z: -84.81819 +- Position: + x: -16.6385555 + y: 1.295311 + z: -83.5415039 +- Position: + x: 62.2793579 + y: 1.29203117 + z: -69.32658 +- Position: + x: 66.3220139 + y: 1.2955277 + z: -63.9796257 +- Position: + x: 66.29916 + y: 1.29411173 + z: -69.3567 +- Position: + x: 66.3143539 + y: 1.292618 + z: -74.78968 +- Position: + x: 66.299614 + y: 1.29084647 + z: -80.18447 +- Position: + x: 66.29667 + y: 1.28934729 + z: -85.51392 +- Position: + x: 66.3128 + y: 1.288014 + z: -90.8375854 +- Position: + x: 36.9434471 + y: 1.28208053 + z: -69.32402 +- Position: + x: 58.0996742 + y: 1.29744935 + z: -47.4709663 +- Position: + x: 58.0996742 + y: 1.29690325 + z: -49.7709541 +- Position: + x: 58.0996742 + y: 1.29619539 + z: -52.0709572 +- Position: + x: 58.09968 + y: 1.295507 + z: -54.37096 +- Position: + x: 58.09968 + y: 1.294888 + z: -56.6709633 +- Position: + x: 58.0996742 + y: 1.2940737 + z: -58.9709663 +- Position: + x: 58.0996666 + y: 1.29347837 + z: -61.27097 +- Position: + x: 58.0996666 + y: 1.29284012 + z: -63.5709724 +- Position: + x: 58.0996666 + y: 1.29224491 + z: -65.87083 +- Position: + x: 58.0996666 + y: 1.29148126 + z: -68.17083 +- Position: + x: 58.0996666 + y: 1.2905457 + z: -70.47083 +- Position: + x: 58.0996666 + y: 1.28980207 + z: -72.77096 +- Position: + x: 58.0996666 + y: 1.28948426 + z: -75.07096 +- Position: + x: 58.0996666 + y: 1.28880274 + z: -77.3708649 +- Position: + x: 58.0996666 + y: 1.28833532 + z: -79.67087 +- Position: + x: 58.1016922 + y: 1.28740478 + z: -81.97109 +- Position: + x: 58.0995636 + y: 1.28650737 + z: -84.270874 +- Position: + x: 58.0997 + y: 1.286053 + z: -86.57089 +- Position: + x: 58.0838776 + y: 1.28537929 + z: -88.86033 +- Position: + x: 58.08587 + y: 1.28485417 + z: -91.2122955 +- Position: + x: 52.92828 + y: 1.28289843 + z: -91.1161346 +- Position: + x: 52.92844 + y: 1.283767 + z: -88.80969 +- Position: + x: 52.94426 + y: 1.28441775 + z: -86.52025 +- Position: + x: 52.94413 + y: 1.28505635 + z: -84.22023 +- Position: + x: 52.9462547 + y: 1.28565979 + z: -81.9204559 +- Position: + x: 52.9442177 + y: 1.28654468 + z: -79.62024 +- Position: + x: 52.9442177 + y: 1.28714752 + z: -77.32024 +- Position: + x: 52.9442139 + y: 1.28767264 + z: -75.02033 +- Position: + x: 52.9442139 + y: 1.28845644 + z: -72.72032 +- Position: + x: 52.94422 + y: 1.28927469 + z: -68.1202 +- Position: + x: 52.9442177 + y: 1.28905928 + z: -70.4202042 +- Position: + x: 52.94422 + y: 1.29028988 + z: -65.8202 +- Position: + x: 52.9442177 + y: 1.29098272 + z: -63.5203438 +- Position: + x: 52.9442177 + y: 1.29159307 + z: -61.22034 +- Position: + x: 52.9442253 + y: 1.29235625 + z: -58.9203377 +- Position: + x: 52.94423 + y: 1.2931788 + z: -56.6203346 +- Position: + x: 52.94423 + y: 1.29390347 + z: -54.32033 +- Position: + x: 52.9442253 + y: 1.29437709 + z: -52.02033 +- Position: + x: 52.9442253 + y: 1.29492152 + z: -49.7203255 +- Position: + x: 52.9442253 + y: 1.29571271 + z: -47.4203377 +- Position: + x: 49.2785072 + y: 1.29458511 + z: -47.40877 +- Position: + x: 49.2785072 + y: 1.29381084 + z: -49.7087975 +- Position: + x: 49.2785072 + y: 1.29295814 + z: -52.0087624 +- Position: + x: 49.2785072 + y: 1.29241037 + z: -54.308773 +- Position: + x: 49.2785072 + y: 1.29141617 + z: -56.6087761 +- Position: + x: 49.2785072 + y: 1.29077768 + z: -58.90878 +- Position: + x: 49.2785072 + y: 1.29027653 + z: -61.2087822 +- Position: + x: 49.2785072 + y: 1.289767 + z: -63.5087852 +- Position: + x: 49.2785072 + y: 1.28908551 + z: -65.80864 +- Position: + x: 49.2785072 + y: 1.28855276 + z: -68.10864 +- Position: + x: 49.2785072 + y: 1.28747988 + z: -70.4086456 +- Position: + x: 49.2785072 + y: 1.28690422 + z: -72.70873 +- Position: + x: 49.2785072 + y: 1.28634024 + z: -75.00876 +- Position: + x: 49.2785072 + y: 1.28576362 + z: -77.30867 +- Position: + x: 49.2785072 + y: 1.28526175 + z: -79.60863 +- Position: + x: 49.2785072 + y: 1.28440058 + z: -81.90885 +- Position: + x: 49.2785072 + y: 1.28354764 + z: -84.20863 +- Position: + x: 49.2785072 + y: 1.28287387 + z: -86.50864 +- Position: + x: 49.2628174 + y: 1.28216815 + z: -88.79809 +- Position: + x: 49.26244 + y: 1.28176832 + z: -91.1046143 +- Position: + x: 44.2130165 + y: 1.28004372 + z: -91.09743 +- Position: + x: 44.21319 + y: 1.28038967 + z: -88.7901 +- Position: + x: 44.2290077 + y: 1.28127158 + z: -86.5006561 +- Position: + x: 44.228878 + y: 1.28192651 + z: -84.20064 +- Position: + x: 44.2310028 + y: 1.28228736 + z: -81.90086 +- Position: + x: 44.2289658 + y: 1.283091 + z: -79.60065 +- Position: + x: 44.2289658 + y: 1.2836237 + z: -77.3006439 +- Position: + x: 44.2289619 + y: 1.28438318 + z: -75.00074 +- Position: + x: 44.2289619 + y: 1.28516662 + z: -72.70073 +- Position: + x: 44.2289658 + y: 1.28601265 + z: -70.4006958 +- Position: + x: 44.22897 + y: 1.28656089 + z: -68.10069 +- Position: + x: 44.2289658 + y: 1.28723085 + z: -65.80069 +- Position: + x: 44.2289658 + y: 1.28789258 + z: -63.5008354 +- Position: + x: 44.2289658 + y: 1.28860879 + z: -61.2008324 +- Position: + x: 44.2289734 + y: 1.289169 + z: -58.90083 +- Position: + x: 44.2289772 + y: 1.28997219 + z: -56.6008263 +- Position: + x: 44.2289772 + y: 1.29043019 + z: -54.3008232 +- Position: + x: 44.2289734 + y: 1.29117393 + z: -52.00082 +- Position: + x: 44.22897 + y: 1.29179668 + z: -49.7008171 +- Position: + x: 44.2289734 + y: 1.29241943 + z: -47.40083 +- Position: + x: 40.6758728 + y: 1.29122472 + z: -47.41286 +- Position: + x: 40.6758728 + y: 1.29035676 + z: -49.71285 +- Position: + x: 40.6758728 + y: 1.28963733 + z: -52.01285 +- Position: + x: 40.6758766 + y: 1.28925836 + z: -54.3128624 +- Position: + x: 40.6758766 + y: 1.28855336 + z: -56.6128654 +- Position: + x: 40.6758728 + y: 1.2880007 + z: -58.91287 +- Position: + x: 40.67586 + y: 1.28715491 + z: -61.21287 +- Position: + x: 40.6758652 + y: 1.28639531 + z: -63.5128746 +- Position: + x: 40.6758652 + y: 1.285835 + z: -65.81273 +- Position: + x: 40.67587 + y: 1.285271 + z: -68.11273 +- Position: + x: 40.67586 + y: 1.28462863 + z: -70.412735 +- Position: + x: 40.67586 + y: 1.283982 + z: -72.71274 +- Position: + x: 40.67584 + y: 1.28344488 + z: -75.012764 +- Position: + x: 40.6758423 + y: 1.28247333 + z: -77.31267 +- Position: + x: 40.67598 + y: 1.28169 + z: -79.61263 +- Position: + x: 40.6790848 + y: 1.28097367 + z: -81.91286 +- Position: + x: 40.6790848 + y: 1.28055429 + z: -84.212204 +- Position: + x: 40.6790848 + y: 1.27993119 + z: -86.51221 +- Position: + x: 40.6790848 + y: 1.27936268 + z: -88.80165 +- Position: + x: 40.6790848 + y: 1.278571 + z: -91.10867 +- Position: + x: 24.50034 + y: 1.28562212 + z: -47.4185677 +- Position: + x: 24.50034 + y: 1.28485024 + z: -49.7185555 +- Position: + x: 24.50034 + y: 1.28400373 + z: -52.01856 +- Position: + x: 24.5003471 + y: 1.28301275 + z: -54.31856 +- Position: + x: 24.5003471 + y: 1.28265882 + z: -56.6185646 +- Position: + x: 24.50034 + y: 1.2820549 + z: -58.9185677 +- Position: + x: 24.5003319 + y: 1.28121316 + z: -61.21857 +- Position: + x: 24.5003319 + y: 1.28075409 + z: -63.5185623 +- Position: + x: 24.5003319 + y: 1.28005493 + z: -65.8182 +- Position: + x: 24.5003319 + y: 1.27924275 + z: -68.1182 +- Position: + x: 24.5003319 + y: 1.27830112 + z: -70.4182053 +- Position: + x: 24.5003319 + y: 1.27764344 + z: -72.71833 +- Position: + x: 24.5003319 + y: 1.2771821 + z: -75.01833 +- Position: + x: 24.5003319 + y: 1.27657628 + z: -77.31823 +- Position: + x: 24.5003319 + y: 1.27570546 + z: -79.61823 +- Position: + x: 24.5023575 + y: 1.27530754 + z: -81.9184647 +- Position: + x: 24.5002289 + y: 1.27436674 + z: -84.21824 +- Position: + x: 24.5003662 + y: 1.27369964 + z: -86.51826 +- Position: + x: 24.4845428 + y: 1.27319145 + z: -88.8077 +- Position: + x: 24.4865341 + y: 1.2721231 + z: -91.15966 +- Position: + x: 19.3277359 + y: 1.27103877 + z: -91.06348 +- Position: + x: 19.3278942 + y: 1.27150869 + z: -88.7570343 +- Position: + x: 19.343689 + y: 1.27216911 + z: -86.46759 +- Position: + x: 19.3435116 + y: 1.2726233 + z: -84.1675339 +- Position: + x: 19.345686 + y: 1.27338374 + z: -81.8678 +- Position: + x: 19.3436565 + y: 1.273878 + z: -79.56758 +- Position: + x: 19.343647 + y: 1.27469647 + z: -77.26758 +- Position: + x: 19.3436489 + y: 1.27521229 + z: -74.96768 +- Position: + x: 19.3436451 + y: 1.27597415 + z: -72.66766 +- Position: + x: 19.3436489 + y: 1.27688444 + z: -70.36755 +- Position: + x: 19.3436546 + y: 1.27764678 + z: -68.06755 +- Position: + x: 19.3436565 + y: 1.27820969 + z: -65.76755 +- Position: + x: 19.3436489 + y: 1.27893436 + z: -63.4679031 +- Position: + x: 19.3436527 + y: 1.27938354 + z: -61.16792 +- Position: + x: 19.34366 + y: 1.2802217 + z: -58.8679161 +- Position: + x: 19.34366 + y: 1.280988 + z: -56.5679131 +- Position: + x: 19.34366 + y: 1.28148067 + z: -54.26791 +- Position: + x: 19.3436546 + y: 1.28204393 + z: -51.967907 +- Position: + x: 19.3436584 + y: 1.28285789 + z: -49.6679039 +- Position: + x: 19.3436565 + y: 1.28344154 + z: -47.3679161 +- Position: + x: 15.68014 + y: 1.2823875 + z: -47.35636 +- Position: + x: 15.6800919 + y: 1.281198 + z: -49.6564026 +- Position: + x: 15.68014 + y: 1.28087926 + z: -51.95635 +- Position: + x: 15.6801376 + y: 1.28016388 + z: -54.25636 +- Position: + x: 15.6801348 + y: 1.2794342 + z: -56.556366 +- Position: + x: 15.6801348 + y: 1.27869976 + z: -58.85637 +- Position: + x: 15.6801376 + y: 1.27799964 + z: -61.15637 +- Position: + x: 15.6801386 + y: 1.27753234 + z: -63.45636 +- Position: + x: 15.68014 + y: 1.27669132 + z: -65.75599 +- Position: + x: 15.6801405 + y: 1.27599263 + z: -68.05599 +- Position: + x: 15.6801386 + y: 1.27538764 + z: -70.3559952 +- Position: + x: 15.6801386 + y: 1.27455115 + z: -72.65609 +- Position: + x: 15.6801386 + y: 1.27393234 + z: -74.95611 +- Position: + x: 15.6801386 + y: 1.27304065 + z: -77.25602 +- Position: + x: 15.6801376 + y: 1.27248263 + z: -79.55598 +- Position: + x: 15.6801386 + y: 1.27194417 + z: -81.85621 +- Position: + x: 15.6801386 + y: 1.2711091 + z: -84.15598 +- Position: + x: 15.6800947 + y: 1.27055836 + z: -86.456 +- Position: + x: 15.6644516 + y: 1.2697866 + z: -88.7454453 +- Position: + x: 15.6640759 + y: 1.269073 + z: -91.0519562 +- Position: + x: 10.6137238 + y: 1.30307686 + z: -91.04 +- Position: + x: 10.6138725 + y: 1.30346441 + z: -88.74 +- Position: + x: 10.6296949 + y: 1.30441236 + z: -86.44803 +- Position: + x: 10.6295652 + y: 1.30493474 + z: -84.14801 +- Position: + x: 10.6316977 + y: 1.30553448 + z: -81.8482361 +- Position: + x: 10.6296568 + y: 1.30621612 + z: -79.54802 +- Position: + x: 10.629653 + y: 1.30697215 + z: -77.24802 +- Position: + x: 10.6296492 + y: 1.30775118 + z: -74.94812 +- Position: + x: 10.629653 + y: 1.30826879 + z: -72.6481 +- Position: + x: 10.629653 + y: 1.30879307 + z: -70.34807 +- Position: + x: 10.629653 + y: 1.31002009 + z: -65.74806 +- Position: + x: 10.6296606 + y: 1.30957043 + z: -68.0480652 +- Position: + x: 10.629652 + y: 1.31111324 + z: -63.4484329 +- Position: + x: 10.6296606 + y: 1.3117609 + z: -61.1484451 +- Position: + x: 10.6296682 + y: 1.31246436 + z: -58.8484421 +- Position: + x: 10.6296644 + y: 1.31296682 + z: -56.54844 +- Position: + x: 10.6296682 + y: 1.3138963 + z: -54.248436 +- Position: + x: 10.6296587 + y: 1.31448 + z: -51.94843 +- Position: + x: 10.6296549 + y: 1.31522655 + z: -49.64843 +- Position: + x: 10.6296682 + y: 1.31581891 + z: -47.3484421 +- Position: + x: 7.07657 + y: 1.31467879 + z: -47.3604736 +- Position: + x: 7.076566 + y: 1.31390381 + z: -49.66046 +- Position: + x: 7.07656145 + y: 1.31304 + z: -51.9604645 +- Position: + x: 7.076568 + y: 1.3125577 + z: -54.2604752 +- Position: + x: 7.0765624 + y: 1.31063974 + z: -58.86048 +- Position: + x: 7.07655239 + y: 1.31043673 + z: -61.1604843 +- Position: + x: 7.076555 + y: 1.30955946 + z: -63.4604721 +- Position: + x: 7.076568 + y: 1.31152534 + z: -56.56048 +- Position: + x: 7.07655859 + y: 1.30886066 + z: -65.7601 +- Position: + x: 7.07656 + y: 1.30833483 + z: -68.0601044 +- Position: + x: 7.076553 + y: 1.307778 + z: -70.36011 +- Position: + x: 7.076551 + y: 1.3072648 + z: -72.66011 +- Position: + x: 7.0765295 + y: 1.30656457 + z: -74.960144 +- Position: + x: 7.0765357 + y: 1.30569017 + z: -77.26004 +- Position: + x: 7.076673 + y: 1.30501235 + z: -79.56001 +- Position: + x: 7.079778 + y: 1.30420339 + z: -81.86023 +- Position: + x: 7.080002 + y: 1.303461 + z: -84.15958 +- Position: + x: 7.07977772 + y: 1.30291474 + z: -86.45958 +- Position: + x: 7.0806 + y: 1.30211806 + z: -88.73999 +- Position: + x: 7.079997 + y: 1.30172634 + z: -91.04001 +- Position: + x: 32.72268 + y: 1.2829504 + z: -63.98 +- Position: + x: 32.69982 + y: 1.28147018 + z: -69.36 +- Position: + x: 32.71502 + y: 1.28011823 + z: -74.79 +- Position: + x: 32.70028 + y: 1.27852452 + z: -80.18 +- Position: + x: 32.6973343 + y: 1.27668428 + z: -85.51 +- Position: + x: 32.7134628 + y: 1.27541506 + z: -90.84 +- Position: + x: 3.79529023 + y: 1.30691814 + z: -69.26998 +- Position: + x: 28.8154564 + y: 1.28049123 + z: -69.27387 +- Position: + x: 32.3000031 + y: 1.44443262 + z: 28.5300121 +- Position: + x: 32.3000031 + y: 1.44076753 + z: 14.4999838 +- Position: + x: 51.74794 + y: 1.42008257 + z: 28.5300045 +- Position: + x: 51.65227 + y: 1.41464353 + z: 14.5000238 +- Position: + x: 51.6549034 + y: 1.40983319 + z: 0.140253112 +- Position: + x: 51.65601 + y: 1.40506518 + z: -13.7182093 +- Position: + x: 51.65232 + y: 1.40055454 + z: -27.8697281 +- Position: + x: 63.0257759 + y: 1.39148343 + z: 0.140274137 +- Position: + x: 63.02728 + y: 1.39948249 + z: 14.5002966 +- Position: + x: 63.0254936 + y: 1.40184367 + z: 28.5303841 +- Position: + x: 32.3000031 + y: 1.43620026 + z: 0.14000009 +- Position: + x: 32.4525223 + y: 1.43262136 + z: -13.1238556 +- Position: + x: 12.2494068 + y: 1.47258127 + z: 35.9863548 +- Position: + x: 12.2503014 + y: 1.47144163 + z: 27.98636 +- Position: + x: 12.2500954 + y: 1.46984768 + z: 19.98636 +- Position: + x: 12.2520952 + y: 1.46744418 + z: 11.9863577 +- Position: + x: 12.2499952 + y: 1.46522963 + z: 3.98634982 +- Position: + x: 12.2495975 + y: 1.46357608 + z: -4.013653 +- Position: + x: 12.2501 + y: 1.46166158 + z: -12.013649 +- Position: + x: 12.2504969 + y: 1.45960414 + z: -20.0136547 +- Position: + x: 12.2495995 + y: 1.45641756 + z: -28.0136547 +- Position: + x: 12.2504215 + y: 1.45459831 + z: -36.0138321 +TabStates: + '0': + body: "Welcome to Arkham Horror LCG - Super Complete Edition!\r\n\r\nBelow you\ + \ will find all the features and instructions this mod is loaded with, that\ + \ will make your AH LCG experience easier.\r\n\r\nDECKBUILDING\r\n1. All current\ + \ existing investigators are on the right-hand side, and within each chest you\ + \ will find their investigator-specific assets and weaknesses. Also included\ + \ is a basic starter deck which only requires you to add a basic random weakness\ + \ to get going.\r\n\r\n2. On the left-hand side you will find both the weakness\ + \ decks as well as lvl 0 cards sorted by class. To reveal the cards, click on\ + \ each corresponding token to deal the cards onto the table. Cards are sorted\ + \ by order of Skill, event and Asset cards top-down and increasing resource\ + \ cost, left to right. \r\n\r\n3. On the upper side you have the upgrade cards.\ + \ Similarly, click each token to deal the cards out onto the table. Cards are\ + \ arranged both in increasing xp cost and resource cost, left to right. Typically,\ + \ these are the cards you will be spending XP on between scenarios to purchase\ + \ and improve your deck.\r\n4. On the right-hand side underneath the Investigators,\ + \ you will find the automated ArkhamDB Deckbuilder (coded and maintained by\ + \ Grabben). Click the load cards button to activate the Deckbuilder, check ArkhamDB\ + \ for your chosen deck\u2019s URL and insert its number code following the instructions\ + \ on the deckbuilder, and it will build the deck automatically for you.\r\n\r\ + \nSCENARIOS & SETUP\r\n1. \tArkham Horror LCG comes with a core campaign (Night\ + \ of the Zealot) and several expansions (The Dunwich Legacy, The Path to Carcosa\ + \ & The Forgotten Age). Within each box you will find the volumes that contain\ + \ all the cards required for each scenario setup, as well as a tablet linking\ + \ to the official campaign guide PDF. Also included are chaos token cards and\ + \ a Campaign Log.\r\n\r\n2. \tEach scenario is setup differently, and while\ + \ some of the work has been prepared beforehand (such as building encounter\ + \ decks), you will have to refer to the Campaign Guide for specific instructions\ + \ on how to set up each scenario.\r\n\r\n3. \tThe chaos bag is always placed\ + \ on the scenario setup mat in the upper right-hand corner onto a snap point\ + \ that tilts it at a 45-degree angle. Each scenario volume will contain a difficulty\ + \ card, where you will have the choice of four difficulties. Press the button\ + \ on the card according to the difficulty of your choosing and the chaos bag\ + \ will automatically be configured with the tokens specific to that difficulty.\ + \ In campaign play it is recommended to save your decks and chaos bag at the\ + \ end of your scenario to carry over onto the next, as often tokens are added\ + \ or removed from the chaos bag depending on actions or decisions made during\ + \ the game. These additional tokens can be drawn from the token reserve book\ + \ resting next to the newspaper in the middle of the main table \u2013 right\ + \ click it and search for the token you need.\n\r\n4. \tWhen placing location\ + \ cards, always place them face down on the main play area (the dark map of\ + \ Arkham, Massachusetts) with the number of clues per location unrevealed. The\ + \ mod is scripted so that when you flip said location cards (usually when entering\ + \ the location with an investigator), if it contains clues, the number of clues\ + \ specific to that location will automatically spawn. Note, that the mod only\ + \ spawns tokens in relation to the number of players currently set on the playmat\ + \ player settings. To set the number of players, left-click on the \"Investigators\ + \ Playing\" number to increase, or right-click to decrease.\r\n\n5. To make\ + \ location mapping easier, you can draw location connector tokens from the arrow-shaped\ + \ container below the main play area. Each token has three states (one way,\ + \ two way and four way) to use them accordingly to better visualize how your\ + \ locations connect.\n\r\n6. \tIf you require additional doom or clue tokens,\ + \ these are located on the scenario playmat in their corresponding containers.\ + \ A handy Doom counter has been also been added to track the doom on the agenda\ + \ \u2013 left-click to add to add, and right-click to deduct. Keep in mind that\ + \ any doom spawned on enemies, locations or assets needs to be mentally added\ + \ to the doom in play on the agenda to account for total doom.\r\n\r\nINVESTIGATOR\ + \ PLAYMAT AND GAMEPLAY\r\n1. \tInvestigator mats are scripted to automate most\ + \ of the gameplay for you. \n\r\n2. \tEach mat has slots for inventory, where\ + \ if you play an asset (for example you put a gun that has 4 ammo into your\ + \ right-hand slot), the mod will automatically spawn the 4 resource tokens onto\ + \ your equipped card.\n\r\n3.\tThe draw encounter button on the left-hand side\ + \ will draw the topmost card from the encounter deck and put it in your threat\ + \ area. When you draw a weakness, or engage an enemy, it is recommended you\ + \ put it in your threat area, and once you defeat the enemy or treachery, you\ + \ can send it to the encounter discard pile by clicking the discard button.\ + \ If you defeat an enemy with a victory point, make sure not to discard to the\ + \ discard pile, but pick the card up and drop it at the victory display.\n\r\ + \n4. \tThe Click for Chaos button does just that, draw a random chaos token\ + \ from your chaos bag. Clicking a second time, sends your chaos token back into\ + \ the bag, which is then shuffled. If one player clicks to draw a token and\ + \ doesn\u2019t click a second time to send it back, the click from another player\ + \ on his personal mat will send the token back first, and the next click will\ + \ draw the token. Additionally, right-clicking the button will continue drawing\ + \ tokens and line them up next to each other, which is useful for specific draw\ + \ conditions the game may require from you. Left-clicking again will send all\ + \ drawn tokens back to the bag.\n\n5. In the bottom right-hand corner of your\ + \ player mat you have buttons that when clicked once spawn a 1-value token (damage,\ + \ horror and resource). and when clicked again replace it with a 3-value token.\ + \ A third click despawns it. Use these to track damage, horror and resources\ + \ on your investigators. For allies and enemies, track damage / horror using\ + \ the tokens from the damage and horror containers. These tokens have 10 states\ + \ in increasing value, so you may adjust accordingly. Finally, you may also\ + \ draw additional resource tokens to track your resources. These tokens come\ + \ in state-values of 1, 3 and 5, so if you exceed 15 resources of value use\ + \ these to track additional resource on your investigator.\n\nADDITIONAL FEATURES:\n\ + 1. Over 20 Fan-made scenarios created by the thriving community of Arkham Horror\ + \ LCG have been included. Some of these are one-scenario missions, others are\ + \ long involved campaigns spanning multiple scenarios. These are all contained\ + \ in \"The Side Missions\". This boxset also includes the official FFG-created\ + \ sidemissions Curse of the Rougarou, Carnevale of Horrors, Labrynths of Lunacy\ + \ and The Eternal Slumber. Read the rulebook on including a side-mission into\ + \ an ongoing campaign, or play it as a one-off adventure! Setup instructions\ + \ are included in each volume.\n\n2. If you are not a fan of the dark themed\ + \ Arkham map for the playmat, you can change the image on it to any you like.\ + \ At the top left hand side of the playmat is an image icon, which when clicked\ + \ will reveal a image swap panel. Input the URL for the image you want to repalce\ + \ the playmat with, and the panel will apply the image for you. Keep in mind\ + \ this will not change the existing snap points on the current playmat.\n\r\n\ + As a final comment, please be sure to let me know on the mod page in steam workshop\ + \ if you find any bugs, issues or have any suggestions for improvement!\r\n\r\ + \n\r\n \r\n\r\n" + color: Grey + id: 0 + title: Rules + visibleColor: + b: 0.5 + g: 0.5 + r: 0.5 + '3': + body: '' + color: Red + id: 3 + title: Red + visibleColor: + b: 0.094 + g: 0.1 + r: 0.856 + '4': + body: '' + color: Orange + id: 4 + title: Orange + visibleColor: + b: 0.113 + g: 0.392 + r: 0.956 + '5': + body: '' + color: Yellow + id: 5 + title: Yellow + visibleColor: + b: 0.172 + g: 0.898 + r: 0.905 + '6': + body: '' + color: Green + id: 6 + title: Green + visibleColor: + b: 0.168 + g: 0.701 + r: 0.192 +Table: Table_None +Turns: + DisableInteractions: false + Enable: false + PassTurns: true + Reverse: false + SkipEmpty: false + TurnColor: '' + TurnOrder: [] + Type: 0 +VersionNumber: v12.3.5 +XmlUI: '' diff --git a/unpacked/3DText 260e0c.yaml b/unpacked/3DText 260e0c.yaml new file mode 100644 index 000000000..b47ded75f --- /dev/null +++ b/unpacked/3DText 260e0c.yaml @@ -0,0 +1,39 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +Description: '' +GMNotes: '' +GUID: 260e0c +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: true +LuaScript: '' +LuaScriptState: '' +Name: 3DText +Nickname: '' +Snap: true +Sticky: true +Text: + Text: Core/Adv. + colorstate: + b: 1.0 + g: 1.0 + r: 1.0 + fontSize: 64 +Tooltip: true +Transform: + posX: -26.7904758 + posY: 1.35647738 + posZ: 84.40091 + rotX: 90.0 + rotY: 90.00012 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/3DText 65eb7e.yaml b/unpacked/3DText 65eb7e.yaml new file mode 100644 index 000000000..dc738ede4 --- /dev/null +++ b/unpacked/3DText 65eb7e.yaml @@ -0,0 +1,39 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +Description: '' +GMNotes: '' +GUID: 65eb7e +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: true +LuaScript: '' +LuaScriptState: '' +Name: 3DText +Nickname: '' +Snap: true +Sticky: true +Text: + Text: New to the game? Check the archives gun for a how to play guide! + colorstate: + b: 1.0 + g: 1.0 + r: 1.0 + fontSize: 64 +Tooltip: true +Transform: + posX: -48.92113 + posY: 1.2533828 + posZ: 71.390686 + rotX: 90.0 + rotY: 90.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/3DText 67c2f4.yaml b/unpacked/3DText 67c2f4.yaml new file mode 100644 index 000000000..f7df3afe0 --- /dev/null +++ b/unpacked/3DText 67c2f4.yaml @@ -0,0 +1,39 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +Description: '' +GMNotes: '' +GUID: 67c2f4 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: true +LuaScript: '' +LuaScriptState: '' +Name: 3DText +Nickname: '' +Snap: true +Sticky: true +Text: + Text: 'Featured Fan Campaign:' + colorstate: + b: 1.0 + g: 1.0 + r: 1.0 + fontSize: 48 +Tooltip: true +Transform: + posX: 39.03191 + posY: 1.423446 + posZ: -12.9951563 + rotX: 90.0 + rotY: 89.99994 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/3DText 6f870e.yaml b/unpacked/3DText 6f870e.yaml new file mode 100644 index 000000000..2f08646eb --- /dev/null +++ b/unpacked/3DText 6f870e.yaml @@ -0,0 +1,39 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +Description: '' +GMNotes: '' +GUID: 6f870e +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: true +LuaScript: '' +LuaScriptState: '' +Name: 3DText +Nickname: '' +Snap: true +Sticky: true +Text: + Text: Carcosa + colorstate: + b: 1.0 + g: 1.0 + r: 1.0 + fontSize: 64 +Tooltip: true +Transform: + posX: -17.9263725 + posY: 1.26583743 + posZ: 77.5883 + rotX: 90.0 + rotY: 89.8333054 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/3DText 778306.yaml b/unpacked/3DText 778306.yaml new file mode 100644 index 000000000..311cad537 --- /dev/null +++ b/unpacked/3DText 778306.yaml @@ -0,0 +1,39 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +Description: '' +GMNotes: '' +GUID: '778306' +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: true +LuaScript: '' +LuaScriptState: '' +Name: 3DText +Nickname: '' +Snap: true +Sticky: true +Text: + Text: TFA + colorstate: + b: 1.0 + g: 1.0 + r: 1.0 + fontSize: 64 +Tooltip: true +Transform: + posX: -17.9617462 + posY: 1.26413023 + posZ: 71.80011 + rotX: 90.0 + rotY: 89.8333054 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/3DText 9f04cb.yaml b/unpacked/3DText 9f04cb.yaml new file mode 100644 index 000000000..63ca07e10 --- /dev/null +++ b/unpacked/3DText 9f04cb.yaml @@ -0,0 +1,39 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +Description: '' +GMNotes: '' +GUID: 9f04cb +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: true +LuaScript: '' +LuaScriptState: '' +Name: 3DText +Nickname: '' +Snap: true +Sticky: true +Text: + Text: TDE + colorstate: + b: 1.0 + g: 1.0 + r: 1.0 + fontSize: 64 +Tooltip: true +Transform: + posX: -17.907795 + posY: 1.2614398 + posZ: 62.54165 + rotX: 90.0 + rotY: 89.8333054 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/3DText b32e04.yaml b/unpacked/3DText b32e04.yaml new file mode 100644 index 000000000..690ceabe6 --- /dev/null +++ b/unpacked/3DText b32e04.yaml @@ -0,0 +1,41 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +Description: '' +GMNotes: '' +GUID: b32e04 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: true +LuaScript: '' +LuaScriptState: '' +Name: 3DText +Nickname: '' +Snap: true +Sticky: true +Text: + Text: 'Use both layouts to show multiple classes at once. + + Remember to click recall before placing a new set!' + colorstate: + b: 1.0 + g: 1.0 + r: 1.0 + fontSize: 64 +Tooltip: true +Transform: + posX: 74.89457 + posY: 1.29407322 + posZ: 61.1048546 + rotX: 90.0 + rotY: 90.52323 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/3DText bb4ade.yaml b/unpacked/3DText bb4ade.yaml new file mode 100644 index 000000000..5a1968666 --- /dev/null +++ b/unpacked/3DText bb4ade.yaml @@ -0,0 +1,39 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +Description: '' +GMNotes: '' +GUID: bb4ade +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: true +LuaScript: '' +LuaScriptState: '' +Name: 3DText +Nickname: '' +Snap: true +Sticky: true +Text: + Text: All + colorstate: + b: 1.0 + g: 1.0 + r: 1.0 + fontSize: 64 +Tooltip: true +Transform: + posX: -26.7741966 + posY: 1.3547895 + posZ: 78.61272 + rotX: 90.0 + rotY: 90.00012 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/3DText ca78c7.yaml b/unpacked/3DText ca78c7.yaml new file mode 100644 index 000000000..cbc40b5ae --- /dev/null +++ b/unpacked/3DText ca78c7.yaml @@ -0,0 +1,39 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +Description: '' +GMNotes: '' +GUID: ca78c7 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: true +LuaScript: '' +LuaScriptState: '' +Name: 3DText +Nickname: '' +Snap: true +Sticky: true +Text: + Text: TCU + colorstate: + b: 1.0 + g: 1.0 + r: 1.0 + fontSize: 64 +Tooltip: true +Transform: + posX: -17.8958073 + posY: 1.26280272 + posZ: 67.1832352 + rotX: 90.0 + rotY: 89.8333054 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/3DText e51c92.yaml b/unpacked/3DText e51c92.yaml new file mode 100644 index 000000000..858b06a42 --- /dev/null +++ b/unpacked/3DText e51c92.yaml @@ -0,0 +1,39 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +Description: '' +GMNotes: '' +GUID: e51c92 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: true +LuaScript: '' +LuaScriptState: '' +Name: 3DText +Nickname: '' +Snap: true +Sticky: true +Text: + Text: Dunwich + colorstate: + b: 1.0 + g: 1.0 + r: 1.0 + fontSize: 64 +Tooltip: true +Transform: + posX: -17.917963 + posY: 1.26789236 + posZ: 84.5693 + rotX: 90.0 + rotY: 89.8333054 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/3DText e85ff9.yaml b/unpacked/3DText e85ff9.yaml new file mode 100644 index 000000000..8aeb0bd02 --- /dev/null +++ b/unpacked/3DText e85ff9.yaml @@ -0,0 +1,40 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +Description: '' +GMNotes: '' +GUID: e85ff9 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: true +LuaScript: '' +LuaScriptState: '' +Name: 3DText +Nickname: '' +Snap: true +Sticky: true +Text: + Text: Click the Place button to reveal the investigators for each cycle. Recall + before placing a new set! + colorstate: + b: 1.0 + g: 1.0 + r: 1.0 + fontSize: 56 +Tooltip: true +Transform: + posX: -5.14249468 + posY: 1.303291 + posZ: -69.05472 + rotX: 90.0 + rotY: 90.1663742 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/BlockRectangle 23379e.yaml b/unpacked/BlockRectangle 23379e.yaml new file mode 100644 index 000000000..cde5cd0ce --- /dev/null +++ b/unpacked/BlockRectangle 23379e.yaml @@ -0,0 +1,32 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +Description: '' +GMNotes: '' +GUID: 23379e +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: true +LuaScript: '' +LuaScriptState: '' +Name: BlockRectangle +Nickname: '' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 62.2793465 + posY: 1.46146333 + posZ: -69.32657 + rotX: 359.983215 + rotY: 6.40399448e-05 + rotZ: 0.02323492 + scaleX: 0.09185542 + scaleY: 0.112467624 + scaleZ: 22.9546661 +XmlUI: '' diff --git a/unpacked/BlockRectangle 402b5e.yaml b/unpacked/BlockRectangle 402b5e.yaml new file mode 100644 index 000000000..a6b083259 --- /dev/null +++ b/unpacked/BlockRectangle 402b5e.yaml @@ -0,0 +1,32 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +Description: '' +GMNotes: '' +GUID: 402b5e +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: true +LuaScript: '' +LuaScriptState: '' +Name: BlockRectangle +Nickname: '' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 73.96375 + posY: 1.34399951 + posZ: 72.90765 + rotX: 359.9792 + rotY: 89.99983 + rotZ: 269.983673 + scaleX: 0.09185542 + scaleY: 0.112469524 + scaleZ: 0.840644836 +XmlUI: '' diff --git a/unpacked/BlockRectangle 598e49.yaml b/unpacked/BlockRectangle 598e49.yaml new file mode 100644 index 000000000..991b92142 --- /dev/null +++ b/unpacked/BlockRectangle 598e49.yaml @@ -0,0 +1,32 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +Description: '' +GMNotes: '' +GUID: 598e49 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: true +LuaScript: '' +LuaScriptState: '' +Name: BlockRectangle +Nickname: '' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 62.5637245 + posY: 1.34947085 + posZ: 70.53487 + rotX: 359.983215 + rotY: 5.26564872e-05 + rotZ: 0.0218348466 + scaleX: 0.09185542 + scaleY: 0.112467624 + scaleZ: 22.9546661 +XmlUI: '' diff --git a/unpacked/BlockRectangle 6111ed.yaml b/unpacked/BlockRectangle 6111ed.yaml new file mode 100644 index 000000000..e355ff2c2 --- /dev/null +++ b/unpacked/BlockRectangle 6111ed.yaml @@ -0,0 +1,32 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +Description: '' +GMNotes: '' +GUID: 6111ed +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: true +LuaScript: '' +LuaScriptState: '' +Name: BlockRectangle +Nickname: '' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 62.2793541 + posY: 1.34900367 + posZ: -69.3265457 + rotX: 359.983215 + rotY: 7.40456162e-05 + rotZ: 0.0214175433 + scaleX: 0.09185542 + scaleY: 0.112467624 + scaleZ: 22.9546661 +XmlUI: '' diff --git a/unpacked/BlockRectangle 612072.yaml b/unpacked/BlockRectangle 612072.yaml new file mode 100644 index 000000000..78d41e002 --- /dev/null +++ b/unpacked/BlockRectangle 612072.yaml @@ -0,0 +1,32 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +Description: '' +GMNotes: '' +GUID: '612072' +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: true +LuaScript: '' +LuaScriptState: '' +Name: BlockRectangle +Nickname: '' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -24.45337 + posY: 1.31062436 + posZ: 80.99459 + rotX: 359.9792 + rotY: 90.00009 + rotZ: 269.983673 + scaleX: 0.09185584 + scaleY: 0.112469375 + scaleZ: 1.78281033 +XmlUI: '' diff --git a/unpacked/BlockRectangle 784031.yaml b/unpacked/BlockRectangle 784031.yaml new file mode 100644 index 000000000..6ac8ed976 --- /dev/null +++ b/unpacked/BlockRectangle 784031.yaml @@ -0,0 +1,32 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +Description: '' +GMNotes: '' +GUID: '784031' +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: true +LuaScript: '' +LuaScriptState: '' +Name: BlockRectangle +Nickname: '' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 3.79529023 + posY: 1.36318564 + posZ: -69.26998 + rotX: 359.983215 + rotY: 5.967392e-05 + rotZ: 0.0213549677 + scaleX: 0.09185542 + scaleY: 0.112467624 + scaleZ: 22.9546661 +XmlUI: '' diff --git a/unpacked/BlockRectangle 8008a9.yaml b/unpacked/BlockRectangle 8008a9.yaml new file mode 100644 index 000000000..dfc4c6a56 --- /dev/null +++ b/unpacked/BlockRectangle 8008a9.yaml @@ -0,0 +1,32 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +Description: '' +GMNotes: '' +GUID: 8008a9 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: true +LuaScript: '' +LuaScriptState: '' +Name: BlockRectangle +Nickname: '' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 3.50752854 + posY: 1.32802486 + posZ: 70.5400162 + rotX: 359.983215 + rotY: 5.89402625e-05 + rotZ: 0.02138132 + scaleX: 0.09185542 + scaleY: 0.112467624 + scaleZ: 22.9546661 +XmlUI: '' diff --git a/unpacked/BlockRectangle 90b6d0.yaml b/unpacked/BlockRectangle 90b6d0.yaml new file mode 100644 index 000000000..1309f7583 --- /dev/null +++ b/unpacked/BlockRectangle 90b6d0.yaml @@ -0,0 +1,32 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +Description: '' +GMNotes: '' +GUID: 90b6d0 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: true +LuaScript: '' +LuaScriptState: '' +Name: BlockRectangle +Nickname: '' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 37.2278023 + posY: 1.45272863 + posZ: 70.5374 + rotX: 359.983215 + rotY: 5.101445e-05 + rotZ: 0.0221881457 + scaleX: 0.09185542 + scaleY: 0.112467624 + scaleZ: 22.9546661 +XmlUI: '' diff --git a/unpacked/BlockRectangle 976c46.yaml b/unpacked/BlockRectangle 976c46.yaml new file mode 100644 index 000000000..dbb4e1fb2 --- /dev/null +++ b/unpacked/BlockRectangle 976c46.yaml @@ -0,0 +1,32 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +Description: '' +GMNotes: '' +GUID: 976c46 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: true +LuaScript: '' +LuaScriptState: '' +Name: BlockRectangle +Nickname: '' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -14.7753534 + posY: 1.35623229 + posZ: -69.98375 + rotX: 359.983215 + rotY: 0.0188954212 + rotZ: 0.02148645 + scaleX: 0.09185542 + scaleY: 0.112467624 + scaleZ: 22.9546661 +XmlUI: '' diff --git a/unpacked/BlockRectangle a83d14.yaml b/unpacked/BlockRectangle a83d14.yaml new file mode 100644 index 000000000..d545316a5 --- /dev/null +++ b/unpacked/BlockRectangle a83d14.yaml @@ -0,0 +1,32 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +Description: '' +GMNotes: '' +GUID: a83d14 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: true +LuaScript: '' +LuaScriptState: '' +Name: BlockRectangle +Nickname: '' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 36.9434624 + posY: 1.339803 + posZ: -69.3240051 + rotX: 359.983215 + rotY: 5.990794e-05 + rotZ: 0.0211215056 + scaleX: 0.09185542 + scaleY: 0.112467624 + scaleZ: 22.9546661 +XmlUI: '' diff --git a/unpacked/BlockRectangle beb9c1.yaml b/unpacked/BlockRectangle beb9c1.yaml new file mode 100644 index 000000000..eb1fb6cf8 --- /dev/null +++ b/unpacked/BlockRectangle beb9c1.yaml @@ -0,0 +1,32 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +Description: '' +GMNotes: '' +GUID: beb9c1 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: true +LuaScript: '' +LuaScriptState: '' +Name: BlockRectangle +Nickname: '' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 28.326395 + posY: 1.33669078 + posZ: -69.26996 + rotX: 359.983215 + rotY: 6.07180082e-05 + rotZ: 0.02132294 + scaleX: 0.09185542 + scaleY: 0.112467624 + scaleZ: 22.9546661 +XmlUI: '' diff --git a/unpacked/BlockRectangle e679ba.yaml b/unpacked/BlockRectangle e679ba.yaml new file mode 100644 index 000000000..6760f1878 --- /dev/null +++ b/unpacked/BlockRectangle e679ba.yaml @@ -0,0 +1,32 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +Description: '' +GMNotes: '' +GUID: e679ba +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: true +LuaScript: '' +LuaScriptState: '' +Name: BlockRectangle +Nickname: '' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -29.18641 + posY: 1.3161509 + posZ: 70.53898 + rotX: 359.983215 + rotY: 0.01889553 + rotZ: 0.0213204417 + scaleX: 0.09185542 + scaleY: 0.112467624 + scaleZ: 22.9546661 +XmlUI: '' diff --git a/unpacked/BlockRectangle fa73f3.yaml b/unpacked/BlockRectangle fa73f3.yaml new file mode 100644 index 000000000..b06500275 --- /dev/null +++ b/unpacked/BlockRectangle fa73f3.yaml @@ -0,0 +1,32 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +Description: '' +GMNotes: '' +GUID: fa73f3 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: true +LuaScript: '' +LuaScriptState: '' +Name: BlockRectangle +Nickname: '' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 36.9434471 + posY: 1.45226276 + posZ: -69.32401 + rotX: 359.983215 + rotY: 5.961925e-05 + rotZ: 0.0221884 + scaleX: 0.09185542 + scaleY: 0.112467624 + scaleZ: 22.9546661 +XmlUI: '' diff --git a/unpacked/BlockRectangle fd45ba.yaml b/unpacked/BlockRectangle fd45ba.yaml new file mode 100644 index 000000000..192827459 --- /dev/null +++ b/unpacked/BlockRectangle fd45ba.yaml @@ -0,0 +1,32 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +Description: '' +GMNotes: '' +GUID: fd45ba +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: true +LuaScript: '' +LuaScriptState: '' +Name: BlockRectangle +Nickname: '' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 28.5874481 + posY: 1.33713138 + posZ: 70.534256 + rotX: 359.983215 + rotY: 6.211488e-05 + rotZ: 0.0213275719 + scaleX: 0.09185542 + scaleY: 0.112467624 + scaleZ: 22.9546661 +XmlUI: '' diff --git a/unpacked/Card Detailed phase reference 68fe54.yaml b/unpacked/Card Detailed phase reference 68fe54.yaml new file mode 100644 index 000000000..47a894bef --- /dev/null +++ b/unpacked/Card Detailed phase reference 68fe54.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 265902 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2659': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732358553666/DDD92ED5B4944765847E7726F768E58C58C27CB2/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732358553666/DDD92ED5B4944765847E7726F768E58C58C27CB2/ + NumHeight: 2 + NumWidth: 2 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 68fe54 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: true +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Detailed phase reference +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -60.3841171 + posY: 1.32503486 + posZ: 86.71304 + rotX: 0.0208085142 + rotY: 270.0 + rotZ: 0.01677113 + scaleX: 5.88 + scaleY: 1.0 + scaleZ: 5.88 +XmlUI: '' diff --git a/unpacked/Card Rules Index 91c83e.yaml b/unpacked/Card Rules Index 91c83e.yaml new file mode 100644 index 000000000..dbe98f9ef --- /dev/null +++ b/unpacked/Card Rules Index 91c83e.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 266103 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2661': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732358554721/C95D5B3564369BBC90833CA16DFC670FEFB80205/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732358554721/C95D5B3564369BBC90833CA16DFC670FEFB80205/ + NumHeight: 2 + NumWidth: 2 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 91c83e +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: true +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Rules Index +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -60.7477531 + posY: 1.31557763 + posZ: 54.85515 + rotX: 0.0208082777 + rotY: 270.0 + rotZ: 0.0167711675 + scaleX: 5.88 + scaleY: 1.0 + scaleZ: 5.88 +XmlUI: '' diff --git a/unpacked/Chinese_Checkers_Piece Flex Table Control bd69bd.ttslua b/unpacked/Chinese_Checkers_Piece Flex Table Control bd69bd.ttslua new file mode 100644 index 000000000..ac87661fe --- /dev/null +++ b/unpacked/Chinese_Checkers_Piece Flex Table Control bd69bd.ttslua @@ -0,0 +1,512 @@ +tableHeightOffset =-9 +function onSave() + saved_data = JSON.encode({tid=tableImageData, cd=checkData}) + --saved_data = "" + return saved_data +end + +function onload(saved_data) + --Loads the tracking for if the game has started yet + if saved_data ~= "" then + local loaded_data = JSON.decode(saved_data) + tableImageData = loaded_data.tid + checkData = loaded_data.cd + else + tableImageData = {} + checkData = {move=false, scale=false} + end + + --Disables interactable status of objects with GUID in list + for _, guid in ipairs(ref_noninteractable) do + local obj = getObjectFromGUID(guid) + if obj then obj.interactable = false end + end + + --Establish references to table parts + obj_leg1 = getObjectFromGUID("afc863") + obj_leg2 = getObjectFromGUID("c8edca") + obj_leg3 = getObjectFromGUID("393bf7") + obj_leg4 = getObjectFromGUID("12c65e") + obj_surface = getObjectFromGUID("4ee1f2") + obj_side_top = getObjectFromGUID("35b95f") + obj_side_bot = getObjectFromGUID("f938a2") + obj_side_lef = getObjectFromGUID("9f95fd") + obj_side_rig = getObjectFromGUID("5af8f2") + + controlActive = true + createOpenCloseButton() +end + + + +--Activation/deactivation of control panel + + + +--Activated by clicking on +function click_toggleControl(_, color) + if permissionCheck(color) then + if not controlActive then + --Activate control panel + controlActive = true + self.clearButtons() + createOpenCloseButton() + createSurfaceInput() + createSurfaceButtons() + createScaleInput() + createScaleButtons() + else + --Deactivate control panel + controlActive = false + self.clearButtons() + self.clearInputs() + createOpenCloseButton() + + end + end +end + + + + +--Table surface control + + + +--Changes table surface +function click_applySurface(_, color) + if permissionCheck(color) then + updateSurface() + broadcastToAll("New Table Image Applied", {0.2,0.9,0.2}) + end +end + +--Saves table surface +function click_saveSurface(_, color) + if permissionCheck(color) then + local nickname = self.getInputs()[1].value + local url = self.getInputs()[2].value + if nickname == "" then + --No nickname + broadcastToAll("Please supply a nickname for this save.", {0.9,0.2,0.2}) + else + --Nickname exists + + if findInImageDataIndex(url, nickname) == nil then + --Save doesn't exist already + table.insert(tableImageData, {url=url, name=nickname}) + broadcastToAll("Image URL saved to memory.", {0.2,0.9,0.2}) + --Refresh buttons + self.clearButtons() + createOpenCloseButton() + createSurfaceButtons() + createScaleButtons() + else + --Save exists already + broadcastToAll("Memory already contains a save with this Name or URL. Delete it first.", {0.9,0.2,0.2}) + end + end + end +end + +--Loads table surface +function click_loadMemory(_, color, index) + if permissionCheck(color) then + self.editInput({index=0, value=tableImageData[index].name}) + self.editInput({index=1, value=tableImageData[index].url}) + updateSurface() + broadcastToAll("Table Image Loaded", {0.2,0.9,0.2}) + end +end + +--Deletes table surface +function click_deleteMemory(_, color, index) + if permissionCheck(color) then + table.remove(tableImageData, index) + self.clearButtons() + createOpenCloseButton() + createSurfaceButtons() + createScaleButtons() + broadcastToAll("Element Removed from Memory", {0.2,0.9,0.2}) + end +end + +--Updates surface from the values in the input field +function updateSurface() + local customInfo = obj_surface.getCustomObject() + customInfo.diffuse = self.getInputs()[2].value + obj_surface.setCustomObject(customInfo) + obj_surface = obj_surface.reload() +end + + + +--Table Scale control + + + +--Applies Scale to table pieces +function click_applyScale(_, color) + if permissionCheck(color) then + local newWidth = tonumber(self.getInputs()[3].value) + local newDepth = tonumber(self.getInputs()[4].value) + if type(newWidth) ~= "number" then + broadcastToAll("Invalid Width", {0.9,0.2,0.2}) + return + elseif type(newDepth) ~= "number" then + broadcastToAll("Invalid Depth", {0.9,0.2,0.2}) + return + elseif newWidth<0.1 or newDepth<0.1 then + broadcastToAll("Scale cannot go below 0.1", {0.9,0.2,0.2}) + return + elseif newWidth>12 or newDepth>12 then + broadcastToAll("Scale should not go over 12 (world size limitation)", {0.9,0.2,0.2}) + return + else + changeTableScale(math.abs(newWidth), math.abs(newDepth)) + broadcastToAll("Scale applied.", {0.2,0.9,0.2}) + end + end +end + +--Checks/unchecks move box for hands +function click_checkMove(_, color) + if permissionCheck(color) then + local find_func = function(o) return o.click_function=="click_checkMove" end + if checkData.move == true then + checkData.move = false + local buttonEntry = findButton(self, find_func) + self.editButton({index=buttonEntry.index, label=""}) + else + checkData.move = true + local buttonEntry = findButton(self, find_func) + self.editButton({index=buttonEntry.index, label=string.char(10008)}) + end + end +end + +--Checks/unchecks scale box for hands +--This button was disabled for technical reasons +--[[ +function click_checkScale(_, color) + if permissionCheck(color) then + local find_func = function(o) return o.click_function=="click_checkScale" end + if checkData.scale == true then + checkData.scale = false + local buttonEntry = findButton(self, find_func) + self.editButton({index=buttonEntry.index, label=""}) + else + checkData.scale = true + local buttonEntry = findButton(self, find_func) + self.editButton({index=buttonEntry.index, label=string.char(10008)}) + end + end +end +]] + +--Alters scale of elements and moves them +function changeTableScale(width, depth) + --Scaling factors used to translate scale to position offset + local width2pos = (width-1) * 18 + local depth2pos = (depth-1) * 18 + + --Hand zone movement + if checkData.move == true then + for _, pc in ipairs(ref_playerColor) do + if Player[pc].getHandCount() > 0 then + moveHandZone(Player[pc], width2pos, depth2pos) + end + end + end + --Hand zone scaling + --The button to enable this was disabled for technical reasons + if checkData.scale == true then + for _, pc in ipairs(ref_playerColor) do + if Player[pc].getHandCount() > 0 then + scaleHandZone(Player[pc], width, depth) + end + end + end + + --Resizing table elements + obj_side_top.setScale({width, 1, 1}) + obj_side_bot.setScale({width, 1, 1}) + obj_side_lef.setScale({depth, 1, 1}) + obj_side_rig.setScale({depth, 1, 1}) + obj_surface.setScale({width, 1, depth}) + + --Moving table elements to accomodate new scale + obj_side_lef.setPosition({-width2pos,tableHeightOffset,0}) + obj_side_rig.setPosition({ width2pos,tableHeightOffset,0}) + obj_side_top.setPosition({0,tableHeightOffset, depth2pos}) + obj_side_bot.setPosition({0,tableHeightOffset,-depth2pos}) + obj_leg1.setPosition({-width2pos,tableHeightOffset,-depth2pos}) + obj_leg2.setPosition({-width2pos,tableHeightOffset, depth2pos}) + obj_leg3.setPosition({ width2pos,tableHeightOffset, depth2pos}) + obj_leg4.setPosition({ width2pos,tableHeightOffset,-depth2pos}) + self.setPosition(obj_leg4.positionToWorld({-22.12, 8.74,-19.16})) + --Only enabled when changing tableHeightOffset + --obj_surface.setPosition({0,tableHeightOffset,0}) +end + +--Move hand zone, p=player reference, facts are scaling factors +function moveHandZone(p, width2pos, depth2pos) + local widthX = obj_side_rig.getPosition().x + local depthZ = obj_side_top.getPosition().z + for i=1, p.getHandCount() do + local handT = p.getHandTransform() + local pos = handT.position + local y = handT.rotation.y + + if y<45 or y>320 or y>135 and y<225 then + if pos.z > 0 then + pos.z = pos.z + depth2pos - depthZ + else + pos.z = pos.z - depth2pos + depthZ + end + else + if pos.x > 0 then + pos.x = pos.x + width2pos - widthX + else + pos.x = pos.x - width2pos + widthX + end + end + + --Only enabled when changing tableHeightOffset + --pos.y = tableHeightOffset + 14 + + handT.position = pos + p.setHandTransform(handT, i) + end +end + + +---Scales hand zones, p=player reference, facts are scaling factors +function scaleHandZone(p, width, depth) + local widthFact = width / obj_side_top.getScale().x + local depthFact = depth / obj_side_lef.getScale().x + for i=1, p.getHandCount() do + local handT = p.getHandTransform() + local scale = handT.scale + local y = handT.rotation.y + if y<45 or y>320 or y>135 and y<225 then + scale.x = scale.x * widthFact + else + scale.x = scale.x * depthFact + end + handT.scale = scale + p.setHandTransform(handT, i) + end +end + + + +--Information gathering + + + +--Checks if a color is promoted or host +function permissionCheck(color) + if Player[color].host==true or Player[color].promoted==true then + return true + else + return false + end +end + +--Locates a string saved within memory file +function findInImageDataIndex(...) + for _, str in ipairs({...}) do + for i, v in ipairs(tableImageData) do + if v.url == str or v.name == str then + return i + end + end + end + return nil +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 + +--Locates a button with a helper function +function findButton(obj, func) + if func==nil then error("No func supplied to findButton") end + for _, v in ipairs(obj.getButtons()) do + if func(v) then + return v + end + end + return nil +end + + + +--Creation of buttons/inputs + + + +function createOpenCloseButton() + local tooltip = "Open Table Control Panel" + if controlActive then + tooltip = "Close Table Control Panel" + end + self.createButton({ + click_function="click_toggleControl", function_owner=self, + position={0,0,0}, rotation={-45,0,0}, height=400, width=400, + color={1,1,1,0}, tooltip=tooltip + }) +end + +function createSurfaceInput() + local currentURL = obj_surface.getCustomObject().diffuse + local nickname = "" + if findInImageDataIndex(currentURL) ~= nil then + nickname = tableImageData[findInImageDataIndex(currentURL)].name + end + self.createInput({ + label="Nickname", input_function="none", function_owner=self, + alignment=3, position={0,0,2}, height=224, width=4000, + font_size=200, tooltip="Enter nickname for table image (only used for save)", + value=nickname + }) + self.createInput({ + label="URL", input_function="none", function_owner=self, + alignment=3, position={0,0,3}, height=224, width=4000, + font_size=200, tooltip="Enter URL for tabletop image", + value=currentURL + }) +end + +function createSurfaceButtons() + --Label + self.createButton({ + label="Tabletop Surface Image", click_function="none", + position={0,0,1}, height=0, width=0, font_size=300, font_color={1,1,1} + }) + --Functional + self.createButton({ + label="Apply Image\nTo Table", click_function="click_applySurface", + function_owner=self, tooltip="Apply URL as table image", + position={2,0,4}, height=440, width=1400, font_size=200, + }) + self.createButton({ + label="Save Image\nTo Memory", click_function="click_saveSurface", + function_owner=self, tooltip="Record URL into memory (requires nickname)", + position={-2,0,4}, height=440, width=1400, font_size=200, + }) + --Label + self.createButton({ + label="Load From Memory", click_function="none", + position={0,0,5.5}, height=0, width=0, font_size=300, font_color={1,1,1} + }) + --Saves, created dynamically from memory file + for i, memoryEntry in ipairs(tableImageData) do + --Load + local funcName = i.."loadMemory" + local func = function(x,y) click_loadMemory(x,y,i) end + self.setVar(funcName, func) + self.createButton({ + label=memoryEntry.name, click_function=funcName, + function_owner=self, tooltip=memoryEntry.url, font_size=200, + position={-0.6,0,6.5+0.5*(i-1)}, height=240, width=3300, + }) + --Delete + local funcName = i.."deleteMemory" + local func = function(x,y) click_deleteMemory(x,y,i) end + self.setVar(funcName, func) + self.createButton({ + label="DELETE", click_function=funcName, + function_owner=self, tooltip="", + position={3.6,0,6.5+0.5*(i-1)}, height=240, width=600, + font_size=160, font_color={1,0,0}, color={0.8,0.8,0.8} + }) + end +end + +function createScaleInput() + self.createInput({ + label=string.char(8644), input_function="none", function_owner=self, + alignment=3, position={-8.5,0,2}, height=224, width=400, + font_size=200, tooltip="Table Width", + value=round(obj_side_top.getScale().x, 1) + }) + self.createInput({ + label=string.char(8645), input_function="none", function_owner=self, + alignment=3, position={-7.5,0,2}, height=224, width=400, + font_size=200, tooltip="Table Depth", + value=round(obj_side_lef.getScale().x, 1) + }) +end + +function createScaleButtons() + --Labels + self.createButton({ + label="Table Scale", click_function="none", + position={-8,0,1}, height=0, width=0, font_size=300, font_color={1,1,1} + }) + self.createButton({ + label=string.char(8644).." "..string.char(8645), + click_function="none", + position={-8,0,2}, height=0, width=0, font_size=300, font_color={1,1,1} + }) + self.createButton({ + label="Move Hands:", click_function="none", + position={-8.3,0,3}, height=0, width=0, font_size=200, font_color={1,1,1} + }) + --Disabled due to me removing the feature for technical reasons + --[[ + self.createButton({ + label="Scale Hands:", click_function="none", + position={-8.3,0,4}, height=0, width=0, font_size=200, font_color={1,1,1} + }) + ]] + --Checkboxes + local label = "" + if checkData.move == true then label = string.char(10008) end + self.createButton({ + label=label, click_function="click_checkMove", + function_owner=self, tooltip="Check to move hands when table is rescaled", + position={-6.8,0,3}, height=224, width=224, font_size=200, + }) + --[[ + local label = "" + if checkData.scale == true then label = string.char(10008) end + self.createButton({ + label=label, click_function="click_checkScale", + function_owner=self, tooltip="Check to scale the width of hands when table is rescaled", + position={-6.8,0,4}, height=224, width=224, font_size=200, + }) + ]] + --Apply button + self.createButton({ + label="Apply Scale", click_function="click_applyScale", + function_owner=self, tooltip="Apply width/depth to table", + position={-8,0,4}, height=440, width=1400, font_size=200, + }) +end + + + + + +--Data tables + + + + +ref_noninteractable = { + "afc863","c8edca","393bf7","12c65e","f938a2","9f95fd","35b95f", + "5af8f2","4ee1f2","bd69bd" +} + +ref_playerColor = { + "White", "Brown", "Red", "Orange", "Yellow", + "Green", "Teal", "Blue", "Purple", "Pink", "Black" +} + +--Dummy function, absorbs unwanted triggers +function none() end \ No newline at end of file diff --git a/unpacked/Chinese_Checkers_Piece Flex Table Control bd69bd.yaml b/unpacked/Chinese_Checkers_Piece Flex Table Control bd69bd.yaml new file mode 100644 index 000000000..62cf96665 --- /dev/null +++ b/unpacked/Chinese_Checkers_Piece Flex Table Control bd69bd.yaml @@ -0,0 +1,34 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +Description: '' +GMNotes: '' +GUID: bd69bd +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: true +LuaScript: !include 'Chinese_Checkers_Piece Flex Table Control bd69bd.ttslua' +LuaScriptState: '{"cd":{"move":true,"scale":false},"tid":[{"name":"Felt - Grey","url":"https://i.imgur.com/N0O6aqj.jpg"},{"name":"Wood","url":"https://i.imgur.com/iOFFsGh.jpg"},{"name":"Wood + 2","url":"https://i.imgur.com/SQ2t01d.jpg"}]}' +MaterialIndex: 1 +Name: Chinese_Checkers_Piece +Nickname: Flex Table Control +Snap: true +Sticky: true +Tooltip: false +Transform: + posX: 73.16 + posY: -0.259998322 + posZ: -43.72 + rotX: 0.00190076465 + rotY: 180.0 + rotZ: 0.000379891542 + scaleX: 1.6499995 + scaleY: 1.6499995 + scaleZ: 1.6499995 +XmlUI: '' diff --git a/unpacked/Custom_Assetbundle 12c65e.yaml b/unpacked/Custom_Assetbundle 12c65e.yaml new file mode 100644 index 000000000..76160510a --- /dev/null +++ b/unpacked/Custom_Assetbundle 12c65e.yaml @@ -0,0 +1,38 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +CustomAssetbundle: + AssetbundleSecondaryURL: '' + AssetbundleURL: http://cloud-3.steamusercontent.com/ugc/879750610978795929/723C50F43FAB3DE3DC12CB8460536E8CB34B60A3/ + LoopingEffectIndex: 0 + MaterialIndex: 2 + TypeIndex: 4 +Description: '' +GMNotes: '' +GUID: 12c65e +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: true +LuaScript: '' +LuaScriptState: '' +Name: Custom_Assetbundle +Nickname: '' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 54.0 + posY: -9.0 + posZ: -21.6 + rotX: 6.536436e-07 + rotY: 270.0 + rotZ: -3.84849864e-06 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Assetbundle 35b95f.yaml b/unpacked/Custom_Assetbundle 35b95f.yaml new file mode 100644 index 000000000..e41c9fbae --- /dev/null +++ b/unpacked/Custom_Assetbundle 35b95f.yaml @@ -0,0 +1,38 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +CustomAssetbundle: + AssetbundleSecondaryURL: '' + AssetbundleURL: http://cloud-3.steamusercontent.com/ugc/879750610978796471/14ED0DBD593370733A0309B0950004F33EB9FACA/ + LoopingEffectIndex: 0 + MaterialIndex: 1 + TypeIndex: 4 +Description: '' +GMNotes: '' +GUID: 35b95f +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: true +LuaScript: '' +LuaScriptState: '' +Name: Custom_Assetbundle +Nickname: '' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 0.0 + posY: -9.0 + posZ: 21.6 + rotX: -1.01777751e-13 + rotY: 180.0 + rotZ: 0.0 + scaleX: 4.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Assetbundle 393bf7.yaml b/unpacked/Custom_Assetbundle 393bf7.yaml new file mode 100644 index 000000000..6a74eaf9a --- /dev/null +++ b/unpacked/Custom_Assetbundle 393bf7.yaml @@ -0,0 +1,38 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +CustomAssetbundle: + AssetbundleSecondaryURL: '' + AssetbundleURL: http://cloud-3.steamusercontent.com/ugc/879750610978795929/723C50F43FAB3DE3DC12CB8460536E8CB34B60A3/ + LoopingEffectIndex: 0 + MaterialIndex: 2 + TypeIndex: 4 +Description: '' +GMNotes: '' +GUID: 393bf7 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: true +LuaScript: '' +LuaScriptState: '' +Name: Custom_Assetbundle +Nickname: '' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 54.0 + posY: -9.0 + posZ: 21.6 + rotX: 6.536436e-07 + rotY: 180.0 + rotZ: -3.84849864e-06 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Assetbundle 5706ae.yaml b/unpacked/Custom_Assetbundle 5706ae.yaml new file mode 100644 index 000000000..51733bb28 --- /dev/null +++ b/unpacked/Custom_Assetbundle 5706ae.yaml @@ -0,0 +1,38 @@ +Autoraise: true +ColorDiffuse: + b: 0.8 + g: 0.8 + r: 0.8 +CustomAssetbundle: + AssetbundleSecondaryURL: '' + AssetbundleURL: http://cloud-3.steamusercontent.com/ugc/821188897159732589/F46BB67A19FEE31DEC277CFD9CFE955FCA32B078/ + LoopingEffectIndex: 0 + MaterialIndex: 0 + TypeIndex: 0 +Description: '' +GMNotes: '' +GUID: 5706ae +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: true +LuaScript: '' +LuaScriptState: '' +Name: Custom_Assetbundle +Nickname: '' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 40.03359 + posY: 1.41467845 + posZ: -24.9047451 + rotX: 359.9864 + rotY: 0.0320549868 + rotZ: 359.924133 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Assetbundle 5af8f2.yaml b/unpacked/Custom_Assetbundle 5af8f2.yaml new file mode 100644 index 000000000..92374e2e7 --- /dev/null +++ b/unpacked/Custom_Assetbundle 5af8f2.yaml @@ -0,0 +1,38 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +CustomAssetbundle: + AssetbundleSecondaryURL: '' + AssetbundleURL: http://cloud-3.steamusercontent.com/ugc/879750610978796471/14ED0DBD593370733A0309B0950004F33EB9FACA/ + LoopingEffectIndex: 0 + MaterialIndex: 1 + TypeIndex: 4 +Description: '' +GMNotes: '' +GUID: 5af8f2 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: true +LuaScript: '' +LuaScriptState: '' +Name: Custom_Assetbundle +Nickname: '' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 54.0 + posY: -9.0 + posZ: 0.0 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 2.2 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Assetbundle 9f95fd.yaml b/unpacked/Custom_Assetbundle 9f95fd.yaml new file mode 100644 index 000000000..d799037e6 --- /dev/null +++ b/unpacked/Custom_Assetbundle 9f95fd.yaml @@ -0,0 +1,38 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +CustomAssetbundle: + AssetbundleSecondaryURL: '' + AssetbundleURL: http://cloud-3.steamusercontent.com/ugc/879750610978796471/14ED0DBD593370733A0309B0950004F33EB9FACA/ + LoopingEffectIndex: 0 + MaterialIndex: 1 + TypeIndex: 4 +Description: '' +GMNotes: '' +GUID: 9f95fd +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: true +LuaScript: '' +LuaScriptState: '' +Name: Custom_Assetbundle +Nickname: '' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -54.0 + posY: -9.0 + posZ: 0.0 + rotX: 0.0 + rotY: 90.0 + rotZ: 0.0 + scaleX: 2.2 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Assetbundle afc863.yaml b/unpacked/Custom_Assetbundle afc863.yaml new file mode 100644 index 000000000..a819f6888 --- /dev/null +++ b/unpacked/Custom_Assetbundle afc863.yaml @@ -0,0 +1,38 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +CustomAssetbundle: + AssetbundleSecondaryURL: '' + AssetbundleURL: http://cloud-3.steamusercontent.com/ugc/879750610978795929/723C50F43FAB3DE3DC12CB8460536E8CB34B60A3/ + LoopingEffectIndex: 0 + MaterialIndex: 2 + TypeIndex: 4 +Description: '' +GMNotes: '' +GUID: afc863 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: true +LuaScript: '' +LuaScriptState: '' +Name: Custom_Assetbundle +Nickname: '' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -54.0 + posY: -9.0 + posZ: -21.6 + rotX: 6.536436e-07 + rotY: -2.39176334e-05 + rotZ: -3.84849864e-06 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Assetbundle c8edca.yaml b/unpacked/Custom_Assetbundle c8edca.yaml new file mode 100644 index 000000000..9fcac3cbc --- /dev/null +++ b/unpacked/Custom_Assetbundle c8edca.yaml @@ -0,0 +1,38 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +CustomAssetbundle: + AssetbundleSecondaryURL: '' + AssetbundleURL: http://cloud-3.steamusercontent.com/ugc/879750610978795929/723C50F43FAB3DE3DC12CB8460536E8CB34B60A3/ + LoopingEffectIndex: 0 + MaterialIndex: 2 + TypeIndex: 4 +Description: '' +GMNotes: '' +GUID: c8edca +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: true +LuaScript: '' +LuaScriptState: '' +Name: Custom_Assetbundle +Nickname: '' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -54.0 + posY: -9.0 + posZ: 21.6 + rotX: 6.536436e-07 + rotY: 90.0 + rotZ: -3.84849864e-06 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Assetbundle f938a2.yaml b/unpacked/Custom_Assetbundle f938a2.yaml new file mode 100644 index 000000000..970e86861 --- /dev/null +++ b/unpacked/Custom_Assetbundle f938a2.yaml @@ -0,0 +1,38 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +CustomAssetbundle: + AssetbundleSecondaryURL: '' + AssetbundleURL: http://cloud-3.steamusercontent.com/ugc/879750610978796471/14ED0DBD593370733A0309B0950004F33EB9FACA/ + LoopingEffectIndex: 0 + MaterialIndex: 1 + TypeIndex: 4 +Description: '' +GMNotes: '' +GUID: f938a2 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: true +LuaScript: '' +LuaScriptState: '' +Name: Custom_Assetbundle +Nickname: '' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 0.0 + posY: -9.0 + posZ: -21.6 + rotX: -1.01777751e-13 + rotY: 0.0 + rotZ: 0.0 + scaleX: 4.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model 0532e0.yaml b/unpacked/Custom_Model 0532e0.yaml new file mode 100644 index 000000000..1164cb72f --- /dev/null +++ b/unpacked/Custom_Model 0532e0.yaml @@ -0,0 +1,49 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +CustomMesh: + CastShadows: true + ColliderURL: http://cloud-3.steamusercontent.com/ugc/943949966265929204/A38BB5D72419E6298385556D931877C0A1A55C17/ + Convex: true + CustomShader: + FresnelStrength: 0.0 + SpecularColor: + b: 0.339915335 + g: 0.507659256 + r: 0.7222887 + SpecularIntensity: 0.4 + SpecularSharpness: 7.0 + DiffuseURL: http://cloud-3.steamusercontent.com/ugc/254843371583187306/6844B833AD55B9A34095067B201B311E1348325F/ + MaterialIndex: 2 + MeshURL: http://cloud-3.steamusercontent.com/ugc/943949966265929204/A38BB5D72419E6298385556D931877C0A1A55C17/ + NormalURL: '' + TypeIndex: 0 +Description: '' +GMNotes: '' +GUID: 0532e0 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: true +LuaScript: '' +LuaScriptState: '' +Name: Custom_Model +Nickname: '' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 36.36422 + posY: 1.46302426 + posZ: -32.1621971 + rotX: 359.918152 + rotY: 269.831573 + rotZ: 0.0153937778 + scaleX: 0.325000376 + scaleY: 0.325000376 + scaleZ: 0.325000376 +XmlUI: '' diff --git a/unpacked/Custom_Model 0a3b03.yaml b/unpacked/Custom_Model 0a3b03.yaml new file mode 100644 index 000000000..e50eabaa6 --- /dev/null +++ b/unpacked/Custom_Model 0a3b03.yaml @@ -0,0 +1,52 @@ +Autoraise: true +ColorDiffuse: + b: 0.141104579 + g: 0.141104579 + r: 0.141104579 +CustomMesh: + CastShadows: true + ColliderURL: '' + Convex: true + DiffuseURL: http://cloud-3.steamusercontent.com/ugc/780750188124765629/74DEC33718157E37D77E0777715B452F9015A07F/ + MaterialIndex: 2 + MeshURL: http://cloud-3.steamusercontent.com/ugc/780750188124765079/4F3634374EEC02E5D2DAED88F5D8F0956B6292B8/ + NormalURL: '' + TypeIndex: 0 +Description: '' +GMNotes: '' +GUID: 0a3b03 +Grid: false +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: true +LuaScript: '' +LuaScriptState: '' +Name: Custom_Model +Nickname: '' +PhysicsMaterial: + BounceCombine: 0 + Bounciness: 0.0 + DynamicFriction: 0.0 + FrictionCombine: 0 + StaticFriction: 0.0 +Rigidbody: + AngularDrag: 0.0 + Drag: 0.0 + Mass: 500.0 + UseGravity: true +Snap: false +Sticky: true +Tooltip: true +Transform: + posX: 35.4777031 + posY: 1.53948379 + posZ: -30.9663563 + rotX: 89.94766 + rotY: 317.416321 + rotZ: 0.0 + scaleX: 0.2 + scaleY: 0.3 + scaleZ: 0.2 +XmlUI: '' diff --git a/unpacked/Custom_Model 0c05e4.yaml b/unpacked/Custom_Model 0c05e4.yaml new file mode 100644 index 000000000..311b7d195 --- /dev/null +++ b/unpacked/Custom_Model 0c05e4.yaml @@ -0,0 +1,52 @@ +Autoraise: true +ColorDiffuse: + b: 0.141104579 + g: 0.141104579 + r: 0.141104579 +CustomMesh: + CastShadows: true + ColliderURL: '' + Convex: true + DiffuseURL: http://cloud-3.steamusercontent.com/ugc/780750188124765629/74DEC33718157E37D77E0777715B452F9015A07F/ + MaterialIndex: 2 + MeshURL: http://cloud-3.steamusercontent.com/ugc/780750188124765079/4F3634374EEC02E5D2DAED88F5D8F0956B6292B8/ + NormalURL: '' + TypeIndex: 0 +Description: '' +GMNotes: '' +GUID: 0c05e4 +Grid: false +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: true +LuaScript: '' +LuaScriptState: '' +Name: Custom_Model +Nickname: '' +PhysicsMaterial: + BounceCombine: 0 + Bounciness: 0.0 + DynamicFriction: 0.0 + FrictionCombine: 0 + StaticFriction: 0.0 +Rigidbody: + AngularDrag: 0.0 + Drag: 0.0 + Mass: 500.0 + UseGravity: true +Snap: false +Sticky: true +Tooltip: true +Transform: + posX: 35.09033 + posY: 1.53968179 + posZ: -31.32989 + rotX: 359.955872 + rotY: 359.288177 + rotZ: 89.90699 + scaleX: 0.2 + scaleY: 0.3 + scaleZ: 0.2 +XmlUI: '' diff --git a/unpacked/Custom_Model 180a23.yaml b/unpacked/Custom_Model 180a23.yaml new file mode 100644 index 000000000..e2b93fd60 --- /dev/null +++ b/unpacked/Custom_Model 180a23.yaml @@ -0,0 +1,49 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +CustomMesh: + CastShadows: true + ColliderURL: http://cloud-3.steamusercontent.com/ugc/943949966265929204/A38BB5D72419E6298385556D931877C0A1A55C17/ + Convex: true + CustomShader: + FresnelStrength: 0.0 + SpecularColor: + b: 0.339915335 + g: 0.507659256 + r: 0.7222887 + SpecularIntensity: 0.4 + SpecularSharpness: 7.0 + DiffuseURL: http://cloud-3.steamusercontent.com/ugc/254843371583186619/365F95EC37B9B27DA32781DB460F0B70DB22F43F/ + MaterialIndex: 2 + MeshURL: http://cloud-3.steamusercontent.com/ugc/943949966265929204/A38BB5D72419E6298385556D931877C0A1A55C17/ + NormalURL: '' + TypeIndex: 0 +Description: '' +GMNotes: '' +GUID: 180a23 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: true +LuaScript: '' +LuaScriptState: '' +Name: Custom_Model +Nickname: '' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 34.1070366 + posY: 1.46623874 + posZ: -32.1671066 + rotX: 359.91803 + rotY: 269.997742 + rotZ: 0.01692355 + scaleX: 0.325000376 + scaleY: 0.325000376 + scaleZ: 0.325000376 +XmlUI: '' diff --git a/unpacked/Custom_Model 270f7a.yaml b/unpacked/Custom_Model 270f7a.yaml new file mode 100644 index 000000000..8b4ce480b --- /dev/null +++ b/unpacked/Custom_Model 270f7a.yaml @@ -0,0 +1,49 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +CustomMesh: + CastShadows: true + ColliderURL: http://cloud-3.steamusercontent.com/ugc/943949966265929204/A38BB5D72419E6298385556D931877C0A1A55C17/ + Convex: true + CustomShader: + FresnelStrength: 0.0 + SpecularColor: + b: 0.339915335 + g: 0.507659256 + r: 0.7222887 + SpecularIntensity: 0.4 + SpecularSharpness: 7.0 + DiffuseURL: http://cloud-3.steamusercontent.com/ugc/254843371583187306/6844B833AD55B9A34095067B201B311E1348325F/ + MaterialIndex: 2 + MeshURL: http://cloud-3.steamusercontent.com/ugc/943949966265929204/A38BB5D72419E6298385556D931877C0A1A55C17/ + NormalURL: '' + TypeIndex: 0 +Description: '' +GMNotes: '' +GUID: 270f7a +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: true +LuaScript: '' +LuaScriptState: '' +Name: Custom_Model +Nickname: '' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 35.4398727 + posY: 1.46528327 + posZ: -28.948761 + rotX: 359.9831 + rotY: 0.0177956838 + rotZ: 359.91803 + scaleX: 0.325000376 + scaleY: 0.325000376 + scaleZ: 0.325000376 +XmlUI: '' diff --git a/unpacked/Custom_Model 4be4a3.yaml b/unpacked/Custom_Model 4be4a3.yaml new file mode 100644 index 000000000..d6ff2ee06 --- /dev/null +++ b/unpacked/Custom_Model 4be4a3.yaml @@ -0,0 +1,49 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +CustomMesh: + CastShadows: true + ColliderURL: http://cloud-3.steamusercontent.com/ugc/943949966265929204/A38BB5D72419E6298385556D931877C0A1A55C17/ + Convex: true + CustomShader: + FresnelStrength: 0.0 + SpecularColor: + b: 0.339915335 + g: 0.507659256 + r: 0.7222887 + SpecularIntensity: 0.4 + SpecularSharpness: 7.0 + DiffuseURL: http://cloud-3.steamusercontent.com/ugc/254843371583188147/920981125E37B5CEB6C400E3FD353A2C428DA969/ + MaterialIndex: 2 + MeshURL: http://cloud-3.steamusercontent.com/ugc/943949966265929204/A38BB5D72419E6298385556D931877C0A1A55C17/ + NormalURL: '' + TypeIndex: 0 +Description: '' +GMNotes: '' +GUID: 4be4a3 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: true +LuaScript: '' +LuaScriptState: '' +Name: Custom_Model +Nickname: '' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 33.6652565 + posY: 1.4673419 + posZ: -30.5723972 + rotX: -0.004850925 + rotY: 194.999664 + rotZ: 0.0835464 + scaleX: 0.325000376 + scaleY: 0.325000376 + scaleZ: 0.325000376 +XmlUI: '' diff --git a/unpacked/Custom_Model 4ee1f2.yaml b/unpacked/Custom_Model 4ee1f2.yaml new file mode 100644 index 000000000..53eda328a --- /dev/null +++ b/unpacked/Custom_Model 4ee1f2.yaml @@ -0,0 +1,113 @@ +AttachedDecals: +- CustomDecal: + ImageURL: https://i.imgur.com/saWedQ0.png + Name: victory + Size: 15.0 + Transform: + posX: -0.5302569 + posY: 10.491498 + posZ: 13.0573263 + rotX: 90.0 + rotY: 89.50254 + rotZ: 0.0 + scaleX: 6.81814575 + scaleY: 3.75034118 + scaleZ: 15.0000191 +AttachedSnapPoints: +- Position: + x: 0.06409813 + y: 10.4814787 + z: 13.0818357 + Rotation: + x: -4.222844e-06 + y: 269.9857 + z: -3.34581432e-06 +- Position: + x: 0.0640453547 + y: 10.4814281 + z: 10.9099636 + Rotation: + x: -4.16775833e-07 + y: 269.9986 + z: 3.536774e-06 +- Position: + x: -1.40412891 + y: 10.48155 + z: 13.0817728 + Rotation: + x: -4.222657e-06 + y: 269.9857 + z: -1.84597366e-06 +- Position: + x: -1.4041816 + y: 10.4817123 + z: 10.9099 + Rotation: + x: -4.01484272e-07 + y: 269.998657 + z: 5.064365e-07 +- Position: + x: 0.06415517 + y: 10.4817152 + z: 15.2962151 + Rotation: + x: -4.078019e-06 + y: 269.986176 + z: -5.17820126e-06 +- Position: + x: -1.40409935 + y: 10.4810324 + z: 15.296154 + Rotation: + x: -4.186286e-06 + y: 269.985779 + z: -3.30573312e-06 +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +CustomMesh: + CastShadows: true + ColliderURL: '' + Convex: true + CustomShader: + FresnelStrength: 0.0 + SpecularColor: + b: 1.0 + g: 1.0 + r: 1.0 + SpecularIntensity: 0.0 + SpecularSharpness: 2.0 + DiffuseURL: https://i.imgur.com/EFTMP2d.jpg + MaterialIndex: 1 + MeshURL: http://cloud-3.steamusercontent.com/ugc/879750610978796176/4A5A65543B98BCFBF57E910D06EC984208223D38/ + NormalURL: '' + TypeIndex: 4 +Description: '' +GMNotes: '' +GUID: 4ee1f2 +Grid: true +GridProjection: true +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: true +LuaScript: '' +LuaScriptState: '' +Name: Custom_Model +Nickname: '' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 0.0 + posY: -9.0 + posZ: 0.0 + rotX: 359.983124 + rotY: -0.00189453643 + rotZ: 359.920135 + scaleX: 4.0 + scaleY: 1.0 + scaleZ: 2.2 +XmlUI: '' diff --git a/unpacked/Custom_Model 5d61e2.yaml b/unpacked/Custom_Model 5d61e2.yaml new file mode 100644 index 000000000..1f0383f6e --- /dev/null +++ b/unpacked/Custom_Model 5d61e2.yaml @@ -0,0 +1,49 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +CustomMesh: + CastShadows: true + ColliderURL: http://cloud-3.steamusercontent.com/ugc/943949966265929204/A38BB5D72419E6298385556D931877C0A1A55C17/ + Convex: true + CustomShader: + FresnelStrength: 0.0 + SpecularColor: + b: 0.339915335 + g: 0.507659256 + r: 0.7222887 + SpecularIntensity: 0.4 + SpecularSharpness: 7.0 + DiffuseURL: http://cloud-3.steamusercontent.com/ugc/254843371583187306/6844B833AD55B9A34095067B201B311E1348325F/ + MaterialIndex: 2 + MeshURL: http://cloud-3.steamusercontent.com/ugc/943949966265929204/A38BB5D72419E6298385556D931877C0A1A55C17/ + NormalURL: '' + TypeIndex: 0 +Description: '' +GMNotes: '' +GUID: 5d61e2 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: true +LuaScript: '' +LuaScriptState: '' +Name: Custom_Model +Nickname: '' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 38.01064 + posY: 1.46070981 + posZ: -31.9828682 + rotX: 359.918152 + rotY: 269.674561 + rotZ: 0.0173959453 + scaleX: 0.325000376 + scaleY: 0.325000376 + scaleZ: 0.325000376 +XmlUI: '' diff --git a/unpacked/Custom_Model 7165a9.yaml b/unpacked/Custom_Model 7165a9.yaml new file mode 100644 index 000000000..a6671e42b --- /dev/null +++ b/unpacked/Custom_Model 7165a9.yaml @@ -0,0 +1,41 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +CustomMesh: + CastShadows: true + ColliderURL: '' + Convex: true + DiffuseURL: http://i.imgur.com/tfCQLkm.jpg + MaterialIndex: 1 + MeshURL: http://pastebin.com/raw.php?i=SyH06Cdm + NormalURL: '' + TypeIndex: 1 +Description: '' +GMNotes: '' +GUID: 7165a9 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: true +LuaScript: '' +LuaScriptState: '' +Name: Custom_Model +Nickname: '' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 30.0260582 + posY: 0.7287094 + posZ: -35.3466835 + rotX: 359.938782 + rotY: 329.986572 + rotZ: 359.9388 + scaleX: 5.25000143 + scaleY: 5.25000143 + scaleZ: 5.25000143 +XmlUI: '' diff --git a/unpacked/Custom_Model 87ccfc.yaml b/unpacked/Custom_Model 87ccfc.yaml new file mode 100644 index 000000000..865ca6947 --- /dev/null +++ b/unpacked/Custom_Model 87ccfc.yaml @@ -0,0 +1,49 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +CustomMesh: + CastShadows: true + ColliderURL: http://cloud-3.steamusercontent.com/ugc/943949966265929204/A38BB5D72419E6298385556D931877C0A1A55C17/ + Convex: true + CustomShader: + FresnelStrength: 0.0 + SpecularColor: + b: 0.339915335 + g: 0.507659256 + r: 0.7222887 + SpecularIntensity: 0.4 + SpecularSharpness: 7.0 + DiffuseURL: http://cloud-3.steamusercontent.com/ugc/254843371583188147/920981125E37B5CEB6C400E3FD353A2C428DA969/ + MaterialIndex: 2 + MeshURL: http://cloud-3.steamusercontent.com/ugc/943949966265929204/A38BB5D72419E6298385556D931877C0A1A55C17/ + NormalURL: '' + TypeIndex: 0 +Description: '' +GMNotes: '' +GUID: 87ccfc +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: true +LuaScript: '' +LuaScriptState: '' +Name: Custom_Model +Nickname: '' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 35.1893578 + posY: 1.52924168 + posZ: -32.29447 + rotX: -0.00488210144 + rotY: 194.9994 + rotZ: 0.08353614 + scaleX: 0.325000376 + scaleY: 0.325000376 + scaleZ: 0.325000376 +XmlUI: '' diff --git a/unpacked/Custom_Model a90f21.yaml b/unpacked/Custom_Model a90f21.yaml new file mode 100644 index 000000000..8a0dd055b --- /dev/null +++ b/unpacked/Custom_Model a90f21.yaml @@ -0,0 +1,49 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +CustomMesh: + CastShadows: true + ColliderURL: http://cloud-3.steamusercontent.com/ugc/943949966265929204/A38BB5D72419E6298385556D931877C0A1A55C17/ + Convex: true + CustomShader: + FresnelStrength: 0.0 + SpecularColor: + b: 0.339915335 + g: 0.507659256 + r: 0.7222887 + SpecularIntensity: 0.4 + SpecularSharpness: 7.0 + DiffuseURL: http://cloud-3.steamusercontent.com/ugc/254843371583188147/920981125E37B5CEB6C400E3FD353A2C428DA969/ + MaterialIndex: 2 + MeshURL: http://cloud-3.steamusercontent.com/ugc/943949966265929204/A38BB5D72419E6298385556D931877C0A1A55C17/ + NormalURL: '' + TypeIndex: 0 +Description: '' +GMNotes: '' +GUID: a90f21 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: true +LuaScript: '' +LuaScriptState: '' +Name: Custom_Model +Nickname: '' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 35.97841 + posY: 1.47627366 + posZ: -27.5910778 + rotX: 0.06989856 + rotY: 135.03064 + rotZ: 180.046036 + scaleX: 0.325000376 + scaleY: 0.325000376 + scaleZ: 0.325000376 +XmlUI: '' diff --git a/unpacked/Custom_Model b486bd.yaml b/unpacked/Custom_Model b486bd.yaml new file mode 100644 index 000000000..f568b2fc8 --- /dev/null +++ b/unpacked/Custom_Model b486bd.yaml @@ -0,0 +1,52 @@ +Autoraise: true +ColorDiffuse: + b: 0.141104579 + g: 0.141104579 + r: 0.141104579 +CustomMesh: + CastShadows: true + ColliderURL: '' + Convex: true + DiffuseURL: http://cloud-3.steamusercontent.com/ugc/780750188124765629/74DEC33718157E37D77E0777715B452F9015A07F/ + MaterialIndex: 2 + MeshURL: http://cloud-3.steamusercontent.com/ugc/780750188124765079/4F3634374EEC02E5D2DAED88F5D8F0956B6292B8/ + NormalURL: '' + TypeIndex: 0 +Description: '' +GMNotes: '' +GUID: b486bd +Grid: false +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: true +LuaScript: '' +LuaScriptState: '' +Name: Custom_Model +Nickname: '' +PhysicsMaterial: + BounceCombine: 0 + Bounciness: 0.0 + DynamicFriction: 0.0 + FrictionCombine: 0 + StaticFriction: 0.0 +Rigidbody: + AngularDrag: 0.0 + Drag: 0.0 + Mass: 500.0 + UseGravity: true +Snap: false +Sticky: true +Tooltip: true +Transform: + posX: 38.8192863 + posY: 1.53320789 + posZ: -36.0228844 + rotX: 270.055969 + rotY: 37.47933 + rotZ: 0.0 + scaleX: 0.2 + scaleY: 0.3 + scaleZ: 0.2 +XmlUI: '' diff --git a/unpacked/Custom_Model d7c767.yaml b/unpacked/Custom_Model d7c767.yaml new file mode 100644 index 000000000..3d736c433 --- /dev/null +++ b/unpacked/Custom_Model d7c767.yaml @@ -0,0 +1,49 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +CustomMesh: + CastShadows: true + ColliderURL: http://cloud-3.steamusercontent.com/ugc/943949966265929204/A38BB5D72419E6298385556D931877C0A1A55C17/ + Convex: true + CustomShader: + FresnelStrength: 0.0 + SpecularColor: + b: 0.339915335 + g: 0.507659256 + r: 0.7222887 + SpecularIntensity: 0.4 + SpecularSharpness: 7.0 + DiffuseURL: http://cloud-3.steamusercontent.com/ugc/254843371583188147/920981125E37B5CEB6C400E3FD353A2C428DA969/ + MaterialIndex: 2 + MeshURL: http://cloud-3.steamusercontent.com/ugc/943949966265929204/A38BB5D72419E6298385556D931877C0A1A55C17/ + NormalURL: '' + TypeIndex: 0 +Description: '' +GMNotes: '' +GUID: d7c767 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: true +LuaScript: '' +LuaScriptState: '' +Name: Custom_Model +Nickname: '' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 36.011982 + posY: 1.47552025 + posZ: -29.9783459 + rotX: 0.06992247 + rotY: 135.020035 + rotZ: 180.046036 + scaleX: 0.325000376 + scaleY: 0.325000376 + scaleZ: 0.325000376 +XmlUI: '' diff --git a/unpacked/Custom_Model f18c2d.yaml b/unpacked/Custom_Model f18c2d.yaml new file mode 100644 index 000000000..39e083837 --- /dev/null +++ b/unpacked/Custom_Model f18c2d.yaml @@ -0,0 +1,49 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +CustomMesh: + CastShadows: true + ColliderURL: http://cloud-3.steamusercontent.com/ugc/943949966265929204/A38BB5D72419E6298385556D931877C0A1A55C17/ + Convex: true + CustomShader: + FresnelStrength: 0.0 + SpecularColor: + b: 0.339915335 + g: 0.507659256 + r: 0.7222887 + SpecularIntensity: 0.4 + SpecularSharpness: 7.0 + DiffuseURL: http://cloud-3.steamusercontent.com/ugc/254843371583186619/365F95EC37B9B27DA32781DB460F0B70DB22F43F/ + MaterialIndex: 2 + MeshURL: http://cloud-3.steamusercontent.com/ugc/943949966265929204/A38BB5D72419E6298385556D931877C0A1A55C17/ + NormalURL: '' + TypeIndex: 0 +Description: '' +GMNotes: '' +GUID: f18c2d +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: true +LuaScript: '' +LuaScriptState: '' +Name: Custom_Model +Nickname: '' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 36.23839 + posY: 1.47488523 + posZ: -31.0145454 + rotX: 0.0158819165 + rotY: 179.935638 + rotZ: 180.082581 + scaleX: 0.325000376 + scaleY: 0.325000376 + scaleZ: 0.325000376 +XmlUI: '' diff --git a/unpacked/Custom_Model f42af3.yaml b/unpacked/Custom_Model f42af3.yaml new file mode 100644 index 000000000..f71053de3 --- /dev/null +++ b/unpacked/Custom_Model f42af3.yaml @@ -0,0 +1,49 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +CustomMesh: + CastShadows: true + ColliderURL: http://cloud-3.steamusercontent.com/ugc/943949966265929204/A38BB5D72419E6298385556D931877C0A1A55C17/ + Convex: true + CustomShader: + FresnelStrength: 0.0 + SpecularColor: + b: 0.339915335 + g: 0.507659256 + r: 0.7222887 + SpecularIntensity: 0.4 + SpecularSharpness: 7.0 + DiffuseURL: http://cloud-3.steamusercontent.com/ugc/254843371583186619/365F95EC37B9B27DA32781DB460F0B70DB22F43F/ + MaterialIndex: 2 + MeshURL: http://cloud-3.steamusercontent.com/ugc/943949966265929204/A38BB5D72419E6298385556D931877C0A1A55C17/ + NormalURL: '' + TypeIndex: 0 +Description: '' +GMNotes: '' +GUID: f42af3 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: true +LuaScript: '' +LuaScriptState: '' +Name: Custom_Model +Nickname: '' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 36.5103722 + posY: 1.55074334 + posZ: -31.6528053 + rotX: 0.0144096231 + rotY: 195.0004 + rotZ: 180.088455 + scaleX: 0.325000376 + scaleY: 0.325000376 + scaleZ: 0.325000376 +XmlUI: '' diff --git a/unpacked/Custom_Model Neutral 0422c7.yaml b/unpacked/Custom_Model Neutral 0422c7.yaml new file mode 100644 index 000000000..5d19f7262 --- /dev/null +++ b/unpacked/Custom_Model Neutral 0422c7.yaml @@ -0,0 +1,252 @@ +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/950722873599303195/BAB8BB40C755C099128931212969243EFF56ED39/ + MaterialIndex: 3 + MeshURL: https://pastebin.com/raw/ALrYhQGb + NormalURL: '' + TypeIndex: 4 +Description: Action token +GMNotes: '' +GUID: 0422c7 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Model +Nickname: Neutral +Snap: true +States: + '1': + 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: Action token + GMNotes: '' + GUID: 21bc79 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Custom_Model + Nickname: Survivor + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -48.55539 + posY: 1.61720085 + posZ: 27.1672459 + rotX: 359.9201 + rotY: 269.9998 + rotZ: 0.0168590657 + scaleX: 0.45 + scaleY: 0.6 + scaleZ: 0.45 + XmlUI: '' + '2': + 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: Action token + GMNotes: '' + GUID: ca4a61 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Custom_Model + Nickname: Rogue + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -18.9058781 + posY: 1.56216562 + posZ: -19.3586559 + rotX: 0.0168875586 + rotY: 179.995834 + rotZ: 0.07988935 + scaleX: 0.45 + scaleY: 0.6 + scaleZ: 0.45 + XmlUI: '' + '3': + 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: Action token + GMNotes: '' + GUID: 8f3b68 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Custom_Model + Nickname: Guardian + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -49.0888748 + posY: 1.618205 + posZ: 28.0518665 + rotX: 359.9201 + rotY: 270.00058 + rotZ: 0.0168790054 + scaleX: 0.45 + scaleY: 0.6 + scaleZ: 0.45 + XmlUI: '' + '4': + 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: Action token + GMNotes: '' + GUID: 8888ff + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Custom_Model + Nickname: Seeker + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -49.0888824 + posY: 1.61820507 + posZ: 28.0518684 + rotX: 359.9201 + rotY: 270.000641 + rotZ: 0.01687543 + scaleX: 0.45 + scaleY: 0.6 + scaleZ: 0.45 + XmlUI: '' + '5': + 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: Action token + GMNotes: '' + GUID: 6bd479 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Custom_Model + Nickname: Mystic + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -48.555397 + posY: 1.61720061 + posZ: 27.16725 + rotX: 359.9201 + rotY: 269.999756 + rotZ: 0.01685234 + scaleX: 0.45 + scaleY: 0.6 + scaleZ: 0.45 + XmlUI: '' +Sticky: true +Tooltip: true +Transform: + posX: -18.9059753 + posY: 1.56216455 + posZ: -19.3637238 + rotX: 0.0166617539 + rotY: 180.143387 + rotZ: 0.07992714 + scaleX: 0.45 + scaleY: 0.6 + scaleZ: 0.45 +XmlUI: '' diff --git a/unpacked/Custom_Model Neutral 062773.yaml b/unpacked/Custom_Model Neutral 062773.yaml new file mode 100644 index 000000000..788840b92 --- /dev/null +++ b/unpacked/Custom_Model Neutral 062773.yaml @@ -0,0 +1,252 @@ +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/950722873599303195/BAB8BB40C755C099128931212969243EFF56ED39/ + MaterialIndex: 3 + MeshURL: https://pastebin.com/raw/ALrYhQGb + NormalURL: '' + TypeIndex: 4 +Description: Action token +GMNotes: '' +GUID: '062773' +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Model +Nickname: Neutral +Snap: true +States: + '1': + 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: Action token + GMNotes: '' + GUID: 5d781f + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Custom_Model + Nickname: Survivor + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -20.2553978 + posY: 1.57541931 + posZ: 19.2608261 + rotX: 359.983124 + rotY: 0.0008311426 + rotZ: 359.9201 + scaleX: 0.45 + scaleY: 0.6 + scaleZ: 0.45 + XmlUI: '' + '2': + 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: Action token + GMNotes: '' + GUID: 9696d9 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Custom_Model + Nickname: Rogue + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -48.5554047 + posY: 1.61720073 + posZ: 27.1672535 + rotX: 359.920135 + rotY: 269.999756 + rotZ: 0.0168588255 + scaleX: 0.45 + scaleY: 0.6 + scaleZ: 0.45 + XmlUI: '' + '3': + 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: Action token + GMNotes: '' + GUID: 9aa864 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Custom_Model + Nickname: Guardian + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -20.2554016 + posY: 1.57541907 + posZ: 19.26083 + rotX: 359.983124 + rotY: 0.0005968637 + rotZ: 359.9201 + scaleX: 0.45 + scaleY: 0.6 + scaleZ: 0.45 + XmlUI: '' + '4': + 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: Action token + GMNotes: '' + GUID: 8888ff + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Custom_Model + Nickname: Seeker + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -49.0888824 + posY: 1.61820507 + posZ: 28.0518684 + rotX: 359.9201 + rotY: 270.000641 + rotZ: 0.01687543 + scaleX: 0.45 + scaleY: 0.6 + scaleZ: 0.45 + XmlUI: '' + '5': + 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: Action token + GMNotes: '' + GUID: 6bd479 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Custom_Model + Nickname: Mystic + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -48.555397 + posY: 1.61720061 + posZ: 27.16725 + rotX: 359.9201 + rotY: 269.999756 + rotZ: 0.01685234 + scaleX: 0.45 + scaleY: 0.6 + scaleZ: 0.45 + XmlUI: '' +Sticky: true +Tooltip: true +Transform: + posX: -20.2573166 + posY: 1.57542157 + posZ: 19.2603283 + rotX: 359.9829 + rotY: 359.833 + rotZ: 359.920166 + scaleX: 0.45 + scaleY: 0.6 + scaleZ: 0.45 +XmlUI: '' diff --git a/unpacked/Custom_Model Neutral 09f8c0.yaml b/unpacked/Custom_Model Neutral 09f8c0.yaml new file mode 100644 index 000000000..8db28c66e --- /dev/null +++ b/unpacked/Custom_Model Neutral 09f8c0.yaml @@ -0,0 +1,252 @@ +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/950722873599303195/BAB8BB40C755C099128931212969243EFF56ED39/ + MaterialIndex: 3 + MeshURL: https://pastebin.com/raw/ALrYhQGb + NormalURL: '' + TypeIndex: 4 +Description: Action token +GMNotes: '' +GUID: 09f8c0 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Model +Nickname: Neutral +Snap: true +States: + '1': + 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: Action token + GMNotes: '' + GUID: 21bc79 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Custom_Model + Nickname: Survivor + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -48.55539 + posY: 1.61720085 + posZ: 27.1672459 + rotX: 359.9201 + rotY: 269.9998 + rotZ: 0.0168590657 + scaleX: 0.45 + scaleY: 0.6 + scaleZ: 0.45 + XmlUI: '' + '2': + 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: Action token + GMNotes: '' + GUID: 3950dd + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Custom_Model + Nickname: Rogue + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -47.7641068 + posY: 1.60151935 + posZ: -22.340807 + rotX: 359.9201 + rotY: 269.998535 + rotZ: 0.0168766771 + scaleX: 0.45 + scaleY: 0.6 + scaleZ: 0.45 + XmlUI: '' + '3': + 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: Action token + GMNotes: '' + GUID: 74b1f1 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Custom_Model + Nickname: Guardian + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -47.7641 + posY: 1.60151935 + posZ: -22.3408031 + rotX: 359.9201 + rotY: 269.998627 + rotZ: 0.016864866 + scaleX: 0.45 + scaleY: 0.6 + scaleZ: 0.45 + XmlUI: '' + '4': + 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: Action token + GMNotes: '' + GUID: 5b95db + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Custom_Model + Nickname: Seeker + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -47.7641144 + posY: 1.60151935 + posZ: -22.34081 + rotX: 359.9201 + rotY: 269.9984 + rotZ: 0.0168713387 + scaleX: 0.45 + scaleY: 0.6 + scaleZ: 0.45 + XmlUI: '' + '5': + 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: Action token + GMNotes: '' + GUID: 6bd479 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Custom_Model + Nickname: Mystic + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -48.555397 + posY: 1.61720061 + posZ: 27.16725 + rotX: 359.9201 + rotY: 269.999756 + rotZ: 0.01685234 + scaleX: 0.45 + scaleY: 0.6 + scaleZ: 0.45 + XmlUI: '' +Sticky: true +Tooltip: true +Transform: + posX: -47.7726974 + posY: 1.60153 + posZ: -22.3451385 + rotX: 359.920135 + rotY: 269.9285 + rotZ: 0.0169911757 + scaleX: 0.45 + scaleY: 0.6 + scaleZ: 0.45 +XmlUI: '' diff --git a/unpacked/Custom_Model Neutral 1b8aa1.yaml b/unpacked/Custom_Model Neutral 1b8aa1.yaml new file mode 100644 index 000000000..4310f460e --- /dev/null +++ b/unpacked/Custom_Model Neutral 1b8aa1.yaml @@ -0,0 +1,252 @@ +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/950722873599303195/BAB8BB40C755C099128931212969243EFF56ED39/ + MaterialIndex: 3 + MeshURL: https://pastebin.com/raw/ALrYhQGb + NormalURL: '' + TypeIndex: 4 +Description: Action token +GMNotes: '' +GUID: 1b8aa1 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Model +Nickname: Neutral +Snap: true +States: + '1': + 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: Action token + GMNotes: '' + GUID: 1ce111 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Custom_Model + Nickname: Survivor + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -20.1442814 + posY: 1.56389213 + posZ: -19.3586483 + rotX: 0.0168924462 + rotY: 179.994873 + rotZ: 0.07989217 + scaleX: 0.45 + scaleY: 0.6 + scaleZ: 0.45 + XmlUI: '' + '2': + 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: Action token + GMNotes: '' + GUID: 9696d9 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Custom_Model + Nickname: Rogue + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -20.1442833 + posY: 1.56389225 + posZ: -19.3586521 + rotX: 0.0168896616 + rotY: 179.994827 + rotZ: 0.0798892453 + scaleX: 0.45 + scaleY: 0.6 + scaleZ: 0.45 + XmlUI: '' + '3': + 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: Action token + GMNotes: '' + GUID: 8f3b68 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Custom_Model + Nickname: Guardian + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -49.0888748 + posY: 1.618205 + posZ: 28.0518665 + rotX: 359.9201 + rotY: 270.00058 + rotZ: 0.0168790054 + scaleX: 0.45 + scaleY: 0.6 + scaleZ: 0.45 + XmlUI: '' + '4': + 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: Action token + GMNotes: '' + GUID: 8888ff + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Custom_Model + Nickname: Seeker + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -49.0888824 + posY: 1.61820507 + posZ: 28.0518684 + rotX: 359.9201 + rotY: 270.000641 + rotZ: 0.01687543 + scaleX: 0.45 + scaleY: 0.6 + scaleZ: 0.45 + XmlUI: '' + '5': + 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: Action token + GMNotes: '' + GUID: 6bd479 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Custom_Model + Nickname: Mystic + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -48.555397 + posY: 1.61720061 + posZ: 27.16725 + rotX: 359.9201 + rotY: 269.999756 + rotZ: 0.01685234 + scaleX: 0.45 + scaleY: 0.6 + scaleZ: 0.45 + XmlUI: '' +Sticky: true +Tooltip: true +Transform: + posX: -20.09265 + posY: 1.56382072 + posZ: -19.3571987 + rotX: 0.0144400224 + rotY: 181.732483 + rotZ: 0.0803511739 + scaleX: 0.45 + scaleY: 0.6 + scaleZ: 0.45 +XmlUI: '' diff --git a/unpacked/Custom_Model Neutral 307786.yaml b/unpacked/Custom_Model Neutral 307786.yaml new file mode 100644 index 000000000..09ae7180e --- /dev/null +++ b/unpacked/Custom_Model Neutral 307786.yaml @@ -0,0 +1,252 @@ +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/950722873599303195/BAB8BB40C755C099128931212969243EFF56ED39/ + MaterialIndex: 3 + MeshURL: https://pastebin.com/raw/ALrYhQGb + NormalURL: '' + TypeIndex: 4 +Description: Action token +GMNotes: '' +GUID: '307786' +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Model +Nickname: Neutral +Snap: true +States: + '1': + 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: Action token + GMNotes: '' + GUID: 0392f6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Custom_Model + Nickname: Survivor + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -19.0250874 + posY: 1.57370377 + posZ: 19.26084 + rotX: 359.983124 + rotY: 0.00236734725 + rotZ: 359.9201 + scaleX: 0.45 + scaleY: 0.6 + scaleZ: 0.45 + XmlUI: '' + '2': + 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: Action token + GMNotes: '' + GUID: 8f97e2 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Custom_Model + Nickname: Rogue + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -19.0250835 + posY: 1.573704 + posZ: 19.2608318 + rotX: 359.983124 + rotY: 0.00222183531 + rotZ: 359.9201 + scaleX: 0.45 + scaleY: 0.6 + scaleZ: 0.45 + XmlUI: '' + '3': + 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: Action token + GMNotes: '' + GUID: 8f3b68 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Custom_Model + Nickname: Guardian + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -19.02509 + posY: 1.57370377 + posZ: 19.2608433 + rotX: 359.983124 + rotY: 0.00244012778 + rotZ: 359.9201 + scaleX: 0.45 + scaleY: 0.6 + scaleZ: 0.45 + XmlUI: '' + '4': + 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: Action token + GMNotes: '' + GUID: 9fe854 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Custom_Model + Nickname: Seeker + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -19.0250854 + posY: 1.57370389 + posZ: 19.2608356 + rotX: 359.983124 + rotY: 0.00229458162 + rotZ: 359.9201 + scaleX: 0.45 + scaleY: 0.6 + scaleZ: 0.45 + XmlUI: '' + '5': + 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: Action token + GMNotes: '' + GUID: 6bd479 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Custom_Model + Nickname: Mystic + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -48.555397 + posY: 1.61720061 + posZ: 27.16725 + rotX: 359.9201 + rotY: 269.999756 + rotZ: 0.01685234 + scaleX: 0.45 + scaleY: 0.6 + scaleZ: 0.45 + XmlUI: '' +Sticky: true +Tooltip: true +Transform: + posX: -19.026619 + posY: 1.57370746 + posZ: 19.265274 + rotX: 359.9832 + rotY: 0.04211595 + rotZ: 359.9201 + scaleX: 0.45 + scaleY: 0.6 + scaleZ: 0.45 +XmlUI: '' diff --git a/unpacked/Custom_Model Neutral 53a5e0.yaml b/unpacked/Custom_Model Neutral 53a5e0.yaml new file mode 100644 index 000000000..e5d69316e --- /dev/null +++ b/unpacked/Custom_Model Neutral 53a5e0.yaml @@ -0,0 +1,252 @@ +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/950722873599303195/BAB8BB40C755C099128931212969243EFF56ED39/ + MaterialIndex: 3 + MeshURL: https://pastebin.com/raw/ALrYhQGb + NormalURL: '' + TypeIndex: 4 +Description: Action token +GMNotes: '' +GUID: 53a5e0 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Model +Nickname: Neutral +Snap: true +States: + '1': + 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: Action token + GMNotes: '' + GUID: 21bc79 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Custom_Model + Nickname: Survivor + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -48.55539 + posY: 1.61720085 + posZ: 27.1672459 + rotX: 359.9201 + rotY: 269.9998 + rotZ: 0.0168590657 + scaleX: 0.45 + scaleY: 0.6 + scaleZ: 0.45 + XmlUI: '' + '2': + 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: Action token + GMNotes: '' + GUID: bdc9ec + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Custom_Model + Nickname: Rogue + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -17.6755772 + posY: 1.56045055 + posZ: -19.3586388 + rotX: 0.0168890767 + rotY: 179.995453 + rotZ: 0.07988797 + scaleX: 0.45 + scaleY: 0.6 + scaleZ: 0.45 + XmlUI: '' + '3': + 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: Action token + GMNotes: '' + GUID: 9b655f + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Custom_Model + Nickname: Guardian + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -17.6755753 + posY: 1.56045055 + posZ: -19.3586349 + rotX: 0.01688767 + rotY: 179.9954 + rotZ: 0.07989898 + scaleX: 0.45 + scaleY: 0.6 + scaleZ: 0.45 + XmlUI: '' + '4': + 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: Action token + GMNotes: '' + GUID: 8888ff + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Custom_Model + Nickname: Seeker + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -49.0888824 + posY: 1.61820507 + posZ: 28.0518684 + rotX: 359.9201 + rotY: 270.000641 + rotZ: 0.01687543 + scaleX: 0.45 + scaleY: 0.6 + scaleZ: 0.45 + XmlUI: '' + '5': + 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: Action token + GMNotes: '' + GUID: 6bd479 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Custom_Model + Nickname: Mystic + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -48.555397 + posY: 1.61720061 + posZ: 27.16725 + rotX: 359.9201 + rotY: 269.999756 + rotZ: 0.01685234 + scaleX: 0.45 + scaleY: 0.6 + scaleZ: 0.45 + XmlUI: '' +Sticky: true +Tooltip: true +Transform: + posX: -17.6769238 + posY: 1.56045139 + posZ: -19.3622589 + rotX: 0.01663392 + rotY: 180.163422 + rotZ: 0.07993145 + scaleX: 0.45 + scaleY: 0.6 + scaleZ: 0.45 +XmlUI: '' diff --git a/unpacked/Custom_Model Neutral 54f7c4.yaml b/unpacked/Custom_Model Neutral 54f7c4.yaml new file mode 100644 index 000000000..96da4763e --- /dev/null +++ b/unpacked/Custom_Model Neutral 54f7c4.yaml @@ -0,0 +1,252 @@ +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/950722873599303195/BAB8BB40C755C099128931212969243EFF56ED39/ + MaterialIndex: 3 + MeshURL: https://pastebin.com/raw/ALrYhQGb + NormalURL: '' + TypeIndex: 4 +Description: Action token +GMNotes: '' +GUID: 54f7c4 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Model +Nickname: Neutral +Snap: true +States: + '1': + 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: Action token + GMNotes: '' + GUID: 260adb + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Custom_Model + Nickname: Survivor + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -47.7640953 + posY: 1.60188389 + posZ: -21.1023865 + rotX: 359.9201 + rotY: 269.999878 + rotZ: 0.0168610588 + scaleX: 0.45 + scaleY: 0.6 + scaleZ: 0.45 + XmlUI: '' + '2': + 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: Action token + GMNotes: '' + GUID: dd9281 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Custom_Model + Nickname: Rogue + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -47.7641029 + posY: 1.60188389 + posZ: -21.1023884 + rotX: 359.9201 + rotY: 269.999878 + rotZ: 0.0168583058 + scaleX: 0.45 + scaleY: 0.6 + scaleZ: 0.45 + XmlUI: '' + '3': + 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: Action token + GMNotes: '' + GUID: 8f3b68 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Custom_Model + Nickname: Guardian + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -49.0888748 + posY: 1.618205 + posZ: 28.0518665 + rotX: 359.9201 + rotY: 270.00058 + rotZ: 0.0168790054 + scaleX: 0.45 + scaleY: 0.6 + scaleZ: 0.45 + XmlUI: '' + '4': + 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: Action token + GMNotes: '' + GUID: e7257b + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Custom_Model + Nickname: Seeker + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -47.76411 + posY: 1.60188389 + posZ: -21.10239 + rotX: 359.9201 + rotY: 269.999878 + rotZ: 0.0168543179 + scaleX: 0.45 + scaleY: 0.6 + scaleZ: 0.45 + XmlUI: '' + '5': + 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: Action token + GMNotes: '' + GUID: 6bd479 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Custom_Model + Nickname: Mystic + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -48.555397 + posY: 1.61720061 + posZ: 27.16725 + rotX: 359.9201 + rotY: 269.999756 + rotZ: 0.01685234 + scaleX: 0.45 + scaleY: 0.6 + scaleZ: 0.45 + XmlUI: '' +Sticky: true +Tooltip: true +Transform: + posX: -47.77133 + posY: 1.60189319 + posZ: -21.1051426 + rotX: 359.9201 + rotY: 269.968445 + rotZ: 0.01693357 + scaleX: 0.45 + scaleY: 0.6 + scaleZ: 0.45 +XmlUI: '' diff --git a/unpacked/Custom_Model Neutral 64a43f.yaml b/unpacked/Custom_Model Neutral 64a43f.yaml new file mode 100644 index 000000000..490b2f6b4 --- /dev/null +++ b/unpacked/Custom_Model Neutral 64a43f.yaml @@ -0,0 +1,252 @@ +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/950722873599303195/BAB8BB40C755C099128931212969243EFF56ED39/ + MaterialIndex: 3 + MeshURL: https://pastebin.com/raw/ALrYhQGb + NormalURL: '' + TypeIndex: 4 +Description: Action token +GMNotes: '' +GUID: 64a43f +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Model +Nickname: Neutral +Snap: true +States: + '1': + 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: Action token + GMNotes: '' + GUID: 21bc79 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Custom_Model + Nickname: Survivor + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -48.55539 + posY: 1.61720085 + posZ: 27.1672459 + rotX: 359.9201 + rotY: 269.9998 + rotZ: 0.0168590657 + scaleX: 0.45 + scaleY: 0.6 + scaleZ: 0.45 + XmlUI: '' + '2': + 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: Action token + GMNotes: '' + GUID: 9696d9 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Custom_Model + Nickname: Rogue + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -48.5554047 + posY: 1.61720073 + posZ: 27.1672535 + rotX: 359.920135 + rotY: 269.999756 + rotZ: 0.0168588255 + scaleX: 0.45 + scaleY: 0.6 + scaleZ: 0.45 + XmlUI: '' + '3': + 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: Action token + GMNotes: '' + GUID: ebe685 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Custom_Model + Nickname: Guardian + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -47.7640877 + posY: 1.601157 + posZ: -23.571104 + rotX: 359.9201 + rotY: 270.000549 + rotZ: 0.01687111 + scaleX: 0.45 + scaleY: 0.6 + scaleZ: 0.45 + XmlUI: '' + '4': + 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: Action token + GMNotes: '' + GUID: 8888ff + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Custom_Model + Nickname: Seeker + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -47.76409 + posY: 1.60115683 + posZ: -23.571106 + rotX: 359.9201 + rotY: 270.0006 + rotZ: 0.0168664679 + scaleX: 0.45 + scaleY: 0.6 + scaleZ: 0.45 + XmlUI: '' + '5': + 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: Action token + GMNotes: '' + GUID: 6bd479 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Custom_Model + Nickname: Mystic + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -48.555397 + posY: 1.61720061 + posZ: 27.16725 + rotX: 359.9201 + rotY: 269.999756 + rotZ: 0.01685234 + scaleX: 0.45 + scaleY: 0.6 + scaleZ: 0.45 + XmlUI: '' +Sticky: true +Tooltip: true +Transform: + posX: -47.7687073 + posY: 1.60116267 + posZ: -23.5732136 + rotX: 359.9201 + rotY: 270.015381 + rotZ: 0.016874928 + scaleX: 0.45 + scaleY: 0.6 + scaleZ: 0.45 +XmlUI: '' diff --git a/unpacked/Custom_Model Neutral 6f53a6.yaml b/unpacked/Custom_Model Neutral 6f53a6.yaml new file mode 100644 index 000000000..f59d872f7 --- /dev/null +++ b/unpacked/Custom_Model Neutral 6f53a6.yaml @@ -0,0 +1,252 @@ +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/950722873599303195/BAB8BB40C755C099128931212969243EFF56ED39/ + MaterialIndex: 3 + MeshURL: https://pastebin.com/raw/ALrYhQGb + NormalURL: '' + TypeIndex: 4 +Description: Action token +GMNotes: '' +GUID: 6f53a6 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Model +Nickname: Neutral +Snap: true +States: + '1': + 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: Action token + GMNotes: '' + GUID: 21bc79 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Custom_Model + Nickname: Survivor + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -48.55539 + posY: 1.61720085 + posZ: 27.1672459 + rotX: 359.9201 + rotY: 269.9998 + rotZ: 0.0168590657 + scaleX: 0.45 + scaleY: 0.6 + scaleZ: 0.45 + XmlUI: '' + '2': + 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: Action token + GMNotes: '' + GUID: 9696d9 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Custom_Model + Nickname: Rogue + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -47.763958 + posY: 1.61465466 + posZ: 22.2677555 + rotX: 359.920135 + rotY: 270.000854 + rotZ: 0.0168542 + scaleX: 0.45 + scaleY: 0.6 + scaleZ: 0.45 + XmlUI: '' + '3': + 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: Action token + GMNotes: '' + GUID: 42c90f + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Custom_Model + Nickname: Guardian + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -47.763958 + posY: 1.61465466 + posZ: 22.26776 + rotX: 359.9201 + rotY: 270.000916 + rotZ: 0.01687055 + scaleX: 0.45 + scaleY: 0.6 + scaleZ: 0.45 + XmlUI: '' + '4': + 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: Action token + GMNotes: '' + GUID: 8888ff + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Custom_Model + Nickname: Seeker + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -49.0888824 + posY: 1.61820507 + posZ: 28.0518684 + rotX: 359.9201 + rotY: 270.000641 + rotZ: 0.01687543 + scaleX: 0.45 + scaleY: 0.6 + scaleZ: 0.45 + XmlUI: '' + '5': + 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: Action token + GMNotes: '' + GUID: 36f580 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Custom_Model + Nickname: Mystic + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -47.763958 + posY: 1.61465466 + posZ: 22.267765 + rotX: 359.9201 + rotY: 270.0011 + rotZ: 0.0168527737 + scaleX: 0.45 + scaleY: 0.6 + scaleZ: 0.45 + XmlUI: '' +Sticky: true +Tooltip: true +Transform: + posX: -47.7642 + posY: 1.61465609 + posZ: 22.2729034 + rotX: 359.920074 + rotY: 270.091675 + rotZ: 0.0167676117 + scaleX: 0.45 + scaleY: 0.6 + scaleZ: 0.45 +XmlUI: '' diff --git a/unpacked/Custom_Model Neutral 81729d.yaml b/unpacked/Custom_Model Neutral 81729d.yaml new file mode 100644 index 000000000..c91cdf929 --- /dev/null +++ b/unpacked/Custom_Model Neutral 81729d.yaml @@ -0,0 +1,252 @@ +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/950722873599303195/BAB8BB40C755C099128931212969243EFF56ED39/ + MaterialIndex: 3 + MeshURL: https://pastebin.com/raw/ALrYhQGb + NormalURL: '' + TypeIndex: 4 +Description: Action token +GMNotes: '' +GUID: 81729d +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Model +Nickname: Neutral +Snap: true +States: + '1': + 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: Action token + GMNotes: '' + GUID: 21bc79 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Custom_Model + Nickname: Survivor + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -47.76767 + posY: 1.6150254 + posZ: 23.5098286 + rotX: 359.920074 + rotY: 270.082062 + rotZ: 0.0167748537 + scaleX: 0.45 + scaleY: 0.6 + scaleZ: 0.45 + XmlUI: '' + '2': + 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: Action token + GMNotes: '' + GUID: a6bcf3 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Custom_Model + Nickname: Rogue + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -47.7676735 + posY: 1.6150254 + posZ: 23.5098324 + rotX: 359.920074 + rotY: 270.0819 + rotZ: 0.016778525 + scaleX: 0.45 + scaleY: 0.6 + scaleZ: 0.45 + XmlUI: '' + '3': + 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: Action token + GMNotes: '' + GUID: 8f3b68 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Custom_Model + Nickname: Guardian + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -47.7676773 + posY: 1.6150254 + posZ: 23.5098362 + rotX: 359.920074 + rotY: 270.081726 + rotZ: 0.0167769827 + scaleX: 0.45 + scaleY: 0.6 + scaleZ: 0.45 + XmlUI: '' + '4': + 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: Action token + GMNotes: '' + GUID: 8888ff + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Custom_Model + Nickname: Seeker + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -47.76768 + posY: 1.61502552 + posZ: 23.50984 + rotX: 359.920074 + rotY: 270.0815 + rotZ: 0.01677321 + scaleX: 0.45 + scaleY: 0.6 + scaleZ: 0.45 + XmlUI: '' + '5': + 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: Action token + GMNotes: '' + GUID: 6bd479 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Custom_Model + Nickname: Mystic + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -47.7676659 + posY: 1.6150254 + posZ: 23.5098248 + rotX: 359.920074 + rotY: 270.082275 + rotZ: 0.0167741925 + scaleX: 0.45 + scaleY: 0.6 + scaleZ: 0.45 + XmlUI: '' +Sticky: true +Tooltip: true +Transform: + posX: -47.7684059 + posY: 1.61502659 + posZ: 23.5104885 + rotX: 359.920074 + rotY: 270.061279 + rotZ: 0.0168050043 + scaleX: 0.45 + scaleY: 0.6 + scaleZ: 0.45 +XmlUI: '' diff --git a/unpacked/Custom_Model Neutral 9869d0.yaml b/unpacked/Custom_Model Neutral 9869d0.yaml new file mode 100644 index 000000000..428d51f7c --- /dev/null +++ b/unpacked/Custom_Model Neutral 9869d0.yaml @@ -0,0 +1,252 @@ +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/950722873599303195/BAB8BB40C755C099128931212969243EFF56ED39/ + MaterialIndex: 3 + MeshURL: https://pastebin.com/raw/ALrYhQGb + NormalURL: '' + TypeIndex: 4 +Description: Action token +GMNotes: '' +GUID: 9869d0 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Model +Nickname: Neutral +Snap: true +States: + '1': + 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: Action token + GMNotes: '' + GUID: 21bc79 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Custom_Model + Nickname: Survivor + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -48.55539 + posY: 1.61720085 + posZ: 27.1672459 + rotX: 359.9201 + rotY: 269.9998 + rotZ: 0.0168590657 + scaleX: 0.45 + scaleY: 0.6 + scaleZ: 0.45 + XmlUI: '' + '2': + 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: Action token + GMNotes: '' + GUID: '586838' + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Custom_Model + Nickname: Rogue + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -47.763958 + posY: 1.61429226 + posZ: 21.0374241 + rotX: 359.9201 + rotY: 269.999451 + rotZ: 0.0168584026 + scaleX: 0.45 + scaleY: 0.6 + scaleZ: 0.45 + XmlUI: '' + '3': + 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: Action token + GMNotes: '' + GUID: eeebda + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Custom_Model + Nickname: Guardian + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -47.763958 + posY: 1.61429226 + posZ: 21.037426 + rotX: 359.9201 + rotY: 269.999451 + rotZ: 0.0168608557 + scaleX: 0.45 + scaleY: 0.6 + scaleZ: 0.45 + XmlUI: '' + '4': + 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: Action token + GMNotes: '' + GUID: 8888ff + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Custom_Model + Nickname: Seeker + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -49.0888824 + posY: 1.61820507 + posZ: 28.0518684 + rotX: 359.9201 + rotY: 270.000641 + rotZ: 0.01687543 + scaleX: 0.45 + scaleY: 0.6 + scaleZ: 0.45 + XmlUI: '' + '5': + 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: Action token + GMNotes: '' + GUID: c2f0c3 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Custom_Model + Nickname: Mystic + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -47.763958 + posY: 1.61429226 + posZ: 21.0374279 + rotX: 359.9201 + rotY: 269.999451 + rotZ: 0.0168638378 + scaleX: 0.45 + scaleY: 0.6 + scaleZ: 0.45 + XmlUI: '' +Sticky: true +Tooltip: true +Transform: + posX: -47.7706528 + posY: 1.614302 + posZ: 21.03925 + rotX: 359.9201 + rotY: 269.964417 + rotZ: 0.0169388745 + scaleX: 0.45 + scaleY: 0.6 + scaleZ: 0.45 +XmlUI: '' diff --git a/unpacked/Custom_Model Neutral cbe115.yaml b/unpacked/Custom_Model Neutral cbe115.yaml new file mode 100644 index 000000000..ec8609a8a --- /dev/null +++ b/unpacked/Custom_Model Neutral cbe115.yaml @@ -0,0 +1,252 @@ +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/950722873599303195/BAB8BB40C755C099128931212969243EFF56ED39/ + MaterialIndex: 3 + MeshURL: https://pastebin.com/raw/ALrYhQGb + NormalURL: '' + TypeIndex: 4 +Description: Action token +GMNotes: '' +GUID: cbe115 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Model +Nickname: Neutral +Snap: true +States: + '1': + 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: Action token + GMNotes: '' + GUID: 6b9114 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Custom_Model + Nickname: Survivor + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -17.7866955 + posY: 1.57197738 + posZ: 19.26083 + rotX: 359.983124 + rotY: 0.00100063824 + rotZ: 359.9201 + scaleX: 0.45 + scaleY: 0.6 + scaleZ: 0.45 + XmlUI: '' + '2': + 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: Action token + GMNotes: '' + GUID: 7f001b + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Custom_Model + Nickname: Rogue + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -17.7866936 + posY: 1.57197738 + posZ: 19.260828 + rotX: 359.983124 + rotY: 0.0010944074 + rotZ: 359.9201 + scaleX: 0.45 + scaleY: 0.6 + scaleZ: 0.45 + XmlUI: '' + '3': + 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: Action token + GMNotes: '' + GUID: 11508f + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Custom_Model + Nickname: Guardian + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -17.7866974 + posY: 1.5719775 + posZ: 19.2608318 + rotX: 359.983124 + rotY: 0.000910012459 + rotZ: 359.9201 + scaleX: 0.45 + scaleY: 0.6 + scaleZ: 0.45 + XmlUI: '' + '4': + 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: Action token + GMNotes: '' + GUID: 8888ff + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Custom_Model + Nickname: Seeker + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -49.0888824 + posY: 1.61820507 + posZ: 28.0518684 + rotX: 359.9201 + rotY: 270.000641 + rotZ: 0.01687543 + scaleX: 0.45 + scaleY: 0.6 + scaleZ: 0.45 + XmlUI: '' + '5': + 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: Action token + GMNotes: '' + GUID: 6bd479 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Custom_Model + Nickname: Mystic + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -48.555397 + posY: 1.61720061 + posZ: 27.16725 + rotX: 359.9201 + rotY: 269.999756 + rotZ: 0.01685234 + scaleX: 0.45 + scaleY: 0.6 + scaleZ: 0.45 + XmlUI: '' +Sticky: true +Tooltip: true +Transform: + posX: -17.78811 + posY: 1.57198036 + posZ: 19.26299 + rotX: 359.983063 + rotY: 359.947937 + rotZ: 359.920135 + scaleX: 0.45 + scaleY: 0.6 + scaleZ: 0.45 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Arkhamdb bag b85d6d.ttslua b/unpacked/Custom_Model_Bag Arkhamdb bag b85d6d.ttslua new file mode 100644 index 000000000..bd80beb3c --- /dev/null +++ b/unpacked/Custom_Model_Bag Arkhamdb bag b85d6d.ttslua @@ -0,0 +1,36 @@ +function onLoad() + + + + + +--self.interactable = false +self.createButton({ + click_function= "onButtonClick", + function_owner= self, + position= {0, 1.84, 0}, + width = 1500, + height = 1000, + color = {0,0,0,0}, + tooltip= "click here to load cards first", +})end + +function onButtonClick(obj, playerColor) +if Player[playerColor].admin and self.getQuantity() > 0 then + + + + --AllCard Deck + self.takeObject ({ + position= {-63.36, 5, -65.69}, + rotation = {180,90,0}, + smooth= true,}) + + --AllCard Deck + self.takeObject ({ + position= {-63.34, 1.43, -77.75}, + rotation = {180,90,0}, + smooth= true,}) + +end +end \ No newline at end of file diff --git a/unpacked/Custom_Model_Bag Arkhamdb bag b85d6d.yaml b/unpacked/Custom_Model_Bag Arkhamdb bag b85d6d.yaml new file mode 100644 index 000000000..85126a4bc --- /dev/null +++ b/unpacked/Custom_Model_Bag Arkhamdb bag b85d6d.yaml @@ -0,0 +1,46 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +ContainedObjects: +- !include 'Custom_Model_Bag Arkhamdb bag b85d6d/Deck All Weaknesses 8c3e07.yaml' +- !include 'Custom_Model_Bag Arkhamdb bag b85d6d/Deck 4141fb.yaml' +CustomMesh: + CastShadows: true + ColliderURL: '' + Convex: true + DiffuseURL: http://cloud-3.steamusercontent.com/ugc/952965722516372129/745E93331A66C547C69B39EAD5044A72B8D732D3/ + MaterialIndex: 3 + MeshURL: https://pastebin.com/raw/ALrYhQGb + NormalURL: '' + TypeIndex: 6 +Description: '' +GMNotes: '' +GUID: b85d6d +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: true +LuaScript: !include 'Custom_Model_Bag Arkhamdb bag b85d6d.ttslua' +LuaScriptState: '' +MaterialIndex: -1 +MeshIndex: -1 +Name: Custom_Model_Bag +Nickname: Arkhamdb bag +Snap: true +Sticky: true +Tooltip: false +Transform: + posX: -62.9393845 + posY: 1.22772086 + posZ: -62.4767151 + rotX: 0.0208083726 + rotY: 269.998352 + rotZ: 0.0167748258 + scaleX: 1.2 + scaleY: 1.0 + scaleZ: 1.2 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Arkhamdb bag b85d6d/Deck 4141fb.yaml b/unpacked/Custom_Model_Bag Arkhamdb bag b85d6d/Deck 4141fb.yaml new file mode 100644 index 000000000..4a153ba8e --- /dev/null +++ b/unpacked/Custom_Model_Bag Arkhamdb bag b85d6d/Deck 4141fb.yaml @@ -0,0 +1,32669 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- 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 + UniqueBack: false + Description: Talent. + GMNotes: '' + GUID: ad24aa + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Scrapper (3) (Taboo) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -44.36104 + posY: 1.60391831 + posZ: -37.860836 + rotX: 359.920135 + rotY: 269.999939 + rotZ: 0.0168778971 + 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 + UniqueBack: false + Description: Tactic + GMNotes: '' + GUID: 83457e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Elusive (Taboo) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -40.94017 + posY: 1.598805 + posZ: -39.0298653 + rotX: 359.920135 + rotY: 270.005066 + rotZ: 0.0168610234 + 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 + UniqueBack: false + Description: Item. Weapon. Melee. Illicit. + GMNotes: '' + GUID: 015d79 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Switchblade (2) (Taboo) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -48.37227 + posY: 1.60943866 + posZ: -38.10408 + rotX: 359.920135 + rotY: 269.999817 + rotZ: 0.0168775227 + 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 + UniqueBack: false + Description: Talent. + GMNotes: '' + GUID: 5033a2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Higher Education (3) (Taboo) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -44.695118 + posY: 1.57171321 + posZ: -42.695816 + rotX: -1.11783593e-05 + rotY: 270.0 + rotZ: 1.00204279e-05 + 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 + UniqueBack: false + Description: Talent. + GMNotes: '' + GUID: 1105b0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Drawing Thin (Taboo) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -48.82235 + posY: 1.57170463 + posZ: -42.39966 + rotX: -0.000485198456 + rotY: 269.9931 + rotZ: 0.000725917052 + 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 + UniqueBack: false + Description: Trick + GMNotes: '' + GUID: 9f67e8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ace in the Hole (3) (Taboo) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -40.0214081 + posY: 1.55589676 + posZ: -42.9266548 + rotX: 0.004596717 + rotY: 269.932373 + rotZ: 9.811132 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 449910 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4499': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065907888682568/7EEF5065450AA58C3D2BB88F4A83F0EF698E690B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Item. Weapon. Melee. + GMNotes: '' + GUID: b40685 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Machete (Taboo) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -52.84431 + posY: 1.615803 + posZ: -37.6631 + rotX: 359.920135 + rotY: 270.003479 + rotZ: 0.0168732032 + 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 + UniqueBack: false + Description: Item. Weapon. Firearm. + GMNotes: '' + GUID: 75a0be + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Springfield M1903 (4) (Taboo) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -53.2500877 + posY: 1.57171333 + posZ: -41.6783066 + rotX: -4.49950949e-06 + rotY: 270.000031 + rotZ: 3.14302838e-06 + 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 + UniqueBack: false + Description: Fortune + GMNotes: '' + GUID: f50a30 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Double or Nothing (Taboo) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -48.80482 + posY: 1.36610484 + posZ: -46.91886 + rotX: 0.02081051 + rotY: 270.0 + rotZ: 0.01676931 + 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 + UniqueBack: false + Description: Trick. + GMNotes: '' + GUID: 67a72c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Sleight of Hand (Taboo) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -53.17532 + posY: 1.36455429 + posZ: -46.79326 + rotX: 0.020809155 + rotY: 270.000031 + rotZ: 0.0167707559 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 450504 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4505': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065907888682568/7EEF5065450AA58C3D2BB88F4A83F0EF698E690B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Professor of Entomology + GMNotes: '' + GUID: a60325 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dr. Milan Christopher (Taboo) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -44.5385742 + posY: 1.36757767 + posZ: -47.1803 + rotX: 0.0208091885 + rotY: 270.0 + rotZ: 0.016770754 + 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 + UniqueBack: false + Description: Let the Storm Rage + GMNotes: '' + GUID: e7d356 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Key of Ys (5) (Taboo) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -39.8272629 + posY: 1.36920857 + posZ: -47.454113 + rotX: 0.0208102837 + rotY: 270.0 + rotZ: 0.0167693533 + 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 + UniqueBack: false + Description: Innate. + GMNotes: '' + GUID: e6f2b9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Quick Thinking (Taboo) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -48.9039879 + posY: 1.36493754 + posZ: -50.7835732 + rotX: 0.0208103079 + rotY: 270.0 + rotZ: 0.0167691018 + 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 + UniqueBack: false + Description: Talent. + GMNotes: '' + GUID: 8043d5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Streetwise (3) (Taboo) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -53.1099434 + posY: 1.36336851 + posZ: -50.92538 + rotX: 0.0208104085 + rotY: 269.999969 + rotZ: 0.0167693309 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 450603 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4506': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065907888682568/7EEF5065450AA58C3D2BB88F4A83F0EF698E690B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Insight. + GMNotes: '' + GUID: cbcb7a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Delve Too Deep (Taboo) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -44.3658257 + posY: 1.36640024 + posZ: -51.41732 + rotX: 0.02081027 + rotY: 269.9962 + rotZ: 0.01676899 + 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 + UniqueBack: false + Description: Talent. + GMNotes: '' + GUID: ff4aea + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Scavenging (2) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.2820625 + posY: 3.47627831 + posZ: -54.6577263 + rotX: 0.0125016635 + rotY: 270.000031 + rotZ: 180.009964 + 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 + UniqueBack: false + Description: Item. Tome. + GMNotes: '' + GUID: 8a0060 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Old Book of Lore (3) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -17.119873 + posY: 1.68155932 + posZ: 15.1899729 + rotX: 359.9201 + rotY: 269.999939 + rotZ: 0.0168755725 + 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 + UniqueBack: false + Description: Fortune. Research. + GMNotes: '' + GUID: ff59dd + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Surprising Find (1) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -17.1198254 + posY: 1.68046081 + posZ: 11.4599657 + rotX: 359.9201 + rotY: 269.999939 + rotZ: 0.0168750454 + 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 + UniqueBack: false + Description: Library Intern + GMNotes: '' + GUID: 97e9ce + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: Weakness + GMNotes: '' + GUID: ae16e8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: Item. Charm. Cursed. + GMNotes: '' + GUID: d6f6f1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Nightmare Bauble (3) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -23.67624 + posY: 1.68960333 + posZ: 11.4599638 + rotX: 359.9201 + rotY: 269.999939 + rotZ: 0.0168760382 + 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 + UniqueBack: false + Description: Spirit. + GMNotes: '' + GUID: f0389b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Nothing Left to Lose (3) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -23.67629 + posY: 1.69070172 + posZ: 15.1899643 + rotX: 359.9201 + rotY: 270.0 + rotZ: 0.0168766789 + 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 + UniqueBack: false + Description: Spell. Practiced. + GMNotes: '' + GUID: d6085d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Eye of Truth (5) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -17.1198215 + posY: 1.678223 + posZ: 3.85996246 + rotX: 359.9201 + rotY: 269.999939 + rotZ: 0.0168755576 + 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 + UniqueBack: false + Description: 'Lookin'' Out For #1' + GMNotes: '' + GUID: 48c9ff + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: Item. Weapon. Firearm. Illicit. + GMNotes: '' + GUID: 4f5f0f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Sawed-Off Shotgun (5) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -30.22416 + posY: 1.69758856 + posZ: 7.56994057 + rotX: 359.9201 + rotY: 269.999939 + rotZ: 0.0168767255 + 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 + UniqueBack: false + Description: Item. Weapon. + GMNotes: '' + GUID: b45c82 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Garrote Wire (2) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -30.2241459 + posY: 1.69873393 + posZ: 11.459959 + rotX: 359.9201 + rotY: 269.999939 + rotZ: 0.01687562 + 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 + UniqueBack: false + Description: Syndicate Assassin + GMNotes: '' + GUID: 97a795 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 449137 + 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 + UniqueBack: false + Description: Ritual. + GMNotes: '' + GUID: ad58aa + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Mind's Eye (2) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -17.1198215 + posY: 1.67595947 + posZ: -3.82706165 + rotX: 359.9201 + rotY: 269.999939 + rotZ: 0.0168750323 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 449136 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4491': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025945336/04E36F64C2CBE1B4905FF44A869C75EC52CB3A56/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Extradimensional. Tindalos. + GMNotes: '' + GUID: 86cf9c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: Ritual. + GMNotes: '' + GUID: 26922c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Spiritual Resolve (5) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -23.67647 + posY: 1.68396187 + posZ: -7.70005226 + rotX: 359.9201 + rotY: 269.999969 + rotZ: 0.0168767758 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 449135 + 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 + UniqueBack: false + Description: Ally. Summon. + GMNotes: '' + GUID: ab4fb3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Summoned Hound (1) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -17.1198139 + posY: 1.67369711 + posZ: -11.510046 + rotX: 359.9201 + rotY: 269.999939 + rotZ: 0.0168764815 + 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 + UniqueBack: false + Description: Abandoned by the Gods + GMNotes: '' + GUID: c0d236 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 449138 + 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 + UniqueBack: false + Description: Item. Relic. + GMNotes: '' + GUID: b4b991 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Shining Trapezohedron (4) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -17.1199284 + posY: 1.67258716 + posZ: -15.2800436 + rotX: 359.9201 + rotY: 269.999969 + rotZ: 0.0168750621 + 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 + UniqueBack: false + Description: Jewel of the Gods + GMNotes: '' + GUID: 464ca1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: A Liar, or a Prophet, or Both + GMNotes: '' + GUID: 16e57b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: Blessed. Fortune. + GMNotes: '' + GUID: f21109 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: A Glimmer of Hope + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -25.3838615 + posY: 1.60246456 + posZ: 47.0473862 + rotX: 359.920135 + rotY: 269.9999 + rotZ: 0.0168753751 + 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 + UniqueBack: false + Description: Innate. Developed. + GMNotes: '' + GUID: ea8324 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Expeditious Retreat (1) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -25.9058418 + posY: 1.60392928 + posZ: 49.55065 + rotX: 359.920135 + rotY: 269.999664 + rotZ: 0.0168770552 + 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 + UniqueBack: false + Description: Item. Relic. Dreamlands. + GMNotes: '' + GUID: 0d006f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Moonstone + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -24.9834442 + posY: 1.60109007 + posZ: 44.2757645 + rotX: 359.920135 + rotY: 269.999817 + rotZ: 0.0168765951 + 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 + UniqueBack: false + Description: Innate. Developed. + GMNotes: '' + GUID: 4d9a97 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Sharp Vision (1) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -25.3844376 + posY: 1.60090768 + posZ: 41.7575035 + rotX: 359.920135 + rotY: 269.999725 + rotZ: 0.0168776382 + 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/1016065725025942034/FEADE7F6206804B42CC9B6049F51EDF6040C5D1D/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Spell. + GMNotes: '' + GUID: 122e98 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Lucid Dreaming (2) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -38.6710358 + posY: 1.36060691 + posZ: -78.2748642 + rotX: 0.0208114032 + rotY: 269.9894 + rotZ: 0.01676607 + 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 + UniqueBack: false + Description: Talent. Illicit. + GMNotes: '' + GUID: 2aeb8a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Burglary (2) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -25.136425 + posY: 1.59779835 + posZ: 32.3724747 + rotX: 359.9201 + rotY: 270.010559 + rotZ: 0.01686101 + 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 + UniqueBack: false + Description: Fortune. Practiced. + GMNotes: '' + GUID: b3cad4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Daredevil (2) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -25.5836468 + posY: 1.59771371 + posZ: 29.9677448 + rotX: 359.9201 + rotY: 270.017853 + rotZ: 0.0168497562 + 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 + UniqueBack: false + Description: Fortune. Practiced. + GMNotes: '' + GUID: 30062e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Three Aces (1) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -25.0431328 + posY: 1.59848654 + posZ: 35.15163 + rotX: 359.920135 + rotY: 270.003754 + rotZ: 0.0168697312 + 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 + UniqueBack: false + Description: Ritual. + GMNotes: '' + GUID: 1bd139 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Haste (2) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -24.89669 + posY: 1.59909666 + posZ: 37.9159966 + rotX: 359.920135 + rotY: 270.0001 + rotZ: 0.01687459 + 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 + UniqueBack: false + Description: Talent. + GMNotes: '' + GUID: 7dc42a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Safeguard (2) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -13.284276 + posY: 1.58267784 + posZ: 37.13597 + rotX: 359.920135 + rotY: 269.9948 + rotZ: 0.0168829914 + 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 + UniqueBack: false + Description: Item. Weapon. Firearm. + GMNotes: '' + GUID: ebdd78 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: .35 Winchester + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -12.8021679 + posY: 1.58126819 + posZ: 34.63115 + rotX: 359.920135 + rotY: 269.9957 + rotZ: 0.0168821383 + 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 + UniqueBack: false + Description: Spirit. Tactic. + GMNotes: '' + GUID: 93381d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Heroic Rescue (2) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -13.6093111 + posY: 1.581544 + posZ: 31.7467251 + rotX: 359.920135 + rotY: 269.994843 + rotZ: 0.0168817081 + 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 + UniqueBack: false + Description: Practiced. + GMNotes: '' + GUID: 80fafa + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Leadership (2) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -14.0603256 + posY: 1.5813446 + posZ: 28.9341526 + rotX: 359.920135 + rotY: 269.994873 + rotZ: 0.0168820359 + 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 + UniqueBack: false + Description: Alacrity + GMNotes: '' + GUID: 4c0f00 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: Stamina + GMNotes: '' + GUID: ffe4dd + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: Acuity + GMNotes: '' + GUID: 3d22c4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: Spell. + GMNotes: '' + GUID: 26853e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Word of Command (2) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -13.82774 + posY: 1.57612157 + posZ: 12.2979755 + rotX: 359.920135 + rotY: 270.006134 + rotZ: 0.0168687645 + 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 + UniqueBack: false + Description: Spell. + GMNotes: '' + GUID: 8e8a14 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Spectral Razor + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -13.8873186 + posY: 1.57711494 + posZ: 15.38911 + rotX: 359.920135 + rotY: 270.006165 + rotZ: 0.016868487 + 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 + UniqueBack: false + Description: Lost in a Dream + GMNotes: '' + GUID: 9f76ec + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: Dreams of a Madman + GMNotes: '' + GUID: e5f9cb + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: Dreams of an Explorer + GMNotes: '' + GUID: 5f9a10 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: Dreams of a Child + GMNotes: '' + GUID: ea40f6 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: Gambit. Tactic. + GMNotes: '' + GUID: 1ac667 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Practice Makes Perfect + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -25.001236 + posY: 1.59007835 + posZ: 6.79597044 + rotX: 359.920135 + rotY: 269.992432 + rotZ: 0.016884407 + 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 + UniqueBack: false + Description: Insight. + GMNotes: '' + GUID: 3dc25c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Extensive Research (1) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -25.15394 + posY: 1.58927739 + posZ: 3.35252047 + rotX: 359.920135 + rotY: 269.992432 + rotZ: 0.0168847647 + 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: + '3693': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 527f1c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Hospital Debts + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 86.6688 + posY: 1.37643623 + posZ: -58.7488174 + rotX: 0.0114105586 + rotY: 270.00592 + rotZ: 0.0228593312 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 2240f9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 7f99cc + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: c4cf62 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: cc6b14 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 4167c0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 266618 + 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 + UniqueBack: false + Description: Enemy + GMNotes: '' + GUID: 4ea68b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Stubborn Detective + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 74.16702 + posY: 1.55374384 + posZ: 82.14298 + rotX: 0.0201055184 + rotY: 269.999329 + rotZ: 0.0164802913 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 603e29 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 644af9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 6d9881 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 3e0653 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 5e32a5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: a2c7ef + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 785f68 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: bda4fd + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: f6ff32 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: bd3ecc + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: e5dd39 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: f5bcec + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 274daa + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 379303 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3793': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 0f25d1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: To Fight The Black Wind + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 6.477776 + posY: 1.64344335 + posZ: -63.7827377 + rotX: 0.04498918 + rotY: 270.084473 + rotZ: 346.9535 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 449252 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 16ad5d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 2c6509 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 44cf4a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: fb9b7e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 293431 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2934': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/916924328393203114/88DD33EAF250224CAAC691705C0EB759D620CC78/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Poision. + GMNotes: '' + GUID: 866eba + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Poisoned + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -59.5298538 + posY: 2.03962016 + posZ: 30.6674786 + rotX: 354.440369 + rotY: 270.26767 + rotZ: 354.588348 + 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 + UniqueBack: false + Description: Basic Weakness + GMNotes: '' + GUID: 406ab2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 0ce005 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 756a35 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 277040 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2770': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Item. + GMNotes: '' + GUID: 60982a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Mysterious Syringe + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -62.51133 + posY: 1.79343677 + posZ: 28.8148022 + rotX: 359.854248 + rotY: 270.063 + rotZ: 359.983734 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 3dc82f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 1b0235 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 86b9c5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 1b76c9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: bb0f6a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: Sanctum's Reward + GMNotes: '' + GUID: 223ba3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 0414b4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: Professor of Entomology + GMNotes: '' + GUID: 9934d2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 368400 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: ffa4f9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Eureka! + 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 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 074858 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 060943 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 3f3488 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 9bcdee + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: c92ea3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 2db518 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 00af4f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: baef55 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: b8c93a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 576d70 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: Survivor + GMNotes: '' + GUID: cbe256 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 79287f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 293544 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2935': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/915801999159326706/E3A3EA529B0E7454D79EA825BECFD81BEC3FBBEC/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159325148/B25E4760A8FFC5A71DFA1DE038D6CA8A74C7AE0C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Ally. Eztli. Wayfarer. + GMNotes: '' + GUID: d6cd01 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ichtaca + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -61.38104 + posY: 1.62891388 + posZ: -33.5552 + rotX: 359.920135 + rotY: 269.999268 + rotZ: 0.0168674383 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: c18ebe + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 1b4434 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: d6eda3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 3b8cb7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 4cfcc7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: Knowledge of the Elders + GMNotes: '' + GUID: 863f91 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: ee20c9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: Basic Weakness + GMNotes: '' + GUID: eff3c8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: a8e495 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 8948c4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: '914053' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Shrivelling + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -25.0 + posY: 1.32934916 + posZ: 57.55 + rotX: 0.0207989346 + rotY: 270.0313 + rotZ: 0.01678501 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 440721 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 0ec9bf + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Suggestion (1) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -47.5417442 + posY: 1.3655479 + posZ: -50.38864 + rotX: 0.0208050758 + rotY: 270.017761 + rotZ: 0.0167755261 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 83d8d7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: edb554 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: Guardian + GMNotes: '' + GUID: 84b918 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: Empowering Elixir + GMNotes: '' + GUID: d96e4b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: f1b0f9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: Basic Weakness + GMNotes: '' + GUID: 447a08 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: Basic Weakness + GMNotes: '' + GUID: 88a9b3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 14c396 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: a3f105 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 291650 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2916': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/916924328393196277/F523996031DA7F842C013BA249D3D07257DA24A3/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393194495/027101CA5C626EBA0E4F76F3F15569329F81DE3C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Ally. Wayfarer. + GMNotes: '' + GUID: 1b9dbf + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Alejandro Vela + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -46.8167572 + posY: 1.62852526 + posZ: 34.0771141 + rotX: 359.920135 + rotY: 270.008362 + rotZ: 0.016853584 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 53d765 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 76147b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 15643b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: d64c99 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: '170538' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: Item. Mask. + GMNotes: '' + GUID: a42f33 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Bauta + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -47.3952 + posY: 1.32006884 + posZ: 53.6318169 + rotX: 0.0208067633 + rotY: 270.000763 + rotZ: 0.0167768467 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: da7613 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 430658 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 1f3f16 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: No Stone Unturned (5) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 88.05002 + posY: 1.420113 + posZ: -38.50999 + rotX: 359.987427 + rotY: 270.000031 + rotZ: 359.984528 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 1f3880 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: Talent. + GMNotes: '' + GUID: 96ae32 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Monstrous Transformation + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -61.97174 + posY: 1.71607125 + posZ: 7.517825 + rotX: 2.64691973 + rotY: 269.998352 + rotZ: 0.0162913743 + 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 + UniqueBack: false + Description: Circumstances Beyond Your Control + GMNotes: '' + GUID: d5c93d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: Ally. Believer. + GMNotes: '' + GUID: 1e7f1b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: dacbf0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: Seeker + GMNotes: '' + GUID: 0b12ac + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 444509 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2741': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107869050061525/A759DF697FFB26F0F5B75E116A923E33F88FCA7B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1011562618093846571/13C76218853EE87123267F8F6BE99206DB40470B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: fa4c1e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dream-Gate + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -59.2159233 + posY: 1.4796102 + posZ: -50.60799 + rotX: 0.02220803 + rotY: 270.0014 + rotZ: 0.0144636128 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 7275bc + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 380025 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 0cc3e7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Followed + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 20.0233421 + posY: 1.672191 + posZ: -1.01813757 + rotX: 359.923248 + rotY: 269.9999 + rotZ: 0.01653332 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 79b4af + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: My Muse + GMNotes: '' + GUID: ea0007 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 266616 + 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 + UniqueBack: false + Description: Enemy + GMNotes: '' + GUID: b239d7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 2c2d9a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 96a440 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: Hour of the Huntress + GMNotes: '' + GUID: c729ab + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: b0c61c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: Speaker to the Dead + GMNotes: '' + GUID: 53867b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 374935 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 274daa + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Crisis of Identity + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 6.48780966 + posY: 0.4805672 + posZ: -83.88897 + rotX: -1.45658453e-06 + rotY: 270.021057 + rotZ: 359.991943 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 510c0d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: c55160 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: f34090 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: Untranslated + GMNotes: '' + GUID: cbfc12 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 0ab574 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Mk1 Grenades (4) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 112.325455 + posY: 1.39715755 + posZ: 26.8287182 + rotX: 359.987427 + rotY: 269.999634 + rotZ: 359.984558 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: df0e22 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: f57a6f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 86ee68 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: efb09b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 8254d4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 006d44 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 4d9b32 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 0f32e8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: c40cb4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: f763e8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 0a390e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 49a91e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: d3dcf1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 07a8f0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: a7944d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: '394603' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 2f9de4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.0 + rotZ: 359.984558 + 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 + UniqueBack: false + Description: Untranslated + GMNotes: '' + GUID: b81dcf + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: Protective Amulet + GMNotes: '' + GUID: b00b76 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: Deals with "Devils" + GMNotes: '' + GUID: 4f2489 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: a57f19 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: '876557' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 53f076 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 0bb3da + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 226332 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 0e2987 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Venturer + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 9.230007 + posY: 1.34178066 + posZ: 57.55 + rotX: 0.0208174214 + rotY: 269.9694 + rotZ: 0.0167613029 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: d4fd4a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 91e53c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: Basic Weakness + GMNotes: '' + GUID: dd3d09 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: d6771f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 12660b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 368524 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: bca49e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Charisma (3) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 2e3115 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 2423e7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 379154 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3791': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 1c7a00 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Rational Thought + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 7.87244558 + posY: 1.3814404 + posZ: -64.38252 + rotX: 0.014240846 + rotY: 269.998383 + rotZ: 0.0146841351 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 5b14dc + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: Fearless Flatfoot + GMNotes: '' + GUID: ae20e0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: a06aa7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 59b24f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: Mystic + GMNotes: '' + GUID: 194d88 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 1186a1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: bba97a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 063fd8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 83c86b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: bc4788 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: Over the Threshold and Beyond + GMNotes: '' + GUID: 05da68 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: b65011 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 9bd7cf + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 658d38 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 0d926f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: '889121' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 226329 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: e25dc1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: True Grit + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 9.230007 + posY: 1.34380043 + posZ: 64.4500046 + rotX: 0.0208176039 + rotY: 269.9694 + rotZ: 0.0167631973 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 9d6e9a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 44a37f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 379711 + 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/1016065725025942034/FEADE7F6206804B42CC9B6049F51EDF6040C5D1D/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: eca1c8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Versatile (2) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 20.7186317 + posY: 1.52759826 + posZ: 11.0690155 + rotX: 359.920135 + rotY: 269.999359 + rotZ: 0.0168778952 + 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 + UniqueBack: false + Description: The Fateful Step + GMNotes: '' + GUID: 52a677 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 1fe462 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: eab2ed + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: f8dc01 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: Mysterious Benefactress + GMNotes: '' + GUID: 1ee492 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: In Way Over His Head + GMNotes: '' + GUID: d99735 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 308be1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: Basic Weakness + GMNotes: '' + GUID: b2ef43 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 9ef062 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: bf3dd1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 5ab9f4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 368517 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: f59085 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Backpack + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 57.27 + posY: 1.36394 + posZ: 73.65 + rotX: 0.0208096988 + rotY: 269.99408 + rotZ: 0.0167709384 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 45d2d2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 3b6834 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 430905 + 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 + UniqueBack: false + Description: Chalice of the Heart + GMNotes: '' + GUID: dd4e2a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Four of Cups (1) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 80.76002 + posY: 1.40496361 + posZ: 23.590023 + rotX: 359.987427 + rotY: 270.0 + rotZ: 359.984558 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 4e1d91 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: acf2b0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: Acquisitions and Solicitation + GMNotes: '' + GUID: 4a2a36 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 380229 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 7651f3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Scrounge for Supplies + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 19.9572716 + posY: 1.6682297 + posZ: -8.20728 + rotX: 359.891022 + rotY: 269.976044 + rotZ: 0.0115493527 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 13eaf0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: cf9ca8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 84ba9d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 36c0cb + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: edd34a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: f91e14 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 4156cf + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 6de21b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 321cb7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Daisy's Tote Bag + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 87.761734 + posY: 1.423597 + posZ: -67.51422 + rotX: 0.0205195956 + rotY: 270.028229 + rotZ: 0.0166524686 + 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 + UniqueBack: false + Description: Rogue + GMNotes: '' + GUID: b5e5f1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 95272b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: d5cac6 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 523b76 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 4224db + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 368421 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 8cc0a6 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Magnifying Glass + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -6.639993 + posY: 1.34342265 + posZ: 82.8500061 + rotX: 0.0208148547 + rotY: 269.978821 + rotZ: 0.0167631079 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: e7f37b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: a5c780 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: b7c503 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: f57af7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: Signed in Blood + GMNotes: '' + GUID: ae3775 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: e8ea95 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: Basic Weakness + GMNotes: '' + GUID: 57e648 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: Basic Weakness + GMNotes: '' + GUID: 3b3c0a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 91e890 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: b94d12 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 8cf335 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: c803ba + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: cf4f15 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 292814 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: ec38db + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Warning Shot + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: dd130e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 5f19e0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 9e4505 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 29b842 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: f69e10 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 97986a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: cdbb37 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: Item. Mask. + GMNotes: '' + GUID: f3b3a9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Gilded Volto + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.33818 + posY: 1.63275731 + posZ: -29.7686024 + rotX: 359.920135 + rotY: 269.998871 + rotZ: 0.0168713387 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: e21854 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: ba560e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 226304 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 99d061 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Intrepid + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.0300045 + posY: 1.35030913 + posZ: 78.25 + rotX: 0.020811582 + rotY: 269.987427 + rotZ: 0.0167669915 + 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 + UniqueBack: false + Description: Restorative Concoction + GMNotes: '' + GUID: 4874bc + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 7001be + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 814ce2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: eea4ef + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 26a3bf + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: Item. Mask. + GMNotes: '' + GUID: 080d4a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Pantalone + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -68.25875 + posY: 3.65041327 + posZ: 6.463747 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: e72762 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 266617 + 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 + UniqueBack: false + Description: Enemy + GMNotes: '' + GUID: 16a89d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 431656 + 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/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 22d886 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Unsolved Case + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 6.089414 + posY: 1.42903221 + posZ: -72.42946 + rotX: 0.0207405332 + rotY: 269.991516 + rotZ: 0.0169848632 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: e66002 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 62cf25 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 4f2668 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 277510 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 05d263 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Sign Magick + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -23.23641 + posY: 1.47389865 + posZ: 43.5471077 + rotX: -0.000413226458 + rotY: 269.990479 + rotZ: 352.212463 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: a88392 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: db90e2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 295128 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2951': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/254843371583121486/AF36A64D6D25AEB0E50FB36B34AD2A95C2B485BF/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642393244/74ADDF83D8B03DBF4AD5DC7230C2D12E84685317/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Ally + GMNotes: '' + GUID: 3c1944 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Lita Chantler + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -61.62659 + posY: 1.731941 + posZ: 13.0320845 + rotX: 3.19259238 + rotY: 269.9959 + rotZ: 0.0182487071 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: ca25bc + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: cd7b97 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 46812e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: '213853' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: Mind-Expanding Ideas + GMNotes: '' + GUID: 344d98 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 97781f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 5e808d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: d7dbac + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 7d3a27 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: d6f8d1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: '812175' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 1165db + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Physical Training + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 9.230006 + posY: 1.34851313 + posZ: 80.55 + rotX: 0.0208176617 + rotY: 269.9694 + rotZ: 0.0167605784 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: c6c260 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 033a35 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: Stygian Waymark + GMNotes: '' + GUID: 6527a4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 819aee + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: aec357 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: acce72 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: fc2629 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 0db666 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: Spell. + GMNotes: '' + GUID: 863f1a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 6945f7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: Minds in Harmony + GMNotes: '' + GUID: 9c56d3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 9b9e8b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: ba1460 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 5d6e57 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 1258c6 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: bb501b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: a53344 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 3c959c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: fc9e1b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 67e006 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: eafd12 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: a13ca4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: bc80ab + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: e68658 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: Not Going Down That Easily + GMNotes: '' + GUID: 2237f4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: ecfa42 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: Aspiring Actor + GMNotes: '' + GUID: 9df9df + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 77f92c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: Stealing Time + GMNotes: '' + GUID: 62d930 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: Basic Weakness + GMNotes: '' + GUID: 4fb446 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: Cleansing Fire + GMNotes: '' + GUID: 423d46 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: Elegant and Elusive + GMNotes: '' + GUID: 83b588 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: e674e8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: f474b1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 66d810 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: Let the Storm Rage + GMNotes: '' + GUID: 1c98ff + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 266603 + 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 + UniqueBack: false + Description: Basic Weakness + GMNotes: '' + GUID: d83baf + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 283e54 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: f2508d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 0bea17 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 5cd622 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 2cfa4f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: aa3984 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 2acced + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 2c901b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: b265c4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: f66dd9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 6aae86 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: Enemy + GMNotes: '' + GUID: da227d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 45bdf0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: c17f2c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: Guiding Stones + GMNotes: '' + GUID: a14a11 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: Big Man on Campus + GMNotes: '' + GUID: ffdeb5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 50fb37 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 0a4db3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 968a26 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 266600 + 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 + UniqueBack: false + Description: Basic Weakness + GMNotes: '' + GUID: 2210c1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: fa1d67 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 374935 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 367aac + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Crisis of Identity + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 6.36442661 + posY: 0.627180755 + posZ: -83.87339 + rotX: -1.86304419e-06 + rotY: 270.0211 + rotZ: 359.991943 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 86feae + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Call of the Unknown + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 27.75085 + posY: 1.35065508 + posZ: -73.71742 + rotX: 0.02062829 + rotY: 270.0273 + rotZ: 0.0167407412 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 1bc300 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: d3e55b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: Mystic + GMNotes: '' + GUID: d0de54 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: ddee79 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 679b13 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: dffe4a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: Rogue + GMNotes: '' + GUID: d4dbc7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: ff3f17 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: Ally. Sorcerer. + GMNotes: '' + GUID: 37a76b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: b0f851 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: Key to the Gate of Dreams + GMNotes: '' + GUID: 61fd07 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 7d4749 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 1a90a4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: Markings of Isis + GMNotes: '' + GUID: 66d5a3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: c7d9b5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: Took You Long Enough + GMNotes: '' + GUID: 726d1d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: Basic Weakness + GMNotes: '' + GUID: eeb330 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 6a9021 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 31d087 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 88d3c0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 25ad44 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: Basic Weakness + GMNotes: '' + GUID: ba2ae1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: c6ac19 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: d8a324 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 324e49 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: Basic Weakness + GMNotes: '' + GUID: f6aba5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: a33470 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: d1d7fa + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 2fe723 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: The Ferryman's Pay + GMNotes: '' + GUID: 1dbc95 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: Wrong Place, Wrong Time + GMNotes: '' + GUID: b8380d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 9aee7f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 37a2b5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: d946d9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 02777c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: On the Lam + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 86.64723 + posY: 1.51657939 + posZ: -58.7914848 + rotX: 0.00305388169 + rotY: 269.958221 + rotZ: 0.08493134 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 68744b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: '683937' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: '833305' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 0e4a82 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: Esteemed Eschatologist + GMNotes: '' + GUID: 1f8539 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: bbfe9b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 35166c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: Cat General of Ulthar + GMNotes: '' + GUID: e1aedf + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 6ad46b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: c70ad8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 3a0df6 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 64e131 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 5690d1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: Gift of the Homunculi + GMNotes: '' + GUID: 6bae15 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: Custom Marlin Model 1894 + GMNotes: '' + GUID: '587589' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: ff9f23 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: Prophecy Foretold + GMNotes: '' + GUID: 3d35aa + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: '170538' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 5115d9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 215cec + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 3ff641 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 80628f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 090fcf + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 7b6ab5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 8f91ce + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: cdfd9f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 230350 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: e58d2a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Scrying (3) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 70772b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 439af2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: f4dd3d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: The Louisiana Lion + GMNotes: '' + GUID: 27446e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: b3ce16 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: Too Noble for His Own Good + GMNotes: '' + GUID: 08e5a6 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 30f860 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 8b0193 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 275dc3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: d48b25 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 65b30d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 5fe780 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: cd0ac1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: Mysterious Soothsayer + GMNotes: '' + GUID: 03a4de + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 274001 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: e567ff + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Rookie Mistake + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -41.9113426 + posY: 1.36391878 + posZ: -62.9399719 + rotX: 0.0208036676 + rotY: 270.0199 + rotZ: 0.0167777035 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 7a33b2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 864fb6 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: dc3b07 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: Let Your Arrow Fly True + GMNotes: '' + GUID: c4d436 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 869d4c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: dfd48b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: dffa9d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 1339b0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 2f4db2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 14e212 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 03c6a7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 274207 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: '276477' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: ce1b89 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: b9bb2a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 3586e6 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: ecd087 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: Freezing Variant + GMNotes: '' + GUID: 9afe23 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 54832d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 9e5cd2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 378016 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: bf5a5f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Small Favor + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 46.1860275 + posY: 1.35657763 + posZ: 62.2501678 + rotX: 0.020814402 + rotY: 269.982 + rotZ: 0.01676661 + 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 + UniqueBack: false + Description: Of Nothing at All + GMNotes: '' + GUID: 9b0dcf + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: a8298f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: d753d7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 695bb7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 831b6b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 9c46da + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: fe0cc0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: d87128 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 016b72 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 266602 + 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 + UniqueBack: false + Description: Basic Weakness + GMNotes: '' + GUID: 249d83 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: ba16cb + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 06228f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: Guardian + GMNotes: '' + GUID: b492cb + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: a00fca + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 379402 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3794': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 86bbeb + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '*Foolishness' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 6.9873414 + posY: 1.74548566 + posZ: -63.8052177 + rotX: 0.0411309749 + rotY: 270.0635 + rotZ: 346.958557 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: cdd6aa + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: Seeker + GMNotes: '' + GUID: 1433eb + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 2d362c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 266601 + 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 + UniqueBack: false + Description: Basic Weakness + GMNotes: '' + GUID: c17498 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 266604 + 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 + UniqueBack: false + Description: Basic Weakness + GMNotes: '' + GUID: 88ee43 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 9f0b34 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 293145 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2931': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/915801999159326706/E3A3EA529B0E7454D79EA825BECFD81BEC3FBBEC/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159325148/B25E4760A8FFC5A71DFA1DE038D6CA8A74C7AE0C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Item. Tome. + GMNotes: '' + GUID: '891282' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Expedition Journal + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -64.94205 + posY: 1.43107319 + posZ: 44.3752823 + rotX: 0.0283074528 + rotY: 269.983826 + rotZ: 359.214539 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: d12359 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: Basic Weakness + GMNotes: '' + GUID: a5be8b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: Survivor + GMNotes: '' + GUID: 5fae20 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 4ea716 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 8a927c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 440624 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4406': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025946328/561232524C8EAA4B4371B28652F78969E6ED6FFB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 45c582 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Hope + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 89.2787247 + posY: 1.399232 + posZ: 37.56264 + rotX: 359.988373 + rotY: 269.993164 + rotZ: 359.9784 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 8f7289 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 2ee50e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 536b52 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: Will Try Anything Once + GMNotes: '' + GUID: 9683d0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: '358387' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 3add54 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: Unidentified + GMNotes: '' + GUID: 565b6b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 230306 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 1cd2bd + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Moonlight Ritual + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -21.6000023 + posY: 1.33596981 + posZ: 75.95 + rotX: 0.0208188351 + rotY: 269.96698 + rotZ: 0.0167611167 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: d2e026 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 13413d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 8f3c8e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 5558f1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: The Forgotten Daughter + GMNotes: '' + GUID: 9393ec + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 98fc57 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 848d9c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 30f90b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 368818 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: da207b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Waylay + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 45.970005 + posY: 1.35445011 + posZ: 55.2500038 + rotX: 0.02080474 + rotY: 270.012939 + rotZ: 0.0167768449 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 097dcc + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: a20887 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 8dce44 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: e27b3c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Recharge (2) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 80.76002 + posY: 1.40806556 + posZ: 12.090023 + rotX: 359.987427 + rotY: 270.000031 + rotZ: 359.984558 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 9591ac + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: b1ad65 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: c33a10 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: c026c9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: The Forgotten Daughter + GMNotes: '' + GUID: fb9dbb + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: Curse. + GMNotes: '' + GUID: 569b06 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: a33acd + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 6fec31 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: da46e0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: "Calamitous Blade of Celepha\xEFs" + GMNotes: '' + GUID: bbd11b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: Treachery + GMNotes: '' + GUID: aafc17 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 3fe6de + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 41a9ec + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 8aa0c3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 2236f6 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 0c859f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 368807 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 050ba1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Live and Learn + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 45.97 + posY: 1.36320233 + posZ: 85.15 + rotX: 0.020803472 + rotY: 270.0129 + rotZ: 0.0167760346 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: dcdcea + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: bc3451 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 7bc995 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 48e103 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: ef7c11 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 368838 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 8a4673 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Fire Extinguisher (1) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 110.15 + posY: 1.39858711 + posZ: 23.3000069 + rotX: 359.987427 + rotY: 270.0 + 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 + UniqueBack: false + Description: Unscrupulous Investor + GMNotes: '' + GUID: 5ec1a2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 493b03 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 9956d5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: da7c01 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 68fce2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: e3bd71 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: Pure of Spirit + GMNotes: '' + GUID: 3c9617 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: e425d0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: a6af13 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: Muckraker + GMNotes: '' + GUID: 90bf93 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 2f9ab1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: d708d9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: f0e425 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: acd0da + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 274208 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 66b7d5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 5c3dd0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 4d74f6 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 7f1b48 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 334f03 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Resourceful + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 49.37 + posY: 1.36376393 + posZ: 82.85 + rotX: 0.0208198037 + rotY: 269.9588 + rotZ: 0.01675873 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 6fa7fa + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: eaaee9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: f03baa + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 80b7c6 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 378e84 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '... Or Are They?' + GMNotes: '' + GUID: 9dd911 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 620b6e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: f60263 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: '230835' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: Signs of the Black Stars + GMNotes: '' + GUID: b40b98 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 296dc8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 08bdf1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: f91fd9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: Mortal Reminder + GMNotes: '' + GUID: c1a687 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 7307c4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Arcane Initiate + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -25.0000019 + posY: 1.33608162 + posZ: 80.55 + rotX: 0.0207990967 + rotY: 270.031281 + rotZ: 0.0167836361 + 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 + UniqueBack: false + Description: Assistant Curator + GMNotes: '' + GUID: 27e7b3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: f2877e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: acb83a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: The Louisiana Lion + GMNotes: '' + GUID: eaa415 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 82775a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: b2e27e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 59d89b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: Acidic Ichor + GMNotes: '' + GUID: fa61ba + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 90a106 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 58c435 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 449261 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 06322f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 23c3e5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 7c958e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: c077bf + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 18927e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 0edef1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 60b353 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: cf1d4e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 4d971e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 5ada0a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 0027f2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: '812685' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: f08934 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: d24531 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: db2c81 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: bcf406 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 274205 + 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 + UniqueBack: false + Description: Message from Your Inner Self + GMNotes: '' + GUID: e80bd8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: ce3a1a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: "What\u2019s in the Box?" + GMNotes: '' + GUID: 0e39c2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: d2663c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 1890d0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 017821 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 8e57b8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: cd94e3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: From the Brink + GMNotes: '' + GUID: 46187b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 5cb973 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 7686cb + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: d8705c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 6656ad + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: fe68c6 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: '857238' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: f7a9ab + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: c607c5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 266619 + 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 + UniqueBack: false + Description: Basic Weakness + GMNotes: '' + GUID: fd9c56 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: '051742' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 6eceef + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 7b42b6 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: Doom Begets Doom + GMNotes: '' + GUID: 07350b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Decorated Skull + 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 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: ab37af + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 8f871b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 1e9213 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: e454c3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 4eb231 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 5d6728 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: Lost Son of Earth + GMNotes: '' + GUID: a7358f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: b80459 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: bb640d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 3f91af + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 0ab3f1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 5a305e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: a56ffe + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 98c5af + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: bb1cce + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 731d2a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: f93ea8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 5f33be + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: He Was Never There + GMNotes: '' + GUID: ad18a6 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 63f145 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: d27d12 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 9da37c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 07bc04 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: eb6165 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: Working on Something Big + GMNotes: '' + GUID: 234ff6 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 274206 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: e2767a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 5d25b1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: '599209' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: f4bac6 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 408cb5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 256da2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 0e0530 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: The Nightmare is Over + GMNotes: '' + GUID: 73bccf + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: a1fd61 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: Worlds within Worlds + GMNotes: '' + GUID: b8c891 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: f8c873 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 430635 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 2e93fd + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Expose Weakness (1) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 88.05002 + posY: 1.40150142 + posZ: 30.4900246 + rotX: 359.987427 + rotY: 269.999969 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 2ae3ce + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: Mysterious Device + GMNotes: '' + GUID: 44334c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: b18b33 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: Basic Weakness + GMNotes: '' + GUID: ea0fa1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: e6efe6 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 194adb + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 370323 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3703': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: John Dee Translation + GMNotes: '' + GUID: 6b2550 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Necronomicon + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.3595619 + posY: 3.5423758 + posZ: -65.68753 + rotX: 0.0124493325 + rotY: 270.0 + rotZ: 180.014145 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 312d38 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 82d62c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 102fad + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Reliable (1) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 95.87002 + posY: 1.40106785 + posZ: 25.7300262 + rotX: 359.987427 + rotY: 269.999939 + rotZ: 359.984558 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 078efb + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 80acd2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: Item. Mask. + GMNotes: '' + GUID: 0f54e7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Medico Della Peste + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -62.57325 + posY: 1.64933872 + posZ: 30.4105682 + rotX: 359.9176 + rotY: 270.0031 + rotZ: 0.0125333592 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 2fba3b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: cc6e4d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 092e92 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: e0dff3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: be4abe + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 9c922f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: e470cd + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: b4ad29 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: b6506d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 593deb + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: e8b7ad + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 99989c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: ce0dd5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: fe2db3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: Unidentified + GMNotes: '' + GUID: 9bc46e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: c2d211 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 75eca5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: No-Nonsense Archaeologist + GMNotes: '' + GUID: 8bec05 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 0d4eb9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 5c3aea + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: edd6c4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: 'Lookin'' Out For #1' + GMNotes: '' + GUID: b51688 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: Big Man on Campus + GMNotes: '' + GUID: e1e098 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: Free from the Past + GMNotes: '' + GUID: 2e5b03 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 368836 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: d88407 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Lure (1) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: e35bc2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 600a3c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: be33f5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 19ab7c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 8837ff + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: c1ce8e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: Professor of Languages + GMNotes: '' + GUID: 42806b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: Professor of Archaeology + GMNotes: '' + GUID: f03306 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: The Head Librarian + GMNotes: '' + GUID: 66197b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: Seeing Things Unseen + GMNotes: '' + GUID: f96ed0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: Smarter Than He Lets On + GMNotes: '' + GUID: f14dce + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: Olaus Wormius Translation + GMNotes: '' + GUID: d45f10 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: Madness. + GMNotes: '' + GUID: fb943f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: Recalling Ancient Things + GMNotes: '' + GUID: 6714b2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: A Gift Unlooked For + GMNotes: '' + GUID: f295d9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: Regalia Dementia + GMNotes: '' + GUID: 5d30a1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: Madness. Pact. + GMNotes: '' + GUID: 4f903e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: Humanoid. Elite. + GMNotes: '' + GUID: 6720ef + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 12260 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '122': + BackIsHidden: true + BackURL: https://i.imgur.com/RpzEfmS.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393194495/027101CA5C626EBA0E4F76F3F15569329F81DE3C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '...A Device, of Some Sort' + GMNotes: '' + GUID: 8df4a7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Relic of Ages + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -33.90868 + posY: 2.371981 + posZ: -87.7153854 + rotX: 0.02080939 + rotY: 270.0 + rotZ: 0.0167705584 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12742 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/ZgjFcAU.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/976604071425301191/B229EEF649F55376607371CA92C41F117D0862DC/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Forestalling the Future + GMNotes: '' + GUID: 22aed2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Relic of Ages + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -37.2237167 + posY: 2.36952424 + posZ: -91.9948959 + rotX: 0.02080929 + rotY: 270.0 + rotZ: 0.0167707913 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265700 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2657': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: https://i.imgur.com/mtzND71.jpg + NumHeight: 2 + NumWidth: 2 + UniqueBack: false + Description: Unleash the Timestream + GMNotes: '' + GUID: 3ff610 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Relic of Ages + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -39.705 + posY: 2.36952329 + posZ: -88.92052 + rotX: 0.0208092388 + rotY: 270.0 + rotZ: 0.0167709216 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 451638 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4516': + BackIsHidden: true + BackURL: https://i.imgur.com/VfZuXd1.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/943959879361281633/780B963F4F774A497E33388A89027A83EF0AD8E3/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Reposess the Past + GMNotes: '' + GUID: d1206b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Relic of Ages + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -39.4378662 + posY: 2.37059331 + posZ: -85.5953751 + rotX: 0.0208096914 + rotY: 269.999969 + rotZ: 0.01677323 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 451435 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4514': + BackIsHidden: true + BackURL: https://i.imgur.com/m12nk5a.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/954090355584194829/C6D55DDE5652940B4D5CE3163BD9CEDA16237961/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Madness. Paradox. + GMNotes: '' + GUID: 9bed6a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Out of Body Experience + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -35.16382 + posY: 2.371185 + posZ: -83.88927 + rotX: 0.0208061859 + rotY: 270.000031 + rotZ: 0.0167740732 + 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 + UniqueBack: false + Description: Curse. + GMNotes: '' + GUID: 3bf831 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: False Awakening + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -26.6977634 + posY: 2.3747952 + posZ: -81.852005 + rotX: 0.020809846 + rotY: 270.000031 + rotZ: 0.016769655 + 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 + UniqueBack: false + Description: Chained to the Waking World + GMNotes: '' + GUID: d253a6 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: Expert Dreamer + GMNotes: '' + GUID: b04c8e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: Ruthless Tactician + GMNotes: '' + GUID: 7f7ecc + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: Trap. + GMNotes: '' + GUID: c7b748 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: Trap. + GMNotes: '' + GUID: 74840a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: true + Description: Monster. Nightgaunt. Power. + GMNotes: '' + GUID: cf96b9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: true + Description: Ally. Government. + GMNotes: '' + GUID: cfb393 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: true + Description: Item. Relic. + GMNotes: '' + GUID: 0ce113 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: true + Description: Item. Weapon. Relic. Melee. + GMNotes: '' + GUID: dc674e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: The Murder Weapon + GMNotes: '' + GUID: d71f11 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 231701 + 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 + UniqueBack: false + Description: Madness. + GMNotes: '' + GUID: 2c76d9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 231702 + 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 + UniqueBack: false + Description: Two Days Until Retirement + GMNotes: '' + GUID: 5630c2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' +CustomDeck: + '122': + BackIsHidden: true + BackURL: https://i.imgur.com/RpzEfmS.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393194495/027101CA5C626EBA0E4F76F3F15569329F81DE3C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/ZgjFcAU.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/976604071425301191/B229EEF649F55376607371CA92C41F117D0862DC/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + '2263': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/ + NumHeight: 7 + NumWidth: 10 + 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 + UniqueBack: false + '2317': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493212055041441/90F035BD69A7C5C6B6F43426DDDA3A09DFCBCBDF/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '2323': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '2329': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '2331': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '2611': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025942034/FEADE7F6206804B42CC9B6049F51EDF6040C5D1D/ + NumHeight: 7 + NumWidth: 10 + 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 + UniqueBack: false + '2622': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025943833/DE98A03934DF8FF5B3CF6C53143B15BFC3ED7341/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '2655': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025944587/520448D0E9C22F102C7DDF64322EAD6FC221ECC8/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '2657': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: https://i.imgur.com/mtzND71.jpg + NumHeight: 2 + NumWidth: 2 + UniqueBack: false + '2662': + BackIsHidden: true + BackURL: https://i.imgur.com/NSozoRe.jpg + FaceURL: https://i.imgur.com/HLQOkvy.jpg + NumHeight: 5 + NumWidth: 10 + UniqueBack: true + '2666': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '2740': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/1011562618093846571/13C76218853EE87123267F8F6BE99206DB40470B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '2741': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493212055041441/90F035BD69A7C5C6B6F43426DDDA3A09DFCBCBDF/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '2742': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025944587/520448D0E9C22F102C7DDF64322EAD6FC221ECC8/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '2746': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025946328/561232524C8EAA4B4371B28652F78969E6ED6FFB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '2757': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '2761': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025944587/520448D0E9C22F102C7DDF64322EAD6FC221ECC8/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '2762': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025944587/520448D0E9C22F102C7DDF64322EAD6FC221ECC8/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '2763': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025945336/04E36F64C2CBE1B4905FF44A869C75EC52CB3A56/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '2770': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + '2775': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025945336/04E36F64C2CBE1B4905FF44A869C75EC52CB3A56/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '2776': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025942034/FEADE7F6206804B42CC9B6049F51EDF6040C5D1D/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '2777': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025944587/520448D0E9C22F102C7DDF64322EAD6FC221ECC8/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '2778': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025943833/DE98A03934DF8FF5B3CF6C53143B15BFC3ED7341/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '2779': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025946328/561232524C8EAA4B4371B28652F78969E6ED6FFB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '2780': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025943109/9C5481E6DFEACD450C5522F884E615482281DDB1/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '2788': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '2902': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025943833/DE98A03934DF8FF5B3CF6C53143B15BFC3ED7341/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '2903': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '2916': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/916924328393196277/F523996031DA7F842C013BA249D3D07257DA24A3/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393194495/027101CA5C626EBA0E4F76F3F15569329F81DE3C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + '2928': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025943109/9C5481E6DFEACD450C5522F884E615482281DDB1/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '2929': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025944587/520448D0E9C22F102C7DDF64322EAD6FC221ECC8/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '2930': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025946328/561232524C8EAA4B4371B28652F78969E6ED6FFB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '2931': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/915801999159326706/E3A3EA529B0E7454D79EA825BECFD81BEC3FBBEC/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159325148/B25E4760A8FFC5A71DFA1DE038D6CA8A74C7AE0C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + '2932': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025943833/DE98A03934DF8FF5B3CF6C53143B15BFC3ED7341/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '2933': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025945336/04E36F64C2CBE1B4905FF44A869C75EC52CB3A56/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '2934': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/916924328393203114/88DD33EAF250224CAAC691705C0EB759D620CC78/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + '2935': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/915801999159326706/E3A3EA529B0E7454D79EA825BECFD81BEC3FBBEC/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159325148/B25E4760A8FFC5A71DFA1DE038D6CA8A74C7AE0C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + '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 + UniqueBack: false + '2951': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/254843371583121486/AF36A64D6D25AEB0E50FB36B34AD2A95C2B485BF/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642393244/74ADDF83D8B03DBF4AD5DC7230C2D12E84685317/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '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 + UniqueBack: false + '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 + UniqueBack: false + '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 + UniqueBack: false + '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 + UniqueBack: false + '3121': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025942034/FEADE7F6206804B42CC9B6049F51EDF6040C5D1D/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '3125': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/786356000879761873/F22612DB451928DCA4344F3F125F5A8CE128A817/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '3133': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025943109/9C5481E6DFEACD450C5522F884E615482281DDB1/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '3135': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025945336/04E36F64C2CBE1B4905FF44A869C75EC52CB3A56/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '3136': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025945336/04E36F64C2CBE1B4905FF44A869C75EC52CB3A56/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '3139': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025943833/DE98A03934DF8FF5B3CF6C53143B15BFC3ED7341/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '3140': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025943109/9C5481E6DFEACD450C5522F884E615482281DDB1/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '3141': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025943109/9C5481E6DFEACD450C5522F884E615482281DDB1/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '3142': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025943109/9C5481E6DFEACD450C5522F884E615482281DDB1/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '3148': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025946328/561232524C8EAA4B4371B28652F78969E6ED6FFB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '3149': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025946328/561232524C8EAA4B4371B28652F78969E6ED6FFB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '3152': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '3153': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025944587/520448D0E9C22F102C7DDF64322EAD6FC221ECC8/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '3187': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025942034/FEADE7F6206804B42CC9B6049F51EDF6040C5D1D/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '3684': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '3685': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '3686': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '3687': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '3688': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '3689': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '3694': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '3697': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '3698': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '3699': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '3700': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '3703': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '3704': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '3708': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '3709': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '3710': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '3711': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '3712': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '3713': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '3714': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '3715': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '3716': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '3717': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '3718': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '3719': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '3720': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '3721': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '3738': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '3739': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025942034/FEADE7F6206804B42CC9B6049F51EDF6040C5D1D/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '3740': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '3741': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '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 + UniqueBack: false + '3743': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '3744': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025946328/561232524C8EAA4B4371B28652F78969E6ED6FFB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '3745': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '3746': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '3747': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '3748': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '3749': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '3750': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '3751': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '3765': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '3766': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '3767': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '3768': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '3769': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '3770': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '3771': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '3772': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '3773': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '3774': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '3775': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '3780': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025944587/520448D0E9C22F102C7DDF64322EAD6FC221ECC8/ + NumHeight: 7 + NumWidth: 10 + 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 + UniqueBack: false + '3787': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '3788': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '3789': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + 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 + UniqueBack: false + '3791': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '3792': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '3793': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '3794': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '3795': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '3796': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025945336/04E36F64C2CBE1B4905FF44A869C75EC52CB3A56/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '3797': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025942034/FEADE7F6206804B42CC9B6049F51EDF6040C5D1D/ + NumHeight: 7 + NumWidth: 10 + 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 + 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 + UniqueBack: false + '3800': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025944587/520448D0E9C22F102C7DDF64322EAD6FC221ECC8/ + NumHeight: 7 + NumWidth: 10 + 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 + UniqueBack: false + '3802': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025946328/561232524C8EAA4B4371B28652F78969E6ED6FFB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '3809': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '3810': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '4305': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025946328/561232524C8EAA4B4371B28652F78969E6ED6FFB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '4306': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '4308': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025943833/DE98A03934DF8FF5B3CF6C53143B15BFC3ED7341/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '4309': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025945336/04E36F64C2CBE1B4905FF44A869C75EC52CB3A56/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '4310': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025943109/9C5481E6DFEACD450C5522F884E615482281DDB1/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '4311': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '4312': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '4314': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '4315': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '4316': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '4317': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '4318': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '4381': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '4406': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025946328/561232524C8EAA4B4371B28652F78969E6ED6FFB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '4407': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025944587/520448D0E9C22F102C7DDF64322EAD6FC221ECC8/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '4408': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '4409': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025943109/9C5481E6DFEACD450C5522F884E615482281DDB1/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '4410': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025943833/DE98A03934DF8FF5B3CF6C53143B15BFC3ED7341/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '4437': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025945336/04E36F64C2CBE1B4905FF44A869C75EC52CB3A56/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '4440': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025945336/04E36F64C2CBE1B4905FF44A869C75EC52CB3A56/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '4441': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '4442': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '4443': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '4444': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '4445': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107869050061525/A759DF697FFB26F0F5B75E116A923E33F88FCA7B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1011562618093846571/13C76218853EE87123267F8F6BE99206DB40470B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '4476': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025944587/520448D0E9C22F102C7DDF64322EAD6FC221ECC8/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '4477': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025946328/561232524C8EAA4B4371B28652F78969E6ED6FFB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '4478': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025943833/DE98A03934DF8FF5B3CF6C53143B15BFC3ED7341/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '4479': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025943109/9C5481E6DFEACD450C5522F884E615482281DDB1/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '4480': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025945336/04E36F64C2CBE1B4905FF44A869C75EC52CB3A56/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '4481': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025942034/FEADE7F6206804B42CC9B6049F51EDF6040C5D1D/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '4485': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/780749631103449151/FFAADF06C9BF9D1F4F3FE22D45CEBBB15D9B58CF/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '4486': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025942034/FEADE7F6206804B42CC9B6049F51EDF6040C5D1D/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '4487': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025946328/561232524C8EAA4B4371B28652F78969E6ED6FFB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '4488': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025943833/DE98A03934DF8FF5B3CF6C53143B15BFC3ED7341/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '4489': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025943109/9C5481E6DFEACD450C5522F884E615482281DDB1/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '4490': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025944587/520448D0E9C22F102C7DDF64322EAD6FC221ECC8/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '4491': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025945336/04E36F64C2CBE1B4905FF44A869C75EC52CB3A56/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '4492': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '4493': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '4495': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065907888682568/7EEF5065450AA58C3D2BB88F4A83F0EF698E690B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '4496': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065907888682568/7EEF5065450AA58C3D2BB88F4A83F0EF698E690B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '4497': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065907888682568/7EEF5065450AA58C3D2BB88F4A83F0EF698E690B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '4498': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065907888682568/7EEF5065450AA58C3D2BB88F4A83F0EF698E690B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '4499': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065907888682568/7EEF5065450AA58C3D2BB88F4A83F0EF698E690B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '4500': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065907888682568/7EEF5065450AA58C3D2BB88F4A83F0EF698E690B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '4501': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065907888682568/7EEF5065450AA58C3D2BB88F4A83F0EF698E690B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '4502': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065907888682568/7EEF5065450AA58C3D2BB88F4A83F0EF698E690B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '4503': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065907888682568/7EEF5065450AA58C3D2BB88F4A83F0EF698E690B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '4504': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065907888682568/7EEF5065450AA58C3D2BB88F4A83F0EF698E690B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '4505': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065907888682568/7EEF5065450AA58C3D2BB88F4A83F0EF698E690B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '4506': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065907888682568/7EEF5065450AA58C3D2BB88F4A83F0EF698E690B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '4507': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065907888682568/7EEF5065450AA58C3D2BB88F4A83F0EF698E690B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '4508': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065907888682568/7EEF5065450AA58C3D2BB88F4A83F0EF698E690B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '4509': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065907888682568/7EEF5065450AA58C3D2BB88F4A83F0EF698E690B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '4514': + BackIsHidden: true + BackURL: https://i.imgur.com/m12nk5a.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/954090355584194829/C6D55DDE5652940B4D5CE3163BD9CEDA16237961/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + '4516': + BackIsHidden: true + BackURL: https://i.imgur.com/VfZuXd1.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/943959879361281633/780B963F4F774A497E33388A89027A83EF0AD8E3/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + '4523': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '4525': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '4541': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/138879070086634183/2856A2C2077CFA2C61B9EF2498CAE6865024DB72/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '4547': + BackIsHidden: true + BackURL: https://i.imgur.com/r6F1mt2.jpg + FaceURL: https://i.imgur.com/CN9PXUd.jpg + NumHeight: 5 + NumWidth: 10 + UniqueBack: true + '75': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/138879070086634183/2856A2C2077CFA2C61B9EF2498CAE6865024DB72/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 449811 +- 450108 +- 449514 +- 450009 +- 450207 +- 450702 +- 449910 +- 449712 +- 450306 +- 450801 +- 450504 +- 450405 +- 450900 +- 449613 +- 450603 +- 448737 +- 448837 +- 448838 +- 448839 +- 448736 +- 448735 +- 448738 +- 448840 +- 449036 +- 449037 +- 449034 +- 449035 +- 449137 +- 449136 +- 448938 +- 449135 +- 448936 +- 449138 +- 448937 +- 448613 +- 447733 +- 447734 +- 447731 +- 447732 +- 448112 +- 447631 +- 447633 +- 447630 +- 447632 +- 447933 +- 447932 +- 447934 +- 447935 +- 448032 +- 448031 +- 448033 +- 448030 +- 448029 +- 448034 +- 447835 +- 447834 +- 447836 +- 447832 +- 447833 +- 431425 +- 276200 +- 430641 +- 368521 +- 368706 +- 368403 +- 266618 +- 368514 +- 230340 +- 277910 +- 315303 +- 313906 +- 440923 +- 378863 +- 440621 +- 368708 +- 226335 +- 368424 +- 430646 +- 370046 +- 379303 +- 449252 +- 277608 +- 368415 +- 380230 +- 293431 +- 438128 +- 293216 +- 368516 +- 277040 +- 314802 +- 368414 +- 368834 +- 368822 +- 226311 +- 449359 +- 368845 +- 368434 +- 368400 +- 315252 +- 379618 +- 368812 +- 368847 +- 226357 +- 226309 +- 368813 +- 226316 +- 368715 +- 370926 +- 293013 +- 230300 +- 293544 +- 368427 +- 368833 +- 378618 +- 444451 +- 368837 +- 262202 +- 368826 +- 438125 +- 368409 +- 368519 +- 230328 +- 440721 +- 226303 +- 368404 +- 292815 +- 313905 +- 368857 +- 438126 +- 431110 +- 377537 +- 278011 +- 291650 +- 314000 +- 378619 +- 315242 +- 368412 +- 374014 +- 295501 +- 230309 +- 430658 +- 376938 +- 296704 +- 290320 +- 296500 +- 440627 +- 293214 +- 444509 +- 370827 +- 380025 +- 375129 +- 274010 +- 266616 +- 368809 +- 440622 +- 371565 +- 368858 +- 230330 +- 374935 +- 368509 +- 226333 +- 368823 +- 368420 +- 378617 +- 379930 +- 379619 +- 226327 +- 261701 +- 230342 +- 378017 +- 274004 +- 368505 +- 261700 +- 368410 +- 368817 +- 369820 +- 380027 +- 368428 +- 226356 +- 431557 +- 226351 +- 379928 +- 430648 +- 379616 +- 277912 +- 371112 +- 378621 +- 379828 +- 226332 +- 368405 +- 379827 +- 440813 +- 368429 +- 226330 +- 368524 +- 430651 +- 315238 +- 379154 +- 261102 +- 278010 +- 230344 +- 230302 +- 293315 +- 274005 +- 380127 +- 368431 +- 368856 +- 262200 +- 313501 +- 292913 +- 430643 +- 368419 +- 380125 +- 226302 +- 226329 +- 444348 +- 314800 +- 379711 +- 318703 +- 368804 +- 226306 +- 315249 +- 368828 +- 312512 +- 315254 +- 431205 +- 374834 +- 230338 +- 368502 +- 368517 +- 230305 +- 226355 +- 430905 +- 431006 +- 226312 +- 368430 +- 380229 +- 444147 +- 440626 +- 226307 +- 226305 +- 230307 +- 293014 +- 371806 +- 293215 +- 370422 +- 292912 +- 430642 +- 226308 +- 368525 +- 230343 +- 368421 +- 315259 +- 230301 +- 379018 +- 315248 +- 275732 +- 368819 +- 438127 +- 431111 +- 230359 +- 313502 +- 368408 +- 368854 +- 314002 +- 292814 +- 368808 +- 315245 +- 230324 +- 230329 +- 368407 +- 226319 +- 440724 +- 295504 +- 226359 +- 368518 +- 226304 +- 430656 +- 226348 +- 430650 +- 226345 +- 440720 +- 295503 +- 230351 +- 266617 +- 431656 +- 368827 +- 368707 +- 313604 +- 277510 +- 261702 +- 380128 +- 295128 +- 369721 +- 226352 +- 371466 +- 368621 +- 262204 +- 371013 +- 379831 +- 315251 +- 265502 +- 274006 +- 368417 +- 226323 +- 368851 +- 371907 +- 230327 +- 368710 +- 440723 +- 378958 +- 226342 +- 315253 +- 275733 +- 274011 +- 262201 +- 368510 +- 230347 +- 230334 +- 441023 +- 314904 +- 313603 +- 368523 +- 368831 +- 381050 +- 379021 +- 226314 +- 226353 +- 371605 +- 312511 +- 315260 +- 277709 +- 262203 +- 315257 +- 431206 +- 230331 +- 312509 +- 293015 +- 368824 +- 371704 +- 368527 +- 266603 +- 444020 +- 315250 +- 274607 +- 226324 +- 380028 +- 430501 +- 368528 +- 372011 +- 368402 +- 368849 +- 368848 +- 431115 +- 368507 +- 430636 +- 430652 +- 368832 +- 226300 +- 230317 +- 444022 +- 266600 +- 230323 +- 374935 +- 377244 +- 226315 +- 261100 +- 293314 +- 368626 +- 368504 +- 368853 +- 292915 +- 430907 +- 294203 +- 226328 +- 278846 +- 226331 +- 374420 +- 441024 +- 277607 +- 312514 +- 431207 +- 226339 +- 230312 +- 368816 +- 314003 +- 440814 +- 368506 +- 378762 +- 368522 +- 438123 +- 375016 +- 368803 +- 315239 +- 315233 +- 380228 +- 374834 +- 314105 +- 277511 +- 369424 +- 368623 +- 431007 +- 368712 +- 377436 +- 230325 +- 368406 +- 230336 +- 440623 +- 379929 +- 431008 +- 430638 +- 230348 +- 368627 +- 230352 +- 274000 +- 441026 +- 430653 +- 374014 +- 277710 +- 368821 +- 368503 +- 226301 +- 379022 +- 374532 +- 368426 +- 368716 +- 230350 +- 314905 +- 368846 +- 274003 +- 315240 +- 230355 +- 379829 +- 230311 +- 430660 +- 377141 +- 430649 +- 230349 +- 315235 +- 230303 +- 373910 +- 274001 +- 230361 +- 374417 +- 368619 +- 431009 +- 374418 +- 374014 +- 277911 +- 277811 +- 315246 +- 230310 +- 372110 +- 274207 +- 315247 +- 430810 +- 274002 +- 376840 +- 430654 +- 230320 +- 430808 +- 378016 +- 441027 +- 230304 +- 380026 +- 440625 +- 226310 +- 226317 +- 226347 +- 371308 +- 374633 +- 266602 +- 368425 +- 368843 +- 292813 +- 277509 +- 379402 +- 315234 +- 293217 +- 226361 +- 266601 +- 266604 +- 315262 +- 293145 +- 274008 +- 438124 +- 293016 +- 379019 +- 230319 +- 440624 +- 368500 +- 292914 +- 430659 +- 230321 +- 368801 +- 315261 +- 368422 +- 230306 +- 226341 +- 430809 +- 230313 +- 230326 +- 368841 +- 230332 +- 376739 +- 368811 +- 368818 +- 226321 +- 277606 +- 277812 +- 230339 +- 430503 +- 226358 +- 368620 +- 440922 +- 368861 +- 297101 +- 444024 +- 368709 +- 226346 +- 440924 +- 440925 +- 368829 +- 376600 +- 430908 +- 230346 +- 368513 +- 368807 +- 368705 +- 368622 +- 230360 +- 368830 +- 440926 +- 368838 +- 368630 +- 430906 +- 226344 +- 368625 +- 230357 +- 440722 +- 226340 +- 230315 +- 315255 +- 380029 +- 368411 +- 226343 +- 368814 +- 368418 +- 274208 +- 368501 +- 230341 +- 379253 +- 368802 +- 274608 +- 374419 +- 226354 +- 373819 +- 430637 +- 315244 +- 315304 +- 226337 +- 277604 +- 293313 +- 230354 +- 226326 +- 377042 +- 368432 +- 230318 +- 368433 +- 230362 +- 368508 +- 368631 +- 226325 +- 230337 +- 368815 +- 430655 +- 230335 +- 368805 +- 449261 +- 430644 +- 377343 +- 368850 +- 315236 +- 368844 +- 368416 +- 368714 +- 226322 +- 277813 +- 368860 +- 368835 +- 444260 +- 379617 +- 292816 +- 431731 +- 274205 +- 380949 +- 312109 +- 261101 +- 374115 +- 368839 +- 230322 +- 371209 +- 274609 +- 368511 +- 441025 +- 374717 +- 230308 +- 369945 +- 261704 +- 226360 +- 368624 +- 266619 +- 274606 +- 277512 +- 430640 +- 368618 +- 226318 +- 230353 +- 444021 +- 278012 +- 315258 +- 379020 +- 368840 +- 374330 +- 226334 +- 368855 +- 368512 +- 276101 +- 368928 +- 379931 +- 368515 +- 315232 +- 376501 +- 313301 +- 368526 +- 315241 +- 378018 +- 368825 +- 230356 +- 368413 +- 368423 +- 274206 +- 430657 +- 230333 +- 379555 +- 368520 +- 368711 +- 378019 +- 312513 +- 226338 +- 274007 +- 374264 +- 430635 +- 230345 +- 312510 +- 368713 +- 438122 +- 431818 +- 230358 +- 370323 +- 378620 +- 226350 +- 226336 +- 368800 +- 230316 +- 295502 +- 315243 +- 368806 +- 430645 +- 226313 +- 368842 +- 230314 +- 276300 +- 368717 +- 379830 +- 368820 +- 314204 +- 261703 +- 368810 +- 368628 +- 430639 +- 277711 +- 380126 +- 315256 +- 226320 +- 368401 +- 315237 +- 368629 +- 368852 +- 290207 +- 368836 +- 226349 +- 443723 +- 277605 +- 430647 +- 368859 +- 290321 +- 232904 +- 232907 +- 232900 +- 232951 +- 232950 +- 232934 +- 232941 +- 232949 +- 232332 +- 232333 +- 232348 +- 232300 +- 12260 +- 12742 +- 265700 +- 451638 +- 451435 +- 448519 +- 452504 +- 452300 +- 233135 +- 7502 +- 454100 +- 266217 +- 454740 +- 454741 +- 266216 +- 274100 +- 231701 +- 231702 +Description: '' +GMNotes: '' +GUID: 4141fb +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -66.4027 + posY: 6.494789 + posZ: -61.0745735 + rotX: 0.0208337754 + rotY: 269.996033 + rotZ: 0.01678557 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Arkhamdb bag b85d6d/Deck All Weaknesses 8c3e07.yaml b/unpacked/Custom_Model_Bag Arkhamdb bag b85d6d/Deck All Weaknesses 8c3e07.yaml new file mode 100644 index 000000000..9612b46d6 --- /dev/null +++ b/unpacked/Custom_Model_Bag Arkhamdb bag b85d6d/Deck All Weaknesses 8c3e07.yaml @@ -0,0 +1,1569 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 290800 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2623': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Basic Weakness + GMNotes: '' + GUID: 2210c1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Amnesia + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 60.0020523 + posY: 1.35961318 + posZ: 55.47854 + rotX: 0.0208090711 + rotY: 269.9957 + rotZ: 0.0167709384 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 290800 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2623': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Basic Weakness + GMNotes: '' + GUID: 8598a4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Amnesia + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 59.72087 + posY: 1.36020052 + posZ: 57.8339 + rotX: 0.0208095219 + rotY: 269.9957 + rotZ: 0.01677148 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: cebf6a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The 13th Vision + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 66.63284 + posY: 2.37017584 + posZ: 46.429985 + rotX: 0.0208064131 + rotY: 270.002472 + rotZ: 0.0167786125 + 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 + UniqueBack: false + Description: Basic Weakness + GMNotes: '' + GUID: 447a08 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Kleptomania + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 80.45187 + posY: 1.51685083 + posZ: 58.63176 + rotX: 0.02240032 + rotY: 270.002625 + rotZ: 0.00697853556 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 290813 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2623': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Basic Weakness + GMNotes: '' + GUID: dd3d09 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dark Pact + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 73.7898941 + posY: 1.50798833 + posZ: 66.88923 + rotX: 0.0198830087 + rotY: 269.998352 + rotZ: 0.0241802726 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 291019 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2659': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Basic Weakness + GMNotes: '' + GUID: 31f72f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Through the Gates + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 81.1103439 + posY: 1.37475467 + posZ: 81.38222 + rotX: 0.0155774252 + rotY: 269.998871 + rotZ: 0.0148439659 + 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 + UniqueBack: false + Description: Basic Weakness + GMNotes: '' + GUID: a5be8b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Unspeakable Oath (Bloodthirst) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 80.46176 + posY: 1.37253177 + posZ: 73.76154 + rotX: 0.0148119656 + rotY: 270.004944 + rotZ: 0.0242835376 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 290806 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2623': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Basic Weakness + GMNotes: '' + GUID: 4fb446 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Internal Injury + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 84.63887 + posY: 1.376687 + posZ: 83.34652 + rotX: 0.0193456579 + rotY: 269.996979 + rotZ: 0.0182021931 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 290801 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2623': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Basic Weakness + GMNotes: '' + GUID: c17498 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Paranoia + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 59.77021 + posY: 1.36098135 + posZ: 60.4401855 + rotX: 0.02080495 + rotY: 270.007172 + rotZ: 0.0167757 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 290804 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2623': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Basic Weakness + GMNotes: '' + GUID: 88ee43 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Hypochondria + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 58.93588 + posY: 1.36254549 + posZ: 67.02983 + rotX: 0.01864637 + rotY: 270.010132 + rotZ: 0.0065060514 + 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 + UniqueBack: false + Description: Basic Weakness + GMNotes: '' + GUID: eff3c8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Self-Centered + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 82.3005 + posY: 1.37097037 + posZ: 66.61211 + rotX: 0.0208081 + rotY: 269.999756 + rotZ: 0.0167713575 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 290816 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2623': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Enemy + GMNotes: '' + GUID: b239d7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Mob Enforcer + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 59.38398 + posY: 1.36537349 + posZ: 75.9246 + rotX: 0.02080847 + rotY: 269.999084 + rotZ: 0.0167746339 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 291019 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2659': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Basic Weakness + GMNotes: '' + GUID: fd9c56 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Through the Gates + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 81.04702 + posY: 1.51482713 + posZ: 81.20772 + rotX: 0.0230280347 + rotY: 269.9986 + rotZ: 0.0147677548 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 290805 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2623': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Basic Weakness + GMNotes: '' + GUID: b2ef43 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Indebted + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 69.6492 + posY: 1.37130547 + posZ: 83.45329 + rotX: 0.02080887 + rotY: 269.997437 + rotZ: 0.0167718846 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 290815 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2623': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Enemy + GMNotes: '' + GUID: da227d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Thing That Follows + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 77.00673 + posY: 1.37194359 + posZ: 76.50519 + rotX: 0.0208081231 + rotY: 269.999054 + rotZ: 0.0167726167 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 290814 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2623': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Basic Weakness + GMNotes: '' + GUID: ba2ae1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Doomed + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 73.57277 + posY: 1.367833 + posZ: 67.00315 + rotX: 0.0171475261 + rotY: 269.999878 + rotZ: 0.014829508 + 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 + UniqueBack: false + Description: Circumstances Beyond Your Control + GMNotes: '' + GUID: cc65f3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: "The Tower \u2022 XVI" + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -61.4137726 + posY: 3.57692623 + posZ: 5.186873 + rotX: 0.0208082758 + rotY: 269.9998 + rotZ: 0.0167729743 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 290803 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2623': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Basic Weakness + GMNotes: '' + GUID: d83baf + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Psychosis + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 59.276104 + posY: 1.36351478 + posZ: 69.70881 + rotX: 0.0208085179 + rotY: 269.998138 + rotZ: 0.0167739056 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 290807 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2623': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Basic Weakness + GMNotes: '' + GUID: eeb330 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Chronophobia + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 77.61771 + posY: 1.37417972 + posZ: 83.3862152 + rotX: 0.02080846 + rotY: 269.998749 + rotZ: 0.0167724155 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 290810 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2623': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Basic Weakness + GMNotes: '' + GUID: 29766c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Overzealous + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 84.76986 + posY: 1.37477219 + posZ: 76.5368347 + rotX: 0.0208052341 + rotY: 270.008362 + rotZ: 0.01677476 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 290818 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2623': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Enemy + GMNotes: '' + GUID: 4ea68b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Stubborn Detective + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 59.32571 + posY: 1.3645314 + posZ: 73.1198349 + rotX: 0.0208079163 + rotY: 269.999237 + rotZ: 0.0167740583 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 290801 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2623': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Basic Weakness + GMNotes: '' + GUID: 3575a3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Paranoia + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 60.2334442 + posY: 1.36171019 + posZ: 62.84418 + rotX: 0.0131824408 + rotY: 269.998535 + rotZ: 0.0226880386 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 290811 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2623': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Basic Weakness + GMNotes: '' + GUID: 3b3c0a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Drawing the Sign + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 73.2821045 + posY: 1.37064064 + posZ: 76.67514 + rotX: 0.0208085366 + rotY: 269.999329 + rotZ: 0.0167736318 + 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 + UniqueBack: false + Description: Basic Weakness + GMNotes: '' + GUID: 57e648 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Narcolepsy + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 82.24709 + posY: 1.371798 + posZ: 69.50579 + rotX: 0.0208078641 + rotY: 269.9998 + rotZ: 0.01677146 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: e42f12 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The 13th Vision + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 66.89174 + posY: 2.369952 + posZ: 45.3254356 + rotX: 0.0208055452 + rotY: 270.0067 + rotZ: 0.01677739 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 290810 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2623': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Basic Weakness + GMNotes: '' + GUID: 88a9b3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Overzealous + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 81.0201 + posY: 1.373406 + posZ: 76.52217 + rotX: 0.0208056755 + rotY: 270.00824 + rotZ: 0.016777223 + 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 + UniqueBack: false + Description: Basic Weakness + GMNotes: '' + GUID: ea0fa1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Unspeakable Oath (Cowardice) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 80.61448 + posY: 1.53051329 + posZ: 73.92056 + rotX: 359.5608 + rotY: 270.008331 + rotZ: 0.0357966721 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 290807 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2623': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Basic Weakness + GMNotes: '' + GUID: 016e3c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Chronophobia + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 80.96729 + posY: 1.37533462 + posZ: 83.17558 + rotX: 0.0208096765 + rotY: 269.9989 + rotZ: 0.016768232 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 290806 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2623': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Basic Weakness + GMNotes: '' + GUID: d28be6 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Internal Injury + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 84.6602859 + posY: 1.47444046 + posZ: 84.9897461 + rotX: 0.0185761936 + rotY: 269.8689 + rotZ: 354.901 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 290817 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2623': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Enemy + GMNotes: '' + GUID: 16a89d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Silver Twilight Acolyte + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 59.2340546 + posY: 1.36607194 + posZ: 78.4964752 + rotX: 0.0208077766 + rotY: 269.999542 + rotZ: 0.016773073 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 290802 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2908': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Basic Weakness + GMNotes: '' + GUID: 249d83 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Haunted + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 73.63656 + posY: 1.66826892 + posZ: 51.2949 + rotX: 0.01472312 + rotY: 269.998657 + rotZ: 180.026688 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 290805 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2623': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Basic Weakness + GMNotes: '' + GUID: 8df93a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Indebted + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 74.0187149 + posY: 1.37291312 + posZ: 83.52449 + rotX: 0.0208078064 + rotY: 269.9976 + rotZ: 0.0167761613 + 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 + UniqueBack: false + Description: Circumstances Beyond Your Control + GMNotes: '' + GUID: d5c93d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: "The Tower \u2022 XVI" + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -65.1514359 + posY: 3.57692623 + posZ: 6.00838327 + rotX: 0.0208086111 + rotY: 269.999878 + rotZ: 0.0167732742 + 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 + UniqueBack: false + Description: Basic Weakness + GMNotes: '' + GUID: 406ab2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Your Worst Nightmare + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 80.44901 + posY: 1.53057539 + posZ: 58.7713966 + rotX: 0.0195846576 + rotY: 269.9999 + rotZ: 0.0153481439 + 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 + UniqueBack: false + Description: Basic Weakness + GMNotes: '' + GUID: f6aba5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Unspeakable Oath (Curiosity) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 80.29785 + posY: 1.53495085 + posZ: 73.75409 + rotX: 0.02094236 + rotY: 269.999878 + rotZ: 0.0147951907 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2903': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '2908': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '2910': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '4381': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 290800 +- 290800 +- 290321 +- 438126 +- 290813 +- 291019 +- 438124 +- 290806 +- 290801 +- 290804 +- 438125 +- 290816 +- 291019 +- 290805 +- 290815 +- 290814 +- 290320 +- 290803 +- 290807 +- 290810 +- 290818 +- 290801 +- 290811 +- 438127 +- 290321 +- 290810 +- 438122 +- 290807 +- 290806 +- 290817 +- 290802 +- 290805 +- 290320 +- 438128 +- 438123 +Description: '' +GMNotes: '' +GUID: 8c3e07 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: All Weaknesses +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -63.3526344 + posY: 4.28865242 + posZ: -61.1269226 + rotX: 0.0207955 + rotY: 270.044373 + rotZ: 180.0168 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Campaign Guides fb8135.yaml b/unpacked/Custom_Model_Bag Campaign Guides fb8135.yaml new file mode 100644 index 000000000..87a7372b0 --- /dev/null +++ b/unpacked/Custom_Model_Bag Campaign Guides fb8135.yaml @@ -0,0 +1,65 @@ +Autoraise: true +ColorDiffuse: + b: 0.9999998 + g: 0.992160261 + r: 0.9999998 +ContainedObjects: +- !include 'Custom_Model_Bag Campaign Guides fb8135/Custom_PDF The Blob that Ate Everything + 36b4eb.yaml' +- !include 'Custom_Model_Bag Campaign Guides fb8135/Custom_PDF The Dream-Eaters Campaign + Guide c3844b.yaml' +- !include 'Custom_Model_Bag Campaign Guides fb8135/Custom_PDF The Circle Undone Campaign + Guide dc5b5b.yaml' +- !include 'Custom_Model_Bag Campaign Guides fb8135/Custom_PDF The Forgotten Age Campaign + Guide 267216.yaml' +- !include 'Custom_Model_Bag Campaign Guides fb8135/Custom_PDF Return To The Path + to Carcosa Insert 9351c7.yaml' +- !include 'Custom_Model_Bag Campaign Guides fb8135/Custom_PDF The Path to Carcosa + Campaign Guide 00daab.yaml' +- !include 'Custom_Model_Bag Campaign Guides fb8135/Custom_PDF Return To The Dunwich + Legacy Insert 125ce8.yaml' +- !include 'Custom_Model_Bag Campaign Guides fb8135/Custom_PDF The Dunwich Legacy + Campaign Guide 61f17f.yaml' +- !include 'Custom_Model_Bag Campaign Guides fb8135/Custom_PDF Return to Night of + the Zealot Insert 97895b.yaml' +- !include 'Custom_Model_Bag Campaign Guides fb8135/Custom_PDF Night of the Zealot + Campaign Guide 267216.yaml' +CustomMesh: + CastShadows: true + ColliderURL: '' + Convex: true + DiffuseURL: http://cloud-3.steamusercontent.com/ugc/261595502467721730/095E7CEF808A49B0B246EE8568BFEBB1353ED349/ + MaterialIndex: 1 + MeshURL: http://cloud-3.steamusercontent.com/ugc/261595502467703250/80F7204D58C573B7C96BCD42D398A7DAFFB06A14/ + NormalURL: http://cloud-3.steamusercontent.com/ugc/261595502467703918/7FBE2844BB3E57E816D0B4698AF1C7A458B82932/ + TypeIndex: 6 +Description: All campaign guide PDF files can be found in here, along with inserts + for the "return to" versions. +GMNotes: '' +GUID: fb8135 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: true +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +MeshIndex: -1 +Name: Custom_Model_Bag +Nickname: Campaign Guides +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 24.5373287 + posY: 3.34153748 + posZ: -23.0566654 + rotX: 359.9205 + rotY: 299.9948 + rotZ: 359.9737 + scaleX: 0.3000005 + scaleY: 0.3000005 + scaleZ: 0.3000005 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Campaign Guides fb8135/Custom_PDF Night of the Zealot Campaign Guide 267216.yaml b/unpacked/Custom_Model_Bag Campaign Guides fb8135/Custom_PDF Night of the Zealot Campaign Guide 267216.yaml new file mode 100644 index 000000000..8ee8cf84f --- /dev/null +++ b/unpacked/Custom_Model_Bag Campaign Guides fb8135/Custom_PDF Night of the Zealot Campaign Guide 267216.yaml @@ -0,0 +1,37 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +CustomPDF: + PDFPage: 0 + PDFPageOffset: 0 + PDFPassword: '' + PDFUrl: https://images-cdn.fantasyflightgames.com/filer_public/8d/30/8d308b73-92f1-4b1e-aa7f-ce39e8d79786/night_of_the_zealot_campaign_guide.pdf +Description: '' +GMNotes: '' +GUID: '267216' +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_PDF +Nickname: Night of the Zealot Campaign Guide +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 35.2373924 + posY: 5.22009754 + posZ: -40.48737 + rotX: 359.920135 + rotY: 270.007721 + rotZ: 0.0168610141 + scaleX: 2.18 + scaleY: 1.0 + scaleZ: 2.18 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Campaign Guides fb8135/Custom_PDF Return To The Dunwich Legacy Insert 125ce8.yaml b/unpacked/Custom_Model_Bag Campaign Guides fb8135/Custom_PDF Return To The Dunwich Legacy Insert 125ce8.yaml new file mode 100644 index 000000000..8cbc41e39 --- /dev/null +++ b/unpacked/Custom_Model_Bag Campaign Guides fb8135/Custom_PDF Return To The Dunwich Legacy Insert 125ce8.yaml @@ -0,0 +1,37 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +CustomPDF: + PDFPage: 0 + PDFPageOffset: 0 + PDFPassword: '' + PDFUrl: https://images-cdn.fantasyflightgames.com/filer_public/8d/bb/8dbbd753-6086-4760-a3a6-d7b9234e2313/return_to_the_dunwich_legacy_rules.pdf +Description: '' +GMNotes: '' +GUID: 125ce8 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_PDF +Nickname: Return To The Dunwich Legacy Insert +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 23.9588928 + posY: 5.226636 + posZ: -22.5661564 + rotX: 0.03713375 + rotY: 270.006348 + rotZ: 359.9739 + scaleX: 2.18 + scaleY: 1.0 + scaleZ: 2.18 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Campaign Guides fb8135/Custom_PDF Return To The Path to Carcosa Insert 9351c7.yaml b/unpacked/Custom_Model_Bag Campaign Guides fb8135/Custom_PDF Return To The Path to Carcosa Insert 9351c7.yaml new file mode 100644 index 000000000..d95b70644 --- /dev/null +++ b/unpacked/Custom_Model_Bag Campaign Guides fb8135/Custom_PDF Return To The Path to Carcosa Insert 9351c7.yaml @@ -0,0 +1,37 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +CustomPDF: + PDFPage: 0 + PDFPageOffset: 0 + PDFPassword: '' + PDFUrl: https://images-cdn.fantasyflightgames.com/filer_public/51/7e/517e98cc-7a54-42e8-96f0-bb600f240d9f/ahc36_rules_insert.pdf +Description: '' +GMNotes: '' +GUID: 9351c7 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_PDF +Nickname: Return To The Path to Carcosa Insert +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 34.83933 + posY: 4.35258245 + posZ: -58.63487 + rotX: 0.02080677 + rotY: 270.006348 + rotZ: 0.0167741589 + scaleX: 2.18 + scaleY: 1.0 + scaleZ: 2.18 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Campaign Guides fb8135/Custom_PDF Return to Night of the Zealot Insert 97895b.yaml b/unpacked/Custom_Model_Bag Campaign Guides fb8135/Custom_PDF Return to Night of the Zealot Insert 97895b.yaml new file mode 100644 index 000000000..ae1e7c9bc --- /dev/null +++ b/unpacked/Custom_Model_Bag Campaign Guides fb8135/Custom_PDF Return to Night of the Zealot Insert 97895b.yaml @@ -0,0 +1,37 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +CustomPDF: + PDFPage: 0 + PDFPageOffset: 0 + PDFPassword: '' + PDFUrl: https://images-cdn.fantasyflightgames.com/filer_public/d4/64/d4646915-30d8-49a4-9d90-95be8f15b69f/ahc26_rules_insert.pdf +Description: '' +GMNotes: '' +GUID: 97895b +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_PDF +Nickname: Return to Night of the Zealot Insert +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 50.6070442 + posY: 4.358182 + posZ: -47.6708755 + rotX: 0.0208067689 + rotY: 270.005524 + rotZ: 0.01677273 + scaleX: 2.18 + scaleY: 1.0 + scaleZ: 2.18 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Campaign Guides fb8135/Custom_PDF The Blob that Ate Everything 36b4eb.yaml b/unpacked/Custom_Model_Bag Campaign Guides fb8135/Custom_PDF The Blob that Ate Everything 36b4eb.yaml new file mode 100644 index 000000000..e153ce0d4 --- /dev/null +++ b/unpacked/Custom_Model_Bag Campaign Guides fb8135/Custom_PDF The Blob that Ate Everything 36b4eb.yaml @@ -0,0 +1,37 @@ +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/784129708172267441/DEB96DAC4A9DDB7F8A66AE52710978A7AD7FDA0C/ +Description: Scenario Guide +GMNotes: '' +GUID: 36b4eb +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_PDF +Nickname: The Blob that Ate Everything +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 2.77945971 + posY: 2.51050782 + posZ: -45.6798172 + rotX: 359.920135 + rotY: 269.9998 + rotZ: 0.0168723576 + scaleX: 3.0 + scaleY: 1.0 + scaleZ: 3.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Campaign Guides fb8135/Custom_PDF The Circle Undone Campaign Guide dc5b5b.yaml b/unpacked/Custom_Model_Bag Campaign Guides fb8135/Custom_PDF The Circle Undone Campaign Guide dc5b5b.yaml new file mode 100644 index 000000000..6bd8a80ed --- /dev/null +++ b/unpacked/Custom_Model_Bag Campaign Guides fb8135/Custom_PDF The Circle Undone Campaign Guide dc5b5b.yaml @@ -0,0 +1,37 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +CustomPDF: + PDFPage: 0 + PDFPageOffset: 0 + PDFPassword: '' + PDFUrl: https://images-cdn.fantasyflightgames.com/filer_public/1e/ce/1ece6885-3bc6-4706-bbd0-7f5fe1813035/the_circle_undone_campaign_guide_final_release.pdf +Description: '' +GMNotes: '' +GUID: dc5b5b +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_PDF +Nickname: The Circle Undone Campaign Guide +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 48.6271667 + posY: 4.146048 + posZ: -56.59066 + rotX: 0.0208058544 + rotY: 269.999146 + rotZ: 0.016771473 + scaleX: 2.18 + scaleY: 1.0 + scaleZ: 2.18 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Campaign Guides fb8135/Custom_PDF The Dream-Eaters Campaign Guide c3844b.yaml b/unpacked/Custom_Model_Bag Campaign Guides fb8135/Custom_PDF The Dream-Eaters Campaign Guide c3844b.yaml new file mode 100644 index 000000000..04f0440bd --- /dev/null +++ b/unpacked/Custom_Model_Bag Campaign Guides fb8135/Custom_PDF The Dream-Eaters Campaign Guide c3844b.yaml @@ -0,0 +1,37 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +CustomPDF: + PDFPage: 0 + PDFPageOffset: 0 + PDFPassword: '' + PDFUrl: https://images-cdn.fantasyflightgames.com/filer_public/6b/5a/6b5a32e6-af3f-41d4-a10c-3a42ced5801e/the_dream-eaters_campaign_guide_where_the_gods_dwell-compressed.pdf +Description: '' +GMNotes: '' +GUID: c3844b +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_PDF +Nickname: The Dream-Eaters Campaign Guide +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 17.6756439 + posY: 2.127745 + posZ: -48.53211 + rotX: 359.9201 + rotY: 270.0257 + rotZ: 0.0168351941 + scaleX: 2.18 + scaleY: 1.0 + scaleZ: 2.18 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Campaign Guides fb8135/Custom_PDF The Dunwich Legacy Campaign Guide 61f17f.yaml b/unpacked/Custom_Model_Bag Campaign Guides fb8135/Custom_PDF The Dunwich Legacy Campaign Guide 61f17f.yaml new file mode 100644 index 000000000..0cb0450c4 --- /dev/null +++ b/unpacked/Custom_Model_Bag Campaign Guides fb8135/Custom_PDF The Dunwich Legacy Campaign Guide 61f17f.yaml @@ -0,0 +1,37 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +CustomPDF: + PDFPage: 0 + PDFPageOffset: 0 + PDFPassword: '' + PDFUrl: https://images-cdn.fantasyflightgames.com/filer_public/30/64/30640944-6e5c-4605-8406-6a1eb2e46a3f/dunwich_legacy_campaign_guide_eng.pdf +Description: '' +GMNotes: '' +GUID: 61f17f +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_PDF +Nickname: The Dunwich Legacy Campaign Guide +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 35.0071831 + posY: 4.348389 + posZ: -65.17033 + rotX: 359.920135 + rotY: 269.9993 + rotZ: 0.01687171 + scaleX: 2.18 + scaleY: 1.0 + scaleZ: 2.18 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Campaign Guides fb8135/Custom_PDF The Forgotten Age Campaign Guide 267216.yaml b/unpacked/Custom_Model_Bag Campaign Guides fb8135/Custom_PDF The Forgotten Age Campaign Guide 267216.yaml new file mode 100644 index 000000000..db489344f --- /dev/null +++ b/unpacked/Custom_Model_Bag Campaign Guides fb8135/Custom_PDF The Forgotten Age Campaign Guide 267216.yaml @@ -0,0 +1,37 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +CustomPDF: + PDFPage: 0 + PDFPageOffset: 0 + PDFPassword: '' + PDFUrl: https://images-cdn.fantasyflightgames.com/filer_public/7b/82/7b824169-ece9-4152-83eb-dc108548fa88/the_forgotten_age_campaign_guide_eng_final_release.pdf +Description: '' +GMNotes: '' +GUID: '267216' +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_PDF +Nickname: The Forgotten Age Campaign Guide +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 53.7218246 + posY: 3.11955738 + posZ: -32.6372757 + rotX: 0.0208085 + rotY: 269.999268 + rotZ: 0.01677083 + scaleX: 2.18 + scaleY: 1.0 + scaleZ: 2.18 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Campaign Guides fb8135/Custom_PDF The Path to Carcosa Campaign Guide 00daab.yaml b/unpacked/Custom_Model_Bag Campaign Guides fb8135/Custom_PDF The Path to Carcosa Campaign Guide 00daab.yaml new file mode 100644 index 000000000..f139c26a5 --- /dev/null +++ b/unpacked/Custom_Model_Bag Campaign Guides fb8135/Custom_PDF The Path to Carcosa Campaign Guide 00daab.yaml @@ -0,0 +1,37 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +CustomPDF: + PDFPage: 0 + PDFPageOffset: 0 + PDFPassword: '' + PDFUrl: https://images-cdn.fantasyflightgames.com/filer_public/46/60/4660dc1b-9b7a-42c0-9331-687561e11151/path_to_carcosa_campaign_guide_eng.pdf +Description: '' +GMNotes: '' +GUID: 00daab +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_PDF +Nickname: The Path to Carcosa Campaign Guide +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 32.726944 + posY: 4.359885 + posZ: -50.4524956 + rotX: 359.920135 + rotY: 269.9994 + rotZ: 0.0168724339 + scaleX: 2.18 + scaleY: 1.0 + scaleZ: 2.18 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Chaos Bag fea079.ttslua b/unpacked/Custom_Model_Bag Chaos Bag fea079.ttslua new file mode 100644 index 000000000..3d2f7ab59 --- /dev/null +++ b/unpacked/Custom_Model_Bag Chaos Bag fea079.ttslua @@ -0,0 +1,5 @@ +function onCollisionEnter(collision_info) + self.shuffle() + self.shuffle() + self.shuffle() +end \ No newline at end of file diff --git a/unpacked/Custom_Model_Bag Chaos Bag fea079.yaml b/unpacked/Custom_Model_Bag Chaos Bag fea079.yaml new file mode 100644 index 000000000..9d64e3294 --- /dev/null +++ b/unpacked/Custom_Model_Bag Chaos Bag fea079.yaml @@ -0,0 +1,68 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +ContainedObjects: +- !include 'Custom_Model_Bag Chaos Bag fea079/Custom_Tile.yaml' +- !include 'Custom_Model_Bag Chaos Bag fea079/Custom_Tile 6a68fe.yaml' +- !include 'Custom_Model_Bag Chaos Bag fea079/Custom_Tile be93cf.yaml' +- !include 'Custom_Model_Bag Chaos Bag fea079/Custom_Tile.yaml' +- !include 'Custom_Model_Bag Chaos Bag fea079/Custom_Tile 1d1c68.yaml' +- !include 'Custom_Model_Bag Chaos Bag fea079/Custom_Tile 73747d.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 163ca4.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 d1ebf6.yaml' +- !include 'Custom_Model_Bag Chaos Bag fea079/Custom_Tile 1699e6.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 8da6ff.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/959719855127933035/B199A5F515A8F3ED7E06780D3723285C02ADE085/ + MaterialIndex: 3 + MeshURL: http://cloud-3.steamusercontent.com/ugc/87098596225685535/6C95EB6308A0A9E89367DD67D5C65D09EB3C06A0/ + NormalURL: '' + TypeIndex: 6 +Description: Chaos Bag +GMNotes: '' +GUID: fea079 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Model_Bag Chaos Bag fea079.ttslua' +LuaScriptState: '' +MaterialIndex: -1 +MeshIndex: -1 +Name: Custom_Model_Bag +Nickname: Chaos Bag +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 1.75530958 + posY: 1.57838893 + posZ: -14.18739 + rotX: 359.931335 + rotY: 315.009277 + rotZ: 359.955139 + scaleX: 3.0 + scaleY: 3.0 + scaleZ: 3.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Chaos Bag fea079/Custom_Tile 163ca4.yaml b/unpacked/Custom_Model_Bag Chaos Bag fea079/Custom_Tile 163ca4.yaml new file mode 100644 index 000000000..94e6861bf --- /dev/null +++ b/unpacked/Custom_Model_Bag Chaos Bag fea079/Custom_Tile 163ca4.yaml @@ -0,0 +1,42 @@ +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: '' +GMNotes: '' +GUID: 163ca4 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Tile +Nickname: '' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -52.1020241 + posY: 1.71156025 + posZ: 6.92665958 + rotX: 359.886 + rotY: 269.978943 + rotZ: 354.777222 + scaleX: 0.81 + scaleY: 1.0 + scaleZ: 0.81 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Chaos Bag fea079/Custom_Tile 1699e6.yaml b/unpacked/Custom_Model_Bag Chaos Bag fea079/Custom_Tile 1699e6.yaml new file mode 100644 index 000000000..94a2e525c --- /dev/null +++ b/unpacked/Custom_Model_Bag Chaos Bag fea079/Custom_Tile 1699e6.yaml @@ -0,0 +1,42 @@ +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: '' +GMNotes: '' +GUID: 1699e6 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Tile +Nickname: '' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -52.050415 + posY: 2.03790045 + posZ: 7.998221 + rotX: 359.920135 + rotY: 269.97467 + rotZ: 0.0169066116 + scaleX: 0.81 + scaleY: 1.0 + scaleZ: 0.81 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Chaos Bag fea079/Custom_Tile 1d1c68.yaml b/unpacked/Custom_Model_Bag Chaos Bag fea079/Custom_Tile 1d1c68.yaml new file mode 100644 index 000000000..eb95e53f9 --- /dev/null +++ b/unpacked/Custom_Model_Bag Chaos Bag fea079/Custom_Tile 1d1c68.yaml @@ -0,0 +1,42 @@ +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: '' +GMNotes: '' +GUID: 1d1c68 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Tile +Nickname: '' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -51.7370224 + posY: 2.034591 + posZ: 5.697359 + rotX: 359.98056 + rotY: 270.01178 + rotZ: 0.0518671162 + scaleX: 0.81 + scaleY: 1.0 + scaleZ: 0.81 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Chaos Bag fea079/Custom_Tile 6a68fe.yaml b/unpacked/Custom_Model_Bag Chaos Bag fea079/Custom_Tile 6a68fe.yaml new file mode 100644 index 000000000..cccabdd6a --- /dev/null +++ b/unpacked/Custom_Model_Bag Chaos Bag fea079/Custom_Tile 6a68fe.yaml @@ -0,0 +1,42 @@ +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: '' +GMNotes: '' +GUID: 6a68fe +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Tile +Nickname: '' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -20.2173214 + posY: 1.99118471 + posZ: -23.67844 + rotX: 0.01688737 + rotY: 179.9888 + rotZ: 0.07987342 + scaleX: 0.81 + scaleY: 1.0 + scaleZ: 0.81 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Chaos Bag fea079/Custom_Tile 73747d.yaml b/unpacked/Custom_Model_Bag Chaos Bag fea079/Custom_Tile 73747d.yaml new file mode 100644 index 000000000..7c1927338 --- /dev/null +++ b/unpacked/Custom_Model_Bag Chaos Bag fea079/Custom_Tile 73747d.yaml @@ -0,0 +1,42 @@ +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/1plY463.png + WidthScale: 0.0 +Description: '' +GMNotes: '' +GUID: 73747d +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Tile +Nickname: '' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -52.01243 + posY: 2.036932 + posZ: 5.799737 + rotX: 359.920135 + rotY: 269.97467 + rotZ: 0.016906634 + scaleX: 0.81 + scaleY: 1.0 + scaleZ: 0.81 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Chaos Bag fea079/Custom_Tile 8da6ff.yaml b/unpacked/Custom_Model_Bag Chaos Bag fea079/Custom_Tile 8da6ff.yaml new file mode 100644 index 000000000..1189f978e --- /dev/null +++ b/unpacked/Custom_Model_Bag Chaos Bag fea079/Custom_Tile 8da6ff.yaml @@ -0,0 +1,42 @@ +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/VzhJJaH.png + WidthScale: 0.0 +Description: '' +GMNotes: '' +GUID: 8da6ff +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Tile +Nickname: '' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -48.538784 + posY: 2.0073154 + posZ: 4.50848055 + rotX: 359.920135 + rotY: 269.97467 + rotZ: 0.0169066116 + scaleX: 0.81 + scaleY: 1.0 + scaleZ: 0.81 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Chaos Bag fea079/Custom_Tile be93cf.yaml b/unpacked/Custom_Model_Bag Chaos Bag fea079/Custom_Tile be93cf.yaml new file mode 100644 index 000000000..0de5ad2e6 --- /dev/null +++ b/unpacked/Custom_Model_Bag Chaos Bag fea079/Custom_Tile be93cf.yaml @@ -0,0 +1,42 @@ +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: '' +GMNotes: '' +GUID: be93cf +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Tile +Nickname: '' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 1.75449646 + posY: 2.36759877 + posZ: -14.1857281 + rotX: 359.927643 + rotY: 315.009125 + rotZ: 0.0170274712 + scaleX: 0.81 + scaleY: 1.0 + scaleZ: 0.81 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Chaos Bag fea079/Custom_Tile d1ebf6.yaml b/unpacked/Custom_Model_Bag Chaos Bag fea079/Custom_Tile d1ebf6.yaml new file mode 100644 index 000000000..1cfd02151 --- /dev/null +++ b/unpacked/Custom_Model_Bag Chaos Bag fea079/Custom_Tile d1ebf6.yaml @@ -0,0 +1,42 @@ +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: '' +GMNotes: '' +GUID: d1ebf6 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Tile +Nickname: '' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -52.1016121 + posY: 1.63770664 + posZ: 5.83287573 + rotX: 359.920227 + rotY: 269.974731 + rotZ: 0.0185068 + scaleX: 0.81 + scaleY: 1.0 + scaleZ: 0.81 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Chaos Bag fea079/Custom_Tile.yaml b/unpacked/Custom_Model_Bag Chaos Bag fea079/Custom_Tile.yaml new file mode 100644 index 000000000..82fa84bff --- /dev/null +++ b/unpacked/Custom_Model_Bag Chaos Bag fea079/Custom_Tile.yaml @@ -0,0 +1,42 @@ +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: '' +GMNotes: '' +GUID: '' +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Tile +Nickname: '' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -10.6612959 + posY: 4.504573 + posZ: 27.849432 + rotX: 0.0 + rotY: 260.0 + rotZ: 0.0 + scaleX: 0.81 + scaleY: 1.0 + scaleZ: 0.81 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Chaos Token Reserve 106418.yaml b/unpacked/Custom_Model_Bag Chaos Token Reserve 106418.yaml new file mode 100644 index 000000000..fc5f3573b --- /dev/null +++ b/unpacked/Custom_Model_Bag Chaos Token Reserve 106418.yaml @@ -0,0 +1,68 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +ContainedObjects: +- !include 'Custom_Model_Bag Chaos Token Reserve 106418/Custom_Tile 1a1506.yaml' +- !include 'Custom_Model_Bag Chaos Token Reserve 106418/Custom_Tile d3d96a.yaml' +- !include 'Custom_Model_Bag Chaos Token Reserve 106418/Custom_Tile cc8bbb.yaml' +- !include 'Custom_Model_Bag Chaos Token Reserve 106418/Custom_Tile 7d6103.yaml' +- !include 'Custom_Model_Bag Chaos Token Reserve 106418/Custom_Tile 0b1aca.yaml' +- !include 'Custom_Model_Bag Chaos Token Reserve 106418/Custom_Tile e31821.yaml' +- !include 'Custom_Model_Bag Chaos Token Reserve 106418/Custom_Tile 298b5f.yaml' +- !include 'Custom_Model_Bag Chaos Token Reserve 106418/Custom_Tile 81a1d7.yaml' +- !include 'Custom_Model_Bag Chaos Token Reserve 106418/Custom_Tile 2460df.yaml' +- !include 'Custom_Model_Bag Chaos Token Reserve 106418/Custom_Tile 1df0a5.yaml' +- !include 'Custom_Model_Bag Chaos Token Reserve 106418/Custom_Tile 984eec.yaml' +- !include 'Custom_Model_Bag Chaos Token Reserve 106418/Custom_Tile a7a9cb.yaml' +- !include 'Custom_Model_Bag Chaos Token Reserve 106418/Custom_Tile 8af600.yaml' +- !include 'Custom_Model_Bag Chaos Token Reserve 106418/Custom_Tile b644d2.yaml' +- !include 'Custom_Model_Bag Chaos Token Reserve 106418/Custom_Tile 0a8592.yaml' +- !include 'Custom_Model_Bag Chaos Token Reserve 106418/Custom_Tile a15273.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/959719855127875098/FDA724CE3F0F9C62A141C0B33CAB238C40EDEE32/ + MaterialIndex: 3 + MeshURL: http://cloud-3.steamusercontent.com/ugc/87098596225685535/6C95EB6308A0A9E89367DD67D5C65D09EB3C06A0/ + NormalURL: '' + TypeIndex: 6 +Description: Chaos Bag +GMNotes: '' +GUID: '106418' +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: true +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +MeshIndex: -1 +Name: Custom_Model_Bag +Nickname: Chaos Token Reserve +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 28.0526276 + posY: 1.44377768 + posZ: -19.959547 + rotX: 0.114719048 + rotY: 315.0035 + rotZ: 359.828247 + scaleX: 3.0 + scaleY: 3.0 + scaleZ: 3.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Chaos Token Reserve 106418/Custom_Tile 0a8592.yaml b/unpacked/Custom_Model_Bag Chaos Token Reserve 106418/Custom_Tile 0a8592.yaml new file mode 100644 index 000000000..d42c5b9ee --- /dev/null +++ b/unpacked/Custom_Model_Bag Chaos Token Reserve 106418/Custom_Tile 0a8592.yaml @@ -0,0 +1,42 @@ +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: '' +GMNotes: '' +GUID: 0a8592 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Tile +Nickname: '' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 24.6275234 + posY: 2.12903047 + posZ: -5.370713 + rotX: 359.920135 + rotY: 270.012573 + rotZ: 0.0168634374 + scaleX: 0.81 + scaleY: 1.0 + scaleZ: 0.81 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Chaos Token Reserve 106418/Custom_Tile 0b1aca.yaml b/unpacked/Custom_Model_Bag Chaos Token Reserve 106418/Custom_Tile 0b1aca.yaml new file mode 100644 index 000000000..ba6a4bf6a --- /dev/null +++ b/unpacked/Custom_Model_Bag Chaos Token Reserve 106418/Custom_Tile 0b1aca.yaml @@ -0,0 +1,42 @@ +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: '' +GMNotes: '' +GUID: 0b1aca +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Tile +Nickname: '' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 21.4275742 + posY: 2.158057 + posZ: -21.0653152 + rotX: 5.00245762 + rotY: 270.221466 + rotZ: 3.53037024 + scaleX: 0.81 + scaleY: 1.0 + scaleZ: 0.81 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Chaos Token Reserve 106418/Custom_Tile 1a1506.yaml b/unpacked/Custom_Model_Bag Chaos Token Reserve 106418/Custom_Tile 1a1506.yaml new file mode 100644 index 000000000..baaebe953 --- /dev/null +++ b/unpacked/Custom_Model_Bag Chaos Token Reserve 106418/Custom_Tile 1a1506.yaml @@ -0,0 +1,42 @@ +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/1plY463.png + WidthScale: 0.0 +Description: '' +GMNotes: '' +GUID: 1a1506 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Tile +Nickname: '' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 15.66783 + posY: 2.45976448 + posZ: -36.3038521 + rotX: 359.920135 + rotY: 269.973145 + rotZ: 0.0169141721 + scaleX: 0.81 + scaleY: 1.0 + scaleZ: 0.81 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Chaos Token Reserve 106418/Custom_Tile 1df0a5.yaml b/unpacked/Custom_Model_Bag Chaos Token Reserve 106418/Custom_Tile 1df0a5.yaml new file mode 100644 index 000000000..2369c4c75 --- /dev/null +++ b/unpacked/Custom_Model_Bag Chaos Token Reserve 106418/Custom_Tile 1df0a5.yaml @@ -0,0 +1,42 @@ +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: '' +GMNotes: '' +GUID: 1df0a5 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Tile +Nickname: '' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 24.1588631 + posY: 2.22407436 + posZ: -20.2432365 + rotX: 359.964447 + rotY: 270.030182 + rotZ: 0.0737733245 + scaleX: 0.81 + scaleY: 1.0 + scaleZ: 0.81 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Chaos Token Reserve 106418/Custom_Tile 2460df.yaml b/unpacked/Custom_Model_Bag Chaos Token Reserve 106418/Custom_Tile 2460df.yaml new file mode 100644 index 000000000..77488da13 --- /dev/null +++ b/unpacked/Custom_Model_Bag Chaos Token Reserve 106418/Custom_Tile 2460df.yaml @@ -0,0 +1,42 @@ +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: '' +GMNotes: '' +GUID: 2460df +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Tile +Nickname: '' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 23.8521843 + posY: 2.15267277 + posZ: -17.96813 + rotX: 0.4986479 + rotY: 270.013367 + rotZ: 354.597351 + scaleX: 0.81 + scaleY: 1.0 + scaleZ: 0.81 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Chaos Token Reserve 106418/Custom_Tile 298b5f.yaml b/unpacked/Custom_Model_Bag Chaos Token Reserve 106418/Custom_Tile 298b5f.yaml new file mode 100644 index 000000000..e4986fe0d --- /dev/null +++ b/unpacked/Custom_Model_Bag Chaos Token Reserve 106418/Custom_Tile 298b5f.yaml @@ -0,0 +1,42 @@ +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: '' +GMNotes: '' +GUID: 298b5f +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Tile +Nickname: '' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 24.5089 + posY: 2.222084 + posZ: -21.0688438 + rotX: 359.963776 + rotY: 269.982849 + rotZ: 0.06481807 + scaleX: 0.81 + scaleY: 1.0 + scaleZ: 0.81 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Chaos Token Reserve 106418/Custom_Tile 7d6103.yaml b/unpacked/Custom_Model_Bag Chaos Token Reserve 106418/Custom_Tile 7d6103.yaml new file mode 100644 index 000000000..c223df8d7 --- /dev/null +++ b/unpacked/Custom_Model_Bag Chaos Token Reserve 106418/Custom_Tile 7d6103.yaml @@ -0,0 +1,42 @@ +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/VzhJJaH.png + WidthScale: 0.0 +Description: '' +GMNotes: '' +GUID: 7d6103 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Tile +Nickname: '' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 16.8160248 + posY: 2.46137524 + posZ: -25.397356 + rotX: 359.920135 + rotY: 269.9897 + rotZ: 0.0168842 + scaleX: 0.81 + scaleY: 1.0 + scaleZ: 0.81 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Chaos Token Reserve 106418/Custom_Tile 81a1d7.yaml b/unpacked/Custom_Model_Bag Chaos Token Reserve 106418/Custom_Tile 81a1d7.yaml new file mode 100644 index 000000000..48833ee2e --- /dev/null +++ b/unpacked/Custom_Model_Bag Chaos Token Reserve 106418/Custom_Tile 81a1d7.yaml @@ -0,0 +1,42 @@ +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/4WRD42n.png + WidthScale: 0.0 +Description: '' +GMNotes: '' +GUID: 81a1d7 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Tile +Nickname: '' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 26.4844 + posY: 2.127468 + posZ: -16.74508 + rotX: 359.9201 + rotY: 270.017731 + rotZ: 0.0168482 + scaleX: 0.81 + scaleY: 1.0 + scaleZ: 0.81 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Chaos Token Reserve 106418/Custom_Tile 8af600.yaml b/unpacked/Custom_Model_Bag Chaos Token Reserve 106418/Custom_Tile 8af600.yaml new file mode 100644 index 000000000..d701e0e92 --- /dev/null +++ b/unpacked/Custom_Model_Bag Chaos Token Reserve 106418/Custom_Tile 8af600.yaml @@ -0,0 +1,42 @@ +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: '' +GMNotes: '' +GUID: 8af600 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Tile +Nickname: '' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 28.110899 + posY: 5.044147 + posZ: -30.1698551 + rotX: 359.920135 + rotY: 270.01355 + rotZ: 0.0168515779 + scaleX: 0.81 + scaleY: 1.0 + scaleZ: 0.81 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Chaos Token Reserve 106418/Custom_Tile 984eec.yaml b/unpacked/Custom_Model_Bag Chaos Token Reserve 106418/Custom_Tile 984eec.yaml new file mode 100644 index 000000000..72808772e --- /dev/null +++ b/unpacked/Custom_Model_Bag Chaos Token Reserve 106418/Custom_Tile 984eec.yaml @@ -0,0 +1,42 @@ +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: '' +GMNotes: '' +GUID: 984eec +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Tile +Nickname: '' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 24.4811134 + posY: 3.05983543 + posZ: -22.7639542 + rotX: 359.9201 + rotY: 270.0239 + rotZ: 0.0168402344 + scaleX: 0.81 + scaleY: 1.0 + scaleZ: 0.81 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Chaos Token Reserve 106418/Custom_Tile a15273.yaml b/unpacked/Custom_Model_Bag Chaos Token Reserve 106418/Custom_Tile a15273.yaml new file mode 100644 index 000000000..5e8221e66 --- /dev/null +++ b/unpacked/Custom_Model_Bag Chaos Token Reserve 106418/Custom_Tile a15273.yaml @@ -0,0 +1,42 @@ +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: '' +GMNotes: '' +GUID: a15273 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Tile +Nickname: '' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 24.7325726 + posY: 2.12950587 + posZ: -3.258198 + rotX: 359.920135 + rotY: 270.012177 + rotZ: 0.0168633554 + scaleX: 0.81 + scaleY: 1.0 + scaleZ: 0.81 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Chaos Token Reserve 106418/Custom_Tile a7a9cb.yaml b/unpacked/Custom_Model_Bag Chaos Token Reserve 106418/Custom_Tile a7a9cb.yaml new file mode 100644 index 000000000..104e55375 --- /dev/null +++ b/unpacked/Custom_Model_Bag Chaos Token Reserve 106418/Custom_Tile a7a9cb.yaml @@ -0,0 +1,42 @@ +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: '' +GMNotes: '' +GUID: a7a9cb +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Tile +Nickname: '' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 26.0832577 + posY: 2.127194 + posZ: -19.5760612 + rotX: 359.9201 + rotY: 270.01474 + rotZ: 0.01685645 + scaleX: 0.81 + scaleY: 1.0 + scaleZ: 0.81 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Chaos Token Reserve 106418/Custom_Tile b644d2.yaml b/unpacked/Custom_Model_Bag Chaos Token Reserve 106418/Custom_Tile b644d2.yaml new file mode 100644 index 000000000..b08060d17 --- /dev/null +++ b/unpacked/Custom_Model_Bag Chaos Token Reserve 106418/Custom_Tile b644d2.yaml @@ -0,0 +1,42 @@ +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: '' +GMNotes: '' +GUID: b644d2 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Tile +Nickname: '' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 24.5396557 + posY: 2.12856412 + posZ: -7.36977768 + rotX: 359.920135 + rotY: 270.009064 + rotZ: 0.0168659259 + scaleX: 0.81 + scaleY: 1.0 + scaleZ: 0.81 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Chaos Token Reserve 106418/Custom_Tile cc8bbb.yaml b/unpacked/Custom_Model_Bag Chaos Token Reserve 106418/Custom_Tile cc8bbb.yaml new file mode 100644 index 000000000..65586e314 --- /dev/null +++ b/unpacked/Custom_Model_Bag Chaos Token Reserve 106418/Custom_Tile cc8bbb.yaml @@ -0,0 +1,42 @@ +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: '' +GMNotes: '' +GUID: cc8bbb +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Tile +Nickname: '' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 16.0877876 + posY: 2.46152973 + posZ: -28.3215961 + rotX: 359.9201 + rotY: 270.0121 + rotZ: 0.01685751 + scaleX: 0.81 + scaleY: 1.0 + scaleZ: 0.81 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Chaos Token Reserve 106418/Custom_Tile d3d96a.yaml b/unpacked/Custom_Model_Bag Chaos Token Reserve 106418/Custom_Tile d3d96a.yaml new file mode 100644 index 000000000..a6ff629ad --- /dev/null +++ b/unpacked/Custom_Model_Bag Chaos Token Reserve 106418/Custom_Tile d3d96a.yaml @@ -0,0 +1,42 @@ +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: '' +GMNotes: '' +GUID: d3d96a +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Tile +Nickname: '' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 16.5730629 + posY: 2.459789 + posZ: -31.93437 + rotX: 359.9201 + rotY: 270.020782 + rotZ: 0.0168403331 + scaleX: 0.81 + scaleY: 1.0 + scaleZ: 0.81 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Chaos Token Reserve 106418/Custom_Tile e31821.yaml b/unpacked/Custom_Model_Bag Chaos Token Reserve 106418/Custom_Tile e31821.yaml new file mode 100644 index 000000000..ab3a55709 --- /dev/null +++ b/unpacked/Custom_Model_Bag Chaos Token Reserve 106418/Custom_Tile e31821.yaml @@ -0,0 +1,42 @@ +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: '' +GMNotes: '' +GUID: e31821 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Tile +Nickname: '' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 21.544754 + posY: 2.129376 + posZ: -18.7913246 + rotX: 359.920135 + rotY: 270.005524 + rotZ: 0.016873531 + scaleX: 0.81 + scaleY: 1.0 + scaleZ: 0.81 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Core 2585f4.ttslua b/unpacked/Custom_Model_Bag Core 2585f4.ttslua new file mode 100644 index 000000000..5dff2f1d7 --- /dev/null +++ b/unpacked/Custom_Model_Bag Core 2585f4.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,3,7}, rotation={0,0,0}, height=700, width=2000, + font_size=700, 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 +12 + 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=800, width=800, + 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,3,7}, rotation={0,0,0}, height=700, width=2000, + font_size=700, color={0,0,0}, font_color={1,1,1} + }) + self.createButton({ + label="Submit", click_function="buttonClick_submit", function_owner=self, + position={0,3,-7}, rotation={0,0,0}, height=700, width=2000, + font_size=700, color={0,0,0}, font_color={1,1,1} + }) +-- self.createButton({ +-- label="Reset", click_function="buttonClick_reset", function_owner=self, +-- position={3,2.5,6}, rotation={0,0,0}, height=550, width=1100, +-- font_size=400, 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={2.4,3,7}, rotation={0,0,0}, height=850, width=2000, + font_size=700, color={0,0,0}, font_color={1,1,1} + }) + self.createButton({ + label="Recall", click_function="buttonClick_recall", function_owner=self, + position={-2.4,3,7}, rotation={0,0,0}, height=850, width=2200, + font_size=700, 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.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 \ No newline at end of file diff --git a/unpacked/Custom_Model_Bag Core 2585f4.yaml b/unpacked/Custom_Model_Bag Core 2585f4.yaml new file mode 100644 index 000000000..befff839c --- /dev/null +++ b/unpacked/Custom_Model_Bag Core 2585f4.yaml @@ -0,0 +1,82 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +ContainedObjects: +- !include 'Custom_Model_Bag Core 2585f4/Custom_Model_Bag starter deck & cards 011254.yaml' +- !include 'Custom_Model_Bag Core 2585f4/Custom_Model_Bag starter deck & cards 02abdb.yaml' +- !include 'Custom_Model_Bag Core 2585f4/Custom_Model_Bag starter deck & cards 0d6388.yaml' +- !include 'Custom_Model_Bag Core 2585f4/Custom_Model Turn token 0de2c4.yaml' +- !include 'Custom_Model_Bag Core 2585f4/Deck Roland Banks 171f17.yaml' +- !include 'Custom_Model_Bag Core 2585f4/Custom_Model Turn token 226716.yaml' +- !include 'Custom_Model_Bag Core 2585f4/Card Agnes Baker 25e2db.yaml' +- !include 'Custom_Model_Bag Core 2585f4/Custom_Model Turn token 307044.yaml' +- !include 'Custom_Model_Bag Core 2585f4/Custom_Model Turn token 3ddfeb.yaml' +- !include 'Custom_Model_Bag Core 2585f4/Custom_Model Survivor turn token 41bfc7.yaml' +- !include 'Custom_Model_Bag Core 2585f4/Custom_Model Survivor turn token 4ad11b.yaml' +- !include 'Custom_Model_Bag Core 2585f4/Custom_Model Turn token 543164.yaml' +- !include 'Custom_Model_Bag Core 2585f4/Deck Roland Banks 5e04b0.yaml' +- !include 'Custom_Model_Bag Core 2585f4/Custom_Model Survivor turn token 6330da.yaml' +- !include 'Custom_Model_Bag Core 2585f4/Card Daisy Walker 6938eb.yaml' +- !include 'Custom_Model_Bag Core 2585f4/Custom_Model Turn token 779aa6.yaml' +- !include 'Custom_Model_Bag Core 2585f4/Card Wendy Adams 7a6af2.yaml' +- !include 'Custom_Model_Bag Core 2585f4/Card Skids O''Toole 9015b4.yaml' +- !include 'Custom_Model_Bag Core 2585f4/Card Wendy Adams 90ea00.yaml' +- !include 'Custom_Model_Bag Core 2585f4/Card Daisy Walker 965031.yaml' +- !include 'Custom_Model_Bag Core 2585f4/Custom_Model_Bag starter deck & cards 978a0e.yaml' +- !include 'Custom_Model_Bag Core 2585f4/Custom_Model Survivor turn token 9e80b9.yaml' +- !include 'Custom_Model_Bag Core 2585f4/Custom_Model Survivor turn token bde4a6.yaml' +- !include 'Custom_Model_Bag Core 2585f4/Card Skids O''Toole bed196.yaml' +- !include 'Custom_Model_Bag Core 2585f4/Custom_Model Survivor turn token d6fdbf.yaml' +- !include 'Custom_Model_Bag Core 2585f4/Custom_Model Survivor turn token d9fb86.yaml' +- !include 'Custom_Model_Bag Core 2585f4/Custom_Model_Bag starter deck & cards dc27c7.yaml' +- !include 'Custom_Model_Bag Core 2585f4/Custom_Model Survivor turn token de216f.yaml' +- !include 'Custom_Model_Bag Core 2585f4/Custom_Model Survivor turn token e04b48.yaml' +- !include 'Custom_Model_Bag Core 2585f4/Card Agnes Baker e9ad05.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/762723517667628371/18438B0A0045038A7099648AA3346DFCAA267C66/ + MaterialIndex: 3 + MeshURL: https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/core_h_MSH.obj + NormalURL: '' + TypeIndex: 6 +Description: '' +GMNotes: '' +GUID: 2585f4 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Model_Bag Core 2585f4.ttslua' +LuaScriptState: '{"ml":{"011254":{"lock":false,"pos":{"x":-26.3002,"y":1.2688,"z":-76.9456},"rot":{"x":359.9792,"y":90.0002,"z":359.9832}},"02abdb":{"lock":false,"pos":{"x":-26.3002,"y":1.2711,"z":-69.0606},"rot":{"x":359.9792,"y":89.9998,"z":359.9832}},"0d6388":{"lock":false,"pos":{"x":-26.3001,"y":1.2734,"z":-61.241},"rot":{"x":359.9792,"y":89.9999,"z":359.9832}},"0de2c4":{"lock":false,"pos":{"x":-16.6401,"y":1.36,"z":-67.8206},"rot":{"x":0.0208,"y":270,"z":0.0168}},"171f17":{"lock":false,"pos":{"x":-22.6139,"y":1.3806,"z":-53.4381},"rot":{"x":0.0168,"y":180.0172,"z":359.9792}},"226716":{"lock":false,"pos":{"x":-16.6401,"y":1.3592,"z":-70.2906},"rot":{"x":0.0208,"y":269.9999,"z":0.0168}},"25e2db":{"lock":false,"pos":{"x":-22.6157,"y":1.3668,"z":-76.946},"rot":{"x":0.0168,"y":180.0103,"z":359.9792}},"307044":{"lock":false,"pos":{"x":-16.6402,"y":1.355,"z":-84.8182},"rot":{"x":0.0208,"y":270.0002,"z":0.0168}},"3ddfeb":{"lock":false,"pos":{"x":-16.6385,"y":1.3554,"z":-83.5415},"rot":{"x":0.0208,"y":269.9997,"z":0.0168}},"41bfc7":{"lock":false,"pos":{"x":-16.64,"y":1.3615,"z":-62.4609},"rot":{"x":0.0208,"y":270,"z":0.0168}},"4ad11b":{"lock":false,"pos":{"x":-16.6396,"y":1.3573,"z":-76.9456},"rot":{"x":0.0208,"y":270.0002,"z":0.0168}},"543164":{"lock":false,"pos":{"x":-16.6403,"y":1.3596,"z":-69.0603},"rot":{"x":0.0208,"y":269.9997,"z":0.0168}},"5e04b0":{"lock":false,"pos":{"x":-19.3,"y":1.3818,"z":-53.4358},"rot":{"x":0.0208,"y":269.9929,"z":0.0168}},"6330da":{"lock":false,"pos":{"x":-16.64,"y":1.3645,"z":-52.152},"rot":{"x":0.0208,"y":270.0002,"z":0.0168}},"6938eb":{"lock":false,"pos":{"x":-22.6169,"y":1.3714,"z":-61.2414},"rot":{"x":0.0168,"y":180.0105,"z":359.9792}},"779aa6":{"lock":false,"pos":{"x":-16.6394,"y":1.3546,"z":-86.0186},"rot":{"x":0.0208,"y":270.0002,"z":0.0168}},"7a6af2":{"lock":false,"pos":{"x":-19.2998,"y":1.3657,"z":-84.8182},"rot":{"x":0.0208,"y":270.0193,"z":0.0168}},"9015b4":{"lock":false,"pos":{"x":-22.6157,"y":1.3691,"z":-69.0756},"rot":{"x":0.0168,"y":180.0104,"z":359.9792}},"90ea00":{"lock":false,"pos":{"x":-22.6169,"y":1.3645,"z":-84.8185},"rot":{"x":0.0168,"y":180.0104,"z":359.9792}},"965031":{"lock":false,"pos":{"x":-19.3001,"y":1.3726,"z":-61.2332},"rot":{"x":0.0208,"y":270.0054,"z":0.0168}},"978a0e":{"lock":false,"pos":{"x":-26.3,"y":1.2757,"z":-53.4368},"rot":{"x":359.9792,"y":90.0002,"z":359.9832}},"9e80b9":{"lock":false,"pos":{"x":-16.64,"y":1.3638,"z":-54.6207},"rot":{"x":0.0208,"y":270.0121,"z":0.0168}},"bde4a6":{"lock":false,"pos":{"x":-16.64,"y":1.3642,"z":-53.3904},"rot":{"x":0.0208,"y":270,"z":0.0168}},"bed196":{"lock":false,"pos":{"x":-19.2959,"y":1.3703,"z":-69.0607},"rot":{"x":0.0208,"y":270.0321,"z":0.0168}},"d6fdbf":{"lock":false,"pos":{"x":-16.6401,"y":1.3622,"z":-60.001},"rot":{"x":0.0208,"y":270.0005,"z":0.0168}},"d9fb86":{"lock":false,"pos":{"x":-16.6401,"y":1.3569,"z":-78.1756},"rot":{"x":0.0208,"y":270.0092,"z":0.0168}},"dc27c7":{"lock":false,"pos":{"x":-26.2996,"y":1.2665,"z":-84.818},"rot":{"x":359.9792,"y":90.0028,"z":359.9832}},"de216f":{"lock":false,"pos":{"x":-16.6401,"y":1.3619,"z":-61.231},"rot":{"x":0.0208,"y":270.0004,"z":0.0168}},"e04b48":{"lock":false,"pos":{"x":-16.6426,"y":1.3576,"z":-75.6992},"rot":{"x":0.0209,"y":269.806,"z":0.0167}},"e9ad05":{"lock":false,"pos":{"x":-19.2936,"y":1.368,"z":-76.9415},"rot":{"x":0.0208,"y":269.9965,"z":0.0168}}}}' +MaterialIndex: -1 +MeshIndex: -1 +Name: Custom_Model_Bag +Nickname: Core +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -9.742425 + posY: 1.30773139 + posZ: -49.81 + rotX: 0.0208092388 + rotY: 270.003174 + rotZ: 0.0167715661 + scaleX: 0.5 + scaleY: 0.139652729 + scaleZ: 0.5 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Core 2585f4/Card Agnes Baker 25e2db.yaml b/unpacked/Custom_Model_Bag Core 2585f4/Card Agnes Baker 25e2db.yaml new file mode 100644 index 000000000..816f270f4 --- /dev/null +++ b/unpacked/Custom_Model_Bag Core 2585f4/Card Agnes Baker 25e2db.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 270103 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2701': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1011562618093845464/80687C9319FA2015F3D9F7CBEB4C55FBF045B27D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1011562618093845971/A678BD374EC4DE672206B5EF7EB57DC885BC839C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: The Waitress +GMNotes: '' +GUID: 25e2db +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Agnes Baker +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -22.6157 + posY: 1.36682665 + posZ: -76.946 + rotX: 0.0167755 + rotY: 180.010254 + rotZ: 359.9792 + scaleX: 1.1 + scaleY: 1.0 + scaleZ: 1.1 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Core 2585f4/Card Agnes Baker e9ad05.yaml b/unpacked/Custom_Model_Bag Core 2585f4/Card Agnes Baker e9ad05.yaml new file mode 100644 index 000000000..637000ee1 --- /dev/null +++ b/unpacked/Custom_Model_Bag Core 2585f4/Card Agnes Baker e9ad05.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 258803 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2588': + BackIsHidden: true + BackURL: https://i.imgur.com/vB84qMp.jpg + FaceURL: https://i.imgur.com/WPYBga4.jpg + NumHeight: 3 + NumWidth: 7 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: e9ad05 +Grid: false +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Agnes Baker +SidewaysCard: false +Snap: false +Sticky: true +Tooltip: true +Transform: + posX: -19.2936 + posY: 1.3680346 + posZ: -76.9415 + rotX: 0.0208117384 + rotY: 269.9964 + rotZ: 0.0167690571 + scaleX: 0.6 + scaleY: 1.0 + scaleZ: 0.6 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Core 2585f4/Card Daisy Walker 6938eb.yaml b/unpacked/Custom_Model_Bag Core 2585f4/Card Daisy Walker 6938eb.yaml new file mode 100644 index 000000000..42a44e5c1 --- /dev/null +++ b/unpacked/Custom_Model_Bag Core 2585f4/Card Daisy Walker 6938eb.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 269901 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2699': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1011562618093845464/80687C9319FA2015F3D9F7CBEB4C55FBF045B27D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1011562618093845971/A678BD374EC4DE672206B5EF7EB57DC885BC839C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: The Librarian +GMNotes: '' +GUID: 6938eb +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Daisy Walker +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -22.6169 + posY: 1.37142324 + posZ: -61.2414 + rotX: 0.0167755727 + rotY: 180.010437 + rotZ: 359.9792 + scaleX: 1.1 + scaleY: 1.0 + scaleZ: 1.1 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Core 2585f4/Card Daisy Walker 965031.yaml b/unpacked/Custom_Model_Bag Core 2585f4/Card Daisy Walker 965031.yaml new file mode 100644 index 000000000..3eadb1202 --- /dev/null +++ b/unpacked/Custom_Model_Bag Core 2585f4/Card Daisy Walker 965031.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 258701 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2587': + BackIsHidden: true + BackURL: https://i.imgur.com/vB84qMp.jpg + FaceURL: https://i.imgur.com/WPYBga4.jpg + NumHeight: 3 + NumWidth: 7 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: '965031' +Grid: false +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Daisy Walker +SidewaysCard: false +Snap: false +Sticky: true +Tooltip: true +Transform: + posX: -19.3001 + posY: 1.37263024 + posZ: -61.2332 + rotX: 0.0208087545 + rotY: 270.005432 + rotZ: 0.0167717617 + scaleX: 0.6 + scaleY: 1.0 + scaleZ: 0.6 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Core 2585f4/Card Skids O'Toole 9015b4.yaml b/unpacked/Custom_Model_Bag Core 2585f4/Card Skids O'Toole 9015b4.yaml new file mode 100644 index 000000000..479b12d15 --- /dev/null +++ b/unpacked/Custom_Model_Bag Core 2585f4/Card Skids O'Toole 9015b4.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 270002 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2700': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1011562618093845464/80687C9319FA2015F3D9F7CBEB4C55FBF045B27D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1011562618093845971/A678BD374EC4DE672206B5EF7EB57DC885BC839C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: The Ex-Con +GMNotes: '' +GUID: 9015b4 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '"Skids" O''Toole' +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -22.6157 + posY: 1.36913049 + posZ: -69.0756 + rotX: 0.0167756211 + rotY: 180.0103 + rotZ: 359.9792 + scaleX: 1.1 + scaleY: 1.0 + scaleZ: 1.1 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Core 2585f4/Card Skids O'Toole bed196.yaml b/unpacked/Custom_Model_Bag Core 2585f4/Card Skids O'Toole bed196.yaml new file mode 100644 index 000000000..f5c7db3cd --- /dev/null +++ b/unpacked/Custom_Model_Bag Core 2585f4/Card Skids O'Toole bed196.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 258502 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2585': + BackIsHidden: true + BackURL: https://i.imgur.com/vB84qMp.jpg + FaceURL: https://i.imgur.com/WPYBga4.jpg + NumHeight: 3 + NumWidth: 7 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: bed196 +Grid: false +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '"Skids" O''Toole' +SidewaysCard: false +Snap: false +Sticky: true +Tooltip: true +Transform: + posX: -19.2959 + posY: 1.37034059 + posZ: -69.0607 + rotX: 0.0208008848 + rotY: 270.032074 + rotZ: 0.0167815834 + scaleX: 0.6 + scaleY: 1.0 + scaleZ: 0.6 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Core 2585f4/Card Wendy Adams 7a6af2.yaml b/unpacked/Custom_Model_Bag Core 2585f4/Card Wendy Adams 7a6af2.yaml new file mode 100644 index 000000000..c3e350de4 --- /dev/null +++ b/unpacked/Custom_Model_Bag Core 2585f4/Card Wendy Adams 7a6af2.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 258404 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2584': + BackIsHidden: true + BackURL: https://i.imgur.com/vB84qMp.jpg + FaceURL: https://i.imgur.com/WPYBga4.jpg + NumHeight: 3 + NumWidth: 7 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 7a6af2 +Grid: false +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Wendy Adams +SidewaysCard: false +Snap: false +Sticky: true +Tooltip: true +Transform: + posX: -19.2998 + posY: 1.36572671 + posZ: -84.8182 + rotX: 0.020804802 + rotY: 270.0193 + rotZ: 0.01677697 + scaleX: 0.6 + scaleY: 1.0 + scaleZ: 0.6 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Core 2585f4/Card Wendy Adams 90ea00.yaml b/unpacked/Custom_Model_Bag Core 2585f4/Card Wendy Adams 90ea00.yaml new file mode 100644 index 000000000..d15aa1901 --- /dev/null +++ b/unpacked/Custom_Model_Bag Core 2585f4/Card Wendy Adams 90ea00.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 270204 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2702': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1011562618093845464/80687C9319FA2015F3D9F7CBEB4C55FBF045B27D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1011562618093845971/A678BD374EC4DE672206B5EF7EB57DC885BC839C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: The Urchin +GMNotes: '' +GUID: 90ea00 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Wendy Adams +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -22.6169 + posY: 1.36452186 + posZ: -84.8185 + rotX: 0.0167756416 + rotY: 180.010391 + rotZ: 359.9792 + scaleX: 1.1 + scaleY: 1.0 + scaleZ: 1.1 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Core 2585f4/Custom_Model Survivor turn token 41bfc7.yaml b/unpacked/Custom_Model_Bag Core 2585f4/Custom_Model Survivor turn token 41bfc7.yaml new file mode 100644 index 000000000..de7302a6f --- /dev/null +++ b/unpacked/Custom_Model_Bag Core 2585f4/Custom_Model Survivor turn token 41bfc7.yaml @@ -0,0 +1,41 @@ +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: '' +GMNotes: '' +GUID: 41bfc7 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Model +Nickname: Survivor turn token +Snap: true +Sticky: true +Tooltip: false +Transform: + posX: -16.64 + posY: 1.36152339 + posZ: -62.4609 + rotX: 0.0208162833 + rotY: 270.000031 + rotZ: 0.0167684276 + scaleX: 0.45 + scaleY: 0.6 + scaleZ: 0.45 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Core 2585f4/Custom_Model Survivor turn token 4ad11b.yaml b/unpacked/Custom_Model_Bag Core 2585f4/Custom_Model Survivor turn token 4ad11b.yaml new file mode 100644 index 000000000..dab0ff53d --- /dev/null +++ b/unpacked/Custom_Model_Bag Core 2585f4/Custom_Model Survivor turn token 4ad11b.yaml @@ -0,0 +1,41 @@ +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: '' +GMNotes: '' +GUID: 4ad11b +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Model +Nickname: Survivor turn token +Snap: true +Sticky: true +Tooltip: false +Transform: + posX: -16.6396027 + posY: 1.35728359 + posZ: -76.9456 + rotX: 0.02081603 + rotY: 270.000122 + rotZ: 0.0167678166 + scaleX: 0.45 + scaleY: 0.6 + scaleZ: 0.45 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Core 2585f4/Custom_Model Survivor turn token 6330da.yaml b/unpacked/Custom_Model_Bag Core 2585f4/Custom_Model Survivor turn token 6330da.yaml new file mode 100644 index 000000000..9a8231e69 --- /dev/null +++ b/unpacked/Custom_Model_Bag Core 2585f4/Custom_Model Survivor turn token 6330da.yaml @@ -0,0 +1,41 @@ +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: '' +GMNotes: '' +GUID: 6330da +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Model +Nickname: Survivor turn token +Snap: true +Sticky: true +Tooltip: false +Transform: + posX: -16.64 + posY: 1.36454082 + posZ: -52.152 + rotX: 0.0208160821 + rotY: 270.000183 + rotZ: 0.0167677831 + scaleX: 0.45 + scaleY: 0.6 + scaleZ: 0.45 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Core 2585f4/Custom_Model Survivor turn token 9e80b9.yaml b/unpacked/Custom_Model_Bag Core 2585f4/Custom_Model Survivor turn token 9e80b9.yaml new file mode 100644 index 000000000..5b7f193fe --- /dev/null +++ b/unpacked/Custom_Model_Bag Core 2585f4/Custom_Model Survivor turn token 9e80b9.yaml @@ -0,0 +1,41 @@ +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: '' +GMNotes: '' +GUID: 9e80b9 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Model +Nickname: Survivor turn token +Snap: true +Sticky: true +Tooltip: false +Transform: + posX: -16.64 + posY: 1.36381829 + posZ: -54.6207 + rotX: 0.0208127182 + rotY: 270.012115 + rotZ: 0.0167725775 + scaleX: 0.45 + scaleY: 0.6 + scaleZ: 0.45 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Core 2585f4/Custom_Model Survivor turn token bde4a6.yaml b/unpacked/Custom_Model_Bag Core 2585f4/Custom_Model Survivor turn token bde4a6.yaml new file mode 100644 index 000000000..6616f46cd --- /dev/null +++ b/unpacked/Custom_Model_Bag Core 2585f4/Custom_Model Survivor turn token bde4a6.yaml @@ -0,0 +1,41 @@ +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: '' +GMNotes: '' +GUID: bde4a6 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Model +Nickname: Survivor turn token +Snap: true +Sticky: true +Tooltip: false +Transform: + posX: -16.64 + posY: 1.36417842 + posZ: -53.3904 + rotX: 0.0208172183 + rotY: 270.000031 + rotZ: 0.01676808 + scaleX: 0.45 + scaleY: 0.6 + scaleZ: 0.45 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Core 2585f4/Custom_Model Survivor turn token d6fdbf.yaml b/unpacked/Custom_Model_Bag Core 2585f4/Custom_Model Survivor turn token d6fdbf.yaml new file mode 100644 index 000000000..ee3a2522b --- /dev/null +++ b/unpacked/Custom_Model_Bag Core 2585f4/Custom_Model Survivor turn token d6fdbf.yaml @@ -0,0 +1,41 @@ +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: '' +GMNotes: '' +GUID: d6fdbf +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Model +Nickname: Survivor turn token +Snap: true +Sticky: true +Tooltip: false +Transform: + posX: -16.6401 + posY: 1.36224341 + posZ: -60.001 + rotX: 0.0208161473 + rotY: 270.000549 + rotZ: 0.0167682916 + scaleX: 0.45 + scaleY: 0.6 + scaleZ: 0.45 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Core 2585f4/Custom_Model Survivor turn token d9fb86.yaml b/unpacked/Custom_Model_Bag Core 2585f4/Custom_Model Survivor turn token d9fb86.yaml new file mode 100644 index 000000000..9f88cab84 --- /dev/null +++ b/unpacked/Custom_Model_Bag Core 2585f4/Custom_Model Survivor turn token d9fb86.yaml @@ -0,0 +1,41 @@ +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: '' +GMNotes: '' +GUID: d9fb86 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Model +Nickname: Survivor turn token +Snap: true +Sticky: true +Tooltip: false +Transform: + posX: -16.6401 + posY: 1.35692346 + posZ: -78.1756 + rotX: 0.0208141413 + rotY: 270.0092 + rotZ: 0.01677173 + scaleX: 0.45 + scaleY: 0.6 + scaleZ: 0.45 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Core 2585f4/Custom_Model Survivor turn token de216f.yaml b/unpacked/Custom_Model_Bag Core 2585f4/Custom_Model Survivor turn token de216f.yaml new file mode 100644 index 000000000..4f9cc1997 --- /dev/null +++ b/unpacked/Custom_Model_Bag Core 2585f4/Custom_Model Survivor turn token de216f.yaml @@ -0,0 +1,41 @@ +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: '' +GMNotes: '' +GUID: de216f +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Model +Nickname: Survivor turn token +Snap: true +Sticky: true +Tooltip: false +Transform: + posX: -16.6401 + posY: 1.36188328 + posZ: -61.231 + rotX: 0.0208165012 + rotY: 270.000366 + rotZ: 0.01676812 + scaleX: 0.45 + scaleY: 0.6 + scaleZ: 0.45 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Core 2585f4/Custom_Model Survivor turn token e04b48.yaml b/unpacked/Custom_Model_Bag Core 2585f4/Custom_Model Survivor turn token e04b48.yaml new file mode 100644 index 000000000..08e2b1e25 --- /dev/null +++ b/unpacked/Custom_Model_Bag Core 2585f4/Custom_Model Survivor turn token e04b48.yaml @@ -0,0 +1,41 @@ +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: '' +GMNotes: '' +GUID: e04b48 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Model +Nickname: Survivor turn token +Snap: true +Sticky: true +Tooltip: false +Transform: + posX: -16.6426 + posY: 1.35764754 + posZ: -75.6992 + rotX: 0.02087366 + rotY: 269.806 + rotZ: 0.0166979 + scaleX: 0.45 + scaleY: 0.6 + scaleZ: 0.45 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Core 2585f4/Custom_Model Turn token 0de2c4.yaml b/unpacked/Custom_Model_Bag Core 2585f4/Custom_Model Turn token 0de2c4.yaml new file mode 100644 index 000000000..64e82919f --- /dev/null +++ b/unpacked/Custom_Model_Bag Core 2585f4/Custom_Model Turn token 0de2c4.yaml @@ -0,0 +1,41 @@ +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: '' +GMNotes: '' +GUID: 0de2c4 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Model +Nickname: Turn token +Snap: true +Sticky: true +Tooltip: false +Transform: + posX: -16.6401 + posY: 1.35995448 + posZ: -67.8206 + rotX: 0.0208165552 + rotY: 270.0 + rotZ: 0.0167680364 + scaleX: 0.45 + scaleY: 0.6 + scaleZ: 0.45 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Core 2585f4/Custom_Model Turn token 226716.yaml b/unpacked/Custom_Model_Bag Core 2585f4/Custom_Model Turn token 226716.yaml new file mode 100644 index 000000000..8350e8ddf --- /dev/null +++ b/unpacked/Custom_Model_Bag Core 2585f4/Custom_Model Turn token 226716.yaml @@ -0,0 +1,41 @@ +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: '' +GMNotes: '' +GUID: '226716' +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Model +Nickname: Turn token +Snap: true +Sticky: true +Tooltip: false +Transform: + posX: -16.6401024 + posY: 1.35923147 + posZ: -70.2906 + rotX: 0.0208165254 + rotY: 269.999939 + rotZ: 0.01676829 + scaleX: 0.45 + scaleY: 0.6 + scaleZ: 0.45 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Core 2585f4/Custom_Model Turn token 307044.yaml b/unpacked/Custom_Model_Bag Core 2585f4/Custom_Model Turn token 307044.yaml new file mode 100644 index 000000000..969590712 --- /dev/null +++ b/unpacked/Custom_Model_Bag Core 2585f4/Custom_Model Turn token 307044.yaml @@ -0,0 +1,41 @@ +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: '' +GMNotes: '' +GUID: '307044' +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Model +Nickname: Turn token +Snap: true +Sticky: true +Tooltip: false +Transform: + posX: -16.6401978 + posY: 1.354979 + posZ: -84.8182 + rotX: 0.0208167415 + rotY: 270.000183 + rotZ: 0.0167677179 + scaleX: 0.45 + scaleY: 0.6 + scaleZ: 0.45 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Core 2585f4/Custom_Model Turn token 3ddfeb.yaml b/unpacked/Custom_Model_Bag Core 2585f4/Custom_Model Turn token 3ddfeb.yaml new file mode 100644 index 000000000..d96b98807 --- /dev/null +++ b/unpacked/Custom_Model_Bag Core 2585f4/Custom_Model Turn token 3ddfeb.yaml @@ -0,0 +1,41 @@ +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: '' +GMNotes: '' +GUID: 3ddfeb +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Model +Nickname: Turn token +Snap: true +Sticky: true +Tooltip: false +Transform: + posX: -16.6385 + posY: 1.35535336 + posZ: -83.5415 + rotX: 0.0208165366 + rotY: 269.999725 + rotZ: 0.0167677235 + scaleX: 0.45 + scaleY: 0.6 + scaleZ: 0.45 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Core 2585f4/Custom_Model Turn token 543164.yaml b/unpacked/Custom_Model_Bag Core 2585f4/Custom_Model Turn token 543164.yaml new file mode 100644 index 000000000..63bd5b999 --- /dev/null +++ b/unpacked/Custom_Model_Bag Core 2585f4/Custom_Model Turn token 543164.yaml @@ -0,0 +1,41 @@ +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: '' +GMNotes: '' +GUID: '543164' +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Model +Nickname: Turn token +Snap: true +Sticky: true +Tooltip: false +Transform: + posX: -16.6403 + posY: 1.35959148 + posZ: -69.0603 + rotX: 0.0208168365 + rotY: 269.999725 + rotZ: 0.0167678557 + scaleX: 0.45 + scaleY: 0.6 + scaleZ: 0.45 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Core 2585f4/Custom_Model Turn token 779aa6.yaml b/unpacked/Custom_Model_Bag Core 2585f4/Custom_Model Turn token 779aa6.yaml new file mode 100644 index 000000000..c42f83226 --- /dev/null +++ b/unpacked/Custom_Model_Bag Core 2585f4/Custom_Model Turn token 779aa6.yaml @@ -0,0 +1,41 @@ +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: '' +GMNotes: '' +GUID: 779aa6 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Model +Nickname: Turn token +Snap: true +Sticky: true +Tooltip: false +Transform: + posX: -16.6394 + posY: 1.354628 + posZ: -86.0186 + rotX: 0.0208163187 + rotY: 270.000122 + rotZ: 0.0167675 + scaleX: 0.45 + scaleY: 0.6 + scaleZ: 0.45 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Core 2585f4/Custom_Model_Bag starter deck & cards 011254.yaml b/unpacked/Custom_Model_Bag Core 2585f4/Custom_Model_Bag starter deck & cards 011254.yaml new file mode 100644 index 000000000..c1108d1e9 --- /dev/null +++ b/unpacked/Custom_Model_Bag Core 2585f4/Custom_Model_Bag starter deck & cards 011254.yaml @@ -0,0 +1,59 @@ +Autoraise: true +ColorDiffuse: + b: 0.02148666 + g: 0.00100758043 + r: 0.02148666 +ContainedObjects: +- !include 'Custom_Model_Bag starter deck & cards 011254/Card Heirloom of Hyberborea + 576d70.yaml' +- !include 'Custom_Model_Bag starter deck & cards 011254/Card Dark Memory 7275bc.yaml' +- !include 'Custom_Model_Bag starter deck & cards 011254/Deck 456740.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: '' +GMNotes: '' +GUID: '011254' +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +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.00021 + rotZ: 359.983215 + scaleX: 2.0 + scaleY: 2.0 + scaleZ: 2.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Core 2585f4/Custom_Model_Bag starter deck & cards 011254/Card Dark Memory 7275bc.yaml b/unpacked/Custom_Model_Bag Core 2585f4/Custom_Model_Bag starter deck & cards 011254/Card Dark Memory 7275bc.yaml new file mode 100644 index 000000000..cb6becf44 --- /dev/null +++ b/unpacked/Custom_Model_Bag Core 2585f4/Custom_Model_Bag starter deck & cards 011254/Card Dark Memory 7275bc.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 230527 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 7275bc +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Dark Memory +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 78.03934 + posY: 2.53443027 + posZ: -76.72214 + rotX: 0.00058558787 + rotY: 269.99884 + rotZ: 359.991547 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Core 2585f4/Custom_Model_Bag starter deck & cards 011254/Card Heirloom of Hyberborea 576d70.yaml b/unpacked/Custom_Model_Bag Core 2585f4/Custom_Model_Bag starter deck & cards 011254/Card Heirloom of Hyberborea 576d70.yaml new file mode 100644 index 000000000..6dfa66d0c --- /dev/null +++ b/unpacked/Custom_Model_Bag Core 2585f4/Custom_Model_Bag starter deck & cards 011254/Card Heirloom of Hyberborea 576d70.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 230626 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 576d70 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Heirloom of Hyberborea +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 77.05854 + posY: 2.53451157 + posZ: -77.37988 + rotX: 0.0007525773 + rotY: 270.021667 + rotZ: 359.9922 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Core 2585f4/Custom_Model_Bag starter deck & cards 011254/Deck 456740.yaml b/unpacked/Custom_Model_Bag Core 2585f4/Custom_Model_Bag starter deck & cards 011254/Deck 456740.yaml new file mode 100644 index 000000000..f99152709 --- /dev/null +++ b/unpacked/Custom_Model_Bag Core 2585f4/Custom_Model_Bag starter deck & cards 011254/Deck 456740.yaml @@ -0,0 +1,1447 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 368819 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: e8ea95 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Cunning Distraction + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 91.63779 + posY: 1.41786766 + posZ: -33.1066 + rotX: 359.987427 + rotY: 269.999817 + rotZ: 359.984558 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: f474b1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Stray Cat + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 90.013 + posY: 1.4165684 + posZ: -26.9670811 + rotX: 359.987427 + rotY: 270.000183 + rotZ: 359.984558 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 48e103 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Baseball Bat + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 96.03505 + posY: 1.41756475 + posZ: -35.56377 + rotX: 359.987427 + rotY: 269.999939 + rotZ: 359.984528 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 1b76c9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Scavenging + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 91.4164 + posY: 1.41889012 + posZ: -36.7172928 + rotX: 359.987427 + rotY: 269.999969 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: f34090 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Rabbit's Foot + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 88.2669449 + posY: 1.41796577 + posZ: -30.7260132 + rotX: 359.987427 + rotY: 270.000031 + rotZ: 359.984528 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: ce0dd5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Lucky! + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 88.0775 + posY: 1.419114 + posZ: -34.8284035 + rotX: 359.987427 + rotY: 270.000031 + rotZ: 359.984558 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 593deb + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Leather Coat + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 88.00904 + posY: 1.42034364 + posZ: -39.331295 + rotX: 359.987427 + rotY: 270.0003 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: fc9e1b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dig Deep + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 88.7700348 + posY: 1.42104363 + posZ: -42.546463 + rotX: 359.987427 + rotY: 269.999878 + rotZ: 359.984558 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 078efb + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Survival Instinct + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 84.7727051 + posY: 1.41936529 + posZ: -33.06864 + rotX: 359.987427 + rotY: 270.0 + rotZ: 359.984558 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 88d3c0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '"Look what I found!"' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 84.54337 + posY: 1.42076051 + posZ: -38.055336 + rotX: 359.987427 + rotY: 269.999969 + rotZ: 359.984528 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: ab8719 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Unexpected Courage + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 67.3154144 + posY: 0.531966269 + posZ: 46.3201447 + rotX: -5.686683e-06 + rotY: 270.001678 + rotZ: 359.991943 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 322e4b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Unexpected Courage + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 67.3154144 + posY: 0.678581953 + posZ: 46.3201447 + rotX: -5.65750133e-06 + rotY: 270.001648 + rotZ: 359.991943 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: cd7e4c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Perception + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 67.6026 + posY: 0.6958114 + posZ: 46.6085777 + rotX: -5.31023852e-06 + rotY: 270.001648 + rotZ: 359.991943 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: d1a147 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Perception + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 67.6026 + posY: 0.682138 + posZ: 46.6085777 + rotX: -5.31023852e-06 + rotY: 270.001648 + rotZ: 359.991943 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 08b691 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Drawn to the Flame + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -12.5956726 + posY: 0.52991 + posZ: 60.868927 + rotX: 0.0009591911 + rotY: 269.963837 + rotZ: 359.992279 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: ad2fff + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Arcane Studies + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -12.7960482 + posY: 0.6772383 + posZ: 60.8709068 + rotX: 0.0144076906 + rotY: 269.9992 + rotZ: 359.991272 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 3205cf + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ward of Protection + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -12.1120853 + posY: 0.6937964 + posZ: 61.00559 + rotX: -1.00968737e-05 + rotY: 269.963745 + rotZ: 359.991943 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: '544159' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Scrying + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -12.5555239 + posY: 0.679090559 + posZ: 60.69297 + rotX: 0.031942 + rotY: 269.9983 + rotZ: 359.883972 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: '270009' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Blinding Light + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -12.3936157 + posY: 0.6703631 + posZ: 60.51276 + rotX: 358.808655 + rotY: 269.939819 + rotZ: 1.96881485 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: e1db6c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Fearless + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -12.7965317 + posY: 0.677632451 + posZ: 60.9771576 + rotX: 0.608538 + rotY: 269.9572 + rotZ: 359.0846 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: '105884' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Arcane Initiate + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -12.3945885 + posY: 0.68572 + posZ: 61.35994 + rotX: -4.44687657e-06 + rotY: 269.999329 + rotZ: 359.991943 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 7653c0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Forbidden Knowledge + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -13.35258 + posY: 0.692026436 + posZ: 61.50476 + rotX: -4.4510457e-06 + rotY: 269.999329 + rotZ: 359.991943 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: a828e7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Shrivelling + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -12.1929283 + posY: 0.6494543 + posZ: 61.2532349 + rotX: -4.51732967e-06 + rotY: 269.999329 + rotZ: 359.991943 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 9338de + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Holy Rosary + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -12.5152607 + posY: 0.6591381 + posZ: 61.25524 + rotX: -4.940465e-06 + rotY: 269.999329 + rotZ: 359.991943 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: '789971' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Emergency Cache + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 90.54532 + posY: 0.529666841 + posZ: -27.199995 + rotX: 0.032413993 + rotY: 270.047 + rotZ: 0.008115746 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 209612 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 465a09 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Knife + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 90.2402649 + posY: 0.530131638 + posZ: -26.1468048 + rotX: 0.00624390831 + rotY: 269.989 + rotZ: 359.985229 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 209612 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: edb657 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Knife + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 90.54868 + posY: 0.6688948 + posZ: -26.5457611 + rotX: 358.972443 + rotY: 269.963318 + rotZ: 1.71914339 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 9fbdf0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Emergency Cache + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 89.808 + posY: 0.692299962 + posZ: -25.89844 + rotX: -0.00478493841 + rotY: 269.994 + rotZ: 359.9919 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 209615 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 002e8e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Flashlight + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 89.98421 + posY: 0.6791619 + posZ: -26.9712 + rotX: -0.000753245957 + rotY: 269.9747 + rotZ: 359.99173 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 209615 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 195ce3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Flashlight + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 89.9842 + posY: 0.681073666 + posZ: -26.9712 + rotX: -0.0002585446 + rotY: 269.9747 + rotZ: 359.991669 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 230626 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 4791d2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Heirloom of Hyberborea + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 61.8799744 + posY: 0.8642186 + posZ: -27.9809475 + rotX: -0.00403074874 + rotY: 270.022064 + rotZ: 359.986938 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 230527 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 144a66 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dark Memory + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 62.4311066 + posY: 0.87170136 + posZ: -28.46531 + rotX: 359.945251 + rotY: 269.9016 + rotZ: 359.9788 + 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 + 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 + UniqueBack: false + '2305': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '2306': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '3688': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 368819 +- 368824 +- 368830 +- 368822 +- 368823 +- 368810 +- 368820 +- 368831 +- 368800 +- 368816 +- 209608 +- 209608 +- 209606 +- 209606 +- 230304 +- 230324 +- 230308 +- 230319 +- 230311 +- 230303 +- 230318 +- 230316 +- 230328 +- 230323 +- 209609 +- 209612 +- 209612 +- 209609 +- 209615 +- 209615 +- 230626 +- 230527 +Description: '' +GMNotes: '' +GUID: '456740' +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 92.21803 + posY: 3.54796934 + posZ: -83.32466 + rotX: 0.0201615114 + rotY: 269.9893 + rotZ: 179.989014 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Core 2585f4/Custom_Model_Bag starter deck & cards 02abdb.yaml b/unpacked/Custom_Model_Bag Core 2585f4/Custom_Model_Bag starter deck & cards 02abdb.yaml new file mode 100644 index 000000000..d11acc792 --- /dev/null +++ b/unpacked/Custom_Model_Bag Core 2585f4/Custom_Model_Bag starter deck & cards 02abdb.yaml @@ -0,0 +1,58 @@ +Autoraise: true +ColorDiffuse: + b: 0.02148666 + g: 0.00100758043 + r: 0.02148666 +ContainedObjects: +- !include 'Custom_Model_Bag starter deck & cards 02abdb/Card On the Lam 02777c.yaml' +- !include 'Custom_Model_Bag starter deck & cards 02abdb/Card Hospital Debts 527f1c.yaml' +- !include 'Custom_Model_Bag starter deck & cards 02abdb/Deck 5dd52a.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: '' +GMNotes: '' +GUID: 02abdb +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +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.27111948 + posZ: -69.0606 + rotX: 359.979156 + rotY: 89.99982 + rotZ: 359.983215 + scaleX: 2.0 + scaleY: 2.0 + scaleZ: 2.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Core 2585f4/Custom_Model_Bag starter deck & cards 02abdb/Card Hospital Debts 527f1c.yaml b/unpacked/Custom_Model_Bag Core 2585f4/Custom_Model_Bag starter deck & cards 02abdb/Card Hospital Debts 527f1c.yaml new file mode 100644 index 000000000..ebfeddc45 --- /dev/null +++ b/unpacked/Custom_Model_Bag Core 2585f4/Custom_Model_Bag starter deck & cards 02abdb/Card Hospital Debts 527f1c.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 230625 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 527f1c +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Hospital Debts +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 77.267334 + posY: 2.53085184 + posZ: -51.8297234 + rotX: 0.006392867 + rotY: 270.0232 + rotZ: 0.00152912445 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Core 2585f4/Custom_Model_Bag starter deck & cards 02abdb/Card On the Lam 02777c.yaml b/unpacked/Custom_Model_Bag Core 2585f4/Custom_Model_Bag starter deck & cards 02abdb/Card On the Lam 02777c.yaml new file mode 100644 index 000000000..04bd61fdf --- /dev/null +++ b/unpacked/Custom_Model_Bag Core 2585f4/Custom_Model_Bag starter deck & cards 02abdb/Card On the Lam 02777c.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 230524 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 02777c +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: On the Lam +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 77.62233 + posY: 2.48305249 + posZ: -48.8072052 + rotX: 0.00256526959 + rotY: 270.022217 + rotZ: 357.249146 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Core 2585f4/Custom_Model_Bag starter deck & cards 02abdb/Deck 5dd52a.yaml b/unpacked/Custom_Model_Bag Core 2585f4/Custom_Model_Bag starter deck & cards 02abdb/Deck 5dd52a.yaml new file mode 100644 index 000000000..e5f7bcf2d --- /dev/null +++ b/unpacked/Custom_Model_Bag Core 2585f4/Custom_Model_Bag starter deck & cards 02abdb/Deck 5dd52a.yaml @@ -0,0 +1,1461 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 230625 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: a3499c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Hospital Debts + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 67.850914 + posY: 0.874835432 + posZ: -31.6836681 + rotX: 359.994263 + rotY: 270.018738 + rotZ: 179.993561 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 230524 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 8e0e7d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: On the Lam + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 67.38453 + posY: 0.867153764 + posZ: -31.5720673 + rotX: -0.003956983 + rotY: 269.999817 + rotZ: 179.9987 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: f68ada + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Guard Dog + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 20.8016472 + posY: 0.5307359 + posZ: 55.45991 + rotX: -0.0006008953 + rotY: 269.964874 + rotZ: -0.00213894062 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: b91450 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Physical Training + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 20.7395344 + posY: 0.6720821 + posZ: 55.76835 + rotX: 0.8071652 + rotY: 269.9463 + rotZ: 358.51358 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 794ad9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dynamite Blast + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 20.55654 + posY: 0.6944349 + posZ: 56.40645 + rotX: -2.04355388e-06 + rotY: 270.025421 + rotZ: 359.991943 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 24e47d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: First Aid + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 20.6473083 + posY: 0.676471949 + posZ: 55.2083626 + rotX: 0.895149946 + rotY: 269.991577 + rotZ: 1.42107213 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: cb6068 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dodge + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 20.7397823 + posY: 0.6777826 + posZ: 55.3592033 + rotX: 0.294264 + rotY: 270.030853 + rotZ: 0.497264624 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 944c68 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Machete + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 20.6481762 + posY: 0.6815231 + posZ: 55.4640961 + rotX: -0.0001696229 + rotY: 269.970673 + rotZ: 359.991821 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 9b857d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Beat Cop + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 20.7093945 + posY: 0.6865552 + posZ: 55.3605232 + rotX: -8.494798e-06 + rotY: 269.97113 + rotZ: 359.991943 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: e59da2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Vicious Blow + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 20.6176128 + posY: 0.692849338 + posZ: 55.5919266 + rotX: -7.20246453e-06 + rotY: 269.980957 + rotZ: 359.991943 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 6b4b73 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: .45 Automatic + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 20.4651146 + posY: 0.650230646 + posZ: 55.67191 + rotX: -8.20172954e-06 + rotY: 269.970581 + rotZ: 359.991943 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 908e85 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Evidence! + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 20.3612862 + posY: 0.659972668 + posZ: 55.2599564 + rotX: -1.52453629e-06 + rotY: 270.025421 + rotZ: 359.991943 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 209802 + 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/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: d0dbd4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Opportunist + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 21.3487988 + posY: 0.671923 + posZ: 55.28929 + rotX: 0.00116907631 + rotY: 269.997864 + rotZ: 359.980621 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 209916 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2099': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 60d667 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Backstab + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 20.7029686 + posY: 0.677476645 + posZ: 55.6235275 + rotX: 0.5492187 + rotY: 269.969177 + rotZ: 359.118256 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 209913 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2099': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: cf280a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Sneak Attack + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 21.2639275 + posY: 0.688903034 + posZ: 55.9204025 + rotX: -6.49585036e-06 + rotY: 269.981323 + rotZ: 359.991943 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 209912 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2099': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 355eed + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Elusive + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 20.9827118 + posY: 0.698546 + posZ: 56.0424423 + rotX: -6.94108e-06 + rotY: 269.981262 + rotZ: 359.991943 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 210023 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2100': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 1c6cf7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Hard Knocks + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 21.2356758 + posY: 0.702907 + posZ: 55.4592323 + rotX: 7.342787e-05 + rotY: 269.999939 + rotZ: 359.9919 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 210028 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2100': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 5146fe + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: .41 Derringer + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 20.3983383 + posY: 0.710628152 + posZ: 55.53158 + rotX: -9.337441e-05 + rotY: 270.000122 + rotZ: 359.991669 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 210031 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2100': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 1b24c1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Leo de Luca + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 21.179369 + posY: 0.7183789 + posZ: 55.38062 + rotX: 4.77317e-05 + rotY: 269.999969 + rotZ: 359.992279 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 210021 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2100': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: aff1b3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Switchblade + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 20.3983364 + posY: 0.726107359 + posZ: 55.1006622 + rotX: 2.61672449e-05 + rotY: 270.000122 + rotZ: -0.005279179 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 210022 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2100': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 0944f1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Burglary + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 21.6638317 + posY: 0.7337623 + posZ: 55.51075 + rotX: -0.00352724 + rotY: 270.000061 + rotZ: 359.993439 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 210025 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2100': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 42287e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Pickpocketing + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 21.6102619 + posY: 0.7415233 + posZ: 55.3386879 + rotX: -0.0015021268 + rotY: 269.999969 + rotZ: 359.9938 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 492b9c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Emergency Cache + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 57.63855 + posY: 0.7513842 + posZ: 42.8090744 + rotX: 0.0165032856 + rotY: 269.999542 + rotZ: 0.0144409081 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 8a0f84 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Emergency Cache + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 57.63855 + posY: 0.7591286 + posZ: 42.8090744 + rotX: 0.0166370422 + rotY: 269.999542 + rotZ: 0.0154235512 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 209612 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: c3a367 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Knife + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 56.99246 + posY: 0.7875029 + posZ: 42.3332062 + rotX: 0.466963083 + rotY: 269.967346 + rotZ: 359.279266 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 209612 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 3a7e1c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Knife + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 56.992424 + posY: 0.795088 + posZ: 42.3332634 + rotX: 0.501049 + rotY: 269.966583 + rotZ: 359.227936 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 209615 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: a51658 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Flashlight + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 57.22813 + posY: 0.805281341 + posZ: 42.2437325 + rotX: -0.00129589753 + rotY: 269.9746 + rotZ: 359.992462 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 209615 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: c7c168 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Flashlight + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 57.22813 + posY: 0.8130113 + posZ: 42.2437325 + rotX: -0.0013662217 + rotY: 269.9746 + rotZ: 359.9925 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 120db4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Overpower + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 57.3571434 + posY: 0.820715845 + posZ: 42.3769569 + rotX: -0.00128870865 + rotY: 270.001556 + rotZ: 359.9928 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: ef7d63 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Overpower + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 57.3571434 + posY: 0.8284452 + posZ: 42.37696 + rotX: -0.00134200708 + rotY: 270.001556 + rotZ: 359.992828 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: b02507 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Guts + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 57.7474747 + posY: 0.8362528 + posZ: 42.7791443 + rotX: 0.006429023 + rotY: 270.0015 + rotZ: 359.99292 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 3ec6a2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Guts + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 57.7474747 + posY: 0.843988538 + posZ: 42.7791443 + rotX: 0.00659095775 + rotY: 270.001465 + rotZ: 359.9932 + 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 + UniqueBack: false + '2098': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '2099': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '2100': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + 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 + UniqueBack: false + '2305': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '2306': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 230625 +- 230524 +- 226326 +- 226323 +- 226319 +- 226324 +- 226313 +- 226327 +- 226331 +- 226302 +- 226330 +- 226309 +- 209802 +- 209916 +- 209913 +- 209912 +- 210023 +- 210028 +- 210031 +- 210021 +- 210022 +- 210025 +- 209609 +- 209609 +- 209612 +- 209612 +- 209615 +- 209615 +- 209602 +- 209602 +- 209600 +- 209600 +Description: '' +GMNotes: '' +GUID: 5dd52a +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 77.31793 + posY: 2.65278935 + posZ: -50.9242935 + rotX: -0.00080119865 + rotY: 270.006348 + rotZ: 179.991867 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Core 2585f4/Custom_Model_Bag starter deck & cards 0d6388.yaml b/unpacked/Custom_Model_Bag Core 2585f4/Custom_Model_Bag starter deck & cards 0d6388.yaml new file mode 100644 index 000000000..d3f5c884a --- /dev/null +++ b/unpacked/Custom_Model_Bag Core 2585f4/Custom_Model_Bag starter deck & cards 0d6388.yaml @@ -0,0 +1,58 @@ +Autoraise: true +ColorDiffuse: + b: 0.02148666 + g: 0.00100758043 + r: 0.02148666 +ContainedObjects: +- !include 'Custom_Model_Bag starter deck & cards 0d6388/Card Daisy''s Tote Bag 321cb7.yaml' +- !include 'Custom_Model_Bag starter deck & cards 0d6388/Card The Necronomicon 6b2550.yaml' +- !include 'Custom_Model_Bag starter deck & cards 0d6388/Deck a9c187.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: '' +GMNotes: '' +GUID: 0d6388 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +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.273408 + posZ: -61.241 + rotX: 359.979156 + rotY: 89.99988 + rotZ: 359.983215 + scaleX: 2.0 + scaleY: 2.0 + scaleZ: 2.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Core 2585f4/Custom_Model_Bag starter deck & cards 0d6388/Card Daisy's Tote Bag 321cb7.yaml b/unpacked/Custom_Model_Bag Core 2585f4/Custom_Model_Bag starter deck & cards 0d6388/Card Daisy's Tote Bag 321cb7.yaml new file mode 100644 index 000000000..50a7cc9a8 --- /dev/null +++ b/unpacked/Custom_Model_Bag Core 2585f4/Custom_Model_Bag starter deck & cards 0d6388/Card Daisy's Tote Bag 321cb7.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 230522 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 321cb7 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Daisy's Tote Bag +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 78.29718 + posY: 2.537541 + posZ: -65.42324 + rotX: -0.0009365005 + rotY: 270.021362 + rotZ: 359.991974 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Core 2585f4/Custom_Model_Bag starter deck & cards 0d6388/Card The Necronomicon 6b2550.yaml b/unpacked/Custom_Model_Bag Core 2585f4/Custom_Model_Bag starter deck & cards 0d6388/Card The Necronomicon 6b2550.yaml new file mode 100644 index 000000000..d606f0bd3 --- /dev/null +++ b/unpacked/Custom_Model_Bag Core 2585f4/Custom_Model_Bag starter deck & cards 0d6388/Card The Necronomicon 6b2550.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 230623 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 6b2550 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: The Necronomicon +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 77.99602 + posY: 2.53750062 + posZ: -65.17261 + rotX: -0.00093214534 + rotY: 270.013245 + rotZ: 359.9919 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Core 2585f4/Custom_Model_Bag starter deck & cards 0d6388/Deck a9c187.yaml b/unpacked/Custom_Model_Bag Core 2585f4/Custom_Model_Bag starter deck & cards 0d6388/Deck a9c187.yaml new file mode 100644 index 000000000..a4b634501 --- /dev/null +++ b/unpacked/Custom_Model_Bag Core 2585f4/Custom_Model_Bag starter deck & cards 0d6388/Deck a9c187.yaml @@ -0,0 +1,1447 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: '789971' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Emergency Cache + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 90.54532 + posY: 0.529666841 + posZ: -27.199995 + rotX: 0.032413993 + rotY: 270.047 + rotZ: 0.008115746 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 209612 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 465a09 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Knife + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 90.2402649 + posY: 0.530131638 + posZ: -26.1468048 + rotX: 0.00624390831 + rotY: 269.989 + rotZ: 359.985229 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 209612 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: edb657 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Knife + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 90.54868 + posY: 0.6688948 + posZ: -26.5457611 + rotX: 358.972443 + rotY: 269.963318 + rotZ: 1.71914339 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 9fbdf0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Emergency Cache + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 89.808 + posY: 0.692299962 + posZ: -25.89844 + rotX: -0.00478493841 + rotY: 269.994 + rotZ: 359.9919 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 209615 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 002e8e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Flashlight + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 89.98421 + posY: 0.6791619 + posZ: -26.9712 + rotX: -0.000753245957 + rotY: 269.9747 + rotZ: 359.99173 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 209615 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 195ce3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Flashlight + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 89.9842 + posY: 0.681073666 + posZ: -26.9712 + rotX: -0.0002585446 + rotY: 269.9747 + rotZ: 359.991669 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 0dd50f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Manual Dexterity + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 66.5152 + posY: 0.53140527 + posZ: 50.3133965 + rotX: -4.22676339e-06 + rotY: 270.001678 + rotZ: 359.991943 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 5e33fe + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Manual Dexterity + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 66.5152 + posY: 0.6780209 + posZ: 50.3133926 + rotX: -5.062611e-06 + rotY: 270.001648 + rotZ: 359.991943 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 5997b6 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Perception + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 66.6908951 + posY: 0.695276439 + posZ: 50.4162865 + rotX: -5.192678e-06 + rotY: 270.001617 + rotZ: 359.991943 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: b490cf + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Perception + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 66.6908951 + posY: 0.6816032 + posZ: 50.4162865 + rotX: -5.192678e-06 + rotY: 270.001617 + rotZ: 359.991943 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 49b31a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Fearless + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -10.56629 + posY: 0.5311609 + posZ: 51.7501259 + rotX: -0.00333830272 + rotY: 269.9704 + rotZ: 359.9909 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 2e3f82 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Drawn to the Flame + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -10.8886032 + posY: 0.6762995 + posZ: 51.7295532 + rotX: 359.969147 + rotY: 269.963379 + rotZ: 359.806122 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 45832d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Arcane Studies + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -10.9847555 + posY: 0.695043445 + posZ: 52.1292725 + rotX: -4.563187e-06 + rotY: 269.999329 + rotZ: 359.991943 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: c7805c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ward of Protection + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -10.7599878 + posY: 0.681322 + posZ: 51.37719 + rotX: 359.989838 + rotY: 269.963562 + rotZ: 359.954834 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: bf6673 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Scrying + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -10.6631832 + posY: 0.679043949 + posZ: 51.5765953 + rotX: 359.980927 + rotY: 269.999237 + rotZ: 359.912628 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 9a427b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Blinding Light + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -10.8242826 + posY: 0.681288362 + posZ: 51.64478 + rotX: 359.9874 + rotY: 269.963562 + rotZ: 359.9296 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: ff269c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Arcane Initiate + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -10.7922258 + posY: 0.687122047 + posZ: 51.3803825 + rotX: -5.04802028e-06 + rotY: 269.999329 + rotZ: 359.991943 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: e6a6ec + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Forbidden Knowledge + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -10.9206018 + posY: 0.6934212 + posZ: 51.57584 + rotX: -4.611128e-06 + rotY: 269.999329 + rotZ: 359.991943 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: fcb9c8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Shrivelling + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -10.5015707 + posY: 0.650778949 + posZ: 51.8225975 + rotX: -4.339738e-06 + rotY: 269.999329 + rotZ: 359.991943 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: a8d46e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Holy Rosary + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -10.5986567 + posY: 0.660428762 + posZ: 52.0674438 + rotX: -4.66615666e-06 + rotY: 269.999329 + rotZ: 359.991943 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 230425 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 5de768 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Medical Texts + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -9.273839 + posY: 0.5294054 + posZ: 61.8696175 + rotX: 0.0168492123 + rotY: 269.980652 + rotZ: 0.00126096851 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 230408 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: f66538 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Mind over Matter + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -9.536974 + posY: 0.669312 + posZ: 62.10143 + rotX: 0.982742548 + rotY: 269.97995 + rotZ: 358.457947 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 852e5f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Deduction + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -9.009823 + posY: 0.693689764 + posZ: 61.78232 + rotX: -0.00011675313 + rotY: 269.982361 + rotZ: 359.991943 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 230413 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: e0e18c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Working a Hunch + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -9.12977 + posY: 0.677901447 + posZ: 61.9473419 + rotX: 359.609161 + rotY: 270.015381 + rotZ: 359.348 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 230404 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 8009d5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Barricade + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -8.911863 + posY: 0.6689337 + posZ: 62.1730843 + rotX: 358.635437 + rotY: 270.041656 + rotZ: 357.934753 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 2d18f7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Hyperawareness + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -9.513028 + posY: 0.6776791 + posZ: 61.813427 + rotX: 0.5491988 + rotY: 269.996948 + rotZ: 0.7959364 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 230434 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 5bd198 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dr. Milian Christopher + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -9.321762 + posY: 0.6856786 + posZ: 61.6525879 + rotX: -6.429149e-06 + rotY: 269.9891 + rotZ: 359.991943 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 230431 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 6ae12c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Old Book of Lore + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -9.250001 + posY: 0.690495253 + posZ: 62.06254 + rotX: 0.0007459964 + rotY: 269.9726 + rotZ: 359.990784 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 230426 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: c60c7a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Research Librarian + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -8.646449 + posY: 0.6493032 + posZ: 62.32618 + rotX: -6.00434669e-06 + rotY: 269.986267 + rotZ: 359.991943 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 7bd131 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Magnifying Glass + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -9.321763 + posY: 0.6590686 + posZ: 61.7483749 + rotX: -6.83644248e-06 + rotY: 269.986267 + rotZ: 359.991943 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 230522 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 9316b5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Daisy's Tote Bag + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 76.20382 + posY: 0.8640304 + posZ: -34.05001 + rotX: -0.0044622547 + rotY: 270.021362 + rotZ: 359.991547 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 230623 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: e5a46d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Necronomicon + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 75.87754 + posY: 0.8718403 + posZ: -34.4444466 + rotX: -0.004000598 + rotY: 270.0133 + rotZ: 359.9932 + 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 + 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 + 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 + UniqueBack: false + '2305': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '2306': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 209609 +- 209612 +- 209612 +- 209609 +- 209615 +- 209615 +- 209604 +- 209604 +- 209606 +- 209606 +- 230303 +- 230304 +- 230324 +- 230308 +- 230319 +- 230311 +- 230318 +- 230316 +- 230328 +- 230323 +- 230425 +- 230408 +- 230402 +- 230413 +- 230404 +- 230424 +- 230434 +- 230431 +- 230426 +- 230421 +- 230522 +- 230623 +Description: '' +GMNotes: '' +GUID: a9c187 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 77.592804 + posY: 2.65482783 + posZ: -65.13024 + rotX: -0.0008074848 + rotY: 270.0 + rotZ: 179.991867 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Core 2585f4/Custom_Model_Bag starter deck & cards 978a0e.yaml b/unpacked/Custom_Model_Bag Core 2585f4/Custom_Model_Bag starter deck & cards 978a0e.yaml new file mode 100644 index 000000000..509cc06bd --- /dev/null +++ b/unpacked/Custom_Model_Bag Core 2585f4/Custom_Model_Bag starter deck & cards 978a0e.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 978a0e/Bag Roland Banks Replacement + Cards 445141.yaml' +- !include 'Custom_Model_Bag starter deck & cards 978a0e/Card Roland''s .38 Special + 49a91e.yaml' +- !include 'Custom_Model_Bag starter deck & cards 978a0e/Card Cover Up ca25bc.yaml' +- !include 'Custom_Model_Bag starter deck & cards 978a0e/Deck 6049d1.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: '' +GMNotes: '' +GUID: 978a0e +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +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.2756927 + posZ: -53.4368 + 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 Core 2585f4/Custom_Model_Bag starter deck & cards 978a0e/Bag Roland Banks Replacement Cards 445141.yaml b/unpacked/Custom_Model_Bag Core 2585f4/Custom_Model_Bag starter deck & cards 978a0e/Bag Roland Banks Replacement Cards 445141.yaml new file mode 100644 index 000000000..2a5ce3af3 --- /dev/null +++ b/unpacked/Custom_Model_Bag Core 2585f4/Custom_Model_Bag starter deck & cards 978a0e/Bag Roland Banks Replacement Cards 445141.yaml @@ -0,0 +1,39 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 0.0 + r: 0.1823847 +ContainedObjects: +- !include 'Bag Roland Banks Replacement Cards 445141/Card Roland Banks 1b8e88.yaml' +- !include 'Bag Roland Banks Replacement Cards 445141/Card Promo Version ff1f6e.yaml' +- !include 'Bag Roland Banks Replacement Cards 445141/Card Mysteries Remain 274daa.yaml' +- !include 'Bag Roland Banks Replacement Cards 445141/Card The Dirge of Reason fe68c6.yaml' +Description: '' +GMNotes: '' +GUID: '445141' +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +MeshIndex: -1 +Name: Bag +Nickname: Roland Banks Replacement Cards +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 91.78982 + posY: 3.16866827 + posZ: -68.47524 + rotX: 0.00605446659 + rotY: 89.9953156 + rotZ: 359.986969 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Core 2585f4/Custom_Model_Bag starter deck & cards 978a0e/Bag Roland Banks Replacement Cards 445141/Card Mysteries Remain 274daa.yaml b/unpacked/Custom_Model_Bag Core 2585f4/Custom_Model_Bag starter deck & cards 978a0e/Bag Roland Banks Replacement Cards 445141/Card Mysteries Remain 274daa.yaml new file mode 100644 index 000000000..e304e55fe --- /dev/null +++ b/unpacked/Custom_Model_Bag Core 2585f4/Custom_Model_Bag starter deck & cards 978a0e/Bag Roland Banks Replacement Cards 445141/Card Mysteries Remain 274daa.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 209846 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 274daa +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Mysteries Remain +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 83.08716 + posY: 2.47604942 + posZ: -35.26462 + rotX: 358.663055 + rotY: 269.947845 + rotZ: 8.590003 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Core 2585f4/Custom_Model_Bag starter deck & cards 978a0e/Bag Roland Banks Replacement Cards 445141/Card Promo Version ff1f6e.yaml b/unpacked/Custom_Model_Bag Core 2585f4/Custom_Model_Bag starter deck & cards 978a0e/Bag Roland Banks Replacement Cards 445141/Card Promo Version ff1f6e.yaml new file mode 100644 index 000000000..c73f7d684 --- /dev/null +++ b/unpacked/Custom_Model_Bag Core 2585f4/Custom_Model_Bag starter deck & cards 978a0e/Bag Roland Banks Replacement Cards 445141/Card Promo Version ff1f6e.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 266230 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2662': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1011562618093845464/80687C9319FA2015F3D9F7CBEB4C55FBF045B27D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1011562618093845971/A678BD374EC4DE672206B5EF7EB57DC885BC839C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: ff1f6e +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Promo Version +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 95.62787 + posY: 2.35807037 + posZ: -75.62702 + rotX: 0.016772544 + rotY: 179.999924 + rotZ: 179.979187 + scaleX: 1.1 + scaleY: 1.0 + scaleZ: 1.1 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Core 2585f4/Custom_Model_Bag starter deck & cards 978a0e/Bag Roland Banks Replacement Cards 445141/Card Roland Banks 1b8e88.yaml b/unpacked/Custom_Model_Bag Core 2585f4/Custom_Model_Bag starter deck & cards 978a0e/Bag Roland Banks Replacement Cards 445141/Card Roland Banks 1b8e88.yaml new file mode 100644 index 000000000..162055bea --- /dev/null +++ b/unpacked/Custom_Model_Bag Core 2585f4/Custom_Model_Bag starter deck & cards 978a0e/Bag Roland Banks Replacement Cards 445141/Card Roland Banks 1b8e88.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 266409 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2664': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1011562618093846975/4726098952C64103F2C211D202FFDD40D9D988BB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869050066760/0DE2BD4589CC8C2F3D26C2900A17ED7A6483062F/ + NumHeight: 3 + NumWidth: 7 + UniqueBack: true +Description: Promo version +GMNotes: '' +GUID: 1b8e88 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Roland Banks +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 93.48444 + posY: 2.20692277 + posZ: -79.10233 + rotX: 0.0208075512 + rotY: 270.0 + rotZ: 0.03349549 + scaleX: 0.6 + scaleY: 1.0 + scaleZ: 0.6 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Core 2585f4/Custom_Model_Bag starter deck & cards 978a0e/Bag Roland Banks Replacement Cards 445141/Card The Dirge of Reason fe68c6.yaml b/unpacked/Custom_Model_Bag Core 2585f4/Custom_Model_Bag starter deck & cards 978a0e/Bag Roland Banks Replacement Cards 445141/Card The Dirge of Reason fe68c6.yaml new file mode 100644 index 000000000..1e3e788c0 --- /dev/null +++ b/unpacked/Custom_Model_Bag Core 2585f4/Custom_Model_Bag starter deck & cards 978a0e/Bag Roland Banks Replacement Cards 445141/Card The Dirge of Reason fe68c6.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 209845 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: fe68c6 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: The Dirge of Reason +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 98.72936 + posY: 2.20838141 + posZ: -79.63936 + rotX: 0.0208152179 + rotY: 269.982666 + rotZ: 0.016766483 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Core 2585f4/Custom_Model_Bag starter deck & cards 978a0e/Card Cover Up ca25bc.yaml b/unpacked/Custom_Model_Bag Core 2585f4/Custom_Model_Bag starter deck & cards 978a0e/Card Cover Up ca25bc.yaml new file mode 100644 index 000000000..65f830059 --- /dev/null +++ b/unpacked/Custom_Model_Bag Core 2585f4/Custom_Model_Bag starter deck & cards 978a0e/Card Cover Up ca25bc.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 230521 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: ca25bc +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Cover Up +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 77.32552 + posY: 2.53209233 + posZ: -57.5812836 + rotX: 359.9543 + rotY: 270.018738 + rotZ: -0.00343439239 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Core 2585f4/Custom_Model_Bag starter deck & cards 978a0e/Card Roland's .38 Special 49a91e.yaml b/unpacked/Custom_Model_Bag Core 2585f4/Custom_Model_Bag starter deck & cards 978a0e/Card Roland's .38 Special 49a91e.yaml new file mode 100644 index 000000000..d21c744e6 --- /dev/null +++ b/unpacked/Custom_Model_Bag Core 2585f4/Custom_Model_Bag starter deck & cards 978a0e/Card Roland's .38 Special 49a91e.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 230620 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 49a91e +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Roland's .38 Special +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 77.3213654 + posY: 2.507934 + posZ: -57.740284 + rotX: 0.00692826649 + rotY: 270.005066 + rotZ: 358.7283 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Core 2585f4/Custom_Model_Bag starter deck & cards 978a0e/Deck 6049d1.yaml b/unpacked/Custom_Model_Bag Core 2585f4/Custom_Model_Bag starter deck & cards 978a0e/Deck 6049d1.yaml new file mode 100644 index 000000000..eeaaa851b --- /dev/null +++ b/unpacked/Custom_Model_Bag Core 2585f4/Custom_Model_Bag starter deck & cards 978a0e/Deck 6049d1.yaml @@ -0,0 +1,1447 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 209615 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 00d9ef + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Flashlight + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 62.76586 + posY: 0.6773114 + posZ: 49.90771 + rotX: 0.963119447 + rotY: 269.95 + rotZ: 358.7195 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 1d9eee + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Manual Dexterity + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 62.8271446 + posY: 0.6873639 + posZ: 49.60707 + rotX: -5.31774276e-06 + rotY: 270.001617 + rotZ: 359.991943 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 586fd2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Manual Dexterity + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 62.827137 + posY: 0.6950448 + posZ: 49.607132 + rotX: -0.00226717582 + rotY: 270.001526 + rotZ: 359.956482 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 011a5d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Guts + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 63.532402 + posY: 0.651092231 + posZ: 49.54201 + rotX: -4.99424232e-06 + rotY: 270.0016 + rotZ: 359.991943 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 5afd39 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Guts + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 63.532383 + posY: 0.660250545 + posZ: 49.54206 + rotX: 0.009925618 + rotY: 270.001343 + rotZ: 359.962555 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: d2f9b4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: .45 Automatic + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 19.9550171 + posY: 1.032866 + posZ: 37.11747 + rotX: -0.00238970621 + rotY: 269.970581 + rotZ: -4.155612e-05 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: f57d14 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Evidence! + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 19.7061481 + posY: 1.17014575 + posZ: 37.1838531 + rotX: 0.009471115 + rotY: 270.02536 + rotZ: -0.00276024337 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 997ec8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Vicious Blow + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 20.2366428 + posY: 1.18432 + posZ: 36.87267 + rotX: 0.0002962823 + rotY: 269.9809 + rotZ: 0.00225912314 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 91295f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Machete + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 20.0174217 + posY: 1.17341673 + posZ: 36.7622833 + rotX: 0.0007050649 + rotY: 269.97052 + rotZ: 0.00228873477 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 8616c8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Beat Cop + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 19.86148 + posY: 1.1716162 + posZ: 36.4124832 + rotX: -0.000545259565 + rotY: 269.971252 + rotZ: 0.0269869864 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 266af7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dodge + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 20.0487518 + posY: 1.17391527 + posZ: 37.1608 + rotX: -0.00273940829 + rotY: 270.025452 + rotZ: -0.000740730145 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 862e76 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: First Aid + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 19.5823612 + posY: 1.177901 + posZ: 37.14507 + rotX: 0.00175972364 + rotY: 269.97052 + rotZ: -0.00161317177 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 5dfb58 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dynamite Blast + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 19.8927517 + posY: 1.182931 + posZ: 36.5222 + rotX: -0.0007092971 + rotY: 270.02533 + rotZ: 0.01159628 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 3868de + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Physical Training + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 20.3939247 + posY: 1.15266085 + posZ: 36.6456947 + rotX: -9.195576e-06 + rotY: 269.970581 + rotZ: 359.991943 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 26eb32 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Guard Dog + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 20.6467171 + posY: 1.16233492 + posZ: 37.1871071 + rotX: -8.97087648e-06 + rotY: 269.970581 + rotZ: 359.991943 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: '261412' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Magnifying Glass + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 6.772834 + posY: 0.531822741 + posZ: 47.2615776 + rotX: 0.0006057966 + rotY: 270.003418 + rotZ: 359.992157 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 230426 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: cc05bb + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Research Librarian + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 6.51338 + posY: 0.6708145 + posZ: 47.3650856 + rotX: 0.0139783556 + rotY: 269.9934 + rotZ: 359.989441 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 230431 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: d7c128 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Old Book of Lore + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 6.64404058 + posY: 0.69335705 + posZ: 46.87888 + rotX: 0.002036435 + rotY: 270.018768 + rotZ: -0.002879542 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 230434 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 5db027 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dr. Milian Christopher + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 6.9830184 + posY: 0.6772134 + posZ: 47.0616875 + rotX: 359.1351 + rotY: 269.9756 + rotZ: 1.34612513 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 66aeaa + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Hyperawareness + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 7.23912764 + posY: 0.672791541 + posZ: 47.4031143 + rotX: 358.7387 + rotY: 270.012848 + rotZ: 358.299042 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 230404 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 8c746a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Barricade + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 6.2947216 + posY: 0.676229358 + posZ: 47.3148041 + rotX: 1.12154293 + rotY: 269.980225 + rotZ: 358.562927 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 230413 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: e138fe + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Working a Hunch + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 7.237883 + posY: 0.6876615 + posZ: 47.495224 + rotX: -3.875749e-06 + rotY: 270.010376 + rotZ: 359.991943 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 849e3f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Deduction + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 6.90965462 + posY: 0.693984866 + posZ: 47.53953 + rotX: -0.000116352923 + rotY: 269.982361 + rotZ: 359.991943 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 230408 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 125e8e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Mind over Matter + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 6.72817373 + posY: 0.651314437 + posZ: 47.967392 + rotX: -4.05042238e-06 + rotY: 270.010223 + rotZ: 359.991943 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 230425 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: d088f0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Medical Texts + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 6.367538 + posY: 0.6611309 + posZ: 47.02522 + rotX: -7.0340443e-06 + rotY: 269.986267 + rotZ: 359.991943 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 230521 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: f3f8b6 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Cover Up + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 81.58035 + posY: 0.850919962 + posZ: -30.9465046 + rotX: -0.003916088 + rotY: 270.021118 + rotZ: 359.9914 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 230620 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: d92486 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Roland's .38 Special + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 81.71911 + posY: 0.8653661 + posZ: -31.1549225 + rotX: 0.0212216787 + rotY: 269.992523 + rotZ: 0.338667929 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 209612 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: edb657 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Knife + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.845294 + posY: 1.81716406 + posZ: 10.3835316 + rotX: 359.952484 + rotY: 269.998962 + rotZ: 180.046814 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 209612 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 465a09 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Knife + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.844645 + posY: 1.815912 + posZ: 10.3832054 + rotX: 359.214752 + rotY: 270.001526 + rotZ: 180.1856 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 9fbdf0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Emergency Cache + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.84543085 + posY: 1.83184338 + posZ: 10.3834581 + rotX: 359.920135 + rotY: 269.9884 + rotZ: 180.019135 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: '789971' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Emergency Cache + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.845433 + posY: 1.8144238 + posZ: 10.38343 + rotX: 359.923248 + rotY: 269.974365 + rotZ: 180.031815 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 209615 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 1a7db9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Flashlight + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.84541655 + posY: 1.66441453 + posZ: 10.3833981 + rotX: 359.9199 + rotY: 270.0086 + rotZ: 180.01825 + 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 + 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 + 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 + UniqueBack: false + '2305': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '2306': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 209615 +- 209604 +- 209604 +- 209600 +- 209600 +- 226330 +- 226309 +- 226302 +- 226327 +- 226331 +- 226313 +- 226324 +- 226319 +- 226323 +- 226326 +- 230421 +- 230426 +- 230431 +- 230434 +- 230424 +- 230404 +- 230413 +- 230402 +- 230408 +- 230425 +- 230521 +- 230620 +- 209612 +- 209612 +- 209609 +- 209609 +- 209615 +Description: '' +GMNotes: '' +GUID: 6049d1 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -17.1581612 + posY: 2.498516 + posZ: -87.74074 + rotX: 0.020812057 + rotY: 269.9881 + rotZ: 180.016769 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Core 2585f4/Custom_Model_Bag starter deck & cards dc27c7.yaml b/unpacked/Custom_Model_Bag Core 2585f4/Custom_Model_Bag starter deck & cards dc27c7.yaml new file mode 100644 index 000000000..0527fbd66 --- /dev/null +++ b/unpacked/Custom_Model_Bag Core 2585f4/Custom_Model_Bag starter deck & cards dc27c7.yaml @@ -0,0 +1,59 @@ +Autoraise: true +ColorDiffuse: + b: 0.02148666 + g: 0.00100758043 + r: 0.02148666 +ContainedObjects: +- !include 'Custom_Model_Bag starter deck & cards dc27c7/Card Wendy''s Amulet a56ffe.yaml' +- !include 'Custom_Model_Bag starter deck & cards dc27c7/Card Abandoned and Alone + 79b4af.yaml' +- !include 'Custom_Model_Bag starter deck & cards dc27c7/Deck 9ea8ac.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: '' +GMNotes: '' +GUID: dc27c7 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +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.26650727 + posZ: -84.818 + rotX: 359.979156 + rotY: 90.00282 + rotZ: 359.983215 + scaleX: 2.0 + scaleY: 2.0 + scaleZ: 2.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Core 2585f4/Custom_Model_Bag starter deck & cards dc27c7/Card Abandoned and Alone 79b4af.yaml b/unpacked/Custom_Model_Bag Core 2585f4/Custom_Model_Bag starter deck & cards dc27c7/Card Abandoned and Alone 79b4af.yaml new file mode 100644 index 000000000..47033e9eb --- /dev/null +++ b/unpacked/Custom_Model_Bag Core 2585f4/Custom_Model_Bag starter deck & cards dc27c7/Card Abandoned and Alone 79b4af.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 230629 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 79b4af +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Abandoned and Alone +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 77.574234 + posY: 2.44493842 + posZ: -39.2321472 + rotX: -0.00445458665 + rotY: 270.022644 + rotZ: 359.991943 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Core 2585f4/Custom_Model_Bag starter deck & cards dc27c7/Card Wendy's Amulet a56ffe.yaml b/unpacked/Custom_Model_Bag Core 2585f4/Custom_Model_Bag starter deck & cards dc27c7/Card Wendy's Amulet a56ffe.yaml new file mode 100644 index 000000000..83854f1db --- /dev/null +++ b/unpacked/Custom_Model_Bag Core 2585f4/Custom_Model_Bag starter deck & cards dc27c7/Card Wendy's Amulet a56ffe.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 230528 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: a56ffe +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Wendy's Amulet +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 77.27444 + posY: 2.52984548 + posZ: -42.9270935 + rotX: -0.0009079095 + rotY: 269.989258 + rotZ: 359.9919 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Core 2585f4/Custom_Model_Bag starter deck & cards dc27c7/Deck 9ea8ac.yaml b/unpacked/Custom_Model_Bag Core 2585f4/Custom_Model_Bag starter deck & cards dc27c7/Deck 9ea8ac.yaml new file mode 100644 index 000000000..453be839d --- /dev/null +++ b/unpacked/Custom_Model_Bag Core 2585f4/Custom_Model_Bag starter deck & cards dc27c7/Deck 9ea8ac.yaml @@ -0,0 +1,1461 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 368625 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: da7c01 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Pickpocketing + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.3627625 + posY: 2.66723323 + posZ: -72.27231 + rotX: 0.0208230056 + rotY: 270.002655 + rotZ: 180.016815 + 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: + '3687': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: cdfd9f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Backstab + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.3627625 + posY: 2.66723323 + posZ: -72.27231 + rotX: 0.0208230056 + rotY: 270.002655 + rotZ: 180.016815 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: f34090 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Rabbit's Foot + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.3627625 + posY: 2.66723323 + posZ: -72.27231 + rotX: 0.0208230056 + rotY: 270.002655 + rotZ: 180.016815 + 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: + '3687': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: '833305' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Elusive + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.3627625 + posY: 2.66723323 + posZ: -72.27231 + rotX: 0.0208230056 + rotY: 270.002655 + rotZ: 180.016815 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 48e103 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Baseball Bat + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.3627625 + posY: 2.66723323 + posZ: -72.27231 + rotX: 0.0208230056 + rotY: 270.002655 + rotZ: 180.016815 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: a56ffe + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Wendy's Amulet + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.3627625 + posY: 2.66723323 + posZ: -72.27231 + rotX: 0.0208230056 + rotY: 270.002655 + rotZ: 180.016815 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: fc9e1b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dig Deep + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.3627625 + posY: 2.66723323 + posZ: -72.27231 + rotX: 0.0208230056 + rotY: 270.002655 + rotZ: 180.016815 + 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: + '3686': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 68744b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Hard Knocks + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.3627625 + posY: 2.66723323 + posZ: -72.27231 + rotX: 0.0208230056 + rotY: 270.002655 + rotZ: 180.016815 + 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: + '3685': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 0ab3f1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Knife + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.3627625 + posY: 2.71723318 + posZ: -72.27231 + rotX: 0.0208230074 + rotY: 270.002655 + rotZ: 180.016815 + 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: + '3685': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 510c0d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Emergency Cache + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.3627625 + posY: 2.66723323 + posZ: -72.27231 + rotX: 0.0208230056 + rotY: 270.002655 + rotZ: 180.016815 + 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: + '3686': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: fe2db3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: .41 Derringer + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.3627625 + posY: 2.66723323 + posZ: -72.27231 + rotX: 0.0208230056 + rotY: 270.002655 + rotZ: 180.016815 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 88d3c0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '"Look what I found!"' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.3627625 + posY: 2.66723323 + posZ: -72.27231 + rotX: 0.0208230056 + rotY: 270.002655 + rotZ: 180.016815 + 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: + '3687': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: b18b33 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Sneak Attack + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.3627625 + posY: 2.66723323 + posZ: -72.27231 + rotX: 0.0208230056 + rotY: 270.002655 + rotZ: 180.016815 + 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: + '3685': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 510c0d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Emergency Cache + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.3627625 + posY: 2.71723318 + posZ: -72.27231 + rotX: 0.0208230074 + rotY: 270.002655 + rotZ: 180.016815 + 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: + '3685': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: acb83a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Unexpected Courage + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.3627625 + posY: 2.66723323 + posZ: -72.27231 + rotX: 0.0208230056 + rotY: 270.002655 + rotZ: 180.016815 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: a88392 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Opportunist + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.3627625 + posY: 2.66723323 + posZ: -72.27231 + rotX: 0.0208230056 + rotY: 270.002655 + rotZ: 180.016815 + 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: + '3685': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 5ab9f4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Overpower + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.3627625 + posY: 2.71723318 + posZ: -72.27231 + rotX: 0.0208230074 + rotY: 270.002655 + rotZ: 180.016815 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 593deb + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Leather Coat + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.3627625 + posY: 2.66723323 + posZ: -72.27231 + rotX: 0.0208230056 + rotY: 270.002655 + rotZ: 180.016815 + 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: + '3686': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: bc3451 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Burglary + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.3627625 + posY: 2.66723323 + posZ: -72.27231 + rotX: 0.0208230056 + rotY: 270.002655 + rotZ: 180.016815 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: f474b1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Stray Cat + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.3627625 + posY: 2.66723323 + posZ: -72.27231 + rotX: 0.0208230056 + rotY: 270.002655 + rotZ: 180.016815 + 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: + '3685': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 0ab3f1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Knife + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.3627625 + posY: 2.66723323 + posZ: -72.27231 + rotX: 0.0208230056 + rotY: 270.002655 + rotZ: 180.016815 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 379729 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3751': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 79b4af + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Abandoned and Alone + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.3627625 + posY: 2.66723323 + posZ: -72.27231 + rotX: 0.0208230056 + rotY: 270.002655 + rotZ: 180.016815 + 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: + '3688': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: e8ea95 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Cunning Distraction + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.3627625 + posY: 2.66723323 + posZ: -72.27231 + rotX: 0.0208230056 + rotY: 270.002655 + rotZ: 180.016815 + 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: + '3685': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 5ab9f4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Overpower + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.3627625 + posY: 2.66723323 + posZ: -72.27231 + rotX: 0.0208230056 + rotY: 270.002655 + rotZ: 180.016815 + 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: + '3685': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: bb1cce + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Flashlight + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.3627625 + posY: 2.66723323 + posZ: -72.27231 + rotX: 0.0208230056 + rotY: 270.002655 + rotZ: 180.016815 + 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: + '3685': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: bb1cce + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Flashlight + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.3627625 + posY: 2.71723318 + posZ: -72.27231 + rotX: 0.0208230074 + rotY: 270.002655 + rotZ: 180.016815 + 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 + UniqueBack: false + Description: The Louisiana Lion + GMNotes: '' + GUID: eaa415 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Leo De Luca + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.3627625 + posY: 2.66723323 + posZ: -72.27231 + rotX: 0.0208230056 + rotY: 270.002655 + rotZ: 180.016815 + 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: + '3686': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: '213853' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Switchblade + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.3627625 + posY: 2.66723323 + posZ: -72.27231 + rotX: 0.0208230056 + rotY: 270.002655 + rotZ: 180.016815 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: ce0dd5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Lucky! + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.3627625 + posY: 2.66723323 + posZ: -72.27231 + rotX: 0.0208230056 + rotY: 270.002655 + rotZ: 180.016815 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 1b76c9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Scavenging + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.3627625 + posY: 2.66723323 + posZ: -72.27231 + rotX: 0.0208230056 + rotY: 270.002655 + rotZ: 180.016815 + 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: + '3685': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: acb83a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Unexpected Courage + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.3627625 + posY: 2.71723318 + posZ: -72.27231 + rotX: 0.0208230074 + rotY: 270.002655 + rotZ: 180.016815 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 078efb + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Survival Instinct + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.3627625 + posY: 2.66723323 + posZ: -72.27231 + rotX: 0.0208230056 + rotY: 270.002655 + rotZ: 180.016815 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2617': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '3685': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '3686': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '3687': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '3688': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '3689': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '3797': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 368625 +- 368716 +- 368823 +- 368712 +- 368830 +- 368928 +- 368831 +- 368623 +- 368512 +- 368509 +- 368628 +- 368816 +- 368713 +- 368509 +- 368508 +- 261702 +- 368502 +- 368820 +- 368622 +- 368824 +- 368512 +- 379729 +- 368819 +- 368502 +- 368515 +- 368515 +- 368631 +- 368621 +- 368810 +- 368822 +- 368508 +- 368800 +Description: '' +GMNotes: '' +GUID: 9ea8ac +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 92.21115 + posY: 3.55707955 + posZ: -53.30636 + rotX: 0.0204515364 + rotY: 270.002319 + rotZ: 180.0181 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Core 2585f4/Deck Roland Banks 171f17.yaml b/unpacked/Custom_Model_Bag Core 2585f4/Deck Roland Banks 171f17.yaml new file mode 100644 index 000000000..fd7950b6d --- /dev/null +++ b/unpacked/Custom_Model_Bag Core 2585f4/Deck Roland Banks 171f17.yaml @@ -0,0 +1,129 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 273830 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2738': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1011562618093845464/80687C9319FA2015F3D9F7CBEB4C55FBF045B27D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1011562618093845971/A678BD374EC4DE672206B5EF7EB57DC885BC839C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: The Fed + GMNotes: '' + GUID: ff1f6e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Roland Banks (promo version) + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 96.2148361 + posY: 1.37712407 + posZ: -68.05095 + rotX: 0.01735092 + rotY: 180.017242 + rotZ: 359.9756 + scaleX: 1.1 + scaleY: 1.0 + scaleZ: 1.1 + XmlUI: '' +- Autoraise: true + CardID: 273800 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2738': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1011562618093845464/80687C9319FA2015F3D9F7CBEB4C55FBF045B27D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1011562618093845971/A678BD374EC4DE672206B5EF7EB57DC885BC839C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: The Fed + GMNotes: '' + GUID: 9e9e98 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Roland Banks + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 96.21574 + posY: 1.52666187 + posZ: -68.0500259 + rotX: 0.008493502 + rotY: 180.017212 + rotZ: 359.974884 + scaleX: 1.1 + scaleY: 1.0 + scaleZ: 1.1 + XmlUI: '' +CustomDeck: + '2738': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1011562618093845464/80687C9319FA2015F3D9F7CBEB4C55FBF045B27D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1011562618093845971/A678BD374EC4DE672206B5EF7EB57DC885BC839C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 273830 +- 273800 +Description: '' +GMNotes: '' +GUID: 171f17 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Roland Banks +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -22.6139 + posY: 1.38058448 + posZ: -53.4381 + rotX: 0.0167781953 + rotY: 180.017212 + rotZ: 359.9792 + scaleX: 1.1 + scaleY: 1.0 + scaleZ: 1.1 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Core 2585f4/Deck Roland Banks 5e04b0.yaml b/unpacked/Custom_Model_Bag Core 2585f4/Deck Roland Banks 5e04b0.yaml new file mode 100644 index 000000000..93703a504 --- /dev/null +++ b/unpacked/Custom_Model_Bag Core 2585f4/Deck Roland Banks 5e04b0.yaml @@ -0,0 +1,136 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 273209 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2664': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1011562618093846975/4726098952C64103F2C211D202FFDD40D9D988BB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869050066760/0DE2BD4589CC8C2F3D26C2900A17ED7A6483062F/ + NumHeight: 3 + NumWidth: 7 + UniqueBack: true + Description: Promo version + GMNotes: '' + GUID: 1b8e88 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Roland Banks + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 99.47015 + posY: 1.37835479 + posZ: -68.0412 + rotX: 0.0195772387 + rotY: 269.9978 + rotZ: 0.0161726158 + scaleX: 0.6 + scaleY: 1.0 + scaleZ: 0.6 + XmlUI: '' +- Autoraise: true + CardID: 258600 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2586': + BackIsHidden: true + BackURL: https://i.imgur.com/vB84qMp.jpg + FaceURL: https://i.imgur.com/WPYBga4.jpg + NumHeight: 3 + NumWidth: 7 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 9ad56e + Grid: false + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Roland Banks + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 99.47018 + posY: 1.52240014 + posZ: -68.0412 + rotX: 0.007926782 + rotY: 269.9994 + rotZ: 0.009381155 + scaleX: 0.6 + scaleY: 1.0 + scaleZ: 0.6 + XmlUI: '' +CustomDeck: + '2586': + BackIsHidden: true + BackURL: https://i.imgur.com/vB84qMp.jpg + FaceURL: https://i.imgur.com/WPYBga4.jpg + NumHeight: 3 + NumWidth: 7 + UniqueBack: true + '2732': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1011562618093846975/4726098952C64103F2C211D202FFDD40D9D988BB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869050066760/0DE2BD4589CC8C2F3D26C2900A17ED7A6483062F/ + NumHeight: 3 + NumWidth: 7 + UniqueBack: true +DeckIDs: +- 273209 +- 258600 +Description: '' +GMNotes: '' +GUID: 5e04b0 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Roland Banks +SidewaysCard: false +Snap: false +Sticky: true +Tooltip: true +Transform: + posX: -19.3 + posY: 1.38178873 + posZ: -53.4358 + rotX: 0.02081281 + rotY: 269.99292 + rotZ: 0.01676723 + scaleX: 0.6 + scaleY: 1.0 + scaleZ: 0.6 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Core 5579e4.ttslua b/unpacked/Custom_Model_Bag Core 5579e4.ttslua new file mode 100644 index 000000000..5ff76a978 --- /dev/null +++ b/unpacked/Custom_Model_Bag Core 5579e4.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,5,6}, rotation={0,0,0}, height=500, width=1200, + font_size=350, 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={1.5,5,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.2,5,6}, rotation={0,0,0}, height=500, width=1200, + font_size=350, color={0,0,0}, font_color={1,1,1} + }) + self.createButton({ + label="Reset", click_function="buttonClick_reset", function_owner=self, + position={-4,5,6}, rotation={0,0,0}, height=500, width=1000, + font_size=350, 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={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={-6,1,0}, rotation={0,90,0}, height=500, width=1200, +-- font_size=350, 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 \ No newline at end of file diff --git a/unpacked/Custom_Model_Bag Core 5579e4.yaml b/unpacked/Custom_Model_Bag Core 5579e4.yaml new file mode 100644 index 000000000..c3311889a --- /dev/null +++ b/unpacked/Custom_Model_Bag Core 5579e4.yaml @@ -0,0 +1,57 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +ContainedObjects: +- !include 'Custom_Model_Bag Core 5579e4/Custom_Model_Bag 3 The Devourer Below 2130f0.yaml' +- !include 'Custom_Model_Bag Core 5579e4/Custom_Model_Bag 1 The Gathering 667111.yaml' +- !include 'Custom_Model_Bag Core 5579e4/Custom_Model_Bag 2 The Midnight Masks c38c96.yaml' +- !include 'Custom_Model_Bag Core 5579e4/Custom_Tile Night of the Zealot Campaign + Log e0c3e7.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/762723517667628371/18438B0A0045038A7099648AA3346DFCAA267C66/ + MaterialIndex: 3 + MeshURL: https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/core_h_MSH.obj + NormalURL: '' + TypeIndex: 6 +Description: '' +GMNotes: '' +GUID: 5579e4 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Model_Bag Core 5579e4.ttslua' +LuaScriptState: '{"ml":{"2130f0":{"lock":false,"pos":{"x":12.11,"y":1.4624,"z":-7.5798},"rot":{"x":359.9201,"y":270.0006,"z":0.0169}},"667111":{"lock":false,"pos":{"x":12.1101,"y":1.4668,"z":7.2458},"rot":{"x":359.9201,"y":269.9997,"z":0.0169}},"c38c96":{"lock":false,"pos":{"x":12.11,"y":1.4646,"z":-0.0592},"rot":{"x":359.9201,"y":270.0097,"z":0.0169}},"e0c3e7":{"lock":false,"pos":{"x":-1.4655,"y":1.4756,"z":-26.9304},"rot":{"x":359.9201,"y":269.9995,"z":0.0169}}}}' +MaterialIndex: -1 +MeshIndex: -1 +Name: Custom_Model_Bag +Nickname: Core +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 51.7484322 + posY: 1.41776764 + posZ: 28.5304127 + rotX: 359.920135 + rotY: 269.987976 + rotZ: 0.01688937 + scaleX: 1.0 + scaleY: 0.139652729 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Core 5579e4/Custom_Model_Bag 1 The Gathering 667111.ttslua b/unpacked/Custom_Model_Bag Core 5579e4/Custom_Model_Bag 1 The Gathering 667111.ttslua new file mode 100644 index 000000000..46067f58e --- /dev/null +++ b/unpacked/Custom_Model_Bag Core 5579e4/Custom_Model_Bag 1 The Gathering 667111.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.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.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 Core 5579e4/Custom_Model_Bag 1 The Gathering 667111.yaml b/unpacked/Custom_Model_Bag Core 5579e4/Custom_Model_Bag 1 The Gathering 667111.yaml new file mode 100644 index 000000000..8ca918cb8 --- /dev/null +++ b/unpacked/Custom_Model_Bag Core 5579e4/Custom_Model_Bag 1 The Gathering 667111.yaml @@ -0,0 +1,74 @@ +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 1 The Gathering 667111/Card Scenario 254c1f.yaml' +- !include 'Custom_Model_Bag 1 The Gathering 667111/Card Study 377b20.yaml' +- !include 'Custom_Model_Bag 1 The Gathering 667111/Custom_Model_Bag Set-aside 7a167a.yaml' +- !include 'Custom_Model_Bag 1 The Gathering 667111/Custom_Tile Core Difficulty 92d5f1.yaml' +- !include 'Custom_Model_Bag 1 The Gathering 667111/Deck Agenda Deck 9af3a1.yaml' +- !include 'Custom_Model_Bag 1 The Gathering 667111/Deck Act Deck b053dc.yaml' +- !include 'Custom_Model_Bag 1 The Gathering 667111/Deck Encounter Deck f98bcc.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/829135118401831969/B2DD7BD25E0965ED4983C5435687D6479033ED15/ + MaterialIndex: 3 + MeshURL: https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj + NormalURL: '' + TypeIndex: 6 +Description: Night of the Zealot +GMNotes: '' +GUID: '667111' +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Model_Bag 1 The Gathering 667111.ttslua' +LuaScriptState: '{"ml":{"254c1f":{"lock":false,"pos":{"x":-3.9558,"y":1.6556,"z":-10.4412},"rot":{"x":359.9197,"y":269.9999,"z":0.0168}},"377b20":{"lock":false,"pos":{"x":-30.2243,"y":1.6954,"z":-0.03},"rot":{"x":359.9201,"y":269.9998,"z":0.0169}},"3b18af":{"lock":false,"pos":{"x":-3.6736,"y":1.6627,"z":14.7634},"rot":{"x":359.9197,"y":269.9998,"z":0.0168}},"7a167a":{"lock":false,"pos":{"x":1.6961,"y":1.5583,"z":14.2788},"rot":{"x":359.9551,"y":224.998,"z":0.0687}},"92d5f1":{"lock":false,"pos":{"x":-3.6998,"y":1.5822,"z":-15.1453},"rot":{"x":359.9197,"y":270.0052,"z":0.0168}},"9af3a1":{"lock":false,"pos":{"x":-2.7246,"y":1.6566,"z":0.3733},"rot":{"x":0.0168,"y":179.9997,"z":0.0803}},"b053dc":{"lock":false,"pos":{"x":-2.6884,"y":1.655,"z":-5.0485},"rot":{"x":0.0168,"y":180.009,"z":0.0803}},"f98bcc":{"lock":false,"pos":{"x":-3.9274,"y":1.7504,"z":5.7572},"rot":{"x":359.9197,"y":270.0001,"z":180.0168}}}}' +MaterialIndex: -1 +MeshIndex: -1 +Name: Custom_Model_Bag +Nickname: '1: The Gathering' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 12.1101027 + posY: 1.46676028 + posZ: 7.2458 + rotX: 359.920135 + rotY: 269.999146 + rotZ: 0.0168755725 + scaleX: 2.21 + scaleY: 0.46 + scaleZ: 2.42 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Core 5579e4/Custom_Model_Bag 1 The Gathering 667111/Card Scenario 254c1f.yaml b/unpacked/Custom_Model_Bag Core 5579e4/Custom_Model_Bag 1 The Gathering 667111/Card Scenario 254c1f.yaml new file mode 100644 index 000000000..150782788 --- /dev/null +++ b/unpacked/Custom_Model_Bag Core 5579e4/Custom_Model_Bag 1 The Gathering 667111/Card Scenario 254c1f.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 232100 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2321': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775106514377428854/F01972D15C2B4CFCB8CA72006B7E00D243683AFA/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377429266/856DF4A8D87D7B6CB71572D20908D35F4182AC45/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: The Gathering +GMNotes: '' +GUID: 254c1f +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Scenario +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.95580053 + posY: 1.65564787 + posZ: -10.4412012 + rotX: 359.919739 + rotY: 269.999939 + rotZ: 0.0168411769 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Core 5579e4/Custom_Model_Bag 1 The Gathering 667111/Card Study 377b20.yaml b/unpacked/Custom_Model_Bag Core 5579e4/Custom_Model_Bag 1 The Gathering 667111/Card Study 377b20.yaml new file mode 100644 index 000000000..4444f3ca6 --- /dev/null +++ b/unpacked/Custom_Model_Bag Core 5579e4/Custom_Model_Bag 1 The Gathering 667111/Card Study 377b20.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 232300 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2323': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775106514377430450/FDA37585F019D453CF383D975CF1AB631ECF64B7/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377431393/4752E394498B81694A370AA6BB05BC5A4E55FD30/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 377b20 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Study +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -30.2243 + posY: 1.69535089 + posZ: -0.0300004557 + rotX: 359.9201 + rotY: 269.9998 + rotZ: 0.01687667 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Core 5579e4/Custom_Model_Bag 1 The Gathering 667111/Custom_Model_Bag Set-aside 7a167a.yaml b/unpacked/Custom_Model_Bag Core 5579e4/Custom_Model_Bag 1 The Gathering 667111/Custom_Model_Bag Set-aside 7a167a.yaml new file mode 100644 index 000000000..ee2880552 --- /dev/null +++ b/unpacked/Custom_Model_Bag Core 5579e4/Custom_Model_Bag 1 The Gathering 667111/Custom_Model_Bag Set-aside 7a167a.yaml @@ -0,0 +1,61 @@ +Autoraise: true +ColorDiffuse: + b: 0.02148666 + g: 0.00100758043 + r: 0.02148666 +ContainedObjects: +- !include 'Custom_Model_Bag Set-aside 7a167a/Card Lita Chantler af188b.yaml' +- !include 'Custom_Model_Bag Set-aside 7a167a/Card Parlor 377b20.yaml' +- !include 'Custom_Model_Bag Set-aside 7a167a/Card Cellar b3ccaf.yaml' +- !include 'Custom_Model_Bag Set-aside 7a167a/Card Attic cfcb21.yaml' +- !include 'Custom_Model_Bag Set-aside 7a167a/Card Hallway ce8846.yaml' +- !include 'Custom_Model_Bag Set-aside 7a167a/Card Ghoul Priest ab3719.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: '' +GMNotes: '' +GUID: 7a167a +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +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.69610226 + posY: 1.55831718 + posZ: 14.2788086 + rotX: 359.955139 + rotY: 224.998032 + rotZ: 0.06867207 + scaleX: 2.0 + scaleY: 2.0 + scaleZ: 2.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Core 5579e4/Custom_Model_Bag 1 The Gathering 667111/Custom_Model_Bag Set-aside 7a167a/Card Attic cfcb21.yaml b/unpacked/Custom_Model_Bag Core 5579e4/Custom_Model_Bag 1 The Gathering 667111/Custom_Model_Bag Set-aside 7a167a/Card Attic cfcb21.yaml new file mode 100644 index 000000000..3ca87da32 --- /dev/null +++ b/unpacked/Custom_Model_Bag Core 5579e4/Custom_Model_Bag 1 The Gathering 667111/Custom_Model_Bag Set-aside 7a167a/Card Attic cfcb21.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 232302 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2323': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775106514377430450/FDA37585F019D453CF383D975CF1AB631ECF64B7/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377431393/4752E394498B81694A370AA6BB05BC5A4E55FD30/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: cfcb21 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Attic +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 8.782613 + posY: 3.604049 + posZ: 25.8726349 + rotX: 359.920532 + rotY: 269.9895 + rotZ: 0.015914144 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Core 5579e4/Custom_Model_Bag 1 The Gathering 667111/Custom_Model_Bag Set-aside 7a167a/Card Cellar b3ccaf.yaml b/unpacked/Custom_Model_Bag Core 5579e4/Custom_Model_Bag 1 The Gathering 667111/Custom_Model_Bag Set-aside 7a167a/Card Cellar b3ccaf.yaml new file mode 100644 index 000000000..5dfabe6ea --- /dev/null +++ b/unpacked/Custom_Model_Bag Core 5579e4/Custom_Model_Bag 1 The Gathering 667111/Custom_Model_Bag Set-aside 7a167a/Card Cellar b3ccaf.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 232303 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2323': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775106514377430450/FDA37585F019D453CF383D975CF1AB631ECF64B7/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377431393/4752E394498B81694A370AA6BB05BC5A4E55FD30/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: b3ccaf +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Cellar +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 8.237133 + posY: 3.60498834 + posZ: 26.80406 + rotX: 359.921143 + rotY: 269.9954 + rotZ: 0.017286025 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Core 5579e4/Custom_Model_Bag 1 The Gathering 667111/Custom_Model_Bag Set-aside 7a167a/Card Ghoul Priest ab3719.yaml b/unpacked/Custom_Model_Bag Core 5579e4/Custom_Model_Bag 1 The Gathering 667111/Custom_Model_Bag Set-aside 7a167a/Card Ghoul Priest ab3719.yaml new file mode 100644 index 000000000..78ef1df48 --- /dev/null +++ b/unpacked/Custom_Model_Bag Core 5579e4/Custom_Model_Bag 1 The Gathering 667111/Custom_Model_Bag Set-aside 7a167a/Card Ghoul Priest ab3719.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 231700 +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 + UniqueBack: false +Description: Humanoid. Monster. Ghoul. Elite. +GMNotes: '' +GUID: ab3719 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Ghoul Priest +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 9.988318 + posY: 3.00806522 + posZ: -10.9028177 + rotX: 359.920135 + rotY: 269.9923 + rotZ: 0.0168774128 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Core 5579e4/Custom_Model_Bag 1 The Gathering 667111/Custom_Model_Bag Set-aside 7a167a/Card Hallway ce8846.yaml b/unpacked/Custom_Model_Bag Core 5579e4/Custom_Model_Bag 1 The Gathering 667111/Custom_Model_Bag Set-aside 7a167a/Card Hallway ce8846.yaml new file mode 100644 index 000000000..a40644395 --- /dev/null +++ b/unpacked/Custom_Model_Bag Core 5579e4/Custom_Model_Bag 1 The Gathering 667111/Custom_Model_Bag Set-aside 7a167a/Card Hallway ce8846.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 232301 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2323': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775106514377430450/FDA37585F019D453CF383D975CF1AB631ECF64B7/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377431393/4752E394498B81694A370AA6BB05BC5A4E55FD30/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: ce8846 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Hallway +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 7.8635745 + posY: 3.60535216 + posZ: 26.6121864 + rotX: 359.919525 + rotY: 269.999756 + rotZ: 0.0169626568 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Core 5579e4/Custom_Model_Bag 1 The Gathering 667111/Custom_Model_Bag Set-aside 7a167a/Card Lita Chantler af188b.yaml b/unpacked/Custom_Model_Bag Core 5579e4/Custom_Model_Bag 1 The Gathering 667111/Custom_Model_Bag Set-aside 7a167a/Card Lita Chantler af188b.yaml new file mode 100644 index 000000000..cfcac7e1d --- /dev/null +++ b/unpacked/Custom_Model_Bag Core 5579e4/Custom_Model_Bag 1 The Gathering 667111/Custom_Model_Bag Set-aside 7a167a/Card Lita Chantler af188b.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 231850 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: The Zealot +GMNotes: '' +GUID: af188b +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Lita Chantler +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 7.45915365 + posY: 3.60572672 + posZ: 26.2033443 + rotX: 359.93222 + rotY: 269.992767 + rotZ: 0.0270068236 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Core 5579e4/Custom_Model_Bag 1 The Gathering 667111/Custom_Model_Bag Set-aside 7a167a/Card Parlor 377b20.yaml b/unpacked/Custom_Model_Bag Core 5579e4/Custom_Model_Bag 1 The Gathering 667111/Custom_Model_Bag Set-aside 7a167a/Card Parlor 377b20.yaml new file mode 100644 index 000000000..882300a79 --- /dev/null +++ b/unpacked/Custom_Model_Bag Core 5579e4/Custom_Model_Bag 1 The Gathering 667111/Custom_Model_Bag Set-aside 7a167a/Card Parlor 377b20.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 232304 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2323': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775106514377430450/FDA37585F019D453CF383D975CF1AB631ECF64B7/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377431393/4752E394498B81694A370AA6BB05BC5A4E55FD30/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 377b20 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Parlor +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 8.794919 + posY: 3.60436845 + posZ: 26.1716137 + rotX: 359.9196 + rotY: 270.001678 + rotZ: 0.01614667 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Core 5579e4/Custom_Model_Bag 1 The Gathering 667111/Custom_Tile Core Difficulty 92d5f1.ttslua b/unpacked/Custom_Model_Bag Core 5579e4/Custom_Model_Bag 1 The Gathering 667111/Custom_Tile Core Difficulty 92d5f1.ttslua new file mode 100644 index 000000000..c7ea585c8 --- /dev/null +++ b/unpacked/Custom_Model_Bag Core 5579e4/Custom_Model_Bag 1 The Gathering 667111/Custom_Tile Core Difficulty 92d5f1.ttslua @@ -0,0 +1,21 @@ +name = 'Core Set' + +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 Core 5579e4/Custom_Model_Bag 1 The Gathering 667111/Custom_Tile Core Difficulty 92d5f1.yaml b/unpacked/Custom_Model_Bag Core 5579e4/Custom_Model_Bag 1 The Gathering 667111/Custom_Tile Core Difficulty 92d5f1.yaml new file mode 100644 index 000000000..b9645b102 --- /dev/null +++ b/unpacked/Custom_Model_Bag Core 5579e4/Custom_Model_Bag 1 The Gathering 667111/Custom_Tile Core Difficulty 92d5f1.yaml @@ -0,0 +1,42 @@ +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 +GMNotes: '' +GUID: 92d5f1 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Tile Core Difficulty 92d5f1.ttslua' +LuaScriptState: '' +Name: Custom_Tile +Nickname: Core Difficulty +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.69980025 + posY: 1.58219349 + posZ: -15.1453037 + rotX: 359.919739 + rotY: 270.0052 + rotZ: 0.0168306548 + scaleX: 2.2 + scaleY: 1.0 + scaleZ: 2.2 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Core 5579e4/Custom_Model_Bag 1 The Gathering 667111/Deck Act Deck b053dc.yaml b/unpacked/Custom_Model_Bag Core 5579e4/Custom_Model_Bag 1 The Gathering 667111/Deck Act Deck b053dc.yaml new file mode 100644 index 000000000..6c1a0ce5d --- /dev/null +++ b/unpacked/Custom_Model_Bag Core 5579e4/Custom_Model_Bag 1 The Gathering 667111/Deck Act Deck b053dc.yaml @@ -0,0 +1,172 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 232406 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2324': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775106514377428854/F01972D15C2B4CFCB8CA72006B7E00D243683AFA/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377429266/856DF4A8D87D7B6CB71572D20908D35F4182AC45/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 3 + GMNotes: '' + GUID: '633954' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: What Have You Done? + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.0536842 + posY: 1.54011273 + posZ: 31.34863 + rotX: 0.0105464933 + rotY: 180.030472 + rotZ: 0.0720803 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232405 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2324': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775106514377428854/F01972D15C2B4CFCB8CA72006B7E00D243683AFA/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377429266/856DF4A8D87D7B6CB71572D20908D35F4182AC45/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 2 + GMNotes: '' + GUID: 3ea05e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Barrier + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.2235432 + posY: 1.68532252 + posZ: 31.0495453 + rotX: -0.00531547936 + rotY: 180.0322 + rotZ: 0.0185572281 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232404 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2324': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775106514377428854/F01972D15C2B4CFCB8CA72006B7E00D243683AFA/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377429266/856DF4A8D87D7B6CB71572D20908D35F4182AC45/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 1 + GMNotes: '' + GUID: '633954' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Trapped + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.1514759 + posY: 1.70262027 + posZ: 30.8178387 + rotX: 0.0154065806 + rotY: 180.000214 + rotZ: 0.0460124239 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2324': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775106514377428854/F01972D15C2B4CFCB8CA72006B7E00D243683AFA/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377429266/856DF4A8D87D7B6CB71572D20908D35F4182AC45/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 232406 +- 232405 +- 232404 +Description: '' +GMNotes: '' +GUID: b053dc +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Act Deck +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.68839979 + posY: 1.65499711 + posZ: -5.04850054 + rotX: 0.0168225169 + rotY: 180.008942 + rotZ: 0.08026021 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Core 5579e4/Custom_Model_Bag 1 The Gathering 667111/Deck Agenda Deck 9af3a1.yaml b/unpacked/Custom_Model_Bag Core 5579e4/Custom_Model_Bag 1 The Gathering 667111/Deck Agenda Deck 9af3a1.yaml new file mode 100644 index 000000000..985412e0c --- /dev/null +++ b/unpacked/Custom_Model_Bag Core 5579e4/Custom_Model_Bag 1 The Gathering 667111/Deck Agenda Deck 9af3a1.yaml @@ -0,0 +1,172 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 232403 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2324': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775106514377428854/F01972D15C2B4CFCB8CA72006B7E00D243683AFA/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377429266/856DF4A8D87D7B6CB71572D20908D35F4182AC45/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 3 + GMNotes: '' + GUID: 3c8849 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: They're Getting Out! + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 10.750123 + posY: 1.69330168 + posZ: 34.5822639 + rotX: 358.0147 + rotY: 180.207428 + rotZ: 355.322632 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232402 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2324': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775106514377428854/F01972D15C2B4CFCB8CA72006B7E00D243683AFA/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377429266/856DF4A8D87D7B6CB71572D20908D35F4182AC45/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 2 + GMNotes: '' + GUID: c593b7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Rise of the Ghouls + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 10.6825838 + posY: 1.893647 + posZ: 34.7332954 + rotX: 359.8063 + rotY: 180.017151 + rotZ: 355.3215 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232401 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2324': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775106514377428854/F01972D15C2B4CFCB8CA72006B7E00D243683AFA/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377429266/856DF4A8D87D7B6CB71572D20908D35F4182AC45/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 1 + GMNotes: '' + GUID: '633954' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: What's Going On?! + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 10.5238991 + posY: 1.72700119 + posZ: 34.16916 + rotX: 0.0166657362 + rotY: 179.994751 + rotZ: 0.07937047 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2324': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775106514377428854/F01972D15C2B4CFCB8CA72006B7E00D243683AFA/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377429266/856DF4A8D87D7B6CB71572D20908D35F4182AC45/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 232403 +- 232402 +- 232401 +Description: '' +GMNotes: '' +GUID: 9af3a1 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Agenda Deck +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.7246 + posY: 1.656641 + posZ: 0.373300463 + rotX: 0.0168354958 + rotY: 179.99968 + rotZ: 0.0802575648 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Core 5579e4/Custom_Model_Bag 1 The Gathering 667111/Deck Encounter Deck f98bcc.yaml b/unpacked/Custom_Model_Bag Core 5579e4/Custom_Model_Bag 1 The Gathering 667111/Deck Encounter Deck f98bcc.yaml new file mode 100644 index 000000000..c0a099e56 --- /dev/null +++ b/unpacked/Custom_Model_Bag Core 5579e4/Custom_Model_Bag 1 The Gathering 667111/Deck Encounter Deck f98bcc.yaml @@ -0,0 +1,1161 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- 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 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: 50e716 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: c4ce76 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: ab3719 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: 16d6d6 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: 6e7cb8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: 8af879 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: 6e7cb8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: f5c831 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: 97416f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: 0f4202 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: c70601 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: ab3719 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: 435a47 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: ab3719 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 231715 + 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 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: ab3719 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Grasping Hands + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 12.0789223 + posY: 1.538257 + posZ: 6.558776 + rotX: 359.9207 + rotY: 270.0 + rotZ: 0.0130352853 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231715 + 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 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: 272ea4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Grasping Hands + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 11.5948715 + posY: 1.6933527 + posZ: 6.733804 + rotX: 359.940033 + rotY: 270.0 + rotZ: 359.9941 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231715 + 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 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: ab3719 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Grasping Hands + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 11.6057749 + posY: 1.707567 + posZ: 6.731648 + rotX: 359.9248 + rotY: 270.000153 + rotZ: 0.0111529948 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231714 + 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 + UniqueBack: false + Description: Humanoid. Monster. Ghoul. + GMNotes: '' + GUID: 99efa0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ravenous Ghoul + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 11.9229918 + posY: 1.70898592 + posZ: 13.9219513 + rotX: 359.952728 + rotY: 269.999939 + rotZ: 179.966141 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231713 + 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 + UniqueBack: false + Description: Humanoid. Monster. Ghoul. + GMNotes: '' + GUID: b87089 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ghoul Minion + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 12.0413847 + posY: 1.540466 + posZ: 13.7902546 + rotX: 359.920441 + rotY: 270.000244 + rotZ: 0.0148255695 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231713 + 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 + UniqueBack: false + Description: Humanoid. Monster. Ghoul. + GMNotes: '' + GUID: 30bb55 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ghoul Minion + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 11.6936331 + posY: 1.696078 + posZ: 13.6986961 + rotX: 359.923462 + rotY: 270.000183 + rotZ: 0.006271487 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231713 + 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 + UniqueBack: false + Description: Humanoid. Monster. Ghoul. + GMNotes: '' + GUID: b87089 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ghoul Minion + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 11.6935387 + posY: 1.70997131 + posZ: 13.6987247 + rotX: 359.923828 + rotY: 270.0 + rotZ: 0.0162566788 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231712 + 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 + UniqueBack: false + Description: Creature. + GMNotes: '' + GUID: ab3719 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Swarm of Rats + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 15.456192 + posY: 1.53138053 + posZ: -0.8908986 + rotX: 359.92038 + rotY: 270.0 + rotZ: 0.0147123663 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231712 + 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 + UniqueBack: false + Description: Creature. + GMNotes: '' + GUID: a2cf85 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Swarm of Rats + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 15.4186563 + posY: 1.68472993 + posZ: -0.738109052 + rotX: 359.913422 + rotY: 270.000122 + rotZ: 0.0100070881 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231712 + 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 + UniqueBack: false + Description: Creature. + GMNotes: '' + GUID: ab3719 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Swarm of Rats + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 15.4186554 + posY: 1.69875109 + posZ: -0.738129 + rotX: 359.918427 + rotY: 270.0001 + rotZ: 0.0155182732 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231702 + 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 + UniqueBack: false + Description: Humanoid. Monster. Ghoul. + GMNotes: '' + GUID: ab3719 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Icy Ghoul + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 12.6636543 + posY: 1.54657423 + posZ: 37.5398254 + rotX: 359.920532 + rotY: 269.9993 + rotZ: 0.0137309171 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231701 + 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 + UniqueBack: false + Description: Humanoid. Monster. Ghoul. + GMNotes: '' + GUID: cab587 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Flesh-Eater + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 13.0099249 + posY: 1.69600558 + posZ: 37.5811234 + rotX: 359.925934 + rotY: 269.999084 + rotZ: 0.0123997116 + 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 + UniqueBack: false +DeckIDs: +- 231721 +- 231721 +- 231720 +- 231720 +- 231719 +- 231719 +- 231719 +- 231718 +- 231718 +- 231717 +- 231717 +- 231716 +- 231716 +- 231716 +- 231715 +- 231715 +- 231715 +- 231714 +- 231713 +- 231713 +- 231713 +- 231712 +- 231712 +- 231712 +- 231702 +- 231701 +Description: '' +GMNotes: '' +GUID: f98bcc +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Encounter Deck +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.9274 + posY: 1.75039172 + posZ: 5.75720024 + 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 Core 5579e4/Custom_Model_Bag 2 The Midnight Masks c38c96.ttslua b/unpacked/Custom_Model_Bag Core 5579e4/Custom_Model_Bag 2 The Midnight Masks c38c96.ttslua new file mode 100644 index 000000000..46067f58e --- /dev/null +++ b/unpacked/Custom_Model_Bag Core 5579e4/Custom_Model_Bag 2 The Midnight Masks c38c96.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.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.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 Core 5579e4/Custom_Model_Bag 2 The Midnight Masks c38c96.yaml b/unpacked/Custom_Model_Bag Core 5579e4/Custom_Model_Bag 2 The Midnight Masks c38c96.yaml new file mode 100644 index 000000000..d8f7f9106 --- /dev/null +++ b/unpacked/Custom_Model_Bag Core 5579e4/Custom_Model_Bag 2 The Midnight Masks c38c96.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 2 The Midnight Masks c38c96/Card Southside 076b61.yaml' +- !include 'Custom_Model_Bag 2 The Midnight Masks c38c96/Card Southside 19e7d8.yaml' +- !include 'Custom_Model_Bag 2 The Midnight Masks c38c96/Card Downtown 1aa7cb.yaml' +- !include 'Custom_Model_Bag 2 The Midnight Masks c38c96/Card Miskatonic University + 23b896.yaml' +- !include 'Custom_Model_Bag 2 The Midnight Masks c38c96/Deck Encounter Deck 28e161.yaml' +- !include 'Custom_Model_Bag 2 The Midnight Masks c38c96/Card Your House 377b20.yaml' +- !include 'Custom_Model_Bag 2 The Midnight Masks c38c96/Custom_Tile 50a9d7.yaml' +- !include 'Custom_Model_Bag 2 The Midnight Masks c38c96/Custom_Tile 5f4d79.yaml' +- !include 'Custom_Model_Bag 2 The Midnight Masks c38c96/Card Easttown 692e5f.yaml' +- !include 'Custom_Model_Bag 2 The Midnight Masks c38c96/Custom_Tile 6a2978.yaml' +- !include 'Custom_Model_Bag 2 The Midnight Masks c38c96/Custom_Tile 7234af.yaml' +- !include 'Custom_Model_Bag 2 The Midnight Masks c38c96/Custom_Tile 75ffdc.yaml' +- !include 'Custom_Model_Bag 2 The Midnight Masks c38c96/Custom_Tile 775f4f.yaml' +- !include 'Custom_Model_Bag 2 The Midnight Masks c38c96/Custom_Tile Core Set 8112ff.yaml' +- !include 'Custom_Model_Bag 2 The Midnight Masks c38c96/Custom_Tile 83358c.yaml' +- !include 'Custom_Model_Bag 2 The Midnight Masks c38c96/Card Scenario a22908.yaml' +- !include 'Custom_Model_Bag 2 The Midnight Masks c38c96/Card Rivertown af8db2.yaml' +- !include 'Custom_Model_Bag 2 The Midnight Masks c38c96/Card Downtown b5b8db.yaml' +- !include 'Custom_Model_Bag 2 The Midnight Masks c38c96/Deck Agenda Deck c6f13f.yaml' +- !include 'Custom_Model_Bag 2 The Midnight Masks c38c96/Card Northside d2ad6e.yaml' +- !include 'Custom_Model_Bag 2 The Midnight Masks c38c96/Custom_Tile d716a1.yaml' +- !include 'Custom_Model_Bag 2 The Midnight Masks c38c96/Custom_Tile d85d68.yaml' +- !include 'Custom_Model_Bag 2 The Midnight Masks c38c96/Custom_Tile d9c370.yaml' +- !include 'Custom_Model_Bag 2 The Midnight Masks c38c96/Card Graveyard e1b8fc.yaml' +- !include 'Custom_Model_Bag 2 The Midnight Masks c38c96/Custom_Tile e1f778.yaml' +- !include 'Custom_Model_Bag 2 The Midnight Masks c38c96/Custom_Model_Bag Set-aside + e4821e.yaml' +- !include 'Custom_Model_Bag 2 The Midnight Masks c38c96/Card Uncovering the Conspiracy + f859a4.yaml' +- !include 'Custom_Model_Bag 2 The Midnight Masks c38c96/Card St. Mary''s Hospital + fac63b.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/829135118401832703/EEE4C42DE08AEC1CFABF66A0458F5050E8F23449/ + MaterialIndex: 3 + MeshURL: https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj + NormalURL: '' + TypeIndex: 6 +Description: Night of the Zealot +GMNotes: '' +GUID: c38c96 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Model_Bag 2 The Midnight Masks c38c96.ttslua' +LuaScriptState: '{"ml":{"076b61":{"lock":false,"pos":{"x":-31.9633,"y":1.8288,"z":0.0339},"rot":{"x":4.7395,"y":270.0055,"z":0.0075}},"19e7d8":{"lock":false,"pos":{"x":-30.2242,"y":1.6954,"z":-0.03},"rot":{"x":359.9205,"y":270.0006,"z":0.0176}},"1aa7cb":{"lock":false,"pos":{"x":-17.1199,"y":1.6771,"z":-0.0298},"rot":{"x":359.9201,"y":270.0016,"z":0.0168}},"23b896":{"lock":false,"pos":{"x":-23.6766,"y":1.6885,"z":7.57},"rot":{"x":359.9201,"y":269.9991,"z":0.0169}},"28e161":{"lock":false,"pos":{"x":-3.9275,"y":1.7237,"z":5.757},"rot":{"x":359.9197,"y":269.9996,"z":180.0168}},"377b20":{"lock":false,"pos":{"x":-30.2243,"y":1.6931,"z":-7.7},"rot":{"x":359.9201,"y":269.9993,"z":0.0169}},"50a9d7":{"lock":false,"pos":{"x":-20.4665,"y":1.6122,"z":7.3646},"rot":{"x":0.0799,"y":90.0003,"z":359.9831}},"5f4d79":{"lock":false,"pos":{"x":-21.121,"y":1.61,"z":-3.2557},"rot":{"x":0.0684,"y":135.0004,"z":0.0446}},"692e5f":{"lock":false,"pos":{"x":-17.1201,"y":1.6748,"z":-7.7},"rot":{"x":359.9201,"y":269.9981,"z":0.0169}},"6a2978":{"lock":false,"pos":{"x":-23.6765,"y":1.6134,"z":-3.83},"rot":{"x":0.0169,"y":179.9998,"z":0.0799}},"7234af":{"lock":false,"pos":{"x":-17.12,"y":1.6042,"z":-3.83},"rot":{"x":0.0169,"y":179.9995,"z":0.08}},"75ffdc":{"lock":false,"pos":{"x":-26.9897,"y":1.6181,"z":-3.5596},"rot":{"x":0.0253,"y":30.0002,"z":359.9224}},"775f4f":{"lock":false,"pos":{"x":-26.9925,"y":1.6213,"z":7.2863},"rot":{"x":0.0799,"y":89.9998,"z":359.9831}},"8112ff":{"lock":false,"pos":{"x":-3.692,"y":1.5822,"z":-14.9167},"rot":{"x":359.9197,"y":270.0211,"z":0.0168}},"83358c":{"lock":false,"pos":{"x":-27.0804,"y":1.6203,"z":3.49},"rot":{"x":359.9554,"y":224.9999,"z":0.0684}},"a22908":{"lock":false,"pos":{"x":-3.9558,"y":1.6556,"z":-10.4412},"rot":{"x":359.9197,"y":270.0002,"z":0.0168}},"af8db2":{"lock":false,"pos":{"x":-23.6763,"y":1.6862,"z":-0.0278},"rot":{"x":359.9201,"y":269.9992,"z":0.0169}},"b5b8db":{"lock":false,"pos":{"x":-15.6844,"y":1.7271,"z":-0.0291},"rot":{"x":0.0879,"y":269.9867,"z":359.877}},"c6f13f":{"lock":false,"pos":{"x":-2.7246,"y":1.664,"z":0.3734},"rot":{"x":0.0168,"y":180.0051,"z":0.0803}},"d2ad6e":{"lock":false,"pos":{"x":-17.12,"y":1.6793,"z":7.57},"rot":{"x":359.9201,"y":269.9966,"z":0.0169}},"d716a1":{"lock":false,"pos":{"x":-27.2073,"y":1.6194,"z":-0.1216},"rot":{"x":0.0799,"y":89.9999,"z":359.9831}},"d85d68":{"lock":false,"pos":{"x":-23.6765,"y":1.6157,"z":3.86},"rot":{"x":0.0169,"y":179.9995,"z":0.0799}},"d9c370":{"lock":false,"pos":{"x":-30.2242,"y":1.6248,"z":3.86},"rot":{"x":0.0169,"y":179.9996,"z":0.0799}},"e1b8fc":{"lock":false,"pos":{"x":-23.6766,"y":1.684,"z":-7.7},"rot":{"x":359.9201,"y":269.9992,"z":0.0169}},"e1f778":{"lock":false,"pos":{"x":-17.1199,"y":1.6065,"z":3.86},"rot":{"x":0.0169,"y":179.9996,"z":0.0799}},"e4821e":{"lock":false,"pos":{"x":1.696,"y":1.5583,"z":14.2788},"rot":{"x":359.9551,"y":224.998,"z":0.0687}},"f859a4":{"lock":false,"pos":{"x":-2.6884,"y":1.6555,"z":-5.0485},"rot":{"x":0.0168,"y":179.9984,"z":0.0803}},"fac63b":{"lock":false,"pos":{"x":-30.2243,"y":1.6976,"z":7.57},"rot":{"x":359.9201,"y":269.9993,"z":0.0169}}}}' +MaterialIndex: -1 +MeshIndex: -1 +Name: Custom_Model_Bag +Nickname: '2: The Midnight Masks' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 12.1100006 + posY: 1.46460915 + posZ: -0.0592003576 + rotX: 359.9201 + rotY: 270.0229 + rotZ: 0.016841989 + scaleX: 2.21 + scaleY: 0.46 + scaleZ: 2.42 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Core 5579e4/Custom_Model_Bag 2 The Midnight Masks c38c96/Card Downtown 1aa7cb.yaml b/unpacked/Custom_Model_Bag Core 5579e4/Custom_Model_Bag 2 The Midnight Masks c38c96/Card Downtown 1aa7cb.yaml new file mode 100644 index 000000000..9c5623c7e --- /dev/null +++ b/unpacked/Custom_Model_Bag Core 5579e4/Custom_Model_Bag 2 The Midnight Masks c38c96/Card Downtown 1aa7cb.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 232312 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2323': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775106514377430450/FDA37585F019D453CF383D975CF1AB631ECF64B7/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377431393/4752E394498B81694A370AA6BB05BC5A4E55FD30/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Arkham. +GMNotes: '' +GUID: 1aa7cb +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Downtown +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -17.1198883 + posY: 1.677076 + posZ: -0.0297877416 + rotX: 359.9201 + rotY: 270.002533 + rotZ: 0.016751688 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Core 5579e4/Custom_Model_Bag 2 The Midnight Masks c38c96/Card Downtown b5b8db.yaml b/unpacked/Custom_Model_Bag Core 5579e4/Custom_Model_Bag 2 The Midnight Masks c38c96/Card Downtown b5b8db.yaml new file mode 100644 index 000000000..255c7ae5f --- /dev/null +++ b/unpacked/Custom_Model_Bag Core 5579e4/Custom_Model_Bag 2 The Midnight Masks c38c96/Card Downtown b5b8db.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 232311 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2323': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775106514377430450/FDA37585F019D453CF383D975CF1AB631ECF64B7/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377431393/4752E394498B81694A370AA6BB05BC5A4E55FD30/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Arkham. +GMNotes: '' +GUID: b5b8db +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Downtown +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -15.68429 + posY: 1.72714531 + posZ: -0.0290455613 + rotX: 0.08789813 + rotY: 269.9856 + rotZ: 359.877 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Core 5579e4/Custom_Model_Bag 2 The Midnight Masks c38c96/Card Easttown 692e5f.yaml b/unpacked/Custom_Model_Bag Core 5579e4/Custom_Model_Bag 2 The Midnight Masks c38c96/Card Easttown 692e5f.yaml new file mode 100644 index 000000000..2bb976c53 --- /dev/null +++ b/unpacked/Custom_Model_Bag Core 5579e4/Custom_Model_Bag 2 The Midnight Masks c38c96/Card Easttown 692e5f.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 232313 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2323': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775106514377430450/FDA37585F019D453CF383D975CF1AB631ECF64B7/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377431393/4752E394498B81694A370AA6BB05BC5A4E55FD30/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Arkham. +GMNotes: '' +GUID: 692e5f +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Easttown +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -17.1201 + posY: 1.67481935 + posZ: -7.70000029 + rotX: 359.9201 + rotY: 269.998016 + rotZ: 0.0168787614 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Core 5579e4/Custom_Model_Bag 2 The Midnight Masks c38c96/Card Graveyard e1b8fc.yaml b/unpacked/Custom_Model_Bag Core 5579e4/Custom_Model_Bag 2 The Midnight Masks c38c96/Card Graveyard e1b8fc.yaml new file mode 100644 index 000000000..a08c39f90 --- /dev/null +++ b/unpacked/Custom_Model_Bag Core 5579e4/Custom_Model_Bag 2 The Midnight Masks c38c96/Card Graveyard e1b8fc.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 232314 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2323': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775106514377430450/FDA37585F019D453CF383D975CF1AB631ECF64B7/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377431393/4752E394498B81694A370AA6BB05BC5A4E55FD30/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Arkham. +GMNotes: '' +GUID: e1b8fc +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Graveyard +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -23.6766 + posY: 1.683962 + posZ: -7.70000029 + rotX: 359.9201 + rotY: 269.9992 + rotZ: 0.016877206 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Core 5579e4/Custom_Model_Bag 2 The Midnight Masks c38c96/Card Miskatonic University 23b896.yaml b/unpacked/Custom_Model_Bag Core 5579e4/Custom_Model_Bag 2 The Midnight Masks c38c96/Card Miskatonic University 23b896.yaml new file mode 100644 index 000000000..c5de455b9 --- /dev/null +++ b/unpacked/Custom_Model_Bag Core 5579e4/Custom_Model_Bag 2 The Midnight Masks c38c96/Card Miskatonic University 23b896.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 232310 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2323': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775106514377430450/FDA37585F019D453CF383D975CF1AB631ECF64B7/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377431393/4752E394498B81694A370AA6BB05BC5A4E55FD30/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Arkham. +GMNotes: '' +GUID: 23b896 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Miskatonic University +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -23.6765976 + posY: 1.68845844 + posZ: 7.569999 + rotX: 359.9201 + rotY: 269.999084 + rotZ: 0.0168776438 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Core 5579e4/Custom_Model_Bag 2 The Midnight Masks c38c96/Card Northside d2ad6e.yaml b/unpacked/Custom_Model_Bag Core 5579e4/Custom_Model_Bag 2 The Midnight Masks c38c96/Card Northside d2ad6e.yaml new file mode 100644 index 000000000..40e5516ee --- /dev/null +++ b/unpacked/Custom_Model_Bag Core 5579e4/Custom_Model_Bag 2 The Midnight Masks c38c96/Card Northside d2ad6e.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 232315 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2323': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775106514377430450/FDA37585F019D453CF383D975CF1AB631ECF64B7/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377431393/4752E394498B81694A370AA6BB05BC5A4E55FD30/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Arkham. +GMNotes: '' +GUID: d2ad6e +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Northside +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -17.12 + posY: 1.67931557 + posZ: 7.56999969 + rotX: 359.9201 + rotY: 269.996643 + rotZ: 0.0168815553 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Core 5579e4/Custom_Model_Bag 2 The Midnight Masks c38c96/Card Rivertown af8db2.yaml b/unpacked/Custom_Model_Bag Core 5579e4/Custom_Model_Bag 2 The Midnight Masks c38c96/Card Rivertown af8db2.yaml new file mode 100644 index 000000000..f5eb253bf --- /dev/null +++ b/unpacked/Custom_Model_Bag Core 5579e4/Custom_Model_Bag 2 The Midnight Masks c38c96/Card Rivertown af8db2.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 232306 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2323': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775106514377430450/FDA37585F019D453CF383D975CF1AB631ECF64B7/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377431393/4752E394498B81694A370AA6BB05BC5A4E55FD30/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Arkham. Central. +GMNotes: '' +GUID: af8db2 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Rivertown +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -23.6763 + posY: 1.68622077 + posZ: -0.0278004259 + rotX: 359.9201 + rotY: 269.999146 + rotZ: 0.01687739 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Core 5579e4/Custom_Model_Bag 2 The Midnight Masks c38c96/Card Scenario a22908.yaml b/unpacked/Custom_Model_Bag Core 5579e4/Custom_Model_Bag 2 The Midnight Masks c38c96/Card Scenario a22908.yaml new file mode 100644 index 000000000..749accb39 --- /dev/null +++ b/unpacked/Custom_Model_Bag Core 5579e4/Custom_Model_Bag 2 The Midnight Masks c38c96/Card Scenario a22908.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 232107 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2321': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775106514377428854/F01972D15C2B4CFCB8CA72006B7E00D243683AFA/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377429266/856DF4A8D87D7B6CB71572D20908D35F4182AC45/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: The Midnight Masks +GMNotes: '' +GUID: a22908 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Scenario +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.95580029 + posY: 1.65564811 + posZ: -10.4412022 + rotX: 359.919739 + rotY: 270.000122 + rotZ: 0.0168408975 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Core 5579e4/Custom_Model_Bag 2 The Midnight Masks c38c96/Card Southside 076b61.yaml b/unpacked/Custom_Model_Bag Core 5579e4/Custom_Model_Bag 2 The Midnight Masks c38c96/Card Southside 076b61.yaml new file mode 100644 index 000000000..8938728f9 --- /dev/null +++ b/unpacked/Custom_Model_Bag Core 5579e4/Custom_Model_Bag 2 The Midnight Masks c38c96/Card Southside 076b61.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 232308 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2323': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775106514377430450/FDA37585F019D453CF383D975CF1AB631ECF64B7/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377431393/4752E394498B81694A370AA6BB05BC5A4E55FD30/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Arkham. +GMNotes: '' +GUID: 076b61 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Southside +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -31.9633026 + posY: 1.82883811 + posZ: 0.0338970572 + rotX: 4.739509 + rotY: 270.005432 + rotZ: 0.00753234653 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Core 5579e4/Custom_Model_Bag 2 The Midnight Masks c38c96/Card Southside 19e7d8.yaml b/unpacked/Custom_Model_Bag Core 5579e4/Custom_Model_Bag 2 The Midnight Masks c38c96/Card Southside 19e7d8.yaml new file mode 100644 index 000000000..8bf7b5c66 --- /dev/null +++ b/unpacked/Custom_Model_Bag Core 5579e4/Custom_Model_Bag 2 The Midnight Masks c38c96/Card Southside 19e7d8.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 232307 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2323': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775106514377430450/FDA37585F019D453CF383D975CF1AB631ECF64B7/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377431393/4752E394498B81694A370AA6BB05BC5A4E55FD30/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Arkham. +GMNotes: '' +GUID: 19e7d8 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Southside +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -30.2241955 + posY: 1.69537783 + posZ: -0.030009646 + rotX: 359.9205 + rotY: 270.000641 + rotZ: 0.0176396649 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Core 5579e4/Custom_Model_Bag 2 The Midnight Masks c38c96/Card St. Mary's Hospital fac63b.yaml b/unpacked/Custom_Model_Bag Core 5579e4/Custom_Model_Bag 2 The Midnight Masks c38c96/Card St. Mary's Hospital fac63b.yaml new file mode 100644 index 000000000..8e058b302 --- /dev/null +++ b/unpacked/Custom_Model_Bag Core 5579e4/Custom_Model_Bag 2 The Midnight Masks c38c96/Card St. Mary's Hospital fac63b.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 232309 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2323': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775106514377430450/FDA37585F019D453CF383D975CF1AB631ECF64B7/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377431393/4752E394498B81694A370AA6BB05BC5A4E55FD30/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Arkham. +GMNotes: '' +GUID: fac63b +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: St. Mary's Hospital +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -30.2243 + posY: 1.69758868 + posZ: 7.57 + rotX: 359.9201 + rotY: 269.999268 + rotZ: 0.0168774463 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Core 5579e4/Custom_Model_Bag 2 The Midnight Masks c38c96/Card Uncovering the Conspiracy f859a4.yaml b/unpacked/Custom_Model_Bag Core 5579e4/Custom_Model_Bag 2 The Midnight Masks c38c96/Card Uncovering the Conspiracy f859a4.yaml new file mode 100644 index 000000000..08c55da5d --- /dev/null +++ b/unpacked/Custom_Model_Bag Core 5579e4/Custom_Model_Bag 2 The Midnight Masks c38c96/Card Uncovering the Conspiracy f859a4.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 232410 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2324': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775106514377428854/F01972D15C2B4CFCB8CA72006B7E00D243683AFA/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377429266/856DF4A8D87D7B6CB71572D20908D35F4182AC45/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Act 1 +GMNotes: '' +GUID: f859a4 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Uncovering the Conspiracy +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.6884 + posY: 1.65545738 + posZ: -5.0485 + rotX: 0.0168374311 + rotY: 179.998352 + rotZ: 0.0802569762 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Core 5579e4/Custom_Model_Bag 2 The Midnight Masks c38c96/Card Your House 377b20.yaml b/unpacked/Custom_Model_Bag Core 5579e4/Custom_Model_Bag 2 The Midnight Masks c38c96/Card Your House 377b20.yaml new file mode 100644 index 000000000..7142efaf4 --- /dev/null +++ b/unpacked/Custom_Model_Bag Core 5579e4/Custom_Model_Bag 2 The Midnight Masks c38c96/Card Your House 377b20.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 232305 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2323': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775106514377430450/FDA37585F019D453CF383D975CF1AB631ECF64B7/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377431393/4752E394498B81694A370AA6BB05BC5A4E55FD30/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Arkham. +GMNotes: '' +GUID: 377b20 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Your House +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -30.2243 + posY: 1.69309235 + posZ: -7.70000124 + rotX: 359.9201 + rotY: 269.999268 + rotZ: 0.0168771986 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Core 5579e4/Custom_Model_Bag 2 The Midnight Masks c38c96/Custom_Model_Bag Set-aside e4821e.yaml b/unpacked/Custom_Model_Bag Core 5579e4/Custom_Model_Bag 2 The Midnight Masks c38c96/Custom_Model_Bag Set-aside e4821e.yaml new file mode 100644 index 000000000..ac172abb0 --- /dev/null +++ b/unpacked/Custom_Model_Bag Core 5579e4/Custom_Model_Bag 2 The Midnight Masks c38c96/Custom_Model_Bag Set-aside e4821e.yaml @@ -0,0 +1,57 @@ +Autoraise: true +ColorDiffuse: + b: 0.02148666 + g: 0.00100758043 + r: 0.02148666 +ContainedObjects: +- !include 'Custom_Model_Bag Set-aside e4821e/Deck Cultist Deck 69032d.yaml' +- !include 'Custom_Model_Bag Set-aside e4821e/Card Ghoul Priest ab3719.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: '' +GMNotes: '' +GUID: e4821e +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +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.69600093 + posY: 1.55831742 + posZ: 14.2788019 + rotX: 359.955139 + rotY: 224.997955 + rotZ: 0.06867256 + scaleX: 2.0 + scaleY: 2.0 + scaleZ: 2.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Core 5579e4/Custom_Model_Bag 2 The Midnight Masks c38c96/Custom_Model_Bag Set-aside e4821e/Card Ghoul Priest ab3719.yaml b/unpacked/Custom_Model_Bag Core 5579e4/Custom_Model_Bag 2 The Midnight Masks c38c96/Custom_Model_Bag Set-aside e4821e/Card Ghoul Priest ab3719.yaml new file mode 100644 index 000000000..5d8203736 --- /dev/null +++ b/unpacked/Custom_Model_Bag Core 5579e4/Custom_Model_Bag 2 The Midnight Masks c38c96/Custom_Model_Bag Set-aside e4821e/Card Ghoul Priest ab3719.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 231700 +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 + UniqueBack: false +Description: Humanoid. Monster. Ghoul. Elite. +GMNotes: '' +GUID: ab3719 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Ghoul Priest +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.5442963 + posY: 2.54775 + posZ: -17.93338 + rotX: 359.920135 + rotY: 270.002869 + rotZ: 0.016871985 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Core 5579e4/Custom_Model_Bag 2 The Midnight Masks c38c96/Custom_Model_Bag Set-aside e4821e/Deck Cultist Deck 69032d.yaml b/unpacked/Custom_Model_Bag Core 5579e4/Custom_Model_Bag 2 The Midnight Masks c38c96/Custom_Model_Bag Set-aside e4821e/Deck Cultist Deck 69032d.yaml new file mode 100644 index 000000000..cb786d733 --- /dev/null +++ b/unpacked/Custom_Model_Bag Core 5579e4/Custom_Model_Bag 2 The Midnight Masks c38c96/Custom_Model_Bag Set-aside e4821e/Deck Cultist Deck 69032d.yaml @@ -0,0 +1,258 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 231709 + 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 + UniqueBack: false + Description: The Mortician + GMNotes: '' + GUID: ab3719 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ruth Turner + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -6.18538 + posY: 1.72525084 + posZ: -7.613346 + rotX: 359.936371 + rotY: 270.0 + rotZ: 180.013824 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231708 + 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 + UniqueBack: false + Description: The Collector + GMNotes: '' + GUID: ec86a2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Victoria Devereux + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -6.151805 + posY: 1.71143651 + posZ: -8.111477 + rotX: 359.944366 + rotY: 270.016357 + rotZ: 180.000565 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231707 + 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 + UniqueBack: false + Description: The Occult Professor + GMNotes: '' + GUID: ad2df0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Peter Warren + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -6.05293274 + posY: 1.72509432 + posZ: -7.78916073 + rotX: 359.937225 + rotY: 269.999817 + rotZ: 180.015381 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231706 + 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 + UniqueBack: false + Description: The Undertaker + GMNotes: '' + GUID: a12fd2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Herman Collins + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -5.95645571 + posY: 1.70735312 + posZ: -8.194746 + rotX: 359.924164 + rotY: 269.999878 + rotZ: 180.026428 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231705 + 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 + UniqueBack: false + Description: The Cannibal + GMNotes: '' + GUID: ab3719 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '"Wolf-Man" Drew' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -6.351678 + posY: 1.56253266 + posZ: -7.93774748 + rotX: 359.92038 + rotY: 269.999969 + rotZ: 180.018967 + 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 + UniqueBack: false +DeckIDs: +- 231709 +- 231708 +- 231707 +- 231706 +- 231705 +Description: '' +GMNotes: '' +GUID: 69032d +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Cultist Deck +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.812727 + posY: 3.61132216 + posZ: 22.2482414 + rotX: 359.919983 + rotY: 270.000061 + rotZ: 180.017044 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Core 5579e4/Custom_Model_Bag 2 The Midnight Masks c38c96/Custom_Tile 50a9d7.yaml b/unpacked/Custom_Model_Bag Core 5579e4/Custom_Model_Bag 2 The Midnight Masks c38c96/Custom_Tile 50a9d7.yaml new file mode 100644 index 000000000..16294ecd4 --- /dev/null +++ b/unpacked/Custom_Model_Bag Core 5579e4/Custom_Model_Bag 2 The Midnight Masks c38c96/Custom_Tile 50a9d7.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 50a9d7 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.4665 + posY: 1.61220813 + posZ: 7.364601 + rotX: 0.07989443 + rotY: 90.00048 + rotZ: 359.9831 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Core 5579e4/Custom_Model_Bag 2 The Midnight Masks c38c96/Custom_Tile 5f4d79.yaml b/unpacked/Custom_Model_Bag Core 5579e4/Custom_Model_Bag 2 The Midnight Masks c38c96/Custom_Tile 5f4d79.yaml new file mode 100644 index 000000000..a5d9e8009 --- /dev/null +++ b/unpacked/Custom_Model_Bag Core 5579e4/Custom_Model_Bag 2 The Midnight Masks c38c96/Custom_Tile 5f4d79.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 5f4d79 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: -21.121 + posY: 1.60999346 + posZ: -3.25570059 + rotX: 0.06843083 + rotY: 135.000366 + rotZ: 0.044562608 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Core 5579e4/Custom_Model_Bag 2 The Midnight Masks c38c96/Custom_Tile 6a2978.yaml b/unpacked/Custom_Model_Bag Core 5579e4/Custom_Model_Bag 2 The Midnight Masks c38c96/Custom_Tile 6a2978.yaml new file mode 100644 index 000000000..618df1fb9 --- /dev/null +++ b/unpacked/Custom_Model_Bag Core 5579e4/Custom_Model_Bag 2 The Midnight Masks c38c96/Custom_Tile 6a2978.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 6a2978 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.6765 + posY: 1.6133877 + posZ: -3.83000016 + rotX: 0.0168721657 + rotY: 179.999741 + rotZ: 0.07993958 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Core 5579e4/Custom_Model_Bag 2 The Midnight Masks c38c96/Custom_Tile 7234af.yaml b/unpacked/Custom_Model_Bag Core 5579e4/Custom_Model_Bag 2 The Midnight Masks c38c96/Custom_Tile 7234af.yaml new file mode 100644 index 000000000..c41e35750 --- /dev/null +++ b/unpacked/Custom_Model_Bag Core 5579e4/Custom_Model_Bag 2 The Midnight Masks c38c96/Custom_Tile 7234af.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 7234af +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.1199989 + posY: 1.60424507 + posZ: -3.83 + rotX: 0.016872324 + rotY: 179.999527 + rotZ: 0.07993825 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Core 5579e4/Custom_Model_Bag 2 The Midnight Masks c38c96/Custom_Tile 75ffdc.yaml b/unpacked/Custom_Model_Bag Core 5579e4/Custom_Model_Bag 2 The Midnight Masks c38c96/Custom_Tile 75ffdc.yaml new file mode 100644 index 000000000..979c0f1c9 --- /dev/null +++ b/unpacked/Custom_Model_Bag Core 5579e4/Custom_Model_Bag 2 The Midnight Masks c38c96/Custom_Tile 75ffdc.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 75ffdc +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.9897 + posY: 1.61808777 + posZ: -3.55960035 + rotX: 0.0253393427 + rotY: 30.0002022 + rotZ: 359.922363 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Core 5579e4/Custom_Model_Bag 2 The Midnight Masks c38c96/Custom_Tile 775f4f.yaml b/unpacked/Custom_Model_Bag Core 5579e4/Custom_Model_Bag 2 The Midnight Masks c38c96/Custom_Tile 775f4f.yaml new file mode 100644 index 000000000..bb2a3d2d5 --- /dev/null +++ b/unpacked/Custom_Model_Bag Core 5579e4/Custom_Model_Bag 2 The Midnight Masks c38c96/Custom_Tile 775f4f.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 775f4f +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.9925 + posY: 1.62128508 + posZ: 7.2863 + rotX: 0.07989421 + rotY: 89.9998 + rotZ: 359.9831 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Core 5579e4/Custom_Model_Bag 2 The Midnight Masks c38c96/Custom_Tile 83358c.yaml b/unpacked/Custom_Model_Bag Core 5579e4/Custom_Model_Bag 2 The Midnight Masks c38c96/Custom_Tile 83358c.yaml new file mode 100644 index 000000000..f5bc621bf --- /dev/null +++ b/unpacked/Custom_Model_Bag Core 5579e4/Custom_Model_Bag 2 The Midnight Masks c38c96/Custom_Tile 83358c.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 83358c +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.0804 + posY: 1.62028956 + posZ: 3.49000049 + rotX: 359.955444 + rotY: 224.999939 + rotZ: 0.06840408 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Core 5579e4/Custom_Model_Bag 2 The Midnight Masks c38c96/Custom_Tile d716a1.yaml b/unpacked/Custom_Model_Bag Core 5579e4/Custom_Model_Bag 2 The Midnight Masks c38c96/Custom_Tile d716a1.yaml new file mode 100644 index 000000000..8586db621 --- /dev/null +++ b/unpacked/Custom_Model_Bag Core 5579e4/Custom_Model_Bag 2 The Midnight Masks c38c96/Custom_Tile d716a1.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: d716a1 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.2073 + posY: 1.61940324 + posZ: -0.1216003 + rotX: 0.07989442 + rotY: 89.9998856 + rotZ: 359.9831 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Core 5579e4/Custom_Model_Bag 2 The Midnight Masks c38c96/Custom_Tile d85d68.yaml b/unpacked/Custom_Model_Bag Core 5579e4/Custom_Model_Bag 2 The Midnight Masks c38c96/Custom_Tile d85d68.yaml new file mode 100644 index 000000000..ce1327828 --- /dev/null +++ b/unpacked/Custom_Model_Bag Core 5579e4/Custom_Model_Bag 2 The Midnight Masks c38c96/Custom_Tile d85d68.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: d85d68 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.61565208 + posZ: 3.86000013 + rotX: 0.0168725736 + rotY: 179.999451 + rotZ: 0.07993095 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Core 5579e4/Custom_Model_Bag 2 The Midnight Masks c38c96/Custom_Tile d9c370.yaml b/unpacked/Custom_Model_Bag Core 5579e4/Custom_Model_Bag 2 The Midnight Masks c38c96/Custom_Tile d9c370.yaml new file mode 100644 index 000000000..7e9cc4e14 --- /dev/null +++ b/unpacked/Custom_Model_Bag Core 5579e4/Custom_Model_Bag 2 The Midnight Masks c38c96/Custom_Tile d9c370.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: d9c370 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.62478256 + posZ: 3.86000085 + rotX: 0.0168723557 + rotY: 179.9996 + rotZ: 0.0799396 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Core 5579e4/Custom_Model_Bag 2 The Midnight Masks c38c96/Custom_Tile e1f778.yaml b/unpacked/Custom_Model_Bag Core 5579e4/Custom_Model_Bag 2 The Midnight Masks c38c96/Custom_Tile e1f778.yaml new file mode 100644 index 000000000..288eab98c --- /dev/null +++ b/unpacked/Custom_Model_Bag Core 5579e4/Custom_Model_Bag 2 The Midnight Masks c38c96/Custom_Tile e1f778.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: e1f778 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.1198978 + posY: 1.60650933 + posZ: 3.86000061 + rotX: 0.0168724936 + rotY: 179.999619 + rotZ: 0.0799469054 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Core 5579e4/Custom_Model_Bag 2 The Midnight Masks c38c96/Custom_Tile Core Set 8112ff.ttslua b/unpacked/Custom_Model_Bag Core 5579e4/Custom_Model_Bag 2 The Midnight Masks c38c96/Custom_Tile Core Set 8112ff.ttslua new file mode 100644 index 000000000..c7ea585c8 --- /dev/null +++ b/unpacked/Custom_Model_Bag Core 5579e4/Custom_Model_Bag 2 The Midnight Masks c38c96/Custom_Tile Core Set 8112ff.ttslua @@ -0,0 +1,21 @@ +name = 'Core Set' + +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 Core 5579e4/Custom_Model_Bag 2 The Midnight Masks c38c96/Custom_Tile Core Set 8112ff.yaml b/unpacked/Custom_Model_Bag Core 5579e4/Custom_Model_Bag 2 The Midnight Masks c38c96/Custom_Tile Core Set 8112ff.yaml new file mode 100644 index 000000000..1a6769c7e --- /dev/null +++ b/unpacked/Custom_Model_Bag Core 5579e4/Custom_Model_Bag 2 The Midnight Masks c38c96/Custom_Tile Core Set 8112ff.yaml @@ -0,0 +1,42 @@ +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 +GMNotes: '' +GUID: 8112ff +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Tile Core Set 8112ff.ttslua' +LuaScriptState: '' +Name: Custom_Tile +Nickname: Core Set +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.69200039 + posY: 1.58224976 + posZ: -14.9167032 + rotX: 359.919739 + rotY: 270.021057 + rotZ: 0.0168083422 + scaleX: 2.2 + scaleY: 1.0 + scaleZ: 2.2 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Core 5579e4/Custom_Model_Bag 2 The Midnight Masks c38c96/Deck Agenda Deck c6f13f.yaml b/unpacked/Custom_Model_Bag Core 5579e4/Custom_Model_Bag 2 The Midnight Masks c38c96/Deck Agenda Deck c6f13f.yaml new file mode 100644 index 000000000..599b90ae6 --- /dev/null +++ b/unpacked/Custom_Model_Bag Core 5579e4/Custom_Model_Bag 2 The Midnight Masks c38c96/Deck Agenda Deck c6f13f.yaml @@ -0,0 +1,136 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 232409 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2324': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775106514377428854/F01972D15C2B4CFCB8CA72006B7E00D243683AFA/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377429266/856DF4A8D87D7B6CB71572D20908D35F4182AC45/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 2 + GMNotes: '' + GUID: '633954' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Time is Running Short + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 24.6820679 + posY: 1.52606273 + posZ: 24.7961464 + rotX: 0.0174697619 + rotY: 180.0141 + rotZ: 0.0764805451 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232108 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2321': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775106514377428854/F01972D15C2B4CFCB8CA72006B7E00D243683AFA/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377429266/856DF4A8D87D7B6CB71572D20908D35F4182AC45/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 1 + GMNotes: '' + GUID: 1c19e2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Predator or Prey? + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 25.0107346 + posY: 1.67121708 + posZ: 24.5920124 + rotX: 0.0310489088 + rotY: 180.117844 + rotZ: 0.05401933 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2321': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775106514377428854/F01972D15C2B4CFCB8CA72006B7E00D243683AFA/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377429266/856DF4A8D87D7B6CB71572D20908D35F4182AC45/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + '2324': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775106514377428854/F01972D15C2B4CFCB8CA72006B7E00D243683AFA/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377429266/856DF4A8D87D7B6CB71572D20908D35F4182AC45/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 232409 +- 232108 +Description: '' +GMNotes: '' +GUID: c6f13f +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Agenda Deck +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.7246 + posY: 1.66397715 + posZ: 0.37340042 + rotX: 0.0168278273 + rotY: 180.005142 + rotZ: 0.0802594647 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Core 5579e4/Custom_Model_Bag 2 The Midnight Masks c38c96/Deck Encounter Deck 28e161.yaml b/unpacked/Custom_Model_Bag Core 5579e4/Custom_Model_Bag 2 The Midnight Masks c38c96/Deck Encounter Deck 28e161.yaml new file mode 100644 index 000000000..f65b65df5 --- /dev/null +++ b/unpacked/Custom_Model_Bag Core 5579e4/Custom_Model_Bag 2 The Midnight Masks c38c96/Deck Encounter Deck 28e161.yaml @@ -0,0 +1,946 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- 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 + UniqueBack: false + Description: Obstacle. + GMNotes: '' + GUID: ab3719 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Locked Door + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.92566371 + posY: 1.86217785 + posZ: 5.75751829 + rotX: 358.179871 + rotY: 270.01532 + rotZ: 179.5893 + 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 + UniqueBack: false + Description: Obstacle. + GMNotes: '' + GUID: 4904d0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Locked Door + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -18.06458 + posY: 1.74395728 + posZ: 8.675678 + rotX: 359.928467 + rotY: 269.9997 + rotZ: 0.006147271 + 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 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: d63054 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Mysterious Chanting + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -14.9937792 + posY: 1.57623422 + posZ: 7.191085 + rotX: 359.920227 + rotY: 270.005066 + rotZ: 0.01624975 + 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 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: b347d1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Mysterious Chanting + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -15.1765862 + posY: 1.7388649 + posZ: 7.12856245 + rotX: 359.9205 + rotY: 270.005066 + rotZ: 0.011837706 + 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 + UniqueBack: false + Description: Humanoid. Cultist. + GMNotes: '' + GUID: d36612 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Wizard of the Order + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -15.1335211 + posY: 1.7306242 + posZ: 15.1695614 + rotX: 359.933441 + rotY: 269.998932 + rotZ: 180.028931 + 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 + UniqueBack: false + Description: Humanoid. Cultist. + GMNotes: '' + GUID: 50fdc5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Acolyte + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -15.3295956 + posY: 1.62976587 + posZ: 15.9645061 + rotX: 0.0716057643 + rotY: 270.000061 + rotZ: 359.982727 + 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 + UniqueBack: false + Description: Humanoid. Cultist. + GMNotes: '' + GUID: 4911f2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Acolyte + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -15.3297215 + posY: 1.77588809 + posZ: 15.9645157 + rotX: 0.07387834 + rotY: 269.998474 + rotZ: 359.992645 + 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 + UniqueBack: false + Description: Humanoid. Cultist. + GMNotes: '' + GUID: ab3719 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Acolyte + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -15.9929094 + posY: 1.58014917 + posZ: 15.8832378 + rotX: 359.920624 + rotY: 270.0 + rotZ: 0.0137184272 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231726 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 1e04da + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: On Wings of Darkness + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -13.4282417 + posY: 1.70155811 + posZ: 13.7778349 + rotX: 359.535278 + rotY: 269.9516 + rotZ: 181.449341 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231726 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 1d0c1c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: On Wings of Darkness + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -15.7923059 + posY: 1.73901558 + posZ: 4.52112341 + rotX: 359.919861 + rotY: 269.999969 + rotZ: 0.0123590212 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231725 + 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 + UniqueBack: false + Description: Monster. Nightgaunt. + GMNotes: '' + GUID: ab3719 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Hunting Nightgaunt + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -16.52605 + posY: 1.57874775 + posZ: 8.559591 + rotX: 359.920471 + rotY: 270.0019 + rotZ: 0.0145635763 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231725 + 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 + UniqueBack: false + Description: Monster. Nightgaunt. + GMNotes: '' + GUID: b75b70 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Hunting Nightgaunt + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -13.47085 + posY: 1.72509861 + posZ: 13.60628 + rotX: 359.9252 + rotY: 269.9989 + rotZ: 0.0176846832 + 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 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: 50e716 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: c4ce76 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: ab3719 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: 16d6d6 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 231704 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 057d5f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: False Lead + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 25.12937 + posY: 1.52805436 + posZ: 33.6414566 + rotX: 359.920532 + rotY: 269.9922 + rotZ: 0.0141133359 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231704 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 2ceae2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: False Lead + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 25.1391239 + posY: 1.683543 + posZ: 33.4398346 + rotX: 359.926178 + rotY: 269.992523 + rotZ: 0.011026796 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231703 + 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 + UniqueBack: false + Description: Curse. + GMNotes: '' + GUID: ea8fcf + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Hunting Shadow + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 25.5329266 + posY: 1.694792 + posZ: 33.29811 + rotX: 359.920532 + rotY: 269.992462 + rotZ: 0.0159023385 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231703 + 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 + UniqueBack: false + Description: Curse. + GMNotes: '' + GUID: ab3719 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Hunting Shadow + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 19.12706 + posY: 1.70121276 + posZ: 36.15682 + rotX: 359.937378 + rotY: 270.0 + rotZ: 180.0152 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231703 + 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 + UniqueBack: false + Description: Curse. + GMNotes: '' + GUID: 14bfaf + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Hunting Shadow + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 18.6906662 + posY: 1.54066241 + posZ: 36.2848244 + rotX: 359.920227 + rotY: 270.000275 + rotZ: 180.017624 + 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 + UniqueBack: false +DeckIDs: +- 231727 +- 231727 +- 231724 +- 231724 +- 231723 +- 231722 +- 231722 +- 231722 +- 231726 +- 231726 +- 231725 +- 231725 +- 231721 +- 231721 +- 231720 +- 231720 +- 231704 +- 231704 +- 231703 +- 231703 +- 231703 +Description: '' +GMNotes: '' +GUID: 28e161 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Encounter Deck +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.9275 + posY: 1.72374451 + posZ: 5.757001 + 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 Core 5579e4/Custom_Model_Bag 3 The Devourer Below 2130f0.ttslua b/unpacked/Custom_Model_Bag Core 5579e4/Custom_Model_Bag 3 The Devourer Below 2130f0.ttslua new file mode 100644 index 000000000..46067f58e --- /dev/null +++ b/unpacked/Custom_Model_Bag Core 5579e4/Custom_Model_Bag 3 The Devourer Below 2130f0.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.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.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 Core 5579e4/Custom_Model_Bag 3 The Devourer Below 2130f0.yaml b/unpacked/Custom_Model_Bag Core 5579e4/Custom_Model_Bag 3 The Devourer Below 2130f0.yaml new file mode 100644 index 000000000..0541ed21f --- /dev/null +++ b/unpacked/Custom_Model_Bag Core 5579e4/Custom_Model_Bag 3 The Devourer Below 2130f0.yaml @@ -0,0 +1,79 @@ +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 3 The Devourer Below 2130f0/Deck Agenda Deck 01fdf4.yaml' +- !include 'Custom_Model_Bag 3 The Devourer Below 2130f0/Card Main Path 377b20.yaml' +- !include 'Custom_Model_Bag 3 The Devourer Below 2130f0/Custom_Tile The Devourer + Below 37feeb.yaml' +- !include 'Custom_Model_Bag 3 The Devourer Below 2130f0/Deck Arkham Woods 54354d.yaml' +- !include 'Custom_Model_Bag 3 The Devourer Below 2130f0/Custom_Model_Bag Set-aside + 835751.yaml' +- !include 'Custom_Model_Bag 3 The Devourer Below 2130f0/Deck Act Deck 91957f.yaml' +- !include 'Custom_Model_Bag 3 The Devourer Below 2130f0/Bag Agents of Ancient One + a08994.yaml' +- !include 'Custom_Model_Bag 3 The Devourer Below 2130f0/Card Scenario a22908.yaml' +- !include 'Custom_Model_Bag 3 The Devourer Below 2130f0/Deck Encounter Deck d85823.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/829135118401833419/71458A91294AB8D6130299D06BD006862A37CDC6/ + MaterialIndex: 3 + MeshURL: https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj + NormalURL: '' + TypeIndex: 6 +Description: Night of the Zealot +GMNotes: '' +GUID: 2130f0 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Model_Bag 3 The Devourer Below 2130f0.ttslua' +LuaScriptState: '{"ml":{"01fdf4":{"lock":false,"pos":{"x":-2.7246,"y":1.6566,"z":0.3733},"rot":{"x":0.0168,"y":180.0027,"z":0.0803}},"377b20":{"lock":false,"pos":{"x":-17.12,"y":1.6771,"z":-0.03},"rot":{"x":359.9201,"y":270,"z":0.0169}},"37feeb":{"lock":false,"pos":{"x":-3.8378,"y":1.5825,"z":-14.6275},"rot":{"x":359.9197,"y":270.0002,"z":0.0168}},"54354d":{"lock":false,"pos":{"x":-12.216,"y":1.6735,"z":8.0664},"rot":{"x":359.9201,"y":269.9998,"z":0.0169}},"835751":{"lock":false,"pos":{"x":1.6961,"y":1.5583,"z":14.2788},"rot":{"x":359.9551,"y":224.998,"z":0.0687}},"91957f":{"lock":false,"pos":{"x":-2.6884,"y":1.655,"z":-5.0485},"rot":{"x":0.0168,"y":180.0038,"z":0.0803}},"a08994":{"lock":false,"pos":{"x":-3.2599,"y":1.4055,"z":15.3217},"rot":{"x":359.9832,"y":0.0018,"z":359.9197}},"a22908":{"lock":false,"pos":{"x":-3.956,"y":1.6556,"z":-10.4412},"rot":{"x":359.9197,"y":270.013,"z":0.0168}},"d85823":{"lock":false,"pos":{"x":-3.9277,"y":1.7451,"z":5.7572},"rot":{"x":359.9197,"y":270.0002,"z":180.0168}}}}' +MaterialIndex: -1 +MeshIndex: -1 +Name: Custom_Model_Bag +Nickname: '3: The Devourer Below' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 12.11 + posY: 1.46239471 + posZ: -7.579802 + rotX: 359.920135 + rotY: 270.000854 + rotZ: 0.0168729518 + scaleX: 2.21 + scaleY: 0.46 + scaleZ: 2.42 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Core 5579e4/Custom_Model_Bag 3 The Devourer Below 2130f0/Bag Agents of Ancient One a08994.yaml b/unpacked/Custom_Model_Bag Core 5579e4/Custom_Model_Bag 3 The Devourer Below 2130f0/Bag Agents of Ancient One a08994.yaml new file mode 100644 index 000000000..ee449bb8a --- /dev/null +++ b/unpacked/Custom_Model_Bag Core 5579e4/Custom_Model_Bag 3 The Devourer Below 2130f0/Bag Agents of Ancient One a08994.yaml @@ -0,0 +1,39 @@ +Autoraise: true +ColorDiffuse: + b: 0.0 + g: 0.0 + r: 0.0 +ContainedObjects: +- !include 'Bag Agents of Ancient One a08994/Deck Agents of Ancient One 351d7e.yaml' +- !include 'Bag Agents of Ancient One a08994/Deck Agents of Ancient One cb8d71.yaml' +- !include 'Bag Agents of Ancient One a08994/Deck Agents of Ancient One 83c2b8.yaml' +- !include 'Bag Agents of Ancient One a08994/Deck Agents of Ancient One 849ae4.yaml' +Description: '' +GMNotes: '' +GUID: a08994 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +MeshIndex: -1 +Name: Bag +Nickname: Agents of Ancient One +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.259902 + posY: 1.40549564 + posZ: 15.3217039 + rotX: 359.983154 + rotY: 0.001868834 + rotZ: 359.919678 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Core 5579e4/Custom_Model_Bag 3 The Devourer Below 2130f0/Bag Agents of Ancient One a08994/Deck Agents of Ancient One 351d7e.yaml b/unpacked/Custom_Model_Bag Core 5579e4/Custom_Model_Bag 3 The Devourer Below 2130f0/Bag Agents of Ancient One a08994/Deck Agents of Ancient One 351d7e.yaml new file mode 100644 index 000000000..9b52ae938 --- /dev/null +++ b/unpacked/Custom_Model_Bag Core 5579e4/Custom_Model_Bag 3 The Devourer Below 2130f0/Bag Agents of Ancient One a08994/Deck Agents of Ancient One 351d7e.yaml @@ -0,0 +1,215 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 231729 + 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 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: 4cf636 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Yellow Sign + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -18.2012749 + posY: 1.58148372 + posZ: 10.016777 + rotX: 359.920746 + rotY: 269.996552 + rotZ: 0.0126871429 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231729 + 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 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: 74a845 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Yellow Sign + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -18.39433 + posY: 1.745 + posZ: 9.752235 + rotX: 359.928131 + rotY: 269.996552 + rotZ: 0.0164207779 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231728 + 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 + UniqueBack: false + Description: Monster. Byakhee. + GMNotes: '' + GUID: ab3719 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Screeching Byakhee + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -18.9733372 + posY: 1.58185852 + posZ: 7.530837 + rotX: 359.920441 + rotY: 269.999878 + rotZ: 0.0146859353 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231728 + 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 + UniqueBack: false + Description: Monster. Byakhee. + GMNotes: '' + GUID: 6fc5fa + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Screeching Byakhee + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -18.7373314 + posY: 1.73706949 + posZ: 7.34839153 + rotX: 359.923981 + rotY: 269.9999 + rotZ: 0.0115116611 + 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 + UniqueBack: false +DeckIDs: +- 231729 +- 231729 +- 231728 +- 231728 +Description: '' +GMNotes: '' +GUID: 351d7e +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Agents of Ancient One +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -8.133555 + posY: 2.58095217 + posZ: -12.283349 + rotX: 359.920135 + rotY: 270.000031 + rotZ: 180.016861 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Core 5579e4/Custom_Model_Bag 3 The Devourer Below 2130f0/Bag Agents of Ancient One a08994/Deck Agents of Ancient One 83c2b8.yaml b/unpacked/Custom_Model_Bag Core 5579e4/Custom_Model_Bag 3 The Devourer Below 2130f0/Bag Agents of Ancient One a08994/Deck Agents of Ancient One 83c2b8.yaml new file mode 100644 index 000000000..e33f20fa2 --- /dev/null +++ b/unpacked/Custom_Model_Bag Core 5579e4/Custom_Model_Bag 3 The Devourer Below 2130f0/Bag Agents of Ancient One a08994/Deck Agents of Ancient One 83c2b8.yaml @@ -0,0 +1,215 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 231733 + 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 + UniqueBack: false + Description: Humanoid. Monster. + GMNotes: '' + GUID: e4ae63 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Goat Spawn + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -21.0514832 + posY: 1.58367968 + posZ: 3.80302978 + rotX: 359.920227 + rotY: 269.995728 + rotZ: 0.0161432624 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231733 + 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 + UniqueBack: false + Description: Humanoid. Monster. + GMNotes: '' + GUID: 3f2e83 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Goat Spawn + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -21.3775539 + posY: 1.74800014 + posZ: 3.76909566 + rotX: 359.921448 + rotY: 269.9958 + rotZ: 0.01241914 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231733 + 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 + UniqueBack: false + Description: Humanoid. Monster. + GMNotes: '' + GUID: e4ae63 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Goat Spawn + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -21.3775349 + posY: 1.76184154 + posZ: 3.76909184 + rotX: 359.92215 + rotY: 269.9958 + rotZ: 0.0164589938 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231732 + 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 + UniqueBack: false + Description: Monster. Dark Young. + GMNotes: '' + GUID: ab3719 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Relentless Dark Young + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -21.1681347 + posY: 1.73308969 + posZ: 3.68174171 + rotX: 359.919647 + rotY: 269.996674 + rotZ: 0.0130278058 + 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 + UniqueBack: false +DeckIDs: +- 231733 +- 231733 +- 231733 +- 231732 +Description: '' +GMNotes: '' +GUID: 83c2b8 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Agents of Ancient One +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -6.860561 + posY: 2.57702565 + posZ: -13.2692394 + 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 Core 5579e4/Custom_Model_Bag 3 The Devourer Below 2130f0/Bag Agents of Ancient One a08994/Deck Agents of Ancient One 849ae4.yaml b/unpacked/Custom_Model_Bag Core 5579e4/Custom_Model_Bag 3 The Devourer Below 2130f0/Bag Agents of Ancient One a08994/Deck Agents of Ancient One 849ae4.yaml new file mode 100644 index 000000000..16641b3fd --- /dev/null +++ b/unpacked/Custom_Model_Bag Core 5579e4/Custom_Model_Bag 3 The Devourer Below 2130f0/Bag Agents of Ancient One a08994/Deck Agents of Ancient One 849ae4.yaml @@ -0,0 +1,215 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 231731 + 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 + UniqueBack: false + Description: Pact. + GMNotes: '' + GUID: ad01d5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Offer of Power + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -20.624012 + posY: 1.58353865 + posZ: 5.391288 + rotX: 359.92038 + rotY: 270.0011 + rotZ: 0.0152683891 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231731 + 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 + UniqueBack: false + Description: Pact. + GMNotes: '' + GUID: 1e4b6f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Offer of Power + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -21.1143684 + posY: 1.74799216 + posZ: 5.51088 + rotX: 359.927856 + rotY: 270.00116 + rotZ: 0.008664682 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231730 + 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 + UniqueBack: false + Description: Monster. Yithian. + GMNotes: '' + GUID: ab3719 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Yithian Observer + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -20.7980976 + posY: 1.58471787 + posZ: 8.655001 + rotX: 359.9206 + rotY: 270.001221 + rotZ: 0.0136531973 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231730 + 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 + UniqueBack: false + Description: Monster. Yithian. + GMNotes: '' + GUID: 4c04b5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Yithian Observer + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -21.04713 + posY: 1.74898231 + posZ: 8.319516 + rotX: 359.925964 + rotY: 270.001221 + rotZ: 0.0171930045 + 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 + UniqueBack: false +DeckIDs: +- 231731 +- 231731 +- 231730 +- 231730 +Description: '' +GMNotes: '' +GUID: 849ae4 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Agents of Ancient One +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 4.036606 + posY: 3.551612 + posZ: 10.6196184 + rotX: 357.724274 + rotY: 269.9851 + rotZ: 180.517136 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Core 5579e4/Custom_Model_Bag 3 The Devourer Below 2130f0/Bag Agents of Ancient One a08994/Deck Agents of Ancient One cb8d71.yaml b/unpacked/Custom_Model_Bag Core 5579e4/Custom_Model_Bag 3 The Devourer Below 2130f0/Bag Agents of Ancient One a08994/Deck Agents of Ancient One cb8d71.yaml new file mode 100644 index 000000000..3679c214c --- /dev/null +++ b/unpacked/Custom_Model_Bag Core 5579e4/Custom_Model_Bag 3 The Devourer Below 2130f0/Bag Agents of Ancient One a08994/Deck Agents of Ancient One cb8d71.yaml @@ -0,0 +1,215 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 231735 + 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 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: 796db7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dreams of R'lyeh + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -21.18895 + posY: 1.5854075 + posZ: 8.96069 + rotX: 359.920074 + rotY: 270.000061 + rotZ: 0.0172643047 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231735 + 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 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: 47ed9e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dreams of R'lyeh + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -21.0872536 + posY: 1.74957943 + posZ: 9.398701 + rotX: 359.9174 + rotY: 270.000061 + rotZ: 0.009243452 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231734 + 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 + UniqueBack: false + Description: Humanoid. Monster. Deep One. + GMNotes: '' + GUID: ab3719 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Young Deep One + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -21.4079018 + posY: 1.5847317 + posZ: 5.77563953 + rotX: 359.9205 + rotY: 269.997864 + rotZ: 0.0144211389 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231734 + 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 + UniqueBack: false + Description: Humanoid. Monster. Deep One. + GMNotes: '' + GUID: cfd69a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Young Deep One + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -21.3780651 + posY: 1.740191 + posZ: 5.657522 + rotX: 359.926422 + rotY: 269.997955 + rotZ: 0.009787786 + 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 + UniqueBack: false +DeckIDs: +- 231735 +- 231735 +- 231734 +- 231734 +Description: '' +GMNotes: '' +GUID: cb8d71 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Agents of Ancient One +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -11.2853947 + posY: 2.583707 + posZ: -12.9683313 + 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 Core 5579e4/Custom_Model_Bag 3 The Devourer Below 2130f0/Card Main Path 377b20.yaml b/unpacked/Custom_Model_Bag Core 5579e4/Custom_Model_Bag 3 The Devourer Below 2130f0/Card Main Path 377b20.yaml new file mode 100644 index 000000000..773ebb4dc --- /dev/null +++ b/unpacked/Custom_Model_Bag Core 5579e4/Custom_Model_Bag 3 The Devourer Below 2130f0/Card Main Path 377b20.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 232316 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2323': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775106514377430450/FDA37585F019D453CF383D975CF1AB631ECF64B7/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377431393/4752E394498B81694A370AA6BB05BC5A4E55FD30/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Woods. +GMNotes: '' +GUID: 377b20 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Main Path +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -17.12 + posY: 1.67707777 + posZ: -0.0300001018 + rotX: 359.9201 + rotY: 270.000122 + rotZ: 0.0168757215 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Core 5579e4/Custom_Model_Bag 3 The Devourer Below 2130f0/Card Scenario a22908.yaml b/unpacked/Custom_Model_Bag Core 5579e4/Custom_Model_Bag 3 The Devourer Below 2130f0/Card Scenario a22908.yaml new file mode 100644 index 000000000..7fe9beb4e --- /dev/null +++ b/unpacked/Custom_Model_Bag Core 5579e4/Custom_Model_Bag 3 The Devourer Below 2130f0/Card Scenario a22908.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 232111 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2321': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775106514377428854/F01972D15C2B4CFCB8CA72006B7E00D243683AFA/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377429266/856DF4A8D87D7B6CB71572D20908D35F4182AC45/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: The Devourer Below +GMNotes: '' +GUID: a22908 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Scenario +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.95600152 + posY: 1.65564823 + posZ: -10.4412022 + rotX: 359.919739 + rotY: 270.013 + rotZ: 0.016822977 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Core 5579e4/Custom_Model_Bag 3 The Devourer Below 2130f0/Custom_Model_Bag Set-aside 835751.yaml b/unpacked/Custom_Model_Bag Core 5579e4/Custom_Model_Bag 3 The Devourer Below 2130f0/Custom_Model_Bag Set-aside 835751.yaml new file mode 100644 index 000000000..1d6bad19b --- /dev/null +++ b/unpacked/Custom_Model_Bag Core 5579e4/Custom_Model_Bag 3 The Devourer Below 2130f0/Custom_Model_Bag Set-aside 835751.yaml @@ -0,0 +1,60 @@ +Autoraise: true +ColorDiffuse: + b: 0.02148666 + g: 0.00100758043 + r: 0.02148666 +ContainedObjects: +- !include 'Custom_Model_Bag Set-aside 835751/Deck Cultist Deck 69032d.yaml' +- !include 'Custom_Model_Bag Set-aside 835751/Card Ghoul Priest ab3719.yaml' +- !include 'Custom_Model_Bag Set-aside 835751/Custom_Tile d3d96a.yaml' +- !include "Custom_Model_Bag Set-aside 835751/Card Um\xF4rdhoth ab3719.yaml" +- !include 'Custom_Model_Bag Set-aside 835751/Card Ritual Site 372a95.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 Devourer Below +GMNotes: '' +GUID: '835751' +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +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.69610131 + posY: 1.55831707 + posZ: 14.2788038 + rotX: 359.955139 + rotY: 224.997971 + rotZ: 0.06867286 + scaleX: 2.0 + scaleY: 2.0 + scaleZ: 2.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Core 5579e4/Custom_Model_Bag 3 The Devourer Below 2130f0/Custom_Model_Bag Set-aside 835751/Card Ghoul Priest ab3719.yaml b/unpacked/Custom_Model_Bag Core 5579e4/Custom_Model_Bag 3 The Devourer Below 2130f0/Custom_Model_Bag Set-aside 835751/Card Ghoul Priest ab3719.yaml new file mode 100644 index 000000000..9d5854f46 --- /dev/null +++ b/unpacked/Custom_Model_Bag Core 5579e4/Custom_Model_Bag 3 The Devourer Below 2130f0/Custom_Model_Bag Set-aside 835751/Card Ghoul Priest ab3719.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 231700 +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 + UniqueBack: false +Description: Humanoid. Monster. Ghoul. Elite. +GMNotes: '' +GUID: ab3719 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Ghoul Priest +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 25.92075 + posY: 2.52716279 + posZ: -6.25442076 + rotX: 359.920135 + rotY: 270.000549 + rotZ: 0.0168754272 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Core 5579e4/Custom_Model_Bag 3 The Devourer Below 2130f0/Custom_Model_Bag Set-aside 835751/Card Ritual Site 372a95.yaml b/unpacked/Custom_Model_Bag Core 5579e4/Custom_Model_Bag 3 The Devourer Below 2130f0/Custom_Model_Bag Set-aside 835751/Card Ritual Site 372a95.yaml new file mode 100644 index 000000000..4d8f52aca --- /dev/null +++ b/unpacked/Custom_Model_Bag Core 5579e4/Custom_Model_Bag 3 The Devourer Below 2130f0/Custom_Model_Bag Set-aside 835751/Card Ritual Site 372a95.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 232323 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2323': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775106514377430450/FDA37585F019D453CF383D975CF1AB631ECF64B7/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377431393/4752E394498B81694A370AA6BB05BC5A4E55FD30/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Cave. +GMNotes: '' +GUID: 372a95 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Ritual Site +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 4.51596546 + posY: 2.55959082 + posZ: 1.2734561 + rotX: 359.920135 + rotY: 269.999939 + rotZ: 0.0168754812 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Core 5579e4/Custom_Model_Bag 3 The Devourer Below 2130f0/Custom_Model_Bag Set-aside 835751/Card Umôrdhoth ab3719.yaml b/unpacked/Custom_Model_Bag Core 5579e4/Custom_Model_Bag 3 The Devourer Below 2130f0/Custom_Model_Bag Set-aside 835751/Card Umôrdhoth ab3719.yaml new file mode 100644 index 000000000..1b3fc7313 --- /dev/null +++ b/unpacked/Custom_Model_Bag Core 5579e4/Custom_Model_Bag 3 The Devourer Below 2130f0/Custom_Model_Bag Set-aside 835751/Card Umôrdhoth ab3719.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 231710 +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 + UniqueBack: false +Description: The Devourer Below +GMNotes: '' +GUID: ab3719 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: "Um\xF4rdhoth" +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 5.17139053 + posY: 2.558072 + posZ: -0.131576151 + rotX: 359.920135 + rotY: 269.999939 + rotZ: 0.016877763 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Core 5579e4/Custom_Model_Bag 3 The Devourer Below 2130f0/Custom_Model_Bag Set-aside 835751/Custom_Tile d3d96a.yaml b/unpacked/Custom_Model_Bag Core 5579e4/Custom_Model_Bag 3 The Devourer Below 2130f0/Custom_Model_Bag Set-aside 835751/Custom_Tile d3d96a.yaml new file mode 100644 index 000000000..afec147f4 --- /dev/null +++ b/unpacked/Custom_Model_Bag Core 5579e4/Custom_Model_Bag 3 The Devourer Below 2130f0/Custom_Model_Bag Set-aside 835751/Custom_Tile d3d96a.yaml @@ -0,0 +1,42 @@ +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: '' +GMNotes: '' +GUID: d3d96a +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Tile +Nickname: '' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 34.3944855 + posY: 2.42904544 + posZ: -50.2571068 + rotX: 359.983246 + rotY: 270.004364 + rotZ: 0.00354169821 + scaleX: 0.81 + scaleY: 1.0 + scaleZ: 0.81 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Core 5579e4/Custom_Model_Bag 3 The Devourer Below 2130f0/Custom_Model_Bag Set-aside 835751/Deck Cultist Deck 69032d.yaml b/unpacked/Custom_Model_Bag Core 5579e4/Custom_Model_Bag 3 The Devourer Below 2130f0/Custom_Model_Bag Set-aside 835751/Deck Cultist Deck 69032d.yaml new file mode 100644 index 000000000..0540d8994 --- /dev/null +++ b/unpacked/Custom_Model_Bag Core 5579e4/Custom_Model_Bag 3 The Devourer Below 2130f0/Custom_Model_Bag Set-aside 835751/Deck Cultist Deck 69032d.yaml @@ -0,0 +1,258 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 231709 + 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 + UniqueBack: false + Description: The Mortician + GMNotes: '' + GUID: ab3719 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ruth Turner + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -6.18538 + posY: 1.72525084 + posZ: -7.613346 + rotX: 359.936371 + rotY: 270.0 + rotZ: 180.013824 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231708 + 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 + UniqueBack: false + Description: The Collector + GMNotes: '' + GUID: ec86a2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Victoria Devereux + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -6.151805 + posY: 1.71143651 + posZ: -8.111477 + rotX: 359.944366 + rotY: 270.016357 + rotZ: 180.000565 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231707 + 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 + UniqueBack: false + Description: The Occult Professor + GMNotes: '' + GUID: ad2df0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Peter Warren + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -6.05293274 + posY: 1.72509432 + posZ: -7.78916073 + rotX: 359.937225 + rotY: 269.999817 + rotZ: 180.015381 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231706 + 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 + UniqueBack: false + Description: The Undertaker + GMNotes: '' + GUID: a12fd2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Herman Collins + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -5.95645571 + posY: 1.70735312 + posZ: -8.194746 + rotX: 359.924164 + rotY: 269.999878 + rotZ: 180.026428 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231705 + 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 + UniqueBack: false + Description: The Cannibal + GMNotes: '' + GUID: ab3719 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '"Wolf-Man" Drew' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -6.351678 + posY: 1.56253266 + posZ: -7.93774748 + rotX: 359.92038 + rotY: 269.999969 + rotZ: 180.018967 + 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 + UniqueBack: false +DeckIDs: +- 231709 +- 231708 +- 231707 +- 231706 +- 231705 +Description: '' +GMNotes: '' +GUID: 69032d +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Cultist Deck +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 4.24759054 + posY: 2.56842446 + posZ: -1.60001886 + rotX: 359.920135 + rotY: 270.0 + rotZ: 180.016861 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Core 5579e4/Custom_Model_Bag 3 The Devourer Below 2130f0/Custom_Tile The Devourer Below 37feeb.ttslua b/unpacked/Custom_Model_Bag Core 5579e4/Custom_Model_Bag 3 The Devourer Below 2130f0/Custom_Tile The Devourer Below 37feeb.ttslua new file mode 100644 index 000000000..5d1d47cbd --- /dev/null +++ b/unpacked/Custom_Model_Bag Core 5579e4/Custom_Model_Bag 3 The Devourer Below 2130f0/Custom_Tile The Devourer Below 37feeb.ttslua @@ -0,0 +1,21 @@ +name = 'The Devourer Below' + +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 Core 5579e4/Custom_Model_Bag 3 The Devourer Below 2130f0/Custom_Tile The Devourer Below 37feeb.yaml b/unpacked/Custom_Model_Bag Core 5579e4/Custom_Model_Bag 3 The Devourer Below 2130f0/Custom_Tile The Devourer Below 37feeb.yaml new file mode 100644 index 000000000..88f7e1a95 --- /dev/null +++ b/unpacked/Custom_Model_Bag Core 5579e4/Custom_Model_Bag 3 The Devourer Below 2130f0/Custom_Tile The Devourer Below 37feeb.yaml @@ -0,0 +1,42 @@ +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 +GMNotes: '' +GUID: 37feeb +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Tile The Devourer Below 37feeb.ttslua' +LuaScriptState: '' +Name: Custom_Tile +Nickname: The Devourer Below +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.8378005 + posY: 1.582539 + posZ: -14.6275043 + rotX: 359.919739 + rotY: 270.000183 + rotZ: 0.0168375224 + scaleX: 2.2 + scaleY: 1.0 + scaleZ: 2.2 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Core 5579e4/Custom_Model_Bag 3 The Devourer Below 2130f0/Deck Act Deck 91957f.yaml b/unpacked/Custom_Model_Bag Core 5579e4/Custom_Model_Bag 3 The Devourer Below 2130f0/Deck Act Deck 91957f.yaml new file mode 100644 index 000000000..7a6c7cdf6 --- /dev/null +++ b/unpacked/Custom_Model_Bag Core 5579e4/Custom_Model_Bag 3 The Devourer Below 2130f0/Deck Act Deck 91957f.yaml @@ -0,0 +1,172 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 232417 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2324': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775106514377428854/F01972D15C2B4CFCB8CA72006B7E00D243683AFA/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377429266/856DF4A8D87D7B6CB71572D20908D35F4182AC45/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 3 + GMNotes: '' + GUID: ac3a7b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Disrupting the Ritual + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -7.38715839 + posY: 1.56597877 + posZ: 8.551979 + rotX: 0.02151022 + rotY: 178.889252 + rotZ: 0.07365705 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232416 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2324': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775106514377428854/F01972D15C2B4CFCB8CA72006B7E00D243683AFA/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377429266/856DF4A8D87D7B6CB71572D20908D35F4182AC45/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 2 + GMNotes: '' + GUID: ed5537 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Into the Darkness + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -7.432128 + posY: 1.711301 + posZ: 8.2228775 + rotX: 0.008659951 + rotY: 180.019943 + rotZ: 0.045334097 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232415 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2324': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775106514377428854/F01972D15C2B4CFCB8CA72006B7E00D243683AFA/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377429266/856DF4A8D87D7B6CB71572D20908D35F4182AC45/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 1 + GMNotes: '' + GUID: a57395 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Investigating the Trail + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -7.437793 + posY: 1.729448 + posZ: 8.441475 + rotX: 359.943268 + rotY: 180.863663 + rotZ: 359.9915 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2324': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775106514377428854/F01972D15C2B4CFCB8CA72006B7E00D243683AFA/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377429266/856DF4A8D87D7B6CB71572D20908D35F4182AC45/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 232417 +- 232416 +- 232415 +Description: '' +GMNotes: '' +GUID: 91957f +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Act Deck +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.6884 + posY: 1.65499711 + posZ: -5.0485 + rotX: 0.0168296769 + rotY: 180.003784 + rotZ: 0.0802589 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Core 5579e4/Custom_Model_Bag 3 The Devourer Below 2130f0/Deck Agenda Deck 01fdf4.yaml b/unpacked/Custom_Model_Bag Core 5579e4/Custom_Model_Bag 3 The Devourer Below 2130f0/Deck Agenda Deck 01fdf4.yaml new file mode 100644 index 000000000..f82f22cf4 --- /dev/null +++ b/unpacked/Custom_Model_Bag Core 5579e4/Custom_Model_Bag 3 The Devourer Below 2130f0/Deck Agenda Deck 01fdf4.yaml @@ -0,0 +1,172 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 232414 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2324': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775106514377428854/F01972D15C2B4CFCB8CA72006B7E00D243683AFA/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377429266/856DF4A8D87D7B6CB71572D20908D35F4182AC45/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 3 + GMNotes: '' + GUID: 76e312 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Vengeance Awaits + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -11.308939 + posY: 1.57103193 + posZ: 7.089978 + rotX: 0.01615773 + rotY: 180.854675 + rotZ: 0.07734753 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232413 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2324': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775106514377428854/F01972D15C2B4CFCB8CA72006B7E00D243683AFA/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377429266/856DF4A8D87D7B6CB71572D20908D35F4182AC45/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 2 + GMNotes: '' + GUID: '633954' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Ritual Begins + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -11.1681776 + posY: 1.71000755 + posZ: 6.866048 + rotX: 0.0182370022 + rotY: 180.018646 + rotZ: 0.061898116 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232412 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2324': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775106514377428854/F01972D15C2B4CFCB8CA72006B7E00D243683AFA/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377429266/856DF4A8D87D7B6CB71572D20908D35F4182AC45/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 1 + GMNotes: '' + GUID: e352ec + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Arkham Woods + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -10.8406448 + posY: 1.73332238 + posZ: 7.23730469 + rotX: 0.0183551572 + rotY: 179.951279 + rotZ: 0.07907332 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2324': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775106514377428854/F01972D15C2B4CFCB8CA72006B7E00D243683AFA/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377429266/856DF4A8D87D7B6CB71572D20908D35F4182AC45/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 232414 +- 232413 +- 232412 +Description: '' +GMNotes: '' +GUID: 01fdf4 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Agenda Deck +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.72459984 + posY: 1.656641 + posZ: 0.373300642 + rotX: 0.0168312639 + rotY: 180.002686 + rotZ: 0.08025848 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Core 5579e4/Custom_Model_Bag 3 The Devourer Below 2130f0/Deck Arkham Woods 54354d.yaml b/unpacked/Custom_Model_Bag Core 5579e4/Custom_Model_Bag 3 The Devourer Below 2130f0/Deck Arkham Woods 54354d.yaml new file mode 100644 index 000000000..abad9bf33 --- /dev/null +++ b/unpacked/Custom_Model_Bag Core 5579e4/Custom_Model_Bag 3 The Devourer Below 2130f0/Deck Arkham Woods 54354d.yaml @@ -0,0 +1,301 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 232322 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2323': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775106514377430450/FDA37585F019D453CF383D975CF1AB631ECF64B7/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377431393/4752E394498B81694A370AA6BB05BC5A4E55FD30/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Woods. + GMNotes: '' + GUID: e8e04b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Arkham Woods + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.30518246 + posY: 1.55907571 + posZ: 4.34235573 + rotX: 359.920471 + rotY: 269.9999 + rotZ: 0.01462554 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232321 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2323': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775106514377430450/FDA37585F019D453CF383D975CF1AB631ECF64B7/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377431393/4752E394498B81694A370AA6BB05BC5A4E55FD30/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Woods. + GMNotes: '' + GUID: 09c961 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Arkham Woods + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.245046 + posY: 1.7145108 + posZ: 4.29936457 + rotX: 359.926575 + rotY: 270.000031 + rotZ: 0.008637794 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232320 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2323': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775106514377430450/FDA37585F019D453CF383D975CF1AB631ECF64B7/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377431393/4752E394498B81694A370AA6BB05BC5A4E55FD30/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Woods. + GMNotes: '' + GUID: 47ac26 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Arkham Woods + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.23962975 + posY: 1.737456 + posZ: 3.95132041 + rotX: 359.936462 + rotY: 270.0 + rotZ: 0.0131655913 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232319 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2323': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775106514377430450/FDA37585F019D453CF383D975CF1AB631ECF64B7/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377431393/4752E394498B81694A370AA6BB05BC5A4E55FD30/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Woods. + GMNotes: '' + GUID: 861e20 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Arkham Woods + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.18749642 + posY: 1.71257639 + posZ: 4.24046946 + rotX: 359.9181 + rotY: 269.999756 + rotZ: 0.0164953228 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232318 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2323': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775106514377430450/FDA37585F019D453CF383D975CF1AB631ECF64B7/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377431393/4752E394498B81694A370AA6BB05BC5A4E55FD30/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Woods. + GMNotes: '' + GUID: e90029 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Arkham Woods + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.3233912 + posY: 1.71052253 + posZ: 3.8609674 + rotX: 359.924652 + rotY: 269.999451 + rotZ: 0.0189638846 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232317 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2323': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775106514377430450/FDA37585F019D453CF383D975CF1AB631ECF64B7/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377431393/4752E394498B81694A370AA6BB05BC5A4E55FD30/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Woods. + GMNotes: '' + GUID: 377b20 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Arkham Woods + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.5050683 + posY: 1.7248472 + posZ: 4.32418728 + rotX: 359.920959 + rotY: 269.999756 + rotZ: 0.0166171156 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2323': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775106514377430450/FDA37585F019D453CF383D975CF1AB631ECF64B7/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377431393/4752E394498B81694A370AA6BB05BC5A4E55FD30/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 232322 +- 232321 +- 232320 +- 232319 +- 232318 +- 232317 +Description: '' +GMNotes: '' +GUID: 54354d +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Arkham Woods +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -12.2159986 + posY: 1.67348838 + posZ: 8.066398 + rotX: 359.9201 + rotY: 269.999664 + rotZ: 0.0168779921 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Core 5579e4/Custom_Model_Bag 3 The Devourer Below 2130f0/Deck Encounter Deck d85823.yaml b/unpacked/Custom_Model_Bag Core 5579e4/Custom_Model_Bag 3 The Devourer Below 2130f0/Deck Encounter Deck d85823.yaml new file mode 100644 index 000000000..b1e841bad --- /dev/null +++ b/unpacked/Custom_Model_Bag Core 5579e4/Custom_Model_Bag 3 The Devourer Below 2130f0/Deck Encounter Deck d85823.yaml @@ -0,0 +1,1118 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- 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 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: d63054 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Mysterious Chanting + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -14.9937792 + posY: 1.57623422 + posZ: 7.191085 + rotX: 359.920227 + rotY: 270.005066 + rotZ: 0.01624975 + 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 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: b347d1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Mysterious Chanting + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -15.1765862 + posY: 1.7388649 + posZ: 7.12856245 + rotX: 359.9205 + rotY: 270.005066 + rotZ: 0.011837706 + 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 + UniqueBack: false + Description: Humanoid. Cultist. + GMNotes: '' + GUID: d36612 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Wizard of the Order + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -15.1335211 + posY: 1.7306242 + posZ: 15.1695614 + rotX: 359.933441 + rotY: 269.998932 + rotZ: 180.028931 + 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 + UniqueBack: false + Description: Humanoid. Cultist. + GMNotes: '' + GUID: 50fdc5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Acolyte + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -15.3295956 + posY: 1.62976587 + posZ: 15.9645061 + rotX: 0.0716057643 + rotY: 270.000061 + rotZ: 359.982727 + 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 + UniqueBack: false + Description: Humanoid. Cultist. + GMNotes: '' + GUID: 4911f2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Acolyte + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -15.3297215 + posY: 1.77588809 + posZ: 15.9645157 + rotX: 0.07387834 + rotY: 269.998474 + rotZ: 359.992645 + 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 + UniqueBack: false + Description: Humanoid. Cultist. + GMNotes: '' + GUID: ab3719 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Acolyte + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -15.9929094 + posY: 1.58014917 + posZ: 15.8832378 + rotX: 359.920624 + rotY: 270.0 + rotZ: 0.0137184272 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231715 + 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 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: ab3719 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Grasping Hands + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 12.0789223 + posY: 1.538257 + posZ: 6.558776 + rotX: 359.9207 + rotY: 270.0 + rotZ: 0.0130352853 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231715 + 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 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: 272ea4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Grasping Hands + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 11.5948715 + posY: 1.6933527 + posZ: 6.733804 + rotX: 359.940033 + rotY: 270.0 + rotZ: 359.9941 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231715 + 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 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: ab3719 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Grasping Hands + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 11.6057749 + posY: 1.707567 + posZ: 6.731648 + rotX: 359.9248 + rotY: 270.000153 + rotZ: 0.0111529948 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231714 + 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 + UniqueBack: false + Description: Humanoid. Monster. Ghoul. + GMNotes: '' + GUID: 99efa0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ravenous Ghoul + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 11.9229918 + posY: 1.70898592 + posZ: 13.9219513 + rotX: 359.952728 + rotY: 269.999939 + rotZ: 179.966141 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231713 + 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 + UniqueBack: false + Description: Humanoid. Monster. Ghoul. + GMNotes: '' + GUID: b87089 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ghoul Minion + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 12.0413847 + posY: 1.540466 + posZ: 13.7902546 + rotX: 359.920441 + rotY: 270.000244 + rotZ: 0.0148255695 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231713 + 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 + UniqueBack: false + Description: Humanoid. Monster. Ghoul. + GMNotes: '' + GUID: 30bb55 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ghoul Minion + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 11.6936331 + posY: 1.696078 + posZ: 13.6986961 + rotX: 359.923462 + rotY: 270.000183 + rotZ: 0.006271487 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231713 + 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 + UniqueBack: false + Description: Humanoid. Monster. Ghoul. + GMNotes: '' + GUID: b87089 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ghoul Minion + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 11.6935387 + posY: 1.70997131 + posZ: 13.6987247 + rotX: 359.923828 + rotY: 270.0 + rotZ: 0.0162566788 + 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 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: f5c831 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: 97416f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: 0f4202 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: c70601 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: ab3719 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: 435a47 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: ab3719 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: 6e7cb8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: 8af879 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: 6e7cb8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 231711 + 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 + UniqueBack: false + Description: Curse. + GMNotes: '' + GUID: 085cc8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: "Um\xF4rdhoth's Wrath" + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -5.9362 + posY: 1.563267 + posZ: 6.041544 + rotX: 359.920166 + rotY: 269.999725 + rotZ: 0.0161988959 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231711 + 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 + UniqueBack: false + Description: Curse. + GMNotes: '' + GUID: 48e472 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: "Um\xF4rdhoth's Wrath" + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -5.86767 + posY: 1.71316624 + posZ: 6.10242033 + rotX: 359.9167 + rotY: 270.000183 + rotZ: 0.003921997 + 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 + UniqueBack: false +DeckIDs: +- 231724 +- 231724 +- 231723 +- 231722 +- 231722 +- 231722 +- 231715 +- 231715 +- 231715 +- 231714 +- 231713 +- 231713 +- 231713 +- 231718 +- 231718 +- 231717 +- 231717 +- 231716 +- 231716 +- 231716 +- 231719 +- 231719 +- 231719 +- 231711 +- 231711 +Description: '' +GMNotes: '' +GUID: d85823 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Encounter Deck +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.927701 + posY: 1.74506271 + posZ: 5.757202 + rotX: 359.919739 + rotY: 270.000244 + rotZ: 180.016815 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Core 5579e4/Custom_Tile Night of the Zealot Campaign Log e0c3e7.ttslua b/unpacked/Custom_Model_Bag Core 5579e4/Custom_Tile Night of the Zealot Campaign Log e0c3e7.ttslua new file mode 100644 index 000000000..49d7c7b96 --- /dev/null +++ b/unpacked/Custom_Model_Bag Core 5579e4/Custom_Tile Night of the Zealot Campaign Log e0c3e7.ttslua @@ -0,0 +1,537 @@ +--[[ Character Sheet Template by: MrStump + +You can set up your own character sheet if you follow these steps. + +Step 1) Change the character sheet image + -Right click on the character sheet, click Custom + -Replace the image URL with one for your character sheet + -Click import, make sure your sheet loads + -SAVE THE GAME (the table setup) + -LOAD FROM THAT SAVE YOU JUST MADE + +Step 2) Edit script to fit your character sheet + -Below you will see some general options, and then the big data table + -The data table is what determines how many of which buttons are made + -Checkboxes + -Counters + -Textboxes + -By default, there are 3 of each. You can add more or remove entries + -If you intend to add/remove, be sure only to add/remove ENTRIES + -This is what an entry looks like: + { + pos = {-0.977,0.1,-0.589}, + size = 800, + state = false + }, + -Deleting the whole thing would remove that specific item on the sheet + -Copy and pasting it after another entry would create another + -Each entry type has unique data points (pos, size, state, etc) + -Do not try to add in your own data points or remove them individually + -There is a summary of what each point does at the top of its category + +Step 3) Save and check script changes + -Hit Save & Apply in the script window to save your code + -You can edit your code as needed and Save+Apply as often as needed + -When you are finished, make disableSave = false below then Save+apply + -This enables saving, so your sheet will remember whats on it. + +Bonus) Finding/Editing Positions for elements + I have included a tool to get positions for buttons in {x,y,z} form + Place it where you want the center of your element to be + Then copy the table from the notes (lower right of screen) + You can highlight it and CTRL+C + Paste it into the data table where needed (pos=) + If you want to manually tweek the values: + {0,0,0} is the center of the character sheet + {1,0,0} is right, {-1,0,0} is left + {0,0,-1} is up, {0,0,1} is down + 0.1 for Y is the height off of the page. + If it was 0, it would be down inside the model of the sheet + +Begin editing below: ]] + +--Set this to true while editing and false when you have finished +disableSave = false +--Remember to set this to false once you are done making changes +--Then, after you save & apply it, save your game too + +--Color information for button text (r,g,b, values of 0-1) +buttonFontColor = {0,0,0} +--Color information for button background +buttonColor = {1,1,1} +--Change scale of button (Avoid changing if possible) +buttonScale = {0.1,0.1,0.1} + +--This is the button placement information +defaultButtonData = { + --Add checkboxes + checkbox = { + --[[ + pos = the position (pasted from the helper tool) + size = height/width/font_size for checkbox + state = default starting value for checkbox (true=checked, false=not) + ]] + --First checkbox + { + pos = {-0.62,0.1,0.056}, + size = 400, + state = false + }, + --Second checkbox + { + pos = {-0.629,0.1,0.199}, + size = 400, + state = false + }, + --Third checkbox + { + pos = {-0.594,0.1,0.355}, + size = 400, + state = false + }, + --End of checkboxes + }, + --Add counters that have a + and - button + counter = { + --[[ + pos = the position (pasted from the helper tool) + size = height/width/font_size for counter + value = default starting value for counter + hideBG = if background of counter is hidden (true=hidden, false=not) + ]] + --Slot one counter 1 + { + pos = {-0.7,0.1,-0.4}, + size = 400, + value = 0, + hideBG = true + }, + --Slot one counter 2 + { + pos = {-0.52,0.1,-0.4}, + size = 400, + value = 0, + hideBG = true + }, + --Slot one xp 1 + { + pos = {-0.517,0.1,-0.5}, + size = 300, + value = 0, + hideBG = true + }, + --Slot two counter 1 + { + pos = {-0.274,0.1,-0.4}, + size = 400, + value = 0, + hideBG = true + }, + --Slot two counter 2 + { + pos = {-0.074,0.1,-0.4}, + size = 400, + value = 0, + hideBG = true + }, + --Slot two xp 1 + { + pos = {-0.061,0.1,-0.5}, + size = 300, + value = 0, + hideBG = true + }, + --Slot three counter 1 + { + pos = {0.153,0.1,-0.4}, + size = 400, + value = 0, + hideBG = true + }, + --Slot three counter 2 + { + pos = {0.379,0.1,-0.4}, + size = 400, + value = 0, + hideBG = true + }, + --Slot three xp 1 + { + pos = {0.38,0.1,-0.5}, + size = 300, + value = 0, + hideBG = true + }, + --Slot four counter 1 + { + pos = {0.614,0.1,-0.4}, + size = 400, + value = 0, + hideBG = true + }, + --Slot four counter 2 + { + pos = {0.82,0.1,-0.4}, + size = 400, + value = 0, + hideBG = true + }, + --Slot four xp 1 + { + pos = {0.827,0.1,-0.5}, + size = 300, + value = 0, + hideBG = true + }, + --End of counters + }, + --Add editable text boxes + textbox = { + --[[ + pos = the position (pasted from the helper tool) + rows = how many lines of text you want for this box + width = how wide the text box is + font_size = size of text. This and "rows" effect overall height + label = what is shown when there is no text. "" = nothing + value = text entered into box. "" = nothing + alignment = Number to indicate how you want text aligned + (1=Automatic, 2=Left, 3=Center, 4=Right, 5=Justified) + ]] + --Slot one player + { + pos = {-0.637,0.1,-0.66}, + rows = 1, + width = 2000, + font_size = 150, + label = "Click to type", + value = "", + alignment = 2 + }, + --Slot one investigator + { + pos = {-0.637,0.1,-0.58}, + rows = 1, + width = 2000, + font_size = 150, + label = "Click to type", + value = "", + alignment = 2 + }, + --Slot one story + { + pos = {-0.637,0.1,-0.28}, + rows = 3, + width = 2000, + font_size = 150, + label = "Click to type", + value = "", + alignment = 2 + }, + --Slot two player + { + pos = {-0.2,0.1,-0.66}, + rows = 1, + width = 2000, + font_size = 150, + label = "Click to type", + value = "", + alignment = 2 + }, + --Slot two investigator + { + pos = {-0.2,0.1,-0.58}, + rows = 1, + width = 2000, + font_size = 150, + label = "Click to type", + value = "", + alignment = 2 + }, + --Slot two story + { + pos = {-0.2,0.1,-0.28}, + rows = 3, + width = 2000, + font_size = 150, + label = "Click to type", + value = "", + alignment = 2 + }, + --Slot three player + { + pos = {0.241,0.1,-0.66}, + rows = 1, + width = 2000, + font_size = 150, + label = "Click to type", + value = "", + alignment = 2 + }, + --Slot three investigator + { + pos = {0.237,0.1,-0.58}, + rows = 1, + width = 2000, + font_size = 150, + label = "Click to type", + value = "", + alignment = 2 + }, + --Slot three story + { + pos = {0.24,0.1,-0.28}, + rows = 3, + width = 2000, + font_size = 150, + label = "Click to type", + value = "", + alignment = 2 + }, + --Slot four player + { + pos = {0.671,0.1,-0.66}, + rows = 1, + width = 2000, + font_size = 150, + label = "Click to type", + value = "", + alignment = 2 + }, + --Slot four investigator + { + pos = {0.671,0.1,-0.58}, + rows = 1, + width = 2000, + font_size = 150, + label = "Click to type", + value = "", + alignment = 2 + }, + --Slot four story + { + pos = {0.671,0.1,-0.28}, + rows = 3, + width = 2000, + font_size = 150, + label = "Click to type", + value = "", + alignment = 2 + }, + --Killed Textbox + { + pos = {-0.4,0.1,0.68}, + rows = 8, + width = 3800, + font_size = 200, + label = "Click to type", + value = "", + alignment = 2 + }, + --Campaign Notes + { + pos = {0.507,0.1,0.15}, + rows = 8, + width = 3500, + font_size = 200, + label = "Click to type", + value = "", + alignment = 2 + }, + --Cultists interrogated + { + pos = {0.507,0.1,0.509}, + rows = 4, + width = 3500, + font_size = 200, + label = "Click to type", + value = "", + alignment = 2 + }, + --Cultists got away + { + pos = {0.507,0.1,0.771}, + rows = 4, + width = 3500, + font_size = 200, + label = "Click to type", + value = "", + alignment = 2 + }, + --End of textboxes + } +} + + + +--Lua beyond this point, I recommend doing something more fun with your life + + + +--Save function +function updateSave() + saved_data = JSON.encode(ref_buttonData) + if disableSave==true then saved_data="" end + self.script_state = saved_data +end + +--Startup procedure +function onload(saved_data) + if disableSave==true then saved_data="" end + if saved_data ~= "" then + local loaded_data = JSON.decode(saved_data) + ref_buttonData = loaded_data + else + ref_buttonData = defaultButtonData + end + + spawnedButtonCount = 0 + createCheckbox() + createCounter() + createTextbox() +end + + + +--Click functions for buttons + + + +--Checks or unchecks the given box +function click_checkbox(tableIndex, buttonIndex) + if ref_buttonData.checkbox[tableIndex].state == true then + ref_buttonData.checkbox[tableIndex].state = false + self.editButton({index=buttonIndex, label=""}) + else + ref_buttonData.checkbox[tableIndex].state = true + self.editButton({index=buttonIndex, label=string.char(10008)}) + end + updateSave() +end + +--Applies value to given counter display +function click_counter(tableIndex, buttonIndex, amount) + ref_buttonData.counter[tableIndex].value = ref_buttonData.counter[tableIndex].value + amount + self.editButton({index=buttonIndex, label=ref_buttonData.counter[tableIndex].value}) + updateSave() +end + +--Updates saved value for given text box +function click_textbox(i, value, selected) + if selected == false then + ref_buttonData.textbox[i].value = value + updateSave() + end +end + +--Dud function for if you have a background on a counter +function click_none() end + + + +--Button creation + + + +--Makes checkboxes +function createCheckbox() + for i, data in ipairs(ref_buttonData.checkbox) do + --Sets up reference function + local buttonNumber = spawnedButtonCount + local funcName = "checkbox"..i + local func = function() click_checkbox(i, buttonNumber) end + self.setVar(funcName, func) + --Sets up label + local label = "" + if data.state==true then label=string.char(10008) end + --Creates button and counts it + self.createButton({ + label=label, click_function=funcName, function_owner=self, + position=data.pos, height=data.size, width=data.size, + font_size=data.size, scale=buttonScale, + color=buttonColor, font_color=buttonFontColor + }) + spawnedButtonCount = spawnedButtonCount + 1 + end +end + +--Makes counters +function createCounter() + for i, data in ipairs(ref_buttonData.counter) do + --Sets up display + local displayNumber = spawnedButtonCount + --Sets up label + local label = data.value + --Sets height/width for display + local size = data.size + if data.hideBG == true then size = 0 end + --Creates button and counts it + self.createButton({ + label=label, click_function="click_none", function_owner=self, + position=data.pos, height=size, width=size, + font_size=data.size, scale=buttonScale, + color=buttonColor, font_color=buttonFontColor + }) + spawnedButtonCount = spawnedButtonCount + 1 + + --Sets up add 1 + local funcName = "counterAdd"..i + local func = function() click_counter(i, displayNumber, 1) end + self.setVar(funcName, func) + --Sets up label + local label = "+" + --Sets up position + local offsetDistance = (data.size/2 + data.size/4) * (buttonScale[1] * 0.002) + local pos = {data.pos[1] + offsetDistance, data.pos[2], data.pos[3]} + --Sets up size + local size = data.size / 2 + --Creates button and counts it + self.createButton({ + label=label, click_function=funcName, function_owner=self, + position=pos, height=size, width=size, + font_size=size, scale=buttonScale, + color=buttonColor, font_color=buttonFontColor + }) + spawnedButtonCount = spawnedButtonCount + 1 + + --Sets up subtract 1 + local funcName = "counterSub"..i + local func = function() click_counter(i, displayNumber, -1) end + self.setVar(funcName, func) + --Sets up label + local label = "-" + --Set up position + local pos = {data.pos[1] - offsetDistance, data.pos[2], data.pos[3]} + --Creates button and counts it + self.createButton({ + label=label, click_function=funcName, function_owner=self, + position=pos, height=size, width=size, + font_size=size, scale=buttonScale, + color=buttonColor, font_color=buttonFontColor + }) + spawnedButtonCount = spawnedButtonCount + 1 + end +end + +function createTextbox() + for i, data in ipairs(ref_buttonData.textbox) do + --Sets up reference function + local funcName = "textbox"..i + local func = function(_,_,val,sel) click_textbox(i,val,sel) end + self.setVar(funcName, func) + + self.createInput({ + input_function = funcName, + function_owner = self, + label = data.label, + alignment = data.alignment, + position = data.pos, + scale = buttonScale, + width = data.width, + height = (data.font_size*data.rows)+24, + font_size = data.font_size, + color = buttonColor, + font_color = buttonFontColor, + value = data.value, + }) + end +end \ No newline at end of file diff --git a/unpacked/Custom_Model_Bag Core 5579e4/Custom_Tile Night of the Zealot Campaign Log e0c3e7.yaml b/unpacked/Custom_Model_Bag Core 5579e4/Custom_Tile Night of the Zealot Campaign Log e0c3e7.yaml new file mode 100644 index 000000000..93565fcee --- /dev/null +++ b/unpacked/Custom_Model_Bag Core 5579e4/Custom_Tile Night of the Zealot Campaign Log e0c3e7.yaml @@ -0,0 +1,58 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.1 + Type: 0 + ImageScalar: 1.0 + ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/959719855122482281/AD834A2E74B4568409BA1C9F166E696A69717D68/ + ImageURL: http://cloud-3.steamusercontent.com/ugc/952965089464985485/B0C1F18E3FA4F2863ABE0AE01A226C03693818C9/ + WidthScale: 0.0 +Description: '' +GMNotes: '' +GUID: e0c3e7 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Tile Night of the Zealot Campaign Log e0c3e7.ttslua' +LuaScriptState: '{"checkbox":[{"pos":[-0.62,0.1,0.056],"size":400,"state":false},{"pos":[-0.629,0.1,0.199],"size":400,"state":false},{"pos":[-0.594,0.1,0.355],"size":400,"state":false}],"counter":[{"hideBG":true,"pos":[-0.7,0.1,-0.4],"size":400,"value":0},{"hideBG":true,"pos":[-0.52,0.1,-0.4],"size":400,"value":0},{"hideBG":true,"pos":[-0.517,0.1,-0.5],"size":300,"value":0},{"hideBG":true,"pos":[-0.274,0.1,-0.4],"size":400,"value":0},{"hideBG":true,"pos":[-0.074,0.1,-0.4],"size":400,"value":0},{"hideBG":true,"pos":[-0.061,0.1,-0.5],"size":300,"value":0},{"hideBG":true,"pos":[0.153,0.1,-0.4],"size":400,"value":0},{"hideBG":true,"pos":[0.379,0.1,-0.4],"size":400,"value":0},{"hideBG":true,"pos":[0.38,0.1,-0.5],"size":300,"value":0},{"hideBG":true,"pos":[0.614,0.1,-0.4],"size":400,"value":0},{"hideBG":true,"pos":[0.82,0.1,-0.4],"size":400,"value":0},{"hideBG":true,"pos":[0.827,0.1,-0.5],"size":300,"value":0}],"textbox":[{"alignment":2,"font_size":150,"label":"Click + to type","pos":[-0.637,0.1,-0.66],"rows":1,"value":"","width":2000},{"alignment":2,"font_size":150,"label":"Click + to type","pos":[-0.637,0.1,-0.58],"rows":1,"value":"","width":2000},{"alignment":2,"font_size":150,"label":"Click + to type","pos":[-0.637,0.1,-0.28],"rows":3,"value":"","width":2000},{"alignment":2,"font_size":150,"label":"Click + to type","pos":[-0.2,0.1,-0.66],"rows":1,"value":"","width":2000},{"alignment":2,"font_size":150,"label":"Click + to type","pos":[-0.2,0.1,-0.58],"rows":1,"value":"","width":2000},{"alignment":2,"font_size":150,"label":"Click + to type","pos":[-0.2,0.1,-0.28],"rows":3,"value":"","width":2000},{"alignment":2,"font_size":150,"label":"Click + to type","pos":[0.241,0.1,-0.66],"rows":1,"value":"","width":2000},{"alignment":2,"font_size":150,"label":"Click + to type","pos":[0.237,0.1,-0.58],"rows":1,"value":"","width":2000},{"alignment":2,"font_size":150,"label":"Click + to type","pos":[0.24,0.1,-0.28],"rows":3,"value":"","width":2000},{"alignment":2,"font_size":150,"label":"Click + to type","pos":[0.671,0.1,-0.66],"rows":1,"value":"","width":2000},{"alignment":2,"font_size":150,"label":"Click + to type","pos":[0.671,0.1,-0.58],"rows":1,"value":"","width":2000},{"alignment":2,"font_size":150,"label":"Click + to type","pos":[0.671,0.1,-0.28],"rows":3,"value":"","width":2000},{"alignment":2,"font_size":200,"label":"Click + to type","pos":[-0.4,0.1,0.68],"rows":8,"value":"","width":3800},{"alignment":2,"font_size":200,"label":"Click + to type","pos":[0.507,0.1,0.15],"rows":8,"value":"","width":3500},{"alignment":2,"font_size":200,"label":"Click + to type","pos":[0.507,0.1,0.509],"rows":4,"value":"","width":3500},{"alignment":2,"font_size":200,"label":"Click + to type","pos":[0.507,0.1,0.771],"rows":4,"value":"","width":3500}]}' +Name: Custom_Tile +Nickname: Night of the Zealot Campaign Log +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -1.46550012 + posY: 1.4756223 + posZ: -26.9304047 + rotX: 359.920135 + rotY: 269.999573 + rotZ: 0.01687223 + scaleX: 6.5 + scaleY: 1.0 + scaleZ: 6.5 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f.yaml new file mode 100644 index 000000000..c77c2ca45 --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f.yaml @@ -0,0 +1,61 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +ContainedObjects: +- !include 'Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter + sets 9671d3.yaml' +- !include 'Custom_Model_Bag Encounter Sets fcfa7f/Bag The Dream-Eaters 587028.yaml' +- !include 'Custom_Model_Bag Encounter Sets fcfa7f/Bag Standalone ce36ec.yaml' +- !include 'Custom_Model_Bag Encounter Sets fcfa7f/Bag The Circle Undone 9f8184.yaml' +- !include 'Custom_Model_Bag Encounter Sets fcfa7f/Bag The Forgotten Age 9dc850.yaml' +- !include 'Custom_Model_Bag Encounter Sets fcfa7f/Bag The Path to Carcosa 7bfa11.yaml' +- !include 'Custom_Model_Bag Encounter Sets fcfa7f/Bag The Dunwich Legacy 2aed55.yaml' +- !include 'Custom_Model_Bag Encounter Sets fcfa7f/Bag CoreNight of the Zealot 1e5dca.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/762723517668487233/EDDD832597F756BE94833B29B70EE21EDA95C677/ + MaterialIndex: 3 + MeshURL: http://cloud-3.steamusercontent.com/ugc/254843371583107453/E3BD9426DD28A525F93BAF54635A969958E991B2/ + NormalURL: '' + TypeIndex: 6 +Description: '' +GMNotes: '' +GUID: fcfa7f +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: true +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +MeshIndex: -1 +Name: Custom_Model_Bag +Nickname: Encounter Sets +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 22.9507751 + posY: 1.44124055 + posZ: -30.8726521 + rotX: 359.920563 + rotY: 300.012024 + rotZ: 359.973663 + scaleX: 4.29999733 + scaleY: 4.29999733 + scaleZ: 4.29999733 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag CoreNight of the Zealot 1e5dca.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag CoreNight of the Zealot 1e5dca.yaml new file mode 100644 index 000000000..12c62fb79 --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag CoreNight of the Zealot 1e5dca.yaml @@ -0,0 +1,53 @@ +Autoraise: true +ColorDiffuse: + b: 0.0 + g: 0.366520882 + r: 0.7058823 +ContainedObjects: +- !include 'Bag CoreNight of the Zealot 1e5dca/Bag Return to the Night of the Zealot + a96b23.yaml' +- !include 'Bag CoreNight of the Zealot 1e5dca/Deck The Gathering cbc4d9.yaml' +- !include 'Bag CoreNight of the Zealot 1e5dca/Deck The Midnight Masks 404746.yaml' +- !include 'Bag CoreNight of the Zealot 1e5dca/Deck The Devourer Below baa8d5.yaml' +- !include "Bag CoreNight of the Zealot 1e5dca/Deck Cult of Um\xF4rdhoth c16e6d.yaml" +- !include 'Bag CoreNight of the Zealot 1e5dca/Deck Rats 5ac3ab.yaml' +- !include 'Bag CoreNight of the Zealot 1e5dca/Deck Ghouls 42b819.yaml' +- !include 'Bag CoreNight of the Zealot 1e5dca/Deck Striking Fear 041971.yaml' +- !include 'Bag CoreNight of the Zealot 1e5dca/Deck Ancient Evils 556e96.yaml' +- !include 'Bag CoreNight of the Zealot 1e5dca/Deck Chilling Cold c554c9.yaml' +- !include 'Bag CoreNight of the Zealot 1e5dca/Deck Dark Cult 5c9bbb.yaml' +- !include 'Bag CoreNight of the Zealot 1e5dca/Deck Nightgaunts d1bf92.yaml' +- !include 'Bag CoreNight of the Zealot 1e5dca/Deck Locked Doors 241430.yaml' +- !include 'Bag CoreNight of the Zealot 1e5dca/Deck Agents of Hastur 766175.yaml' +- !include 'Bag CoreNight of the Zealot 1e5dca/Deck Agents of Yog-Sothoth 3a7f8d.yaml' +- !include 'Bag CoreNight of the Zealot 1e5dca/Deck Agents of Shub-Niggurath 0258ff.yaml' +- !include 'Bag CoreNight of the Zealot 1e5dca/Deck Agents of Cthulhu a827f1.yaml' +Description: '' +GMNotes: '' +GUID: 1e5dca +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +MeshIndex: -1 +Name: Bag +Nickname: Core/Night of the Zealot +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 22.9509773 + posY: -1.75875688 + posZ: -30.8726578 + rotX: 359.9409 + rotY: 315.000824 + rotZ: 359.96167 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag CoreNight of the Zealot 1e5dca/Bag Return to the Night of the Zealot a96b23.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag CoreNight of the Zealot 1e5dca/Bag Return to the Night of the Zealot a96b23.yaml new file mode 100644 index 000000000..e78dd48e2 --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag CoreNight of the Zealot 1e5dca/Bag Return to the Night of the Zealot a96b23.yaml @@ -0,0 +1,47 @@ +Autoraise: true +ColorDiffuse: + b: 0.0 + g: 0.366520882 + r: 0.7058823 +ContainedObjects: +- !include "Bag Return to the Night of the Zealot a96b23/Deck The Devourer\u2019s\ + \ Cult 3b27a7.yaml" +- !include 'Bag Return to the Night of the Zealot a96b23/Deck Return to The Gathering + e0dc47.yaml' +- !include 'Bag Return to the Night of the Zealot a96b23/Deck Return to The Midnight + Masks b5830a.yaml' +- !include 'Bag Return to the Night of the Zealot a96b23/Deck Return to The Devourer + Below be5d70.yaml' +- !include "Bag Return to the Night of the Zealot a96b23/Deck Return to Cult of Um\xF4\ + rdhoth 76315c.yaml" +- !include "Bag Return to the Night of the Zealot a96b23/Deck Ghouls of Um\xF4rdhoth\ + \ 97ba27.yaml" +Description: '' +GMNotes: '' +GUID: a96b23 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +MeshIndex: -1 +Name: Bag +Nickname: Return to the Night of the Zealot +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.6670847 + posY: 3.30543327 + posZ: -21.6015568 + rotX: 2.03034163 + rotY: 0.0448092781 + rotZ: 1.82281768 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag CoreNight of the Zealot 1e5dca/Bag Return to the Night of the Zealot a96b23/Deck Ghouls of Umôrdhoth 97ba27.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag CoreNight of the Zealot 1e5dca/Bag Return to the Night of the Zealot a96b23/Deck Ghouls of Umôrdhoth 97ba27.yaml new file mode 100644 index 000000000..186bdcc64 --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag CoreNight of the Zealot 1e5dca/Bag Return to the Night of the Zealot a96b23/Deck Ghouls of Umôrdhoth 97ba27.yaml @@ -0,0 +1,344 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 231739 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 5b4ef3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Chill from Below + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -25.5324268 + posY: 1.59864092 + posZ: 33.35978 + rotX: 359.920135 + rotY: 269.999817 + rotZ: 0.0168426409 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231739 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: fa916a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Chill from Below + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -25.095953 + posY: 1.76498652 + posZ: 33.6871719 + rotX: 359.9181 + rotY: 269.999878 + rotZ: 0.0131390868 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231739 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 5b4ef3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Chill from Below + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -25.0959339 + posY: 1.77885532 + posZ: 33.68717 + rotX: 359.920319 + rotY: 269.999878 + rotZ: 0.0163987149 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231738 + 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 + UniqueBack: false + Description: Humanoid. Monster. Ghoul. + GMNotes: '' + GUID: cadd49 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: "Acolyte of Um\xF4rdhoth" + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -25.8445168 + posY: 1.59990489 + posZ: 36.2778969 + rotX: 359.920441 + rotY: 269.995728 + rotZ: 0.01474889 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231737 + 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 + UniqueBack: false + Description: Humanoid. Monster. Ghoul. + GMNotes: '' + GUID: ab3719 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Grave-Eater + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -25.9238586 + posY: 1.60099757 + posZ: 39.56222 + rotX: 359.9203 + rotY: 270.005859 + rotZ: 0.0158384759 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231737 + 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 + UniqueBack: false + Description: Humanoid. Monster. Ghoul. + GMNotes: '' + GUID: 4d726b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Grave-Eater + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -26.18154 + posY: 1.76863384 + posZ: 39.29493 + rotX: 359.92218 + rotY: 270.005859 + rotZ: 0.0167646986 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231737 + 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 + UniqueBack: false + Description: Humanoid. Monster. Ghoul. + GMNotes: '' + GUID: ab3719 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Grave-Eater + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -26.055315 + posY: 1.78233588 + posZ: 39.3050423 + rotX: 359.920074 + rotY: 270.005859 + rotZ: 0.0165559836 + 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 + UniqueBack: false +DeckIDs: +- 231739 +- 231739 +- 231739 +- 231738 +- 231737 +- 231737 +- 231737 +Description: '' +GMNotes: '' +GUID: 97ba27 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: "Ghouls of Um\xF4rdhoth" +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 15.9257822 + posY: 3.612495 + posZ: -6.579229 + rotX: 359.920135 + rotY: 269.999756 + rotZ: 0.016875945 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag CoreNight of the Zealot 1e5dca/Bag Return to the Night of the Zealot a96b23/Deck Return to Cult of Umôrdhoth 76315c.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag CoreNight of the Zealot 1e5dca/Bag Return to the Night of the Zealot a96b23/Deck Return to Cult of Umôrdhoth 76315c.yaml new file mode 100644 index 000000000..4603c3384 --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag CoreNight of the Zealot 1e5dca/Bag Return to the Night of the Zealot a96b23/Deck Return to Cult of Umôrdhoth 76315c.yaml @@ -0,0 +1,172 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 231745 + 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 + UniqueBack: false + Description: The Inquisitive Historian + GMNotes: '' + GUID: 2f6d5c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Alma Hill + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -26.8877316 + posY: 1.60149372 + posZ: 36.9405861 + rotX: 359.9215 + rotY: 269.9995 + rotZ: 0.0105527695 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231744 + 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 + UniqueBack: false + Description: The Crooked Cop + GMNotes: '' + GUID: 33870a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Billy Cooper + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -26.5962849 + posY: 1.74649262 + posZ: 36.55487 + rotX: 359.927429 + rotY: 270.000427 + rotZ: 0.009708078 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231743 + 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 + UniqueBack: false + Description: Your Next-Door Neighbor + GMNotes: '' + GUID: ab3719 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Jeremiah Pierce + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 7.54655933 + posY: 1.70176232 + posZ: -12.9934 + rotX: 359.936829 + rotY: 269.999847 + rotZ: 0.0135993231 + 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 + UniqueBack: false +DeckIDs: +- 231745 +- 231744 +- 231743 +Description: '' +GMNotes: '' +GUID: 76315c +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: "Return to Cult of Um\xF4rdhoth" +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 16.3929939 + posY: 3.60913372 + posZ: -2.23623347 + rotX: 359.920135 + rotY: 269.999481 + rotZ: 0.0168775953 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag CoreNight of the Zealot 1e5dca/Bag Return to the Night of the Zealot a96b23/Deck Return to The Devourer Below be5d70.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag CoreNight of the Zealot 1e5dca/Bag Return to the Night of the Zealot a96b23/Deck Return to The Devourer Below be5d70.yaml new file mode 100644 index 000000000..4435d2330 --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag CoreNight of the Zealot 1e5dca/Bag Return to the Night of the Zealot a96b23/Deck Return to The Devourer Below be5d70.yaml @@ -0,0 +1,358 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 231736 + 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 + UniqueBack: false + Description: Power. + GMNotes: '' + GUID: ab3719 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: "Um\xF4rdhoth's Hunger" + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -26.140295 + posY: 1.5992924 + posZ: 32.7183762 + rotX: 359.9202 + rotY: 269.999939 + rotZ: 0.01639921 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231736 + 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 + UniqueBack: false + Description: Power. + GMNotes: '' + GUID: 98c183 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: "Um\xF4rdhoth's Hunger" + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -26.29436 + posY: 1.76654232 + posZ: 32.8062363 + rotX: 359.9221 + rotY: 269.999939 + rotZ: 0.01437897 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232339 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2323': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775106514377430450/FDA37585F019D453CF383D975CF1AB631ECF64B7/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377431393/4752E394498B81694A370AA6BB05BC5A4E55FD30/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Woods. + GMNotes: '' + GUID: 3b4a5f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Arkham Woods + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -20.8594189 + posY: 1.75711572 + posZ: 30.99056 + rotX: 359.92 + rotY: 270.000031 + rotZ: 180.01741 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232338 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2323': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775106514377430450/FDA37585F019D453CF383D975CF1AB631ECF64B7/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377431393/4752E394498B81694A370AA6BB05BC5A4E55FD30/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Woods. + GMNotes: '' + GUID: 9b6b06 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Arkham Woods + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -20.6763287 + posY: 1.74325371 + posZ: 31.0127888 + rotX: 359.922882 + rotY: 269.9976 + rotZ: 180.021347 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232337 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2323': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775106514377430450/FDA37585F019D453CF383D975CF1AB631ECF64B7/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377431393/4752E394498B81694A370AA6BB05BC5A4E55FD30/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Woods. + GMNotes: '' + GUID: 9fa651 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Arkham Woods + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -20.8876648 + posY: 1.75713265 + posZ: 30.7758026 + rotX: 359.918121 + rotY: 270.000061 + rotZ: 180.01915 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232336 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2323': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775106514377430450/FDA37585F019D453CF383D975CF1AB631ECF64B7/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377431393/4752E394498B81694A370AA6BB05BC5A4E55FD30/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Woods. + GMNotes: '' + GUID: 0223a4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Arkham Woods + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -20.6715221 + posY: 1.7499963 + posZ: 30.9510384 + rotX: 359.957062 + rotY: 269.971375 + rotZ: 180.013443 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232121 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2321': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775106514377428854/F01972D15C2B4CFCB8CA72006B7E00D243683AFA/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377429266/856DF4A8D87D7B6CB71572D20908D35F4182AC45/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Return to The Devourer Below + GMNotes: '' + GUID: c15c8a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Setup + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 6.941273 + posY: 1.6956284 + posZ: -9.190206 + rotX: 359.927124 + rotY: 269.9743 + rotZ: 0.020415796 + 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 + UniqueBack: false + '2321': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775106514377428854/F01972D15C2B4CFCB8CA72006B7E00D243683AFA/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377429266/856DF4A8D87D7B6CB71572D20908D35F4182AC45/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + '2323': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775106514377430450/FDA37585F019D453CF383D975CF1AB631ECF64B7/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377431393/4752E394498B81694A370AA6BB05BC5A4E55FD30/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 231736 +- 231736 +- 232339 +- 232338 +- 232337 +- 232336 +- 232121 +Description: '' +GMNotes: '' +GUID: be5d70 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Return to The Devourer Below +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 24.769558 + posY: 3.59929657 + posZ: -9.52978 + rotX: 359.920135 + rotY: 269.989929 + rotZ: 0.0168906655 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag CoreNight of the Zealot 1e5dca/Bag Return to the Night of the Zealot a96b23/Deck Return to The Gathering e0dc47.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag CoreNight of the Zealot 1e5dca/Bag Return to the Night of the Zealot a96b23/Deck Return to The Gathering e0dc47.yaml new file mode 100644 index 000000000..d18cfa685 --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag CoreNight of the Zealot 1e5dca/Bag Return to the Night of the Zealot a96b23/Deck Return to The Gathering e0dc47.yaml @@ -0,0 +1,709 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 231749 + 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 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: 891dd5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Zealot's Seal + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -24.9986839 + posY: 1.76613092 + posZ: 29.5493069 + rotX: 359.922241 + rotY: 270.000183 + rotZ: 180.01796 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231749 + 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 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: ab3719 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Zealot's Seal + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -25.0776443 + posY: 1.59972811 + posZ: 29.644537 + rotX: 359.9202 + rotY: 270.000244 + rotZ: 180.0174 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231748 + 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 + UniqueBack: false + Description: Humanoid. Monster. Ghoul. + GMNotes: '' + GUID: b29f35 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ghoul from the Depths + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -26.28309 + posY: 1.76587307 + posZ: 37.53138 + rotX: 359.937531 + rotY: 269.999878 + rotZ: 180.015259 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231747 + 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 + UniqueBack: false + Description: Humanoid. Monster. Ghoul. + GMNotes: '' + GUID: 832d7e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Corpse-Hungry Ghoul + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -26.24879 + posY: 1.76663435 + posZ: 36.66365 + rotX: 359.935333 + rotY: 270.0 + rotZ: 180.018082 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232340 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2323': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775106514377430450/FDA37585F019D453CF383D975CF1AB631ECF64B7/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377431393/4752E394498B81694A370AA6BB05BC5A4E55FD30/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 377b20 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Deep Below Your House + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -26.4154148 + posY: 1.74184644 + posZ: 37.4954376 + rotX: 359.930969 + rotY: 270.003357 + rotZ: 180.0163 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232331 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2323': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775106514377430450/FDA37585F019D453CF383D975CF1AB631ECF64B7/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377431393/4752E394498B81694A370AA6BB05BC5A4E55FD30/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 377b20 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Cellar + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -25.656002 + posY: 1.731064 + posZ: 37.1579742 + rotX: 359.936249 + rotY: 270.000031 + rotZ: 180.01503 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232330 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2323': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775106514377430450/FDA37585F019D453CF383D975CF1AB631ECF64B7/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377431393/4752E394498B81694A370AA6BB05BC5A4E55FD30/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 377b20 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Far Above Your House + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -26.1936245 + posY: 1.72179663 + posZ: 36.9251175 + rotX: 359.913483 + rotY: 269.99295 + rotZ: 180.020172 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232329 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2323': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775106514377430450/FDA37585F019D453CF383D975CF1AB631ECF64B7/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377431393/4752E394498B81694A370AA6BB05BC5A4E55FD30/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 377b20 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Attic + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -25.9909515 + posY: 1.76455116 + posZ: 37.4831924 + rotX: 359.9138 + rotY: 270.002258 + rotZ: 180.020279 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232328 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2323': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775106514377430450/FDA37585F019D453CF383D975CF1AB631ECF64B7/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377431393/4752E394498B81694A370AA6BB05BC5A4E55FD30/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 377b20 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Hole in the Wall + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -25.7835369 + posY: 1.758211 + posZ: 37.00284 + rotX: 359.9132 + rotY: 270.0019 + rotZ: 179.6548 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232327 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2323': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775106514377430450/FDA37585F019D453CF383D975CF1AB631ECF64B7/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377431393/4752E394498B81694A370AA6BB05BC5A4E55FD30/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 377b20 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Bathroom + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -25.9573555 + posY: 1.75305724 + posZ: 36.96293 + rotX: 359.922729 + rotY: 270.015045 + rotZ: 180.010315 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232326 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2323': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775106514377430450/FDA37585F019D453CF383D975CF1AB631ECF64B7/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377431393/4752E394498B81694A370AA6BB05BC5A4E55FD30/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 377b20 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Bedroom + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -26.357275 + posY: 1.75112867 + posZ: 38.06472 + rotX: 359.9188 + rotY: 269.983582 + rotZ: 180.008072 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232325 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2323': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775106514377430450/FDA37585F019D453CF383D975CF1AB631ECF64B7/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377431393/4752E394498B81694A370AA6BB05BC5A4E55FD30/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 377b20 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Guest Hall + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -26.0496979 + posY: 1.752602 + posZ: 37.24261 + rotX: 359.920746 + rotY: 270.0069 + rotZ: 180.013031 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232324 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2323': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775106514377430450/FDA37585F019D453CF383D975CF1AB631ECF64B7/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377431393/4752E394498B81694A370AA6BB05BC5A4E55FD30/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Aberrant Gateway + GMNotes: '' + GUID: 377b20 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Study + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -25.6980343 + posY: 1.76572263 + posZ: 37.2315826 + rotX: 359.9381 + rotY: 270.002625 + rotZ: 180.01265 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232419 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2324': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775106514377428854/F01972D15C2B4CFCB8CA72006B7E00D243683AFA/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377429266/856DF4A8D87D7B6CB71572D20908D35F4182AC45/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 1 + GMNotes: '' + GUID: fba792 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Mysterious Gateway + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -26.233408 + posY: 1.76482391 + posZ: 37.2591362 + rotX: 359.918762 + rotY: 270.000061 + rotZ: 180.021347 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232118 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2321': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775106514377428854/F01972D15C2B4CFCB8CA72006B7E00D243683AFA/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377429266/856DF4A8D87D7B6CB71572D20908D35F4182AC45/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Return to The Gathering + GMNotes: '' + GUID: 5229a9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Setup + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -26.3017559 + posY: 1.60375333 + posZ: 37.48812 + rotX: 359.920135 + rotY: 270.000061 + rotZ: 180.016815 + 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 + UniqueBack: false + '2321': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775106514377428854/F01972D15C2B4CFCB8CA72006B7E00D243683AFA/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377429266/856DF4A8D87D7B6CB71572D20908D35F4182AC45/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + '2323': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775106514377430450/FDA37585F019D453CF383D975CF1AB631ECF64B7/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377431393/4752E394498B81694A370AA6BB05BC5A4E55FD30/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + '2324': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775106514377428854/F01972D15C2B4CFCB8CA72006B7E00D243683AFA/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377429266/856DF4A8D87D7B6CB71572D20908D35F4182AC45/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 231749 +- 231749 +- 231748 +- 231747 +- 232340 +- 232331 +- 232330 +- 232329 +- 232328 +- 232327 +- 232326 +- 232325 +- 232324 +- 232419 +- 232118 +Description: '' +GMNotes: '' +GUID: e0dc47 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Return to The Gathering +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 24.6538963 + posY: 3.61014652 + posZ: -2.248412 + rotX: 359.920135 + rotY: 269.999756 + rotZ: 0.01687776 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag CoreNight of the Zealot 1e5dca/Bag Return to the Night of the Zealot a96b23/Deck Return to The Midnight Masks b5830a.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag CoreNight of the Zealot 1e5dca/Bag Return to the Night of the Zealot a96b23/Deck Return to The Midnight Masks b5830a.yaml new file mode 100644 index 000000000..0e3e1809f --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag CoreNight of the Zealot 1e5dca/Bag Return to the Night of the Zealot a96b23/Deck Return to The Midnight Masks b5830a.yaml @@ -0,0 +1,401 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 231746 + 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 + UniqueBack: false + Description: Power. Scheme. + GMNotes: '' + GUID: ef3cf9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Masked Horrors + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -26.9359112 + posY: 1.59929585 + posZ: 29.0588 + rotX: 359.920441 + rotY: 269.9997 + rotZ: 0.0146246338 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231746 + 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 + UniqueBack: false + Description: Power. Scheme. + GMNotes: '' + GUID: 912e54 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Masked Horrors + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -27.1162529 + posY: 1.75548923 + posZ: 29.067585 + rotX: 359.960449 + rotY: 270.000641 + rotZ: 0.002379581 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232335 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2323': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775106514377430450/FDA37585F019D453CF383D975CF1AB631ECF64B7/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377431393/4752E394498B81694A370AA6BB05BC5A4E55FD30/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Arkham. Central. + GMNotes: '' + GUID: 86b480 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Rivertown + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -17.4028664 + posY: 1.7384001 + posZ: 27.7599049 + rotX: 359.9198 + rotY: 270.000854 + rotZ: 180.018814 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232334 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2323': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775106514377430450/FDA37585F019D453CF383D975CF1AB631ECF64B7/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377431393/4752E394498B81694A370AA6BB05BC5A4E55FD30/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Arkham. + GMNotes: '' + GUID: cedb0a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Miskatonic University + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -16.9118786 + posY: 1.73485565 + posZ: 27.0930462 + rotX: 359.91745 + rotY: 269.998322 + rotZ: 180.022644 + 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: http://cloud-3.steamusercontent.com/ugc/775106514377430450/FDA37585F019D453CF383D975CF1AB631ECF64B7/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377431393/4752E394498B81694A370AA6BB05BC5A4E55FD30/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Arkham. + GMNotes: '' + GUID: 86faac + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Northside + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -17.2704449 + posY: 1.73728836 + posZ: 26.9211063 + rotX: 359.9186 + rotY: 269.984924 + rotZ: 180.003357 + 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: http://cloud-3.steamusercontent.com/ugc/775106514377430450/FDA37585F019D453CF383D975CF1AB631ECF64B7/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377431393/4752E394498B81694A370AA6BB05BC5A4E55FD30/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Arkham. + GMNotes: '' + GUID: 377b20 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Easttown + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -17.6456852 + posY: 1.7515465 + posZ: 27.35971 + rotX: 359.918732 + rotY: 270.001343 + rotZ: 180.018585 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232122 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2321': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775106514377428854/F01972D15C2B4CFCB8CA72006B7E00D243683AFA/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377429266/856DF4A8D87D7B6CB71572D20908D35F4182AC45/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 1 + GMNotes: '' + GUID: a22908 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Predator or Prey? + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -17.5006371 + posY: 1.73366737 + posZ: 27.4622269 + rotX: 359.957947 + rotY: 270.048828 + rotZ: 180.01265 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232120 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2321': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775106514377428854/F01972D15C2B4CFCB8CA72006B7E00D243683AFA/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377429266/856DF4A8D87D7B6CB71572D20908D35F4182AC45/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Return to The Midnight Masks + GMNotes: '' + GUID: 250d52 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Setup + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -17.3230667 + posY: 1.58814669 + posZ: 27.514698 + rotX: 359.9238 + rotY: 270.015259 + rotZ: 180.016815 + 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 + UniqueBack: false + '2321': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775106514377428854/F01972D15C2B4CFCB8CA72006B7E00D243683AFA/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377429266/856DF4A8D87D7B6CB71572D20908D35F4182AC45/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + '2323': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775106514377430450/FDA37585F019D453CF383D975CF1AB631ECF64B7/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377431393/4752E394498B81694A370AA6BB05BC5A4E55FD30/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 231746 +- 231746 +- 232335 +- 232334 +- 232333 +- 232332 +- 232122 +- 232120 +Description: '' +GMNotes: '' +GUID: b5830a +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Return to The Midnight Masks +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 24.8762321 + posY: 3.57834625 + posZ: -6.243776 + rotX: 359.920135 + rotY: 269.984924 + rotZ: 0.0168981627 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag CoreNight of the Zealot 1e5dca/Bag Return to the Night of the Zealot a96b23/Deck The Devourer’s Cult 3b27a7.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag CoreNight of the Zealot 1e5dca/Bag Return to the Night of the Zealot a96b23/Deck The Devourer’s Cult 3b27a7.yaml new file mode 100644 index 000000000..0d62d3543 --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag CoreNight of the Zealot 1e5dca/Bag Return to the Night of the Zealot a96b23/Deck The Devourer’s Cult 3b27a7.yaml @@ -0,0 +1,301 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 231742 + 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 + UniqueBack: false + Description: Item. Mask. + GMNotes: '' + GUID: 7b7c88 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: "Mask of Um\xF4rdhoth" + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -27.3313046 + posY: 1.60303676 + posZ: 40.0525627 + rotX: 359.919617 + rotY: 269.972717 + rotZ: 0.0103522725 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231742 + 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 + UniqueBack: false + Description: Item. Mask. + GMNotes: '' + GUID: 62b6cd + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: "Mask of Um\xF4rdhoth" + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -27.2997189 + posY: 1.748332 + posZ: 39.7179947 + rotX: 359.942841 + rotY: 270.004272 + rotZ: 0.00302965054 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231741 + 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 + UniqueBack: false + Description: Monster. Servitor. Cultist. + GMNotes: '' + GUID: 53b9cb + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Corpse-Taker + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -27.2525177 + posY: 1.76590574 + posZ: 39.58632 + rotX: 359.924469 + rotY: 270.042847 + rotZ: 359.986053 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231740 + 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 + UniqueBack: false + Description: Humanoid. Cultist. + GMNotes: '' + GUID: ab3719 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Disciple of the Devourer + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -26.841526 + posY: 1.60154414 + posZ: 37.0518341 + rotX: 359.9202 + rotY: 270.005066 + rotZ: 0.0162651874 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231740 + 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 + UniqueBack: false + Description: Humanoid. Cultist. + GMNotes: '' + GUID: 0abaca + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Disciple of the Devourer + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -27.3358841 + posY: 1.76970363 + posZ: 37.12298 + rotX: 359.9229 + rotY: 270.005157 + rotZ: 0.0140643651 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231740 + 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 + UniqueBack: false + Description: Humanoid. Cultist. + GMNotes: '' + GUID: ab3719 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Disciple of the Devourer + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -27.0939522 + posY: 1.78332663 + posZ: 37.4462624 + rotX: 359.919922 + rotY: 270.005157 + rotZ: 0.01614685 + 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 + UniqueBack: false +DeckIDs: +- 231742 +- 231742 +- 231741 +- 231740 +- 231740 +- 231740 +Description: '' +GMNotes: '' +GUID: 3b27a7 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: "The Devourer\u2019s Cult" +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 16.016861 + posY: 3.613706 + posZ: -10.4278536 + rotX: 0.2028314 + rotY: 270.012268 + rotZ: 359.930023 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag CoreNight of the Zealot 1e5dca/Deck Agents of Cthulhu a827f1.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag CoreNight of the Zealot 1e5dca/Deck Agents of Cthulhu a827f1.yaml new file mode 100644 index 000000000..917e2dd08 --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag CoreNight of the Zealot 1e5dca/Deck Agents of Cthulhu a827f1.yaml @@ -0,0 +1,215 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 231735 + 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 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: 796db7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dreams of R'lyeh + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -21.18895 + posY: 1.5854075 + posZ: 8.96069 + rotX: 359.920074 + rotY: 270.000061 + rotZ: 0.0172643047 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231735 + 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 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: 47ed9e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dreams of R'lyeh + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -21.0872536 + posY: 1.74957943 + posZ: 9.398701 + rotX: 359.9174 + rotY: 270.000061 + rotZ: 0.009243452 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231734 + 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 + UniqueBack: false + Description: Humanoid. Monster. Deep One. + GMNotes: '' + GUID: ab3719 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Young Deep One + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -21.4079018 + posY: 1.5847317 + posZ: 5.77563953 + rotX: 359.9205 + rotY: 269.997864 + rotZ: 0.0144211389 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231734 + 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 + UniqueBack: false + Description: Humanoid. Monster. Deep One. + GMNotes: '' + GUID: cfd69a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Young Deep One + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -21.3780651 + posY: 1.740191 + posZ: 5.657522 + rotX: 359.926422 + rotY: 269.997955 + rotZ: 0.009787786 + 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 + UniqueBack: false +DeckIDs: +- 231735 +- 231735 +- 231734 +- 231734 +Description: '' +GMNotes: '' +GUID: a827f1 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: "\tAgents of Cthulhu" +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.09280562 + posY: 3.61682248 + posZ: -34.91625 + rotX: 359.920135 + rotY: 270.000183 + rotZ: 0.0168771166 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag CoreNight of the Zealot 1e5dca/Deck Agents of Hastur 766175.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag CoreNight of the Zealot 1e5dca/Deck Agents of Hastur 766175.yaml new file mode 100644 index 000000000..068c93f46 --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag CoreNight of the Zealot 1e5dca/Deck Agents of Hastur 766175.yaml @@ -0,0 +1,215 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 231729 + 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 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: 4cf636 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Yellow Sign + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -18.2012749 + posY: 1.58148372 + posZ: 10.016777 + rotX: 359.920746 + rotY: 269.996552 + rotZ: 0.0126871429 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231729 + 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 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: 74a845 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Yellow Sign + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -18.39433 + posY: 1.745 + posZ: 9.752235 + rotX: 359.928131 + rotY: 269.996552 + rotZ: 0.0164207779 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231728 + 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 + UniqueBack: false + Description: Monster. Byakhee. + GMNotes: '' + GUID: ab3719 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Screeching Byakhee + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -18.9733372 + posY: 1.58185852 + posZ: 7.530837 + rotX: 359.920441 + rotY: 269.999878 + rotZ: 0.0146859353 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231728 + 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 + UniqueBack: false + Description: Monster. Byakhee. + GMNotes: '' + GUID: 6fc5fa + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Screeching Byakhee + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -18.7373314 + posY: 1.73706949 + posZ: 7.34839153 + rotX: 359.923981 + rotY: 269.9999 + rotZ: 0.0115116611 + 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 + UniqueBack: false +DeckIDs: +- 231729 +- 231729 +- 231728 +- 231728 +Description: '' +GMNotes: '' +GUID: '766175' +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Agents of Hastur +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.108752 + posY: 3.61952662 + posZ: -25.8084984 + rotX: 359.920135 + rotY: 269.995239 + rotZ: 0.0168832354 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag CoreNight of the Zealot 1e5dca/Deck Agents of Shub-Niggurath 0258ff.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag CoreNight of the Zealot 1e5dca/Deck Agents of Shub-Niggurath 0258ff.yaml new file mode 100644 index 000000000..610cb8e20 --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag CoreNight of the Zealot 1e5dca/Deck Agents of Shub-Niggurath 0258ff.yaml @@ -0,0 +1,215 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 231733 + 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 + UniqueBack: false + Description: Humanoid. Monster. + GMNotes: '' + GUID: e4ae63 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Goat Spawn + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -21.0514832 + posY: 1.58367968 + posZ: 3.80302978 + rotX: 359.920227 + rotY: 269.995728 + rotZ: 0.0161432624 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231733 + 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 + UniqueBack: false + Description: Humanoid. Monster. + GMNotes: '' + GUID: 3f2e83 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Goat Spawn + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -21.3775539 + posY: 1.74800014 + posZ: 3.76909566 + rotX: 359.921448 + rotY: 269.9958 + rotZ: 0.01241914 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231733 + 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 + UniqueBack: false + Description: Humanoid. Monster. + GMNotes: '' + GUID: e4ae63 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Goat Spawn + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -21.3775349 + posY: 1.76184154 + posZ: 3.76909184 + rotX: 359.92215 + rotY: 269.9958 + rotZ: 0.0164589938 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231732 + 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 + UniqueBack: false + Description: Monster. Dark Young. + GMNotes: '' + GUID: ab3719 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Relentless Dark Young + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -21.1681347 + posY: 1.73308969 + posZ: 3.68174171 + rotX: 359.919647 + rotY: 269.996674 + rotZ: 0.0130278058 + 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 + UniqueBack: false +DeckIDs: +- 231733 +- 231733 +- 231733 +- 231732 +Description: '' +GMNotes: '' +GUID: 0258ff +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Agents of Shub-Niggurath +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.25467467 + posY: 3.61781 + posZ: -32.3301849 + rotX: 359.920135 + rotY: 269.998718 + rotZ: 0.0168791637 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag CoreNight of the Zealot 1e5dca/Deck Agents of Yog-Sothoth 3a7f8d.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag CoreNight of the Zealot 1e5dca/Deck Agents of Yog-Sothoth 3a7f8d.yaml new file mode 100644 index 000000000..ac921b855 --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag CoreNight of the Zealot 1e5dca/Deck Agents of Yog-Sothoth 3a7f8d.yaml @@ -0,0 +1,215 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 231731 + 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 + UniqueBack: false + Description: Pact. + GMNotes: '' + GUID: ad01d5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Offer of Power + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -20.624012 + posY: 1.58353865 + posZ: 5.391288 + rotX: 359.92038 + rotY: 270.0011 + rotZ: 0.0152683891 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231731 + 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 + UniqueBack: false + Description: Pact. + GMNotes: '' + GUID: 1e4b6f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Offer of Power + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -21.1143684 + posY: 1.74799216 + posZ: 5.51088 + rotX: 359.927856 + rotY: 270.00116 + rotZ: 0.008664682 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231730 + 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 + UniqueBack: false + Description: Monster. Yithian. + GMNotes: '' + GUID: ab3719 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Yithian Observer + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -20.7980976 + posY: 1.58471787 + posZ: 8.655001 + rotX: 359.9206 + rotY: 270.001221 + rotZ: 0.0136531973 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231730 + 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 + UniqueBack: false + Description: Monster. Yithian. + GMNotes: '' + GUID: 4c04b5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Yithian Observer + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -21.04713 + posY: 1.74898231 + posZ: 8.319516 + rotX: 359.925964 + rotY: 270.001221 + rotZ: 0.0171930045 + 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 + UniqueBack: false +DeckIDs: +- 231731 +- 231731 +- 231730 +- 231730 +Description: '' +GMNotes: '' +GUID: 3a7f8d +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: "\tAgents of Yog-Sothoth" +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.15071654 + posY: 3.61863446 + posZ: -29.0375671 + rotX: 359.920135 + rotY: 270.000916 + rotZ: 0.0168758761 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag CoreNight of the Zealot 1e5dca/Deck Ancient Evils 556e96.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag CoreNight of the Zealot 1e5dca/Deck Ancient Evils 556e96.yaml new file mode 100644 index 000000000..d6bd22d0e --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag CoreNight of the Zealot 1e5dca/Deck Ancient Evils 556e96.yaml @@ -0,0 +1,172 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- 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 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: 6e7cb8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: 8af879 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: 6e7cb8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' +CustomDeck: + '2317': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 231719 +- 231719 +- 231719 +Description: '' +GMNotes: '' +GUID: 556e96 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Ancient Evils +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 1.578809 + posY: 3.61553669 + posZ: -22.2695885 + rotX: 359.920135 + rotY: 270.00116 + rotZ: 0.0168756675 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag CoreNight of the Zealot 1e5dca/Deck Chilling Cold c554c9.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag CoreNight of the Zealot 1e5dca/Deck Chilling Cold c554c9.yaml new file mode 100644 index 000000000..204bb467c --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag CoreNight of the Zealot 1e5dca/Deck Chilling Cold c554c9.yaml @@ -0,0 +1,215 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- 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 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: 50e716 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: c4ce76 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: ab3719 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: 16d6d6 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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 + UniqueBack: false +DeckIDs: +- 231721 +- 231721 +- 231720 +- 231720 +Description: '' +GMNotes: '' +GUID: c554c9 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Chilling Cold +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 1.38551068 + posY: 3.61303115 + posZ: -26.5898018 + rotX: 359.920135 + rotY: 269.9995 + rotZ: 0.01687757 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag CoreNight of the Zealot 1e5dca/Deck Cult of Umôrdhoth c16e6d.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag CoreNight of the Zealot 1e5dca/Deck Cult of Umôrdhoth c16e6d.yaml new file mode 100644 index 000000000..50a768798 --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag CoreNight of the Zealot 1e5dca/Deck Cult of Umôrdhoth c16e6d.yaml @@ -0,0 +1,258 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 231709 + 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 + UniqueBack: false + Description: The Mortician + GMNotes: '' + GUID: ab3719 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ruth Turner + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -6.18538 + posY: 1.72525084 + posZ: -7.613346 + rotX: 359.936371 + rotY: 270.0 + rotZ: 180.013824 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231708 + 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 + UniqueBack: false + Description: The Collector + GMNotes: '' + GUID: ec86a2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Victoria Devereux + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -6.151805 + posY: 1.71143651 + posZ: -8.111477 + rotX: 359.944366 + rotY: 270.016357 + rotZ: 180.000565 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231707 + 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 + UniqueBack: false + Description: The Occult Professor + GMNotes: '' + GUID: ad2df0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Peter Warren + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -6.05293274 + posY: 1.72509432 + posZ: -7.78916073 + rotX: 359.937225 + rotY: 269.999817 + rotZ: 180.015381 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231706 + 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 + UniqueBack: false + Description: The Undertaker + GMNotes: '' + GUID: a12fd2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Herman Collins + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -5.95645571 + posY: 1.70735312 + posZ: -8.194746 + rotX: 359.924164 + rotY: 269.999878 + rotZ: 180.026428 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231705 + 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 + UniqueBack: false + Description: The Cannibal + GMNotes: '' + GUID: ab3719 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '"Wolf-Man" Drew' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -6.351678 + posY: 1.56253266 + posZ: -7.93774748 + rotX: 359.92038 + rotY: 269.999969 + rotZ: 180.018967 + 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 + UniqueBack: false +DeckIDs: +- 231709 +- 231708 +- 231707 +- 231706 +- 231705 +Description: '' +GMNotes: '' +GUID: c16e6d +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: "Cult of Um\xF4rdhoth" +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 5.96478653 + posY: 3.60882521 + posZ: -22.0143681 + rotX: 359.920135 + rotY: 269.999146 + rotZ: 0.0168780871 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag CoreNight of the Zealot 1e5dca/Deck Dark Cult 5c9bbb.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag CoreNight of the Zealot 1e5dca/Deck Dark Cult 5c9bbb.yaml new file mode 100644 index 000000000..4ba62e13e --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag CoreNight of the Zealot 1e5dca/Deck Dark Cult 5c9bbb.yaml @@ -0,0 +1,301 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- 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 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: d63054 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Mysterious Chanting + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -14.9937792 + posY: 1.57623422 + posZ: 7.191085 + rotX: 359.920227 + rotY: 270.005066 + rotZ: 0.01624975 + 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 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: b347d1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Mysterious Chanting + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -15.1765862 + posY: 1.7388649 + posZ: 7.12856245 + rotX: 359.9205 + rotY: 270.005066 + rotZ: 0.011837706 + 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 + UniqueBack: false + Description: Humanoid. Cultist. + GMNotes: '' + GUID: d36612 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Wizard of the Order + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -15.1335211 + posY: 1.7306242 + posZ: 15.1695614 + rotX: 359.933441 + rotY: 269.998932 + rotZ: 180.028931 + 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 + UniqueBack: false + Description: Humanoid. Cultist. + GMNotes: '' + GUID: 50fdc5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Acolyte + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -15.3295956 + posY: 1.62976587 + posZ: 15.9645061 + rotX: 0.0716057643 + rotY: 270.000061 + rotZ: 359.982727 + 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 + UniqueBack: false + Description: Humanoid. Cultist. + GMNotes: '' + GUID: 4911f2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Acolyte + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -15.3297215 + posY: 1.77588809 + posZ: 15.9645157 + rotX: 0.07387834 + rotY: 269.998474 + rotZ: 359.992645 + 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 + UniqueBack: false + Description: Humanoid. Cultist. + GMNotes: '' + GUID: ab3719 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Acolyte + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -15.9929094 + posY: 1.58014917 + posZ: 15.8832378 + rotX: 359.920624 + rotY: 270.0 + rotZ: 0.0137184272 + 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 + UniqueBack: false +DeckIDs: +- 231724 +- 231724 +- 231723 +- 231722 +- 231722 +- 231722 +Description: '' +GMNotes: '' +GUID: 5c9bbb +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Dark Cult +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 6.22870827 + posY: 3.60590386 + posZ: -37.4684677 + rotX: 359.920135 + rotY: 270.000977 + rotZ: 0.0168764852 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag CoreNight of the Zealot 1e5dca/Deck Ghouls 42b819.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag CoreNight of the Zealot 1e5dca/Deck Ghouls 42b819.yaml new file mode 100644 index 000000000..58da39274 --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag CoreNight of the Zealot 1e5dca/Deck Ghouls 42b819.yaml @@ -0,0 +1,344 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 231715 + 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 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: ab3719 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Grasping Hands + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 12.0789223 + posY: 1.538257 + posZ: 6.558776 + rotX: 359.9207 + rotY: 270.0 + rotZ: 0.0130352853 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231715 + 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 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: 272ea4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Grasping Hands + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 11.5948715 + posY: 1.6933527 + posZ: 6.733804 + rotX: 359.940033 + rotY: 270.0 + rotZ: 359.9941 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231715 + 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 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: ab3719 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Grasping Hands + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 11.6057749 + posY: 1.707567 + posZ: 6.731648 + rotX: 359.9248 + rotY: 270.000153 + rotZ: 0.0111529948 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231714 + 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 + UniqueBack: false + Description: Humanoid. Monster. Ghoul. + GMNotes: '' + GUID: 99efa0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ravenous Ghoul + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 11.9229918 + posY: 1.70898592 + posZ: 13.9219513 + rotX: 359.952728 + rotY: 269.999939 + rotZ: 179.966141 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231713 + 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 + UniqueBack: false + Description: Humanoid. Monster. Ghoul. + GMNotes: '' + GUID: b87089 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ghoul Minion + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 12.0413847 + posY: 1.540466 + posZ: 13.7902546 + rotX: 359.920441 + rotY: 270.000244 + rotZ: 0.0148255695 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231713 + 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 + UniqueBack: false + Description: Humanoid. Monster. Ghoul. + GMNotes: '' + GUID: 30bb55 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ghoul Minion + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 11.6936331 + posY: 1.696078 + posZ: 13.6986961 + rotX: 359.923462 + rotY: 270.000183 + rotZ: 0.006271487 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231713 + 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 + UniqueBack: false + Description: Humanoid. Monster. Ghoul. + GMNotes: '' + GUID: b87089 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ghoul Minion + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 11.6935387 + posY: 1.70997131 + posZ: 13.6987247 + rotX: 359.923828 + rotY: 270.0 + rotZ: 0.0162566788 + 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 + UniqueBack: false +DeckIDs: +- 231715 +- 231715 +- 231715 +- 231714 +- 231713 +- 231713 +- 231713 +Description: '' +GMNotes: '' +GUID: 42b819 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Ghouls +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 6.049838 + posY: 3.60986853 + posZ: -33.897377 + rotX: 359.920135 + rotY: 270.0025 + rotZ: 0.0168753117 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag CoreNight of the Zealot 1e5dca/Deck Locked Doors 241430.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag CoreNight of the Zealot 1e5dca/Deck Locked Doors 241430.yaml new file mode 100644 index 000000000..065e3976d --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag CoreNight of the Zealot 1e5dca/Deck Locked Doors 241430.yaml @@ -0,0 +1,129 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- 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 + UniqueBack: false + Description: Obstacle. + GMNotes: '' + GUID: ab3719 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Locked Door + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -17.60739 + posY: 1.58022821 + posZ: 8.422101 + rotX: 359.920349 + rotY: 269.999756 + rotZ: 0.0154577158 + 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 + UniqueBack: false + Description: Obstacle. + GMNotes: '' + GUID: 4904d0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Locked Door + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -18.06458 + posY: 1.74395728 + posZ: 8.675678 + rotX: 359.928467 + rotY: 269.9997 + rotZ: 0.006147271 + 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 + UniqueBack: false +DeckIDs: +- 231727 +- 231727 +Description: '' +GMNotes: '' +GUID: '241430' +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Locked Doors +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.244292 + posY: 3.629646 + posZ: -22.1023064 + rotX: 359.920135 + rotY: 269.999146 + rotZ: 0.0168796778 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag CoreNight of the Zealot 1e5dca/Deck Nightgaunts d1bf92.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag CoreNight of the Zealot 1e5dca/Deck Nightgaunts d1bf92.yaml new file mode 100644 index 000000000..f87accaa6 --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag CoreNight of the Zealot 1e5dca/Deck Nightgaunts d1bf92.yaml @@ -0,0 +1,215 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 231726 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 1e04da + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: On Wings of Darkness + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -13.4282417 + posY: 1.70155811 + posZ: 13.7778349 + rotX: 359.535278 + rotY: 269.9516 + rotZ: 181.449341 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231726 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 1d0c1c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: On Wings of Darkness + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -15.7923059 + posY: 1.73901558 + posZ: 4.52112341 + rotX: 359.919861 + rotY: 269.999969 + rotZ: 0.0123590212 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231725 + 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 + UniqueBack: false + Description: Monster. Nightgaunt. + GMNotes: '' + GUID: ab3719 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Hunting Nightgaunt + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -16.52605 + posY: 1.57874775 + posZ: 8.559591 + rotX: 359.920471 + rotY: 270.0019 + rotZ: 0.0145635763 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231725 + 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 + UniqueBack: false + Description: Monster. Nightgaunt. + GMNotes: '' + GUID: b75b70 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Hunting Nightgaunt + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -13.47085 + posY: 1.72509861 + posZ: 13.60628 + rotX: 359.9252 + rotY: 269.9989 + rotZ: 0.0176846832 + 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 + UniqueBack: false +DeckIDs: +- 231726 +- 231726 +- 231725 +- 231725 +Description: '' +GMNotes: '' +GUID: d1bf92 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Nightgaunts +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 1.223222 + posY: 3.61232638 + posZ: -29.7519264 + rotX: 359.920135 + rotY: 269.998749 + rotZ: 0.01687792 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag CoreNight of the Zealot 1e5dca/Deck Rats 5ac3ab.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag CoreNight of the Zealot 1e5dca/Deck Rats 5ac3ab.yaml new file mode 100644 index 000000000..4d42916d3 --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag CoreNight of the Zealot 1e5dca/Deck Rats 5ac3ab.yaml @@ -0,0 +1,172 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 231712 + 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 + UniqueBack: false + Description: Creature. + GMNotes: '' + GUID: ab3719 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Swarm of Rats + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 15.456192 + posY: 1.53138053 + posZ: -0.8908986 + rotX: 359.92038 + rotY: 270.0 + rotZ: 0.0147123663 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231712 + 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 + UniqueBack: false + Description: Creature. + GMNotes: '' + GUID: a2cf85 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Swarm of Rats + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 15.4186563 + posY: 1.68472993 + posZ: -0.738109052 + rotX: 359.913422 + rotY: 270.000122 + rotZ: 0.0100070881 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231712 + 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 + UniqueBack: false + Description: Creature. + GMNotes: '' + GUID: ab3719 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Swarm of Rats + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 15.4186554 + posY: 1.69875109 + posZ: -0.738129 + rotX: 359.918427 + rotY: 270.0001 + rotZ: 0.0155182732 + 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 + UniqueBack: false +DeckIDs: +- 231712 +- 231712 +- 231712 +Description: '' +GMNotes: '' +GUID: 5ac3ab +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Rats +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 5.788663 + posY: 3.6073246 + posZ: -30.22638 + rotX: 359.920135 + rotY: 269.9936 + rotZ: 0.016886564 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag CoreNight of the Zealot 1e5dca/Deck Striking Fear 041971.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag CoreNight of the Zealot 1e5dca/Deck Striking Fear 041971.yaml new file mode 100644 index 000000000..7da823a03 --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag CoreNight of the Zealot 1e5dca/Deck Striking Fear 041971.yaml @@ -0,0 +1,344 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- 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 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: f5c831 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: 97416f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: 0f4202 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: c70601 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: ab3719 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: 435a47 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: ab3719 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' +CustomDeck: + '2317': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 231718 +- 231718 +- 231717 +- 231717 +- 231716 +- 231716 +- 231716 +Description: '' +GMNotes: '' +GUID: 041971 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Striking Fear +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 5.81803131 + posY: 3.61238432 + posZ: -26.4509926 + rotX: 359.920135 + rotY: 270.000427 + rotZ: 0.0168769732 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag CoreNight of the Zealot 1e5dca/Deck The Devourer Below baa8d5.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag CoreNight of the Zealot 1e5dca/Deck The Devourer Below baa8d5.yaml new file mode 100644 index 000000000..32026932e --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag CoreNight of the Zealot 1e5dca/Deck The Devourer Below baa8d5.yaml @@ -0,0 +1,838 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 231711 + 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 + UniqueBack: false + Description: Curse. + GMNotes: '' + GUID: 085cc8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: "Um\xF4rdhoth's Wrath" + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 8.315365 + posY: 1.54012775 + posZ: -5.05253 + rotX: 359.920319 + rotY: 270.0 + rotZ: 0.0158361159 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231711 + 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 + UniqueBack: false + Description: Curse. + GMNotes: '' + GUID: 48e472 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: "Um\xF4rdhoth's Wrath" + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 8.2302475 + posY: 1.69533885 + posZ: -4.729022 + rotX: 359.916077 + rotY: 269.999969 + rotZ: 0.007268237 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231710 + 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 + UniqueBack: false + Description: The Devourer Below + GMNotes: '' + GUID: ab3719 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: "Um\xF4rdhoth" + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -0.407507628 + posY: 1.75734663 + posZ: -3.922843 + rotX: 359.920074 + rotY: 270.000061 + rotZ: 180.01712 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232323 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2323': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775106514377430450/FDA37585F019D453CF383D975CF1AB631ECF64B7/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377431393/4752E394498B81694A370AA6BB05BC5A4E55FD30/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Cave. + GMNotes: '' + GUID: 372a95 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ritual Site + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -0.06443614 + posY: 1.73152041 + posZ: -4.344178 + rotX: 359.905 + rotY: 269.953979 + rotZ: 180.034363 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232322 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2323': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775106514377430450/FDA37585F019D453CF383D975CF1AB631ECF64B7/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377431393/4752E394498B81694A370AA6BB05BC5A4E55FD30/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Woods. + GMNotes: '' + GUID: e8e04b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Arkham Woods + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 10.7569895 + posY: 1.722977 + posZ: -2.51924181 + rotX: 359.9177 + rotY: 269.989563 + rotZ: 180.028214 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232321 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2323': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775106514377430450/FDA37585F019D453CF383D975CF1AB631ECF64B7/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377431393/4752E394498B81694A370AA6BB05BC5A4E55FD30/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Woods. + GMNotes: '' + GUID: 09c961 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Arkham Woods + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 10.6415157 + posY: 1.78062415 + posZ: -2.06398916 + rotX: 359.920227 + rotY: 270.020172 + rotZ: 176.507629 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232320 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2323': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775106514377430450/FDA37585F019D453CF383D975CF1AB631ECF64B7/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377431393/4752E394498B81694A370AA6BB05BC5A4E55FD30/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Woods. + GMNotes: '' + GUID: 47ac26 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Arkham Woods + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 10.684248 + posY: 1.703691 + posZ: -2.253203 + rotX: 359.921753 + rotY: 270.0052 + rotZ: 180.0202 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232319 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2323': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775106514377430450/FDA37585F019D453CF383D975CF1AB631ECF64B7/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377431393/4752E394498B81694A370AA6BB05BC5A4E55FD30/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Woods. + GMNotes: '' + GUID: 861e20 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Arkham Woods + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 10.2061949 + posY: 1.69457769 + posZ: -2.6297307 + rotX: 359.9186 + rotY: 270.0034 + rotZ: 180.034286 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232318 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2323': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775106514377430450/FDA37585F019D453CF383D975CF1AB631ECF64B7/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377431393/4752E394498B81694A370AA6BB05BC5A4E55FD30/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Woods. + GMNotes: '' + GUID: e90029 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Arkham Woods + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 10.8577566 + posY: 1.684191 + posZ: -2.19907784 + rotX: 359.920319 + rotY: 269.9984 + rotZ: 180.0178 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232317 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2323': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775106514377430450/FDA37585F019D453CF383D975CF1AB631ECF64B7/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377431393/4752E394498B81694A370AA6BB05BC5A4E55FD30/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Woods. + GMNotes: '' + GUID: 377b20 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Arkham Woods + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 10.5786257 + posY: 1.67491961 + posZ: -2.07348537 + rotX: 359.921265 + rotY: 270.0016 + rotZ: 180.018692 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232316 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2323': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775106514377430450/FDA37585F019D453CF383D975CF1AB631ECF64B7/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377431393/4752E394498B81694A370AA6BB05BC5A4E55FD30/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Woods. + GMNotes: '' + GUID: 377b20 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Main Path + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 10.321661 + posY: 1.70174992 + posZ: -2.31707478 + rotX: 359.943268 + rotY: 270.003235 + rotZ: 180.033066 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232417 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2324': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775106514377428854/F01972D15C2B4CFCB8CA72006B7E00D243683AFA/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377429266/856DF4A8D87D7B6CB71572D20908D35F4182AC45/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 3 + GMNotes: '' + GUID: ac3a7b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Disrupting the Ritual + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 14.5040979 + posY: 1.71139824 + posZ: -10.0154972 + rotX: 359.919769 + rotY: 269.985535 + rotZ: 180.017334 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232416 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2324': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775106514377428854/F01972D15C2B4CFCB8CA72006B7E00D243683AFA/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377429266/856DF4A8D87D7B6CB71572D20908D35F4182AC45/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 2 + GMNotes: '' + GUID: ed5537 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Into the Darkness + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 14.5059423 + posY: 1.67822 + posZ: -9.873325 + rotX: 359.910339 + rotY: 269.998962 + rotZ: 180.0225 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232415 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2324': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775106514377428854/F01972D15C2B4CFCB8CA72006B7E00D243683AFA/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377429266/856DF4A8D87D7B6CB71572D20908D35F4182AC45/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 1 + GMNotes: '' + GUID: a57395 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Investigating the Trail + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 14.5592136 + posY: 1.53280115 + posZ: -9.795575 + rotX: 359.920624 + rotY: 270.001129 + rotZ: 180.020279 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232414 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2324': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775106514377428854/F01972D15C2B4CFCB8CA72006B7E00D243683AFA/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377429266/856DF4A8D87D7B6CB71572D20908D35F4182AC45/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 3 + GMNotes: '' + GUID: 76e312 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Vengeance Awaits + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 11.0269623 + posY: 1.68930721 + posZ: -2.00403428 + rotX: 359.939331 + rotY: 270.016 + rotZ: 180.005188 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232413 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2324': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775106514377428854/F01972D15C2B4CFCB8CA72006B7E00D243683AFA/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377429266/856DF4A8D87D7B6CB71572D20908D35F4182AC45/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 2 + GMNotes: '' + GUID: '633954' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Ritual Begins + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 10.9993582 + posY: 1.73368561 + posZ: -2.22433329 + rotX: 1.07850277 + rotY: 269.808533 + rotZ: 180.026947 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232412 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2324': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775106514377428854/F01972D15C2B4CFCB8CA72006B7E00D243683AFA/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377429266/856DF4A8D87D7B6CB71572D20908D35F4182AC45/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 1 + GMNotes: '' + GUID: e352ec + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Arkham Woods + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 11.0696554 + posY: 1.685488 + posZ: -2.170506 + rotX: 359.923065 + rotY: 269.9913 + rotZ: 180.061417 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232111 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2321': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775106514377428854/F01972D15C2B4CFCB8CA72006B7E00D243683AFA/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377429266/856DF4A8D87D7B6CB71572D20908D35F4182AC45/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: The Devourer Below + GMNotes: '' + GUID: a22908 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Scenario + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 10.8387928 + posY: 1.54044628 + posZ: -1.71543372 + rotX: 359.921143 + rotY: 270.011139 + rotZ: 180.015869 + 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 + UniqueBack: false + '2321': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775106514377428854/F01972D15C2B4CFCB8CA72006B7E00D243683AFA/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377429266/856DF4A8D87D7B6CB71572D20908D35F4182AC45/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + '2323': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775106514377430450/FDA37585F019D453CF383D975CF1AB631ECF64B7/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377431393/4752E394498B81694A370AA6BB05BC5A4E55FD30/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + '2324': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775106514377428854/F01972D15C2B4CFCB8CA72006B7E00D243683AFA/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377429266/856DF4A8D87D7B6CB71572D20908D35F4182AC45/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 231711 +- 231711 +- 231710 +- 232323 +- 232322 +- 232321 +- 232320 +- 232319 +- 232318 +- 232317 +- 232316 +- 232417 +- 232416 +- 232415 +- 232414 +- 232413 +- 232412 +- 232111 +Description: '' +GMNotes: '' +GUID: baa8d5 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: The Devourer Below +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 11.4142427 + posY: 3.62528968 + posZ: -29.2660179 + rotX: 359.920135 + rotY: 269.9996 + rotZ: 0.0168800149 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag CoreNight of the Zealot 1e5dca/Deck The Gathering cbc4d9.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag CoreNight of the Zealot 1e5dca/Deck The Gathering cbc4d9.yaml new file mode 100644 index 000000000..16326234d --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag CoreNight of the Zealot 1e5dca/Deck The Gathering cbc4d9.yaml @@ -0,0 +1,759 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 231702 + 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 + UniqueBack: false + Description: Humanoid. Monster. Ghoul. + GMNotes: '' + GUID: ab3719 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Icy Ghoul + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 24.01554 + posY: 1.7029624 + posZ: -20.0565453 + rotX: 359.936523 + rotY: 269.9992 + rotZ: 180.015259 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231701 + 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 + UniqueBack: false + Description: Humanoid. Monster. Ghoul. + GMNotes: '' + GUID: cab587 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Flesh-Eater + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 23.3921852 + posY: 1.69396341 + posZ: -19.4668369 + rotX: 359.933533 + rotY: 269.999756 + rotZ: 180.004822 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231850 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: The Zealot + GMNotes: '' + GUID: af188b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Lita Chantler + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 23.6091518 + posY: 1.69973743 + posZ: -20.2952 + rotX: 359.919739 + rotY: 270.000061 + rotZ: 180.01709 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231700 + 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 + UniqueBack: false + Description: Humanoid. Monster. Ghoul. Elite. + GMNotes: '' + GUID: ab3719 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ghoul Priest + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 23.8412952 + posY: 1.68990159 + posZ: -19.8984184 + rotX: 359.920319 + rotY: 270.0001 + rotZ: 180.01712 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232304 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2323': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775106514377430450/FDA37585F019D453CF383D975CF1AB631ECF64B7/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377431393/4752E394498B81694A370AA6BB05BC5A4E55FD30/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 377b20 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Parlor + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 23.5271778 + posY: 1.66419673 + posZ: -21.14843 + rotX: 359.922882 + rotY: 270.001831 + rotZ: 180.0562 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232303 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2323': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775106514377430450/FDA37585F019D453CF383D975CF1AB631ECF64B7/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377431393/4752E394498B81694A370AA6BB05BC5A4E55FD30/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 377b20 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Cellar + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 23.8649139 + posY: 1.6547395 + posZ: -20.0092659 + rotX: 359.916534 + rotY: 270.082733 + rotZ: 179.962585 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232302 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2323': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775106514377430450/FDA37585F019D453CF383D975CF1AB631ECF64B7/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377431393/4752E394498B81694A370AA6BB05BC5A4E55FD30/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 377b20 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Attic + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 23.4617252 + posY: 1.64577937 + posZ: -20.1371536 + rotX: 359.9181 + rotY: 270.146545 + rotZ: 179.944229 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232301 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2323': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775106514377430450/FDA37585F019D453CF383D975CF1AB631ECF64B7/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377431393/4752E394498B81694A370AA6BB05BC5A4E55FD30/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 377b20 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Hallway + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 23.3495636 + posY: 1.63606048 + posZ: -20.4292583 + rotX: 359.9236 + rotY: 269.9987 + rotZ: 180.021774 + 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: http://cloud-3.steamusercontent.com/ugc/775106514377430450/FDA37585F019D453CF383D975CF1AB631ECF64B7/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377431393/4752E394498B81694A370AA6BB05BC5A4E55FD30/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 377b20 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Study + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 23.754 + posY: 1.64052141 + posZ: -20.2090321 + rotX: 358.2152 + rotY: 270.009521 + rotZ: 179.778412 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232406 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2324': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775106514377428854/F01972D15C2B4CFCB8CA72006B7E00D243683AFA/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377429266/856DF4A8D87D7B6CB71572D20908D35F4182AC45/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 3 + GMNotes: '' + GUID: '633954' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: What Have You Done? + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 23.8977776 + posY: 1.67163956 + posZ: -20.2757854 + rotX: 359.9375 + rotY: 270.000519 + rotZ: 180.014053 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232405 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2324': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775106514377428854/F01972D15C2B4CFCB8CA72006B7E00D243683AFA/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377429266/856DF4A8D87D7B6CB71572D20908D35F4182AC45/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 2 + GMNotes: '' + GUID: '633954' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Barrier + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 23.9939766 + posY: 1.63547218 + posZ: -20.341383 + rotX: 358.1489 + rotY: 269.98407 + rotZ: 180.753708 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232404 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2324': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775106514377428854/F01972D15C2B4CFCB8CA72006B7E00D243683AFA/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377429266/856DF4A8D87D7B6CB71572D20908D35F4182AC45/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 1 + GMNotes: '' + GUID: '633954' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Trapped + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 24.1986656 + posY: 1.66361141 + posZ: -20.22199 + rotX: 359.914764 + rotY: 270.000031 + rotZ: 180.016251 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232403 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2324': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775106514377428854/F01972D15C2B4CFCB8CA72006B7E00D243683AFA/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377429266/856DF4A8D87D7B6CB71572D20908D35F4182AC45/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 3 + GMNotes: '' + GUID: '633954' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: They're Getting Out! + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 23.86102 + posY: 1.66823256 + posZ: -20.338213 + rotX: 359.937469 + rotY: 269.995575 + rotZ: 180.017487 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232402 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2324': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775106514377428854/F01972D15C2B4CFCB8CA72006B7E00D243683AFA/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377429266/856DF4A8D87D7B6CB71572D20908D35F4182AC45/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 2 + GMNotes: '' + GUID: '633954' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Rise of the Ghouls + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 24.2785358 + posY: 1.65843141 + posZ: -20.05984 + rotX: 359.117859 + rotY: 269.9979 + rotZ: 178.293427 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232401 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2324': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775106514377428854/F01972D15C2B4CFCB8CA72006B7E00D243683AFA/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377429266/856DF4A8D87D7B6CB71572D20908D35F4182AC45/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 1 + GMNotes: '' + GUID: '633954' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: What's Going On?! + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 24.0645866 + posY: 1.66156793 + posZ: -20.6185989 + rotX: 359.902252 + rotY: 269.9997 + rotZ: 180.04985 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232100 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2321': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775106514377428854/F01972D15C2B4CFCB8CA72006B7E00D243683AFA/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377429266/856DF4A8D87D7B6CB71572D20908D35F4182AC45/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: The Gathering + GMNotes: '' + GUID: 254c1f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Scenario + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.91760135 + posY: 1.73579657 + posZ: 6.23471355 + rotX: 359.922241 + rotY: 270.00058 + rotZ: 0.0151018584 + 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 + UniqueBack: false + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '2321': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775106514377428854/F01972D15C2B4CFCB8CA72006B7E00D243683AFA/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377429266/856DF4A8D87D7B6CB71572D20908D35F4182AC45/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + '2323': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775106514377430450/FDA37585F019D453CF383D975CF1AB631ECF64B7/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377431393/4752E394498B81694A370AA6BB05BC5A4E55FD30/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + '2324': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775106514377428854/F01972D15C2B4CFCB8CA72006B7E00D243683AFA/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377429266/856DF4A8D87D7B6CB71572D20908D35F4182AC45/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 231702 +- 231701 +- 231850 +- 231700 +- 232304 +- 232303 +- 232302 +- 232301 +- 232300 +- 232406 +- 232405 +- 232404 +- 232403 +- 232402 +- 232401 +- 232100 +Description: '' +GMNotes: '' +GUID: cbc4d9 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: The Gathering +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 11.3384047 + posY: 3.63390684 + posZ: -22.1934681 + rotX: 359.725464 + rotY: 269.9989 + rotZ: 0.148334235 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag CoreNight of the Zealot 1e5dca/Deck The Midnight Masks 404746.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag CoreNight of the Zealot 1e5dca/Deck The Midnight Masks 404746.yaml new file mode 100644 index 000000000..b415d963c --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag CoreNight of the Zealot 1e5dca/Deck The Midnight Masks 404746.yaml @@ -0,0 +1,924 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 231704 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 057d5f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: False Lead + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 9.17034149 + posY: 1.53918946 + posZ: -4.111378 + rotX: 359.920532 + rotY: 270.0 + rotZ: 0.014286885 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231704 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 2ceae2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: False Lead + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 8.727812 + posY: 1.69460583 + posZ: -3.86421871 + rotX: 359.918182 + rotY: 269.999969 + rotZ: 0.007734609 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231703 + 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 + UniqueBack: false + Description: Curse. + GMNotes: '' + GUID: ab3719 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Hunting Shadow + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 6.86031961 + posY: 1.7521373 + posZ: 0.5499929 + rotX: 359.934875 + rotY: 270.000275 + rotZ: 180.022446 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231703 + 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 + UniqueBack: false + Description: Curse. + GMNotes: '' + GUID: ea8fcf + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Hunting Shadow + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 9.059377 + posY: 1.590748 + posZ: -1.004088 + rotX: 0.06702136 + rotY: 270.0 + rotZ: 359.968262 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231703 + 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 + UniqueBack: false + Description: Curse. + GMNotes: '' + GUID: 14bfaf + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Hunting Shadow + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 9.038728 + posY: 1.73691487 + posZ: -1.08657563 + rotX: 0.065033026 + rotY: 269.999817 + rotZ: 359.959229 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232315 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2323': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775106514377430450/FDA37585F019D453CF383D975CF1AB631ECF64B7/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377431393/4752E394498B81694A370AA6BB05BC5A4E55FD30/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Arkham. + GMNotes: '' + GUID: 377b20 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Northside + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 6.960359 + posY: 1.7233057 + posZ: 1.06636345 + rotX: 359.937256 + rotY: 269.998566 + rotZ: 180.021957 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232314 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2323': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775106514377430450/FDA37585F019D453CF383D975CF1AB631ECF64B7/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377431393/4752E394498B81694A370AA6BB05BC5A4E55FD30/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Arkham. + GMNotes: '' + GUID: 377b20 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Graveyard + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 6.909322 + posY: 1.713788 + posZ: 1.09150708 + rotX: 359.947449 + rotY: 269.999847 + rotZ: 180.01474 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232313 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2323': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775106514377430450/FDA37585F019D453CF383D975CF1AB631ECF64B7/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377431393/4752E394498B81694A370AA6BB05BC5A4E55FD30/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Arkham. + GMNotes: '' + GUID: 377b20 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Easttown + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 6.43784475 + posY: 1.70459116 + posZ: 0.833607733 + rotX: 359.9183 + rotY: 270.013977 + rotZ: 180.019943 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232312 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2323': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775106514377430450/FDA37585F019D453CF383D975CF1AB631ECF64B7/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377431393/4752E394498B81694A370AA6BB05BC5A4E55FD30/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Arkham. + GMNotes: '' + GUID: 1aa7cb + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Downtown + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 6.31341743 + posY: 1.69526589 + posZ: 1.41897249 + rotX: 359.921234 + rotY: 270.000336 + rotZ: 180.018677 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232311 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2323': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775106514377430450/FDA37585F019D453CF383D975CF1AB631ECF64B7/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377431393/4752E394498B81694A370AA6BB05BC5A4E55FD30/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Arkham. + GMNotes: '' + GUID: 377b20 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Downtown + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 6.91259432 + posY: 1.70049191 + posZ: 1.62065625 + rotX: 359.920349 + rotY: 270.000916 + rotZ: 180.017166 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232310 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2323': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775106514377430450/FDA37585F019D453CF383D975CF1AB631ECF64B7/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377431393/4752E394498B81694A370AA6BB05BC5A4E55FD30/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Arkham. + GMNotes: '' + GUID: 377b20 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Miskatonic University + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 6.863089 + posY: 1.67520761 + posZ: 1.35088193 + rotX: 359.9186 + rotY: 270.0054 + rotZ: 180.017822 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232309 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2323': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775106514377430450/FDA37585F019D453CF383D975CF1AB631ECF64B7/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377431393/4752E394498B81694A370AA6BB05BC5A4E55FD30/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Arkham. + GMNotes: '' + GUID: fac63b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: St. Mary's Hospital + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 6.51256752 + posY: 1.66585326 + posZ: 1.05098045 + rotX: 359.9236 + rotY: 269.9998 + rotZ: 180.0223 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232308 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2323': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775106514377430450/FDA37585F019D453CF383D975CF1AB631ECF64B7/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377431393/4752E394498B81694A370AA6BB05BC5A4E55FD30/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Arkham. + GMNotes: '' + GUID: 076b61 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Southside + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 7.180537 + posY: 1.72311068 + posZ: 0.7398413 + rotX: 359.9191 + rotY: 270.0011 + rotZ: 180.0188 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232307 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2323': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775106514377430450/FDA37585F019D453CF383D975CF1AB631ECF64B7/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377431393/4752E394498B81694A370AA6BB05BC5A4E55FD30/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Arkham. + GMNotes: '' + GUID: 377b20 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Southside + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 6.5903883 + posY: 1.70220017 + posZ: 1.353387 + rotX: 359.942474 + rotY: 269.9922 + rotZ: 180.015717 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232306 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2323': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775106514377430450/FDA37585F019D453CF383D975CF1AB631ECF64B7/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377431393/4752E394498B81694A370AA6BB05BC5A4E55FD30/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Arkham. Central. + GMNotes: '' + GUID: 377b20 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Rivertown + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 5.98026848 + posY: 1.69739306 + posZ: 0.8789283 + rotX: 359.931763 + rotY: 269.988739 + rotZ: 180.033752 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232305 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2323': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775106514377430450/FDA37585F019D453CF383D975CF1AB631ECF64B7/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377431393/4752E394498B81694A370AA6BB05BC5A4E55FD30/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Arkham. + GMNotes: '' + GUID: 377b20 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Your House + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 7.152451 + posY: 1.693662 + posZ: 1.09714687 + rotX: 359.9176 + rotY: 270.000183 + rotZ: 180.021255 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232410 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2324': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775106514377428854/F01972D15C2B4CFCB8CA72006B7E00D243683AFA/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377429266/856DF4A8D87D7B6CB71572D20908D35F4182AC45/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 1 + GMNotes: '' + GUID: f859a4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Uncovering the Conspiracy + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 6.98454475 + posY: 1.695914 + posZ: 1.17883408 + rotX: 359.920837 + rotY: 270.0131 + rotZ: 180.0086 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232409 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2324': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775106514377428854/F01972D15C2B4CFCB8CA72006B7E00D243683AFA/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377429266/856DF4A8D87D7B6CB71572D20908D35F4182AC45/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 2 + GMNotes: '' + GUID: '633954' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Time is Running Short + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 6.75401449 + posY: 1.70989323 + posZ: 1.28130889 + rotX: 359.922516 + rotY: 269.9999 + rotZ: 180.018387 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232108 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2321': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775106514377428854/F01972D15C2B4CFCB8CA72006B7E00D243683AFA/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377429266/856DF4A8D87D7B6CB71572D20908D35F4182AC45/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 1 + GMNotes: '' + GUID: 1c19e2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Predator or Prey? + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 6.607937 + posY: 1.69340765 + posZ: 1.13984537 + rotX: 359.9361 + rotY: 269.999939 + rotZ: 180.013733 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232107 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2321': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775106514377428854/F01972D15C2B4CFCB8CA72006B7E00D243683AFA/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377429266/856DF4A8D87D7B6CB71572D20908D35F4182AC45/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: The Midnight Masks + GMNotes: '' + GUID: a22908 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Scenario + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 6.72952938 + posY: 1.5470463 + posZ: 1.312383 + rotX: 359.920166 + rotY: 270.000366 + rotZ: 180.017151 + 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 + UniqueBack: false + '2321': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775106514377428854/F01972D15C2B4CFCB8CA72006B7E00D243683AFA/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377429266/856DF4A8D87D7B6CB71572D20908D35F4182AC45/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + '2323': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775106514377430450/FDA37585F019D453CF383D975CF1AB631ECF64B7/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377431393/4752E394498B81694A370AA6BB05BC5A4E55FD30/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + '2324': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775106514377428854/F01972D15C2B4CFCB8CA72006B7E00D243683AFA/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377429266/856DF4A8D87D7B6CB71572D20908D35F4182AC45/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 231704 +- 231704 +- 231703 +- 231703 +- 231703 +- 232315 +- 232314 +- 232313 +- 232312 +- 232311 +- 232310 +- 232309 +- 232308 +- 232307 +- 232306 +- 232305 +- 232410 +- 232409 +- 232108 +- 232107 +Description: '' +GMNotes: '' +GUID: '404746' +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: The Midnight Masks +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 11.28214 + posY: 3.63524818 + posZ: -25.4871941 + rotX: 359.920135 + rotY: 269.99707 + rotZ: 0.0168844536 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag Standalone ce36ec.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag Standalone ce36ec.yaml new file mode 100644 index 000000000..e04805645 --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag Standalone ce36ec.yaml @@ -0,0 +1,40 @@ +Autoraise: true +ColorDiffuse: + b: 0.0 + g: 0.366520882 + r: 0.7058823 +ContainedObjects: +- !include 'Bag Standalone ce36ec/Bag Guardians of the Abyss 0a3b78.yaml' +- !include 'Bag Standalone ce36ec/Bag The Labyrinths of Lunacy be5344.yaml' +- !include 'Bag Standalone ce36ec/Bag Carnevale of Horrors 418547.yaml' +- !include 'Bag Standalone ce36ec/Bag Curse of the Rougarou cdb08e.yaml' +- !include 'Bag Standalone ce36ec/Bag Murder at the Excelsior Hotel 8c5a09.yaml' +Description: '' +GMNotes: '' +GUID: ce36ec +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +MeshIndex: -1 +Name: Bag +Nickname: Standalone +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 27.5645027 + posY: 3.257869 + posZ: -31.10303 + rotX: 359.9755 + rotY: 315.000122 + rotZ: 359.984039 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag Standalone ce36ec/Bag Carnevale of Horrors 418547.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag Standalone ce36ec/Bag Carnevale of Horrors 418547.yaml new file mode 100644 index 000000000..d4a9ea230 --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag Standalone ce36ec/Bag Carnevale of Horrors 418547.yaml @@ -0,0 +1,37 @@ +Autoraise: true +ColorDiffuse: + b: 0.0 + g: 0.366520882 + r: 0.7058823 +ContainedObjects: +- !include 'Bag Carnevale of Horrors 418547/Deck Carnevale of Horrors 5d123b.yaml' +- !include 'Bag Carnevale of Horrors 418547/Deck Setup Resolution 579c60.yaml' +Description: '' +GMNotes: '' +GUID: '418547' +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +MeshIndex: -1 +Name: Bag +Nickname: Carnevale of Horrors +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 93.72977 + posY: 2.16449976 + posZ: -10.47116 + rotX: 0.0007048653 + rotY: 0.008427352 + rotZ: -0.0005562479 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag Standalone ce36ec/Bag Carnevale of Horrors 418547/Deck Carnevale of Horrors 5d123b.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag Standalone ce36ec/Bag Carnevale of Horrors 418547/Deck Carnevale of Horrors 5d123b.yaml new file mode 100644 index 000000000..8a19a3c2d --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag Standalone ce36ec/Bag Carnevale of Horrors 418547/Deck Carnevale of Horrors 5d123b.yaml @@ -0,0 +1,2457 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 3726 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '37': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642320624/6D56E471941AB4D0DEEDAA5DE4780DFDF303016C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: 916af7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Acrid Miasma + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 94.06392 + posY: 1.96925938 + posZ: 16.0292778 + rotX: 0.00755078066 + rotY: 270.04715 + rotZ: 179.89238 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3725 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '37': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642320624/6D56E471941AB4D0DEEDAA5DE4780DFDF303016C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: 83c3ec + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Acrid Miasma + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 94.0669861 + posY: 1.9619509 + posZ: 15.953557 + rotX: 0.52233994 + rotY: 270.009338 + rotZ: 180.737961 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3724 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '37': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642320624/6D56E471941AB4D0DEEDAA5DE4780DFDF303016C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Scheme. + GMNotes: '' + GUID: '453252' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Abduction + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 93.84867 + posY: 1.95025861 + posZ: 16.1545467 + rotX: 359.9876 + rotY: 270.034637 + rotZ: 179.944366 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3723 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '37': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642320624/6D56E471941AB4D0DEEDAA5DE4780DFDF303016C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Scheme. + GMNotes: '' + GUID: c4701c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Abduction + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 94.5863953 + posY: 1.94043088 + posZ: 16.1594715 + rotX: 359.990723 + rotY: 269.995178 + rotZ: 179.97464 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3722 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '37': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642320624/6D56E471941AB4D0DEEDAA5DE4780DFDF303016C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: 79e1a4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Mesmerize + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 94.3182449 + posY: 1.93099034 + posZ: 16.0927734 + rotX: 359.974335 + rotY: 270.018677 + rotZ: 179.978943 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3721 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '37': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642320624/6D56E471941AB4D0DEEDAA5DE4780DFDF303016C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: 32a6e2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Mesmerize + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 94.90699 + posY: 1.92111158 + posZ: 15.9907618 + rotX: 359.987366 + rotY: 270.000061 + rotZ: 179.985321 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3720 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '37': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642320624/6D56E471941AB4D0DEEDAA5DE4780DFDF303016C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: 4448e3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Chaos in the Water + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 94.7948761 + posY: 1.91151559 + posZ: 15.5685 + rotX: 359.9862 + rotY: 270.004517 + rotZ: 179.999664 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3719 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '37': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642320624/6D56E471941AB4D0DEEDAA5DE4780DFDF303016C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: 399d65 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Chaos in the Water + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 93.90108 + posY: 1.90184534 + posZ: 16.6117287 + rotX: 359.9863 + rotY: 270.0 + rotZ: 179.983246 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3718 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '37': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642320624/6D56E471941AB4D0DEEDAA5DE4780DFDF303016C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: 027b2f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Chaos in the Water + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 94.2478561 + posY: 1.89224946 + posZ: 16.011095 + rotX: 359.991425 + rotY: 270.003723 + rotZ: 179.979141 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3717 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '37': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642320624/6D56E471941AB4D0DEEDAA5DE4780DFDF303016C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: fe04b3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Watchers' Gaze + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 94.0345459 + posY: 1.88262868 + posZ: 16.0188236 + rotX: 359.988 + rotY: 270.028656 + rotZ: 179.951141 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3716 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '37': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642320624/6D56E471941AB4D0DEEDAA5DE4780DFDF303016C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: 10d41c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Watchers' Gaze + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 94.37472 + posY: 1.87282014 + posZ: 16.0969372 + rotX: 359.993835 + rotY: 270.0194 + rotZ: 179.952576 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3715 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '37': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642320624/6D56E471941AB4D0DEEDAA5DE4780DFDF303016C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: 97cc02 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Watchers' Gaze + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 94.05456 + posY: 1.86331809 + posZ: 15.9664183 + rotX: 359.989441 + rotY: 270.0121 + rotZ: 179.970917 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3714 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '37': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642320624/6D56E471941AB4D0DEEDAA5DE4780DFDF303016C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Blunder. + GMNotes: '' + GUID: ac4b72 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Lost in Venice + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 94.37839 + posY: 1.85344875 + posZ: 16.0886669 + rotX: -0.000140565826 + rotY: 270.008972 + rotZ: 179.953156 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3713 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '37': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642320624/6D56E471941AB4D0DEEDAA5DE4780DFDF303016C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Blunder. + GMNotes: '' + GUID: 8f3ad2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Lost in Venice + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 94.43179 + posY: 1.843988 + posZ: 15.55632 + rotX: 359.9877 + rotY: 270.000183 + rotZ: 179.991287 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3712 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '37': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642320624/6D56E471941AB4D0DEEDAA5DE4780DFDF303016C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Blunder. + GMNotes: '' + GUID: f39f35 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Lost in Venice + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 94.61658 + posY: 1.83432531 + posZ: 15.7500486 + rotX: 359.990784 + rotY: 269.9917 + rotZ: 179.9695 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3711 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '37': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642320624/6D56E471941AB4D0DEEDAA5DE4780DFDF303016C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: febff1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Mass Hysteria + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 94.23776 + posY: 1.82520175 + posZ: 15.2685719 + rotX: 0.00140257436 + rotY: 269.99707 + rotZ: 180.002167 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3710 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '37': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642320624/6D56E471941AB4D0DEEDAA5DE4780DFDF303016C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: 27c1bf + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Mass Hysteria + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 94.2092 + posY: 1.81512582 + posZ: 15.7168245 + rotX: 359.9843 + rotY: 270.0181 + rotZ: 179.967163 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3709 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '37': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642320624/6D56E471941AB4D0DEEDAA5DE4780DFDF303016C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: 95047c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Mass Hysteria + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 93.85254 + posY: 1.83251357 + posZ: 16.0852737 + rotX: -0.000353622367 + rotY: 270.042053 + rotZ: 178.482086 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3708 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '37': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642320624/6D56E471941AB4D0DEEDAA5DE4780DFDF303016C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Tentacle. + GMNotes: '' + GUID: b39ab7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Writhing Appendage + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 94.3704758 + posY: 1.79563046 + posZ: 16.157774 + rotX: 359.9914 + rotY: 269.999451 + rotZ: 180.006119 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3707 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '37': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642320624/6D56E471941AB4D0DEEDAA5DE4780DFDF303016C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Tentacle. + GMNotes: '' + GUID: e89a0a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Writhing Appendage + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 94.3573761 + posY: 1.78598821 + posZ: 16.0923138 + rotX: 359.985779 + rotY: 270.005768 + rotZ: 179.979538 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3706 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '37': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642320624/6D56E471941AB4D0DEEDAA5DE4780DFDF303016C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Tentacle. + GMNotes: '' + GUID: '649527' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Writhing Appendage + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 93.86858 + posY: 1.77665865 + posZ: 15.80121 + rotX: 359.97345 + rotY: 270.030823 + rotZ: 179.9648 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3705 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '37': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642320624/6D56E471941AB4D0DEEDAA5DE4780DFDF303016C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Cultist. + GMNotes: '' + GUID: f119dc + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Carnevale Sentinel + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 94.27677 + posY: 1.76676357 + posZ: 15.5459814 + rotX: 359.9854 + rotY: 270.000549 + rotZ: 179.989319 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3704 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '37': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642320624/6D56E471941AB4D0DEEDAA5DE4780DFDF303016C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Cultist. + GMNotes: '' + GUID: dbec9d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Carnevale Sentinel + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 94.53851 + posY: 1.75677764 + posZ: 16.3740978 + rotX: 359.96283 + rotY: 269.972168 + rotZ: 179.935226 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3703 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '37': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642320624/6D56E471941AB4D0DEEDAA5DE4780DFDF303016C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Cultist. + GMNotes: '' + GUID: 27fab1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Carnevale Sentinel + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 94.32372 + posY: 1.74752569 + posZ: 15.7947941 + rotX: 359.976074 + rotY: 270.029846 + rotZ: 179.963791 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3702 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '37': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642320624/6D56E471941AB4D0DEEDAA5DE4780DFDF303016C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Deep One. + GMNotes: '' + GUID: 470ba8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Poleman + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 94.47883 + posY: 1.95467257 + posZ: 16.2576447 + rotX: 359.979 + rotY: 269.979767 + rotZ: 192.121674 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3701 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '37': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642320624/6D56E471941AB4D0DEEDAA5DE4780DFDF303016C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Deep One. + GMNotes: '' + GUID: 9b0f6c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Poleman + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 94.36198 + posY: 1.72798193 + posZ: 16.0688171 + rotX: 359.9878 + rotY: 270.003143 + rotZ: 179.993454 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3700 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '37': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642320624/6D56E471941AB4D0DEEDAA5DE4780DFDF303016C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Ancient One. Elite. + GMNotes: '' + GUID: 4d3a26 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Cnidathqua + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 94.6990356 + posY: 1.71807492 + posZ: 16.5110245 + rotX: 359.990967 + rotY: 269.999817 + rotZ: 179.987381 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3904 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '39': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642329861/9768E9FE9C71E74721340D0D81607F534E54A3DE/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Item. Mask. + GMNotes: '' + GUID: f3b3a9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Gilded Volto + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 94.7153 + posY: 1.708611 + posZ: 15.988739 + rotX: 359.9903 + rotY: 269.9998 + rotZ: 179.988785 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3903 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '39': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642329861/9768E9FE9C71E74721340D0D81607F534E54A3DE/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Item. Mask. + GMNotes: '' + GUID: 080d4a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Pantalone + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 94.30905 + posY: 1.69900215 + posZ: 16.0721989 + rotX: 359.9902 + rotY: 270.00238 + rotZ: 179.993484 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3902 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '39': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642329861/9768E9FE9C71E74721340D0D81607F534E54A3DE/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Item. Mask. + GMNotes: '' + GUID: 0f54e7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Medico Della Peste + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 95.07566 + posY: 1.68924713 + posZ: 15.7982416 + rotX: 359.989075 + rotY: 269.999878 + rotZ: 179.989548 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3901 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '39': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642329861/9768E9FE9C71E74721340D0D81607F534E54A3DE/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Item. Mask. + GMNotes: '' + GUID: a42f33 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Bauta + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 94.34839 + posY: 1.67969179 + posZ: 16.0179157 + rotX: 359.987061 + rotY: 270.000183 + rotZ: 179.987 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 4000 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '40': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642329861/9768E9FE9C71E74721340D0D81607F534E54A3DE/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Ally. Believer. + GMNotes: '' + GUID: 1e7f1b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Abbess Allegria Di Biase + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 94.64117 + posY: 1.63079917 + posZ: 15.6358538 + rotX: 359.9884 + rotY: 270.0207 + rotZ: 181.4567 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234622 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2346': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/87094793642370806/651C0A7485AEBE7DF8F893A54A506AFA1165FC3B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642364764/EBA4638B8847E97B3C153A928955F0A536677F8F/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Carnevale. + GMNotes: '' + GUID: 44845f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Masked Carnevale-Goer + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 94.69486 + posY: 1.661596 + posZ: 15.8414345 + rotX: 359.990753 + rotY: 269.973633 + rotZ: 180.041672 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234621 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2346': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/87094793642370806/651C0A7485AEBE7DF8F893A54A506AFA1165FC3B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642364764/EBA4638B8847E97B3C153A928955F0A536677F8F/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Carnevale. + GMNotes: '' + GUID: '105277' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Masked Carnevale-Goer + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 94.42142 + posY: 1.65057552 + posZ: 15.227088 + rotX: 359.987427 + rotY: 270.000427 + rotZ: 180.00563 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234620 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2346': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/87094793642370806/651C0A7485AEBE7DF8F893A54A506AFA1165FC3B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642364764/EBA4638B8847E97B3C153A928955F0A536677F8F/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Carnevale. + GMNotes: '' + GUID: '659820' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Masked Carnevale-Goer + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 94.74701 + posY: 1.64114368 + posZ: 15.6602964 + rotX: 359.986237 + rotY: 270.000732 + rotZ: 179.986832 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234619 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2346': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/87094793642370806/651C0A7485AEBE7DF8F893A54A506AFA1165FC3B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642364764/EBA4638B8847E97B3C153A928955F0A536677F8F/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Carnevale. + GMNotes: '' + GUID: 0a2381 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Masked Carnevale-Goer + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 94.4040146 + posY: 1.63158381 + posZ: 15.9105577 + rotX: 359.975281 + rotY: 269.998352 + rotZ: 179.976227 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234618 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2346': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/87094793642370806/651C0A7485AEBE7DF8F893A54A506AFA1165FC3B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642364764/EBA4638B8847E97B3C153A928955F0A536677F8F/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Carnevale. + GMNotes: '' + GUID: f64f68 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Masked Carnevale-Goer + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 94.50847 + posY: 1.62178636 + posZ: 16.0405865 + rotX: 359.98584 + rotY: 269.9991 + rotZ: 179.979691 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234617 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2346': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/87094793642370806/651C0A7485AEBE7DF8F893A54A506AFA1165FC3B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642364764/EBA4638B8847E97B3C153A928955F0A536677F8F/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Carnevale. + GMNotes: '' + GUID: 1d6b52 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Masked Carnevale-Goer + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 94.61144 + posY: 1.61227608 + posZ: 15.7625589 + rotX: 359.9882 + rotY: 270.039978 + rotZ: 179.949509 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234616 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2346': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/87094793642370806/651C0A7485AEBE7DF8F893A54A506AFA1165FC3B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642364764/EBA4638B8847E97B3C153A928955F0A536677F8F/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Carnevale. + GMNotes: '' + GUID: be4dc6 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Masked Carnevale-Goer + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 94.44554 + posY: 1.60228777 + posZ: 16.3495712 + rotX: 359.9874 + rotY: 269.999237 + rotZ: 179.980255 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234515 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2345': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/87094793642370806/651C0A7485AEBE7DF8F893A54A506AFA1165FC3B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642364764/EBA4638B8847E97B3C153A928955F0A536677F8F/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Venice. + GMNotes: '' + GUID: '124288' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Guardian + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 94.769104 + posY: 1.59268951 + posZ: 15.9206333 + rotX: 359.9857 + rotY: 270.000824 + rotZ: 179.9868 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234514 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2345': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/87094793642370806/651C0A7485AEBE7DF8F893A54A506AFA1165FC3B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642364764/EBA4638B8847E97B3C153A928955F0A536677F8F/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Venice. Bridge. + GMNotes: '' + GUID: 48d3db + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Accademia Bridge + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 94.3376541 + posY: 1.58304107 + posZ: 16.43918 + rotX: 359.983948 + rotY: 270.05603 + rotZ: 180.005081 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234513 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2345': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/87094793642370806/651C0A7485AEBE7DF8F893A54A506AFA1165FC3B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642364764/EBA4638B8847E97B3C153A928955F0A536677F8F/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Venice. + GMNotes: '' + GUID: 8d6af5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Flooded Square + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 93.64457 + posY: 1.573618 + posZ: 16.18737 + rotX: 359.9803 + rotY: 269.980347 + rotZ: 179.994583 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234512 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2345': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/87094793642370806/651C0A7485AEBE7DF8F893A54A506AFA1165FC3B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642364764/EBA4638B8847E97B3C153A928955F0A536677F8F/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Venice. Bridge. + GMNotes: '' + GUID: 04cdf3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Bridge of Sighs + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 94.66218 + posY: 1.56374645 + posZ: 16.0062733 + rotX: 359.987152 + rotY: 269.9945 + rotZ: 179.989792 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234511 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2345': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/87094793642370806/651C0A7485AEBE7DF8F893A54A506AFA1165FC3B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642364764/EBA4638B8847E97B3C153A928955F0A536677F8F/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Venice. + GMNotes: '' + GUID: 4260f0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Venetian Garden + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 94.19605 + posY: 1.55409622 + posZ: 16.1396332 + rotX: 359.987976 + rotY: 270.001038 + rotZ: 179.9898 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234510 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2345': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/87094793642370806/651C0A7485AEBE7DF8F893A54A506AFA1165FC3B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642364764/EBA4638B8847E97B3C153A928955F0A536677F8F/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Venice. Bridge. + GMNotes: '' + GUID: 2f2498 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Rialto Bridge + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 94.97765 + posY: 1.54432571 + posZ: 16.09118 + rotX: 359.9901 + rotY: 269.9927 + rotZ: 179.987122 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234509 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2345': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/87094793642370806/651C0A7485AEBE7DF8F893A54A506AFA1165FC3B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642364764/EBA4638B8847E97B3C153A928955F0A536677F8F/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Venice. + GMNotes: '' + GUID: f2d9d3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Streets of Venice + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 94.39137 + posY: 1.57113552 + posZ: 15.8248234 + rotX: 359.965271 + rotY: 269.996674 + rotZ: 177.962723 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234508 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2345': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/87094793642370806/651C0A7485AEBE7DF8F893A54A506AFA1165FC3B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642364764/EBA4638B8847E97B3C153A928955F0A536677F8F/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Venice. + GMNotes: '' + GUID: eb8aad + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Canal-side + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 94.9064941 + posY: 1.52495956 + posZ: 16.3361149 + rotX: 359.989471 + rotY: 270.005371 + rotZ: 179.987122 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234507 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2345': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/87094793642370806/651C0A7485AEBE7DF8F893A54A506AFA1165FC3B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642364764/EBA4638B8847E97B3C153A928955F0A536677F8F/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Venice. + GMNotes: '' + GUID: 0368c1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: San Marco Basilica + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 94.84279 + posY: 1.5675137 + posZ: 16.1544685 + rotX: 359.9866 + rotY: 270.01712 + rotZ: 179.9841 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234306 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2343': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/87094793642370806/651C0A7485AEBE7DF8F893A54A506AFA1165FC3B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642364764/EBA4638B8847E97B3C153A928955F0A536677F8F/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 3 + GMNotes: '' + GUID: f2e0b7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Row! + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 94.6268 + posY: 1.56134033 + posZ: 15.6842356 + rotX: 359.990875 + rotY: 269.822 + rotZ: 179.985367 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234305 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2343': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/87094793642370806/651C0A7485AEBE7DF8F893A54A506AFA1165FC3B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642364764/EBA4638B8847E97B3C153A928955F0A536677F8F/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 2 + GMNotes: '' + GUID: 519fb4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Get to the Boats! + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 94.2694 + posY: 1.5563457 + posZ: 15.8539915 + rotX: -0.00521171326 + rotY: 270.364258 + rotZ: 179.988068 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234304 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2343': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/87094793642370806/651C0A7485AEBE7DF8F893A54A506AFA1165FC3B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642364764/EBA4638B8847E97B3C153A928955F0A536677F8F/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 1 + GMNotes: '' + GUID: 4f1d00 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Carnevale Conspiracy + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 94.51133 + posY: 1.55401707 + posZ: 15.6014023 + rotX: 359.9791 + rotY: 269.552124 + rotZ: 179.965 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234403 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2344': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/87094793642370806/651C0A7485AEBE7DF8F893A54A506AFA1165FC3B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642364764/EBA4638B8847E97B3C153A928955F0A536677F8F/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 3 + GMNotes: '' + GUID: '256302' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Chaos in the Carnevale + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 94.34169 + posY: 1.55620778 + posZ: 15.97347 + rotX: 359.95932 + rotY: 269.08783 + rotZ: 180.023224 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234402 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2344': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/87094793642370806/651C0A7485AEBE7DF8F893A54A506AFA1165FC3B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642364764/EBA4638B8847E97B3C153A928955F0A536677F8F/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 2 + GMNotes: '' + GUID: 2cc635 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Shadow of the Eclipse + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 94.48209 + posY: 1.56938744 + posZ: 15.5448027 + rotX: 359.979828 + rotY: 269.910645 + rotZ: 179.986465 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234401 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2344': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/87094793642370806/651C0A7485AEBE7DF8F893A54A506AFA1165FC3B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642364764/EBA4638B8847E97B3C153A928955F0A536677F8F/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 1 + GMNotes: '' + GUID: 63b723 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Festivities Begin + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 94.38866 + posY: 1.54569483 + posZ: 15.9509 + rotX: 359.988 + rotY: 269.9937 + rotZ: 180.001526 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234200 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2342': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/87094793642370806/651C0A7485AEBE7DF8F893A54A506AFA1165FC3B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642364764/EBA4638B8847E97B3C153A928955F0A536677F8F/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Carnevale of Horrors + GMNotes: '' + GUID: aa7abc + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Scenario + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 94.38217 + posY: 1.40674353 + posZ: 16.1027164 + rotX: 359.9845 + rotY: 270.005066 + rotZ: 179.979523 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2342': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/87094793642370806/651C0A7485AEBE7DF8F893A54A506AFA1165FC3B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642364764/EBA4638B8847E97B3C153A928955F0A536677F8F/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + '2343': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/87094793642370806/651C0A7485AEBE7DF8F893A54A506AFA1165FC3B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642364764/EBA4638B8847E97B3C153A928955F0A536677F8F/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + '2344': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/87094793642370806/651C0A7485AEBE7DF8F893A54A506AFA1165FC3B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642364764/EBA4638B8847E97B3C153A928955F0A536677F8F/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + '2345': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/87094793642370806/651C0A7485AEBE7DF8F893A54A506AFA1165FC3B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642364764/EBA4638B8847E97B3C153A928955F0A536677F8F/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + '2346': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/87094793642370806/651C0A7485AEBE7DF8F893A54A506AFA1165FC3B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642364764/EBA4638B8847E97B3C153A928955F0A536677F8F/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + '37': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642320624/6D56E471941AB4D0DEEDAA5DE4780DFDF303016C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '39': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642329861/9768E9FE9C71E74721340D0D81607F534E54A3DE/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '40': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642329861/9768E9FE9C71E74721340D0D81607F534E54A3DE/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 3726 +- 3725 +- 3724 +- 3723 +- 3722 +- 3721 +- 3720 +- 3719 +- 3718 +- 3717 +- 3716 +- 3715 +- 3714 +- 3713 +- 3712 +- 3711 +- 3710 +- 3709 +- 3708 +- 3707 +- 3706 +- 3705 +- 3704 +- 3703 +- 3702 +- 3701 +- 3700 +- 3904 +- 3903 +- 3902 +- 3901 +- 4000 +- 234622 +- 234621 +- 234620 +- 234619 +- 234618 +- 234617 +- 234616 +- 234515 +- 234514 +- 234513 +- 234512 +- 234511 +- 234510 +- 234509 +- 234508 +- 234507 +- 234306 +- 234305 +- 234304 +- 234403 +- 234402 +- 234401 +- 234200 +Description: '' +GMNotes: '' +GUID: 5d123b +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Carnevale of Horrors +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 87.89711 + posY: 3.61992741 + posZ: -5.254637 + rotX: 358.398 + rotY: 269.798126 + rotZ: 3.43184614 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag Standalone ce36ec/Bag Carnevale of Horrors 418547/Deck Setup Resolution 579c60.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag Standalone ce36ec/Bag Carnevale of Horrors 418547/Deck Setup Resolution 579c60.yaml new file mode 100644 index 000000000..9f3f44a71 --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag Standalone ce36ec/Bag Carnevale of Horrors 418547/Deck Setup Resolution 579c60.yaml @@ -0,0 +1,351 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 265301 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2653': + BackIsHidden: true + BackURL: https://i.imgur.com/vLH2OYg.jpg + FaceURL: https://i.imgur.com/cZ3rUH5.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 93e291 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 90.29849 + posY: 1.93422055 + posZ: 11.3995428 + rotX: 358.762146 + rotY: 270.184875 + rotZ: 157.5921 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265112 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2623': + BackIsHidden: true + BackURL: https://i.imgur.com/cZ3rUH5.jpg + FaceURL: https://i.imgur.com/vLH2OYg.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: '124422' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 9.272335 + posY: 1.542559 + posZ: 7.989565 + rotX: 359.915741 + rotY: 269.9981 + rotZ: 0.0156353433 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265113 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2623': + BackIsHidden: true + BackURL: https://i.imgur.com/cZ3rUH5.jpg + FaceURL: https://i.imgur.com/vLH2OYg.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 8c4fa7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 9.282153 + posY: 1.68287289 + posZ: 7.70800161 + rotX: 359.909271 + rotY: 270.0027 + rotZ: 0.040475253 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265110 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2623': + BackIsHidden: true + BackURL: https://i.imgur.com/cZ3rUH5.jpg + FaceURL: https://i.imgur.com/vLH2OYg.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: b68d07 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 9.233365 + posY: 1.70077789 + posZ: 7.98643637 + rotX: 359.936676 + rotY: 269.99942 + rotZ: 0.007738295 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265102 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/cZ3rUH5.jpg + FaceURL: https://i.imgur.com/vLH2OYg.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 2fa708 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 91.72237 + posY: 1.67464745 + posZ: 10.3829174 + rotX: 0.0007172766 + rotY: 270.001221 + rotZ: 177.003983 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265111 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/cZ3rUH5.jpg + FaceURL: https://i.imgur.com/vLH2OYg.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: a9cebe + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 91.6788 + posY: 1.61328447 + posZ: 10.1124163 + rotX: 0.00154639757 + rotY: 269.991852 + rotZ: 173.564255 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265100 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/cZ3rUH5.jpg + FaceURL: https://i.imgur.com/vLH2OYg.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 8c4fa7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 91.70701 + posY: 1.511233 + posZ: 10.0694256 + rotX: -0.005650274 + rotY: 270.00177 + rotZ: 175.5016 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/cZ3rUH5.jpg + FaceURL: https://i.imgur.com/vLH2OYg.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + '2653': + BackIsHidden: true + BackURL: https://i.imgur.com/vLH2OYg.jpg + FaceURL: https://i.imgur.com/cZ3rUH5.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 265301 +- 265112 +- 265113 +- 265110 +- 265102 +- 265111 +- 265100 +Description: '' +GMNotes: '' +GUID: 579c60 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Setup / Resolution +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 88.06958 + posY: 3.4514873 + posZ: -4.440641 + rotX: 357.8379 + rotY: 270.0714 + rotZ: 357.834381 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag Standalone ce36ec/Bag Curse of the Rougarou cdb08e.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag Standalone ce36ec/Bag Curse of the Rougarou cdb08e.yaml new file mode 100644 index 000000000..91859e4ef --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag Standalone ce36ec/Bag Curse of the Rougarou cdb08e.yaml @@ -0,0 +1,38 @@ +Autoraise: true +ColorDiffuse: + b: 0.0 + g: 0.366520882 + r: 0.7058823 +ContainedObjects: +- !include 'Bag Curse of the Rougarou cdb08e/Deck Curse of the Rougarou 1755b5.yaml' +- !include 'Bag Curse of the Rougarou cdb08e/Deck The Bayou 201e0d.yaml' +- !include 'Bag Curse of the Rougarou cdb08e/Deck SetupResolution 75f551.yaml' +Description: '' +GMNotes: '' +GUID: cdb08e +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +MeshIndex: -1 +Name: Bag +Nickname: Curse of the Rougarou +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 15.1313114 + posY: 3.35120487 + posZ: 1.41322112 + rotX: 359.2869 + rotY: -0.003893975 + rotZ: 0.348909736 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag Standalone ce36ec/Bag Curse of the Rougarou cdb08e/Deck Curse of the Rougarou 1755b5.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag Standalone ce36ec/Bag Curse of the Rougarou cdb08e/Deck Curse of the Rougarou 1755b5.yaml new file mode 100644 index 000000000..2351491ff --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag Standalone ce36ec/Bag Curse of the Rougarou cdb08e/Deck Curse of the Rougarou 1755b5.yaml @@ -0,0 +1,838 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 7405 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '74': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/138879070086623108/44B0C8898A6D506FF4C651BEB8C15337B2A813F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 2b1301 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Insatiable Bloodlust + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 99.30737 + posY: 1.61225438 + posZ: 11.3862867 + rotX: 0.005119836 + rotY: 270.006317 + rotZ: 179.98439 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 7405 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '74': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/138879070086623108/44B0C8898A6D506FF4C651BEB8C15337B2A813F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 20972b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Insatiable Bloodlust + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 98.78538 + posY: 1.60274017 + posZ: 10.7438736 + rotX: 359.988831 + rotY: 269.998749 + rotZ: 179.990677 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 7405 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '74': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/138879070086623108/44B0C8898A6D506FF4C651BEB8C15337B2A813F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 2281d8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Insatiable Bloodlust + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 99.58204 + posY: 1.59290349 + posZ: 11.1280384 + rotX: 359.988678 + rotY: 270.001648 + rotZ: 179.99086 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 7400 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '74': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/138879070086623108/44B0C8898A6D506FF4C651BEB8C15337B2A813F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 67af79 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Beast of the Bayou + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 99.01536 + posY: 1.58311129 + posZ: 11.5398331 + rotX: -0.004549613 + rotY: 269.965179 + rotZ: 179.912537 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 7400 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '74': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/138879070086623108/44B0C8898A6D506FF4C651BEB8C15337B2A813F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 00ae1b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Beast of the Bayou + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 98.74301 + posY: 1.8211844 + posZ: 11.2592793 + rotX: 0.009086286 + rotY: 269.9666 + rotZ: 194.118958 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 7407 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '74': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/138879070086623108/44B0C8898A6D506FF4C651BEB8C15337B2A813F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: dcc376 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: On the Prowl + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 98.6135941 + posY: 1.56637335 + posZ: 10.5542831 + rotX: 359.986847 + rotY: 270.003784 + rotZ: 179.8472 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 7407 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '74': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/138879070086623108/44B0C8898A6D506FF4C651BEB8C15337B2A813F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 81741e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: On the Prowl + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 99.51636 + posY: 1.55422115 + posZ: 10.7721949 + rotX: 359.939728 + rotY: 270.028 + rotZ: 179.981949 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 7407 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '74': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/138879070086623108/44B0C8898A6D506FF4C651BEB8C15337B2A813F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: e37396 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: On the Prowl + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 98.6517258 + posY: 1.54479778 + posZ: 10.9197311 + rotX: 359.993 + rotY: 270.001 + rotZ: 179.991791 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 7407 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '74': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/138879070086623108/44B0C8898A6D506FF4C651BEB8C15337B2A813F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: '528887' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: On the Prowl + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 98.7551346 + posY: 1.6212877 + posZ: 11.0184317 + rotX: 357.03714 + rotY: 269.699982 + rotZ: 180.1392 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 7407 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '74': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/138879070086623108/44B0C8898A6D506FF4C651BEB8C15337B2A813F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 7fe6c7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: On the Prowl + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 98.3002 + posY: 1.58303225 + posZ: 10.5771017 + rotX: 359.198 + rotY: 269.800537 + rotZ: 186.887863 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 7403 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '74': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/138879070086623108/44B0C8898A6D506FF4C651BEB8C15337B2A813F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Dark Young. + GMNotes: '' + GUID: db62d1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dark Young Host + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 99.05142 + posY: 1.66341364 + posZ: 11.2451754 + rotX: 359.721954 + rotY: 270.3999 + rotZ: 174.678314 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 7406 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '74': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/138879070086623108/44B0C8898A6D506FF4C651BEB8C15337B2A813F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Gug. + GMNotes: '' + GUID: 551a7b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Marsh Gug + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 98.85598 + posY: 1.568521 + posZ: 11.1333771 + rotX: 359.992218 + rotY: 269.9807 + rotZ: 180.343277 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 7406 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '74': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/138879070086623108/44B0C8898A6D506FF4C651BEB8C15337B2A813F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Gug. + GMNotes: '' + GUID: 891bde + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Marsh Gug + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 99.67064 + posY: 1.55649543 + posZ: 10.8430367 + rotX: 359.9872 + rotY: 269.9989 + rotZ: 179.9927 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 7409 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '74': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/138879070086623108/44B0C8898A6D506FF4C651BEB8C15337B2A813F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Dhole. + GMNotes: '' + GUID: 4b796e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Slime-Covered Dhole + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 99.0298538 + posY: 1.5536921 + posZ: 11.7041607 + rotX: 359.989044 + rotY: 270.0015 + rotZ: 179.977859 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 7409 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '74': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/138879070086623108/44B0C8898A6D506FF4C651BEB8C15337B2A813F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Dhole. + GMNotes: '' + GUID: 259a79 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Slime-Covered Dhole + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 99.36718 + posY: 1.55579293 + posZ: 11.4259481 + rotX: 359.98877 + rotY: 269.999817 + rotZ: 179.984955 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 7604 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '76': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/138879070086634183/2856A2C2077CFA2C61B9EF2498CAE6865024DB72/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Talent. + GMNotes: '' + GUID: 96ae32 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Monstrous Transformation + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 98.6366959 + posY: 1.56967032 + posZ: 11.0860138 + rotX: -0.0035324418 + rotY: 270.010132 + rotZ: 180.007584 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 8901 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '89': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/138879070086634183/2856A2C2077CFA2C61B9EF2498CAE6865024DB72/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Curse. + GMNotes: '' + GUID: 569b06 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Curse of the Rougarou + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 98.9591 + posY: 1.5522716 + posZ: 11.3303947 + rotX: 359.978119 + rotY: 270.001862 + rotZ: 179.9844 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 7312 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '73': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/138879070086623108/44B0C8898A6D506FF4C651BEB8C15337B2A813F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Creature. Elite. + GMNotes: '' + GUID: e86419 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Rougarou + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 98.88834 + posY: 1.40713143 + posZ: 11.2288914 + rotX: 359.986542 + rotY: 270.000458 + rotZ: 179.984726 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '73': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/138879070086623108/44B0C8898A6D506FF4C651BEB8C15337B2A813F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '74': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/138879070086623108/44B0C8898A6D506FF4C651BEB8C15337B2A813F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '76': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/138879070086634183/2856A2C2077CFA2C61B9EF2498CAE6865024DB72/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '89': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/138879070086634183/2856A2C2077CFA2C61B9EF2498CAE6865024DB72/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 7405 +- 7405 +- 7405 +- 7400 +- 7400 +- 7407 +- 7407 +- 7407 +- 7407 +- 7407 +- 7403 +- 7406 +- 7406 +- 7409 +- 7409 +- 7604 +- 8901 +- 7312 +Description: '' +GMNotes: '' +GUID: 1755b5 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Curse of the Rougarou +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 87.55672 + posY: 3.46058869 + posZ: -3.30933213 + rotX: 357.407684 + rotY: 269.9991 + rotZ: 359.964478 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag Standalone ce36ec/Bag Curse of the Rougarou cdb08e/Deck SetupResolution 75f551.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag Standalone ce36ec/Bag Curse of the Rougarou cdb08e/Deck SetupResolution 75f551.yaml new file mode 100644 index 000000000..275f9532a --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag Standalone ce36ec/Bag Curse of the Rougarou cdb08e/Deck SetupResolution 75f551.yaml @@ -0,0 +1,215 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 60503 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '605': + BackIsHidden: true + BackURL: http://i.imgur.com/UUBjsxW.jpg + FaceURL: http://i.imgur.com/OQsx2AJ.jpg + NumHeight: 2 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: df9762 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 96.4324 + posY: 1.40616536 + posZ: 6.571035 + rotX: 359.984924 + rotY: 269.9973 + rotZ: 359.985718 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 60502 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '605': + BackIsHidden: true + BackURL: http://i.imgur.com/UUBjsxW.jpg + FaceURL: http://i.imgur.com/OQsx2AJ.jpg + NumHeight: 2 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 2c9b49 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 96.41883 + posY: 1.57464457 + posZ: 6.10929871 + rotX: 359.042084 + rotY: 269.911438 + rotZ: 0.171640366 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 60501 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '605': + BackIsHidden: true + BackURL: http://i.imgur.com/UUBjsxW.jpg + FaceURL: http://i.imgur.com/OQsx2AJ.jpg + NumHeight: 2 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: de3a2d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 96.49549 + posY: 1.62008822 + posZ: 5.80946732 + rotX: 357.344116 + rotY: 270.001465 + rotZ: 0.9088949 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 60500 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '605': + BackIsHidden: true + BackURL: http://i.imgur.com/UUBjsxW.jpg + FaceURL: http://i.imgur.com/OQsx2AJ.jpg + NumHeight: 2 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: dccafc + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 96.72635 + posY: 1.55489731 + posZ: 5.99035549 + rotX: 359.985565 + rotY: 270.008972 + rotZ: 359.988373 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '605': + BackIsHidden: true + BackURL: http://i.imgur.com/UUBjsxW.jpg + FaceURL: http://i.imgur.com/OQsx2AJ.jpg + NumHeight: 2 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 60503 +- 60502 +- 60501 +- 60500 +Description: '' +GMNotes: '' +GUID: 75f551 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Setup/Resolution +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -28.562685 + posY: 3.39613843 + posZ: 71.80713 + rotX: 0.252543062 + rotY: 269.9987 + rotZ: 359.625763 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag Standalone ce36ec/Bag Curse of the Rougarou cdb08e/Deck The Bayou 201e0d.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag Standalone ce36ec/Bag Curse of the Rougarou cdb08e/Deck The Bayou 201e0d.yaml new file mode 100644 index 000000000..79fed0fbd --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag Standalone ce36ec/Bag Curse of the Rougarou cdb08e/Deck The Bayou 201e0d.yaml @@ -0,0 +1,1790 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 3708 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '37': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/138879070086623108/44B0C8898A6D506FF4C651BEB8C15337B2A813F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: 79bc73 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ripples of the Surface + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 96.11044 + posY: 1.81563771 + posZ: 11.990139 + rotX: 0.002782535 + rotY: 269.978333 + rotZ: 180.03801 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3708 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '37': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/138879070086623108/44B0C8898A6D506FF4C651BEB8C15337B2A813F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: '290595' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ripples of the Surface + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 96.0846252 + posY: 1.80143249 + posZ: 11.50423 + rotX: 359.113129 + rotY: 269.972961 + rotZ: 181.588516 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3708 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '37': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/138879070086623108/44B0C8898A6D506FF4C651BEB8C15337B2A813F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: bddadf + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ripples of the Surface + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 96.0956 + posY: 1.98809683 + posZ: 11.9467564 + rotX: 0.0210224688 + rotY: 270.013367 + rotZ: 191.216843 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3704 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '37': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/138879070086623108/44B0C8898A6D506FF4C651BEB8C15337B2A813F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: 78cad4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dragged Under + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 95.96819 + posY: 1.78672945 + posZ: 11.8741407 + rotX: -0.005171597 + rotY: 269.972534 + rotZ: 179.962311 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3704 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '37': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/138879070086623108/44B0C8898A6D506FF4C651BEB8C15337B2A813F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: 5c297d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dragged Under + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 95.4837341 + posY: 1.777073 + posZ: 11.981926 + rotX: -0.004776053 + rotY: 269.995575 + rotZ: 179.920929 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3704 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '37': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/138879070086623108/44B0C8898A6D506FF4C651BEB8C15337B2A813F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: '225198' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dragged Under + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 96.23346 + posY: 1.76743829 + posZ: 11.5699434 + rotX: -0.004615859 + rotY: 269.978119 + rotZ: 179.977646 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3704 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '37': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/138879070086623108/44B0C8898A6D506FF4C651BEB8C15337B2A813F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: 59477d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dragged Under + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 96.277504 + posY: 1.75769126 + posZ: 11.8612251 + rotX: 359.986969 + rotY: 269.9884 + rotZ: 179.987244 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3710 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '37': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/138879070086623108/44B0C8898A6D506FF4C651BEB8C15337B2A813F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: b3b19e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Spectral Mist + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 96.17178 + posY: 1.74808919 + posZ: 11.7392359 + rotX: 0.000853928737 + rotY: 269.967529 + rotZ: 179.976822 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3710 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '37': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/138879070086623108/44B0C8898A6D506FF4C651BEB8C15337B2A813F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: f1b747 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Spectral Mist + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 95.3496246 + posY: 1.73865211 + posZ: 11.9196148 + rotX: 359.979462 + rotY: 270.012665 + rotZ: 179.967529 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3710 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '37': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/138879070086623108/44B0C8898A6D506FF4C651BEB8C15337B2A813F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: fcd44f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Spectral Mist + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 95.97058 + posY: 1.72877145 + posZ: 11.8046074 + rotX: 359.9874 + rotY: 269.989 + rotZ: 179.989975 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3702 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '37': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/138879070086623108/44B0C8898A6D506FF4C651BEB8C15337B2A813F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: a7fddb + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Cursed Swamp + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 95.81682 + posY: 1.86960351 + posZ: 11.9390812 + rotX: 0.01083823 + rotY: 269.976563 + rotZ: 188.7627 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3702 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '37': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/138879070086623108/44B0C8898A6D506FF4C651BEB8C15337B2A813F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: a3621c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Cursed Swamp + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 95.89244 + posY: 1.70960891 + posZ: 11.5516186 + rotX: 359.969543 + rotY: 269.96048 + rotZ: 179.972015 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3702 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '37': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/138879070086623108/44B0C8898A6D506FF4C651BEB8C15337B2A813F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: 005e92 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Cursed Swamp + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 96.50273 + posY: 1.72349739 + posZ: 12.1810226 + rotX: -0.00499628345 + rotY: 269.967651 + rotZ: 178.650818 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3711 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '37': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/138879070086623108/44B0C8898A6D506FF4C651BEB8C15337B2A813F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Creature. + GMNotes: '' + GUID: 9d5122 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Swamp Leech + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 95.5039444 + posY: 1.68972313 + posZ: 12.1592216 + rotX: 0.03530678 + rotY: 269.996 + rotZ: 180.011276 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3711 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '37': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/138879070086623108/44B0C8898A6D506FF4C651BEB8C15337B2A813F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Creature. + GMNotes: '' + GUID: b9dfc0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Swamp Leech + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 95.5024 + posY: 1.68059254 + posZ: 11.7789927 + rotX: 359.98703 + rotY: 269.984863 + rotZ: 179.9884 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3711 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '37': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/138879070086623108/44B0C8898A6D506FF4C651BEB8C15337B2A813F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Creature. + GMNotes: '' + GUID: b9dfc0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Swamp Leech + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 95.12939 + posY: 1.69603431 + posZ: 11.393609 + rotX: -0.004279594 + rotY: 270.0346 + rotZ: 178.6289 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3701 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '37': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/138879070086623108/44B0C8898A6D506FF4C651BEB8C15337B2A813F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Creature. + GMNotes: '' + GUID: fd576f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Bog Gator + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 96.07761 + posY: 1.6611414 + posZ: 11.536521 + rotX: 359.986542 + rotY: 269.986725 + rotZ: 179.992844 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3701 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '37': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/138879070086623108/44B0C8898A6D506FF4C651BEB8C15337B2A813F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Creature. + GMNotes: '' + GUID: eba049 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Bog Gator + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 96.1857452 + posY: 1.7507633 + posZ: 11.84924 + rotX: 3.60565042 + rotY: 269.964783 + rotZ: 179.948349 + 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 + UniqueBack: false + Description: Trap. + GMNotes: '' + GUID: c7b748 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Fishing Net + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 96.48252 + posY: 1.64165711 + posZ: 12.0242357 + rotX: 359.9892 + rotY: 269.999969 + rotZ: 179.9881 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265700 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '74': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/138879070086634183/2856A2C2077CFA2C61B9EF2498CAE6865024DB72/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Trap. + GMNotes: '' + GUID: 74840a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Bear Trap + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 96.01675 + posY: 1.63197923 + posZ: 12.1437464 + rotX: 0.00494211 + rotY: 269.979126 + rotZ: 179.97757 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265803 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '73': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/138879070086634183/2856A2C2077CFA2C61B9EF2498CAE6865024DB72/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Ally. Sorcerer. + GMNotes: '' + GUID: 37a76b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Lady Esprit + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 96.37452 + posY: 1.62238324 + posZ: 11.9784832 + rotX: 359.993835 + rotY: 269.994843 + rotZ: 179.985138 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 5312 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '53': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/138879070086620847/83DC8071AC8B3FA65B46B534FE722B43617C2700/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/138879070086619228/A78D316AA65C3087EFC6C696B19611C8A9D5126B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Unhallowed. + GMNotes: '' + GUID: 552a1d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Unhallowed Land + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 96.6787 + posY: 1.6116395 + posZ: 15.218606 + rotX: 359.983734 + rotY: 270.009338 + rotZ: 179.987152 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 5311 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '53': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/138879070086620847/83DC8071AC8B3FA65B46B534FE722B43617C2700/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/138879070086619228/A78D316AA65C3087EFC6C696B19611C8A9D5126B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Unhallowed. + GMNotes: '' + GUID: 15983c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Unhallowed Land + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 96.9603 + posY: 1.60194182 + posZ: 15.266715 + rotX: 359.983337 + rotY: 270.0012 + rotZ: 179.992584 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 5310 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '53': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/138879070086620847/83DC8071AC8B3FA65B46B534FE722B43617C2700/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/138879070086619228/A78D316AA65C3087EFC6C696B19611C8A9D5126B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Unhallowed. Bayou. + GMNotes: '' + GUID: 26b322 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Foul Swamp + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 96.11589 + posY: 1.59246218 + posZ: 15.2865553 + rotX: 0.0288821515 + rotY: 270.048279 + rotZ: 180.007324 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 5409 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '54': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/138879070086620847/83DC8071AC8B3FA65B46B534FE722B43617C2700/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/138879070086619228/A78D316AA65C3087EFC6C696B19611C8A9D5126B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Wilderness. + GMNotes: '' + GUID: 03b080 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Wilderness + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 96.5206757 + posY: 1.58277082 + posZ: 15.5397377 + rotX: 359.985748 + rotY: 270.004822 + rotZ: 179.984467 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 5408 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '54': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/138879070086620847/83DC8071AC8B3FA65B46B534FE722B43617C2700/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/138879070086619228/A78D316AA65C3087EFC6C696B19611C8A9D5126B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Wilderness. + GMNotes: '' + GUID: 3c5ea8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Wilderness + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 96.51885 + posY: 1.66623068 + posZ: 15.4592438 + rotX: -0.00504729664 + rotY: 270.0093 + rotZ: 175.00853 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 5407 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '54': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/138879070086620847/83DC8071AC8B3FA65B46B534FE722B43617C2700/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/138879070086619228/A78D316AA65C3087EFC6C696B19611C8A9D5126B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Wilderness. Bayou. + GMNotes: '' + GUID: 2b7d4c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Forgotten Marsh + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 96.95551 + posY: 1.661119 + posZ: 15.16496 + rotX: 359.9688 + rotY: 269.9867 + rotZ: 174.698242 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265906 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '55': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/138879070086620847/83DC8071AC8B3FA65B46B534FE722B43617C2700/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/138879070086619228/A78D316AA65C3087EFC6C696B19611C8A9D5126B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Riverside. + GMNotes: '' + GUID: ab9d69 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Riverside + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 96.3806458 + posY: 1.5538 + posZ: 15.2035551 + rotX: 0.0215503 + rotY: 270.04718 + rotZ: 180.0076 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265905 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '55': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/138879070086620847/83DC8071AC8B3FA65B46B534FE722B43617C2700/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/138879070086619228/A78D316AA65C3087EFC6C696B19611C8A9D5126B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Riverside. + GMNotes: '' + GUID: d5034e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Riverside + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 97.4063339 + posY: 1.54381227 + posZ: 15.3765936 + rotX: 359.9815 + rotY: 270.000427 + rotZ: 179.985565 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265904 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '55': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/138879070086620847/83DC8071AC8B3FA65B46B534FE722B43617C2700/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/138879070086619228/A78D316AA65C3087EFC6C696B19611C8A9D5126B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Riverside. Bayou. + GMNotes: '' + GUID: e103cf + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Brackish Waters + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 96.7821 + posY: 1.53432047 + posZ: 15.7048874 + rotX: 359.989624 + rotY: 270.0001 + rotZ: 179.990814 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 5603 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '56': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/138879070086620847/83DC8071AC8B3FA65B46B534FE722B43617C2700/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/138879070086619228/A78D316AA65C3087EFC6C696B19611C8A9D5126B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: New Orleans. + GMNotes: '' + GUID: '499281' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: New Orleans + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 96.4051361 + posY: 1.52449322 + posZ: 15.5532236 + rotX: 359.978516 + rotY: 269.997925 + rotZ: 180.042 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 5602 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '56': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/138879070086620847/83DC8071AC8B3FA65B46B534FE722B43617C2700/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/138879070086619228/A78D316AA65C3087EFC6C696B19611C8A9D5126B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: New Orleans. + GMNotes: '' + GUID: 5ab18a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: New Orleans + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 96.55859 + posY: 1.56710982 + posZ: 16.183651 + rotX: 359.987274 + rotY: 269.985626 + rotZ: 179.981064 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 5601 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '56': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/138879070086620847/83DC8071AC8B3FA65B46B534FE722B43617C2700/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/138879070086619228/A78D316AA65C3087EFC6C696B19611C8A9D5126B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: New Orleans. Bayou. + GMNotes: '' + GUID: 63f502 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Cursed Shores + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 96.19192 + posY: 1.56122208 + posZ: 15.3186045 + rotX: 0.000559572 + rotY: 269.996429 + rotZ: 180.003265 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 6604 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '66': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/138878581187514194/F3B95F32E3CAFFD36A09054AEE82B4A836D6D425/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/138879070086571028/341DEBA8DACCF6D8F27E19AD24111562E78117C2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 2 + GMNotes: '' + GUID: eb968b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Hunting the Rougarou + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 96.25003 + posY: 1.70756078 + posZ: 15.6913671 + rotX: -0.003039861 + rotY: 270.0255 + rotZ: 171.914627 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 6603 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '66': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/138878581187514194/F3B95F32E3CAFFD36A09054AEE82B4A836D6D425/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/138879070086571028/341DEBA8DACCF6D8F27E19AD24111562E78117C2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 1 + GMNotes: '' + GUID: 548a9a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Finding Lady Esprit + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 96.12794 + posY: 1.58463466 + posZ: 16.11088 + rotX: -0.00433354173 + rotY: 270.034851 + rotZ: 178.209625 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 6702 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '67': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/138878581187514194/F3B95F32E3CAFFD36A09054AEE82B4A836D6D425/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/138879070086571028/341DEBA8DACCF6D8F27E19AD24111562E78117C2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 3 + GMNotes: '' + GUID: 16c364 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Curse Spreads + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 96.34113 + posY: 1.70585382 + posZ: 15.2674551 + rotX: -0.00554312533 + rotY: 270.0221 + rotZ: 171.920471 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 6701 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '67': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/138878581187514194/F3B95F32E3CAFFD36A09054AEE82B4A836D6D425/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/138879070086571028/341DEBA8DACCF6D8F27E19AD24111562E78117C2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 2 + GMNotes: '' + GUID: ef1ce2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Rougarou Feeds + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 96.2938461 + posY: 1.721277 + posZ: 15.4722757 + rotX: 359.991669 + rotY: 270.020325 + rotZ: 171.896561 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 6700 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '67': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/138878581187514194/F3B95F32E3CAFFD36A09054AEE82B4A836D6D425/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/138879070086571028/341DEBA8DACCF6D8F27E19AD24111562E78117C2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 1 + GMNotes: '' + GUID: 0ea5ab + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: A Creature of the Bayou + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 96.3309 + posY: 1.70315087 + posZ: 15.6618423 + rotX: -0.005362979 + rotY: 270.024231 + rotZ: 171.915039 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 266000 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '38': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/138879070086620847/83DC8071AC8B3FA65B46B534FE722B43617C2700/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/138879070086619228/A78D316AA65C3087EFC6C696B19611C8A9D5126B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Curse of the Rougarou + GMNotes: '' + GUID: 9d0d56 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Scenario + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 96.44108 + posY: 1.40651608 + posZ: 15.92663 + rotX: 359.9914 + rotY: 270.021545 + rotZ: 179.96637 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2657': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/138879070086634183/2856A2C2077CFA2C61B9EF2498CAE6865024DB72/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '2658': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/138879070086634183/2856A2C2077CFA2C61B9EF2498CAE6865024DB72/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '2659': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/138879070086620847/83DC8071AC8B3FA65B46B534FE722B43617C2700/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/138879070086619228/A78D316AA65C3087EFC6C696B19611C8A9D5126B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + '2660': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/138879070086620847/83DC8071AC8B3FA65B46B534FE722B43617C2700/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/138879070086619228/A78D316AA65C3087EFC6C696B19611C8A9D5126B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + '37': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/138879070086623108/44B0C8898A6D506FF4C651BEB8C15337B2A813F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '53': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/138879070086620847/83DC8071AC8B3FA65B46B534FE722B43617C2700/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/138879070086619228/A78D316AA65C3087EFC6C696B19611C8A9D5126B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + '54': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/138879070086620847/83DC8071AC8B3FA65B46B534FE722B43617C2700/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/138879070086619228/A78D316AA65C3087EFC6C696B19611C8A9D5126B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + '56': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/138879070086620847/83DC8071AC8B3FA65B46B534FE722B43617C2700/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/138879070086619228/A78D316AA65C3087EFC6C696B19611C8A9D5126B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + '66': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/138878581187514194/F3B95F32E3CAFFD36A09054AEE82B4A836D6D425/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/138879070086571028/341DEBA8DACCF6D8F27E19AD24111562E78117C2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + '67': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/138878581187514194/F3B95F32E3CAFFD36A09054AEE82B4A836D6D425/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/138879070086571028/341DEBA8DACCF6D8F27E19AD24111562E78117C2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + '75': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/138879070086634183/2856A2C2077CFA2C61B9EF2498CAE6865024DB72/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 3708 +- 3708 +- 3708 +- 3704 +- 3704 +- 3704 +- 3704 +- 3710 +- 3710 +- 3710 +- 3702 +- 3702 +- 3702 +- 3711 +- 3711 +- 3711 +- 3701 +- 3701 +- 7502 +- 265700 +- 265803 +- 5312 +- 5311 +- 5310 +- 5409 +- 5408 +- 5407 +- 265906 +- 265905 +- 265904 +- 5603 +- 5602 +- 5601 +- 6604 +- 6603 +- 6702 +- 6701 +- 6700 +- 266000 +Description: '' +GMNotes: '' +GUID: 201e0d +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: The Bayou +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 87.53946 + posY: 3.54353642 + posZ: -3.83927536 + rotX: 357.992126 + rotY: 269.888458 + rotZ: 2.05266547 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag Standalone ce36ec/Bag Guardians of the Abyss 0a3b78.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag Standalone ce36ec/Bag Guardians of the Abyss 0a3b78.yaml new file mode 100644 index 000000000..b457be678 --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag Standalone ce36ec/Bag Guardians of the Abyss 0a3b78.yaml @@ -0,0 +1,41 @@ +Autoraise: true +ColorDiffuse: + b: 0.0 + g: 0.366520882 + r: 0.7058823 +ContainedObjects: +- !include 'Bag Guardians of the Abyss 0a3b78/Deck Abyssal Gifts 15442b.yaml' +- !include 'Bag Guardians of the Abyss 0a3b78/Deck Abyssal Tribute 00f354.yaml' +- !include 'Bag Guardians of the Abyss 0a3b78/Deck Sands of Egypt a02026.yaml' +- !include 'Bag Guardians of the Abyss 0a3b78/Deck Brotherhood of the Beast 932381.yaml' +- !include 'Bag Guardians of the Abyss 0a3b78/Bag The Night''s Usurper 7cf77a.yaml' +- !include 'Bag Guardians of the Abyss 0a3b78/Bag The Eternal Slumber 4403c4.yaml' +Description: '' +GMNotes: '' +GUID: 0a3b78 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +MeshIndex: -1 +Name: Bag +Nickname: Guardians of the Abyss +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 87.60688 + posY: 3.19003558 + posZ: 0.150991678 + rotX: 358.37854 + rotY: 0.0406393 + rotZ: 358.018066 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag Standalone ce36ec/Bag Guardians of the Abyss 0a3b78/Bag The Eternal Slumber 4403c4.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag Standalone ce36ec/Bag Guardians of the Abyss 0a3b78/Bag The Eternal Slumber 4403c4.yaml new file mode 100644 index 000000000..e1c637cf4 --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag Standalone ce36ec/Bag Guardians of the Abyss 0a3b78/Bag The Eternal Slumber 4403c4.yaml @@ -0,0 +1,38 @@ +Autoraise: true +ColorDiffuse: + b: 0.0 + g: 0.366520882 + r: 0.7058823 +ContainedObjects: +- !include 'Bag The Eternal Slumber 4403c4/Deck The Eternal Slumber 0e6ca2.yaml' +- !include 'Bag The Eternal Slumber 4403c4/Custom_Token Scenario - EasyStandard e19c97.yaml' +- !include 'Bag The Eternal Slumber 4403c4/Custom_Token Scenario - EasyStandard b7af99.yaml' +Description: '' +GMNotes: '' +GUID: 4403c4 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +MeshIndex: -1 +Name: Bag +Nickname: The Eternal Slumber +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 85.20117 + posY: 3.17356634 + posZ: -10.132699 + rotX: 358.165253 + rotY: 359.954041 + rotZ: 1.84365523 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag Standalone ce36ec/Bag Guardians of the Abyss 0a3b78/Bag The Eternal Slumber 4403c4/Custom_Token Scenario - EasyStandard b7af99.ttslua b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag Standalone ce36ec/Bag Guardians of the Abyss 0a3b78/Bag The Eternal Slumber 4403c4/Custom_Token Scenario - EasyStandard b7af99.ttslua new file mode 100644 index 000000000..1c555f04c --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag Standalone ce36ec/Bag Guardians of the Abyss 0a3b78/Bag The Eternal Slumber 4403c4/Custom_Token Scenario - EasyStandard b7af99.ttslua @@ -0,0 +1,132 @@ +MIN_VALUE = -99 +MAX_VALUE = 999 + +function onload(saved_data) + light_mode = false + val = 0 + + if saved_data ~= "" then + local loaded_data = JSON.decode(saved_data) + light_mode = loaded_data[1] + val = loaded_data[2] + end + + createAll() +end + +function updateSave() + local data_to_save = {light_mode, val} + saved_data = JSON.encode(data_to_save) + self.script_state = saved_data +end + +function createAll() + s_color = {0.5, 0.5, 0.5, 95} + + if light_mode then + f_color = {0,0,0,98} + else + f_color = {0,0,0,100} + end + + + + self.createButton({ + label=tostring(val), + click_function="add_subtract", + function_owner=self, + position={0,0.05,1.45}, + height=600, + width=1000, + alignment = 3, + scale={x=1, y=1, z=1}, + font_size=350, + font_color=f_color, + color={0,0,0,0} + }) + + + + + if light_mode then + lightButtonText = "[ Set dark ]" + else + lightButtonText = "[ Set light ]" + end + +end + +function removeAll() + self.removeInput(0) + self.removeInput(1) + self.removeButton(0) + self.removeButton(1) + self.removeButton(2) +end + +function reloadAll() + removeAll() + createAll() + + updateSave() +end + +function swap_fcolor(_obj, _color, alt_click) + light_mode = not light_mode + reloadAll() +end + +function swap_align(_obj, _color, alt_click) + center_mode = not center_mode + reloadAll() +end + +function editName(_obj, _string, value) + self.setName(value) + setTooltips() +end + +function add_subtract(_obj, _color, alt_click) + mod = alt_click and -1 or 1 + new_value = math.min(math.max(val + mod, MIN_VALUE), MAX_VALUE) + if val ~= new_value then + val = new_value + updateVal() + updateSave() + end +end + +function updateVal() + + self.editButton({ + index = 0, + label = tostring(val), + + }) +end + +function reset_val() + val = 0 + updateVal() + updateSave() +end + +function setTooltips() + self.editInput({ + index = 0, + value = self.getName(), + tooltip = ttText + }) + self.editButton({ + index = 0, + value = tostring(val), + tooltip = ttText + }) +end + +function null() +end + +function keepSample(_obj, _string, value) + reloadAll() +end \ No newline at end of file diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag Standalone ce36ec/Bag Guardians of the Abyss 0a3b78/Bag The Eternal Slumber 4403c4/Custom_Token Scenario - EasyStandard b7af99.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag Standalone ce36ec/Bag Guardians of the Abyss 0a3b78/Bag The Eternal Slumber 4403c4/Custom_Token Scenario - EasyStandard b7af99.yaml new file mode 100644 index 000000000..ac8f790e2 --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag Standalone ce36ec/Bag Guardians of the Abyss 0a3b78/Bag The Eternal Slumber 4403c4/Custom_Token Scenario - EasyStandard b7af99.yaml @@ -0,0 +1,45 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +CustomImage: + CustomToken: + MergeDistancePixels: 5.0 + Stackable: false + Thickness: 0.1 + ImageScalar: 1.0 + ImageSecondaryURL: '' + ImageURL: https://i.imgur.com/FcbXk7y.jpg + WidthScale: 0.0 +Description: 'Left click - Increase + + Right click - Decrease' +GMNotes: '' +GUID: b7af99 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Token Scenario - EasyStandard b7af99.ttslua' +LuaScriptState: '[true,0]' +Name: Custom_Token +Nickname: 'Scenario - Easy/Standard + + ' +Snap: true +Sticky: true +Tooltip: false +Transform: + posX: 83.0656738 + posY: 3.4207468 + posZ: -14.5856161 + rotX: 2.67105341 + rotY: 269.850342 + rotZ: 359.362335 + scaleX: 0.7 + scaleY: 1.0 + scaleZ: 0.7 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag Standalone ce36ec/Bag Guardians of the Abyss 0a3b78/Bag The Eternal Slumber 4403c4/Custom_Token Scenario - EasyStandard e19c97.ttslua b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag Standalone ce36ec/Bag Guardians of the Abyss 0a3b78/Bag The Eternal Slumber 4403c4/Custom_Token Scenario - EasyStandard e19c97.ttslua new file mode 100644 index 000000000..1c555f04c --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag Standalone ce36ec/Bag Guardians of the Abyss 0a3b78/Bag The Eternal Slumber 4403c4/Custom_Token Scenario - EasyStandard e19c97.ttslua @@ -0,0 +1,132 @@ +MIN_VALUE = -99 +MAX_VALUE = 999 + +function onload(saved_data) + light_mode = false + val = 0 + + if saved_data ~= "" then + local loaded_data = JSON.decode(saved_data) + light_mode = loaded_data[1] + val = loaded_data[2] + end + + createAll() +end + +function updateSave() + local data_to_save = {light_mode, val} + saved_data = JSON.encode(data_to_save) + self.script_state = saved_data +end + +function createAll() + s_color = {0.5, 0.5, 0.5, 95} + + if light_mode then + f_color = {0,0,0,98} + else + f_color = {0,0,0,100} + end + + + + self.createButton({ + label=tostring(val), + click_function="add_subtract", + function_owner=self, + position={0,0.05,1.45}, + height=600, + width=1000, + alignment = 3, + scale={x=1, y=1, z=1}, + font_size=350, + font_color=f_color, + color={0,0,0,0} + }) + + + + + if light_mode then + lightButtonText = "[ Set dark ]" + else + lightButtonText = "[ Set light ]" + end + +end + +function removeAll() + self.removeInput(0) + self.removeInput(1) + self.removeButton(0) + self.removeButton(1) + self.removeButton(2) +end + +function reloadAll() + removeAll() + createAll() + + updateSave() +end + +function swap_fcolor(_obj, _color, alt_click) + light_mode = not light_mode + reloadAll() +end + +function swap_align(_obj, _color, alt_click) + center_mode = not center_mode + reloadAll() +end + +function editName(_obj, _string, value) + self.setName(value) + setTooltips() +end + +function add_subtract(_obj, _color, alt_click) + mod = alt_click and -1 or 1 + new_value = math.min(math.max(val + mod, MIN_VALUE), MAX_VALUE) + if val ~= new_value then + val = new_value + updateVal() + updateSave() + end +end + +function updateVal() + + self.editButton({ + index = 0, + label = tostring(val), + + }) +end + +function reset_val() + val = 0 + updateVal() + updateSave() +end + +function setTooltips() + self.editInput({ + index = 0, + value = self.getName(), + tooltip = ttText + }) + self.editButton({ + index = 0, + value = tostring(val), + tooltip = ttText + }) +end + +function null() +end + +function keepSample(_obj, _string, value) + reloadAll() +end \ No newline at end of file diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag Standalone ce36ec/Bag Guardians of the Abyss 0a3b78/Bag The Eternal Slumber 4403c4/Custom_Token Scenario - EasyStandard e19c97.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag Standalone ce36ec/Bag Guardians of the Abyss 0a3b78/Bag The Eternal Slumber 4403c4/Custom_Token Scenario - EasyStandard e19c97.yaml new file mode 100644 index 000000000..e2d27cb61 --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag Standalone ce36ec/Bag Guardians of the Abyss 0a3b78/Bag The Eternal Slumber 4403c4/Custom_Token Scenario - EasyStandard e19c97.yaml @@ -0,0 +1,45 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +CustomImage: + CustomToken: + MergeDistancePixels: 5.0 + Stackable: false + Thickness: 0.1 + ImageScalar: 1.0 + ImageSecondaryURL: '' + ImageURL: https://i.imgur.com/hyR5vWS.jpg + WidthScale: 0.0 +Description: 'Left click - Increase + + Right click - Decrease' +GMNotes: '' +GUID: e19c97 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Token Scenario - EasyStandard e19c97.ttslua' +LuaScriptState: '[true,0]' +Name: Custom_Token +Nickname: 'Scenario - Easy/Standard + + ' +Snap: true +Sticky: true +Tooltip: false +Transform: + posX: 83.3726959 + posY: 3.41217685 + posZ: -15.3745441 + rotX: 1.38614213 + rotY: 270.041779 + rotZ: 3.12793016 + scaleX: 0.7 + scaleY: 1.0 + scaleZ: 0.7 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag Standalone ce36ec/Bag Guardians of the Abyss 0a3b78/Bag The Eternal Slumber 4403c4/Deck The Eternal Slumber 0e6ca2.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag Standalone ce36ec/Bag Guardians of the Abyss 0a3b78/Bag The Eternal Slumber 4403c4/Deck The Eternal Slumber 0e6ca2.yaml new file mode 100644 index 000000000..a996ad010 --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag Standalone ce36ec/Bag Guardians of the Abyss 0a3b78/Bag The Eternal Slumber 4403c4/Deck The Eternal Slumber 0e6ca2.yaml @@ -0,0 +1,781 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 266114 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2661': + BackIsHidden: true + BackURL: https://i.imgur.com/r6F1mt2.jpg + FaceURL: https://i.imgur.com/CN9PXUd.jpg + NumHeight: 5 + NumWidth: 10 + UniqueBack: true + Description: Monster. Dreamlands. + GMNotes: '' + GUID: 4212af + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Creature from the Abyss + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 89.61434 + posY: 1.41633582 + posZ: -15.3150072 + rotX: 359.987427 + rotY: 270.0 + rotZ: 179.984543 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 266114 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2661': + BackIsHidden: true + BackURL: https://i.imgur.com/r6F1mt2.jpg + FaceURL: https://i.imgur.com/CN9PXUd.jpg + NumHeight: 5 + NumWidth: 10 + UniqueBack: true + Description: Monster. Dreamlands. + GMNotes: '' + GUID: a63585 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Creature from the Abyss + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 87.01582 + posY: 1.41570723 + posZ: -10.8688011 + rotX: 359.987427 + rotY: 269.999939 + rotZ: 179.984543 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 266113 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2661': + BackIsHidden: true + BackURL: https://i.imgur.com/r6F1mt2.jpg + FaceURL: https://i.imgur.com/CN9PXUd.jpg + NumHeight: 5 + NumWidth: 10 + UniqueBack: true + Description: Humanoid. Cultist. + GMNotes: '' + GUID: ec101c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Humble Supplicant + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 101.090149 + posY: 1.58434522 + posZ: 5.876866 + rotX: 359.989 + rotY: 270.001343 + rotZ: 179.989716 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 266113 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2661': + BackIsHidden: true + BackURL: https://i.imgur.com/r6F1mt2.jpg + FaceURL: https://i.imgur.com/CN9PXUd.jpg + NumHeight: 5 + NumWidth: 10 + UniqueBack: true + Description: Humanoid. Cultist. + GMNotes: '' + GUID: c64bf1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Humble Supplicant + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 100.365952 + posY: 1.5747304 + posZ: 6.22209072 + rotX: 359.9845 + rotY: 270.0174 + rotZ: 179.989532 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 266113 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2661': + BackIsHidden: true + BackURL: https://i.imgur.com/r6F1mt2.jpg + FaceURL: https://i.imgur.com/CN9PXUd.jpg + NumHeight: 5 + NumWidth: 10 + UniqueBack: true + Description: Humanoid. Cultist. + GMNotes: '' + GUID: c26998 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Humble Supplicant + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 99.62172 + posY: 1.56528664 + posZ: 6.107013 + rotX: 359.985565 + rotY: 270.000153 + rotZ: 179.986618 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 266112 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2661': + BackIsHidden: true + BackURL: https://i.imgur.com/r6F1mt2.jpg + FaceURL: https://i.imgur.com/CN9PXUd.jpg + NumHeight: 5 + NumWidth: 10 + UniqueBack: true + Description: "Humanoid. Cultist. \nBrotherhood. " + GMNotes: '' + GUID: 7e0c5a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Neith + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 100.521271 + posY: 1.51150644 + posZ: 6.05132532 + rotX: 359.989075 + rotY: 270.0114 + rotZ: 181.902145 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 266111 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2661': + BackIsHidden: true + BackURL: https://i.imgur.com/r6F1mt2.jpg + FaceURL: https://i.imgur.com/CN9PXUd.jpg + NumHeight: 5 + NumWidth: 10 + UniqueBack: true + Description: Cairo. + GMNotes: '' + GUID: ead562 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Temple Courtyard + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 99.66214 + posY: 1.54583585 + posZ: 6.48055172 + rotX: 359.9871 + rotY: 270.001373 + rotZ: 179.984 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 266110 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2661': + BackIsHidden: true + BackURL: https://i.imgur.com/r6F1mt2.jpg + FaceURL: https://i.imgur.com/CN9PXUd.jpg + NumHeight: 5 + NumWidth: 10 + UniqueBack: true + Description: Cairo. + GMNotes: '' + GUID: 893ca0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Outskirts of Cairo + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 100.089371 + posY: 1.53611362 + posZ: 6.56361532 + rotX: 359.9854 + rotY: 270.003784 + rotZ: 179.983658 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 266109 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2661': + BackIsHidden: true + BackURL: https://i.imgur.com/r6F1mt2.jpg + FaceURL: https://i.imgur.com/CN9PXUd.jpg + NumHeight: 5 + NumWidth: 10 + UniqueBack: true + Description: Cairo. + GMNotes: '' + GUID: fb63e7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Museum of Egyptian Antiquities + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 100.060081 + posY: 1.52645457 + posZ: 6.54421234 + rotX: 359.977417 + rotY: 270.0371 + rotZ: 179.98735 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 266108 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2661': + BackIsHidden: true + BackURL: https://i.imgur.com/r6F1mt2.jpg + FaceURL: https://i.imgur.com/CN9PXUd.jpg + NumHeight: 5 + NumWidth: 10 + UniqueBack: true + Description: Cairo. + GMNotes: '' + GUID: d2de0e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Cairo Bazaar + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 100.028214 + posY: 1.59427488 + posZ: 6.516743 + rotX: 359.978516 + rotY: 270.0124 + rotZ: 181.345886 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 266107 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2661': + BackIsHidden: true + BackURL: https://i.imgur.com/r6F1mt2.jpg + FaceURL: https://i.imgur.com/CN9PXUd.jpg + NumHeight: 5 + NumWidth: 10 + UniqueBack: true + Description: Cairo. + GMNotes: '' + GUID: 4e1b71 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Streets of Cairo + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 99.73019 + posY: 1.562684 + posZ: 6.42291164 + rotX: 359.992371 + rotY: 269.9972 + rotZ: 179.986984 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 266206 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2662': + BackIsHidden: true + BackURL: https://i.imgur.com/r6F1mt2.jpg + FaceURL: https://i.imgur.com/CN9PXUd.jpg + NumHeight: 5 + NumWidth: 10 + UniqueBack: true + Description: Act 3 + GMNotes: '' + GUID: 7c9c6b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Hour of Judgment + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 99.9335556 + posY: 1.55775654 + posZ: 6.03743362 + rotX: 359.99057 + rotY: 269.974731 + rotZ: 179.990128 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 266205 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2662': + BackIsHidden: true + BackURL: https://i.imgur.com/r6F1mt2.jpg + FaceURL: https://i.imgur.com/CN9PXUd.jpg + NumHeight: 5 + NumWidth: 10 + UniqueBack: true + Description: Act 2 + GMNotes: '' + GUID: 8f21c4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Secrets in the Sand + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 99.96515 + posY: 1.55506241 + posZ: 6.174742 + rotX: 359.99054 + rotY: 270.15448 + rotZ: 179.988739 + 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: true + BackURL: https://i.imgur.com/r6F1mt2.jpg + FaceURL: https://i.imgur.com/CN9PXUd.jpg + NumHeight: 5 + NumWidth: 10 + UniqueBack: true + Description: Act 1 + GMNotes: '' + GUID: 35de51 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: 'Curse of Endless Sleep ' + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 99.8369751 + posY: 1.55711389 + posZ: 6.01686859 + rotX: 359.990662 + rotY: 269.882233 + rotZ: 179.98996 + 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: true + BackURL: https://i.imgur.com/r6F1mt2.jpg + FaceURL: https://i.imgur.com/CN9PXUd.jpg + NumHeight: 5 + NumWidth: 10 + UniqueBack: true + Description: Agenda 3 + GMNotes: '' + GUID: 9ebdb5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Garden of Shadows + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 100.441 + posY: 1.57075548 + posZ: 5.98070765 + rotX: 359.988464 + rotY: 269.084747 + rotZ: 179.98912 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 266202 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2662': + BackIsHidden: true + BackURL: https://i.imgur.com/r6F1mt2.jpg + FaceURL: https://i.imgur.com/CN9PXUd.jpg + NumHeight: 5 + NumWidth: 10 + UniqueBack: true + Description: Agenda 2 + GMNotes: '' + GUID: 86be88 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Curse of the Abyss + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 100.316193 + posY: 1.55303633 + posZ: 6.045522 + rotX: 359.993164 + rotY: 269.8516 + rotZ: 179.992737 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 266201 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2662': + BackIsHidden: true + BackURL: https://i.imgur.com/r6F1mt2.jpg + FaceURL: https://i.imgur.com/CN9PXUd.jpg + NumHeight: 5 + NumWidth: 10 + UniqueBack: true + Description: Agenda 1 + GMNotes: '' + GUID: a1ba64 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Jessie's Request + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 100.396194 + posY: 1.40806258 + posZ: 6.232809 + rotX: 359.9825 + rotY: 269.081116 + rotZ: 179.985535 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2661': + BackIsHidden: true + BackURL: https://i.imgur.com/r6F1mt2.jpg + FaceURL: https://i.imgur.com/CN9PXUd.jpg + NumHeight: 5 + NumWidth: 10 + UniqueBack: true + '2662': + BackIsHidden: true + BackURL: https://i.imgur.com/r6F1mt2.jpg + FaceURL: https://i.imgur.com/CN9PXUd.jpg + NumHeight: 5 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 266114 +- 266114 +- 266113 +- 266113 +- 266113 +- 266112 +- 266111 +- 266110 +- 266109 +- 266108 +- 266107 +- 266206 +- 266205 +- 266204 +- 266203 +- 266202 +- 266201 +Description: '' +GMNotes: '' +GUID: 0e6ca2 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: The Eternal Slumber +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 84.1840057 + posY: 3.48586082 + posZ: -15.0248289 + rotX: 359.050476 + rotY: 269.9455 + rotZ: 2.95050645 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag Standalone ce36ec/Bag Guardians of the Abyss 0a3b78/Bag The Night's Usurper 7cf77a.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag Standalone ce36ec/Bag Guardians of the Abyss 0a3b78/Bag The Night's Usurper 7cf77a.yaml new file mode 100644 index 000000000..eaeffaccb --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag Standalone ce36ec/Bag Guardians of the Abyss 0a3b78/Bag The Night's Usurper 7cf77a.yaml @@ -0,0 +1,38 @@ +Autoraise: true +ColorDiffuse: + b: 0.0 + g: 0.366520882 + r: 0.7058823 +ContainedObjects: +- !include 'Bag The Night''s Usurper 7cf77a/Deck The Night''s Usurper 4cec40.yaml' +- !include 'Bag The Night''s Usurper 7cf77a/Custom_Token Scenario - HardExpert 9ed124.yaml' +- !include 'Bag The Night''s Usurper 7cf77a/Custom_Token Scenario - EasyStandard 535979.yaml' +Description: '' +GMNotes: '' +GUID: 7cf77a +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +MeshIndex: -1 +Name: Bag +Nickname: The Night's Usurper +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 86.03548 + posY: 3.185643 + posZ: -10.0806684 + rotX: 357.3882 + rotY: 0.00508228969 + rotZ: 359.432465 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag Standalone ce36ec/Bag Guardians of the Abyss 0a3b78/Bag The Night's Usurper 7cf77a/Custom_Token Scenario - EasyStandard 535979.ttslua b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag Standalone ce36ec/Bag Guardians of the Abyss 0a3b78/Bag The Night's Usurper 7cf77a/Custom_Token Scenario - EasyStandard 535979.ttslua new file mode 100644 index 000000000..1c555f04c --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag Standalone ce36ec/Bag Guardians of the Abyss 0a3b78/Bag The Night's Usurper 7cf77a/Custom_Token Scenario - EasyStandard 535979.ttslua @@ -0,0 +1,132 @@ +MIN_VALUE = -99 +MAX_VALUE = 999 + +function onload(saved_data) + light_mode = false + val = 0 + + if saved_data ~= "" then + local loaded_data = JSON.decode(saved_data) + light_mode = loaded_data[1] + val = loaded_data[2] + end + + createAll() +end + +function updateSave() + local data_to_save = {light_mode, val} + saved_data = JSON.encode(data_to_save) + self.script_state = saved_data +end + +function createAll() + s_color = {0.5, 0.5, 0.5, 95} + + if light_mode then + f_color = {0,0,0,98} + else + f_color = {0,0,0,100} + end + + + + self.createButton({ + label=tostring(val), + click_function="add_subtract", + function_owner=self, + position={0,0.05,1.45}, + height=600, + width=1000, + alignment = 3, + scale={x=1, y=1, z=1}, + font_size=350, + font_color=f_color, + color={0,0,0,0} + }) + + + + + if light_mode then + lightButtonText = "[ Set dark ]" + else + lightButtonText = "[ Set light ]" + end + +end + +function removeAll() + self.removeInput(0) + self.removeInput(1) + self.removeButton(0) + self.removeButton(1) + self.removeButton(2) +end + +function reloadAll() + removeAll() + createAll() + + updateSave() +end + +function swap_fcolor(_obj, _color, alt_click) + light_mode = not light_mode + reloadAll() +end + +function swap_align(_obj, _color, alt_click) + center_mode = not center_mode + reloadAll() +end + +function editName(_obj, _string, value) + self.setName(value) + setTooltips() +end + +function add_subtract(_obj, _color, alt_click) + mod = alt_click and -1 or 1 + new_value = math.min(math.max(val + mod, MIN_VALUE), MAX_VALUE) + if val ~= new_value then + val = new_value + updateVal() + updateSave() + end +end + +function updateVal() + + self.editButton({ + index = 0, + label = tostring(val), + + }) +end + +function reset_val() + val = 0 + updateVal() + updateSave() +end + +function setTooltips() + self.editInput({ + index = 0, + value = self.getName(), + tooltip = ttText + }) + self.editButton({ + index = 0, + value = tostring(val), + tooltip = ttText + }) +end + +function null() +end + +function keepSample(_obj, _string, value) + reloadAll() +end \ No newline at end of file diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag Standalone ce36ec/Bag Guardians of the Abyss 0a3b78/Bag The Night's Usurper 7cf77a/Custom_Token Scenario - EasyStandard 535979.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag Standalone ce36ec/Bag Guardians of the Abyss 0a3b78/Bag The Night's Usurper 7cf77a/Custom_Token Scenario - EasyStandard 535979.yaml new file mode 100644 index 000000000..2319b3080 --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag Standalone ce36ec/Bag Guardians of the Abyss 0a3b78/Bag The Night's Usurper 7cf77a/Custom_Token Scenario - EasyStandard 535979.yaml @@ -0,0 +1,45 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +CustomImage: + CustomToken: + MergeDistancePixels: 5.0 + Stackable: false + Thickness: 0.1 + ImageScalar: 1.0 + ImageSecondaryURL: '' + ImageURL: https://i.imgur.com/y2pFWnz.jpg + WidthScale: 0.0 +Description: 'Left click - Increase + + Right click - Decrease' +GMNotes: '' +GUID: '535979' +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Token Scenario - EasyStandard 535979.ttslua' +LuaScriptState: '[true,0]' +Name: Custom_Token +Nickname: 'Scenario - Easy/Standard + + ' +Snap: true +Sticky: true +Tooltip: false +Transform: + posX: 83.194725 + posY: 3.45371962 + posZ: -14.3584871 + rotX: 0.780362964 + rotY: 270.173035 + rotZ: 2.1209898 + scaleX: 0.7 + scaleY: 1.0 + scaleZ: 0.7 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag Standalone ce36ec/Bag Guardians of the Abyss 0a3b78/Bag The Night's Usurper 7cf77a/Custom_Token Scenario - HardExpert 9ed124.ttslua b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag Standalone ce36ec/Bag Guardians of the Abyss 0a3b78/Bag The Night's Usurper 7cf77a/Custom_Token Scenario - HardExpert 9ed124.ttslua new file mode 100644 index 000000000..1c555f04c --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag Standalone ce36ec/Bag Guardians of the Abyss 0a3b78/Bag The Night's Usurper 7cf77a/Custom_Token Scenario - HardExpert 9ed124.ttslua @@ -0,0 +1,132 @@ +MIN_VALUE = -99 +MAX_VALUE = 999 + +function onload(saved_data) + light_mode = false + val = 0 + + if saved_data ~= "" then + local loaded_data = JSON.decode(saved_data) + light_mode = loaded_data[1] + val = loaded_data[2] + end + + createAll() +end + +function updateSave() + local data_to_save = {light_mode, val} + saved_data = JSON.encode(data_to_save) + self.script_state = saved_data +end + +function createAll() + s_color = {0.5, 0.5, 0.5, 95} + + if light_mode then + f_color = {0,0,0,98} + else + f_color = {0,0,0,100} + end + + + + self.createButton({ + label=tostring(val), + click_function="add_subtract", + function_owner=self, + position={0,0.05,1.45}, + height=600, + width=1000, + alignment = 3, + scale={x=1, y=1, z=1}, + font_size=350, + font_color=f_color, + color={0,0,0,0} + }) + + + + + if light_mode then + lightButtonText = "[ Set dark ]" + else + lightButtonText = "[ Set light ]" + end + +end + +function removeAll() + self.removeInput(0) + self.removeInput(1) + self.removeButton(0) + self.removeButton(1) + self.removeButton(2) +end + +function reloadAll() + removeAll() + createAll() + + updateSave() +end + +function swap_fcolor(_obj, _color, alt_click) + light_mode = not light_mode + reloadAll() +end + +function swap_align(_obj, _color, alt_click) + center_mode = not center_mode + reloadAll() +end + +function editName(_obj, _string, value) + self.setName(value) + setTooltips() +end + +function add_subtract(_obj, _color, alt_click) + mod = alt_click and -1 or 1 + new_value = math.min(math.max(val + mod, MIN_VALUE), MAX_VALUE) + if val ~= new_value then + val = new_value + updateVal() + updateSave() + end +end + +function updateVal() + + self.editButton({ + index = 0, + label = tostring(val), + + }) +end + +function reset_val() + val = 0 + updateVal() + updateSave() +end + +function setTooltips() + self.editInput({ + index = 0, + value = self.getName(), + tooltip = ttText + }) + self.editButton({ + index = 0, + value = tostring(val), + tooltip = ttText + }) +end + +function null() +end + +function keepSample(_obj, _string, value) + reloadAll() +end \ No newline at end of file diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag Standalone ce36ec/Bag Guardians of the Abyss 0a3b78/Bag The Night's Usurper 7cf77a/Custom_Token Scenario - HardExpert 9ed124.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag Standalone ce36ec/Bag Guardians of the Abyss 0a3b78/Bag The Night's Usurper 7cf77a/Custom_Token Scenario - HardExpert 9ed124.yaml new file mode 100644 index 000000000..024bc4b48 --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag Standalone ce36ec/Bag Guardians of the Abyss 0a3b78/Bag The Night's Usurper 7cf77a/Custom_Token Scenario - HardExpert 9ed124.yaml @@ -0,0 +1,45 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +CustomImage: + CustomToken: + MergeDistancePixels: 5.0 + Stackable: false + Thickness: 0.1 + ImageScalar: 1.0 + ImageSecondaryURL: '' + ImageURL: https://i.imgur.com/tMKPBC2.jpg + WidthScale: 0.0 +Description: 'Left click - Increase + + Right click - Decrease' +GMNotes: '' +GUID: 9ed124 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Token Scenario - HardExpert 9ed124.ttslua' +LuaScriptState: '[true,0]' +Name: Custom_Token +Nickname: 'Scenario - Hard/Expert + + ' +Snap: true +Sticky: true +Tooltip: false +Transform: + posX: 82.22788 + posY: 3.41248727 + posZ: -14.324954 + rotX: 2.5393312 + rotY: 270.024353 + rotZ: 0.773569763 + scaleX: 0.7 + scaleY: 1.0 + scaleZ: 0.7 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag Standalone ce36ec/Bag Guardians of the Abyss 0a3b78/Bag The Night's Usurper 7cf77a/Deck The Night's Usurper 4cec40.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag Standalone ce36ec/Bag Guardians of the Abyss 0a3b78/Bag The Night's Usurper 7cf77a/Deck The Night's Usurper 4cec40.yaml new file mode 100644 index 000000000..83030c2eb --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag Standalone ce36ec/Bag Guardians of the Abyss 0a3b78/Bag The Night's Usurper 7cf77a/Deck The Night's Usurper 4cec40.yaml @@ -0,0 +1,745 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 266211 + 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 + UniqueBack: true + Description: Humanoid. Cultist. + GMNotes: '' + GUID: ef54c7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Speaker for the Dark Pharaoh + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 99.9226 + posY: 2.596977 + posZ: -4.725564 + rotX: 0.0 + rotY: 270.0 + rotZ: 159.4433 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 266212 + 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 + UniqueBack: true + Description: Humanoid. Cultist. + GMNotes: '' + GUID: 0aae5d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Speaker for the Dark Pharaoh + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 96.80403 + posY: 2.597308 + posZ: -3.412189 + rotX: 0.0 + rotY: 270.0 + rotZ: 159.4433 + 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: true + BackURL: https://i.imgur.com/NSozoRe.jpg + FaceURL: https://i.imgur.com/HLQOkvy.jpg + NumHeight: 5 + NumWidth: 10 + UniqueBack: true + Description: Monster. Dreamlands. Shantak. + GMNotes: '' + GUID: 60018e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dreaded Shantak + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 96.26774 + posY: 1.59513223 + posZ: -0.670388 + rotX: 359.0123 + rotY: 269.997681 + rotZ: 177.903961 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 266213 + 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 + UniqueBack: true + Description: Monster. Dreamlands. Shantak. + GMNotes: '' + GUID: 5a91c0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dreaded Shantak + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 95.88562 + posY: 1.63319123 + posZ: -1.08543169 + rotX: 356.671539 + rotY: 270.015259 + rotZ: 181.230835 + 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: true + BackURL: https://i.imgur.com/NSozoRe.jpg + FaceURL: https://i.imgur.com/HLQOkvy.jpg + NumHeight: 5 + NumWidth: 10 + UniqueBack: true + Description: Expedition. Desert. Ruins. + GMNotes: '' + GUID: bdbf89 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Eldritch Gate + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 96.45611 + posY: 1.55640936 + posZ: -0.734766364 + rotX: 359.993958 + rotY: 270.020538 + rotZ: 179.961945 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 266205 + 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 + UniqueBack: true + Description: Servitor. Dreamlands. Conspirator. Elite. + GMNotes: '' + GUID: 1484da + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Xzharah + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 95.4240952 + posY: 1.54873657 + posZ: -0.724856436 + rotX: 359.9889 + rotY: 270.0051 + rotZ: 179.981186 + 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: true + BackURL: https://i.imgur.com/NSozoRe.jpg + FaceURL: https://i.imgur.com/HLQOkvy.jpg + NumHeight: 5 + NumWidth: 10 + UniqueBack: true + Description: Otherworld. Dreamlands. + GMNotes: '' + GUID: 5c32ef + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Mist-Filled Caverns + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 95.7708359 + posY: 1.53893638 + posZ: -0.619899631 + rotX: 359.990326 + rotY: 270.000549 + rotZ: 179.989929 + 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: true + BackURL: https://i.imgur.com/NSozoRe.jpg + FaceURL: https://i.imgur.com/HLQOkvy.jpg + NumHeight: 5 + NumWidth: 10 + UniqueBack: true + Description: Otherworld. Dreamlands. + GMNotes: '' + GUID: '768755' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Stairway to Sarkomand + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 96.04646 + posY: 1.52914584 + posZ: -0.354059726 + rotX: 359.989655 + rotY: 270.003754 + rotZ: 179.989731 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 266206 + 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 + UniqueBack: true + Description: Otherworld. Dreamlands. + GMNotes: '' + GUID: 17e165 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Tunnels under Ngranek + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 96.44039 + posY: 1.59666669 + posZ: -0.55979383 + rotX: 359.9745 + rotY: 270.0378 + rotZ: 181.3411 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 266208 + 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 + UniqueBack: true + Description: Otherworld. Dreamlands. + GMNotes: '' + GUID: da8ae8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Great Abyss + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 95.8229 + posY: 1.565405 + posZ: -0.08878335 + rotX: 359.978943 + rotY: 270.0222 + rotZ: 179.992569 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 266207 + 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 + UniqueBack: true + Description: Otherworld. Extradimensional. + GMNotes: '' + GUID: 19bf4f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: A Dream Betwixt + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 95.37102 + posY: 1.59191561 + posZ: -1.15133333 + rotX: -0.00536361942 + rotY: 270.026062 + rotZ: 178.38002 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 266400 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2664': + BackIsHidden: true + BackURL: https://i.imgur.com/NSozoRe.jpg + FaceURL: https://i.imgur.com/HLQOkvy.jpg + NumHeight: 5 + NumWidth: 10 + UniqueBack: true + Description: Act 3 + GMNotes: '' + GUID: 93dd4c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Night's Usurper + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 95.96377 + posY: 1.55791354 + posZ: -0.7406169 + rotX: 359.9868 + rotY: 269.1516 + rotZ: 179.981064 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 266401 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2664': + BackIsHidden: true + BackURL: https://i.imgur.com/NSozoRe.jpg + FaceURL: https://i.imgur.com/HLQOkvy.jpg + NumHeight: 5 + NumWidth: 10 + UniqueBack: true + Description: Act 2 + GMNotes: '' + GUID: 158b35 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Into the Gate + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 95.6354141 + posY: 1.56212819 + posZ: -0.492235 + rotX: 0.0759175047 + rotY: 269.468872 + rotZ: 179.95282 + 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: true + BackURL: https://i.imgur.com/NSozoRe.jpg + FaceURL: https://i.imgur.com/HLQOkvy.jpg + NumHeight: 5 + NumWidth: 10 + UniqueBack: true + Description: Act 1 + GMNotes: '' + GUID: c715c9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Search for the Gate + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 95.71167 + posY: 1.5735656 + posZ: -0.776779234 + rotX: 359.991852 + rotY: 269.90036 + rotZ: 179.9727 + 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: https://i.imgur.com/b1f3mgA.jpg + FaceURL: https://i.imgur.com/FFxz16e.jpg + NumHeight: 2 + NumWidth: 2 + UniqueBack: true + Description: Agenda 2 + GMNotes: '' + GUID: 023684 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Schemes in the Dark Beyond + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 96.21822 + posY: 1.55591869 + posZ: -0.447373033 + rotX: 359.974731 + rotY: 270.0273 + rotZ: 179.95517 + 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: true + BackURL: https://i.imgur.com/NSozoRe.jpg + FaceURL: https://i.imgur.com/HLQOkvy.jpg + NumHeight: 5 + NumWidth: 10 + UniqueBack: true + Description: Agenda 1 + GMNotes: '' + GUID: 05b7a2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Brotherhood Bides Their Time + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 95.81102 + posY: 1.41099083 + posZ: -0.609462 + rotX: 359.985748 + rotY: 270.020447 + rotZ: 179.9743 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2662': + BackIsHidden: true + BackURL: https://i.imgur.com/NSozoRe.jpg + FaceURL: https://i.imgur.com/HLQOkvy.jpg + NumHeight: 5 + NumWidth: 10 + UniqueBack: true + '2664': + BackIsHidden: true + BackURL: https://i.imgur.com/NSozoRe.jpg + FaceURL: https://i.imgur.com/HLQOkvy.jpg + NumHeight: 5 + NumWidth: 10 + UniqueBack: true + '2665': + BackIsHidden: true + BackURL: https://i.imgur.com/b1f3mgA.jpg + FaceURL: https://i.imgur.com/FFxz16e.jpg + NumHeight: 2 + NumWidth: 2 + UniqueBack: true +DeckIDs: +- 266211 +- 266212 +- 266214 +- 266213 +- 266215 +- 266205 +- 266210 +- 266209 +- 266206 +- 266208 +- 266207 +- 266400 +- 266401 +- 266402 +- 266500 +- 266404 +Description: '' +GMNotes: '' +GUID: 4cec40 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: The Night's Usurper +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 82.90226 + posY: 3.45565 + posZ: -14.792428 + rotX: 1.11727059 + rotY: 270.068268 + rotZ: 3.44090652 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag Standalone ce36ec/Bag Guardians of the Abyss 0a3b78/Deck Abyssal Gifts 15442b.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag Standalone ce36ec/Bag Guardians of the Abyss 0a3b78/Deck Abyssal Gifts 15442b.yaml new file mode 100644 index 000000000..79eebac21 --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag Standalone ce36ec/Bag Guardians of the Abyss 0a3b78/Deck Abyssal Gifts 15442b.yaml @@ -0,0 +1,129 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- 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 + UniqueBack: true + Description: Monster. Nightgaunt. Power. + GMNotes: '' + GUID: cf96b9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Summoned Nightgaunt + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 103.201096 + posY: 1.4056803 + posZ: 2.052395 + rotX: 359.9875 + rotY: 270.023163 + rotZ: 359.970825 + 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 + UniqueBack: true + Description: Item. Weapon. Relic. Melee. + GMNotes: '' + GUID: dc674e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Khopesh of the Abyss + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 103.385689 + posY: 1.55077529 + posZ: 2.09006643 + rotX: 0.006596432 + rotY: 270.0209 + rotZ: 359.938751 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2662': + BackIsHidden: true + BackURL: https://i.imgur.com/NSozoRe.jpg + FaceURL: https://i.imgur.com/HLQOkvy.jpg + NumHeight: 5 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 266217 +- 266216 +Description: '' +GMNotes: '' +GUID: 15442b +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Abyssal Gifts +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 85.99363 + posY: 3.490016 + posZ: -9.419254 + rotX: 359.546478 + rotY: 270.023254 + rotZ: 0.0161841717 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag Standalone ce36ec/Bag Guardians of the Abyss 0a3b78/Deck Abyssal Tribute 00f354.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag Standalone ce36ec/Bag Guardians of the Abyss 0a3b78/Deck Abyssal Tribute 00f354.yaml new file mode 100644 index 000000000..a977bfdf5 --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag Standalone ce36ec/Bag Guardians of the Abyss 0a3b78/Deck Abyssal Tribute 00f354.yaml @@ -0,0 +1,129 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 266141 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2661': + BackIsHidden: true + BackURL: https://i.imgur.com/r6F1mt2.jpg + FaceURL: https://i.imgur.com/CN9PXUd.jpg + NumHeight: 5 + NumWidth: 10 + UniqueBack: true + Description: Item. Relic. + GMNotes: '' + GUID: 0ce113 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ancient Ankh + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 94.6309052 + posY: 1.40865242 + posZ: -1.769354 + rotX: 359.98233 + rotY: 270.0 + rotZ: 359.982849 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 266140 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2661': + BackIsHidden: true + BackURL: https://i.imgur.com/r6F1mt2.jpg + FaceURL: https://i.imgur.com/CN9PXUd.jpg + NumHeight: 5 + NumWidth: 10 + UniqueBack: true + Description: Ally. Government. + GMNotes: '' + GUID: cfb393 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: John & Jessie Burke + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 94.58986 + posY: 1.55362213 + posZ: -2.045931 + rotX: 359.989532 + rotY: 270.0 + rotZ: 359.9869 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2661': + BackIsHidden: true + BackURL: https://i.imgur.com/r6F1mt2.jpg + FaceURL: https://i.imgur.com/CN9PXUd.jpg + NumHeight: 5 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 266141 +- 266140 +Description: '' +GMNotes: '' +GUID: 00f354 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Abyssal Tribute +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 85.91625 + posY: 3.4417882 + posZ: -10.153986 + rotX: 359.990784 + rotY: 269.9999 + rotZ: 3.812585 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag Standalone ce36ec/Bag Guardians of the Abyss 0a3b78/Deck Brotherhood of the Beast 932381.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag Standalone ce36ec/Bag Guardians of the Abyss 0a3b78/Deck Brotherhood of the Beast 932381.yaml new file mode 100644 index 000000000..80c947036 --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag Standalone ce36ec/Bag Guardians of the Abyss 0a3b78/Deck Brotherhood of the Beast 932381.yaml @@ -0,0 +1,301 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 266120 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2661': + BackIsHidden: true + BackURL: https://i.imgur.com/r6F1mt2.jpg + FaceURL: https://i.imgur.com/CN9PXUd.jpg + NumHeight: 5 + NumWidth: 10 + UniqueBack: true + Description: "Humanoid. Cultist. \nBrotherhood. " + GMNotes: '' + GUID: b9d9d7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Professor Nathaniel Taylor + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 96.0717239 + posY: 1.55856383 + posZ: 6.309998 + rotX: 359.9856 + rotY: 269.991028 + rotZ: 179.976654 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 266119 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2661': + BackIsHidden: true + BackURL: https://i.imgur.com/r6F1mt2.jpg + FaceURL: https://i.imgur.com/CN9PXUd.jpg + NumHeight: 5 + NumWidth: 10 + UniqueBack: true + Description: "Humanoid. Cultist. \nBrotherhood. " + GMNotes: '' + GUID: 915fda + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Nassor + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 96.35854 + posY: 1.55588639 + posZ: 6.306915 + rotX: 359.9922 + rotY: 270.004364 + rotZ: 179.98558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 266118 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2661': + BackIsHidden: true + BackURL: https://i.imgur.com/r6F1mt2.jpg + FaceURL: https://i.imgur.com/CN9PXUd.jpg + NumHeight: 5 + NumWidth: 10 + UniqueBack: true + Description: "Humanoid. Cultist. \nBrotherhood. " + GMNotes: '' + GUID: fba81e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Farid + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 96.26519 + posY: 1.5578481 + posZ: 6.596238 + rotX: 359.988953 + rotY: 270.000336 + rotZ: 179.985886 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 266117 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2661': + BackIsHidden: true + BackURL: https://i.imgur.com/r6F1mt2.jpg + FaceURL: https://i.imgur.com/CN9PXUd.jpg + NumHeight: 5 + NumWidth: 10 + UniqueBack: true + Description: "Humanoid. Cultist. \nBrotherhood. " + GMNotes: '' + GUID: 72726a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: 'Nadia Nimr ' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 96.01542 + posY: 1.57155371 + posZ: 6.34895372 + rotX: 359.993134 + rotY: 269.9985 + rotZ: 180.002029 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 266116 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2661': + BackIsHidden: true + BackURL: https://i.imgur.com/r6F1mt2.jpg + FaceURL: https://i.imgur.com/CN9PXUd.jpg + NumHeight: 5 + NumWidth: 10 + UniqueBack: true + Description: "Humanoid. Cultist. \nBrotherhood. " + GMNotes: '' + GUID: 4d9573 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dr. Wentworth Moore + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 96.01034 + posY: 1.55388844 + posZ: 6.09635639 + rotX: -0.005178709 + rotY: 270.000427 + rotZ: 180.002121 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 266115 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2661': + BackIsHidden: true + BackURL: https://i.imgur.com/r6F1mt2.jpg + FaceURL: https://i.imgur.com/CN9PXUd.jpg + NumHeight: 5 + NumWidth: 10 + UniqueBack: true + Description: "Humanoid. Cultist. \nBrotherhood. " + GMNotes: '' + GUID: e97907 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dr. Layla El Masri + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 96.30568 + posY: 1.4089067 + posZ: 6.36103773 + rotX: 359.981934 + rotY: 269.999817 + rotZ: 179.986679 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2661': + BackIsHidden: true + BackURL: https://i.imgur.com/r6F1mt2.jpg + FaceURL: https://i.imgur.com/CN9PXUd.jpg + NumHeight: 5 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 266120 +- 266119 +- 266118 +- 266117 +- 266116 +- 266115 +Description: '' +GMNotes: '' +GUID: '932381' +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Brotherhood of the Beast +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 86.17205 + posY: 3.46090269 + posZ: -9.767976 + rotX: 358.912079 + rotY: 269.947571 + rotZ: 3.099713 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag Standalone ce36ec/Bag Guardians of the Abyss 0a3b78/Deck Sands of Egypt a02026.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag Standalone ce36ec/Bag Guardians of the Abyss 0a3b78/Deck Sands of Egypt a02026.yaml new file mode 100644 index 000000000..a57aae9e1 --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag Standalone ce36ec/Bag Guardians of the Abyss 0a3b78/Deck Sands of Egypt a02026.yaml @@ -0,0 +1,1462 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 266139 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2661': + BackIsHidden: true + BackURL: https://i.imgur.com/r6F1mt2.jpg + FaceURL: https://i.imgur.com/CN9PXUd.jpg + NumHeight: 5 + NumWidth: 10 + UniqueBack: true + Description: Curse. Abyss. + GMNotes: '' + GUID: 401b98 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Abyssal Reach + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 111.764748 + posY: 1.40368664 + posZ: 3.078717 + rotX: 359.987427 + rotY: 270.00592 + rotZ: 359.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 266139 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2661': + BackIsHidden: true + BackURL: https://i.imgur.com/r6F1mt2.jpg + FaceURL: https://i.imgur.com/CN9PXUd.jpg + NumHeight: 5 + NumWidth: 10 + UniqueBack: true + Description: Curse. Abyss. + GMNotes: '' + GUID: e90dfd + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Abyssal Reach + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 111.272751 + posY: 1.40450168 + posZ: 0.461760968 + rotX: 359.987457 + rotY: 270.0058 + rotZ: 359.984528 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 266139 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2661': + BackIsHidden: true + BackURL: https://i.imgur.com/r6F1mt2.jpg + FaceURL: https://i.imgur.com/CN9PXUd.jpg + NumHeight: 5 + NumWidth: 10 + UniqueBack: true + Description: Curse. Abyss. + GMNotes: '' + GUID: c4f1ac + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Abyssal Reach + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 112.553955 + posY: 1.454404 + posZ: 0.7533091 + rotX: 359.9871 + rotY: 270.005859 + rotZ: 359.984344 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 266138 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2661': + BackIsHidden: true + BackURL: https://i.imgur.com/r6F1mt2.jpg + FaceURL: https://i.imgur.com/CN9PXUd.jpg + NumHeight: 5 + NumWidth: 10 + UniqueBack: true + Description: Power. + GMNotes: '' + GUID: 1cf015 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Black Wind + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 103.222229 + posY: 1.405728 + posZ: 2.466515 + rotX: 359.987427 + rotY: 270.00592 + rotZ: 359.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 266138 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2661': + BackIsHidden: true + BackURL: https://i.imgur.com/r6F1mt2.jpg + FaceURL: https://i.imgur.com/CN9PXUd.jpg + NumHeight: 5 + NumWidth: 10 + UniqueBack: true + Description: Power. + GMNotes: '' + GUID: c118b2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Black Wind + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 104.226761 + posY: 1.40468252 + posZ: 5.5247345 + rotX: 359.987427 + rotY: 270.005951 + rotZ: 359.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 266137 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2661': + BackIsHidden: true + BackURL: https://i.imgur.com/r6F1mt2.jpg + FaceURL: https://i.imgur.com/CN9PXUd.jpg + NumHeight: 5 + NumWidth: 10 + UniqueBack: true + Description: Curse. Abyss. + GMNotes: '' + GUID: 9c67a9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dark Sacrifice + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 108.307663 + posY: 1.40514076 + posZ: 0.502831459 + rotX: 359.987427 + rotY: 270.00592 + rotZ: 359.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 266137 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2661': + BackIsHidden: true + BackURL: https://i.imgur.com/r6F1mt2.jpg + FaceURL: https://i.imgur.com/CN9PXUd.jpg + NumHeight: 5 + NumWidth: 10 + UniqueBack: true + Description: Curse. Abyss. + GMNotes: '' + GUID: 9283d5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dark Sacrifice + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 108.419174 + posY: 1.40624368 + posZ: -3.676454 + rotX: 359.987427 + rotY: 270.00592 + rotZ: 359.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 266136 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2661': + BackIsHidden: true + BackURL: https://i.imgur.com/r6F1mt2.jpg + FaceURL: https://i.imgur.com/CN9PXUd.jpg + NumHeight: 5 + NumWidth: 10 + UniqueBack: true + Description: Curse. Abyss. + GMNotes: '' + GUID: d3ee15 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Slumber + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 105.983589 + posY: 1.40620255 + posZ: -1.54122639 + rotX: 359.987427 + rotY: 270.00592 + rotZ: 359.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 266136 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2661': + BackIsHidden: true + BackURL: https://i.imgur.com/r6F1mt2.jpg + FaceURL: https://i.imgur.com/CN9PXUd.jpg + NumHeight: 5 + NumWidth: 10 + UniqueBack: true + Description: Curse. Abyss. + GMNotes: '' + GUID: 7eda6c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Slumber + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 107.604233 + posY: 1.4068253 + posZ: -5.16969728 + rotX: 359.987427 + rotY: 270.00592 + rotZ: 359.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 266135 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2661': + BackIsHidden: true + BackURL: https://i.imgur.com/r6F1mt2.jpg + FaceURL: https://i.imgur.com/CN9PXUd.jpg + NumHeight: 5 + NumWidth: 10 + UniqueBack: true + Description: Power. + GMNotes: '' + GUID: 500bf1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Swarm of Locusts + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 105.789612 + posY: 1.40543532 + posZ: 1.46101308 + rotX: 359.987427 + rotY: 270.005981 + rotZ: 359.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 266135 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2661': + BackIsHidden: true + BackURL: https://i.imgur.com/r6F1mt2.jpg + FaceURL: https://i.imgur.com/CN9PXUd.jpg + NumHeight: 5 + NumWidth: 10 + UniqueBack: true + Description: Power. + GMNotes: '' + GUID: 7330f5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Swarm of Locusts + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 104.146652 + posY: 1.40681064 + posZ: -2.29990029 + rotX: 359.987427 + rotY: 270.005981 + rotZ: 359.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 266135 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2661': + BackIsHidden: true + BackURL: https://i.imgur.com/r6F1mt2.jpg + FaceURL: https://i.imgur.com/CN9PXUd.jpg + NumHeight: 5 + NumWidth: 10 + UniqueBack: true + Description: Power. + GMNotes: '' + GUID: 1f2bda + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Swarm of Locusts + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 109.952225 + posY: 1.40561056 + posZ: -2.57813287 + rotX: 359.987427 + rotY: 270.00592 + rotZ: 359.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 266134 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2661': + BackIsHidden: true + BackURL: https://i.imgur.com/r6F1mt2.jpg + FaceURL: https://i.imgur.com/CN9PXUd.jpg + NumHeight: 5 + NumWidth: 10 + UniqueBack: true + Description: Scheme. + GMNotes: '' + GUID: 7fde12 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Terror Under the Pyramids + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 99.92975 + posY: 1.40878832 + posZ: -6.19831 + rotX: 359.987427 + rotY: 270.005951 + rotZ: 359.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 266134 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2661': + BackIsHidden: true + BackURL: https://i.imgur.com/r6F1mt2.jpg + FaceURL: https://i.imgur.com/CN9PXUd.jpg + NumHeight: 5 + NumWidth: 10 + UniqueBack: true + Description: Scheme. + GMNotes: '' + GUID: ade6e9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Terror Under the Pyramids + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 99.96467 + posY: 1.53950012 + posZ: -11.3978786 + rotX: 359.987427 + rotY: 270.018372 + rotZ: 353.166718 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 266134 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2661': + BackIsHidden: true + BackURL: https://i.imgur.com/r6F1mt2.jpg + FaceURL: https://i.imgur.com/CN9PXUd.jpg + NumHeight: 5 + NumWidth: 10 + UniqueBack: true + Description: Scheme. + GMNotes: '' + GUID: '563177' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Terror Under the Pyramids + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 100.31234 + posY: 1.41043 + posZ: -12.6348228 + rotX: 359.98642 + rotY: 270.005463 + rotZ: 359.984131 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 266133 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2661': + BackIsHidden: true + BackURL: https://i.imgur.com/r6F1mt2.jpg + FaceURL: https://i.imgur.com/CN9PXUd.jpg + NumHeight: 5 + NumWidth: 10 + UniqueBack: true + Description: Hazard. + GMNotes: '' + GUID: 3cbc9d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Sandstorm + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 104.1028 + posY: 1.40746439 + posZ: -4.68969154 + rotX: 359.9874 + rotY: 270.005981 + rotZ: 359.984528 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 266133 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2661': + BackIsHidden: true + BackURL: https://i.imgur.com/r6F1mt2.jpg + FaceURL: https://i.imgur.com/CN9PXUd.jpg + NumHeight: 5 + NumWidth: 10 + UniqueBack: true + Description: Hazard. + GMNotes: '' + GUID: 6a03b8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Sandstorm + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 104.135635 + posY: 1.55408573 + posZ: -6.16795444 + rotX: 359.9865 + rotY: 270.005768 + rotZ: 359.984528 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 266133 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2661': + BackIsHidden: true + BackURL: https://i.imgur.com/r6F1mt2.jpg + FaceURL: https://i.imgur.com/CN9PXUd.jpg + NumHeight: 5 + NumWidth: 10 + UniqueBack: true + Description: Hazard. + GMNotes: '' + GUID: 676e6a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Sandstorm + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 102.225349 + posY: 1.40871572 + posZ: -7.797443 + rotX: 359.987427 + rotY: 270.005951 + rotZ: 359.984528 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 266132 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2661': + BackIsHidden: true + BackURL: https://i.imgur.com/r6F1mt2.jpg + FaceURL: https://i.imgur.com/CN9PXUd.jpg + NumHeight: 5 + NumWidth: 10 + UniqueBack: true + Description: Power. + GMNotes: '' + GUID: 5c2807 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Eclipse + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 103.568939 + posY: 1.4067421 + posZ: -1.57518685 + rotX: 359.987427 + rotY: 270.006 + rotZ: 359.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 266132 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2661': + BackIsHidden: true + BackURL: https://i.imgur.com/r6F1mt2.jpg + FaceURL: https://i.imgur.com/CN9PXUd.jpg + NumHeight: 5 + NumWidth: 10 + UniqueBack: true + Description: Power. + GMNotes: '' + GUID: 8948ac + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Eclipse + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 105.557129 + posY: 1.40734828 + posZ: -5.441262 + rotX: 359.987427 + rotY: 270.006 + rotZ: 359.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 266132 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2661': + BackIsHidden: true + BackURL: https://i.imgur.com/r6F1mt2.jpg + FaceURL: https://i.imgur.com/CN9PXUd.jpg + NumHeight: 5 + NumWidth: 10 + UniqueBack: true + Description: Power. + GMNotes: '' + GUID: f210df + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Eclipse + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 105.829941 + posY: 1.4080708 + posZ: -8.342574 + rotX: 359.987427 + rotY: 270.006 + rotZ: 359.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 266131 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2661': + BackIsHidden: true + BackURL: https://i.imgur.com/r6F1mt2.jpg + FaceURL: https://i.imgur.com/CN9PXUd.jpg + NumHeight: 5 + NumWidth: 10 + UniqueBack: true + Description: Monster. + GMNotes: '' + GUID: bc639e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Thing in the Sarcophagus + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 97.65327 + posY: 1.48622966 + posZ: -1.36814868 + rotX: 357.209076 + rotY: 270.008759 + rotZ: 179.983246 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 266131 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2661': + BackIsHidden: true + BackURL: https://i.imgur.com/r6F1mt2.jpg + FaceURL: https://i.imgur.com/CN9PXUd.jpg + NumHeight: 5 + NumWidth: 10 + UniqueBack: true + Description: Monster. + GMNotes: '' + GUID: c4dd7a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Thing in the Sarcophagus + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 98.014595 + posY: 1.40995169 + posZ: 1.51382911 + rotX: 359.987427 + rotY: 270.0 + rotZ: 179.984543 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 266130 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2661': + BackIsHidden: true + BackURL: https://i.imgur.com/r6F1mt2.jpg + FaceURL: https://i.imgur.com/CN9PXUd.jpg + NumHeight: 5 + NumWidth: 10 + UniqueBack: true + Description: Monster. Dreamlands. + GMNotes: '' + GUID: d113d1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Abyssal Revenant + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 104.273727 + posY: 1.534247 + posZ: 10.3262253 + rotX: 359.9734 + rotY: 269.985474 + rotZ: 179.984451 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 266129 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2661': + BackIsHidden: true + BackURL: https://i.imgur.com/r6F1mt2.jpg + FaceURL: https://i.imgur.com/CN9PXUd.jpg + NumHeight: 5 + NumWidth: 10 + UniqueBack: true + Description: Monster. Dreamlands. + GMNotes: '' + GUID: 173e8a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Abyssal Revenant + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 103.921234 + posY: 1.52458978 + posZ: 10.6535187 + rotX: 359.980072 + rotY: 270.004456 + rotZ: 179.990173 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 266128 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2661': + BackIsHidden: true + BackURL: https://i.imgur.com/r6F1mt2.jpg + FaceURL: https://i.imgur.com/CN9PXUd.jpg + NumHeight: 5 + NumWidth: 10 + UniqueBack: true + Description: Expedition. Desert. Ruins. + GMNotes: '' + GUID: e5e2f5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Sandswept Ruins + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 104.015785 + posY: 1.56677771 + posZ: 10.9518595 + rotX: 359.988678 + rotY: 269.974426 + rotZ: 179.940353 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 266127 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2661': + BackIsHidden: true + BackURL: https://i.imgur.com/r6F1mt2.jpg + FaceURL: https://i.imgur.com/CN9PXUd.jpg + NumHeight: 5 + NumWidth: 10 + UniqueBack: true + Description: Expedition. Desert. + GMNotes: '' + GUID: fb6b7a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Desert Oasis + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 104.149567 + posY: 1.56076884 + posZ: 10.3002863 + rotX: 359.9916 + rotY: 270.038177 + rotZ: 179.9623 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 266126 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2661': + BackIsHidden: true + BackURL: https://i.imgur.com/r6F1mt2.jpg + FaceURL: https://i.imgur.com/CN9PXUd.jpg + NumHeight: 5 + NumWidth: 10 + UniqueBack: true + Description: Expedition. Desert. Ruins. + GMNotes: '' + GUID: 6dd75b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Faceless Sphinx + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 104.061409 + posY: 1.55546522 + posZ: 10.3812437 + rotX: 359.982025 + rotY: 270.00235 + rotZ: 179.980286 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 266125 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2661': + BackIsHidden: true + BackURL: https://i.imgur.com/r6F1mt2.jpg + FaceURL: https://i.imgur.com/CN9PXUd.jpg + NumHeight: 5 + NumWidth: 10 + UniqueBack: true + Description: Expedition. Ruins. + GMNotes: '' + GUID: 46ecbb + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Untouched Vault + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 103.9812 + posY: 1.55318522 + posZ: 10.4010134 + rotX: 359.977173 + rotY: 269.988281 + rotZ: 179.93602 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 266124 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2661': + BackIsHidden: true + BackURL: https://i.imgur.com/r6F1mt2.jpg + FaceURL: https://i.imgur.com/CN9PXUd.jpg + NumHeight: 5 + NumWidth: 10 + UniqueBack: true + Description: Expedition. Desert. + GMNotes: '' + GUID: f8bc37 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dunes of the Sahara + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 103.693748 + posY: 1.55482483 + posZ: 9.793132 + rotX: 0.0151500134 + rotY: 270.000732 + rotZ: 180.010681 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 266123 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2661': + BackIsHidden: true + BackURL: https://i.imgur.com/r6F1mt2.jpg + FaceURL: https://i.imgur.com/CN9PXUd.jpg + NumHeight: 5 + NumWidth: 10 + UniqueBack: true + Description: Expedition. Desert. + GMNotes: '' + GUID: 5ea1c7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Sands of Dashur + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 104.0679 + posY: 1.56877065 + posZ: 10.1948185 + rotX: 359.98 + rotY: 269.9995 + rotZ: 179.984711 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 266122 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2661': + BackIsHidden: true + BackURL: https://i.imgur.com/r6F1mt2.jpg + FaceURL: https://i.imgur.com/CN9PXUd.jpg + NumHeight: 5 + NumWidth: 10 + UniqueBack: true + Description: Expedition. Desert. + GMNotes: '' + GUID: f8187f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Nile River + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 104.023247 + posY: 1.55127156 + posZ: 10.3988094 + rotX: 359.9703 + rotY: 270.023834 + rotZ: 179.976929 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 266121 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2661': + BackIsHidden: true + BackURL: https://i.imgur.com/r6F1mt2.jpg + FaceURL: https://i.imgur.com/CN9PXUd.jpg + NumHeight: 5 + NumWidth: 10 + UniqueBack: true + Description: Expedition. Cairo. Desert. + GMNotes: '' + GUID: 41f836 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Expedition Camp + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 103.999352 + posY: 1.40613282 + posZ: 10.730278 + rotX: 359.9837 + rotY: 270.015076 + rotZ: 179.976654 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2661': + BackIsHidden: true + BackURL: https://i.imgur.com/r6F1mt2.jpg + FaceURL: https://i.imgur.com/CN9PXUd.jpg + NumHeight: 5 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 266139 +- 266139 +- 266139 +- 266138 +- 266138 +- 266137 +- 266137 +- 266136 +- 266136 +- 266135 +- 266135 +- 266135 +- 266134 +- 266134 +- 266134 +- 266133 +- 266133 +- 266133 +- 266132 +- 266132 +- 266132 +- 266131 +- 266131 +- 266130 +- 266129 +- 266128 +- 266127 +- 266126 +- 266125 +- 266124 +- 266123 +- 266122 +- 266121 +Description: '' +GMNotes: '' +GUID: a02026 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Sands of Egypt +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 86.10673 + posY: 3.50325942 + posZ: -10.0934143 + rotX: 359.192047 + rotY: 269.646423 + rotZ: 4.98544931 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag Standalone ce36ec/Bag Murder at the Excelsior Hotel 8c5a09.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag Standalone ce36ec/Bag Murder at the Excelsior Hotel 8c5a09.yaml new file mode 100644 index 000000000..68d0087ed --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag Standalone ce36ec/Bag Murder at the Excelsior Hotel 8c5a09.yaml @@ -0,0 +1,50 @@ +Autoraise: true +ColorDiffuse: + b: 0.0 + g: 0.366520882 + r: 0.7058823 +ContainedObjects: +- !include 'Bag Murder at the Excelsior Hotel 8c5a09/Custom_Model_Bag Set-aside 74eec6.yaml' +- !include 'Bag Murder at the Excelsior Hotel 8c5a09/Deck Encounter Deck fd4231.yaml' +- !include 'Bag Murder at the Excelsior Hotel 8c5a09/Card Foyer 9a9f9a.yaml' +- !include 'Bag Murder at the Excelsior Hotel 8c5a09/Card Restaurant 4146bf.yaml' +- !include 'Bag Murder at the Excelsior Hotel 8c5a09/Card Second Floor Hall a78d38.yaml' +- !include 'Bag Murder at the Excelsior Hotel 8c5a09/Card Suite Balcony 0f58ed.yaml' +- !include 'Bag Murder at the Excelsior Hotel 8c5a09/Card Room 225 0ba29a.yaml' +- !include 'Bag Murder at the Excelsior Hotel 8c5a09/Deck Leads Deck 227fad.yaml' +- !include 'Bag Murder at the Excelsior Hotel 8c5a09/Card Bloodstained Dagger d71f11.yaml' +- !include 'Bag Murder at the Excelsior Hotel 8c5a09/Deck Act Deck 37760f.yaml' +- !include 'Bag Murder at the Excelsior Hotel 8c5a09/Deck Agenda Deck 888a6b.yaml' +- !include 'Bag Murder at the Excelsior Hotel 8c5a09/Card Scenario b1e599.yaml' +- !include 'Bag Murder at the Excelsior Hotel 8c5a09/Bag Hard Difficulty e2c443.yaml' +- !include 'Bag Murder at the Excelsior Hotel 8c5a09/Bag Standard Difficulty 5a1bfd.yaml' +- !include 'Bag Murder at the Excelsior Hotel 8c5a09/CardCustom Campaign Guide 45facd.yaml' +Description: '' +GMNotes: '' +GUID: 8c5a09 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +MeshIndex: -1 +Name: Bag +Nickname: Murder at the Excelsior Hotel +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 15.3159552 + posY: 3.361158 + posZ: 2.13283038 + rotX: 0.0561841279 + rotY: -0.00362815824 + rotZ: 0.2971135 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag Standalone ce36ec/Bag Murder at the Excelsior Hotel 8c5a09/Bag Hard Difficulty e2c443.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag Standalone ce36ec/Bag Murder at the Excelsior Hotel 8c5a09/Bag Hard Difficulty e2c443.yaml new file mode 100644 index 000000000..5bbe068c2 --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag Standalone ce36ec/Bag Murder at the Excelsior Hotel 8c5a09/Bag Hard Difficulty e2c443.yaml @@ -0,0 +1,50 @@ +Autoraise: true +ColorDiffuse: + b: 0.24999994 + g: 0.24999994 + r: 0.24999994 +ContainedObjects: +- !include 'Bag Hard Difficulty e2c443/Custom_Tile 0b1aca.yaml' +- !include 'Bag Hard Difficulty e2c443/Custom_Tile 0f4681.yaml' +- !include 'Bag Hard Difficulty e2c443/Custom_Tile d3d96a.yaml' +- !include 'Bag Hard Difficulty e2c443/Custom_Tile 1a1506.yaml' +- !include 'Bag Hard Difficulty e2c443/Custom_Tile 7d6103.yaml' +- !include 'Bag Hard Difficulty e2c443/Custom_Tile cc8bbb.yaml' +- !include 'Bag Hard Difficulty e2c443/Custom_Tile cc8bbb.yaml' +- !include 'Bag Hard Difficulty e2c443/Custom_Tile ff5fa7.yaml' +- !include 'Bag Hard Difficulty e2c443/Custom_Tile 80b748.yaml' +- !include 'Bag Hard Difficulty e2c443/Custom_Tile e5142c.yaml' +- !include 'Bag Hard Difficulty e2c443/Custom_Tile 669eed.yaml' +- !include 'Bag Hard Difficulty e2c443/Custom_Tile 7b72a7.yaml' +- !include 'Bag Hard Difficulty e2c443/Custom_Tile 6ab38b.yaml' +- !include 'Bag Hard Difficulty e2c443/Custom_Tile b644d2.yaml' +- !include 'Bag Hard Difficulty e2c443/Custom_Tile 0d4467.yaml' +Description: '' +GMNotes: '' +GUID: e2c443 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +MeshIndex: -1 +Name: Bag +Nickname: Hard Difficulty +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 30.2626019 + posY: 2.2576158 + posZ: -18.1451321 + rotX: 0.000293842517 + rotY: 0.0478429161 + rotZ: 0.00122916757 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag Standalone ce36ec/Bag Murder at the Excelsior Hotel 8c5a09/Bag Hard Difficulty e2c443/Custom_Tile 0b1aca.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag Standalone ce36ec/Bag Murder at the Excelsior Hotel 8c5a09/Bag Hard Difficulty e2c443/Custom_Tile 0b1aca.yaml new file mode 100644 index 000000000..22a35b770 --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag Standalone ce36ec/Bag Murder at the Excelsior Hotel 8c5a09/Bag Hard Difficulty e2c443/Custom_Tile 0b1aca.yaml @@ -0,0 +1,42 @@ +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: '' +GMNotes: '' +GUID: 0b1aca +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Tile +Nickname: '' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 5.09813738 + posY: 3.481288 + posZ: 8.199255 + rotX: 357.621155 + rotY: 269.8388 + rotZ: 4.0554 + scaleX: 0.81 + scaleY: 1.0 + scaleZ: 0.81 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag Standalone ce36ec/Bag Murder at the Excelsior Hotel 8c5a09/Bag Hard Difficulty e2c443/Custom_Tile 0d4467.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag Standalone ce36ec/Bag Murder at the Excelsior Hotel 8c5a09/Bag Hard Difficulty e2c443/Custom_Tile 0d4467.yaml new file mode 100644 index 000000000..469ce95e6 --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag Standalone ce36ec/Bag Murder at the Excelsior Hotel 8c5a09/Bag Hard Difficulty e2c443/Custom_Tile 0d4467.yaml @@ -0,0 +1,42 @@ +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: '' +GMNotes: '' +GUID: 0d4467 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Tile +Nickname: '' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 4.942644 + posY: 3.53830242 + posZ: 9.411726 + rotX: 358.7667 + rotY: 270.034729 + rotZ: 358.661 + scaleX: 0.81 + scaleY: 1.0 + scaleZ: 0.81 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag Standalone ce36ec/Bag Murder at the Excelsior Hotel 8c5a09/Bag Hard Difficulty e2c443/Custom_Tile 0f4681.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag Standalone ce36ec/Bag Murder at the Excelsior Hotel 8c5a09/Bag Hard Difficulty e2c443/Custom_Tile 0f4681.yaml new file mode 100644 index 000000000..3759bfc95 --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag Standalone ce36ec/Bag Murder at the Excelsior Hotel 8c5a09/Bag Hard Difficulty e2c443/Custom_Tile 0f4681.yaml @@ -0,0 +1,42 @@ +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: '' +GMNotes: '' +GUID: 0f4681 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Tile +Nickname: '' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 4.474117 + posY: 3.54926968 + posZ: 8.160429 + rotX: 0.172117561 + rotY: 270.024017 + rotZ: 1.06476116 + scaleX: 0.81 + scaleY: 1.0 + scaleZ: 0.81 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag Standalone ce36ec/Bag Murder at the Excelsior Hotel 8c5a09/Bag Hard Difficulty e2c443/Custom_Tile 1a1506.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag Standalone ce36ec/Bag Murder at the Excelsior Hotel 8c5a09/Bag Hard Difficulty e2c443/Custom_Tile 1a1506.yaml new file mode 100644 index 000000000..927e1a288 --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag Standalone ce36ec/Bag Murder at the Excelsior Hotel 8c5a09/Bag Hard Difficulty e2c443/Custom_Tile 1a1506.yaml @@ -0,0 +1,42 @@ +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/1plY463.png + WidthScale: 0.0 +Description: '' +GMNotes: '' +GUID: 1a1506 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Tile +Nickname: '' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 4.49272251 + posY: 3.00188971 + posZ: 7.889331 + rotX: 359.920868 + rotY: 270.277161 + rotZ: 0.008296083 + scaleX: 0.81 + scaleY: 1.0 + scaleZ: 0.81 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag Standalone ce36ec/Bag Murder at the Excelsior Hotel 8c5a09/Bag Hard Difficulty e2c443/Custom_Tile 669eed.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag Standalone ce36ec/Bag Murder at the Excelsior Hotel 8c5a09/Bag Hard Difficulty e2c443/Custom_Tile 669eed.yaml new file mode 100644 index 000000000..208961218 --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag Standalone ce36ec/Bag Murder at the Excelsior Hotel 8c5a09/Bag Hard Difficulty e2c443/Custom_Tile 669eed.yaml @@ -0,0 +1,42 @@ +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: '' +GMNotes: '' +GUID: 669eed +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Tile +Nickname: '' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 4.60715437 + posY: 3.556641 + posZ: 8.950955 + rotX: 359.968323 + rotY: 270.010132 + rotZ: 0.5405439 + scaleX: 0.81 + scaleY: 1.0 + scaleZ: 0.81 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag Standalone ce36ec/Bag Murder at the Excelsior Hotel 8c5a09/Bag Hard Difficulty e2c443/Custom_Tile 6ab38b.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag Standalone ce36ec/Bag Murder at the Excelsior Hotel 8c5a09/Bag Hard Difficulty e2c443/Custom_Tile 6ab38b.yaml new file mode 100644 index 000000000..289b4095d --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag Standalone ce36ec/Bag Murder at the Excelsior Hotel 8c5a09/Bag Hard Difficulty e2c443/Custom_Tile 6ab38b.yaml @@ -0,0 +1,42 @@ +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: '' +GMNotes: '' +GUID: 6ab38b +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Tile +Nickname: '' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 4.980674 + posY: 3.503778 + posZ: 9.201188 + rotX: 352.66 + rotY: 270.2939 + rotZ: 356.88324 + scaleX: 0.81 + scaleY: 1.0 + scaleZ: 0.81 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag Standalone ce36ec/Bag Murder at the Excelsior Hotel 8c5a09/Bag Hard Difficulty e2c443/Custom_Tile 7b72a7.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag Standalone ce36ec/Bag Murder at the Excelsior Hotel 8c5a09/Bag Hard Difficulty e2c443/Custom_Tile 7b72a7.yaml new file mode 100644 index 000000000..c042c989f --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag Standalone ce36ec/Bag Murder at the Excelsior Hotel 8c5a09/Bag Hard Difficulty e2c443/Custom_Tile 7b72a7.yaml @@ -0,0 +1,42 @@ +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: '' +GMNotes: '' +GUID: 7b72a7 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Tile +Nickname: '' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 4.23581553 + posY: 3.6552527 + posZ: 8.89504051 + rotX: 1.281999 + rotY: 270.007751 + rotZ: 180.33107 + scaleX: 0.81 + scaleY: 1.0 + scaleZ: 0.81 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag Standalone ce36ec/Bag Murder at the Excelsior Hotel 8c5a09/Bag Hard Difficulty e2c443/Custom_Tile 7d6103.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag Standalone ce36ec/Bag Murder at the Excelsior Hotel 8c5a09/Bag Hard Difficulty e2c443/Custom_Tile 7d6103.yaml new file mode 100644 index 000000000..acbabd499 --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag Standalone ce36ec/Bag Murder at the Excelsior Hotel 8c5a09/Bag Hard Difficulty e2c443/Custom_Tile 7d6103.yaml @@ -0,0 +1,42 @@ +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/VzhJJaH.png + WidthScale: 0.0 +Description: '' +GMNotes: '' +GUID: 7d6103 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Tile +Nickname: '' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 4.87624168 + posY: 3.52438283 + posZ: 8.694648 + rotX: 351.185181 + rotY: 269.924377 + rotZ: 1.55610383 + scaleX: 0.81 + scaleY: 1.0 + scaleZ: 0.81 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag Standalone ce36ec/Bag Murder at the Excelsior Hotel 8c5a09/Bag Hard Difficulty e2c443/Custom_Tile 80b748.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag Standalone ce36ec/Bag Murder at the Excelsior Hotel 8c5a09/Bag Hard Difficulty e2c443/Custom_Tile 80b748.yaml new file mode 100644 index 000000000..0e04b8487 --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag Standalone ce36ec/Bag Murder at the Excelsior Hotel 8c5a09/Bag Hard Difficulty e2c443/Custom_Tile 80b748.yaml @@ -0,0 +1,42 @@ +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: '' +GMNotes: '' +GUID: 80b748 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Tile +Nickname: '' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 5.355413 + posY: 3.56471872 + posZ: 8.822623 + rotX: 359.9201 + rotY: 270.009369 + rotZ: 0.0168527234 + scaleX: 0.81 + scaleY: 1.0 + scaleZ: 0.81 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag Standalone ce36ec/Bag Murder at the Excelsior Hotel 8c5a09/Bag Hard Difficulty e2c443/Custom_Tile b644d2.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag Standalone ce36ec/Bag Murder at the Excelsior Hotel 8c5a09/Bag Hard Difficulty e2c443/Custom_Tile b644d2.yaml new file mode 100644 index 000000000..5d298f8c8 --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag Standalone ce36ec/Bag Murder at the Excelsior Hotel 8c5a09/Bag Hard Difficulty e2c443/Custom_Tile b644d2.yaml @@ -0,0 +1,42 @@ +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: '' +GMNotes: '' +GUID: b644d2 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Tile +Nickname: '' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 4.135594 + posY: 2.99613953 + posZ: 7.91242933 + rotX: 359.920227 + rotY: 269.998169 + rotZ: 0.0171810687 + scaleX: 0.81 + scaleY: 1.0 + scaleZ: 0.81 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag Standalone ce36ec/Bag Murder at the Excelsior Hotel 8c5a09/Bag Hard Difficulty e2c443/Custom_Tile cc8bbb.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag Standalone ce36ec/Bag Murder at the Excelsior Hotel 8c5a09/Bag Hard Difficulty e2c443/Custom_Tile cc8bbb.yaml new file mode 100644 index 000000000..6bc6a446e --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag Standalone ce36ec/Bag Murder at the Excelsior Hotel 8c5a09/Bag Hard Difficulty e2c443/Custom_Tile cc8bbb.yaml @@ -0,0 +1,42 @@ +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: '' +GMNotes: '' +GUID: cc8bbb +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Tile +Nickname: '' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 4.85033655 + posY: 3.55945945 + posZ: 9.113778 + rotX: 359.607819 + rotY: 270.02182 + rotZ: 359.8871 + scaleX: 0.81 + scaleY: 1.0 + scaleZ: 0.81 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag Standalone ce36ec/Bag Murder at the Excelsior Hotel 8c5a09/Bag Hard Difficulty e2c443/Custom_Tile d3d96a.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag Standalone ce36ec/Bag Murder at the Excelsior Hotel 8c5a09/Bag Hard Difficulty e2c443/Custom_Tile d3d96a.yaml new file mode 100644 index 000000000..1e8f8e108 --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag Standalone ce36ec/Bag Murder at the Excelsior Hotel 8c5a09/Bag Hard Difficulty e2c443/Custom_Tile d3d96a.yaml @@ -0,0 +1,42 @@ +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: '' +GMNotes: '' +GUID: d3d96a +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Tile +Nickname: '' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 4.89175272 + posY: 3.65719962 + posZ: 8.171459 + rotX: 358.321167 + rotY: 273.673767 + rotZ: 352.803955 + scaleX: 0.81 + scaleY: 1.0 + scaleZ: 0.81 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag Standalone ce36ec/Bag Murder at the Excelsior Hotel 8c5a09/Bag Hard Difficulty e2c443/Custom_Tile e5142c.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag Standalone ce36ec/Bag Murder at the Excelsior Hotel 8c5a09/Bag Hard Difficulty e2c443/Custom_Tile e5142c.yaml new file mode 100644 index 000000000..f21bf1c59 --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag Standalone ce36ec/Bag Murder at the Excelsior Hotel 8c5a09/Bag Hard Difficulty e2c443/Custom_Tile e5142c.yaml @@ -0,0 +1,42 @@ +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: '' +GMNotes: '' +GUID: e5142c +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Tile +Nickname: '' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 4.131726 + posY: 3.49959874 + posZ: 8.954587 + rotX: 5.708582 + rotY: 270.171722 + rotZ: 0.760917246 + scaleX: 0.81 + scaleY: 1.0 + scaleZ: 0.81 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag Standalone ce36ec/Bag Murder at the Excelsior Hotel 8c5a09/Bag Hard Difficulty e2c443/Custom_Tile ff5fa7.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag Standalone ce36ec/Bag Murder at the Excelsior Hotel 8c5a09/Bag Hard Difficulty e2c443/Custom_Tile ff5fa7.yaml new file mode 100644 index 000000000..c4b0b4cde --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag Standalone ce36ec/Bag Murder at the Excelsior Hotel 8c5a09/Bag Hard Difficulty e2c443/Custom_Tile ff5fa7.yaml @@ -0,0 +1,42 @@ +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: '' +GMNotes: '' +GUID: ff5fa7 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Tile +Nickname: '' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 4.373864 + posY: 3.55875683 + posZ: 9.101651 + rotX: 0.39252466 + rotY: 269.992767 + rotZ: 359.846558 + scaleX: 0.81 + scaleY: 1.0 + scaleZ: 0.81 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag Standalone ce36ec/Bag Murder at the Excelsior Hotel 8c5a09/Bag Standard Difficulty 5a1bfd.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag Standalone ce36ec/Bag Murder at the Excelsior Hotel 8c5a09/Bag Standard Difficulty 5a1bfd.yaml new file mode 100644 index 000000000..0f791a234 --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag Standalone ce36ec/Bag Murder at the Excelsior Hotel 8c5a09/Bag Standard Difficulty 5a1bfd.yaml @@ -0,0 +1,50 @@ +Autoraise: true +ColorDiffuse: + b: 0.24999997 + g: 0.24999997 + r: 0.24999997 +ContainedObjects: +- !include 'Bag Standard Difficulty 5a1bfd/Custom_Tile d0979c.yaml' +- !include 'Bag Standard Difficulty 5a1bfd/Custom_Tile e31821.yaml' +- !include 'Bag Standard Difficulty 5a1bfd/Custom_Tile d3d96a.yaml' +- !include 'Bag Standard Difficulty 5a1bfd/Custom_Tile 1a1506.yaml' +- !include 'Bag Standard Difficulty 5a1bfd/Custom_Tile 7d6103.yaml' +- !include 'Bag Standard Difficulty 5a1bfd/Custom_Tile cc8bbb.yaml' +- !include 'Bag Standard Difficulty 5a1bfd/Custom_Tile cc8bbb.yaml' +- !include 'Bag Standard Difficulty 5a1bfd/Custom_Tile 9c74ff.yaml' +- !include 'Bag Standard Difficulty 5a1bfd/Custom_Tile afdf72.yaml' +- !include 'Bag Standard Difficulty 5a1bfd/Custom_Tile b35a43.yaml' +- !include 'Bag Standard Difficulty 5a1bfd/Custom_Tile fc2e48.yaml' +- !include 'Bag Standard Difficulty 5a1bfd/Custom_Tile 79296d.yaml' +- !include 'Bag Standard Difficulty 5a1bfd/Custom_Tile 13b3ff.yaml' +- !include 'Bag Standard Difficulty 5a1bfd/Custom_Tile 0a8592.yaml' +- !include 'Bag Standard Difficulty 5a1bfd/Custom_Tile 14622d.yaml' +Description: '' +GMNotes: '' +GUID: 5a1bfd +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +MeshIndex: -1 +Name: Bag +Nickname: Standard Difficulty +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 30.6979446 + posY: 2.260422 + posZ: -12.6936417 + rotX: 359.993958 + rotY: 0.000227085242 + rotZ: 359.9714 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag Standalone ce36ec/Bag Murder at the Excelsior Hotel 8c5a09/Bag Standard Difficulty 5a1bfd/Custom_Tile 0a8592.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag Standalone ce36ec/Bag Murder at the Excelsior Hotel 8c5a09/Bag Standard Difficulty 5a1bfd/Custom_Tile 0a8592.yaml new file mode 100644 index 000000000..f8c53c3d4 --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag Standalone ce36ec/Bag Murder at the Excelsior Hotel 8c5a09/Bag Standard Difficulty 5a1bfd/Custom_Tile 0a8592.yaml @@ -0,0 +1,42 @@ +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: '' +GMNotes: '' +GUID: 0a8592 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Tile +Nickname: '' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 4.988713 + posY: 3.266038 + posZ: 15.6712437 + rotX: 359.9201 + rotY: 270.021362 + rotZ: 0.0168449953 + scaleX: 0.81 + scaleY: 1.0 + scaleZ: 0.81 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag Standalone ce36ec/Bag Murder at the Excelsior Hotel 8c5a09/Bag Standard Difficulty 5a1bfd/Custom_Tile 13b3ff.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag Standalone ce36ec/Bag Murder at the Excelsior Hotel 8c5a09/Bag Standard Difficulty 5a1bfd/Custom_Tile 13b3ff.yaml new file mode 100644 index 000000000..c5b8d10d9 --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag Standalone ce36ec/Bag Murder at the Excelsior Hotel 8c5a09/Bag Standard Difficulty 5a1bfd/Custom_Tile 13b3ff.yaml @@ -0,0 +1,42 @@ +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: '' +GMNotes: '' +GUID: 13b3ff +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Tile +Nickname: '' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 5.014393 + posY: 3.549951 + posZ: 14.7303848 + rotX: 358.505524 + rotY: 269.9937 + rotZ: 0.536824 + scaleX: 0.81 + scaleY: 1.0 + scaleZ: 0.81 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag Standalone ce36ec/Bag Murder at the Excelsior Hotel 8c5a09/Bag Standard Difficulty 5a1bfd/Custom_Tile 14622d.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag Standalone ce36ec/Bag Murder at the Excelsior Hotel 8c5a09/Bag Standard Difficulty 5a1bfd/Custom_Tile 14622d.yaml new file mode 100644 index 000000000..674945b6d --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag Standalone ce36ec/Bag Murder at the Excelsior Hotel 8c5a09/Bag Standard Difficulty 5a1bfd/Custom_Tile 14622d.yaml @@ -0,0 +1,42 @@ +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: '' +GMNotes: '' +GUID: 14622d +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Tile +Nickname: '' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 5.270161 + posY: 3.555849 + posZ: 14.8550777 + rotX: 359.518921 + rotY: 269.982147 + rotZ: 0.00217791973 + scaleX: 0.81 + scaleY: 1.0 + scaleZ: 0.81 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag Standalone ce36ec/Bag Murder at the Excelsior Hotel 8c5a09/Bag Standard Difficulty 5a1bfd/Custom_Tile 1a1506.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag Standalone ce36ec/Bag Murder at the Excelsior Hotel 8c5a09/Bag Standard Difficulty 5a1bfd/Custom_Tile 1a1506.yaml new file mode 100644 index 000000000..dd6903f22 --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag Standalone ce36ec/Bag Murder at the Excelsior Hotel 8c5a09/Bag Standard Difficulty 5a1bfd/Custom_Tile 1a1506.yaml @@ -0,0 +1,42 @@ +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/1plY463.png + WidthScale: 0.0 +Description: '' +GMNotes: '' +GUID: 1a1506 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Tile +Nickname: '' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 4.202736 + posY: 3.49772286 + posZ: 14.8949337 + rotX: 5.64550638 + rotY: 269.992371 + rotZ: 359.354919 + scaleX: 0.81 + scaleY: 1.0 + scaleZ: 0.81 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag Standalone ce36ec/Bag Murder at the Excelsior Hotel 8c5a09/Bag Standard Difficulty 5a1bfd/Custom_Tile 79296d.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag Standalone ce36ec/Bag Murder at the Excelsior Hotel 8c5a09/Bag Standard Difficulty 5a1bfd/Custom_Tile 79296d.yaml new file mode 100644 index 000000000..cd792ec6e --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag Standalone ce36ec/Bag Murder at the Excelsior Hotel 8c5a09/Bag Standard Difficulty 5a1bfd/Custom_Tile 79296d.yaml @@ -0,0 +1,42 @@ +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: '' +GMNotes: '' +GUID: 79296d +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Tile +Nickname: '' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 5.014393 + posY: 3.5499506 + posZ: 14.7303848 + rotX: 358.505463 + rotY: 269.9937 + rotZ: 0.536825657 + scaleX: 0.81 + scaleY: 1.0 + scaleZ: 0.81 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag Standalone ce36ec/Bag Murder at the Excelsior Hotel 8c5a09/Bag Standard Difficulty 5a1bfd/Custom_Tile 7d6103.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag Standalone ce36ec/Bag Murder at the Excelsior Hotel 8c5a09/Bag Standard Difficulty 5a1bfd/Custom_Tile 7d6103.yaml new file mode 100644 index 000000000..8231070b4 --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag Standalone ce36ec/Bag Murder at the Excelsior Hotel 8c5a09/Bag Standard Difficulty 5a1bfd/Custom_Tile 7d6103.yaml @@ -0,0 +1,42 @@ +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/VzhJJaH.png + WidthScale: 0.0 +Description: '' +GMNotes: '' +GUID: 7d6103 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Tile +Nickname: '' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 5.211844 + posY: 3.38325429 + posZ: 15.8440218 + rotX: 356.7829 + rotY: 270.228333 + rotZ: 353.812 + scaleX: 0.81 + scaleY: 1.0 + scaleZ: 0.81 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag Standalone ce36ec/Bag Murder at the Excelsior Hotel 8c5a09/Bag Standard Difficulty 5a1bfd/Custom_Tile 9c74ff.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag Standalone ce36ec/Bag Murder at the Excelsior Hotel 8c5a09/Bag Standard Difficulty 5a1bfd/Custom_Tile 9c74ff.yaml new file mode 100644 index 000000000..a683695d7 --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag Standalone ce36ec/Bag Murder at the Excelsior Hotel 8c5a09/Bag Standard Difficulty 5a1bfd/Custom_Tile 9c74ff.yaml @@ -0,0 +1,42 @@ +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: '' +GMNotes: '' +GUID: 9c74ff +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Tile +Nickname: '' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 4.916108 + posY: 3.547937 + posZ: 15.2915621 + rotX: 359.4694 + rotY: 270.0168 + rotZ: 358.9219 + scaleX: 0.81 + scaleY: 1.0 + scaleZ: 0.81 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag Standalone ce36ec/Bag Murder at the Excelsior Hotel 8c5a09/Bag Standard Difficulty 5a1bfd/Custom_Tile afdf72.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag Standalone ce36ec/Bag Murder at the Excelsior Hotel 8c5a09/Bag Standard Difficulty 5a1bfd/Custom_Tile afdf72.yaml new file mode 100644 index 000000000..0751afa53 --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag Standalone ce36ec/Bag Murder at the Excelsior Hotel 8c5a09/Bag Standard Difficulty 5a1bfd/Custom_Tile afdf72.yaml @@ -0,0 +1,42 @@ +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: '' +GMNotes: '' +GUID: afdf72 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Tile +Nickname: '' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 4.971946 + posY: 3.56706882 + posZ: 15.4469643 + rotX: 359.9222 + rotY: 270.0406 + rotZ: 0.0178730916 + scaleX: 0.81 + scaleY: 1.0 + scaleZ: 0.81 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag Standalone ce36ec/Bag Murder at the Excelsior Hotel 8c5a09/Bag Standard Difficulty 5a1bfd/Custom_Tile b35a43.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag Standalone ce36ec/Bag Murder at the Excelsior Hotel 8c5a09/Bag Standard Difficulty 5a1bfd/Custom_Tile b35a43.yaml new file mode 100644 index 000000000..0c410ae25 --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag Standalone ce36ec/Bag Murder at the Excelsior Hotel 8c5a09/Bag Standard Difficulty 5a1bfd/Custom_Tile b35a43.yaml @@ -0,0 +1,42 @@ +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: '' +GMNotes: '' +GUID: b35a43 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Tile +Nickname: '' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 4.971946 + posY: 3.56707048 + posZ: 15.4469643 + rotX: 359.9222 + rotY: 270.0406 + rotZ: 0.0178730879 + scaleX: 0.81 + scaleY: 1.0 + scaleZ: 0.81 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag Standalone ce36ec/Bag Murder at the Excelsior Hotel 8c5a09/Bag Standard Difficulty 5a1bfd/Custom_Tile cc8bbb.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag Standalone ce36ec/Bag Murder at the Excelsior Hotel 8c5a09/Bag Standard Difficulty 5a1bfd/Custom_Tile cc8bbb.yaml new file mode 100644 index 000000000..1bb48674a --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag Standalone ce36ec/Bag Murder at the Excelsior Hotel 8c5a09/Bag Standard Difficulty 5a1bfd/Custom_Tile cc8bbb.yaml @@ -0,0 +1,42 @@ +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: '' +GMNotes: '' +GUID: cc8bbb +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Tile +Nickname: '' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 4.90372133 + posY: 3.56420851 + posZ: 14.9891787 + rotX: 359.9201 + rotY: 270.021545 + rotZ: 0.0168324057 + scaleX: 0.81 + scaleY: 1.0 + scaleZ: 0.81 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag Standalone ce36ec/Bag Murder at the Excelsior Hotel 8c5a09/Bag Standard Difficulty 5a1bfd/Custom_Tile d0979c.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag Standalone ce36ec/Bag Murder at the Excelsior Hotel 8c5a09/Bag Standard Difficulty 5a1bfd/Custom_Tile d0979c.yaml new file mode 100644 index 000000000..62bb1f4ad --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag Standalone ce36ec/Bag Murder at the Excelsior Hotel 8c5a09/Bag Standard Difficulty 5a1bfd/Custom_Tile d0979c.yaml @@ -0,0 +1,42 @@ +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: '' +GMNotes: '' +GUID: d0979c +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Tile +Nickname: '' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 4.658922 + posY: 3.54583073 + posZ: 14.7663794 + rotX: 1.86222851 + rotY: 270.02478 + rotZ: 1.92987835 + scaleX: 0.81 + scaleY: 1.0 + scaleZ: 0.81 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag Standalone ce36ec/Bag Murder at the Excelsior Hotel 8c5a09/Bag Standard Difficulty 5a1bfd/Custom_Tile d3d96a.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag Standalone ce36ec/Bag Murder at the Excelsior Hotel 8c5a09/Bag Standard Difficulty 5a1bfd/Custom_Tile d3d96a.yaml new file mode 100644 index 000000000..7524c5d93 --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag Standalone ce36ec/Bag Murder at the Excelsior Hotel 8c5a09/Bag Standard Difficulty 5a1bfd/Custom_Tile d3d96a.yaml @@ -0,0 +1,42 @@ +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: '' +GMNotes: '' +GUID: d3d96a +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Tile +Nickname: '' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 5.105573 + posY: 3.51673555 + posZ: 13.9117785 + rotX: 356.359375 + rotY: 270.1602 + rotZ: 358.937744 + scaleX: 0.81 + scaleY: 1.0 + scaleZ: 0.81 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag Standalone ce36ec/Bag Murder at the Excelsior Hotel 8c5a09/Bag Standard Difficulty 5a1bfd/Custom_Tile e31821.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag Standalone ce36ec/Bag Murder at the Excelsior Hotel 8c5a09/Bag Standard Difficulty 5a1bfd/Custom_Tile e31821.yaml new file mode 100644 index 000000000..28dfda7b9 --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag Standalone ce36ec/Bag Murder at the Excelsior Hotel 8c5a09/Bag Standard Difficulty 5a1bfd/Custom_Tile e31821.yaml @@ -0,0 +1,42 @@ +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: '' +GMNotes: '' +GUID: e31821 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Tile +Nickname: '' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 4.79951668 + posY: 3.522647 + posZ: 15.081315 + rotX: 358.310059 + rotY: 270.086548 + rotZ: 354.444733 + scaleX: 0.81 + scaleY: 1.0 + scaleZ: 0.81 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag Standalone ce36ec/Bag Murder at the Excelsior Hotel 8c5a09/Bag Standard Difficulty 5a1bfd/Custom_Tile fc2e48.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag Standalone ce36ec/Bag Murder at the Excelsior Hotel 8c5a09/Bag Standard Difficulty 5a1bfd/Custom_Tile fc2e48.yaml new file mode 100644 index 000000000..3b200ab8c --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag Standalone ce36ec/Bag Murder at the Excelsior Hotel 8c5a09/Bag Standard Difficulty 5a1bfd/Custom_Tile fc2e48.yaml @@ -0,0 +1,42 @@ +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: '' +GMNotes: '' +GUID: fc2e48 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Tile +Nickname: '' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 5.153091 + posY: 3.50885129 + posZ: 15.0638781 + rotX: 353.832336 + rotY: 270.213074 + rotZ: 357.466553 + scaleX: 0.81 + scaleY: 1.0 + scaleZ: 0.81 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag Standalone ce36ec/Bag Murder at the Excelsior Hotel 8c5a09/Card Bloodstained Dagger d71f11.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag Standalone ce36ec/Bag Murder at the Excelsior Hotel 8c5a09/Card Bloodstained Dagger d71f11.yaml new file mode 100644 index 000000000..36eef1e73 --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag Standalone ce36ec/Bag Murder at the Excelsior Hotel 8c5a09/Card Bloodstained Dagger d71f11.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 231700 +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 + UniqueBack: false +Description: The Murder Weapon +GMNotes: '' +GUID: d71f11 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Bloodstained Dagger +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -5.31979942 + posY: 3.61206985 + posZ: -1.21784425 + rotX: 359.147583 + rotY: 269.966553 + rotZ: 3.12578058 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag Standalone ce36ec/Bag Murder at the Excelsior Hotel 8c5a09/Card Foyer 9a9f9a.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag Standalone ce36ec/Bag Murder at the Excelsior Hotel 8c5a09/Card Foyer 9a9f9a.yaml new file mode 100644 index 000000000..4c489f670 --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag Standalone ce36ec/Bag Murder at the Excelsior Hotel 8c5a09/Card Foyer 9a9f9a.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 231908 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2319': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/778493212055043200/69BE533398A163171710A34F2FC068249B8E2B90/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493212055042209/FBBBE393755E3F8BAB1A2935E1F691EE8358054D/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Hall. +GMNotes: '' +GUID: 9a9f9a +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Foyer +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -5.89921951 + posY: 3.612278 + posZ: -1.10496211 + rotX: 1.712921 + rotY: 270.0542 + rotZ: 2.10079622 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag Standalone ce36ec/Bag Murder at the Excelsior Hotel 8c5a09/Card Restaurant 4146bf.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag Standalone ce36ec/Bag Murder at the Excelsior Hotel 8c5a09/Card Restaurant 4146bf.yaml new file mode 100644 index 000000000..e23aaff4d --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag Standalone ce36ec/Bag Murder at the Excelsior Hotel 8c5a09/Card Restaurant 4146bf.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 231909 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2319': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/778493212055043200/69BE533398A163171710A34F2FC068249B8E2B90/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493212055042209/FBBBE393755E3F8BAB1A2935E1F691EE8358054D/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Hall. +GMNotes: '' +GUID: 4146bf +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Restaurant +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -6.590455 + posY: 3.583203 + posZ: -0.92784816 + rotX: 2.536127 + rotY: 270.4131 + rotZ: 0.160920411 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag Standalone ce36ec/Bag Murder at the Excelsior Hotel 8c5a09/Card Room 225 0ba29a.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag Standalone ce36ec/Bag Murder at the Excelsior Hotel 8c5a09/Card Room 225 0ba29a.yaml new file mode 100644 index 000000000..c45c07ce3 --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag Standalone ce36ec/Bag Murder at the Excelsior Hotel 8c5a09/Card Room 225 0ba29a.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 231905 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2319': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/778493212055043200/69BE533398A163171710A34F2FC068249B8E2B90/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493212055042209/FBBBE393755E3F8BAB1A2935E1F691EE8358054D/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Crime Scene. +GMNotes: '' +GUID: 0ba29a +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Room 225 +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -5.15264559 + posY: 3.598025 + posZ: -1.33839142 + rotX: 358.743744 + rotY: 269.957031 + rotZ: 3.46692753 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag Standalone ce36ec/Bag Murder at the Excelsior Hotel 8c5a09/Card Scenario b1e599.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag Standalone ce36ec/Bag Murder at the Excelsior Hotel 8c5a09/Card Scenario b1e599.yaml new file mode 100644 index 000000000..64f55803d --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag Standalone ce36ec/Bag Murder at the Excelsior Hotel 8c5a09/Card Scenario b1e599.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 231900 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2319': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/778493212055043200/69BE533398A163171710A34F2FC068249B8E2B90/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493212055042209/FBBBE393755E3F8BAB1A2935E1F691EE8358054D/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Murder at the Excelsior Hotel +GMNotes: '' +GUID: b1e599 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Scenario +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 22.2716141 + posY: 3.561653 + posZ: 19.8856716 + rotX: 0.6487811 + rotY: 269.9629 + rotZ: 356.092651 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag Standalone ce36ec/Bag Murder at the Excelsior Hotel 8c5a09/Card Second Floor Hall a78d38.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag Standalone ce36ec/Bag Murder at the Excelsior Hotel 8c5a09/Card Second Floor Hall a78d38.yaml new file mode 100644 index 000000000..c158e7ea3 --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag Standalone ce36ec/Bag Murder at the Excelsior Hotel 8c5a09/Card Second Floor Hall a78d38.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 231907 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2319': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/778493212055043200/69BE533398A163171710A34F2FC068249B8E2B90/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493212055042209/FBBBE393755E3F8BAB1A2935E1F691EE8358054D/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Hall. +GMNotes: '' +GUID: a78d38 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Second Floor Hall +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -5.69468069 + posY: 3.60962033 + posZ: -1.25624216 + rotX: 0.722961545 + rotY: 270.039368 + rotZ: 3.29247 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag Standalone ce36ec/Bag Murder at the Excelsior Hotel 8c5a09/Card Suite Balcony 0f58ed.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag Standalone ce36ec/Bag Murder at the Excelsior Hotel 8c5a09/Card Suite Balcony 0f58ed.yaml new file mode 100644 index 000000000..a7939c7e5 --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag Standalone ce36ec/Bag Murder at the Excelsior Hotel 8c5a09/Card Suite Balcony 0f58ed.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 231906 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2319': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/778493212055043200/69BE533398A163171710A34F2FC068249B8E2B90/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493212055042209/FBBBE393755E3F8BAB1A2935E1F691EE8358054D/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Crime Scene. +GMNotes: '' +GUID: 0f58ed +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Suite Balcony +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -5.868556 + posY: 3.64941335 + posZ: -0.16245833 + rotX: 0.5355312 + rotY: 269.948242 + rotZ: 1.45604229 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag Standalone ce36ec/Bag Murder at the Excelsior Hotel 8c5a09/CardCustom Campaign Guide 45facd.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag Standalone ce36ec/Bag Murder at the Excelsior Hotel 8c5a09/CardCustom Campaign Guide 45facd.yaml new file mode 100644 index 000000000..324679f9e --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag Standalone ce36ec/Bag Murder at the Excelsior Hotel 8c5a09/CardCustom Campaign Guide 45facd.yaml @@ -0,0 +1,559 @@ +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 + UniqueBack: false +Description: Murder at the Excelsior Hotel +GMNotes: '' +GUID: 45facd +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 630d74 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: e04c72 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: '537250' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 7ce342 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 8aff87 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: CardCustom + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.2528152 + posY: 1.53802228 + posZ: 25.3263817 + rotX: 359.920135 + rotY: 270.0026 + rotZ: 0.0168685485 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: e5e605 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: CardCustom + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 5.45579433 + posY: 1.55558383 + posZ: 33.8477173 + rotX: 359.9201 + rotY: 270.013062 + rotZ: 0.016853964 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: a7ed10 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: CardCustom + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 5.455794 + posY: 1.55558383 + posZ: 33.8477135 + rotX: 359.9201 + rotY: 270.013062 + rotZ: 0.0168541614 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: a6b49e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: CardCustom + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 5.45579338 + posY: 1.55558383 + posZ: 33.84771 + rotX: 359.9201 + rotY: 270.013062 + rotZ: 0.0168550126 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 212aec + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: a81b44 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: dec02a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: c9e4e9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 21.40379 + posY: 3.61109519 + posZ: 19.8964329 + rotX: 0.108845726 + rotY: 270.00235 + rotZ: 359.816132 + scaleX: 2.11755562 + scaleY: 1.0 + scaleZ: 2.11755562 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag Standalone ce36ec/Bag Murder at the Excelsior Hotel 8c5a09/Custom_Model_Bag Set-aside 74eec6.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag Standalone ce36ec/Bag Murder at the Excelsior Hotel 8c5a09/Custom_Model_Bag Set-aside 74eec6.yaml new file mode 100644 index 000000000..2377427fd --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag Standalone ce36ec/Bag Murder at the Excelsior Hotel 8c5a09/Custom_Model_Bag Set-aside 74eec6.yaml @@ -0,0 +1,70 @@ +Autoraise: true +ColorDiffuse: + b: 0.02148666 + g: 0.00100758043 + r: 0.02148666 +ContainedObjects: +- !include 'Custom_Model_Bag Set-aside 74eec6/Deck The True Culprit f6869f.yaml' +- !include 'Custom_Model_Bag Set-aside 74eec6/Card Harvested Brain 3fbc07.yaml' +- !include 'Custom_Model_Bag Set-aside 74eec6/Card Vengeful Specter 3fbc07.yaml' +- !include 'Custom_Model_Bag Set-aside 74eec6/Card Hotel Manager 3fbc07.yaml' +- !include 'Custom_Model_Bag Set-aside 74eec6/Card Dimensional Shambler 3fbc07.yaml' +- !include 'Custom_Model_Bag Set-aside 74eec6/Card Otherworldly Meddler 3fbc07.yaml' +- !include 'Custom_Model_Bag Set-aside 74eec6/Deck Morbid Awarenesses d3eba4.yaml' +- !include 'Custom_Model_Bag Set-aside 74eec6/Deck Chilling Presences 6d55da.yaml' +- !include 'Custom_Model_Bag Set-aside 74eec6/Deck Hotel Security e3dc34.yaml' +- !include 'Custom_Model_Bag Set-aside 74eec6/Deck Cultists of the Enclave c0885d.yaml' +- !include 'Custom_Model_Bag Set-aside 74eec6/Deck Encephalon Souls 1df3fd.yaml' +- !include 'Custom_Model_Bag Set-aside 74eec6/Card What Have You Done 2c76d9.yaml' +- !include 'Custom_Model_Bag Set-aside 74eec6/Deck Arkham Officers f8ebf7.yaml' +- !include 'Custom_Model_Bag Set-aside 74eec6/Card Sergeant Monroe 5630c2.yaml' +- !include 'Custom_Model_Bag Set-aside 74eec6/Deck Locations fa2f3a.yaml' +CustomMesh: + CastShadows: true + ColliderURL: '' + Convex: true + DiffuseURL: http://i.imgur.com/yVhOLYs.jpg + MaterialIndex: 1 + MeshURL: https://paste.ee/r/ylQzQ + NormalURL: http://i.imgur.com/f1ogHo6.jpg + TypeIndex: 6 +Description: '' +GMNotes: '' +GUID: 74eec6 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +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: 14.7695627 + posY: 2.44334579 + posZ: -2.71187258 + rotX: 0.0167774428 + rotY: 89.9999847 + rotZ: -0.00354299718 + scaleX: 2.0 + scaleY: 2.0 + scaleZ: 2.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag Standalone ce36ec/Bag Murder at the Excelsior Hotel 8c5a09/Custom_Model_Bag Set-aside 74eec6/Card Dimensional Shambler 3fbc07.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag Standalone ce36ec/Bag Murder at the Excelsior Hotel 8c5a09/Custom_Model_Bag Set-aside 74eec6/Card Dimensional Shambler 3fbc07.yaml new file mode 100644 index 000000000..2823b5b8e --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag Standalone ce36ec/Bag Murder at the Excelsior Hotel 8c5a09/Custom_Model_Bag Set-aside 74eec6/Card Dimensional Shambler 3fbc07.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 231619 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2316': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493212055041441/90F035BD69A7C5C6B6F43426DDDA3A09DFCBCBDF/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: Monster. Extradimensional. Elite. +GMNotes: '' +GUID: 3fbc07 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Dimensional Shambler +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 14.5076294 + posY: 2.5482192 + posZ: 9.411012 + rotX: 359.9201 + rotY: 270.021179 + rotZ: 0.0168056 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag Standalone ce36ec/Bag Murder at the Excelsior Hotel 8c5a09/Custom_Model_Bag Set-aside 74eec6/Card Harvested Brain 3fbc07.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag Standalone ce36ec/Bag Murder at the Excelsior Hotel 8c5a09/Custom_Model_Bag Set-aside 74eec6/Card Harvested Brain 3fbc07.yaml new file mode 100644 index 000000000..16297e47b --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag Standalone ce36ec/Bag Murder at the Excelsior Hotel 8c5a09/Custom_Model_Bag Set-aside 74eec6/Card Harvested Brain 3fbc07.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 231622 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2316': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493212055041441/90F035BD69A7C5C6B6F43426DDDA3A09DFCBCBDF/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: Ancient. Science. +GMNotes: '' +GUID: 3fbc07 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Harvested Brain +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 13.3316126 + posY: 2.55119538 + posZ: 11.0044813 + rotX: 359.920135 + rotY: 269.997 + rotZ: 0.016883539 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag Standalone ce36ec/Bag Murder at the Excelsior Hotel 8c5a09/Custom_Model_Bag Set-aside 74eec6/Card Hotel Manager 3fbc07.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag Standalone ce36ec/Bag Murder at the Excelsior Hotel 8c5a09/Custom_Model_Bag Set-aside 74eec6/Card Hotel Manager 3fbc07.yaml new file mode 100644 index 000000000..488ceab7c --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag Standalone ce36ec/Bag Murder at the Excelsior Hotel 8c5a09/Custom_Model_Bag Set-aside 74eec6/Card Hotel Manager 3fbc07.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 231616 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2316': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493212055041441/90F035BD69A7C5C6B6F43426DDDA3A09DFCBCBDF/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: Let the Feast Begin +GMNotes: '' +GUID: 3fbc07 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Hotel Manager +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 13.4454679 + posY: 2.54969168 + posZ: 10.8911991 + rotX: 359.920135 + rotY: 270.0027 + rotZ: 0.0168749783 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag Standalone ce36ec/Bag Murder at the Excelsior Hotel 8c5a09/Custom_Model_Bag Set-aside 74eec6/Card Otherworldly Meddler 3fbc07.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag Standalone ce36ec/Bag Murder at the Excelsior Hotel 8c5a09/Custom_Model_Bag Set-aside 74eec6/Card Otherworldly Meddler 3fbc07.yaml new file mode 100644 index 000000000..a91f74e0f --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag Standalone ce36ec/Bag Murder at the Excelsior Hotel 8c5a09/Custom_Model_Bag Set-aside 74eec6/Card Otherworldly Meddler 3fbc07.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 231613 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2316': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493212055041441/90F035BD69A7C5C6B6F43426DDDA3A09DFCBCBDF/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: Presence from Beyond the Stars +GMNotes: '' +GUID: 3fbc07 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Otherworldly Meddler +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 15.5453358 + posY: 2.54714155 + posZ: 11.2811365 + rotX: 359.920135 + rotY: 269.9964 + rotZ: 0.0168830715 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag Standalone ce36ec/Bag Murder at the Excelsior Hotel 8c5a09/Custom_Model_Bag Set-aside 74eec6/Card Sergeant Monroe 5630c2.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag Standalone ce36ec/Bag Murder at the Excelsior Hotel 8c5a09/Custom_Model_Bag Set-aside 74eec6/Card Sergeant Monroe 5630c2.yaml new file mode 100644 index 000000000..86b3dd150 --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag Standalone ce36ec/Bag Murder at the Excelsior Hotel 8c5a09/Custom_Model_Bag Set-aside 74eec6/Card Sergeant Monroe 5630c2.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 231702 +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 + UniqueBack: false +Description: Two Days Until Retirement +GMNotes: '' +GUID: 5630c2 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Sergeant Monroe +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.92531133 + posY: 2.56193781 + posZ: -21.1105747 + rotX: 359.920135 + rotY: 269.9999 + rotZ: 0.016873857 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag Standalone ce36ec/Bag Murder at the Excelsior Hotel 8c5a09/Custom_Model_Bag Set-aside 74eec6/Card Vengeful Specter 3fbc07.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag Standalone ce36ec/Bag Murder at the Excelsior Hotel 8c5a09/Custom_Model_Bag Set-aside 74eec6/Card Vengeful Specter 3fbc07.yaml new file mode 100644 index 000000000..08a3c52a5 --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag Standalone ce36ec/Bag Murder at the Excelsior Hotel 8c5a09/Custom_Model_Bag Set-aside 74eec6/Card Vengeful Specter 3fbc07.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 231625 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2316': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493212055041441/90F035BD69A7C5C6B6F43426DDDA3A09DFCBCBDF/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: The First Victim +GMNotes: '' +GUID: 3fbc07 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Vengeful Specter +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 13.98327 + posY: 2.54930067 + posZ: 9.885822 + rotX: 359.920135 + rotY: 269.997559 + rotZ: 0.0168796945 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag Standalone ce36ec/Bag Murder at the Excelsior Hotel 8c5a09/Custom_Model_Bag Set-aside 74eec6/Card What Have You Done 2c76d9.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag Standalone ce36ec/Bag Murder at the Excelsior Hotel 8c5a09/Custom_Model_Bag Set-aside 74eec6/Card What Have You Done 2c76d9.yaml new file mode 100644 index 000000000..e8d08fe63 --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag Standalone ce36ec/Bag Murder at the Excelsior Hotel 8c5a09/Custom_Model_Bag Set-aside 74eec6/Card What Have You Done 2c76d9.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 231701 +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 + UniqueBack: false +Description: Madness. +GMNotes: '' +GUID: 2c76d9 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: What Have You Done? +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.02397132 + posY: 2.56449771 + posZ: -15.719367 + rotX: 359.920135 + rotY: 269.9999 + rotZ: 0.0168766584 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag Standalone ce36ec/Bag Murder at the Excelsior Hotel 8c5a09/Custom_Model_Bag Set-aside 74eec6/Deck Arkham Officers f8ebf7.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag Standalone ce36ec/Bag Murder at the Excelsior Hotel 8c5a09/Custom_Model_Bag Set-aside 74eec6/Deck Arkham Officers f8ebf7.yaml new file mode 100644 index 000000000..19b0ea58d --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag Standalone ce36ec/Bag Murder at the Excelsior Hotel 8c5a09/Custom_Model_Bag Set-aside 74eec6/Deck Arkham Officers f8ebf7.yaml @@ -0,0 +1,172 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 231603 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2316': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493212055041441/90F035BD69A7C5C6B6F43426DDDA3A09DFCBCBDF/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Police. Innocent. + GMNotes: '' + GUID: 9de2ac + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Arkham Officer + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -4.86508942 + posY: 1.559355 + posZ: -1.99277723 + rotX: 359.9205 + rotY: 269.997955 + rotZ: 0.0138530852 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231603 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2316': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493212055041441/90F035BD69A7C5C6B6F43426DDDA3A09DFCBCBDF/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Police. Innocent. + GMNotes: '' + GUID: 7f4625 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Arkham Officer + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -4.552684 + posY: 1.70415437 + posZ: -1.99416292 + rotX: 359.940582 + rotY: 269.99762 + rotZ: 0.00139248883 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231603 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2316': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493212055041441/90F035BD69A7C5C6B6F43426DDDA3A09DFCBCBDF/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Police. Innocent. + GMNotes: '' + GUID: 3fbc07 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Arkham Officer + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -4.654519 + posY: 1.73610973 + posZ: -1.39314783 + rotX: 359.9034 + rotY: 269.971222 + rotZ: 357.816223 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2316': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493212055041441/90F035BD69A7C5C6B6F43426DDDA3A09DFCBCBDF/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 231603 +- 231603 +- 231603 +Description: '' +GMNotes: '' +GUID: f8ebf7 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Arkham Officers +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.195563 + posY: 2.71134233 + posZ: -13.3082075 + rotX: 359.9201 + rotY: 270.0192 + rotZ: 0.0168026816 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag Standalone ce36ec/Bag Murder at the Excelsior Hotel 8c5a09/Custom_Model_Bag Set-aside 74eec6/Deck Chilling Presences 6d55da.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag Standalone ce36ec/Bag Murder at the Excelsior Hotel 8c5a09/Custom_Model_Bag Set-aside 74eec6/Deck Chilling Presences 6d55da.yaml new file mode 100644 index 000000000..944710ecf --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag Standalone ce36ec/Bag Murder at the Excelsior Hotel 8c5a09/Custom_Model_Bag Set-aside 74eec6/Deck Chilling Presences 6d55da.yaml @@ -0,0 +1,172 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 231626 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2316': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493212055041441/90F035BD69A7C5C6B6F43426DDDA3A09DFCBCBDF/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: 3fbc07 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Chilling Presence + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 18.2369041 + posY: 1.52615535 + posZ: -5.314041 + rotX: 359.920776 + rotY: 269.999817 + rotZ: 0.0115456637 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231626 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2316': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493212055041441/90F035BD69A7C5C6B6F43426DDDA3A09DFCBCBDF/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: 19a53b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Chilling Presence + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 18.0128059 + posY: 1.67861116 + posZ: -5.32069969 + rotX: 359.93573 + rotY: 269.999268 + rotZ: 0.0115820542 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231626 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2316': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493212055041441/90F035BD69A7C5C6B6F43426DDDA3A09DFCBCBDF/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: aa6826 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Chilling Presence + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 18.01289 + posY: 1.70457137 + posZ: -5.32073832 + rotX: 359.920227 + rotY: 269.999817 + rotZ: 0.0159090124 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2316': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493212055041441/90F035BD69A7C5C6B6F43426DDDA3A09DFCBCBDF/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 231626 +- 231626 +- 231626 +Description: '' +GMNotes: '' +GUID: 6d55da +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Chilling Presences +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 13.9966421 + posY: 2.54866624 + posZ: 8.92116451 + rotX: 359.920135 + rotY: 269.988464 + rotZ: 0.0168937575 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag Standalone ce36ec/Bag Murder at the Excelsior Hotel 8c5a09/Custom_Model_Bag Set-aside 74eec6/Deck Cultists of the Enclave c0885d.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag Standalone ce36ec/Bag Murder at the Excelsior Hotel 8c5a09/Custom_Model_Bag Set-aside 74eec6/Deck Cultists of the Enclave c0885d.yaml new file mode 100644 index 000000000..2c716dfe4 --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag Standalone ce36ec/Bag Murder at the Excelsior Hotel 8c5a09/Custom_Model_Bag Set-aside 74eec6/Deck Cultists of the Enclave c0885d.yaml @@ -0,0 +1,172 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 231620 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2316': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493212055041441/90F035BD69A7C5C6B6F43426DDDA3A09DFCBCBDF/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Cultist. + GMNotes: '' + GUID: 3fbc07 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Cultist of the Enclave + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 18.4720955 + posY: 1.526727 + posZ: -2.507222 + rotX: 359.9202 + rotY: 269.999939 + rotZ: 0.01646921 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231620 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2316': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493212055041441/90F035BD69A7C5C6B6F43426DDDA3A09DFCBCBDF/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Cultist. + GMNotes: '' + GUID: b50ce8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Cultist of the Enclave + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 18.78685 + posY: 1.6961205 + posZ: -2.18036175 + rotX: 359.937164 + rotY: 270.0 + rotZ: 0.0101680821 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231620 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2316': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493212055041441/90F035BD69A7C5C6B6F43426DDDA3A09DFCBCBDF/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Cultist. + GMNotes: '' + GUID: 4441df + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Cultist of the Enclave + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 18.7869244 + posY: 1.70657849 + posZ: -2.18037772 + rotX: 359.936768 + rotY: 270.0 + rotZ: 0.0118672745 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2316': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493212055041441/90F035BD69A7C5C6B6F43426DDDA3A09DFCBCBDF/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 231620 +- 231620 +- 231620 +Description: '' +GMNotes: '' +GUID: c0885d +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Cultists of the Enclave +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 14.1607027 + posY: 2.54810143 + posZ: 8.077119 + rotX: 359.919434 + rotY: 269.989624 + rotZ: 0.017661266 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag Standalone ce36ec/Bag Murder at the Excelsior Hotel 8c5a09/Custom_Model_Bag Set-aside 74eec6/Deck Encephalon Souls 1df3fd.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag Standalone ce36ec/Bag Murder at the Excelsior Hotel 8c5a09/Custom_Model_Bag Set-aside 74eec6/Deck Encephalon Souls 1df3fd.yaml new file mode 100644 index 000000000..6790b986f --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag Standalone ce36ec/Bag Murder at the Excelsior Hotel 8c5a09/Custom_Model_Bag Set-aside 74eec6/Deck Encephalon Souls 1df3fd.yaml @@ -0,0 +1,172 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 231614 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2316': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493212055041441/90F035BD69A7C5C6B6F43426DDDA3A09DFCBCBDF/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: 3fbc07 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Encephalon Signal + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 22.3816662 + posY: 1.52079952 + posZ: -3.96237373 + rotX: 359.920563 + rotY: 269.999817 + rotZ: 0.0132160513 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231614 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2316': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493212055041441/90F035BD69A7C5C6B6F43426DDDA3A09DFCBCBDF/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: 5c4124 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Encephalon Signal + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 22.237072 + posY: 1.67204773 + posZ: -3.90301514 + rotX: 359.933868 + rotY: 269.999939 + rotZ: -0.00105428451 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231614 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2316': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493212055041441/90F035BD69A7C5C6B6F43426DDDA3A09DFCBCBDF/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: 7613e0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Encephalon Signal + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 22.23712 + posY: 1.703849 + posZ: -3.90303564 + rotX: 359.920654 + rotY: 269.999878 + rotZ: 0.016180981 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2316': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493212055041441/90F035BD69A7C5C6B6F43426DDDA3A09DFCBCBDF/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 231614 +- 231614 +- 231614 +Description: '' +GMNotes: '' +GUID: 1df3fd +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Encephalon Souls +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 15.4637251 + posY: 2.547243 + posZ: 10.3449659 + rotX: 359.920135 + rotY: 269.981018 + rotZ: 0.0169016346 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag Standalone ce36ec/Bag Murder at the Excelsior Hotel 8c5a09/Custom_Model_Bag Set-aside 74eec6/Deck Hotel Security e3dc34.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag Standalone ce36ec/Bag Murder at the Excelsior Hotel 8c5a09/Custom_Model_Bag Set-aside 74eec6/Deck Hotel Security e3dc34.yaml new file mode 100644 index 000000000..8960d4d17 --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag Standalone ce36ec/Bag Murder at the Excelsior Hotel 8c5a09/Custom_Model_Bag Set-aside 74eec6/Deck Hotel Security e3dc34.yaml @@ -0,0 +1,172 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 231617 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2316': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493212055041441/90F035BD69A7C5C6B6F43426DDDA3A09DFCBCBDF/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Monster. Staff. + GMNotes: '' + GUID: 3fbc07 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Hotel Security + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 18.4920654 + posY: 1.5275594 + posZ: 0.5202023 + rotX: 359.9204 + rotY: 270.000061 + rotZ: 0.0143561475 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231617 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2316': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493212055041441/90F035BD69A7C5C6B6F43426DDDA3A09DFCBCBDF/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Monster. Staff. + GMNotes: '' + GUID: 7f2492 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Hotel Security + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 18.9652824 + posY: 1.67940474 + posZ: 0.670329154 + rotX: 359.923431 + rotY: 270.0 + rotZ: 0.0105017265 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231617 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2316': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493212055041441/90F035BD69A7C5C6B6F43426DDDA3A09DFCBCBDF/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Monster. Staff. + GMNotes: '' + GUID: 3480cc + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Hotel Security + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 18.9653721 + posY: 1.69892037 + posZ: 0.6702867 + rotX: 359.920868 + rotY: 270.000031 + rotZ: 0.01596997 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2316': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493212055041441/90F035BD69A7C5C6B6F43426DDDA3A09DFCBCBDF/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 231617 +- 231617 +- 231617 +Description: '' +GMNotes: '' +GUID: e3dc34 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Hotel Security +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 14.0277367 + posY: 2.54902434 + posZ: 10.3909121 + rotX: 359.9201 + rotY: 270.010559 + rotZ: 0.0168623123 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag Standalone ce36ec/Bag Murder at the Excelsior Hotel 8c5a09/Custom_Model_Bag Set-aside 74eec6/Deck Locations fa2f3a.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag Standalone ce36ec/Bag Murder at the Excelsior Hotel 8c5a09/Custom_Model_Bag Set-aside 74eec6/Deck Locations fa2f3a.yaml new file mode 100644 index 000000000..d79b9e832 --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag Standalone ce36ec/Bag Murder at the Excelsior Hotel 8c5a09/Custom_Model_Bag Set-aside 74eec6/Deck Locations fa2f3a.yaml @@ -0,0 +1,258 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 231914 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2319': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/778493212055043200/69BE533398A163171710A34F2FC068249B8E2B90/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493212055042209/FBBBE393755E3F8BAB1A2935E1F691EE8358054D/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Crime Scene. + GMNotes: '' + GUID: 70e5f9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Basement + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 12.44097 + posY: 1.70581508 + posZ: 14.5248308 + rotX: 359.936462 + rotY: 270.0 + rotZ: 180.014084 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231913 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2319': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/778493212055043200/69BE533398A163171710A34F2FC068249B8E2B90/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493212055042209/FBBBE393755E3F8BAB1A2935E1F691EE8358054D/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: b3ed47 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Office + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 12.3328686 + posY: 1.7079587 + posZ: 14.6802578 + rotX: 359.936829 + rotY: 270.0 + rotZ: 180.0146 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231912 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2319': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/778493212055043200/69BE533398A163171710A34F2FC068249B8E2B90/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493212055042209/FBBBE393755E3F8BAB1A2935E1F691EE8358054D/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Crime Scene. + GMNotes: '' + GUID: '423356' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Room 245 + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 12.401207 + posY: 1.72161973 + posZ: 14.8322611 + rotX: 359.936768 + rotY: 270.0 + rotZ: 180.013824 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231911 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2319': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/778493212055043200/69BE533398A163171710A34F2FC068249B8E2B90/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493212055042209/FBBBE393755E3F8BAB1A2935E1F691EE8358054D/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Crime Scene. + GMNotes: '' + GUID: 0f24e3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Room 212 + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 12.5886059 + posY: 1.70399439 + posZ: 14.6276894 + rotX: 359.937927 + rotY: 270.0 + rotZ: 180.015671 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231910 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2319': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/778493212055043200/69BE533398A163171710A34F2FC068249B8E2B90/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493212055042209/FBBBE393755E3F8BAB1A2935E1F691EE8358054D/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: '120736' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Hotel Roof + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 12.4108629 + posY: 1.54308629 + posZ: 14.7803688 + rotX: 359.920227 + rotY: 269.9999 + rotZ: 180.017563 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2319': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/778493212055043200/69BE533398A163171710A34F2FC068249B8E2B90/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493212055042209/FBBBE393755E3F8BAB1A2935E1F691EE8358054D/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 231914 +- 231913 +- 231912 +- 231911 +- 231910 +Description: '' +GMNotes: '' +GUID: fa2f3a +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Locations +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 12.8338022 + posY: 2.549773 + posZ: 9.414876 + rotX: 359.920135 + rotY: 270.000061 + rotZ: 0.01687928 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag Standalone ce36ec/Bag Murder at the Excelsior Hotel 8c5a09/Custom_Model_Bag Set-aside 74eec6/Deck Morbid Awarenesses d3eba4.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag Standalone ce36ec/Bag Murder at the Excelsior Hotel 8c5a09/Custom_Model_Bag Set-aside 74eec6/Deck Morbid Awarenesses d3eba4.yaml new file mode 100644 index 000000000..98e97522c --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag Standalone ce36ec/Bag Murder at the Excelsior Hotel 8c5a09/Custom_Model_Bag Set-aside 74eec6/Deck Morbid Awarenesses d3eba4.yaml @@ -0,0 +1,172 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 231623 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2316': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493212055041441/90F035BD69A7C5C6B6F43426DDDA3A09DFCBCBDF/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: 3fbc07 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Morbid Awareness + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 18.58808 + posY: 1.52577007 + posZ: -5.22194242 + rotX: 359.9201 + rotY: 269.999756 + rotZ: 0.0168050788 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231623 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2316': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493212055041441/90F035BD69A7C5C6B6F43426DDDA3A09DFCBCBDF/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: 363bfa + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Morbid Awareness + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 18.5665646 + posY: 1.67787862 + posZ: -4.75133038 + rotX: 359.915741 + rotY: 270.000458 + rotZ: -0.004531632 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231623 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2316': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493212055041441/90F035BD69A7C5C6B6F43426DDDA3A09DFCBCBDF/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: 870ee1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Morbid Awareness + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 18.56657 + posY: 1.70967972 + posZ: -4.75137043 + rotX: 359.920959 + rotY: 270.0 + rotZ: 0.0149811246 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2316': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493212055041441/90F035BD69A7C5C6B6F43426DDDA3A09DFCBCBDF/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 231623 +- 231623 +- 231623 +Description: '' +GMNotes: '' +GUID: d3eba4 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Morbid Awarenesses +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 13.4943819 + posY: 2.55078149 + posZ: 11.068409 + rotX: 359.920135 + rotY: 269.985718 + rotZ: 0.016898891 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag Standalone ce36ec/Bag Murder at the Excelsior Hotel 8c5a09/Custom_Model_Bag Set-aside 74eec6/Deck The True Culprit f6869f.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag Standalone ce36ec/Bag Murder at the Excelsior Hotel 8c5a09/Custom_Model_Bag Set-aside 74eec6/Deck The True Culprit f6869f.yaml new file mode 100644 index 000000000..b175e3bef --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag Standalone ce36ec/Bag Murder at the Excelsior Hotel 8c5a09/Custom_Model_Bag Set-aside 74eec6/Deck The True Culprit f6869f.yaml @@ -0,0 +1,473 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 232024 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493212055043200/69BE533398A163171710A34F2FC068249B8E2B90/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493212055042209/FBBBE393755E3F8BAB1A2935E1F691EE8358054D/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: ad9989 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The True Culprit (v. X) + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.96141243 + posY: 1.55808747 + posZ: -2.79680943 + rotX: 359.913361 + rotY: 270.014252 + rotZ: 0.00547628 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232023 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493212055043200/69BE533398A163171710A34F2FC068249B8E2B90/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493212055042209/FBBBE393755E3F8BAB1A2935E1F691EE8358054D/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 371ecc + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The True Culprit (v. IX) + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.746577 + posY: 1.6757673 + posZ: -2.71787357 + rotX: 359.9345 + rotY: 270.011139 + rotZ: 1.92105389 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232022 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493212055043200/69BE533398A163171710A34F2FC068249B8E2B90/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493212055042209/FBBBE393755E3F8BAB1A2935E1F691EE8358054D/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: b4bac7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The True Culprit (v. VIII) + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.615811 + posY: 1.71121621 + posZ: -2.80853558 + rotX: 359.938232 + rotY: 270.000977 + rotZ: 359.9167 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232021 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493212055043200/69BE533398A163171710A34F2FC068249B8E2B90/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493212055042209/FBBBE393755E3F8BAB1A2935E1F691EE8358054D/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 8bb58e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The True Culprit (v. VII) + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.57873964 + posY: 1.68922377 + posZ: -2.45572829 + rotX: 359.942383 + rotY: 270.0003 + rotZ: 1.827583 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232020 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493212055043200/69BE533398A163171710A34F2FC068249B8E2B90/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493212055042209/FBBBE393755E3F8BAB1A2935E1F691EE8358054D/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: d48b3b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The True Culprit (v. VI) + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.44718242 + posY: 1.70022082 + posZ: -2.44712782 + rotX: 0.215484887 + rotY: 270.008331 + rotZ: 1.00920892 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232019 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493212055043200/69BE533398A163171710A34F2FC068249B8E2B90/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493212055042209/FBBBE393755E3F8BAB1A2935E1F691EE8358054D/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 0c7b37 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The True Culprit (v. V) + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.36171031 + posY: 1.89877725 + posZ: -2.87397265 + rotX: 359.941284 + rotY: 269.924438 + rotZ: 12.0947247 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232018 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493212055043200/69BE533398A163171710A34F2FC068249B8E2B90/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493212055042209/FBBBE393755E3F8BAB1A2935E1F691EE8358054D/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 6506d9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The True Culprit (v. IV) + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.67297745 + posY: 1.821249 + posZ: -2.821193 + rotX: 358.985626 + rotY: 269.999756 + rotZ: 7.40455961 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232017 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493212055043200/69BE533398A163171710A34F2FC068249B8E2B90/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493212055042209/FBBBE393755E3F8BAB1A2935E1F691EE8358054D/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 9a7486 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The True Culprit (v. III) + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.73344779 + posY: 1.70966685 + posZ: -3.07517958 + rotX: 359.937378 + rotY: 270.000427 + rotZ: 359.918976 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232016 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493212055043200/69BE533398A163171710A34F2FC068249B8E2B90/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493212055042209/FBBBE393755E3F8BAB1A2935E1F691EE8358054D/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: ae0f38 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The True Culprit (v. II) + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.97807765 + posY: 1.75352788 + posZ: -3.10018039 + rotX: 359.924164 + rotY: 270.1 + rotZ: 6.679489 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232015 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493212055043200/69BE533398A163171710A34F2FC068249B8E2B90/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493212055042209/FBBBE393755E3F8BAB1A2935E1F691EE8358054D/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 4d4cbc + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The True Culprit (v. I) + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.958307 + posY: 1.66082633 + posZ: -3.158538 + rotX: 359.734283 + rotY: 269.9997 + rotZ: 1.94759476 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493212055043200/69BE533398A163171710A34F2FC068249B8E2B90/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493212055042209/FBBBE393755E3F8BAB1A2935E1F691EE8358054D/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 232024 +- 232023 +- 232022 +- 232021 +- 232020 +- 232019 +- 232018 +- 232017 +- 232016 +- 232015 +Description: '' +GMNotes: '' +GUID: f6869f +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: The True Culprit +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -4.10691357 + posY: 2.55765748 + posZ: -11.9459095 + rotX: 0.0168690681 + rotY: 180.000031 + rotZ: 0.07988079 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag Standalone ce36ec/Bag Murder at the Excelsior Hotel 8c5a09/Deck Act Deck 37760f.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag Standalone ce36ec/Bag Murder at the Excelsior Hotel 8c5a09/Deck Act Deck 37760f.yaml new file mode 100644 index 000000000..f3e3c29ca --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag Standalone ce36ec/Bag Murder at the Excelsior Hotel 8c5a09/Deck Act Deck 37760f.yaml @@ -0,0 +1,129 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 232004 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493212055043200/69BE533398A163171710A34F2FC068249B8E2B90/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493212055042209/FBBBE393755E3F8BAB1A2935E1F691EE8358054D/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 2 + GMNotes: '' + GUID: e1c002 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Following Leads + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.20115781 + posY: 1.546711 + posZ: -6.99526072 + rotX: 0.0155486828 + rotY: 180.846 + rotZ: 0.08085919 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232003 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493212055043200/69BE533398A163171710A34F2FC068249B8E2B90/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493212055042209/FBBBE393755E3F8BAB1A2935E1F691EE8358054D/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 1 + GMNotes: '' + GUID: 7ea038 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: What Happened...? + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.934494 + posY: 1.69286835 + posZ: -6.94623375 + rotX: 359.990723 + rotY: 180.107437 + rotZ: 0.04639205 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493212055043200/69BE533398A163171710A34F2FC068249B8E2B90/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493212055042209/FBBBE393755E3F8BAB1A2935E1F691EE8358054D/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 232004 +- 232003 +Description: '' +GMNotes: '' +GUID: 37760f +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Act Deck +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -6.4006443 + posY: 3.64162326 + posZ: -1.16094434 + rotX: 0.121318728 + rotY: 179.98912 + rotZ: 359.2506 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag Standalone ce36ec/Bag Murder at the Excelsior Hotel 8c5a09/Deck Agenda Deck 888a6b.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag Standalone ce36ec/Bag Murder at the Excelsior Hotel 8c5a09/Deck Agenda Deck 888a6b.yaml new file mode 100644 index 000000000..b32c32dc0 --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag Standalone ce36ec/Bag Murder at the Excelsior Hotel 8c5a09/Deck Agenda Deck 888a6b.yaml @@ -0,0 +1,129 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 232002 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493212055043200/69BE533398A163171710A34F2FC068249B8E2B90/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493212055042209/FBBBE393755E3F8BAB1A2935E1F691EE8358054D/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 2 + GMNotes: '' + GUID: 463cbd + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Special Investigation + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.9179432 + posY: 1.55129838 + posZ: -2.1453898 + rotX: 0.0184600428 + rotY: 179.843033 + rotZ: 0.0799029 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232001 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493212055043200/69BE533398A163171710A34F2FC068249B8E2B90/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493212055042209/FBBBE393755E3F8BAB1A2935E1F691EE8358054D/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 1 + GMNotes: '' + GUID: ad9989 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Murder + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.4839544 + posY: 1.696932 + posZ: -2.160283 + rotX: 0.0149887586 + rotY: 179.9928 + rotZ: 0.0571661219 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493212055043200/69BE533398A163171710A34F2FC068249B8E2B90/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493212055042209/FBBBE393755E3F8BAB1A2935E1F691EE8358054D/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 232002 +- 232001 +Description: '' +GMNotes: '' +GUID: 888a6b +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Agenda Deck +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -5.82228851 + posY: 3.64853263 + posZ: -1.28307128 + rotX: 0.361115515 + rotY: 179.9769 + rotZ: 359.425934 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag Standalone ce36ec/Bag Murder at the Excelsior Hotel 8c5a09/Deck Encounter Deck fd4231.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag Standalone ce36ec/Bag Murder at the Excelsior Hotel 8c5a09/Deck Encounter Deck fd4231.yaml new file mode 100644 index 000000000..c4827d8f8 --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag Standalone ce36ec/Bag Murder at the Excelsior Hotel 8c5a09/Deck Encounter Deck fd4231.yaml @@ -0,0 +1,989 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 231604 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2316': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493212055041441/90F035BD69A7C5C6B6F43426DDDA3A09DFCBCBDF/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Maddened Concierge + GMNotes: '' + GUID: b413df + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Mr. Trombly + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -6.373387 + posY: 1.82486868 + posZ: 0.166635916 + rotX: 359.920227 + rotY: 270.0008 + rotZ: 180.017029 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231605 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2316': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493212055041441/90F035BD69A7C5C6B6F43426DDDA3A09DFCBCBDF/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Staff. + GMNotes: '' + GUID: 3fbc07 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Conspicuous Staff + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -6.68058252 + posY: 1.79998648 + posZ: -0.08418883 + rotX: 359.9301 + rotY: 270.000183 + rotZ: 180.013977 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231605 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2316': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493212055041441/90F035BD69A7C5C6B6F43426DDDA3A09DFCBCBDF/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Staff. + GMNotes: '' + GUID: 66b07b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Conspicuous Staff + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -6.781808 + posY: 1.790729 + posZ: 0.4126418 + rotX: 359.93457 + rotY: 269.970947 + rotZ: 180.01442 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231605 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2316': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493212055041441/90F035BD69A7C5C6B6F43426DDDA3A09DFCBCBDF/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Staff. + GMNotes: '' + GUID: 3fbc07 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Conspicuous Staff + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -6.89647341 + posY: 1.78090549 + posZ: -0.5878452 + rotX: 359.936829 + rotY: 269.979736 + rotZ: 180.031555 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231606 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2316': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493212055041441/90F035BD69A7C5C6B6F43426DDDA3A09DFCBCBDF/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Guest. Innocent. + GMNotes: '' + GUID: 3fbc07 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Hotel Guest + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -6.518738 + posY: 1.77097952 + posZ: -0.0109593086 + rotX: 359.935944 + rotY: 269.9828 + rotZ: 180.030151 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231606 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2316': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493212055041441/90F035BD69A7C5C6B6F43426DDDA3A09DFCBCBDF/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Guest. Innocent. + GMNotes: '' + GUID: 574dae + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Hotel Guest + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -6.63282728 + posY: 1.76151943 + posZ: -0.0613127723 + rotX: 359.93634 + rotY: 269.982056 + rotZ: 180.028809 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231606 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2316': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493212055041441/90F035BD69A7C5C6B6F43426DDDA3A09DFCBCBDF/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Guest. Innocent. + GMNotes: '' + GUID: 99bf87 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Hotel Guest + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -6.89462233 + posY: 1.75204623 + posZ: -1.11835563 + rotX: 359.9245 + rotY: 269.983521 + rotZ: 180.065552 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231606 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2316': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493212055041441/90F035BD69A7C5C6B6F43426DDDA3A09DFCBCBDF/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Guest. Innocent. + GMNotes: '' + GUID: 3fbc07 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Hotel Guest + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -6.92433834 + posY: 1.74226749 + posZ: -0.260813832 + rotX: 359.935516 + rotY: 270.0002 + rotZ: 180.014832 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231607 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2316': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493212055041441/90F035BD69A7C5C6B6F43426DDDA3A09DFCBCBDF/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: c958cc + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Noxious Fumes + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -6.718242 + posY: 1.73227108 + posZ: 0.164747849 + rotX: 359.9396 + rotY: 269.999481 + rotZ: 180.009964 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231607 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2316': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493212055041441/90F035BD69A7C5C6B6F43426DDDA3A09DFCBCBDF/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: 3fbc07 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Noxious Fumes + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -6.59662151 + posY: 1.722631 + posZ: -0.203139991 + rotX: 359.933716 + rotY: 269.991028 + rotZ: 180.02243 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231608 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2316': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493212055041441/90F035BD69A7C5C6B6F43426DDDA3A09DFCBCBDF/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Curse. + GMNotes: '' + GUID: 3fbc07 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Driven to Madness + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -6.86629 + posY: 1.71320033 + posZ: -0.292970926 + rotX: 359.935944 + rotY: 269.9986 + rotZ: 180.015808 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231608 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2316': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493212055041441/90F035BD69A7C5C6B6F43426DDDA3A09DFCBCBDF/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Curse. + GMNotes: '' + GUID: 6bd162 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Driven to Madness + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -6.76068354 + posY: 1.70343292 + posZ: -0.34007284 + rotX: 359.935547 + rotY: 269.994934 + rotZ: 180.018127 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231608 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2316': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493212055041441/90F035BD69A7C5C6B6F43426DDDA3A09DFCBCBDF/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Curse. + GMNotes: '' + GUID: 3fbc07 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Driven to Madness + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -6.831557 + posY: 1.69378471 + posZ: -0.493145436 + rotX: 359.9357 + rotY: 270.0011 + rotZ: 180.0176 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231609 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2316': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493212055041441/90F035BD69A7C5C6B6F43426DDDA3A09DFCBCBDF/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: 3fbc07 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Blood on Your Hands + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -6.78308 + posY: 1.68404257 + posZ: -0.5505637 + rotX: 359.935516 + rotY: 270.006348 + rotZ: 180.01506 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231609 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2316': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493212055041441/90F035BD69A7C5C6B6F43426DDDA3A09DFCBCBDF/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: 3fbc07 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Blood on Your Hands + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -6.53709126 + posY: 1.903912 + posZ: -1.5848366 + rotX: 359.9222 + rotY: 270.01 + rotZ: 182.413971 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231609 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2316': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493212055041441/90F035BD69A7C5C6B6F43426DDDA3A09DFCBCBDF/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: 2ceeb1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Blood on Your Hands + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -6.693918 + posY: 1.70046782 + posZ: -1.6228466 + rotX: 359.912628 + rotY: 270.002869 + rotZ: 185.530869 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231609 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2316': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493212055041441/90F035BD69A7C5C6B6F43426DDDA3A09DFCBCBDF/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: 3fbc07 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Blood on Your Hands + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -6.759946 + posY: 1.71526814 + posZ: -0.5262743 + rotX: 359.935516 + rotY: 269.997528 + rotZ: 180.020615 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231610 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2316': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493212055041441/90F035BD69A7C5C6B6F43426DDDA3A09DFCBCBDF/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Evidence. + GMNotes: '' + GUID: 3fbc07 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Incriminating Evidence + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -6.251154 + posY: 1.712096 + posZ: 0.13677682 + rotX: 359.933655 + rotY: 269.998718 + rotZ: 180.0171 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231610 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2316': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493212055041441/90F035BD69A7C5C6B6F43426DDDA3A09DFCBCBDF/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Evidence. + GMNotes: '' + GUID: 953a77 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Incriminating Evidence + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -6.760958 + posY: 1.714692 + posZ: -0.302883625 + rotX: 359.935181 + rotY: 269.996765 + rotZ: 180.017426 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231611 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2316': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493212055041441/90F035BD69A7C5C6B6F43426DDDA3A09DFCBCBDF/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Curse. + GMNotes: '' + GUID: 1c7c45 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Violent Outburst + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -6.31987 + posY: 1.72793436 + posZ: 0.2180997 + rotX: 359.931854 + rotY: 270.040222 + rotZ: 179.96814 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231611 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2316': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493212055041441/90F035BD69A7C5C6B6F43426DDDA3A09DFCBCBDF/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Curse. + GMNotes: '' + GUID: 23b849 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Violent Outburst + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -6.782233 + posY: 1.71072483 + posZ: -0.242594719 + rotX: 359.947784 + rotY: 269.997375 + rotZ: 180.020737 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231611 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2316': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493212055041441/90F035BD69A7C5C6B6F43426DDDA3A09DFCBCBDF/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Curse. + GMNotes: '' + GUID: 3fbc07 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Violent Outburst + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -6.71362925 + posY: 1.56519091 + posZ: -0.37385878 + rotX: 359.920868 + rotY: 269.999268 + rotZ: 180.0248 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2316': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493212055041441/90F035BD69A7C5C6B6F43426DDDA3A09DFCBCBDF/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 231604 +- 231605 +- 231605 +- 231605 +- 231606 +- 231606 +- 231606 +- 231606 +- 231607 +- 231607 +- 231608 +- 231608 +- 231608 +- 231609 +- 231609 +- 231609 +- 231609 +- 231610 +- 231610 +- 231611 +- 231611 +- 231611 +Description: '' +GMNotes: '' +GUID: fd4231 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Encounter Deck +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 5.949188 + posY: 2.61851025 + posZ: -23.4432468 + rotX: 359.9201 + rotY: 269.999969 + rotZ: 180.016861 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag Standalone ce36ec/Bag Murder at the Excelsior Hotel 8c5a09/Deck Leads Deck 227fad.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag Standalone ce36ec/Bag Murder at the Excelsior Hotel 8c5a09/Deck Leads Deck 227fad.yaml new file mode 100644 index 000000000..06c449a98 --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag Standalone ce36ec/Bag Murder at the Excelsior Hotel 8c5a09/Deck Leads Deck 227fad.yaml @@ -0,0 +1,258 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 231615 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2316': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493212055041441/90F035BD69A7C5C6B6F43426DDDA3A09DFCBCBDF/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Stained by Blood + GMNotes: '' + GUID: e26f60 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Manager's Key + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -5.60788 + posY: 1.70687544 + posZ: -0.0783165 + rotX: 359.9264 + rotY: 270.002228 + rotZ: 0.005935799 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231621 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2316': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493212055041441/90F035BD69A7C5C6B6F43426DDDA3A09DFCBCBDF/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Vile Concoction + GMNotes: '' + GUID: 3fbc07 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Sinister Solution + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.70230126 + posY: 2.42021942 + posZ: 2.313648 + rotX: 325.816162 + rotY: 263.97818 + rotZ: 0.0421623737 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231624 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2316': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493212055041441/90F035BD69A7C5C6B6F43426DDDA3A09DFCBCBDF/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Mournful Vision of the Past + GMNotes: '' + GUID: be354d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Time-Worn Locket + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.522535741 + posY: 1.552968 + posZ: 1.54487741 + rotX: 359.919983 + rotY: 269.9976 + rotZ: 0.01814003 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231612 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2316': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493212055041441/90F035BD69A7C5C6B6F43426DDDA3A09DFCBCBDF/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Machinations from Beyond + GMNotes: '' + GUID: 6779fe + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Alien Device + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -1.7285943 + posY: 1.70214009 + posZ: -0.4410239 + rotX: 359.866974 + rotY: 270.0005 + rotZ: 0.0886248648 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231618 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2316': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493212055041441/90F035BD69A7C5C6B6F43426DDDA3A09DFCBCBDF/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Blasphemous Volume + GMNotes: '' + GUID: 8ac93f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Tome of Rituals + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -5.86973858 + posY: 1.70854938 + posZ: 0.17385383 + rotX: 359.923431 + rotY: 269.996246 + rotZ: 0.0113315 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2316': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493212055041441/90F035BD69A7C5C6B6F43426DDDA3A09DFCBCBDF/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 231615 +- 231621 +- 231624 +- 231612 +- 231618 +Description: '' +GMNotes: '' +GUID: 227fad +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Leads Deck +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -5.566306 + posY: 3.654908 + posZ: -0.7685895 + rotX: 0.009023054 + rotY: 269.999817 + rotZ: 179.66713 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag Standalone ce36ec/Bag The Labyrinths of Lunacy be5344.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag Standalone ce36ec/Bag The Labyrinths of Lunacy be5344.yaml new file mode 100644 index 000000000..536ab9fc5 --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag Standalone ce36ec/Bag The Labyrinths of Lunacy be5344.yaml @@ -0,0 +1,38 @@ +Autoraise: true +ColorDiffuse: + b: 0.0 + g: 0.366520882 + r: 0.7058823 +ContainedObjects: +- !include 'Bag The Labyrinths of Lunacy be5344/Deck The Labyrinths of Lunacy 1e86b9.yaml' +- !include 'Bag The Labyrinths of Lunacy be5344/Deck Single Group 048ed9.yaml' +- !include 'Bag The Labyrinths of Lunacy be5344/Deck Epic Multiplayer 861e9b.yaml' +Description: '' +GMNotes: '' +GUID: be5344 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +MeshIndex: -1 +Name: Bag +Nickname: The Labyrinths of Lunacy +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 118.375328 + posY: 2.164381 + posZ: -30.0515766 + rotX: 0.0004881035 + rotY: 359.989838 + rotZ: -0.0004112337 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag Standalone ce36ec/Bag The Labyrinths of Lunacy be5344/Deck Epic Multiplayer 861e9b.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag Standalone ce36ec/Bag The Labyrinths of Lunacy be5344/Deck Epic Multiplayer 861e9b.yaml new file mode 100644 index 000000000..a890a2419 --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag Standalone ce36ec/Bag The Labyrinths of Lunacy be5344/Deck Epic Multiplayer 861e9b.yaml @@ -0,0 +1,910 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 265120 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: '817446' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Paradox Effect + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 96.91641 + posY: 1.40363467 + posZ: 15.36192 + rotX: 359.987427 + rotY: 270.0 + rotZ: 359.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265120 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: 1f26ea + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Paradox Effect + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 96.77602 + posY: 1.57928574 + posZ: 15.0920315 + rotX: 359.993225 + rotY: 269.99884 + rotZ: 358.452118 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265120 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: '817446' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Paradox Effect + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 96.881546 + posY: 1.51969624 + posZ: 15.118618 + rotX: 359.990753 + rotY: 270.0004 + rotZ: 2.5195775 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265112 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false + Description: Monster. Elite. + GMNotes: '' + GUID: '817446' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Jailor + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 96.85528 + posY: 1.5924468 + posZ: 15.0513868 + rotX: 359.9941 + rotY: 269.997559 + rotZ: 357.734741 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265110 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false + Description: You Are Not Its First Victim, Or Its Last + GMNotes: '' + GUID: '817446' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Eixodolon's Pet + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 96.9093857 + posY: 1.5047828 + posZ: 15.52822 + rotX: 359.9912 + rotY: 269.999817 + rotZ: 357.630463 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265107 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false + Description: Item. Script. + GMNotes: '' + GUID: '817446' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Decay Diagram + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 96.82359 + posY: 1.51203859 + posZ: 15.2132769 + rotX: 359.989075 + rotY: 270.003174 + rotZ: 357.488373 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265105 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false + Description: Item. Script. + GMNotes: '' + GUID: a5e76a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Hunger Diagram + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 96.67865 + posY: 1.52480543 + posZ: 15.0467606 + rotX: 359.989746 + rotY: 269.999329 + rotZ: 357.320282 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265103 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false + Description: Item. Script. + GMNotes: '' + GUID: '817446' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Rot Diagram + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 97.2215042 + posY: 1.56520808 + posZ: 15.5002155 + rotX: 359.9922 + rotY: 270.0018 + rotZ: 359.8965 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12337 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 2. + GMNotes: '' + GUID: b634cc + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Encrypted Glyphs + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 98.5084 + posY: 1.55827558 + posZ: -2.97969317 + rotX: 359.989532 + rotY: 269.997345 + rotZ: 179.9842 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12336 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 2. + GMNotes: '' + GUID: a88055 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Gate + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 98.73678 + posY: 1.54851508 + posZ: -2.68779778 + rotX: 359.9887 + rotY: 270.006531 + rotZ: 179.9973 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12335 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 2. + GMNotes: '' + GUID: 5499a4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Dilemma + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 98.7584839 + posY: 1.5388515 + posZ: -2.707048 + rotX: 359.988281 + rotY: 270.0026 + rotZ: 179.990143 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12334 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 1. Act 2. + GMNotes: '' + GUID: 9dc445 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Vent + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 98.95438 + posY: 1.52918565 + posZ: -2.82507038 + rotX: 359.9895 + rotY: 270.0 + rotZ: 179.989777 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12333 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 1. Act 2. + GMNotes: '' + GUID: f5b434 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Rift + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 98.6777 + posY: 1.57180309 + posZ: -2.715079 + rotX: 359.990265 + rotY: 269.9951 + rotZ: 179.9893 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12332 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 1. + GMNotes: '' + GUID: 2b4513 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Arcane Runes + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 98.76241 + posY: 1.523138 + posZ: -2.6991787 + rotX: 359.9934 + rotY: 270.0078 + rotZ: 178.051361 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12321 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Prison. + GMNotes: '' + GUID: '803008' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Chamber of Night + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 98.33681 + posY: 1.56063759 + posZ: -3.0196023 + rotX: 359.984344 + rotY: 270.023132 + rotZ: 179.973663 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12319 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Prison. + GMNotes: '' + GUID: 6a0757 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Chamber of Sorrows + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 98.94531 + posY: 1.55770373 + posZ: -2.63683271 + rotX: 359.991547 + rotY: 269.999817 + rotZ: 179.975052 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12313 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 3 + GMNotes: '' + GUID: 53cf0a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: 'The Escape ' + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 98.78235 + posY: 1.55985987 + posZ: -2.993358 + rotX: 359.9851 + rotY: 269.6358 + rotZ: 179.991882 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12308 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 1 + GMNotes: '' + GUID: 33dafa + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Levers (Group C) + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 98.82 + posY: 1.56699765 + posZ: -2.63886285 + rotX: -0.00221842085 + rotY: 270.0032 + rotZ: 179.981491 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12303 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 2 + GMNotes: '' + GUID: '107633' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Agony and Despair + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 98.41001 + posY: 1.55585825 + posZ: -2.78851652 + rotX: 359.989746 + rotY: 269.357452 + rotZ: 180.01149 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12301 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 1 + GMNotes: '' + GUID: e7d7cc + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Awakening + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 98.54471 + posY: 1.41091537 + posZ: -2.67532849 + rotX: 359.9832 + rotY: 269.992249 + rotZ: 179.992828 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false +DeckIDs: +- 265120 +- 265120 +- 265120 +- 265112 +- 265110 +- 265107 +- 265105 +- 265103 +- 12337 +- 12336 +- 12335 +- 12334 +- 12333 +- 12332 +- 12321 +- 12319 +- 12313 +- 12308 +- 12303 +- 12301 +Description: '' +GMNotes: '' +GUID: 861e9b +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Epic Multiplayer +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 100.744987 + posY: 3.435257 + posZ: 11.5044088 + rotX: 359.987427 + rotY: 269.999969 + rotZ: 359.984528 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag Standalone ce36ec/Bag The Labyrinths of Lunacy be5344/Deck Single Group 048ed9.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag Standalone ce36ec/Bag The Labyrinths of Lunacy be5344/Deck Single Group 048ed9.yaml new file mode 100644 index 000000000..2adde212f --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag Standalone ce36ec/Bag The Labyrinths of Lunacy be5344/Deck Single Group 048ed9.yaml @@ -0,0 +1,609 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 265121 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: '817446' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Paradox Effect + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 90.48285 + posY: 1.40516555 + posZ: 14.9248466 + rotX: 359.987427 + rotY: 270.0 + rotZ: 359.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265121 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: d50777 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Paradox Effect + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 90.6625443 + posY: 1.51327193 + posZ: 14.5725908 + rotX: 359.989868 + rotY: 270.000549 + rotZ: 357.11438 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265121 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: 86ca2a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Paradox Effect + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 90.61438 + posY: 1.56803632 + posZ: 14.68952 + rotX: 359.989746 + rotY: 269.999939 + rotZ: 0.0343201943 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265111 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false + Description: You Are Not Its First Victim, Or Its Last + GMNotes: '' + GUID: '817446' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Eixodolon's Pet + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 90.6282043 + posY: 1.55411279 + posZ: 14.835288 + rotX: 359.989929 + rotY: 270.0 + rotZ: 359.990265 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265108 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false + Description: Item. Script. + GMNotes: '' + GUID: '817446' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Decay Diagram + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 90.90858 + posY: 1.54964912 + posZ: 15.1913452 + rotX: 359.3183 + rotY: 269.996979 + rotZ: 359.223083 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265106 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false + Description: Item. Script. + GMNotes: '' + GUID: bc2822 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Hunger Diagram + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 90.73025 + posY: 1.55469048 + posZ: 15.0612688 + rotX: 359.9903 + rotY: 269.9998 + rotZ: 359.9904 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265104 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false + Description: Item. Script. + GMNotes: '' + GUID: '817446' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Rot Diagram + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 90.64038 + posY: 1.55980515 + posZ: 14.7245054 + rotX: 359.992279 + rotY: 270.001831 + rotZ: 359.9797 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12322 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Prison. + GMNotes: '' + GUID: 38826f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Chamber of Night + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 99.89206 + posY: 1.55854273 + posZ: 2.85692263 + rotX: 0.009751759 + rotY: 269.939667 + rotZ: 179.991425 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12320 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Prison. + GMNotes: '' + GUID: 9f6ed8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Chamber of Sorrows + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 100.135368 + posY: 1.556011 + posZ: 2.64147544 + rotX: 359.980927 + rotY: 269.982147 + rotZ: 179.9789 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12314 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 3 + GMNotes: '' + GUID: bc3569 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: 'The Escape ' + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 100.67614 + posY: 1.55809665 + posZ: 2.30646729 + rotX: 359.985 + rotY: 270.00647 + rotZ: 179.9762 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12309 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 1 + GMNotes: '' + GUID: 9e2b9c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Levers (Group C) + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 100.6905 + posY: 1.57151639 + posZ: 2.76586628 + rotX: 359.989471 + rotY: 269.636536 + rotZ: 179.98761 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12304 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 2 + GMNotes: '' + GUID: 8d52dd + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Agony and Despair + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 100.532288 + posY: 1.55420244 + posZ: 2.90084934 + rotX: 359.97226 + rotY: 270.00354 + rotZ: 179.985092 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12302 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 1 + GMNotes: '' + GUID: bce775 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Awakening + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 100.365784 + posY: 1.4091264 + posZ: 2.72964573 + rotX: 359.9858 + rotY: 269.763947 + rotZ: 179.986725 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false +DeckIDs: +- 265121 +- 265121 +- 265121 +- 265111 +- 265108 +- 265106 +- 265104 +- 12322 +- 12320 +- 12314 +- 12309 +- 12304 +- 12302 +Description: '' +GMNotes: '' +GUID: 048ed9 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Single Group +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 101.984306 + posY: 4.38749933 + posZ: -1.36427116 + rotX: 359.987427 + rotY: 270.000031 + rotZ: 359.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag Standalone ce36ec/Bag The Labyrinths of Lunacy be5344/Deck The Labyrinths of Lunacy 1e86b9.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag Standalone ce36ec/Bag The Labyrinths of Lunacy be5344/Deck The Labyrinths of Lunacy 1e86b9.yaml new file mode 100644 index 000000000..f33e80adb --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag Standalone ce36ec/Bag The Labyrinths of Lunacy be5344/Deck The Labyrinths of Lunacy 1e86b9.yaml @@ -0,0 +1,2071 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 265122 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: 3bf255 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Harvested Pain + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 99.32283 + posY: 1.402891 + posZ: 16.1594715 + rotX: 359.987427 + rotY: 270.0419 + rotZ: 359.984528 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265122 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: 2927c6 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Harvested Pain + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 99.4119644 + posY: 1.50139368 + posZ: 16.1548748 + rotX: 359.98877 + rotY: 269.999573 + rotZ: 357.567535 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265122 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: '817446' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Harvested Pain + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 99.43551 + posY: 1.526434 + posZ: 15.96002 + rotX: 359.986 + rotY: 270.000854 + rotZ: 1.45224845 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265119 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false + Description: Trap. + GMNotes: '' + GUID: '817446' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Blood and Rust + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 88.6678848 + posY: 1.55611813 + posZ: 9.970097 + rotX: 359.9897 + rotY: 269.998932 + rotZ: 0.04547855 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265119 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false + Description: Trap. + GMNotes: '' + GUID: 8b2c36 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Blood and Rust + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 88.437294 + posY: 1.50557923 + posZ: 10.2924681 + rotX: 359.991425 + rotY: 269.999634 + rotZ: 357.5247 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265119 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false + Description: Trap. + GMNotes: '' + GUID: 6fc896 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Blood and Rust + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 88.3853 + posY: 1.556675 + posZ: 10.0119734 + rotX: 359.9889 + rotY: 269.9983 + rotZ: 0.0266411547 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265118 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false + Description: Trap. + GMNotes: '' + GUID: '817446' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dreadful Mechanism + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 88.40202 + posY: 1.51738489 + posZ: 10.3532047 + rotX: 359.990784 + rotY: 270.000977 + rotZ: 357.579376 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265118 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false + Description: Trap. + GMNotes: '' + GUID: 4fa340 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dreadful Mechanism + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 88.3050842 + posY: 1.56658614 + posZ: 10.4130373 + rotX: 0.425195515 + rotY: 270.0003 + rotZ: 359.406342 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265118 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false + Description: Trap. + GMNotes: '' + GUID: 0872f7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dreadful Mechanism + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 88.72666 + posY: 1.52400029 + posZ: 10.4418688 + rotX: 359.500061 + rotY: 269.997375 + rotZ: 359.393829 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265117 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false + Description: Trap. Poison. + GMNotes: '' + GUID: '817446' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Poisonous Gas + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 88.42718 + posY: 1.49226987 + posZ: 9.87393 + rotX: 359.9905 + rotY: 269.988159 + rotZ: 1.84508133 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265117 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false + Description: Trap. Poison. + GMNotes: '' + GUID: 47bd50 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Poisonous Gas + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 88.6328 + posY: 1.49738562 + posZ: 10.44919 + rotX: 359.988739 + rotY: 270.00473 + rotZ: 357.566376 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265117 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false + Description: Trap. Poison. + GMNotes: '' + GUID: '817446' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Poisonous Gas + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 88.67652 + posY: 1.55425286 + posZ: 10.342 + rotX: 359.727173 + rotY: 269.998 + rotZ: 359.719025 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265116 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false + Description: Injury. Poison. + GMNotes: '' + GUID: bf90c6 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Unnatural Weariness + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 88.38768 + posY: 1.51428568 + posZ: 10.3398466 + rotX: 359.99115 + rotY: 270.00116 + rotZ: 357.4586 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265116 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false + Description: Injury. Poison. + GMNotes: '' + GUID: '817446' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Unnatural Weariness + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 88.1717453 + posY: 1.53512383 + posZ: 10.0539761 + rotX: 359.987823 + rotY: 270.000458 + rotZ: 357.402222 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265116 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false + Description: Injury. Poison. + GMNotes: '' + GUID: 24e15d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Unnatural Weariness + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 88.30184 + posY: 1.537315 + posZ: 9.96665 + rotX: 359.991425 + rotY: 269.9994 + rotZ: 2.355699 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265115 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false + Description: Monster. Mi-Go. + GMNotes: '' + GUID: '817446' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Mi-Go Guard + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 88.4297562 + posY: 1.55438137 + posZ: 9.913128 + rotX: 359.987823 + rotY: 270.002563 + rotZ: 357.122559 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265115 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false + Description: Monster. Mi-Go. + GMNotes: '' + GUID: '817446' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Mi-Go Guard + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 88.4773 + posY: 1.55658591 + posZ: 10.076251 + rotX: 359.991028 + rotY: 269.998627 + rotZ: 2.35404778 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265115 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false + Description: Monster. Mi-Go. + GMNotes: '' + GUID: 774f5f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Mi-Go Guard + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 88.5140152 + posY: 1.56959558 + posZ: 10.3835783 + rotX: 359.9919 + rotY: 269.999939 + rotZ: 2.67816639 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265114 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false + Description: Humanoid. Extradimensional. + GMNotes: '' + GUID: '817446' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Tortured Victim + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 88.9503 + posY: 1.57413626 + posZ: 10.09736 + rotX: 359.989166 + rotY: 269.996277 + rotZ: 357.167572 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265114 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false + Description: Humanoid. Extradimensional. + GMNotes: '' + GUID: d18a7d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Tortured Victim + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 88.47839 + posY: 1.6045388 + posZ: 9.786497 + rotX: 359.988434 + rotY: 269.9994 + rotZ: 357.435883 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265114 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false + Description: Humanoid. Extradimensional. + GMNotes: '' + GUID: 7a1943 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Tortured Victim + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 88.448555 + posY: 1.64191353 + posZ: 9.830718 + rotX: 0.5032236 + rotY: 270.002045 + rotZ: 0.777747452 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265113 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false + Description: Monster. Nightgaunt. + GMNotes: '' + GUID: '817446' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Faceless Abductor + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 88.34541 + posY: 1.60692322 + posZ: 10.2378683 + rotX: 359.987549 + rotY: 270.000061 + rotZ: 357.5747 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265113 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false + Description: Monster. Nightgaunt. + GMNotes: '' + GUID: '598744' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Faceless Abductor + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 88.9375458 + posY: 1.65815985 + posZ: 10.5592318 + rotX: 359.166229 + rotY: 270.005554 + rotZ: 358.878784 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265109 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false + Description: Your Anguish Is My Power + GMNotes: '' + GUID: '817446' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Eixodolon + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 88.451004 + posY: 1.67007339 + posZ: 10.45468 + rotX: 359.988678 + rotY: 269.994 + rotZ: -0.00473123277 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265102 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false + Description: Item. + GMNotes: '' + GUID: '817446' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Mysterious Syringe + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 88.489296 + posY: 1.67975593 + posZ: 10.4796286 + rotX: 359.989929 + rotY: 270.0 + rotZ: 359.990234 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265101 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false + Description: Item. Key. + GMNotes: '' + GUID: 7399a5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Key of Mysteries + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 88.51992 + posY: 1.68945372 + posZ: 10.2128325 + rotX: 359.989868 + rotY: 269.999573 + rotZ: 0.00600650348 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265100 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false + Description: Item. Script. + GMNotes: '' + GUID: '817446' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Eixodolon's Note + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 88.6720657 + posY: 1.69802022 + posZ: 9.951589 + rotX: 359.4877 + rotY: 270.000854 + rotZ: 0.6203125 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12331 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Distortion. + GMNotes: '' + GUID: 774c0b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Abandoned Warehouse + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 100.48996 + posY: 1.63266683 + posZ: 6.37992144 + rotX: 359.986328 + rotY: 270.0002 + rotZ: 179.985291 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12330 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 8d4c1e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Chamber of Poison + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 100.078484 + posY: 1.62305188 + posZ: 6.48226738 + rotX: 359.9845 + rotY: 269.999847 + rotZ: 179.982132 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12329 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Distortion. + GMNotes: '' + GUID: 76a7f5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Chamber of Rot + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 99.76724 + posY: 1.61343181 + posZ: 6.50032949 + rotX: 359.986267 + rotY: 270.000275 + rotZ: 179.986191 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12328 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Distortion. + GMNotes: '' + GUID: '839314' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Chamber of Decay + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 99.9974442 + posY: 1.60361958 + posZ: 6.586125 + rotX: 0.00125000137 + rotY: 270.0266 + rotZ: 179.955963 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12327 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Distortion. + GMNotes: '' + GUID: '945939' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Chamber of Hunger + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 100.382927 + posY: 1.59397435 + posZ: 6.80578661 + rotX: -0.0009645224 + rotY: 270.0443 + rotZ: 179.956192 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12326 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: '323435' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Labyrinthine Halls + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 100.535454 + posY: 1.58424151 + posZ: 6.919748 + rotX: 359.9868 + rotY: 270.0008 + rotZ: 179.984344 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12325 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 5eb4c2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Labyrinthine Halls + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 100.359077 + posY: 1.57461894 + posZ: 6.864118 + rotX: 359.987823 + rotY: 269.991577 + rotZ: 179.990234 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12324 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: d13692 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Labyrinthine Halls + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 99.87181 + posY: 1.56502271 + posZ: 6.82675076 + rotX: 359.987579 + rotY: 270.001038 + rotZ: 179.984909 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12323 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Distortion. + GMNotes: '' + GUID: 6c7570 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Chamber of Regret + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 100.43499 + posY: 1.5554446 + posZ: 6.49104261 + rotX: 359.979218 + rotY: 270.031 + rotZ: 179.971375 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12318 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Distortion. + GMNotes: '' + GUID: aa6ad6 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Chamber of Rain + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 100.504578 + posY: 1.54566336 + posZ: 6.43128538 + rotX: 359.9879 + rotY: 269.995575 + rotZ: 179.981628 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12317 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Prison. Distortion. + GMNotes: '' + GUID: 2ce8bf + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Chamber of Secrets + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 100.286957 + posY: 1.536049 + posZ: 6.683697 + rotX: 359.986359 + rotY: 269.999451 + rotZ: 179.985687 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12316 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Prison. Distortion. + GMNotes: '' + GUID: 8fcb18 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Chamber of Secrets + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 99.51592 + posY: 1.52652788 + posZ: 6.33180857 + rotX: 359.987946 + rotY: 269.996643 + rotZ: 179.9918 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12315 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Prison. Distortion. + GMNotes: '' + GUID: f97fe2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Chamber of Secrets + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 100.14653 + posY: 1.56891561 + posZ: 6.36913061 + rotX: 359.9893 + rotY: 270.000427 + rotZ: 179.987961 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12312 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 2 + GMNotes: '' + GUID: 119a43 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Pet (Group C) + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 100.485634 + posY: 1.562698 + posZ: 6.19782 + rotX: 359.988159 + rotY: 270.059937 + rotZ: 179.950546 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12311 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 2 + GMNotes: '' + GUID: 2c450f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Seeping Death (Group B) + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 100.577538 + posY: 1.55699158 + posZ: 6.727262 + rotX: 359.988281 + rotY: 269.814667 + rotZ: 179.980927 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12310 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 2 + GMNotes: '' + GUID: 7d3634 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Distortions in Time (Group A) + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 100.902512 + posY: 1.554574 + posZ: 6.49083328 + rotX: 359.979736 + rotY: 269.8819 + rotZ: 179.977264 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12307 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 1 + GMNotes: '' + GUID: 02cc53 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Watery Grave (Group B) + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 100.615868 + posY: 1.55684555 + posZ: 6.52208328 + rotX: 359.9766 + rotY: 269.683716 + rotZ: 179.978638 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12306 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 1 + GMNotes: '' + GUID: ae9723 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Sealed In (Group A) + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 100.79303 + posY: 1.5612396 + posZ: 6.16108274 + rotX: 0.0184825882 + rotY: 180.356384 + rotZ: 180.019638 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12305 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 3 + GMNotes: '' + GUID: c30682 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Mastermind + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 100.221909 + posY: 1.55294347 + posZ: 6.618331 + rotX: 359.989868 + rotY: 270.923767 + rotZ: 179.990829 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12300 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: The Labyrinths of Lunacy + GMNotes: '' + GUID: c69095 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Scenario + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 100.454636 + posY: 1.40791023 + posZ: 6.72080755 + rotX: 359.982483 + rotY: 270.011444 + rotZ: 179.984741 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false +DeckIDs: +- 265122 +- 265122 +- 265122 +- 265119 +- 265119 +- 265119 +- 265118 +- 265118 +- 265118 +- 265117 +- 265117 +- 265117 +- 265116 +- 265116 +- 265116 +- 265115 +- 265115 +- 265115 +- 265114 +- 265114 +- 265114 +- 265113 +- 265113 +- 265109 +- 265102 +- 265101 +- 265100 +- 12331 +- 12330 +- 12329 +- 12328 +- 12327 +- 12326 +- 12325 +- 12324 +- 12323 +- 12318 +- 12317 +- 12316 +- 12315 +- 12312 +- 12311 +- 12310 +- 12307 +- 12306 +- 12305 +- 12300 +Description: '' +GMNotes: '' +GUID: 1e86b9 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: The Labyrinths of Lunacy +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 100.842957 + posY: 2.569472 + posZ: -3.93909955 + rotX: 359.987427 + rotY: 270.032318 + rotZ: 359.984528 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Circle Undone 9f8184.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Circle Undone 9f8184.yaml new file mode 100644 index 000000000..edeb68bc9 --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Circle Undone 9f8184.yaml @@ -0,0 +1,57 @@ +Autoraise: true +ColorDiffuse: + b: 0.0 + g: 0.366520882 + r: 0.7058823 +ContainedObjects: +- !include 'Bag The Circle Undone 9f8184/Deck Before the Black Throne 2e9daf.yaml' +- !include 'Bag The Circle Undone 9f8184/Deck Wages of Sin a49618.yaml' +- !include 'Bag The Circle Undone 9f8184/Deck The Secret Name 8ee597.yaml' +- !include 'Bag The Circle Undone 9f8184/Deck Silver Twilight Lodge 747a12.yaml' +- !include 'Bag The Circle Undone 9f8184/Deck Witchcraft b228e7.yaml' +- !include 'Bag The Circle Undone 9f8184/Deck Spectral Predators 842b8d.yaml' +- !include 'Bag The Circle Undone 9f8184/Deck City of Sins 118828.yaml' +- !include 'Bag The Circle Undone 9f8184/Deck Realm of Death 8ee597.yaml' +- !include 'Bag The Circle Undone 9f8184/Deck Inexorable Fate 308386.yaml' +- !include 'Bag The Circle Undone 9f8184/Deck Trapped Spirits 1829fa.yaml' +- !include "Bag The Circle Undone 9f8184/Deck Anette\u2019s Coven bd372e.yaml" +- !include 'Bag The Circle Undone 9f8184/Deck The Watcher 28374b.yaml' +- !include 'Bag The Circle Undone 9f8184/Deck Agents of Azathoth a04ba2.yaml' +- !include 'Bag The Circle Undone 9f8184/Deck At Death''s Doorstep 5fa970.yaml' +- !include 'Bag The Circle Undone 9f8184/Deck The Witching Hour 8f6174.yaml' +- !include 'Bag The Circle Undone 9f8184/Deck Disappearance at the Twilight Estate + 2db0b7.yaml' +- !include 'Bag The Circle Undone 9f8184/Deck Union and Disillusion 44852b.yaml' +- !include 'Bag The Circle Undone 9f8184/Deck For the Greater Good 5d33f2.yaml' +- !include 'Bag The Circle Undone 9f8184/Deck Secrets of the Universe d427d3.yaml' +- !include 'Bag The Circle Undone 9f8184/Deck Music of the Damned b97715.yaml' +- !include 'Bag The Circle Undone 9f8184/Deck In the Clutches of Chaos 4db724.yaml' +Description: '' +GMNotes: '' +GUID: 9f8184 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +MeshIndex: -1 +Name: Bag +Nickname: The Circle Undone +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -53.3423843 + posY: 1.78683555 + posZ: -113.116669 + rotX: 359.983246 + rotY: -0.000163928591 + rotZ: 0.02081966 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Circle Undone 9f8184/Deck Agents of Azathoth a04ba2.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Circle Undone 9f8184/Deck Agents of Azathoth a04ba2.yaml new file mode 100644 index 000000000..2ad2dc809 --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Circle Undone 9f8184/Deck Agents of Azathoth a04ba2.yaml @@ -0,0 +1,215 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 231804 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Power. Terror. + GMNotes: '' + GUID: 397fce + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Daemonic Piping + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -29.403286 + posY: 1.77933121 + posZ: -35.6114159 + rotX: 359.909668 + rotY: 269.9743 + rotZ: 0.0608307645 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231804 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Power. Terror. + GMNotes: '' + GUID: f84e0e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Daemonic Piping + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -29.3314133 + posY: 1.583834 + posZ: -34.59758 + rotX: 359.916046 + rotY: 269.966034 + rotZ: 0.0159121323 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231804 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Power. Terror. + GMNotes: '' + GUID: f79968 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Daemonic Piping + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -29.2182922 + posY: 1.63309085 + posZ: -35.4018936 + rotX: 359.915253 + rotY: 269.9727 + rotZ: 0.0569894649 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231803 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Elite. + GMNotes: '' + GUID: 092d86 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Piper of Azatoth + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -29.0438728 + posY: 1.72789907 + posZ: -35.56541 + rotX: 359.890228 + rotY: 269.998352 + rotZ: 0.03636023 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 231804 +- 231804 +- 231804 +- 231803 +Description: '' +GMNotes: '' +GUID: a04ba2 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Agents of Azathoth +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -17.5034943 + posY: 2.40859127 + posZ: -96.19576 + rotX: 359.920135 + rotY: 269.973358 + rotZ: 0.0169027168 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Circle Undone 9f8184/Deck Anette’s Coven bd372e.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Circle Undone 9f8184/Deck Anette’s Coven bd372e.yaml new file mode 100644 index 000000000..ccbac2a06 --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Circle Undone 9f8184/Deck Anette’s Coven bd372e.yaml @@ -0,0 +1,215 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 231806 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Witch. + GMNotes: '' + GUID: 326f11 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Priestess of the Coven + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -25.8414345 + posY: 1.57860494 + posZ: -36.132618 + rotX: 359.919647 + rotY: 269.974 + rotZ: 0.0165877342 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231805 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Witch. + GMNotes: '' + GUID: c35966 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Coven Initiate + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -25.6442871 + posY: 1.72278082 + posZ: -36.0347443 + rotX: 359.911224 + rotY: 269.974 + rotZ: 0.0136959022 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231805 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Witch. + GMNotes: '' + GUID: 6f2c2e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Coven Initiate + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -25.7267475 + posY: 1.74028778 + posZ: -36.1106224 + rotX: 359.918823 + rotY: 269.9739 + rotZ: 0.0168967526 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231805 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Witch. + GMNotes: '' + GUID: 367d03 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Coven Initiate + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -26.0635834 + posY: 1.72707784 + posZ: -35.83386 + rotX: 359.920868 + rotY: 269.973969 + rotZ: 0.0147350542 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 231806 +- 231805 +- 231805 +- 231805 +Description: '' +GMNotes: '' +GUID: bd372e +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: "Anette\u2019s Coven" +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -17.4222412 + posY: 2.40660071 + posZ: -102.57045 + rotX: 359.920135 + rotY: 269.974731 + rotZ: 0.016899677 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Circle Undone 9f8184/Deck At Death's Doorstep 5fa970.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Circle Undone 9f8184/Deck At Death's Doorstep 5fa970.yaml new file mode 100644 index 000000000..59f282813 --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Circle Undone 9f8184/Deck At Death's Doorstep 5fa970.yaml @@ -0,0 +1,960 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 232019 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/829135524526797029/1F8A6C29028AED32DB44E4CF22E3120C417F413D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526785922/F34A644AC467C751B6D7B8AF398B8FDB07CCF6A0/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 3 + GMNotes: '' + GUID: 46cad7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Escape the Cage + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -11.4857731 + posY: 1.56819141 + posZ: -3.38877225 + rotX: 0.0138850389 + rotY: 180.002533 + rotZ: 0.076025866 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232018 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/829135524526797029/1F8A6C29028AED32DB44E4CF22E3120C417F413D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526785922/F34A644AC467C751B6D7B8AF398B8FDB07CCF6A0/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 2 + GMNotes: '' + GUID: d862a5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Spectral Realm + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -8.56042 + posY: 1.56400037 + posZ: -3.68023252 + rotX: 0.011601598 + rotY: 179.996872 + rotZ: 0.07883525 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232017 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/829135524526797029/1F8A6C29028AED32DB44E4CF22E3120C417F413D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526785922/F34A644AC467C751B6D7B8AF398B8FDB07CCF6A0/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 1 + GMNotes: '' + GUID: ba8956 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Hidden Agendas + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -8.573303 + posY: 1.70431888 + posZ: -3.6430676 + rotX: 0.0150601817 + rotY: 179.9911 + rotZ: 0.06978336 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232016 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/829135524526797029/1F8A6C29028AED32DB44E4CF22E3120C417F413D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526785922/F34A644AC467C751B6D7B8AF398B8FDB07CCF6A0/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 2 + GMNotes: '' + GUID: 6ef9c4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Over the Threshold + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -8.034527 + posY: 1.56463933 + posZ: 0.973494232 + rotX: 0.01332518 + rotY: 179.999924 + rotZ: 0.07871701 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232015 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/829135524526797029/1F8A6C29028AED32DB44E4CF22E3120C417F413D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526785922/F34A644AC467C751B6D7B8AF398B8FDB07CCF6A0/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 1 + GMNotes: '' + GUID: 6480fa + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: "JUSTICE \xB7 XI" + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -7.961774 + posY: 1.70493853 + posZ: 1.22841024 + rotX: 0.014674738 + rotY: 180.000473 + rotZ: 0.08592357 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231914 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/829135524527100186/0D63305581E65C95F286CCA4902B7DE796D815BD/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524527103742/0C4DB40889420CFE47BE897944621ABF2ECA52F9/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Spectral. + GMNotes: '' + GUID: 7cb46b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Entry Hall + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -27.5323257 + posY: 1.7502445 + posZ: 19.34482 + rotX: 359.9189 + rotY: 270.013733 + rotZ: 180.039429 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231915 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/829135524527100186/0D63305581E65C95F286CCA4902B7DE796D815BD/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524527103742/0C4DB40889420CFE47BE897944621ABF2ECA52F9/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Spectral. + GMNotes: '' + GUID: 94ef8e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Victorian Halls + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -27.79786 + posY: 1.74700141 + posZ: 19.6243057 + rotX: 359.936127 + rotY: 270.008484 + rotZ: 180.025238 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231920 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/829135524527100186/0D63305581E65C95F286CCA4902B7DE796D815BD/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524527103742/0C4DB40889420CFE47BE897944621ABF2ECA52F9/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Spectral. + GMNotes: '' + GUID: 060886 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Office + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -27.7123032 + posY: 1.74365962 + posZ: 19.3070164 + rotX: 359.935 + rotY: 269.9662 + rotZ: 180.036911 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231916 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/829135524527100186/0D63305581E65C95F286CCA4902B7DE796D815BD/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524527103742/0C4DB40889420CFE47BE897944621ABF2ECA52F9/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Spectral. + GMNotes: '' + GUID: f5616e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Trophy Room + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -27.7752647 + posY: 1.74517131 + posZ: 19.2720356 + rotX: 359.9348 + rotY: 270.000366 + rotZ: 180.0153 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231918 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/829135524527100186/0D63305581E65C95F286CCA4902B7DE796D815BD/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524527103742/0C4DB40889420CFE47BE897944621ABF2ECA52F9/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Spectral. + GMNotes: '' + GUID: 327f3b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Master Bedroom + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -27.8623734 + posY: 1.75889993 + posZ: 19.7514343 + rotX: 359.934967 + rotY: 269.999817 + rotZ: 180.010712 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231919 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/829135524527100186/0D63305581E65C95F286CCA4902B7DE796D815BD/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524527103742/0C4DB40889420CFE47BE897944621ABF2ECA52F9/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Spectral. + GMNotes: '' + GUID: 3b69ae + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Balcony + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -27.789278 + posY: 1.74091721 + posZ: 19.691267 + rotX: 359.935852 + rotY: 269.9985 + rotZ: 180.00705 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231917 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/829135524527100186/0D63305581E65C95F286CCA4902B7DE796D815BD/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524527103742/0C4DB40889420CFE47BE897944621ABF2ECA52F9/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Spectral. + GMNotes: '' + GUID: 349eb6 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Billiards Room + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -27.733387 + posY: 1.60028911 + posZ: 19.3837776 + rotX: 359.9141 + rotY: 270.001953 + rotZ: 180.017685 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231910 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/829135524527100186/0D63305581E65C95F286CCA4902B7DE796D815BD/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524527103742/0C4DB40889420CFE47BE897944621ABF2ECA52F9/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 33990b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Billiards Room + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.16730571 + posY: 1.55932 + posZ: -3.87546468 + rotX: 359.920135 + rotY: 270.0 + rotZ: 180.016876 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231909 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/829135524527100186/0D63305581E65C95F286CCA4902B7DE796D815BD/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524527103742/0C4DB40889420CFE47BE897944621ABF2ECA52F9/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: e9160a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Trophy Room + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.10900927 + posY: 1.558414 + posZ: -6.676711 + rotX: 359.920135 + rotY: 269.999969 + rotZ: 180.016876 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231913 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/829135524527100186/0D63305581E65C95F286CCA4902B7DE796D815BD/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524527103742/0C4DB40889420CFE47BE897944621ABF2ECA52F9/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: a1bd9a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Office + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.20846081 + posY: 1.55777359 + posZ: -9.322394 + rotX: 359.920135 + rotY: 270.000061 + rotZ: 180.016861 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231911 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/829135524527100186/0D63305581E65C95F286CCA4902B7DE796D815BD/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524527103742/0C4DB40889420CFE47BE897944621ABF2ECA52F9/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: e0ffe2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Master Bedroom + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.92726517 + posY: 1.55494463 + posZ: -17.5981331 + rotX: 359.920135 + rotY: 270.000061 + rotZ: 180.016876 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231912 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/829135524527100186/0D63305581E65C95F286CCA4902B7DE796D815BD/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524527103742/0C4DB40889420CFE47BE897944621ABF2ECA52F9/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 1b5483 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Balcony + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.038863 + posY: 1.55420625 + posZ: -20.6336861 + rotX: 359.920135 + rotY: 270.0 + rotZ: 180.016861 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231908 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/829135524527100186/0D63305581E65C95F286CCA4902B7DE796D815BD/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524527103742/0C4DB40889420CFE47BE897944621ABF2ECA52F9/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 0699e7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Victorian Halls + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.09524035 + posY: 1.55597937 + posZ: -14.8797626 + rotX: 359.920135 + rotY: 270.000031 + rotZ: 180.016861 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231907 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/829135524527100186/0D63305581E65C95F286CCA4902B7DE796D815BD/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524527103742/0C4DB40889420CFE47BE897944621ABF2ECA52F9/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: d7fb9d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Entry Hall + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.11997724 + posY: 1.55684638 + posZ: -12.0520144 + rotX: 359.920135 + rotY: 270.0 + rotZ: 180.016876 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231921 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/829135524527100186/0D63305581E65C95F286CCA4902B7DE796D815BD/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524527103742/0C4DB40889420CFE47BE897944621ABF2ECA52F9/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Lodge Host + GMNotes: '' + GUID: ffedcd + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Josef Meiger + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -41.8291626 + posY: 1.83914125 + posZ: 25.7407932 + rotX: 359.978424 + rotY: 359.9738 + rotZ: 359.8994 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231714 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2317': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/829135524526797029/1F8A6C29028AED32DB44E4CF22E3120C417F413D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526785922/F34A644AC467C751B6D7B8AF398B8FDB07CCF6A0/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: At Death's Doorstep + GMNotes: '' + GUID: c24b98 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Scenario + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -41.7764435 + posY: 1.86279666 + posZ: 26.28397 + rotX: 0.0106842015 + rotY: 180.045715 + rotZ: 359.357361 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2317': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/829135524526797029/1F8A6C29028AED32DB44E4CF22E3120C417F413D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526785922/F34A644AC467C751B6D7B8AF398B8FDB07CCF6A0/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/829135524527100186/0D63305581E65C95F286CCA4902B7DE796D815BD/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524527103742/0C4DB40889420CFE47BE897944621ABF2ECA52F9/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/829135524526797029/1F8A6C29028AED32DB44E4CF22E3120C417F413D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526785922/F34A644AC467C751B6D7B8AF398B8FDB07CCF6A0/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 232019 +- 232018 +- 232017 +- 232016 +- 232015 +- 231914 +- 231915 +- 231920 +- 231916 +- 231918 +- 231919 +- 231917 +- 231910 +- 231909 +- 231913 +- 231911 +- 231912 +- 231908 +- 231907 +- 231921 +- 231714 +Description: '' +GMNotes: '' +GUID: 5fa970 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: At Death's Doorstep +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -6.16867638 + posY: 2.537902 + posZ: -63.2047348 + rotX: 3.69044852 + rotY: 90.00208 + rotZ: 179.979889 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Circle Undone 9f8184/Deck Before the Black Throne 2e9daf.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Circle Undone 9f8184/Deck Before the Black Throne 2e9daf.yaml new file mode 100644 index 000000000..3a42d3941 --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Circle Undone 9f8184/Deck Before the Black Throne 2e9daf.yaml @@ -0,0 +1,1612 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 369134 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3691': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784110538844118232/E948D384460BD0291E7DC53C315709CF0E1321FE/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. + GMNotes: '' + GUID: '892799' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Mindless Dancer + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 55.7649727 + posY: 1.35772479 + posZ: 54.4494629 + rotX: 0.0240643341 + rotY: 269.995483 + rotZ: 0.0147682913 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 369134 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3691': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784110538844118232/E948D384460BD0291E7DC53C315709CF0E1321FE/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. + GMNotes: '' + GUID: 97fa36 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Mindless Dancer + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 55.76392 + posY: 1.50302625 + posZ: 54.2529335 + rotX: 0.0225719418 + rotY: 269.99823 + rotZ: -0.004419199 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 369134 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3691': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784110538844118232/E948D384460BD0291E7DC53C315709CF0E1321FE/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. + GMNotes: '' + GUID: '892799' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Mindless Dancer + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 55.6328239 + posY: 1.52139771 + posZ: 54.0215874 + rotX: 0.0164259039 + rotY: 269.999146 + rotZ: 359.863953 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 369133 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3691': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784110538844118232/E948D384460BD0291E7DC53C315709CF0E1321FE/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Power. + GMNotes: '' + GUID: 99b040 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ultimate Chaos + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 55.6219254 + posY: 1.50829244 + posZ: 54.0951 + rotX: 0.0164285135 + rotY: 269.998932 + rotZ: 359.82196 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 369133 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3691': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784110538844118232/E948D384460BD0291E7DC53C315709CF0E1321FE/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Power. + GMNotes: '' + GUID: 99b040 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ultimate Chaos + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 55.75027 + posY: 1.50476277 + posZ: 54.2039032 + rotX: 0.01635511 + rotY: 269.999939 + rotZ: 0.00598526048 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 369133 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3691': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784110538844118232/E948D384460BD0291E7DC53C315709CF0E1321FE/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Power. + GMNotes: '' + GUID: 99b040 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ultimate Chaos + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 55.8034248 + posY: 1.50742614 + posZ: 54.327652 + rotX: 0.0186620355 + rotY: 270.000061 + rotZ: 0.00488334568 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 369132 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3691': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784110538844118232/E948D384460BD0291E7DC53C315709CF0E1321FE/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Pact. + GMNotes: '' + GUID: bec23e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Whispered Bargain + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 55.880024 + posY: 1.512412 + posZ: 54.26025 + rotX: 0.01700168 + rotY: 269.984344 + rotZ: 0.0157538839 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 369132 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3691': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784110538844118232/E948D384460BD0291E7DC53C315709CF0E1321FE/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Pact. + GMNotes: '' + GUID: bec23e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Whispered Bargain + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 55.90391 + posY: 1.51880872 + posZ: 54.44301 + rotX: 0.0144573078 + rotY: 269.999634 + rotZ: 0.00689787464 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 369131 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3691': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784110538844118232/E948D384460BD0291E7DC53C315709CF0E1321FE/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Endtimes. + GMNotes: '' + GUID: f8cfe7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The End is Nigh! + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 55.7872963 + posY: 1.4761337 + posZ: 54.275 + rotX: 0.0100919316 + rotY: 269.994934 + rotZ: 0.01504092 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 369131 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3691': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784110538844118232/E948D384460BD0291E7DC53C315709CF0E1321FE/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Endtimes. + GMNotes: '' + GUID: f8cfe7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The End is Nigh! + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 55.597084 + posY: 1.48583925 + posZ: 54.3220558 + rotX: 0.0166386217 + rotY: 269.999939 + rotZ: 0.00604534475 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 369130 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3691': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784110538844118232/E948D384460BD0291E7DC53C315709CF0E1321FE/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Endtimes. + GMNotes: '' + GUID: a7dd13 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: A World in Darkness + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 55.8115959 + posY: 1.49554515 + posZ: 54.3747978 + rotX: 0.0185465831 + rotY: 270.000061 + rotZ: 0.004932899 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 369130 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3691': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784110538844118232/E948D384460BD0291E7DC53C315709CF0E1321FE/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Endtimes. + GMNotes: '' + GUID: a7dd13 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: A World in Darkness + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 55.3465347 + posY: 1.504924 + posZ: 54.2218666 + rotX: 0.0214518253 + rotY: 269.999878 + rotZ: 0.0151799172 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 369129 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3691': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784110538844118232/E948D384460BD0291E7DC53C315709CF0E1321FE/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: The Primal Chaos + GMNotes: '' + GUID: c2cc36 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Azathoth + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 55.7413025 + posY: 1.514946 + posZ: 54.3246346 + rotX: 0.0101543441 + rotY: 270.004639 + rotZ: 359.9939 + 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: + '3688': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/784110538844100123/A9A0ACCD9ADB5C20745B6AB314C472ECAB71C300/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784110538844098999/61B68D9375F5BBC2974723215EC6855B5605EFD9/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 3 + GMNotes: '' + GUID: 44760d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: What Must Be Done + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 55.7758942 + posY: 1.52448344 + posZ: 54.28613 + rotX: 0.0111992462 + rotY: 270.023743 + rotZ: -0.00267157541 + 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: + '3688': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/784110538844100123/A9A0ACCD9ADB5C20745B6AB314C472ECAB71C300/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784110538844098999/61B68D9375F5BBC2974723215EC6855B5605EFD9/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 2 + GMNotes: '' + GUID: 263ac1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: In Azathoth's Domain + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 55.7002258 + posY: 1.52772021 + posZ: 54.2939873 + rotX: 0.703406036 + rotY: 270.013184 + rotZ: 1.14805508 + 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: + '3688': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/784110538844100123/A9A0ACCD9ADB5C20745B6AB314C472ECAB71C300/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784110538844098999/61B68D9375F5BBC2974723215EC6855B5605EFD9/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 1 + GMNotes: '' + GUID: c5cae9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Cosmos Beckons + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 55.7843361 + posY: 1.54661012 + posZ: 53.6221657 + rotX: 0.0178567152 + rotY: 270.008453 + rotZ: 359.731 + 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: + '3688': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/784110538844100123/A9A0ACCD9ADB5C20745B6AB314C472ECAB71C300/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784110538844098999/61B68D9375F5BBC2974723215EC6855B5605EFD9/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 3 + GMNotes: '' + GUID: a7d884 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Final Countdown + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 55.64985 + posY: 1.55566931 + posZ: 53.894146 + rotX: 0.0135996137 + rotY: 269.9967 + rotZ: 359.773468 + 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: http://cloud-3.steamusercontent.com/ugc/784110538844100123/A9A0ACCD9ADB5C20745B6AB314C472ECAB71C300/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784110538844098999/61B68D9375F5BBC2974723215EC6855B5605EFD9/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 2 + GMNotes: '' + GUID: d14e41 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: It Awaits + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 55.75655 + posY: 1.56302166 + posZ: 54.0187721 + rotX: 0.01622358 + rotY: 269.9988 + rotZ: 359.989746 + 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: http://cloud-3.steamusercontent.com/ugc/784110538844100123/A9A0ACCD9ADB5C20745B6AB314C472ECAB71C300/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784110538844098999/61B68D9375F5BBC2974723215EC6855B5605EFD9/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 1 + GMNotes: '' + GUID: aac284 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: "WHEEL OF FORTUNE \xB7 X" + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 55.6951637 + posY: 1.58831024 + posZ: 54.0227 + rotX: 0.0134160621 + rotY: 270.000031 + rotZ: 0.029317433 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 369341 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3693': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/784110538844132994/8CD6465D48CC5909C15DF8CC02BB9060F593F1BA/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784110538847624119/AC326B629FA308B7F9C7E41069581A8D2B2D77B4/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Otherworld. + GMNotes: '' + GUID: '435152' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Cosmos + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 55.3892975 + posY: 1.54667473 + posZ: 55.4072571 + rotX: 0.0190973412 + rotY: 269.999756 + rotZ: 180.016785 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 369338 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3693': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/784110538844132994/8CD6465D48CC5909C15DF8CC02BB9060F593F1BA/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784110538847624119/AC326B629FA308B7F9C7E41069581A8D2B2D77B4/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Otherworld. + GMNotes: '' + GUID: 910e54 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Cosmic Ingress + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 55.1443939 + posY: 1.54683411 + posZ: 55.0626259 + rotX: 0.01741842 + rotY: 270.202759 + rotZ: 179.903427 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 369346 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3693': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/784110538844132994/8CD6465D48CC5909C15DF8CC02BB9060F593F1BA/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784110538847624119/AC326B629FA308B7F9C7E41069581A8D2B2D77B4/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Otherworld. + GMNotes: '' + GUID: 1a0ad2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Cosmos + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 55.1833725 + posY: 1.53741515 + posZ: 54.4605637 + rotX: 0.01861476 + rotY: 269.9945 + rotZ: 180.007965 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 369342 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3693': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/784110538844132994/8CD6465D48CC5909C15DF8CC02BB9060F593F1BA/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784110538847624119/AC326B629FA308B7F9C7E41069581A8D2B2D77B4/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Otherworld. + GMNotes: '' + GUID: 4a7eac + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Cosmos + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 54.91648 + posY: 1.52698517 + posZ: 54.4161 + rotX: 0.0194317643 + rotY: 269.999268 + rotZ: 180.008072 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 369342 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3693': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/784110538844132994/8CD6465D48CC5909C15DF8CC02BB9060F593F1BA/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784110538847624119/AC326B629FA308B7F9C7E41069581A8D2B2D77B4/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Otherworld. + GMNotes: '' + GUID: af7186 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Cosmos + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 54.9898148 + posY: 1.51714253 + posZ: 53.9829254 + rotX: 0.0209987853 + rotY: 269.9992 + rotZ: 180.0209 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 369346 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3693': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/784110538844132994/8CD6465D48CC5909C15DF8CC02BB9060F593F1BA/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784110538847624119/AC326B629FA308B7F9C7E41069581A8D2B2D77B4/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Otherworld. + GMNotes: '' + GUID: 4e8ae3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Cosmos + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 54.9197159 + posY: 1.50961339 + posZ: 54.6893425 + rotX: 0.0173120853 + rotY: 270.093719 + rotZ: 179.971344 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 369342 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3693': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/784110538844132994/8CD6465D48CC5909C15DF8CC02BB9060F593F1BA/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784110538847624119/AC326B629FA308B7F9C7E41069581A8D2B2D77B4/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Otherworld. + GMNotes: '' + GUID: 2ec90f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Cosmos + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 54.9997139 + posY: 1.49808276 + posZ: 54.046917 + rotX: 0.0219774768 + rotY: 270.001251 + rotZ: 180.02739 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 369343 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3693': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/784110538844132994/8CD6465D48CC5909C15DF8CC02BB9060F593F1BA/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784110538847624119/AC326B629FA308B7F9C7E41069581A8D2B2D77B4/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Otherworld. + GMNotes: '' + GUID: 3cb235 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Cosmos + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 55.1974258 + posY: 1.48805654 + posZ: 54.42538 + rotX: 0.0196006261 + rotY: 270.0423 + rotZ: 179.995575 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 369343 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3693': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/784110538844132994/8CD6465D48CC5909C15DF8CC02BB9060F593F1BA/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784110538847624119/AC326B629FA308B7F9C7E41069581A8D2B2D77B4/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Otherworld. + GMNotes: '' + GUID: 3cb235 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Cosmos + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 54.96233 + posY: 1.47816658 + posZ: 54.27873 + rotX: 0.0190969612 + rotY: 269.9982 + rotZ: 180.024719 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 369343 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3693': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/784110538844132994/8CD6465D48CC5909C15DF8CC02BB9060F593F1BA/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784110538847624119/AC326B629FA308B7F9C7E41069581A8D2B2D77B4/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Otherworld. + GMNotes: '' + GUID: 3cb235 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Cosmos + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 54.883213 + posY: 1.52081454 + posZ: 54.2339 + rotX: 0.02114875 + rotY: 269.999756 + rotZ: 180.026382 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 369340 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3693': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/784110538844132994/8CD6465D48CC5909C15DF8CC02BB9060F593F1BA/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784110538847624119/AC326B629FA308B7F9C7E41069581A8D2B2D77B4/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Otherworld. + GMNotes: '' + GUID: a89dbf + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Cosmos + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 54.99011 + posY: 1.51447368 + posZ: 54.06389 + rotX: 0.0212544538 + rotY: 270.000671 + rotZ: 180.021637 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 369340 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3693': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/784110538844132994/8CD6465D48CC5909C15DF8CC02BB9060F593F1BA/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784110538847624119/AC326B629FA308B7F9C7E41069581A8D2B2D77B4/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Otherworld. + GMNotes: '' + GUID: 30fc53 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Cosmos + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 55.0123634 + posY: 1.50945926 + posZ: 54.2775154 + rotX: 0.0189783126 + rotY: 270.0002 + rotZ: 180.031631 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 369340 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3693': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/784110538844132994/8CD6465D48CC5909C15DF8CC02BB9060F593F1BA/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784110538847624119/AC326B629FA308B7F9C7E41069581A8D2B2D77B4/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Otherworld. + GMNotes: '' + GUID: 8f3e16 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Cosmos + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 54.89479 + posY: 1.50665784 + posZ: 54.13306 + rotX: 0.0196784828 + rotY: 269.9978 + rotZ: 180.021759 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 369344 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3693': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/784110538844132994/8CD6465D48CC5909C15DF8CC02BB9060F593F1BA/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784110538847624119/AC326B629FA308B7F9C7E41069581A8D2B2D77B4/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Otherworld. + GMNotes: '' + GUID: 311eb1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Cosmos + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 55.01243 + posY: 1.508863 + posZ: 54.6538734 + rotX: 0.0251162872 + rotY: 269.996338 + rotZ: 180.023071 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 369345 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3693': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/784110538844132994/8CD6465D48CC5909C15DF8CC02BB9060F593F1BA/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784110538847624119/AC326B629FA308B7F9C7E41069581A8D2B2D77B4/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Otherworld. + GMNotes: '' + GUID: 7a3ece + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Cosmos + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 54.98563 + posY: 1.52261341 + posZ: 54.4702454 + rotX: 0.02512617 + rotY: 270.001373 + rotZ: 180.021988 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 369339 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3693': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/784110538844132994/8CD6465D48CC5909C15DF8CC02BB9060F593F1BA/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784110538847624119/AC326B629FA308B7F9C7E41069581A8D2B2D77B4/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Otherworld. + GMNotes: '' + GUID: a8d84d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Cosmos + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 55.294136 + posY: 1.53427112 + posZ: 55.11425 + rotX: 0.0208954439 + rotY: 269.987762 + rotZ: 359.993469 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 368729 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3687': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/784110538844100123/A9A0ACCD9ADB5C20745B6AB314C472ECAB71C300/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784110538844098999/61B68D9375F5BBC2974723215EC6855B5605EFD9/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Before the Black Throne + GMNotes: '' + GUID: bdb9a3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Scenario + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 55.06524 + posY: 1.73590791 + posZ: 51.63108 + rotX: 0.0207411349 + rotY: 270.0 + rotZ: 0.0162991788 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '3687': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/784110538844100123/A9A0ACCD9ADB5C20745B6AB314C472ECAB71C300/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784110538844098999/61B68D9375F5BBC2974723215EC6855B5605EFD9/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + '3688': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/784110538844100123/A9A0ACCD9ADB5C20745B6AB314C472ECAB71C300/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784110538844098999/61B68D9375F5BBC2974723215EC6855B5605EFD9/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + '3691': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784110538844118232/E948D384460BD0291E7DC53C315709CF0E1321FE/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '3693': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/784110538844132994/8CD6465D48CC5909C15DF8CC02BB9060F593F1BA/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784110538847624119/AC326B629FA308B7F9C7E41069581A8D2B2D77B4/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 369134 +- 369134 +- 369134 +- 369133 +- 369133 +- 369133 +- 369132 +- 369132 +- 369131 +- 369131 +- 369130 +- 369130 +- 369129 +- 368835 +- 368834 +- 368833 +- 368832 +- 368831 +- 368830 +- 369341 +- 369338 +- 369346 +- 369342 +- 369342 +- 369346 +- 369342 +- 369343 +- 369343 +- 369343 +- 369340 +- 369340 +- 369340 +- 369344 +- 369345 +- 369339 +- 368729 +Description: '' +GMNotes: '' +GUID: 2e9daf +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Before the Black Throne +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 52.20029 + posY: 2.467682 + posZ: 44.95245 + rotX: 0.0208130758 + rotY: 270.0006 + rotZ: 0.01676801 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Circle Undone 9f8184/Deck City of Sins 118828.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Circle Undone 9f8184/Deck City of Sins 118828.yaml new file mode 100644 index 000000000..63f055109 --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Circle Undone 9f8184/Deck City of Sins 118828.yaml @@ -0,0 +1,258 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 231814 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Curse. + GMNotes: '' + GUID: 0a13d0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Centuries of Secrets + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -20.54692 + posY: 1.60918021 + posZ: -33.3808479 + rotX: 359.9352 + rotY: 269.982361 + rotZ: 0.376713872 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231814 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Curse. + GMNotes: '' + GUID: 9cb625 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Centuries of Secrets + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -20.7263336 + posY: 1.754926 + posZ: -33.80658 + rotX: 0.0413828529 + rotY: 269.9769 + rotZ: 0.3666429 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231814 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Curse. + GMNotes: '' + GUID: 81dc7a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Centuries of Secrets + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -21.0152721 + posY: 1.57281208 + posZ: -32.7783356 + rotX: 359.9176 + rotY: 269.977783 + rotZ: 0.01638736 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231813 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Curse. + GMNotes: '' + GUID: 976fd8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Evil Past + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -20.7343235 + posY: 1.86165559 + posZ: -33.3503036 + rotX: 359.785339 + rotY: 269.9796 + rotZ: 0.07815084 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231813 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Curse. + GMNotes: '' + GUID: ab69b8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Evil Past + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -20.8834572 + posY: 1.89827907 + posZ: -33.5683937 + rotX: 0.110509835 + rotY: 269.976044 + rotZ: 0.334469885 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 231814 +- 231814 +- 231814 +- 231813 +- 231813 +Description: '' +GMNotes: '' +GUID: '118828' +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: City of Sins +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -16.7765675 + posY: 2.4113524 + posZ: -86.1978 + rotX: 359.920135 + rotY: 269.991425 + rotZ: 0.0168890413 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Circle Undone 9f8184/Deck Disappearance at the Twilight Estate 2db0b7.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Circle Undone 9f8184/Deck Disappearance at the Twilight Estate 2db0b7.yaml new file mode 100644 index 000000000..9d392f496 --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Circle Undone 9f8184/Deck Disappearance at the Twilight Estate 2db0b7.yaml @@ -0,0 +1,351 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 232003 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/829135524526797029/1F8A6C29028AED32DB44E4CF22E3120C417F413D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526785922/F34A644AC467C751B6D7B8AF398B8FDB07CCF6A0/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Private Security + GMNotes: '' + GUID: 8a83e8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Gavriella Mizrah + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -36.15094 + posY: 1.60894179 + posZ: 18.069046 + rotX: 0.0168344155 + rotY: 180.026917 + rotZ: 0.0798925757 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232004 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/829135524526797029/1F8A6C29028AED32DB44E4CF22E3120C417F413D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526785922/F34A644AC467C751B6D7B8AF398B8FDB07CCF6A0/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Josef's Secretary + GMNotes: '' + GUID: d80c14 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Jerome Davids + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -39.07123 + posY: 1.612616 + posZ: 16.7203026 + rotX: 0.01687318 + rotY: 180.000977 + rotZ: 0.0798805356 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232005 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/829135524526797029/1F8A6C29028AED32DB44E4CF22E3120C417F413D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526785922/F34A644AC467C751B6D7B8AF398B8FDB07CCF6A0/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Wealthy Philanthropist + GMNotes: '' + GUID: 41d2da + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Valentino Rivas + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -36.17885 + posY: 1.61008024 + posZ: 21.8027954 + rotX: 0.0168686882 + rotY: 180.003464 + rotZ: 0.07988123 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232006 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/829135524526797029/1F8A6C29028AED32DB44E4CF22E3120C417F413D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526785922/F34A644AC467C751B6D7B8AF398B8FDB07CCF6A0/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Josef's Housekeeper + GMNotes: '' + GUID: 23b99c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Penny White + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -38.7612534 + posY: 1.61350429 + posZ: 21.2049637 + rotX: 0.0169336274 + rotY: 179.957962 + rotZ: 0.0798678547 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232002 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/829135524526797029/1F8A6C29028AED32DB44E4CF22E3120C417F413D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526785922/F34A644AC467C751B6D7B8AF398B8FDB07CCF6A0/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 1 + GMNotes: '' + GUID: f4f8dc + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Disappearance + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -24.5001068 + posY: 1.73046529 + posZ: 2.236709 + rotX: 0.0145257786 + rotY: 179.950882 + rotZ: 0.100596912 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232001 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/829135524526797029/1F8A6C29028AED32DB44E4CF22E3120C417F413D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526785922/F34A644AC467C751B6D7B8AF398B8FDB07CCF6A0/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 1 + GMNotes: '' + GUID: aa1331 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: "JUDGMENT \xB7 XX" + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -24.3399944 + posY: 1.73259759 + posZ: 2.15535021 + rotX: 0.0183508936 + rotY: 179.9983 + rotZ: 0.07494503 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231700 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2317': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/829135524526797029/1F8A6C29028AED32DB44E4CF22E3120C417F413D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526785922/F34A644AC467C751B6D7B8AF398B8FDB07CCF6A0/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Disappearance at the Twilight Estate + GMNotes: '' + GUID: f2806a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Scenario + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -31.0234413 + posY: 1.78575218 + posZ: -3.58893132 + rotX: 359.858 + rotY: 269.990021 + rotZ: 2.24212337 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2317': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/829135524526797029/1F8A6C29028AED32DB44E4CF22E3120C417F413D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526785922/F34A644AC467C751B6D7B8AF398B8FDB07CCF6A0/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/829135524526797029/1F8A6C29028AED32DB44E4CF22E3120C417F413D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526785922/F34A644AC467C751B6D7B8AF398B8FDB07CCF6A0/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 232003 +- 232004 +- 232005 +- 232006 +- 232002 +- 232001 +- 231700 +Description: '' +GMNotes: '' +GUID: 2db0b7 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Disappearance at the Twilight Estate +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 55.5361366 + posY: 3.40351129 + posZ: 71.26395 + rotX: 357.4205 + rotY: 269.9837 + rotZ: 0.4453391 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Circle Undone 9f8184/Deck For the Greater Good 5d33f2.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Circle Undone 9f8184/Deck For the Greater Good 5d33f2.yaml new file mode 100644 index 000000000..f872796e7 --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Circle Undone 9f8184/Deck For the Greater Good 5d33f2.yaml @@ -0,0 +1,1705 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 312907 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3129': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/786356000879760156/63ACD954501B669BBDC2D64FAA3FFAE0BBEDFB7F/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/786356000879759384/E2705454B81312E1DE9058EE2389E6CD0018A169/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Lodge. + GMNotes: '' + GUID: dcf02a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Vault + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 47.8565254 + posY: 1.35770941 + posZ: 54.4001236 + rotX: 0.0208076369 + rotY: 270.0 + rotZ: 180.016769 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 312900 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3129': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/786356000879760156/63ACD954501B669BBDC2D64FAA3FFAE0BBEDFB7F/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/786356000879759384/E2705454B81312E1DE9058EE2389E6CD0018A169/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Lodge. + GMNotes: '' + GUID: 397ce4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Lodge Gates + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 44.1704025 + posY: 1.35722589 + posZ: 57.3216438 + rotX: 0.0208081752 + rotY: 269.999969 + rotZ: 180.016769 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 312902 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3129': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/786356000879760156/63ACD954501B669BBDC2D64FAA3FFAE0BBEDFB7F/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/786356000879759384/E2705454B81312E1DE9058EE2389E6CD0018A169/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Lodge. + GMNotes: '' + GUID: bcd556 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Lobby + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 44.3383942 + posY: 1.35814011 + posZ: 60.23656 + rotX: 0.0208077785 + rotY: 270.0 + rotZ: 180.016769 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 312901 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3129': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/786356000879760156/63ACD954501B669BBDC2D64FAA3FFAE0BBEDFB7F/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/786356000879759384/E2705454B81312E1DE9058EE2389E6CD0018A169/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Lodge. + GMNotes: '' + GUID: fa6a29 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Lodge Gates + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 47.9067345 + posY: 1.35853124 + posZ: 57.1452026 + rotX: 0.0208077468 + rotY: 270.0 + rotZ: 180.016769 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 312912 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3129': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/786356000879760156/63ACD954501B669BBDC2D64FAA3FFAE0BBEDFB7F/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/786356000879759384/E2705454B81312E1DE9058EE2389E6CD0018A169/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Lodge. Sanctum. + GMNotes: '' + GUID: d76c9f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Inner Sanctum + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 44.8671837 + posY: 1.35920513 + posZ: 63.21876 + rotX: 0.0208084639 + rotY: 269.999969 + rotZ: 180.016769 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 312906 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3129': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/786356000879760156/63ACD954501B669BBDC2D64FAA3FFAE0BBEDFB7F/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/786356000879759384/E2705454B81312E1DE9058EE2389E6CD0018A169/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Lodge. + GMNotes: '' + GUID: ccc01a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Lounge + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 51.6296349 + posY: 1.35987246 + posZ: 57.1082077 + rotX: 0.0208076648 + rotY: 270.0 + rotZ: 180.016769 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 312910 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3129': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/786356000879760156/63ACD954501B669BBDC2D64FAA3FFAE0BBEDFB7F/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/786356000879759384/E2705454B81312E1DE9058EE2389E6CD0018A169/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Lodge. Sanctum. + GMNotes: '' + GUID: 112a15 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Sanctum Doorway + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 45.29166 + posY: 1.36022973 + posZ: 66.1924438 + rotX: 0.0208083242 + rotY: 269.999939 + rotZ: 180.016769 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 312905 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3129': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/786356000879760156/63ACD954501B669BBDC2D64FAA3FFAE0BBEDFB7F/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/786356000879759384/E2705454B81312E1DE9058EE2389E6CD0018A169/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Lodge. + GMNotes: '' + GUID: cdae8b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Lodge Cellar + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 51.5968857 + posY: 1.36064363 + posZ: 59.79041 + rotX: 0.0207518432 + rotY: 270.0001 + rotZ: 180.016678 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 312903 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3129': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/786356000879760156/63ACD954501B669BBDC2D64FAA3FFAE0BBEDFB7F/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/786356000879759384/E2705454B81312E1DE9058EE2389E6CD0018A169/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Lodge. + GMNotes: '' + GUID: 1c2dfe + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Lobby + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 48.63603 + posY: 1.43653417 + posZ: 59.54845 + rotX: 2.85350013 + rotY: 269.996643 + rotZ: 180.017471 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 312908 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3129': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/786356000879760156/63ACD954501B669BBDC2D64FAA3FFAE0BBEDFB7F/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/786356000879759384/E2705454B81312E1DE9058EE2389E6CD0018A169/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Lodge. + GMNotes: '' + GUID: 5e3b52 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Library + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 48.1564026 + posY: 1.36036146 + posZ: 63.08827 + rotX: 0.0208082329 + rotY: 269.999969 + rotZ: 180.016769 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 312904 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3129': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/786356000879760156/63ACD954501B669BBDC2D64FAA3FFAE0BBEDFB7F/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/786356000879759384/E2705454B81312E1DE9058EE2389E6CD0018A169/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Lodge. + GMNotes: '' + GUID: 8ea4fd + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Lodge Cellar + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 48.5177 + posY: 1.36154664 + posZ: 66.6888657 + rotX: 0.0208080839 + rotY: 269.999939 + rotZ: 180.016769 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 312911 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3129': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/786356000879760156/63ACD954501B669BBDC2D64FAA3FFAE0BBEDFB7F/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/786356000879759384/E2705454B81312E1DE9058EE2389E6CD0018A169/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Lodge. Sanctum. + GMNotes: '' + GUID: 4da6c3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Sanctum Doorway + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 51.5800171 + posY: 1.36168444 + posZ: 63.3603668 + rotX: 0.0208076444 + rotY: 270.0 + rotZ: 180.016769 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 312909 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3129': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/786356000879760156/63ACD954501B669BBDC2D64FAA3FFAE0BBEDFB7F/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/786356000879759384/E2705454B81312E1DE9058EE2389E6CD0018A169/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Lodge. Sancturm. + GMNotes: '' + GUID: 021478 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Lodge Catacombs + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 51.9578362 + posY: 1.36284578 + posZ: 66.85894 + rotX: 0.0208085142 + rotY: 269.9999 + rotZ: 180.016769 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 312604 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3126': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/786356000879761873/F22612DB451928DCA4344F3F125F5A8CE128A817/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Cultist. Silver Twilight. + GMNotes: '' + GUID: 57cee5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Knight of the Outer Void + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 39.0355949 + posY: 1.35084486 + posZ: 52.51158 + rotX: 0.0234778021 + rotY: 269.955322 + rotZ: -0.0009102802 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 312604 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3126': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/786356000879761873/F22612DB451928DCA4344F3F125F5A8CE128A817/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Cultist. Silver Twilight. + GMNotes: '' + GUID: d43918 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Knight of the Outer Void + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 39.0022621 + posY: 1.50609469 + posZ: 52.89969 + rotX: 0.0598304048 + rotY: 270.009125 + rotZ: 0.342970461 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 312603 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3126': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/786356000879761873/F22612DB451928DCA4344F3F125F5A8CE128A817/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Cultist. Silver Twilight. + GMNotes: '' + GUID: '499347' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Knight of the Inner Circle + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 39.2126579 + posY: 1.3540442 + posZ: 62.3930855 + rotX: 0.0214154385 + rotY: 269.9807 + rotZ: 0.0141904484 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 312603 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3126': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/786356000879761873/F22612DB451928DCA4344F3F125F5A8CE128A817/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Cultist. Silver Twilight. + GMNotes: '' + GUID: 51bd26 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Knight of the Inner Circle + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 38.8971062 + posY: 1.49906588 + posZ: 62.3891029 + rotX: 0.0263424274 + rotY: 269.98053 + rotZ: 5.223194e-05 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 312601 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3126': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/786356000879761873/F22612DB451928DCA4344F3F125F5A8CE128A817/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Cultist. Silver Twilight. + GMNotes: '' + GUID: d47a01 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Cell Keeper + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 35.1583366 + posY: 1.49840617 + posZ: 58.62498 + rotX: 0.0221587084 + rotY: 269.981262 + rotZ: 0.0152097223 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 312600 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3126': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/786356000879761873/F22612DB451928DCA4344F3F125F5A8CE128A817/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Cultist. Silver Twilight. + GMNotes: '' + GUID: 817b5a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Lodge Jailor + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 35.2823524 + posY: 1.50108147 + posZ: 58.3370247 + rotX: 0.0268424749 + rotY: 269.9837 + rotZ: 0.004955252 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 312602 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3126': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/786356000879761873/F22612DB451928DCA4344F3F125F5A8CE128A817/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Silver Twilight. Elite. + GMNotes: '' + GUID: 0f6a54 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Summoned Beast + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 35.15333 + posY: 1.506 + posZ: 58.40247 + rotX: 0.0232514311 + rotY: 269.983124 + rotZ: 0.008076154 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 312407 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3124': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/786356000879758511/CF3D368183597044860CA0BE0FE6A36024904675/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/786356000879757640/1B977B33065106178624452E8B37BC59D06CEC19/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Master of Indoctrination + GMNotes: '' + GUID: 7e2ff5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Nathan Wick + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 35.0746574 + posY: 1.52793145 + posZ: 58.48955 + rotX: 0.0213781819 + rotY: 269.981262 + rotZ: 0.0164458286 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 312605 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3126': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/786356000879761873/F22612DB451928DCA4344F3F125F5A8CE128A817/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Scheme. + GMNotes: '' + GUID: '024771' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Call to Order + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 34.9133835 + posY: 1.35315752 + posZ: 64.6006 + rotX: 0.0209596027 + rotY: 269.981232 + rotZ: 0.0158148948 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 312605 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3126': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/786356000879761873/F22612DB451928DCA4344F3F125F5A8CE128A817/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Scheme. + GMNotes: '' + GUID: 38256e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Call to Order + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 35.06766 + posY: 1.51410151 + posZ: 64.68121 + rotX: 0.023253249 + rotY: 269.981262 + rotZ: 0.0148758916 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 312606 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3126': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/786356000879761873/F22612DB451928DCA4344F3F125F5A8CE128A817/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Scheme. + GMNotes: '' + GUID: b3da23 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Expulsion + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 34.92181 + posY: 1.35406423 + posZ: 67.62116 + rotX: 0.02078857 + rotY: 269.981262 + rotZ: 0.0170785822 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 312606 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3126': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/786356000879761873/F22612DB451928DCA4344F3F125F5A8CE128A817/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Scheme. + GMNotes: '' + GUID: 9aa5ab + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Expulsion + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 35.1211 + posY: 1.51507509 + posZ: 68.0589752 + rotX: 0.0177123118 + rotY: 269.981323 + rotZ: 0.008955666 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 312607 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3126': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/786356000879761873/F22612DB451928DCA4344F3F125F5A8CE128A817/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Scheme. + GMNotes: '' + GUID: abf303 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Beneath the Lodge + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 35.0579872 + posY: 1.35496509 + posZ: 70.6218948 + rotX: 0.0210326537 + rotY: 269.981171 + rotZ: 0.0153134074 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 312607 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3126': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/786356000879761873/F22612DB451928DCA4344F3F125F5A8CE128A817/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Scheme. + GMNotes: '' + GUID: 28d66c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Beneath the Lodge + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 34.93921 + posY: 1.51568758 + posZ: 70.14274 + rotX: 0.0209060367 + rotY: 269.9812 + rotZ: 0.0127279675 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 312608 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3126': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/786356000879761873/F22612DB451928DCA4344F3F125F5A8CE128A817/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Scheme. + GMNotes: '' + GUID: '323982' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Mark of the Order + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 35.1038933 + posY: 1.35573983 + posZ: 73.26771 + rotX: 0.02119793 + rotY: 269.9813 + rotZ: 0.0142221516 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 312608 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3126': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/786356000879761873/F22612DB451928DCA4344F3F125F5A8CE128A817/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Scheme. + GMNotes: '' + GUID: 8cc16b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Mark of the Order + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 35.1185837 + posY: 1.51644886 + posZ: 72.97933 + rotX: 0.0178840477 + rotY: 269.981323 + rotZ: 0.0174572431 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 312303 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/786356000879758511/CF3D368183597044860CA0BE0FE6A36024904675/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/786356000879757640/1B977B33065106178624452E8B37BC59D06CEC19/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 4 + GMNotes: '' + GUID: 0ed938 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Warm Welcome + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 42.6565781 + posY: 1.35516107 + posZ: 61.87361 + rotX: 0.01700357 + rotY: 179.998169 + rotZ: 359.973267 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 312305 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/786356000879758511/CF3D368183597044860CA0BE0FE6A36024904675/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/786356000879757640/1B977B33065106178624452E8B37BC59D06CEC19/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 3 + GMNotes: '' + GUID: 22dea4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Obtaining the Device + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 42.71516 + posY: 1.50029433 + posZ: 62.0571365 + rotX: 0.02559186 + rotY: 180.003769 + rotZ: 359.956665 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 312306 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/786356000879758511/CF3D368183597044860CA0BE0FE6A36024904675/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/786356000879757640/1B977B33065106178624452E8B37BC59D06CEC19/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 2 + GMNotes: '' + GUID: bf8c2e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Four Keys + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 42.71112 + posY: 1.5178448 + posZ: 62.1299438 + rotX: 0.0180750247 + rotY: 179.9954 + rotZ: 359.9752 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 312304 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/786356000879758511/CF3D368183597044860CA0BE0FE6A36024904675/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/786356000879757640/1B977B33065106178624452E8B37BC59D06CEC19/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 1 + GMNotes: '' + GUID: 0de052 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Infiltrating the Lodge + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 42.3357048 + posY: 1.50397313 + posZ: 61.90018 + rotX: 0.01554727 + rotY: 180.000259 + rotZ: 359.9776 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 312302 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/786356000879758511/CF3D368183597044860CA0BE0FE6A36024904675/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/786356000879757640/1B977B33065106178624452E8B37BC59D06CEC19/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 2 + GMNotes: '' + GUID: 91d5c3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ends and Means + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 45.7921066 + posY: 1.35522616 + posZ: 57.9124527 + rotX: 0.00886662 + rotY: 180.016556 + rotZ: 359.978271 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 312301 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/786356000879758511/CF3D368183597044860CA0BE0FE6A36024904675/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/786356000879757640/1B977B33065106178624452E8B37BC59D06CEC19/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 1 + GMNotes: '' + GUID: 25ab0b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: "THE HIEROPHANT \xB7 V" + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 45.5433846 + posY: 1.50018764 + posZ: 58.1528854 + rotX: 359.983 + rotY: 180.051559 + rotZ: 359.9546 + 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 + UniqueBack: false + Description: Mysterious Device + GMNotes: '' + GUID: e79173 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Puzzle Box + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 42.2925644 + posY: 1.62217152 + posZ: 54.74869 + rotX: 0.0205904581 + rotY: 269.999969 + rotZ: 0.0165778548 + 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 + UniqueBack: false + Description: Elegant and Elusive + GMNotes: '' + GUID: d6fa34 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: August Lindquist + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 42.2323036 + posY: 1.6317935 + posZ: 54.68342 + rotX: 0.0205701 + rotY: 270.000061 + rotZ: 0.0166045371 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 312400 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3124': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/786356000879758511/CF3D368183597044860CA0BE0FE6A36024904675/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/786356000879757640/1B977B33065106178624452E8B37BC59D06CEC19/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: For the Greater Good + GMNotes: '' + GUID: faa49f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Scenario + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 47.14936 + posY: 1.76876867 + posZ: 54.5242 + rotX: 0.02065169 + rotY: 269.99472 + rotZ: 0.01664496 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '3123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/786356000879758511/CF3D368183597044860CA0BE0FE6A36024904675/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/786356000879757640/1B977B33065106178624452E8B37BC59D06CEC19/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + '3124': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/786356000879758511/CF3D368183597044860CA0BE0FE6A36024904675/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/786356000879757640/1B977B33065106178624452E8B37BC59D06CEC19/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + '3125': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/786356000879761873/F22612DB451928DCA4344F3F125F5A8CE128A817/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '3126': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/786356000879761873/F22612DB451928DCA4344F3F125F5A8CE128A817/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '3129': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/786356000879760156/63ACD954501B669BBDC2D64FAA3FFAE0BBEDFB7F/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/786356000879759384/E2705454B81312E1DE9058EE2389E6CD0018A169/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 312907 +- 312900 +- 312902 +- 312901 +- 312912 +- 312906 +- 312910 +- 312905 +- 312903 +- 312908 +- 312904 +- 312911 +- 312909 +- 312604 +- 312604 +- 312603 +- 312603 +- 312601 +- 312600 +- 312602 +- 312407 +- 312605 +- 312605 +- 312606 +- 312606 +- 312607 +- 312607 +- 312608 +- 312608 +- 312303 +- 312305 +- 312306 +- 312304 +- 312302 +- 312301 +- 312510 +- 312509 +- 312400 +Description: '' +GMNotes: '' +GUID: 5d33f2 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: For the Greater Good +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 47.91524 + posY: 2.69588757 + posZ: -40.8382339 + rotX: 359.9201 + rotY: 270.000122 + rotZ: 0.0168888681 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Circle Undone 9f8184/Deck In the Clutches of Chaos 4db724.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Circle Undone 9f8184/Deck In the Clutches of Chaos 4db724.yaml new file mode 100644 index 000000000..8d75bea16 --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Circle Undone 9f8184/Deck In the Clutches of Chaos 4db724.yaml @@ -0,0 +1,1139 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 369122 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3691': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784110538844118232/E948D384460BD0291E7DC53C315709CF0E1321FE/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Curse. + GMNotes: '' + GUID: a71412 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Terror Unleashed + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 58.58292 + posY: 1.35685778 + posZ: 47.9937 + rotX: 0.0214689132 + rotY: 269.998932 + rotZ: 0.0139200166 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 369122 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3691': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784110538844118232/E948D384460BD0291E7DC53C315709CF0E1321FE/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Curse. + GMNotes: '' + GUID: 735cdb + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Terror Unleashed + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 58.7606125 + posY: 1.50205839 + posZ: 48.1445732 + rotX: 0.02945422 + rotY: 269.998047 + rotZ: 0.009088004 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 369122 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3691': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784110538844118232/E948D384460BD0291E7DC53C315709CF0E1321FE/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Curse. + GMNotes: '' + GUID: a71412 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Terror Unleashed + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 58.4156761 + posY: 1.51898789 + posZ: 48.0254631 + rotX: 0.0166849345 + rotY: 269.998749 + rotZ: 0.0125559885 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 369127 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3691': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784110538844118232/E948D384460BD0291E7DC53C315709CF0E1321FE/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Power. + GMNotes: '' + GUID: a47dba + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Primordial Gateway + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 58.38571 + posY: 1.50565636 + posZ: 47.81855 + rotX: 0.0209941231 + rotY: 269.999664 + rotZ: 0.0154777756 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 369127 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3691': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784110538844118232/E948D384460BD0291E7DC53C315709CF0E1321FE/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Power. + GMNotes: '' + GUID: a47dba + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Primordial Gateway + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 58.4880562 + posY: 1.50355768 + posZ: 47.24554 + rotX: 0.0209130254 + rotY: 269.999634 + rotZ: 0.0166651234 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 369128 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3691': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784110538844118232/E948D384460BD0291E7DC53C315709CF0E1321FE/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Power. + GMNotes: '' + GUID: a7dd13 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Chaos Manifest + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 58.39371 + posY: 1.50634408 + posZ: 47.87247 + rotX: 0.024408225 + rotY: 269.999268 + rotZ: 0.0161257125 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 369128 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3691': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784110538844118232/E948D384460BD0291E7DC53C315709CF0E1321FE/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Power. + GMNotes: '' + GUID: ccd9f0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Chaos Manifest + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 58.59821 + posY: 1.51140118 + posZ: 47.73551 + rotX: 0.0225808211 + rotY: 269.9994 + rotZ: 0.0152533529 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 369128 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3691': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784110538844118232/E948D384460BD0291E7DC53C315709CF0E1321FE/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Power. + GMNotes: '' + GUID: a7dd13 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Chaos Manifest + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 58.4594345 + posY: 1.53331447 + posZ: 47.83038 + rotX: 0.02158057 + rotY: 269.999756 + rotZ: 0.01657803 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 369128 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3691': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784110538844118232/E948D384460BD0291E7DC53C315709CF0E1321FE/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Power. + GMNotes: '' + GUID: a7dd13 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Chaos Manifest + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 55.47919 + posY: 1.3549484 + posZ: 45.4602776 + rotX: 0.0217717271 + rotY: 270.010834 + rotZ: 0.0109745236 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 369128 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3691': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784110538844118232/E948D384460BD0291E7DC53C315709CF0E1321FE/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Power. + GMNotes: '' + GUID: ccd9f0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Chaos Manifest + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 55.4988556 + posY: 1.49365318 + posZ: 45.4559021 + rotX: 0.0396416634 + rotY: 270.006836 + rotZ: 359.9935 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 369128 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3691': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784110538844118232/E948D384460BD0291E7DC53C315709CF0E1321FE/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Power. + GMNotes: '' + GUID: 8abcc4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Chaos Manifest + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 55.5241241 + posY: 1.51754248 + posZ: 45.30678 + rotX: 0.0109259654 + rotY: 269.996216 + rotZ: 0.0309177153 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 369326 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3693': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/784110538844132994/8CD6465D48CC5909C15DF8CC02BB9060F593F1BA/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784110538847624119/AC326B629FA308B7F9C7E41069581A8D2B2D77B4/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Arkham. Central. + GMNotes: '' + GUID: e7f5fa + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Southside + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 55.470295 + posY: 1.50393391 + posZ: 45.3499 + rotX: 0.0134729119 + rotY: 270.0012 + rotZ: -0.005468137 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 369327 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3693': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/784110538844132994/8CD6465D48CC5909C15DF8CC02BB9060F593F1BA/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784110538847624119/AC326B629FA308B7F9C7E41069581A8D2B2D77B4/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Arkham. Central. + GMNotes: '' + GUID: c898a0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Southside + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 55.377224 + posY: 1.50215089 + posZ: 46.18403 + rotX: 0.008919438 + rotY: 270.016174 + rotZ: 359.9621 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 369333 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3693': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/784110538844132994/8CD6465D48CC5909C15DF8CC02BB9060F593F1BA/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784110538847624119/AC326B629FA308B7F9C7E41069581A8D2B2D77B4/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Arkham. + GMNotes: '' + GUID: b568b8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Merchant District + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 55.2457848 + posY: 1.50483334 + posZ: 46.2846336 + rotX: 0.00501890155 + rotY: 270.092346 + rotZ: 359.8812 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 369332 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3693': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/784110538844132994/8CD6465D48CC5909C15DF8CC02BB9060F593F1BA/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784110538847624119/AC326B629FA308B7F9C7E41069581A8D2B2D77B4/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Arkham. + GMNotes: '' + GUID: bed0da + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Merchant District + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 55.3400421 + posY: 1.510361 + posZ: 46.2974167 + rotX: 0.00326618785 + rotY: 270.0376 + rotZ: 359.9029 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 369328 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3693': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/784110538844132994/8CD6465D48CC5909C15DF8CC02BB9060F593F1BA/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784110538847624119/AC326B629FA308B7F9C7E41069581A8D2B2D77B4/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Arkham. + GMNotes: '' + GUID: '441006' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Uptown + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 55.352684 + posY: 1.51601422 + posZ: 46.0341873 + rotX: 0.02533232 + rotY: 270.0196 + rotZ: 359.9703 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 369329 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3693': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/784110538844132994/8CD6465D48CC5909C15DF8CC02BB9060F593F1BA/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784110538847624119/AC326B629FA308B7F9C7E41069581A8D2B2D77B4/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Arkham. + GMNotes: '' + GUID: 9484e9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Uptown + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 55.47831 + posY: 1.4741267 + posZ: 46.02487 + rotX: 0.021422755 + rotY: 269.997559 + rotZ: 359.98587 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 369330 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3693': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/784110538844132994/8CD6465D48CC5909C15DF8CC02BB9060F593F1BA/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784110538847624119/AC326B629FA308B7F9C7E41069581A8D2B2D77B4/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Arkham. + GMNotes: '' + GUID: 1a0ad2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: South Church + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 55.3539925 + posY: 1.48471832 + posZ: 46.24234 + rotX: 0.010717974 + rotY: 270.0512 + rotZ: 359.882 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 369331 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3693': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/784110538844132994/8CD6465D48CC5909C15DF8CC02BB9060F593F1BA/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784110538847624119/AC326B629FA308B7F9C7E41069581A8D2B2D77B4/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Arkham. + GMNotes: '' + GUID: 3d2a8a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: South Church + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 55.39396 + posY: 1.4933666 + posZ: 45.85925 + rotX: 0.0251488 + rotY: 270.016022 + rotZ: 359.9782 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 369322 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3693': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/784110538844132994/8CD6465D48CC5909C15DF8CC02BB9060F593F1BA/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784110538847624119/AC326B629FA308B7F9C7E41069581A8D2B2D77B4/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Arkham. + GMNotes: '' + GUID: fc9d97 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: French Hill + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 55.4581947 + posY: 1.50488031 + posZ: 46.1410141 + rotX: 0.00682927 + rotY: 269.960632 + rotZ: 0.0151325148 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 369323 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3693': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/784110538844132994/8CD6465D48CC5909C15DF8CC02BB9060F593F1BA/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784110538847624119/AC326B629FA308B7F9C7E41069581A8D2B2D77B4/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Arkham. + GMNotes: '' + GUID: 6ed2ae + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: French Hill + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 55.3000336 + posY: 1.51320028 + posZ: 46.43483 + rotX: -0.00282363617 + rotY: 269.9546 + rotZ: 359.913544 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 369324 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3693': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/784110538844132994/8CD6465D48CC5909C15DF8CC02BB9060F593F1BA/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784110538847624119/AC326B629FA308B7F9C7E41069581A8D2B2D77B4/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Arkham. + GMNotes: '' + GUID: 92ee68 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Rivertown + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 55.3581772 + posY: 1.52283 + posZ: 46.0260277 + rotX: 0.0141102718 + rotY: 269.9381 + rotZ: 0.02698775 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 369325 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3693': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/784110538844132994/8CD6465D48CC5909C15DF8CC02BB9060F593F1BA/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784110538847624119/AC326B629FA308B7F9C7E41069581A8D2B2D77B4/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Arkham. + GMNotes: '' + GUID: db4b20 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Rivertown + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 55.2830429 + posY: 1.53360915 + posZ: 46.15691 + rotX: 0.0102500571 + rotY: 269.982574 + rotZ: 359.965729 + 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: http://cloud-3.steamusercontent.com/ugc/784110538844100123/A9A0ACCD9ADB5C20745B6AB314C472ECAB71C300/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784110538844098999/61B68D9375F5BBC2974723215EC6855B5605EFD9/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 1 + GMNotes: '' + GUID: b12183 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: "THE CHARIOT \xB7 VII" + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 53.1451 + posY: 1.55570269 + posZ: 45.2444458 + rotX: 0.0211662371 + rotY: 269.994049 + rotZ: 0.016524449 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 368723 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3687': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/784110538844100123/A9A0ACCD9ADB5C20745B6AB314C472ECAB71C300/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784110538844098999/61B68D9375F5BBC2974723215EC6855B5605EFD9/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: In the Clutches of Chaos + GMNotes: '' + GUID: 73d5ac + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Scenario + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 54.86057 + posY: 1.55072153 + posZ: 46.440815 + rotX: 0.0195157658 + rotY: 270.0107 + rotZ: 0.0140036419 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '3687': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/784110538844100123/A9A0ACCD9ADB5C20745B6AB314C472ECAB71C300/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784110538844098999/61B68D9375F5BBC2974723215EC6855B5605EFD9/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + '3688': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/784110538844100123/A9A0ACCD9ADB5C20745B6AB314C472ECAB71C300/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784110538844098999/61B68D9375F5BBC2974723215EC6855B5605EFD9/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + '3691': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784110538844118232/E948D384460BD0291E7DC53C315709CF0E1321FE/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '3693': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/784110538844132994/8CD6465D48CC5909C15DF8CC02BB9060F593F1BA/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784110538847624119/AC326B629FA308B7F9C7E41069581A8D2B2D77B4/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 369122 +- 369122 +- 369122 +- 369127 +- 369127 +- 369128 +- 369128 +- 369128 +- 369128 +- 369128 +- 369128 +- 369326 +- 369327 +- 369333 +- 369332 +- 369328 +- 369329 +- 369330 +- 369331 +- 369322 +- 369323 +- 369324 +- 369325 +- 368824 +- 368723 +Description: '' +GMNotes: '' +GUID: 4db724 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: In the Clutches of Chaos +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 68.29261 + posY: 2.63868833 + posZ: 43.6761742 + rotX: 0.02080675 + rotY: 270.00354 + rotZ: 0.0167765636 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Circle Undone 9f8184/Deck Inexorable Fate 308386.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Circle Undone 9f8184/Deck Inexorable Fate 308386.yaml new file mode 100644 index 000000000..5299f8e2f --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Circle Undone 9f8184/Deck Inexorable Fate 308386.yaml @@ -0,0 +1,301 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 231823 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Omen. Spectral. + GMNotes: '' + GUID: ef132d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Fate of All Fools + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -24.7152367 + posY: 1.91512489 + posZ: -32.59262 + rotX: 359.910583 + rotY: 269.364441 + rotZ: 341.912537 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231823 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Omen. Spectral. + GMNotes: '' + GUID: 717c42 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Fate of All Fools + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -24.6707478 + posY: 1.76058781 + posZ: -33.23441 + rotX: 359.465271 + rotY: 269.459351 + rotZ: 9.029153 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231823 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Omen. Spectral. + GMNotes: '' + GUID: fbcb9f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Fate of All Fools + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -23.46502 + posY: 2.16774321 + posZ: -34.8072357 + rotX: 0.232217044 + rotY: 270.777466 + rotZ: 353.199249 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231822 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. Spectral. + GMNotes: '' + GUID: 43ba03 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Terror in the Night + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -24.27985 + posY: 1.99979043 + posZ: -34.2781525 + rotX: 359.187378 + rotY: 270.910339 + rotZ: 355.236023 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231822 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. Spectral. + GMNotes: '' + GUID: 4f41b0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Terror in the Night + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -24.3842 + posY: 2.1039958 + posZ: -34.9055138 + rotX: 359.182831 + rotY: 270.902466 + rotZ: 355.1978 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231822 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. Spectral. + GMNotes: '' + GUID: 1a350a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Terror in the Night + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -23.6618786 + posY: 2.18380141 + posZ: -35.4214439 + rotX: 359.156219 + rotY: 270.890381 + rotZ: 355.0201 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 231823 +- 231823 +- 231823 +- 231822 +- 231822 +- 231822 +Description: '' +GMNotes: '' +GUID: '308386' +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Inexorable Fate +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -17.2868614 + posY: 2.41208768 + posZ: -92.89923 + rotX: 359.920135 + rotY: 270.0033 + rotZ: 0.0168665778 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Circle Undone 9f8184/Deck Music of the Damned b97715.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Circle Undone 9f8184/Deck Music of the Damned b97715.yaml new file mode 100644 index 000000000..6bc545ae6 --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Circle Undone 9f8184/Deck Music of the Damned b97715.yaml @@ -0,0 +1,401 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 369126 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3691': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784110538844118232/E948D384460BD0291E7DC53C315709CF0E1321FE/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: a36f2f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Toil and Trouble + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 63.8556976 + posY: 1.52211189 + posZ: 46.7093544 + rotX: 0.0237490125 + rotY: 269.999847 + rotZ: 180.017609 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 369126 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3691': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784110538844118232/E948D384460BD0291E7DC53C315709CF0E1321FE/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: a3ec6a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Toil and Trouble + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 58.16304 + posY: 1.50273311 + posZ: 44.97182 + rotX: 0.0261583552 + rotY: 269.999969 + rotZ: 0.00103113 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 369125 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3691': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784110538844118232/E948D384460BD0291E7DC53C315709CF0E1321FE/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Witch + GMNotes: '' + GUID: 6582d7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Witness of Chaos + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 58.5299 + posY: 1.51869488 + posZ: 45.1395531 + rotX: 0.02387122 + rotY: 270.0603 + rotZ: 359.982056 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 369125 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3691': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784110538844118232/E948D384460BD0291E7DC53C315709CF0E1321FE/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Witch + GMNotes: '' + GUID: 6582d7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Witness of Chaos + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 58.5274124 + posY: 1.50500607 + posZ: 44.93002 + rotX: 0.0114952838 + rotY: 270.006348 + rotZ: 0.0101106968 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 369337 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3693': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/784110538844132994/8CD6465D48CC5909C15DF8CC02BB9060F593F1BA/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784110538847624119/AC326B629FA308B7F9C7E41069581A8D2B2D77B4/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Arkham. + GMNotes: '' + GUID: 79a987 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Silver Twilight Lodge + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 63.7238426 + posY: 1.52090979 + posZ: 46.69208 + rotX: 0.0204698462 + rotY: 270.011871 + rotZ: 0.0164111312 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 369335 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3693': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/784110538844132994/8CD6465D48CC5909C15DF8CC02BB9060F593F1BA/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784110538847624119/AC326B629FA308B7F9C7E41069581A8D2B2D77B4/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Arkham. + GMNotes: '' + GUID: 17e686 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Silver Twilight Lodge + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 63.7280426 + posY: 1.50793576 + posZ: 46.64442 + rotX: 0.0195857752 + rotY: 269.999725 + rotZ: 0.0153883044 + 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: + '3688': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/784110538844100123/A9A0ACCD9ADB5C20745B6AB314C472ECAB71C300/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784110538844098999/61B68D9375F5BBC2974723215EC6855B5605EFD9/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 2 + GMNotes: '' + GUID: e39a9a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Beyond the Grave + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 63.50873 + posY: 1.51286483 + posZ: 46.62197 + rotX: 0.0155921048 + rotY: 270.007751 + rotZ: 0.011430487 + 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: + '3688': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/784110538844100123/A9A0ACCD9ADB5C20745B6AB314C472ECAB71C300/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784110538844098999/61B68D9375F5BBC2974723215EC6855B5605EFD9/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 1 + GMNotes: '' + GUID: 7f6167 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dark Knowledge (v.I) + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 63.4891167 + posY: 1.53480387 + posZ: 46.666996 + rotX: 0.02053926 + rotY: 270.006836 + rotZ: 0.01639702 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '3688': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/784110538844100123/A9A0ACCD9ADB5C20745B6AB314C472ECAB71C300/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784110538844098999/61B68D9375F5BBC2974723215EC6855B5605EFD9/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + '3691': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784110538844118232/E948D384460BD0291E7DC53C315709CF0E1321FE/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '3693': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/784110538844132994/8CD6465D48CC5909C15DF8CC02BB9060F593F1BA/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784110538847624119/AC326B629FA308B7F9C7E41069581A8D2B2D77B4/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 369126 +- 369126 +- 369125 +- 369125 +- 369337 +- 369335 +- 368826 +- 368825 +Description: '' +GMNotes: '' +GUID: b97715 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Music of the Damned +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 68.32256 + posY: 2.56436 + posZ: 42.4509926 + rotX: 0.0208092444 + rotY: 270.0 + rotZ: 0.0167707 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Circle Undone 9f8184/Deck Realm of Death 8ee597.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Circle Undone 9f8184/Deck Realm of Death 8ee597.yaml new file mode 100644 index 000000000..0255685dc --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Circle Undone 9f8184/Deck Realm of Death 8ee597.yaml @@ -0,0 +1,215 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 231821 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. Spectral. + GMNotes: '' + GUID: 47147f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Shapes in the Mist + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -25.974844 + posY: 1.58076048 + posZ: -29.1853924 + rotX: 359.916321 + rotY: 269.977448 + rotZ: 0.01572173 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231821 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. Spectral. + GMNotes: '' + GUID: 3c04e0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Shapes in the Mist + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -24.9579411 + posY: 1.72431993 + posZ: -29.8048172 + rotX: 359.8922 + rotY: 269.971619 + rotZ: 0.06810118 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231820 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. Spectral. + GMNotes: '' + GUID: 278e46 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Realm of Torment + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -25.91995 + posY: 1.77833688 + posZ: -29.84826 + rotX: 359.884155 + rotY: 269.9732 + rotZ: 0.074736394 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231820 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. Spectral. + GMNotes: '' + GUID: e49187 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Realm of Torment + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -25.5189228 + posY: 1.92383051 + posZ: -29.7425785 + rotX: 359.8803 + rotY: 269.977753 + rotZ: 0.07589612 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 231821 +- 231821 +- 231820 +- 231820 +Description: '' +GMNotes: '' +GUID: 8ee597 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Realm of Death +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -17.1019154 + posY: 2.40985513 + posZ: -90.00198 + rotX: 359.920135 + rotY: 269.977448 + rotZ: 0.0169032253 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Circle Undone 9f8184/Deck Secrets of the Universe d427d3.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Circle Undone 9f8184/Deck Secrets of the Universe d427d3.yaml new file mode 100644 index 000000000..6ceec2bc1 --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Circle Undone 9f8184/Deck Secrets of the Universe d427d3.yaml @@ -0,0 +1,401 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 369124 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3691': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784110538844118232/E948D384460BD0291E7DC53C315709CF0E1321FE/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: 3c1b20 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Secrets of the Beyond + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 58.8443222 + posY: 1.35779 + posZ: 50.9475632 + rotX: 0.0216053631 + rotY: 269.999481 + rotZ: 0.01178095 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 369124 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3691': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784110538844118232/E948D384460BD0291E7DC53C315709CF0E1321FE/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: af86ae + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Secrets of the Beyond + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 58.7121658 + posY: 1.50282407 + posZ: 50.5226364 + rotX: 0.0208782945 + rotY: 269.999725 + rotZ: 0.00103899743 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 369123 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3691': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784110538844118232/E948D384460BD0291E7DC53C315709CF0E1321FE/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Cultist. Silver Twilight. + GMNotes: '' + GUID: be9d6c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Lodge Enforcer + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 58.5844727 + posY: 1.5199157 + posZ: 50.3753929 + rotX: 0.0302265584 + rotY: 269.998535 + rotZ: 0.0216109157 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 369123 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3691': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784110538844118232/E948D384460BD0291E7DC53C315709CF0E1321FE/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Cultist. Silver Twilight. + GMNotes: '' + GUID: be9d6c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Lodge Enforcer + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 58.7353172 + posY: 1.50654256 + posZ: 50.58267 + rotX: 0.0253733452 + rotY: 270.000427 + rotZ: 0.0166585371 + 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: + '3688': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/784110538844100123/A9A0ACCD9ADB5C20745B6AB314C472ECAB71C300/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784110538844098999/61B68D9375F5BBC2974723215EC6855B5605EFD9/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 2 + GMNotes: '' + GUID: 66378c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: New World Order + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 58.8757172 + posY: 1.358324 + posZ: 53.01934 + rotX: 0.0223737638 + rotY: 269.993927 + rotZ: 0.00615189876 + 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: + '3688': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/784110538844100123/A9A0ACCD9ADB5C20745B6AB314C472ECAB71C300/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784110538844098999/61B68D9375F5BBC2974723215EC6855B5605EFD9/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 1 + GMNotes: '' + GUID: 3a0ad6 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dark Knowledge (v.II) + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 55.92461 + posY: 1.356218 + posZ: 49.3670273 + rotX: 0.0221059248 + rotY: 269.993225 + rotZ: 0.008357889 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 369334 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3693': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/784110538844132994/8CD6465D48CC5909C15DF8CC02BB9060F593F1BA/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784110538847624119/AC326B629FA308B7F9C7E41069581A8D2B2D77B4/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Arkham. + GMNotes: '' + GUID: a21c5b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Hangman's Hill + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 54.55991 + posY: 1.35702813 + posZ: 53.6621933 + rotX: 0.0219174065 + rotY: 270.008362 + rotZ: 0.00635697041 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 369336 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3693': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/784110538844132994/8CD6465D48CC5909C15DF8CC02BB9060F593F1BA/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784110538847624119/AC326B629FA308B7F9C7E41069581A8D2B2D77B4/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Arkham. + GMNotes: '' + GUID: 5f4d8a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Hangman's Hill + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 54.75123 + posY: 1.50200558 + posZ: 53.4450035 + rotX: 0.008041206 + rotY: 269.99054 + rotZ: 0.00584110525 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '3688': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/784110538844100123/A9A0ACCD9ADB5C20745B6AB314C472ECAB71C300/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784110538844098999/61B68D9375F5BBC2974723215EC6855B5605EFD9/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + '3691': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784110538844118232/E948D384460BD0291E7DC53C315709CF0E1321FE/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '3693': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/784110538844132994/8CD6465D48CC5909C15DF8CC02BB9060F593F1BA/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784110538847624119/AC326B629FA308B7F9C7E41069581A8D2B2D77B4/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 369124 +- 369124 +- 369123 +- 369123 +- 368828 +- 368827 +- 369334 +- 369336 +Description: '' +GMNotes: '' +GUID: d427d3 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Secrets of the Universe +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 68.41604 + posY: 2.56435966 + posZ: 41.2528343 + rotX: 0.0208101552 + rotY: 269.999481 + rotZ: 0.0167723522 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Circle Undone 9f8184/Deck Silver Twilight Lodge 747a12.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Circle Undone 9f8184/Deck Silver Twilight Lodge 747a12.yaml new file mode 100644 index 000000000..4c88da11a --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Circle Undone 9f8184/Deck Silver Twilight Lodge 747a12.yaml @@ -0,0 +1,301 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 231812 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Scheme. + GMNotes: '' + GUID: 0eb939 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Mysteries of the Lodge + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -18.7109814 + posY: 1.56981552 + posZ: -32.18543 + rotX: 359.91922 + rotY: 269.979279 + rotZ: 0.0165627878 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231812 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Scheme. + GMNotes: '' + GUID: 7870f6 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Mysteries of the Lodge + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -18.6118813 + posY: 1.71404207 + posZ: -32.3841057 + rotX: 359.91098 + rotY: 269.979034 + rotZ: 0.0195768736 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231810 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Cultist. Silver Twilight. + GMNotes: '' + GUID: 408a82 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Lodge Neophyte + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -18.5851078 + posY: 1.73144269 + posZ: -32.35143 + rotX: 359.919037 + rotY: 269.979156 + rotZ: 0.01716643 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231810 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Cultist. Silver Twilight. + GMNotes: '' + GUID: '525275' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Lodge Neophyte + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -18.3490829 + posY: 1.71755159 + posZ: -31.918066 + rotX: 359.918579 + rotY: 269.9797 + rotZ: 0.0158215724 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231810 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Cultist. Silver Twilight. + GMNotes: '' + GUID: 8dac94 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Lodge Neophyte + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -18.6574612 + posY: 1.71596491 + posZ: -31.9956455 + rotX: 359.918976 + rotY: 269.979736 + rotZ: 0.0163928568 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231811 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Cultist. Silver Twilight. + GMNotes: '' + GUID: 3761ce + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Keeper of Secrets + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -18.7752514 + posY: 1.71879411 + posZ: -32.00056 + rotX: 359.919342 + rotY: 269.979553 + rotZ: 0.0157596618 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 231812 +- 231812 +- 231810 +- 231810 +- 231810 +- 231811 +Description: '' +GMNotes: '' +GUID: 747a12 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Silver Twilight Lodge +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -15.9548664 + posY: 2.41508055 + posZ: -76.43073 + rotX: 359.920135 + rotY: 269.9804 + rotZ: 0.0168992933 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Circle Undone 9f8184/Deck Spectral Predators 842b8d.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Circle Undone 9f8184/Deck Spectral Predators 842b8d.yaml new file mode 100644 index 000000000..1a25ad7f9 --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Circle Undone 9f8184/Deck Spectral Predators 842b8d.yaml @@ -0,0 +1,258 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 231816 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Spectral. + GMNotes: '' + GUID: c9136e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Shadow Hound + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -24.9589443 + posY: 1.57623374 + posZ: -40.001133 + rotX: 359.919617 + rotY: 269.9781 + rotZ: 0.0166504774 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231816 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Spectral. + GMNotes: '' + GUID: 9d53c1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Shadow Hound + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -24.7281628 + posY: 1.7203182 + posZ: -40.06545 + rotX: 359.911 + rotY: 269.9779 + rotZ: 0.0166180339 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231815 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Spectral. + GMNotes: '' + GUID: d32fa0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Nether Mist. + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -24.8214874 + posY: 1.73793507 + posZ: -39.8119354 + rotX: 359.9189 + rotY: 269.9784 + rotZ: 0.0163416639 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231817 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Omen. Spectral. + GMNotes: '' + GUID: aa8c0e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Whispers in the Dark + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -24.812706 + posY: 1.72420788 + posZ: -39.9615822 + rotX: 359.9189 + rotY: 269.9785 + rotZ: 0.0168172251 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231817 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Omen. Spectral. + GMNotes: '' + GUID: c4c440 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Whispers in the Dark + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -25.3439846 + posY: 1.72281778 + posZ: -40.31694 + rotX: 359.918823 + rotY: 269.9783 + rotZ: 0.01890598 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 231816 +- 231816 +- 231815 +- 231817 +- 231817 +Description: '' +GMNotes: '' +GUID: 842b8d +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Spectral Predators +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -16.5786858 + posY: 2.411958 + posZ: -83.204834 + rotX: 359.920135 + rotY: 269.9784 + rotZ: 0.0168977473 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Circle Undone 9f8184/Deck The Secret Name 8ee597.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Circle Undone 9f8184/Deck The Secret Name 8ee597.yaml new file mode 100644 index 000000000..593eef50f --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Circle Undone 9f8184/Deck The Secret Name 8ee597.yaml @@ -0,0 +1,1705 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 275530 + 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/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: The Witch's Familiar + GMNotes: '' + GUID: a5885f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Brown Jenkin + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 28.0608063 + posY: 1.48256147 + posZ: 70.23769 + rotX: 0.3963438 + rotY: 269.9942 + rotZ: 179.55542 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 275528 + 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/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: 6b521b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Pulled by the Stars + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 19.4392548 + posY: 1.34818745 + posZ: 66.77173 + rotX: 0.0208143778 + rotY: 269.982849 + rotZ: 0.0167647954 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 275528 + 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/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: 73138b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Pulled by the Stars + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 18.958252 + posY: 1.49464607 + posZ: 66.83138 + rotX: 0.0208131149 + rotY: 269.98288 + rotZ: 0.0167688485 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 275525 + 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/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Curse. + GMNotes: '' + GUID: 91ea7c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Meddlesome Familiar + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.0629826 + posY: 1.5434624 + posZ: 69.85437 + rotX: 0.00353208953 + rotY: 269.9999 + rotZ: 0.0103120068 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 275525 + 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/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Curse. + GMNotes: '' + GUID: '669016' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Meddlesome Familiar + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 15.534421 + posY: 1.34764123 + posZ: 69.7729 + rotX: 0.02023894 + rotY: 269.999878 + rotZ: 0.01630637 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 275525 + 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/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Curse. + GMNotes: '' + GUID: '561923' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Meddlesome Familiar + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.0629387 + posY: 1.39727807 + posZ: 69.8543549 + rotX: 0.006995492 + rotY: 269.999939 + rotZ: 0.0118337628 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 275527 + 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/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: c309da + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Extradimensional Visions + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 15.57442 + posY: 1.34594059 + posZ: 63.90754 + rotX: 0.0205667466 + rotY: 269.982239 + rotZ: 0.0166774988 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 275527 + 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/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: 1a9156 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Extradimensional Visions + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.288187 + posY: 1.49218273 + posZ: 63.2581558 + rotX: 0.019790573 + rotY: 269.982269 + rotZ: 0.01620747 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 275529 + 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/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: ecc30a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Disquieting Dreams + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 19.32797 + posY: 1.34728289 + posZ: 63.819725 + rotX: 0.0208016783 + rotY: 270.0232 + rotZ: 0.01678183 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 275529 + 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/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: 4bfb2e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Disquieting Dreams + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 19.2536545 + posY: 1.49378228 + posZ: 63.5150528 + rotX: 0.0208015256 + rotY: 270.0232 + rotZ: 0.0167839061 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 275526 + 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/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: 5e23b2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ghostly Presence + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 20.2544212 + posY: 1.40155768 + posZ: 76.95319 + rotX: 0.020767916 + rotY: 269.99295 + rotZ: 0.0164573882 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 275526 + 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/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: 7725f0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ghostly Presence + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 20.437912 + posY: 1.35132825 + posZ: 76.2654343 + rotX: 0.0207659211 + rotY: 269.997681 + rotZ: 0.01675902 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 275524 + 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/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Extradimensional. + GMNotes: '' + GUID: '867256' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Strange Geometry + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 25.3332462 + posY: 1.5051235 + posZ: 80.50106 + rotX: 0.0361841 + rotY: 270.0002 + rotZ: 180.161316 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 275524 + 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/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Extradimensional. + GMNotes: '' + GUID: e08f79 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Strange Geometry + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 25.312233 + posY: 1.35691929 + posZ: 80.35414 + rotX: 0.0105671864 + rotY: 269.999268 + rotZ: 180.020477 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 275531 + 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/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: She Who Signed the Black Book + GMNotes: '' + GUID: 5bd251 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Nahab + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 57.7172165 + posY: 1.61444461 + posZ: 47.7816849 + rotX: 0.00691215135 + rotY: 269.9577 + rotZ: 355.641052 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 275930 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2759': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/829135524527100186/0D63305581E65C95F286CCA4902B7DE796D815BD/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524527103742/0C4DB40889420CFE47BE897944621ABF2ECA52F9/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Extradimensional. + GMNotes: '' + GUID: 789bfc + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Unknown Places + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 37.91871 + posY: 1.50776482 + posZ: 68.2600555 + rotX: 0.0200533122 + rotY: 270.007935 + rotZ: 180.0183 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 275932 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2759': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/829135524527100186/0D63305581E65C95F286CCA4902B7DE796D815BD/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524527103742/0C4DB40889420CFE47BE897944621ABF2ECA52F9/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Extradimensional. + GMNotes: '' + GUID: 9a471d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Unknown Places + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 37.8498955 + posY: 1.50504923 + posZ: 68.35934 + rotX: 0.02151048 + rotY: 270.007538 + rotZ: 180.020416 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 275934 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2759': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/829135524527100186/0D63305581E65C95F286CCA4902B7DE796D815BD/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524527103742/0C4DB40889420CFE47BE897944621ABF2ECA52F9/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Extradimensional. + GMNotes: '' + GUID: 13e568 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Unknown Places + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 38.26049 + posY: 1.50727665 + posZ: 68.74983 + rotX: 0.0214149524 + rotY: 270.0081 + rotZ: 180.0162 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 275929 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2759': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/829135524527100186/0D63305581E65C95F286CCA4902B7DE796D815BD/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524527103742/0C4DB40889420CFE47BE897944621ABF2ECA52F9/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Extradimensional. + GMNotes: '' + GUID: 300aee + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Unknown Places + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 38.2868462 + posY: 1.51864886 + posZ: 68.84118 + rotX: 0.0005201616 + rotY: 270.0049 + rotZ: 179.82106 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 275933 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2759': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/829135524527100186/0D63305581E65C95F286CCA4902B7DE796D815BD/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524527103742/0C4DB40889420CFE47BE897944621ABF2ECA52F9/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Extradimensional. + GMNotes: '' + GUID: 0ac3ea + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Unknown Places + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 38.3945656 + posY: 1.50345075 + posZ: 68.7473 + rotX: 0.008707138 + rotY: 270.007446 + rotZ: 179.992554 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 275928 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2759': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/829135524527100186/0D63305581E65C95F286CCA4902B7DE796D815BD/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524527103742/0C4DB40889420CFE47BE897944621ABF2ECA52F9/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Extradimensional. + GMNotes: '' + GUID: b538f8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Unknown Places + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 38.41501 + posY: 1.35831535 + posZ: 68.39643 + rotX: 0.01792046 + rotY: 270.0082 + rotZ: 180.017761 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 275931 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2759': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/829135524527100186/0D63305581E65C95F286CCA4902B7DE796D815BD/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524527103742/0C4DB40889420CFE47BE897944621ABF2ECA52F9/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Extradimensional. + GMNotes: '' + GUID: 7bea34 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Unknown Places + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 38.1158066 + posY: 1.510168 + posZ: 68.472084 + rotX: 0.0117359618 + rotY: 269.994934 + rotZ: 0.0226200242 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 275927 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2759': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/829135524527100186/0D63305581E65C95F286CCA4902B7DE796D815BD/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524527103742/0C4DB40889420CFE47BE897944621ABF2ECA52F9/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Spectral. Witch House. + GMNotes: '' + GUID: e2b8fc + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Keziah's Room + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 64.12109 + posY: 1.57162 + posZ: 41.6882477 + rotX: 0.00440082652 + rotY: 269.9944 + rotZ: 0.00136497128 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 275935 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2759': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/829135524527100186/0D63305581E65C95F286CCA4902B7DE796D815BD/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524527103742/0C4DB40889420CFE47BE897944621ABF2ECA52F9/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Extradimensional. Witch House. + GMNotes: '' + GUID: 09f034 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Site of the Sacrifice + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 64.23085 + posY: 1.71646011 + posZ: 41.8882942 + rotX: -0.00249883882 + rotY: 270.011658 + rotZ: -0.000456579524 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 275926 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2759': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/829135524527100186/0D63305581E65C95F286CCA4902B7DE796D815BD/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524527103742/0C4DB40889420CFE47BE897944621ABF2ECA52F9/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Witch House. + GMNotes: '' + GUID: 9f9bb1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Walter Gilman's Room + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 22.31436 + posY: 1.35193992 + posZ: 77.16433 + rotX: 0.00854149 + rotY: 269.999146 + rotZ: 0.0116353771 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 275925 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2759': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/829135524527100186/0D63305581E65C95F286CCA4902B7DE796D815BD/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524527103742/0C4DB40889420CFE47BE897944621ABF2ECA52F9/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Witch House. + GMNotes: '' + GUID: 72ac0c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Decrepit Door + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 19.15671 + posY: 1.35161269 + posZ: 78.9978943 + rotX: 0.0179646481 + rotY: 270.0139 + rotZ: 0.0153687047 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 275924 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2759': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/829135524527100186/0D63305581E65C95F286CCA4902B7DE796D815BD/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524527103742/0C4DB40889420CFE47BE897944621ABF2ECA52F9/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Witch House. + GMNotes: '' + GUID: 5c61d9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Decrepit Door + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 22.457552 + posY: 1.35344362 + posZ: 81.00315 + rotX: 0.0200509951 + rotY: 270.013733 + rotZ: 0.0162721463 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 275923 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2759': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/829135524527100186/0D63305581E65C95F286CCA4902B7DE796D815BD/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524527103742/0C4DB40889420CFE47BE897944621ABF2ECA52F9/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Witch House. + GMNotes: '' + GUID: 6bb83e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Decrepit Door + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 22.24919 + posY: 1.49864137 + posZ: 80.84612 + rotX: 0.0161642935 + rotY: 270.015564 + rotZ: 0.019158924 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 275922 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2759': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/829135524527100186/0D63305581E65C95F286CCA4902B7DE796D815BD/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524527103742/0C4DB40889420CFE47BE897944621ABF2ECA52F9/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Witch House. + GMNotes: '' + GUID: e281ec + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Moldy Halls + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 21.8965168 + posY: 1.49891639 + posZ: 76.93929 + rotX: 0.020835517 + rotY: 270.0 + rotZ: 0.0177166127 + 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 + UniqueBack: false + Description: Signed in Blood + GMNotes: '' + GUID: 4142d6 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Black Book + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 57.72025 + posY: 1.67779231 + posZ: 47.88601 + rotX: 0.0209275223 + rotY: 269.999847 + rotZ: 0.0168922115 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 275327 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2753': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/829135524526797029/1F8A6C29028AED32DB44E4CF22E3120C417F413D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526785922/F34A644AC467C751B6D7B8AF398B8FDB07CCF6A0/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 3 + GMNotes: '' + GUID: 1abfba + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Stopping the Ritual + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 26.17231 + posY: 1.348263 + posZ: 59.550766 + rotX: 0.0021465125 + rotY: 179.997375 + rotZ: 359.97345 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 275326 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2753': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/829135524526797029/1F8A6C29028AED32DB44E4CF22E3120C417F413D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526785922/F34A644AC467C751B6D7B8AF398B8FDB07CCF6A0/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 2 + GMNotes: '' + GUID: 1feabc + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Beyond the Witch House + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 29.2456379 + posY: 1.349643 + posZ: 59.6061249 + rotX: 0.01631257 + rotY: 180.001724 + rotZ: 359.977448 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 275325 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2753': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/829135524526797029/1F8A6C29028AED32DB44E4CF22E3120C417F413D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526785922/F34A644AC467C751B6D7B8AF398B8FDB07CCF6A0/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 1 + GMNotes: '' + GUID: d01350 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Investigating the Witch House + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 29.3317261 + posY: 1.49492872 + posZ: 59.80226 + rotX: 0.0080563575 + rotY: 180.004028 + rotZ: 359.976 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 275324 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2753': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/829135524526797029/1F8A6C29028AED32DB44E4CF22E3120C417F413D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526785922/F34A644AC467C751B6D7B8AF398B8FDB07CCF6A0/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 4 + GMNotes: '' + GUID: 2c4183 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Marked for Sacrifice + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 23.8240452 + posY: 1.34878731 + posZ: 64.35853 + rotX: 0.003070141 + rotY: 180.001953 + rotZ: 359.973083 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 275323 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2753': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/829135524526797029/1F8A6C29028AED32DB44E4CF22E3120C417F413D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526785922/F34A644AC467C751B6D7B8AF398B8FDB07CCF6A0/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 3 + GMNotes: '' + GUID: 6adc7b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Witch Light + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 26.8698158 + posY: 1.34987855 + posZ: 64.5165558 + rotX: -0.0006277118 + rotY: 179.999649 + rotZ: 359.9728 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 275322 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2753': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/829135524526797029/1F8A6C29028AED32DB44E4CF22E3120C417F413D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526785922/F34A644AC467C751B6D7B8AF398B8FDB07CCF6A0/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 2 + GMNotes: '' + GUID: 4ba381 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Familiar + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 29.811491 + posY: 1.35134566 + posZ: 64.73896 + rotX: 0.01601633 + rotY: 179.999969 + rotZ: 359.978851 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 275321 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2753': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/829135524526797029/1F8A6C29028AED32DB44E4CF22E3120C417F413D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526785922/F34A644AC467C751B6D7B8AF398B8FDB07CCF6A0/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 1 + GMNotes: '' + GUID: f39695 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: "THE HERMIT \xB7 IX" + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 29.9670486 + posY: 1.496629 + posZ: 64.8450851 + rotX: 0.007878363 + rotY: 180.0 + rotZ: 359.980835 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 275420 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2754': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/829135524526797029/1F8A6C29028AED32DB44E4CF22E3120C417F413D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526785922/F34A644AC467C751B6D7B8AF398B8FDB07CCF6A0/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: The Secret Name + GMNotes: '' + GUID: f087e3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Scenario + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 59.0254745 + posY: 1.51815343 + posZ: 48.6107178 + rotX: 0.016924018 + rotY: 180.003677 + rotZ: 359.986725 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2753': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/829135524526797029/1F8A6C29028AED32DB44E4CF22E3120C417F413D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526785922/F34A644AC467C751B6D7B8AF398B8FDB07CCF6A0/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + '2754': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/829135524526797029/1F8A6C29028AED32DB44E4CF22E3120C417F413D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526785922/F34A644AC467C751B6D7B8AF398B8FDB07CCF6A0/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + '2755': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '2757': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '2759': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/829135524527100186/0D63305581E65C95F286CCA4902B7DE796D815BD/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524527103742/0C4DB40889420CFE47BE897944621ABF2ECA52F9/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 275530 +- 275528 +- 275528 +- 275525 +- 275525 +- 275525 +- 275527 +- 275527 +- 275529 +- 275529 +- 275526 +- 275526 +- 275524 +- 275524 +- 275531 +- 275930 +- 275932 +- 275934 +- 275929 +- 275933 +- 275928 +- 275931 +- 275927 +- 275935 +- 275926 +- 275925 +- 275924 +- 275923 +- 275922 +- 275732 +- 275327 +- 275326 +- 275325 +- 275324 +- 275323 +- 275322 +- 275321 +- 275420 +Description: The Circle Undone +GMNotes: '' +GUID: 8ee597 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: The Secret Name +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 54.9993172 + posY: 3.540888 + posZ: 71.26696 + rotX: 358.985046 + rotY: 270.012054 + rotZ: 0.601668358 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Circle Undone 9f8184/Deck The Watcher 28374b.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Circle Undone 9f8184/Deck The Watcher 28374b.yaml new file mode 100644 index 000000000..63ba65c14 --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Circle Undone 9f8184/Deck The Watcher 28374b.yaml @@ -0,0 +1,172 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 231802 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Power. Spectral. + GMNotes: '' + GUID: f798c8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Watcher's Grasp + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -27.8545532 + posY: 1.58170176 + posZ: -34.8676262 + rotX: 359.915649 + rotY: 269.974121 + rotZ: 0.01525554 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231802 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Power. Spectral. + GMNotes: '' + GUID: f92f1e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Watcher's Grasp + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -27.9526443 + posY: 1.72608125 + posZ: -34.6397629 + rotX: 359.9233 + rotY: 269.9745 + rotZ: 0.00772151956 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231801 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: You Are Its Prey + GMNotes: '' + GUID: a1eb9b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Spectral Watcher + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -27.4475632 + posY: 1.74305177 + posZ: -34.8419075 + rotX: 359.9185 + rotY: 269.974243 + rotZ: 0.0167756584 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 231802 +- 231802 +- 231801 +Description: '' +GMNotes: '' +GUID: 28374b +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: The Watcher +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -17.40337 + posY: 2.40901637 + posZ: -99.3816147 + rotX: 359.920135 + rotY: 269.9749 + rotZ: 0.0169026628 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Circle Undone 9f8184/Deck The Witching Hour 8f6174.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Circle Undone 9f8184/Deck The Witching Hour 8f6174.yaml new file mode 100644 index 000000000..53e08a85f --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Circle Undone 9f8184/Deck The Witching Hour 8f6174.yaml @@ -0,0 +1,709 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 231800 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: The High Priestess + GMNotes: '' + GUID: '845563' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Anette Mason + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -20.4931965 + posY: 1.579054 + posZ: -8.421181 + rotX: 359.906525 + rotY: 269.9794 + rotZ: 0.0111517785 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231901 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/829135524527100186/0D63305581E65C95F286CCA4902B7DE796D815BD/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524527103742/0C4DB40889420CFE47BE897944621ABF2ECA52F9/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Woods. + GMNotes: '' + GUID: eca18e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Witch-Haunted Woods + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.25838232 + posY: 1.54423487 + posZ: -15.0968046 + rotX: 359.920135 + rotY: 269.999939 + rotZ: 0.016869422 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231902 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/829135524527100186/0D63305581E65C95F286CCA4902B7DE796D815BD/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524527103742/0C4DB40889420CFE47BE897944621ABF2ECA52F9/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Woods. + GMNotes: '' + GUID: 05d5ef + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Witch-Haunted Woods + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.3670063 + posY: 1.54326081 + posZ: -17.8906136 + rotX: 359.920135 + rotY: 270.000061 + rotZ: 0.0168700721 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231904 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/829135524527100186/0D63305581E65C95F286CCA4902B7DE796D815BD/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524527103742/0C4DB40889420CFE47BE897944621ABF2ECA52F9/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Woods. + GMNotes: '' + GUID: 0fe9f1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Witch-Haunted Woods + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.26717877 + posY: 1.54263616 + posZ: -20.4850121 + rotX: 359.920135 + rotY: 269.999969 + rotZ: 0.01686795 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231900 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/829135524527100186/0D63305581E65C95F286CCA4902B7DE796D815BD/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524527103742/0C4DB40889420CFE47BE897944621ABF2ECA52F9/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Woods. + GMNotes: '' + GUID: d7fb9d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Witch-Haunted Woods + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -0.0956207737 + posY: 1.54858446 + posZ: -16.2046013 + rotX: 359.920135 + rotY: 270.0001 + rotZ: 0.0168696959 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231903 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/829135524527100186/0D63305581E65C95F286CCA4902B7DE796D815BD/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524527103742/0C4DB40889420CFE47BE897944621ABF2ECA52F9/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Woods. + GMNotes: '' + GUID: d3f8c3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Witch-Haunted Woods + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.0298207663 + posY: 1.54765153 + posZ: -18.7793159 + rotX: 359.920135 + rotY: 270.000061 + rotZ: 0.016869735 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231905 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/829135524527100186/0D63305581E65C95F286CCA4902B7DE796D815BD/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524527103742/0C4DB40889420CFE47BE897944621ABF2ECA52F9/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Woods. + GMNotes: '' + GUID: 1539ea + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Witch-Haunted Woods + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.0108068641 + posY: 1.54669714 + posZ: -22.1110363 + rotX: 359.920135 + rotY: 269.999969 + rotZ: 0.0168679785 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231906 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/829135524527100186/0D63305581E65C95F286CCA4902B7DE796D815BD/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524527103742/0C4DB40889420CFE47BE897944621ABF2ECA52F9/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Woods. + GMNotes: '' + GUID: fc78d7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Witch-Haunted Woods + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.79385471 + posY: 1.5407505 + posZ: -24.39393 + rotX: 359.9201 + rotY: 269.999969 + rotZ: 0.0168750882 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232013 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/829135524526797029/1F8A6C29028AED32DB44E4CF22E3120C417F413D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526785922/F34A644AC467C751B6D7B8AF398B8FDB07CCF6A0/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 4 + GMNotes: '' + GUID: 0a0759 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: A Circle Unbroken + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -13.39085 + posY: 1.573935 + posZ: 7.543645 + rotX: 0.008133726 + rotY: 180.001221 + rotZ: 0.07553037 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232012 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/829135524526797029/1F8A6C29028AED32DB44E4CF22E3120C417F413D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526785922/F34A644AC467C751B6D7B8AF398B8FDB07CCF6A0/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 3 + GMNotes: '' + GUID: c31146 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Paths into Twilight + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -10.4994593 + posY: 1.56992149 + posZ: 7.226833 + rotX: 0.0122376485 + rotY: 180.002289 + rotZ: 0.07501469 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232011 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/829135524526797029/1F8A6C29028AED32DB44E4CF22E3120C417F413D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526785922/F34A644AC467C751B6D7B8AF398B8FDB07CCF6A0/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 2 + GMNotes: '' + GUID: 68cfea + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Witch Hauntings + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -7.62799454 + posY: 1.56589842 + posZ: 7.2519803 + rotX: 0.0122893164 + rotY: 179.999939 + rotZ: 0.0784956142 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232010 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/829135524526797029/1F8A6C29028AED32DB44E4CF22E3120C417F413D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526785922/F34A644AC467C751B6D7B8AF398B8FDB07CCF6A0/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 1 + GMNotes: '' + GUID: 5b7c7c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Lost in the Woods + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -7.58153057 + posY: 1.7061789 + posZ: 7.33736944 + rotX: 0.0176965259 + rotY: 180.000427 + rotZ: 0.08492906 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232009 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/829135524526797029/1F8A6C29028AED32DB44E4CF22E3120C417F413D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526785922/F34A644AC467C751B6D7B8AF398B8FDB07CCF6A0/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 2 + GMNotes: '' + GUID: 9d5674 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Night Howls + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -7.297843 + posY: 1.56667411 + posZ: 11.3410053 + rotX: 0.0139629086 + rotY: 179.999878 + rotZ: 0.07908345 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232008 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/829135524526797029/1F8A6C29028AED32DB44E4CF22E3120C417F413D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526785922/F34A644AC467C751B6D7B8AF398B8FDB07CCF6A0/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 1 + GMNotes: '' + GUID: 96a76c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: "TEMPERANCE \xB7 XIV" + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -7.0022 + posY: 1.70677054 + posZ: 11.2190895 + rotX: 0.00582233956 + rotY: 179.99968 + rotZ: 0.09951117 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231707 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2317': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/829135524526797029/1F8A6C29028AED32DB44E4CF22E3120C417F413D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526785922/F34A644AC467C751B6D7B8AF398B8FDB07CCF6A0/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: The Witching Hour + GMNotes: '' + GUID: 35dcd2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Scenario + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -20.7417316 + posY: 1.75140119 + posZ: -8.130107 + rotX: 359.9361 + rotY: 269.992126 + rotZ: 0.0117018437 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2317': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/829135524526797029/1F8A6C29028AED32DB44E4CF22E3120C417F413D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526785922/F34A644AC467C751B6D7B8AF398B8FDB07CCF6A0/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/829135524527100186/0D63305581E65C95F286CCA4902B7DE796D815BD/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524527103742/0C4DB40889420CFE47BE897944621ABF2ECA52F9/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/829135524526797029/1F8A6C29028AED32DB44E4CF22E3120C417F413D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526785922/F34A644AC467C751B6D7B8AF398B8FDB07CCF6A0/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 231800 +- 231901 +- 231902 +- 231904 +- 231900 +- 231903 +- 231905 +- 231906 +- 232013 +- 232012 +- 232011 +- 232010 +- 232009 +- 232008 +- 231707 +Description: '' +GMNotes: '' +GUID: 8f6174 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: The Witching Hour +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -13.182127 + posY: 2.42535949 + posZ: -66.4574051 + rotX: 359.9201 + rotY: 270.019226 + rotZ: 0.01684466 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Circle Undone 9f8184/Deck Trapped Spirits 1829fa.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Circle Undone 9f8184/Deck Trapped Spirits 1829fa.yaml new file mode 100644 index 000000000..bf2fb6496 --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Circle Undone 9f8184/Deck Trapped Spirits 1829fa.yaml @@ -0,0 +1,215 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 231818 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Geist. Spectral. + GMNotes: '' + GUID: 7732b3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Wraith + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -23.14106 + posY: 1.62496328 + posZ: -36.8201828 + rotX: 359.913239 + rotY: 269.973724 + rotZ: 0.00411301153 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231819 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. Spectral. + GMNotes: '' + GUID: 4e4752 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Trapped Spirits + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -23.8059444 + posY: 1.67718458 + posZ: -36.7148056 + rotX: 359.913239 + rotY: 269.9757 + rotZ: 0.004121993 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231819 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. Spectral. + GMNotes: '' + GUID: 10c2cb + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Trapped Spirits + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -23.006403 + posY: 1.73293757 + posZ: -36.7171631 + rotX: 359.904938 + rotY: 269.972717 + rotZ: 0.0009751208 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231818 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Geist. Spectral. + GMNotes: '' + GUID: db1b65 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Wraith + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -23.6921558 + posY: 1.5753423 + posZ: -36.98296 + rotX: 359.918884 + rotY: 269.973633 + rotZ: 0.016206529 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 231818 +- 231819 +- 231819 +- 231818 +Description: '' +GMNotes: '' +GUID: 1829fa +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Trapped Spirits +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -17.5744724 + posY: 2.40602922 + posZ: -105.232529 + rotX: 359.920135 + rotY: 269.973358 + rotZ: 0.01690757 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Circle Undone 9f8184/Deck Union and Disillusion 44852b.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Circle Undone 9f8184/Deck Union and Disillusion 44852b.yaml new file mode 100644 index 000000000..77214af69 --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Circle Undone 9f8184/Deck Union and Disillusion 44852b.yaml @@ -0,0 +1,1920 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 312619 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3126': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/786356000879761873/F22612DB451928DCA4344F3F125F5A8CE128A817/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: d4452d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Death Approaches + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 51.1558342 + posY: 1.36027431 + posZ: 68.93634 + rotX: 0.0214657933 + rotY: 269.982727 + rotZ: 0.0124087119 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 312619 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3126': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/786356000879761873/F22612DB451928DCA4344F3F125F5A8CE128A817/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: a81e3d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Death Approaches + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 51.1558151 + posY: 1.519166 + posZ: 68.93631 + rotX: 0.0323142558 + rotY: 269.982727 + rotZ: 0.010922363 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 312617 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3126': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/786356000879761873/F22612DB451928DCA4344F3F125F5A8CE128A817/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: 1f2790 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Eager for Death + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 51.3987541 + posY: 1.52304614 + posZ: 69.0922852 + rotX: 0.02190911 + rotY: 269.982574 + rotZ: 0.0156473834 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 312617 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3126': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/786356000879761873/F22612DB451928DCA4344F3F125F5A8CE128A817/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: 1f2790 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Eager for Death + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 51.3978462 + posY: 1.53227317 + posZ: 69.09223 + rotX: 0.0213066842 + rotY: 269.982727 + rotZ: 0.0163008813 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 312620 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3126': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/786356000879761873/F22612DB451928DCA4344F3F125F5A8CE128A817/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Curse. + GMNotes: '' + GUID: d21848 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Marked for Death + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 50.86601 + posY: 1.50720775 + posZ: 69.19817 + rotX: 0.0193651412 + rotY: 269.9818 + rotZ: 0.0148108806 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 312620 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3126': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/786356000879761873/F22612DB451928DCA4344F3F125F5A8CE128A817/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Curse. + GMNotes: '' + GUID: d21848 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Marked for Death + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 50.7206 + posY: 1.52327418 + posZ: 69.2906952 + rotX: 0.0204002019 + rotY: 269.981445 + rotZ: 0.0148238987 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 312618 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3126': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/786356000879761873/F22612DB451928DCA4344F3F125F5A8CE128A817/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: '292724' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Psychopomp's Song + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 50.9931679 + posY: 1.51483929 + posZ: 69.1252747 + rotX: 0.0243415628 + rotY: 269.9848 + rotZ: 0.0119230887 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 312618 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3126': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/786356000879761873/F22612DB451928DCA4344F3F125F5A8CE128A817/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: '292724' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Psychopomp's Song + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 51.13228 + posY: 1.53997219 + posZ: 68.56183 + rotX: 0.02073968 + rotY: 269.9851 + rotZ: 0.01585067 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 312615 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3126': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/786356000879761873/F22612DB451928DCA4344F3F125F5A8CE128A817/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Creature. Spectral. + GMNotes: '' + GUID: 0f6a54 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Spectral Raven + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 51.178978 + posY: 1.494407 + posZ: 69.2785 + rotX: 0.0206250176 + rotY: 269.981384 + rotZ: 0.01638193 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 312615 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3126': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/786356000879761873/F22612DB451928DCA4344F3F125F5A8CE128A817/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Creature. Spectral. + GMNotes: '' + GUID: 0f6a54 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Spectral Raven + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 51.5477867 + posY: 1.506243 + posZ: 69.17383 + rotX: 0.0197828561 + rotY: 269.981384 + rotZ: 0.014736644 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 312621 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3126': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/786356000879761873/F22612DB451928DCA4344F3F125F5A8CE128A817/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Curse. + GMNotes: '' + GUID: '940982' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Watcher's Gaze + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 51.1345329 + posY: 1.49800551 + posZ: 69.1603851 + rotX: 0.02385469 + rotY: 269.978 + rotZ: 0.01211908 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 312616 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3126': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/786356000879761873/F22612DB451928DCA4344F3F125F5A8CE128A817/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Creature. + GMNotes: '' + GUID: '582874' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Whippoorwill + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 50.950592 + posY: 1.507608 + posZ: 69.19603 + rotX: 0.0243734326 + rotY: 269.980865 + rotZ: 0.0119646369 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 312616 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3126': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/786356000879761873/F22612DB451928DCA4344F3F125F5A8CE128A817/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Creature. + GMNotes: '' + GUID: '582874' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Whippoorwill + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 50.9109726 + posY: 1.52866721 + posZ: 68.33868 + rotX: 0.0276095364 + rotY: 269.9815 + rotZ: 0.0201389622 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 312616 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3126': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/786356000879761873/F22612DB451928DCA4344F3F125F5A8CE128A817/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Creature. + GMNotes: '' + GUID: '582874' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Whippoorwill + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 50.9109726 + posY: 1.53637481 + posZ: 68.33868 + rotX: 0.0281511154 + rotY: 269.9815 + rotZ: 0.0203963779 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 312616 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3126': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/786356000879761873/F22612DB451928DCA4344F3F125F5A8CE128A817/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Creature. + GMNotes: '' + GUID: '582874' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Whippoorwill + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 50.9241829 + posY: 1.54410064 + posZ: 68.34677 + rotX: 0.02846311 + rotY: 269.981354 + rotZ: 0.0205551218 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 312421 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3124': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/786356000879758511/CF3D368183597044860CA0BE0FE6A36024904675/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/786356000879757640/1B977B33065106178624452E8B37BC59D06CEC19/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Tragic Loss + GMNotes: '' + GUID: 31bd61 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Penny White + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 47.1623344 + posY: 1.36164081 + posZ: 78.45851 + rotX: 0.02090908 + rotY: 269.982269 + rotZ: 0.0148487631 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 312420 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3124': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/786356000879758511/CF3D368183597044860CA0BE0FE6A36024904675/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/786356000879757640/1B977B33065106178624452E8B37BC59D06CEC19/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Starved for Answers + GMNotes: '' + GUID: 03d161 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Jerome Davids + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 46.90351 + posY: 1.5066154 + posZ: 78.77251 + rotX: 0.0153573984 + rotY: 269.983856 + rotZ: 0.00409939932 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 312419 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3124': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/786356000879758511/CF3D368183597044860CA0BE0FE6A36024904675/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/786356000879757640/1B977B33065106178624452E8B37BC59D06CEC19/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: You're Next + GMNotes: '' + GUID: 367d1d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Gavriella Mizrah + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 47.1132927 + posY: 1.52420986 + posZ: 78.62225 + rotX: 0.023070965 + rotY: 269.982025 + rotZ: 0.013063807 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 312422 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3124': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/786356000879758511/CF3D368183597044860CA0BE0FE6A36024904675/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/786356000879757640/1B977B33065106178624452E8B37BC59D06CEC19/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Ripped Asunder + GMNotes: '' + GUID: 723cb3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Valentino Rivas + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 47.0156326 + posY: 1.51045048 + posZ: 78.41513 + rotX: 0.0232582837 + rotY: 269.9791 + rotZ: 0.01735866 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 312921 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3129': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/786356000879760156/63ACD954501B669BBDC2D64FAA3FFAE0BBEDFB7F/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/786356000879759384/E2705454B81312E1DE9058EE2389E6CD0018A169/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Woods. Spectral. + GMNotes: '' + GUID: bcd556 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Unvisited Isle + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 40.9123344 + posY: 1.35749328 + posZ: 71.92136 + rotX: 0.0208093151 + rotY: 270.0 + rotZ: 0.0167708341 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 312920 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3129': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/786356000879760156/63ACD954501B669BBDC2D64FAA3FFAE0BBEDFB7F/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/786356000879759384/E2705454B81312E1DE9058EE2389E6CD0018A169/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Woods. + GMNotes: '' + GUID: d3d507 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Unvisited Isle + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 41.2646332 + posY: 1.35677135 + posZ: 69.01775 + rotX: 0.0208094 + rotY: 269.999969 + rotZ: 0.01677059 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 312919 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3129': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/786356000879760156/63ACD954501B669BBDC2D64FAA3FFAE0BBEDFB7F/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/786356000879759384/E2705454B81312E1DE9058EE2389E6CD0018A169/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Woods. + GMNotes: '' + GUID: 7b8b0d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Unvisited Isle + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 41.24792 + posY: 1.3559593 + posZ: 66.26444 + rotX: 0.0208092351 + rotY: 269.999939 + rotZ: 0.01677058 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 312915 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3129': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/786356000879760156/63ACD954501B669BBDC2D64FAA3FFAE0BBEDFB7F/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/786356000879759384/E2705454B81312E1DE9058EE2389E6CD0018A169/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Woods. + GMNotes: '' + GUID: b6bad1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Unvisited Isle + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 41.421257 + posY: 1.35526729 + posZ: 63.68521 + rotX: 0.02080912 + rotY: 270.000031 + rotZ: 0.0167703144 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 312918 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3129': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/786356000879760156/63ACD954501B669BBDC2D64FAA3FFAE0BBEDFB7F/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/786356000879759384/E2705454B81312E1DE9058EE2389E6CD0018A169/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Woods. + GMNotes: '' + GUID: 0e7c75 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Unvisited Isle + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 37.4648628 + posY: 1.35616589 + posZ: 71.66377 + rotX: 0.02080887 + rotY: 270.0 + rotZ: 0.016770469 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 312917 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3129': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/786356000879760156/63ACD954501B669BBDC2D64FAA3FFAE0BBEDFB7F/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/786356000879759384/E2705454B81312E1DE9058EE2389E6CD0018A169/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Woods. + GMNotes: '' + GUID: '763808' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Unvisited Isle + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 37.62672 + posY: 1.35546184 + posZ: 69.0576859 + rotX: 0.02080888 + rotY: 269.999939 + rotZ: 0.016770713 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 312916 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3129': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/786356000879760156/63ACD954501B669BBDC2D64FAA3FFAE0BBEDFB7F/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/786356000879759384/E2705454B81312E1DE9058EE2389E6CD0018A169/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Woods. + GMNotes: '' + GUID: 0b9471 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Unvisited Isle + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 37.5866966 + posY: 1.35466659 + posZ: 66.39051 + rotX: 0.0208091754 + rotY: 269.999939 + rotZ: 0.0167702734 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 312914 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3129': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/786356000879760156/63ACD954501B669BBDC2D64FAA3FFAE0BBEDFB7F/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/786356000879759384/E2705454B81312E1DE9058EE2389E6CD0018A169/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Woods. + GMNotes: '' + GUID: c9aba5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Forbidding Shore + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 37.5366478 + posY: 1.35390532 + posZ: 63.8521538 + rotX: 0.0208092146 + rotY: 270.000031 + rotZ: 0.0167706981 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 312913 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3129': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/786356000879760156/63ACD954501B669BBDC2D64FAA3FFAE0BBEDFB7F/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/786356000879759384/E2705454B81312E1DE9058EE2389E6CD0018A169/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: River. + GMNotes: '' + GUID: 2c3cbf + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Miskatonic River + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 38.1635323 + posY: 1.35320079 + posZ: 60.66736 + rotX: 0.0208090059 + rotY: 270.0 + rotZ: 0.0167704616 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 312318 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/786356000879758511/CF3D368183597044860CA0BE0FE6A36024904675/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/786356000879757640/1B977B33065106178624452E8B37BC59D06CEC19/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 4 + GMNotes: '' + GUID: 69cb27 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Broken Rite + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 35.17768 + posY: 1.35963142 + posZ: 86.7354 + rotX: 0.0178930666 + rotY: 179.993759 + rotZ: 359.972076 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 312317 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/786356000879758511/CF3D368183597044860CA0BE0FE6A36024904675/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/786356000879757640/1B977B33065106178624452E8B37BC59D06CEC19/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 4 + GMNotes: '' + GUID: 8be145 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Binding Rite + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 35.28919 + posY: 1.50461233 + posZ: 86.5776749 + rotX: 0.03455867 + rotY: 179.992249 + rotZ: 359.97522 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 312316 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/786356000879758511/CF3D368183597044860CA0BE0FE6A36024904675/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/786356000879757640/1B977B33065106178624452E8B37BC59D06CEC19/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 3 + GMNotes: '' + GUID: 43e32c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Beyond the Mist (v.iv) + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 35.54324 + posY: 1.52220082 + posZ: 86.34647 + rotX: 0.0235369857 + rotY: 179.995529 + rotZ: 359.978729 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 312315 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/786356000879758511/CF3D368183597044860CA0BE0FE6A36024904675/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/786356000879757640/1B977B33065106178624452E8B37BC59D06CEC19/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 3 + GMNotes: '' + GUID: 7a14df + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Beyond the Mist (v.iii) + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 35.1743622 + posY: 1.50851762 + posZ: 86.41296 + rotX: 0.01734771 + rotY: 180.002411 + rotZ: 359.974762 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 312314 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/786356000879758511/CF3D368183597044860CA0BE0FE6A36024904675/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/786356000879757640/1B977B33065106178624452E8B37BC59D06CEC19/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 3 + GMNotes: '' + GUID: e2e22d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Beyond the Mist (v.ii) + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 43.16423 + posY: 1.50954247 + posZ: 86.83504 + rotX: 0.0198680218 + rotY: 179.9958 + rotZ: 359.976929 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 312313 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/786356000879758511/CF3D368183597044860CA0BE0FE6A36024904675/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/786356000879757640/1B977B33065106178624452E8B37BC59D06CEC19/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 3 + GMNotes: '' + GUID: ea642f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Beyond the Mist (v.i) + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 43.1273766 + posY: 1.51220691 + posZ: 86.5578461 + rotX: 0.011362901 + rotY: 180.0067 + rotZ: 359.972015 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 312312 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/786356000879758511/CF3D368183597044860CA0BE0FE6A36024904675/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/786356000879757640/1B977B33065106178624452E8B37BC59D06CEC19/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 2 + GMNotes: '' + GUID: 5a6ee0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Fated Souls + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 42.7906075 + posY: 1.51721013 + posZ: 87.14333 + rotX: 0.01583153 + rotY: 179.994324 + rotZ: 359.977234 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 312311 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/786356000879758511/CF3D368183597044860CA0BE0FE6A36024904675/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/786356000879757640/1B977B33065106178624452E8B37BC59D06CEC19/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 1 + GMNotes: '' + GUID: 105a09 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Unvisited Isle + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 42.752037 + posY: 1.52329528 + posZ: 86.70215 + rotX: 0.01787383 + rotY: 180.017426 + rotZ: 359.96228 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 312310 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/786356000879758511/CF3D368183597044860CA0BE0FE6A36024904675/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/786356000879757640/1B977B33065106178624452E8B37BC59D06CEC19/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 2 + GMNotes: '' + GUID: abace6 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Crossroads of Fate + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 44.3959923 + posY: 1.36092937 + posZ: 79.4062958 + rotX: 0.0140304007 + rotY: 179.994614 + rotZ: 359.979431 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 312309 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/786356000879758511/CF3D368183597044860CA0BE0FE6A36024904675/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/786356000879757640/1B977B33065106178624452E8B37BC59D06CEC19/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 1 + GMNotes: '' + GUID: 90788e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: "THE LOVERS \xB7 VI" + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 43.9007072 + posY: 1.5056318 + posZ: 79.3353958 + rotX: 0.00339584588 + rotY: 180.0137 + rotZ: 359.959167 + 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 + UniqueBack: false + Description: Took You Long Enough + GMNotes: '' + GUID: 726d1d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: In Way Over His Head + GMNotes: '' + GUID: d99735 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: The Nightmare is Over + GMNotes: '' + GUID: 73bccf + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: Not Going Down That Easily + GMNotes: '' + GUID: 2237f4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Gavriella Mizrah + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 39.57738 + posY: 1.50494421 + posZ: 68.4328 + rotX: 0.0214901268 + rotY: 269.9998 + rotZ: 0.0151574323 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 312408 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3124': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/786356000879758511/CF3D368183597044860CA0BE0FE6A36024904675/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/786356000879757640/1B977B33065106178624452E8B37BC59D06CEC19/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Union and Disillusion + GMNotes: '' + GUID: 976ab3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Scenario + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 51.36321 + posY: 1.64233434 + posZ: 79.35717 + rotX: 0.020547973 + rotY: 269.991333 + rotZ: 0.0166048631 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '3123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/786356000879758511/CF3D368183597044860CA0BE0FE6A36024904675/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/786356000879757640/1B977B33065106178624452E8B37BC59D06CEC19/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + '3124': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/786356000879758511/CF3D368183597044860CA0BE0FE6A36024904675/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/786356000879757640/1B977B33065106178624452E8B37BC59D06CEC19/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + '3125': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/786356000879761873/F22612DB451928DCA4344F3F125F5A8CE128A817/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '3126': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/786356000879761873/F22612DB451928DCA4344F3F125F5A8CE128A817/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '3129': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/786356000879760156/63ACD954501B669BBDC2D64FAA3FFAE0BBEDFB7F/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/786356000879759384/E2705454B81312E1DE9058EE2389E6CD0018A169/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 312619 +- 312619 +- 312617 +- 312617 +- 312620 +- 312620 +- 312618 +- 312618 +- 312615 +- 312615 +- 312621 +- 312616 +- 312616 +- 312616 +- 312616 +- 312421 +- 312420 +- 312419 +- 312422 +- 312921 +- 312920 +- 312919 +- 312915 +- 312918 +- 312917 +- 312916 +- 312914 +- 312913 +- 312318 +- 312317 +- 312316 +- 312315 +- 312314 +- 312313 +- 312312 +- 312311 +- 312310 +- 312309 +- 312514 +- 312512 +- 312513 +- 312511 +- 312408 +Description: '' +GMNotes: '' +GUID: 44852b +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Union and Disillusion +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 21.28014 + posY: 3.741153 + posZ: -3.191059 + rotX: 0.156437472 + rotY: 269.98584 + rotZ: 0.3335373 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Circle Undone 9f8184/Deck Wages of Sin a49618.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Circle Undone 9f8184/Deck Wages of Sin a49618.yaml new file mode 100644 index 000000000..b45961540 --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Circle Undone 9f8184/Deck Wages of Sin a49618.yaml @@ -0,0 +1,1791 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- 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 + UniqueBack: false + Description: Spell. + GMNotes: '' + GUID: '550697' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Spectral Web + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 28.41885 + posY: 1.347801 + posZ: 54.34455 + rotX: 0.0202481523 + rotY: 270.007416 + rotZ: 0.0163530763 + 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 + UniqueBack: false + Description: Spell. + GMNotes: '' + GUID: 8fe838 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Spectral Web + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 28.0886059 + posY: 1.3968327 + posZ: 54.9196 + rotX: 359.890167 + rotY: 270.0158 + rotZ: 0.145918369 + 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 + UniqueBack: false + Description: Spell. + GMNotes: '' + GUID: d6ed28 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Spectral Web + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 28.1784782 + posY: 1.51447129 + posZ: 54.86489 + rotX: 359.7677 + rotY: 270.000275 + rotZ: 0.723122358 + 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 + UniqueBack: false + Description: Spell. + GMNotes: '' + GUID: 863f1a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Spectral Web + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 28.178833 + posY: 1.64946806 + posZ: 54.8634758 + rotX: 359.687927 + rotY: 270.0059 + rotZ: 0.7284264 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 276042 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2760': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/829135524527100186/0D63305581E65C95F286CCA4902B7DE796D815BD/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524527103742/0C4DB40889420CFE47BE897944621ABF2ECA52F9/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 5bcc5d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Heretics' Graves + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -0.640074134 + posY: 1.33801258 + posZ: 57.0892334 + rotX: 0.0185047928 + rotY: 270.000244 + rotZ: 0.01564527 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 276041 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2760': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/829135524527100186/0D63305581E65C95F286CCA4902B7DE796D815BD/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524527103742/0C4DB40889420CFE47BE897944621ABF2ECA52F9/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 34b9e9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Heretics' Graves + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -0.6717363 + posY: 1.47689736 + posZ: 56.85687 + rotX: 0.008355301 + rotY: 270.0011 + rotZ: 0.0324105471 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 276044 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2760': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/829135524527100186/0D63305581E65C95F286CCA4902B7DE796D815BD/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524527103742/0C4DB40889420CFE47BE897944621ABF2ECA52F9/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: e2ad21 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Chapel Crypt + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -0.7246124 + posY: 1.33956921 + posZ: 62.7498 + rotX: 0.0201692432 + rotY: 269.986847 + rotZ: 0.0256912541 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 276043 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2760': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/829135524527100186/0D63305581E65C95F286CCA4902B7DE796D815BD/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524527103742/0C4DB40889420CFE47BE897944621ABF2ECA52F9/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 06bdb3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Chapel Crypt + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -0.9807587 + posY: 1.4784745 + posZ: 62.7426033 + rotX: 0.0258048028 + rotY: 269.98465 + rotZ: 0.0384747237 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 276046 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2760': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/829135524527100186/0D63305581E65C95F286CCA4902B7DE796D815BD/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524527103742/0C4DB40889420CFE47BE897944621ABF2ECA52F9/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: e2b8fc + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Chapel Attic + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.20224547 + posY: 1.3386091 + posZ: 54.53733 + rotX: 0.0158334151 + rotY: 270.0002 + rotZ: 0.0147467721 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 276045 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2760': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/829135524527100186/0D63305581E65C95F286CCA4902B7DE796D815BD/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524527103742/0C4DB40889420CFE47BE897944621ABF2ECA52F9/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 55d8f1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Chapel Attic + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.92054081 + posY: 1.48355544 + posZ: 54.6950874 + rotX: 0.024328677 + rotY: 269.999878 + rotZ: 0.007432685 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 276038 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2760': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/829135524527100186/0D63305581E65C95F286CCA4902B7DE796D815BD/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524527103742/0C4DB40889420CFE47BE897944621ABF2ECA52F9/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 64b0a5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Abandoned Chapel + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -0.924062133 + posY: 1.48575938 + posZ: 60.31269 + rotX: 0.02166751 + rotY: 269.999756 + rotZ: 0.0150301587 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 276040 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2760': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/829135524527100186/0D63305581E65C95F286CCA4902B7DE796D815BD/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524527103742/0C4DB40889420CFE47BE897944621ABF2ECA52F9/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 1042cb + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Gallows + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.07863522 + posY: 1.34016728 + posZ: 59.87714 + rotX: 0.0176142585 + rotY: 270.000031 + rotZ: 0.0153047452 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 276039 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2760': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/829135524527100186/0D63305581E65C95F286CCA4902B7DE796D815BD/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524527103742/0C4DB40889420CFE47BE897944621ABF2ECA52F9/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 62d69d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Gallows + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.656777 + posY: 1.48518419 + posZ: 60.1308 + rotX: 0.0148837613 + rotY: 270.0003 + rotZ: -0.00393713545 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 276037 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2760': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/829135524527100186/0D63305581E65C95F286CCA4902B7DE796D815BD/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524527103742/0C4DB40889420CFE47BE897944621ABF2ECA52F9/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 9471f2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Haunted Fields + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.07879758 + posY: 1.34192348 + posZ: 65.56663 + rotX: 0.016396286 + rotY: 270.0006 + rotZ: 0.0136567112 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 276036 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2760': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/829135524527100186/0D63305581E65C95F286CCA4902B7DE796D815BD/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524527103742/0C4DB40889420CFE47BE897944621ABF2ECA52F9/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 6d3a3b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Hangman's Brook + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.00654054 + posY: 1.48701429 + posZ: 65.3473053 + rotX: -0.002378439 + rotY: 270.0163 + rotZ: 0.0244021732 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 275435 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2754': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/829135524526797029/1F8A6C29028AED32DB44E4CF22E3120C417F413D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526785922/F34A644AC467C751B6D7B8AF398B8FDB07CCF6A0/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Monster. Geist. Witch. Spectral. Elite. + GMNotes: '' + GUID: 13d3f3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Heretic + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.5071 + posY: 1.34559619 + posZ: 61.5575562 + rotX: 0.0208071545 + rotY: 270.0 + rotZ: 0.0167729761 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 275436 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2754': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/829135524526797029/1F8A6C29028AED32DB44E4CF22E3120C417F413D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526785922/F34A644AC467C751B6D7B8AF398B8FDB07CCF6A0/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Monster. Geist. Witch. Spectral. Elite. + GMNotes: '' + GUID: 71e37c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Heretic + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.4758682 + posY: 1.34500444 + posZ: 58.9735146 + rotX: 0.027376866 + rotY: 269.998535 + rotZ: 0.019387 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 275434 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2754': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/829135524526797029/1F8A6C29028AED32DB44E4CF22E3120C417F413D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526785922/F34A644AC467C751B6D7B8AF398B8FDB07CCF6A0/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Monster. Geist. Witch. Spectral. Elite. + GMNotes: '' + GUID: 6f896e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Heretic + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.4763718 + posY: 1.34412086 + posZ: 56.5552368 + rotX: 0.0208079629 + rotY: 270.0 + rotZ: 0.0167719 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 275438 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2754': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/829135524526797029/1F8A6C29028AED32DB44E4CF22E3120C417F413D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526785922/F34A644AC467C751B6D7B8AF398B8FDB07CCF6A0/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Monster. Geist. Witch. Spectral. Elite. + GMNotes: '' + GUID: 962a85 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Heretic + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 13.2133646 + posY: 1.34292543 + posZ: 56.51944 + rotX: 0.0208042227 + rotY: 270.000031 + rotZ: 0.0167716611 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 275437 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2754': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/829135524526797029/1F8A6C29028AED32DB44E4CF22E3120C417F413D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526785922/F34A644AC467C751B6D7B8AF398B8FDB07CCF6A0/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Monster. Geist. Witch. Spectral. Elite. + GMNotes: '' + GUID: 6d6a42 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Heretic + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 13.0830288 + posY: 1.34435523 + posZ: 61.5660324 + rotX: 0.02080735 + rotY: 270.0 + rotZ: 0.0167676 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 275433 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2754': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/829135524526797029/1F8A6C29028AED32DB44E4CF22E3120C417F413D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526785922/F34A644AC467C751B6D7B8AF398B8FDB07CCF6A0/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Monster. Geist. Witch. Spectral. Elite. + GMNotes: '' + GUID: 6c0d7e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Heretic + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 13.3551321 + posY: 1.34373021 + posZ: 59.03893 + rotX: 0.022275405 + rotY: 270.000916 + rotZ: 0.0167769566 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 275535 + 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/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Geist. Spectral. + GMNotes: '' + GUID: f65ded + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Malevolent Spirit + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 11.62752 + posY: 1.34018648 + posZ: 49.2051239 + rotX: 0.02274684 + rotY: 270.0 + rotZ: 0.0170134865 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 275535 + 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/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Geist. Spectral. + GMNotes: '' + GUID: d02d98 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Malevolent Spirit + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 11.821311 + posY: 1.47923779 + posZ: 49.2144356 + rotX: 0.0169131979 + rotY: 269.999817 + rotZ: 0.0151554327 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 275534 + 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/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Witch. + GMNotes: '' + GUID: de0939 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Vengeful Witch + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 11.7847424 + posY: 1.34110641 + posZ: 52.07729 + rotX: 0.0207291655 + rotY: 269.982758 + rotZ: 0.01682211 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 275534 + 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/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Witch. + GMNotes: '' + GUID: '801539' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Vengeful Witch + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 11.8467007 + posY: 1.48010254 + posZ: 51.81632 + rotX: 0.0149586685 + rotY: 269.982483 + rotZ: 0.0217985548 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 275536 + 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/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: ad69c7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Punishment + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 19.40219 + posY: 1.34403968 + posZ: 52.6477 + rotX: 0.0208171587 + rotY: 269.9707 + rotZ: 0.0167593136 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 275536 + 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/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: 832e11 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Punishment + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 19.4425049 + posY: 1.49075043 + posZ: 52.53749 + rotX: 0.0168869942 + rotY: 269.9707 + rotZ: 0.01725625 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 275538 + 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/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: 0fc433 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ominous Portents + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 15.5294752 + posY: 1.34248006 + posZ: 52.47316 + rotX: 0.015629 + rotY: 269.982422 + rotZ: 0.0147842215 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 275538 + 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/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: 8767b5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ominous Portents + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 15.5567713 + posY: 1.48118174 + posZ: 52.53753 + rotX: 0.0234855525 + rotY: 269.971039 + rotZ: -0.000177135516 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 275539 + 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/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Curse. + GMNotes: '' + GUID: 716bb1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Grave-Light + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 15.4475288 + posY: 1.34161592 + posZ: 49.3494568 + rotX: 0.0195411555 + rotY: 269.9999 + rotZ: 0.0161290076 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 275539 + 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/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Curse. + GMNotes: '' + GUID: 84bbd0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Grave-Light + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 15.3969 + posY: 1.480602 + posZ: 49.3430138 + rotX: 0.009779532 + rotY: 270.000031 + rotZ: 0.0111978985 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 275537 + 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/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Curse. Spectral. + GMNotes: '' + GUID: f3088f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Burdens of the Past + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 19.348135 + posY: 1.34308982 + posZ: 49.4695244 + rotX: 0.0208083689 + rotY: 269.999939 + rotZ: 0.016773127 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 275537 + 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/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Curse. Spectral. + GMNotes: '' + GUID: 199d00 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Burdens of the Past + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 19.7362137 + posY: 1.48991609 + posZ: 49.7073021 + rotX: 0.02080652 + rotY: 270.0 + rotZ: 0.016772056 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 275540 + 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/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Curse. Spectral. + GMNotes: '' + GUID: d9c83e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Bane of the Living + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 18.8998852 + posY: 1.34535193 + posZ: 57.80915 + rotX: 0.0197666436 + rotY: 269.982483 + rotZ: 0.0161919389 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 275540 + 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/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Curse. Spectral. + GMNotes: '' + GUID: 9b05f2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Bane of the Living + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 18.9274578 + posY: 1.48436987 + posZ: 57.91775 + rotX: 0.009005943 + rotY: 269.9824 + rotZ: 0.0125519047 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 275332 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2753': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/829135524526797029/1F8A6C29028AED32DB44E4CF22E3120C417F413D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526785922/F34A644AC467C751B6D7B8AF398B8FDB07CCF6A0/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 2 + GMNotes: '' + GUID: ca12dd + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: In Pursuit of the Living + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 29.15592 + posY: 1.34646809 + posZ: 49.01146 + rotX: 0.0136854285 + rotY: 179.9997 + rotZ: 359.9776 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 275331 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2753': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/829135524526797029/1F8A6C29028AED32DB44E4CF22E3120C417F413D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526785922/F34A644AC467C751B6D7B8AF398B8FDB07CCF6A0/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 1 + GMNotes: '' + GUID: 70fcce + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: In Pursuit of the Dead + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 28.7154121 + posY: 1.4910543 + posZ: 49.2659225 + rotX: 0.0129829422 + rotY: 180.0006 + rotZ: 359.928925 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 275330 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2753': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/829135524526797029/1F8A6C29028AED32DB44E4CF22E3120C417F413D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526785922/F34A644AC467C751B6D7B8AF398B8FDB07CCF6A0/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 2 + GMNotes: '' + GUID: 57bcb8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Death's Approach + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 29.4476528 + posY: 1.34756792 + posZ: 52.4735947 + rotX: 0.0133047355 + rotY: 179.9995 + rotZ: 359.978241 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 275329 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2753': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/829135524526797029/1F8A6C29028AED32DB44E4CF22E3120C417F413D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526785922/F34A644AC467C751B6D7B8AF398B8FDB07CCF6A0/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 1 + GMNotes: '' + GUID: 0e45a9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: "THE HANGED MAN \xB7 XII" + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 29.4080963 + posY: 1.49256372 + posZ: 52.60277 + rotX: 0.0171353649 + rotY: 180.001144 + rotZ: 359.970551 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 275428 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2754': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/829135524526797029/1F8A6C29028AED32DB44E4CF22E3120C417F413D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526785922/F34A644AC467C751B6D7B8AF398B8FDB07CCF6A0/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: The Wages of Sin + GMNotes: '' + GUID: ac274f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Scenario + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 63.71839 + posY: 1.51175869 + posZ: 68.67019 + rotX: 0.0169762634 + rotY: 179.999557 + rotZ: 359.9855 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2753': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/829135524526797029/1F8A6C29028AED32DB44E4CF22E3120C417F413D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526785922/F34A644AC467C751B6D7B8AF398B8FDB07CCF6A0/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + '2754': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/829135524526797029/1F8A6C29028AED32DB44E4CF22E3120C417F413D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526785922/F34A644AC467C751B6D7B8AF398B8FDB07CCF6A0/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + '2755': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '2757': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '2760': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/829135524527100186/0D63305581E65C95F286CCA4902B7DE796D815BD/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524527103742/0C4DB40889420CFE47BE897944621ABF2ECA52F9/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 275733 +- 275733 +- 275733 +- 275733 +- 276042 +- 276041 +- 276044 +- 276043 +- 276046 +- 276045 +- 276038 +- 276040 +- 276039 +- 276037 +- 276036 +- 275435 +- 275436 +- 275434 +- 275438 +- 275437 +- 275433 +- 275535 +- 275535 +- 275534 +- 275534 +- 275536 +- 275536 +- 275538 +- 275538 +- 275539 +- 275539 +- 275537 +- 275537 +- 275540 +- 275540 +- 275332 +- 275331 +- 275330 +- 275329 +- 275428 +Description: '' +GMNotes: '' +GUID: a49618 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Wages of Sin +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 51.50681 + posY: 3.531822 + posZ: 53.3611679 + rotX: 358.080017 + rotY: 270.026917 + rotZ: 359.2708 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Circle Undone 9f8184/Deck Witchcraft b228e7.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Circle Undone 9f8184/Deck Witchcraft b228e7.yaml new file mode 100644 index 000000000..8305db0b3 --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Circle Undone 9f8184/Deck Witchcraft b228e7.yaml @@ -0,0 +1,344 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 231808 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: 4949ea + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Wracked + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -17.71135 + posY: 1.56800044 + posZ: -33.49924 + rotX: 359.9177 + rotY: 269.978638 + rotZ: 0.0161360279 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231808 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: c8092b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Wracked + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -17.80855 + posY: 1.71239948 + posZ: -33.79921 + rotX: 359.910339 + rotY: 269.97876 + rotZ: 0.03349457 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231809 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: a558b5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Bedeviled + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -17.6637516 + posY: 1.7296617 + posZ: -33.73086 + rotX: 359.9201 + rotY: 269.978882 + rotZ: 0.0205486864 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231809 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: f7c676 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Bedeviled + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -18.1656151 + posY: 1.716761 + posZ: -33.74088 + rotX: 359.918976 + rotY: 269.9787 + rotZ: 0.018134892 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231807 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Curse. + GMNotes: '' + GUID: 407e66 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Diabolic Voices + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -18.0510273 + posY: 1.71469259 + posZ: -33.44395 + rotX: 359.919128 + rotY: 269.978668 + rotZ: 0.0163030848 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231807 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Curse. + GMNotes: '' + GUID: 64341a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Diabolic Voices + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -17.73656 + posY: 1.71689022 + posZ: -33.5350227 + rotX: 359.918945 + rotY: 269.979126 + rotZ: 0.0171701312 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231807 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Curse. + GMNotes: '' + GUID: 0fa642 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Diabolic Voices + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -18.055851 + posY: 1.72234285 + posZ: -33.4770279 + rotX: 359.9191 + rotY: 269.978851 + rotZ: 0.0164938 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 231808 +- 231808 +- 231809 +- 231809 +- 231807 +- 231807 +- 231807 +Description: '' +GMNotes: '' +GUID: b228e7 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Witchcraft +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -16.2720413 + posY: 2.41710973 + posZ: -80.08603 + rotX: 359.920135 + rotY: 269.976929 + rotZ: 0.0169012044 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Dream-Eaters 587028.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Dream-Eaters 587028.yaml new file mode 100644 index 000000000..a985a0d0c --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Dream-Eaters 587028.yaml @@ -0,0 +1,54 @@ +Autoraise: true +ColorDiffuse: + b: 0.0 + g: 0.366520882 + r: 0.7058823 +ContainedObjects: +- !include 'Bag The Dream-Eaters 587028/Deck Weaver of the Cosmos 7b15a1.yaml' +- !include 'Bag The Dream-Eaters 587028/Deck Dark Side of the Moon 0a8e6a.yaml' +- !include 'Bag The Dream-Eaters 587028/Deck Point of No Return 5914f3.yaml' +- !include 'Bag The Dream-Eaters 587028/Deck Terror of the Vale f24354.yaml' +- !include 'Bag The Dream-Eaters 587028/Deck The Search for Kadath 44e380.yaml' +- !include 'Bag The Dream-Eaters 587028/Deck Descent into the Pitch 0bc778.yaml' +- !include 'Bag The Dream-Eaters 587028/Deck Zoogs f8f47a.yaml' +- !include 'Bag The Dream-Eaters 587028/Deck Corsairs c8eafb.yaml' +- !include 'Bag The Dream-Eaters 587028/Deck Spiders 1b1ba7.yaml' +- !include 'Bag The Dream-Eaters 587028/Deck Merging Realities b57f65.yaml' +- !include 'Bag The Dream-Eaters 587028/Deck Dreamlands 88fed7.yaml' +- !include "Bag The Dream-Eaters 587028/Deck Dreamer\u2019s Curse 21d194.yaml" +- !include 'Bag The Dream-Eaters 587028/Deck Creatures of the Underworld 77da71.yaml' +- !include 'Bag The Dream-Eaters 587028/Deck Whispers of Hypnos ba5b9b.yaml' +- !include 'Bag The Dream-Eaters 587028/Deck Agents of Nyarlathotep 5e9f95.yaml' +- !include 'Bag The Dream-Eaters 587028/Deck Agents of Atlach-Nacha 68d1f4.yaml' +- !include 'Bag The Dream-Eaters 587028/Deck Waking Nightmare 5b1a32.yaml' +- !include 'Bag The Dream-Eaters 587028/Deck Beyond the Gates of Sleep 2ac11a.yaml' +- !include 'Bag The Dream-Eaters 587028/Deck Where the Gods Dwell 9af347.yaml' +Description: '' +GMNotes: '' +GUID: '587028' +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +MeshIndex: -1 +Name: Bag +Nickname: The Dream-Eaters +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 26.0460072 + posY: 2.108487 + posZ: -57.6553574 + rotX: 359.982635 + rotY: 315.000427 + rotZ: 359.9887 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Dream-Eaters 587028/Deck Agents of Atlach-Nacha 68d1f4.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Dream-Eaters 587028/Deck Agents of Atlach-Nacha 68d1f4.yaml new file mode 100644 index 000000000..04a4a0b38 --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Dream-Eaters 587028/Deck Agents of Atlach-Nacha 68d1f4.yaml @@ -0,0 +1,215 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 274109 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2741': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Spider. + GMNotes: '' + GUID: 621de5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Grey Weaver + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -16.29789 + posY: 1.33173692 + posZ: 54.9044876 + rotX: 0.0208100639 + rotY: 270.000061 + rotZ: 0.0168662574 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274109 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2741': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Spider. + GMNotes: '' + GUID: b126fb + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Grey Weaver + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -16.12129 + posY: 1.49274647 + posZ: 55.211235 + rotX: 0.018673053 + rotY: 270.000061 + rotZ: 0.0111498982 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274110 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2741': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Power. + GMNotes: '' + GUID: '924656' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Will of the Spider-Mother + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -16.3824444 + posY: 1.50997329 + posZ: 55.3458862 + rotX: 0.0223769117 + rotY: 270.0001 + rotZ: 0.0136615671 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274110 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2741': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Power. + GMNotes: '' + GUID: 50e06a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Will of the Spider-Mother + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -16.24422 + posY: 1.49625111 + posZ: 54.82901 + rotX: 0.02021771 + rotY: 270.0001 + rotZ: 0.01658786 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2741': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 274109 +- 274109 +- 274110 +- 274110 +Description: '' +GMNotes: '' +GUID: 68d1f4 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Agents of Atlach-Nacha +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 12.861681 + posY: 2.54757023 + posZ: -11.5137253 + rotX: 0.02080759 + rotY: 270.000183 + rotZ: 0.0167682469 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Dream-Eaters 587028/Deck Agents of Nyarlathotep 5e9f95.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Dream-Eaters 587028/Deck Agents of Nyarlathotep 5e9f95.yaml new file mode 100644 index 000000000..4dca8fdff --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Dream-Eaters 587028/Deck Agents of Nyarlathotep 5e9f95.yaml @@ -0,0 +1,215 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 274113 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2741': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: 48601c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Law of 'Ygiroth (Discord) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -1.349257 + posY: 1.33509922 + posZ: 56.99563 + rotX: 0.04734984 + rotY: 270.0003 + rotZ: 359.83844 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274112 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2741': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: fc58cb + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Law of 'Ygiroth (Chaos) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -0.8192207 + posY: 1.47842848 + posZ: 56.2326355 + rotX: 359.92807 + rotY: 269.996246 + rotZ: 0.356809825 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274114 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2741': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: bf7d6b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Law of 'Ygiroth (Pandemonium) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -0.465582937 + posY: 1.62316334 + posZ: 55.9808464 + rotX: 359.928467 + rotY: 269.997772 + rotZ: 0.4196703 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274111 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2741': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Avatar. + GMNotes: '' + GUID: aa76f7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Crawling Mist + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -9.443407 + posY: 1.48961806 + posZ: 77.092 + rotX: 0.0185354967 + rotY: 269.997528 + rotZ: 0.0155661078 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2741': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 274113 +- 274112 +- 274114 +- 274111 +Description: '' +GMNotes: '' +GUID: 5e9f95 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Agents of Nyarlathotep +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 13.1791115 + posY: 2.54663825 + posZ: -15.0911255 + rotX: 0.0208085012 + rotY: 269.997467 + rotZ: 0.0167674385 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Dream-Eaters 587028/Deck Beyond the Gates of Sleep 2ac11a.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Dream-Eaters 587028/Deck Beyond the Gates of Sleep 2ac11a.yaml new file mode 100644 index 000000000..eeb6c9b01 --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Dream-Eaters 587028/Deck Beyond the Gates of Sleep 2ac11a.yaml @@ -0,0 +1,1139 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 274103 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2741': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Blunder. + GMNotes: '' + GUID: 9d4ff1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Lost in the Woods + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -31.0618763 + posY: 1.33315682 + posZ: 78.07473 + rotX: 0.0207943339 + rotY: 270.000916 + rotZ: 0.016868405 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274103 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2741': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Blunder. + GMNotes: '' + GUID: 6b5d95 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Lost in the Woods + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -31.180912 + posY: 1.56490433 + posZ: 78.51943 + rotX: 357.415161 + rotY: 269.97345 + rotZ: 0.0168789923 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274102 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2741': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Creature. Zoog. Elite. + GMNotes: '' + GUID: 7146a7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ancient Zoog + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -31.11579 + posY: 1.511337 + posZ: 78.0512161 + rotX: 0.0207442064 + rotY: 269.999481 + rotZ: 0.0162532236 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274101 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2741': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Gug. + GMNotes: '' + GUID: 8e60f7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Laboring Gug + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -31.1521 + posY: 1.49767017 + posZ: 78.17195 + rotX: 0.0216302536 + rotY: 269.999451 + rotZ: 0.0157054011 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274409 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2744': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493383646804247/225C1675DCFAFA6331AF23D73934CE52544F4863/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646805159/968F84A126D57214C3BC8E095D9D8EB066ED8D6C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Woods. + GMNotes: '' + GUID: 2273ef + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Enchanted Woods + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 11.3208895 + posY: 1.34967482 + posZ: 81.9591141 + rotX: 0.0214311946 + rotY: 270.0001 + rotZ: 0.01675465 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274410 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2744': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493383646804247/225C1675DCFAFA6331AF23D73934CE52544F4863/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646805159/968F84A126D57214C3BC8E095D9D8EB066ED8D6C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Woods. + GMNotes: '' + GUID: 8c287b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Enchanted Woods + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 10.730341 + posY: 1.34856832 + posZ: 78.96077 + rotX: 0.02225554 + rotY: 270.000061 + rotZ: 0.0160993673 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274411 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2744': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493383646804247/225C1675DCFAFA6331AF23D73934CE52544F4863/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646805159/968F84A126D57214C3BC8E095D9D8EB066ED8D6C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Woods. + GMNotes: '' + GUID: c9a005 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Enchanted Woods + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 10.74197 + posY: 1.50936007 + posZ: 78.63401 + rotX: 0.025595963 + rotY: 269.999939 + rotZ: 0.0181019027 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274408 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2744': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493383646804247/225C1675DCFAFA6331AF23D73934CE52544F4863/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646805159/968F84A126D57214C3BC8E095D9D8EB066ED8D6C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Woods. + GMNotes: '' + GUID: 92e96b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Enchanted Woods + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 11.0385885 + posY: 1.51421273 + posZ: 82.32444 + rotX: 0.0207167864 + rotY: 269.999969 + rotZ: 0.0164234322 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274412 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2744': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493383646804247/225C1675DCFAFA6331AF23D73934CE52544F4863/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646805159/968F84A126D57214C3BC8E095D9D8EB066ED8D6C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Woods. + GMNotes: '' + GUID: 2157cc + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Enchanted Woods + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 11.1983557 + posY: 1.51204073 + posZ: 81.4997253 + rotX: 0.0207964126 + rotY: 270.000031 + rotZ: 0.01663089 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274406 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2744': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493383646804247/225C1675DCFAFA6331AF23D73934CE52544F4863/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646805159/968F84A126D57214C3BC8E095D9D8EB066ED8D6C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Woods. + GMNotes: '' + GUID: b3fcf5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Enchanted Woods + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 11.2278843 + posY: 1.51466763 + posZ: 81.37391 + rotX: 0.0207865778 + rotY: 270.000031 + rotZ: 0.0166790374 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274407 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2744': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493383646804247/225C1675DCFAFA6331AF23D73934CE52544F4863/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646805159/968F84A126D57214C3BC8E095D9D8EB066ED8D6C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Woods. + GMNotes: '' + GUID: 14f2fe + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Enchanted Woods + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 11.2402306 + posY: 1.51973093 + posZ: 81.57685 + rotX: 0.0207787622 + rotY: 270.000031 + rotZ: 0.0166336931 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274413 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2744': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493383646804247/225C1675DCFAFA6331AF23D73934CE52544F4863/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646805159/968F84A126D57214C3BC8E095D9D8EB066ED8D6C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Priest of the Dreamlands + GMNotes: '' + GUID: 05c3cf + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Kaman-Thah + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -33.8396835 + posY: 1.33450639 + posZ: 86.13616 + rotX: 0.02080881 + rotY: 270.000031 + rotZ: 0.0167669337 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274414 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2744': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493383646804247/225C1675DCFAFA6331AF23D73934CE52544F4863/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646805159/968F84A126D57214C3BC8E095D9D8EB066ED8D6C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Priest of the Dreamlands + GMNotes: '' + GUID: '022252' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Nasht + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -37.7209358 + posY: 1.33305538 + posZ: 85.99486 + rotX: 0.0208078586 + rotY: 270.000061 + rotZ: 0.01676801 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274200 + 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/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Expert Dreamer + GMNotes: '' + GUID: b04c8e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Randolph Carter + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -23.8162079 + posY: 1.46390891 + posZ: 78.64897 + rotX: 0.01844234 + rotY: 269.999969 + rotZ: 0.0119078709 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274405 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2744': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493383646804247/225C1675DCFAFA6331AF23D73934CE52544F4863/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646805159/968F84A126D57214C3BC8E095D9D8EB066ED8D6C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Woods. + GMNotes: '' + GUID: '865877' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Enchanted Path + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -8.096988 + posY: 1.34103143 + posZ: 76.48879 + rotX: 0.0208073352 + rotY: 270.000031 + rotZ: 0.0167685114 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274404 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2744': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493383646804247/225C1675DCFAFA6331AF23D73934CE52544F4863/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646805159/968F84A126D57214C3BC8E095D9D8EB066ED8D6C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Steps. Woods. + GMNotes: '' + GUID: fd0987 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Base of the Steps + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -11.6711855 + posY: 1.34340751 + posZ: 79.39706 + rotX: 0.0208099 + rotY: 269.999969 + rotZ: 180.016769 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274403 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2744': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493383646804247/225C1675DCFAFA6331AF23D73934CE52544F4863/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646805159/968F84A126D57214C3BC8E095D9D8EB066ED8D6C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Of Deeper Slumber + GMNotes: '' + GUID: 178d2e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Seven Hundred Steps + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -7.84155846 + posY: 1.34480178 + posZ: 79.4089 + rotX: 0.0208016951 + rotY: 270.027954 + rotZ: 180.016785 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274401 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2744': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493383646804247/225C1675DCFAFA6331AF23D73934CE52544F4863/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646805159/968F84A126D57214C3BC8E095D9D8EB066ED8D6C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Of Lighter Slumber + GMNotes: '' + GUID: 109bcc + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Seventy Steps + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -11.5056076 + posY: 1.3443507 + posZ: 82.41359 + rotX: 0.0208105016 + rotY: 270.0 + rotZ: 180.016769 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274402 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2744': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493383646804247/225C1675DCFAFA6331AF23D73934CE52544F4863/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646805159/968F84A126D57214C3BC8E095D9D8EB066ED8D6C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Cave. Steps. + GMNotes: '' + GUID: 1c782d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Cavern of Flame + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -12.144722 + posY: 1.3423245 + posZ: 76.28457 + rotX: 0.0208099745 + rotY: 269.999939 + rotZ: 180.016769 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274604 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2746': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/780749631103001215/3FF9DC51D7737267B68EC5D9CF17BE421681663B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780749631102998699/DA1D7C58FE177F46169558EF1D8301754A91A73A/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 4 + GMNotes: '' + GUID: 1a73d9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Path + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 10.0948944 + posY: 1.3447535 + posZ: 67.0647 + rotX: 0.0179916173 + rotY: 180.000031 + rotZ: 359.970825 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274603 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2746': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/780749631103001215/3FF9DC51D7737267B68EC5D9CF17BE421681663B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780749631102998699/DA1D7C58FE177F46169558EF1D8301754A91A73A/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 3 + GMNotes: '' + GUID: cb1b4c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Final Descent + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 12.9396162 + posY: 1.34593678 + posZ: 67.16008 + rotX: 0.0168030355 + rotY: 180.000122 + rotZ: 359.979675 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274602 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2746': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/780749631103001215/3FF9DC51D7737267B68EC5D9CF17BE421681663B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780749631102998699/DA1D7C58FE177F46169558EF1D8301754A91A73A/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 2 + GMNotes: '' + GUID: 35d44c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Trial of Nasht and Kaman-Thah + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 15.7495937 + posY: 1.34698546 + posZ: 67.27658 + rotX: 0.0168732964 + rotY: 180.0 + rotZ: 359.978546 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274601 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2746': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/780749631103001215/3FF9DC51D7737267B68EC5D9CF17BE421681663B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780749631102998699/DA1D7C58FE177F46169558EF1D8301754A91A73A/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 1 + GMNotes: '' + GUID: e3c505 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Entering the Dreamlands + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 15.5268631 + posY: 1.507782 + posZ: 67.3158 + rotX: 0.0190613121 + rotY: 179.999985 + rotZ: 359.9761 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274600 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2746': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/780749631103001215/3FF9DC51D7737267B68EC5D9CF17BE421681663B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780749631102998699/DA1D7C58FE177F46169558EF1D8301754A91A73A/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 1 + GMNotes: '' + GUID: 8f14c1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Journey through the Gates + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 18.42238 + posY: 1.51031184 + posZ: 66.67833 + rotX: 0.0167222861 + rotY: 179.999878 + rotZ: 359.977661 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274400 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2744': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493383646804247/225C1675DCFAFA6331AF23D73934CE52544F4863/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646805159/968F84A126D57214C3BC8E095D9D8EB066ED8D6C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Beyond the Gates of Sleep + GMNotes: '' + GUID: f9cdda + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Scenario + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -20.7575016 + posY: 1.48865664 + posZ: 82.38442 + rotX: 0.0134242624 + rotY: 180.0 + rotZ: 359.983337 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2741': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '2742': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '2744': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493383646804247/225C1675DCFAFA6331AF23D73934CE52544F4863/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646805159/968F84A126D57214C3BC8E095D9D8EB066ED8D6C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + '2746': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/780749631103001215/3FF9DC51D7737267B68EC5D9CF17BE421681663B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780749631102998699/DA1D7C58FE177F46169558EF1D8301754A91A73A/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 274103 +- 274103 +- 274102 +- 274101 +- 274409 +- 274410 +- 274411 +- 274408 +- 274412 +- 274406 +- 274407 +- 274413 +- 274414 +- 274200 +- 274405 +- 274404 +- 274403 +- 274401 +- 274402 +- 274604 +- 274603 +- 274602 +- 274601 +- 274600 +- 274400 +Description: '' +GMNotes: '' +GUID: 2ac11a +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Beyond the Gates of Sleep +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 5.764492 + posY: 3.46665215 + posZ: 69.55202 + rotX: 0.0208065771 + rotY: 270.001038 + rotZ: 0.0167667214 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Dream-Eaters 587028/Deck Corsairs c8eafb.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Dream-Eaters 587028/Deck Corsairs c8eafb.yaml new file mode 100644 index 000000000..cb87c34a1 --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Dream-Eaters 587028/Deck Corsairs c8eafb.yaml @@ -0,0 +1,215 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 274129 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2741': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Scheme. + GMNotes: '' + GUID: d30166 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Hunted by Corsairs + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.618349552 + posY: 1.33599377 + posZ: 48.4793968 + rotX: 0.0208535511 + rotY: 269.999329 + rotZ: 0.0164909977 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274129 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2741': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Scheme. + GMNotes: '' + GUID: 4f56f1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Hunted by Corsairs + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 1.0404532 + posY: 1.501844 + posZ: 48.57248 + rotX: 0.02128441 + rotY: 269.999329 + rotZ: 0.01625457 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274130 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2741': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Monster. + GMNotes: '' + GUID: 646a1a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Corsair of Leng + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.6940008 + posY: 1.33734858 + posZ: 53.0074043 + rotX: 0.02083878 + rotY: 269.999329 + rotZ: 0.0166121013 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274130 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2741': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Monster. + GMNotes: '' + GUID: a45b3a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Corsair of Leng + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 1.11610448 + posY: 1.503188 + posZ: 53.1004868 + rotX: 0.01975236 + rotY: 269.999329 + rotZ: 0.0149388192 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2741': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 274129 +- 274129 +- 274130 +- 274130 +Description: '' +GMNotes: '' +GUID: c8eafb +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Corsairs +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 9.116271 + posY: 2.54317927 + posZ: -21.8669052 + rotX: 0.0208097547 + rotY: 269.999573 + rotZ: 0.0167709049 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Dream-Eaters 587028/Deck Creatures of the Underworld 77da71.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Dream-Eaters 587028/Deck Creatures of the Underworld 77da71.yaml new file mode 100644 index 000000000..193770bba --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Dream-Eaters 587028/Deck Creatures of the Underworld 77da71.yaml @@ -0,0 +1,215 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 274117 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2741': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Gug. + GMNotes: '' + GUID: '605181' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Lumbering Gug + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -9.79604149 + posY: 1.33284783 + posZ: 50.77426 + rotX: 0.02123998 + rotY: 269.999756 + rotZ: 0.0140851894 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274116 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2741': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Monster. Gug. + GMNotes: '' + GUID: 99845e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Hunting Ghast + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -9.24914 + posY: 1.33209109 + posZ: 47.4869652 + rotX: 0.0211359244 + rotY: 270.0 + rotZ: 0.0145950755 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274116 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2741': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Monster. Gug. + GMNotes: '' + GUID: 9fb152 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Hunting Ghast + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -9.249134 + posY: 1.502976 + posZ: 47.48697 + rotX: 0.0265449174 + rotY: 269.999969 + rotZ: 0.0138654774 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274116 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2741': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Monster. Gug. + GMNotes: '' + GUID: 4c2d5a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Hunting Ghast + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -9.249131 + posY: 1.50332248 + posZ: 47.48698 + rotX: 0.024901526 + rotY: 269.999664 + rotZ: 0.0150892623 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2741': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 274117 +- 274116 +- 274116 +- 274116 +Description: '' +GMNotes: '' +GUID: 77da71 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Creatures of the Underworld +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 13.1380243 + posY: 2.54462576 + posZ: -21.9152527 + rotX: 0.0208090749 + rotY: 270.001434 + rotZ: 0.0167717617 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Dream-Eaters 587028/Deck Dark Side of the Moon 0a8e6a.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Dream-Eaters 587028/Deck Dark Side of the Moon 0a8e6a.yaml new file mode 100644 index 000000000..b296299fe --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Dream-Eaters 587028/Deck Dark Side of the Moon 0a8e6a.yaml @@ -0,0 +1,1655 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 448609 + 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/780749631103449151/FFAADF06C9BF9D1F4F3FE22D45CEBBB15D9B58CF/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Curse. + GMNotes: '' + GUID: 0de10c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: False Awakening + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 43.6293373 + posY: 1.48469782 + posZ: -25.9724712 + rotX: 359.920624 + rotY: 269.9998 + rotZ: 0.013394949 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 448408 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4484': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780749631103449151/FFAADF06C9BF9D1F4F3FE22D45CEBBB15D9B58CF/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Scheme. + GMNotes: '' + GUID: 1dc329 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Lunar Patrol + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 43.5405121 + posY: 1.63021445 + posZ: -25.86801 + rotX: 359.91153 + rotY: 269.999969 + rotZ: 0.009113077 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 448408 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4484': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780749631103449151/FFAADF06C9BF9D1F4F3FE22D45CEBBB15D9B58CF/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Scheme. + GMNotes: '' + GUID: 8ed23d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Lunar Patrol + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 43.6550255 + posY: 1.66380656 + posZ: -23.9683628 + rotX: 359.919678 + rotY: 269.999939 + rotZ: 0.0165790934 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 448407 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4484': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780749631103449151/FFAADF06C9BF9D1F4F3FE22D45CEBBB15D9B58CF/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: '430478' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Forced into Hiding + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 43.7584648 + posY: 1.63437 + posZ: -24.2160072 + rotX: 359.919678 + rotY: 269.999451 + rotZ: 0.0146372 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 448407 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4484': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780749631103449151/FFAADF06C9BF9D1F4F3FE22D45CEBBB15D9B58CF/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: 35c286 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Forced into Hiding + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 43.585392 + posY: 1.64814293 + posZ: -24.19098 + rotX: 359.921021 + rotY: 269.999939 + rotZ: 0.016687151 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 448407 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4484': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780749631103449151/FFAADF06C9BF9D1F4F3FE22D45CEBBB15D9B58CF/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: b8b5c0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Forced into Hiding + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 47.3533974 + posY: 1.65088391 + posZ: -5.94015265 + rotX: 359.922241 + rotY: 269.9999 + rotZ: 0.0181541 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 448406 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4484': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780749631103449151/FFAADF06C9BF9D1F4F3FE22D45CEBBB15D9B58CF/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Scheme. + GMNotes: '' + GUID: d06c19 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Close Watch + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 47.16049 + posY: 1.64036047 + posZ: -6.036676 + rotX: 359.9259 + rotY: 270.0054 + rotZ: 0.028930787 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 448406 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4484': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780749631103449151/FFAADF06C9BF9D1F4F3FE22D45CEBBB15D9B58CF/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Scheme. + GMNotes: '' + GUID: 09b1ba + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Close Watch + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 47.2844772 + posY: 1.66247165 + posZ: -5.591093 + rotX: 359.921051 + rotY: 269.999969 + rotZ: 0.0167714842 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 448406 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4484': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780749631103449151/FFAADF06C9BF9D1F4F3FE22D45CEBBB15D9B58CF/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Scheme. + GMNotes: '' + GUID: cd1750 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Close Watch + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 46.9898529 + posY: 1.62015152 + posZ: -5.684745 + rotX: 359.9218 + rotY: 269.999939 + rotZ: 0.0169782881 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 448405 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4484': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780749631103449151/FFAADF06C9BF9D1F4F3FE22D45CEBBB15D9B58CF/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Servitor. + GMNotes: '' + GUID: a67b30 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Moon-Beast + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 47.4846878 + posY: 1.61376524 + posZ: -5.29175758 + rotX: 359.922058 + rotY: 270.002319 + rotZ: 0.01278687 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 448405 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4484': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780749631103449151/FFAADF06C9BF9D1F4F3FE22D45CEBBB15D9B58CF/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Servitor. + GMNotes: '' + GUID: 7a9fd0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Moon-Beast + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 47.4582825 + posY: 1.63913429 + posZ: -5.23780155 + rotX: 359.920776 + rotY: 270.000122 + rotZ: 0.0160261821 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 448404 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4484': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780749631103449151/FFAADF06C9BF9D1F4F3FE22D45CEBBB15D9B58CF/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Creature. Monster. + GMNotes: '' + GUID: 69fa0b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Cats from Saturn + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 47.4711266 + posY: 1.63309848 + posZ: -5.34615564 + rotX: 359.922668 + rotY: 270.000641 + rotZ: 0.0155028617 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 448404 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4484': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780749631103449151/FFAADF06C9BF9D1F4F3FE22D45CEBBB15D9B58CF/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Creature. Monster. + GMNotes: '' + GUID: 1a188b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Cats from Saturn + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 47.48501 + posY: 1.65839529 + posZ: -5.238743 + rotX: 359.9198 + rotY: 269.999817 + rotZ: 0.01662104 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 448404 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4484': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780749631103449151/FFAADF06C9BF9D1F4F3FE22D45CEBBB15D9B58CF/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Creature. Monster. + GMNotes: '' + GUID: ba6406 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Cats from Saturn + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 47.3228455 + posY: 1.671926 + posZ: 7.223792 + rotX: 359.9202 + rotY: 269.999817 + rotZ: 0.0165607054 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 448403 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4484': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780749631103449151/FFAADF06C9BF9D1F4F3FE22D45CEBBB15D9B58CF/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Byakhee. + GMNotes: '' + GUID: 1e3d9c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Moonbound Byakhee + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 47.8167763 + posY: 1.66549957 + posZ: 7.57495642 + rotX: 359.90094 + rotY: 270.034821 + rotZ: 0.015142913 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 448403 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4484': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780749631103449151/FFAADF06C9BF9D1F4F3FE22D45CEBBB15D9B58CF/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Byakhee. + GMNotes: '' + GUID: 6a01b3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Moonbound Byakhee + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 47.656 + posY: 1.690951 + posZ: 7.66015053 + rotX: 359.91983 + rotY: 269.999878 + rotZ: 0.01664229 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 448402 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4484': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780749631103449151/FFAADF06C9BF9D1F4F3FE22D45CEBBB15D9B58CF/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Elite. + GMNotes: '' + GUID: db6ad1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Moon Lizard + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 47.3650246 + posY: 1.68536222 + posZ: 7.709991 + rotX: 359.919 + rotY: 270.000061 + rotZ: 0.017092431 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 448401 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4484': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780749631103449151/FFAADF06C9BF9D1F4F3FE22D45CEBBB15D9B58CF/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Dreamlands Navigator + GMNotes: '' + GUID: 035f54 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Captain + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 44.117157 + posY: 1.70077753 + posZ: 11.6554966 + rotX: 359.9209 + rotY: 270.0004 + rotZ: 0.0153308949 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 448400 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4484': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780749631103449151/FFAADF06C9BF9D1F4F3FE22D45CEBBB15D9B58CF/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Truly Inspired + GMNotes: '' + GUID: 5dbc74 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Virgil Gray + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 44.0166435 + posY: 1.72618949 + posZ: 11.8415594 + rotX: 359.921082 + rotY: 269.999878 + rotZ: 0.0150459446 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 448310 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4483': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/780749631103441607/63F6472BFA33AA6C487997A0A45EEBB4C27336C8/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780749631103441052/FC2DD250B4173C28B245388F80C6D9ABA3B7D2E7/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Ship. + GMNotes: '' + GUID: 537a2f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The White Ship + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 47.6631737 + posY: 1.71797228 + posZ: 21.4494057 + rotX: 359.921143 + rotY: 269.9995 + rotZ: 0.015754981 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 448309 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4483': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/780749631103441607/63F6472BFA33AA6C487997A0A45EEBB4C27336C8/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780749631103441052/FC2DD250B4173C28B245388F80C6D9ABA3B7D2E7/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Surface. Ruins. + GMNotes: '' + GUID: e4d13a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Light Side of the Moon + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 47.75293 + posY: 1.7277025 + posZ: 21.6323624 + rotX: 359.900482 + rotY: 269.9905 + rotZ: 0.0140769333 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 448308 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4483': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/780749631103441607/63F6472BFA33AA6C487997A0A45EEBB4C27336C8/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780749631103441052/FC2DD250B4173C28B245388F80C6D9ABA3B7D2E7/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Light Side + GMNotes: '' + GUID: 4b517e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Caverns Beneath the Moon + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 48.0562973 + posY: 1.752459 + posZ: 21.673872 + rotX: 359.920654 + rotY: 270.007935 + rotZ: 0.01610355 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 448307 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4483': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/780749631103441607/63F6472BFA33AA6C487997A0A45EEBB4C27336C8/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780749631103441052/FC2DD250B4173C28B245388F80C6D9ABA3B7D2E7/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Cave. + GMNotes: '' + GUID: c283c3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Black Core + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 47.84613 + posY: 1.74685633 + posZ: 21.7496777 + rotX: 359.9124 + rotY: 270.0055 + rotZ: 0.0221161656 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 448306 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4483': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/780749631103441607/63F6472BFA33AA6C487997A0A45EEBB4C27336C8/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780749631103441052/FC2DD250B4173C28B245388F80C6D9ABA3B7D2E7/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Dark Side + GMNotes: '' + GUID: d69f76 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Caverns Beneath the Moon + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 47.8804474 + posY: 1.75640011 + posZ: 21.7823277 + rotX: 359.915863 + rotY: 269.9961 + rotZ: 0.0234815553 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 448305 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4483': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/780749631103441607/63F6472BFA33AA6C487997A0A45EEBB4C27336C8/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780749631103441052/FC2DD250B4173C28B245388F80C6D9ABA3B7D2E7/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Surface. Woods. + GMNotes: '' + GUID: cdf29c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Moon-Forest + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 47.8496971 + posY: 1.76957512 + posZ: 33.07677 + rotX: 359.9069 + rotY: 270.0158 + rotZ: 0.009774481 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 448304 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4483': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/780749631103441607/63F6472BFA33AA6C487997A0A45EEBB4C27336C8/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780749631103441052/FC2DD250B4173C28B245388F80C6D9ABA3B7D2E7/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Surface. + GMNotes: '' + GUID: cb15b1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Temple of the Moon Lizard + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 47.8718758 + posY: 1.77911949 + posZ: 33.0705452 + rotX: 359.918579 + rotY: 270.000732 + rotZ: 0.0157550983 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 448303 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4483': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/780749631103441607/63F6472BFA33AA6C487997A0A45EEBB4C27336C8/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780749631103441052/FC2DD250B4173C28B245388F80C6D9ABA3B7D2E7/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Surface. + GMNotes: '' + GUID: 99c449 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Dark Crater + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 48.0123138 + posY: 1.78858781 + posZ: 33.0636635 + rotX: 359.9169 + rotY: 270.0041 + rotZ: 0.0208815224 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 448302 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4483': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/780749631103441607/63F6472BFA33AA6C487997A0A45EEBB4C27336C8/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780749631103441052/FC2DD250B4173C28B245388F80C6D9ABA3B7D2E7/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Surface. City. + GMNotes: '' + GUID: 4d7bc7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: City of the Moon-Beasts + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 47.8867226 + posY: 1.79851377 + posZ: 33.5255928 + rotX: 359.91983 + rotY: 269.999756 + rotZ: 0.0155362012 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 448301 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4483': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/780749631103441607/63F6472BFA33AA6C487997A0A45EEBB4C27336C8/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780749631103441052/FC2DD250B4173C28B245388F80C6D9ABA3B7D2E7/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Ship. + GMNotes: '' + GUID: fdaf9a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Moon-Beast Galley + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 47.9929237 + posY: 1.80789506 + posZ: 32.8513336 + rotX: 359.9174 + rotY: 270.000977 + rotZ: 0.018363839 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 448229 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4482': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/780749631103001215/3FF9DC51D7737267B68EC5D9CF17BE421681663B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780749631102998699/DA1D7C58FE177F46169558EF1D8301754A91A73A/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 4 + GMNotes: '' + GUID: 04d820 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Unexpected Rescue + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 48.4850426 + posY: 1.83530891 + posZ: 42.4923134 + rotX: 359.9201 + rotY: 269.976868 + rotZ: 0.0168597642 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 448228 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4482': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/780749631103001215/3FF9DC51D7737267B68EC5D9CF17BE421681663B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780749631102998699/DA1D7C58FE177F46169558EF1D8301754A91A73A/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 3 + GMNotes: '' + GUID: '453173' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Moon's Core + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 48.63086 + posY: 1.844651 + posZ: 42.0389137 + rotX: 359.920258 + rotY: 269.976868 + rotZ: 0.0169741269 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 448227 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4482': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/780749631103001215/3FF9DC51D7737267B68EC5D9CF17BE421681663B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780749631102998699/DA1D7C58FE177F46169558EF1D8301754A91A73A/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 2 + GMNotes: '' + GUID: '950287' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Exploring the Moon + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 48.48423 + posY: 1.85474694 + posZ: 42.9848557 + rotX: 359.9206 + rotY: 269.979767 + rotZ: 0.016189998 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 448226 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4482': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/780749631103001215/3FF9DC51D7737267B68EC5D9CF17BE421681663B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780749631102998699/DA1D7C58FE177F46169558EF1D8301754A91A73A/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 1 + GMNotes: '' + GUID: 8a7b93 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: In the Belly of the Moon-Beast + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 48.4352455 + posY: 1.8644141 + posZ: 42.7861481 + rotX: 359.920471 + rotY: 269.9828 + rotZ: 0.01650881 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 448225 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4482': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/780749631103001215/3FF9DC51D7737267B68EC5D9CF17BE421681663B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780749631102998699/DA1D7C58FE177F46169558EF1D8301754A91A73A/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 3 + GMNotes: '' + GUID: d99919 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Are Upon You! + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 47.98791 + posY: 1.87741852 + posZ: 51.83585 + rotX: 359.9203 + rotY: 269.999817 + rotZ: 0.0168208033 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 448224 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4482': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/780749631103001215/3FF9DC51D7737267B68EC5D9CF17BE421681663B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780749631102998699/DA1D7C58FE177F46169558EF1D8301754A91A73A/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 2 + GMNotes: '' + GUID: 582d94 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Alarm Is Raised + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 47.91146 + posY: 1.8871423 + posZ: 51.7693062 + rotX: 359.920074 + rotY: 269.9829 + rotZ: 0.0167244412 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 448223 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4482': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/780749631103001215/3FF9DC51D7737267B68EC5D9CF17BE421681663B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780749631102998699/DA1D7C58FE177F46169558EF1D8301754A91A73A/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 1 + GMNotes: '' + GUID: 5da9b8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Silent Stirring + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 47.94799 + posY: 1.8969295 + posZ: 52.3759727 + rotX: 359.9204 + rotY: 269.999878 + rotZ: 0.0167983416 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 448300 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4483': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/780749631103441607/63F6472BFA33AA6C487997A0A45EEBB4C27336C8/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780749631103441052/FC2DD250B4173C28B245388F80C6D9ABA3B7D2E7/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Dark Side of the Moon + GMNotes: '' + GUID: 5c8909 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Scenario + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -5.88149071 + posY: 1.73344219 + posZ: 85.77766 + rotX: 0.017959075 + rotY: 269.979553 + rotZ: 0.0130561721 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '4482': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/780749631103001215/3FF9DC51D7737267B68EC5D9CF17BE421681663B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780749631102998699/DA1D7C58FE177F46169558EF1D8301754A91A73A/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + '4483': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/780749631103441607/63F6472BFA33AA6C487997A0A45EEBB4C27336C8/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780749631103441052/FC2DD250B4173C28B245388F80C6D9ABA3B7D2E7/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + '4484': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780749631103449151/FFAADF06C9BF9D1F4F3FE22D45CEBBB15D9B58CF/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '4486': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/780749631103449151/FFAADF06C9BF9D1F4F3FE22D45CEBBB15D9B58CF/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 448609 +- 448408 +- 448408 +- 448407 +- 448407 +- 448407 +- 448406 +- 448406 +- 448406 +- 448405 +- 448405 +- 448404 +- 448404 +- 448404 +- 448403 +- 448403 +- 448402 +- 448401 +- 448400 +- 448310 +- 448309 +- 448308 +- 448307 +- 448306 +- 448305 +- 448304 +- 448303 +- 448302 +- 448301 +- 448229 +- 448228 +- 448227 +- 448226 +- 448225 +- 448224 +- 448223 +- 448300 +Description: '' +GMNotes: '' +GUID: 0a8e6a +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Dark Side of the Moon +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -5.292498 + posY: 2.49994588 + posZ: -53.3379555 + rotX: 359.920135 + rotY: 269.974884 + rotZ: 0.0169186369 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Dream-Eaters 587028/Deck Descent into the Pitch 0bc778.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Dream-Eaters 587028/Deck Descent into the Pitch 0bc778.yaml new file mode 100644 index 000000000..05d3ad988 --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Dream-Eaters 587028/Deck Descent into the Pitch 0bc778.yaml @@ -0,0 +1,215 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 448418 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4484': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780749631103449151/FFAADF06C9BF9D1F4F3FE22D45CEBBB15D9B58CF/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Curse. + GMNotes: '' + GUID: 4fa43f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Shadow of Atlach-Nacha + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 4.58753347 + posY: 1.53658581 + posZ: -34.7654457 + rotX: 359.920166 + rotY: 270.014679 + rotZ: 0.0165293217 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 448418 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4484': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780749631103449151/FFAADF06C9BF9D1F4F3FE22D45CEBBB15D9B58CF/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Curse. + GMNotes: '' + GUID: e43efd + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Shadow of Atlach-Nacha + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 4.57853842 + posY: 1.69774079 + posZ: -34.33032 + rotX: 359.9255 + rotY: 270.014832 + rotZ: 0.004017685 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 448417 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4484': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780749631103449151/FFAADF06C9BF9D1F4F3FE22D45CEBBB15D9B58CF/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Spider. + GMNotes: '' + GUID: e45ec8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Pitch Spider + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 4.796251 + posY: 1.5346638 + posZ: -40.3409348 + rotX: 359.920074 + rotY: 270.0252 + rotZ: 0.01721978 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 448417 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4484': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780749631103449151/FFAADF06C9BF9D1F4F3FE22D45CEBBB15D9B58CF/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Spider. + GMNotes: '' + GUID: 25d93a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Pitch Spider + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 4.931781 + posY: 1.69577944 + posZ: -39.8830147 + rotX: 359.917267 + rotY: 270.02478 + rotZ: 0.009124688 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '4484': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780749631103449151/FFAADF06C9BF9D1F4F3FE22D45CEBBB15D9B58CF/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 448418 +- 448418 +- 448417 +- 448417 +Description: '' +GMNotes: '' +GUID: 0bc778 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Descent into the Pitch +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.42130542 + posY: 2.5783546 + posZ: 36.88829 + rotX: 0.0208047833 + rotY: 270.014526 + rotZ: 0.0167750511 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Dream-Eaters 587028/Deck Dreamer’s Curse 21d194.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Dream-Eaters 587028/Deck Dreamer’s Curse 21d194.yaml new file mode 100644 index 000000000..920456278 --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Dream-Eaters 587028/Deck Dreamer’s Curse 21d194.yaml @@ -0,0 +1,301 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 274120 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2741': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Curse. + GMNotes: '' + GUID: 07cb83 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Deeper Slumber + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -7.64724255 + posY: 1.33347023 + posZ: 50.15231 + rotX: 0.021022873 + rotY: 269.999847 + rotZ: 0.0156522952 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274120 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2741': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Curse. + GMNotes: '' + GUID: c9a81c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Deeper Slumber + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -7.43135548 + posY: 1.48793566 + posZ: 50.2434 + rotX: 0.0139066791 + rotY: 269.999817 + rotZ: -0.00134133862 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274119 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2741': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: e64ec2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Somniphobia + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.57984281 + posY: 1.33392763 + posZ: 46.79201 + rotX: 0.0213435646 + rotY: 269.999878 + rotZ: 0.0133018475 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274119 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2741': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: bdd705 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Somniphobia + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.363955 + posY: 1.4883889 + posZ: 46.8831024 + rotX: 0.0292372759 + rotY: 269.999878 + rotZ: 0.009698411 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274118 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2741': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Curse. + GMNotes: '' + GUID: 8af23c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dreamer's Curse + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.55991268 + posY: 1.3354677 + posZ: 50.66423 + rotX: 0.0210230164 + rotY: 269.999969 + rotZ: 0.015651783 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274118 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2741': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Curse. + GMNotes: '' + GUID: dd39c6 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dreamer's Curse + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.34402561 + posY: 1.48993313 + posZ: 50.7553253 + rotX: 0.0139070377 + rotY: 269.999969 + rotZ: -0.00134107959 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2741': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 274120 +- 274120 +- 274119 +- 274119 +- 274118 +- 274118 +Description: '' +GMNotes: '' +GUID: 21d194 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: "Dreamer\u2019s Curse" +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 12.6838856 + posY: 2.54628181 + posZ: -25.3547058 + rotX: 0.0208095945 + rotY: 269.999939 + rotZ: 0.0167710558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Dream-Eaters 587028/Deck Dreamlands 88fed7.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Dream-Eaters 587028/Deck Dreamlands 88fed7.yaml new file mode 100644 index 000000000..d6a5540a1 --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Dream-Eaters 587028/Deck Dreamlands 88fed7.yaml @@ -0,0 +1,215 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 274122 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2741': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Power. + GMNotes: '' + GUID: c9cb0f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Prismatic Phenomenon + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -1.24633133 + posY: 1.33597839 + posZ: 50.744606 + rotX: 0.0208641291 + rotY: 269.999878 + rotZ: 0.0164128449 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274122 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2741': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Power. + GMNotes: '' + GUID: 4b23ff + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Prismatic Phenomenon + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -1.33692908 + posY: 1.50126624 + posZ: 50.8609619 + rotX: 0.0222992748 + rotY: 269.999878 + rotZ: 0.0146943647 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274121 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2741': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Power. + GMNotes: '' + GUID: c942d4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dreamlands Eclipse + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -0.6114705 + posY: 1.33718181 + posZ: 54.0672035 + rotX: 0.0208639912 + rotY: 269.999878 + rotZ: 0.01641295 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274121 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2741': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Power. + GMNotes: '' + GUID: 9df5fa + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dreamlands Eclipse + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -0.7020685 + posY: 1.50246942 + posZ: 54.18356 + rotX: 0.022299597 + rotY: 269.999878 + rotZ: 0.014693982 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2741': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 274122 +- 274122 +- 274121 +- 274121 +Description: '' +GMNotes: '' +GUID: 88fed7 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Dreamlands +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 9.2995615 + posY: 2.54626679 + posZ: -11.5472336 + rotX: 0.0208077189 + rotY: 270.0 + rotZ: 0.0167685561 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Dream-Eaters 587028/Deck Merging Realities b57f65.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Dream-Eaters 587028/Deck Merging Realities b57f65.yaml new file mode 100644 index 000000000..6d8d6f0af --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Dream-Eaters 587028/Deck Merging Realities b57f65.yaml @@ -0,0 +1,301 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 274124 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2741': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: fc9e13 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Glimpse of the Underworld + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 5.84228325 + posY: 1.34083807 + posZ: 58.62573 + rotX: 0.021272542 + rotY: 270.006 + rotZ: 0.009666224 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274124 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2741': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: 8cfcad + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Glimpse of the Underworld + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 5.38974667 + posY: 1.485744 + posZ: 58.4967079 + rotX: 0.0294501316 + rotY: 270.004547 + rotZ: 359.9871 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274125 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2741': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Power. + GMNotes: '' + GUID: b8c436 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Threads of Reality + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 1.29080474 + posY: 1.33946133 + posZ: 59.52883 + rotX: 0.0209642574 + rotY: 269.9999 + rotZ: 0.0157587882 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274125 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2741': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Power. + GMNotes: '' + GUID: dc5bae + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Threads of Reality + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.8402691 + posY: 1.50012553 + posZ: 59.88763 + rotX: 0.0284495931 + rotY: 269.999969 + rotZ: 0.005568467 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274123 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2741': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: 31f1b5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Night Terrors + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 1.29163218 + posY: 1.33841527 + posZ: 56.0256081 + rotX: 0.02121237 + rotY: 269.9997 + rotZ: 0.0143396938 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274123 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2741': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: 6fdcaf + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Night Terrors + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 1.48556733 + posY: 1.4938426 + posZ: 56.0021362 + rotX: 0.00524773542 + rotY: 270.003082 + rotZ: 0.008701706 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2741': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 274124 +- 274124 +- 274125 +- 274125 +- 274123 +- 274123 +Description: '' +GMNotes: '' +GUID: b57f65 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Merging Realities +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 9.222413 + posY: 2.54789042 + posZ: -15.5653152 + rotX: 0.0208061337 + rotY: 270.006226 + rotZ: 0.0167711657 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Dream-Eaters 587028/Deck Point of No Return 5914f3.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Dream-Eaters 587028/Deck Point of No Return 5914f3.yaml new file mode 100644 index 000000000..367042676 --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Dream-Eaters 587028/Deck Point of No Return 5914f3.yaml @@ -0,0 +1,1268 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- 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 + UniqueBack: false + Description: Curse. + GMNotes: '' + GUID: 3bf831 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: False Awakening + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 49.9154625 + posY: 1.4680934 + posZ: -52.7649422 + rotX: 359.920166 + rotY: 270.0002 + rotZ: 0.01653798 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 448414 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4484': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780749631103449151/FFAADF06C9BF9D1F4F3FE22D45CEBBB15D9B58CF/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Scheme. + GMNotes: '' + GUID: 9da9f5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Unexpected Ambush + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 49.7500572 + posY: 1.62957478 + posZ: -52.38255 + rotX: 359.919 + rotY: 269.999969 + rotZ: 0.0128843663 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 448414 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4484': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780749631103449151/FFAADF06C9BF9D1F4F3FE22D45CEBBB15D9B58CF/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Scheme. + GMNotes: '' + GUID: 1dc329 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Unexpected Ambush + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 49.77722 + posY: 1.631356 + posZ: -52.1086273 + rotX: 359.918274 + rotY: 269.992981 + rotZ: 359.989868 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 448413 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4484': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780749631103449151/FFAADF06C9BF9D1F4F3FE22D45CEBBB15D9B58CF/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: '416545' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Lit by Death-Fire + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 49.94794 + posY: 1.63302982 + posZ: -52.2560654 + rotX: 359.920349 + rotY: 270.000458 + rotZ: 0.015660068 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 448413 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4484': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780749631103449151/FFAADF06C9BF9D1F4F3FE22D45CEBBB15D9B58CF/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: f776ef + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Lit by Death-Fire + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 49.8180847 + posY: 1.615731 + posZ: -52.0967827 + rotX: 359.912079 + rotY: 270.005829 + rotZ: 359.984222 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 448412 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4484': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780749631103449151/FFAADF06C9BF9D1F4F3FE22D45CEBBB15D9B58CF/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: adb449 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Taste of Lifeblood + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 49.6176338 + posY: 1.63404572 + posZ: -52.1664619 + rotX: 359.9225 + rotY: 269.998657 + rotZ: 0.0121275829 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 448412 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4484': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780749631103449151/FFAADF06C9BF9D1F4F3FE22D45CEBBB15D9B58CF/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: 009bed + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Taste of Lifeblood + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 50.351738 + posY: 1.4726193 + posZ: -35.14877 + rotX: 359.9206 + rotY: 269.9975 + rotZ: 0.0141743068 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 448411 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4484': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780749631103449151/FFAADF06C9BF9D1F4F3FE22D45CEBBB15D9B58CF/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Gug. + GMNotes: '' + GUID: 2d7881 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Gug Sentinel + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 50.3609123 + posY: 1.61803544 + posZ: -34.98398 + rotX: 359.93042 + rotY: 269.995575 + rotZ: 0.008134545 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 448410 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4484': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780749631103449151/FFAADF06C9BF9D1F4F3FE22D45CEBBB15D9B58CF/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Venerable Ghoul + GMNotes: '' + GUID: c4534a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Richard Upton Pickman + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 52.6451836 + posY: 1.590348 + posZ: -27.42084 + rotX: 359.93924 + rotY: 270.000031 + rotZ: 0.0128895128 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 448320 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4483': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/780749631103441607/63F6472BFA33AA6C487997A0A45EEBB4C27336C8/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780749631103441052/FC2DD250B4173C28B245388F80C6D9ABA3B7D2E7/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Depths. + GMNotes: '' + GUID: 858f4d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Sea of Pitch + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 52.5159073 + posY: 1.60025942 + posZ: -26.77709 + rotX: 359.925049 + rotY: 270.0014 + rotZ: 0.00728634046 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 448321 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4483': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/780749631103441607/63F6472BFA33AA6C487997A0A45EEBB4C27336C8/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780749631103441052/FC2DD250B4173C28B245388F80C6D9ABA3B7D2E7/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Depths. + GMNotes: '' + GUID: ee0dc6 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Sea of Pitch + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 52.5998535 + posY: 1.6103822 + posZ: -26.3963661 + rotX: 359.909821 + rotY: 269.9972 + rotZ: 359.971283 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 448322 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4483': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/780749631103441607/63F6472BFA33AA6C487997A0A45EEBB4C27336C8/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780749631103441052/FC2DD250B4173C28B245388F80C6D9ABA3B7D2E7/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Depths. + GMNotes: '' + GUID: fdb3b3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Sea of Pitch + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 52.69077 + posY: 1.61996222 + posZ: -26.3934383 + rotX: 359.908722 + rotY: 269.998657 + rotZ: 359.966 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 448323 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4483': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/780749631103441607/63F6472BFA33AA6C487997A0A45EEBB4C27336C8/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780749631103441052/FC2DD250B4173C28B245388F80C6D9ABA3B7D2E7/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Depths. + GMNotes: '' + GUID: c5a434 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Sea of Pitch + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 52.7679749 + posY: 1.62888622 + posZ: -26.6980076 + rotX: 359.9258 + rotY: 269.9986 + rotZ: 0.00294087874 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 448319 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4483': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/780749631103441607/63F6472BFA33AA6C487997A0A45EEBB4C27336C8/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780749631103441052/FC2DD250B4173C28B245388F80C6D9ABA3B7D2E7/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Vale. + GMNotes: '' + GUID: '205498' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Vale of Pnath + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 53.1144753 + posY: 1.640713 + posZ: -18.320303 + rotX: 359.916962 + rotY: 270.00174 + rotZ: 0.0158883352 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 448318 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4483': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/780749631103441607/63F6472BFA33AA6C487997A0A45EEBB4C27336C8/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780749631103441052/FC2DD250B4173C28B245388F80C6D9ABA3B7D2E7/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Vale. Central. + GMNotes: '' + GUID: bd1eba + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Peaks of Thok + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 53.2686844 + posY: 1.65001106 + posZ: -17.9883442 + rotX: 359.9268 + rotY: 270.001221 + rotZ: 0.00225925026 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 448317 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4483': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/780749631103441607/63F6472BFA33AA6C487997A0A45EEBB4C27336C8/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780749631103441052/FC2DD250B4173C28B245388F80C6D9ABA3B7D2E7/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Vale. + GMNotes: '' + GUID: 537a2f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Sea of Bones + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 53.24614 + posY: 1.65967345 + posZ: -17.9474888 + rotX: 359.924377 + rotY: 270.003357 + rotZ: 0.00141881965 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 448316 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4483': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/780749631103441607/63F6472BFA33AA6C487997A0A45EEBB4C27336C8/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780749631103441052/FC2DD250B4173C28B245388F80C6D9ABA3B7D2E7/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Vale. + GMNotes: '' + GUID: e86a44 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Crag of the Ghouls + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 53.241375 + posY: 1.66935515 + posZ: -17.9632359 + rotX: 359.9273 + rotY: 270.000458 + rotZ: 0.001945108 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 448315 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4483': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/780749631103441607/63F6472BFA33AA6C487997A0A45EEBB4C27336C8/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780749631103441052/FC2DD250B4173C28B245388F80C6D9ABA3B7D2E7/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Central. + GMNotes: '' + GUID: 16d115 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Plain of the Ghouls + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 52.572876 + posY: 1.68483758 + posZ: -2.328533 + rotX: 359.9193 + rotY: 270.000153 + rotZ: 0.0141992 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 448314 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4483': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/780749631103441607/63F6472BFA33AA6C487997A0A45EEBB4C27336C8/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780749631103441052/FC2DD250B4173C28B245388F80C6D9ABA3B7D2E7/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: '923952' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Tower of Koth + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 52.480545 + posY: 1.69457543 + posZ: -2.496092 + rotX: 359.917664 + rotY: 270.010864 + rotZ: 0.0420452319 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 448313 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4483': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/780749631103441607/63F6472BFA33AA6C487997A0A45EEBB4C27336C8/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780749631103441052/FC2DD250B4173C28B245388F80C6D9ABA3B7D2E7/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: b0fbe0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: City of Gugs + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 52.4367638 + posY: 1.70421839 + posZ: -2.718715 + rotX: 359.921936 + rotY: 270.002777 + rotZ: 0.0128591331 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 448312 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4483': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/780749631103441607/63F6472BFA33AA6C487997A0A45EEBB4C27336C8/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780749631103441052/FC2DD250B4173C28B245388F80C6D9ABA3B7D2E7/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: f252c5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Vaults of Zin + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 52.45476 + posY: 1.71409369 + posZ: -2.11261559 + rotX: 359.916138 + rotY: 269.962677 + rotZ: 0.0361800045 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 448235 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4482': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/780749631103001215/3FF9DC51D7737267B68EC5D9CF17BE421681663B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780749631102998699/DA1D7C58FE177F46169558EF1D8301754A91A73A/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 3 + GMNotes: '' + GUID: 105e3a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Black Expanse + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 52.3143349 + posY: 1.72701585 + posZ: 8.406198 + rotX: 359.918884 + rotY: 269.9996 + rotZ: 0.0154528879 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 448234 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4482': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/780749631103001215/3FF9DC51D7737267B68EC5D9CF17BE421681663B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780749631102998699/DA1D7C58FE177F46169558EF1D8301754A91A73A/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 2 + GMNotes: '' + GUID: d6aa77 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Descent + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 52.8244934 + posY: 1.73580945 + posZ: 8.380496 + rotX: 359.867432 + rotY: 269.94693 + rotZ: 0.0503984131 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 448233 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4482': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/780749631103001215/3FF9DC51D7737267B68EC5D9CF17BE421681663B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780749631102998699/DA1D7C58FE177F46169558EF1D8301754A91A73A/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 1 + GMNotes: '' + GUID: febef4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Entering the Underworld (v. II) + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 52.1942139 + posY: 1.746397 + posZ: 8.82114 + rotX: 359.9088 + rotY: 270.039948 + rotZ: -0.00395361 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 448232 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4482': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/780749631103001215/3FF9DC51D7737267B68EC5D9CF17BE421681663B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780749631102998699/DA1D7C58FE177F46169558EF1D8301754A91A73A/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 1 + GMNotes: '' + GUID: f907c0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Entering the Underworld (v. I) + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 52.507412 + posY: 1.75574839 + posZ: 8.369825 + rotX: 359.920715 + rotY: 269.9874 + rotZ: 0.0163018759 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 448231 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4482': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/780749631103001215/3FF9DC51D7737267B68EC5D9CF17BE421681663B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780749631102998699/DA1D7C58FE177F46169558EF1D8301754A91A73A/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 2 + GMNotes: '' + GUID: e173e7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Beset by Monsters + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 52.41243 + posY: 1.76551211 + posZ: 8.330223 + rotX: 359.921 + rotY: 269.993134 + rotZ: 0.0157353953 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 448230 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4482': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/780749631103001215/3FF9DC51D7737267B68EC5D9CF17BE421681663B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780749631102998699/DA1D7C58FE177F46169558EF1D8301754A91A73A/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 1 + GMNotes: '' + GUID: d30878 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: A Sinister Realm + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 52.78655 + posY: 1.7748158 + posZ: 8.783165 + rotX: 359.9199 + rotY: 269.990417 + rotZ: 0.01547112 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 448311 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4483': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/780749631103441607/63F6472BFA33AA6C487997A0A45EEBB4C27336C8/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780749631103441052/FC2DD250B4173C28B245388F80C6D9ABA3B7D2E7/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Point of No Return + GMNotes: '' + GUID: d616d2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Scenario + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 52.4447174 + posY: 1.78479564 + posZ: 8.333028 + rotX: 359.920837 + rotY: 269.98175 + rotZ: 0.0162653979 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '4482': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/780749631103001215/3FF9DC51D7737267B68EC5D9CF17BE421681663B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780749631102998699/DA1D7C58FE177F46169558EF1D8301754A91A73A/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + '4483': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/780749631103441607/63F6472BFA33AA6C487997A0A45EEBB4C27336C8/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780749631103441052/FC2DD250B4173C28B245388F80C6D9ABA3B7D2E7/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + '4484': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780749631103449151/FFAADF06C9BF9D1F4F3FE22D45CEBBB15D9B58CF/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '4485': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/780749631103449151/FFAADF06C9BF9D1F4F3FE22D45CEBBB15D9B58CF/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 448519 +- 448414 +- 448414 +- 448413 +- 448413 +- 448412 +- 448412 +- 448411 +- 448410 +- 448320 +- 448321 +- 448322 +- 448323 +- 448319 +- 448318 +- 448317 +- 448316 +- 448315 +- 448314 +- 448313 +- 448312 +- 448235 +- 448234 +- 448233 +- 448232 +- 448231 +- 448230 +- 448311 +Description: '' +GMNotes: '' +GUID: 5914f3 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Point of No Return +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 2.788851 + posY: 2.53393841 + posZ: 59.503685 + rotX: 0.0208121873 + rotY: 269.981934 + rotZ: 0.0167587381 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Dream-Eaters 587028/Deck Spiders 1b1ba7.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Dream-Eaters 587028/Deck Spiders 1b1ba7.yaml new file mode 100644 index 000000000..f2f0f168f --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Dream-Eaters 587028/Deck Spiders 1b1ba7.yaml @@ -0,0 +1,301 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 274127 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2741': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Creature. Spider. + GMNotes: '' + GUID: eb88d3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Swarm of Spiders + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -0.844609141 + posY: 1.33724856 + posZ: 54.5767746 + rotX: 0.02087849 + rotY: 270.009552 + rotZ: 0.01652528 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274127 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2741': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Creature. Spider. + GMNotes: '' + GUID: '127543' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Swarm of Spiders + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -0.996398449 + posY: 1.38670981 + posZ: 55.2076263 + rotX: 0.0273220912 + rotY: 270.00946 + rotZ: 359.992828 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274127 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2741': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Creature. Spider. + GMNotes: '' + GUID: '133060' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Swarm of Spiders + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -0.839634538 + posY: 1.49983108 + posZ: 54.6420059 + rotX: 0.0234334059 + rotY: 270.009674 + rotZ: 0.0152485454 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274128 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2741': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Obstacle. + GMNotes: '' + GUID: 23fc06 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Sickening Webs + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -0.8677753 + posY: 1.33790851 + posZ: 57.3880653 + rotX: 0.022798948 + rotY: 270.010162 + rotZ: 0.005616975 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274128 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2741': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Obstacle. + GMNotes: '' + GUID: 09c755 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Sickening Webs + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -0.6885309 + posY: 1.4827323 + posZ: 57.056572 + rotX: 0.007400155 + rotY: 270.009 + rotZ: 0.01982787 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274126 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2741': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Spider. + GMNotes: '' + GUID: 0f9c1e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Spider of Leng + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -1.136676 + posY: 1.486699 + posZ: 54.612114 + rotX: 0.0193328764 + rotY: 270.009644 + rotZ: 0.01589946 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2741': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 274127 +- 274127 +- 274127 +- 274128 +- 274128 +- 274126 +Description: '' +GMNotes: '' +GUID: 1b1ba7 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Spiders +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 9.578038 + posY: 2.547075 + posZ: -18.7920532 + rotX: 0.02080481 + rotY: 270.010162 + rotZ: 0.0167723019 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Dream-Eaters 587028/Deck Terror of the Vale f24354.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Dream-Eaters 587028/Deck Terror of the Vale f24354.yaml new file mode 100644 index 000000000..7f926e6de --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Dream-Eaters 587028/Deck Terror of the Vale f24354.yaml @@ -0,0 +1,215 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 448416 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4484': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780749631103449151/FFAADF06C9BF9D1F4F3FE22D45CEBBB15D9B58CF/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: c8ca95 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dhole Tunnel + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 5.21576738 + posY: 1.54093337 + posZ: -16.1176567 + rotX: 359.922729 + rotY: 270.0033 + rotZ: -0.00108760851 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 448416 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4484': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780749631103449151/FFAADF06C9BF9D1F4F3FE22D45CEBBB15D9B58CF/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: 2472d3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dhole Tunnel + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 5.304054 + posY: 1.54002762 + posZ: -19.6999817 + rotX: 359.9201 + rotY: 270.00708 + rotZ: 0.0168609 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 448416 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4484': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780749631103449151/FFAADF06C9BF9D1F4F3FE22D45CEBBB15D9B58CF/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: ebbf2f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dhole Tunnel + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 5.321104 + posY: 1.76676619 + posZ: -19.30514 + rotX: 359.920227 + rotY: 270.0006 + rotZ: 3.433646 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 448415 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4484': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780749631103449151/FFAADF06C9BF9D1F4F3FE22D45CEBBB15D9B58CF/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Dhole. Elite. + GMNotes: '' + GUID: 4faa7f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Slithering Dhole + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 5.73627472 + posY: 1.68587208 + posZ: -29.244873 + rotX: 359.9356 + rotY: 270.0018 + rotZ: 0.0104480507 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '4484': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780749631103449151/FFAADF06C9BF9D1F4F3FE22D45CEBBB15D9B58CF/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 448416 +- 448416 +- 448416 +- 448415 +Description: '' +GMNotes: '' +GUID: f24354 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Terror of the Vale +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.19428825 + posY: 2.57741332 + posZ: 37.42663 + rotX: 0.020806862 + rotY: 270.007538 + rotZ: 0.0167725831 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Dream-Eaters 587028/Deck The Search for Kadath 44e380.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Dream-Eaters 587028/Deck The Search for Kadath 44e380.yaml new file mode 100644 index 000000000..84dafa634 --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Dream-Eaters 587028/Deck The Search for Kadath 44e380.yaml @@ -0,0 +1,1906 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 231610 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2316': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780741189047974901/76B77E5C6488F3216316F01C4C82727CBEA00188/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Power. + GMNotes: '' + GUID: 2fc907 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Wondrous Lands + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 5.15542746 + posY: 1.5470854 + posZ: 3.6874876 + rotX: 359.9205 + rotY: 269.975433 + rotZ: 0.0144793829 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231610 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2316': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780741189047974901/76B77E5C6488F3216316F01C4C82727CBEA00188/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Power. + GMNotes: '' + GUID: abea7c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Wondrous Lands + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 4.82933044 + posY: 1.70397878 + posZ: 3.83468246 + rotX: 359.9169 + rotY: 269.975433 + rotZ: 0.0110530071 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231609 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2316': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780741189047974901/76B77E5C6488F3216316F01C4C82727CBEA00188/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Curse. + GMNotes: '' + GUID: 2ca8a4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Song of the Magah Bird + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 7.13361263 + posY: 1.54443824 + posZ: 4.08347225 + rotX: 359.920563 + rotY: 269.9948 + rotZ: 0.0140677523 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231609 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2316': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780741189047974901/76B77E5C6488F3216316F01C4C82727CBEA00188/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Curse. + GMNotes: '' + GUID: 227b47 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Song of the Magah Bird + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 7.36640024 + posY: 1.70000684 + posZ: 3.840485 + rotX: 359.92453 + rotY: 269.9948 + rotZ: 0.0111532081 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231608 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2316': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780741189047974901/76B77E5C6488F3216316F01C4C82727CBEA00188/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Creature. Monster. + GMNotes: '' + GUID: 2fc907 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Nightriders + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 6.80204964 + posY: 1.54511368 + posZ: 4.68349648 + rotX: 359.9202 + rotY: 269.9949 + rotZ: 0.0164765269 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231608 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2316': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780741189047974901/76B77E5C6488F3216316F01C4C82727CBEA00188/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Creature. Monster. + GMNotes: '' + GUID: 079905 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Nightriders + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 6.806476 + posY: 1.70124424 + posZ: 4.764507 + rotX: 359.91803 + rotY: 269.994873 + rotZ: 0.006045577 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231607 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2316': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780741189047974901/76B77E5C6488F3216316F01C4C82727CBEA00188/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Creature. Monster. + GMNotes: '' + GUID: 2fc907 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Pack of Vooniths + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 6.27096748 + posY: 1.545424 + posZ: 3.2432487 + rotX: 359.9202 + rotY: 269.989746 + rotZ: 0.016852146 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231607 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2316': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780741189047974901/76B77E5C6488F3216316F01C4C82727CBEA00188/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Creature. Monster. + GMNotes: '' + GUID: ef03ae + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Pack of Vooniths + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 6.382647 + posY: 1.76242828 + posZ: 2.97011447 + rotX: 359.919983 + rotY: 269.992981 + rotZ: 3.687932 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231606 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2316': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780741189047974901/76B77E5C6488F3216316F01C4C82727CBEA00188/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Nightgaunt. + GMNotes: '' + GUID: 2fc907 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Tenebrous Nightgaunt + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 7.15525866 + posY: 1.54422963 + posZ: 3.497268 + rotX: 359.920654 + rotY: 269.995 + rotZ: 0.0136328917 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231606 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2316': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780741189047974901/76B77E5C6488F3216316F01C4C82727CBEA00188/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Nightgaunt. + GMNotes: '' + GUID: 19f49a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Tenebrous Nightgaunt + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 7.53384542 + posY: 1.699515 + posZ: 3.440955 + rotX: 359.909119 + rotY: 269.994965 + rotZ: 0.0161486883 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231605 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2316': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780741189047974901/76B77E5C6488F3216316F01C4C82727CBEA00188/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Cultist. + GMNotes: '' + GUID: bd99b0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Priest of a Thousand Masks + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 7.832259 + posY: 1.91746283 + posZ: 8.534231 + rotX: 359.951874 + rotY: 269.999878 + rotZ: 179.738739 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231605 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2316': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780741189047974901/76B77E5C6488F3216316F01C4C82727CBEA00188/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Cultist. + GMNotes: '' + GUID: 8a5ba5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Priest of a Thousand Masks + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 7.69246149 + posY: 1.92211437 + posZ: 7.89689255 + rotX: 359.954224 + rotY: 269.999237 + rotZ: 181.32959 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231605 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2316': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780741189047974901/76B77E5C6488F3216316F01C4C82727CBEA00188/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Cultist. + GMNotes: '' + GUID: 2fc907 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Priest of a Thousand Masks + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 7.76846933 + posY: 1.87930143 + posZ: 7.98363161 + rotX: 359.954437 + rotY: 269.998169 + rotZ: 180.064926 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231604 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2316': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780741189047974901/76B77E5C6488F3216316F01C4C82727CBEA00188/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Elite. + GMNotes: '' + GUID: 2fc907 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Beings of Ib + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 7.710559 + posY: 1.86926162 + posZ: 8.368562 + rotX: 359.937164 + rotY: 270.001831 + rotZ: 180.012772 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231603 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2316': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780741189047974901/76B77E5C6488F3216316F01C4C82727CBEA00188/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Elite. + GMNotes: '' + GUID: 2fc907 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Horde of Night + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 7.82516861 + posY: 1.85933316 + posZ: 7.86876 + rotX: 359.936676 + rotY: 270.007935 + rotZ: 180.008636 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231602 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2316': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780741189047974901/76B77E5C6488F3216316F01C4C82727CBEA00188/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Creature. Monster. Elite. + GMNotes: '' + GUID: 2fc907 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Stalking Manticore + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 7.74379253 + posY: 1.83079338 + posZ: 7.477034 + rotX: 0.1869845 + rotY: 270.0228 + rotZ: 181.378967 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231601 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2316': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780741189047974901/76B77E5C6488F3216316F01C4C82727CBEA00188/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Creature. Elite. + GMNotes: '' + GUID: bafc5c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Cats of Ulthar + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 7.91450453 + posY: 1.83996892 + posZ: 8.101413 + rotX: 359.936768 + rotY: 270.000427 + rotZ: 180.013931 + 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/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780741189047974901/76B77E5C6488F3216316F01C4C82727CBEA00188/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Writer of Strange Tales + GMNotes: '' + GUID: 2fc907 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Virgil Gray + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 7.80947161 + posY: 1.83038568 + posZ: 8.000755 + rotX: 359.919342 + rotY: 269.997437 + rotZ: 180.0207 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231824 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/780741189047980016/6648C0B498B7379495E3F39CA3A2D06577CEC316/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780741189047979504/E68FDA90C52FFEBE5AB79BC387CC0558BF6742C9/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: City. Otherworld. + GMNotes: '' + GUID: 75a6b6 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: City-Which-Appears-On-No-Map + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 7.87037754 + posY: 1.83628917 + posZ: 7.98292542 + rotX: 359.9203 + rotY: 270.000031 + rotZ: 180.017181 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231823 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/780741189047980016/6648C0B498B7379495E3F39CA3A2D06577CEC316/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780741189047979504/E68FDA90C52FFEBE5AB79BC387CC0558BF6742C9/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Ooth-Nargai. Temple. + GMNotes: '' + GUID: b871ad + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Temple of Unattainable Desires + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 8.006548 + posY: 1.81301308 + posZ: 8.093848 + rotX: 359.929 + rotY: 270.0202 + rotZ: 179.9952 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231822 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/780741189047980016/6648C0B498B7379495E3F39CA3A2D06577CEC316/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780741189047979504/E68FDA90C52FFEBE5AB79BC387CC0558BF6742C9/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Ooth-Nargai. City. + GMNotes: '' + GUID: 84787a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Hazuth-Kleg + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 7.864752 + posY: 1.789244 + posZ: 8.688968 + rotX: 359.953125 + rotY: 270.002747 + rotZ: 181.355713 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231821 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/780741189047980016/6648C0B498B7379495E3F39CA3A2D06577CEC316/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780741189047979504/E68FDA90C52FFEBE5AB79BC387CC0558BF6742C9/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Ooth-Nargai. City. Port. + GMNotes: '' + GUID: 632dfd + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Serannian + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 7.32637262 + posY: 1.792413 + posZ: 8.147755 + rotX: 359.918884 + rotY: 269.999847 + rotZ: 180.01799 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231820 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/780741189047980016/6648C0B498B7379495E3F39CA3A2D06577CEC316/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780741189047979504/E68FDA90C52FFEBE5AB79BC387CC0558BF6742C9/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Ooth-Nargai. City. Port. + GMNotes: '' + GUID: 81b56c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: "Celepha\xEFs" + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 8.084273 + posY: 1.7698307 + posZ: 8.005477 + rotX: 359.349152 + rotY: 270.003357 + rotZ: 181.277618 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231819 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/780741189047980016/6648C0B498B7379495E3F39CA3A2D06577CEC316/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780741189047979504/E68FDA90C52FFEBE5AB79BC387CC0558BF6742C9/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Oriab. Ancient. Ruins. + GMNotes: '' + GUID: 74a0d4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Nameless Ruins + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 7.8799386 + posY: 1.77224565 + posZ: 8.290262 + rotX: 359.927643 + rotY: 270.099152 + rotZ: 179.948151 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231818 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/780741189047980016/6648C0B498B7379495E3F39CA3A2D06577CEC316/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780741189047979504/E68FDA90C52FFEBE5AB79BC387CC0558BF6742C9/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Oriab. Mountain. + GMNotes: '' + GUID: 9ff298 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Mt. Ngranek + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 7.99866343 + posY: 1.76236522 + posZ: 7.62067938 + rotX: 359.9357 + rotY: 269.999756 + rotZ: 180.018112 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231817 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/780741189047980016/6648C0B498B7379495E3F39CA3A2D06577CEC316/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780741189047979504/E68FDA90C52FFEBE5AB79BC387CC0558BF6742C9/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Oriab. City. Port. + GMNotes: '' + GUID: dd9d79 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Baharna + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 7.80937 + posY: 1.72200382 + posZ: 8.055302 + rotX: 358.173676 + rotY: 269.97226 + rotZ: 180.810455 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231816 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/780741189047980016/6648C0B498B7379495E3F39CA3A2D06577CEC316/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780741189047979504/E68FDA90C52FFEBE5AB79BC387CC0558BF6742C9/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Forbidden. City. + GMNotes: '' + GUID: f45a4e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Zulan-Thek + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 7.952498 + posY: 1.74269855 + posZ: 7.368366 + rotX: 359.929962 + rotY: 270.0016 + rotZ: 180.036713 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231815 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/780741189047980016/6648C0B498B7379495E3F39CA3A2D06577CEC316/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780741189047979504/E68FDA90C52FFEBE5AB79BC387CC0558BF6742C9/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Forbidden. Wastes. + GMNotes: '' + GUID: 5e9de1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Forbidden Lands + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 7.84566355 + posY: 1.73356628 + posZ: 7.61528 + rotX: 359.935547 + rotY: 270.0005 + rotZ: 180.019562 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231814 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/780741189047980016/6648C0B498B7379495E3F39CA3A2D06577CEC316/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780741189047979504/E68FDA90C52FFEBE5AB79BC387CC0558BF6742C9/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Forbidden. City. Port. + GMNotes: '' + GUID: a919a3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ilek-Vad + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 7.974835 + posY: 1.69053483 + posZ: 7.738431 + rotX: 358.220673 + rotY: 269.9888 + rotZ: 180.919571 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231813 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/780741189047980016/6648C0B498B7379495E3F39CA3A2D06577CEC316/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780741189047979504/E68FDA90C52FFEBE5AB79BC387CC0558BF6742C9/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Mnar. Ancient. Ruins. + GMNotes: '' + GUID: eb5182 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ruins of Ib + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 8.090337 + posY: 1.71401227 + posZ: 7.75737143 + rotX: 359.936218 + rotY: 269.999878 + rotZ: 180.015945 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231812 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/780741189047980016/6648C0B498B7379495E3F39CA3A2D06577CEC316/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780741189047979504/E68FDA90C52FFEBE5AB79BC387CC0558BF6742C9/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Mnar. Ancient. Ruins. + GMNotes: '' + GUID: 952b5c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Sarnath + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 7.739208 + posY: 1.70540357 + posZ: 8.139523 + rotX: 359.954346 + rotY: 270.00177 + rotZ: 180.0128 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231811 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/780741189047980016/6648C0B498B7379495E3F39CA3A2D06577CEC316/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780741189047979504/E68FDA90C52FFEBE5AB79BC387CC0558BF6742C9/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Mnar. Ancient. City. Port. + GMNotes: '' + GUID: 9d3c92 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Kadatheron + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 8.410202 + posY: 1.69407141 + posZ: 8.239045 + rotX: 359.911346 + rotY: 269.999023 + rotZ: 180.024 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231810 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/780741189047980016/6648C0B498B7379495E3F39CA3A2D06577CEC316/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780741189047979504/E68FDA90C52FFEBE5AB79BC387CC0558BF6742C9/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Skai. City. Port. + GMNotes: '' + GUID: bb353d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dylath-Leen + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 8.00995 + posY: 1.68727922 + posZ: 8.013389 + rotX: 359.990021 + rotY: 270.021851 + rotZ: 179.98262 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231809 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/780741189047980016/6648C0B498B7379495E3F39CA3A2D06577CEC316/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780741189047979504/E68FDA90C52FFEBE5AB79BC387CC0558BF6742C9/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Skai. City. + GMNotes: '' + GUID: 8edf72 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Skai River + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 4.699661 + posY: 1.71192169 + posZ: 9.002438 + rotX: 359.716766 + rotY: 269.980347 + rotZ: 179.148148 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231808 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/780741189047980016/6648C0B498B7379495E3F39CA3A2D06577CEC316/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780741189047979504/E68FDA90C52FFEBE5AB79BC387CC0558BF6742C9/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Skai. City. + GMNotes: '' + GUID: efab3f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ulthar + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 5.21066 + posY: 1.6909461 + posZ: 9.298352 + rotX: 359.973419 + rotY: 270.0005 + rotZ: 180.032074 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231907 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/780741189047980016/6648C0B498B7379495E3F39CA3A2D06577CEC316/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780741189047979504/E68FDA90C52FFEBE5AB79BC387CC0558BF6742C9/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 2 + GMNotes: '' + GUID: '769271' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The King's Decree + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 5.018686 + posY: 1.72765768 + posZ: 6.16847038 + rotX: 359.936951 + rotY: 269.0855 + rotZ: 180.014709 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231906 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/780741189047980016/6648C0B498B7379495E3F39CA3A2D06577CEC316/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780741189047979504/E68FDA90C52FFEBE5AB79BC387CC0558BF6742C9/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 2 + GMNotes: '' + GUID: b38ed6 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Seek Out the Night + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 5.101657 + posY: 1.70526326 + posZ: 5.350042 + rotX: 359.935516 + rotY: 269.531952 + rotZ: 180.023392 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231905 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/780741189047980016/6648C0B498B7379495E3F39CA3A2D06577CEC316/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780741189047979504/E68FDA90C52FFEBE5AB79BC387CC0558BF6742C9/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 2 + GMNotes: '' + GUID: a44f6b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Doom That Came Before + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 5.21594572 + posY: 1.70027864 + posZ: 5.51247025 + rotX: 359.937622 + rotY: 270.0418 + rotZ: 179.971741 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231904 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/780741189047980016/6648C0B498B7379495E3F39CA3A2D06577CEC316/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780741189047979504/E68FDA90C52FFEBE5AB79BC387CC0558BF6742C9/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 2 + GMNotes: '' + GUID: 021a99 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Isle of Oriab + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 5.192438 + posY: 1.697742 + posZ: 5.82009029 + rotX: 359.9547 + rotY: 269.1612 + rotZ: 180.028168 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231903 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/780741189047980016/6648C0B498B7379495E3F39CA3A2D06577CEC316/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780741189047979504/E68FDA90C52FFEBE5AB79BC387CC0558BF6742C9/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 1 + GMNotes: '' + GUID: 0a577f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Kingdom of the Skai + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 5.14348745 + posY: 1.69948018 + posZ: 5.292216 + rotX: 359.934479 + rotY: 270.001831 + rotZ: 180.025162 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231902 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/780741189047980016/6648C0B498B7379495E3F39CA3A2D06577CEC316/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780741189047979504/E68FDA90C52FFEBE5AB79BC387CC0558BF6742C9/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 2 + GMNotes: '' + GUID: 8b5d64 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Agents of the Outer Gods + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 5.44163036 + posY: 1.713346 + posZ: 5.74996948 + rotX: 359.940552 + rotY: 269.955872 + rotZ: 180.031189 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231901 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/780741189047980016/6648C0B498B7379495E3F39CA3A2D06577CEC316/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780741189047979504/E68FDA90C52FFEBE5AB79BC387CC0558BF6742C9/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 1 + GMNotes: '' + GUID: 3c8b64 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Journey Across the Dreamlands + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 5.41990042 + posY: 1.69569564 + posZ: 5.91033745 + rotX: 359.939575 + rotY: 270.005554 + rotZ: 180.016434 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231800 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/780741189047980016/6648C0B498B7379495E3F39CA3A2D06577CEC316/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780741189047979504/E68FDA90C52FFEBE5AB79BC387CC0558BF6742C9/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: The Search for Kadath + GMNotes: '' + GUID: be41db + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Scenario + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 5.08632946 + posY: 1.68586 + posZ: 5.986413 + rotX: 359.917938 + rotY: 270.001221 + rotZ: 0.017960811 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2316': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780741189047974901/76B77E5C6488F3216316F01C4C82727CBEA00188/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '2318': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/780741189047980016/6648C0B498B7379495E3F39CA3A2D06577CEC316/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780741189047979504/E68FDA90C52FFEBE5AB79BC387CC0558BF6742C9/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/780741189047980016/6648C0B498B7379495E3F39CA3A2D06577CEC316/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780741189047979504/E68FDA90C52FFEBE5AB79BC387CC0558BF6742C9/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 231610 +- 231610 +- 231609 +- 231609 +- 231608 +- 231608 +- 231607 +- 231607 +- 231606 +- 231606 +- 231605 +- 231605 +- 231605 +- 231604 +- 231603 +- 231602 +- 231601 +- 231600 +- 231824 +- 231823 +- 231822 +- 231821 +- 231820 +- 231819 +- 231818 +- 231817 +- 231816 +- 231815 +- 231814 +- 231813 +- 231812 +- 231811 +- 231810 +- 231809 +- 231808 +- 231907 +- 231906 +- 231905 +- 231904 +- 231903 +- 231902 +- 231901 +- 231800 +Description: '' +GMNotes: '' +GUID: 44e380 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: The Search for Kadath +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 15.1349964 + posY: 2.66819167 + posZ: -32.401432 + rotX: 359.9201 + rotY: 269.999878 + rotZ: 0.01688497 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Dream-Eaters 587028/Deck Waking Nightmare 5b1a32.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Dream-Eaters 587028/Deck Waking Nightmare 5b1a32.yaml new file mode 100644 index 000000000..ab9cc1afc --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Dream-Eaters 587028/Deck Waking Nightmare 5b1a32.yaml @@ -0,0 +1,1139 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 274424 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2744': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493383646804247/225C1675DCFAFA6331AF23D73934CE52544F4863/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646805159/968F84A126D57214C3BC8E095D9D8EB066ED8D6C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 3d332d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Infestation Begins + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -37.5943565 + posY: 1.32766378 + posZ: 67.72125 + rotX: 0.02160549 + rotY: 270.370941 + rotZ: 0.0109728454 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274108 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2741': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: 1dbd74 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Outbreak + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -34.31594 + posY: 1.3274343 + posZ: 62.6278839 + rotX: 0.0209953282 + rotY: 269.9995 + rotZ: 0.0155746089 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274108 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2741': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: e22db7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Outbreak + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -34.424263 + posY: 1.48825943 + posZ: 62.6482277 + rotX: 0.0184215251 + rotY: 269.9995 + rotZ: 0.0152005749 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274108 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2741': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: 1ba9a5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Outbreak + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -34.5263519 + posY: 1.50561178 + posZ: 62.8107224 + rotX: 0.0218162369 + rotY: 269.9996 + rotZ: 0.0154103413 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274107 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2741': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Staff. Spider. + GMNotes: '' + GUID: 96be34 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Corrupted Orderly + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -33.61786 + posY: 1.32563686 + posZ: 55.578598 + rotX: 0.0208737962 + rotY: 269.999573 + rotZ: 0.0163972937 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274107 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2741': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Staff. Spider. + GMNotes: '' + GUID: f5c168 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Corrupted Orderly + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -33.4744034 + posY: 1.48663652 + posZ: 55.9170952 + rotX: 0.0223054849 + rotY: 269.999542 + rotZ: 0.0131469378 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274106 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2741': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Staff. + GMNotes: '' + GUID: 7f855a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Suspicious Orderly + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -29.80958 + posY: 1.32711017 + posZ: 55.8766975 + rotX: 0.0208513942 + rotY: 269.9996 + rotZ: 0.0165845677 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274106 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2741': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Staff. + GMNotes: '' + GUID: 781b57 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Suspicious Orderly + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -29.8120575 + posY: 1.48805237 + posZ: 56.2885742 + rotX: 0.0192527268 + rotY: 269.999573 + rotZ: 0.0116681773 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274419 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2744': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493383646804247/225C1675DCFAFA6331AF23D73934CE52544F4863/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646805159/968F84A126D57214C3BC8E095D9D8EB066ED8D6C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: St. Mary's. + GMNotes: '' + GUID: e12734 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Records Office + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -22.8583832 + posY: 1.33330488 + posZ: 68.40683 + rotX: 0.0208072923 + rotY: 270.0 + rotZ: 0.016769005 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274416 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2744': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493383646804247/225C1675DCFAFA6331AF23D73934CE52544F4863/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646805159/968F84A126D57214C3BC8E095D9D8EB066ED8D6C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: St. Mary's. + GMNotes: '' + GUID: 3baffc + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Waiting Room + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -26.3094368 + posY: 1.33211875 + posZ: 68.63643 + rotX: 0.02080764 + rotY: 270.0 + rotZ: 0.016769046 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274417 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2744': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493383646804247/225C1675DCFAFA6331AF23D73934CE52544F4863/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646805159/968F84A126D57214C3BC8E095D9D8EB066ED8D6C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: St. Mary's. + GMNotes: '' + GUID: 27ccf3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Emergency Room + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -26.4615459 + posY: 1.33121622 + posZ: 65.7417 + rotX: 0.0208074488 + rotY: 270.0 + rotZ: 0.016768422 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274420 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2744': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493383646804247/225C1675DCFAFA6331AF23D73934CE52544F4863/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646805159/968F84A126D57214C3BC8E095D9D8EB066ED8D6C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: St. Mary's. + GMNotes: '' + GUID: 476b23 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Stairwell + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -22.6214 + posY: 1.33251476 + posZ: 65.41412 + rotX: 0.02080744 + rotY: 270.0 + rotZ: 0.0167685822 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274418 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2744': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493383646804247/225C1675DCFAFA6331AF23D73934CE52544F4863/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646805159/968F84A126D57214C3BC8E095D9D8EB066ED8D6C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: St. Mary's. + GMNotes: '' + GUID: 4bb346 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Experimental Therapies Ward + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -26.6666679 + posY: 1.33020258 + posZ: 62.533638 + rotX: 0.0208095647 + rotY: 270.0 + rotZ: 0.016771812 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274421 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2744': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493383646804247/225C1675DCFAFA6331AF23D73934CE52544F4863/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646805159/968F84A126D57214C3BC8E095D9D8EB066ED8D6C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: St. Mary's. Basement. + GMNotes: '' + GUID: 96c994 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Basement Door + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -23.113781 + posY: 1.33147311 + posZ: 62.4662743 + rotX: 0.0208086837 + rotY: 270.000031 + rotZ: 0.0167698544 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274422 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2744': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493383646804247/225C1675DCFAFA6331AF23D73934CE52544F4863/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646805159/968F84A126D57214C3BC8E095D9D8EB066ED8D6C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: St. Mary's. Basement. + GMNotes: '' + GUID: 4e2ab5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Basement Door + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -30.43284 + posY: 1.32957029 + posZ: 65.0461655 + rotX: 0.0208073929 + rotY: 270.000031 + rotZ: 0.0167686474 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274423 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2744': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493383646804247/225C1675DCFAFA6331AF23D73934CE52544F4863/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646805159/968F84A126D57214C3BC8E095D9D8EB066ED8D6C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: St. Mary's. Basement. + GMNotes: '' + GUID: 42fa87 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Basement Door + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -30.5547161 + posY: 1.33045793 + posZ: 68.2301559 + rotX: 0.0208088923 + rotY: 270.000031 + rotZ: 0.0167693347 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274204 + 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/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Chained to the Waking World + GMNotes: '' + GUID: d253a6 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Randolph Carter + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -34.1786957 + posY: 1.53997087 + posZ: 66.72877 + rotX: 0.020953171 + rotY: 270.000183 + rotZ: 0.0163455158 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274105 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2741': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Emergency Physician + GMNotes: '' + GUID: b1c043 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dr. Shivani Maheswaran + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -34.3800964 + posY: 1.54959488 + posZ: 66.94191 + rotX: 0.020646112 + rotY: 269.999481 + rotZ: 0.0163371358 + 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: http://cloud-3.steamusercontent.com/ugc/780749631103001215/3FF9DC51D7737267B68EC5D9CF17BE421681663B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780749631102998699/DA1D7C58FE177F46169558EF1D8301754A91A73A/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 3 + GMNotes: '' + GUID: d810aa + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Hospital of Horrors + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 31.8588772 + posY: 1.35450113 + posZ: 73.35029 + rotX: 0.0179367531 + rotY: 180.003143 + rotZ: 359.9711 + 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: http://cloud-3.steamusercontent.com/ugc/780749631103001215/3FF9DC51D7737267B68EC5D9CF17BE421681663B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780749631102998699/DA1D7C58FE177F46169558EF1D8301754A91A73A/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 2 + GMNotes: '' + GUID: 9a9007 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Infestation Spreads + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 31.52542 + posY: 1.35202861 + posZ: 65.03948 + rotX: 0.0243823268 + rotY: 179.99263 + rotZ: 359.975159 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274605 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2746': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/780749631103001215/3FF9DC51D7737267B68EC5D9CF17BE421681663B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780749631102998699/DA1D7C58FE177F46169558EF1D8301754A91A73A/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 1 + GMNotes: '' + GUID: 87ab5b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Halls of St. Mary's + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 31.3429413 + posY: 1.49684048 + posZ: 64.9912949 + rotX: 0.053179 + rotY: 179.965576 + rotZ: 359.944275 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274610 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2746': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/780749631103001215/3FF9DC51D7737267B68EC5D9CF17BE421681663B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780749631102998699/DA1D7C58FE177F46169558EF1D8301754A91A73A/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 3 + GMNotes: '' + GUID: aa505a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Containing the Outbreak + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 28.1885529 + posY: 1.349323 + posZ: 60.02389 + rotX: 0.0174327083 + rotY: 180.000626 + rotZ: 359.974731 + 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: http://cloud-3.steamusercontent.com/ugc/780749631103001215/3FF9DC51D7737267B68EC5D9CF17BE421681663B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780749631102998699/DA1D7C58FE177F46169558EF1D8301754A91A73A/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 2 + GMNotes: '' + GUID: c04e9d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Search for the Patient + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 28.2481365 + posY: 1.35057032 + posZ: 64.12125 + rotX: 0.0334687047 + rotY: 179.974152 + rotZ: 359.9728 + 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: http://cloud-3.steamusercontent.com/ugc/780749631103001215/3FF9DC51D7737267B68EC5D9CF17BE421681663B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780749631102998699/DA1D7C58FE177F46169558EF1D8301754A91A73A/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 1 + GMNotes: '' + GUID: 6789c0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Looking for Answers + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 28.1970787 + posY: 1.49535608 + posZ: 63.8266373 + rotX: 0.08231453 + rotY: 179.933533 + rotZ: 359.9337 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274415 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2744': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493383646804247/225C1675DCFAFA6331AF23D73934CE52544F4863/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646805159/968F84A126D57214C3BC8E095D9D8EB066ED8D6C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Waking Nightmare + GMNotes: '' + GUID: 33ce38 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Scenario + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -28.7055664 + posY: 1.49951375 + posZ: 61.6051025 + rotX: 359.991 + rotY: 359.993958 + rotZ: 0.0205853246 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2741': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '2742': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '2744': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493383646804247/225C1675DCFAFA6331AF23D73934CE52544F4863/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646805159/968F84A126D57214C3BC8E095D9D8EB066ED8D6C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + '2746': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/780749631103001215/3FF9DC51D7737267B68EC5D9CF17BE421681663B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780749631102998699/DA1D7C58FE177F46169558EF1D8301754A91A73A/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 274424 +- 274108 +- 274108 +- 274108 +- 274107 +- 274107 +- 274106 +- 274106 +- 274419 +- 274416 +- 274417 +- 274420 +- 274418 +- 274421 +- 274422 +- 274423 +- 274204 +- 274105 +- 274607 +- 274606 +- 274605 +- 274610 +- 274609 +- 274608 +- 274415 +Description: '' +GMNotes: '' +GUID: 5b1a32 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Waking Nightmare +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 5.28092051 + posY: 3.47793937 + posZ: 65.99963 + rotX: 359.444946 + rotY: 270.002472 + rotZ: 0.148212552 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Dream-Eaters 587028/Deck Weaver of the Cosmos 7b15a1.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Dream-Eaters 587028/Deck Weaver of the Cosmos 7b15a1.yaml new file mode 100644 index 000000000..bda757bda --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Dream-Eaters 587028/Deck Weaver of the Cosmos 7b15a1.yaml @@ -0,0 +1,1691 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 234644 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2346': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025770470/7C77423FFA657FB6B5937C80D6813C24E2D0E88C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Scheme. + GMNotes: '' + GUID: '785613' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Endless Weaving + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -6.68243551 + posY: 1.95484364 + posZ: -31.6753063 + rotX: 359.9364 + rotY: 270.008545 + rotZ: 180.01358 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234644 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2346': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025770470/7C77423FFA657FB6B5937C80D6813C24E2D0E88C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Scheme. + GMNotes: '' + GUID: '785613' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Endless Weaving + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 22.7851753 + posY: 1.91837645 + posZ: -24.63965 + rotX: 359.920135 + rotY: 270.000061 + rotZ: 180.016922 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234644 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2346': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025770470/7C77423FFA657FB6B5937C80D6813C24E2D0E88C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Scheme. + GMNotes: '' + GUID: '785613' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Endless Weaving + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 23.264204 + posY: 1.89883888 + posZ: -24.5000648 + rotX: 359.913483 + rotY: 270.012848 + rotZ: 179.9988 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234643 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2346': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025770470/7C77423FFA657FB6B5937C80D6813C24E2D0E88C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: ea2b60 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Caught in a Web + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 30.2965164 + posY: 1.501012 + posZ: -33.87221 + rotX: 359.920135 + rotY: 269.999939 + rotZ: 0.0168719124 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234643 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2346': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025770470/7C77423FFA657FB6B5937C80D6813C24E2D0E88C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: d9386a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Caught in a Web + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 30.238409 + posY: 1.6664232 + posZ: -33.603672 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234643 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2346': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025770470/7C77423FFA657FB6B5937C80D6813C24E2D0E88C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: ea2b60 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Caught in a Web + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 30.2300072 + posY: 1.67932355 + posZ: -33.6048 + rotX: 359.9363 + rotY: 270.0 + rotZ: 0.0131211616 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234642 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2346': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025770470/7C77423FFA657FB6B5937C80D6813C24E2D0E88C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Power. + GMNotes: '' + GUID: 4f27bf + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Spinner in Darkness + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 23.08712 + posY: 1.86060429 + posZ: -24.45927 + rotX: 359.9363 + rotY: 269.9997 + rotZ: 180.013748 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234642 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2346': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025770470/7C77423FFA657FB6B5937C80D6813C24E2D0E88C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Power. + GMNotes: '' + GUID: 4f27bf + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Spinner in Darkness + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 23.1738663 + posY: 1.85031211 + posZ: -25.061903 + rotX: 359.918671 + rotY: 270.003784 + rotZ: 180.024521 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234641 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2346': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025770470/7C77423FFA657FB6B5937C80D6813C24E2D0E88C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Spider. + GMNotes: '' + GUID: ef8a41 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Web-Spinner + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 27.28021 + posY: 1.50728 + posZ: -26.8438931 + rotX: 359.9202 + rotY: 270.003052 + rotZ: 0.0164223611 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234641 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2346': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025770470/7C77423FFA657FB6B5937C80D6813C24E2D0E88C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Spider. + GMNotes: '' + GUID: e634db + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Web-Spinner + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 27.13497 + posY: 1.66542327 + posZ: -26.84374 + rotX: 359.9193 + rotY: 270.003082 + rotZ: 0.016360376 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234641 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2346': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025770470/7C77423FFA657FB6B5937C80D6813C24E2D0E88C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Spider. + GMNotes: '' + GUID: ef8a41 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Web-Spinner + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 26.7373238 + posY: 1.67394149 + posZ: -26.8421936 + rotX: 359.927 + rotY: 269.970947 + rotZ: 0.026428191 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234640 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2346': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025770470/7C77423FFA657FB6B5937C80D6813C24E2D0E88C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Ancient One. Spider. Elite. + GMNotes: '' + GUID: 6af4f4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Legs of Atlach-Nacha + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 22.404 + posY: 1.8129226 + posZ: -25.3721523 + rotX: 359.9183 + rotY: 269.991943 + rotZ: 180.026932 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234639 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2346': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025770470/7C77423FFA657FB6B5937C80D6813C24E2D0E88C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Ancient One. Spider. Elite. + GMNotes: '' + GUID: f4d669 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Legs of Atlach-Nacha + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 22.8854675 + posY: 1.80326426 + posZ: -24.1651058 + rotX: 359.940918 + rotY: 269.9501 + rotZ: 180.03624 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234638 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2346': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025770470/7C77423FFA657FB6B5937C80D6813C24E2D0E88C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Ancient One. Spider. Elite. + GMNotes: '' + GUID: 34d21c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Legs of Atlach-Nacha + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 22.8076344 + posY: 1.79324472 + posZ: -24.5734825 + rotX: 359.916351 + rotY: 270.103638 + rotZ: 180.006836 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234637 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2346': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025770470/7C77423FFA657FB6B5937C80D6813C24E2D0E88C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Ancient One. Spider. Elite. + GMNotes: '' + GUID: 8b17a1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Legs of Atlach-Nacha + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 23.0166283 + posY: 1.7832396 + posZ: -24.6422253 + rotX: 359.922058 + rotY: 270.101379 + rotZ: 179.989792 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234743 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2347': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1016065725025781883/DDC7B603B5E571A152D76364CCF3155BB7BC8C6F/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025781079/EBC4A272423668544053A4ACD161A993E038255D/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: The Spider God + GMNotes: '' + GUID: a2f955 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Atlatch-Nacha + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 23.3428917 + posY: 1.773444 + posZ: -24.4404984 + rotX: 359.9254 + rotY: 269.9918 + rotZ: 180.031067 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234742 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2347': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1016065725025781883/DDC7B603B5E571A152D76364CCF3155BB7BC8C6F/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025781079/EBC4A272423668544053A4ACD161A993E038255D/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Otherworld. Extradimensional. + GMNotes: '' + GUID: 9fa834 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Great Web + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 22.9413471 + posY: 1.77113843 + posZ: -24.3497066 + rotX: 359.9201 + rotY: 269.9974 + rotZ: 180.016953 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234742 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2347': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1016065725025781883/DDC7B603B5E571A152D76364CCF3155BB7BC8C6F/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025781079/EBC4A272423668544053A4ACD161A993E038255D/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Otherworld. Extradimensional. + GMNotes: '' + GUID: 9fa834 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Great Web + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 22.9413471 + posY: 1.76147807 + posZ: -24.3497066 + rotX: 359.9201 + rotY: 269.9974 + rotZ: 180.016953 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234742 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2347': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1016065725025781883/DDC7B603B5E571A152D76364CCF3155BB7BC8C6F/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025781079/EBC4A272423668544053A4ACD161A993E038255D/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Otherworld. Extradimensional. + GMNotes: '' + GUID: 9fa834 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Great Web + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 23.6661911 + posY: 1.74392021 + posZ: -24.1155529 + rotX: 359.91272 + rotY: 270.0112 + rotZ: 180.0089 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234741 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2347': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1016065725025781883/DDC7B603B5E571A152D76364CCF3155BB7BC8C6F/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025781079/EBC4A272423668544053A4ACD161A993E038255D/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Otherworld. Extradimensional. + GMNotes: '' + GUID: 39ace3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Great Web + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 23.0563087 + posY: 1.74228621 + posZ: -24.40174 + rotX: 359.920349 + rotY: 270.001373 + rotZ: 180.017075 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234741 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2347': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1016065725025781883/DDC7B603B5E571A152D76364CCF3155BB7BC8C6F/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025781079/EBC4A272423668544053A4ACD161A993E038255D/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Otherworld. Extradimensional. + GMNotes: '' + GUID: 39ace3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Great Web + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 22.95084 + posY: 1.72553241 + posZ: -24.5855541 + rotX: 359.921 + rotY: 270.0031 + rotZ: 180.019485 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234740 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2347': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1016065725025781883/DDC7B603B5E571A152D76364CCF3155BB7BC8C6F/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025781079/EBC4A272423668544053A4ACD161A993E038255D/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Otherworld. Extradimensional. + GMNotes: '' + GUID: 02caab + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Great Web + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 23.0675964 + posY: 1.72301054 + posZ: -24.7052059 + rotX: 359.920441 + rotY: 270.003052 + rotZ: 180.017029 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234740 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2347': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1016065725025781883/DDC7B603B5E571A152D76364CCF3155BB7BC8C6F/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025781079/EBC4A272423668544053A4ACD161A993E038255D/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Otherworld. Extradimensional. + GMNotes: '' + GUID: 02caab + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Great Web + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 23.5544472 + posY: 1.70530117 + posZ: -24.9623871 + rotX: 359.9161 + rotY: 269.9936 + rotZ: 179.9969 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234739 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2347': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1016065725025781883/DDC7B603B5E571A152D76364CCF3155BB7BC8C6F/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025781079/EBC4A272423668544053A4ACD161A993E038255D/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Otherworld. Extradimensional. + GMNotes: '' + GUID: dfdc8c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Great Web + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 23.24902 + posY: 1.69609487 + posZ: -24.7639065 + rotX: 359.919128 + rotY: 270.016479 + rotZ: 180.010544 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234739 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2347': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1016065725025781883/DDC7B603B5E571A152D76364CCF3155BB7BC8C6F/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025781079/EBC4A272423668544053A4ACD161A993E038255D/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Otherworld. Extradimensional. + GMNotes: '' + GUID: dfdc8c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Great Web + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 23.2574062 + posY: 1.69443727 + posZ: -24.5917835 + rotX: 359.9203 + rotY: 269.995575 + rotZ: 180.01712 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234739 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2347': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1016065725025781883/DDC7B603B5E571A152D76364CCF3155BB7BC8C6F/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025781079/EBC4A272423668544053A4ACD161A993E038255D/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Otherworld. Extradimensional. + GMNotes: '' + GUID: dfdc8c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Great Web + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 23.1643314 + posY: 1.67695141 + posZ: -24.6891079 + rotX: 359.925232 + rotY: 269.988953 + rotZ: 180.020264 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234738 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2347': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1016065725025781883/DDC7B603B5E571A152D76364CCF3155BB7BC8C6F/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025781079/EBC4A272423668544053A4ACD161A993E038255D/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Otherworld. Extradimensional. + GMNotes: '' + GUID: c63cd6 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Great Web + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 23.3273067 + posY: 1.675454 + posZ: -24.82329 + rotX: 359.919952 + rotY: 270.004761 + rotZ: 180.0172 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234738 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2347': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1016065725025781883/DDC7B603B5E571A152D76364CCF3155BB7BC8C6F/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025781079/EBC4A272423668544053A4ACD161A993E038255D/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Otherworld. Extradimensional. + GMNotes: '' + GUID: c63cd6 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Great Web + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 23.3832188 + posY: 1.65732646 + posZ: -24.65257 + rotX: 359.919617 + rotY: 270.002716 + rotZ: 180.014572 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234737 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2347': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1016065725025781883/DDC7B603B5E571A152D76364CCF3155BB7BC8C6F/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025781079/EBC4A272423668544053A4ACD161A993E038255D/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Otherworld. Extradimensional. + GMNotes: '' + GUID: 43f634 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Great Web + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 23.2770386 + posY: 1.658208 + posZ: -24.3562431 + rotX: 359.920074 + rotY: 270.003967 + rotZ: 180.016846 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234737 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2347': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1016065725025781883/DDC7B603B5E571A152D76364CCF3155BB7BC8C6F/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025781079/EBC4A272423668544053A4ACD161A993E038255D/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Otherworld. Extradimensional. + GMNotes: '' + GUID: 43f634 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Great Web + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 23.3182526 + posY: 1.6484921 + posZ: -24.3511677 + rotX: 359.920074 + rotY: 270.003967 + rotZ: 180.016846 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234737 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2347': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1016065725025781883/DDC7B603B5E571A152D76364CCF3155BB7BC8C6F/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025781079/EBC4A272423668544053A4ACD161A993E038255D/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Otherworld. Extradimensional. + GMNotes: '' + GUID: 43f634 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Great Web + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 23.2409611 + posY: 1.6806618 + posZ: -24.515955 + rotX: 359.912384 + rotY: 270.030334 + rotZ: 179.990555 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234549 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2345': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1016065725025759245/C44D15D425A11A50C4EBC0956DAAD13BFD8282AA/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025757858/C291D7AC5E6D9A6B2497084DCCFC1623FFBA4FE4/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 3 + GMNotes: '' + GUID: 6215ed + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Scheme's Demise + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 22.8391266 + posY: 1.67524612 + posZ: -24.5398026 + rotX: 359.933075 + rotY: 270.006744 + rotZ: 180.029221 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234548 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2345': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1016065725025759245/C44D15D425A11A50C4EBC0956DAAD13BFD8282AA/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025757858/C291D7AC5E6D9A6B2497084DCCFC1623FFBA4FE4/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 2 + GMNotes: '' + GUID: '525296' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Weaver of the Cosmos + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 23.0025826 + posY: 1.66993427 + posZ: -24.81968 + rotX: 359.939941 + rotY: 269.082855 + rotZ: 180.0324 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234547 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2345': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1016065725025759245/C44D15D425A11A50C4EBC0956DAAD13BFD8282AA/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025757858/C291D7AC5E6D9A6B2497084DCCFC1623FFBA4FE4/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 1 + GMNotes: '' + GUID: 75881e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Journey Across the Bridge + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 23.0890656 + posY: 1.667153 + posZ: -24.81814 + rotX: 359.942383 + rotY: 270.053467 + rotZ: 180.0245 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234546 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2345': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1016065725025759245/C44D15D425A11A50C4EBC0956DAAD13BFD8282AA/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025757858/C291D7AC5E6D9A6B2497084DCCFC1623FFBA4FE4/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 3 + GMNotes: '' + GUID: 49d1a4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Realities Interwoven + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 22.9951839 + posY: 1.66921711 + posZ: -24.5196342 + rotX: 359.938416 + rotY: 269.97934 + rotZ: 180.022324 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234545 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2345': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1016065725025759245/C44D15D425A11A50C4EBC0956DAAD13BFD8282AA/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025757858/C291D7AC5E6D9A6B2497084DCCFC1623FFBA4FE4/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 2 + GMNotes: '' + GUID: 86b4a8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: A Trail of Twists + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 22.9917831 + posY: 1.68221009 + posZ: -24.03406 + rotX: 359.9213 + rotY: 269.986237 + rotZ: 179.985153 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234544 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2345': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1016065725025759245/C44D15D425A11A50C4EBC0956DAAD13BFD8282AA/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025757858/C291D7AC5E6D9A6B2497084DCCFC1623FFBA4FE4/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 1 + GMNotes: '' + GUID: 75881e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Bridge of Webs + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 23.0015373 + posY: 1.66543865 + posZ: -24.6312923 + rotX: 359.937256 + rotY: 270.251984 + rotZ: 180.013733 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234736 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2347': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1016065725025781883/DDC7B603B5E571A152D76364CCF3155BB7BC8C6F/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025781079/EBC4A272423668544053A4ACD161A993E038255D/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Weaver of the Cosmos + GMNotes: '' + GUID: 43f634 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Scenario + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 23.247036 + posY: 1.91547644 + posZ: -24.9049 + rotX: 359.926849 + rotY: 270.0039 + rotZ: 0.0112446174 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2345': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1016065725025759245/C44D15D425A11A50C4EBC0956DAAD13BFD8282AA/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025757858/C291D7AC5E6D9A6B2497084DCCFC1623FFBA4FE4/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + '2346': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025770470/7C77423FFA657FB6B5937C80D6813C24E2D0E88C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '2347': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1016065725025781883/DDC7B603B5E571A152D76364CCF3155BB7BC8C6F/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025781079/EBC4A272423668544053A4ACD161A993E038255D/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 234644 +- 234644 +- 234644 +- 234643 +- 234643 +- 234643 +- 234642 +- 234642 +- 234641 +- 234641 +- 234641 +- 234640 +- 234639 +- 234638 +- 234637 +- 234743 +- 234742 +- 234742 +- 234742 +- 234741 +- 234741 +- 234740 +- 234740 +- 234739 +- 234739 +- 234739 +- 234738 +- 234738 +- 234737 +- 234737 +- 234737 +- 234549 +- 234548 +- 234547 +- 234546 +- 234545 +- 234544 +- 234736 +Description: '' +GMNotes: '' +GUID: 7b15a1 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Weaver of the Cosmos +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -7.65344048 + posY: 2.695888 + posZ: -40.8792152 + rotX: 359.9201 + rotY: 270.000153 + rotZ: 0.016893113 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Dream-Eaters 587028/Deck Where the Gods Dwell 9af347.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Dream-Eaters 587028/Deck Where the Gods Dwell 9af347.yaml new file mode 100644 index 000000000..6b73b1807 --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Dream-Eaters 587028/Deck Where the Gods Dwell 9af347.yaml @@ -0,0 +1,1820 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 234636 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2346': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025770470/7C77423FFA657FB6B5937C80D6813C24E2D0E88C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Curse. + GMNotes: '' + GUID: d4845c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Abandoned by the Gods + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 23.94412 + posY: 1.95221329 + posZ: -4.00885868 + rotX: 359.9371 + rotY: 270.019684 + rotZ: 179.997742 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234636 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2346': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025770470/7C77423FFA657FB6B5937C80D6813C24E2D0E88C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Curse. + GMNotes: '' + GUID: d4845c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Abandoned by the Gods + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 23.7621918 + posY: 1.94272566 + posZ: -4.18574238 + rotX: 359.9617 + rotY: 269.975922 + rotZ: 180.0185 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234635 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2346': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025770470/7C77423FFA657FB6B5937C80D6813C24E2D0E88C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Curse. + GMNotes: '' + GUID: 4b40bb + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Restless Journey (Lies) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 23.3701916 + posY: 1.93367982 + posZ: -4.36128855 + rotX: 359.921326 + rotY: 270.0052 + rotZ: 180.000824 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234634 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2346': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025770470/7C77423FFA657FB6B5937C80D6813C24E2D0E88C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Curse. + GMNotes: '' + GUID: 9cc2c5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Restless Journey (Hardship) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 24.822422 + posY: 1.92204416 + posZ: -4.675362 + rotX: 359.9141 + rotY: 269.997925 + rotZ: 180.008926 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234633 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2346': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025770470/7C77423FFA657FB6B5937C80D6813C24E2D0E88C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Curse. + GMNotes: '' + GUID: 8b17a1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Restless Journey (Fallacy) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 24.3455772 + posY: 1.9130013 + posZ: -4.31537247 + rotX: 359.942444 + rotY: 270.0401 + rotZ: 179.9737 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234632 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2346': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025770470/7C77423FFA657FB6B5937C80D6813C24E2D0E88C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Power. + GMNotes: '' + GUID: 8b17a1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Myriad Forms + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 24.248291 + posY: 1.90112662 + posZ: -4.12274 + rotX: 359.9361 + rotY: 269.999939 + rotZ: 180.0135 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234632 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2346': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025770470/7C77423FFA657FB6B5937C80D6813C24E2D0E88C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Power. + GMNotes: '' + GUID: 8b17a1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Myriad Forms + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 24.6841278 + posY: 1.89356327 + posZ: -4.09004736 + rotX: 359.940063 + rotY: 269.997955 + rotZ: 180.0192 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234631 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2346': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025770470/7C77423FFA657FB6B5937C80D6813C24E2D0E88C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Power. + GMNotes: '' + GUID: 5fb187 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Whispering Chaos (West) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 24.04887 + posY: 1.88450861 + posZ: -4.306909 + rotX: 359.932831 + rotY: 269.986847 + rotZ: 180.022079 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234630 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2346': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025770470/7C77423FFA657FB6B5937C80D6813C24E2D0E88C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Power. + GMNotes: '' + GUID: b8a1e4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Whispering Chaos (South) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 24.86096 + posY: 1.87369764 + posZ: -4.90019369 + rotX: 359.942841 + rotY: 270.011658 + rotZ: 179.993469 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234629 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2346': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025770470/7C77423FFA657FB6B5937C80D6813C24E2D0E88C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Power. + GMNotes: '' + GUID: bad74a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Whispering Chaos (East) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 24.3523312 + posY: 1.86474633 + posZ: -4.17823362 + rotX: 359.924377 + rotY: 269.996765 + rotZ: 180.005737 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234628 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2346': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025770470/7C77423FFA657FB6B5937C80D6813C24E2D0E88C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Power. + GMNotes: '' + GUID: 8b17a1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Whispering Chaos (North) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 24.8041611 + posY: 1.85457885 + posZ: -4.45476 + rotX: 359.956665 + rotY: 270.0014 + rotZ: 180.010117 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234627 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2346': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025770470/7C77423FFA657FB6B5937C80D6813C24E2D0E88C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Cultist. Servitor. + GMNotes: '' + GUID: 8b17a1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Liar with No Face + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 30.0970116 + posY: 1.50907743 + posZ: -7.34431076 + rotX: 359.92038 + rotY: 270.0 + rotZ: 0.0152852852 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234627 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2346': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025770470/7C77423FFA657FB6B5937C80D6813C24E2D0E88C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Cultist. Servitor. + GMNotes: '' + GUID: 0eece1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Liar with No Face + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 29.6553364 + posY: 1.66466415 + posZ: -6.972593 + rotX: 359.9489 + rotY: 270.0 + rotZ: 359.9941 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234627 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2346': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025770470/7C77423FFA657FB6B5937C80D6813C24E2D0E88C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Cultist. Servitor. + GMNotes: '' + GUID: 8b17a1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Liar with No Face + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 29.7579021 + posY: 1.68210459 + posZ: -7.25603771 + rotX: 359.9379 + rotY: 270.0 + rotZ: 0.0113988724 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234626 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2346': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025770470/7C77423FFA657FB6B5937C80D6813C24E2D0E88C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. + GMNotes: '' + GUID: 8b17a1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dhole of the Wastes + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 24.12478 + posY: 1.816801 + posZ: -4.293566 + rotX: 359.9374 + rotY: 269.9925 + rotZ: 180.019562 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234625 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2346': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025770470/7C77423FFA657FB6B5937C80D6813C24E2D0E88C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Agent of the Other Gods + GMNotes: '' + GUID: 8b17a1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: High Priest Not to Be Described + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 24.6613789 + posY: 1.8062644 + posZ: -4.41321325 + rotX: 359.9175 + rotY: 270.01236 + rotZ: 180.004135 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234624 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2346': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025770470/7C77423FFA657FB6B5937C80D6813C24E2D0E88C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Stalker Among the Stars + GMNotes: '' + GUID: 972fec + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Nyarlathotep + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 24.1821117 + posY: 1.7972374 + posZ: -3.79800153 + rotX: 359.938171 + rotY: 269.9275 + rotZ: 179.990189 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234623 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2346': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025770470/7C77423FFA657FB6B5937C80D6813C24E2D0E88C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: God of a Thousand Forms + GMNotes: '' + GUID: d721c2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Nyarlathotep + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 24.3556118 + posY: 1.78743017 + posZ: -4.37693739 + rotX: 359.9397 + rotY: 270.026184 + rotZ: 179.995834 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234622 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2346': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025770470/7C77423FFA657FB6B5937C80D6813C24E2D0E88C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Messenger of the Outer Gods + GMNotes: '' + GUID: 0f7c12 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Nyarlathotep + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 24.17125 + posY: 1.77807951 + posZ: -4.391301 + rotX: 359.927979 + rotY: 269.999939 + rotZ: 180.0015 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234621 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2346': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025770470/7C77423FFA657FB6B5937C80D6813C24E2D0E88C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: The Faceless Whisperer + GMNotes: '' + GUID: 8be848 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Nyarlathotep + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 23.9577122 + posY: 1.76867974 + posZ: -3.945862 + rotX: 359.909332 + rotY: 269.990051 + rotZ: 179.993744 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234620 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2346': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025770470/7C77423FFA657FB6B5937C80D6813C24E2D0E88C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: The Crawling Chaos + GMNotes: '' + GUID: 8b17a1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Nyarlathotep + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 24.2887135 + posY: 1.75877273 + posZ: -4.06469 + rotX: 359.9481 + rotY: 269.9936 + rotZ: 180.029816 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234735 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2347': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1016065725025781883/DDC7B603B5E571A152D76364CCF3155BB7BC8C6F/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025781079/EBC4A272423668544053A4ACD161A993E038255D/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Kadath. + GMNotes: '' + GUID: 11687a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Forsaken Tower + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 24.3873215 + posY: 1.74880981 + posZ: -4.57719469 + rotX: 359.935455 + rotY: 270.0346 + rotZ: 179.990356 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234734 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2347': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1016065725025781883/DDC7B603B5E571A152D76364CCF3155BB7BC8C6F/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025781079/EBC4A272423668544053A4ACD161A993E038255D/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Kadath. + GMNotes: '' + GUID: d749ed + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Forsaken Tower + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 24.102581 + posY: 1.73944318 + posZ: -4.69719934 + rotX: 359.923431 + rotY: 269.992249 + rotZ: 179.9856 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234733 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2347': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1016065725025781883/DDC7B603B5E571A152D76364CCF3155BB7BC8C6F/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025781079/EBC4A272423668544053A4ACD161A993E038255D/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Kadath. + GMNotes: '' + GUID: 983fd2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Forsaken Tower + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 24.0763245 + posY: 1.72982681 + posZ: -4.5959115 + rotX: 359.9118 + rotY: 269.989746 + rotZ: 180.016327 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234732 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2347': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1016065725025781883/DDC7B603B5E571A152D76364CCF3155BB7BC8C6F/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025781079/EBC4A272423668544053A4ACD161A993E038255D/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Kadath. + GMNotes: '' + GUID: '450779' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Forsaken Tower + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 24.5149612 + posY: 1.71958721 + posZ: -4.62552643 + rotX: 359.92395 + rotY: 269.987579 + rotZ: 179.989273 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234731 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2347': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1016065725025781883/DDC7B603B5E571A152D76364CCF3155BB7BC8C6F/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025781079/EBC4A272423668544053A4ACD161A993E038255D/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Kadath. + GMNotes: '' + GUID: 13f5e3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Forsaken Tower + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 24.221981 + posY: 1.71031988 + posZ: -4.295316 + rotX: 359.909149 + rotY: 269.955261 + rotZ: 179.995529 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234730 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2347': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1016065725025781883/DDC7B603B5E571A152D76364CCF3155BB7BC8C6F/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025781079/EBC4A272423668544053A4ACD161A993E038255D/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Kadath. + GMNotes: '' + GUID: 3c7586 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Forsaken Tower + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 24.2316284 + posY: 1.70082271 + posZ: -4.00778341 + rotX: 359.9202 + rotY: 270.000458 + rotZ: 180.0167 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234729 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2347': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1016065725025781883/DDC7B603B5E571A152D76364CCF3155BB7BC8C6F/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025781079/EBC4A272423668544053A4ACD161A993E038255D/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Kadath. + GMNotes: '' + GUID: 93e081 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Onyx Castle + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 24.3795929 + posY: 1.69088674 + posZ: -4.36816 + rotX: 359.920776 + rotY: 270.000977 + rotZ: 180.017456 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234728 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2347': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1016065725025781883/DDC7B603B5E571A152D76364CCF3155BB7BC8C6F/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025781079/EBC4A272423668544053A4ACD161A993E038255D/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Leng. Kadath. + GMNotes: '' + GUID: ecaabf + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Onyx Gates + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 24.0472279 + posY: 1.68167281 + posZ: -4.216108 + rotX: 359.919983 + rotY: 270.000122 + rotZ: 180.015 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234727 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2347': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1016065725025781883/DDC7B603B5E571A152D76364CCF3155BB7BC8C6F/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025781079/EBC4A272423668544053A4ACD161A993E038255D/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Leng. + GMNotes: '' + GUID: 3b8e56 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Monastery of Leng + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 24.4659348 + posY: 1.67143965 + posZ: -4.37565851 + rotX: 359.920044 + rotY: 270.0189 + rotZ: 180.008545 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234726 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2347': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1016065725025781883/DDC7B603B5E571A152D76364CCF3155BB7BC8C6F/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025781079/EBC4A272423668544053A4ACD161A993E038255D/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Leng. + GMNotes: '' + GUID: 72c773 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Cold Wastes + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 24.2771416 + posY: 1.66207623 + posZ: -4.201345 + rotX: 359.92627 + rotY: 270.00946 + rotZ: 180.0113 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234725 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2347': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1016065725025781883/DDC7B603B5E571A152D76364CCF3155BB7BC8C6F/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025781079/EBC4A272423668544053A4ACD161A993E038255D/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Leng. + GMNotes: '' + GUID: d17e52 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Plateau of Leng + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 24.2547112 + posY: 1.65238106 + posZ: -4.06725264 + rotX: 359.923218 + rotY: 270.011353 + rotZ: 180.010208 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234543 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2345': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1016065725025759245/C44D15D425A11A50C4EBC0956DAAD13BFD8282AA/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025757858/C291D7AC5E6D9A6B2497084DCCFC1623FFBA4FE4/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: 'Act 5 ' + GMNotes: '' + GUID: 0dcc95 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Dream-Eaters + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 23.83231 + posY: 1.6431545 + posZ: -4.54870367 + rotX: 359.932343 + rotY: 269.98233 + rotZ: 180.012863 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234542 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2345': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1016065725025759245/C44D15D425A11A50C4EBC0956DAAD13BFD8282AA/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025757858/C291D7AC5E6D9A6B2497084DCCFC1623FFBA4FE4/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 4 + GMNotes: '' + GUID: d2e4db + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Truth and Lies + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 24.8338871 + posY: 1.68447709 + posZ: -4.12675858 + rotX: 359.930664 + rotY: 269.99704 + rotZ: 180.01062 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234541 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2345': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1016065725025759245/C44D15D425A11A50C4EBC0956DAAD13BFD8282AA/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025757858/C291D7AC5E6D9A6B2497084DCCFC1623FFBA4FE4/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 3 + GMNotes: '' + GUID: 3de681 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Beyond Dreams + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 23.87978 + posY: 1.67959058 + posZ: -4.68432426 + rotX: 359.9382 + rotY: 270.017761 + rotZ: 180.0194 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234540 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2345': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1016065725025759245/C44D15D425A11A50C4EBC0956DAAD13BFD8282AA/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025757858/C291D7AC5E6D9A6B2497084DCCFC1623FFBA4FE4/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 2 + GMNotes: '' + GUID: 8b429f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Thing in the Robes + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 24.1799812 + posY: 1.67440951 + posZ: -4.14427948 + rotX: 359.946381 + rotY: 270.005981 + rotZ: 180.023529 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234539 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2345': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1016065725025759245/C44D15D425A11A50C4EBC0956DAAD13BFD8282AA/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025757858/C291D7AC5E6D9A6B2497084DCCFC1623FFBA4FE4/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 1 + GMNotes: '' + GUID: 75881e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Journey Through the Cold Wastes + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 24.31386 + posY: 1.671543 + posZ: -3.93698955 + rotX: 359.94458 + rotY: 270.0873 + rotZ: 180.006165 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234538 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2345': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1016065725025759245/C44D15D425A11A50C4EBC0956DAAD13BFD8282AA/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025757858/C291D7AC5E6D9A6B2497084DCCFC1623FFBA4FE4/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: 'Agenda 3 ' + GMNotes: '' + GUID: d451c6 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Chaos Incarnate + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 23.71168 + posY: 1.67420173 + posZ: -4.354746 + rotX: 359.9344 + rotY: 269.990845 + rotZ: 180.025436 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234537 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2345': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1016065725025759245/C44D15D425A11A50C4EBC0956DAAD13BFD8282AA/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025757858/C291D7AC5E6D9A6B2497084DCCFC1623FFBA4FE4/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 2 + GMNotes: '' + GUID: bdb299 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Shape of Chaos + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 24.4512882 + posY: 1.687067 + posZ: -3.9979167 + rotX: 359.936981 + rotY: 269.9751 + rotZ: 180.03421 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234536 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2345': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1016065725025759245/C44D15D425A11A50C4EBC0956DAAD13BFD8282AA/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025757858/C291D7AC5E6D9A6B2497084DCCFC1623FFBA4FE4/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 1 + GMNotes: '' + GUID: 75881e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Eye of Chaos + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 23.9995289 + posY: 1.66998482 + posZ: -4.3999877 + rotX: 359.919861 + rotY: 269.994415 + rotZ: 180.010162 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234724 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2347': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1016065725025781883/DDC7B603B5E571A152D76364CCF3155BB7BC8C6F/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025781079/EBC4A272423668544053A4ACD161A993E038255D/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Where the Gods Dwell + GMNotes: '' + GUID: f003bb + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Scenario + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 32.3773766 + posY: 1.95512152 + posZ: -4.482786 + rotX: 359.9201 + rotY: 269.999756 + rotZ: 0.01688596 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2345': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1016065725025759245/C44D15D425A11A50C4EBC0956DAAD13BFD8282AA/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025757858/C291D7AC5E6D9A6B2497084DCCFC1623FFBA4FE4/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + '2346': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025770470/7C77423FFA657FB6B5937C80D6813C24E2D0E88C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '2347': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1016065725025781883/DDC7B603B5E571A152D76364CCF3155BB7BC8C6F/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025781079/EBC4A272423668544053A4ACD161A993E038255D/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 234636 +- 234636 +- 234635 +- 234634 +- 234633 +- 234632 +- 234632 +- 234631 +- 234630 +- 234629 +- 234628 +- 234627 +- 234627 +- 234627 +- 234626 +- 234625 +- 234624 +- 234623 +- 234622 +- 234621 +- 234620 +- 234735 +- 234734 +- 234733 +- 234732 +- 234731 +- 234730 +- 234729 +- 234728 +- 234727 +- 234726 +- 234725 +- 234543 +- 234542 +- 234541 +- 234540 +- 234539 +- 234538 +- 234537 +- 234536 +- 234724 +Description: '' +GMNotes: '' +GUID: 9af347 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Where the Gods Dwell +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 4.23116732 + posY: 3.744085 + posZ: -30.3958416 + rotX: 0.04941197 + rotY: 270.022949 + rotZ: 0.7404054 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Dream-Eaters 587028/Deck Whispers of Hypnos ba5b9b.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Dream-Eaters 587028/Deck Whispers of Hypnos ba5b9b.yaml new file mode 100644 index 000000000..fb5bd872e --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Dream-Eaters 587028/Deck Whispers of Hypnos ba5b9b.yaml @@ -0,0 +1,172 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 274115 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2741': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: a3ada0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Whispers of Hypnos + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.70772815 + posY: 1.3390168 + posZ: 64.22763 + rotX: 0.0210467484 + rotY: 270.0 + rotZ: 0.0153855 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274115 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2741': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: ce95a3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Whispers of Hypnos + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.7077415 + posY: 1.49358606 + posZ: 64.2276154 + rotX: 0.0181054082 + rotY: 269.999969 + rotZ: -0.000729266962 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274115 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2741': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: 6476cc + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Whispers of Hypnos + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.70772433 + posY: 1.50589979 + posZ: 64.22764 + rotX: 0.0247761626 + rotY: 269.9997 + rotZ: 0.0151432147 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2741': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 274115 +- 274115 +- 274115 +Description: '' +GMNotes: '' +GUID: ba5b9b +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Whispers of Hypnos +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 13.6499634 + posY: 2.5472405 + posZ: -18.7526474 + rotX: 0.02080741 + rotY: 269.999969 + rotZ: 0.0167682543 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Dream-Eaters 587028/Deck Zoogs f8f47a.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Dream-Eaters 587028/Deck Zoogs f8f47a.yaml new file mode 100644 index 000000000..07bd1acff --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Dream-Eaters 587028/Deck Zoogs f8f47a.yaml @@ -0,0 +1,301 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 274134 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2741': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: 8b08a8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Zoog Burrow + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -1.92154586 + posY: 1.33657873 + posZ: 53.6150246 + rotX: 0.0208100844 + rotY: 269.999451 + rotZ: 0.01677081 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274133 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2741': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Creature. Zoog. + GMNotes: '' + GUID: d1c795 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Inconspicuous Zoog + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -1.61507952 + posY: 1.33765149 + posZ: 56.89953 + rotX: 0.02081005 + rotY: 269.999451 + rotZ: 0.0167705957 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274132 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2741': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Creature. Zoog. + GMNotes: '' + GUID: db8153 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Stealthy Zoog + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.12494016 + posY: 1.337268 + posZ: 50.9491539 + rotX: 0.0208096933 + rotY: 269.999451 + rotZ: 0.0167707447 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274132 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2741': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Creature. Zoog. + GMNotes: '' + GUID: 27dc33 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Stealthy Zoog + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 1.97949374 + posY: 1.33629358 + posZ: 47.8006134 + rotX: 0.0208098888 + rotY: 269.999542 + rotZ: 0.0167709049 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274131 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2741': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Creature. Zoog. + GMNotes: '' + GUID: fb76f8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Furtive Zoog + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.204516 + posY: 1.33904231 + posZ: 56.9122238 + rotX: 0.020809412 + rotY: 270.002 + rotZ: 0.0167715587 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274131 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2741': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Creature. Zoog. + GMNotes: '' + GUID: 4a2c73 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Furtive Zoog + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.194922 + posY: 1.338211 + posZ: 54.084095 + rotX: 0.0208091978 + rotY: 270.002 + rotZ: 0.0167714339 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2741': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 274134 +- 274133 +- 274132 +- 274132 +- 274131 +- 274131 +Description: '' +GMNotes: '' +GUID: f8f47a +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Zoogs +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 8.686981 + posY: 2.54477024 + posZ: -25.5601234 + rotX: 0.0208090562 + rotY: 270.002 + rotZ: 0.016771879 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Dunwich Legacy 2aed55.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Dunwich Legacy 2aed55.yaml new file mode 100644 index 000000000..02156b4e1 --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Dunwich Legacy 2aed55.yaml @@ -0,0 +1,54 @@ +Autoraise: true +ColorDiffuse: + b: 0.0 + g: 0.366520882 + r: 0.7058823 +ContainedObjects: +- !include 'Bag The Dunwich Legacy 2aed55/Bag Return to The Dunwich Legacy 5c3607.yaml' +- !include 'Bag The Dunwich Legacy 2aed55/Bag Armitage''s Fate ce9164.yaml' +- !include 'Bag The Dunwich Legacy 2aed55/Deck Sorcery 6f6e72.yaml' +- !include 'Bag The Dunwich Legacy 2aed55/Deck Bishop''s Thralls 692ab0.yaml' +- !include 'Bag The Dunwich Legacy 2aed55/Deck Dunwich ebbb05.yaml' +- !include 'Bag The Dunwich Legacy 2aed55/Deck Whippoorwills e3473c.yaml' +- !include 'Bag The Dunwich Legacy 2aed55/Deck Bad Luck 71f991.yaml' +- !include 'Bag The Dunwich Legacy 2aed55/Deck Beast Thralls b6ed30.yaml' +- !include 'Bag The Dunwich Legacy 2aed55/Deck Naomi''s Crew be34b0.yaml' +- !include 'Bag The Dunwich Legacy 2aed55/Deck The Beyond 17fb80.yaml' +- !include 'Bag The Dunwich Legacy 2aed55/Deck Hideous Abominations 4b1413.yaml' +- !include 'Bag The Dunwich Legacy 2aed55/Deck Lost in Time and Space 322ddb.yaml' +- !include 'Bag The Dunwich Legacy 2aed55/Deck Where Doom Awaits 1c638c.yaml' +- !include 'Bag The Dunwich Legacy 2aed55/Deck Undimensioned and Unseen 88d763.yaml' +- !include 'Bag The Dunwich Legacy 2aed55/Deck Blood on the Altar 0fa4d8.yaml' +- !include 'Bag The Dunwich Legacy 2aed55/Deck The Essex County Express 4a246f.yaml' +- !include 'Bag The Dunwich Legacy 2aed55/Deck The Miskatonic Museum abe5c6.yaml' +- !include 'Bag The Dunwich Legacy 2aed55/Deck The House Always Wins 8cf802.yaml' +- !include 'Bag The Dunwich Legacy 2aed55/Deck Extracurricular Activity 081cf0.yaml' +Description: '' +GMNotes: '' +GUID: 2aed55 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +MeshIndex: -1 +Name: Bag +Nickname: The Dunwich Legacy +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -26.6664467 + posY: 1.78669977 + posZ: -127.278008 + rotX: 359.983215 + rotY: -0.000195681612 + rotZ: 0.02084693 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Dunwich Legacy 2aed55/Bag Armitage's Fate ce9164.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Dunwich Legacy 2aed55/Bag Armitage's Fate ce9164.yaml new file mode 100644 index 000000000..bd68ad83c --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Dunwich Legacy 2aed55/Bag Armitage's Fate ce9164.yaml @@ -0,0 +1,77 @@ +Autoraise: true +ColorDiffuse: + b: 0.0 + g: 0.366520882 + r: 0.7058823 +ContainedObjects: +- 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 + UniqueBack: false + Description: The Head Librarian + GMNotes: '' + GUID: 66197b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dr. Henry Armitage + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 7.236127 + posY: 3.6270225 + posZ: 36.55014 + rotX: 359.913 + rotY: 269.9993 + rotZ: 0.17485553 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +Description: '' +GMNotes: '' +GUID: ce9164 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +MeshIndex: -1 +Name: Bag +Nickname: Armitage's Fate +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -20.2397633 + posY: 3.41300082 + posZ: 4.02977228 + rotX: 359.772919 + rotY: 0.00259188446 + rotZ: 359.9628 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Dunwich Legacy 2aed55/Bag Return to The Dunwich Legacy 5c3607.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Dunwich Legacy 2aed55/Bag Return to The Dunwich Legacy 5c3607.yaml new file mode 100644 index 000000000..37d48ed41 --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Dunwich Legacy 2aed55/Bag Return to The Dunwich Legacy 5c3607.yaml @@ -0,0 +1,58 @@ +Autoraise: true +ColorDiffuse: + b: 0.0 + g: 0.366520882 + r: 0.7058823 +ContainedObjects: +- !include 'Bag Return to The Dunwich Legacy 5c3607/Deck Beyond the Threshold 859ae9.yaml' +- !include 'Bag Return to The Dunwich Legacy 5c3607/Deck Return to Extracurricular + Activities baad3c.yaml' +- !include 'Bag Return to The Dunwich Legacy 5c3607/Deck Return to The House Always + Wins 2bf15d.yaml' +- !include 'Bag Return to The Dunwich Legacy 5c3607/Deck Return to The Miskatonic + Museum 907c42.yaml' +- !include 'Bag Return to The Dunwich Legacy 5c3607/Deck Return to The Essex County + Express 49b962.yaml' +- !include 'Bag Return to The Dunwich Legacy 5c3607/Deck Return to Blood on the Altar + 84dd80.yaml' +- !include 'Bag Return to The Dunwich Legacy 5c3607/Deck Return to Undimensioned and + Unseen ef05be.yaml' +- !include 'Bag Return to The Dunwich Legacy 5c3607/Deck Return to Where Doom Awaits + 78f388.yaml' +- !include 'Bag Return to The Dunwich Legacy 5c3607/Deck Return to Lost in Time and + Space 548085.yaml' +- !include 'Bag Return to The Dunwich Legacy 5c3607/Deck Resurgent Evils ac6dbd.yaml' +- !include 'Bag Return to The Dunwich Legacy 5c3607/Deck Secret Doors 1921ac.yaml' +- !include 'Bag Return to The Dunwich Legacy 5c3607/Deck Creeping Cold 5d3d31.yaml' +- !include 'Bag Return to The Dunwich Legacy 5c3607/Deck Erratic Fear 69e97a.yaml' +- !include 'Bag Return to The Dunwich Legacy 5c3607/Deck Yog-Sothoth''s Emissaries + 2addc7.yaml' +Description: '' +GMNotes: '' +GUID: 5c3607 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +MeshIndex: -1 +Name: Bag +Nickname: Return to The Dunwich Legacy +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -23.3086967 + posY: 3.345274 + posZ: -19.6524124 + rotX: 1.336527 + rotY: 359.936279 + rotZ: 357.608948 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Dunwich Legacy 2aed55/Bag Return to The Dunwich Legacy 5c3607/Deck Beyond the Threshold 859ae9.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Dunwich Legacy 2aed55/Bag Return to The Dunwich Legacy 5c3607/Deck Beyond the Threshold 859ae9.yaml new file mode 100644 index 000000000..e6c9a239b --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Dunwich Legacy 2aed55/Bag Return to The Dunwich Legacy 5c3607/Deck Beyond the Threshold 859ae9.yaml @@ -0,0 +1,301 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 233043 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: a97e94 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Infinite Doorway + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 4.197397 + posY: 1.54959261 + posZ: 7.54406452 + rotX: 359.920135 + rotY: 269.999542 + rotZ: 0.0168782528 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233043 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: 64803b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Infinite Doorway + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 4.32584858 + posY: 1.70545149 + posZ: 7.526225 + rotX: 359.920135 + rotY: 269.999542 + rotZ: 0.0168783125 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233042 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: ff3b62 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: A Baleful Welcome + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.86596346 + posY: 1.55085039 + posZ: 10.3858719 + rotX: 359.920563 + rotY: 269.999939 + rotZ: 0.0141112823 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233042 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: 91d7bc + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: A Baleful Welcome + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 4.27264 + posY: 1.70741928 + posZ: 10.3873577 + rotX: 359.940582 + rotY: 270.0 + rotZ: 0.0103841284 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233041 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: e3fba9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Haunting Recollections + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.9066577 + posY: 1.5516181 + posZ: 13.0453758 + rotX: 359.920135 + rotY: 269.999664 + rotZ: 0.0168763362 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233041 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: 4edfe1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Haunting Recollections + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 4.186173 + posY: 1.70772672 + posZ: 13.2151175 + rotX: 359.920135 + rotY: 269.999664 + rotZ: 0.0168762747 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 233043 +- 233043 +- 233042 +- 233042 +- 233041 +- 233041 +Description: '' +GMNotes: '' +GUID: 859ae9 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Beyond the Threshold +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -25.3336639 + posY: 3.66102457 + posZ: -29.4851265 + rotX: 0.4386927 + rotY: 269.998718 + rotZ: 359.89624 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Dunwich Legacy 2aed55/Bag Return to The Dunwich Legacy 5c3607/Deck Creeping Cold 5d3d31.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Dunwich Legacy 2aed55/Bag Return to The Dunwich Legacy 5c3607/Deck Creeping Cold 5d3d31.yaml new file mode 100644 index 000000000..40582d0de --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Dunwich Legacy 2aed55/Bag Return to The Dunwich Legacy 5c3607/Deck Creeping Cold 5d3d31.yaml @@ -0,0 +1,215 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 233047 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: 3e8e0b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Oppressive Mists + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 7.83998156 + posY: 1.54372144 + posZ: 4.850278 + rotX: 359.920135 + rotY: 269.999634 + rotZ: 0.0168781038 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233047 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: d8e5f7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Oppressive Mists + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 7.80314255 + posY: 1.69862533 + posZ: 4.79417324 + rotX: 359.920135 + rotY: 269.999573 + rotZ: 0.0168781523 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233046 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: e3fba9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Inexplicable Cold + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 7.666582 + posY: 1.54493606 + posZ: 8.19385 + rotX: 359.920258 + rotY: 270.000061 + rotZ: 0.01607858 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233046 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: 8fa82b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Inexplicable Cold + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 8.028719 + posY: 1.70623231 + posZ: 8.457989 + rotX: 359.9379 + rotY: 270.0 + rotZ: 0.009667996 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 233047 +- 233047 +- 233046 +- 233046 +Description: '' +GMNotes: '' +GUID: 5d3d31 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Creeping Cold +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -28.7090855 + posY: 3.652889 + posZ: -29.48589 + rotX: 359.920135 + rotY: 269.9993 + rotZ: 0.01687864 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Dunwich Legacy 2aed55/Bag Return to The Dunwich Legacy 5c3607/Deck Erratic Fear 69e97a.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Dunwich Legacy 2aed55/Bag Return to The Dunwich Legacy 5c3607/Deck Erratic Fear 69e97a.yaml new file mode 100644 index 000000000..b19a3bfcd --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Dunwich Legacy 2aed55/Bag Return to The Dunwich Legacy 5c3607/Deck Erratic Fear 69e97a.yaml @@ -0,0 +1,344 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 233050 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: 7dd094 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Need for Knowledge + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 9.214496 + posY: 1.54113626 + posZ: 2.57877874 + rotX: 359.920135 + rotY: 269.999664 + rotZ: 0.0168800149 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233050 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: 9f855c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Need for Knowledge + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 9.015348 + posY: 1.695799 + posZ: 2.69127941 + rotX: 359.920135 + rotY: 269.999664 + rotZ: 0.0168801211 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233050 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: 7dd094 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Need for Knowledge + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 9.04972649 + posY: 1.71299982 + posZ: 2.68801451 + rotX: 359.919678 + rotY: 269.999664 + rotZ: 0.016476877 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233049 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: e3fba9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Idle Hands + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 9.170475 + posY: 1.54203224 + posZ: 5.413058 + rotX: 359.920135 + rotY: 269.999573 + rotZ: 0.01687807 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233049 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: ac1417 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Idle Hands + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 9.196331 + posY: 1.69662583 + posZ: 5.74743938 + rotX: 359.920135 + rotY: 269.999573 + rotZ: 0.0168674812 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233048 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: d8596b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Violent Commands + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 9.157638 + posY: 1.54277384 + posZ: 7.870572 + rotX: 359.920135 + rotY: 269.999573 + rotZ: 0.0168761183 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233048 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: 27658e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Violent Commands + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 9.356761 + posY: 1.69708729 + posZ: 7.57023 + rotX: 359.920135 + rotY: 269.999573 + rotZ: 0.0168761387 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 233050 +- 233050 +- 233050 +- 233049 +- 233049 +- 233048 +- 233048 +Description: '' +GMNotes: '' +GUID: 69e97a +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Erratic Fear +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -28.5561066 + posY: 3.65718985 + posZ: -32.80819 + rotX: 359.9201 + rotY: 270.011139 + rotZ: 0.0168624725 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Dunwich Legacy 2aed55/Bag Return to The Dunwich Legacy 5c3607/Deck Resurgent Evils ac6dbd.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Dunwich Legacy 2aed55/Bag Return to The Dunwich Legacy 5c3607/Deck Resurgent Evils ac6dbd.yaml new file mode 100644 index 000000000..b592639e2 --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Dunwich Legacy 2aed55/Bag Return to The Dunwich Legacy 5c3607/Deck Resurgent Evils ac6dbd.yaml @@ -0,0 +1,172 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 233044 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: e3fba9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Resurgent Evils + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 8.283834 + posY: 1.54401064 + posZ: 7.933346 + rotX: 359.920135 + rotY: 269.999664 + rotZ: 0.0168762654 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233044 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: e6d9b2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Resurgent Evils + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 8.055629 + posY: 1.699255 + posZ: 7.93120241 + rotX: 359.920135 + rotY: 269.999664 + rotZ: 0.0168761984 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233044 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: e3fba9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Resurgent Evils + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 8.055629 + posY: 1.71649992 + posZ: 7.93120241 + rotX: 359.9212 + rotY: 269.999664 + rotZ: 0.01656634 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 233044 +- 233044 +- 233044 +Description: '' +GMNotes: '' +GUID: ac6dbd +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Resurgent Evils +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -25.246212 + posY: 3.64858341 + posZ: -32.818634 + rotX: 359.920135 + rotY: 269.999847 + rotZ: 0.0168767162 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Dunwich Legacy 2aed55/Bag Return to The Dunwich Legacy 5c3607/Deck Return to Blood on the Altar 84dd80.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Dunwich Legacy 2aed55/Bag Return to The Dunwich Legacy 5c3607/Deck Return to Blood on the Altar 84dd80.yaml new file mode 100644 index 000000000..14d6469f5 --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Dunwich Legacy 2aed55/Bag Return to The Dunwich Legacy 5c3607/Deck Return to Blood on the Altar 84dd80.yaml @@ -0,0 +1,480 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 233029 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Criminal. Syndicate. + GMNotes: '' + GUID: f80a44 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Hired Gun + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -7.68465376 + posY: 1.56414354 + posZ: 0.704574466 + rotX: 359.920135 + rotY: 269.9998 + rotZ: 0.0168778226 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233029 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Criminal. Syndicate. + GMNotes: '' + GUID: 5f2757 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Hired Gun + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -7.45783567 + posY: 1.72284222 + posZ: 0.912879467 + rotX: 359.920135 + rotY: 269.9998 + rotZ: 0.01687789 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233648 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2336': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296074747/742F5083E0E10E3DD22E671C78F35E6143C744FF/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296074238/FB73285A9ED0D784210E50C6EA17EBC25648D800/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Dunwich. + GMNotes: '' + GUID: f24e67 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Schoolhouse + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.436838 + posY: 1.71555126 + posZ: -0.08158818 + rotX: 359.9361 + rotY: 270.000061 + rotZ: 180.013412 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233647 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2336': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296074747/742F5083E0E10E3DD22E671C78F35E6143C744FF/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296074238/FB73285A9ED0D784210E50C6EA17EBC25648D800/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Dunwich. + GMNotes: '' + GUID: 2abe4e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: House in the Reeds + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.1225636 + posY: 1.70970774 + posZ: 0.13624005 + rotX: 359.920135 + rotY: 269.999939 + rotZ: 180.016861 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233646 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2336': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296074747/742F5083E0E10E3DD22E671C78F35E6143C744FF/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296074238/FB73285A9ED0D784210E50C6EA17EBC25648D800/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Dunwich. + GMNotes: '' + GUID: 018fc4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Congregational Church + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.43006873 + posY: 1.82709455 + posZ: 0.156953022 + rotX: 359.92 + rotY: 270.004883 + rotZ: 187.536636 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233645 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2336': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296074747/742F5083E0E10E3DD22E671C78F35E6143C744FF/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296074238/FB73285A9ED0D784210E50C6EA17EBC25648D800/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Dunwich. + GMNotes: '' + GUID: 01ce7b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Osborn's General Store + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.30802822 + posY: 1.70175242 + posZ: -0.10880208 + rotX: 359.920135 + rotY: 270.000244 + rotZ: 180.016861 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233644 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2336': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296074747/742F5083E0E10E3DD22E671C78F35E6143C744FF/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296074238/FB73285A9ED0D784210E50C6EA17EBC25648D800/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Dunwich. + GMNotes: '' + GUID: ac7ca2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Burned Ruins + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.565863 + posY: 1.70344925 + posZ: -0.0384293869 + rotX: 359.920135 + rotY: 270.000275 + rotZ: 180.016891 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233643 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2336': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296074747/742F5083E0E10E3DD22E671C78F35E6143C744FF/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296074238/FB73285A9ED0D784210E50C6EA17EBC25648D800/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Dunwich. + GMNotes: '' + GUID: 15cd93 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Bishop's Brook + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.6479857 + posY: 1.71697414 + posZ: -0.226566315 + rotX: 359.920135 + rotY: 270.000275 + rotZ: 180.016876 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233642 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2336': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296074747/742F5083E0E10E3DD22E671C78F35E6143C744FF/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296074238/FB73285A9ED0D784210E50C6EA17EBC25648D800/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Silent Decay + GMNotes: '' + GUID: '733391' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Village Commons + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.39270139 + posY: 1.70012236 + posZ: 0.169365078 + rotX: 359.920776 + rotY: 269.999939 + rotZ: 180.017914 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233641 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2336': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296074747/742F5083E0E10E3DD22E671C78F35E6143C744FF/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296074238/FB73285A9ED0D784210E50C6EA17EBC25648D800/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Return to Blood on the Altar + GMNotes: '' + GUID: aa50e4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Setup + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.25932336 + posY: 1.6734302 + posZ: -40.35568 + rotX: 359.936066 + rotY: 270.0 + rotZ: 0.01345472 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '2336': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296074747/742F5083E0E10E3DD22E671C78F35E6143C744FF/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296074238/FB73285A9ED0D784210E50C6EA17EBC25648D800/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 233029 +- 233029 +- 233648 +- 233647 +- 233646 +- 233645 +- 233644 +- 233643 +- 233642 +- 233641 +Description: '' +GMNotes: '' +GUID: 84dd80 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Return to Blood on the Altar +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -39.71067 + posY: 3.66070271 + posZ: -29.17126 + rotX: 359.920135 + rotY: 270.0003 + rotZ: 0.0168765932 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Dunwich Legacy 2aed55/Bag Return to The Dunwich Legacy 5c3607/Deck Return to Extracurricular Activities baad3c.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Dunwich Legacy 2aed55/Bag Return to The Dunwich Legacy 5c3607/Deck Return to Extracurricular Activities baad3c.yaml new file mode 100644 index 000000000..90b58d03d --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Dunwich Legacy 2aed55/Bag Return to The Dunwich Legacy 5c3607/Deck Return to Extracurricular Activities baad3c.yaml @@ -0,0 +1,222 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 233023 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Abomination. + GMNotes: '' + GUID: e3fba9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Enthralled Security Guard + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.802383 + posY: 1.550207 + posZ: 3.025438 + rotX: 359.920135 + rotY: 270.0041 + rotZ: 0.0168696921 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233023 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Abomination. + GMNotes: '' + GUID: a2aa77 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Enthralled Security Guard + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.90102816 + posY: 1.70636189 + posZ: 3.45386386 + rotX: 359.920135 + rotY: 270.0041 + rotZ: 0.0168697778 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233630 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2336': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296074747/742F5083E0E10E3DD22E671C78F35E6143C744FF/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296074238/FB73285A9ED0D784210E50C6EA17EBC25648D800/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: "\tMiskatonic." + GMNotes: '' + GUID: dd38a5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Warren Observatory + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.86111426 + posY: 1.70080447 + posZ: -0.4150772 + rotX: 359.9201 + rotY: 270.000061 + rotZ: 180.016891 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233629 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2336': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296074747/742F5083E0E10E3DD22E671C78F35E6143C744FF/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296074238/FB73285A9ED0D784210E50C6EA17EBC25648D800/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Return to Extracurricular Activities + GMNotes: '' + GUID: aa50e4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Setup + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 1.85604 + posY: 1.71327627 + posZ: -40.7411346 + rotX: 0.0 + rotY: 270.0 + rotZ: 359.103668 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '2336': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296074747/742F5083E0E10E3DD22E671C78F35E6143C744FF/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296074238/FB73285A9ED0D784210E50C6EA17EBC25648D800/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 233023 +- 233023 +- 233630 +- 233629 +Description: '' +GMNotes: '' +GUID: baad3c +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Return to Extracurricular Activities +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -35.8736725 + posY: 3.66297936 + posZ: -29.1407642 + rotX: 359.920135 + rotY: 269.999817 + rotZ: 0.0168773551 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Dunwich Legacy 2aed55/Bag Return to The Dunwich Legacy 5c3607/Deck Return to Lost in Time and Space 548085.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Dunwich Legacy 2aed55/Bag Return to The Dunwich Legacy 5c3607/Deck Return to Lost in Time and Space 548085.yaml new file mode 100644 index 000000000..9020a91c1 --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Dunwich Legacy 2aed55/Bag Return to The Dunwich Legacy 5c3607/Deck Return to Lost in Time and Space 548085.yaml @@ -0,0 +1,401 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 233040 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Otherworld. Extradimensional. + GMNotes: '' + GUID: e3fba9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Unstable Vortex + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.43089032 + posY: 1.71719408 + posZ: 5.48682642 + rotX: 359.936066 + rotY: 269.999969 + rotZ: 180.013565 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233039 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Otherworld. Extradimensional. + GMNotes: '' + GUID: e3fba9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Towering Luminosity + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.54798031 + posY: 1.71207368 + posZ: 5.48692274 + rotX: 359.936066 + rotY: 270.000031 + rotZ: 180.013412 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233038 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Otherworld. Extradimensional. + GMNotes: '' + GUID: e3fba9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Indecipherable Stairs + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.924139 + posY: 1.7066139 + posZ: 5.616789 + rotX: 359.9361 + rotY: 269.999939 + rotZ: 180.013535 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233037 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: All-In-One + GMNotes: '' + GUID: e3fba9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Realms Beyond + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.38211417 + posY: 1.70441985 + posZ: 4.853435 + rotX: 359.936066 + rotY: 270.000061 + rotZ: 180.013489 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233036 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Thrall of Yog-Sothoth + GMNotes: '' + GUID: e3fba9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Seth Bishop + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.54021454 + posY: 1.70642793 + posZ: 5.45492 + rotX: 359.9361 + rotY: 270.0 + rotZ: 180.013535 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233355 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2333': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296027643/326876D4B46DF777AA1293989DEEE6A810ED027B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999385819527677/3AD8DFFFBFF54DB098AD3E00BB7E75DA0590FE8B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 2 + GMNotes: '' + GUID: 0686cc + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Into the Beyond (v. II) + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.8460238 + posY: 1.71971214 + posZ: 5.491049 + rotX: 359.9361 + rotY: 269.992737 + rotZ: 180.01355 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233354 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2333': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296027643/326876D4B46DF777AA1293989DEEE6A810ED027B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999385819527677/3AD8DFFFBFF54DB098AD3E00BB7E75DA0590FE8B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 3 + GMNotes: '' + GUID: ed6504 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Breaking Through (v. II) + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.59418154 + posY: 1.703018 + posZ: 5.36533451 + rotX: 359.939362 + rotY: 270.289459 + rotZ: 180.029327 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233655 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2336': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296074747/742F5083E0E10E3DD22E671C78F35E6143C744FF/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296074238/FB73285A9ED0D784210E50C6EA17EBC25648D800/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Return to Lost in Time and Space + GMNotes: '' + GUID: 9a5705 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Setup + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -1.76225686 + posY: 1.74443865 + posZ: -49.92534 + rotX: 359.93634 + rotY: 270.0006 + rotZ: 357.9595 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '2333': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296027643/326876D4B46DF777AA1293989DEEE6A810ED027B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999385819527677/3AD8DFFFBFF54DB098AD3E00BB7E75DA0590FE8B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + '2336': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296074747/742F5083E0E10E3DD22E671C78F35E6143C744FF/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296074238/FB73285A9ED0D784210E50C6EA17EBC25648D800/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 233040 +- 233039 +- 233038 +- 233037 +- 233036 +- 233355 +- 233354 +- 233655 +Description: '' +GMNotes: '' +GUID: '548085' +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Return to Lost in Time and Space +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -39.2448 + posY: 3.64883184 + posZ: -37.865303 + rotX: 359.920135 + rotY: 269.999878 + rotZ: 0.016874 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Dunwich Legacy 2aed55/Bag Return to The Dunwich Legacy 5c3607/Deck Return to The Essex County Express 49b962.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Dunwich Legacy 2aed55/Bag Return to The Dunwich Legacy 5c3607/Deck Return to The Essex County Express 49b962.yaml new file mode 100644 index 000000000..f00bbeede --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Dunwich Legacy 2aed55/Bag Return to The Dunwich Legacy 5c3607/Deck Return to The Essex County Express 49b962.yaml @@ -0,0 +1,365 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 233928 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2339': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Ally. Bystander. + GMNotes: '' + GUID: 21ca4f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Engineer + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 1.781766 + posY: 1.7119261 + posZ: 1.59473515 + rotX: 359.936066 + rotY: 270.0 + rotZ: 180.013535 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233640 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2336': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296074747/742F5083E0E10E3DD22E671C78F35E6143C744FF/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296074238/FB73285A9ED0D784210E50C6EA17EBC25648D800/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Train. + GMNotes: '' + GUID: 64ffb0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Train Car + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.329598 + posY: 1.70633376 + posZ: 1.72733867 + rotX: 359.920135 + rotY: 270.0 + rotZ: 180.016876 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233639 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2336': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296074747/742F5083E0E10E3DD22E671C78F35E6143C744FF/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296074238/FB73285A9ED0D784210E50C6EA17EBC25648D800/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Train. + GMNotes: '' + GUID: 905f69 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Train Car + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 1.63847256 + posY: 1.7045424 + posZ: 1.68498981 + rotX: 359.920135 + rotY: 269.999878 + rotZ: 180.016846 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233638 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2336': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296074747/742F5083E0E10E3DD22E671C78F35E6143C744FF/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296074238/FB73285A9ED0D784210E50C6EA17EBC25648D800/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Train. + GMNotes: '' + GUID: 34abd4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Engine Car + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 1.88457489 + posY: 1.70627022 + posZ: 1.80884266 + rotX: 359.9201 + rotY: 269.999878 + rotZ: 180.016876 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233353 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2333': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296027643/326876D4B46DF777AA1293989DEEE6A810ED027B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999385819527677/3AD8DFFFBFF54DB098AD3E00BB7E75DA0590FE8B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 1 + GMNotes: '' + GUID: 0d6e00 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: A Tear in Reality (v. II) + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.413252 + posY: 1.719196 + posZ: 1.53152966 + rotX: 359.920135 + rotY: 269.999969 + rotZ: 180.016876 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233252 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2332': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296027643/326876D4B46DF777AA1293989DEEE6A810ED027B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999385819527677/3AD8DFFFBFF54DB098AD3E00BB7E75DA0590FE8B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 0 + GMNotes: '' + GUID: a6f731 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Where There's Smoke + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.45920849 + posY: 1.70215452 + posZ: 1.76477408 + rotX: 359.939423 + rotY: 269.9854 + rotZ: 180.029587 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233637 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2336': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296074747/742F5083E0E10E3DD22E671C78F35E6143C744FF/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296074238/FB73285A9ED0D784210E50C6EA17EBC25648D800/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Return to The Essex County Express + GMNotes: '' + GUID: aa50e4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Setup + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 1.77351475 + posY: 1.71879888 + posZ: -49.712944 + rotX: 0.0 + rotY: 270.0 + rotZ: 358.9802 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2332': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296027643/326876D4B46DF777AA1293989DEEE6A810ED027B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999385819527677/3AD8DFFFBFF54DB098AD3E00BB7E75DA0590FE8B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + '2333': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296027643/326876D4B46DF777AA1293989DEEE6A810ED027B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999385819527677/3AD8DFFFBFF54DB098AD3E00BB7E75DA0590FE8B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + '2336': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296074747/742F5083E0E10E3DD22E671C78F35E6143C744FF/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296074238/FB73285A9ED0D784210E50C6EA17EBC25648D800/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + '2339': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 233928 +- 233640 +- 233639 +- 233638 +- 233353 +- 233252 +- 233637 +Description: '' +GMNotes: '' +GUID: 49b962 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Return to The Essex County Express +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -35.60131 + posY: 3.665556 + posZ: -37.7504539 + rotX: 359.920135 + rotY: 270.000122 + rotZ: 0.0168773942 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Dunwich Legacy 2aed55/Bag Return to The Dunwich Legacy 5c3607/Deck Return to The House Always Wins 2bf15d.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Dunwich Legacy 2aed55/Bag Return to The Dunwich Legacy 5c3607/Deck Return to The House Always Wins 2bf15d.yaml new file mode 100644 index 000000000..66de9e1ed --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Dunwich Legacy 2aed55/Bag Return to The Dunwich Legacy 5c3607/Deck Return to The House Always Wins 2bf15d.yaml @@ -0,0 +1,351 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 233025 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Illicit. + GMNotes: '' + GUID: 57f732 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Raise the Stakes + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 1.33099508 + posY: 1.5525775 + posZ: 4.10990858 + rotX: 359.920135 + rotY: 269.999725 + rotZ: 0.01687718 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233025 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Illicit. + GMNotes: '' + GUID: 9a8299 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Raise the Stakes + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 1.61930072 + posY: 1.709384 + posZ: 4.2586236 + rotX: 359.920135 + rotY: 269.999725 + rotZ: 0.01687807 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233024 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Illicit. + GMNotes: '' + GUID: e3fba9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Caught Cheating + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.10551858 + posY: 1.55135286 + posZ: 3.61790657 + rotX: 359.920135 + rotY: 269.9997 + rotZ: 0.016878223 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233024 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Illicit. + GMNotes: '' + GUID: 849ccd + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Caught Cheating + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 1.94488966 + posY: 1.70786643 + posZ: 3.2590344 + rotX: 359.920135 + rotY: 269.9997 + rotZ: 0.0168782324 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233633 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2336': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296074747/742F5083E0E10E3DD22E671C78F35E6143C744FF/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296074238/FB73285A9ED0D784210E50C6EA17EBC25648D800/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Clover Club. + GMNotes: '' + GUID: fcf6ea + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Clover Club Stage + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.62852144 + posY: 1.71841383 + posZ: 0.0947409943 + rotX: 359.920135 + rotY: 269.999878 + rotZ: 180.016846 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233632 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2336': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296074747/742F5083E0E10E3DD22E671C78F35E6143C744FF/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296074238/FB73285A9ED0D784210E50C6EA17EBC25648D800/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Clover Club. + GMNotes: '' + GUID: f6109e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Clover Club Lounge + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.23419118 + posY: 1.77474642 + posZ: 0.192420587 + rotX: 2.674984 + rotY: 269.9993 + rotZ: 180.016785 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233631 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2336': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296074747/742F5083E0E10E3DD22E671C78F35E6143C744FF/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296074238/FB73285A9ED0D784210E50C6EA17EBC25648D800/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Return to The House Always Wins + GMNotes: '' + GUID: aa50e4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Setup + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 1.47176421 + posY: 1.69642341 + posZ: -43.6426773 + rotX: 359.9361 + rotY: 270.000061 + rotZ: 0.0155990086 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '2336': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296074747/742F5083E0E10E3DD22E671C78F35E6143C744FF/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296074238/FB73285A9ED0D784210E50C6EA17EBC25648D800/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 233025 +- 233025 +- 233024 +- 233024 +- 233633 +- 233632 +- 233631 +Description: '' +GMNotes: '' +GUID: 2bf15d +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Return to The House Always Wins +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -36.11725 + posY: 3.66805458 + posZ: -31.707159 + rotX: 359.920135 + rotY: 270.000153 + rotZ: 0.0168770589 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Dunwich Legacy 2aed55/Bag Return to The Dunwich Legacy 5c3607/Deck Return to The Miskatonic Museum 907c42.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Dunwich Legacy 2aed55/Bag Return to The Dunwich Legacy 5c3607/Deck Return to The Miskatonic Museum 907c42.yaml new file mode 100644 index 000000000..e851771b7 --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Dunwich Legacy 2aed55/Bag Return to The Dunwich Legacy 5c3607/Deck Return to The Miskatonic Museum 907c42.yaml @@ -0,0 +1,351 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 233027 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Power. + GMNotes: '' + GUID: 5c7e59 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Night Beyond Void + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -0.681047261 + posY: 1.5555408 + posZ: 4.64757538 + rotX: 359.920135 + rotY: 269.999817 + rotZ: 0.0168774631 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233027 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Power. + GMNotes: '' + GUID: 5babb2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Night Beyond Void + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -0.295611769 + posY: 1.71221614 + posZ: 4.578951 + rotX: 359.920135 + rotY: 269.999817 + rotZ: 0.0168774314 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233026 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Power. + GMNotes: '' + GUID: e3fba9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dark Bidding + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -1.24636984 + posY: 1.55644679 + posZ: 5.04792452 + rotX: 359.9201 + rotY: 270.021179 + rotZ: 0.0168446563 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233026 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Power. + GMNotes: '' + GUID: 157a1f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dark Bidding + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -0.9982694 + posY: 1.71357286 + posZ: 5.244412 + rotX: 359.9201 + rotY: 270.021179 + rotZ: 0.0168446135 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233636 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2336': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296074747/742F5083E0E10E3DD22E671C78F35E6143C744FF/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296074238/FB73285A9ED0D784210E50C6EA17EBC25648D800/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Miskatonic. Exhibit. + GMNotes: '' + GUID: 2d87e6 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Exhibit Hall + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.390847 + posY: 1.718485 + posZ: 3.68215775 + rotX: 359.920135 + rotY: 270.005737 + rotZ: 180.016876 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233635 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2336': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296074747/742F5083E0E10E3DD22E671C78F35E6143C744FF/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296074238/FB73285A9ED0D784210E50C6EA17EBC25648D800/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Miskatonic. Exhibit. + GMNotes: '' + GUID: aa50e4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Exhibit Hall + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.90909576 + posY: 1.70192266 + posZ: 3.984142 + rotX: 359.920135 + rotY: 269.999817 + rotZ: 180.016876 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233634 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2336': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296074747/742F5083E0E10E3DD22E671C78F35E6143C744FF/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296074238/FB73285A9ED0D784210E50C6EA17EBC25648D800/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Return to The Miskatonic Museum + GMNotes: '' + GUID: 96f250 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Setup + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 1.60306871 + posY: 1.71392083 + posZ: -46.4682465 + rotX: 359.936035 + rotY: 270.000366 + rotZ: 1.18050587 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '2336': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296074747/742F5083E0E10E3DD22E671C78F35E6143C744FF/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296074238/FB73285A9ED0D784210E50C6EA17EBC25648D800/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 233027 +- 233027 +- 233026 +- 233026 +- 233636 +- 233635 +- 233634 +Description: '' +GMNotes: '' +GUID: 907c42 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Return to The Miskatonic Museum +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -35.7430573 + posY: 3.666603 + posZ: -34.8646 + rotX: 359.920135 + rotY: 269.9992 + rotZ: 0.0168775134 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Dunwich Legacy 2aed55/Bag Return to The Dunwich Legacy 5c3607/Deck Return to Undimensioned and Unseen ef05be.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Dunwich Legacy 2aed55/Bag Return to The Dunwich Legacy 5c3607/Deck Return to Undimensioned and Unseen ef05be.yaml new file mode 100644 index 000000000..0c190d0bc --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Dunwich Legacy 2aed55/Bag Return to The Dunwich Legacy 5c3607/Deck Return to Undimensioned and Unseen ef05be.yaml @@ -0,0 +1,351 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 233034 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Power. + GMNotes: '' + GUID: 0fd2b9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Imperceptible Creature + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.480863452 + posY: 1.55457842 + posZ: 6.87995 + rotX: 359.920135 + rotY: 269.999756 + rotZ: 0.01687767 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233034 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Power. + GMNotes: '' + GUID: 6a1f34 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Imperceptible Creature + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.26838088 + posY: 1.7118448 + posZ: 7.25310659 + rotX: 359.920135 + rotY: 269.999756 + rotZ: 0.01687754 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233033 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Amorphous Terror + GMNotes: '' + GUID: 5a8dac + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Brood of Yog-Sothoth + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 1.60858572 + posY: 1.7050575 + posZ: 3.20735264 + rotX: 359.920135 + rotY: 269.999847 + rotZ: 180.016861 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233032 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Thrashing Spawn + GMNotes: '' + GUID: 6c2292 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Brood of Yog-Sothoth + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.32616 + posY: 1.70636189 + posZ: 4.09144258 + rotX: 359.9361 + rotY: 269.999878 + rotZ: 180.013519 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233031 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Swelling Devourer + GMNotes: '' + GUID: fab08a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Brood of Yog-Sothoth + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 1.97498167 + posY: 1.72043252 + posZ: 3.99961615 + rotX: 359.936066 + rotY: 270.0 + rotZ: 180.013428 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233030 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Charging Beast + GMNotes: '' + GUID: b8825e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Brood of Yog-Sothoth + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.15231657 + posY: 1.70291877 + posZ: 3.78806329 + rotX: 359.920135 + rotY: 269.999939 + rotZ: 180.016861 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233649 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2336': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296074747/742F5083E0E10E3DD22E671C78F35E6143C744FF/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296074238/FB73285A9ED0D784210E50C6EA17EBC25648D800/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Return to Undimensioned and Unseen + GMNotes: '' + GUID: aa50e4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Setup + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.20051837 + posY: 1.73615086 + posZ: -43.50169 + rotX: 359.9802 + rotY: 269.992035 + rotZ: 358.313263 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '2336': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296074747/742F5083E0E10E3DD22E671C78F35E6143C744FF/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296074238/FB73285A9ED0D784210E50C6EA17EBC25648D800/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 233034 +- 233034 +- 233033 +- 233032 +- 233031 +- 233030 +- 233649 +Description: '' +GMNotes: '' +GUID: ef05be +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Return to Undimensioned and Unseen +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -39.5382652 + posY: 3.6727252 + posZ: -32.0427437 + rotX: 359.920135 + rotY: 270.0 + rotZ: 0.0168754775 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Dunwich Legacy 2aed55/Bag Return to The Dunwich Legacy 5c3607/Deck Return to Where Doom Awaits 78f388.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Dunwich Legacy 2aed55/Bag Return to The Dunwich Legacy 5c3607/Deck Return to Where Doom Awaits 78f388.yaml new file mode 100644 index 000000000..c93ecfe5f --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Dunwich Legacy 2aed55/Bag Return to The Dunwich Legacy 5c3607/Deck Return to Where Doom Awaits 78f388.yaml @@ -0,0 +1,308 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- 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 + UniqueBack: false + Description: Ruthless Tactician + GMNotes: '' + GUID: 7f7ecc + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Naomi O'Bannion + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 1.259742 + posY: 1.70860052 + posZ: 4.788741 + rotX: 359.920135 + rotY: 270.000031 + rotZ: 180.016876 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233654 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2336': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296074747/742F5083E0E10E3DD22E671C78F35E6143C744FF/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296074238/FB73285A9ED0D784210E50C6EA17EBC25648D800/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Dunwich. Woods. Altered. + GMNotes: '' + GUID: a06a3b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Altered Path + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 1.94049263 + posY: 1.70500588 + posZ: 4.47157764 + rotX: 359.920135 + rotY: 269.999817 + rotZ: 180.016846 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233653 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2336': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296074747/742F5083E0E10E3DD22E671C78F35E6143C744FF/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296074238/FB73285A9ED0D784210E50C6EA17EBC25648D800/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: "Dunwich. Woods.\t" + GMNotes: '' + GUID: aa50e4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Diverging Path + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.3587935 + posY: 1.70647728 + posZ: 4.636316 + rotX: 359.9361 + rotY: 269.999939 + rotZ: 180.013535 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233652 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2336': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296074747/742F5083E0E10E3DD22E671C78F35E6143C744FF/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296074238/FB73285A9ED0D784210E50C6EA17EBC25648D800/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Warped and Twisted + GMNotes: '' + GUID: b1bd40 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ascending Path + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 1.919569 + posY: 1.720682 + posZ: 4.362699 + rotX: 359.920135 + rotY: 269.999878 + rotZ: 180.016861 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233651 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2336': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296074747/742F5083E0E10E3DD22E671C78F35E6143C744FF/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296074238/FB73285A9ED0D784210E50C6EA17EBC25648D800/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Warped and Twisted + GMNotes: '' + GUID: caeb2f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Base of the Hill + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.252867 + posY: 1.70298576 + posZ: 4.3944726 + rotX: 359.9201 + rotY: 269.999878 + rotZ: 180.016876 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233650 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2336': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296074747/742F5083E0E10E3DD22E671C78F35E6143C744FF/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296074238/FB73285A9ED0D784210E50C6EA17EBC25648D800/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Return to Where Doom Awaits + GMNotes: '' + GUID: aa50e4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Setup + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.09609675 + posY: 1.69439566 + posZ: -46.2499161 + rotX: 359.93927 + rotY: 269.999146 + rotZ: 359.9028 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2331': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '2336': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296074747/742F5083E0E10E3DD22E671C78F35E6143C744FF/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296074238/FB73285A9ED0D784210E50C6EA17EBC25648D800/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 233135 +- 233654 +- 233653 +- 233652 +- 233651 +- 233650 +Description: '' +GMNotes: '' +GUID: 78f388 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Return to Where Doom Awaits +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -39.4787331 + posY: 3.669161 + posZ: -34.8169022 + rotX: 359.920135 + rotY: 270.0029 + rotZ: 0.01687266 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Dunwich Legacy 2aed55/Bag Return to The Dunwich Legacy 5c3607/Deck Secret Doors 1921ac.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Dunwich Legacy 2aed55/Bag Return to The Dunwich Legacy 5c3607/Deck Secret Doors 1921ac.yaml new file mode 100644 index 000000000..1b83e9a2f --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Dunwich Legacy 2aed55/Bag Return to The Dunwich Legacy 5c3607/Deck Secret Doors 1921ac.yaml @@ -0,0 +1,129 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 233045 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Obstacle. + GMNotes: '' + GUID: e3fba9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Secret Door + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 8.506233 + posY: 1.54346478 + posZ: 7.13301754 + rotX: 359.920135 + rotY: 269.999634 + rotZ: 0.0168786049 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233045 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Obstacle. + GMNotes: '' + GUID: '662570' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Secret Door + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 8.375493 + posY: 1.69850159 + posZ: 7.25795174 + rotX: 359.920135 + rotY: 269.999573 + rotZ: 0.0168786459 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 233045 +- 233045 +Description: '' +GMNotes: '' +GUID: 1921ac +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Secret Doors +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -25.1125565 + posY: 3.654754 + posZ: -36.1438751 + rotX: 359.920135 + rotY: 269.999634 + rotZ: 0.0168770254 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Dunwich Legacy 2aed55/Bag Return to The Dunwich Legacy 5c3607/Deck Yog-Sothoth's Emissaries 2addc7.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Dunwich Legacy 2aed55/Bag Return to The Dunwich Legacy 5c3607/Deck Yog-Sothoth's Emissaries 2addc7.yaml new file mode 100644 index 000000000..7b3f9e977 --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Dunwich Legacy 2aed55/Bag Return to The Dunwich Legacy 5c3607/Deck Yog-Sothoth's Emissaries 2addc7.yaml @@ -0,0 +1,215 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 233052 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Pact. + GMNotes: '' + GUID: e3fba9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Eldritch Accord + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 4.809599 + posY: 1.548922 + posZ: 8.164636 + rotX: 359.920135 + rotY: 269.997925 + rotZ: 0.0168780368 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233052 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Pact. + GMNotes: '' + GUID: 7c4d15 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Eldritch Accord + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 4.68952465 + posY: 1.70496368 + posZ: 8.046578 + rotX: 359.920135 + rotY: 269.997925 + rotZ: 0.0168780237 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233051 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Abomination. + GMNotes: '' + GUID: b01c1a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Vassal of the Lurker + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 4.13109636 + posY: 1.55071533 + posZ: 11.0782423 + rotX: 359.920227 + rotY: 270.0001 + rotZ: 0.0161855575 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233051 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Abomination. + GMNotes: '' + GUID: a9e3e2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Vassal of the Lurker + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 4.01203728 + posY: 1.70712113 + posZ: 11.1905966 + rotX: 359.918457 + rotY: 269.999542 + rotZ: 0.0152380522 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 233052 +- 233052 +- 233051 +- 233051 +Description: '' +GMNotes: '' +GUID: 2addc7 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Yog-Sothoth's Emissaries +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -23.0306129 + posY: 3.610803 + posZ: -23.233202 + rotX: 359.7172 + rotY: 270.01355 + rotZ: 356.2378 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Dunwich Legacy 2aed55/Deck Bad Luck 71f991.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Dunwich Legacy 2aed55/Deck Bad Luck 71f991.yaml new file mode 100644 index 000000000..a18a71e29 --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Dunwich Legacy 2aed55/Deck Bad Luck 71f991.yaml @@ -0,0 +1,301 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 232820 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: a8cc8c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Twist of Fate + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.198071 + posY: 1.55145156 + posZ: 9.125637 + rotX: 359.920135 + rotY: 269.999939 + rotZ: 0.01687778 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232820 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: 9d6b4c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Twist of Fate + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.70683336 + posY: 1.70854175 + posZ: 9.092162 + rotX: 359.920135 + rotY: 269.999939 + rotZ: 0.01687769 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232820 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: a8cc8c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Twist of Fate + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.70645475 + posY: 1.72578371 + posZ: 9.100254 + rotX: 359.921539 + rotY: 269.999939 + rotZ: 0.0167463012 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232819 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: de3bd5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Cursed Luck + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.15651965 + posY: 1.55232441 + posZ: 11.89302 + rotX: 359.920135 + rotY: 269.999939 + rotZ: 0.0168776158 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232819 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: 64281b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Cursed Luck + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.19927931 + posY: 1.7088623 + posZ: 11.9196167 + rotX: 359.920135 + rotY: 269.999939 + rotZ: 0.0168775618 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232819 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: de3bd5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Cursed Luck + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.230147 + posY: 1.72610009 + posZ: 11.971447 + rotX: 359.92 + rotY: 269.999939 + rotZ: 0.0164669342 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 232820 +- 232820 +- 232820 +- 232819 +- 232819 +- 232819 +Description: '' +GMNotes: '' +GUID: 71f991 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: "\tBad Luck" +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -24.26895 + posY: 3.66272473 + posZ: 3.86803937 + rotX: 359.920135 + rotY: 269.999847 + rotZ: 0.0168779027 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Dunwich Legacy 2aed55/Deck Beast Thralls b6ed30.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Dunwich Legacy 2aed55/Deck Beast Thralls b6ed30.yaml new file mode 100644 index 000000000..71e8deb0b --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Dunwich Legacy 2aed55/Deck Beast Thralls b6ed30.yaml @@ -0,0 +1,301 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 232823 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: "\tPower." + GMNotes: '' + GUID: ef7cab + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Altered Beast + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.55222464 + posY: 1.5502063 + posZ: 6.573337 + rotX: 359.920135 + rotY: 269.999939 + rotZ: 0.0168764647 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232823 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: "\tPower." + GMNotes: '' + GUID: 651a9e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Altered Beast + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.6760025 + posY: 1.70618832 + posZ: 6.53470135 + rotX: 359.920135 + rotY: 269.999939 + rotZ: 0.0168764852 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232822 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Creature. Monster. Abomination. + GMNotes: '' + GUID: c53c4a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Lupine Thrall + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.29770446 + posY: 1.55148566 + posZ: 9.71324348 + rotX: 359.920135 + rotY: 269.999939 + rotZ: 0.0168772563 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232822 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Creature. Monster. Abomination. + GMNotes: '' + GUID: 077019 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Lupine Thrall + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.20197439 + posY: 1.70810318 + posZ: 9.924229 + rotX: 359.920135 + rotY: 269.999939 + rotZ: 0.0168772489 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232821 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Creature. Monster. Abomination. + GMNotes: '' + GUID: de3bd5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Avian Thrall + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.17520547 + posY: 1.55259466 + posZ: 12.8993664 + rotX: 359.920135 + rotY: 269.999939 + rotZ: 0.0168785825 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232821 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Creature. Monster. Abomination. + GMNotes: '' + GUID: 0e80a5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Avian Thrall + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.29272318 + posY: 1.70912266 + posZ: 13.0629282 + rotX: 359.920135 + rotY: 269.999939 + rotZ: 0.0168786459 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 232823 +- 232823 +- 232822 +- 232822 +- 232821 +- 232821 +Description: '' +GMNotes: '' +GUID: b6ed30 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: "\tBeast Thralls" +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -24.218792 + posY: 3.66150165 + posZ: -0.0482094064 + rotX: 359.920135 + rotY: 269.999939 + rotZ: 0.01687818 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Dunwich Legacy 2aed55/Deck Bishop's Thralls 692ab0.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Dunwich Legacy 2aed55/Deck Bishop's Thralls 692ab0.yaml new file mode 100644 index 000000000..532358c73 --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Dunwich Legacy 2aed55/Deck Bishop's Thralls 692ab0.yaml @@ -0,0 +1,301 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 232814 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Sorcerer. + GMNotes: '' + GUID: e44036 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Wizard of Yog-Sothoth + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.394843 + posY: 1.54970729 + posZ: 4.13393164 + rotX: 359.920135 + rotY: 269.999939 + rotZ: 0.0168757457 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232813 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Monster. Abomination. + GMNotes: '' + GUID: fbe20d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Thrall + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.15501428 + posY: 1.69501209 + posZ: 7.444842 + rotX: 359.935822 + rotY: 269.994781 + rotZ: 7.50431871 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232813 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Monster. Abomination. + GMNotes: '' + GUID: 9b9792 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Thrall + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.32377672 + posY: 1.55104816 + posZ: 8.903832 + rotX: 359.921722 + rotY: 269.997437 + rotZ: 0.008892595 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232813 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Monster. Abomination. + GMNotes: '' + GUID: 76139c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Thrall + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.76801586 + posY: 1.60063446 + posZ: 8.933262 + rotX: 359.9319 + rotY: 269.992828 + rotZ: 0.0655015 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232812 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: "\tPact. Power." + GMNotes: '' + GUID: de3bd5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Light of Aforgomon + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.103076 + posY: 1.5511409 + posZ: 7.621261 + rotX: 359.920135 + rotY: 269.999878 + rotZ: 0.0168763418 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232812 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: "\tPact. Power." + GMNotes: '' + GUID: 6c2f4a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Light of Aforgomon + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.12950444 + posY: 1.70759833 + posZ: 8.101044 + rotX: 359.920135 + rotY: 269.999878 + rotZ: 0.0168764461 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 232814 +- 232813 +- 232813 +- 232813 +- 232812 +- 232812 +Description: '' +GMNotes: '' +GUID: 692ab0 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Bishop's Thralls +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -20.450079 + posY: 3.65530849 + posZ: -3.238489 + rotX: 359.920135 + rotY: 269.999573 + rotZ: 0.0168747734 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Dunwich Legacy 2aed55/Deck Blood on the Altar 0fa4d8.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Dunwich Legacy 2aed55/Deck Blood on the Altar 0fa4d8.yaml new file mode 100644 index 000000000..1abba941f --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Dunwich Legacy 2aed55/Deck Blood on the Altar 0fa4d8.yaml @@ -0,0 +1,1705 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 232856 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. + GMNotes: '' + GUID: '830622' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Servant of Many Mouths + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.96014857 + posY: 1.55161953 + posZ: 8.569974 + rotX: 359.920135 + rotY: 269.999878 + rotZ: 0.0168777164 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232856 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. + GMNotes: '' + GUID: 4c9b2a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Servant of Many Mouths + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.959432 + posY: 1.70811665 + posZ: 8.731121 + rotX: 359.920135 + rotY: 269.999878 + rotZ: 0.0168776065 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232856 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. + GMNotes: '' + GUID: '830622' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Servant of Many Mouths + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.959432 + posY: 1.72536492 + posZ: 8.731121 + rotX: 359.920776 + rotY: 269.999878 + rotZ: 0.0158768017 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232855 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: "\tTerror." + GMNotes: '' + GUID: dfd751 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Rotting Remains + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.74654031 + posY: 1.54991353 + posZ: 6.49890852 + rotX: 359.920135 + rotY: 269.999939 + rotZ: 0.0168761481 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232855 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: "\tTerror." + GMNotes: '' + GUID: 26556a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Rotting Remains + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.54368424 + posY: 1.706326 + posZ: 6.574124 + rotX: 359.920135 + rotY: 269.999939 + rotZ: 0.0168759748 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232855 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: "\tTerror." + GMNotes: '' + GUID: dfd751 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Rotting Remains + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.54368424 + posY: 1.7235961 + posZ: 6.574124 + rotX: 359.920135 + rotY: 269.999939 + rotZ: 0.0168760289 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232854 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: "\tOmen." + GMNotes: '' + GUID: 56e0f1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Strange Signs + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.175488 + posY: 1.55028129 + posZ: 5.04462242 + rotX: 359.920135 + rotY: 269.999939 + rotZ: 0.0168766249 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232854 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: "\tOmen." + GMNotes: '' + GUID: 6b8170 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Strange Signs + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.983425 + posY: 1.70778143 + posZ: 5.07155752 + rotX: 359.9361 + rotY: 270.0 + rotZ: 0.013501252 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232853 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: "\tOmen." + GMNotes: '' + GUID: de3bd5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Psychopomp's Song + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.93528557 + posY: 1.55154455 + posZ: 8.19747 + rotX: 359.920135 + rotY: 269.999847 + rotZ: 0.01687629 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232853 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: "\tOmen." + GMNotes: '' + GUID: 3e13f3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Psychopomp's Song + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.73155141 + posY: 1.70817387 + posZ: 7.897554 + rotX: 359.920135 + rotY: 269.999817 + rotZ: 0.0168764144 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232852 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: de3bd5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Kidnapped! + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.101256 + posY: 1.5511688 + posZ: 7.707222 + rotX: 359.920135 + rotY: 269.999878 + rotZ: 0.0168776121 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232852 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 95f4d1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Kidnapped! + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.82772326 + posY: 1.70790935 + posZ: 7.70930338 + rotX: 359.920135 + rotY: 269.999878 + rotZ: 0.0168775991 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232852 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: de3bd5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Kidnapped! + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.82772326 + posY: 1.7251606 + posZ: 7.70930338 + rotX: 359.919739 + rotY: 269.999878 + rotZ: 0.0166410487 + 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 + UniqueBack: false + Description: Seeing Things Unseen + GMNotes: '' + GUID: f96ed0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Powder of Ibn-Ghazi + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.25809264 + posY: 1.83117688 + posZ: 11.4179678 + rotX: 359.9361 + rotY: 269.999939 + rotZ: 180.0135 + 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 + UniqueBack: false + Description: Smarter Than He Lets On + GMNotes: '' + GUID: f14dce + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Earl Sawyer + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.48666334 + posY: 1.821285 + posZ: 11.4995947 + rotX: 359.919983 + rotY: 270.000031 + rotZ: 180.0169 + 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 + UniqueBack: false + Description: Recalling Ancient Things + GMNotes: '' + GUID: 6714b2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Zebulon Whateley + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.601451 + posY: 1.81139708 + posZ: 11.3834724 + rotX: 359.9361 + rotY: 270.000061 + rotZ: 180.013412 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232848 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Infused With Evil + GMNotes: '' + GUID: de3bd5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Silas Bishop + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.780741 + posY: 1.80145574 + posZ: 11.2737494 + rotX: 359.936127 + rotY: 270.000061 + rotZ: 180.013412 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233847 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2338': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Item. Key. + GMNotes: '' + GUID: 49f43a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Key to the Chamber + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.62294579 + posY: 1.82601821 + posZ: 11.700017 + rotX: 0.07983528 + rotY: 270.002 + rotZ: 181.447418 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233559 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2335': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999385819522537/207CCD9C85ECB70A339C09170ABB42E139924AA0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999385819523376/198434B0178F76107193CB52D7FC70E5265E526E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Prison of the Beast + GMNotes: '' + GUID: cb0272 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Hidden Chamber + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.474644 + posY: 1.81959867 + posZ: 12.1062984 + rotX: 0.0606562 + rotY: 270.0023 + rotZ: 181.706711 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233558 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2335': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999385819522537/207CCD9C85ECB70A339C09170ABB42E139924AA0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999385819523376/198434B0178F76107193CB52D7FC70E5265E526E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Dunwich. + GMNotes: '' + GUID: ce3bcc + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Schoolhouse + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.90459466 + posY: 1.7737453 + posZ: 11.6243534 + rotX: 359.920135 + rotY: 269.999634 + rotZ: 180.016846 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233557 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2335': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999385819522537/207CCD9C85ECB70A339C09170ABB42E139924AA0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999385819523376/198434B0178F76107193CB52D7FC70E5265E526E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Dunwich. + GMNotes: '' + GUID: 6e0f3d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Schoolhouse + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.03136921 + posY: 1.76413226 + posZ: 12.3823919 + rotX: 359.9201 + rotY: 269.999756 + rotZ: 180.016891 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233556 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2335': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999385819522537/207CCD9C85ECB70A339C09170ABB42E139924AA0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999385819523376/198434B0178F76107193CB52D7FC70E5265E526E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Dunwich. + GMNotes: '' + GUID: '159555' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: House in the Reeds + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.925498 + posY: 1.75455248 + posZ: 12.1956577 + rotX: 359.9201 + rotY: 269.999756 + rotZ: 180.016876 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233555 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2335': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999385819522537/207CCD9C85ECB70A339C09170ABB42E139924AA0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999385819523376/198434B0178F76107193CB52D7FC70E5265E526E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Dunwich. + GMNotes: '' + GUID: 7a909a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: House in the Reeds + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.71375322 + posY: 1.7438767 + posZ: 12.1194439 + rotX: 359.920135 + rotY: 269.999756 + rotZ: 180.016846 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233554 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2335': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999385819522537/207CCD9C85ECB70A339C09170ABB42E139924AA0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999385819523376/198434B0178F76107193CB52D7FC70E5265E526E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Dunwich. + GMNotes: '' + GUID: 8579aa + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Congregational Church + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.53111863 + posY: 1.73544788 + posZ: 11.151185 + rotX: 359.9201 + rotY: 270.000122 + rotZ: 180.016891 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233553 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2335': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999385819522537/207CCD9C85ECB70A339C09170ABB42E139924AA0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999385819523376/198434B0178F76107193CB52D7FC70E5265E526E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Dunwich. + GMNotes: '' + GUID: 70df0b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Congregational Church + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.89231777 + posY: 1.72561944 + posZ: 12.17941 + rotX: 359.9201 + rotY: 270.000366 + rotZ: 180.016876 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233552 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2335': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999385819522537/207CCD9C85ECB70A339C09170ABB42E139924AA0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999385819523376/198434B0178F76107193CB52D7FC70E5265E526E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Dunwich. + GMNotes: '' + GUID: 943aea + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Osborn's General Store + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.30363417 + posY: 1.71519172 + posZ: 11.27608 + rotX: 359.920135 + rotY: 269.999756 + rotZ: 180.016861 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233551 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2335': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999385819522537/207CCD9C85ECB70A339C09170ABB42E139924AA0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999385819523376/198434B0178F76107193CB52D7FC70E5265E526E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Dunwich. + GMNotes: '' + GUID: 2c4849 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Osborn's General Store + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.08752275 + posY: 1.70592511 + posZ: 11.7377253 + rotX: 359.920135 + rotY: 269.999725 + rotZ: 180.016861 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233550 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2335': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999385819522537/207CCD9C85ECB70A339C09170ABB42E139924AA0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999385819523376/198434B0178F76107193CB52D7FC70E5265E526E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Dunwich. + GMNotes: '' + GUID: 2559b7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Burned Ruins + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.01406312 + posY: 1.696418 + posZ: 11.968441 + rotX: 359.9201 + rotY: 270.000153 + rotZ: 180.016876 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233549 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2335': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999385819522537/207CCD9C85ECB70A339C09170ABB42E139924AA0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999385819523376/198434B0178F76107193CB52D7FC70E5265E526E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Dunwich. + GMNotes: '' + GUID: 19ce2b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Burned Ruins + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.3871336 + posY: 1.68630958 + posZ: 11.66507 + rotX: 359.932739 + rotY: 270.0001 + rotZ: 180.014145 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233548 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2335': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999385819522537/207CCD9C85ECB70A339C09170ABB42E139924AA0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999385819523376/198434B0178F76107193CB52D7FC70E5265E526E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Dunwich. + GMNotes: '' + GUID: 0f3193 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Bishop's Brook + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.67741346 + posY: 1.6775136 + posZ: 11.92389 + rotX: 359.920135 + rotY: 270.000366 + rotZ: 180.016876 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233547 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2335': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999385819522537/207CCD9C85ECB70A339C09170ABB42E139924AA0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999385819523376/198434B0178F76107193CB52D7FC70E5265E526E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Dunwich. + GMNotes: '' + GUID: 70df0b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Bishop's Brook + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.6605618 + posY: 1.71892142 + posZ: 12.0248747 + rotX: 359.932129 + rotY: 270.000031 + rotZ: 180.014343 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233546 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2335': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999385819522537/207CCD9C85ECB70A339C09170ABB42E139924AA0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999385819523376/198434B0178F76107193CB52D7FC70E5265E526E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: "\tDunwich. Central." + GMNotes: '' + GUID: 70df0b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Village Commons + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.34022021 + posY: 1.712907 + posZ: 11.9844084 + rotX: 359.9201 + rotY: 270.000061 + rotZ: 180.016891 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233331 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2333': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296027643/326876D4B46DF777AA1293989DEEE6A810ED027B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999385819527677/3AD8DFFFBFF54DB098AD3E00BB7E75DA0590FE8B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 2 + GMNotes: '' + GUID: 960a29 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Chamber of the Beast + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.27027035 + posY: 1.708022 + posZ: 12.1302633 + rotX: 359.936066 + rotY: 269.985626 + rotZ: 180.013458 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233330 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2333': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296027643/326876D4B46DF777AA1293989DEEE6A810ED027B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999385819527677/3AD8DFFFBFF54DB098AD3E00BB7E75DA0590FE8B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 1 + GMNotes: '' + GUID: 1b5f59 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Searching for Answers + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.28502512 + posY: 1.70519185 + posZ: 11.5665531 + rotX: 359.936 + rotY: 270.390839 + rotZ: 180.013077 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233329 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2333': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296027643/326876D4B46DF777AA1293989DEEE6A810ED027B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999385819527677/3AD8DFFFBFF54DB098AD3E00BB7E75DA0590FE8B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 3 + GMNotes: '' + GUID: 6286f9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Feed the Beast + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.05180335 + posY: 1.83698261 + posZ: 11.639266 + rotX: 356.5833 + rotY: 270.13 + rotZ: 177.96492 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233328 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2333': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296027643/326876D4B46DF777AA1293989DEEE6A810ED027B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999385819527677/3AD8DFFFBFF54DB098AD3E00BB7E75DA0590FE8B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 2 + GMNotes: '' + GUID: 8f5a49 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Old Ones Hunger + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.28441477 + posY: 1.8334235 + posZ: 11.7660952 + rotX: 356.683075 + rotY: 270.0724 + rotZ: 178.952621 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233327 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2333': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296027643/326876D4B46DF777AA1293989DEEE6A810ED027B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999385819527677/3AD8DFFFBFF54DB098AD3E00BB7E75DA0590FE8B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 1 + GMNotes: '' + GUID: abf877 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Strange Disappearances + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.79362154 + posY: 1.78978491 + posZ: 11.6841326 + rotX: 356.9779 + rotY: 270.0444 + rotZ: 178.773071 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233545 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2335': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999385819522537/207CCD9C85ECB70A339C09170ABB42E139924AA0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999385819523376/198434B0178F76107193CB52D7FC70E5265E526E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Blood on the Altar + GMNotes: '' + GUID: 70df0b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Scenario + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.48105955 + posY: 1.95387852 + posZ: 11.6295366 + rotX: 359.920135 + rotY: 270.0 + rotZ: 0.0168976858 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '2329': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '2333': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296027643/326876D4B46DF777AA1293989DEEE6A810ED027B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999385819527677/3AD8DFFFBFF54DB098AD3E00BB7E75DA0590FE8B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + '2335': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999385819522537/207CCD9C85ECB70A339C09170ABB42E139924AA0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999385819523376/198434B0178F76107193CB52D7FC70E5265E526E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + '2338': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 232856 +- 232856 +- 232856 +- 232855 +- 232855 +- 232855 +- 232854 +- 232854 +- 232853 +- 232853 +- 232852 +- 232852 +- 232852 +- 232951 +- 232950 +- 232949 +- 232848 +- 233847 +- 233559 +- 233558 +- 233557 +- 233556 +- 233555 +- 233554 +- 233553 +- 233552 +- 233551 +- 233550 +- 233549 +- 233548 +- 233547 +- 233546 +- 233331 +- 233330 +- 233329 +- 233328 +- 233327 +- 233545 +Description: '' +GMNotes: '' +GUID: 0fa4d8 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Blood on the Altar +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -35.2921944 + posY: 3.78762555 + posZ: -0.470535338 + rotX: 359.9201 + rotY: 270.0 + rotZ: 0.0168891922 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Dunwich Legacy 2aed55/Deck Dunwich ebbb05.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Dunwich Legacy 2aed55/Deck Dunwich ebbb05.yaml new file mode 100644 index 000000000..d62ceb9e1 --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Dunwich Legacy 2aed55/Deck Dunwich ebbb05.yaml @@ -0,0 +1,215 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 232816 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: 36342a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Sordid and Silent + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 4.15036964 + posY: 1.54897928 + posZ: 5.238284 + rotX: 359.920135 + rotY: 269.999878 + rotZ: 0.016877193 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232816 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: ebb8db + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Sordid and Silent + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.98407245 + posY: 1.705162 + posZ: 5.341168 + rotX: 359.920135 + rotY: 269.999878 + rotZ: 0.0168772284 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232815 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: de3bd5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Unhallowed Country + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 4.32745171 + posY: 1.71471429 + posZ: 5.03506565 + rotX: 359.919861 + rotY: 269.999969 + rotZ: 0.0168688018 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232815 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: de3bd5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Unhallowed Country + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 4.00495052 + posY: 1.70878184 + posZ: 5.306538 + rotX: 359.920135 + rotY: 269.999969 + rotZ: 0.01687902 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 232816 +- 232816 +- 232815 +- 232815 +Description: '' +GMNotes: '' +GUID: ebbb05 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: "\tDunwich" +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -20.1922684 + posY: 3.65098119 + posZ: -7.11014748 + rotX: 359.920135 + rotY: 269.999664 + rotZ: 0.0168792568 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Dunwich Legacy 2aed55/Deck Extracurricular Activity 081cf0.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Dunwich Legacy 2aed55/Deck Extracurricular Activity 081cf0.yaml new file mode 100644 index 000000000..9be84eca1 --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Dunwich Legacy 2aed55/Deck Extracurricular Activity 081cf0.yaml @@ -0,0 +1,981 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- 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 + UniqueBack: false + Description: Professor of Languages + GMNotes: '' + GUID: 42806b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Professor Warren Rice + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 8.227361 + posY: 1.78251421 + posZ: 0.8209219 + rotX: 359.93634 + rotY: 270.000122 + rotZ: 180.013565 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234103 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2341': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: The Head Janitor + GMNotes: '' + GUID: 52e361 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '"Jazz" Mulligan' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 11.4874382 + posY: 1.69266069 + posZ: -41.01006 + rotX: 359.920135 + rotY: 270.000153 + rotZ: 0.0168774612 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234002 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2340': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Item. Science. + GMNotes: '' + GUID: 21eb76 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Alchemical Concoction + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 14.7011967 + posY: 1.69050539 + posZ: -40.4223557 + rotX: 359.920135 + rotY: 269.999969 + rotZ: 0.0168779958 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232801 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Something Went Terribly Wrong + GMNotes: '' + GUID: 9c7371 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Experiment + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 8.133552 + posY: 1.75368524 + posZ: 0.883894145 + rotX: 359.9361 + rotY: 269.999878 + rotZ: 180.013519 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233510 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2335': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999385819522537/207CCD9C85ECB70A339C09170ABB42E139924AA0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999385819523376/198434B0178F76107193CB52D7FC70E5265E526E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Miskatonic. + GMNotes: '' + GUID: 685c14 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Alchemy Labs + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 8.160188 + posY: 1.7438637 + posZ: 0.4433406 + rotX: 359.9361 + rotY: 270.000061 + rotZ: 180.013428 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233509 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2335': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999385819522537/207CCD9C85ECB70A339C09170ABB42E139924AA0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999385819523376/198434B0178F76107193CB52D7FC70E5265E526E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Miskatonic. + GMNotes: '' + GUID: 70df0b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Science Building + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 8.0217 + posY: 1.73442531 + posZ: 0.5510577 + rotX: 359.9361 + rotY: 270.0001 + rotZ: 180.013428 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233508 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2335': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999385819522537/207CCD9C85ECB70A339C09170ABB42E139924AA0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999385819523376/198434B0178F76107193CB52D7FC70E5265E526E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: The Hour is Late + GMNotes: '' + GUID: 1c567d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Faculty Offices + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 8.201409 + posY: 1.72450984 + posZ: 0.395216137 + rotX: 359.9201 + rotY: 269.9975 + rotZ: 180.016891 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233507 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2335': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999385819522537/207CCD9C85ECB70A339C09170ABB42E139924AA0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999385819523376/198434B0178F76107193CB52D7FC70E5265E526E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: The Night is Still Young + GMNotes: '' + GUID: 70df0b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Faculty Offices + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 8.104978 + posY: 1.71511269 + posZ: 1.00902 + rotX: 359.9361 + rotY: 269.999939 + rotZ: 180.013519 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233506 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2335': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999385819522537/207CCD9C85ECB70A339C09170ABB42E139924AA0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999385819523376/198434B0178F76107193CB52D7FC70E5265E526E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Miskatonic. + GMNotes: '' + GUID: 70df0b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Administration Building + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 8.101679 + posY: 1.705468 + posZ: 1.056013 + rotX: 359.9361 + rotY: 269.999939 + rotZ: 180.013519 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233505 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2335': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999385819522537/207CCD9C85ECB70A339C09170ABB42E139924AA0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999385819523376/198434B0178F76107193CB52D7FC70E5265E526E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Miskatonic. + GMNotes: '' + GUID: 70df0b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dormitories + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 7.924718 + posY: 1.69602621 + posZ: 1.03994739 + rotX: 359.936462 + rotY: 270.0 + rotZ: 180.013489 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233504 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2335': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999385819522537/207CCD9C85ECB70A339C09170ABB42E139924AA0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999385819523376/198434B0178F76107193CB52D7FC70E5265E526E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Miskatonic. + GMNotes: '' + GUID: 70df0b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Student Union + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 8.074345 + posY: 1.6862843 + posZ: 1.35636246 + rotX: 359.920135 + rotY: 270.000031 + rotZ: 180.016861 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233503 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2335': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999385819522537/207CCD9C85ECB70A339C09170ABB42E139924AA0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999385819523376/198434B0178F76107193CB52D7FC70E5265E526E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Miskatonic. + GMNotes: '' + GUID: 70df0b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Orne Library + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 7.98499966 + posY: 1.67655981 + posZ: 0.702257633 + rotX: 359.9361 + rotY: 270.000031 + rotZ: 180.013519 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233502 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2335': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999385819522537/207CCD9C85ECB70A339C09170ABB42E139924AA0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999385819523376/198434B0178F76107193CB52D7FC70E5265E526E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Miskatonic. + GMNotes: '' + GUID: 70df0b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Humanities Bulding + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 8.077859 + posY: 1.66686738 + posZ: 1.08154881 + rotX: 359.9361 + rotY: 269.999939 + rotZ: 180.013519 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233501 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2335': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999385819522537/207CCD9C85ECB70A339C09170ABB42E139924AA0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999385819523376/198434B0178F76107193CB52D7FC70E5265E526E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Miskatonic. + GMNotes: '' + GUID: 4541f6 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Miskatonic Quad + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 7.820473 + posY: 1.70974112 + posZ: 0.9923251 + rotX: 359.9201 + rotY: 270.000031 + rotZ: 180.016891 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233305 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2333': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296027643/326876D4B46DF777AA1293989DEEE6A810ED027B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999385819527677/3AD8DFFFBFF54DB098AD3E00BB7E75DA0590FE8B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 3 + GMNotes: '' + GUID: ae9906 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Campus Safety + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 8.369412 + posY: 1.70254874 + posZ: 0.576295 + rotX: 359.936066 + rotY: 269.994934 + rotZ: 180.013428 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233304 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2333': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296027643/326876D4B46DF777AA1293989DEEE6A810ED027B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999385819527677/3AD8DFFFBFF54DB098AD3E00BB7E75DA0590FE8B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 2 + GMNotes: '' + GUID: a7ee8a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Rice's Whereabouts + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 8.427333 + posY: 1.69776142 + posZ: 0.6409496 + rotX: 359.939453 + rotY: 270.0183 + rotZ: 180.029434 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233303 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2333': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296027643/326876D4B46DF777AA1293989DEEE6A810ED027B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999385819527677/3AD8DFFFBFF54DB098AD3E00BB7E75DA0590FE8B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 1 + GMNotes: '' + GUID: 1b5f59 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: After Hours + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 8.444793 + posY: 1.69476461 + posZ: 0.525032938 + rotX: 359.9359 + rotY: 270.7154 + rotZ: 180.01265 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233302 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2333': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296027643/326876D4B46DF777AA1293989DEEE6A810ED027B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999385819527677/3AD8DFFFBFF54DB098AD3E00BB7E75DA0590FE8B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 3 + GMNotes: '' + GUID: 1b5f59 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Beast Unleashed + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 8.191973 + posY: 1.69764853 + posZ: 0.660612941 + rotX: 359.928284 + rotY: 271.083618 + rotZ: 180.03241 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233301 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2333': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296027643/326876D4B46DF777AA1293989DEEE6A810ED027B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999385819527677/3AD8DFFFBFF54DB098AD3E00BB7E75DA0590FE8B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 2 + GMNotes: '' + GUID: d1cd6b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dead of Night + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 8.05991 + posY: 1.71108282 + posZ: 0.8771807 + rotX: 359.936 + rotY: 270.289581 + rotZ: 180.0132 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233300 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2333': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296027643/326876D4B46DF777AA1293989DEEE6A810ED027B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999385819527677/3AD8DFFFBFF54DB098AD3E00BB7E75DA0590FE8B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 1 + GMNotes: '' + GUID: 1b5f59 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Quiet Halls + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 8.176109 + posY: 1.69358778 + posZ: 0.652695 + rotX: 359.9361 + rotY: 269.988281 + rotZ: 180.013428 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233511 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2335': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999385819522537/207CCD9C85ECB70A339C09170ABB42E139924AA0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999385819523376/198434B0178F76107193CB52D7FC70E5265E526E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Extracurricular Activity + GMNotes: '' + GUID: 70df0b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Scenario + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 8.179103 + posY: 1.77973306 + posZ: 0.615357757 + rotX: 359.9201 + rotY: 270.023773 + rotZ: 0.0168641042 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '2329': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '2333': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296027643/326876D4B46DF777AA1293989DEEE6A810ED027B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999385819527677/3AD8DFFFBFF54DB098AD3E00BB7E75DA0590FE8B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + '2335': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999385819522537/207CCD9C85ECB70A339C09170ABB42E139924AA0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999385819523376/198434B0178F76107193CB52D7FC70E5265E526E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + '2340': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '2341': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 232904 +- 234103 +- 234002 +- 232801 +- 233510 +- 233509 +- 233508 +- 233507 +- 233506 +- 233505 +- 233504 +- 233503 +- 233502 +- 233501 +- 233305 +- 233304 +- 233303 +- 233302 +- 233301 +- 233300 +- 233511 +Description: '' +GMNotes: '' +GUID: 081cf0 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Extracurricular Activity +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -31.7153664 + posY: 3.70900655 + posZ: -0.515118659 + rotX: 359.920135 + rotY: 270.002075 + rotZ: 0.016877979 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Dunwich Legacy 2aed55/Deck Hideous Abominations 4b1413.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Dunwich Legacy 2aed55/Deck Hideous Abominations 4b1413.yaml new file mode 100644 index 000000000..ed1052dfb --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Dunwich Legacy 2aed55/Deck Hideous Abominations 4b1413.yaml @@ -0,0 +1,172 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 232831 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Abomination. + GMNotes: '' + GUID: 919fa0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Servant of the Lurker + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.69560742 + posY: 1.54953551 + posZ: 4.974127 + rotX: 359.920135 + rotY: 269.999939 + rotZ: 0.0168759543 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232830 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Abomination. + GMNotes: '' + GUID: de3bd5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Conglomeration of Spheres + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.816169 + posY: 1.55043364 + posZ: 8.595026 + rotX: 359.920135 + rotY: 269.999878 + rotZ: 0.0168762449 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232830 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Abomination. + GMNotes: '' + GUID: 1b1dd5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Conglomeration of Spheres + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.72422314 + posY: 1.70678663 + posZ: 8.640354 + rotX: 359.920135 + rotY: 269.999878 + rotZ: 0.0168763362 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 232831 +- 232830 +- 232830 +Description: '' +GMNotes: '' +GUID: 4b1413 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Hideous Abominations +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -24.0296783 + posY: 3.656692 + posZ: -10.9868555 + rotX: 359.920135 + rotY: 269.999573 + rotZ: 0.016879173 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Dunwich Legacy 2aed55/Deck Lost in Time and Space 322ddb.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Dunwich Legacy 2aed55/Deck Lost in Time and Space 322ddb.yaml new file mode 100644 index 000000000..926b39071 --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Dunwich Legacy 2aed55/Deck Lost in Time and Space 322ddb.yaml @@ -0,0 +1,1605 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 233022 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: b8e111 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Vast Expanse + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.59488988 + posY: 1.54800773 + posZ: -0.6910548 + rotX: 359.920135 + rotY: 269.999756 + rotZ: 0.0168770663 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233022 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: 9bf115 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Vast Expanse + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.615601 + posY: 1.703763 + posZ: -0.494694948 + rotX: 359.920135 + rotY: 269.999756 + rotZ: 0.0168771055 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233022 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: b8e111 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Vast Expanse + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.6155982 + posY: 1.72101808 + posZ: -0.4947077 + rotX: 359.920563 + rotY: 269.999756 + rotZ: 0.0163997822 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233021 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: bed20e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Wormhole + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.2897706 + posY: 1.54934132 + posZ: 2.39365745 + rotX: 359.920135 + rotY: 269.999756 + rotZ: 0.0168782622 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233021 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: d22809 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Wormhole + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.30081034 + posY: 1.70532167 + posZ: 2.402783 + rotX: 359.920135 + rotY: 269.999756 + rotZ: 0.0168786459 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233020 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: e3fba9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Collapsing Reality + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.35379457 + posY: 1.550382 + posZ: 6.230603 + rotX: 359.920135 + rotY: 269.999664 + rotZ: 0.01687754 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233020 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: ab9229 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Collapsing Reality + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.398031 + posY: 1.70642865 + posZ: 5.915227 + rotX: 359.920135 + rotY: 269.999664 + rotZ: 0.01687751 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233020 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: e3fba9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Collapsing Reality + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.408769 + posY: 1.72366679 + posZ: 5.94847965 + rotX: 359.919556 + rotY: 269.999664 + rotZ: 0.0169323478 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233019 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Yithian. + GMNotes: '' + GUID: 04fae6 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Yithian Starseeker + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.650229 + posY: 1.54849708 + posZ: 1.23274589 + rotX: 359.920135 + rotY: 269.999756 + rotZ: 0.0168776624 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233019 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Yithian. + GMNotes: '' + GUID: 8f9f0a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Yithian Starseeker + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.6179266 + posY: 1.70442426 + posZ: 1.42972481 + rotX: 359.920135 + rotY: 269.999756 + rotZ: 0.01687762 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233018 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Yithian. + GMNotes: '' + GUID: e3fba9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Interstellar Traveler + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.95726347 + posY: 1.71822262 + posZ: 5.151437 + rotX: 359.9361 + rotY: 269.999939 + rotZ: 180.013535 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233018 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Yithian. + GMNotes: '' + GUID: 224e79 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Interstellar Traveler + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.64720035 + posY: 1.64947951 + posZ: 5.562858 + rotX: 359.920135 + rotY: 269.9998 + rotZ: 0.0168766547 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233018 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Yithian. + GMNotes: '' + GUID: 816c6e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Interstellar Traveler + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.142872 + posY: 1.5994879 + posZ: 5.485885 + rotX: 359.920135 + rotY: 269.9998 + rotZ: 0.0168766584 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233017 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Otherworld. Extradimensional. + GMNotes: '' + GUID: a817e8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dimensional Doorway + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.13925815 + posY: 1.81145775 + posZ: 9.44118 + rotX: 359.9361 + rotY: 270.000031 + rotZ: 180.013474 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233016 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Otherworld. Extradimensional. + GMNotes: '' + GUID: c704c2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Steps of Y'hagharl + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.19242978 + posY: 1.80190122 + posZ: 9.970057 + rotX: 359.920135 + rotY: 270.0 + rotZ: 180.016876 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233015 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Otherworld. Extradimensional. + GMNotes: '' + GUID: 9c0430 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Endless Bridge + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.856183 + posY: 1.54751182 + posZ: -1.137705 + rotX: 359.920135 + rotY: 269.999847 + rotZ: 0.016876556 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233015 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Otherworld. Extradimensional. + GMNotes: '' + GUID: 5ccf98 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Endless Bridge + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 4.019457 + posY: 1.7029196 + posZ: -1.10944748 + rotX: 359.920135 + rotY: 269.999817 + rotZ: 0.0168766081 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233014 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Otherworld. Extradimensional. + GMNotes: '' + GUID: 8100cf + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Prismatic Cascade + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.731143 + posY: 1.54877687 + posZ: 2.566369 + rotX: 359.920135 + rotY: 269.999939 + rotZ: 0.0168759022 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233014 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Otherworld. Extradimensional. + GMNotes: '' + GUID: 1b1dac + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Prismatic Cascade + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.92325735 + posY: 1.70436108 + posZ: 2.47072983 + rotX: 359.920135 + rotY: 269.999939 + rotZ: 0.0168758314 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233013 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Otherworld. Extradimensional. + GMNotes: '' + GUID: e3fba9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Tear Through Space + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.61346817 + posY: 1.550228 + posZ: 6.937173 + rotX: 359.920135 + rotY: 269.999939 + rotZ: 0.0168756321 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233013 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Otherworld. Extradimensional. + GMNotes: '' + GUID: 788a8c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Tear Through Space + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.85034347 + posY: 1.70612967 + posZ: 7.146141 + rotX: 359.920135 + rotY: 269.999939 + rotZ: 0.0168754943 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233013 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Otherworld. Extradimensional. + GMNotes: '' + GUID: e3fba9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Tear Through Space + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.85034347 + posY: 1.72339964 + posZ: 7.146141 + rotX: 359.920135 + rotY: 269.999939 + rotZ: 0.0168756321 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233013 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Otherworld. Extradimensional. + GMNotes: '' + GUID: e3fba9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Tear Through Space + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.85034347 + posY: 1.70971835 + posZ: 7.146141 + rotX: 359.919861 + rotY: 269.999939 + rotZ: 0.0163024459 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233012 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: The Lurker Beyond the Threshold + GMNotes: '' + GUID: e3fba9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Yog-Sothoth + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.39661837 + posY: 1.71482134 + posZ: 10.5776434 + rotX: 359.9361 + rotY: 269.999939 + rotZ: 180.013535 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233628 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2336': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296074747/742F5083E0E10E3DD22E671C78F35E6143C744FF/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296074238/FB73285A9ED0D784210E50C6EA17EBC25648D800/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: "\tOtherworld." + GMNotes: '' + GUID: b8985b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Tear Through Time + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.30698347 + posY: 1.72248685 + posZ: 9.748051 + rotX: 0.009157683 + rotY: 270.000519 + rotZ: 181.400375 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233627 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2336': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296074747/742F5083E0E10E3DD22E671C78F35E6143C744FF/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296074238/FB73285A9ED0D784210E50C6EA17EBC25648D800/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: "\tOtherworld." + GMNotes: '' + GUID: aa50e4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Edge of the Universe + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.12814164 + posY: 1.69576931 + posZ: 10.1415224 + rotX: 359.920135 + rotY: 270.000336 + rotZ: 180.016861 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233626 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2336': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296074747/742F5083E0E10E3DD22E671C78F35E6143C744FF/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296074238/FB73285A9ED0D784210E50C6EA17EBC25648D800/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Unfettered by Reality + GMNotes: '' + GUID: 8662fa + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Another Dimension + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.14014149 + posY: 1.68611264 + posZ: 10.205904 + rotX: 359.920044 + rotY: 270.000061 + rotZ: 180.016891 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233351 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2333': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296027643/326876D4B46DF777AA1293989DEEE6A810ED027B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999385819527677/3AD8DFFFBFF54DB098AD3E00BB7E75DA0590FE8B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 4 + GMNotes: '' + GUID: 36ab3e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Finding a New Way + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.061557 + posY: 1.67707753 + posZ: 10.4929943 + rotX: 359.932373 + rotY: 270.575684 + rotZ: 180.029053 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233350 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2333': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296027643/326876D4B46DF777AA1293989DEEE6A810ED027B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999385819527677/3AD8DFFFBFF54DB098AD3E00BB7E75DA0590FE8B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 3 + GMNotes: '' + GUID: 4ff26a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Close the Rift + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.2365644 + posY: 1.71910548 + posZ: 10.09115 + rotX: 359.939362 + rotY: 270.715149 + rotZ: 180.02861 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233349 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2333': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296027643/326876D4B46DF777AA1293989DEEE6A810ED027B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999385819527677/3AD8DFFFBFF54DB098AD3E00BB7E75DA0590FE8B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 2 + GMNotes: '' + GUID: 85ddfb + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Into the Beyond + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.310017 + posY: 1.71279514 + posZ: 10.4983387 + rotX: 359.9326 + rotY: 270.448 + rotZ: 180.0291 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233348 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2333': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296027643/326876D4B46DF777AA1293989DEEE6A810ED027B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999385819527677/3AD8DFFFBFF54DB098AD3E00BB7E75DA0590FE8B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 1 + GMNotes: '' + GUID: 1b5f59 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Out of this World + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.103275 + posY: 1.70798779 + posZ: 10.2568321 + rotX: 359.932953 + rotY: 268.907166 + rotZ: 180.030777 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233347 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2333': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296027643/326876D4B46DF777AA1293989DEEE6A810ED027B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999385819527677/3AD8DFFFBFF54DB098AD3E00BB7E75DA0590FE8B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 4 + GMNotes: '' + GUID: c3bf03 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The End of All Things + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.38294029 + posY: 1.70488393 + posZ: 10.1900454 + rotX: 359.934 + rotY: 270.003632 + rotZ: 180.028214 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233346 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2333': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296027643/326876D4B46DF777AA1293989DEEE6A810ED027B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999385819527677/3AD8DFFFBFF54DB098AD3E00BB7E75DA0590FE8B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 3 + GMNotes: '' + GUID: '930050' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Breaking Through + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.35732555 + posY: 1.78139079 + posZ: 10.16038 + rotX: 2.67215538 + rotY: 270.45 + rotZ: 180.032578 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233345 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2333': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296027643/326876D4B46DF777AA1293989DEEE6A810ED027B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999385819527677/3AD8DFFFBFF54DB098AD3E00BB7E75DA0590FE8B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 2 + GMNotes: '' + GUID: 19793c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Past, Present and Future + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.216075 + posY: 1.7838285 + posZ: 9.829422 + rotX: 359.983276 + rotY: 270.5745 + rotZ: 184.373642 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233344 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2333': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296027643/326876D4B46DF777AA1293989DEEE6A810ED027B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999385819527677/3AD8DFFFBFF54DB098AD3E00BB7E75DA0590FE8B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 1 + GMNotes: '' + GUID: 1b5f59 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: All is One + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.352832 + posY: 1.70349514 + posZ: 10.2298985 + rotX: 359.936554 + rotY: 270.5102 + rotZ: 180.012253 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233625 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2336': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296074747/742F5083E0E10E3DD22E671C78F35E6143C744FF/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296074238/FB73285A9ED0D784210E50C6EA17EBC25648D800/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Lost in Time and Space + GMNotes: '' + GUID: aa50e4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Scenario + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -0.335245341 + posY: 1.9447819 + posZ: 28.803381 + rotX: 359.920135 + rotY: 270.000061 + rotZ: 0.0168707687 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '2333': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296027643/326876D4B46DF777AA1293989DEEE6A810ED027B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999385819527677/3AD8DFFFBFF54DB098AD3E00BB7E75DA0590FE8B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + '2336': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296074747/742F5083E0E10E3DD22E671C78F35E6143C744FF/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296074238/FB73285A9ED0D784210E50C6EA17EBC25648D800/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 233022 +- 233022 +- 233022 +- 233021 +- 233021 +- 233020 +- 233020 +- 233020 +- 233019 +- 233019 +- 233018 +- 233018 +- 233018 +- 233017 +- 233016 +- 233015 +- 233015 +- 233014 +- 233014 +- 233013 +- 233013 +- 233013 +- 233013 +- 233012 +- 233628 +- 233627 +- 233626 +- 233351 +- 233350 +- 233349 +- 233348 +- 233347 +- 233346 +- 233345 +- 233344 +- 233625 +Description: '' +GMNotes: '' +GUID: 322ddb +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Lost in Time and Space +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -35.4292259 + posY: 3.77660275 + posZ: -9.14012051 + rotX: 359.9201 + rotY: 269.999817 + rotZ: 0.01689121 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Dunwich Legacy 2aed55/Deck Naomi's Crew be34b0.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Dunwich Legacy 2aed55/Deck Naomi's Crew be34b0.yaml new file mode 100644 index 000000000..eb7bf5b17 --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Dunwich Legacy 2aed55/Deck Naomi's Crew be34b0.yaml @@ -0,0 +1,301 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 232826 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Tactic. + GMNotes: '' + GUID: fb489f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Hunted Down + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.980493 + posY: 1.55055571 + posZ: 5.05313349 + rotX: 359.920135 + rotY: 269.999939 + rotZ: 0.016877586 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232826 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Tactic. + GMNotes: '' + GUID: 5da81c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Hunted Down + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.06432152 + posY: 1.70658684 + posZ: 4.754894 + rotX: 359.920135 + rotY: 269.999939 + rotZ: 0.01687765 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232825 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: "\tHuman. Criminal. Syndicate." + GMNotes: '' + GUID: 5b2e99 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Mobster + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.824686 + posY: 1.55165482 + posZ: 8.04818 + rotX: 359.920135 + rotY: 269.999939 + rotZ: 0.0168768317 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232825 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: "\tHuman. Criminal. Syndicate." + GMNotes: '' + GUID: a5bca1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Mobster + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.079666 + posY: 1.707689 + posZ: 7.82385826 + rotX: 359.920135 + rotY: 269.999939 + rotZ: 0.0168767981 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232824 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: "\tHuman. Criminal. Syndicate." + GMNotes: '' + GUID: de3bd5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: O'Bannion's Thug + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.137052 + posY: 1.700631 + posZ: 4.79863548 + rotX: 359.920135 + rotY: 269.999878 + rotZ: 0.016896477 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232824 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: "\tHuman. Criminal. Syndicate." + GMNotes: '' + GUID: de3bd5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: O'Bannion's Thug + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.09011388 + posY: 1.71127486 + posZ: 4.866368 + rotX: 359.9204 + rotY: 269.999878 + rotZ: 0.0165366847 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 232826 +- 232826 +- 232825 +- 232825 +- 232824 +- 232824 +Description: '' +GMNotes: '' +GUID: be34b0 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: "\tNaomi's Crew" +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -24.1563644 + posY: 3.66048813 + posZ: -3.195175 + rotX: 359.920135 + rotY: 270.000153 + rotZ: 0.01687581 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Dunwich Legacy 2aed55/Deck Sorcery 6f6e72.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Dunwich Legacy 2aed55/Deck Sorcery 6f6e72.yaml new file mode 100644 index 000000000..4ffbdc1fd --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Dunwich Legacy 2aed55/Deck Sorcery 6f6e72.yaml @@ -0,0 +1,301 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 232811 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: d56ff7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Beyond the Veil + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.917338 + posY: 1.55012894 + posZ: 8.039298 + rotX: 359.920135 + rotY: 269.999969 + rotZ: 0.01687837 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232811 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: 9cb0b3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Beyond the Veil + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.89250565 + posY: 1.70636082 + posZ: 8.19774 + rotX: 359.920135 + rotY: 269.999969 + rotZ: 0.01687832 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232811 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: d56ff7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Beyond the Veil + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.89250565 + posY: 1.72360778 + posZ: 8.19774 + rotX: 359.920837 + rotY: 269.999969 + rotZ: 0.0158282 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232810 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: de3bd5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Visions of Futures Past + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.43124938 + posY: 1.55177522 + posZ: 11.3293571 + rotX: 359.920135 + rotY: 269.999969 + rotZ: 0.0168769564 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232810 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: 42d459 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Visions of Futures Past + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.15239716 + posY: 1.70869577 + posZ: 11.50471 + rotX: 359.920135 + rotY: 269.999969 + rotZ: 0.01687689 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232810 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: de3bd5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Visions of Futures Past + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.15239716 + posY: 1.72595167 + posZ: 11.50471 + rotX: 359.9199 + rotY: 269.999969 + rotZ: 0.0165576525 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 232811 +- 232811 +- 232811 +- 232810 +- 232810 +- 232810 +Description: '' +GMNotes: '' +GUID: 6f6e72 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Sorcery +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -20.6601334 + posY: 3.65657234 + posZ: 0.0612237677 + rotX: 359.920135 + rotY: 269.9999 + rotZ: 0.0168767255 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Dunwich Legacy 2aed55/Deck The Beyond 17fb80.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Dunwich Legacy 2aed55/Deck The Beyond 17fb80.yaml new file mode 100644 index 000000000..4033ca490 --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Dunwich Legacy 2aed55/Deck The Beyond 17fb80.yaml @@ -0,0 +1,301 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 232829 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: "\tHex. Obstacle." + GMNotes: '' + GUID: 2d6b0f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Arcane Barrier + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.163001 + posY: 1.550591 + posZ: 6.036887 + rotX: 359.920135 + rotY: 269.9999 + rotZ: 0.0168760177 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232829 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: "\tHex. Obstacle." + GMNotes: '' + GUID: db1aee + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Arcane Barrier + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.36834574 + posY: 1.70658445 + posZ: 6.162498 + rotX: 359.920135 + rotY: 269.9999 + rotZ: 0.01687594 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232828 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: "\tHex. Terror." + GMNotes: '' + GUID: 851dc1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Terror from Beyond + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.0437057 + posY: 1.55163479 + posZ: 9.017338 + rotX: 359.920135 + rotY: 269.999939 + rotZ: 0.0168782789 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232828 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: "\tHex. Terror." + GMNotes: '' + GUID: 8906a9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Terror from Beyond + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.82296681 + posY: 1.708395 + posZ: 9.019801 + rotX: 359.920135 + rotY: 269.999939 + rotZ: 0.0168783069 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232827 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: de3bd5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Pushed into the Beyond + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.622002 + posY: 1.55319154 + posZ: 12.3073425 + rotX: 359.920135 + rotY: 269.9999 + rotZ: 0.0168778151 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232827 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: d91086 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Pushed into the Beyond + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.70456314 + posY: 1.70989764 + posZ: 12.504797 + rotX: 359.920135 + rotY: 269.9999 + rotZ: 0.0168777462 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 232829 +- 232829 +- 232828 +- 232828 +- 232827 +- 232827 +Description: '' +GMNotes: '' +GUID: 17fb80 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: "\tThe Beyond" +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -24.07596 + posY: 3.65928268 + posZ: -6.90889549 + rotX: 359.920135 + rotY: 269.999664 + rotZ: 0.016874738 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Dunwich Legacy 2aed55/Deck The Essex County Express 4a246f.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Dunwich Legacy 2aed55/Deck The Essex County Express 4a246f.yaml new file mode 100644 index 000000000..d062dee2e --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Dunwich Legacy 2aed55/Deck The Essex County Express 4a246f.yaml @@ -0,0 +1,1619 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 232846 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Abomination. + GMNotes: '' + GUID: '979865' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Emergent Monstrosity + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 4.56324863 + posY: 1.547649 + posZ: 2.6758585 + rotX: 359.920135 + rotY: 269.999939 + rotZ: 0.0168755446 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232846 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Abomination. + GMNotes: '' + GUID: 8f3a8e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Emergent Monstrosity + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 4.45231533 + posY: 1.70446432 + posZ: 2.54968047 + rotX: 359.9361 + rotY: 270.0 + rotZ: 0.0135003505 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232845 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Abomination. + GMNotes: '' + GUID: de3bd5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Grappling Horror + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 4.296824 + posY: 1.54920268 + posZ: 6.69029856 + rotX: 359.920135 + rotY: 269.9999 + rotZ: 0.01687894 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232845 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Abomination. + GMNotes: '' + GUID: c7a9ae + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Grappling Horror + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 4.05175161 + posY: 1.70558786 + posZ: 6.95578146 + rotX: 359.920135 + rotY: 269.9999 + rotZ: 0.0168790333 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232844 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: b21462 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Broken Rails + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.17323017 + posY: 1.54983246 + posZ: 3.509645 + rotX: 359.920135 + rotY: 269.999878 + rotZ: 0.016877776 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232844 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: 66a478 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Broken Rails + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.21957278 + posY: 1.70589614 + posZ: 3.63546753 + rotX: 359.920135 + rotY: 269.999878 + rotZ: 0.0168777388 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232844 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: b21462 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Broken Rails + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.84766388 + posY: 1.71542335 + posZ: 4.943244 + rotX: 359.920135 + rotY: 269.999939 + rotZ: 0.01688485 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232843 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Power. + GMNotes: '' + GUID: de3bd5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Claws of Steam + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.562016 + posY: 1.55059922 + posZ: 7.95429945 + rotX: 359.920135 + rotY: 269.9999 + rotZ: 0.0168772768 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232843 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Power. + GMNotes: '' + GUID: 761e27 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Claws of Steam + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.55231953 + posY: 1.65058267 + posZ: 7.93873835 + rotX: 359.920135 + rotY: 269.9999 + rotZ: 0.0168772824 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232843 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Power. + GMNotes: '' + GUID: 02547a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Claws of Steam + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.08161831 + posY: 1.79581642 + posZ: 7.448845 + rotX: 4.45820761 + rotY: 270.0072 + rotZ: 0.01645248 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233842 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2338': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Ally. Bystander. + GMNotes: '' + GUID: 49f43a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Helpless Passenger + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.73022318 + posY: 1.55090475 + posZ: 5.05359936 + rotX: 359.920135 + rotY: 269.999939 + rotZ: 0.0168759227 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233842 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2338': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Ally. Bystander. + GMNotes: '' + GUID: 8bc20d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Helpless Passenger + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.56772733 + posY: 1.7071954 + posZ: 5.398302 + rotX: 359.9361 + rotY: 270.0 + rotZ: 0.0135006122 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233842 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2338': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Ally. Bystander. + GMNotes: '' + GUID: 49f43a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Helpless Passenger + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.5806675 + posY: 1.72434509 + posZ: 5.36101627 + rotX: 359.9387 + rotY: 270.0 + rotZ: 0.009182569 + 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 + UniqueBack: false + Description: Madness. + GMNotes: '' + GUID: 6e0707 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Across Space and Time + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.86720228 + posY: 1.55092323 + posZ: 5.76491 + rotX: 359.920135 + rotY: 269.999939 + rotZ: 0.0168758072 + 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 + UniqueBack: false + Description: Madness. + GMNotes: '' + GUID: fb943f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Across Space and Time + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.56381679 + posY: 1.70775008 + posZ: 6.08510971 + rotX: 359.920746 + rotY: 269.999878 + rotZ: 0.0167477615 + 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 + UniqueBack: false + Description: Madness. + GMNotes: '' + GUID: 6e0707 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Across Space and Time + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.97638845 + posY: 1.717006 + posZ: 6.24382067 + rotX: 359.932831 + rotY: 269.999939 + rotZ: 0.014212965 + 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 + UniqueBack: false + Description: Madness. + GMNotes: '' + GUID: 6e0707 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Across Space and Time + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.97060323 + posY: 1.92756271 + posZ: 5.153989 + rotX: 359.920868 + rotY: 269.997528 + rotZ: 20.4355183 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233544 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2335': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999385819522537/207CCD9C85ECB70A339C09170ABB42E139924AA0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999385819523376/198434B0178F76107193CB52D7FC70E5265E526E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Train. + GMNotes: '' + GUID: 03d617 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Engine Car + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.975767 + posY: 1.77236414 + posZ: 11.8232231 + rotX: 359.920135 + rotY: 270.000336 + rotZ: 180.016861 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233543 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2335': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999385819522537/207CCD9C85ECB70A339C09170ABB42E139924AA0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999385819523376/198434B0178F76107193CB52D7FC70E5265E526E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Train. + GMNotes: '' + GUID: d60b80 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Engine Car + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 4.163341 + posY: 1.76238644 + posZ: 11.2444973 + rotX: 359.932739 + rotY: 270.000122 + rotZ: 180.014145 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233542 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2335': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999385819522537/207CCD9C85ECB70A339C09170ABB42E139924AA0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999385819523376/198434B0178F76107193CB52D7FC70E5265E526E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Train. + GMNotes: '' + GUID: 70df0b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Engine Car + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 4.095531 + posY: 1.75278556 + posZ: 11.167448 + rotX: 359.9328 + rotY: 270.000122 + rotZ: 180.01413 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233541 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2335': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999385819522537/207CCD9C85ECB70A339C09170ABB42E139924AA0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999385819523376/198434B0178F76107193CB52D7FC70E5265E526E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Train. + GMNotes: '' + GUID: 62eb90 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Train Car + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.56566334 + posY: 1.74376225 + posZ: 11.2992973 + rotX: 359.9201 + rotY: 270.000183 + rotZ: 180.016876 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233540 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2335': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999385819522537/207CCD9C85ECB70A339C09170ABB42E139924AA0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999385819523376/198434B0178F76107193CB52D7FC70E5265E526E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Train. + GMNotes: '' + GUID: '464528' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Train Car + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 4.0836916 + posY: 1.73347366 + posZ: 11.1301689 + rotX: 359.932739 + rotY: 270.0001 + rotZ: 180.014145 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233539 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2335': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999385819522537/207CCD9C85ECB70A339C09170ABB42E139924AA0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999385819523376/198434B0178F76107193CB52D7FC70E5265E526E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Train. + GMNotes: '' + GUID: 3cfca4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Train Car + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 4.011795 + posY: 1.72386336 + posZ: 10.9611311 + rotX: 359.9328 + rotY: 270.0001 + rotZ: 180.01413 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233538 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2335': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999385819522537/207CCD9C85ECB70A339C09170ABB42E139924AA0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999385819523376/198434B0178F76107193CB52D7FC70E5265E526E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Train. + GMNotes: '' + GUID: 0794a4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Train Car + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.74957 + posY: 1.71478891 + posZ: 11.9420414 + rotX: 359.932739 + rotY: 270.0 + rotZ: 180.014175 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233537 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2335': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999385819522537/207CCD9C85ECB70A339C09170ABB42E139924AA0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999385819523376/198434B0178F76107193CB52D7FC70E5265E526E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Train. + GMNotes: '' + GUID: f3f902 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Train Car + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.7509892 + posY: 1.70502913 + posZ: 11.4320583 + rotX: 359.932037 + rotY: 270.000031 + rotZ: 180.0143 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233536 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2335': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999385819522537/207CCD9C85ECB70A339C09170ABB42E139924AA0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999385819523376/198434B0178F76107193CB52D7FC70E5265E526E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Train. + GMNotes: '' + GUID: a3a321 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Train Car + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.794354 + posY: 1.69525 + posZ: 11.1713991 + rotX: 359.932129 + rotY: 270.000031 + rotZ: 180.014343 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233535 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2335': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999385819522537/207CCD9C85ECB70A339C09170ABB42E139924AA0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999385819523376/198434B0178F76107193CB52D7FC70E5265E526E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Train. + GMNotes: '' + GUID: 1c93d4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Train Car + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.691601 + posY: 1.68557143 + posZ: 10.7083864 + rotX: 359.932037 + rotY: 270.000061 + rotZ: 180.014343 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233534 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2335': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999385819522537/207CCD9C85ECB70A339C09170ABB42E139924AA0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999385819523376/198434B0178F76107193CB52D7FC70E5265E526E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Train. + GMNotes: '' + GUID: 70df0b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Train Car + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.717403 + posY: 1.67569375 + posZ: 10.5590639 + rotX: 359.936279 + rotY: 270.000275 + rotZ: 180.014282 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233326 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2333': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296027643/326876D4B46DF777AA1293989DEEE6A810ED027B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999385819527677/3AD8DFFFBFF54DB098AD3E00BB7E75DA0590FE8B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: 'Act ' + GMNotes: '' + GUID: d207eb + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Get the Engine Running! + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.74341369 + posY: 1.720609 + posZ: 11.2465525 + rotX: 359.935974 + rotY: 269.9991 + rotZ: 180.136536 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233325 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2333': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296027643/326876D4B46DF777AA1293989DEEE6A810ED027B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999385819527677/3AD8DFFFBFF54DB098AD3E00BB7E75DA0590FE8B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: 'Act ' + GMNotes: '' + GUID: 1b5f59 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Run! + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.99388218 + posY: 1.71170366 + posZ: 10.8772049 + rotX: 359.920135 + rotY: 269.999939 + rotZ: 180.016891 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233324 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2333': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296027643/326876D4B46DF777AA1293989DEEE6A810ED027B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999385819527677/3AD8DFFFBFF54DB098AD3E00BB7E75DA0590FE8B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: 'Agenda ' + GMNotes: '' + GUID: ad8e9f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Out of Time + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 4.090213 + posY: 1.70657885 + posZ: 10.9699707 + rotX: 359.9359 + rotY: 270.787231 + rotZ: 180.012543 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233323 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2333': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296027643/326876D4B46DF777AA1293989DEEE6A810ED027B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999385819527677/3AD8DFFFBFF54DB098AD3E00BB7E75DA0590FE8B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: 'Agenda ' + GMNotes: '' + GUID: 22da82 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Drawn In + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.93832088 + posY: 1.70403922 + posZ: 10.6782675 + rotX: 359.9361 + rotY: 270.009949 + rotZ: 180.0134 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233322 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2333': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296027643/326876D4B46DF777AA1293989DEEE6A810ED027B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999385819527677/3AD8DFFFBFF54DB098AD3E00BB7E75DA0590FE8B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: 'Agenda ' + GMNotes: '' + GUID: 44ad52 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Rolling Backwards + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.94576979 + posY: 1.70612907 + posZ: 10.993412 + rotX: 359.9361 + rotY: 269.989044 + rotZ: 180.013428 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233321 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2333': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296027643/326876D4B46DF777AA1293989DEEE6A810ED027B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999385819527677/3AD8DFFFBFF54DB098AD3E00BB7E75DA0590FE8B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: 'Agenda ' + GMNotes: '' + GUID: 54c524 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Maw Widens + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.94986844 + posY: 1.71974587 + posZ: 10.8355856 + rotX: 359.9361 + rotY: 270.071381 + rotZ: 180.013336 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233320 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2333': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296027643/326876D4B46DF777AA1293989DEEE6A810ED027B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999385819527677/3AD8DFFFBFF54DB098AD3E00BB7E75DA0590FE8B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: 'Agenda ' + GMNotes: '' + GUID: 1b5f59 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: A Tear in Reality + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 4.15201473 + posY: 1.70266664 + posZ: 11.4888725 + rotX: 359.93927 + rotY: 270.786865 + rotZ: 180.028687 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233533 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2335': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999385819522537/207CCD9C85ECB70A339C09170ABB42E139924AA0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999385819523376/198434B0178F76107193CB52D7FC70E5265E526E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: The Essex County Express + GMNotes: '' + GUID: 70df0b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Scenario + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.48838663 + posY: 1.93932259 + posZ: 28.4095268 + rotX: 359.9201 + rotY: 269.999756 + rotZ: 0.0168643948 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '2329': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '2333': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296027643/326876D4B46DF777AA1293989DEEE6A810ED027B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999385819527677/3AD8DFFFBFF54DB098AD3E00BB7E75DA0590FE8B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + '2335': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999385819522537/207CCD9C85ECB70A339C09170ABB42E139924AA0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999385819523376/198434B0178F76107193CB52D7FC70E5265E526E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + '2338': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 232846 +- 232846 +- 232845 +- 232845 +- 232844 +- 232844 +- 232844 +- 232843 +- 232843 +- 232843 +- 233842 +- 233842 +- 233842 +- 232941 +- 232941 +- 232941 +- 232941 +- 233544 +- 233543 +- 233542 +- 233541 +- 233540 +- 233539 +- 233538 +- 233537 +- 233536 +- 233535 +- 233534 +- 233326 +- 233325 +- 233324 +- 233323 +- 233322 +- 233321 +- 233320 +- 233533 +Description: '' +GMNotes: '' +GUID: 4a246f +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: The Essex County Express +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -31.5198822 + posY: 3.77109814 + posZ: -9.325454 + rotX: 359.9201 + rotY: 269.999176 + rotZ: 0.0168883447 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Dunwich Legacy 2aed55/Deck The House Always Wins 8cf802.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Dunwich Legacy 2aed55/Deck The House Always Wins 8cf802.yaml new file mode 100644 index 000000000..a1a6697f0 --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Dunwich Legacy 2aed55/Deck The House Always Wins 8cf802.yaml @@ -0,0 +1,1060 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 232809 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: de3bd5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Arousing Suspicions + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.94530869 + posY: 1.55160308 + posZ: 13.1780157 + rotX: 359.920135 + rotY: 270.0 + rotZ: 0.0168776065 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232809 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: f3b1ad + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Arousing Suspicions + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.473675 + posY: 1.708686 + posZ: 13.1101532 + rotX: 359.920135 + rotY: 270.0 + rotZ: 0.01687759 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232808 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Poison. Illicit. + GMNotes: '' + GUID: de3bd5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Something in the Drinks + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 4.356045 + posY: 1.5514009 + posZ: 14.4359617 + rotX: 359.920135 + rotY: 269.999939 + rotZ: 0.0168756079 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232808 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Poison. Illicit. + GMNotes: '' + GUID: 41c162 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Something in the Drinks + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 4.11569738 + posY: 1.70826149 + posZ: 14.8454256 + rotX: 359.920135 + rotY: 269.999939 + rotZ: 0.0168757755 + 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 + UniqueBack: false + Description: Professor of Archaeology + GMNotes: '' + GUID: f03306 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dr. Francis Morgan + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.38830328 + posY: 1.77396643 + posZ: 9.74614 + rotX: 359.9361 + rotY: 270.000061 + rotZ: 180.013428 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234206 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2342': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Holding All the Cards + GMNotes: '' + GUID: 8359a3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Peter Clover + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -0.277509451 + posY: 1.55705941 + posZ: -31.1644325 + rotX: 359.920135 + rotY: 269.999939 + rotZ: 0.0168772154 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232805 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Criminal. Elite. + GMNotes: '' + GUID: de3bd5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Clover Club Pit Boss + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.23617172 + posY: 1.77387679 + posZ: 9.860194 + rotX: 0.0 + rotY: 270.0 + rotZ: 180.781616 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233519 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2335': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999385819522537/207CCD9C85ECB70A339C09170ABB42E139924AA0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999385819523376/198434B0178F76107193CB52D7FC70E5265E526E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Clover Club. + GMNotes: '' + GUID: ce6ce6 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Back Hall Doorway + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 1.77076185 + posY: 1.74416351 + posZ: 4.01754475 + rotX: 359.920135 + rotY: 270.000031 + rotZ: 180.016876 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233518 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2335': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999385819522537/207CCD9C85ECB70A339C09170ABB42E139924AA0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999385819523376/198434B0178F76107193CB52D7FC70E5265E526E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Clover Club. + GMNotes: '' + GUID: fc63df + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Back Hall Doorway + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 1.82571936 + posY: 1.73434186 + posZ: 3.667294 + rotX: 359.920135 + rotY: 269.999268 + rotZ: 180.016891 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233517 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2335': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999385819522537/207CCD9C85ECB70A339C09170ABB42E139924AA0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999385819523376/198434B0178F76107193CB52D7FC70E5265E526E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Clover Club. + GMNotes: '' + GUID: 70df0b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Back Hall Doorway + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.049151 + posY: 1.72434652 + posZ: 3.46115136 + rotX: 359.9201 + rotY: 270.001038 + rotZ: 180.016891 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233516 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2335': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999385819522537/207CCD9C85ECB70A339C09170ABB42E139924AA0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999385819523376/198434B0178F76107193CB52D7FC70E5265E526E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Clover Club. + GMNotes: '' + GUID: 911f8c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Darkened Hall + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.27449918 + posY: 1.78177023 + posZ: 3.80088258 + rotX: 356.611725 + rotY: 270.003723 + rotZ: 180.016678 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233515 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2335': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999385819522537/207CCD9C85ECB70A339C09170ABB42E139924AA0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999385819523376/198434B0178F76107193CB52D7FC70E5265E526E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Clover Club. + GMNotes: '' + GUID: 70df0b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Clover Club Cardroom + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.03022933 + posY: 1.88418293 + posZ: 4.379504 + rotX: 0.0 + rotY: 270.0 + rotZ: 168.272644 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233514 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2335': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999385819522537/207CCD9C85ECB70A339C09170ABB42E139924AA0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999385819523376/198434B0178F76107193CB52D7FC70E5265E526E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Clover Club. + GMNotes: '' + GUID: 70df0b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Clover Club Bar + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 1.80154467 + posY: 1.69585931 + posZ: 4.181169 + rotX: 359.9361 + rotY: 269.999939 + rotZ: 180.013519 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233513 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2335': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999385819522537/207CCD9C85ECB70A339C09170ABB42E139924AA0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999385819523376/198434B0178F76107193CB52D7FC70E5265E526E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Clover Club. + GMNotes: '' + GUID: 70df0b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Clover Club Lounge + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 1.83109641 + posY: 1.68625569 + posZ: 4.59961653 + rotX: 359.936066 + rotY: 270.0001 + rotZ: 180.013489 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233512 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2335': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999385819522537/207CCD9C85ECB70A339C09170ABB42E139924AA0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999385819523376/198434B0178F76107193CB52D7FC70E5265E526E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Arkham. + GMNotes: '' + GUID: 70df0b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: La Bella Luna + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 1.68505645 + posY: 1.67662013 + posZ: 3.83648467 + rotX: 359.920135 + rotY: 270.000061 + rotZ: 180.016861 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233312 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2333': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296027643/326876D4B46DF777AA1293989DEEE6A810ED027B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999385819527677/3AD8DFFFBFF54DB098AD3E00BB7E75DA0590FE8B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 3 + GMNotes: '' + GUID: '145366' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Fold + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 1.781208 + posY: 1.7189157 + posZ: 3.51206088 + rotX: 359.936066 + rotY: 270.20694 + rotZ: 180.013168 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233311 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2333': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296027643/326876D4B46DF777AA1293989DEEE6A810ED027B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999385819527677/3AD8DFFFBFF54DB098AD3E00BB7E75DA0590FE8B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 3 + GMNotes: '' + GUID: fdc9d7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: All In + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 1.79075325 + posY: 1.71280825 + posZ: 3.4427712 + rotX: 359.933838 + rotY: 269.996033 + rotZ: 180.0284 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233310 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2333': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296027643/326876D4B46DF777AA1293989DEEE6A810ED027B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999385819527677/3AD8DFFFBFF54DB098AD3E00BB7E75DA0590FE8B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 2 + GMNotes: '' + GUID: 7f8d84 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Skin Game + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 1.87904835 + posY: 1.70759308 + posZ: 3.975146 + rotX: 359.935852 + rotY: 270.9892 + rotZ: 180.012314 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233309 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2333': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296027643/326876D4B46DF777AA1293989DEEE6A810ED027B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999385819527677/3AD8DFFFBFF54DB098AD3E00BB7E75DA0590FE8B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 1 + GMNotes: '' + GUID: 1b5f59 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Beginner's Luck + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 1.85719728 + posY: 1.70495379 + posZ: 3.92767143 + rotX: 359.9361 + rotY: 269.98645 + rotZ: 180.013458 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233308 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2333': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296027643/326876D4B46DF777AA1293989DEEE6A810ED027B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999385819527677/3AD8DFFFBFF54DB098AD3E00BB7E75DA0590FE8B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 3 + GMNotes: '' + GUID: 5d9d42 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Chaos in the Clover Club + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 1.56741953 + posY: 1.70734119 + posZ: 4.018306 + rotX: 359.936 + rotY: 270.390747 + rotZ: 180.013092 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233307 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2333': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296027643/326876D4B46DF777AA1293989DEEE6A810ED027B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999385819527677/3AD8DFFFBFF54DB098AD3E00BB7E75DA0590FE8B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 2 + GMNotes: '' + GUID: f53012 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Underground Muscle + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.20578456 + posY: 1.72011387 + posZ: 3.82726765 + rotX: 359.935852 + rotY: 271.0429 + rotZ: 180.012253 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233306 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2333': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296027643/326876D4B46DF777AA1293989DEEE6A810ED027B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999385819527677/3AD8DFFFBFF54DB098AD3E00BB7E75DA0590FE8B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 1 + GMNotes: '' + GUID: 1b5f59 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Clover Club + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 1.91870689 + posY: 1.70328856 + posZ: 3.96436453 + rotX: 359.9361 + rotY: 269.985626 + rotZ: 180.013428 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233500 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2335': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999385819522537/207CCD9C85ECB70A339C09170ABB42E139924AA0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999385819523376/198434B0178F76107193CB52D7FC70E5265E526E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: The House Always Wins + GMNotes: '' + GUID: 70df0b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Scenario + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.145266 + posY: 1.81014061 + posZ: 9.743981 + rotX: 359.920135 + rotY: 269.999939 + rotZ: 0.0168926343 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '2329': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '2333': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296027643/326876D4B46DF777AA1293989DEEE6A810ED027B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999385819527677/3AD8DFFFBFF54DB098AD3E00BB7E75DA0590FE8B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + '2335': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999385819522537/207CCD9C85ECB70A339C09170ABB42E139924AA0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999385819523376/198434B0178F76107193CB52D7FC70E5265E526E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + '2342': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 232809 +- 232809 +- 232808 +- 232808 +- 232907 +- 234206 +- 232805 +- 233519 +- 233518 +- 233517 +- 233516 +- 233515 +- 233514 +- 233513 +- 233512 +- 233312 +- 233311 +- 233310 +- 233309 +- 233308 +- 233307 +- 233306 +- 233500 +Description: '' +GMNotes: '' +GUID: 8cf802 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: The House Always Wins +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -31.6308327 + posY: 3.71671939 + posZ: -3.33459067 + rotX: 359.920135 + rotY: 269.999817 + rotZ: 0.01688467 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Dunwich Legacy 2aed55/Deck The Miskatonic Museum abe5c6.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Dunwich Legacy 2aed55/Deck The Miskatonic Museum abe5c6.yaml new file mode 100644 index 000000000..bfdfaedc9 --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Dunwich Legacy 2aed55/Deck The Miskatonic Museum abe5c6.yaml @@ -0,0 +1,1533 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 232840 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 6f4382 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Slithering Behind You + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.97063684 + posY: 1.54639256 + posZ: -4.39697742 + rotX: 359.920135 + rotY: 269.999878 + rotZ: 0.01687646 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232840 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: fe4557 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Slithering Behind You + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 4.2946353 + posY: 1.70134032 + posZ: -4.40994263 + rotX: 359.920135 + rotY: 269.999878 + rotZ: 0.0168765783 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232839 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: "\tTerror." + GMNotes: '' + GUID: bf889d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ephemeral Exhibits + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.01033258 + posY: 1.54856789 + posZ: -6.29038 + rotX: 359.920135 + rotY: 269.9998 + rotZ: 0.0168782137 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232839 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: "\tTerror." + GMNotes: '' + GUID: cd9bc9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ephemeral Exhibits + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 1.74272823 + posY: 1.70487881 + posZ: -5.95238543 + rotX: 359.920135 + rotY: 269.9998 + rotZ: 0.01687811 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232838 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: "\tPower." + GMNotes: '' + GUID: ee2862 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Passage into the Veil + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 1.23312879 + posY: 1.54997158 + posZ: -5.203305 + rotX: 359.920135 + rotY: 269.9999 + rotZ: 0.0168772787 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232838 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: "\tPower." + GMNotes: '' + GUID: 0e2895 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Passage into the Veil + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.927093 + posY: 1.70653141 + posZ: -5.155619 + rotX: 359.920135 + rotY: 269.9999 + rotZ: 0.0168773253 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232838 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: "\tPower." + GMNotes: '' + GUID: ee2862 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Passage into the Veil + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 1.18818259 + posY: 1.72341263 + posZ: -5.17442274 + rotX: 359.920776 + rotY: 269.9999 + rotZ: 0.0160576869 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232837 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Tactic. + GMNotes: '' + GUID: 2c35c1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: "Stalked in the Dark\t" + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.9444212 + posY: 1.55159914 + posZ: -1.04286885 + rotX: 359.920135 + rotY: 269.999939 + rotZ: 0.016876515 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232837 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Tactic. + GMNotes: '' + GUID: 969c50 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: "Stalked in the Dark\t" + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 1.43638945 + posY: 1.71371841 + posZ: -0.747907937 + rotX: 359.9361 + rotY: 270.0 + rotZ: 0.0135008711 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232836 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: "\tPower." + GMNotes: '' + GUID: de3bd5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Shadow-spawned + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 7.470582 + posY: 1.82199657 + posZ: -0.00675361557 + rotX: 359.9201 + rotY: 270.0 + rotZ: 180.016876 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232835 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Spawned from the Void + GMNotes: '' + GUID: de3bd5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Hunting Horror + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 6.951333 + posY: 1.81293869 + posZ: 0.06049832 + rotX: 359.936066 + rotY: 270.000031 + rotZ: 180.013519 + 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 + UniqueBack: false + Description: Olaus Wormius Translation + GMNotes: '' + GUID: d45f10 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Necronomicon + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 7.48674965 + posY: 1.93568993 + posZ: 0.108080842 + rotX: 359.9408 + rotY: 270.00473 + rotZ: 173.0006 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233733 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2337': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Museum Security + GMNotes: '' + GUID: 40c516 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Adam Lynch + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 7.151673 + posY: 1.79351473 + posZ: 0.3130808 + rotX: 359.9201 + rotY: 270.0 + rotZ: 180.016861 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233732 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2337': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Curator of the Museum + GMNotes: '' + GUID: e88ba8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Harold Walsted + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 7.57037973 + posY: 1.78334713 + posZ: 0.561816 + rotX: 359.9363 + rotY: 270.000061 + rotZ: 180.013519 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233532 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2335': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999385819522537/207CCD9C85ECB70A339C09170ABB42E139924AA0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999385819523376/198434B0178F76107193CB52D7FC70E5265E526E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Miskatonic. Exhibit. + GMNotes: '' + GUID: 0b0c58 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Exhibit Hall + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 6.92613745 + posY: 1.77448523 + posZ: 0.389641225 + rotX: 359.9201 + rotY: 270.000549 + rotZ: 180.016876 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233531 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2335': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999385819522537/207CCD9C85ECB70A339C09170ABB42E139924AA0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999385819523376/198434B0178F76107193CB52D7FC70E5265E526E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Miskatonic. Exhibit. + GMNotes: '' + GUID: f3ffb6 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Exhibit Hall + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 7.71865845 + posY: 1.76374745 + posZ: -0.09597292 + rotX: 359.932739 + rotY: 270.000183 + rotZ: 180.014145 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233530 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2335': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999385819522537/207CCD9C85ECB70A339C09170ABB42E139924AA0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999385819523376/198434B0178F76107193CB52D7FC70E5265E526E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Miskatonic. Exhibit. + GMNotes: '' + GUID: '563240' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Exhibit Hall + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 7.73287439 + posY: 1.75418162 + posZ: 0.46472314 + rotX: 359.920135 + rotY: 270.000153 + rotZ: 180.016846 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233529 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2335': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999385819522537/207CCD9C85ECB70A339C09170ABB42E139924AA0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999385819523376/198434B0178F76107193CB52D7FC70E5265E526E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Miskatonic. Exhibit. + GMNotes: '' + GUID: 63e894 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Exhibit Hall + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 7.02443075 + posY: 1.745418 + posZ: 0.5023837 + rotX: 359.9201 + rotY: 270.000122 + rotZ: 180.016891 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233528 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2335': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999385819522537/207CCD9C85ECB70A339C09170ABB42E139924AA0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999385819523376/198434B0178F76107193CB52D7FC70E5265E526E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Miskatonic. Exhibit. + GMNotes: '' + GUID: e872c5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Exhibit Hall + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 7.136026 + posY: 1.73532581 + posZ: -0.5558108 + rotX: 359.920135 + rotY: 270.000122 + rotZ: 180.0169 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233527 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2335': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999385819522537/207CCD9C85ECB70A339C09170ABB42E139924AA0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999385819523376/198434B0178F76107193CB52D7FC70E5265E526E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Miskatonic. Exhibit. + GMNotes: '' + GUID: 70df0b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Exhibit Hall + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 7.72772932 + posY: 1.72511089 + posZ: 0.352742821 + rotX: 359.936066 + rotY: 270.000061 + rotZ: 180.013428 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233526 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2335': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999385819522537/207CCD9C85ECB70A339C09170ABB42E139924AA0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999385819523376/198434B0178F76107193CB52D7FC70E5265E526E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: "\tMiskatonic." + GMNotes: '' + GUID: c3915f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Administration Office + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 7.46519 + posY: 1.71595407 + posZ: 0.471388519 + rotX: 359.9328 + rotY: 270.000061 + rotZ: 180.0142 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233525 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2335': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999385819522537/207CCD9C85ECB70A339C09170ABB42E139924AA0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999385819523376/198434B0178F76107193CB52D7FC70E5265E526E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: "\tMiskatonic." + GMNotes: '' + GUID: d2eb25 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Administration Office + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 6.737638 + posY: 1.707061 + posZ: 0.247397915 + rotX: 359.920135 + rotY: 270.000031 + rotZ: 180.016846 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233524 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2335': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999385819522537/207CCD9C85ECB70A339C09170ABB42E139924AA0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999385819523376/198434B0178F76107193CB52D7FC70E5265E526E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: "\tMiskatonic." + GMNotes: '' + GUID: 2eb7a1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Security Office + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 6.9557457 + posY: 1.69714892 + posZ: 0.3250357 + rotX: 359.920135 + rotY: 270.000031 + rotZ: 180.016846 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233523 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2335': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999385819522537/207CCD9C85ECB70A339C09170ABB42E139924AA0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999385819523376/198434B0178F76107193CB52D7FC70E5265E526E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: "\tMiskatonic." + GMNotes: '' + GUID: fcb3e4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Security Office + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 7.291905 + posY: 1.68708253 + posZ: 0.364399731 + rotX: 359.920135 + rotY: 270.0 + rotZ: 180.016876 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233522 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2335': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999385819522537/207CCD9C85ECB70A339C09170ABB42E139924AA0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999385819523376/198434B0178F76107193CB52D7FC70E5265E526E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: "\tMiskatonic." + GMNotes: '' + GUID: 70df0b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Museum Halls + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 6.83067036 + posY: 1.67796719 + posZ: 0.5735913 + rotX: 359.936066 + rotY: 269.999969 + rotZ: 180.013443 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233521 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2335': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999385819522537/207CCD9C85ECB70A339C09170ABB42E139924AA0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999385819523376/198434B0178F76107193CB52D7FC70E5265E526E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: "\tMiskatonic." + GMNotes: '' + GUID: 70df0b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Museum Entrance + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 6.7562604 + posY: 1.66850245 + posZ: 0.633031249 + rotX: 359.92 + rotY: 270.0001 + rotZ: 180.0169 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233319 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2333': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296027643/326876D4B46DF777AA1293989DEEE6A810ED027B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999385819527677/3AD8DFFFBFF54DB098AD3E00BB7E75DA0590FE8B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 3 + GMNotes: '' + GUID: aaceb4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Searching for the Tome + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 1.65840125 + posY: 1.72060156 + posZ: 8.695914 + rotX: 359.9361 + rotY: 270.018372 + rotZ: 180.013489 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233318 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2333': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296027643/326876D4B46DF777AA1293989DEEE6A810ED027B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999385819527677/3AD8DFFFBFF54DB098AD3E00BB7E75DA0590FE8B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 2 + GMNotes: '' + GUID: 588bec + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Breaking and Entering + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 1.55857527 + posY: 1.71487415 + posZ: 9.436647 + rotX: 359.939453 + rotY: 269.985474 + rotZ: 180.02951 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233317 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2333': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296027643/326876D4B46DF777AA1293989DEEE6A810ED027B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999385819527677/3AD8DFFFBFF54DB098AD3E00BB7E75DA0590FE8B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 2 + GMNotes: '' + GUID: 726ac2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Night at the Museum + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 1.66234446 + posY: 1.70937169 + posZ: 9.010887 + rotX: 359.936249 + rotY: 269.2551 + rotZ: 180.014343 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233316 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2333': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296027643/326876D4B46DF777AA1293989DEEE6A810ED027B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999385819527677/3AD8DFFFBFF54DB098AD3E00BB7E75DA0590FE8B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 1 + GMNotes: '' + GUID: 1b5f59 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Finding A Way Inside + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 1.78920841 + posY: 1.70649207 + posZ: 8.833784 + rotX: 359.9361 + rotY: 269.985657 + rotZ: 180.013428 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233315 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2333': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296027643/326876D4B46DF777AA1293989DEEE6A810ED027B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999385819527677/3AD8DFFFBFF54DB098AD3E00BB7E75DA0590FE8B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 3 + GMNotes: '' + GUID: 70a774 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: In Every Shadow + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 1.51201844 + posY: 1.70891869 + posZ: 9.11868 + rotX: 359.935852 + rotY: 270.926483 + rotZ: 180.0125 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233314 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2333': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296027643/326876D4B46DF777AA1293989DEEE6A810ED027B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999385819527677/3AD8DFFFBFF54DB098AD3E00BB7E75DA0590FE8B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 2 + GMNotes: '' + GUID: 742cea + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Shadows Deepen + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 1.33916926 + posY: 1.72285509 + posZ: 9.393506 + rotX: 359.936035 + rotY: 270.1721 + rotZ: 180.013245 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233313 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2333': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296027643/326876D4B46DF777AA1293989DEEE6A810ED027B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999385819527677/3AD8DFFFBFF54DB098AD3E00BB7E75DA0590FE8B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 1 + GMNotes: '' + GUID: 1b5f59 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Restricted Access + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 1.89169884 + posY: 1.70506454 + posZ: 9.188026 + rotX: 359.9387 + rotY: 270.509949 + rotZ: 180.025681 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233520 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2335': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999385819522537/207CCD9C85ECB70A339C09170ABB42E139924AA0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999385819523376/198434B0178F76107193CB52D7FC70E5265E526E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: The Miskatonic Museum + GMNotes: '' + GUID: 70df0b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Scenario + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.45531368 + posY: 1.92107725 + posZ: 31.879734 + rotX: 359.920135 + rotY: 269.999939 + rotZ: 0.0169003978 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '2329': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '2333': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296027643/326876D4B46DF777AA1293989DEEE6A810ED027B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999385819527677/3AD8DFFFBFF54DB098AD3E00BB7E75DA0590FE8B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + '2335': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999385819522537/207CCD9C85ECB70A339C09170ABB42E139924AA0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999385819523376/198434B0178F76107193CB52D7FC70E5265E526E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + '2337': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 232840 +- 232840 +- 232839 +- 232839 +- 232838 +- 232838 +- 232838 +- 232837 +- 232837 +- 232836 +- 232835 +- 232934 +- 233733 +- 233732 +- 233532 +- 233531 +- 233530 +- 233529 +- 233528 +- 233527 +- 233526 +- 233525 +- 233524 +- 233523 +- 233522 +- 233521 +- 233319 +- 233318 +- 233317 +- 233316 +- 233315 +- 233314 +- 233313 +- 233520 +Description: '' +GMNotes: '' +GUID: abe5c6 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: The Miskatonic Museum +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -31.5119133 + posY: 3.76334 + posZ: -6.22069359 + rotX: 359.920135 + rotY: 269.999939 + rotZ: 0.0168802273 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Dunwich Legacy 2aed55/Deck Undimensioned and Unseen 88d763.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Dunwich Legacy 2aed55/Deck Undimensioned and Unseen 88d763.yaml new file mode 100644 index 000000000..3aa93ef67 --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Dunwich Legacy 2aed55/Deck Undimensioned and Unseen 88d763.yaml @@ -0,0 +1,1698 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 233005 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: "\tTerror." + GMNotes: '' + GUID: e3fba9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Creatures' Tracks + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.88808823 + posY: 1.55125427 + posZ: 11.7224455 + rotX: 359.920135 + rotY: 269.999878 + rotZ: 0.0168773085 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233005 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: "\tTerror." + GMNotes: '' + GUID: 653ad0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Creatures' Tracks + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.741823 + posY: 1.70781016 + posZ: 11.6423111 + rotX: 359.920135 + rotY: 269.999878 + rotZ: 0.0168773327 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233004 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: e3fba9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Attracting Attention + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.327984 + posY: 1.55243385 + posZ: 13.0768051 + rotX: 359.920135 + rotY: 269.999847 + rotZ: 0.0168775655 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233004 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 174be7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Attracting Attention + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.48922515 + posY: 1.70885026 + posZ: 13.17753 + rotX: 359.920135 + rotY: 269.999817 + rotZ: 0.0168775711 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233003 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: e3fba9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ruin and Destruction + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.362863 + posY: 1.55207872 + posZ: 12.0355148 + rotX: 359.920135 + rotY: 269.999878 + rotZ: 0.016877003 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233003 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: 36006f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ruin and Destruction + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.64314628 + posY: 1.708238 + posZ: 12.0681181 + rotX: 359.920135 + rotY: 269.999878 + rotZ: 0.0168769155 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233003 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: e3fba9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ruin and Destruction + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.64314628 + posY: 1.72549736 + posZ: 12.0681181 + rotX: 359.91983 + rotY: 269.999878 + rotZ: 0.016224321 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233002 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: e3fba9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Towering Beasts + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.09761453 + posY: 1.55223215 + posZ: 11.3007021 + rotX: 359.920135 + rotY: 269.999847 + rotZ: 0.01687738 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233002 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 97a21e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Towering Beasts + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.1789422 + posY: 1.70879066 + posZ: 11.6423969 + rotX: 359.920135 + rotY: 269.999817 + rotZ: 0.01687739 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233002 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: e3fba9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Towering Beasts + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.1789422 + posY: 1.72606051 + posZ: 11.6423969 + rotX: 359.920135 + rotY: 269.999817 + rotZ: 0.0168777984 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233002 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: e3fba9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Towering Beasts + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.1789422 + posY: 1.71238315 + posZ: 11.6423969 + rotX: 359.919922 + rotY: 269.999817 + rotZ: 0.0164486859 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233001 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Abomination. + GMNotes: '' + GUID: 3799cd + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Brood of Yog-Sothoth + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.47539258 + posY: 1.70093882 + posZ: 11.8466311 + rotX: 359.9361 + rotY: 270.0 + rotZ: 180.013474 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233001 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Abomination. + GMNotes: '' + GUID: 092c6d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Brood of Yog-Sothoth + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.46468735 + posY: 1.55469787 + posZ: 11.8255634 + rotX: 359.920135 + rotY: 270.0007 + rotZ: 180.016861 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233001 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Abomination. + GMNotes: '' + GUID: 092c6d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Brood of Yog-Sothoth + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.463244 + posY: 1.72576475 + posZ: 11.9291315 + rotX: 359.920135 + rotY: 269.999573 + rotZ: 0.0168764163 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233001 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Abomination. + GMNotes: '' + GUID: 092c6d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Brood of Yog-Sothoth + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.463244 + posY: 1.712078 + posZ: 11.9291315 + rotX: 359.919769 + rotY: 269.999573 + rotZ: 0.0166066363 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233001 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Abomination. + GMNotes: '' + GUID: 092c6d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Brood of Yog-Sothoth + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.463244 + posY: 1.71007168 + posZ: 11.9291315 + rotX: 359.919769 + rotY: 269.999573 + rotZ: 0.0166141931 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233900 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2339': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 66919a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Esoteric Formula + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.4784317 + posY: 1.55334222 + posZ: 12.1390057 + rotX: 359.920135 + rotY: 269.999939 + rotZ: 0.0168763045 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233900 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2339': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: be5eb9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Esoteric Formula + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.23723555 + posY: 1.71208119 + posZ: 12.1394529 + rotX: 359.9632 + rotY: 270.0 + rotZ: 0.0135011459 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233900 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2339': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 66919a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Esoteric Formula + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.23723555 + posY: 1.72935116 + posZ: 12.1394529 + rotX: 359.9632 + rotY: 270.0 + rotZ: 0.0134939486 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233900 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2339': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 66919a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Esoteric Formula + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.23723555 + posY: 1.715678 + posZ: 12.1394529 + rotX: 359.9632 + rotY: 270.0 + rotZ: 0.0134941982 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233612 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2336': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296074747/742F5083E0E10E3DD22E671C78F35E6143C744FF/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296074238/FB73285A9ED0D784210E50C6EA17EBC25648D800/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Dunwich. + GMNotes: '' + GUID: 7310f8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Devil's Hop Yard + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.90237164 + posY: 1.7652477 + posZ: 20.0517635 + rotX: 359.920135 + rotY: 270.0 + rotZ: 180.016846 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233611 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2336': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296074747/742F5083E0E10E3DD22E671C78F35E6143C744FF/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296074238/FB73285A9ED0D784210E50C6EA17EBC25648D800/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Dunwich. + GMNotes: '' + GUID: f7dd31 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Devil's Hop Yard + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.63629913 + posY: 1.75584877 + posZ: 19.7489166 + rotX: 359.920135 + rotY: 269.999969 + rotZ: 180.016861 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233610 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2336': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296074747/742F5083E0E10E3DD22E671C78F35E6143C744FF/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296074238/FB73285A9ED0D784210E50C6EA17EBC25648D800/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Dunwich. + GMNotes: '' + GUID: b1e332 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Whateley Ruins + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.474598 + posY: 1.74649358 + posZ: 20.1563721 + rotX: 359.9201 + rotY: 270.000031 + rotZ: 180.016876 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233609 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2336': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296074747/742F5083E0E10E3DD22E671C78F35E6143C744FF/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296074238/FB73285A9ED0D784210E50C6EA17EBC25648D800/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Dunwich. + GMNotes: '' + GUID: 42e1b7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Whateley Ruins + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.59453988 + posY: 1.73670244 + posZ: 20.2082882 + rotX: 359.9201 + rotY: 270.000031 + rotZ: 180.016891 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233608 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2336': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296074747/742F5083E0E10E3DD22E671C78F35E6143C744FF/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296074238/FB73285A9ED0D784210E50C6EA17EBC25648D800/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Dunwich. + GMNotes: '' + GUID: 995fe7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Blasted Heath + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.384007 + posY: 1.72723293 + posZ: 19.923605 + rotX: 359.920135 + rotY: 269.999969 + rotZ: 180.016846 + 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: http://cloud-3.steamusercontent.com/ugc/782999241296074747/742F5083E0E10E3DD22E671C78F35E6143C744FF/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296074238/FB73285A9ED0D784210E50C6EA17EBC25648D800/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Dunwich. + GMNotes: '' + GUID: aa50e4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Blasted Heath + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.5783565 + posY: 1.71731651 + posZ: 19.8863678 + rotX: 359.920135 + rotY: 270.000061 + rotZ: 180.016861 + 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: http://cloud-3.steamusercontent.com/ugc/782999241296074747/742F5083E0E10E3DD22E671C78F35E6143C744FF/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296074238/FB73285A9ED0D784210E50C6EA17EBC25648D800/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Dunwich. + GMNotes: '' + GUID: 04861e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ten-Acre Meadow + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.750792 + posY: 1.70743191 + posZ: 19.8546219 + rotX: 359.920135 + rotY: 270.0 + rotZ: 180.016861 + 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: http://cloud-3.steamusercontent.com/ugc/782999241296074747/742F5083E0E10E3DD22E671C78F35E6143C744FF/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296074238/FB73285A9ED0D784210E50C6EA17EBC25648D800/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Dunwich. + GMNotes: '' + GUID: 05b0dd + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ten-Acre Meadow + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.19783878 + posY: 1.69854808 + posZ: 20.1764278 + rotX: 359.920135 + rotY: 270.0 + rotZ: 180.016876 + 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: http://cloud-3.steamusercontent.com/ugc/782999241296074747/742F5083E0E10E3DD22E671C78F35E6143C744FF/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296074238/FB73285A9ED0D784210E50C6EA17EBC25648D800/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Dunwich. + GMNotes: '' + GUID: c50379 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Cold Spring Glen + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.66100073 + posY: 1.68832839 + posZ: 20.2703018 + rotX: 359.920135 + rotY: 269.999939 + rotZ: 180.016876 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233603 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2336': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296074747/742F5083E0E10E3DD22E671C78F35E6143C744FF/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296074238/FB73285A9ED0D784210E50C6EA17EBC25648D800/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Dunwich. + GMNotes: '' + GUID: e58475 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Cold Spring Glen + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.614839 + posY: 1.678687 + posZ: 20.1007919 + rotX: 359.920135 + rotY: 270.0 + rotZ: 180.016876 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233602 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2336': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296074747/742F5083E0E10E3DD22E671C78F35E6143C744FF/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296074238/FB73285A9ED0D784210E50C6EA17EBC25648D800/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Dunwich. + GMNotes: '' + GUID: ac4427 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dunwich Village + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.77163029 + posY: 1.72104561 + posZ: 20.1599159 + rotX: 359.920135 + rotY: 270.0 + rotZ: 180.016861 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233601 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2336': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296074747/742F5083E0E10E3DD22E671C78F35E6143C744FF/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296074238/FB73285A9ED0D784210E50C6EA17EBC25648D800/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Dunwich. + GMNotes: '' + GUID: aa50e4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dunwich Village + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.99018574 + posY: 1.71440756 + posZ: 19.9598083 + rotX: 359.9201 + rotY: 270.000031 + rotZ: 180.016891 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233336 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2333': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296027643/326876D4B46DF777AA1293989DEEE6A810ED027B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999385819527677/3AD8DFFFBFF54DB098AD3E00BB7E75DA0590FE8B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 2 + GMNotes: '' + GUID: ccc8ee + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: They Must Be Destroyed! + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 4.117824 + posY: 1.70912409 + posZ: 19.7644157 + rotX: 359.9359 + rotY: 270.7872 + rotZ: 180.012543 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233335 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2333': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296027643/326876D4B46DF777AA1293989DEEE6A810ED027B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999385819527677/3AD8DFFFBFF54DB098AD3E00BB7E75DA0590FE8B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 1 + GMNotes: '' + GUID: 1b5f59 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Saracenic Script + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 4.173605 + posY: 1.706517 + posZ: 20.2666588 + rotX: 359.935974 + rotY: 270.5099 + rotZ: 180.012939 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233334 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2333': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296027643/326876D4B46DF777AA1293989DEEE6A810ED027B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999385819527677/3AD8DFFFBFF54DB098AD3E00BB7E75DA0590FE8B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 3 + GMNotes: '' + GUID: e27853 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Horrors Unleashed + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.63607883 + posY: 1.71146262 + posZ: 19.6030331 + rotX: 359.93512 + rotY: 270.4477 + rotZ: 180.183472 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233333 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2333': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296027643/326876D4B46DF777AA1293989DEEE6A810ED027B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999385819527677/3AD8DFFFBFF54DB098AD3E00BB7E75DA0590FE8B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 2 + GMNotes: '' + GUID: 9fed4b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Biding Its Time + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.4123776 + posY: 1.72312069 + posZ: 20.072361 + rotX: 359.935974 + rotY: 270.390778 + rotZ: 180.012985 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233332 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2333': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296027643/326876D4B46DF777AA1293989DEEE6A810ED027B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999385819527677/3AD8DFFFBFF54DB098AD3E00BB7E75DA0590FE8B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 1 + GMNotes: '' + GUID: 1b5f59 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Rampaging Creatures + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.78262568 + posY: 1.705699 + posZ: 20.3367672 + rotX: 359.934235 + rotY: 270.1143 + rotZ: 180.027939 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233600 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2336': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296074747/742F5083E0E10E3DD22E671C78F35E6143C744FF/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296074238/FB73285A9ED0D784210E50C6EA17EBC25648D800/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Undimensioned and Unseen + GMNotes: '' + GUID: aa50e4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Scenario + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.79121351 + posY: 2.16030979 + posZ: 20.0809 + rotX: 359.920319 + rotY: 269.9978 + rotZ: 348.948669 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '2333': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296027643/326876D4B46DF777AA1293989DEEE6A810ED027B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999385819527677/3AD8DFFFBFF54DB098AD3E00BB7E75DA0590FE8B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + '2336': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296074747/742F5083E0E10E3DD22E671C78F35E6143C744FF/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296074238/FB73285A9ED0D784210E50C6EA17EBC25648D800/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + '2339': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 233005 +- 233005 +- 233004 +- 233004 +- 233003 +- 233003 +- 233003 +- 233002 +- 233002 +- 233002 +- 233002 +- 233001 +- 233001 +- 233001 +- 233001 +- 233001 +- 233900 +- 233900 +- 233900 +- 233900 +- 233612 +- 233611 +- 233610 +- 233609 +- 233608 +- 233607 +- 233606 +- 233605 +- 233604 +- 233603 +- 233602 +- 233601 +- 233336 +- 233335 +- 233334 +- 233333 +- 233332 +- 233600 +Description: '' +GMNotes: '' +GUID: 88d763 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Undimensioned and Unseen +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -35.4014778 + posY: 3.786937 + posZ: -3.32900786 + rotX: 359.920135 + rotY: 270.002563 + rotZ: 0.01687854 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Dunwich Legacy 2aed55/Deck Where Doom Awaits 1c638c.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Dunwich Legacy 2aed55/Deck Where Doom Awaits 1c638c.yaml new file mode 100644 index 000000000..9b3e432f4 --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Dunwich Legacy 2aed55/Deck Where Doom Awaits 1c638c.yaml @@ -0,0 +1,1433 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 233011 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: "\tHex. Hazard." + GMNotes: '' + GUID: b3e2e4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Vortex of Time + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.61408854 + posY: 1.55063963 + posZ: 3.60348773 + rotX: 359.920135 + rotY: 269.999756 + rotZ: 0.016877573 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233011 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: "\tHex. Hazard." + GMNotes: '' + GUID: 2b6ae2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Vortex of Time + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.61183763 + posY: 1.70675254 + posZ: 3.11805844 + rotX: 359.920135 + rotY: 269.999756 + rotZ: 0.0168777537 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233011 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: "\tHex. Hazard." + GMNotes: '' + GUID: b3e2e4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Vortex of Time + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.706807 + posY: 1.72394443 + posZ: 3.33633471 + rotX: 359.920441 + rotY: 269.999756 + rotZ: 0.0165251251 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233010 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: "\tHex. Hazard." + GMNotes: '' + GUID: e3fba9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Spaces Between + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.347013 + posY: 1.55179513 + posZ: 6.26302242 + rotX: 359.920135 + rotY: 269.999756 + rotZ: 0.0168774389 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233010 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: "\tHex. Hazard." + GMNotes: '' + GUID: 52824c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Spaces Between + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.271914 + posY: 1.70847929 + posZ: 6.58807135 + rotX: 359.920135 + rotY: 269.999756 + rotZ: 0.016877519 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233010 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: "\tHex. Hazard." + GMNotes: '' + GUID: e3fba9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Spaces Between + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.33510113 + posY: 1.850574 + posZ: 11.0064564 + rotX: 359.936066 + rotY: 270.0 + rotZ: 180.005859 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233009 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: "\tHex." + GMNotes: '' + GUID: e3fba9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Rites Howled + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 4.53535938 + posY: 1.5488261 + posZ: 6.54055071 + rotX: 359.920135 + rotY: 269.999817 + rotZ: 0.016878156 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233009 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: "\tHex." + GMNotes: '' + GUID: 4ec8cc + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Rites Howled + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 4.25622129 + posY: 1.705148 + posZ: 6.68588257 + rotX: 359.920135 + rotY: 269.999817 + rotZ: 0.0168782175 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233009 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: "\tHex." + GMNotes: '' + GUID: e3fba9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Rites Howled + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 4.262464 + posY: 1.72240973 + posZ: 6.686818 + rotX: 359.920135 + rotY: 269.999817 + rotZ: 0.0168776587 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233008 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Shoggoth. + GMNotes: '' + GUID: e3fba9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Crazed Shoggoth + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.33122134 + posY: 1.81162786 + posZ: 10.9882507 + rotX: 359.9361 + rotY: 270.000031 + rotZ: 180.013489 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233007 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Sorcerer. + GMNotes: '' + GUID: e3fba9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Devotee of the Key + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 1.68052936 + posY: 1.55288851 + posZ: 6.82079935 + rotX: 359.920135 + rotY: 269.999817 + rotZ: 0.01687835 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233007 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Sorcerer. + GMNotes: '' + GUID: 0f3d39 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Devotee of the Key + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 1.20080113 + posY: 1.71036971 + posZ: 7.1936903 + rotX: 359.920135 + rotY: 269.999817 + rotZ: 0.0168783423 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233006 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Sorcerer of Dunwich + GMNotes: '' + GUID: e3fba9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Seth Bishop + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.447299 + posY: 1.78794038 + posZ: 11.3021994 + rotX: 359.973572 + rotY: 270.0 + rotZ: 180.311081 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233624 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2336': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296074747/742F5083E0E10E3DD22E671C78F35E6143C744FF/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296074238/FB73285A9ED0D784210E50C6EA17EBC25648D800/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Dunwich. Woods. Altered. + GMNotes: '' + GUID: becc3c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Altered Path + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.38507366 + posY: 1.7731092 + posZ: 11.5334282 + rotX: 359.920135 + rotY: 270.000031 + rotZ: 180.016861 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233623 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2336': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296074747/742F5083E0E10E3DD22E671C78F35E6143C744FF/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296074238/FB73285A9ED0D784210E50C6EA17EBC25648D800/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Dunwich. Woods. Altered. + GMNotes: '' + GUID: 66af3c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Altered Path + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.1299665 + posY: 1.76383233 + posZ: 11.74089 + rotX: 359.920135 + rotY: 270.000031 + rotZ: 180.016846 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233622 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2336': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296074747/742F5083E0E10E3DD22E671C78F35E6143C744FF/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296074238/FB73285A9ED0D784210E50C6EA17EBC25648D800/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Dunwich. Woods. Altered. + GMNotes: '' + GUID: aa50e4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Altered Path + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 4.323068 + posY: 1.75270808 + posZ: 11.919858 + rotX: 359.920135 + rotY: 270.000061 + rotZ: 180.016846 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233621 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2336': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296074747/742F5083E0E10E3DD22E671C78F35E6143C744FF/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296074238/FB73285A9ED0D784210E50C6EA17EBC25648D800/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Dunwich. Woods. Altered. + GMNotes: '' + GUID: 8d2043 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Altered Path + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.69635415 + posY: 1.74369454 + posZ: 11.393157 + rotX: 359.920135 + rotY: 270.0 + rotZ: 180.016876 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233620 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2336': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296074747/742F5083E0E10E3DD22E671C78F35E6143C744FF/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296074238/FB73285A9ED0D784210E50C6EA17EBC25648D800/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: "Dunwich. Woods.\t" + GMNotes: '' + GUID: 49a3cd + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Diverging Path + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.470251 + posY: 1.73434937 + posZ: 11.5517445 + rotX: 359.9361 + rotY: 270.000061 + rotZ: 180.013428 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233619 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2336': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296074747/742F5083E0E10E3DD22E671C78F35E6143C744FF/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296074238/FB73285A9ED0D784210E50C6EA17EBC25648D800/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: "Dunwich. Woods.\t" + GMNotes: '' + GUID: 7239aa + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Diverging Path + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.67323947 + posY: 1.7246989 + posZ: 11.9276953 + rotX: 359.920135 + rotY: 270.000061 + rotZ: 180.016846 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233618 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2336': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296074747/742F5083E0E10E3DD22E671C78F35E6143C744FF/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296074238/FB73285A9ED0D784210E50C6EA17EBC25648D800/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: "Dunwich. Woods.\t" + GMNotes: '' + GUID: d05756 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Diverging Path + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.733524 + posY: 1.71472347 + posZ: 11.6074648 + rotX: 359.920135 + rotY: 270.0 + rotZ: 180.016861 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233617 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2336': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296074747/742F5083E0E10E3DD22E671C78F35E6143C744FF/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296074238/FB73285A9ED0D784210E50C6EA17EBC25648D800/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: "Dunwich. Woods.\t" + GMNotes: '' + GUID: aa50e4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Diverging Path + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 8.763698 + posY: 1.69949424 + posZ: 16.50268 + rotX: 359.9201 + rotY: 270.000031 + rotZ: 180.016891 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233616 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2336': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296074747/742F5083E0E10E3DD22E671C78F35E6143C744FF/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296074238/FB73285A9ED0D784210E50C6EA17EBC25648D800/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: "\tDunwich. Sentinel Hill." + GMNotes: '' + GUID: d5b919 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Sentinel Peak + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 9.056783 + posY: 1.68947172 + posZ: 16.5690346 + rotX: 359.920135 + rotY: 269.999939 + rotZ: 180.017059 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233615 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2336': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296074747/742F5083E0E10E3DD22E671C78F35E6143C744FF/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296074238/FB73285A9ED0D784210E50C6EA17EBC25648D800/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: "\tDunwich. Sentinel Hill." + GMNotes: '' + GUID: d3ae26 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ascending Path + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 7.67092848 + posY: 1.78595018 + posZ: 15.7359076 + rotX: 359.920319 + rotY: 269.9792 + rotZ: 174.489151 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233614 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2336': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296074747/742F5083E0E10E3DD22E671C78F35E6143C744FF/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296074238/FB73285A9ED0D784210E50C6EA17EBC25648D800/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: "\tDunwich. Sentinel Hill." + GMNotes: '' + GUID: aa50e4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Base of the Hill + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 7.99481535 + posY: 1.67150927 + posZ: 16.43124 + rotX: 359.932037 + rotY: 269.999939 + rotZ: 180.014374 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233343 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2333': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296027643/326876D4B46DF777AA1293989DEEE6A810ED027B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999385819527677/3AD8DFFFBFF54DB098AD3E00BB7E75DA0590FE8B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 3 + GMNotes: '' + GUID: 881e29 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Gate Opens + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 6.955341 + posY: 1.71665788 + posZ: 20.3625641 + rotX: 359.9359 + rotY: 270.787231 + rotZ: 180.012543 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233342 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2333': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296027643/326876D4B46DF777AA1293989DEEE6A810ED027B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999385819527677/3AD8DFFFBFF54DB098AD3E00BB7E75DA0590FE8B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 2 + GMNotes: '' + GUID: 905f01 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ascending the Hill (v. III) + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 7.723566 + posY: 1.70927441 + posZ: 20.38843 + rotX: 359.936066 + rotY: 270.018372 + rotZ: 180.013428 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233341 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2333': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296027643/326876D4B46DF777AA1293989DEEE6A810ED027B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999385819527677/3AD8DFFFBFF54DB098AD3E00BB7E75DA0590FE8B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 2 + GMNotes: '' + GUID: 65d096 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ascending the Hill (v. II) + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 6.932425 + posY: 1.70553279 + posZ: 20.98446 + rotX: 359.935852 + rotY: 270.989227 + rotZ: 180.01239 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233340 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2333': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296027643/326876D4B46DF777AA1293989DEEE6A810ED027B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999385819527677/3AD8DFFFBFF54DB098AD3E00BB7E75DA0590FE8B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 2 + GMNotes: '' + GUID: 950fcf + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ascending the Hill (v. I) + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 7.16629744 + posY: 1.70266008 + posZ: 20.2926331 + rotX: 359.9393 + rotY: 270.7152 + rotZ: 180.028687 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233339 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2333': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296027643/326876D4B46DF777AA1293989DEEE6A810ED027B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999385819527677/3AD8DFFFBFF54DB098AD3E00BB7E75DA0590FE8B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: 'Act ' + GMNotes: '' + GUID: 1b5f59 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Path to the Hill + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 7.101576 + posY: 1.70463014 + posZ: 20.92343 + rotX: 359.935852 + rotY: 271.042816 + rotZ: 180.01236 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233338 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2333': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296027643/326876D4B46DF777AA1293989DEEE6A810ED027B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999385819527677/3AD8DFFFBFF54DB098AD3E00BB7E75DA0590FE8B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 2 + GMNotes: '' + GUID: a5d928 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Beckoning for Power + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 6.711959 + posY: 1.71859694 + posZ: 20.1481075 + rotX: 359.936249 + rotY: 269.265381 + rotZ: 180.014313 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233337 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2333': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296027643/326876D4B46DF777AA1293989DEEE6A810ED027B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999385819527677/3AD8DFFFBFF54DB098AD3E00BB7E75DA0590FE8B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 1 + GMNotes: '' + GUID: 1b5f59 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Calling Forth the Old Ones + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 6.92043161 + posY: 1.70116925 + posZ: 20.4543457 + rotX: 359.936 + rotY: 270.337952 + rotZ: 180.013046 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233613 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2336': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296074747/742F5083E0E10E3DD22E671C78F35E6143C744FF/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296074238/FB73285A9ED0D784210E50C6EA17EBC25648D800/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Where Doom Awaits + GMNotes: '' + GUID: aa50e4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Scenario + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.19354773 + posY: 1.89639211 + posZ: 11.8722582 + rotX: 359.920135 + rotY: 269.999878 + rotZ: 0.0168998986 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '2333': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296027643/326876D4B46DF777AA1293989DEEE6A810ED027B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999385819527677/3AD8DFFFBFF54DB098AD3E00BB7E75DA0590FE8B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + '2336': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296074747/742F5083E0E10E3DD22E671C78F35E6143C744FF/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296074238/FB73285A9ED0D784210E50C6EA17EBC25648D800/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 233011 +- 233011 +- 233011 +- 233010 +- 233010 +- 233010 +- 233009 +- 233009 +- 233009 +- 233008 +- 233007 +- 233007 +- 233006 +- 233624 +- 233623 +- 233622 +- 233621 +- 233620 +- 233619 +- 233618 +- 233617 +- 233616 +- 233615 +- 233614 +- 233343 +- 233342 +- 233341 +- 233340 +- 233339 +- 233338 +- 233337 +- 233613 +Description: '' +GMNotes: '' +GUID: 1c638c +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Where Doom Awaits +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -35.38975 + posY: 3.76009679 + posZ: -6.18038559 + rotX: 359.920135 + rotY: 269.999573 + rotZ: 0.0168850739 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Dunwich Legacy 2aed55/Deck Whippoorwills e3473c.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Dunwich Legacy 2aed55/Deck Whippoorwills e3473c.yaml new file mode 100644 index 000000000..dac530b63 --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Dunwich Legacy 2aed55/Deck Whippoorwills e3473c.yaml @@ -0,0 +1,258 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 232818 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: 60ef9e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Eager for Death + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.646352 + posY: 1.548182 + posZ: 0.144670352 + rotX: 359.920135 + rotY: 269.999939 + rotZ: 0.0168772917 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232818 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: 40e9d0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Eager for Death + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.37573743 + posY: 1.7043395 + posZ: 0.209344044 + rotX: 359.920135 + rotY: 269.999939 + rotZ: 0.0168772619 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232817 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: "\tCreature." + GMNotes: '' + GUID: de3bd5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Whippoorwill + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.19784832 + posY: 1.54999852 + posZ: 4.190304 + rotX: 359.920135 + rotY: 269.9999 + rotZ: 0.0168776866 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232817 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: "\tCreature." + GMNotes: '' + GUID: 61c583 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Whippoorwill + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.24814034 + posY: 1.70613587 + posZ: 4.471411 + rotX: 359.920135 + rotY: 269.9999 + rotZ: 0.0168776922 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232817 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: "\tCreature." + GMNotes: '' + GUID: de3bd5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Whippoorwill + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.24814034 + posY: 1.72339261 + posZ: 4.471411 + rotX: 359.920441 + rotY: 269.9999 + rotZ: 0.0163779482 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 232818 +- 232818 +- 232817 +- 232817 +- 232817 +Description: '' +GMNotes: '' +GUID: e3473c +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Whippoorwills +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -20.0666447 + posY: 3.65059376 + posZ: -10.6505537 + rotX: 359.920135 + rotY: 269.999756 + rotZ: 0.0168777071 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' 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 new file mode 100644 index 000000000..ae229397a --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Forgotten Age 9dc850.yaml @@ -0,0 +1,57 @@ +Autoraise: true +ColorDiffuse: + b: 0.0 + g: 0.366520882 + r: 0.7058823 +ContainedObjects: +- !include 'Bag The Forgotten Age 9dc850/Deck Yig''s Venom 56b495.yaml' +- !include 'Bag The Forgotten Age 9dc850/Deck Temporal Flux aa9a85.yaml' +- !include 'Bag The Forgotten Age 9dc850/Deck Serpents 40c51c.yaml' +- !include 'Bag The Forgotten Age 9dc850/Deck Rainforest 81cf68.yaml' +- !include 'Bag The Forgotten Age 9dc850/Deck Poison 995c5f.yaml' +- !include 'Bag The Forgotten Age 9dc850/Deck Pnakotic Brotherhood 4845b8.yaml' +- !include 'Bag The Forgotten Age 9dc850/Deck Guardians of Time 69dfe0.yaml' +- !include 'Bag The Forgotten Age 9dc850/Deck Forgotten Ruins 42af0f.yaml' +- !include 'Bag The Forgotten Age 9dc850/Deck Expedition f4650a.yaml' +- !include 'Bag The Forgotten Age 9dc850/Deck Deadly Traps 0eb930.yaml' +- !include 'Bag The Forgotten Age 9dc850/Deck Agents of Yig 1c4590.yaml' +- !include 'Bag The Forgotten Age 9dc850/Deck Turn Back Time 32a2f0.yaml' +- !include 'Bag The Forgotten Age 9dc850/Deck Shattered Aeons e13f1b.yaml' +- !include 'Bag The Forgotten Age 9dc850/Bag The Depths of Yoth 7f0a6d.yaml' +- !include 'Bag The Forgotten Age 9dc850/Deck The City of Archives 3a0a17.yaml' +- !include 'Bag The Forgotten Age 9dc850/Deck K''n-yan 3ac2d8.yaml' +- !include 'Bag The Forgotten Age 9dc850/Deck Pillars of Judgement 050bae.yaml' +- !include 'Bag The Forgotten Age 9dc850/Deck Heart of the Elders 5b2663.yaml' +- !include 'Bag The Forgotten Age 9dc850/Deck The Boundary Beyond 33800f.yaml' +- !include 'Bag The Forgotten Age 9dc850/Deck Threads of Fate 5419e6.yaml' +- !include 'Bag The Forgotten Age 9dc850/Deck The Doom of Eztli 383c89.yaml' +- !include 'Bag The Forgotten Age 9dc850/Deck The Untamed Wilds c1a740.yaml' +Description: '' +GMNotes: '' +GUID: 9dc850 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +MeshIndex: -1 +Name: Bag +Nickname: The Forgotten Age +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -45.7593727 + posY: 1.786947 + posZ: -107.763763 + rotX: 0.0028782615 + rotY: 314.999451 + rotZ: 0.0265743341 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Forgotten Age 9dc850/Bag The Depths of Yoth 7f0a6d.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Forgotten Age 9dc850/Bag The Depths of Yoth 7f0a6d.yaml new file mode 100644 index 000000000..d75a755b5 --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Forgotten Age 9dc850/Bag The Depths of Yoth 7f0a6d.yaml @@ -0,0 +1,38 @@ +Autoraise: true +ColorDiffuse: + b: 0.0 + g: 0.366520882 + r: 0.7058823 +ContainedObjects: +- !include 'Bag The Depths of Yoth 7f0a6d/Deck The Depths of Yoth 3bf251.yaml' +- !include 'Bag The Depths of Yoth 7f0a6d/Custom_Token Scenario - HardExpert 2da146.yaml' +- !include 'Bag The Depths of Yoth 7f0a6d/Custom_Token Scenario - EasyStandard dd61f1.yaml' +Description: '' +GMNotes: '' +GUID: 7f0a6d +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +MeshIndex: -1 +Name: Bag +Nickname: The Depths of Yoth +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 87.46236 + posY: 3.1820612 + posZ: 4.56021738 + rotX: 357.8409 + rotY: 0.0140423421 + rotZ: 0.6489065 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Forgotten Age 9dc850/Bag The Depths of Yoth 7f0a6d/Custom_Token Scenario - EasyStandard dd61f1.ttslua b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Forgotten Age 9dc850/Bag The Depths of Yoth 7f0a6d/Custom_Token Scenario - EasyStandard dd61f1.ttslua new file mode 100644 index 000000000..1c555f04c --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Forgotten Age 9dc850/Bag The Depths of Yoth 7f0a6d/Custom_Token Scenario - EasyStandard dd61f1.ttslua @@ -0,0 +1,132 @@ +MIN_VALUE = -99 +MAX_VALUE = 999 + +function onload(saved_data) + light_mode = false + val = 0 + + if saved_data ~= "" then + local loaded_data = JSON.decode(saved_data) + light_mode = loaded_data[1] + val = loaded_data[2] + end + + createAll() +end + +function updateSave() + local data_to_save = {light_mode, val} + saved_data = JSON.encode(data_to_save) + self.script_state = saved_data +end + +function createAll() + s_color = {0.5, 0.5, 0.5, 95} + + if light_mode then + f_color = {0,0,0,98} + else + f_color = {0,0,0,100} + end + + + + self.createButton({ + label=tostring(val), + click_function="add_subtract", + function_owner=self, + position={0,0.05,1.45}, + height=600, + width=1000, + alignment = 3, + scale={x=1, y=1, z=1}, + font_size=350, + font_color=f_color, + color={0,0,0,0} + }) + + + + + if light_mode then + lightButtonText = "[ Set dark ]" + else + lightButtonText = "[ Set light ]" + end + +end + +function removeAll() + self.removeInput(0) + self.removeInput(1) + self.removeButton(0) + self.removeButton(1) + self.removeButton(2) +end + +function reloadAll() + removeAll() + createAll() + + updateSave() +end + +function swap_fcolor(_obj, _color, alt_click) + light_mode = not light_mode + reloadAll() +end + +function swap_align(_obj, _color, alt_click) + center_mode = not center_mode + reloadAll() +end + +function editName(_obj, _string, value) + self.setName(value) + setTooltips() +end + +function add_subtract(_obj, _color, alt_click) + mod = alt_click and -1 or 1 + new_value = math.min(math.max(val + mod, MIN_VALUE), MAX_VALUE) + if val ~= new_value then + val = new_value + updateVal() + updateSave() + end +end + +function updateVal() + + self.editButton({ + index = 0, + label = tostring(val), + + }) +end + +function reset_val() + val = 0 + updateVal() + updateSave() +end + +function setTooltips() + self.editInput({ + index = 0, + value = self.getName(), + tooltip = ttText + }) + self.editButton({ + index = 0, + value = tostring(val), + tooltip = ttText + }) +end + +function null() +end + +function keepSample(_obj, _string, value) + reloadAll() +end \ No newline at end of file diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Forgotten Age 9dc850/Bag The Depths of Yoth 7f0a6d/Custom_Token Scenario - EasyStandard dd61f1.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Forgotten Age 9dc850/Bag The Depths of Yoth 7f0a6d/Custom_Token Scenario - EasyStandard dd61f1.yaml new file mode 100644 index 000000000..83d43773b --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Forgotten Age 9dc850/Bag The Depths of Yoth 7f0a6d/Custom_Token Scenario - EasyStandard dd61f1.yaml @@ -0,0 +1,43 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +CustomImage: + CustomToken: + MergeDistancePixels: 5.0 + Stackable: false + Thickness: 0.1 + ImageScalar: 1.0 + ImageSecondaryURL: '' + ImageURL: https://i.imgur.com/3d7nLz2.jpg + WidthScale: 0.0 +Description: 'Left click - Increase + + Right click - Decrease' +GMNotes: '' +GUID: dd61f1 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Token Scenario - EasyStandard dd61f1.ttslua' +LuaScriptState: '[true,0]' +Name: Custom_Token +Nickname: Scenario - Easy/Standard +Snap: true +Sticky: true +Tooltip: false +Transform: + posX: 83.80143 + posY: 3.4234724 + posZ: -2.0515542 + rotX: 359.481018 + rotY: 269.913239 + rotZ: 3.66739416 + scaleX: 0.7 + scaleY: 1.0 + scaleZ: 0.7 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Forgotten Age 9dc850/Bag The Depths of Yoth 7f0a6d/Custom_Token Scenario - HardExpert 2da146.ttslua b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Forgotten Age 9dc850/Bag The Depths of Yoth 7f0a6d/Custom_Token Scenario - HardExpert 2da146.ttslua new file mode 100644 index 000000000..1c555f04c --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Forgotten Age 9dc850/Bag The Depths of Yoth 7f0a6d/Custom_Token Scenario - HardExpert 2da146.ttslua @@ -0,0 +1,132 @@ +MIN_VALUE = -99 +MAX_VALUE = 999 + +function onload(saved_data) + light_mode = false + val = 0 + + if saved_data ~= "" then + local loaded_data = JSON.decode(saved_data) + light_mode = loaded_data[1] + val = loaded_data[2] + end + + createAll() +end + +function updateSave() + local data_to_save = {light_mode, val} + saved_data = JSON.encode(data_to_save) + self.script_state = saved_data +end + +function createAll() + s_color = {0.5, 0.5, 0.5, 95} + + if light_mode then + f_color = {0,0,0,98} + else + f_color = {0,0,0,100} + end + + + + self.createButton({ + label=tostring(val), + click_function="add_subtract", + function_owner=self, + position={0,0.05,1.45}, + height=600, + width=1000, + alignment = 3, + scale={x=1, y=1, z=1}, + font_size=350, + font_color=f_color, + color={0,0,0,0} + }) + + + + + if light_mode then + lightButtonText = "[ Set dark ]" + else + lightButtonText = "[ Set light ]" + end + +end + +function removeAll() + self.removeInput(0) + self.removeInput(1) + self.removeButton(0) + self.removeButton(1) + self.removeButton(2) +end + +function reloadAll() + removeAll() + createAll() + + updateSave() +end + +function swap_fcolor(_obj, _color, alt_click) + light_mode = not light_mode + reloadAll() +end + +function swap_align(_obj, _color, alt_click) + center_mode = not center_mode + reloadAll() +end + +function editName(_obj, _string, value) + self.setName(value) + setTooltips() +end + +function add_subtract(_obj, _color, alt_click) + mod = alt_click and -1 or 1 + new_value = math.min(math.max(val + mod, MIN_VALUE), MAX_VALUE) + if val ~= new_value then + val = new_value + updateVal() + updateSave() + end +end + +function updateVal() + + self.editButton({ + index = 0, + label = tostring(val), + + }) +end + +function reset_val() + val = 0 + updateVal() + updateSave() +end + +function setTooltips() + self.editInput({ + index = 0, + value = self.getName(), + tooltip = ttText + }) + self.editButton({ + index = 0, + value = tostring(val), + tooltip = ttText + }) +end + +function null() +end + +function keepSample(_obj, _string, value) + reloadAll() +end \ No newline at end of file diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Forgotten Age 9dc850/Bag The Depths of Yoth 7f0a6d/Custom_Token Scenario - HardExpert 2da146.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Forgotten Age 9dc850/Bag The Depths of Yoth 7f0a6d/Custom_Token Scenario - HardExpert 2da146.yaml new file mode 100644 index 000000000..778d18780 --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Forgotten Age 9dc850/Bag The Depths of Yoth 7f0a6d/Custom_Token Scenario - HardExpert 2da146.yaml @@ -0,0 +1,43 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +CustomImage: + CustomToken: + MergeDistancePixels: 5.0 + Stackable: false + Thickness: 0.1 + ImageScalar: 1.0 + ImageSecondaryURL: '' + ImageURL: https://i.imgur.com/Wpl1xb9.jpg + WidthScale: 0.0 +Description: 'Left click - Increase + + Right click - Decrease' +GMNotes: '' +GUID: 2da146 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Token Scenario - HardExpert 2da146.ttslua' +LuaScriptState: '[true,0]' +Name: Custom_Token +Nickname: Scenario - Hard/Expert +Snap: true +Sticky: true +Tooltip: false +Transform: + posX: 84.23954 + posY: 3.4084866 + posZ: -2.18892264 + rotX: 358.620941 + rotY: 269.9464 + rotZ: 3.12580442 + scaleX: 0.7 + scaleY: 1.0 + scaleZ: 0.7 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Forgotten Age 9dc850/Bag The Depths of Yoth 7f0a6d/Deck The Depths of Yoth 3bf251.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Forgotten Age 9dc850/Bag The Depths of Yoth 7f0a6d/Deck The Depths of Yoth 3bf251.yaml new file mode 100644 index 000000000..2d0f69861 --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Forgotten Age 9dc850/Bag The Depths of Yoth 7f0a6d/Deck The Depths of Yoth 3bf251.yaml @@ -0,0 +1,1548 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 12738 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/VfZuXd1.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/943959879361281633/780B963F4F774A497E33388A89027A83EF0AD8E3/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Item. Relic. + GMNotes: '' + GUID: d1206b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Relic of Ages + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 98.30363 + posY: 1.77987182 + posZ: -0.242779925 + rotX: -0.000223521944 + rotY: 269.945465 + rotZ: 179.887115 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12737 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/VfZuXd1.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/943959879361281633/780B963F4F774A497E33388A89027A83EF0AD8E3/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Scheme. + GMNotes: '' + GUID: '766633' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Serpent's Ire + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 97.92021 + posY: 1.77026141 + posZ: -0.711043358 + rotX: 359.9859 + rotY: 269.998169 + rotZ: 179.989151 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12737 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/VfZuXd1.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/943959879361281633/780B963F4F774A497E33388A89027A83EF0AD8E3/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Scheme. + GMNotes: '' + GUID: be7bde + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Serpent's Ire + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 97.8892 + posY: 1.7608546 + posZ: -0.7130508 + rotX: 359.974152 + rotY: 270.027466 + rotZ: 179.96283 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12736 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/VfZuXd1.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/943959879361281633/780B963F4F774A497E33388A89027A83EF0AD8E3/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Terror. + GMNotes: '' + GUID: 5d4479 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Bathophobia + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 92.94317 + posY: 1.49751234 + posZ: -14.790616 + rotX: 359.9875 + rotY: 270.001465 + rotZ: 184.371048 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12736 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/VfZuXd1.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/943959879361281633/780B963F4F774A497E33388A89027A83EF0AD8E3/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Terror. + GMNotes: '' + GUID: b4f8c3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Bathophobia + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 92.22205 + posY: 1.41509891 + posZ: -12.8698978 + rotX: 359.987976 + rotY: 270.007172 + rotZ: 179.976135 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12736 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/VfZuXd1.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/943959879361281633/780B963F4F774A497E33388A89027A83EF0AD8E3/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Terror. + GMNotes: '' + GUID: e75e4c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Bathophobia + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 92.943634 + posY: 1.413917 + posZ: -9.058213 + rotX: 359.987427 + rotY: 269.998016 + rotZ: 179.984543 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12735 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/VfZuXd1.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/943959879361281633/780B963F4F774A497E33388A89027A83EF0AD8E3/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Terror. + GMNotes: '' + GUID: 082086 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Lightless Shadow + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 97.92784 + posY: 1.72185075 + posZ: 0.11526525 + rotX: 359.992737 + rotY: 269.997437 + rotZ: 179.989182 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12735 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/VfZuXd1.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/943959879361281633/780B963F4F774A497E33388A89027A83EF0AD8E3/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Terror. + GMNotes: '' + GUID: 919da4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Lightless Shadow + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 97.77542 + posY: 1.7125591 + posZ: -0.4065979 + rotX: 359.967926 + rotY: 270.029 + rotZ: 179.974945 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12735 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/VfZuXd1.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/943959879361281633/780B963F4F774A497E33388A89027A83EF0AD8E3/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Terror. + GMNotes: '' + GUID: 646c0e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Lightless Shadow + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 97.82764 + posY: 1.70266747 + posZ: -0.286560833 + rotX: 359.989716 + rotY: 270.0064 + rotZ: 179.976822 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12734 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/VfZuXd1.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/943959879361281633/780B963F4F774A497E33388A89027A83EF0AD8E3/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Scheme. + GMNotes: '' + GUID: a1b639 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Children of Valusia + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 97.5065842 + posY: 1.69322944 + posZ: -0.335975379 + rotX: 359.975037 + rotY: 270.01297 + rotZ: 179.983658 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12734 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/VfZuXd1.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/943959879361281633/780B963F4F774A497E33388A89027A83EF0AD8E3/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Scheme. + GMNotes: '' + GUID: 0e4387 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Children of Valusia + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 97.69844 + posY: 1.68350744 + posZ: -0.53620404 + rotX: 359.980957 + rotY: 270.017883 + rotZ: 179.971161 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12734 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/VfZuXd1.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/943959879361281633/780B963F4F774A497E33388A89027A83EF0AD8E3/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Scheme. + GMNotes: '' + GUID: ae8867 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Children of Valusia + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 98.0337448 + posY: 1.67361915 + posZ: -0.359651119 + rotX: 0.0009573262 + rotY: 269.978271 + rotZ: 179.990463 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12733 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/VfZuXd1.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/943959879361281633/780B963F4F774A497E33388A89027A83EF0AD8E3/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Monster. + GMNotes: '' + GUID: bd44d1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Eater of the Depths + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 98.14551 + posY: 1.66398275 + posZ: -0.3126468 + rotX: 359.983551 + rotY: 269.997131 + rotZ: 179.961166 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12732 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/VfZuXd1.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/943959879361281633/780B963F4F774A497E33388A89027A83EF0AD8E3/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Humanoid. Monster. Serpent. + GMNotes: '' + GUID: 50b857 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Pit Warden + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 97.73028 + posY: 1.6545192 + posZ: -0.413704872 + rotX: 359.9791 + rotY: 270.0312 + rotZ: 179.960464 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12732 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/VfZuXd1.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/943959879361281633/780B963F4F774A497E33388A89027A83EF0AD8E3/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Humanoid. Monster. Serpent. + GMNotes: '' + GUID: 085f52 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Pit Warden + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 97.96586 + posY: 1.64469123 + posZ: -0.253872156 + rotX: 359.970245 + rotY: 270.0172 + rotZ: 179.947556 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12732 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/VfZuXd1.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/943959879361281633/780B963F4F774A497E33388A89027A83EF0AD8E3/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Humanoid. Monster. Serpent. + GMNotes: '' + GUID: 2de72d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Pit Warden + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 97.6622238 + posY: 1.63529646 + posZ: -0.6131318 + rotX: 359.973938 + rotY: 270.039368 + rotZ: 179.958878 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12731 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/VfZuXd1.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/943959879361281633/780B963F4F774A497E33388A89027A83EF0AD8E3/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Ancient One. Serpent. Elite. + GMNotes: '' + GUID: e1be04 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Yig + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 98.33823 + posY: 1.62521541 + posZ: -0.12916705 + rotX: 359.9852 + rotY: 270.002625 + rotZ: 179.986771 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12730 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/VfZuXd1.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/943959879361281633/780B963F4F774A497E33388A89027A83EF0AD8E3/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Ancient. Cave. Yoth. + GMNotes: '' + GUID: 9b12cf + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Bright Canyon + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 98.28011 + posY: 1.61544347 + posZ: 0.263001978 + rotX: 359.989166 + rotY: 270.005554 + rotZ: 179.9919 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12729 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/VfZuXd1.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/943959879361281633/780B963F4F774A497E33388A89027A83EF0AD8E3/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Ancient. Cave. Yoth. + GMNotes: '' + GUID: f639f9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Abandoned Site + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 98.46672 + posY: 1.605819 + posZ: 0.100849681 + rotX: 359.987823 + rotY: 269.99942 + rotZ: 179.983414 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12728 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/VfZuXd1.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/943959879361281633/780B963F4F774A497E33388A89027A83EF0AD8E3/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Ancient. Cave. Yoth. + GMNotes: '' + GUID: a0bede + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Broken Passage + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 98.42447 + posY: 1.56607425 + posZ: 0.136186287 + rotX: 0.0036162117 + rotY: 269.996277 + rotZ: 181.526489 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12727 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/VfZuXd1.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/943959879361281633/780B963F4F774A497E33388A89027A83EF0AD8E3/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Ancient. Cave. Yoth. + GMNotes: '' + GUID: 2d59e1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Bridge over N'kai + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 97.59634 + posY: 1.58670759 + posZ: -0.06655448 + rotX: 359.988159 + rotY: 270.002869 + rotZ: 179.988449 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12726 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/VfZuXd1.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/943959879361281633/780B963F4F774A497E33388A89027A83EF0AD8E3/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Ancient. Cave. Yoth. + GMNotes: '' + GUID: ef24b4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Forked Path + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 98.28844 + posY: 1.57697415 + posZ: -0.288869172 + rotX: -0.00303206383 + rotY: 269.980652 + rotZ: 179.9741 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12725 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/VfZuXd1.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/943959879361281633/780B963F4F774A497E33388A89027A83EF0AD8E3/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Ancient. Cave. Yoth. + GMNotes: '' + GUID: c870e9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Caverns of Yoth + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 98.46298 + posY: 1.56722069 + posZ: -0.170056716 + rotX: 359.989166 + rotY: 269.9997 + rotZ: 179.988 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12724 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/VfZuXd1.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/943959879361281633/780B963F4F774A497E33388A89027A83EF0AD8E3/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Ancient. Cave. Yoth. + GMNotes: '' + GUID: 1cc0b2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Crumbling Precipice + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 98.29021 + posY: 1.55760312 + posZ: -0.248785719 + rotX: 359.99173 + rotY: 270.02124 + rotZ: 180.045227 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12723 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/VfZuXd1.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/943959879361281633/780B963F4F774A497E33388A89027A83EF0AD8E3/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Ancient. Cave. Yoth. + GMNotes: '' + GUID: 2c8131 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Hall of Heresy + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 98.156395 + posY: 1.54796124 + posZ: -0.159081012 + rotX: 359.989929 + rotY: 269.999817 + rotZ: 179.988831 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12722 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/VfZuXd1.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/943959879361281633/780B963F4F774A497E33388A89027A83EF0AD8E3/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Ancient. Cave. Yoth. + GMNotes: '' + GUID: e4e4d3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: City of the Serpents + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 98.24549 + posY: 1.5338881 + posZ: -0.3137031 + rotX: 359.9876 + rotY: 269.995758 + rotZ: 179.982681 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12721 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/VfZuXd1.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/943959879361281633/780B963F4F774A497E33388A89027A83EF0AD8E3/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Ancient. Forgotten. Yoth. + GMNotes: '' + GUID: f7ca01 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Steps of Yoth + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 98.10639 + posY: 1.52869606 + posZ: -0.04158095 + rotX: 359.9903 + rotY: 270.000854 + rotZ: 179.988342 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12720 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/VfZuXd1.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/943959879361281633/780B963F4F774A497E33388A89027A83EF0AD8E3/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 1 + GMNotes: '' + GUID: 34eda1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Journey to the Nexus + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 98.06426 + posY: 1.57131135 + posZ: -0.3948621 + rotX: 359.988678 + rotY: 269.64502 + rotZ: 179.9818 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12719 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/VfZuXd1.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/943959879361281633/780B963F4F774A497E33388A89027A83EF0AD8E3/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 7 + GMNotes: '' + GUID: eefdee + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: VENGEANCE + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 97.88661 + posY: 1.56498349 + posZ: -0.3859256 + rotX: 359.979553 + rotY: 269.153748 + rotZ: 179.961655 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12718 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/VfZuXd1.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/943959879361281633/780B963F4F774A497E33388A89027A83EF0AD8E3/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 6 + GMNotes: '' + GUID: 05dbc3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Red Depths + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 97.63511 + posY: 1.55996192 + posZ: -0.0888301 + rotX: 359.9908 + rotY: 271.1056 + rotZ: 179.975281 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12717 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/VfZuXd1.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/943959879361281633/780B963F4F774A497E33388A89027A83EF0AD8E3/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agend 5 + GMNotes: '' + GUID: bd6405 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Fury That Shakes the Earth + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 97.68949 + posY: 1.55735779 + posZ: -0.238434061 + rotX: 359.9797 + rotY: 269.063354 + rotZ: 179.946747 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12716 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/VfZuXd1.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/943959879361281633/780B963F4F774A497E33388A89027A83EF0AD8E3/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 4 + GMNotes: '' + GUID: c2af87 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: City of Blood + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 97.55728 + posY: 1.55936432 + posZ: -0.220774442 + rotX: 359.983582 + rotY: 269.136261 + rotZ: 179.963531 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12715 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/VfZuXd1.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/943959879361281633/780B963F4F774A497E33388A89027A83EF0AD8E3/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 3 + GMNotes: '' + GUID: 7275cb + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Endless Caverns + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 97.6898 + posY: 1.5730139 + posZ: -0.294707447 + rotX: 359.986481 + rotY: 269.367676 + rotZ: 179.971237 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12714 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/VfZuXd1.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/943959879361281633/780B963F4F774A497E33388A89027A83EF0AD8E3/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 2 + GMNotes: '' + GUID: 7381f6 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Horrific Descent + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 98.09038 + posY: 1.54928517 + posZ: -0.290835142 + rotX: 359.974854 + rotY: 270.03714 + rotZ: 179.988953 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12713 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/VfZuXd1.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/943959879361281633/780B963F4F774A497E33388A89027A83EF0AD8E3/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 1 + GMNotes: '' + GUID: 56b578 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Descent Begins + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 97.92148 + posY: 1.41039765 + posZ: -0.1111426 + rotX: 359.986542 + rotY: 270.024628 + rotZ: 179.982941 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/VfZuXd1.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/943959879361281633/780B963F4F774A497E33388A89027A83EF0AD8E3/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 12738 +- 12737 +- 12737 +- 12736 +- 12736 +- 12736 +- 12735 +- 12735 +- 12735 +- 12734 +- 12734 +- 12734 +- 12733 +- 12732 +- 12732 +- 12732 +- 12731 +- 12730 +- 12729 +- 12728 +- 12727 +- 12726 +- 12725 +- 12724 +- 12723 +- 12722 +- 12721 +- 12720 +- 12719 +- 12718 +- 12717 +- 12716 +- 12715 +- 12714 +- 12713 +Description: '' +GMNotes: '' +GUID: 3bf251 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: The Depths of Yoth +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 84.19746 + posY: 4.90202045 + posZ: -2.27509022 + rotX: 358.766571 + rotY: 269.7556 + rotZ: 3.36736679 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Forgotten Age 9dc850/Deck Agents of Yig 1c4590.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Forgotten Age 9dc850/Deck Agents of Yig 1c4590.yaml new file mode 100644 index 000000000..a9673ec40 --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Forgotten Age 9dc850/Deck Agents of Yig 1c4590.yaml @@ -0,0 +1,301 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 12314 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Curse. + GMNotes: '' + GUID: 5b28aa + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Curse of Yig + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 110.552 + posY: 1.41491556 + posZ: -37.7198753 + rotX: 359.984253 + rotY: 270.000763 + rotZ: 359.982 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12314 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Curse. + GMNotes: '' + GUID: 866eba + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Curse of Yig + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 110.2327 + posY: 1.55990815 + posZ: -37.40932 + rotX: 359.978851 + rotY: 270.004883 + rotZ: 359.955475 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12313 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Humanoid. Monster. Serpent. + GMNotes: '' + GUID: 906ef2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Serpent from Yoth + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 110.823021 + posY: 1.5773617 + posZ: -37.52145 + rotX: 359.987762 + rotY: 269.999939 + rotZ: 359.98053 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12312 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Humanoid. Monster. Serpent. + GMNotes: '' + GUID: 61dec3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Brood of Yig + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 110.72921 + posY: 1.563662 + posZ: -37.28887 + rotX: 359.984131 + rotY: 269.999084 + rotZ: 359.98288 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12312 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Humanoid. Monster. Serpent. + GMNotes: '' + GUID: 7a7539 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Brood of Yig + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 110.39782 + posY: 1.56174958 + posZ: -37.34012 + rotX: -0.00220557954 + rotY: 269.981567 + rotZ: 0.0100701423 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12312 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Humanoid. Monster. Serpent. + GMNotes: '' + GUID: 5ef7c7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Brood of Yig + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 110.20594 + posY: 1.5645144 + posZ: -37.5257645 + rotX: 359.987244 + rotY: 270.01 + rotZ: 359.976532 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '123': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 12314 +- 12314 +- 12313 +- 12312 +- 12312 +- 12312 +Description: '' +GMNotes: '' +GUID: 1c4590 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Agents of Yig +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 87.39126 + posY: 3.47022319 + posZ: 5.33733 + rotX: 1.66690612 + rotY: 269.9875 + rotZ: 0.5734336 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Forgotten Age 9dc850/Deck Deadly Traps 0eb930.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Forgotten Age 9dc850/Deck Deadly Traps 0eb930.yaml new file mode 100644 index 000000000..a8e7b282f --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Forgotten Age 9dc850/Deck Deadly Traps 0eb930.yaml @@ -0,0 +1,258 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 12318 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Trap. + GMNotes: '' + GUID: f3dc03 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Entombed + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 91.75406 + posY: 1.41525948 + posZ: -24.0136147 + rotX: 359.985474 + rotY: 270.039032 + rotZ: 359.98587 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12318 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Trap. + GMNotes: '' + GUID: c092e1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Entombed + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 91.78418 + posY: 1.528591 + posZ: -24.0466022 + rotX: 358.948975 + rotY: 269.9527 + rotZ: 359.9582 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12317 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Trap. + GMNotes: '' + GUID: 2a4bf1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Final Mistake + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 91.65462 + posY: 1.57797384 + posZ: -23.988039 + rotX: 359.982361 + rotY: 269.945068 + rotZ: 0.013356166 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12317 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Trap. + GMNotes: '' + GUID: fc2fb1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Final Mistake + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 91.77656 + posY: 1.56412864 + posZ: -23.8819065 + rotX: -0.000601830368 + rotY: 270.007019 + rotZ: 359.969238 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12317 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Trap. + GMNotes: '' + GUID: 0a4c6c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Final Mistake + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 92.1726456 + posY: 1.56232333 + posZ: -24.34476 + rotX: 359.982239 + rotY: 270.01474 + rotZ: 359.965271 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '123': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 12318 +- 12318 +- 12317 +- 12317 +- 12317 +Description: '' +GMNotes: '' +GUID: 0eb930 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Deadly Traps +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 87.33923 + posY: 3.29854918 + posZ: 3.86747932 + rotX: 0.5107217 + rotY: 270.062744 + rotZ: 3.12174726 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Forgotten Age 9dc850/Deck Expedition f4650a.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Forgotten Age 9dc850/Deck Expedition f4650a.yaml new file mode 100644 index 000000000..1c35b820d --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Forgotten Age 9dc850/Deck Expedition f4650a.yaml @@ -0,0 +1,265 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 234311 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2343': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Blunder. + GMNotes: '' + GUID: '632986' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Low on Supplies + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 110.956413 + posY: 1.413834 + posZ: -34.00648 + rotX: 359.986084 + rotY: 269.910675 + rotZ: 359.984741 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234211 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2342': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Blunder. + GMNotes: '' + GUID: 8e5f0a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Low on Supplies + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 111.076218 + posY: 1.55891144 + posZ: -33.8432922 + rotX: 359.984375 + rotY: 270.0017 + rotZ: 359.990143 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234210 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2342': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Blunder. + GMNotes: '' + GUID: f8b917 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Lost in the Wilds + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 111.493256 + posY: 1.57615733 + posZ: -33.5926628 + rotX: 359.9843 + rotY: 269.9836 + rotZ: 359.980835 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234310 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2343': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Blunder. + GMNotes: '' + GUID: e7d6b8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Lost in the Wilds + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 110.894257 + posY: 1.56286883 + posZ: -34.3112679 + rotX: 359.980682 + rotY: 269.998535 + rotZ: 359.9858 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234310 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2343': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Blunder. + GMNotes: '' + GUID: dc5b1e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Lost in the Wilds + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 110.685661 + posY: 1.56076062 + posZ: -34.00825 + rotX: 359.982819 + rotY: 269.9846 + rotZ: 359.9802 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2342': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + '2343': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 234311 +- 234211 +- 234210 +- 234310 +- 234310 +Description: '' +GMNotes: '' +GUID: f4650a +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Expedition +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 87.8570557 + posY: 3.507116 + posZ: 4.72616339 + rotX: 329.7617 + rotY: 269.946167 + rotZ: 2.53806663 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Forgotten Age 9dc850/Deck Forgotten Ruins 42af0f.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Forgotten Age 9dc850/Deck Forgotten Ruins 42af0f.yaml new file mode 100644 index 000000000..dfedbb6f9 --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Forgotten Age 9dc850/Deck Forgotten Ruins 42af0f.yaml @@ -0,0 +1,344 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 12323 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Hazard. + GMNotes: '' + GUID: d7978f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Deep Dark + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 93.60351 + posY: 1.415639 + posZ: -26.6612625 + rotX: 359.983948 + rotY: 270.0016 + rotZ: 359.981781 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12323 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Hazard. + GMNotes: '' + GUID: 0d217a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Deep Dark + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 93.69397 + posY: 1.560523 + posZ: -26.5478859 + rotX: 359.987457 + rotY: 270.005157 + rotZ: 359.9649 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12323 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Hazard. + GMNotes: '' + GUID: 16ec42 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Deep Dark + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 93.95461 + posY: 1.57794988 + posZ: -26.1335735 + rotX: 359.982422 + rotY: 269.999756 + rotZ: 359.979828 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12322 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Terror. + GMNotes: '' + GUID: 6dd1d9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ancestral Fear + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 93.42354 + posY: 1.57686341 + posZ: -26.1367111 + rotX: 359.525818 + rotY: 270.002777 + rotZ: 359.993652 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12322 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Terror. + GMNotes: '' + GUID: 6e0cb5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ancestral Fear + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 93.33449 + posY: 1.56238163 + posZ: -26.6032066 + rotX: 0.00463852054 + rotY: 269.965 + rotZ: 0.03435686 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12321 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Omen. Terror. + GMNotes: '' + GUID: 1fbcc6 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ill Omen + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 93.37187 + posY: 1.565085 + posZ: -26.059267 + rotX: 359.9843 + rotY: 270.0182 + rotZ: -0.00412462372 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12321 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Omen. Terror. + GMNotes: '' + GUID: e7fd35 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ill Omen + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 93.68463 + posY: 1.57012033 + posZ: -26.4346638 + rotX: 359.974152 + rotY: 269.966248 + rotZ: 0.009997719 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '123': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 12323 +- 12323 +- 12323 +- 12322 +- 12322 +- 12321 +- 12321 +Description: '' +GMNotes: '' +GUID: 42af0f +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Forgotten Ruins +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 87.43051 + posY: 3.4237783 + posZ: 4.45513248 + rotX: 0.491303235 + rotY: 270.003357 + rotZ: 3.46886468 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Forgotten Age 9dc850/Deck Guardians of Time 69dfe0.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Forgotten Age 9dc850/Deck Guardians of Time 69dfe0.yaml new file mode 100644 index 000000000..9d2bc2fb8 --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Forgotten Age 9dc850/Deck Guardians of Time 69dfe0.yaml @@ -0,0 +1,222 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 234216 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2342': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Scheme. + GMNotes: '' + GUID: c4b9d3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Arrows from the Trees + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 111.345619 + posY: 1.50246632 + posZ: -35.8159332 + rotX: 359.974548 + rotY: 269.998 + rotZ: 355.635132 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234316 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2343': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Scheme. + GMNotes: '' + GUID: 74a02c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Arrows from the Trees + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 111.014893 + posY: 1.66188061 + posZ: -35.7250938 + rotX: 359.983337 + rotY: 270.008362 + rotZ: 356.7489 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234315 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2343': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Humanoid. Eztli. + GMNotes: '' + GUID: '571733' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Eztli Guardian + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 111.112961 + posY: 1.576855 + posZ: -35.9195671 + rotX: 359.987854 + rotY: 269.999451 + rotZ: 359.976166 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234315 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2343': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Humanoid. Eztli. + GMNotes: '' + GUID: 1ff419 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Eztli Guardian + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 110.659172 + posY: 1.51936984 + posZ: -36.0036659 + rotX: -0.00208683615 + rotY: 270.029053 + rotZ: 2.31578827 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2342': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + '2343': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 234216 +- 234316 +- 234315 +- 234315 +Description: '' +GMNotes: '' +GUID: 69dfe0 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Guardians of Time +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 87.5737 + posY: 3.46644878 + posZ: 5.166093 + rotX: 0.706217349 + rotY: 270.0476 + rotZ: 2.360089 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Forgotten Age 9dc850/Deck Heart of the Elders 5b2663.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Forgotten Age 9dc850/Deck Heart of the Elders 5b2663.yaml new file mode 100644 index 000000000..aab81f4bb --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Forgotten Age 9dc850/Deck Heart of the Elders 5b2663.yaml @@ -0,0 +1,387 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 12724 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/dduEXOZ.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949584217499447778/D520DDC422F8941F9935AAD9075566696E799853/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Hazard. + GMNotes: '' + GUID: 05d368 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Poisonous Spores + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 99.29889 + posY: 1.56742907 + posZ: 12.5617056 + rotX: 359.983063 + rotY: 269.980347 + rotZ: 179.991089 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12724 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/dduEXOZ.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949584217499447778/D520DDC422F8941F9935AAD9075566696E799853/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Hazard. + GMNotes: '' + GUID: 98a6eb + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Poisonous Spores + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 99.45708 + posY: 1.561092 + posZ: 12.6000261 + rotX: 359.982849 + rotY: 269.999542 + rotZ: 179.984451 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12724 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/dduEXOZ.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949584217499447778/D520DDC422F8941F9935AAD9075566696E799853/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Hazard. + GMNotes: '' + GUID: '679548' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Poisonous Spores + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 98.86566 + posY: 1.5558753 + posZ: 12.560709 + rotX: 359.989838 + rotY: 270.0008 + rotZ: 180.031509 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12723 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/dduEXOZ.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949584217499447778/D520DDC422F8941F9935AAD9075566696E799853/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Trap. + GMNotes: '' + GUID: 58ab68 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Pitfall + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 100.305016 + posY: 1.49004185 + posZ: 5.756226 + rotX: 356.977325 + rotY: 270.025818 + rotZ: 179.983734 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12723 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/dduEXOZ.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949584217499447778/D520DDC422F8941F9935AAD9075566696E799853/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Trap. + GMNotes: '' + GUID: ab80bf + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Pitfall + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 101.279671 + posY: 1.40894473 + posZ: 2.58797669 + rotX: 359.987427 + rotY: 270.000183 + rotZ: 179.984543 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12723 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/dduEXOZ.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949584217499447778/D520DDC422F8941F9935AAD9075566696E799853/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Trap. + GMNotes: '' + GUID: ab80bf + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Pitfall + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 98.8100357 + posY: 1.56915438 + posZ: 13.0408506 + rotX: 359.990234 + rotY: 269.999969 + rotZ: 179.989838 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12714 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/dduEXOZ.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949584217499447778/D520DDC422F8941F9935AAD9075566696E799853/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 97335d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Mouth of K'n-yan + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 98.5499 + posY: 1.55190051 + posZ: 13.0026331 + rotX: 359.978058 + rotY: 270.007355 + rotZ: 179.989182 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12713 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/dduEXOZ.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949584217499447778/D520DDC422F8941F9935AAD9075566696E799853/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Heart of the Elders + GMNotes: '' + GUID: 8f1f3c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Scenario + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 98.70464 + posY: 1.40666723 + posZ: 13.0831165 + rotX: 359.985626 + rotY: 270.002258 + rotZ: 179.9839 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/dduEXOZ.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949584217499447778/D520DDC422F8941F9935AAD9075566696E799853/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 12724 +- 12724 +- 12724 +- 12723 +- 12723 +- 12723 +- 12714 +- 12713 +Description: '' +GMNotes: '' +GUID: 5b2663 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Heart of the Elders +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 87.58251 + posY: 3.43519354 + posZ: 4.98276329 + rotX: 0.530427158 + rotY: 270.026154 + rotZ: 3.46625519 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Forgotten Age 9dc850/Deck K'n-yan 3ac2d8.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Forgotten Age 9dc850/Deck K'n-yan 3ac2d8.yaml new file mode 100644 index 000000000..e0f0c7714 --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Forgotten Age 9dc850/Deck K'n-yan 3ac2d8.yaml @@ -0,0 +1,602 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 12736 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/dduEXOZ.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949584217499447778/D520DDC422F8941F9935AAD9075566696E799853/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Hazard. + GMNotes: '' + GUID: 3c278f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: No Turning Back + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 109.831581 + posY: 1.40729487 + posZ: -8.72366 + rotX: 359.987427 + rotY: 270.0 + rotZ: 359.984528 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12736 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/dduEXOZ.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949584217499447778/D520DDC422F8941F9935AAD9075566696E799853/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Hazard. + GMNotes: '' + GUID: '198394' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: No Turning Back + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 104.308624 + posY: 1.405478 + posZ: -7.537439 + rotX: 359.987854 + rotY: 269.9997 + rotZ: 359.9854 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12736 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/dduEXOZ.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949584217499447778/D520DDC422F8941F9935AAD9075566696E799853/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Hazard. + GMNotes: '' + GUID: 7cfc06 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: No Turning Back + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 102.759453 + posY: 1.52647579 + posZ: -1.58746159 + rotX: 359.98938 + rotY: 270.0155 + rotZ: 177.8464 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12735 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/dduEXOZ.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949584217499447778/D520DDC422F8941F9935AAD9075566696E799853/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Ancient. Cave. + GMNotes: '' + GUID: d00ab9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Descent to Yoth + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 102.175293 + posY: 1.53769958 + posZ: -1.15542686 + rotX: 359.9833 + rotY: 269.990082 + rotZ: 179.9889 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12734 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/dduEXOZ.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949584217499447778/D520DDC422F8941F9935AAD9075566696E799853/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Ancient. Cave. + GMNotes: '' + GUID: f759d9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Crystal Pillars + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 102.800728 + posY: 1.52788138 + posZ: -1.57140923 + rotX: 359.987823 + rotY: 269.986084 + rotZ: 180.003616 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12733 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/dduEXOZ.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949584217499447778/D520DDC422F8941F9935AAD9075566696E799853/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Ancient. Cave. + GMNotes: '' + GUID: f68247 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Perilous Gulch + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 102.387428 + posY: 1.62206173 + posZ: -1.28868723 + rotX: 0.00283122016 + rotY: 270.034241 + rotZ: 176.788559 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12732 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/dduEXOZ.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949584217499447778/D520DDC422F8941F9935AAD9075566696E799853/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Ancient. Cave. + GMNotes: '' + GUID: a5cee7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dark Hollow + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 102.740944 + posY: 1.560544 + posZ: -1.42245448 + rotX: 359.354584 + rotY: 269.9952 + rotZ: 180.916748 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12731 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/dduEXOZ.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949584217499447778/D520DDC422F8941F9935AAD9075566696E799853/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Ancient. Cave. + GMNotes: '' + GUID: 7216f5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Hall of Idolatry + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 103.274796 + posY: 1.60066533 + posZ: -1.339621 + rotX: 359.98877 + rotY: 270.023041 + rotZ: 182.814209 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12730 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/dduEXOZ.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949584217499447778/D520DDC422F8941F9935AAD9075566696E799853/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Ancient. Cave. + GMNotes: '' + GUID: 8a0365 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Vast Passages + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 102.79924 + posY: 1.59632516 + posZ: -1.92458057 + rotX: 359.986755 + rotY: 270.01944 + rotZ: 177.7032 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12722 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/dduEXOZ.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949584217499447778/D520DDC422F8941F9935AAD9075566696E799853/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 2 + GMNotes: '' + GUID: 2927d8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Descent into Dark + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 102.67276 + posY: 1.5585593 + posZ: -1.181264 + rotX: 359.985748 + rotY: 269.6972 + rotZ: 179.98056 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12721 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/dduEXOZ.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949584217499447778/D520DDC422F8941F9935AAD9075566696E799853/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 1 + GMNotes: '' + GUID: 89e433 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Cavern of the Forgotten Age + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 102.424629 + posY: 1.57214272 + posZ: -0.975977838 + rotX: 359.990448 + rotY: 269.999878 + rotZ: 179.988113 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12720 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/dduEXOZ.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949584217499447778/D520DDC422F8941F9935AAD9075566696E799853/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 2 + GMNotes: '' + GUID: 0bbb1e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Eyes in the Dark + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 102.492142 + posY: 1.55461466 + posZ: -1.136364 + rotX: 359.991547 + rotY: 269.999481 + rotZ: 179.987289 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12719 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/dduEXOZ.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949584217499447778/D520DDC422F8941F9935AAD9075566696E799853/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 1 + GMNotes: '' + GUID: 0d3b97 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Lonely Caverns + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 102.571884 + posY: 1.40954638 + posZ: -1.05628419 + rotX: 359.983 + rotY: 270.00058 + rotZ: 179.985641 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/dduEXOZ.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949584217499447778/D520DDC422F8941F9935AAD9075566696E799853/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 12736 +- 12736 +- 12736 +- 12735 +- 12734 +- 12733 +- 12732 +- 12731 +- 12730 +- 12722 +- 12721 +- 12720 +- 12719 +Description: '' +GMNotes: '' +GUID: 3ac2d8 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: K'n-yan +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 87.82494 + posY: 3.446949 + posZ: 4.628917 + rotX: 2.57678962 + rotY: 180.031784 + rotZ: 0.7937379 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Forgotten Age 9dc850/Deck Pillars of Judgement 050bae.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Forgotten Age 9dc850/Deck Pillars of Judgement 050bae.yaml new file mode 100644 index 000000000..fa8417e90 --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Forgotten Age 9dc850/Deck Pillars of Judgement 050bae.yaml @@ -0,0 +1,602 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 12729 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/dduEXOZ.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949584217499447778/D520DDC422F8941F9935AAD9075566696E799853/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Hazard. + GMNotes: '' + GUID: 6d682c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ants! + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 108.580948 + posY: 1.406642 + posZ: 5.1806426 + rotX: 359.987427 + rotY: 270.0 + rotZ: 179.984543 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12729 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/dduEXOZ.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949584217499447778/D520DDC422F8941F9935AAD9075566696E799853/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Hazard. + GMNotes: '' + GUID: fe6b01 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ants! + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 106.447426 + posY: 1.40648806 + posZ: 7.48791265 + rotX: 359.987427 + rotY: 270.0 + rotZ: 179.984543 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12729 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/dduEXOZ.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949584217499447778/D520DDC422F8941F9935AAD9075566696E799853/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Hazard. + GMNotes: '' + GUID: 763f2b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ants! + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 106.37645 + posY: 1.40579438 + posZ: 10.1178446 + rotX: 359.987427 + rotY: 269.999969 + rotZ: 179.984543 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12728 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/dduEXOZ.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949584217499447778/D520DDC422F8941F9935AAD9075566696E799853/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Monster. Serpent. + GMNotes: '' + GUID: 9989f2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Basilisk + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 103.2061 + posY: 1.49203479 + posZ: 6.08133459 + rotX: 359.981934 + rotY: 270.008148 + rotZ: 182.355637 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12728 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/dduEXOZ.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949584217499447778/D520DDC422F8941F9935AAD9075566696E799853/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Monster. Serpent. + GMNotes: '' + GUID: 85007f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Basilisk + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 103.608253 + posY: 1.53121209 + posZ: 6.31729937 + rotX: 0.905814052 + rotY: 270.000854 + rotZ: 180.074371 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12727 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/dduEXOZ.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949584217499447778/D520DDC422F8941F9935AAD9075566696E799853/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Creature. Flora. + GMNotes: '' + GUID: af5d2c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Apex Strangleweed + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 103.367714 + posY: 1.6066457 + posZ: 6.087395 + rotX: 359.989716 + rotY: 270.018066 + rotZ: 177.734833 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12727 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/dduEXOZ.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949584217499447778/D520DDC422F8941F9935AAD9075566696E799853/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Creature. Flora. + GMNotes: '' + GUID: '894376' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Apex Strangleweed + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 103.13266 + posY: 1.52823079 + posZ: 6.42342234 + rotX: 359.993774 + rotY: 270.016235 + rotZ: 182.5538 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12726 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/dduEXOZ.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949584217499447778/D520DDC422F8941F9935AAD9075566696E799853/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Ancient. Ruins. + GMNotes: '' + GUID: 0673f6 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Stone Altar + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 102.672905 + posY: 1.5571698 + posZ: 6.33909273 + rotX: 359.9809 + rotY: 270.0203 + rotZ: 179.990067 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12725 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/dduEXOZ.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949584217499447778/D520DDC422F8941F9935AAD9075566696E799853/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Jungle. + GMNotes: '' + GUID: 7b73a5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Time-Wracked Woods + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 103.275444 + posY: 1.5543828 + posZ: 6.052133 + rotX: 359.975 + rotY: 270.024078 + rotZ: 179.974213 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12718 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/dduEXOZ.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949584217499447778/D520DDC422F8941F9935AAD9075566696E799853/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 2 + GMNotes: '' + GUID: 178da9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Opening the Maw + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 103.1004 + posY: 1.55642343 + posZ: 6.00984955 + rotX: 359.9876 + rotY: 270.8454 + rotZ: 179.9904 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12717 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/dduEXOZ.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949584217499447778/D520DDC422F8941F9935AAD9075566696E799853/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 1 + GMNotes: '' + GUID: 9e2e37 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Search for Pattern + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 103.228188 + posY: 1.81488192 + posZ: 5.640787 + rotX: 359.974365 + rotY: 270.058624 + rotZ: 165.98735 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12716 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/dduEXOZ.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949584217499447778/D520DDC422F8941F9935AAD9075566696E799853/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 2 + GMNotes: '' + GUID: 61410b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Setting Sun + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 103.007675 + posY: 1.55230963 + posZ: 5.77806854 + rotX: 0.00312731625 + rotY: 269.098755 + rotZ: 180.0083 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12715 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/dduEXOZ.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949584217499447778/D520DDC422F8941F9935AAD9075566696E799853/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 1 + GMNotes: '' + GUID: 1893f1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Jungle's Heart + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 103.163376 + posY: 1.40738094 + posZ: 6.13082027 + rotX: 359.982452 + rotY: 269.997284 + rotZ: 179.986038 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/dduEXOZ.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949584217499447778/D520DDC422F8941F9935AAD9075566696E799853/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 12729 +- 12729 +- 12729 +- 12728 +- 12728 +- 12727 +- 12727 +- 12726 +- 12725 +- 12718 +- 12717 +- 12716 +- 12715 +Description: '' +GMNotes: '' +GUID: 050bae +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Pillars of Judgement +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 87.91386 + posY: 3.45342374 + posZ: 4.788934 + rotX: 2.276136 + rotY: 179.97496 + rotZ: 1.5740701 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Forgotten Age 9dc850/Deck Pnakotic Brotherhood 4845b8.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Forgotten Age 9dc850/Deck Pnakotic Brotherhood 4845b8.yaml new file mode 100644 index 000000000..0b2e6f1b8 --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Forgotten Age 9dc850/Deck Pnakotic Brotherhood 4845b8.yaml @@ -0,0 +1,301 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 12426 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '124': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Hex. + GMNotes: '' + GUID: d6a48e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Words of Power + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 105.47229 + posY: 1.41302526 + posZ: -26.5370121 + rotX: 359.983246 + rotY: 269.997681 + rotZ: 359.983459 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12426 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '124': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Hex. + GMNotes: '' + GUID: 866eba + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Words of Power + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 105.073769 + posY: 1.55812955 + posZ: -26.3022041 + rotX: 359.9757 + rotY: 269.9969 + rotZ: 359.966278 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12425 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '124': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Scheme. + GMNotes: '' + GUID: 89f4f6 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Shadowed + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 105.394173 + posY: 1.57565773 + posZ: -26.5924683 + rotX: 359.985962 + rotY: 270.000458 + rotZ: 359.9845 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12425 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '124': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Scheme. + GMNotes: '' + GUID: 04e5d3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Shadowed + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 105.19516 + posY: 1.56211627 + posZ: -26.8925056 + rotX: 359.9841 + rotY: 270.035339 + rotZ: 359.964783 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12424 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '124': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Humanoid. Cultist. + GMNotes: '' + GUID: 1f4f54 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Brotherhood Cultist + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 104.979752 + posY: 1.56002176 + posZ: -26.5550346 + rotX: 359.98822 + rotY: 270.004272 + rotZ: 359.982544 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12424 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '124': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Humanoid. Cultist. + GMNotes: '' + GUID: 62cc1f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Brotherhood Cultist + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 105.252594 + posY: 1.56255257 + posZ: -26.7338943 + rotX: 0.00564666232 + rotY: 270.048 + rotZ: 359.947021 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '124': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 12426 +- 12426 +- 12425 +- 12425 +- 12424 +- 12424 +Description: '' +GMNotes: '' +GUID: 4845b8 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Pnakotic Brotherhood +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 87.6135941 + posY: 3.46530032 + posZ: 5.6769557 + rotX: 0.504749358 + rotY: 269.919373 + rotZ: 357.150848 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Forgotten Age 9dc850/Deck Poison 995c5f.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Forgotten Age 9dc850/Deck Poison 995c5f.yaml new file mode 100644 index 000000000..cdea3dcc4 --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Forgotten Age 9dc850/Deck Poison 995c5f.yaml @@ -0,0 +1,308 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 12331 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Poision. + GMNotes: '' + GUID: f3fe44 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Poisoned + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 111.452858 + posY: 1.40993047 + posZ: -20.4789047 + rotX: 359.983856 + rotY: 270.0102 + rotZ: 359.975281 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12331 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Poision. + GMNotes: '' + GUID: d8e72f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Poisoned + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 111.203728 + posY: 1.55516231 + posZ: -20.729353 + rotX: 0.00193368562 + rotY: 270.036316 + rotZ: 359.966248 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12331 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Poision. + GMNotes: '' + GUID: 1f5327 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Poisoned + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 111.038361 + posY: 1.572708 + posZ: -20.8297672 + rotX: 0.000437955867 + rotY: 270.0401 + rotZ: 359.967438 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12331 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Poision. + GMNotes: '' + GUID: 34788c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Poisoned + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 111.992722 + posY: 1.55893481 + posZ: -20.6752548 + rotX: 359.9848 + rotY: 270.003632 + rotZ: 359.979553 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234330 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2343': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Poison. + GMNotes: '' + GUID: b4f854 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Creeping Poison + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 111.255989 + posY: 1.62671483 + posZ: -20.94795 + rotX: 357.4069 + rotY: 269.992035 + rotZ: 359.978821 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234330 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2343': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Poison. + GMNotes: '' + GUID: 8e8fef + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Creeping Poison + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 111.317741 + posY: 1.55971062 + posZ: -20.66656 + rotX: 4.160312e-05 + rotY: 270.0323 + rotZ: 359.9613 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '123': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + '2343': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 12331 +- 12331 +- 12331 +- 12331 +- 234330 +- 234330 +Description: '' +GMNotes: '' +GUID: 995c5f +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Poison +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 87.35763 + posY: 3.41433215 + posZ: 4.32623672 + rotX: 0.5183482 + rotY: 270.032959 + rotZ: 3.33669734 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Forgotten Age 9dc850/Deck Rainforest 81cf68.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Forgotten Age 9dc850/Deck Rainforest 81cf68.yaml new file mode 100644 index 000000000..f3e58dfee --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Forgotten Age 9dc850/Deck Rainforest 81cf68.yaml @@ -0,0 +1,537 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 234306 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2343': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Power. + GMNotes: '' + GUID: 1ecad5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Voice of the Jungle + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 118.488647 + posY: 1.55328572 + posZ: -33.5232544 + rotX: 359.976044 + rotY: 270.0343 + rotZ: 180.0214 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234306 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2343': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Power. + GMNotes: '' + GUID: 53458a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Voice of the Jungle + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 118.637466 + posY: 1.54400635 + posZ: -32.5483665 + rotX: 0.008882008 + rotY: 270.007782 + rotZ: 180.271469 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234305 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2343': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Obstacle. + GMNotes: '' + GUID: cfda2a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Overgrowth + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 118.476913 + posY: 1.53412259 + posZ: -32.8256836 + rotX: 359.9841 + rotY: 270.000641 + rotZ: 179.881454 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234205 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2342': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Obstacle. + GMNotes: '' + GUID: e1873c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Overgrowth + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 118.561516 + posY: 1.57546377 + posZ: -33.0261841 + rotX: 359.9899 + rotY: 270.001221 + rotZ: 179.985 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12304 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Ancient. Ruins. + GMNotes: '' + GUID: 15b776 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Overgrown Ruins + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 118.984642 + posY: 1.56930888 + posZ: -33.7221832 + rotX: 359.993164 + rotY: 270.0065 + rotZ: 179.967682 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12303 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Ancient. Ruins. + GMNotes: '' + GUID: 9eb622 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Temple of the Fang + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 119.178009 + posY: 1.56401336 + posZ: -32.7182579 + rotX: 359.993042 + rotY: 269.9919 + rotZ: 179.966934 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234202 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2342': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Jungle. + GMNotes: '' + GUID: 1ec75c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Circuitous Trail + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 118.651016 + posY: 1.56153333 + posZ: -33.05216 + rotX: 359.984 + rotY: 270.0203 + rotZ: 179.983353 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234201 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2342': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Jungle. + GMNotes: '' + GUID: d4df1b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: "Serpent\u2019s Haven" + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 119.432816 + posY: 1.56344211 + posZ: -33.284687 + rotX: 359.992035 + rotY: 269.998474 + rotZ: 179.984909 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234200 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2342': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Jungle. + GMNotes: '' + GUID: '227273' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Rope Bridge + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 118.975449 + posY: 1.57728839 + posZ: -33.5759964 + rotX: 359.99 + rotY: 270.000427 + rotZ: 179.981674 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 129969 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1299': + BackIsHidden: true + BackURL: https://i.imgur.com/RpzEfmS.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393194495/027101CA5C626EBA0E4F76F3F15569329F81DE3C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Jungle. + GMNotes: '' + GUID: '746983' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: River Canyon + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 119.194267 + posY: 1.52772677 + posZ: -33.092144 + rotX: -0.000396898016 + rotY: 270.0386 + rotZ: 181.786987 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 129968 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1299': + BackIsHidden: true + BackURL: https://i.imgur.com/RpzEfmS.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393194495/027101CA5C626EBA0E4F76F3F15569329F81DE3C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Jungle. + GMNotes: '' + GUID: 3b9b1a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Path of Thorns + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 119.397575 + posY: 1.41487837 + posZ: -33.4909172 + rotX: -0.00424454641 + rotY: 270.007 + rotZ: 179.978 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '123': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + '1299': + BackIsHidden: true + BackURL: https://i.imgur.com/RpzEfmS.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393194495/027101CA5C626EBA0E4F76F3F15569329F81DE3C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + '2342': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + '2343': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 234306 +- 234306 +- 234305 +- 234205 +- 12304 +- 12303 +- 234202 +- 234201 +- 234200 +- 129969 +- 129968 +Description: '' +GMNotes: '' +GUID: 81cf68 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Rainforest +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 87.4563 + posY: 3.426168 + posZ: 4.69654751 + rotX: 0.6471191 + rotY: 270.0423 + rotZ: 3.71749187 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Forgotten Age 9dc850/Deck Serpents 40c51c.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Forgotten Age 9dc850/Deck Serpents 40c51c.yaml new file mode 100644 index 000000000..922379eca --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Forgotten Age 9dc850/Deck Serpents 40c51c.yaml @@ -0,0 +1,351 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 234209 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2342': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Hazard. Poison. + GMNotes: '' + GUID: 4ec414 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Snake Bite + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 107.226814 + posY: 1.41422772 + posZ: -32.48908 + rotX: 359.984619 + rotY: 270.0101 + rotZ: 359.986328 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234309 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2343': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Hazard. Poison. + GMNotes: '' + GUID: fa161c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Snake Bite + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 107.494827 + posY: 1.63908458 + posZ: -32.33602 + rotX: 359.960663 + rotY: 269.9711 + rotZ: 355.1572 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234309 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2343': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Hazard. Poison. + GMNotes: '' + GUID: '180783' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Snake Bite + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 107.055229 + posY: 1.65049648 + posZ: -32.2482529 + rotX: 0.01185294 + rotY: 269.9655 + rotZ: 354.342743 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234308 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2343': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Creature. Serpent. + GMNotes: '' + GUID: '266843' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Boa Constrictor + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 106.796257 + posY: 1.588123 + posZ: -32.12004 + rotX: 359.994263 + rotY: 269.954529 + rotZ: 1.33810365 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234307 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2343': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Creature. Serpent. + GMNotes: '' + GUID: f460e3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Pit Viper + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 107.708458 + posY: 1.56103778 + posZ: -32.63066 + rotX: -0.00214207312 + rotY: 270.0184 + rotZ: 359.991028 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234307 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2343': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Creature. Serpent. + GMNotes: '' + GUID: 6f8db4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Pit Viper + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 107.637756 + posY: 1.56378973 + posZ: -32.6063271 + rotX: 359.993134 + rotY: 269.9707 + rotZ: 359.9239 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234307 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2343': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Creature. Serpent. + GMNotes: '' + GUID: '062575' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Pit Viper + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 107.158653 + posY: 1.56882882 + posZ: -32.4814644 + rotX: 359.987823 + rotY: 270.000671 + rotZ: 359.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2342': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + '2343': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 234209 +- 234309 +- 234309 +- 234308 +- 234307 +- 234307 +- 234307 +Description: '' +GMNotes: '' +GUID: 40c51c +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Serpents +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 88.40884 + posY: 3.45136452 + posZ: 5.302583 + rotX: 357.4635 + rotY: 269.921661 + rotZ: 0.659097254 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Forgotten Age 9dc850/Deck Shattered Aeons e13f1b.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Forgotten Age 9dc850/Deck Shattered Aeons e13f1b.yaml new file mode 100644 index 000000000..566c1eb88 --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Forgotten Age 9dc850/Deck Shattered Aeons e13f1b.yaml @@ -0,0 +1,1612 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 265700 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2654': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: https://i.imgur.com/mtzND71.jpg + NumHeight: 2 + NumWidth: 2 + UniqueBack: false + Description: Item. Relic. + GMNotes: '' + GUID: 3ff610 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Relic of Ages + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 100.744606 + posY: 1.78859413 + posZ: 1.099486 + rotX: 359.991058 + rotY: 270.002747 + rotZ: 179.984818 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 260414 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2604': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/4vUPeDS.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: 7d2583 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Creeping Darkness + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 100.461594 + posY: 1.77889526 + posZ: 1.38027883 + rotX: -0.00514099 + rotY: 269.9953 + rotZ: 179.9875 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 260414 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2604': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/4vUPeDS.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: bcc344 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Creeping Darkness + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 100.273056 + posY: 1.769436 + posZ: 0.7964915 + rotX: 359.985382 + rotY: 270.005249 + rotZ: 179.985947 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 260412 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2604': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/4vUPeDS.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: b9445f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Wracked by Time + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 100.406113 + posY: 1.75867 + posZ: 0.859655261 + rotX: 359.98288 + rotY: 269.996216 + rotZ: 179.983246 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 260412 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2604': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/4vUPeDS.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: 35d4c5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Wracked by Time + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 100.553993 + posY: 1.75005484 + posZ: 1.040969 + rotX: 359.98056 + rotY: 270.00235 + rotZ: 179.9723 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 260412 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2604': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/4vUPeDS.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: b9445f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Wracked by Time + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 100.9807 + posY: 1.74015379 + posZ: 1.33668339 + rotX: 359.984039 + rotY: 270.001373 + rotZ: 179.973648 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 260415 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2604': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/4vUPeDS.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: fbb723 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Between Worlds + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 100.630104 + posY: 1.7306149 + posZ: 1.089205 + rotX: -0.000338933954 + rotY: 270.0157 + rotZ: 179.984451 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 260415 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2604': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/4vUPeDS.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: abd75a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Between Worlds + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 100.616348 + posY: 1.72081053 + posZ: 1.76738644 + rotX: 359.99295 + rotY: 269.993744 + rotZ: 179.983047 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 260413 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2604': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/4vUPeDS.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: 46f30b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Shattered Ages + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 100.792755 + posY: 1.71132123 + posZ: 0.85006845 + rotX: 359.986725 + rotY: 269.999847 + rotZ: 179.99054 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 260413 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2604': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/4vUPeDS.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: 4bb510 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Shattered Ages + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 100.752716 + posY: 1.70154965 + posZ: 1.42733967 + rotX: 0.015738748 + rotY: 269.9992 + rotZ: 179.935333 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 260410 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2604': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/4vUPeDS.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: false + Description: Monster. Extradimensional. + GMNotes: '' + GUID: 4dfc1c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Temporal Devourer + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 101.170349 + posY: 1.69180071 + posZ: 1.36009645 + rotX: 359.9886 + rotY: 270.0 + rotZ: 179.987473 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 260410 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2604': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/4vUPeDS.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: false + Description: Monster. Extradimensional. + GMNotes: '' + GUID: cc5c21 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Temporal Devourer + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 100.507675 + posY: 1.68220723 + posZ: 1.66922235 + rotX: 359.990631 + rotY: 270.0004 + rotZ: 179.987152 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 260411 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2604': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/4vUPeDS.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: false + Description: Monster. Abomination. Elite. + GMNotes: '' + GUID: eeff54 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Formless Spawn + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 100.803246 + posY: 1.6725688 + posZ: 1.37564468 + rotX: -0.000217988258 + rotY: 269.980774 + rotZ: 179.9849 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 260405 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2604': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/4vUPeDS.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: false + Description: Shattered. Present-Day. + GMNotes: '' + GUID: 512f93 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Plateau of Leng + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 100.399971 + posY: 1.66311634 + posZ: 0.72802496 + rotX: -0.0056582056 + rotY: 269.996918 + rotZ: 179.984436 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 260401 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2604': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/4vUPeDS.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: false + Description: Shattered. Ancient. + GMNotes: '' + GUID: '353475' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Valusia + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 100.689323 + posY: 1.653192 + posZ: 0.7354049 + rotX: 0.009993733 + rotY: 270.010223 + rotZ: 180.018692 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 260404 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2604': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/4vUPeDS.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: false + Description: Shattered. Ancient. + GMNotes: '' + GUID: 3b6d9c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Pnakotus + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 100.474144 + posY: 1.6436981 + posZ: 1.15229344 + rotX: 359.994141 + rotY: 269.99173 + rotZ: 179.993561 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 260408 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2604': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/4vUPeDS.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: false + Description: Shattered. Ancient. + GMNotes: '' + GUID: 7e6245 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Atlantis + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 100.773453 + posY: 1.6339916 + posZ: 1.26608634 + rotX: 359.9838 + rotY: 269.9712 + rotZ: 179.901367 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 260406 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2604': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/4vUPeDS.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: false + Description: Shattered. Ancient. + GMNotes: '' + GUID: 555dff + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Mu + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 100.390076 + posY: 1.624555 + posZ: 1.37583542 + rotX: 359.9686 + rotY: 270.027649 + rotZ: 179.986832 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 260403 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2604': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/4vUPeDS.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: false + Description: Shattered. Ancient. + GMNotes: '' + GUID: d6d845 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ruins of New York + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 100.533142 + posY: 1.61466813 + posZ: 1.33810115 + rotX: 359.988068 + rotY: 270.006165 + rotZ: 179.996765 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 260409 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2604': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/4vUPeDS.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: bbfc9c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: A Pocket in Time + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 100.201492 + posY: 1.60519338 + posZ: 1.16292834 + rotX: 359.984344 + rotY: 270.012268 + rotZ: 179.9774 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 260407 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2604': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/4vUPeDS.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: false + Description: Otherworld. + GMNotes: '' + GUID: 59695a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: City of the Unseen + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 100.205925 + posY: 1.5954361 + posZ: 1.22899687 + rotX: 359.9883 + rotY: 270.000244 + rotZ: 179.98645 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 260402 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2604': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/4vUPeDS.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: false + Description: Otherworld. + GMNotes: '' + GUID: 623fb1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: "Shores of R\u2019lyeh" + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 100.582886 + posY: 1.585712 + posZ: 0.758517742 + rotX: 359.9917 + rotY: 269.994263 + rotZ: 179.992737 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 260400 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2604': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/4vUPeDS.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: false + Description: Otherworld. + GMNotes: '' + GUID: 5db6b7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Yuggoth + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 100.950447 + posY: 1.57598388 + posZ: 1.08820343 + rotX: 359.989319 + rotY: 270.003174 + rotZ: 179.995255 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 260104 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2601': + BackIsHidden: true + BackURL: https://i.imgur.com/bQUL7Ev.jpg + FaceURL: https://i.imgur.com/Kw5u56P.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: true + Description: Humanoid. Cultist. Elite. + GMNotes: '' + GUID: 7f1430 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Alejandro Vela + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 100.441719 + posY: 1.56646311 + posZ: 0.8069625 + rotX: 359.989868 + rotY: 269.526337 + rotZ: 179.9799 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 260103 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2601': + BackIsHidden: true + BackURL: https://i.imgur.com/bQUL7Ev.jpg + FaceURL: https://i.imgur.com/Kw5u56P.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: true + Description: Humanoid. Monster. Serpent. Elite. + GMNotes: '' + GUID: 7727b0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ichtaca + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 100.6315 + posY: 1.62709522 + posZ: 1.25434709 + rotX: 359.992859 + rotY: 270.010437 + rotZ: 184.575882 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 260102 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2601': + BackIsHidden: true + BackURL: https://i.imgur.com/bQUL7Ev.jpg + FaceURL: https://i.imgur.com/Kw5u56P.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: true + Description: Unravelling the Threads + GMNotes: '' + GUID: 594b02 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Nexus of N'kai + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 100.439751 + posY: 1.54704511 + posZ: 1.33924174 + rotX: -0.003077067 + rotY: 269.969055 + rotZ: 179.964386 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265314 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2653': + BackIsHidden: true + BackURL: https://i.imgur.com/bQUL7Ev.jpg + FaceURL: https://i.imgur.com/Kw5u56P.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: true + Description: Act 4 + GMNotes: '' + GUID: 89f177 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Timelock + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 100.01329 + posY: 1.53749478 + posZ: 1.3151983 + rotX: 359.985535 + rotY: 269.9855 + rotZ: 179.983932 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265315 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2653': + BackIsHidden: true + BackURL: https://i.imgur.com/bQUL7Ev.jpg + FaceURL: https://i.imgur.com/Kw5u56P.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: true + Description: Act 4 + GMNotes: '' + GUID: 7f2934 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Paradise Lost + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 100.511116 + posY: 1.58352542 + posZ: 1.44801676 + rotX: 357.8526 + rotY: 269.688782 + rotZ: 179.995575 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265316 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2653': + BackIsHidden: true + BackURL: https://i.imgur.com/bQUL7Ev.jpg + FaceURL: https://i.imgur.com/Kw5u56P.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: true + Description: Act 4 + GMNotes: '' + GUID: ebb16e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Mend the Shatter + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 100.085022 + posY: 1.570292 + posZ: 1.53554976 + rotX: 359.990417 + rotY: 270.154327 + rotZ: 179.988159 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265313 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2653': + BackIsHidden: true + BackURL: https://i.imgur.com/bQUL7Ev.jpg + FaceURL: https://i.imgur.com/Kw5u56P.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: true + Description: Act 3 + GMNotes: '' + GUID: 716efa + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Ythian Relic + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 99.86871 + posY: 1.56400073 + posZ: 1.53660488 + rotX: 359.990082 + rotY: 269.14267 + rotZ: 179.988388 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265311 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2653': + BackIsHidden: true + BackURL: https://i.imgur.com/bQUL7Ev.jpg + FaceURL: https://i.imgur.com/Kw5u56P.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: true + Description: Act 2 + GMNotes: '' + GUID: b0369d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Search for the Brotherhood + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 100.038185 + posY: 1.5589776 + posZ: 1.53186846 + rotX: 359.990326 + rotY: 269.085358 + rotZ: 179.988571 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265309 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2653': + BackIsHidden: true + BackURL: https://i.imgur.com/bQUL7Ev.jpg + FaceURL: https://i.imgur.com/Kw5u56P.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: true + Description: Act 1 + GMNotes: '' + GUID: 7f17c8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Worlds Beyond + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 100.490585 + posY: 1.5563519 + posZ: 1.28187561 + rotX: 359.99 + rotY: 269.111755 + rotZ: 179.972351 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265307 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2653': + BackIsHidden: true + BackURL: https://i.imgur.com/bQUL7Ev.jpg + FaceURL: https://i.imgur.com/Kw5u56P.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: true + Description: Agenda 3 + GMNotes: '' + GUID: 6bc8a2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Snapped Threads + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 100.675636 + posY: 1.557823 + posZ: 2.05312324 + rotX: 359.978241 + rotY: 270.0017 + rotZ: 179.974014 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265306 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2653': + BackIsHidden: true + BackURL: https://i.imgur.com/bQUL7Ev.jpg + FaceURL: https://i.imgur.com/Kw5u56P.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: true + Description: Agenda 2 + GMNotes: '' + GUID: b22648 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Pendulous Threads + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 100.816551 + posY: 1.57173419 + posZ: 1.74279332 + rotX: 359.989838 + rotY: 269.9078 + rotZ: 179.987747 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265305 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2653': + BackIsHidden: true + BackURL: https://i.imgur.com/bQUL7Ev.jpg + FaceURL: https://i.imgur.com/Kw5u56P.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: true + Description: Agenda 1 + GMNotes: '' + GUID: 49a6b7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Threads of Time + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 100.19558 + posY: 1.554466 + posZ: 1.6815815 + rotX: 359.972229 + rotY: 270.008 + rotZ: 179.978943 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 260101 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2601': + BackIsHidden: true + BackURL: https://i.imgur.com/bQUL7Ev.jpg + FaceURL: https://i.imgur.com/Kw5u56P.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: true + Description: Shattered Aeons + GMNotes: '' + GUID: 9c631d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Scenario + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 100.41555 + posY: 1.40942144 + posZ: 1.3691566 + rotX: 359.983459 + rotY: 269.997467 + rotZ: 179.988281 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2601': + BackIsHidden: true + BackURL: https://i.imgur.com/bQUL7Ev.jpg + FaceURL: https://i.imgur.com/Kw5u56P.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: true + '2604': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/4vUPeDS.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: false + '2653': + BackIsHidden: true + BackURL: https://i.imgur.com/bQUL7Ev.jpg + FaceURL: https://i.imgur.com/Kw5u56P.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: true + '2657': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: https://i.imgur.com/mtzND71.jpg + NumHeight: 2 + NumWidth: 2 + UniqueBack: false +DeckIDs: +- 265700 +- 260414 +- 260414 +- 260412 +- 260412 +- 260412 +- 260415 +- 260415 +- 260413 +- 260413 +- 260410 +- 260410 +- 260411 +- 260405 +- 260401 +- 260404 +- 260408 +- 260406 +- 260403 +- 260409 +- 260407 +- 260402 +- 260400 +- 260104 +- 260103 +- 260102 +- 265314 +- 265315 +- 265316 +- 265313 +- 265311 +- 265309 +- 265307 +- 265306 +- 265305 +- 260101 +Description: '' +GMNotes: '' +GUID: e13f1b +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Shattered Aeons +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 87.79282 + posY: 3.54007983 + posZ: 4.72367954 + rotX: 359.7707 + rotY: 269.960938 + rotZ: 3.63302922 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Forgotten Age 9dc850/Deck Temporal Flux aa9a85.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Forgotten Age 9dc850/Deck Temporal Flux aa9a85.yaml new file mode 100644 index 000000000..d120752cd --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Forgotten Age 9dc850/Deck Temporal Flux aa9a85.yaml @@ -0,0 +1,258 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 12320 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Hex. + GMNotes: '' + GUID: 5c3d58 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Lost in Time + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 11.9956064 + posY: 1.53671312 + posZ: 1.00855458 + rotX: 359.915924 + rotY: 269.993256 + rotZ: 0.01840952 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12320 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Hex. + GMNotes: '' + GUID: 5ae819 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Lost in Time + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 12.1089106 + posY: 1.67730081 + posZ: 1.38098049 + rotX: 359.9337 + rotY: 270.005066 + rotZ: 359.9755 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12319 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Hex. + GMNotes: '' + GUID: 29e1ba + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: A Tear in Time + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 11.93648 + posY: 1.69501567 + posZ: 1.34456229 + rotX: 359.934326 + rotY: 269.999176 + rotZ: 0.010789468 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12319 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Hex. + GMNotes: '' + GUID: 51ea78 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: A Tear in Time + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 11.8615036 + posY: 1.68144655 + posZ: 1.1147728 + rotX: 359.934723 + rotY: 270.006317 + rotZ: 0.0270947572 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12319 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Hex. + GMNotes: '' + GUID: b2f948 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: A Tear in Time + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 12.2340508 + posY: 1.67897737 + posZ: 1.48605072 + rotX: 359.916321 + rotY: 269.997131 + rotZ: 0.0128464671 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '123': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 12320 +- 12320 +- 12319 +- 12319 +- 12319 +Description: '' +GMNotes: '' +GUID: aa9a85 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Temporal Flux +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 8.80716 + posY: 2.373479 + posZ: -8.272785 + rotX: 359.920135 + rotY: 269.974335 + rotZ: 0.0169013552 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Forgotten Age 9dc850/Deck The Boundary Beyond 33800f.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Forgotten Age 9dc850/Deck The Boundary Beyond 33800f.yaml new file mode 100644 index 000000000..c89ead1e1 --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Forgotten Age 9dc850/Deck The Boundary Beyond 33800f.yaml @@ -0,0 +1,1591 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 12742 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/ZgjFcAU.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/976604071425301191/B229EEF649F55376607371CA92C41F117D0862DC/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Item. Relic. + GMNotes: '' + GUID: 22aed2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Relic of Ages + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 94.41685 + posY: 1.78566909 + posZ: 17.0618534 + rotX: 359.992249 + rotY: 269.960938 + rotZ: 180.021576 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12741 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/ZgjFcAU.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/976604071425301191/B229EEF649F55376607371CA92C41F117D0862DC/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Hex. + GMNotes: '' + GUID: 1461d8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Timeline Destabilization + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 94.44421 + posY: 1.77611554 + posZ: 16.61628 + rotX: 359.986481 + rotY: 269.9992 + rotZ: 179.987091 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12741 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/ZgjFcAU.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/976604071425301191/B229EEF649F55376607371CA92C41F117D0862DC/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Hex. + GMNotes: '' + GUID: 93c195 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Timeline Destabilization + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 94.79245 + posY: 1.7665323 + posZ: 16.36651 + rotX: -0.004671531 + rotY: 269.9884 + rotZ: 179.9637 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12741 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/ZgjFcAU.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/976604071425301191/B229EEF649F55376607371CA92C41F117D0862DC/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Hex. + GMNotes: '' + GUID: 677b10 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Timeline Destabilization + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 94.43858 + posY: 1.7568078 + posZ: 16.69952 + rotX: 359.988739 + rotY: 270.003082 + rotZ: 179.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12740 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/ZgjFcAU.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/976604071425301191/B229EEF649F55376607371CA92C41F117D0862DC/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Hex. + GMNotes: '' + GUID: 03fa5a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Window to Another Time + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 94.23834 + posY: 1.71036482 + posZ: 16.7608547 + rotX: 0.0298711918 + rotY: 269.971863 + rotZ: 177.3324 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12740 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/ZgjFcAU.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/976604071425301191/B229EEF649F55376607371CA92C41F117D0862DC/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Hex. + GMNotes: '' + GUID: 71244a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Window to Another Time + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 94.15408 + posY: 1.73756492 + posZ: 16.7805729 + rotX: 359.972534 + rotY: 269.979 + rotZ: 179.98494 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12740 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/ZgjFcAU.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/976604071425301191/B229EEF649F55376607371CA92C41F117D0862DC/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Hex. + GMNotes: '' + GUID: 7fee93 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Window to Another Time + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 94.57947 + posY: 1.7277261 + posZ: 16.5313129 + rotX: 359.959625 + rotY: 270.033478 + rotZ: 180.018768 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12739 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/ZgjFcAU.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/976604071425301191/B229EEF649F55376607371CA92C41F117D0862DC/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Humanoid. Cultist. + GMNotes: '' + GUID: 0ce1b4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Hand of the Brotherhood + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 94.3191147 + posY: 1.71800232 + posZ: 16.77913 + rotX: 0.0143157616 + rotY: 270.040283 + rotZ: 180.007828 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12739 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/ZgjFcAU.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/976604071425301191/B229EEF649F55376607371CA92C41F117D0862DC/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Humanoid. Cultist. + GMNotes: '' + GUID: e64c28 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Hand of the Brotherhood + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 94.21287 + posY: 1.72830784 + posZ: 16.3630219 + rotX: 359.985016 + rotY: 269.9694 + rotZ: 178.902161 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12738 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/ZgjFcAU.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/976604071425301191/B229EEF649F55376607371CA92C41F117D0862DC/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Humanoid. Monster. Serpent. + GMNotes: '' + GUID: 737ecd + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: "Serpent of Tenochtitl\xE1n" + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 93.71264 + posY: 1.69845581 + posZ: 16.8429565 + rotX: 0.0302375387 + rotY: 270.040649 + rotZ: 179.978455 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12737 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/ZgjFcAU.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/976604071425301191/B229EEF649F55376607371CA92C41F117D0862DC/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Humanoid. Serpent. Servitor. Elite. + GMNotes: '' + GUID: 18f1d9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Padma Amrita + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 93.85208 + posY: 1.77091181 + posZ: 17.0013981 + rotX: 356.999969 + rotY: 269.950134 + rotZ: 180.023056 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12736 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/ZgjFcAU.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/976604071425301191/B229EEF649F55376607371CA92C41F117D0862DC/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: "Ancient. Tenochtitl\xE1n." + GMNotes: '' + GUID: 72603b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Sacred Woods + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 94.31341 + posY: 1.67951179 + posZ: 16.70578 + rotX: 359.988739 + rotY: 269.968719 + rotZ: 179.981079 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12735 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/ZgjFcAU.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/976604071425301191/B229EEF649F55376607371CA92C41F117D0862DC/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: "Ancient. Tenochtitl\xE1n." + GMNotes: '' + GUID: 4a2616 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Sacred Woods + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 94.30131 + posY: 1.66988 + posZ: 16.533268 + rotX: 359.982849 + rotY: 269.96814 + rotZ: 179.983124 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12734 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/ZgjFcAU.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/976604071425301191/B229EEF649F55376607371CA92C41F117D0862DC/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: "Ancient. Tenochtitl\xE1n." + GMNotes: '' + GUID: 11e31d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Lake Xochimilco + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 94.47679 + posY: 1.66016221 + posZ: 16.8481312 + rotX: 359.974731 + rotY: 269.980164 + rotZ: 179.958908 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12733 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/ZgjFcAU.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/976604071425301191/B229EEF649F55376607371CA92C41F117D0862DC/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: "Ancient. Tenochtitl\xE1n." + GMNotes: '' + GUID: e3a79d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Lake Xochimilco + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 94.54766 + posY: 1.65052366 + posZ: 16.7718639 + rotX: 359.97876 + rotY: 269.973633 + rotZ: 179.954575 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12732 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/ZgjFcAU.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/976604071425301191/B229EEF649F55376607371CA92C41F117D0862DC/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: "Ancient. Tenochtitl\xE1n." + GMNotes: '' + GUID: 72cf4d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: "Canals of Tenochtitl\xE1n" + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 94.41516 + posY: 1.64064443 + posZ: 16.1187515 + rotX: 359.983917 + rotY: 269.969879 + rotZ: 180.006088 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12731 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/ZgjFcAU.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/976604071425301191/B229EEF649F55376607371CA92C41F117D0862DC/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: "Ancient. Tenochtitl\xE1n." + GMNotes: '' + GUID: 0cec33 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: "Canals of Tenochtitl\xE1n" + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 94.55946 + posY: 1.63108361 + posZ: 17.211668 + rotX: 359.9866 + rotY: 269.969666 + rotZ: 179.985367 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12730 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/ZgjFcAU.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/976604071425301191/B229EEF649F55376607371CA92C41F117D0862DC/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: "Ancient. Tenochtitl\xE1n." + GMNotes: '' + GUID: b5d586 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Chapultepec Hill + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 94.0606461 + posY: 1.62162733 + posZ: 16.7732849 + rotX: 359.978027 + rotY: 269.977844 + rotZ: 179.976151 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12729 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/ZgjFcAU.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/976604071425301191/B229EEF649F55376607371CA92C41F117D0862DC/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: "Ancient. Tenochtitl\xE1n." + GMNotes: '' + GUID: cd7bd2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Chapultepec Hill + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 94.0487747 + posY: 1.61188173 + posZ: 17.127697 + rotX: 359.9868 + rotY: 270.006653 + rotZ: 179.957138 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12728 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/ZgjFcAU.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/976604071425301191/B229EEF649F55376607371CA92C41F117D0862DC/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: "Ancient. Tenochtitl\xE1n." + GMNotes: '' + GUID: b8d52b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: "Temples of Tenochtitl\xE1n" + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 94.09973 + posY: 1.60224473 + posZ: 16.8717842 + rotX: 359.989044 + rotY: 270.023438 + rotZ: 179.94249 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12727 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/ZgjFcAU.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/976604071425301191/B229EEF649F55376607371CA92C41F117D0862DC/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: "Ancient. Tenochtitl\xE1n." + GMNotes: '' + GUID: c097d8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: "Temples of Tenochtitl\xE1n" + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 94.36444 + posY: 1.59257615 + posZ: 16.5568352 + rotX: 359.986084 + rotY: 269.9683 + rotZ: 179.979538 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12726 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/ZgjFcAU.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/976604071425301191/B229EEF649F55376607371CA92C41F117D0862DC/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: "Ancient. Tenochtitl\xE1n." + GMNotes: '' + GUID: a17423 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Templo Mayor + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 94.12874 + posY: 1.582924 + posZ: 16.6292076 + rotX: 359.9892 + rotY: 269.997528 + rotZ: 179.982651 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12725 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/ZgjFcAU.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/976604071425301191/B229EEF649F55376607371CA92C41F117D0862DC/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: "Ancient. Tenochtitl\xE1n." + GMNotes: '' + GUID: f3c531 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Templo Mayor + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 94.2092 + posY: 1.52477944 + posZ: 17.4037762 + rotX: 359.9929 + rotY: 269.997681 + rotZ: 177.534592 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12724 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/ZgjFcAU.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/976604071425301191/B229EEF649F55376607371CA92C41F117D0862DC/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Mexico City. Present-Day. + GMNotes: '' + GUID: f06df7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: "Coyoac\xE1n" + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 94.37829 + posY: 1.56349778 + posZ: 16.95272 + rotX: 359.9874 + rotY: 269.9995 + rotZ: 179.986115 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12723 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/ZgjFcAU.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/976604071425301191/B229EEF649F55376607371CA92C41F117D0862DC/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Mexico City. Present-Day. + GMNotes: '' + GUID: bfd8f6 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Xochimilco + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 94.81279 + posY: 1.55356812 + posZ: 17.4284534 + rotX: 359.984833 + rotY: 270.001465 + rotZ: 179.978119 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12722 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/ZgjFcAU.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/976604071425301191/B229EEF649F55376607371CA92C41F117D0862DC/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Mexico City. Present-Day. + GMNotes: '' + GUID: c4a174 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: "Z\xF3calo" + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 94.06011 + posY: 1.5970062 + posZ: 16.9952183 + rotX: 358.535522 + rotY: 270.12854 + rotZ: 179.1916 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12721 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/ZgjFcAU.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/976604071425301191/B229EEF649F55376607371CA92C41F117D0862DC/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Mexico City. Present-Day. + GMNotes: '' + GUID: 4fce07 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Chapultepec Park + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 94.4215 + posY: 1.54829288 + posZ: 17.1131935 + rotX: 359.472443 + rotY: 270.021362 + rotZ: 179.9901 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12720 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/ZgjFcAU.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/976604071425301191/B229EEF649F55376607371CA92C41F117D0862DC/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Mexico City. Present-Day. + GMNotes: '' + GUID: 67b662 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Metropolitan Cathedral + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 94.45022 + posY: 1.52484822 + posZ: 16.9458218 + rotX: -0.00153678085 + rotY: 269.963928 + rotZ: 179.969742 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12719 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/ZgjFcAU.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/976604071425301191/B229EEF649F55376607371CA92C41F117D0862DC/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Mexico City. Present-Day. + GMNotes: '' + GUID: c26773 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Temple Ruins + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 93.66794 + posY: 1.56757188 + posZ: 16.9602089 + rotX: 359.986023 + rotY: 270.001221 + rotZ: 179.985611 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12718 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/ZgjFcAU.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/976604071425301191/B229EEF649F55376607371CA92C41F117D0862DC/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 3 + GMNotes: '' + GUID: d43edb + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Return Trip + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 94.00696 + posY: 1.56113815 + posZ: 17.2761 + rotX: 359.984955 + rotY: 269.8893 + rotZ: 179.997131 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12717 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/ZgjFcAU.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/976604071425301191/B229EEF649F55376607371CA92C41F117D0862DC/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 2 + GMNotes: '' + GUID: bdadde + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Past and Present + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 94.54945 + posY: 1.55612123 + posZ: 16.69725 + rotX: 359.9885 + rotY: 269.3757 + rotZ: 179.989517 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12716 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/ZgjFcAU.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/976604071425301191/B229EEF649F55376607371CA92C41F117D0862DC/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 1 + GMNotes: '' + GUID: 6f3fa1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Crossing the Threshold + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 95.0135956 + posY: 1.55333722 + posZ: 16.6873856 + rotX: 359.993347 + rotY: 269.9561 + rotZ: 179.982773 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12715 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/ZgjFcAU.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/976604071425301191/B229EEF649F55376607371CA92C41F117D0862DC/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 3 + GMNotes: '' + GUID: a92fa6 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Time Collapsing + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 94.4406052 + posY: 1.55549073 + posZ: 16.834486 + rotX: 359.990051 + rotY: 258.72168 + rotZ: 179.992325 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12714 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/ZgjFcAU.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/976604071425301191/B229EEF649F55376607371CA92C41F117D0862DC/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 2 + GMNotes: '' + GUID: c988f8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Barrier Is Thin + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 94.5367 + posY: 1.57345593 + posZ: 16.6255856 + rotX: 359.9913 + rotY: 269.409668 + rotZ: 179.970276 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12713 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/ZgjFcAU.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/976604071425301191/B229EEF649F55376607371CA92C41F117D0862DC/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 1 + GMNotes: '' + GUID: 9e6717 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Boundary, Broken + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 94.25224 + posY: 1.55163038 + posZ: 17.0401821 + rotX: 359.968628 + rotY: 270.143768 + rotZ: 179.966827 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12712 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/ZgjFcAU.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/976604071425301191/B229EEF649F55376607371CA92C41F117D0862DC/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: The Boundary Beyond + GMNotes: '' + GUID: fd8c43 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Scenario + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 94.3038254 + posY: 1.40663028 + posZ: 17.0217876 + rotX: 359.9805 + rotY: 270.008636 + rotZ: 179.9824 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/ZgjFcAU.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/976604071425301191/B229EEF649F55376607371CA92C41F117D0862DC/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 12742 +- 12741 +- 12741 +- 12741 +- 12740 +- 12740 +- 12740 +- 12739 +- 12739 +- 12738 +- 12737 +- 12736 +- 12735 +- 12734 +- 12733 +- 12732 +- 12731 +- 12730 +- 12729 +- 12728 +- 12727 +- 12726 +- 12725 +- 12724 +- 12723 +- 12722 +- 12721 +- 12720 +- 12719 +- 12718 +- 12717 +- 12716 +- 12715 +- 12714 +- 12713 +- 12712 +Description: '' +GMNotes: '' +GUID: 33800f +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: The Boundary Beyond +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 87.6995544 + posY: 3.578455 + posZ: 5.23795652 + rotX: 0.00865369 + rotY: 269.971619 + rotZ: 1.47523272 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Forgotten Age 9dc850/Deck The City of Archives 3a0a17.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Forgotten Age 9dc850/Deck The City of Archives 3a0a17.yaml new file mode 100644 index 000000000..2dbaf88f2 --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Forgotten Age 9dc850/Deck The City of Archives 3a0a17.yaml @@ -0,0 +1,1935 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 12735 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/m12nk5a.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/954090355584194829/C6D55DDE5652940B4D5CE3163BD9CEDA16237961/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Madness. Paradox. + GMNotes: '' + GUID: 9bed6a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Out of Body Experience + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 100.696342 + posY: 1.547229 + posZ: 16.2115574 + rotX: 359.9883 + rotY: 270.00058 + rotZ: 179.98114 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12735 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/m12nk5a.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/954090355584194829/C6D55DDE5652940B4D5CE3163BD9CEDA16237961/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Madness. Paradox. + GMNotes: '' + GUID: 9bed6a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Out of Body Experience + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 100.69635 + posY: 1.55815125 + posZ: 16.2115612 + rotX: 359.988342 + rotY: 270.0006 + rotZ: 179.9807 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12735 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/m12nk5a.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/954090355584194829/C6D55DDE5652940B4D5CE3163BD9CEDA16237961/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Madness. Paradox. + GMNotes: '' + GUID: 31e37e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Out of Body Experience + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 100.696358 + posY: 1.5437057 + posZ: 16.2115936 + rotX: 359.9887 + rotY: 270.000671 + rotZ: 179.962723 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12735 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/m12nk5a.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/954090355584194829/C6D55DDE5652940B4D5CE3163BD9CEDA16237961/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Madness. Paradox. + GMNotes: '' + GUID: 9bed6a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Out of Body Experience + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 100.668633 + posY: 1.39907324 + posZ: 16.03148 + rotX: 359.980774 + rotY: 270.00058 + rotZ: 179.98764 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12734 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/m12nk5a.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/954090355584194829/C6D55DDE5652940B4D5CE3163BD9CEDA16237961/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Hex. + GMNotes: '' + GUID: 41e5c9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Captive Mind + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 112.638779 + posY: 1.40413809 + posZ: 11.1730461 + rotX: 359.9875 + rotY: 270.0 + rotZ: 179.984619 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12734 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/m12nk5a.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/954090355584194829/C6D55DDE5652940B4D5CE3163BD9CEDA16237961/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Hex. + GMNotes: '' + GUID: dedf7d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Captive Mind + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 113.607536 + posY: 1.55025208 + posZ: 10.5894785 + rotX: 359.9859 + rotY: 270.000122 + rotZ: 179.986008 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12733 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/m12nk5a.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/954090355584194829/C6D55DDE5652940B4D5CE3163BD9CEDA16237961/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Terror. + GMNotes: '' + GUID: 470d38 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Lost Humanity + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 109.890739 + posY: 1.40496814 + posZ: 10.31909 + rotX: 359.9874 + rotY: 270.0031 + rotZ: 179.984543 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12733 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/m12nk5a.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/954090355584194829/C6D55DDE5652940B4D5CE3163BD9CEDA16237961/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Terror. + GMNotes: '' + GUID: e8f268 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Lost Humanity + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 109.291313 + posY: 1.45485353 + posZ: 10.27326 + rotX: 359.9874 + rotY: 270.019531 + rotZ: 179.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12732 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/m12nk5a.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/954090355584194829/C6D55DDE5652940B4D5CE3163BD9CEDA16237961/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Injury. Terror. + GMNotes: '' + GUID: 66f462 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Cruel Interrogations + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 110.903969 + posY: 1.40463054 + posZ: 10.68327 + rotX: 359.987518 + rotY: 269.990082 + rotZ: 179.984467 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12732 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/m12nk5a.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/954090355584194829/C6D55DDE5652940B4D5CE3163BD9CEDA16237961/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Injury. Terror. + GMNotes: '' + GUID: dea5d3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Cruel Interrogations + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 113.308006 + posY: 1.61655319 + posZ: 11.1985064 + rotX: 356.430817 + rotY: 269.682129 + rotZ: 186.19754 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12732 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/m12nk5a.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/954090355584194829/C6D55DDE5652940B4D5CE3163BD9CEDA16237961/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Injury. Terror. + GMNotes: '' + GUID: e32948 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Cruel Interrogations + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 111.291008 + posY: 1.47921479 + posZ: 12.7747631 + rotX: 359.981079 + rotY: 270.009827 + rotZ: 175.984787 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12731 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/m12nk5a.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/954090355584194829/C6D55DDE5652940B4D5CE3163BD9CEDA16237961/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Power. Terror. + GMNotes: '' + GUID: 470a03 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Yithian Presence + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 112.149414 + posY: 1.40376782 + posZ: 12.9302635 + rotX: 359.987427 + rotY: 270.0 + rotZ: 179.984543 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12731 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/m12nk5a.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/954090355584194829/C6D55DDE5652940B4D5CE3163BD9CEDA16237961/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Power. Terror. + GMNotes: '' + GUID: '621078' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Yithian Presence + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 111.933441 + posY: 1.40460384 + posZ: 10.0067587 + rotX: 359.987427 + rotY: 270.0 + rotZ: 179.984543 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12731 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/m12nk5a.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/954090355584194829/C6D55DDE5652940B4D5CE3163BD9CEDA16237961/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Power. Terror. + GMNotes: '' + GUID: a9b607 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Yithian Presence + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 115.838516 + posY: 1.40315115 + posZ: 12.2130985 + rotX: 359.987427 + rotY: 270.000031 + rotZ: 179.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12730 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/m12nk5a.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/954090355584194829/C6D55DDE5652940B4D5CE3163BD9CEDA16237961/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Monster. Yithian. + GMNotes: '' + GUID: e7faab + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Scholar from Yith + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 110.272522 + posY: 1.40519476 + posZ: 9.168564 + rotX: 359.987427 + rotY: 270.0 + rotZ: 179.984543 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12730 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/m12nk5a.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/954090355584194829/C6D55DDE5652940B4D5CE3163BD9CEDA16237961/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Monster. Yithian. + GMNotes: '' + GUID: 312d52 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Scholar from Yith + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 109.30513 + posY: 1.4046725 + posZ: 11.8921614 + rotX: 359.987427 + rotY: 270.000031 + rotZ: 179.984543 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12730 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/m12nk5a.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/954090355584194829/C6D55DDE5652940B4D5CE3163BD9CEDA16237961/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Monster. Yithian. + GMNotes: '' + GUID: b0b1bb + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Scholar from Yith + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 112.687172 + posY: 1.40357 + posZ: 13.2260723 + rotX: 359.987427 + rotY: 270.0 + rotZ: 179.984543 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12729 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/m12nk5a.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/954090355584194829/C6D55DDE5652940B4D5CE3163BD9CEDA16237961/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Monster. Yithian. + GMNotes: '' + GUID: ff0f15 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Scientist of Yith + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 105.263779 + posY: 1.69665086 + posZ: 16.2934456 + rotX: 359.980316 + rotY: 269.978058 + rotZ: 179.994125 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12729 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/m12nk5a.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/954090355584194829/C6D55DDE5652940B4D5CE3163BD9CEDA16237961/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Monster. Yithian. + GMNotes: '' + GUID: e6edac + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Scientist of Yith + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 105.778412 + posY: 1.68034112 + posZ: 16.4246788 + rotX: -0.003753976 + rotY: 269.965027 + rotZ: 179.872849 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12728 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/m12nk5a.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/954090355584194829/C6D55DDE5652940B4D5CE3163BD9CEDA16237961/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Monster. Yithian. + GMNotes: '' + GUID: 0fcf87 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Keeper of the Great Library + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 106.0672 + posY: 1.67713511 + posZ: 16.0551262 + rotX: 359.988129 + rotY: 269.999146 + rotZ: 179.984833 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12728 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/m12nk5a.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/954090355584194829/C6D55DDE5652940B4D5CE3163BD9CEDA16237961/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Monster. Yithian. + GMNotes: '' + GUID: b35444 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Keeper of the Great Library + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 105.817482 + posY: 1.66949761 + posZ: 15.8694258 + rotX: 359.98877 + rotY: 269.99884 + rotZ: 179.974442 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12727 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/m12nk5a.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/954090355584194829/C6D55DDE5652940B4D5CE3163BD9CEDA16237961/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Ally. Yithian + GMNotes: '' + GUID: 8399dd + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Custodian + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 104.636848 + posY: 1.65818655 + posZ: 16.3616848 + rotX: 359.97644 + rotY: 269.968384 + rotZ: 180.0055 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12726 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/m12nk5a.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/954090355584194829/C6D55DDE5652940B4D5CE3163BD9CEDA16237961/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Ancient. Pnakotus. + GMNotes: '' + GUID: 18494c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Towers of Pnakotus + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 105.81752 + posY: 1.64817846 + posZ: 16.1049824 + rotX: 359.9726 + rotY: 270.044128 + rotZ: 179.954559 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12725 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/m12nk5a.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/954090355584194829/C6D55DDE5652940B4D5CE3163BD9CEDA16237961/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Ancient. Pnakotus. + GMNotes: '' + GUID: b80a66 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Deconstruction Room + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 105.797516 + posY: 1.67281175 + posZ: 16.1267872 + rotX: 359.959381 + rotY: 270.0294 + rotZ: 178.036713 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12724 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/m12nk5a.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/954090355584194829/C6D55DDE5652940B4D5CE3163BD9CEDA16237961/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Ancient. Pnakotus. + GMNotes: '' + GUID: 2566f1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Laboratory of the Great Race + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 105.482277 + posY: 1.62900829 + posZ: 15.9010057 + rotX: 359.987274 + rotY: 269.998383 + rotZ: 179.987839 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12723 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/m12nk5a.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/954090355584194829/C6D55DDE5652940B4D5CE3163BD9CEDA16237961/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Ancient. Pnakotus. + GMNotes: '' + GUID: 3bef41 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Yithian Orrery + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 105.501862 + posY: 1.57600391 + posZ: 15.995656 + rotX: 359.966949 + rotY: 270.019867 + rotZ: 177.08905 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12722 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/m12nk5a.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/954090355584194829/C6D55DDE5652940B4D5CE3163BD9CEDA16237961/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Ancient. Pnakotus. + GMNotes: '' + GUID: 896e92 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Great Library + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 105.390846 + posY: 1.60955381 + posZ: 16.0174847 + rotX: 359.993683 + rotY: 270.0187 + rotZ: 180.03334 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12721 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/m12nk5a.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/954090355584194829/C6D55DDE5652940B4D5CE3163BD9CEDA16237961/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Ancient. Pnakotus. + GMNotes: '' + GUID: '121209' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Halls of Pnakotus + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 105.586647 + posY: 1.59967422 + posZ: 16.8675671 + rotX: 359.9907 + rotY: 270.004578 + rotZ: 179.956375 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12720 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/m12nk5a.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/954090355584194829/C6D55DDE5652940B4D5CE3163BD9CEDA16237961/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Ancient. Pnakotus. + GMNotes: '' + GUID: 20f554 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Halls of Pnakotus + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 106.168839 + posY: 1.59018493 + posZ: 15.97843 + rotX: 359.988373 + rotY: 269.9972 + rotZ: 179.982864 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12719 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/m12nk5a.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/954090355584194829/C6D55DDE5652940B4D5CE3163BD9CEDA16237961/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Ancient. Pnakotus. + GMNotes: '' + GUID: ed1363 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Halls of Pnakotus + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 105.760704 + posY: 1.5806129 + posZ: 15.8659143 + rotX: 359.988342 + rotY: 270.000031 + rotZ: 179.988388 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12718 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/m12nk5a.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/954090355584194829/C6D55DDE5652940B4D5CE3163BD9CEDA16237961/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Ancient. Pnakotus. + GMNotes: '' + GUID: 1dc722 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Interview Room + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 105.10997 + posY: 1.57130122 + posZ: 16.09458 + rotX: 359.963928 + rotY: 270.0467 + rotZ: 179.979172 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12717 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/m12nk5a.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/954090355584194829/C6D55DDE5652940B4D5CE3163BD9CEDA16237961/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Ancient. Pnakotus. + GMNotes: '' + GUID: 2fa9e0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Interview Room + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 105.553635 + posY: 1.56158113 + posZ: 16.0647659 + rotX: 359.9893 + rotY: 269.996033 + rotZ: 179.9927 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12716 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/m12nk5a.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/954090355584194829/C6D55DDE5652940B4D5CE3163BD9CEDA16237961/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Ancient. Pnakotus. + GMNotes: '' + GUID: 4440de + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Interview Room + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 105.262932 + posY: 1.55146348 + posZ: 15.8823137 + rotX: 359.985077 + rotY: 269.999 + rotZ: 179.988388 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12715 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/m12nk5a.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/954090355584194829/C6D55DDE5652940B4D5CE3163BD9CEDA16237961/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Monster. Yithian. + GMNotes: '' + GUID: 1f68fb + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Body of a Yithian + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 105.657951 + posY: 1.40525508 + posZ: 12.7021208 + rotX: 359.984558 + rotY: 180.0 + rotZ: 180.012573 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12715 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/m12nk5a.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/954090355584194829/C6D55DDE5652940B4D5CE3163BD9CEDA16237961/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Monster. Yithian. + GMNotes: '' + GUID: 26dd46 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Body of a Yithian + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 108.044472 + posY: 1.40483284 + posZ: 12.3247776 + rotX: 359.984558 + rotY: 180.0 + rotZ: 180.012573 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12715 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/m12nk5a.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/954090355584194829/C6D55DDE5652940B4D5CE3163BD9CEDA16237961/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Monster. Yithian. + GMNotes: '' + GUID: '707456' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Body of a Yithian + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 111.413422 + posY: 1.4039948 + posZ: 12.6882229 + rotX: 359.984558 + rotY: 180.0 + rotZ: 180.012573 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12715 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/m12nk5a.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/954090355584194829/C6D55DDE5652940B4D5CE3163BD9CEDA16237961/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Monster. Yithian. + GMNotes: '' + GUID: dc553a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Body of a Yithian + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 114.478004 + posY: 1.40309012 + posZ: 13.546752 + rotX: 359.984558 + rotY: 180.000031 + rotZ: 180.012573 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12714 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/m12nk5a.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/954090355584194829/C6D55DDE5652940B4D5CE3163BD9CEDA16237961/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 3 + GMNotes: '' + GUID: caba36 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Repossession + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 105.726486 + posY: 1.55871224 + posZ: 16.3885117 + rotX: 359.9898 + rotY: 269.189117 + rotZ: 179.985474 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12713 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/m12nk5a.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/954090355584194829/C6D55DDE5652940B4D5CE3163BD9CEDA16237961/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 2 + GMNotes: '' + GUID: '794903' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Restricted Access + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 105.300522 + posY: 1.55389142 + posZ: 16.01644 + rotX: 359.9918 + rotY: 269.3777 + rotZ: 179.990936 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12712 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/m12nk5a.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/954090355584194829/C6D55DDE5652940B4D5CE3163BD9CEDA16237961/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 1 + GMNotes: '' + GUID: 10c564 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Exploring Pnakotus + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 105.151588 + posY: 1.55116165 + posZ: 15.8170223 + rotX: 359.990936 + rotY: 269.4172 + rotZ: 179.998138 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12711 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/m12nk5a.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/954090355584194829/C6D55DDE5652940B4D5CE3163BD9CEDA16237961/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 3 + GMNotes: '' + GUID: ef8642 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Humanity Fading + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 105.60981 + posY: 1.55333519 + posZ: 16.0090446 + rotX: 359.978363 + rotY: 269.350616 + rotZ: 179.983917 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12710 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/m12nk5a.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/954090355584194829/C6D55DDE5652940B4D5CE3163BD9CEDA16237961/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 2 + GMNotes: '' + GUID: 2d1eec + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Lost Memories + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 105.898582 + posY: 1.5640192 + posZ: 15.80097 + rotX: 359.925385 + rotY: 269.2451 + rotZ: 180.303909 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12709 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/m12nk5a.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/954090355584194829/C6D55DDE5652940B4D5CE3163BD9CEDA16237961/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 1 + GMNotes: '' + GUID: 7347f2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: City of the Great Race + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 105.4616 + posY: 1.54923582 + posZ: 16.0654049 + rotX: 359.986725 + rotY: 269.2236 + rotZ: 179.974335 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12708 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/m12nk5a.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/954090355584194829/C6D55DDE5652940B4D5CE3163BD9CEDA16237961/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: The City of Archives + GMNotes: '' + GUID: e9b3c5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Scenario + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 105.533142 + posY: 1.40427065 + posZ: 16.1892643 + rotX: 359.9811 + rotY: 270.014 + rotZ: 179.978622 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/m12nk5a.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/954090355584194829/C6D55DDE5652940B4D5CE3163BD9CEDA16237961/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 12735 +- 12735 +- 12735 +- 12735 +- 12734 +- 12734 +- 12733 +- 12733 +- 12732 +- 12732 +- 12732 +- 12731 +- 12731 +- 12731 +- 12730 +- 12730 +- 12730 +- 12729 +- 12729 +- 12728 +- 12728 +- 12727 +- 12726 +- 12725 +- 12724 +- 12723 +- 12722 +- 12721 +- 12720 +- 12719 +- 12718 +- 12717 +- 12716 +- 12715 +- 12715 +- 12715 +- 12715 +- 12714 +- 12713 +- 12712 +- 12711 +- 12710 +- 12709 +- 12708 +Description: '' +GMNotes: '' +GUID: 3a0a17 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: The City of Archives +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 88.41274 + posY: 3.58342123 + posZ: 5.15905571 + rotX: 357.7171 + rotY: 269.9077 + rotZ: 1.49042606 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Forgotten Age 9dc850/Deck The Doom of Eztli 383c89.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Forgotten Age 9dc850/Deck The Doom of Eztli 383c89.yaml new file mode 100644 index 000000000..323a2c7a5 --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Forgotten Age 9dc850/Deck The Doom of Eztli 383c89.yaml @@ -0,0 +1,688 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 12267 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '122': + BackIsHidden: true + BackURL: https://i.imgur.com/RpzEfmS.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393194495/027101CA5C626EBA0E4F76F3F15569329F81DE3C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Forgotten. Ruins. + GMNotes: '' + GUID: 2be806 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Chamber of Time + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 91.5667648 + posY: 1.58558714 + posZ: 8.969295 + rotX: 359.98526 + rotY: 270.0005 + rotZ: 179.983749 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12266 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '122': + BackIsHidden: true + BackURL: https://i.imgur.com/RpzEfmS.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393194495/027101CA5C626EBA0E4F76F3F15569329F81DE3C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Ancient. Ruins. + GMNotes: '' + GUID: 43dc89 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Secret Passage + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 92.74763 + posY: 1.57573926 + posZ: 8.778662 + rotX: 359.993683 + rotY: 269.9876 + rotZ: 179.977585 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12265 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '122': + BackIsHidden: true + BackURL: https://i.imgur.com/RpzEfmS.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393194495/027101CA5C626EBA0E4F76F3F15569329F81DE3C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Ancient. Ruins. + GMNotes: '' + GUID: fbe6e8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Underground Ruins + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 92.6038 + posY: 1.56609106 + posZ: 8.788659 + rotX: 359.990662 + rotY: 269.9989 + rotZ: 179.989151 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12264 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '122': + BackIsHidden: true + BackURL: https://i.imgur.com/RpzEfmS.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393194495/027101CA5C626EBA0E4F76F3F15569329F81DE3C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Ancient. Ruins. + GMNotes: '' + GUID: 70904c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Burial Pit + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 92.4839554 + posY: 1.55644572 + posZ: 8.8417635 + rotX: 359.992859 + rotY: 269.991638 + rotZ: 179.979 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12263 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '122': + BackIsHidden: true + BackURL: https://i.imgur.com/RpzEfmS.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393194495/027101CA5C626EBA0E4F76F3F15569329F81DE3C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Ancient. Ruins. + GMNotes: '' + GUID: da2655 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Grand Chamber + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 92.7511139 + posY: 1.54587853 + posZ: 8.848999 + rotX: -0.00486217346 + rotY: 269.983215 + rotZ: 179.977188 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12262 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '122': + BackIsHidden: true + BackURL: https://i.imgur.com/RpzEfmS.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393194495/027101CA5C626EBA0E4F76F3F15569329F81DE3C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Ancient. Ruins. + GMNotes: '' + GUID: 58bf8d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ancient Hall + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 92.2386551 + posY: 1.5371083 + posZ: 8.957218 + rotX: -0.0005781982 + rotY: 269.9624 + rotZ: 179.965469 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12261 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '122': + BackIsHidden: true + BackURL: https://i.imgur.com/RpzEfmS.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393194495/027101CA5C626EBA0E4F76F3F15569329F81DE3C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Humanoid. Monster. Serpent. Elite. + GMNotes: '' + GUID: c6b3fc + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Harbinger of Valusia + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 91.95295 + posY: 1.527577 + posZ: 8.818098 + rotX: 359.9852 + rotY: 269.988922 + rotZ: 179.980927 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12260 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '122': + BackIsHidden: true + BackURL: https://i.imgur.com/RpzEfmS.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393194495/027101CA5C626EBA0E4F76F3F15569329F81DE3C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Item. Relic. + GMNotes: '' + GUID: 8df4a7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Relic of Ages + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 92.16451 + posY: 1.55068445 + posZ: 8.796582 + rotX: -0.00281110313 + rotY: 269.981079 + rotZ: 179.217575 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12259 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '122': + BackIsHidden: true + BackURL: https://i.imgur.com/RpzEfmS.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393194495/027101CA5C626EBA0E4F76F3F15569329F81DE3C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: "Ancient. Ruins.\r" + GMNotes: '' + GUID: e5f222 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Entryway + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 92.19433 + posY: 1.58743429 + posZ: 9.311561 + rotX: 359.985382 + rotY: 270.0469 + rotZ: 181.25206 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12258 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '122': + BackIsHidden: true + BackURL: https://i.imgur.com/RpzEfmS.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393194495/027101CA5C626EBA0E4F76F3F15569329F81DE3C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 3 + GMNotes: '' + GUID: 89593e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Escape the Ruins + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 92.74764 + posY: 1.55856192 + posZ: 9.077772 + rotX: 359.9937 + rotY: 269.081116 + rotZ: 179.988724 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12257 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '122': + BackIsHidden: true + BackURL: https://i.imgur.com/RpzEfmS.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393194495/027101CA5C626EBA0E4F76F3F15569329F81DE3C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 2 + GMNotes: '' + GUID: 6a9acd + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Magic and Science + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 92.936676 + posY: 1.55549085 + posZ: 9.136077 + rotX: 359.973633 + rotY: 273.492859 + rotZ: 179.985825 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12256 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '122': + BackIsHidden: true + BackURL: https://i.imgur.com/RpzEfmS.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393194495/027101CA5C626EBA0E4F76F3F15569329F81DE3C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 1 + GMNotes: '' + GUID: 87937f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Into the Ruins + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 92.74613 + posY: 1.56570983 + posZ: 8.949801 + rotX: 0.178097919 + rotY: 269.3002 + rotZ: 179.944061 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12255 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '122': + BackIsHidden: true + BackURL: https://i.imgur.com/RpzEfmS.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393194495/027101CA5C626EBA0E4F76F3F15569329F81DE3C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 2 + GMNotes: '' + GUID: a5a713 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Temple Warden + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 92.29842 + posY: 1.57155883 + posZ: 9.310215 + rotX: 359.990143 + rotY: 269.821655 + rotZ: 179.982132 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12254 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '122': + BackIsHidden: true + BackURL: https://i.imgur.com/RpzEfmS.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393194495/027101CA5C626EBA0E4F76F3F15569329F81DE3C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 1 + GMNotes: '' + GUID: 2376d1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Something Stirs... + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 91.9289856 + posY: 1.55414772 + posZ: 8.842492 + rotX: 359.9914 + rotY: 269.1511 + rotZ: 179.983826 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12253 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '122': + BackIsHidden: true + BackURL: https://i.imgur.com/RpzEfmS.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393194495/027101CA5C626EBA0E4F76F3F15569329F81DE3C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: The Doom of Eztli + GMNotes: '' + GUID: 964bf2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Scenario + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 92.25744 + posY: 1.409087 + posZ: 8.998877 + rotX: 359.980835 + rotY: 270.0092 + rotZ: 179.981079 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '122': + BackIsHidden: true + BackURL: https://i.imgur.com/RpzEfmS.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393194495/027101CA5C626EBA0E4F76F3F15569329F81DE3C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 12267 +- 12266 +- 12265 +- 12264 +- 12263 +- 12262 +- 12261 +- 12260 +- 12259 +- 12258 +- 12257 +- 12256 +- 12255 +- 12254 +- 12253 +Description: '' +GMNotes: '' +GUID: 383c89 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: The Doom of Eztli +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 87.91911 + posY: 3.44551468 + posZ: 4.715514 + rotX: 359.442657 + rotY: 269.922058 + rotZ: 3.7358253 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Forgotten Age 9dc850/Deck The Untamed Wilds c1a740.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Forgotten Age 9dc850/Deck The Untamed Wilds c1a740.yaml new file mode 100644 index 000000000..e04ea611f --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Forgotten Age 9dc850/Deck The Untamed Wilds c1a740.yaml @@ -0,0 +1,523 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 12252 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '122': + BackIsHidden: true + BackURL: https://i.imgur.com/RpzEfmS.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393194495/027101CA5C626EBA0E4F76F3F15569329F81DE3C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Ancient. Ruins. + GMNotes: '' + GUID: 17871b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ruins of Eztli + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 96.2189255 + posY: 1.59282887 + posZ: 1.17133462 + rotX: 359.9877 + rotY: 269.981262 + rotZ: 177.501984 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12251 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '122': + BackIsHidden: true + BackURL: https://i.imgur.com/RpzEfmS.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393194495/027101CA5C626EBA0E4F76F3F15569329F81DE3C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Humanoid. Eztli. Elite. + GMNotes: '' + GUID: 73d855 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ichtaca + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 96.3385544 + posY: 1.538362 + posZ: 1.07290018 + rotX: 359.993347 + rotY: 269.995361 + rotZ: 179.988 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12250 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '122': + BackIsHidden: true + BackURL: https://i.imgur.com/RpzEfmS.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393194495/027101CA5C626EBA0E4F76F3F15569329F81DE3C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Ally. Wayfarer. + GMNotes: '' + GUID: 1b9dbf + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Alejandro Vela + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 96.29026 + posY: 1.53130889 + posZ: 0.5600051 + rotX: -0.00466950145 + rotY: 270.025177 + rotZ: 180.8297 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 129849 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1298': + BackIsHidden: true + BackURL: https://i.imgur.com/RpzEfmS.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393194495/027101CA5C626EBA0E4F76F3F15569329F81DE3C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Campsite. Jungle. + GMNotes: '' + GUID: 2ada4f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Expedition Camp + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 95.91954 + posY: 1.57147944 + posZ: 0.9464667 + rotX: 359.980377 + rotY: 270.0098 + rotZ: 179.981812 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 129848 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1298': + BackIsHidden: true + BackURL: https://i.imgur.com/RpzEfmS.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393194495/027101CA5C626EBA0E4F76F3F15569329F81DE3C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 3 + GMNotes: '' + GUID: 54ef29 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Guarded Ruins + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 96.19737 + posY: 1.56486714 + posZ: 1.3791306 + rotX: -0.00436160667 + rotY: 269.9837 + rotZ: 179.990585 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 129847 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1298': + BackIsHidden: true + BackURL: https://i.imgur.com/RpzEfmS.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393194495/027101CA5C626EBA0E4F76F3F15569329F81DE3C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 3 + GMNotes: '' + GUID: 79390e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Search for the Ruins + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 96.69798 + posY: 1.559871 + posZ: 0.9633721 + rotX: 359.988342 + rotY: 270.000977 + rotZ: 179.989868 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 129846 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1298': + BackIsHidden: true + BackURL: https://i.imgur.com/RpzEfmS.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393194495/027101CA5C626EBA0E4F76F3F15569329F81DE3C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 2 + GMNotes: '' + GUID: 487d1f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Huntress of the Eztli + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 96.66484 + posY: 1.55591571 + posZ: 0.987841666 + rotX: 359.290375 + rotY: 269.02182 + rotZ: 180.896057 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 129845 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1298': + BackIsHidden: true + BackURL: https://i.imgur.com/RpzEfmS.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393194495/027101CA5C626EBA0E4F76F3F15569329F81DE3C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 1 + GMNotes: '' + GUID: b77109 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Exploring the Rainforest + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 96.27689 + posY: 1.55939567 + posZ: 0.766602159 + rotX: 359.988068 + rotY: 269.9699 + rotZ: 179.987335 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 129844 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1298': + BackIsHidden: true + BackURL: https://i.imgur.com/RpzEfmS.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393194495/027101CA5C626EBA0E4F76F3F15569329F81DE3C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 2 + GMNotes: '' + GUID: 9a2bf1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Intruders + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 95.9796448 + posY: 1.57302558 + posZ: 1.26838446 + rotX: 359.988 + rotY: 270.0035 + rotZ: 179.984543 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 129843 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1298': + BackIsHidden: true + BackURL: https://i.imgur.com/RpzEfmS.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393194495/027101CA5C626EBA0E4F76F3F15569329F81DE3C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 1 + GMNotes: '' + GUID: 9f7d9a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Expedition into the Wild + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 96.1844559 + posY: 1.58408546 + posZ: 0.8713564 + rotX: 359.986877 + rotY: 269.9848 + rotZ: 181.643753 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 129842 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1298': + BackIsHidden: true + BackURL: https://i.imgur.com/RpzEfmS.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393194495/027101CA5C626EBA0E4F76F3F15569329F81DE3C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: The Untamed Wilds + GMNotes: '' + GUID: 7f1614 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Scenario + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 96.1951141 + posY: 1.4105854 + posZ: 1.07703912 + rotX: 359.9901 + rotY: 269.98822 + rotZ: 179.994522 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '122': + BackIsHidden: true + BackURL: https://i.imgur.com/RpzEfmS.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393194495/027101CA5C626EBA0E4F76F3F15569329F81DE3C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + '1298': + BackIsHidden: true + BackURL: https://i.imgur.com/RpzEfmS.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393194495/027101CA5C626EBA0E4F76F3F15569329F81DE3C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 12252 +- 12251 +- 12250 +- 129849 +- 129848 +- 129847 +- 129846 +- 129845 +- 129844 +- 129843 +- 129842 +Description: '' +GMNotes: '' +GUID: c1a740 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: The Untamed Wilds +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 87.93889 + posY: 3.41706777 + posZ: 4.49459553 + rotX: 359.558655 + rotY: 269.926636 + rotZ: 3.53525782 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Forgotten Age 9dc850/Deck Threads of Fate 5419e6.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Forgotten Age 9dc850/Deck Threads of Fate 5419e6.yaml new file mode 100644 index 000000000..27dc8360f --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Forgotten Age 9dc850/Deck Threads of Fate 5419e6.yaml @@ -0,0 +1,1763 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 12245 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '122': + BackIsHidden: true + BackURL: https://i.imgur.com/No3PMAy.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159325148/B25E4760A8FFC5A71DFA1DE038D6CA8A74C7AE0C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Item. Tome. + GMNotes: '' + GUID: '891282' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Expedition Journal + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 83.8095 + posY: 1.83077276 + posZ: 1.77573037 + rotX: 359.990173 + rotY: 270.000366 + rotZ: 179.990219 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12244 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '122': + BackIsHidden: true + BackURL: https://i.imgur.com/No3PMAy.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159325148/B25E4760A8FFC5A71DFA1DE038D6CA8A74C7AE0C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Ally. Eztli. Wayfarer. + GMNotes: '' + GUID: d6cd01 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ichtaca + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 83.8797455 + posY: 1.821291 + posZ: 1.35523689 + rotX: 359.981 + rotY: 270.00882 + rotZ: 179.976669 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12243 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '122': + BackIsHidden: true + BackURL: https://i.imgur.com/No3PMAy.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159325148/B25E4760A8FFC5A71DFA1DE038D6CA8A74C7AE0C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Hex. + GMNotes: '' + GUID: f6e2b8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Conspiracy of Blood + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 84.679245 + posY: 1.80296457 + posZ: 1.79692626 + rotX: 358.7038 + rotY: 270.019318 + rotZ: 178.318954 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12243 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '122': + BackIsHidden: true + BackURL: https://i.imgur.com/No3PMAy.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159325148/B25E4760A8FFC5A71DFA1DE038D6CA8A74C7AE0C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Hex. + GMNotes: '' + GUID: '776222' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Conspiracy of Blood + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 83.64849 + posY: 1.80282319 + posZ: 1.68001068 + rotX: 359.9899 + rotY: 270.000031 + rotZ: 179.987717 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12242 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '122': + BackIsHidden: true + BackURL: https://i.imgur.com/No3PMAy.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159325148/B25E4760A8FFC5A71DFA1DE038D6CA8A74C7AE0C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Mystery. + GMNotes: '' + GUID: e417e8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Nobody's Home + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 83.2559357 + posY: 1.793434 + posZ: 0.996721566 + rotX: 359.989929 + rotY: 270.0 + rotZ: 179.98764 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12242 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '122': + BackIsHidden: true + BackURL: https://i.imgur.com/No3PMAy.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159325148/B25E4760A8FFC5A71DFA1DE038D6CA8A74C7AE0C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Mystery. + GMNotes: '' + GUID: dd17ff + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Nobody's Home + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 83.8735657 + posY: 1.78353107 + posZ: 1.35551107 + rotX: 359.9898 + rotY: 270.0 + rotZ: 179.987564 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12241 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '122': + BackIsHidden: true + BackURL: https://i.imgur.com/No3PMAy.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159325148/B25E4760A8FFC5A71DFA1DE038D6CA8A74C7AE0C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Scheme. + GMNotes: '' + GUID: e24635 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Secret Must Be Kept + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 83.93091 + posY: 1.76830757 + posZ: 1.36005628 + rotX: 359.990356 + rotY: 270.000275 + rotZ: 179.988373 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12241 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '122': + BackIsHidden: true + BackURL: https://i.imgur.com/No3PMAy.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159325148/B25E4760A8FFC5A71DFA1DE038D6CA8A74C7AE0C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Scheme. + GMNotes: '' + GUID: 8d1b30 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Secret Must Be Kept + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 84.33972 + posY: 1.76415 + posZ: 1.2253269 + rotX: 359.989838 + rotY: 270.0 + rotZ: 179.986633 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12241 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '122': + BackIsHidden: true + BackURL: https://i.imgur.com/No3PMAy.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159325148/B25E4760A8FFC5A71DFA1DE038D6CA8A74C7AE0C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Scheme. + GMNotes: '' + GUID: af5c41 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Secret Must Be Kept + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 83.54061 + posY: 1.75352752 + posZ: 1.77359641 + rotX: 359.9902 + rotY: 269.9999 + rotZ: 179.987762 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12240 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '122': + BackIsHidden: true + BackURL: https://i.imgur.com/No3PMAy.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159325148/B25E4760A8FFC5A71DFA1DE038D6CA8A74C7AE0C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Arkham. + GMNotes: '' + GUID: 7c92d8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Town Hall + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 84.17139 + posY: 1.743716 + posZ: 1.800933 + rotX: 359.9942 + rotY: 269.9938 + rotZ: 179.980255 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12239 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '122': + BackIsHidden: true + BackURL: https://i.imgur.com/No3PMAy.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159325148/B25E4760A8FFC5A71DFA1DE038D6CA8A74C7AE0C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Arkham. + GMNotes: '' + GUID: fbfaec + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Curiositie Shoppe + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 84.36169 + posY: 1.73409951 + posZ: 1.55706394 + rotX: 359.9875 + rotY: 270.0005 + rotZ: 179.985321 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12238 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '122': + BackIsHidden: true + BackURL: https://i.imgur.com/No3PMAy.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159325148/B25E4760A8FFC5A71DFA1DE038D6CA8A74C7AE0C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Arkham. + GMNotes: '' + GUID: 1568bc + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Velma's Diner + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 83.40721 + posY: 1.72458625 + posZ: 1.82523692 + rotX: 359.98764 + rotY: 270.002441 + rotZ: 179.988327 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12237 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '122': + BackIsHidden: true + BackURL: https://i.imgur.com/No3PMAy.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159325148/B25E4760A8FFC5A71DFA1DE038D6CA8A74C7AE0C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 3e + GMNotes: '' + GUID: d27333 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Brother Is Revealed + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 83.9773 + posY: 1.71488929 + posZ: 1.36854291 + rotX: 359.990234 + rotY: 269.242 + rotZ: 179.988678 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12236 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '122': + BackIsHidden: true + BackURL: https://i.imgur.com/No3PMAy.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159325148/B25E4760A8FFC5A71DFA1DE038D6CA8A74C7AE0C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 3e + GMNotes: '' + GUID: 054826 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Strange Occurrences + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 84.29069 + posY: 1.70513475 + posZ: 1.59690487 + rotX: 0.00740803732 + rotY: 269.552917 + rotZ: 180.0076 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12235 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '122': + BackIsHidden: true + BackURL: https://i.imgur.com/No3PMAy.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159325148/B25E4760A8FFC5A71DFA1DE038D6CA8A74C7AE0C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 2e + GMNotes: '' + GUID: c8b7a2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Strange Relics + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 84.1010742 + posY: 1.69448411 + posZ: 1.87373161 + rotX: 359.9867 + rotY: 270.853638 + rotZ: 179.989273 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12234 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '122': + BackIsHidden: true + BackURL: https://i.imgur.com/No3PMAy.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159325148/B25E4760A8FFC5A71DFA1DE038D6CA8A74C7AE0C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 2e + GMNotes: '' + GUID: 1a31dd + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Strange Relics + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 83.87122 + posY: 1.6859467 + posZ: 1.86969209 + rotX: 359.986877 + rotY: 269.24115 + rotZ: 179.989182 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12232 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '122': + BackIsHidden: true + BackURL: https://i.imgur.com/No3PMAy.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159325148/B25E4760A8FFC5A71DFA1DE038D6CA8A74C7AE0C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 2e + GMNotes: '' + GUID: 926c99 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Cave of Darkness + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 84.04345 + posY: 1.69557834 + posZ: 1.77295506 + rotX: 359.990051 + rotY: 270.77066 + rotZ: 181.051941 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12233 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '122': + BackIsHidden: true + BackURL: https://i.imgur.com/No3PMAy.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159325148/B25E4760A8FFC5A71DFA1DE038D6CA8A74C7AE0C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 2e + GMNotes: '' + GUID: 3f9aaf + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Cave of Darkness + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 83.91341 + posY: 1.658221 + posZ: 1.12377918 + rotX: 359.978943 + rotY: 269.176025 + rotZ: 179.924622 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12231 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '122': + BackIsHidden: true + BackURL: https://i.imgur.com/No3PMAy.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159325148/B25E4760A8FFC5A71DFA1DE038D6CA8A74C7AE0C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 1e + GMNotes: '' + GUID: 3757b7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Guardian's Inquiry + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 84.0282 + posY: 1.65582156 + posZ: 1.08077419 + rotX: 359.9881 + rotY: 269.085754 + rotZ: 179.994415 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12230 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '122': + BackIsHidden: true + BackURL: https://i.imgur.com/No3PMAy.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159325148/B25E4760A8FFC5A71DFA1DE038D6CA8A74C7AE0C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 1e + GMNotes: '' + GUID: 28ebe1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Trial of the Huntress + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 84.1850739 + posY: 1.64724 + posZ: 1.58425438 + rotX: 359.994171 + rotY: 269.179657 + rotZ: 179.992615 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12229 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '122': + BackIsHidden: true + BackURL: https://i.imgur.com/No3PMAy.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159325148/B25E4760A8FFC5A71DFA1DE038D6CA8A74C7AE0C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 3c + GMNotes: '' + GUID: c21ad7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Alejandro's Plight + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 84.38008 + posY: 1.63742959 + posZ: 1.744458 + rotX: 359.989777 + rotY: 270.0 + rotZ: 179.98645 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12228 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '122': + BackIsHidden: true + BackURL: https://i.imgur.com/No3PMAy.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159325148/B25E4760A8FFC5A71DFA1DE038D6CA8A74C7AE0C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 3c + GMNotes: '' + GUID: 14f8f1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Alejandro's Prison + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 84.35383 + posY: 1.627909 + posZ: 1.41437125 + rotX: 359.986084 + rotY: 269.153564 + rotZ: 179.991058 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12227 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '122': + BackIsHidden: true + BackURL: https://i.imgur.com/No3PMAy.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159325148/B25E4760A8FFC5A71DFA1DE038D6CA8A74C7AE0C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 2c + GMNotes: '' + GUID: 21cd56 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Friends in High Places + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 84.26948 + posY: 1.61821246 + posZ: 1.81412792 + rotX: 359.9884 + rotY: 270.003052 + rotZ: 179.989212 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12226 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '122': + BackIsHidden: true + BackURL: https://i.imgur.com/No3PMAy.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159325148/B25E4760A8FFC5A71DFA1DE038D6CA8A74C7AE0C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 2c + GMNotes: '' + GUID: 1588b6 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Friends in High Places + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 84.01951 + posY: 1.6084764 + posZ: 1.64239752 + rotX: 0.006299999 + rotY: 269.7226 + rotZ: 179.9303 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12225 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '122': + BackIsHidden: true + BackURL: https://i.imgur.com/No3PMAy.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159325148/B25E4760A8FFC5A71DFA1DE038D6CA8A74C7AE0C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 2c + GMNotes: '' + GUID: 7edfb0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: At the Station + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 84.47324 + posY: 1.59897876 + posZ: 1.26894128 + rotX: 359.987518 + rotY: 270.0 + rotZ: 179.988663 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12224 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '122': + BackIsHidden: true + BackURL: https://i.imgur.com/No3PMAy.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159325148/B25E4760A8FFC5A71DFA1DE038D6CA8A74C7AE0C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 2c + GMNotes: '' + GUID: 34409b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: At the Station + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 83.25272 + posY: 1.57796311 + posZ: 1.60748184 + rotX: 359.424316 + rotY: 269.170532 + rotZ: 179.771484 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12223 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '122': + BackIsHidden: true + BackURL: https://i.imgur.com/No3PMAy.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159325148/B25E4760A8FFC5A71DFA1DE038D6CA8A74C7AE0C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 1c + GMNotes: '' + GUID: e59778 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Missing Persons + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 83.8489151 + posY: 1.57970738 + posZ: 1.55770516 + rotX: 359.9749 + rotY: 269.725983 + rotZ: 179.97287 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12222 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '122': + BackIsHidden: true + BackURL: https://i.imgur.com/No3PMAy.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159325148/B25E4760A8FFC5A71DFA1DE038D6CA8A74C7AE0C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 1c + GMNotes: '' + GUID: 1ee0f0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Search for Alejandro + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 84.6296539 + posY: 1.5697999 + posZ: 1.529388 + rotX: 359.9891 + rotY: 269.999969 + rotZ: 179.98848 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12221 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '122': + BackIsHidden: true + BackURL: https://i.imgur.com/No3PMAy.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159325148/B25E4760A8FFC5A71DFA1DE038D6CA8A74C7AE0C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 3a + GMNotes: '' + GUID: a69973 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Recover the Relic + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 84.4118652 + posY: 1.55745256 + posZ: 1.83878636 + rotX: 359.2443 + rotY: 269.350677 + rotZ: 178.89798 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12220 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '122': + BackIsHidden: true + BackURL: https://i.imgur.com/No3PMAy.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159325148/B25E4760A8FFC5A71DFA1DE038D6CA8A74C7AE0C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 3a + GMNotes: '' + GUID: adcbb0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Find the Relic + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 83.9305649 + posY: 1.55058146 + posZ: 1.91202509 + rotX: 359.988556 + rotY: 264.063263 + rotZ: 179.987442 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12219 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '122': + BackIsHidden: true + BackURL: https://i.imgur.com/No3PMAy.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159325148/B25E4760A8FFC5A71DFA1DE038D6CA8A74C7AE0C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 2a + GMNotes: '' + GUID: f7b446 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Harlan's Curse + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 84.22474 + posY: 1.54081619 + posZ: 1.82484555 + rotX: 359.987427 + rotY: 270.000244 + rotZ: 179.98175 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12218 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '122': + BackIsHidden: true + BackURL: https://i.imgur.com/No3PMAy.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159325148/B25E4760A8FFC5A71DFA1DE038D6CA8A74C7AE0C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 2a + GMNotes: '' + GUID: '586028' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Harlan's Curse + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 84.09123 + posY: 1.531057 + posZ: 2.15505219 + rotX: 359.984161 + rotY: 270.000549 + rotZ: 179.980042 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12217 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '122': + BackIsHidden: true + BackURL: https://i.imgur.com/No3PMAy.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159325148/B25E4760A8FFC5A71DFA1DE038D6CA8A74C7AE0C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 2a + GMNotes: '' + GUID: 6ffd6d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: At the Exhibit + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 84.34379 + posY: 1.5738138 + posZ: 1.38271093 + rotX: 359.992981 + rotY: 270.012848 + rotZ: 179.985657 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12216 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '122': + BackIsHidden: true + BackURL: https://i.imgur.com/No3PMAy.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159325148/B25E4760A8FFC5A71DFA1DE038D6CA8A74C7AE0C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 2a + GMNotes: '' + GUID: 029812 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: At the Exhibit + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 84.4975 + posY: 1.62257624 + posZ: 1.55428541 + rotX: 357.697052 + rotY: 270.352448 + rotZ: 179.70166 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12215 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '122': + BackIsHidden: true + BackURL: https://i.imgur.com/No3PMAy.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159325148/B25E4760A8FFC5A71DFA1DE038D6CA8A74C7AE0C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 1a + GMNotes: '' + GUID: a6d241 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Harlan Is in Danger! + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 84.11781 + posY: 1.56232834 + posZ: 1.94169378 + rotX: 359.987152 + rotY: 270.000244 + rotZ: 179.977615 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12214 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '122': + BackIsHidden: true + BackURL: https://i.imgur.com/No3PMAy.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159325148/B25E4760A8FFC5A71DFA1DE038D6CA8A74C7AE0C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 1a + GMNotes: '' + GUID: e2806c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Relic is Missing! + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 84.71273 + posY: 1.55923939 + posZ: 2.21589136 + rotX: 359.980042 + rotY: 269.997375 + rotZ: 179.9702 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12213 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '122': + BackIsHidden: true + BackURL: https://i.imgur.com/No3PMAy.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159325148/B25E4760A8FFC5A71DFA1DE038D6CA8A74C7AE0C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 3 + GMNotes: '' + GUID: 35fe2f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Hidden Entanglements + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 84.2193 + posY: 1.56149137 + posZ: 2.1158402 + rotX: 359.9895 + rotY: 270.000122 + rotZ: 179.974258 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12212 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '122': + BackIsHidden: true + BackURL: https://i.imgur.com/No3PMAy.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159325148/B25E4760A8FFC5A71DFA1DE038D6CA8A74C7AE0C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 2 + GMNotes: '' + GUID: d3d027 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Behind the Curtain + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 84.09192 + posY: 1.57553542 + posZ: 1.66787446 + rotX: 359.988373 + rotY: 262.538422 + rotZ: 179.990219 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12211 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '122': + BackIsHidden: true + BackURL: https://i.imgur.com/No3PMAy.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159325148/B25E4760A8FFC5A71DFA1DE038D6CA8A74C7AE0C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 1 + GMNotes: '' + GUID: 0dc453 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Three Fates + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 83.6478958 + posY: 1.557923 + posZ: 1.36090934 + rotX: 359.991 + rotY: 269.984039 + rotZ: 179.993835 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12210 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '122': + BackIsHidden: true + BackURL: https://i.imgur.com/No3PMAy.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159325148/B25E4760A8FFC5A71DFA1DE038D6CA8A74C7AE0C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Threads of Fate + GMNotes: '' + GUID: 6c4c60 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Scenario + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 84.08517 + posY: 1.41288257 + posZ: 1.58245552 + rotX: 359.980164 + rotY: 270.005157 + rotZ: 179.984024 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '122': + BackIsHidden: true + BackURL: https://i.imgur.com/No3PMAy.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159325148/B25E4760A8FFC5A71DFA1DE038D6CA8A74C7AE0C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 12245 +- 12244 +- 12243 +- 12243 +- 12242 +- 12242 +- 12241 +- 12241 +- 12241 +- 12240 +- 12239 +- 12238 +- 12237 +- 12236 +- 12235 +- 12234 +- 12232 +- 12233 +- 12231 +- 12230 +- 12229 +- 12228 +- 12227 +- 12226 +- 12225 +- 12224 +- 12223 +- 12222 +- 12221 +- 12220 +- 12219 +- 12218 +- 12217 +- 12216 +- 12215 +- 12214 +- 12213 +- 12212 +- 12211 +- 12210 +Description: '' +GMNotes: '' +GUID: 5419e6 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Threads of Fate +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 87.1678543 + posY: 3.5657053 + posZ: 5.019905 + rotX: 1.849775 + rotY: 270.049 + rotZ: 2.58212256 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Forgotten Age 9dc850/Deck Turn Back Time 32a2f0.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Forgotten Age 9dc850/Deck Turn Back Time 32a2f0.yaml new file mode 100644 index 000000000..af2e816fe --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Forgotten Age 9dc850/Deck Turn Back Time 32a2f0.yaml @@ -0,0 +1,222 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 265312 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2653': + BackIsHidden: true + BackURL: https://i.imgur.com/bQUL7Ev.jpg + FaceURL: https://i.imgur.com/Kw5u56P.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: true + Description: Act 3 + GMNotes: '' + GUID: d207f8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Moment of Doom + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 100.220612 + posY: 1.555931 + posZ: 10.3834686 + rotX: 359.981476 + rotY: 268.68808 + rotZ: 179.981689 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265310 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2653': + BackIsHidden: true + BackURL: https://i.imgur.com/bQUL7Ev.jpg + FaceURL: https://i.imgur.com/Kw5u56P.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: true + Description: Act 2 + GMNotes: '' + GUID: ae522c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Chamber of Still Remains + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 99.53189 + posY: 1.569437 + posZ: 10.6899776 + rotX: 359.989349 + rotY: 270.0023 + rotZ: 179.9789 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265308 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2653': + BackIsHidden: true + BackURL: https://i.imgur.com/bQUL7Ev.jpg + FaceURL: https://i.imgur.com/Kw5u56P.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: true + Description: Act 1 + GMNotes: '' + GUID: 3065a4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Into the Ruins Once Again + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 99.97973 + posY: 1.55204749 + posZ: 10.2615719 + rotX: 359.990356 + rotY: 269.989471 + rotZ: 179.98671 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 260100 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2601': + BackIsHidden: true + BackURL: https://i.imgur.com/bQUL7Ev.jpg + FaceURL: https://i.imgur.com/Kw5u56P.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: true + Description: Turn Back Time + GMNotes: '' + GUID: ac5f51 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Scenario + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 99.72302 + posY: 1.4071244 + posZ: 10.3448238 + rotX: 359.984833 + rotY: 270.006439 + rotZ: 179.981491 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2601': + BackIsHidden: true + BackURL: https://i.imgur.com/bQUL7Ev.jpg + FaceURL: https://i.imgur.com/Kw5u56P.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: true + '2653': + BackIsHidden: true + BackURL: https://i.imgur.com/bQUL7Ev.jpg + FaceURL: https://i.imgur.com/Kw5u56P.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 265312 +- 265310 +- 265308 +- 260100 +Description: '' +GMNotes: '' +GUID: 32a2f0 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Turn Back Time +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 87.03596 + posY: 3.429209 + posZ: 4.843319 + rotX: 1.71030712 + rotY: 270.081543 + rotZ: 2.91791534 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Forgotten Age 9dc850/Deck Yig's Venom 56b495.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Forgotten Age 9dc850/Deck Yig's Venom 56b495.yaml new file mode 100644 index 000000000..524a803ef --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Forgotten Age 9dc850/Deck Yig's Venom 56b495.yaml @@ -0,0 +1,258 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 12329 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Power. + GMNotes: '' + GUID: a04f16 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Serpent's Call + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 106.382652 + posY: 1.41246569 + posZ: -23.9254112 + rotX: -0.00421865238 + rotY: 270.022 + rotZ: 359.964569 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12328 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Curse. + GMNotes: '' + GUID: 9542e8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Snakescourge + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 106.42952 + posY: 1.595207 + posZ: -23.9457169 + rotX: 359.985962 + rotY: 269.996429 + rotZ: 357.917755 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12328 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Curse. + GMNotes: '' + GUID: '660874' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Snakescourge + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 106.414238 + posY: 1.57457292 + posZ: -23.042675 + rotX: 0.0144512765 + rotY: 270.0006 + rotZ: 359.894165 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12327 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Humanoid. Monster. Serpent. + GMNotes: '' + GUID: 58402d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Fang of Yig + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 106.342285 + posY: 1.56107628 + posZ: -24.01606 + rotX: 359.986633 + rotY: 269.983582 + rotZ: 359.984863 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12327 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Humanoid. Monster. Serpent. + GMNotes: '' + GUID: 6b107c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Fang of Yig + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 105.740288 + posY: 1.55914438 + posZ: -24.0910645 + rotX: 359.988037 + rotY: 270.0141 + rotZ: 359.9843 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '123': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 12329 +- 12328 +- 12328 +- 12327 +- 12327 +Description: '' +GMNotes: '' +GUID: 56b495 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Yig's Venom +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 88.29424 + posY: 3.08290672 + posZ: 4.45610237 + rotX: 359.987427 + rotY: 270.024658 + rotZ: 359.984528 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Path to Carcosa 7bfa11.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Path to Carcosa 7bfa11.yaml new file mode 100644 index 000000000..082d76c63 --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Path to Carcosa 7bfa11.yaml @@ -0,0 +1,53 @@ +Autoraise: true +ColorDiffuse: + b: 0.0 + g: 0.366520882 + r: 0.7058823 +ContainedObjects: +- !include 'Bag The Path to Carcosa 7bfa11/Deck Decay & Filth 55747f.yaml' +- !include 'Bag The Path to Carcosa 7bfa11/Deck Hauntings 5d25cd.yaml' +- !include 'Bag The Path to Carcosa 7bfa11/Deck Evil Portents 8ad75c.yaml' +- !include 'Bag The Path to Carcosa 7bfa11/Deck Cult of the Yellow Sign bd4746.yaml' +- !include 'Bag The Path to Carcosa 7bfa11/Deck Hastur''s Gift b89369.yaml' +- !include 'Bag The Path to Carcosa 7bfa11/Deck Inhabitants of Carcosa adf008.yaml' +- !include 'Bag The Path to Carcosa 7bfa11/Deck Delusions ea1fa3.yaml' +- !include 'Bag The Path to Carcosa 7bfa11/Deck Byakhee 20e9f8.yaml' +- !include 'Bag The Path to Carcosa 7bfa11/Deck The Stranger ae46f1.yaml' +- !include 'Bag The Path to Carcosa 7bfa11/Deck Dim Carcosa 0ee038.yaml' +- !include 'Bag The Path to Carcosa 7bfa11/Deck Black Stars Rise 2ba352.yaml' +- !include 'Bag The Path to Carcosa 7bfa11/Deck The Pallid Mask 276157.yaml' +- !include 'Bag The Path to Carcosa 7bfa11/Deck The Unspeakable Oath 1fef91.yaml' +- !include 'Bag The Path to Carcosa 7bfa11/Deck A Phantom of Truth 5a1979.yaml' +- !include 'Bag The Path to Carcosa 7bfa11/Deck Echoes of the Past 9fbe74.yaml' +- !include 'Bag The Path to Carcosa 7bfa11/Deck The Last King 77c753.yaml' +- !include 'Bag The Path to Carcosa 7bfa11/Deck Curtain Call 6e3cab.yaml' +- !include 'Bag The Path to Carcosa 7bfa11/Bag Return to The Path to Carcosa 5ea94d.yaml' +Description: '' +GMNotes: '' +GUID: 7bfa11 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +MeshIndex: -1 +Name: Bag +Nickname: The Path to Carcosa +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -41.526825 + posY: 1.78720486 + posZ: -105.730705 + rotX: 0.00283643045 + rotY: 314.999664 + rotZ: 0.0265960358 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Path to Carcosa 7bfa11/Bag Return to The Path to Carcosa 5ea94d.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Path to Carcosa 7bfa11/Bag Return to The Path to Carcosa 5ea94d.yaml new file mode 100644 index 000000000..226ea5bb7 --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Path to Carcosa 7bfa11/Bag Return to The Path to Carcosa 5ea94d.yaml @@ -0,0 +1,54 @@ +Autoraise: true +ColorDiffuse: + b: 0.0 + g: 0.366520882 + r: 0.7058823 +ContainedObjects: +- !include 'Bag Return to The Path to Carcosa 5ea94d/Deck Maddening Delusions e6e44a.yaml' +- !include 'Bag Return to The Path to Carcosa 5ea94d/Deck Delusory Evils 0dd8d5.yaml' +- !include 'Bag Return to The Path to Carcosa 5ea94d/Deck Decaying Reality c9dd1c.yaml' +- !include "Bag Return to The Path to Carcosa 5ea94d/Deck Hastur\u2019s Envoys 4352f8.yaml" +- !include 'Bag Return to The Path to Carcosa 5ea94d/Deck Neurotic Fear b749e6.yaml' +- !include 'Bag Return to The Path to Carcosa 5ea94d/Deck Return to Dim Carcosa a9afe3.yaml' +- !include 'Bag Return to The Path to Carcosa 5ea94d/Deck Return to The Pallid Mask + 659b04.yaml' +- !include 'Bag Return to The Path to Carcosa 5ea94d/Deck Return to Black Stars Rise + 45bbc6.yaml' +- !include 'Bag Return to The Path to Carcosa 5ea94d/Deck Return to A Phantom of Truth + f94f7d.yaml' +- !include 'Bag Return to The Path to Carcosa 5ea94d/Deck Return to The Unspeakable + Oath ee8952.yaml' +- !include 'Bag Return to The Path to Carcosa 5ea94d/Deck Return to Echoes of the + Past 0693cc.yaml' +- !include 'Bag Return to The Path to Carcosa 5ea94d/Deck Return to The Last King + 30e504.yaml' +- !include 'Bag Return to The Path to Carcosa 5ea94d/Deck Return to Curtain Call 100beb.yaml' +Description: '' +GMNotes: '' +GUID: 5ea94d +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +MeshIndex: -1 +Name: Bag +Nickname: Return to The Path to Carcosa +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -45.31966 + posY: 3.45257854 + posZ: 32.91266 + rotX: 359.850464 + rotY: 314.9932 + rotZ: 0.5524924 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Path to Carcosa 7bfa11/Bag Return to The Path to Carcosa 5ea94d/Deck Decaying Reality c9dd1c.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Path to Carcosa 7bfa11/Bag Return to The Path to Carcosa 5ea94d/Deck Decaying Reality c9dd1c.yaml new file mode 100644 index 000000000..ed65cb74d --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Path to Carcosa 7bfa11/Bag Return to The Path to Carcosa 5ea94d/Deck Decaying Reality c9dd1c.yaml @@ -0,0 +1,301 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 232816 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723517659500931/4B5458A518FDAF55C44CD8423EC12304E3266A6C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Creature. + GMNotes: '' + GUID: 2789ff + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Maggot Swarm + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -19.2407017 + posY: 1.57227457 + posZ: -26.3014812 + rotX: 359.9204 + rotY: 269.999939 + rotZ: 0.0150428768 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232816 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723517659500931/4B5458A518FDAF55C44CD8423EC12304E3266A6C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Creature. + GMNotes: '' + GUID: e2d075 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Maggot Swarm + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -19.2230339 + posY: 1.73377633 + posZ: -26.3048229 + rotX: 359.915741 + rotY: 270.0 + rotZ: 0.0147493454 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232815 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723517659500931/4B5458A518FDAF55C44CD8423EC12304E3266A6C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: d6340b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Fragile Thoughts + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -18.39599 + posY: 1.57247078 + posZ: -21.6435146 + rotX: 359.92038 + rotY: 269.999847 + rotZ: 0.0152562214 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232815 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723517659500931/4B5458A518FDAF55C44CD8423EC12304E3266A6C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: b4bbb4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Fragile Thoughts + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -18.5655079 + posY: 1.732873 + posZ: -21.3264027 + rotX: 359.948151 + rotY: 270.0 + rotZ: 359.992157 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232814 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723517659500931/4B5458A518FDAF55C44CD8423EC12304E3266A6C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: 5987af + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Bleeding Walls + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -17.9469852 + posY: 1.5728128 + posZ: -18.3870125 + rotX: 359.9203 + rotY: 269.999573 + rotZ: 0.01579755 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232814 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723517659500931/4B5458A518FDAF55C44CD8423EC12304E3266A6C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: a9d501 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Bleeding Walls + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -18.0130978 + posY: 1.72845662 + posZ: -18.5875816 + rotX: 359.9193 + rotY: 269.999573 + rotZ: 0.00951310247 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723517659500931/4B5458A518FDAF55C44CD8423EC12304E3266A6C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 232816 +- 232816 +- 232815 +- 232815 +- 232814 +- 232814 +Description: '' +GMNotes: '' +GUID: c9dd1c +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Decaying Reality +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -7.48952532 + posY: 3.63023067 + posZ: -41.3789749 + rotX: 359.920135 + rotY: 269.995422 + rotZ: 0.01688462 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Path to Carcosa 7bfa11/Bag Return to The Path to Carcosa 5ea94d/Deck Delusory Evils 0dd8d5.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Path to Carcosa 7bfa11/Bag Return to The Path to Carcosa 5ea94d/Deck Delusory Evils 0dd8d5.yaml new file mode 100644 index 000000000..60213ac60 --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Path to Carcosa 7bfa11/Bag Return to The Path to Carcosa 5ea94d/Deck Delusory Evils 0dd8d5.yaml @@ -0,0 +1,172 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 232813 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723517659500931/4B5458A518FDAF55C44CD8423EC12304E3266A6C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Curse. + GMNotes: '' + GUID: 5987af + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Delusory Evils + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -41.95185 + posY: 1.60736048 + posZ: -14.73475 + rotX: 359.920166 + rotY: 269.999664 + rotZ: 0.016287826 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232813 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723517659500931/4B5458A518FDAF55C44CD8423EC12304E3266A6C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Curse. + GMNotes: '' + GUID: bc41a5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Delusory Evils + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -42.0116158 + posY: 1.75763893 + posZ: -14.298007 + rotX: 359.914978 + rotY: 270.0003 + rotZ: -0.00206749188 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232813 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723517659500931/4B5458A518FDAF55C44CD8423EC12304E3266A6C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Curse. + GMNotes: '' + GUID: 5987af + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Delusory Evils + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -42.01161 + posY: 1.79005313 + posZ: -14.29804 + rotX: 359.919922 + rotY: 269.999878 + rotZ: 0.016129639 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723517659500931/4B5458A518FDAF55C44CD8423EC12304E3266A6C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 232813 +- 232813 +- 232813 +Description: '' +GMNotes: '' +GUID: 0dd8d5 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Delusory Evils +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -7.50302553 + posY: 3.63023543 + posZ: -36.9276123 + rotX: 359.920135 + rotY: 270.0014 + rotZ: 0.0168751124 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Path to Carcosa 7bfa11/Bag Return to The Path to Carcosa 5ea94d/Deck Hastur’s Envoys 4352f8.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Path to Carcosa 7bfa11/Bag Return to The Path to Carcosa 5ea94d/Deck Hastur’s Envoys 4352f8.yaml new file mode 100644 index 000000000..a9774423c --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Path to Carcosa 7bfa11/Bag Return to The Path to Carcosa 5ea94d/Deck Hastur’s Envoys 4352f8.yaml @@ -0,0 +1,215 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 232818 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723517659500931/4B5458A518FDAF55C44CD8423EC12304E3266A6C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Pact. Power. + GMNotes: '' + GUID: 48ff80 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Sign of Hastur + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -16.4193249 + posY: 1.56677032 + posZ: -31.2345848 + rotX: 359.921478 + rotY: 269.999939 + rotZ: 0.007362036 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232818 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723517659500931/4B5458A518FDAF55C44CD8423EC12304E3266A6C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Pact. Power. + GMNotes: '' + GUID: a3c0d0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Sign of Hastur + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -16.8502655 + posY: 1.7219522 + posZ: -31.3089123 + rotX: 359.9652 + rotY: 270.0 + rotZ: 0.009213697 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232817 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723517659500931/4B5458A518FDAF55C44CD8423EC12304E3266A6C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Byakhee. + GMNotes: '' + GUID: 5987af + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Preying Byakhee + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -17.1722336 + posY: 1.569242 + posZ: -26.9037 + rotX: 359.9201 + rotY: 269.999878 + rotZ: 0.0169682037 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232817 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723517659500931/4B5458A518FDAF55C44CD8423EC12304E3266A6C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Byakhee. + GMNotes: '' + GUID: 7161b9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Preying Byakhee + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -17.1106777 + posY: 1.73652244 + posZ: -26.5900784 + rotX: 359.9353 + rotY: 270.0 + rotZ: 0.0111068469 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723517659500931/4B5458A518FDAF55C44CD8423EC12304E3266A6C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 232818 +- 232818 +- 232817 +- 232817 +Description: '' +GMNotes: '' +GUID: 4352f8 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: "Hastur\u2019s Envoys" +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -7.605004 + posY: 3.62612224 + posZ: -46.27598 + rotX: 359.920135 + rotY: 270.003754 + rotZ: 0.0168704782 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Path to Carcosa 7bfa11/Bag Return to The Path to Carcosa 5ea94d/Deck Maddening Delusions e6e44a.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Path to Carcosa 7bfa11/Bag Return to The Path to Carcosa 5ea94d/Deck Maddening Delusions e6e44a.yaml new file mode 100644 index 000000000..7e15da56e --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Path to Carcosa 7bfa11/Bag Return to The Path to Carcosa 5ea94d/Deck Maddening Delusions e6e44a.yaml @@ -0,0 +1,301 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 232823 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723517659500931/4B5458A518FDAF55C44CD8423EC12304E3266A6C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: 3effb8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Maddening Delusions + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -20.1577435 + posY: 1.57207835 + posZ: -31.3182583 + rotX: 359.92038 + rotY: 269.999878 + rotZ: 0.0152459564 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232823 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723517659500931/4B5458A518FDAF55C44CD8423EC12304E3266A6C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: dd93e2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Maddening Delusions + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -20.4406471 + posY: 1.73394608 + posZ: -31.18953 + rotX: 359.9276 + rotY: 269.999939 + rotZ: 0.007684529 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232822 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723517659500931/4B5458A518FDAF55C44CD8423EC12304E3266A6C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: a92ef8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Visions in Your Mind (Hatred) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -19.8424263 + posY: 1.73465288 + posZ: -31.0785656 + rotX: 359.919647 + rotY: 270.0066 + rotZ: 0.0226448 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232821 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723517659500931/4B5458A518FDAF55C44CD8423EC12304E3266A6C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: '613256' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Visions in Your Mind (Death) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -20.2634449 + posY: 1.7214551 + posZ: -31.20634 + rotX: 359.922943 + rotY: 269.996216 + rotZ: 0.0142507013 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232820 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723517659500931/4B5458A518FDAF55C44CD8423EC12304E3266A6C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: ca4b6d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Visions in Your Mind (Failure) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -19.837471 + posY: 1.71898663 + posZ: -31.096756 + rotX: 359.918335 + rotY: 269.998779 + rotZ: 0.0132667217 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232819 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723517659500931/4B5458A518FDAF55C44CD8423EC12304E3266A6C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: 5987af + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Visions in Your Mind (Horrors) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -20.4759254 + posY: 1.72235584 + posZ: -30.9665585 + rotX: 359.925446 + rotY: 270.004181 + rotZ: 0.00763365347 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723517659500931/4B5458A518FDAF55C44CD8423EC12304E3266A6C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 232823 +- 232823 +- 232822 +- 232821 +- 232820 +- 232819 +Description: '' +GMNotes: '' +GUID: e6e44a +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Maddening Delusions +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -7.74621248 + posY: 3.62789369 + posZ: -50.5301132 + rotX: 359.920135 + rotY: 270.006348 + rotZ: 0.0168712065 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Path to Carcosa 7bfa11/Bag Return to The Path to Carcosa 5ea94d/Deck Neurotic Fear b749e6.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Path to Carcosa 7bfa11/Bag Return to The Path to Carcosa 5ea94d/Deck Neurotic Fear b749e6.yaml new file mode 100644 index 000000000..f90aef663 --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Path to Carcosa 7bfa11/Bag Return to The Path to Carcosa 5ea94d/Deck Neurotic Fear b749e6.yaml @@ -0,0 +1,344 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 232826 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723517659500931/4B5458A518FDAF55C44CD8423EC12304E3266A6C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: '947597' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Painful Reflection + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -18.6558971 + posY: 1.57049608 + posZ: -29.4339848 + rotX: 359.920837 + rotY: 269.999969 + rotZ: 0.0124607878 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232826 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723517659500931/4B5458A518FDAF55C44CD8423EC12304E3266A6C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: 6cb3f1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Painful Reflection + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -18.8719749 + posY: 1.724139 + posZ: -29.3834038 + rotX: 359.954041 + rotY: 269.999542 + rotZ: 359.993164 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232825 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723517659500931/4B5458A518FDAF55C44CD8423EC12304E3266A6C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: 8e7b73 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Melancholy + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -19.17409 + posY: 1.57282412 + posZ: -24.1210079 + rotX: 359.9204 + rotY: 269.999878 + rotZ: 0.0150721716 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232825 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723517659500931/4B5458A518FDAF55C44CD8423EC12304E3266A6C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: 8d3af5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Melancholy + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -19.190136 + posY: 1.728339 + posZ: -23.9574223 + rotX: 359.928223 + rotY: 269.999939 + rotZ: 0.00379046449 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232824 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723517659500931/4B5458A518FDAF55C44CD8423EC12304E3266A6C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: 5987af + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: "Voice of Tru\u2019nembra" + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -19.00153 + posY: 1.57379735 + posZ: -20.0205536 + rotX: 359.920319 + rotY: 270.000061 + rotZ: 0.0155211845 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232824 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723517659500931/4B5458A518FDAF55C44CD8423EC12304E3266A6C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: 0a0545 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: "Voice of Tru\u2019nembra" + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -18.9889278 + posY: 1.735667 + posZ: -19.9021416 + rotX: 359.924225 + rotY: 270.000031 + rotZ: 0.01324474 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232824 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723517659500931/4B5458A518FDAF55C44CD8423EC12304E3266A6C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: 040fdc + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: "Voice of Tru\u2019nembra" + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -18.9889069 + posY: 1.74957764 + posZ: -19.9021454 + rotX: 359.921265 + rotY: 270.000031 + rotZ: 0.0159616545 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723517659500931/4B5458A518FDAF55C44CD8423EC12304E3266A6C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 232826 +- 232826 +- 232825 +- 232825 +- 232824 +- 232824 +- 232824 +Description: '' +GMNotes: '' +GUID: b749e6 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Neurotic Fear +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -7.676167 + posY: 3.62957954 + posZ: -53.5205231 + rotX: 359.920135 + rotY: 269.989441 + rotZ: 0.016891377 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Path to Carcosa 7bfa11/Bag Return to The Path to Carcosa 5ea94d/Deck Return to A Phantom of Truth f94f7d.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Path to Carcosa 7bfa11/Bag Return to The Path to Carcosa 5ea94d/Deck Return to A Phantom of Truth f94f7d.yaml new file mode 100644 index 000000000..abfb36f3f --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Path to Carcosa 7bfa11/Bag Return to The Path to Carcosa 5ea94d/Deck Return to A Phantom of Truth f94f7d.yaml @@ -0,0 +1,437 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 232808 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723517659500931/4B5458A518FDAF55C44CD8423EC12304E3266A6C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Scheme. + GMNotes: '' + GUID: 5987af + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Figure in the Shadows + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -32.0396767 + posY: 1.71063137 + posZ: -29.6511154 + rotX: 359.9364 + rotY: 270.011078 + rotZ: 180.0082 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232808 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723517659500931/4B5458A518FDAF55C44CD8423EC12304E3266A6C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Scheme. + GMNotes: '' + GUID: f1f80b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Figure in the Shadows + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -32.1304474 + posY: 1.85672164 + posZ: -29.7221985 + rotX: 359.952026 + rotY: 269.996643 + rotZ: 175.4846 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232925 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2329': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/762723517659499792/63775A11C2A49441C268121108C8EBFCF512E2A9/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723517659500387/BFF1AFFD515364F0BFD336A6CE9970BE1DD04B13/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Paris. + GMNotes: '' + GUID: 93a42f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Gardens of Luxembourg + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -32.3376541 + posY: 1.76861751 + posZ: -29.6281738 + rotX: 359.9205 + rotY: 269.999969 + rotZ: 180.016983 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232924 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2329': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/762723517659499792/63775A11C2A49441C268121108C8EBFCF512E2A9/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723517659500387/BFF1AFFD515364F0BFD336A6CE9970BE1DD04B13/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Paris. Rail. + GMNotes: '' + GUID: 93a42f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Notre-Dame + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -32.6969337 + posY: 1.74255955 + posZ: -29.7615623 + rotX: 359.929565 + rotY: 270.017883 + rotZ: 180.016785 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232923 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2329': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/762723517659499792/63775A11C2A49441C268121108C8EBFCF512E2A9/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723517659500387/BFF1AFFD515364F0BFD336A6CE9970BE1DD04B13/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Paris. + GMNotes: '' + GUID: 93a42f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Canal Saint-Martin + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -32.1582146 + posY: 1.74716139 + posZ: -29.3635845 + rotX: 359.917542 + rotY: 270.0002 + rotZ: 180.0166 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232922 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2329': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/762723517659499792/63775A11C2A49441C268121108C8EBFCF512E2A9/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723517659500387/BFF1AFFD515364F0BFD336A6CE9970BE1DD04B13/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Paris. + GMNotes: '' + GUID: 93a42f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: "P\xE8re Lachaise Cemetery" + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -32.1236343 + posY: 1.75692773 + posZ: -29.7467651 + rotX: 359.920624 + rotY: 269.999939 + rotZ: 180.017212 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232921 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2329': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/762723517659499792/63775A11C2A49441C268121108C8EBFCF512E2A9/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723517659500387/BFF1AFFD515364F0BFD336A6CE9970BE1DD04B13/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Theatre of the Great Puppet + GMNotes: '' + GUID: 93a42f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Grand Guignol + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -31.8142471 + posY: 1.7702868 + posZ: -29.4069462 + rotX: 359.9193 + rotY: 270.000153 + rotZ: 180.016769 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232920 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2329': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/762723517659499792/63775A11C2A49441C268121108C8EBFCF512E2A9/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723517659500387/BFF1AFFD515364F0BFD336A6CE9970BE1DD04B13/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Paris. Rail. + GMNotes: '' + GUID: '432812' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Montparnasse + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -32.16575 + posY: 1.73741472 + posZ: -29.9219341 + rotX: 359.9298 + rotY: 270.01062 + rotZ: 180.02359 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232919 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2329': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/762723517659499792/63775A11C2A49441C268121108C8EBFCF512E2A9/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723517659500387/BFF1AFFD515364F0BFD336A6CE9970BE1DD04B13/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Return to A Phantom of Truth + GMNotes: '' + GUID: 93a42f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Setup + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -31.7958469 + posY: 1.707444 + posZ: -29.8687363 + rotX: 359.9176 + rotY: 270.0014 + rotZ: 0.0184909254 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723517659500931/4B5458A518FDAF55C44CD8423EC12304E3266A6C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '2329': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/762723517659499792/63775A11C2A49441C268121108C8EBFCF512E2A9/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723517659500387/BFF1AFFD515364F0BFD336A6CE9970BE1DD04B13/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 232808 +- 232808 +- 232925 +- 232924 +- 232923 +- 232922 +- 232921 +- 232920 +- 232919 +Description: '' +GMNotes: '' +GUID: f94f7d +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Return to A Phantom of Truth +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -0.8123369 + posY: 3.60418677 + posZ: -48.0377426 + rotX: 359.920135 + rotY: 270.004242 + rotZ: 0.0168713648 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Path to Carcosa 7bfa11/Bag Return to The Path to Carcosa 5ea94d/Deck Return to Black Stars Rise 45bbc6.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Path to Carcosa 7bfa11/Bag Return to The Path to Carcosa 5ea94d/Deck Return to Black Stars Rise 45bbc6.yaml new file mode 100644 index 000000000..2ee99e608 --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Path to Carcosa 7bfa11/Bag Return to The Path to Carcosa 5ea94d/Deck Return to Black Stars Rise 45bbc6.yaml @@ -0,0 +1,265 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 232811 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723517659500931/4B5458A518FDAF55C44CD8423EC12304E3266A6C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Power. + GMNotes: '' + GUID: 5987af + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Hastur's Grasp + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -34.1328239 + posY: 1.74500561 + posZ: -20.83274 + rotX: 359.924347 + rotY: 269.993622 + rotZ: 180.072189 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232810 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723517659500931/4B5458A518FDAF55C44CD8423EC12304E3266A6C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Power. + GMNotes: '' + GUID: 5987af + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: "Hastur\u2019s Gaze" + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -34.1776276 + posY: 1.74696314 + posZ: -20.3885155 + rotX: 359.918152 + rotY: 269.997437 + rotZ: 180.017838 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232933 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2329': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/762723517659499792/63775A11C2A49441C268121108C8EBFCF512E2A9/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723517659500387/BFF1AFFD515364F0BFD336A6CE9970BE1DD04B13/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 93a42f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Knight's Hall + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -34.0663 + posY: 1.781937 + posZ: -19.6971931 + rotX: 359.920227 + rotY: 270.000031 + rotZ: 180.017075 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232932 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2329': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/762723517659499792/63775A11C2A49441C268121108C8EBFCF512E2A9/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723517659500387/BFF1AFFD515364F0BFD336A6CE9970BE1DD04B13/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: e9be74 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Cloister + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -34.5785522 + posY: 1.75011754 + posZ: -19.8499 + rotX: 359.9345 + rotY: 270.0003 + rotZ: 180.021088 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232931 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2329': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/762723517659499792/63775A11C2A49441C268121108C8EBFCF512E2A9/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723517659500387/BFF1AFFD515364F0BFD336A6CE9970BE1DD04B13/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Return to Black Stars Rise + GMNotes: '' + GUID: 93a42f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Setup + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -34.3942528 + posY: 1.74260259 + posZ: -19.85551 + rotX: 359.9274 + rotY: 270.078125 + rotZ: 359.971741 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723517659500931/4B5458A518FDAF55C44CD8423EC12304E3266A6C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '2329': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/762723517659499792/63775A11C2A49441C268121108C8EBFCF512E2A9/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723517659500387/BFF1AFFD515364F0BFD336A6CE9970BE1DD04B13/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 232811 +- 232810 +- 232933 +- 232932 +- 232931 +Description: '' +GMNotes: '' +GUID: 45bbc6 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Return to Black Stars Rise +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -0.5421839 + posY: 3.614694 + posZ: -54.4677849 + rotX: 359.9201 + rotY: 270.0225 + rotZ: 0.0168446954 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Path to Carcosa 7bfa11/Bag Return to The Path to Carcosa 5ea94d/Deck Return to Curtain Call 100beb.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Path to Carcosa 7bfa11/Bag Return to The Path to Carcosa 5ea94d/Deck Return to Curtain Call 100beb.yaml new file mode 100644 index 000000000..55b91112c --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Path to Carcosa 7bfa11/Bag Return to The Path to Carcosa 5ea94d/Deck Return to Curtain Call 100beb.yaml @@ -0,0 +1,358 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 232800 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723517659500931/4B5458A518FDAF55C44CD8423EC12304E3266A6C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Subverter of Plans + GMNotes: '' + GUID: 5987af + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: La Comtesse + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -25.4464989 + posY: 1.74018455 + posZ: -20.69076 + rotX: 359.9475 + rotY: 270.070068 + rotZ: 179.9838 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232905 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2329': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/762723517659499792/63775A11C2A49441C268121108C8EBFCF512E2A9/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723517659500387/BFF1AFFD515364F0BFD336A6CE9970BE1DD04B13/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Private. + GMNotes: '' + GUID: bece69 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Backstage Doorway + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -25.3267746 + posY: 1.75071228 + posZ: -20.9026051 + rotX: 359.9364 + rotY: 270.0 + rotZ: 180.013977 + 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: http://cloud-3.steamusercontent.com/ugc/762723517659499792/63775A11C2A49441C268121108C8EBFCF512E2A9/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723517659500387/BFF1AFFD515364F0BFD336A6CE9970BE1DD04B13/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Private. + GMNotes: '' + GUID: 93a42f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Lobby Doorway + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -25.3553276 + posY: 1.73235071 + posZ: -20.7735214 + rotX: 359.9189 + rotY: 270.000061 + rotZ: 180.018951 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233003 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/762723517659499792/63775A11C2A49441C268121108C8EBFCF512E2A9/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723517659500387/BFF1AFFD515364F0BFD336A6CE9970BE1DD04B13/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 2 + GMNotes: '' + GUID: 788b0d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Stranger + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -25.1362457 + posY: 1.749906 + posZ: -21.2338562 + rotX: 359.938477 + rotY: 269.936859 + rotZ: 180.031555 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233002 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/762723517659499792/63775A11C2A49441C268121108C8EBFCF512E2A9/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723517659500387/BFF1AFFD515364F0BFD336A6CE9970BE1DD04B13/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 2 + GMNotes: '' + GUID: 51aa68 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Stranger + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -24.7722073 + posY: 1.76290572 + posZ: -21.1489487 + rotX: 359.918457 + rotY: 269.995178 + rotZ: 180.019531 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233001 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/762723517659499792/63775A11C2A49441C268121108C8EBFCF512E2A9/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723517659500387/BFF1AFFD515364F0BFD336A6CE9970BE1DD04B13/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 2 + GMNotes: '' + GUID: 36921c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Stranger + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -25.1210384 + posY: 1.75984585 + posZ: -20.9534988 + rotX: 359.909729 + rotY: 269.980438 + rotZ: 181.903824 + 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: http://cloud-3.steamusercontent.com/ugc/762723517659499792/63775A11C2A49441C268121108C8EBFCF512E2A9/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723517659500387/BFF1AFFD515364F0BFD336A6CE9970BE1DD04B13/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Return to Curtain Call + GMNotes: '' + GUID: 93a42f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Setup + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -25.3977013 + posY: 1.58569825 + posZ: -20.623251 + rotX: 359.907623 + rotY: 269.969727 + rotZ: 180.033844 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723517659500931/4B5458A518FDAF55C44CD8423EC12304E3266A6C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '2329': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/762723517659499792/63775A11C2A49441C268121108C8EBFCF512E2A9/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723517659500387/BFF1AFFD515364F0BFD336A6CE9970BE1DD04B13/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + '2330': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/762723517659499792/63775A11C2A49441C268121108C8EBFCF512E2A9/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723517659500387/BFF1AFFD515364F0BFD336A6CE9970BE1DD04B13/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 232800 +- 232905 +- 232904 +- 233003 +- 233002 +- 233001 +- 232900 +Description: '' +GMNotes: '' +GUID: 100beb +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Return to Curtain Call +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -0.9548432 + posY: 3.63045025 + posZ: -34.0607376 + rotX: 359.6177 + rotY: 269.998779 + rotZ: 359.8036 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Path to Carcosa 7bfa11/Bag Return to The Path to Carcosa 5ea94d/Deck Return to Dim Carcosa a9afe3.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Path to Carcosa 7bfa11/Bag Return to The Path to Carcosa 5ea94d/Deck Return to Dim Carcosa a9afe3.yaml new file mode 100644 index 000000000..f970e35b3 --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Path to Carcosa 7bfa11/Bag Return to The Path to Carcosa 5ea94d/Deck Return to Dim Carcosa a9afe3.yaml @@ -0,0 +1,308 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 232812 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723517659500931/4B5458A518FDAF55C44CD8423EC12304E3266A6C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Cultist. Elite. + GMNotes: '' + GUID: 5987af + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: High Priest of Hastur + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -35.05063 + posY: 1.74588764 + posZ: -28.3967438 + rotX: 359.920074 + rotY: 269.992249 + rotZ: 180.006729 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232938 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2329': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/762723517659499792/63775A11C2A49441C268121108C8EBFCF512E2A9/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723517659500387/BFF1AFFD515364F0BFD336A6CE9970BE1DD04B13/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 93a42f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Stage of the Ward Theatre + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -34.9632874 + posY: 1.75922692 + posZ: -28.66808 + rotX: 359.9205 + rotY: 270.0 + rotZ: 180.017136 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232937 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2329': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/762723517659499792/63775A11C2A49441C268121108C8EBFCF512E2A9/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723517659500387/BFF1AFFD515364F0BFD336A6CE9970BE1DD04B13/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Otherworld. + GMNotes: '' + GUID: a6582c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Throne Room + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -34.78582 + posY: 1.74537945 + posZ: -28.1003723 + rotX: 359.915863 + rotY: 270.026917 + rotZ: 180.015686 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232936 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2329': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/762723517659499792/63775A11C2A49441C268121108C8EBFCF512E2A9/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723517659500387/BFF1AFFD515364F0BFD336A6CE9970BE1DD04B13/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: ???. + GMNotes: '' + GUID: 93a42f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Recesses of Your Own Mind + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -35.4569321 + posY: 1.75978947 + posZ: -28.80419 + rotX: 359.9218 + rotY: 269.9946 + rotZ: 180.023865 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232935 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2329': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/762723517659499792/63775A11C2A49441C268121108C8EBFCF512E2A9/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723517659500387/BFF1AFFD515364F0BFD336A6CE9970BE1DD04B13/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Hastur's Domain + GMNotes: '' + GUID: 60d758 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Palace of the King + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -34.95573 + posY: 1.74170387 + posZ: -28.5869064 + rotX: 359.94693 + rotY: 270.0015 + rotZ: 179.994232 + 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: http://cloud-3.steamusercontent.com/ugc/762723517659499792/63775A11C2A49441C268121108C8EBFCF512E2A9/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723517659500387/BFF1AFFD515364F0BFD336A6CE9970BE1DD04B13/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Return to Dim Carcosa + GMNotes: '' + GUID: 93a42f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Setup + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -34.8465729 + posY: 1.74336886 + posZ: -28.4354458 + rotX: 359.921448 + rotY: 269.995819 + rotZ: 0.0187686831 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723517659500931/4B5458A518FDAF55C44CD8423EC12304E3266A6C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '2329': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/762723517659499792/63775A11C2A49441C268121108C8EBFCF512E2A9/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723517659500387/BFF1AFFD515364F0BFD336A6CE9970BE1DD04B13/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 232812 +- 232938 +- 232937 +- 232936 +- 232935 +- 232934 +Description: '' +GMNotes: '' +GUID: a9afe3 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Return to Dim Carcosa +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -0.3947878 + posY: 3.61568952 + posZ: -57.17073 + rotX: 359.920135 + rotY: 269.996277 + rotZ: 0.0168855973 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Path to Carcosa 7bfa11/Bag Return to The Path to Carcosa 5ea94d/Deck Return to Echoes of the Past 0693cc.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Path to Carcosa 7bfa11/Bag Return to The Path to Carcosa 5ea94d/Deck Return to Echoes of the Past 0693cc.yaml new file mode 100644 index 000000000..be823cee0 --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Path to Carcosa 7bfa11/Bag Return to The Path to Carcosa 5ea94d/Deck Return to Echoes of the Past 0693cc.yaml @@ -0,0 +1,351 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 232804 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723517659500931/4B5458A518FDAF55C44CD8423EC12304E3266A6C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Cultist. + GMNotes: '' + GUID: 75df15 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Keeper of the Oath + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -39.13868 + posY: 1.7731781 + posZ: -26.670208 + rotX: 359.9369 + rotY: 270.0 + rotZ: 180.014709 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232804 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723517659500931/4B5458A518FDAF55C44CD8423EC12304E3266A6C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Cultist. + GMNotes: '' + GUID: 5987af + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Keeper of the Oath + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -39.1458549 + posY: 1.75242031 + posZ: -26.8553982 + rotX: 359.9417 + rotY: 269.9965 + rotZ: 180.024765 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232915 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2329': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/762723517659499792/63775A11C2A49441C268121108C8EBFCF512E2A9/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723517659500387/BFF1AFFD515364F0BFD336A6CE9970BE1DD04B13/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Basement. + GMNotes: '' + GUID: 20fcda + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Historical Society + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -39.44606 + posY: 1.75026584 + posZ: -26.4540615 + rotX: 359.9515 + rotY: 270.05304 + rotZ: 180.023285 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232914 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2329': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/762723517659499792/63775A11C2A49441C268121108C8EBFCF512E2A9/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723517659500387/BFF1AFFD515364F0BFD336A6CE9970BE1DD04B13/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Basement. + GMNotes: '' + GUID: abc0cb + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Historical Society + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -38.4827843 + posY: 1.75133777 + posZ: -25.8403244 + rotX: 359.921875 + rotY: 269.995483 + rotZ: 180.0198 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232913 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2329': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/762723517659499792/63775A11C2A49441C268121108C8EBFCF512E2A9/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723517659500387/BFF1AFFD515364F0BFD336A6CE9970BE1DD04B13/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Basement. + GMNotes: '' + GUID: 93a42f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Historical Society + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -38.32806 + posY: 1.78044844 + posZ: -25.79709 + rotX: 359.92 + rotY: 269.9873 + rotZ: 180.017059 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232912 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2329': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/762723517659499792/63775A11C2A49441C268121108C8EBFCF512E2A9/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723517659500387/BFF1AFFD515364F0BFD336A6CE9970BE1DD04B13/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Basement. + GMNotes: '' + GUID: 0973f5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Quiet Halls + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -39.0312462 + posY: 1.74203312 + posZ: -26.52062 + rotX: 359.971832 + rotY: 270.0006 + rotZ: 180.037643 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232911 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2329': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/762723517659499792/63775A11C2A49441C268121108C8EBFCF512E2A9/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723517659500387/BFF1AFFD515364F0BFD336A6CE9970BE1DD04B13/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Return to Echoes of the Past + GMNotes: '' + GUID: 93a42f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Setup + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -38.9869881 + posY: 1.75468516 + posZ: -27.0492821 + rotX: 359.920319 + rotY: 270.002625 + rotZ: 0.0191251449 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723517659500931/4B5458A518FDAF55C44CD8423EC12304E3266A6C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '2329': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/762723517659499792/63775A11C2A49441C268121108C8EBFCF512E2A9/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723517659500387/BFF1AFFD515364F0BFD336A6CE9970BE1DD04B13/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 232804 +- 232804 +- 232915 +- 232914 +- 232913 +- 232912 +- 232911 +Description: '' +GMNotes: '' +GUID: 0693cc +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Return to Echoes of the Past +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -0.9768038 + posY: 3.623848 + posZ: -41.26693 + rotX: 359.920135 + rotY: 269.9931 + rotZ: 0.0168871433 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Path to Carcosa 7bfa11/Bag Return to The Path to Carcosa 5ea94d/Deck Return to The Last King 30e504.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Path to Carcosa 7bfa11/Bag Return to The Path to Carcosa 5ea94d/Deck Return to The Last King 30e504.yaml new file mode 100644 index 000000000..9832daed7 --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Path to Carcosa 7bfa11/Bag Return to The Path to Carcosa 5ea94d/Deck Return to The Last King 30e504.yaml @@ -0,0 +1,451 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 232803 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723517659500931/4B5458A518FDAF55C44CD8423EC12304E3266A6C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: 9c4a8d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Shocking Display + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -28.23516 + posY: 1.70806336 + posZ: -20.03925 + rotX: 359.91272 + rotY: 270.002441 + rotZ: 180.0284 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233102 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2331': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723517659500931/4B5458A518FDAF55C44CD8423EC12304E3266A6C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: bd9f85 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Party Guest + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -24.8771973 + posY: 1.58122766 + posZ: -22.7133541 + rotX: 359.920044 + rotY: 269.999878 + rotZ: 0.0176413581 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233102 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2331': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723517659500931/4B5458A518FDAF55C44CD8423EC12304E3266A6C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: ea2400 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Party Guest + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -24.821085 + posY: 1.74184465 + posZ: -22.3146458 + rotX: 359.931274 + rotY: 270.0 + rotZ: -0.0004542846 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233101 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2331': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723517659500931/4B5458A518FDAF55C44CD8423EC12304E3266A6C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hiding an Oath Unspoken + GMNotes: '' + GUID: 51f4e4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dianne Devine + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -28.8238258 + posY: 1.757993 + posZ: -20.4782543 + rotX: 359.9535 + rotY: 270.000122 + rotZ: 180.191864 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232909 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2329': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/762723517659499792/63775A11C2A49441C268121108C8EBFCF512E2A9/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723517659500387/BFF1AFFD515364F0BFD336A6CE9970BE1DD04B13/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Humanoid. Monster. Lunatic. + GMNotes: '' + GUID: 2135bf + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Crazed Guest + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -28.9277439 + posY: 1.72814369 + posZ: -24.4571342 + rotX: 359.90387 + rotY: 269.984344 + rotZ: 180.024048 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232909 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2329': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/762723517659499792/63775A11C2A49441C268121108C8EBFCF512E2A9/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723517659500387/BFF1AFFD515364F0BFD336A6CE9970BE1DD04B13/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Humanoid. Monster. Lunatic. + GMNotes: '' + GUID: b13af3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Crazed Guest + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -28.9632874 + posY: 1.58912635 + posZ: -24.4591675 + rotX: 359.921 + rotY: 269.956665 + rotZ: 180.023254 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232908 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2329': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/762723517659499792/63775A11C2A49441C268121108C8EBFCF512E2A9/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723517659500387/BFF1AFFD515364F0BFD336A6CE9970BE1DD04B13/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Knows What You're Up To + GMNotes: '' + GUID: 93a42f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dianne Devine + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -29.2088871 + posY: 1.75370717 + posZ: -19.782629 + rotX: 359.940552 + rotY: 269.99823 + rotZ: 180.015045 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233007 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/762723517659499792/63775A11C2A49441C268121108C8EBFCF512E2A9/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723517659500387/BFF1AFFD515364F0BFD336A6CE9970BE1DD04B13/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 1 + GMNotes: '' + GUID: 3456b6 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Better Never Than Late + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -28.85899 + posY: 1.73607838 + posZ: -20.2328377 + rotX: 359.925354 + rotY: 269.9142 + rotZ: 180.049438 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232906 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2329': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/762723517659499792/63775A11C2A49441C268121108C8EBFCF512E2A9/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723517659500387/BFF1AFFD515364F0BFD336A6CE9970BE1DD04B13/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Return to The Last King + GMNotes: '' + GUID: 93a42f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Setup + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -28.5596352 + posY: 1.74997938 + posZ: -20.317215 + rotX: 359.91684 + rotY: 270.002869 + rotZ: 0.0210134052 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723517659500931/4B5458A518FDAF55C44CD8423EC12304E3266A6C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '2329': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/762723517659499792/63775A11C2A49441C268121108C8EBFCF512E2A9/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723517659500387/BFF1AFFD515364F0BFD336A6CE9970BE1DD04B13/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + '2330': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/762723517659499792/63775A11C2A49441C268121108C8EBFCF512E2A9/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723517659500387/BFF1AFFD515364F0BFD336A6CE9970BE1DD04B13/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + '2331': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723517659500931/4B5458A518FDAF55C44CD8423EC12304E3266A6C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 232803 +- 233102 +- 233102 +- 233101 +- 232909 +- 232909 +- 232908 +- 233007 +- 232906 +Description: '' +GMNotes: '' +GUID: 30e504 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Return to The Last King +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -0.9769716 + posY: 3.6073854 + posZ: -37.953743 + rotX: 359.920135 + rotY: 270.000671 + rotZ: 0.01687429 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Path to Carcosa 7bfa11/Bag Return to The Path to Carcosa 5ea94d/Deck Return to The Pallid Mask 659b04.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Path to Carcosa 7bfa11/Bag Return to The Path to Carcosa 5ea94d/Deck Return to The Pallid Mask 659b04.yaml new file mode 100644 index 000000000..b76cf38d6 --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Path to Carcosa 7bfa11/Bag Return to The Path to Carcosa 5ea94d/Deck Return to The Pallid Mask 659b04.yaml @@ -0,0 +1,308 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 232809 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723517659500931/4B5458A518FDAF55C44CD8423EC12304E3266A6C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. + GMNotes: '' + GUID: 5987af + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Malformed Skeleton + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -35.26267 + posY: 1.74619341 + posZ: -30.8496819 + rotX: 359.923279 + rotY: 269.987244 + rotZ: 180.04689 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232930 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2329': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/762723517659499792/63775A11C2A49441C268121108C8EBFCF512E2A9/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723517659500387/BFF1AFFD515364F0BFD336A6CE9970BE1DD04B13/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: c14c8b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Catacombs + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -35.0930061 + posY: 1.74324143 + posZ: -30.5219612 + rotX: 359.924347 + rotY: 270.005219 + rotZ: 180.013565 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232929 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2329': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/762723517659499792/63775A11C2A49441C268121108C8EBFCF512E2A9/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723517659500387/BFF1AFFD515364F0BFD336A6CE9970BE1DD04B13/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: ea2a55 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Catacombs + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -35.2597122 + posY: 1.74558032 + posZ: -29.99385 + rotX: 359.922455 + rotY: 270.001831 + rotZ: 180.02002 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232928 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2329': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/762723517659499792/63775A11C2A49441C268121108C8EBFCF512E2A9/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723517659500387/BFF1AFFD515364F0BFD336A6CE9970BE1DD04B13/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 81920c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Catacombs + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -34.7203751 + posY: 1.7584002 + posZ: -30.3786983 + rotX: 359.915527 + rotY: 270.0015 + rotZ: 180.023209 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232927 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2329': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/762723517659499792/63775A11C2A49441C268121108C8EBFCF512E2A9/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723517659500387/BFF1AFFD515364F0BFD336A6CE9970BE1DD04B13/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 14b1cb + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Catacombs + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -34.9248466 + posY: 1.74125361 + posZ: -30.0143738 + rotX: 359.92688 + rotY: 269.9994 + rotZ: 180.031387 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232926 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2329': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/762723517659499792/63775A11C2A49441C268121108C8EBFCF512E2A9/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723517659500387/BFF1AFFD515364F0BFD336A6CE9970BE1DD04B13/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Return to The Pallid Mask + GMNotes: '' + GUID: 93a42f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Setup + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -34.71162 + posY: 1.74272466 + posZ: -29.7572651 + rotX: 359.916626 + rotY: 270.002319 + rotZ: 0.0133649018 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723517659500931/4B5458A518FDAF55C44CD8423EC12304E3266A6C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '2329': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/762723517659499792/63775A11C2A49441C268121108C8EBFCF512E2A9/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723517659500387/BFF1AFFD515364F0BFD336A6CE9970BE1DD04B13/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 232809 +- 232930 +- 232929 +- 232928 +- 232927 +- 232926 +Description: '' +GMNotes: '' +GUID: 659b04 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Return to The Pallid Mask +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -0.550538063 + posY: 3.61752534 + posZ: -51.6747169 + rotX: 359.920135 + rotY: 270.002258 + rotZ: 0.0168738179 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Path to Carcosa 7bfa11/Bag Return to The Path to Carcosa 5ea94d/Deck Return to The Unspeakable Oath ee8952.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Path to Carcosa 7bfa11/Bag Return to The Path to Carcosa 5ea94d/Deck Return to The Unspeakable Oath ee8952.yaml new file mode 100644 index 000000000..b814bbb96 --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Path to Carcosa 7bfa11/Bag Return to The Path to Carcosa 5ea94d/Deck Return to The Unspeakable Oath ee8952.yaml @@ -0,0 +1,315 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 232807 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723517659500931/4B5458A518FDAF55C44CD8423EC12304E3266A6C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: 5987af + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Clouded Memory + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -24.26045 + posY: 1.73237669 + posZ: -23.6995659 + rotX: 359.970184 + rotY: 270.023254 + rotZ: 180.051483 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232806 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723517659500931/4B5458A518FDAF55C44CD8423EC12304E3266A6C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 5987af + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Radical Treatment + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -23.7032738 + posY: 1.72968888 + posZ: -22.4511242 + rotX: 359.9408 + rotY: 269.986 + rotZ: 180.013138 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232805 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723517659500931/4B5458A518FDAF55C44CD8423EC12304E3266A6C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Avatar. Elite. + GMNotes: '' + GUID: 5987af + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Host of Insanity + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -23.9875546 + posY: 1.73198557 + posZ: -22.8650532 + rotX: 359.9215 + rotY: 270.000824 + rotZ: 180.0179 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233018 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/762723517659499792/63775A11C2A49441C268121108C8EBFCF512E2A9/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723517659500387/BFF1AFFD515364F0BFD336A6CE9970BE1DD04B13/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 2 + GMNotes: '' + GUID: df05b4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: "\u201CThe Really Bad Ones\u201D (v. IV)" + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -23.8656483 + posY: 1.760872 + posZ: -23.5440025 + rotX: 359.936462 + rotY: 269.416748 + rotZ: 180.0147 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233017 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/762723517659499792/63775A11C2A49441C268121108C8EBFCF512E2A9/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723517659500387/BFF1AFFD515364F0BFD336A6CE9970BE1DD04B13/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 2 + GMNotes: '' + GUID: a6bc1a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: "\u201CThe Really Bad Ones\u201D (v. III)" + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -23.5625916 + posY: 1.72734439 + posZ: -23.3609142 + rotX: 359.9396 + rotY: 269.5617 + rotZ: 180.023621 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232916 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2329': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/762723517659499792/63775A11C2A49441C268121108C8EBFCF512E2A9/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723517659500387/BFF1AFFD515364F0BFD336A6CE9970BE1DD04B13/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Return to The Unspeakable Oath + GMNotes: '' + GUID: 93a42f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Setup + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -24.2288 + posY: 1.73005414 + posZ: -22.44733 + rotX: 359.921936 + rotY: 269.998169 + rotZ: 0.003204652 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723517659500931/4B5458A518FDAF55C44CD8423EC12304E3266A6C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '2329': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/762723517659499792/63775A11C2A49441C268121108C8EBFCF512E2A9/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723517659500387/BFF1AFFD515364F0BFD336A6CE9970BE1DD04B13/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + '2330': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/762723517659499792/63775A11C2A49441C268121108C8EBFCF512E2A9/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723517659500387/BFF1AFFD515364F0BFD336A6CE9970BE1DD04B13/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 232807 +- 232806 +- 232805 +- 233018 +- 233017 +- 232916 +Description: '' +GMNotes: '' +GUID: ee8952 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Return to The Unspeakable Oath +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -0.8411684 + posY: 3.620138 + posZ: -44.1782761 + rotX: 359.920135 + rotY: 270.002136 + rotZ: 0.0168734547 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Path to Carcosa 7bfa11/Deck A Phantom of Truth 5a1979.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Path to Carcosa 7bfa11/Deck A Phantom of Truth 5a1979.yaml new file mode 100644 index 000000000..df31952ca --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Path to Carcosa 7bfa11/Deck A Phantom of Truth 5a1979.yaml @@ -0,0 +1,1698 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- 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 + UniqueBack: false + Description: Madness. Pact. + GMNotes: '' + GUID: 4f903e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Lost Soul + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -14.9651985 + posY: 1.58539319 + posZ: 38.6434 + rotX: 359.920837 + rotY: 269.9995 + rotZ: 0.0123322569 + 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 + UniqueBack: false + Description: Madness. Pact. + GMNotes: '' + GUID: 7bba1d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Lost Soul + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -15.4210424 + posY: 1.73706019 + posZ: 39.0119438 + rotX: 359.972046 + rotY: 269.9992 + rotZ: 359.960327 + 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 + UniqueBack: false + Description: Madness. Pact. + GMNotes: '' + GUID: 4f903e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Lost Soul + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -15.4194393 + posY: 1.7756114 + posZ: 38.9999 + rotX: 359.9374 + rotY: 270.0 + rotZ: 0.0115852179 + 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 + UniqueBack: false + Description: Madness. Pact. + GMNotes: '' + GUID: febed7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Lost Soul + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -15.4194393 + posY: 1.76331055 + posZ: 38.9999 + rotX: 359.938965 + rotY: 270.0 + rotZ: 0.009329619 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232247 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: '573722' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Frozen in Fear + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -10.5696154 + posY: 1.93006849 + posZ: 42.7966537 + rotX: 359.556122 + rotY: 269.988373 + rotZ: 178.759262 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232247 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: f719ae + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Frozen in Fear + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -10.890419 + posY: 1.95210981 + posZ: 42.11201 + rotX: 359.936066 + rotY: 270.000336 + rotZ: 179.794083 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232246 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hex. Terror. + GMNotes: '' + GUID: cf1ccc + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Torturous Chords + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -10.7287369 + posY: 1.92425835 + posZ: 42.0833359 + rotX: 359.936554 + rotY: 270.0015 + rotZ: 180.013855 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232246 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hex. Terror. + GMNotes: '' + GUID: e8845b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Torturous Chords + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -12.5341215 + posY: 1.7453233 + posZ: 37.98386 + rotX: 359.916473 + rotY: 269.998535 + rotZ: 0.00614299066 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232246 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hex. Terror. + GMNotes: '' + GUID: cf1ccc + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Torturous Chords + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -12.5341024 + posY: 1.75921464 + posZ: 37.9838562 + rotX: 359.9205 + rotY: 269.998535 + rotZ: 0.0148495669 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232245 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: '151647' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Deadly Fate + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -11.9223719 + posY: 1.5807929 + posZ: 37.24564 + rotX: 359.920319 + rotY: 269.999878 + rotZ: 0.0156376343 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232245 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: bba9fa + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Deadly Fate + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -12.11165 + posY: 1.7443186 + posZ: 37.3240128 + rotX: 359.925232 + rotY: 269.9989 + rotZ: 0.0106753586 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232245 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: '151647' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Deadly Fate + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -12.1116314 + posY: 1.75823164 + posZ: 37.32401 + rotX: 359.921722 + rotY: 269.9989 + rotZ: 0.0149486512 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232244 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: a37e3d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Twin Suns + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -11.42672 + posY: 1.58030915 + posZ: 38.0056076 + rotX: 359.920471 + rotY: 269.999756 + rotZ: 0.0145918922 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232244 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: 75bda2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Twin Suns + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -11.9251595 + posY: 1.74802411 + posZ: 38.1999435 + rotX: 359.948517 + rotY: 270.0 + rotZ: -0.0009938327 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232243 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Byakhee. + GMNotes: '' + GUID: 8bb7ff + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Stealthy Byakhee + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -13.2151089 + posY: 1.5825119 + posZ: 37.1510353 + rotX: 359.920868 + rotY: 269.999756 + rotZ: 0.0119971139 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232243 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Byakhee. + GMNotes: '' + GUID: 38cc9a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Stealthy Byakhee + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -12.8213625 + posY: 1.73223686 + posZ: 37.1293068 + rotX: 359.943817 + rotY: 269.999878 + rotZ: -0.004009538 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231901 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378686851/006B65A59360F63826342C2B1A062C1AD727BD53/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378687267/945F8EF94DC605E0731E37C1BCD3FE65FCB86D02/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Humanoid. Avatar. Elite. + GMNotes: '' + GUID: a0a6a4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Organist + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -10.9904041 + posY: 1.82814121 + posZ: 42.30687 + rotX: 359.906647 + rotY: 270.002625 + rotZ: 180.01767 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231914 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378686851/006B65A59360F63826342C2B1A062C1AD727BD53/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378687267/945F8EF94DC605E0731E37C1BCD3FE65FCB86D02/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Paris. + GMNotes: '' + GUID: b52eaf + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Gardens of Luxembourg + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -9.903679 + posY: 1.83257639 + posZ: 42.12175 + rotX: 359.919952 + rotY: 269.998444 + rotZ: 180.017471 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231913 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378686851/006B65A59360F63826342C2B1A062C1AD727BD53/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378687267/945F8EF94DC605E0731E37C1BCD3FE65FCB86D02/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Paris. Rail. + GMNotes: '' + GUID: 7b7fad + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Notre-Dame + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -10.8368731 + posY: 1.80846274 + posZ: 41.9876747 + rotX: 359.916565 + rotY: 269.981537 + rotZ: 180.003937 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231912 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378686851/006B65A59360F63826342C2B1A062C1AD727BD53/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378687267/945F8EF94DC605E0731E37C1BCD3FE65FCB86D02/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Paris. Rail. + GMNotes: '' + GUID: 191fba + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Le Marais + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -10.5588827 + posY: 1.8142029 + posZ: 42.618412 + rotX: 359.92038 + rotY: 270.0001 + rotZ: 180.017258 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231911 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378686851/006B65A59360F63826342C2B1A062C1AD727BD53/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378687267/945F8EF94DC605E0731E37C1BCD3FE65FCB86D02/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Paris. Rail. + GMNotes: '' + GUID: b52eaf + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Le Marais + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -10.5292139 + posY: 1.78884232 + posZ: 42.251606 + rotX: 359.925049 + rotY: 270.002228 + rotZ: 180.01825 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231910 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378686851/006B65A59360F63826342C2B1A062C1AD727BD53/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378687267/945F8EF94DC605E0731E37C1BCD3FE65FCB86D02/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Paris. + GMNotes: '' + GUID: 065c64 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Canal Saint-Martin + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -11.588192 + posY: 1.77989733 + posZ: 42.5200157 + rotX: 359.957458 + rotY: 270.038147 + rotZ: 179.973785 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231909 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378686851/006B65A59360F63826342C2B1A062C1AD727BD53/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378687267/945F8EF94DC605E0731E37C1BCD3FE65FCB86D02/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Paris. + GMNotes: '' + GUID: 79ea7b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: "P\xE8re Lachaise Cemetery" + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -10.6636829 + posY: 1.76971817 + posZ: 42.1866837 + rotX: 359.932953 + rotY: 270.004669 + rotZ: 180.01741 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231908 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378686851/006B65A59360F63826342C2B1A062C1AD727BD53/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378687267/945F8EF94DC605E0731E37C1BCD3FE65FCB86D02/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Paris. Rail. + GMNotes: '' + GUID: 1af959 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Gare d'Orsay + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -10.6737051 + posY: 1.76005208 + posZ: 42.25321 + rotX: 359.9302 + rotY: 269.97583 + rotZ: 180.038727 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231907 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378686851/006B65A59360F63826342C2B1A062C1AD727BD53/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378687267/945F8EF94DC605E0731E37C1BCD3FE65FCB86D02/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Paris. Rail. + GMNotes: '' + GUID: 78e730 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: "Op\xE9ra Garnier" + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -10.4399986 + posY: 1.75005686 + posZ: 42.2418861 + rotX: 359.92334 + rotY: 270.037659 + rotZ: 179.985214 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231906 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378686851/006B65A59360F63826342C2B1A062C1AD727BD53/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378687267/945F8EF94DC605E0731E37C1BCD3FE65FCB86D02/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Paris. Rail. + GMNotes: '' + GUID: b52eaf + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: "Op\xE9ra Garnier" + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -10.2079582 + posY: 1.74005723 + posZ: 42.58013 + rotX: 359.924377 + rotY: 270.052551 + rotZ: 179.9632 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231905 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378686851/006B65A59360F63826342C2B1A062C1AD727BD53/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378687267/945F8EF94DC605E0731E37C1BCD3FE65FCB86D02/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Theatre of the Great Puppet + GMNotes: '' + GUID: b52eaf + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Grand Guignol + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -10.4447289 + posY: 1.73073828 + posZ: 42.3241577 + rotX: 359.923981 + rotY: 270.053345 + rotZ: 179.974274 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231904 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378686851/006B65A59360F63826342C2B1A062C1AD727BD53/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378687267/945F8EF94DC605E0731E37C1BCD3FE65FCB86D02/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Paris. Rail. + GMNotes: '' + GUID: bf452a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Montmartre + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -10.4957094 + posY: 1.72119927 + posZ: 42.380043 + rotX: 359.920868 + rotY: 269.999756 + rotZ: 180.017929 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231903 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378686851/006B65A59360F63826342C2B1A062C1AD727BD53/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378687267/945F8EF94DC605E0731E37C1BCD3FE65FCB86D02/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Paris. Rail. + GMNotes: '' + GUID: b52eaf + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Montmartre + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -10.7215 + posY: 1.72738957 + posZ: 42.21593 + rotX: 359.919952 + rotY: 270.000061 + rotZ: 180.017227 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231902 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378686851/006B65A59360F63826342C2B1A062C1AD727BD53/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378687267/945F8EF94DC605E0731E37C1BCD3FE65FCB86D02/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Paris. Rail. + GMNotes: '' + GUID: b52eaf + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Montparnasse + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -10.7867031 + posY: 1.70159531 + posZ: 41.6474342 + rotX: 359.920776 + rotY: 269.985 + rotZ: 180.043564 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231730 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2317': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378732934/F41E84FCDC0AB52634348C439A6D1A725CEB8115/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378736378/628E179D5305E95AFC25D86526320A24F8B27391/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 2 + GMNotes: '' + GUID: 09a07b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Stalked by Shadows + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -10.44534 + posY: 1.75984454 + posZ: 42.3094978 + rotX: 359.936462 + rotY: 269.298218 + rotZ: 180.0146 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231729 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2317': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378732934/F41E84FCDC0AB52634348C439A6D1A725CEB8115/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378736378/628E179D5305E95AFC25D86526320A24F8B27391/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 2 + GMNotes: '' + GUID: '402117' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Pursuing Shadows + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -10.8543453 + posY: 1.75446212 + posZ: 42.5989265 + rotX: 359.940338 + rotY: 269.103058 + rotZ: 180.03064 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231728 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2317': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378732934/F41E84FCDC0AB52634348C439A6D1A725CEB8115/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378736378/628E179D5305E95AFC25D86526320A24F8B27391/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 1 + GMNotes: '' + GUID: be1a27 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Parisian Conspiracy (v. II) + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -10.815074 + posY: 1.74972749 + posZ: 43.13518 + rotX: 359.968536 + rotY: 269.1556 + rotZ: 179.994553 + 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: http://cloud-3.steamusercontent.com/ugc/775107058378732934/F41E84FCDC0AB52634348C439A6D1A725CEB8115/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378736378/628E179D5305E95AFC25D86526320A24F8B27391/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 1 + GMNotes: '' + GUID: 136abe + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Parisian Conspiracy (v. I) + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -10.4994087 + posY: 1.719567 + posZ: 42.51626 + rotX: 0.49918437 + rotY: 270.013123 + rotZ: 178.912109 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231726 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2317': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378732934/F41E84FCDC0AB52634348C439A6D1A725CEB8115/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378736378/628E179D5305E95AFC25D86526320A24F8B27391/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 3 + GMNotes: '' + GUID: 3da436 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Third Night + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -10.7310915 + posY: 1.74862731 + posZ: 42.43453 + rotX: 359.9391 + rotY: 270.7658 + rotZ: 180.028931 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231725 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2317': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378732934/F41E84FCDC0AB52634348C439A6D1A725CEB8115/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378736378/628E179D5305E95AFC25D86526320A24F8B27391/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 2 + GMNotes: '' + GUID: 90b52d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Second Night + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -10.3897762 + posY: 1.74621844 + posZ: 43.2244034 + rotX: 359.93042 + rotY: 269.10022 + rotZ: 180.034744 + 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: http://cloud-3.steamusercontent.com/ugc/775107058378732934/F41E84FCDC0AB52634348C439A6D1A725CEB8115/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378736378/628E179D5305E95AFC25D86526320A24F8B27391/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 1 + GMNotes: '' + GUID: 3da436 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The First Night + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -10.3852816 + posY: 1.72834837 + posZ: 42.2738075 + rotX: 359.9418 + rotY: 266.5169 + rotZ: 180.028336 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231900 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378686851/006B65A59360F63826342C2B1A062C1AD727BD53/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378687267/945F8EF94DC605E0731E37C1BCD3FE65FCB86D02/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: A Phantom of Truth + GMNotes: '' + GUID: b52eaf + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Scenario + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -10.7675018 + posY: 1.58355939 + posZ: 42.535 + rotX: 359.920319 + rotY: 270.0022 + rotZ: 180.018143 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2317': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378732934/F41E84FCDC0AB52634348C439A6D1A725CEB8115/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378736378/628E179D5305E95AFC25D86526320A24F8B27391/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378686851/006B65A59360F63826342C2B1A062C1AD727BD53/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378687267/945F8EF94DC605E0731E37C1BCD3FE65FCB86D02/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '2323': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 232348 +- 232348 +- 232348 +- 232348 +- 232247 +- 232247 +- 232246 +- 232246 +- 232246 +- 232245 +- 232245 +- 232245 +- 232244 +- 232244 +- 232243 +- 232243 +- 231901 +- 231914 +- 231913 +- 231912 +- 231911 +- 231910 +- 231909 +- 231908 +- 231907 +- 231906 +- 231905 +- 231904 +- 231903 +- 231902 +- 231730 +- 231729 +- 231728 +- 231727 +- 231726 +- 231725 +- 231724 +- 231900 +Description: '' +GMNotes: '' +GUID: 5a1979 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: A Phantom of Truth +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 11.6196747 + posY: 2.70731473 + posZ: -69.65222 + rotX: 359.920135 + rotY: 269.993866 + rotZ: 0.0168969128 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Path to Carcosa 7bfa11/Deck Black Stars Rise 2ba352.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Path to Carcosa 7bfa11/Deck Black Stars Rise 2ba352.yaml new file mode 100644 index 000000000..0c1d0718d --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Path to Carcosa 7bfa11/Deck Black Stars Rise 2ba352.yaml @@ -0,0 +1,1691 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 232257 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: bce5af + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Worlds Merge + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -8.114729 + posY: 1.575426 + posZ: 37.2192535 + rotX: 359.9208 + rotY: 269.999054 + rotZ: 0.0122761764 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232257 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: f0fa86 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Worlds Merge + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -8.183512 + posY: 1.73751938 + posZ: 36.8471451 + rotX: 359.927124 + rotY: 269.999146 + rotZ: 0.0183420554 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232257 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: bce5af + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Worlds Merge + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -8.116457 + posY: 1.75397313 + posZ: 37.0509529 + rotX: 359.936 + rotY: 270.0 + rotZ: 0.0131659834 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232256 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: bce5af + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Crashing Floods + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -7.29582834 + posY: 1.57416618 + posZ: 36.66085 + rotX: 359.920349 + rotY: 269.999939 + rotZ: 0.0153257009 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232256 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: f76046 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Crashing Floods + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -7.260278 + posY: 1.73602772 + posZ: 36.60649 + rotX: 359.924561 + rotY: 269.9991 + rotZ: 0.0114589455 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232256 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: bce5af + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Crashing Floods + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -7.26025867 + posY: 1.74993169 + posZ: 36.6064873 + rotX: 359.918884 + rotY: 269.9991 + rotZ: 0.0164478477 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232255 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Byakhee. Cultist. + GMNotes: '' + GUID: bce5af + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Rift Seeker + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -4.27281761 + posY: 1.5702374 + posZ: 37.783783 + rotX: 359.920715 + rotY: 269.999756 + rotZ: 0.01260898 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232255 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Byakhee. Cultist. + GMNotes: '' + GUID: 2e6d15 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Rift Seeker + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -4.22531652 + posY: 1.7155571 + posZ: 37.6702042 + rotX: 359.947021 + rotY: 269.999359 + rotZ: 0.00097228185 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232254 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. + GMNotes: '' + GUID: bce5af + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Tidal Terror + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -6.472139 + posY: 1.57301426 + posZ: 36.6206856 + rotX: 359.9203 + rotY: 269.9992 + rotZ: 0.0158562474 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232254 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. + GMNotes: '' + GUID: '617504' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Tidal Terror + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -6.47199249 + posY: 1.73475218 + posZ: 36.7799 + rotX: 359.9169 + rotY: 269.999176 + rotZ: 0.0133368988 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231944 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378686851/006B65A59360F63826342C2B1A062C1AD727BD53/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378687267/945F8EF94DC605E0731E37C1BCD3FE65FCB86D02/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: b52eaf + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Abbey Tower + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.94850421 + posY: 1.87451732 + posZ: 41.0826874 + rotX: 359.9002 + rotY: 270.004028 + rotZ: 180.023392 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231943 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378686851/006B65A59360F63826342C2B1A062C1AD727BD53/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378687267/945F8EF94DC605E0731E37C1BCD3FE65FCB86D02/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 2f3d21 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Abbey Tower + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.15792727 + posY: 1.88069987 + posZ: 41.03615 + rotX: 359.919861 + rotY: 270.000061 + rotZ: 180.017059 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231942 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378686851/006B65A59360F63826342C2B1A062C1AD727BD53/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378687267/945F8EF94DC605E0731E37C1BCD3FE65FCB86D02/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 79421c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Chapel of St. Aubert + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.195345 + posY: 1.85552406 + posZ: 41.0079575 + rotX: 359.935272 + rotY: 270.010925 + rotZ: 180.0163 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231941 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378686851/006B65A59360F63826342C2B1A062C1AD727BD53/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378687267/945F8EF94DC605E0731E37C1BCD3FE65FCB86D02/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: e75ba8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Chapel of St. Aubert + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.44038939 + posY: 1.86172986 + posZ: 41.00181 + rotX: 359.919922 + rotY: 270.001282 + rotZ: 180.017075 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231940 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378686851/006B65A59360F63826342C2B1A062C1AD727BD53/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378687267/945F8EF94DC605E0731E37C1BCD3FE65FCB86D02/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 0a231c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Knight's Hall + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.9500947 + posY: 1.83588111 + posZ: 41.0874672 + rotX: 359.900269 + rotY: 270.002625 + rotZ: 180.024643 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231939 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378686851/006B65A59360F63826342C2B1A062C1AD727BD53/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378687267/945F8EF94DC605E0731E37C1BCD3FE65FCB86D02/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: b52eaf + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Cloister + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.16365647 + posY: 1.8265866 + posZ: 41.2398148 + rotX: 359.912476 + rotY: 270.000336 + rotZ: 180.024017 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231938 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378686851/006B65A59360F63826342C2B1A062C1AD727BD53/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378687267/945F8EF94DC605E0731E37C1BCD3FE65FCB86D02/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: b52eaf + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: "Ch\u0153ur Gothique" + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.42277837 + posY: 1.83273637 + posZ: 41.0389671 + rotX: 359.9199 + rotY: 270.000061 + rotZ: 180.017075 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231937 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378686851/006B65A59360F63826342C2B1A062C1AD727BD53/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378687267/945F8EF94DC605E0731E37C1BCD3FE65FCB86D02/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: c7ee02 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: "Ch\u0153ur Gothique" + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.08052731 + posY: 1.80702829 + posZ: 41.0795479 + rotX: 359.915649 + rotY: 270.0081 + rotZ: 180.012909 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231936 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378686851/006B65A59360F63826342C2B1A062C1AD727BD53/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378687267/945F8EF94DC605E0731E37C1BCD3FE65FCB86D02/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 106f19 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Abbey Church + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.549953 + posY: 1.79788125 + posZ: 41.1432228 + rotX: 359.917419 + rotY: 270.050934 + rotZ: 179.995346 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231935 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378686851/006B65A59360F63826342C2B1A062C1AD727BD53/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378687267/945F8EF94DC605E0731E37C1BCD3FE65FCB86D02/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: b52eaf + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Broken Steps + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.143164 + posY: 1.78792489 + posZ: 41.3632469 + rotX: 359.9183 + rotY: 269.997375 + rotZ: 180.018631 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231934 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378686851/006B65A59360F63826342C2B1A062C1AD727BD53/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378687267/945F8EF94DC605E0731E37C1BCD3FE65FCB86D02/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: c2651e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Broken Steps + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.995713 + posY: 1.79357553 + posZ: 41.1339226 + rotX: 359.920441 + rotY: 270.000183 + rotZ: 180.017349 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231933 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378686851/006B65A59360F63826342C2B1A062C1AD727BD53/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378687267/945F8EF94DC605E0731E37C1BCD3FE65FCB86D02/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: b52eaf + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: North Tower + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.88920283 + posY: 1.783792 + posZ: 41.1015358 + rotX: 359.920441 + rotY: 269.9914 + rotZ: 180.017059 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231932 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378686851/006B65A59360F63826342C2B1A062C1AD727BD53/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378687267/945F8EF94DC605E0731E37C1BCD3FE65FCB86D02/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 69eae5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: North Tower + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.90021276 + posY: 1.83212793 + posZ: 40.9962425 + rotX: 359.922546 + rotY: 270.001648 + rotZ: 183.333572 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231931 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378686851/006B65A59360F63826342C2B1A062C1AD727BD53/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378687267/945F8EF94DC605E0731E37C1BCD3FE65FCB86D02/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: b52eaf + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Outer Wall + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.985278 + posY: 1.76453435 + posZ: 40.9158554 + rotX: 359.920349 + rotY: 270.000031 + rotZ: 180.017151 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231930 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378686851/006B65A59360F63826342C2B1A062C1AD727BD53/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378687267/945F8EF94DC605E0731E37C1BCD3FE65FCB86D02/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 014bd6 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Outer Wall + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.38129234 + posY: 1.73968279 + posZ: 40.9520531 + rotX: 359.937256 + rotY: 270.078979 + rotZ: 179.9887 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231929 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378686851/006B65A59360F63826342C2B1A062C1AD727BD53/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378687267/945F8EF94DC605E0731E37C1BCD3FE65FCB86D02/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: b52eaf + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Grand Rue + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.94003153 + posY: 1.730483 + posZ: 40.8082161 + rotX: 359.930817 + rotY: 269.999542 + rotZ: 180.029449 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231928 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378686851/006B65A59360F63826342C2B1A062C1AD727BD53/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378687267/945F8EF94DC605E0731E37C1BCD3FE65FCB86D02/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: b52eaf + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: "Porte de l'Avanc\xE9e" + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.889424 + posY: 1.71997571 + posZ: 41.4351044 + rotX: 359.922638 + rotY: 269.9984 + rotZ: 180.019348 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231746 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2317': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378732934/F41E84FCDC0AB52634348C439A6D1A725CEB8115/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378736378/628E179D5305E95AFC25D86526320A24F8B27391/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 3c + GMNotes: '' + GUID: e572ec + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Open The Path Above + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.91626263 + posY: 1.72590256 + posZ: 41.2031364 + rotX: 359.9366 + rotY: 269.107178 + rotZ: 180.014969 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231745 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2317': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378732934/F41E84FCDC0AB52634348C439A6D1A725CEB8115/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378736378/628E179D5305E95AFC25D86526320A24F8B27391/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 3a + GMNotes: '' + GUID: 3da436 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Open The Path Below + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.51023579 + posY: 1.70360351 + posZ: 41.73342 + rotX: 359.983765 + rotY: 269.951324 + rotZ: 179.785568 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231744 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2317': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378732934/F41E84FCDC0AB52634348C439A6D1A725CEB8115/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378736378/628E179D5305E95AFC25D86526320A24F8B27391/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 3c + GMNotes: '' + GUID: f3f8a4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Swallowed Sky + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.550085 + posY: 1.705954 + posZ: 41.0130463 + rotX: 359.936523 + rotY: 269.2413 + rotZ: 180.014648 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231743 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2317': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378732934/F41E84FCDC0AB52634348C439A6D1A725CEB8115/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378736378/628E179D5305E95AFC25D86526320A24F8B27391/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 2c + GMNotes: '' + GUID: 8228d2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Entity Above + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.71779656 + posY: 1.74908 + posZ: 41.23673 + rotX: 359.9239 + rotY: 269.243774 + rotZ: 180.046875 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231742 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2317': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378732934/F41E84FCDC0AB52634348C439A6D1A725CEB8115/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378736378/628E179D5305E95AFC25D86526320A24F8B27391/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 2c + GMNotes: '' + GUID: 60178d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Entity Above + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.95087981 + posY: 1.727561 + posZ: 41.6259232 + rotX: 359.940643 + rotY: 269.9045 + rotZ: 180.030884 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231741 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2317': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378732934/F41E84FCDC0AB52634348C439A6D1A725CEB8115/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378736378/628E179D5305E95AFC25D86526320A24F8B27391/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 1c + GMNotes: '' + GUID: 98981e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Ritual Begins + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.784546 + posY: 1.73778355 + posZ: 40.9965973 + rotX: 359.9399 + rotY: 269.107178 + rotZ: 180.030762 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231740 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2317': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378732934/F41E84FCDC0AB52634348C439A6D1A725CEB8115/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378736378/628E179D5305E95AFC25D86526320A24F8B27391/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 3a + GMNotes: '' + GUID: 6103fa + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The City Floods + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.806889 + posY: 1.737233 + posZ: 40.97434 + rotX: 0.574866235 + rotY: 270.022644 + rotZ: 180.147308 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231739 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2317': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378732934/F41E84FCDC0AB52634348C439A6D1A725CEB8115/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378736378/628E179D5305E95AFC25D86526320A24F8B27391/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 2a + GMNotes: '' + GUID: 374aae + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Let The Storm Rage + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.16592145 + posY: 1.7377764 + posZ: 41.41619 + rotX: 359.939545 + rotY: 269.298279 + rotZ: 180.030579 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231738 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2317': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378732934/F41E84FCDC0AB52634348C439A6D1A725CEB8115/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378736378/628E179D5305E95AFC25D86526320A24F8B27391/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 2a + GMNotes: '' + GUID: 92b2ed + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Let The Storm Rage + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.68275547 + posY: 1.736476 + posZ: 41.2870445 + rotX: 359.9311 + rotY: 270.90332 + rotZ: 180.001709 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231737 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2317': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378732934/F41E84FCDC0AB52634348C439A6D1A725CEB8115/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378736378/628E179D5305E95AFC25D86526320A24F8B27391/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 1a + GMNotes: '' + GUID: ca41f2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Tide Rises + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.08567619 + posY: 1.75715828 + posZ: 40.8536072 + rotX: 0.0452262871 + rotY: 269.999023 + rotZ: 179.198273 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231927 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378686851/006B65A59360F63826342C2B1A062C1AD727BD53/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378687267/945F8EF94DC605E0731E37C1BCD3FE65FCB86D02/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Black Stars Rise + GMNotes: '' + GUID: 1163a0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Scenario + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.13563323 + posY: 1.57252169 + posZ: 41.10654 + rotX: 359.9201 + rotY: 270.000122 + rotZ: 180.016861 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2317': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378732934/F41E84FCDC0AB52634348C439A6D1A725CEB8115/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378736378/628E179D5305E95AFC25D86526320A24F8B27391/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378686851/006B65A59360F63826342C2B1A062C1AD727BD53/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378687267/945F8EF94DC605E0731E37C1BCD3FE65FCB86D02/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 232257 +- 232257 +- 232257 +- 232256 +- 232256 +- 232256 +- 232255 +- 232255 +- 232254 +- 232254 +- 231944 +- 231943 +- 231942 +- 231941 +- 231940 +- 231939 +- 231938 +- 231937 +- 231936 +- 231935 +- 231934 +- 231933 +- 231932 +- 231931 +- 231930 +- 231929 +- 231928 +- 231746 +- 231745 +- 231744 +- 231743 +- 231742 +- 231741 +- 231740 +- 231739 +- 231738 +- 231737 +- 231927 +Description: '' +GMNotes: '' +GUID: 2ba352 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Black Stars Rise +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 12.0703726 + posY: 2.704256 + posZ: -77.90602 + rotX: 359.9201 + rotY: 269.99942 + rotZ: 0.0168872233 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Path to Carcosa 7bfa11/Deck Byakhee 20e9f8.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Path to Carcosa 7bfa11/Deck Byakhee 20e9f8.yaml new file mode 100644 index 000000000..41db043bd --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Path to Carcosa 7bfa11/Deck Byakhee 20e9f8.yaml @@ -0,0 +1,215 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 232211 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Pact. + GMNotes: '' + GUID: 60d096 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Hunted by Byakhee + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -42.38965 + posY: 1.614579 + posZ: 7.717301 + rotX: 359.920258 + rotY: 269.999359 + rotZ: 0.01605293 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232211 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Pact. + GMNotes: '' + GUID: 5e7c00 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Hunted by Byakhee + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -42.4008026 + posY: 1.775796 + posZ: 7.818656 + rotX: 359.9184 + rotY: 269.9989 + rotZ: 0.0150963822 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232210 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Byakhee. + GMNotes: '' + GUID: b323c1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Swift Byakhee + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -42.0870323 + posY: 1.79262948 + posZ: 7.32864046 + rotX: 359.920349 + rotY: 269.997162 + rotZ: 0.01657234 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232210 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Byakhee. + GMNotes: '' + GUID: b323c1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Swift Byakhee + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -42.47628 + posY: 1.76898062 + posZ: 7.469135 + rotX: 359.919647 + rotY: 269.997253 + rotZ: 0.0159163754 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 232211 +- 232211 +- 232210 +- 232210 +Description: '' +GMNotes: '' +GUID: 20e9f8 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Byakhee +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 1.66616225 + posY: 2.606313 + posZ: -73.86164 + rotX: 359.920135 + rotY: 270.001831 + rotZ: 0.0168762431 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Path to Carcosa 7bfa11/Deck Cult of the Yellow Sign bd4746.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Path to Carcosa 7bfa11/Deck Cult of the Yellow Sign bd4746.yaml new file mode 100644 index 000000000..5551e4679 --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Path to Carcosa 7bfa11/Deck Cult of the Yellow Sign bd4746.yaml @@ -0,0 +1,301 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 232224 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Pact. + GMNotes: '' + GUID: e20141 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The King's Edict + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -45.28207 + posY: 1.61571622 + posZ: -1.99931252 + rotX: 359.920471 + rotY: 269.999542 + rotZ: 0.0138937524 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232224 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Pact. + GMNotes: '' + GUID: '522968' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The King's Edict + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -45.3332253 + posY: 1.76760066 + posZ: -1.86887467 + rotX: 359.932678 + rotY: 269.9998 + rotZ: -0.00222653663 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232223 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Cultist. + GMNotes: '' + GUID: 0bf1f8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Agent of the King + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -45.31658 + posY: 1.77869308 + posZ: -1.76723373 + rotX: 359.925659 + rotY: 270.030243 + rotZ: 359.9921 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232222 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Cultist. + GMNotes: '' + GUID: 8ada81 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Fanatic + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -46.03409 + posY: 1.61745238 + posZ: 0.648399532 + rotX: 359.9214 + rotY: 269.999054 + rotZ: 0.00768406037 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232222 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Cultist. + GMNotes: '' + GUID: dcaaad + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Fanatic + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -45.8543549 + posY: 1.76917815 + posZ: 0.300536335 + rotX: 359.907532 + rotY: 269.998657 + rotZ: 0.0211735331 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232222 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Cultist. + GMNotes: '' + GUID: 8ada81 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Fanatic + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -45.8543625 + posY: 1.80176485 + posZ: 0.3005505 + rotX: 359.920227 + rotY: 269.998779 + rotZ: 0.0167158749 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 232224 +- 232224 +- 232223 +- 232222 +- 232222 +- 232222 +Description: '' +GMNotes: '' +GUID: bd4746 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Cult of the Yellow Sign +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.896109 + posY: 2.614352 + posZ: -77.76373 + rotX: 359.9201 + rotY: 270.018463 + rotZ: 0.0168522932 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Path to Carcosa 7bfa11/Deck Curtain Call 6e3cab.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Path to Carcosa 7bfa11/Deck Curtain Call 6e3cab.yaml new file mode 100644 index 000000000..da6999d29 --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Path to Carcosa 7bfa11/Deck Curtain Call 6e3cab.yaml @@ -0,0 +1,924 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 232201 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Messenger from Aldebaran + GMNotes: '' + GUID: 2e35aa + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Royal Emissary + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -31.4848785 + posY: 1.82743859 + posZ: 8.538826 + rotX: 359.920868 + rotY: 269.9959 + rotZ: 180.02124 + 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 + UniqueBack: false + Description: Humanoid. Elite. + GMNotes: '' + GUID: 6720ef + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Man in the Pallid Mask + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -5.569984 + posY: 1.78237653 + posZ: 10.7603827 + rotX: 359.935974 + rotY: 269.9988 + rotZ: 180.008972 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232010 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378685352/22FD056BAF1966FE2D1AC46FC1BF90C1A03A1404/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378686413/C1688C1A909FDC7357EB3EEFADAB1FBD5818BD3E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Private. + GMNotes: '' + GUID: e83ec9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Backstage Doorway + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -8.457285 + posY: 2.5767436 + posZ: 0.231421784 + rotX: 0.0798653662 + rotY: 270.0 + rotZ: 359.98584 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232009 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378685352/22FD056BAF1966FE2D1AC46FC1BF90C1A03A1404/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378686413/C1688C1A909FDC7357EB3EEFADAB1FBD5818BD3E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Private. + GMNotes: '' + GUID: b75450 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Backstage Doorway + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -7.46941948 + posY: 2.43174958 + posZ: -2.00708055 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232008 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378685352/22FD056BAF1966FE2D1AC46FC1BF90C1A03A1404/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378686413/C1688C1A909FDC7357EB3EEFADAB1FBD5818BD3E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Private. + GMNotes: '' + GUID: 0797a9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Backstage Doorway + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -10.5436449 + posY: 2.58284569 + posZ: 4.20713234 + rotX: 359.8981 + rotY: 269.9999 + rotZ: 0.0212976653 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232007 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378685352/22FD056BAF1966FE2D1AC46FC1BF90C1A03A1404/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378686413/C1688C1A909FDC7357EB3EEFADAB1FBD5818BD3E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Private. + GMNotes: '' + GUID: 5134e0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Lobby Doorway + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -10.2633791 + posY: 2.58148479 + posZ: 3.55489635 + rotX: 359.9156 + rotY: 269.999878 + rotZ: 0.0175192337 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232006 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378685352/22FD056BAF1966FE2D1AC46FC1BF90C1A03A1404/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378686413/C1688C1A909FDC7357EB3EEFADAB1FBD5818BD3E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Private. + GMNotes: '' + GUID: aa08d4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Lobby Doorway + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -11.000864 + posY: 2.57889652 + posZ: 1.40700436 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232005 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378685352/22FD056BAF1966FE2D1AC46FC1BF90C1A03A1404/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378686413/C1688C1A909FDC7357EB3EEFADAB1FBD5818BD3E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Private. + GMNotes: '' + GUID: 5c1254 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Lobby Doorway + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -10.9415817 + posY: 2.5785327 + posZ: -0.5520778 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232004 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378685352/22FD056BAF1966FE2D1AC46FC1BF90C1A03A1404/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378686413/C1688C1A909FDC7357EB3EEFADAB1FBD5818BD3E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 37e3f9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Backstage + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -5.18525028 + posY: 1.713989 + posZ: 10.93315 + rotX: 359.899139 + rotY: 269.969635 + rotZ: 180.011581 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232003 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378685352/22FD056BAF1966FE2D1AC46FC1BF90C1A03A1404/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378686413/C1688C1A909FDC7357EB3EEFADAB1FBD5818BD3E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 3e4d11 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Balcony + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -6.399499 + posY: 1.70590651 + posZ: 10.7324448 + rotX: 359.9218 + rotY: 270.000336 + rotZ: 180.019058 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232002 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378685352/22FD056BAF1966FE2D1AC46FC1BF90C1A03A1404/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378686413/C1688C1A909FDC7357EB3EEFADAB1FBD5818BD3E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 67a96b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Lobby + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -5.39846849 + posY: 1.69512033 + posZ: 10.8077173 + rotX: 359.914673 + rotY: 270.0086 + rotZ: 180.016449 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232001 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378685352/22FD056BAF1966FE2D1AC46FC1BF90C1A03A1404/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378686413/C1688C1A909FDC7357EB3EEFADAB1FBD5818BD3E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: '592384' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Theatre + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -5.68276358 + posY: 1.68633723 + posZ: 10.5833683 + rotX: 359.96283 + rotY: 269.9966 + rotZ: 179.981613 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231706 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2317': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378732934/F41E84FCDC0AB52634348C439A6D1A725CEB8115/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378736378/628E179D5305E95AFC25D86526320A24F8B27391/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 3 + GMNotes: '' + GUID: 5c5a28 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Curtain Call + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -5.937716 + posY: 1.74411213 + posZ: 10.27567 + rotX: 359.919922 + rotY: 269.999939 + rotZ: 180.017471 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231705 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2317': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378732934/F41E84FCDC0AB52634348C439A6D1A725CEB8115/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378736378/628E179D5305E95AFC25D86526320A24F8B27391/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 2 + GMNotes: '' + GUID: a4f850 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Stranger + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -6.159323 + posY: 1.72251034 + posZ: 10.4280233 + rotX: 359.9188 + rotY: 269.999969 + rotZ: 180.019272 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231704 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2317': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378732934/F41E84FCDC0AB52634348C439A6D1A725CEB8115/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378736378/628E179D5305E95AFC25D86526320A24F8B27391/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 2 + GMNotes: '' + GUID: 2e25bf + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Stranger + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -5.69177961 + posY: 1.71680713 + posZ: 10.1714668 + rotX: 359.961456 + rotY: 269.453735 + rotZ: 180.077072 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231703 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2317': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378732934/F41E84FCDC0AB52634348C439A6D1A725CEB8115/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378736378/628E179D5305E95AFC25D86526320A24F8B27391/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 2 + GMNotes: '' + GUID: 94060e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Stranger + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -5.48155546 + posY: 1.790819 + posZ: 10.3594761 + rotX: -0.004695661 + rotY: 301.832947 + rotZ: 179.994843 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231702 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2317': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378732934/F41E84FCDC0AB52634348C439A6D1A725CEB8115/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378736378/628E179D5305E95AFC25D86526320A24F8B27391/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 1 + GMNotes: '' + GUID: eeaa39 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Awakening + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -6.01306057 + posY: 1.71667325 + posZ: 10.7488079 + rotX: 359.940643 + rotY: 270.931427 + rotZ: 180.01329 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231701 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2317': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378732934/F41E84FCDC0AB52634348C439A6D1A725CEB8115/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378736378/628E179D5305E95AFC25D86526320A24F8B27391/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 2 + GMNotes: '' + GUID: 62cc79 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Encore + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -5.87064934 + posY: 1.74615133 + posZ: 10.8550215 + rotX: 359.933472 + rotY: 269.8617 + rotZ: 180.029861 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231700 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2317': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378732934/F41E84FCDC0AB52634348C439A6D1A725CEB8115/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378736378/628E179D5305E95AFC25D86526320A24F8B27391/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 1 + GMNotes: '' + GUID: d122dd + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Third Act + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -5.639849 + posY: 1.712541 + posZ: 10.5488873 + rotX: 359.9154 + rotY: 270.000916 + rotZ: 180.038177 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232011 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378685352/22FD056BAF1966FE2D1AC46FC1BF90C1A03A1404/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378686413/C1688C1A909FDC7357EB3EEFADAB1FBD5818BD3E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Curtain Call + GMNotes: '' + GUID: aa08d4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Scenario + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -17.5195637 + posY: 1.80691767 + posZ: 14.465188 + rotX: 359.937378 + rotY: 269.997559 + rotZ: 0.004580965 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2317': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378732934/F41E84FCDC0AB52634348C439A6D1A725CEB8115/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378736378/628E179D5305E95AFC25D86526320A24F8B27391/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378685352/22FD056BAF1966FE2D1AC46FC1BF90C1A03A1404/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378686413/C1688C1A909FDC7357EB3EEFADAB1FBD5818BD3E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '2323': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 232201 +- 232300 +- 232010 +- 232009 +- 232008 +- 232007 +- 232006 +- 232005 +- 232004 +- 232003 +- 232002 +- 232001 +- 231706 +- 231705 +- 231704 +- 231703 +- 231702 +- 231701 +- 231700 +- 232011 +Description: '' +GMNotes: '' +GUID: 6e3cab +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Curtain Call +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 16.99167 + posY: 2.621909 + posZ: -69.54024 + rotX: 359.920135 + rotY: 269.999634 + rotZ: 0.0168807 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Path to Carcosa 7bfa11/Deck Decay & Filth 55747f.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Path to Carcosa 7bfa11/Deck Decay & Filth 55747f.yaml new file mode 100644 index 000000000..f6872b6e6 --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Path to Carcosa 7bfa11/Deck Decay & Filth 55747f.yaml @@ -0,0 +1,301 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 232227 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Creature. + GMNotes: '' + GUID: 8ccfdd + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Roach Swarm + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -46.8359642 + posY: 1.76305425 + posZ: 8.4624 + rotX: 359.910645 + rotY: 269.984741 + rotZ: 180.0322 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232227 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Creature. + GMNotes: '' + GUID: 3fac08 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Roach Swarm + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -46.8668861 + posY: 1.62385666 + posZ: 8.53196 + rotX: 359.917969 + rotY: 270.00647 + rotZ: 180.0149 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232226 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: b4ebc7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Corrosion + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -46.4837646 + posY: 1.78332841 + posZ: 8.843737 + rotX: 0.05284566 + rotY: 270.064484 + rotZ: 359.2714 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232226 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: dc5296 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Corrosion + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -46.5554161 + posY: 1.7855233 + posZ: 8.496747 + rotX: 359.920471 + rotY: 270.004547 + rotZ: 0.0162803121 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232225 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: 2b74e5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ooze and Filth + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -46.6340332 + posY: 1.7679019 + posZ: 8.105726 + rotX: 359.9161 + rotY: 270.000244 + rotZ: 0.0145425647 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232225 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: 9f5a02 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ooze and Filth + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -47.13751 + posY: 1.77141571 + posZ: 8.475297 + rotX: 359.9424 + rotY: 269.970062 + rotZ: 359.9787 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 232227 +- 232227 +- 232226 +- 232226 +- 232225 +- 232225 +Description: '' +GMNotes: '' +GUID: 55747f +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Decay & Filth +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.11783266 + posY: 2.61372352 + posZ: -80.94809 + rotX: 359.9201 + rotY: 270.021851 + rotZ: 0.0168472864 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Path to Carcosa 7bfa11/Deck Delusions ea1fa3.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Path to Carcosa 7bfa11/Deck Delusions ea1fa3.yaml new file mode 100644 index 000000000..d60973465 --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Path to Carcosa 7bfa11/Deck Delusions ea1fa3.yaml @@ -0,0 +1,301 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 232209 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: 837dc0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Descent into Madness + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -8.254647 + posY: 1.56856728 + posZ: 13.1639223 + rotX: 359.9206 + rotY: 270.010376 + rotZ: 0.0141025912 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232209 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: b5a670 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Descent into Madness + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -7.994349 + posY: 1.72873139 + posZ: 13.4239607 + rotX: 359.910156 + rotY: 270.010345 + rotZ: 359.9914 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232206 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: a13701 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Whispers in Your Head (Doubt) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -8.13497 + posY: 1.73145211 + posZ: 13.3962345 + rotX: 359.9188 + rotY: 270.00116 + rotZ: 0.0158020761 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232205 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: 42b8dc + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Whispers in Your Head (Anxiety) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -7.656395 + posY: 1.73211765 + posZ: 13.2479944 + rotX: 359.900421 + rotY: 270.000153 + rotZ: 0.006056429 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232207 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: ec66a0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Whispers in Your Head (Dread) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -8.143007 + posY: 1.71549714 + posZ: 12.48624 + rotX: 359.929932 + rotY: 270.014252 + rotZ: 0.007635473 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232208 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: 4bea40 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Whispers in Your Head (Dismay) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -7.971472 + posY: 1.718169 + posZ: 13.2703743 + rotX: 359.920532 + rotY: 269.99942 + rotZ: 0.0161604 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 232209 +- 232209 +- 232206 +- 232205 +- 232207 +- 232208 +Description: '' +GMNotes: '' +GUID: ea1fa3 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Delusions +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 1.41206908 + posY: 2.61050248 + posZ: -70.44066 + rotX: 359.9201 + rotY: 270.0119 + rotZ: 0.0168618429 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Path to Carcosa 7bfa11/Deck Dim Carcosa 0ee038.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Path to Carcosa 7bfa11/Deck Dim Carcosa 0ee038.yaml new file mode 100644 index 000000000..43563f8f3 --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Path to Carcosa 7bfa11/Deck Dim Carcosa 0ee038.yaml @@ -0,0 +1,1612 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 232268 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hex. Terror. + GMNotes: '' + GUID: b1fe02 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Possession (Murderous) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.2899819 + posY: 1.98361123 + posZ: 37.732872 + rotX: 359.95343 + rotY: 269.998962 + rotZ: 181.528839 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232267 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hex. Terror. + GMNotes: '' + GUID: f5c5c4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Possession (Torturous) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.5915995 + posY: 1.93822253 + posZ: 38.52549 + rotX: 359.955963 + rotY: 269.915771 + rotZ: 180.22345 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232266 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hex. Terror. + GMNotes: '' + GUID: bce5af + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Possession (Traitorous) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.5400688 + posY: 1.90004408 + posZ: 38.18977 + rotX: 359.452545 + rotY: 270.032623 + rotZ: 178.640411 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232265 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: bce5af + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Final Act + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.222007483 + posY: 1.91862786 + posZ: 38.675518 + rotX: 359.955017 + rotY: 269.99295 + rotZ: 180.007324 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232264 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: bce5af + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Realm of Madness + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -4.18937874 + posY: 1.56797123 + posZ: 30.3007717 + rotX: 359.920258 + rotY: 269.998749 + rotZ: 0.0159036145 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232264 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: 8fcde7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Realm of Madness + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -4.130993 + posY: 1.72906506 + posZ: 30.25037 + rotX: 359.938873 + rotY: 270.0 + rotZ: 0.0100132488 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232263 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Curse. Terror. + GMNotes: '' + GUID: bce5af + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dismal Curse + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -4.53505564 + posY: 1.56818 + posZ: 29.43088 + rotX: 359.920441 + rotY: 269.999939 + rotZ: 0.0147806508 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232263 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Curse. Terror. + GMNotes: '' + GUID: 8bf800 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dismal Curse + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -4.95459 + posY: 1.72939789 + posZ: 29.5860748 + rotX: 359.930542 + rotY: 269.9987 + rotZ: 0.00481055444 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232263 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Curse. Terror. + GMNotes: '' + GUID: bce5af + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dismal Curse + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -4.948645 + posY: 1.74341035 + posZ: 29.5864925 + rotX: 359.9231 + rotY: 269.9987 + rotZ: 0.01338054 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232262 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Byakhee. + GMNotes: '' + GUID: bce5af + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Winged One + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.400121242 + posY: 1.85907924 + posZ: 37.5909958 + rotX: 359.935974 + rotY: 270.0 + rotZ: 180.015518 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232261 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. + GMNotes: '' + GUID: bce5af + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Creature Out of Demhe + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.995727062 + posY: 1.84892666 + posZ: 38.1687965 + rotX: 359.9324 + rotY: 270.00946 + rotZ: 180.021774 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232260 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: The Tattered King + GMNotes: '' + GUID: 4475b1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Hastur + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.526227534 + posY: 1.84213531 + posZ: 38.94562 + rotX: 359.953369 + rotY: 269.985535 + rotZ: 180.214874 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232259 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Lord of Carcosa + GMNotes: '' + GUID: 5276ed + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Hastur + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.205188274 + posY: 1.8117764 + posZ: 38.20954 + rotX: 0.357913584 + rotY: 269.972229 + rotZ: 178.591629 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232258 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: The King in Yellow + GMNotes: '' + GUID: bce5af + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Hastur + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.527007341 + posY: 1.80343509 + posZ: 38.18673 + rotX: 0.291657746 + rotY: 270.042267 + rotZ: 181.419647 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231958 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378686851/006B65A59360F63826342C2B1A062C1AD727BD53/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378687267/945F8EF94DC605E0731E37C1BCD3FE65FCB86D02/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Otherworld. + GMNotes: '' + GUID: b52eaf + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Palace of the King + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.8228888 + posY: 1.8258462 + posZ: 37.6945572 + rotX: 359.936157 + rotY: 270.0 + rotZ: 180.013824 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231957 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378686851/006B65A59360F63826342C2B1A062C1AD727BD53/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378687267/945F8EF94DC605E0731E37C1BCD3FE65FCB86D02/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Otherworld. + GMNotes: '' + GUID: 1622d3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dark Spires + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.351382673 + posY: 1.85054028 + posZ: 38.01216 + rotX: 359.954773 + rotY: 270.034515 + rotZ: 177.102173 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231955 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378686851/006B65A59360F63826342C2B1A062C1AD727BD53/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378687267/945F8EF94DC605E0731E37C1BCD3FE65FCB86D02/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Otherworld. + GMNotes: '' + GUID: 01030c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Depths of Demhe + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.6459394 + posY: 1.80923915 + posZ: 38.04528 + rotX: 358.898621 + rotY: 270.1238 + rotZ: 179.788925 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231956 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378686851/006B65A59360F63826342C2B1A062C1AD727BD53/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378687267/945F8EF94DC605E0731E37C1BCD3FE65FCB86D02/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Otherworld. + GMNotes: '' + GUID: a53069 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Depths of Demhe + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.440682739 + posY: 1.78207135 + posZ: 38.514904 + rotX: 359.922272 + rotY: 269.9999 + rotZ: 180.017853 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231954 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378686851/006B65A59360F63826342C2B1A062C1AD727BD53/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378687267/945F8EF94DC605E0731E37C1BCD3FE65FCB86D02/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Otherworld. + GMNotes: '' + GUID: 309dcd + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dim Streets + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.169701636 + posY: 1.77270508 + posZ: 38.3681564 + rotX: 359.9199 + rotY: 270.002625 + rotZ: 180.017654 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231952 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378686851/006B65A59360F63826342C2B1A062C1AD727BD53/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378687267/945F8EF94DC605E0731E37C1BCD3FE65FCB86D02/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Otherworld. + GMNotes: '' + GUID: f897e5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dim Streets + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.116343692 + posY: 1.77868843 + posZ: 38.33853 + rotX: 359.9202 + rotY: 270.000061 + rotZ: 180.017212 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231953 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378686851/006B65A59360F63826342C2B1A062C1AD727BD53/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378687267/945F8EF94DC605E0731E37C1BCD3FE65FCB86D02/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Otherworld. + GMNotes: '' + GUID: b52eaf + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dim Streets + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.249146521 + posY: 1.76887655 + posZ: 38.5488853 + rotX: 359.921051 + rotY: 270.000122 + rotZ: 180.016769 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231951 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378686851/006B65A59360F63826342C2B1A062C1AD727BD53/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378687267/945F8EF94DC605E0731E37C1BCD3FE65FCB86D02/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Otherworld. + GMNotes: '' + GUID: ea3b91 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ruins of Carcosa + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.171107665 + posY: 1.743545 + posZ: 38.2831841 + rotX: 359.922028 + rotY: 270.000977 + rotZ: 179.996124 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231949 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378686851/006B65A59360F63826342C2B1A062C1AD727BD53/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378687267/945F8EF94DC605E0731E37C1BCD3FE65FCB86D02/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Otherworld. + GMNotes: '' + GUID: b52eaf + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ruins of Carcosa + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.0843826 + posY: 1.73403347 + posZ: 38.09204 + rotX: 359.921173 + rotY: 269.996 + rotZ: 180.021255 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231950 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378686851/006B65A59360F63826342C2B1A062C1AD727BD53/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378687267/945F8EF94DC605E0731E37C1BCD3FE65FCB86D02/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Otherworld. + GMNotes: '' + GUID: 79295e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ruins of Carcosa + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.5765094 + posY: 1.73943853 + posZ: 38.2856064 + rotX: 359.919678 + rotY: 270.000061 + rotZ: 180.016968 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231947 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378686851/006B65A59360F63826342C2B1A062C1AD727BD53/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378687267/945F8EF94DC605E0731E37C1BCD3FE65FCB86D02/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Otherworld. + GMNotes: '' + GUID: 468c5f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Bleak Plains + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.440946072 + posY: 1.71450758 + posZ: 38.4081764 + rotX: 359.891937 + rotY: 269.959534 + rotZ: 180.015152 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231948 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378686851/006B65A59360F63826342C2B1A062C1AD727BD53/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378687267/945F8EF94DC605E0731E37C1BCD3FE65FCB86D02/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Otherworld. + GMNotes: '' + GUID: ccd8f5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Bleak Plains + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.06690237 + posY: 1.70500147 + posZ: 37.97057 + rotX: 359.9242 + rotY: 269.996826 + rotZ: 180.02211 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231946 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378686851/006B65A59360F63826342C2B1A062C1AD727BD53/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378687267/945F8EF94DC605E0731E37C1BCD3FE65FCB86D02/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Otherworld. + GMNotes: '' + GUID: 82360a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Shores of Hali + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.137837678 + posY: 1.69522285 + posZ: 38.00105 + rotX: 359.9399 + rotY: 270.000031 + rotZ: 180.018127 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231754 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2317': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378732934/F41E84FCDC0AB52634348C439A6D1A725CEB8115/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378736378/628E179D5305E95AFC25D86526320A24F8B27391/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 3 + GMNotes: '' + GUID: '629941' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The King in Tatters + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.493545264 + posY: 1.70103431 + posZ: 38.46836 + rotX: 359.9455 + rotY: 269.376129 + rotZ: 180.003937 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231753 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2317': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378732934/F41E84FCDC0AB52634348C439A6D1A725CEB8115/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378736378/628E179D5305E95AFC25D86526320A24F8B27391/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 2 + GMNotes: '' + GUID: e90cf9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Search For the Stranger (v. III) + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.5992686 + posY: 1.74328172 + posZ: 38.2286224 + rotX: 359.936737 + rotY: 269.1031 + rotZ: 180.015076 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231752 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2317': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378732934/F41E84FCDC0AB52634348C439A6D1A725CEB8115/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378736378/628E179D5305E95AFC25D86526320A24F8B27391/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 2 + GMNotes: '' + GUID: 649b4f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Search For the Stranger (v. II) + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.627065063 + posY: 1.73713088 + posZ: 38.50575 + rotX: 359.939728 + rotY: 269.999969 + rotZ: 180.022949 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232651 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2326': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378732934/F41E84FCDC0AB52634348C439A6D1A725CEB8115/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378736378/628E179D5305E95AFC25D86526320A24F8B27391/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 2 + GMNotes: '' + GUID: 09f32d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Search For the Stranger (v. I) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.8687113 + posY: 1.71601439 + posZ: 38.2796822 + rotX: 359.935242 + rotY: 269.991425 + rotZ: 180.021179 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231750 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2317': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378732934/F41E84FCDC0AB52634348C439A6D1A725CEB8115/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378736378/628E179D5305E95AFC25D86526320A24F8B27391/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 1 + GMNotes: '' + GUID: 99d2b8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: In Lost Carcosa + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.6501502 + posY: 1.72915924 + posZ: 37.96859 + rotX: 359.936462 + rotY: 269.8213 + rotZ: 180.014084 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231749 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2317': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378732934/F41E84FCDC0AB52634348C439A6D1A725CEB8115/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378736378/628E179D5305E95AFC25D86526320A24F8B27391/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: 'Agenda ' + GMNotes: '' + GUID: c1397c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Madness Dies + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.7862137 + posY: 1.69491434 + posZ: 38.2993355 + rotX: 359.948456 + rotY: 270.002777 + rotZ: 181.496368 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231748 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2317': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378732934/F41E84FCDC0AB52634348C439A6D1A725CEB8115/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378736378/628E179D5305E95AFC25D86526320A24F8B27391/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 2 + GMNotes: '' + GUID: 09a5e0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Madness Drowns + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.8934321 + posY: 1.71470082 + posZ: 38.12803 + rotX: 359.261719 + rotY: 269.9736 + rotZ: 181.370987 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231747 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2317': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378732934/F41E84FCDC0AB52634348C439A6D1A725CEB8115/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378736378/628E179D5305E95AFC25D86526320A24F8B27391/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 1 + GMNotes: '' + GUID: 3da436 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Madness Coils + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.9828884 + posY: 1.71138179 + posZ: 37.8096924 + rotX: 359.941772 + rotY: 269.683441 + rotZ: 180.03981 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231945 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378686851/006B65A59360F63826342C2B1A062C1AD727BD53/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378687267/945F8EF94DC605E0731E37C1BCD3FE65FCB86D02/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Dim Carcosa + GMNotes: '' + GUID: b52eaf + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Scenario + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.970050156 + posY: 1.75256622 + posZ: 38.1485138 + rotX: 359.909119 + rotY: 269.9911 + rotZ: 358.5615 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2317': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378732934/F41E84FCDC0AB52634348C439A6D1A725CEB8115/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378736378/628E179D5305E95AFC25D86526320A24F8B27391/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378686851/006B65A59360F63826342C2B1A062C1AD727BD53/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378687267/945F8EF94DC605E0731E37C1BCD3FE65FCB86D02/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '2326': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378732934/F41E84FCDC0AB52634348C439A6D1A725CEB8115/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378736378/628E179D5305E95AFC25D86526320A24F8B27391/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 232268 +- 232267 +- 232266 +- 232265 +- 232264 +- 232264 +- 232263 +- 232263 +- 232263 +- 232262 +- 232261 +- 232260 +- 232259 +- 232258 +- 231958 +- 231957 +- 231955 +- 231956 +- 231954 +- 231952 +- 231953 +- 231951 +- 231949 +- 231950 +- 231947 +- 231948 +- 231946 +- 231754 +- 231753 +- 231752 +- 232651 +- 231750 +- 231749 +- 231748 +- 231747 +- 231945 +Description: '' +GMNotes: '' +GUID: 0ee038 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Dim Carcosa +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 12.5618277 + posY: 2.6939292 + posZ: -81.23553 + rotX: 359.920135 + rotY: 269.999969 + rotZ: 0.01688712 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Path to Carcosa 7bfa11/Deck Echoes of the Past 9fbe74.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Path to Carcosa 7bfa11/Deck Echoes of the Past 9fbe74.yaml new file mode 100644 index 000000000..f67ffa43e --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Path to Carcosa 7bfa11/Deck Echoes of the Past 9fbe74.yaml @@ -0,0 +1,1447 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 232236 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Scheme. + GMNotes: '' + GUID: bec6ce + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Cult's Search + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.0158873573 + posY: 1.552491 + posZ: -2.23940325 + rotX: 359.9206 + rotY: 269.999878 + rotZ: 0.0135716535 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232236 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Scheme. + GMNotes: '' + GUID: '829090' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Cult's Search + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -0.276322931 + posY: 1.72082257 + posZ: -2.44649863 + rotX: 359.943573 + rotY: 270.0 + rotZ: 0.01258099 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232235 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Scheme. + GMNotes: '' + GUID: 77144e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Led Astray + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.79898667 + posY: 1.54987514 + posZ: 1.89306128 + rotX: 359.9202 + rotY: 269.999939 + rotZ: 0.0166225228 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232235 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Scheme. + GMNotes: '' + GUID: 42def5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Led Astray + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.07061386 + posY: 1.71259284 + posZ: 2.361349 + rotX: 359.937317 + rotY: 270.0 + rotZ: 0.005581428 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232235 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Scheme. + GMNotes: '' + GUID: 77144e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Led Astray + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.070633 + posY: 1.7265588 + posZ: 2.36134481 + rotX: 359.9364 + rotY: 270.0 + rotZ: 0.0118426653 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232234 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Cultist. + GMNotes: '' + GUID: 7d4b6a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Seeker of Carcosa + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -0.325364053 + posY: 1.55484188 + posZ: 4.13476 + rotX: 359.920624 + rotY: 269.998962 + rotZ: 0.0134161934 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232234 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Cultist. + GMNotes: '' + GUID: 596a2f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Seeker of Carcosa + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -0.538002253 + posY: 1.713114 + posZ: 4.117489 + rotX: 359.930542 + rotY: 269.998962 + rotZ: 0.0134416306 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232234 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Cultist. + GMNotes: '' + GUID: 7d4b6a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Seeker of Carcosa + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -0.389602721 + posY: 1.71785784 + posZ: 4.305204 + rotX: 359.9395 + rotY: 270.000916 + rotZ: 0.007991079 + 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 + UniqueBack: false + Description: Regalia Dementia + GMNotes: '' + GUID: 5d30a1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Tattered Cloak + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 4.71303463 + posY: 1.81687129 + posZ: 13.27384 + rotX: 359.935333 + rotY: 269.996552 + rotZ: 180.017166 + 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 + UniqueBack: false + Description: A Gift Unlooked For + GMNotes: '' + GUID: f295d9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Clasp of Black Onyx + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 4.66475725 + posY: 1.807221 + posZ: 13.2605906 + rotX: 359.933716 + rotY: 269.993134 + rotZ: 180.005722 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232431 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2324': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Historical Society Curator + GMNotes: '' + GUID: 46185e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Mr. Peabody + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 4.63969135 + posY: 1.813246 + posZ: 13.3375578 + rotX: 359.936676 + rotY: 270.0 + rotZ: 180.014313 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232230 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: A Damnable Fate + GMNotes: '' + GUID: eb8243 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Possessed Oathspeaker + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 5.005268 + posY: 1.78768051 + posZ: 13.61403 + rotX: 359.9354 + rotY: 269.999023 + rotZ: 180.014862 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232031 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378685352/22FD056BAF1966FE2D1AC46FC1BF90C1A03A1404/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378686413/C1688C1A909FDC7357EB3EEFADAB1FBD5818BD3E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: d81228 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Hidden Library + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 5.40504646 + posY: 1.77802861 + posZ: 13.5145435 + rotX: 359.9361 + rotY: 270.0 + rotZ: 180.0135 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232030 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378685352/22FD056BAF1966FE2D1AC46FC1BF90C1A03A1404/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378686413/C1688C1A909FDC7357EB3EEFADAB1FBD5818BD3E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Third Floor. + GMNotes: '' + GUID: 55844c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Historical Society + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 4.73714256 + posY: 1.768605 + posZ: 12.7683048 + rotX: 359.91507 + rotY: 270.005249 + rotZ: 180.028214 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232029 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378685352/22FD056BAF1966FE2D1AC46FC1BF90C1A03A1404/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378686413/C1688C1A909FDC7357EB3EEFADAB1FBD5818BD3E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Third Floor. + GMNotes: '' + GUID: b352f8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Historical Society + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 4.17903566 + posY: 1.77508926 + posZ: 12.8394127 + rotX: 359.9207 + rotY: 269.999146 + rotZ: 180.01857 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232028 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378685352/22FD056BAF1966FE2D1AC46FC1BF90C1A03A1404/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378686413/C1688C1A909FDC7357EB3EEFADAB1FBD5818BD3E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Third Floor. + GMNotes: '' + GUID: 0cf5d5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Historical Society + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 4.67178631 + posY: 1.74924076 + posZ: 13.514966 + rotX: 359.942261 + rotY: 270.025574 + rotZ: 180.000061 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232027 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378685352/22FD056BAF1966FE2D1AC46FC1BF90C1A03A1404/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378686413/C1688C1A909FDC7357EB3EEFADAB1FBD5818BD3E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Third Floor. + GMNotes: '' + GUID: aa08d4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Quiet Halls + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 5.10316372 + posY: 1.774393 + posZ: 13.6496439 + rotX: 1.20799088 + rotY: 270.004578 + rotZ: 180.01149 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232026 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378685352/22FD056BAF1966FE2D1AC46FC1BF90C1A03A1404/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378686413/C1688C1A909FDC7357EB3EEFADAB1FBD5818BD3E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Second Floor. + GMNotes: '' + GUID: ab6a72 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Historical Society + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 4.89750528 + posY: 1.74560153 + posZ: 13.0522289 + rotX: 359.92157 + rotY: 269.999939 + rotZ: 180.019424 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232025 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378685352/22FD056BAF1966FE2D1AC46FC1BF90C1A03A1404/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378686413/C1688C1A909FDC7357EB3EEFADAB1FBD5818BD3E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Second Floor. + GMNotes: '' + GUID: 40f79d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Historical Society + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 4.103059 + posY: 1.73659706 + posZ: 13.1589746 + rotX: 359.923035 + rotY: 270.000061 + rotZ: 180.0202 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232024 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378685352/22FD056BAF1966FE2D1AC46FC1BF90C1A03A1404/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378686413/C1688C1A909FDC7357EB3EEFADAB1FBD5818BD3E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Second Floor. + GMNotes: '' + GUID: aa08d4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Historical Society + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 4.771119 + posY: 1.72610343 + posZ: 12.7658329 + rotX: 359.9191 + rotY: 270.000031 + rotZ: 180.0237 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232023 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378685352/22FD056BAF1966FE2D1AC46FC1BF90C1A03A1404/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378686413/C1688C1A909FDC7357EB3EEFADAB1FBD5818BD3E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Second Floor. + GMNotes: '' + GUID: aa08d4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Quiet Halls + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 5.744258 + posY: 1.69941616 + posZ: 13.3086338 + rotX: 359.8795 + rotY: 270.0119 + rotZ: 180.0202 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232022 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378685352/22FD056BAF1966FE2D1AC46FC1BF90C1A03A1404/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378686413/C1688C1A909FDC7357EB3EEFADAB1FBD5818BD3E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Ground Floor. + GMNotes: '' + GUID: c7a098 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Historical Society + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 4.76498461 + posY: 1.70682073 + posZ: 12.7118826 + rotX: 359.9184 + rotY: 270.000061 + rotZ: 180.025574 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232021 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378685352/22FD056BAF1966FE2D1AC46FC1BF90C1A03A1404/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378686413/C1688C1A909FDC7357EB3EEFADAB1FBD5818BD3E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Ground Floor. + GMNotes: '' + GUID: ffd0fb + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Historical Society + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 4.98052835 + posY: 1.69687462 + posZ: 12.9958448 + rotX: 359.9198 + rotY: 270.000031 + rotZ: 180.017487 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232020 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378685352/22FD056BAF1966FE2D1AC46FC1BF90C1A03A1404/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378686413/C1688C1A909FDC7357EB3EEFADAB1FBD5818BD3E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Ground Floor. + GMNotes: '' + GUID: aa08d4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Historical Society + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 4.67613125 + posY: 1.68759835 + posZ: 13.0697708 + rotX: 359.9214 + rotY: 270.000031 + rotZ: 180.018967 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232019 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378685352/22FD056BAF1966FE2D1AC46FC1BF90C1A03A1404/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378686413/C1688C1A909FDC7357EB3EEFADAB1FBD5818BD3E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Ground Floor. + GMNotes: '' + GUID: aa08d4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Entry Hall + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 4.62144756 + posY: 1.714808 + posZ: 13.643857 + rotX: 359.9201 + rotY: 269.999939 + rotZ: 180.018448 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231715 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2317': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378732934/F41E84FCDC0AB52634348C439A6D1A725CEB8115/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378736378/628E179D5305E95AFC25D86526320A24F8B27391/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 3 + GMNotes: '' + GUID: 3da436 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Oath + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 4.710147 + posY: 1.72371173 + posZ: 13.022398 + rotX: 359.937744 + rotY: 269.0855 + rotZ: 180.017014 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231714 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2317': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378732934/F41E84FCDC0AB52634348C439A6D1A725CEB8115/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378736378/628E179D5305E95AFC25D86526320A24F8B27391/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 2 + GMNotes: '' + GUID: 452df1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Mistakes of the Past + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 4.4175086 + posY: 1.70342088 + posZ: 13.2412519 + rotX: 359.931641 + rotY: 269.9622 + rotZ: 180.021637 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231713 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2317': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378732934/F41E84FCDC0AB52634348C439A6D1A725CEB8115/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378736378/628E179D5305E95AFC25D86526320A24F8B27391/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 1 + GMNotes: '' + GUID: 3da436 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Race for Answers + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 5.27247953 + posY: 1.70012569 + posZ: 13.3732586 + rotX: 359.940643 + rotY: 269.1526 + rotZ: 180.030334 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231712 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2317': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378732934/F41E84FCDC0AB52634348C439A6D1A725CEB8115/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378736378/628E179D5305E95AFC25D86526320A24F8B27391/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 3 + GMNotes: '' + GUID: 3da436 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Secrets Better Left Hidden + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 5.24454641 + posY: 1.71784091 + posZ: 13.5205708 + rotX: 359.93988 + rotY: 269.376678 + rotZ: 180.030624 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231711 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2317': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378732934/F41E84FCDC0AB52634348C439A6D1A725CEB8115/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378736378/628E179D5305E95AFC25D86526320A24F8B27391/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 2 + GMNotes: '' + GUID: 25a10f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ransacking the Manor + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 4.72920275 + posY: 1.72202742 + posZ: 13.5162439 + rotX: 359.863464 + rotY: 269.965118 + rotZ: 179.618835 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231710 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2317': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378732934/F41E84FCDC0AB52634348C439A6D1A725CEB8115/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378736378/628E179D5305E95AFC25D86526320A24F8B27391/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 1 + GMNotes: '' + GUID: 3da436 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Truth is Hidden + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 4.985299 + posY: 1.69259644 + posZ: 13.3364134 + rotX: 359.9633 + rotY: 269.9917 + rotZ: 180.038208 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232018 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378685352/22FD056BAF1966FE2D1AC46FC1BF90C1A03A1404/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378686413/C1688C1A909FDC7357EB3EEFADAB1FBD5818BD3E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Echoes of the Past + GMNotes: '' + GUID: aa08d4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Scenario + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 4.95293236 + posY: 1.55309308 + posZ: 13.4673929 + rotX: 359.919342 + rotY: 269.991577 + rotZ: 180.024582 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2317': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378732934/F41E84FCDC0AB52634348C439A6D1A725CEB8115/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378736378/628E179D5305E95AFC25D86526320A24F8B27391/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378685352/22FD056BAF1966FE2D1AC46FC1BF90C1A03A1404/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378686413/C1688C1A909FDC7357EB3EEFADAB1FBD5818BD3E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '2323': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '2324': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 232236 +- 232236 +- 232235 +- 232235 +- 232235 +- 232234 +- 232234 +- 232234 +- 232333 +- 232332 +- 232431 +- 232230 +- 232031 +- 232030 +- 232029 +- 232028 +- 232027 +- 232026 +- 232025 +- 232024 +- 232023 +- 232022 +- 232021 +- 232020 +- 232019 +- 231715 +- 231714 +- 231713 +- 231712 +- 231711 +- 231710 +- 232018 +Description: '' +GMNotes: '' +GUID: 9fbe74 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Echoes of the Past +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 16.96015 + posY: 2.67165041 + posZ: -77.24582 + rotX: 359.920135 + rotY: 269.999969 + rotZ: 0.0168839786 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Path to Carcosa 7bfa11/Deck Evil Portents 8ad75c.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Path to Carcosa 7bfa11/Deck Evil Portents 8ad75c.yaml new file mode 100644 index 000000000..4ccca51dd --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Path to Carcosa 7bfa11/Deck Evil Portents 8ad75c.yaml @@ -0,0 +1,301 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 232216 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Pact. + GMNotes: '' + GUID: 7a6d8c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Twisted to His Will + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -40.06019 + posY: 1.60829687 + posZ: -2.629929 + rotX: 359.920044 + rotY: 270.0098 + rotZ: 0.01704826 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232216 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Pact. + GMNotes: '' + GUID: a6af6b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Twisted to His Will + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -40.14995 + posY: 1.78357077 + posZ: -2.83012843 + rotX: 0.5782123 + rotY: 270.002 + rotZ: 0.0179315973 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232215 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: a0d34f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Spires of Carcosa + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -39.56787 + posY: 1.7705667 + posZ: -2.61933255 + rotX: 359.921173 + rotY: 270.003662 + rotZ: 0.0159180127 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232215 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: a0d34f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Spires of Carcosa + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -40.2772331 + posY: 1.7794143 + posZ: -2.527565 + rotX: 359.919922 + rotY: 270.003967 + rotZ: 0.01670667 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232214 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: 0afc45 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Black Stars Rise + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -39.95644 + posY: 1.771017 + posZ: -2.60974526 + rotX: 359.919952 + rotY: 270.027344 + rotZ: 0.0162861571 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232214 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: 0afc45 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Black Stars Rise + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -40.21685 + posY: 1.76258183 + posZ: -3.051078 + rotX: 359.919678 + rotY: 270.027161 + rotZ: 0.0155659933 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 232216 +- 232216 +- 232215 +- 232215 +- 232214 +- 232214 +Description: '' +GMNotes: '' +GUID: 8ad75c +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Evil Portents +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 1.2725122 + posY: 2.6076386 + posZ: -80.82611 + rotX: 359.9201 + rotY: 270.00885 + rotZ: 0.01686437 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Path to Carcosa 7bfa11/Deck Hastur's Gift b89369.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Path to Carcosa 7bfa11/Deck Hastur's Gift b89369.yaml new file mode 100644 index 000000000..ac55d0c15 --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Path to Carcosa 7bfa11/Deck Hastur's Gift b89369.yaml @@ -0,0 +1,301 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 232221 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Pact. + GMNotes: '' + GUID: c189a5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dance of the Yellow King + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -33.0721054 + posY: 1.59816492 + posZ: -3.9468503 + rotX: 359.920135 + rotY: 270.00177 + rotZ: 0.0167396571 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232221 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Pact. + GMNotes: '' + GUID: 74b258 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dance of the Yellow King + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -32.95977 + posY: 1.76483011 + posZ: -3.889132 + rotX: 359.9195 + rotY: 270.001862 + rotZ: 0.0146204839 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232220 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Lunatic. + GMNotes: '' + GUID: bce7b8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Young Psychopath + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -32.2588272 + posY: 1.596186 + posZ: -6.7895093 + rotX: 359.920227 + rotY: 269.9985 + rotZ: 0.0162243973 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232220 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Lunatic. + GMNotes: '' + GUID: 40c629 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Young Psychopath + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -32.21109 + posY: 1.762528 + posZ: -6.736423 + rotX: 359.9219 + rotY: 269.998535 + rotZ: 0.0156734586 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232219 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Lunatic. + GMNotes: '' + GUID: 006497 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Maniac + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -33.0786972 + posY: 1.5994426 + posZ: 0.4528645 + rotX: 359.920441 + rotY: 269.9931 + rotZ: 0.0150249889 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232219 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Lunatic. + GMNotes: '' + GUID: 068703 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Maniac + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -33.03474 + posY: 1.73884428 + posZ: 0.8094432 + rotX: 359.959045 + rotY: 270.001862 + rotZ: -0.00308930734 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 232221 +- 232221 +- 232220 +- 232220 +- 232219 +- 232219 +Description: '' +GMNotes: '' +GUID: b89369 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Hastur's Gift +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.83578539 + posY: 2.61545038 + posZ: -73.74794 + rotX: 359.920135 + rotY: 269.9993 + rotZ: 0.0168802645 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Path to Carcosa 7bfa11/Deck Hauntings 5d25cd.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Path to Carcosa 7bfa11/Deck Hauntings 5d25cd.yaml new file mode 100644 index 000000000..69cb90d76 --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Path to Carcosa 7bfa11/Deck Hauntings 5d25cd.yaml @@ -0,0 +1,215 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 232218 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Curse. Geist. + GMNotes: '' + GUID: 2d32e4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Spirit's Torment + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -31.05811 + posY: 1.5943135 + posZ: -7.30223 + rotX: 359.920715 + rotY: 269.999756 + rotZ: 0.013130011 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232218 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Curse. Geist. + GMNotes: '' + GUID: 9349fd + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Spirit's Torment + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -31.1989822 + posY: 1.74595857 + posZ: -7.23980331 + rotX: 359.950958 + rotY: 269.999573 + rotZ: -0.00464719161 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232217 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Geist. + GMNotes: '' + GUID: 1ae587 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Poltergeist + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -30.9912872 + posY: 1.5951972 + posZ: -3.82445621 + rotX: 359.9241 + rotY: 269.9814 + rotZ: 0.0137564549 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232217 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Geist. + GMNotes: '' + GUID: 459f5a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Poltergeist + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -30.9757233 + posY: 1.74052989 + posZ: -3.8652792 + rotX: 359.957245 + rotY: 269.972046 + rotZ: 0.00526940031 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 232218 +- 232218 +- 232217 +- 232217 +Description: '' +GMNotes: '' +GUID: 5d25cd +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Hauntings +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.09705782 + posY: 2.61395764 + posZ: -70.45128 + rotX: 359.920135 + rotY: 269.998627 + rotZ: 0.0168798845 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Path to Carcosa 7bfa11/Deck Inhabitants of Carcosa adf008.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Path to Carcosa 7bfa11/Deck Inhabitants of Carcosa adf008.yaml new file mode 100644 index 000000000..55c322645 --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Path to Carcosa 7bfa11/Deck Inhabitants of Carcosa adf008.yaml @@ -0,0 +1,172 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 232213 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. + GMNotes: '' + GUID: e9dc22 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Spawn of Hali + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -41.0218 + posY: 1.61205661 + posZ: 5.752819 + rotX: 359.920532 + rotY: 270.00177 + rotZ: 0.013646706 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232213 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. + GMNotes: '' + GUID: d46d72 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Spawn of Hali + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -40.7112732 + posY: 1.76276219 + posZ: 5.71570444 + rotX: 359.92627 + rotY: 270.001953 + rotZ: 0.00491145067 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232212 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Elite. + GMNotes: '' + GUID: 83c7c3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Beast of Aldebaran + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -41.1815262 + posY: 1.79055 + posZ: 4.78066158 + rotX: 359.922272 + rotY: 270.029022 + rotZ: 0.02401261 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 232213 +- 232213 +- 232212 +Description: '' +GMNotes: '' +GUID: adf008 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Inhabitants of Carcosa +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 1.34613967 + posY: 2.60710549 + posZ: -77.7894 + rotX: 359.920135 + rotY: 270.000183 + rotZ: 0.0168771539 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Path to Carcosa 7bfa11/Deck The Last King 77c753.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Path to Carcosa 7bfa11/Deck The Last King 77c753.yaml new file mode 100644 index 000000000..bdf925423 --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Path to Carcosa 7bfa11/Deck The Last King 77c753.yaml @@ -0,0 +1,1132 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 232204 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: 62736c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Tough Crowd + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -47.726078 + posY: 1.90866387 + posZ: -10.5944529 + rotX: 359.935883 + rotY: 270.0 + rotZ: 180.0137 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232204 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: de32ec + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Tough Crowd + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -47.63159 + posY: 1.88291645 + posZ: -9.816662 + rotX: 359.931854 + rotY: 270.0009 + rotZ: 180.010178 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232203 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: d7ccce + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Fine Dining + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -47.7434921 + posY: 1.87003744 + posZ: -10.358161 + rotX: 359.937836 + rotY: 270.007477 + rotZ: 180.0105 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232203 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: 824d07 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Fine Dining + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -47.671875 + posY: 1.86369717 + posZ: -10.429718 + rotX: 359.937225 + rotY: 269.992065 + rotZ: 180.019424 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232202 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Mercurial and Mischevious + GMNotes: '' + GUID: bac668 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dianne Devine + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -47.740448 + posY: 1.85415149 + posZ: -9.990135 + rotX: 359.9392 + rotY: 270.000122 + rotZ: 180.013016 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232052 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378685352/22FD056BAF1966FE2D1AC46FC1BF90C1A03A1404/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378686413/C1688C1A909FDC7357EB3EEFADAB1FBD5818BD3E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Talented Entertainer + GMNotes: '' + GUID: 560b08 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ashleigh Clarke + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -47.4243431 + posY: 1.84405088 + posZ: -10.3473749 + rotX: 359.936981 + rotY: 269.9997 + rotZ: 180.015244 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232051 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378685352/22FD056BAF1966FE2D1AC46FC1BF90C1A03A1404/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378686413/C1688C1A909FDC7357EB3EEFADAB1FBD5818BD3E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Impassioned Producer + GMNotes: '' + GUID: a6a957 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Sebastien Moreau + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -47.3282547 + posY: 1.83431661 + posZ: -10.1482725 + rotX: 359.936584 + rotY: 270.0001 + rotZ: 180.01442 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232050 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378685352/22FD056BAF1966FE2D1AC46FC1BF90C1A03A1404/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378686413/C1688C1A909FDC7357EB3EEFADAB1FBD5818BD3E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Costume Designer + GMNotes: '' + GUID: ce986e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ishimaru Haruko + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -47.6337929 + posY: 1.824979 + posZ: -9.899317 + rotX: 359.9327 + rotY: 270.000183 + rotZ: 180.010834 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232049 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378685352/22FD056BAF1966FE2D1AC46FC1BF90C1A03A1404/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378686413/C1688C1A909FDC7357EB3EEFADAB1FBD5818BD3E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Dignified Financier + GMNotes: '' + GUID: a1145d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Jordan Perry + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -47.70652 + posY: 1.81546891 + posZ: -10.1749067 + rotX: 359.9384 + rotY: 269.999756 + rotZ: 180.01416 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232048 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378685352/22FD056BAF1966FE2D1AC46FC1BF90C1A03A1404/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378686413/C1688C1A909FDC7357EB3EEFADAB1FBD5818BD3E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Sociable Hostess + GMNotes: '' + GUID: aa08d4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Constance Dumaine + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -47.3381348 + posY: 1.80528057 + posZ: -10.3619356 + rotX: 359.937 + rotY: 269.999023 + rotZ: 180.016037 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232017 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378685352/22FD056BAF1966FE2D1AC46FC1BF90C1A03A1404/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378686413/C1688C1A909FDC7357EB3EEFADAB1FBD5818BD3E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: aa08d4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dining Room + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -47.4720955 + posY: 1.79581261 + posZ: -10.351018 + rotX: 359.937225 + rotY: 270.0 + rotZ: 180.015289 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232016 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378685352/22FD056BAF1966FE2D1AC46FC1BF90C1A03A1404/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378686413/C1688C1A909FDC7357EB3EEFADAB1FBD5818BD3E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 981fa3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Courtyard + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -47.7758942 + posY: 1.78656471 + posZ: -10.1237 + rotX: 359.9389 + rotY: 269.999634 + rotZ: 180.014084 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232015 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378685352/22FD056BAF1966FE2D1AC46FC1BF90C1A03A1404/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378686413/C1688C1A909FDC7357EB3EEFADAB1FBD5818BD3E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: cce10d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Gallery + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -47.99483 + posY: 1.77657866 + posZ: -11.0292768 + rotX: 359.9441 + rotY: 270.000366 + rotZ: 180.031631 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232014 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378685352/22FD056BAF1966FE2D1AC46FC1BF90C1A03A1404/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378686413/C1688C1A909FDC7357EB3EEFADAB1FBD5818BD3E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: b3c25b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Living Room + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -47.27094 + posY: 1.7665242 + posZ: -10.479063 + rotX: 359.937134 + rotY: 269.996521 + rotZ: 180.017242 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232013 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378685352/22FD056BAF1966FE2D1AC46FC1BF90C1A03A1404/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378686413/C1688C1A909FDC7357EB3EEFADAB1FBD5818BD3E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: c605d3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ballroom + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -47.4746323 + posY: 1.757174 + posZ: -10.3444309 + rotX: 359.937378 + rotY: 269.999634 + rotZ: 180.015747 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232012 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378685352/22FD056BAF1966FE2D1AC46FC1BF90C1A03A1404/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378686413/C1688C1A909FDC7357EB3EEFADAB1FBD5818BD3E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 4b6478 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Foyer + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -28.8039265 + posY: 1.79432237 + posZ: 50.4963951 + rotX: 359.94165 + rotY: 270.000336 + rotZ: 0.015051851 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232057 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378685352/22FD056BAF1966FE2D1AC46FC1BF90C1A03A1404/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378686413/C1688C1A909FDC7357EB3EEFADAB1FBD5818BD3E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Songs Die Unheard + GMNotes: '' + GUID: f003bd + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ashleigh Clarke + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -28.50174 + posY: 1.80443645 + posZ: 50.66781 + rotX: 359.9361 + rotY: 269.999939 + rotZ: 0.0135295466 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232056 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378685352/22FD056BAF1966FE2D1AC46FC1BF90C1A03A1404/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378686413/C1688C1A909FDC7357EB3EEFADAB1FBD5818BD3E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Savage Hysteria + GMNotes: '' + GUID: 4fd6d0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Sebastien Moreau + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -28.63002 + posY: 1.81366324 + posZ: 50.55256 + rotX: 359.935333 + rotY: 269.999268 + rotZ: 0.0116987638 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232055 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378685352/22FD056BAF1966FE2D1AC46FC1BF90C1A03A1404/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378686413/C1688C1A909FDC7357EB3EEFADAB1FBD5818BD3E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Just Skin and Bones + GMNotes: '' + GUID: 5f2034 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ishimaru Haruko + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -28.7964935 + posY: 1.83908248 + posZ: 50.5220871 + rotX: 359.9212 + rotY: 270.0 + rotZ: 0.017186923 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232054 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378685352/22FD056BAF1966FE2D1AC46FC1BF90C1A03A1404/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378686413/C1688C1A909FDC7357EB3EEFADAB1FBD5818BD3E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: An Imposing Presence + GMNotes: '' + GUID: 1b6382 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Jordan Perry + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -28.4118614 + posY: 1.87526166 + posZ: 50.77154 + rotX: 359.951019 + rotY: 270.0022 + rotZ: 357.8407 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232053 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378685352/22FD056BAF1966FE2D1AC46FC1BF90C1A03A1404/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378686413/C1688C1A909FDC7357EB3EEFADAB1FBD5818BD3E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: A Little Too Sociable + GMNotes: '' + GUID: 4ecefb + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Constance Dumaine + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -28.5575333 + posY: 1.83460474 + posZ: 51.57972 + rotX: 359.952423 + rotY: 269.9975 + rotZ: 0.105222829 + 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: http://cloud-3.steamusercontent.com/ugc/775107058378732934/F41E84FCDC0AB52634348C439A6D1A725CEB8115/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378736378/628E179D5305E95AFC25D86526320A24F8B27391/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 1 + GMNotes: '' + GUID: 3da436 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Discovering the Truth + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -28.76412 + posY: 1.85252368 + posZ: 50.67411 + rotX: 359.9198 + rotY: 269.999847 + rotZ: 0.01646997 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231708 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2317': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378732934/F41E84FCDC0AB52634348C439A6D1A725CEB8115/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378736378/628E179D5305E95AFC25D86526320A24F8B27391/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 2 + GMNotes: '' + GUID: '798037' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Terrifying Truth + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -28.4182072 + posY: 1.86169732 + posZ: 50.5972633 + rotX: 359.920532 + rotY: 270.002167 + rotZ: 0.01629897 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231707 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2317': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378732934/F41E84FCDC0AB52634348C439A6D1A725CEB8115/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378736378/628E179D5305E95AFC25D86526320A24F8B27391/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 1 + GMNotes: '' + GUID: 70d1f2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Fashionably Late + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -28.4408913 + posY: 1.87134826 + posZ: 50.82418 + rotX: 359.939056 + rotY: 269.9375 + rotZ: 0.0567046441 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232000 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378685352/22FD056BAF1966FE2D1AC46FC1BF90C1A03A1404/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378686413/C1688C1A909FDC7357EB3EEFADAB1FBD5818BD3E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: The Last King + GMNotes: '' + GUID: dd2d33 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Scenario + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -28.6534061 + posY: 1.88162649 + posZ: 51.08919 + rotX: 359.9187 + rotY: 269.993835 + rotZ: 0.00347163738 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2317': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378732934/F41E84FCDC0AB52634348C439A6D1A725CEB8115/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378736378/628E179D5305E95AFC25D86526320A24F8B27391/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378685352/22FD056BAF1966FE2D1AC46FC1BF90C1A03A1404/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378686413/C1688C1A909FDC7357EB3EEFADAB1FBD5818BD3E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 232204 +- 232204 +- 232203 +- 232203 +- 232202 +- 232052 +- 232051 +- 232050 +- 232049 +- 232048 +- 232017 +- 232016 +- 232015 +- 232014 +- 232013 +- 232012 +- 232057 +- 232056 +- 232055 +- 232054 +- 232053 +- 231709 +- 231708 +- 231707 +- 232000 +Description: '' +GMNotes: '' +GUID: 77c753 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: The Last King +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 17.2071075 + posY: 2.64204764 + posZ: -73.66194 + rotX: 359.920135 + rotY: 269.983368 + rotZ: 0.0169045459 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Path to Carcosa 7bfa11/Deck The Pallid Mask 276157.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Path to Carcosa 7bfa11/Deck The Pallid Mask 276157.yaml new file mode 100644 index 000000000..2b4f6b830 --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Path to Carcosa 7bfa11/Deck The Pallid Mask 276157.yaml @@ -0,0 +1,1612 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 232253 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: bce5af + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Pit Below + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 10.8015537 + posY: 1.5567354 + posZ: 63.7492371 + rotX: 359.9273 + rotY: 269.9937 + rotZ: 0.009615117 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232253 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: 7485f9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Pit Below + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 10.5067577 + posY: 1.70229852 + posZ: 63.6348953 + rotX: 359.971558 + rotY: 269.97998 + rotZ: 0.02422312 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232253 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: c4f060 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Pit Below + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 10.7449512 + posY: 1.73547816 + posZ: 63.4567947 + rotX: 359.920044 + rotY: 270.0046 + rotZ: 0.016617896 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232252 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: '836888' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Shadow Behind You + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 10.6960392 + posY: 1.62826109 + posZ: 51.727005 + rotX: 359.9199 + rotY: 270.008 + rotZ: 3.93492031 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232252 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: 18dba0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Shadow Behind You + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 10.7187033 + posY: 1.5546757 + posZ: 55.70076 + rotX: 359.920166 + rotY: 269.999237 + rotZ: 0.017893197 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232252 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: ecffec + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Shadow Behind You + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 10.70818 + posY: 1.64150739 + posZ: 53.87077 + rotX: 359.9204 + rotY: 270.0089 + rotZ: 4.61395454 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232251 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: 69d084 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Eyes in the Walls + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 10.6536217 + posY: 1.62634492 + posZ: 44.2751427 + rotX: 359.920166 + rotY: 270.003235 + rotZ: 3.9542048 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232251 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: e6dd53 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Eyes in the Walls + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 10.6813412 + posY: 1.55279374 + posZ: 49.1120758 + rotX: 359.9201 + rotY: 270.004578 + rotZ: 0.0168700889 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232251 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: 6feaea + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Eyes in the Walls + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 10.6590261 + posY: 1.67576182 + posZ: 63.98767 + rotX: 359.939453 + rotY: 269.999939 + rotZ: 0.008476943 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232250 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. + GMNotes: '' + GUID: 9f4458 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Corpse Dweller + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 10.6411066 + posY: 1.55075967 + posZ: 42.11821 + rotX: 359.920258 + rotY: 270.033936 + rotZ: 0.0173976775 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232250 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. + GMNotes: '' + GUID: be97e0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Corpse Dweller + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 10.6306047 + posY: 1.63371134 + posZ: 40.2031479 + rotX: 359.920715 + rotY: 270.0017 + rotZ: 4.40119171 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232250 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. + GMNotes: '' + GUID: 0c3204 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Corpse Dweller + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 10.6196632 + posY: 1.632703 + posZ: 38.279026 + rotX: 359.919952 + rotY: 270.00415 + rotZ: 4.37855339 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232249 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Lunatic. + GMNotes: '' + GUID: b8c2bf + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Catacombs Docent + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 10.6069517 + posY: 1.54906249 + posZ: 36.08865 + rotX: 359.9201 + rotY: 270.0199 + rotZ: 0.0168488175 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232249 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Lunatic. + GMNotes: '' + GUID: ec9c97 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Catacombs Docent + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 10.5944157 + posY: 1.54838181 + posZ: 33.85194 + rotX: 359.920471 + rotY: 270.000549 + rotZ: 0.0174473412 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232249 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Lunatic. + GMNotes: '' + GUID: f99335 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Catacombs Docent + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 10.5831633 + posY: 1.62813067 + posZ: 31.8606682 + rotX: 359.920044 + rotY: 270.008 + rotZ: 4.229413 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231926 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378686851/006B65A59360F63826342C2B1A062C1AD727BD53/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378687267/945F8EF94DC605E0731E37C1BCD3FE65FCB86D02/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 405a46 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Catacombs + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 10.8755331 + posY: 1.75869453 + posZ: 63.6511421 + rotX: 359.936432 + rotY: 270.0 + rotZ: 0.0131473271 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231925 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378686851/006B65A59360F63826342C2B1A062C1AD727BD53/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378687267/945F8EF94DC605E0731E37C1BCD3FE65FCB86D02/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 8bcab3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Catacombs + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 11.1131277 + posY: 1.76797545 + posZ: 63.2554932 + rotX: 359.920258 + rotY: 270.0177 + rotZ: 0.01671808 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231924 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378686851/006B65A59360F63826342C2B1A062C1AD727BD53/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378687267/945F8EF94DC605E0731E37C1BCD3FE65FCB86D02/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: f1237c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Catacombs + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 11.0293474 + posY: 1.76226366 + posZ: 63.857502 + rotX: 359.936768 + rotY: 269.995453 + rotZ: 0.0161490813 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231923 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378686851/006B65A59360F63826342C2B1A062C1AD727BD53/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378687267/945F8EF94DC605E0731E37C1BCD3FE65FCB86D02/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: c3151e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Catacombs + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 10.6958141 + posY: 1.78758347 + posZ: 62.7899 + rotX: 359.921661 + rotY: 270.012268 + rotZ: 0.0213665068 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231922 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378686851/006B65A59360F63826342C2B1A062C1AD727BD53/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378687267/945F8EF94DC605E0731E37C1BCD3FE65FCB86D02/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 30c7a6 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Catacombs + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 10.44015 + posY: 1.79798508 + posZ: 63.9999542 + rotX: 359.920929 + rotY: 270.000122 + rotZ: 0.0157662053 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231922 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378686851/006B65A59360F63826342C2B1A062C1AD727BD53/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378687267/945F8EF94DC605E0731E37C1BCD3FE65FCB86D02/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 5efda5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Catacombs + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 10.5757217 + posY: 1.79163516 + posZ: 63.6631622 + rotX: 359.935669 + rotY: 269.944855 + rotZ: 0.0440920219 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231921 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378686851/006B65A59360F63826342C2B1A062C1AD727BD53/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378687267/945F8EF94DC605E0731E37C1BCD3FE65FCB86D02/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 0e3d00 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Catacombs + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 10.5668249 + posY: 1.81684554 + posZ: 62.8901443 + rotX: 359.9202 + rotY: 270.006317 + rotZ: 0.0229011271 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231921 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378686851/006B65A59360F63826342C2B1A062C1AD727BD53/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378687267/945F8EF94DC605E0731E37C1BCD3FE65FCB86D02/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 66b81f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Catacombs + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 10.43266 + posY: 1.82691252 + posZ: 63.670414 + rotX: 359.920227 + rotY: 269.9984 + rotZ: 0.01663173 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231920 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378686851/006B65A59360F63826342C2B1A062C1AD727BD53/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378687267/945F8EF94DC605E0731E37C1BCD3FE65FCB86D02/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 29170f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Catacombs + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 10.5162258 + posY: 1.83632493 + posZ: 63.1583023 + rotX: 359.920135 + rotY: 270.020752 + rotZ: 0.01646304 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231919 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378686851/006B65A59360F63826342C2B1A062C1AD727BD53/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378687267/945F8EF94DC605E0731E37C1BCD3FE65FCB86D02/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: b08255 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Catacombs + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 10.808157 + posY: 1.84557986 + posZ: 63.0735664 + rotX: 359.920258 + rotY: 270.013763 + rotZ: 0.0194874946 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231918 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378686851/006B65A59360F63826342C2B1A062C1AD727BD53/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378687267/945F8EF94DC605E0731E37C1BCD3FE65FCB86D02/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 3fb3fc + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Catacombs + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 10.5719376 + posY: 1.85575271 + posZ: 63.7792778 + rotX: 359.919861 + rotY: 270.023376 + rotZ: 0.0175360031 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231917 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378686851/006B65A59360F63826342C2B1A062C1AD727BD53/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378687267/945F8EF94DC605E0731E37C1BCD3FE65FCB86D02/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 7c7f4a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Catacombs + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 10.8657742 + posY: 1.87644315 + posZ: 63.6845551 + rotX: 359.952057 + rotY: 269.998749 + rotZ: 359.3564 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231917 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378686851/006B65A59360F63826342C2B1A062C1AD727BD53/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378687267/945F8EF94DC605E0731E37C1BCD3FE65FCB86D02/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 80cf41 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Catacombs + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 10.6051016 + posY: 2.082475 + posZ: 63.4215965 + rotX: 359.9359 + rotY: 269.996 + rotZ: 349.0041 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231916 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378686851/006B65A59360F63826342C2B1A062C1AD727BD53/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378687267/945F8EF94DC605E0731E37C1BCD3FE65FCB86D02/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: f5ce90 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Catacombs + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 10.4812632 + posY: 1.86916041 + posZ: 63.7456741 + rotX: 359.9384 + rotY: 270.000031 + rotZ: 0.0131867705 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231736 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2317': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378732934/F41E84FCDC0AB52634348C439A6D1A725CEB8115/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378736378/628E179D5305E95AFC25D86526320A24F8B27391/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 3 + GMNotes: '' + GUID: 3da436 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Leading the Way + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 10.7750378 + posY: 1.89405143 + posZ: 63.50156 + rotX: 359.9206 + rotY: 270.015137 + rotZ: 0.01701786 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231735 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2317': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378732934/F41E84FCDC0AB52634348C439A6D1A725CEB8115/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378736378/628E179D5305E95AFC25D86526320A24F8B27391/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 3 + GMNotes: '' + GUID: 571edb + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Way Out + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 10.57954 + posY: 1.90390527 + posZ: 63.26383 + rotX: 359.9201 + rotY: 270.026581 + rotZ: 0.0168104079 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231734 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2317': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378732934/F41E84FCDC0AB52634348C439A6D1A725CEB8115/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378736378/628E179D5305E95AFC25D86526320A24F8B27391/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 2 + GMNotes: '' + GUID: 850fd2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Path is Barred + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 10.7765226 + posY: 1.91344452 + posZ: 63.78783 + rotX: 359.919922 + rotY: 270.0019 + rotZ: 0.0169485 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231733 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2317': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378732934/F41E84FCDC0AB52634348C439A6D1A725CEB8115/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378736378/628E179D5305E95AFC25D86526320A24F8B27391/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 1 + GMNotes: '' + GUID: 78351c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Through the Catacombs + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 10.6529312 + posY: 1.92333734 + posZ: 63.8763924 + rotX: 359.919952 + rotY: 270.021545 + rotZ: 0.0168221742 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231732 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2317': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378732934/F41E84FCDC0AB52634348C439A6D1A725CEB8115/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378736378/628E179D5305E95AFC25D86526320A24F8B27391/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 2 + GMNotes: '' + GUID: 0437b7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Empire of the Undead + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 10.3015881 + posY: 1.93337488 + posZ: 63.87248 + rotX: 359.920837 + rotY: 270.0014 + rotZ: 0.0163649227 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232531 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2325': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378732934/F41E84FCDC0AB52634348C439A6D1A725CEB8115/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378736378/628E179D5305E95AFC25D86526320A24F8B27391/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 1 + GMNotes: '' + GUID: 64d9ff + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Empire of the Dead + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 11.2212181 + posY: 1.941772 + posZ: 63.41566 + rotX: 359.9202 + rotY: 270.010834 + rotZ: 0.016847698 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231915 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378686851/006B65A59360F63826342C2B1A062C1AD727BD53/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378687267/945F8EF94DC605E0731E37C1BCD3FE65FCB86D02/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: The Pallid Mask + GMNotes: '' + GUID: 24144d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Scenario + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 10.6079807 + posY: 1.95231593 + posZ: 63.737236 + rotX: 359.920135 + rotY: 270.0046 + rotZ: 0.016813295 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2317': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378732934/F41E84FCDC0AB52634348C439A6D1A725CEB8115/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378736378/628E179D5305E95AFC25D86526320A24F8B27391/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378686851/006B65A59360F63826342C2B1A062C1AD727BD53/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378687267/945F8EF94DC605E0731E37C1BCD3FE65FCB86D02/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '2325': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378732934/F41E84FCDC0AB52634348C439A6D1A725CEB8115/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378736378/628E179D5305E95AFC25D86526320A24F8B27391/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 232253 +- 232253 +- 232253 +- 232252 +- 232252 +- 232252 +- 232251 +- 232251 +- 232251 +- 232250 +- 232250 +- 232250 +- 232249 +- 232249 +- 232249 +- 231926 +- 231925 +- 231924 +- 231923 +- 231922 +- 231922 +- 231921 +- 231921 +- 231920 +- 231919 +- 231918 +- 231917 +- 231917 +- 231916 +- 231736 +- 231735 +- 231734 +- 231733 +- 231732 +- 232531 +- 231915 +Description: '' +GMNotes: '' +GUID: '276157' +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: The Pallid Mask +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 12.7373075 + posY: 2.69596767 + posZ: -73.48436 + rotX: 359.9201 + rotY: 270.003174 + rotZ: 0.0168749336 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Path to Carcosa 7bfa11/Deck The Stranger ae46f1.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Path to Carcosa 7bfa11/Deck The Stranger ae46f1.yaml new file mode 100644 index 000000000..5046ce8b5 --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Path to Carcosa 7bfa11/Deck The Stranger ae46f1.yaml @@ -0,0 +1,172 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 232229 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Omen. Pact. + GMNotes: '' + GUID: 70009a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Pale Mask Beckons + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -28.2434616 + posY: 1.5971483 + posZ: 15.4716158 + rotX: 359.920166 + rotY: 270.021973 + rotZ: 0.01652023 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232228 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Pact. + GMNotes: '' + GUID: c023fe + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Marked by the Sign + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -28.2468338 + posY: 1.76336575 + posZ: 15.2574654 + rotX: 359.9197 + rotY: 270.021973 + rotZ: 0.0146484794 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232228 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Pact. + GMNotes: '' + GUID: 8c321d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Marked by the Sign + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -28.2435665 + posY: 1.77552032 + posZ: 15.0727062 + rotX: 359.91925 + rotY: 270.021973 + rotZ: 0.0173290391 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 232229 +- 232228 +- 232228 +Description: '' +GMNotes: '' +GUID: ae46f1 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: The Stranger +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 6.56454325 + posY: 2.6002 + posZ: -76.53455 + rotX: 359.9201 + rotY: 270.024353 + rotZ: 0.0168439187 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Path to Carcosa 7bfa11/Deck The Unspeakable Oath 1fef91.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Path to Carcosa 7bfa11/Deck The Unspeakable Oath 1fef91.yaml new file mode 100644 index 000000000..03368c585 --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Bag The Path to Carcosa 7bfa11/Deck The Unspeakable Oath 1fef91.yaml @@ -0,0 +1,1605 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 232242 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: b71468 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Walls Closing In + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.54436564 + posY: 1.55997086 + posZ: 6.254395 + rotX: 359.920471 + rotY: 269.999847 + rotZ: 0.0146010369 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232242 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: bf3597 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Walls Closing In + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.87291741 + posY: 1.723301 + posZ: 6.52010441 + rotX: 359.950134 + rotY: 270.0 + rotZ: 359.993256 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232242 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: 3dc93f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Walls Closing In + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.87291765 + posY: 1.73298216 + posZ: 6.52010441 + rotX: 359.941467 + rotY: 270.0 + rotZ: 0.00588421756 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232241 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: e0308c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Gift of Madness (Misery) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -11.3649063 + posY: 1.92373645 + posZ: 4.830825 + rotX: 359.93103 + rotY: 269.9936 + rotZ: 180.020752 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232240 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: 2a874d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Gift of Madness (Pity) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -11.5246515 + posY: 1.91444921 + posZ: 5.059258 + rotX: 359.936829 + rotY: 270.0005 + rotZ: 180.016266 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232239 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Item. Clothing. + GMNotes: '' + GUID: 33902b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Straitjacket + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -7.722154 + posY: 1.564322 + posZ: 1.57734609 + rotX: 359.921356 + rotY: 269.999817 + rotZ: 0.00828568 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232239 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Item. Clothing. + GMNotes: '' + GUID: ab6c60 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Straitjacket + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -7.87944937 + posY: 1.71659434 + posZ: 1.40013671 + rotX: 359.954651 + rotY: 269.999847 + rotZ: 0.009591736 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232238 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Lunatic. + GMNotes: '' + GUID: f9cf86 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Mad Patient + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -8.69376 + posY: 1.56492937 + posZ: -1.40948761 + rotX: 359.920166 + rotY: 269.999878 + rotZ: 0.0169699062 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232238 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Lunatic. + GMNotes: '' + GUID: 6b7d78 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Mad Patient + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -8.66642952 + posY: 1.71692419 + posZ: -1.22067225 + rotX: 359.931854 + rotY: 269.999878 + rotZ: -0.003294751 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232238 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Lunatic. + GMNotes: '' + GUID: 9cc0d7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Mad Patient + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -8.7210865 + posY: 1.72783983 + posZ: -1.39709163 + rotX: 359.917664 + rotY: 269.999664 + rotZ: 0.0163080543 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232237 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Abomination. + GMNotes: '' + GUID: e66648 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Asylum Gorger + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -9.018025 + posY: 1.565125 + posZ: -2.15572333 + rotX: 359.9205 + rotY: 269.999939 + rotZ: 0.0144994147 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232237 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Abomination. + GMNotes: '' + GUID: dd1c0a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Asylum Gorger + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -8.832834 + posY: 1.72492421 + posZ: -2.25673676 + rotX: 359.91452 + rotY: 269.994629 + rotZ: 0.0157698486 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232033 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378685352/22FD056BAF1966FE2D1AC46FC1BF90C1A03A1404/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378686413/C1688C1A909FDC7357EB3EEFADAB1FBD5818BD3E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: aa08d4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Daniel Chesterfield + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -11.4938259 + posY: 1.83737063 + posZ: 5.77796841 + rotX: 359.920837 + rotY: 270.001465 + rotZ: 180.018219 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232047 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378685352/22FD056BAF1966FE2D1AC46FC1BF90C1A03A1404/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378686413/C1688C1A909FDC7357EB3EEFADAB1FBD5818BD3E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Arkham Asylum. + GMNotes: '' + GUID: 4bab65 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Patient Confinement + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -11.3066216 + posY: 1.84303617 + posZ: 5.70618343 + rotX: 359.9197 + rotY: 270.006134 + rotZ: 180.016922 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232046 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378685352/22FD056BAF1966FE2D1AC46FC1BF90C1A03A1404/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378686413/C1688C1A909FDC7357EB3EEFADAB1FBD5818BD3E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Arkham Asylum. + GMNotes: '' + GUID: 1acf71 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Patient Confinement + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -11.4374342 + posY: 1.83319652 + posZ: 5.58708334 + rotX: 359.9203 + rotY: 270.023468 + rotZ: 180.015411 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232044 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378685352/22FD056BAF1966FE2D1AC46FC1BF90C1A03A1404/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378686413/C1688C1A909FDC7357EB3EEFADAB1FBD5818BD3E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Arkham Asylum. + GMNotes: '' + GUID: 728ae0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Patient Confinement + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -11.1664944 + posY: 1.89560306 + posZ: 5.679223 + rotX: 359.920166 + rotY: 269.985046 + rotZ: 183.809189 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232045 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378685352/22FD056BAF1966FE2D1AC46FC1BF90C1A03A1404/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378686413/C1688C1A909FDC7357EB3EEFADAB1FBD5818BD3E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Arkham Asylum. + GMNotes: '' + GUID: 8dcf73 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Patient Confinement + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -11.0412664 + posY: 1.81369281 + posZ: 5.52834558 + rotX: 359.9203 + rotY: 270.0 + rotZ: 180.017059 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232043 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378685352/22FD056BAF1966FE2D1AC46FC1BF90C1A03A1404/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378686413/C1688C1A909FDC7357EB3EEFADAB1FBD5818BD3E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Arkham Asylum. + GMNotes: '' + GUID: 589ff6 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Basement Hall + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -11.6173191 + posY: 1.789008 + posZ: 5.136153 + rotX: 359.9355 + rotY: 269.9994 + rotZ: 180.015076 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232042 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378685352/22FD056BAF1966FE2D1AC46FC1BF90C1A03A1404/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378686413/C1688C1A909FDC7357EB3EEFADAB1FBD5818BD3E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Arkham Asylum. + GMNotes: '' + GUID: c9897f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Garden + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -11.5883379 + posY: 1.77937675 + posZ: 5.330222 + rotX: 359.9363 + rotY: 270.012634 + rotZ: 180.006424 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232041 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378685352/22FD056BAF1966FE2D1AC46FC1BF90C1A03A1404/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378686413/C1688C1A909FDC7357EB3EEFADAB1FBD5818BD3E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Arkham Asylum. + GMNotes: '' + GUID: b37d1d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Yard + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -11.6336908 + posY: 1.76979887 + posZ: 5.43471432 + rotX: 359.935272 + rotY: 269.996124 + rotZ: 180.007431 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232040 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378685352/22FD056BAF1966FE2D1AC46FC1BF90C1A03A1404/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378686413/C1688C1A909FDC7357EB3EEFADAB1FBD5818BD3E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Arkham Asylum. + GMNotes: '' + GUID: '416548' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Infirmary + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -11.4644384 + posY: 1.759772 + posZ: 6.115331 + rotX: 359.917572 + rotY: 270.098267 + rotZ: 179.944977 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232039 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378685352/22FD056BAF1966FE2D1AC46FC1BF90C1A03A1404/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378686413/C1688C1A909FDC7357EB3EEFADAB1FBD5818BD3E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Arkham Asylum. + GMNotes: '' + GUID: e35136 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Mess Hall + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -11.6727114 + posY: 1.75053763 + posZ: 5.50413227 + rotX: 359.920959 + rotY: 269.998016 + rotZ: 180.02034 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232038 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378685352/22FD056BAF1966FE2D1AC46FC1BF90C1A03A1404/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378686413/C1688C1A909FDC7357EB3EEFADAB1FBD5818BD3E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Arkham Asylum. + GMNotes: '' + GUID: e6a875 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Kitchen + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -11.7447433 + posY: 1.74091208 + posZ: 5.61721945 + rotX: 359.935669 + rotY: 269.987122 + rotZ: 180.01973 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232037 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378685352/22FD056BAF1966FE2D1AC46FC1BF90C1A03A1404/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378686413/C1688C1A909FDC7357EB3EEFADAB1FBD5818BD3E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Eastern Patient Wing + GMNotes: '' + GUID: 189f42 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Asylum Halls + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -11.41464 + posY: 1.73094881 + posZ: 5.979189 + rotX: 359.915466 + rotY: 270.036652 + rotZ: 179.992264 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232036 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378685352/22FD056BAF1966FE2D1AC46FC1BF90C1A03A1404/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378686413/C1688C1A909FDC7357EB3EEFADAB1FBD5818BD3E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Eastern Patient Wing + GMNotes: '' + GUID: '576595' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Asylum Halls + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -11.6717443 + posY: 1.72169209 + posZ: 5.58034372 + rotX: 359.933716 + rotY: 270.00296 + rotZ: 180.018356 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232035 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378685352/22FD056BAF1966FE2D1AC46FC1BF90C1A03A1404/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378686413/C1688C1A909FDC7357EB3EEFADAB1FBD5818BD3E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Western Patient Wing + GMNotes: '' + GUID: dcc1bf + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Asylum Halls + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -10.898591 + posY: 1.711288 + posZ: 5.807027 + rotX: 359.9519 + rotY: 270.004547 + rotZ: 180.020172 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232034 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378685352/22FD056BAF1966FE2D1AC46FC1BF90C1A03A1404/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378686413/C1688C1A909FDC7357EB3EEFADAB1FBD5818BD3E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Western Patient Wing + GMNotes: '' + GUID: f99530 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Asylum Halls + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -12.1413822 + posY: 1.57848215 + posZ: 18.7400589 + rotX: 359.920227 + rotY: 270.0001 + rotZ: 180.017441 + 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: http://cloud-3.steamusercontent.com/ugc/775107058378732934/F41E84FCDC0AB52634348C439A6D1A725CEB8115/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378736378/628E179D5305E95AFC25D86526320A24F8B27391/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 4 + GMNotes: '' + GUID: b42f4b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: No Asylum + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -7.451814 + posY: 1.70210373 + posZ: 3.80224228 + rotX: 359.9397 + rotY: 269.882141 + rotZ: 180.029892 + 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: http://cloud-3.steamusercontent.com/ugc/775107058378732934/F41E84FCDC0AB52634348C439A6D1A725CEB8115/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378736378/628E179D5305E95AFC25D86526320A24F8B27391/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 3 + GMNotes: '' + GUID: 08b672 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Planning the Escape + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -7.60485744 + posY: 1.72892582 + posZ: 3.985535 + rotX: 359.9496 + rotY: 270.0448 + rotZ: 179.984238 + 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: http://cloud-3.steamusercontent.com/ugc/775107058378732934/F41E84FCDC0AB52634348C439A6D1A725CEB8115/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378736378/628E179D5305E95AFC25D86526320A24F8B27391/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 2 + GMNotes: '' + GUID: 7f4366 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: "\u201CThe Really Bad Ones\u201D (v. II)" + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -55.2330475 + posY: 1.96990764 + posZ: 8.714673 + rotX: 359.936218 + rotY: 270.0 + rotZ: 0.0134131024 + 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: http://cloud-3.steamusercontent.com/ugc/775107058378732934/F41E84FCDC0AB52634348C439A6D1A725CEB8115/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378736378/628E179D5305E95AFC25D86526320A24F8B27391/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 2 + GMNotes: '' + GUID: '200091' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: "\u201CThe Really Bad Ones\u201D (v. I)" + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -55.6904221 + posY: 1.98021638 + posZ: 8.791347 + rotX: 359.9364 + rotY: 270.0 + rotZ: 0.013019464 + 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: http://cloud-3.steamusercontent.com/ugc/775107058378732934/F41E84FCDC0AB52634348C439A6D1A725CEB8115/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378736378/628E179D5305E95AFC25D86526320A24F8B27391/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 1 + GMNotes: '' + GUID: 38bfee + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Arkham Asylum + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -55.81901 + posY: 1.98999071 + posZ: 8.660832 + rotX: 359.936432 + rotY: 270.0 + rotZ: 0.0134142991 + 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: http://cloud-3.steamusercontent.com/ugc/775107058378732934/F41E84FCDC0AB52634348C439A6D1A725CEB8115/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378736378/628E179D5305E95AFC25D86526320A24F8B27391/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 3 + GMNotes: '' + GUID: 3da436 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: His Domain + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -55.1359177 + posY: 1.983349 + posZ: 9.245171 + rotX: 359.9178 + rotY: 270.000061 + rotZ: 0.0134131005 + 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: http://cloud-3.steamusercontent.com/ugc/775107058378732934/F41E84FCDC0AB52634348C439A6D1A725CEB8115/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378736378/628E179D5305E95AFC25D86526320A24F8B27391/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 2 + GMNotes: '' + GUID: 87b92e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Torturous Descent + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -55.371582 + posY: 2.01050329 + posZ: 9.241928 + rotX: 359.913177 + rotY: 270.0168 + rotZ: 0.9336809 + 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: http://cloud-3.steamusercontent.com/ugc/775107058378732934/F41E84FCDC0AB52634348C439A6D1A725CEB8115/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378736378/628E179D5305E95AFC25D86526320A24F8B27391/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 1 + GMNotes: '' + GUID: 3a6817 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Locked Inside + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -55.6972771 + posY: 2.003492 + posZ: 8.842182 + rotX: 359.881653 + rotY: 269.99292 + rotZ: 0.0161525663 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232032 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378685352/22FD056BAF1966FE2D1AC46FC1BF90C1A03A1404/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378686413/C1688C1A909FDC7357EB3EEFADAB1FBD5818BD3E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: The Unspeakable Oath + GMNotes: '' + GUID: aa08d4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Scenario + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -55.64239 + posY: 2.013191 + posZ: 9.349824 + rotX: 359.917542 + rotY: 270.059418 + rotZ: 359.9344 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2317': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378732934/F41E84FCDC0AB52634348C439A6D1A725CEB8115/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378736378/628E179D5305E95AFC25D86526320A24F8B27391/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378685352/22FD056BAF1966FE2D1AC46FC1BF90C1A03A1404/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378686413/C1688C1A909FDC7357EB3EEFADAB1FBD5818BD3E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 232242 +- 232242 +- 232242 +- 232241 +- 232240 +- 232239 +- 232239 +- 232238 +- 232238 +- 232238 +- 232237 +- 232237 +- 232033 +- 232047 +- 232046 +- 232044 +- 232045 +- 232043 +- 232042 +- 232041 +- 232040 +- 232039 +- 232038 +- 232037 +- 232036 +- 232035 +- 232034 +- 231723 +- 231722 +- 231721 +- 231720 +- 231719 +- 231718 +- 231717 +- 231716 +- 232032 +Description: '' +GMNotes: '' +GUID: 1fef91 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: The Unspeakable Oath +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 16.6448536 + posY: 2.68820024 + posZ: -81.3615 + rotX: 359.9201 + rotY: 270.023132 + rotZ: 0.0168539 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3.yaml new file mode 100644 index 000000000..98b2f10c2 --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3.yaml @@ -0,0 +1,199 @@ +Autoraise: true +ColorDiffuse: + b: 0.02148666 + g: 0.00100758043 + r: 0.02148666 +ContainedObjects: +- !include 'Custom_Model_Bag all encounter sets 9671d3/Deck Maddening Delusions bd621c.yaml' +- !include 'Custom_Model_Bag all encounter sets 9671d3/Deck Decaying Reality 99caa2.yaml' +- !include 'Custom_Model_Bag all encounter sets 9671d3/Deck Inhabitants of Carcosa + 7607d1.yaml' +- !include 'Custom_Model_Bag all encounter sets 9671d3/Deck Secret Doors 1921ac.yaml' +- !include 'Custom_Model_Bag all encounter sets 9671d3/Deck Resurgent Evils ac6dbd.yaml' +- !include 'Custom_Model_Bag all encounter sets 9671d3/Deck Beyond the Threshold 859ae9.yaml' +- !include 'Custom_Model_Bag all encounter sets 9671d3/Deck Creeping Cold 5d3d31.yaml' +- !include 'Custom_Model_Bag all encounter sets 9671d3/Deck Yog-Sothoth''s Emissaries + 66ba46.yaml' +- !include 'Custom_Model_Bag all encounter sets 9671d3/Deck Erratic Fear 69e97a.yaml' +- !include 'Custom_Model_Bag all encounter sets 9671d3/Deck Whippoorwills e3473c.yaml' +- !include 'Custom_Model_Bag all encounter sets 9671d3/Deck Dunwich ebbb05.yaml' +- !include 'Custom_Model_Bag all encounter sets 9671d3/Deck Bad Luck 71f991.yaml' +- !include 'Custom_Model_Bag all encounter sets 9671d3/Deck Bishop''s Thralls 692ab0.yaml' +- !include 'Custom_Model_Bag all encounter sets 9671d3/Deck Sorcery 6f6e72.yaml' +- !include 'Custom_Model_Bag all encounter sets 9671d3/Deck Hideous Abominations 4b1413.yaml' +- !include 'Custom_Model_Bag all encounter sets 9671d3/Deck The Beyond 17fb80.yaml' +- !include 'Custom_Model_Bag all encounter sets 9671d3/Deck Naomi''s Crew be34b0.yaml' +- !include 'Custom_Model_Bag all encounter sets 9671d3/Deck Beast Thralls b6ed30.yaml' +- !include "Custom_Model_Bag all encounter sets 9671d3/Deck Return to Cult of Um\xF4\ + rdhoth 4cbc33.yaml" +- !include 'Custom_Model_Bag all encounter sets 9671d3/Deck Decay & Filth afde9a.yaml' +- !include 'Custom_Model_Bag all encounter sets 9671d3/Deck Hauntings 813c5b.yaml' +- !include 'Custom_Model_Bag all encounter sets 9671d3/Deck Cult of the Yellow Sign + e0c50e.yaml' +- !include 'Custom_Model_Bag all encounter sets 9671d3/Deck Hastur''s Gift dc9b9c.yaml' +- !include 'Custom_Model_Bag all encounter sets 9671d3/Deck Evil Portents f54d1c.yaml' +- !include 'Custom_Model_Bag all encounter sets 9671d3/Deck The Stranger bbd0cf.yaml' +- !include 'Custom_Model_Bag all encounter sets 9671d3/Deck Delusions d63969.yaml' +- !include 'Custom_Model_Bag all encounter sets 9671d3/Deck Byakhee 3168a0.yaml' +- !include 'Custom_Model_Bag all encounter sets 9671d3/Deck Curse of the Rougarou + 1755b5.yaml' +- !include 'Custom_Model_Bag all encounter sets 9671d3/Deck The Bayou 201e0d.yaml' +- !include 'Custom_Model_Bag all encounter sets 9671d3/Deck Carnevale of Horrors 5d123b.yaml' +- !include 'Custom_Model_Bag all encounter sets 9671d3/Deck Epic Multiplayer 861e9b.yaml' +- !include 'Custom_Model_Bag all encounter sets 9671d3/Deck Single Group 048ed9.yaml' +- !include 'Custom_Model_Bag all encounter sets 9671d3/Deck The Labyrinths of Lunacy + 1e86b9.yaml' +- !include 'Custom_Model_Bag all encounter sets 9671d3/Deck Brotherhood of the Beast + 932381.yaml' +- !include 'Custom_Model_Bag all encounter sets 9671d3/Deck Sands of Egypt a02026.yaml' +- !include 'Custom_Model_Bag all encounter sets 9671d3/Deck Abyssal Gifts 15442b.yaml' +- !include 'Custom_Model_Bag all encounter sets 9671d3/Deck Abyssal Tribute 00f354.yaml' +- !include 'Custom_Model_Bag all encounter sets 9671d3/Deck The Night''s Usurper 4cec40.yaml' +- !include 'Custom_Model_Bag all encounter sets 9671d3/Deck The Eternal Slumber 0e6ca2.yaml' +- !include 'Custom_Model_Bag all encounter sets 9671d3/Deck The City of Archives 3a0a17.yaml' +- !include 'Custom_Model_Bag all encounter sets 9671d3/Deck Pillars of Judgement 050bae.yaml' +- !include 'Custom_Model_Bag all encounter sets 9671d3/Deck K''n-yan 3ac2d8.yaml' +- !include 'Custom_Model_Bag all encounter sets 9671d3/Deck The Depths of Yoth 3bf251.yaml' +- !include 'Custom_Model_Bag all encounter sets 9671d3/Deck Threads of Fate 5419e6.yaml' +- !include 'Custom_Model_Bag all encounter sets 9671d3/Deck The Untamed Wilds c1a740.yaml' +- !include 'Custom_Model_Bag all encounter sets 9671d3/Deck The Doom of Eztli 383c89.yaml' +- !include 'Custom_Model_Bag all encounter sets 9671d3/Deck The Boundary Beyond 33800f.yaml' +- !include 'Custom_Model_Bag all encounter sets 9671d3/Deck Heart of the Elders 5b2663.yaml' +- !include 'Custom_Model_Bag all encounter sets 9671d3/Deck Forgotten Ruins 42af0f.yaml' +- !include 'Custom_Model_Bag all encounter sets 9671d3/Deck Shattered Aeons e13f1b.yaml' +- !include 'Custom_Model_Bag all encounter sets 9671d3/Deck Turn Back Time 32a2f0.yaml' +- !include 'Custom_Model_Bag all encounter sets 9671d3/Deck Deadly Traps 0eb930.yaml' +- !include 'Custom_Model_Bag all encounter sets 9671d3/Deck Temporal Flux aa9a85.yaml' +- !include 'Custom_Model_Bag all encounter sets 9671d3/Deck Yig''s Venom 56b495.yaml' +- !include 'Custom_Model_Bag all encounter sets 9671d3/Deck Guardians of Time 69dfe0.yaml' +- !include 'Custom_Model_Bag all encounter sets 9671d3/Deck Agents of Yig 1c4590.yaml' +- !include 'Custom_Model_Bag all encounter sets 9671d3/Deck Expedition f4650a.yaml' +- !include 'Custom_Model_Bag all encounter sets 9671d3/Deck Pnakotic Brotherhood 4845b8.yaml' +- !include 'Custom_Model_Bag all encounter sets 9671d3/Deck Poison 995c5f.yaml' +- !include 'Custom_Model_Bag all encounter sets 9671d3/Deck Rainforest 81cf68.yaml' +- !include 'Custom_Model_Bag all encounter sets 9671d3/Deck Serpents 40c51c.yaml' +- !include 'Custom_Model_Bag all encounter sets 9671d3/Deck The Gathering 31748f.yaml' +- !include 'Custom_Model_Bag all encounter sets 9671d3/Deck The Midnight Masks 780667.yaml' +- !include 'Custom_Model_Bag all encounter sets 9671d3/Deck The Devourer Below d1ca16.yaml' +- !include "Custom_Model_Bag all encounter sets 9671d3/Deck The Devourer\u2019s Cult\ + \ 3cea3c.yaml" +- !include "Custom_Model_Bag all encounter sets 9671d3/Deck Anette\u2019s Coven bd372e.yaml" +- !include 'Custom_Model_Bag all encounter sets 9671d3/Deck Silver Twilight Lodge + 747a12.yaml' +- !include 'Custom_Model_Bag all encounter sets 9671d3/Deck Witchcraft b228e7.yaml' +- !include 'Custom_Model_Bag all encounter sets 9671d3/Deck Spectral Predators 842b8d.yaml' +- !include 'Custom_Model_Bag all encounter sets 9671d3/Deck City of Sins 118828.yaml' +- !include 'Custom_Model_Bag all encounter sets 9671d3/Deck The Witching Hour b7d79e.yaml' +- !include 'Custom_Model_Bag all encounter sets 9671d3/Deck Realm of Death 8ee597.yaml' +- !include 'Custom_Model_Bag all encounter sets 9671d3/Deck Inexorable Fate 308386.yaml' +- !include 'Custom_Model_Bag all encounter sets 9671d3/Deck Agents of Azathoth a04ba2.yaml' +- !include 'Custom_Model_Bag all encounter sets 9671d3/Deck The Watcher 28374b.yaml' +- !include 'Custom_Model_Bag all encounter sets 9671d3/Deck Disappearance at the Twilight + Estate 2db0b7.yaml' +- !include 'Custom_Model_Bag all encounter sets 9671d3/Deck Trapped Spirits 1829fa.yaml' +- !include 'Custom_Model_Bag all encounter sets 9671d3/Deck At Death''s Doorstep bcc420.yaml' +- !include 'Custom_Model_Bag all encounter sets 9671d3/Deck The Secret Name 802b3b.yaml' +- !include 'Custom_Model_Bag all encounter sets 9671d3/Deck Union and Disillusion + d5fdb9.yaml' +- !include 'Custom_Model_Bag all encounter sets 9671d3/Deck For the Greater Good c15ada.yaml' +- !include 'Custom_Model_Bag all encounter sets 9671d3/Deck Before the Black Throne + 0d1c93.yaml' +- !include 'Custom_Model_Bag all encounter sets 9671d3/Deck Music of the Damned b97715.yaml' +- !include 'Custom_Model_Bag all encounter sets 9671d3/Deck In the Clutches of Chaos + 4db724.yaml' +- !include 'Custom_Model_Bag all encounter sets 9671d3/Deck Secrets of the Universe + d427d3.yaml' +- !include "Custom_Model_Bag all encounter sets 9671d3/Deck Ghouls of Um\xF4rdhoth\ + \ af187d.yaml" +- !include 'Custom_Model_Bag all encounter sets 9671d3/Deck Dark Cult 301f10.yaml' +- !include "Custom_Model_Bag all encounter sets 9671d3/Deck Cult of Um\xF4rdhoth 372611.yaml" +- !include 'Custom_Model_Bag all encounter sets 9671d3/Deck Striking Fear 9c4c01.yaml' +- !include 'Custom_Model_Bag all encounter sets 9671d3/Deck Rats 3f1614.yaml' +- !include 'Custom_Model_Bag all encounter sets 9671d3/Deck Ancient Evils 6cabc0.yaml' +- !include 'Custom_Model_Bag all encounter sets 9671d3/Deck Chilling Cold cabe00.yaml' +- !include 'Custom_Model_Bag all encounter sets 9671d3/Deck Nightgaunts afb971.yaml' +- !include 'Custom_Model_Bag all encounter sets 9671d3/Deck Ghouls e8ffa9.yaml' +- !include 'Custom_Model_Bag all encounter sets 9671d3/Deck Locked Doors 557850.yaml' +- !include 'Custom_Model_Bag all encounter sets 9671d3/Deck Agents of Yog-Sothoth + a31174.yaml' +- !include 'Custom_Model_Bag all encounter sets 9671d3/Deck Agents of Shub-Niggurath + 97e975.yaml' +- !include 'Custom_Model_Bag all encounter sets 9671d3/Deck Agents of Cthulhu 28ea75.yaml' +- !include 'Custom_Model_Bag all encounter sets 9671d3/Deck Agents of Hastur 577e73.yaml' +- !include 'Custom_Model_Bag all encounter sets 9671d3/Deck Agents of Atlach-Nacha + bce397.yaml' +- !include 'Custom_Model_Bag all encounter sets 9671d3/Deck Dreamlands 651db3.yaml' +- !include 'Custom_Model_Bag all encounter sets 9671d3/Deck Agents of Nyarlathotep + 206840.yaml' +- !include 'Custom_Model_Bag all encounter sets 9671d3/Deck Merging Realities 677f60.yaml' +- !include 'Custom_Model_Bag all encounter sets 9671d3/Deck Terror of the Vale cf2394.yaml' +- !include 'Custom_Model_Bag all encounter sets 9671d3/Deck Descent into the Pitch + 6c8a89.yaml' +- !include 'Custom_Model_Bag all encounter sets 9671d3/Deck Whispers of Hypnos dacab3.yaml' +- !include 'Custom_Model_Bag all encounter sets 9671d3/Deck Spiders 664c14.yaml' +- !include 'Custom_Model_Bag all encounter sets 9671d3/Deck Corsairs 04ac32.yaml' +- !include 'Custom_Model_Bag all encounter sets 9671d3/Deck Creatures of the Underworld + 0404a7.yaml' +- !include "Custom_Model_Bag all encounter sets 9671d3/Deck Dreamer\u2019s Curse 40bbd3.yaml" +- !include 'Custom_Model_Bag all encounter sets 9671d3/Deck Zoogs 691cbe.yaml' +- !include 'Custom_Model_Bag all encounter sets 9671d3/Deck Neurotic Fear e89db8.yaml' +- !include "Custom_Model_Bag all encounter sets 9671d3/Deck Hastur\u2019s Envoys de4ead.yaml" +- !include 'Custom_Model_Bag all encounter sets 9671d3/Deck Delusory Evils 57ca37.yaml' +- !include 'Custom_Model_Bag all encounter sets 9671d3/Deck Sins of the Past 0f202c.yaml' +- !include 'Custom_Model_Bag all encounter sets 9671d3/Deck Dark Rituals 556034.yaml' +- !include 'Custom_Model_Bag all encounter sets 9671d3/Deck Excelsior Management e83156.yaml' +- !include 'Custom_Model_Bag all encounter sets 9671d3/Deck Alien Interference cb971c.yaml' +- !include 'Custom_Model_Bag all encounter sets 9671d3/Deck Vile Experiments f3e88c.yaml' +- !include 'Custom_Model_Bag all encounter sets 9671d3/Deck The Search for Kadath + 6340a3.yaml' +- !include 'Custom_Model_Bag all encounter sets 9671d3/Deck Weaver of the Cosmos 7b15a1.yaml' +- !include 'Custom_Model_Bag all encounter sets 9671d3/Deck Where the Gods Dwell 9af347.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: '' +GMNotes: '' +GUID: 9671d3 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +MeshIndex: -1 +Name: Custom_Model_Bag +Nickname: all encounter sets +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: 17.7863712 + posY: 2.26003027 + posZ: -73.765976 + rotX: 4.87526373e-11 + rotY: 89.99925 + rotZ: -9.12446063e-10 + scaleX: 2.0 + scaleY: 2.0 + scaleZ: 2.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Abyssal Gifts 15442b.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Abyssal Gifts 15442b.yaml new file mode 100644 index 000000000..0ca4892a0 --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Abyssal Gifts 15442b.yaml @@ -0,0 +1,129 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- 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 + UniqueBack: true + Description: Monster. Nightgaunt. Power. + GMNotes: '' + GUID: cf96b9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Summoned Nightgaunt + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 103.201096 + posY: 1.4056803 + posZ: 2.052395 + rotX: 359.9875 + rotY: 270.023163 + rotZ: 359.970825 + 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 + UniqueBack: true + Description: Item. Weapon. Relic. Melee. + GMNotes: '' + GUID: dc674e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Khopesh of the Abyss + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 103.385689 + posY: 1.55077529 + posZ: 2.09006643 + rotX: 0.006596432 + rotY: 270.0209 + rotZ: 359.938751 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2662': + BackIsHidden: true + BackURL: https://i.imgur.com/NSozoRe.jpg + FaceURL: https://i.imgur.com/HLQOkvy.jpg + NumHeight: 5 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 266217 +- 266216 +Description: '' +GMNotes: '' +GUID: 15442b +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Abyssal Gifts +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 16.48521 + posY: 3.58606887 + posZ: -5.59201765 + rotX: 359.919525 + rotY: 269.999847 + rotZ: 0.0171723925 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Abyssal Tribute 00f354.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Abyssal Tribute 00f354.yaml new file mode 100644 index 000000000..c060c6f5e --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Abyssal Tribute 00f354.yaml @@ -0,0 +1,129 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 266141 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2661': + BackIsHidden: true + BackURL: https://i.imgur.com/r6F1mt2.jpg + FaceURL: https://i.imgur.com/CN9PXUd.jpg + NumHeight: 5 + NumWidth: 10 + UniqueBack: true + Description: Item. Relic. + GMNotes: '' + GUID: 0ce113 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ancient Ankh + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 94.6309052 + posY: 1.40865242 + posZ: -1.769354 + rotX: 359.98233 + rotY: 270.0 + rotZ: 359.982849 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 266140 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2661': + BackIsHidden: true + BackURL: https://i.imgur.com/r6F1mt2.jpg + FaceURL: https://i.imgur.com/CN9PXUd.jpg + NumHeight: 5 + NumWidth: 10 + UniqueBack: true + Description: Ally. Government. + GMNotes: '' + GUID: cfb393 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: John & Jessie Burke + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 94.58986 + posY: 1.55362213 + posZ: -2.045931 + rotX: 359.989532 + rotY: 270.0 + rotZ: 359.9869 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2661': + BackIsHidden: true + BackURL: https://i.imgur.com/r6F1mt2.jpg + FaceURL: https://i.imgur.com/CN9PXUd.jpg + NumHeight: 5 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 266141 +- 266140 +Description: '' +GMNotes: '' +GUID: 00f354 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Abyssal Tribute +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 16.4734478 + posY: 3.586223 + posZ: -5.09396648 + rotX: 359.9194 + rotY: 269.999878 + rotZ: 0.0171014182 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Agents of Atlach-Nacha bce397.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Agents of Atlach-Nacha bce397.yaml new file mode 100644 index 000000000..2b937f90d --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Agents of Atlach-Nacha bce397.yaml @@ -0,0 +1,215 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 274109 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2741': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Spider. + GMNotes: '' + GUID: 621de5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Grey Weaver + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -16.29789 + posY: 1.33173692 + posZ: 54.9044876 + rotX: 0.0208100639 + rotY: 270.000061 + rotZ: 0.0168662574 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274109 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2741': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Spider. + GMNotes: '' + GUID: b126fb + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Grey Weaver + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -16.12129 + posY: 1.49274647 + posZ: 55.211235 + rotX: 0.018673053 + rotY: 270.000061 + rotZ: 0.0111498982 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274110 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2741': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Power. + GMNotes: '' + GUID: '924656' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Will of the Spider-Mother + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -16.3824444 + posY: 1.50997329 + posZ: 55.3458862 + rotX: 0.0223769117 + rotY: 270.0001 + rotZ: 0.0136615671 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274110 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2741': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Power. + GMNotes: '' + GUID: 50e06a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Will of the Spider-Mother + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -16.24422 + posY: 1.49625111 + posZ: 54.82901 + rotX: 0.02021771 + rotY: 270.0001 + rotZ: 0.01658786 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2741': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 274109 +- 274109 +- 274110 +- 274110 +Description: '' +GMNotes: '' +GUID: bce397 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Agents of Atlach-Nacha +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 14.6397343 + posY: 3.411103 + posZ: 49.2715225 + rotX: 0.020826878 + rotY: 270.000183 + rotZ: 0.0167652667 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Agents of Azathoth a04ba2.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Agents of Azathoth a04ba2.yaml new file mode 100644 index 000000000..e43305971 --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Agents of Azathoth a04ba2.yaml @@ -0,0 +1,215 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 231804 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Power. Terror. + GMNotes: '' + GUID: 397fce + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Daemonic Piping + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -29.403286 + posY: 1.77933121 + posZ: -35.6114159 + rotX: 359.909668 + rotY: 269.9743 + rotZ: 0.0608307645 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231804 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Power. Terror. + GMNotes: '' + GUID: f84e0e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Daemonic Piping + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -29.3314133 + posY: 1.583834 + posZ: -34.59758 + rotX: 359.916046 + rotY: 269.966034 + rotZ: 0.0159121323 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231804 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Power. Terror. + GMNotes: '' + GUID: f79968 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Daemonic Piping + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -29.2182922 + posY: 1.63309085 + posZ: -35.4018936 + rotX: 359.915253 + rotY: 269.9727 + rotZ: 0.0569894649 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231803 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Elite. + GMNotes: '' + GUID: 092d86 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Piper of Azatoth + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -29.0438728 + posY: 1.72789907 + posZ: -35.56541 + rotX: 359.890228 + rotY: 269.998352 + rotZ: 0.03636023 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 231804 +- 231804 +- 231804 +- 231803 +Description: '' +GMNotes: '' +GUID: a04ba2 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Agents of Azathoth +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -0.4585595 + posY: 3.50252748 + posZ: -15.36675 + rotX: 359.920135 + rotY: 269.973022 + rotZ: 0.016909929 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Agents of Cthulhu 28ea75.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Agents of Cthulhu 28ea75.yaml new file mode 100644 index 000000000..f7f690728 --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Agents of Cthulhu 28ea75.yaml @@ -0,0 +1,215 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 232435 + 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 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: 796db7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dreams of R'lyeh + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -21.18895 + posY: 1.5854075 + posZ: 8.96069 + rotX: 359.920074 + rotY: 270.000061 + rotZ: 0.0172643047 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232435 + 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 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: 47ed9e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dreams of R'lyeh + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -21.0872536 + posY: 1.74957943 + posZ: 9.398701 + rotX: 359.9174 + rotY: 270.000061 + rotZ: 0.009243452 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232434 + 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 + UniqueBack: false + Description: Humanoid. Monster. Deep One. + GMNotes: '' + GUID: ab3719 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Young Deep One + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -21.4079018 + posY: 1.5847317 + posZ: 5.77563953 + rotX: 359.9205 + rotY: 269.997864 + rotZ: 0.0144211389 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232434 + 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 + UniqueBack: false + Description: Humanoid. Monster. Deep One. + GMNotes: '' + GUID: cfd69a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Young Deep One + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -21.3780651 + posY: 1.740191 + posZ: 5.657522 + rotX: 359.926422 + rotY: 269.997955 + rotZ: 0.009787786 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2324': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 232435 +- 232435 +- 232434 +- 232434 +Description: '' +GMNotes: '' +GUID: 28ea75 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: "\tAgents of Cthulhu" +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 18.6734753 + posY: 3.58939481 + posZ: -22.9693069 + rotX: 359.92 + rotY: 269.9848 + rotZ: 0.0168802533 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Agents of Hastur 577e73.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Agents of Hastur 577e73.yaml new file mode 100644 index 000000000..4682bba2f --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Agents of Hastur 577e73.yaml @@ -0,0 +1,215 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 232529 + 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 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: 4cf636 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Yellow Sign + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -18.2012749 + posY: 1.58148372 + posZ: 10.016777 + rotX: 359.920746 + rotY: 269.996552 + rotZ: 0.0126871429 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232529 + 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 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: 74a845 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Yellow Sign + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -18.39433 + posY: 1.745 + posZ: 9.752235 + rotX: 359.928131 + rotY: 269.996552 + rotZ: 0.0164207779 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232528 + 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 + UniqueBack: false + Description: Monster. Byakhee. + GMNotes: '' + GUID: ab3719 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Screeching Byakhee + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -18.9733372 + posY: 1.58185852 + posZ: 7.530837 + rotX: 359.920441 + rotY: 269.999878 + rotZ: 0.0146859353 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232528 + 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 + UniqueBack: false + Description: Monster. Byakhee. + GMNotes: '' + GUID: 6fc5fa + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Screeching Byakhee + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -18.7373314 + posY: 1.73706949 + posZ: 7.34839153 + rotX: 359.923981 + rotY: 269.9999 + rotZ: 0.0115116611 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2325': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 232529 +- 232529 +- 232528 +- 232528 +Description: '' +GMNotes: '' +GUID: 577e73 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Agents of Hastur +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 18.46596 + posY: 3.57414174 + posZ: -15.3530111 + rotX: 359.920135 + rotY: 269.994324 + rotZ: 0.0168837924 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Agents of Nyarlathotep 206840.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Agents of Nyarlathotep 206840.yaml new file mode 100644 index 000000000..169d20b02 --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Agents of Nyarlathotep 206840.yaml @@ -0,0 +1,215 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 274113 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2741': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: 48601c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Law of 'Ygiroth (Discord) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -1.349257 + posY: 1.33509922 + posZ: 56.99563 + rotX: 0.04734984 + rotY: 270.0003 + rotZ: 359.83844 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274112 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2741': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: fc58cb + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Law of 'Ygiroth (Chaos) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -0.8192207 + posY: 1.47842848 + posZ: 56.2326355 + rotX: 359.92807 + rotY: 269.996246 + rotZ: 0.356809825 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274114 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2741': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: bf7d6b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Law of 'Ygiroth (Pandemonium) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -0.465582937 + posY: 1.62316334 + posZ: 55.9808464 + rotX: 359.928467 + rotY: 269.997772 + rotZ: 0.4196703 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274111 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2741': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Avatar. + GMNotes: '' + GUID: aa76f7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Crawling Mist + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -9.443407 + posY: 1.48961806 + posZ: 77.092 + rotX: 0.0185354967 + rotY: 269.997528 + rotZ: 0.0155661078 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2741': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 274113 +- 274112 +- 274114 +- 274111 +Description: '' +GMNotes: '' +GUID: '206840' +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Agents of Nyarlathotep +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 14.95717 + posY: 3.39563727 + posZ: 45.6941261 + rotX: 0.0208087489 + rotY: 269.997437 + rotZ: 0.0167674627 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Agents of Shub-Niggurath 97e975.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Agents of Shub-Niggurath 97e975.yaml new file mode 100644 index 000000000..f16c3f2f2 --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Agents of Shub-Niggurath 97e975.yaml @@ -0,0 +1,215 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 231733 + 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 + UniqueBack: false + Description: Humanoid. Monster. + GMNotes: '' + GUID: e4ae63 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Goat Spawn + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -21.0514832 + posY: 1.58367968 + posZ: 3.80302978 + rotX: 359.920227 + rotY: 269.995728 + rotZ: 0.0161432624 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231733 + 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 + UniqueBack: false + Description: Humanoid. Monster. + GMNotes: '' + GUID: 3f2e83 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Goat Spawn + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -21.3775539 + posY: 1.74800014 + posZ: 3.76909566 + rotX: 359.921448 + rotY: 269.9958 + rotZ: 0.01241914 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231733 + 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 + UniqueBack: false + Description: Humanoid. Monster. + GMNotes: '' + GUID: e4ae63 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Goat Spawn + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -21.3775349 + posY: 1.76184154 + posZ: 3.76909184 + rotX: 359.92215 + rotY: 269.9958 + rotZ: 0.0164589938 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231732 + 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 + UniqueBack: false + Description: Monster. Dark Young. + GMNotes: '' + GUID: ab3719 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Relentless Dark Young + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -21.1681347 + posY: 1.73308969 + posZ: 3.68174171 + rotX: 359.919647 + rotY: 269.996674 + rotZ: 0.0130278058 + 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 + UniqueBack: false +DeckIDs: +- 231733 +- 231733 +- 231733 +- 231732 +Description: '' +GMNotes: '' +GUID: 97e975 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Agents of Shub-Niggurath +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 56.89581 + posY: 2.37096429 + posZ: -76.61884 + rotX: 359.920135 + rotY: 269.985657 + rotZ: 0.016897276 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Agents of Yig 1c4590.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Agents of Yig 1c4590.yaml new file mode 100644 index 000000000..9bd7d5b60 --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Agents of Yig 1c4590.yaml @@ -0,0 +1,301 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 12314 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Curse. + GMNotes: '' + GUID: 5b28aa + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Curse of Yig + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 110.552 + posY: 1.41491556 + posZ: -37.7198753 + rotX: 359.984253 + rotY: 270.000763 + rotZ: 359.982 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12314 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Curse. + GMNotes: '' + GUID: 866eba + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Curse of Yig + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 110.2327 + posY: 1.55990815 + posZ: -37.40932 + rotX: 359.978851 + rotY: 270.004883 + rotZ: 359.955475 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12313 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Humanoid. Monster. Serpent. + GMNotes: '' + GUID: 906ef2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Serpent from Yoth + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 110.823021 + posY: 1.5773617 + posZ: -37.52145 + rotX: 359.987762 + rotY: 269.999939 + rotZ: 359.98053 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12312 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Humanoid. Monster. Serpent. + GMNotes: '' + GUID: 61dec3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Brood of Yig + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 110.72921 + posY: 1.563662 + posZ: -37.28887 + rotX: 359.984131 + rotY: 269.999084 + rotZ: 359.98288 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12312 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Humanoid. Monster. Serpent. + GMNotes: '' + GUID: 7a7539 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Brood of Yig + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 110.39782 + posY: 1.56174958 + posZ: -37.34012 + rotX: -0.00220557954 + rotY: 269.981567 + rotZ: 0.0100701423 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12312 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Humanoid. Monster. Serpent. + GMNotes: '' + GUID: 5ef7c7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Brood of Yig + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 110.20594 + posY: 1.5645144 + posZ: -37.5257645 + rotX: 359.987244 + rotY: 270.01 + rotZ: 359.976532 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '123': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 12314 +- 12314 +- 12313 +- 12312 +- 12312 +- 12312 +Description: '' +GMNotes: '' +GUID: 1c4590 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Agents of Yig +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 16.4515438 + posY: 3.48923349 + posZ: -1.19904864 + rotX: 359.920135 + rotY: 270.00174 + rotZ: 0.0168663952 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Agents of Yog-Sothoth a31174.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Agents of Yog-Sothoth a31174.yaml new file mode 100644 index 000000000..dd43a6e27 --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Agents of Yog-Sothoth a31174.yaml @@ -0,0 +1,215 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 231731 + 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 + UniqueBack: false + Description: Pact. + GMNotes: '' + GUID: ad01d5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Offer of Power + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -20.624012 + posY: 1.58353865 + posZ: 5.391288 + rotX: 359.92038 + rotY: 270.0011 + rotZ: 0.0152683891 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231731 + 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 + UniqueBack: false + Description: Pact. + GMNotes: '' + GUID: 1e4b6f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Offer of Power + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -21.1143684 + posY: 1.74799216 + posZ: 5.51088 + rotX: 359.927856 + rotY: 270.00116 + rotZ: 0.008664682 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231730 + 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 + UniqueBack: false + Description: Monster. Yithian. + GMNotes: '' + GUID: ab3719 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Yithian Observer + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -20.7980976 + posY: 1.58471787 + posZ: 8.655001 + rotX: 359.9206 + rotY: 270.001221 + rotZ: 0.0136531973 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231730 + 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 + UniqueBack: false + Description: Monster. Yithian. + GMNotes: '' + GUID: 4c04b5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Yithian Observer + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -21.04713 + posY: 1.74898231 + posZ: 8.319516 + rotX: 359.925964 + rotY: 270.001221 + rotZ: 0.0171930045 + 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 + UniqueBack: false +DeckIDs: +- 231731 +- 231731 +- 231730 +- 231730 +Description: '' +GMNotes: '' +GUID: a31174 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: "\tAgents of Yog-Sothoth" +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.4420986 + posY: 3.584347 + posZ: -17.6948376 + rotX: 359.920135 + rotY: 270.0001 + rotZ: 0.0168791059 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Alien Interference cb971c.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Alien Interference cb971c.yaml new file mode 100644 index 000000000..1355e6743 --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Alien Interference cb971c.yaml @@ -0,0 +1,258 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 231614 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2316': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493212055041441/90F035BD69A7C5C6B6F43426DDDA3A09DFCBCBDF/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: 3fbc07 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Encephalon Signal + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 22.3816662 + posY: 1.52079952 + posZ: -3.96237373 + rotX: 359.920563 + rotY: 269.999817 + rotZ: 0.0132160513 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231614 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2316': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493212055041441/90F035BD69A7C5C6B6F43426DDDA3A09DFCBCBDF/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: 5c4124 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Encephalon Signal + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 22.237072 + posY: 1.67204773 + posZ: -3.90301514 + rotX: 359.933868 + rotY: 269.999939 + rotZ: -0.00105428451 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231614 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2316': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493212055041441/90F035BD69A7C5C6B6F43426DDDA3A09DFCBCBDF/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: 7613e0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Encephalon Signal + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 22.23712 + posY: 1.703849 + posZ: -3.90303564 + rotX: 359.920654 + rotY: 269.999878 + rotZ: 0.016180981 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231613 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2316': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493212055041441/90F035BD69A7C5C6B6F43426DDDA3A09DFCBCBDF/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Presence from Beyond the Stars + GMNotes: '' + GUID: 3fbc07 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Otherworldly Meddler + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 22.4825783 + posY: 1.703283 + posZ: -3.92474365 + rotX: 359.920715 + rotY: 270.0151 + rotZ: 358.1064 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231612 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2316': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493212055041441/90F035BD69A7C5C6B6F43426DDDA3A09DFCBCBDF/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Machinations from Beyond + GMNotes: '' + GUID: 3fbc07 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Alien Device + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 22.631424 + posY: 1.81851339 + posZ: -3.66909051 + rotX: 359.915466 + rotY: 269.991 + rotZ: 8.473065 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2316': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493212055041441/90F035BD69A7C5C6B6F43426DDDA3A09DFCBCBDF/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 231614 +- 231614 +- 231614 +- 231613 +- 231612 +Description: '' +GMNotes: '' +GUID: cb971c +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Alien Interference +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 11.7771568 + posY: 3.59124613 + posZ: 7.227609 + rotX: 359.920135 + rotY: 269.97644 + rotZ: 0.01693645 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Ancient Evils 6cabc0.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Ancient Evils 6cabc0.yaml new file mode 100644 index 000000000..872c467e4 --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Ancient Evils 6cabc0.yaml @@ -0,0 +1,172 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- 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 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: 6e7cb8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: 8af879 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: 6e7cb8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' +CustomDeck: + '2317': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 231719 +- 231719 +- 231719 +Description: '' +GMNotes: '' +GUID: 6cabc0 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Ancient Evils +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 15.1716232 + posY: 3.58124971 + posZ: -10.92674 + rotX: 359.920135 + rotY: 269.998718 + rotZ: 0.0168778356 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Anette’s Coven bd372e.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Anette’s Coven bd372e.yaml new file mode 100644 index 000000000..40fd2abd9 --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Anette’s Coven bd372e.yaml @@ -0,0 +1,215 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 231806 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Witch. + GMNotes: '' + GUID: 326f11 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Priestess of the Coven + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -25.8414345 + posY: 1.57860494 + posZ: -36.132618 + rotX: 359.919647 + rotY: 269.974 + rotZ: 0.0165877342 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231805 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Witch. + GMNotes: '' + GUID: c35966 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Coven Initiate + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -25.6442871 + posY: 1.72278082 + posZ: -36.0347443 + rotX: 359.911224 + rotY: 269.974 + rotZ: 0.0136959022 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231805 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Witch. + GMNotes: '' + GUID: 6f2c2e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Coven Initiate + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -25.7267475 + posY: 1.74028778 + posZ: -36.1106224 + rotX: 359.918823 + rotY: 269.9739 + rotZ: 0.0168967526 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231805 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Witch. + GMNotes: '' + GUID: 367d03 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Coven Initiate + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -26.0635834 + posY: 1.72707784 + posZ: -35.83386 + rotX: 359.920868 + rotY: 269.973969 + rotZ: 0.0147350542 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 231806 +- 231805 +- 231805 +- 231805 +Description: '' +GMNotes: '' +GUID: bd372e +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: "Anette\u2019s Coven" +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -0.376588553 + posY: 3.556509 + posZ: -21.7375431 + rotX: 359.8697 + rotY: 269.986053 + rotZ: 355.785248 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck At Death's Doorstep bcc420.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck At Death's Doorstep bcc420.yaml new file mode 100644 index 000000000..f8643c024 --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck At Death's Doorstep bcc420.yaml @@ -0,0 +1,960 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 231714 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2317': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/829135524526797029/1F8A6C29028AED32DB44E4CF22E3120C417F413D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526785922/F34A644AC467C751B6D7B8AF398B8FDB07CCF6A0/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: At Death's Doorstep + GMNotes: '' + GUID: c24b98 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Scenario + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 49.48426 + posY: 1.57168579 + posZ: 42.1124535 + rotX: 0.000455165777 + rotY: 269.998962 + rotZ: 0.002368593 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231907 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/829135524527100186/0D63305581E65C95F286CCA4902B7DE796D815BD/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524527103742/0C4DB40889420CFE47BE897944621ABF2ECA52F9/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: d7fb9d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Entry Hall + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 49.39721 + posY: 1.717745 + posZ: 42.0682678 + rotX: 0.01610766 + rotY: 269.995575 + rotZ: 0.0175064076 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231908 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/829135524527100186/0D63305581E65C95F286CCA4902B7DE796D815BD/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524527103742/0C4DB40889420CFE47BE897944621ABF2ECA52F9/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 0699e7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Victorian Halls + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 49.68142 + posY: 1.73644364 + posZ: 42.35607 + rotX: 0.005014223 + rotY: 270.0064 + rotZ: -0.003660998 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231912 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/829135524527100186/0D63305581E65C95F286CCA4902B7DE796D815BD/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524527103742/0C4DB40889420CFE47BE897944621ABF2ECA52F9/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 1b5483 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Balcony + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 49.52437 + posY: 1.717992 + posZ: 42.889225 + rotX: 0.0139653021 + rotY: 269.9568 + rotZ: 359.950165 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231911 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/829135524527100186/0D63305581E65C95F286CCA4902B7DE796D815BD/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524527103742/0C4DB40889420CFE47BE897944621ABF2ECA52F9/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: e0ffe2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Master Bedroom + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 49.5839958 + posY: 1.72029948 + posZ: 42.6622467 + rotX: 0.0173690971 + rotY: 269.955261 + rotZ: 0.06183034 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231913 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/829135524527100186/0D63305581E65C95F286CCA4902B7DE796D815BD/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524527103742/0C4DB40889420CFE47BE897944621ABF2ECA52F9/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: a1bd9a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Office + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 49.4867935 + posY: 1.72150433 + posZ: 42.008564 + rotX: 359.98584 + rotY: 270.096436 + rotZ: 0.154129773 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231909 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/829135524527100186/0D63305581E65C95F286CCA4902B7DE796D815BD/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524527103742/0C4DB40889420CFE47BE897944621ABF2ECA52F9/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: e9160a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Trophy Room + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 49.3898125 + posY: 3.0686636 + posZ: 43.04578 + rotX: 0.0208080485 + rotY: 270.000366 + rotZ: 0.0167703554 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231910 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/829135524527100186/0D63305581E65C95F286CCA4902B7DE796D815BD/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524527103742/0C4DB40889420CFE47BE897944621ABF2ECA52F9/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 33990b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Billiards Room + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 49.3796158 + posY: 1.73384476 + posZ: 42.1828079 + rotX: 0.0292430948 + rotY: 269.722748 + rotZ: 0.2776274 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231917 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/829135524527100186/0D63305581E65C95F286CCA4902B7DE796D815BD/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524527103742/0C4DB40889420CFE47BE897944621ABF2ECA52F9/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Spectral. + GMNotes: '' + GUID: 18ddb6 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Billiards Room + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 49.3398857 + posY: 1.68580389 + posZ: 42.3047371 + rotX: 359.969269 + rotY: 270.13736 + rotZ: 0.311963171 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231919 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/829135524527100186/0D63305581E65C95F286CCA4902B7DE796D815BD/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524527103742/0C4DB40889420CFE47BE897944621ABF2ECA52F9/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Spectral. + GMNotes: '' + GUID: '523948' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Balcony + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 49.4096375 + posY: 1.69376445 + posZ: 41.63689 + rotX: 0.02039924 + rotY: 269.809265 + rotZ: 0.283286124 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231918 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/829135524527100186/0D63305581E65C95F286CCA4902B7DE796D815BD/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524527103742/0C4DB40889420CFE47BE897944621ABF2ECA52F9/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Spectral. + GMNotes: '' + GUID: 47d379 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Master Bedroom + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 49.6677742 + posY: 1.71092582 + posZ: 42.2472763 + rotX: -0.00437651062 + rotY: 269.923523 + rotZ: 0.2356051 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231916 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/829135524527100186/0D63305581E65C95F286CCA4902B7DE796D815BD/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524527103742/0C4DB40889420CFE47BE897944621ABF2ECA52F9/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Spectral. + GMNotes: '' + GUID: 4b98c8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Trophy Room + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 49.80111 + posY: 1.69321954 + posZ: 42.0975342 + rotX: 358.466064 + rotY: 270.794464 + rotZ: 358.970245 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231920 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/829135524527100186/0D63305581E65C95F286CCA4902B7DE796D815BD/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524527103742/0C4DB40889420CFE47BE897944621ABF2ECA52F9/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Spectral. + GMNotes: '' + GUID: 873e22 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Office + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 49.93516 + posY: 1.724174 + posZ: 42.25193 + rotX: 359.959747 + rotY: 269.822174 + rotZ: 0.220821112 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231914 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/829135524527100186/0D63305581E65C95F286CCA4902B7DE796D815BD/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524527103742/0C4DB40889420CFE47BE897944621ABF2ECA52F9/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Spectral. + GMNotes: '' + GUID: 0ddf65 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Entry Hall + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 49.44016 + posY: 1.7295568 + posZ: 42.6519051 + rotX: 0.08893571 + rotY: 269.8868 + rotZ: 354.81488 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231915 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/829135524527100186/0D63305581E65C95F286CCA4902B7DE796D815BD/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524527103742/0C4DB40889420CFE47BE897944621ABF2ECA52F9/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Spectral. + GMNotes: '' + GUID: cd8076 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Victorian Halls + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 49.4630623 + posY: 1.74213994 + posZ: 43.1885262 + rotX: 0.05241104 + rotY: 269.795349 + rotZ: 349.6292 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232015 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/829135524526797029/1F8A6C29028AED32DB44E4CF22E3120C417F413D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526785922/F34A644AC467C751B6D7B8AF398B8FDB07CCF6A0/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 1 + GMNotes: '' + GUID: 6480fa + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: "JUSTICE \xB7 XI" + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 49.46209 + posY: 2.04181242 + posZ: 43.0181122 + rotX: 0.0479190126 + rotY: 270.0161 + rotZ: 357.719055 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232016 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/829135524526797029/1F8A6C29028AED32DB44E4CF22E3120C417F413D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526785922/F34A644AC467C751B6D7B8AF398B8FDB07CCF6A0/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 2 + GMNotes: '' + GUID: 6ef9c4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Over the Threshold + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 49.35963 + posY: 2.050592 + posZ: 43.4459572 + rotX: 0.09716354 + rotY: 270.0207 + rotZ: 358.0871 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232017 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/829135524526797029/1F8A6C29028AED32DB44E4CF22E3120C417F413D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526785922/F34A644AC467C751B6D7B8AF398B8FDB07CCF6A0/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 1 + GMNotes: '' + GUID: ba8956 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Hidden Agendas + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 49.5900078 + posY: 1.90126944 + posZ: 43.0781174 + rotX: 0.0296830423 + rotY: 270.003662 + rotZ: 358.3025 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232018 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/829135524526797029/1F8A6C29028AED32DB44E4CF22E3120C417F413D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526785922/F34A644AC467C751B6D7B8AF398B8FDB07CCF6A0/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 2 + GMNotes: '' + GUID: d862a5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Spectral Realm + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 49.4760666 + posY: 1.90346944 + posZ: 43.4659271 + rotX: 0.0285433084 + rotY: 269.9674 + rotZ: 359.77655 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232019 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/829135524526797029/1F8A6C29028AED32DB44E4CF22E3120C417F413D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526785922/F34A644AC467C751B6D7B8AF398B8FDB07CCF6A0/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 3 + GMNotes: '' + GUID: 46cad7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Escape the Cage + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 49.43524 + posY: 2.07994986 + posZ: 43.11681 + rotX: 0.0511859767 + rotY: 270.001129 + rotZ: 358.4234 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231921 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/829135524527100186/0D63305581E65C95F286CCA4902B7DE796D815BD/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524527103742/0C4DB40889420CFE47BE897944621ABF2ECA52F9/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Lodge Host + GMNotes: '' + GUID: ffedcd + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Josef Meiger + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 49.6251678 + posY: 1.93235564 + posZ: 42.94704 + rotX: 0.006829289 + rotY: 270.003021 + rotZ: 359.854553 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2317': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/829135524526797029/1F8A6C29028AED32DB44E4CF22E3120C417F413D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526785922/F34A644AC467C751B6D7B8AF398B8FDB07CCF6A0/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/829135524527100186/0D63305581E65C95F286CCA4902B7DE796D815BD/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524527103742/0C4DB40889420CFE47BE897944621ABF2ECA52F9/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/829135524526797029/1F8A6C29028AED32DB44E4CF22E3120C417F413D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526785922/F34A644AC467C751B6D7B8AF398B8FDB07CCF6A0/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 231714 +- 231907 +- 231908 +- 231912 +- 231911 +- 231913 +- 231909 +- 231910 +- 231917 +- 231919 +- 231918 +- 231916 +- 231920 +- 231914 +- 231915 +- 232015 +- 232016 +- 232017 +- 232018 +- 232019 +- 231921 +Description: '' +GMNotes: '' +GUID: bcc420 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: At Death's Doorstep +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 54.0610275 + posY: 2.563364 + posZ: 36.07338 + rotX: 0.02080907 + rotY: 269.999939 + rotZ: 180.016785 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Bad Luck 71f991.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Bad Luck 71f991.yaml new file mode 100644 index 000000000..3ec890ba5 --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Bad Luck 71f991.yaml @@ -0,0 +1,301 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 232820 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: a8cc8c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Twist of Fate + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.198071 + posY: 1.55145156 + posZ: 9.125637 + rotX: 359.920135 + rotY: 269.999939 + rotZ: 0.01687778 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232820 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: 9d6b4c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Twist of Fate + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.70683336 + posY: 1.70854175 + posZ: 9.092162 + rotX: 359.920135 + rotY: 269.999939 + rotZ: 0.01687769 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232820 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: a8cc8c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Twist of Fate + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.70645475 + posY: 1.72578371 + posZ: 9.100254 + rotX: 359.921539 + rotY: 269.999939 + rotZ: 0.0167463012 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232819 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: de3bd5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Cursed Luck + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.15651965 + posY: 1.55232441 + posZ: 11.89302 + rotX: 359.920135 + rotY: 269.999939 + rotZ: 0.0168776158 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232819 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: 64281b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Cursed Luck + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.19927931 + posY: 1.7088623 + posZ: 11.9196167 + rotX: 359.920135 + rotY: 269.999939 + rotZ: 0.0168775618 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232819 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: de3bd5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Cursed Luck + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.230147 + posY: 1.72610009 + posZ: 11.971447 + rotX: 359.92 + rotY: 269.999939 + rotZ: 0.0164669342 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 232820 +- 232820 +- 232820 +- 232819 +- 232819 +- 232819 +Description: '' +GMNotes: '' +GUID: 71f991 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: "\tBad Luck" +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 15.7914057 + posY: 2.595599 + posZ: -70.30555 + rotX: 359.920135 + rotY: 269.999817 + rotZ: 0.0168782156 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Beast Thralls b6ed30.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Beast Thralls b6ed30.yaml new file mode 100644 index 000000000..78d7fd4b1 --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Beast Thralls b6ed30.yaml @@ -0,0 +1,301 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 232823 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: "\tPower." + GMNotes: '' + GUID: ef7cab + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Altered Beast + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.55222464 + posY: 1.5502063 + posZ: 6.573337 + rotX: 359.920135 + rotY: 269.999939 + rotZ: 0.0168764647 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232823 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: "\tPower." + GMNotes: '' + GUID: 651a9e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Altered Beast + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.6760025 + posY: 1.70618832 + posZ: 6.53470135 + rotX: 359.920135 + rotY: 269.999939 + rotZ: 0.0168764852 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232822 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Creature. Monster. Abomination. + GMNotes: '' + GUID: c53c4a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Lupine Thrall + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.29770446 + posY: 1.55148566 + posZ: 9.71324348 + rotX: 359.920135 + rotY: 269.999939 + rotZ: 0.0168772563 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232822 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Creature. Monster. Abomination. + GMNotes: '' + GUID: 077019 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Lupine Thrall + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.20197439 + posY: 1.70810318 + posZ: 9.924229 + rotX: 359.920135 + rotY: 269.999939 + rotZ: 0.0168772489 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232821 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Creature. Monster. Abomination. + GMNotes: '' + GUID: de3bd5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Avian Thrall + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.17520547 + posY: 1.55259466 + posZ: 12.8993664 + rotX: 359.920135 + rotY: 269.999939 + rotZ: 0.0168785825 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232821 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Creature. Monster. Abomination. + GMNotes: '' + GUID: 0e80a5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Avian Thrall + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.29272318 + posY: 1.70912266 + posZ: 13.0629282 + rotX: 359.920135 + rotY: 269.999939 + rotZ: 0.0168786459 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 232823 +- 232823 +- 232822 +- 232822 +- 232821 +- 232821 +Description: '' +GMNotes: '' +GUID: b6ed30 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: "\tBeast Thralls" +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 15.8415556 + posY: 2.59437561 + posZ: -74.22181 + rotX: 359.920135 + rotY: 270.0 + rotZ: 0.01687819 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Before the Black Throne 0d1c93.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Before the Black Throne 0d1c93.yaml new file mode 100644 index 000000000..655cd7ec1 --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Before the Black Throne 0d1c93.yaml @@ -0,0 +1,602 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 369134 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3691': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784110538844118232/E948D384460BD0291E7DC53C315709CF0E1321FE/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. + GMNotes: '' + GUID: '892799' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Mindless Dancer + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 26.83129 + posY: 1.35331261 + posZ: 75.2230759 + rotX: 0.02116842 + rotY: 270.00946 + rotZ: 0.0145142619 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 369134 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3691': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784110538844118232/E948D384460BD0291E7DC53C315709CF0E1321FE/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. + GMNotes: '' + GUID: 97fa36 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Mindless Dancer + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 27.1961613 + posY: 1.51052463 + posZ: 75.40924 + rotX: 0.02553703 + rotY: 270.00946 + rotZ: 0.009734581 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 369134 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3691': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784110538844118232/E948D384460BD0291E7DC53C315709CF0E1321FE/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. + GMNotes: '' + GUID: '892799' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Mindless Dancer + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 27.1961956 + posY: 1.524544 + posZ: 75.40927 + rotX: 0.0189705323 + rotY: 270.00946 + rotZ: 0.01297347 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 369133 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3691': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784110538844118232/E948D384460BD0291E7DC53C315709CF0E1321FE/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Power. + GMNotes: '' + GUID: 99b040 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ultimate Chaos + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 27.0071526 + posY: 1.50224555 + posZ: 75.08285 + rotX: 0.0144073488 + rotY: 270.0216 + rotZ: 0.0137497745 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 369133 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3691': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784110538844118232/E948D384460BD0291E7DC53C315709CF0E1321FE/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Power. + GMNotes: '' + GUID: 99b040 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ultimate Chaos + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 26.2738438 + posY: 1.51910114 + posZ: 75.7763443 + rotX: 0.0268196836 + rotY: 270.00943 + rotZ: 0.00688381027 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 369133 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3691': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784110538844118232/E948D384460BD0291E7DC53C315709CF0E1321FE/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Power. + GMNotes: '' + GUID: 99b040 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ultimate Chaos + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 26.3793659 + posY: 1.521326 + posZ: 75.6197739 + rotX: 0.0247275848 + rotY: 270.00943 + rotZ: 0.0109192254 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 369132 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3691': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784110538844118232/E948D384460BD0291E7DC53C315709CF0E1321FE/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Pact. + GMNotes: '' + GUID: bec23e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Whispered Bargain + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 27.1292152 + posY: 1.5078367 + posZ: 74.87716 + rotX: 0.01768027 + rotY: 270.0032 + rotZ: 0.0175336991 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 369132 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3691': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784110538844118232/E948D384460BD0291E7DC53C315709CF0E1321FE/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Pact. + GMNotes: '' + GUID: bec23e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Whispered Bargain + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 26.1838646 + posY: 1.5230999 + posZ: 75.33933 + rotX: 0.0202491973 + rotY: 270.003174 + rotZ: 0.0142255416 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 369131 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3691': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784110538844118232/E948D384460BD0291E7DC53C315709CF0E1321FE/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Endtimes. + GMNotes: '' + GUID: f8cfe7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The End is Nigh! + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 26.82527 + posY: 1.47165251 + posZ: 75.17854 + rotX: 0.0233987048 + rotY: 270.022919 + rotZ: 0.01573934 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 369131 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3691': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784110538844118232/E948D384460BD0291E7DC53C315709CF0E1321FE/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Endtimes. + GMNotes: '' + GUID: f8cfe7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The End is Nigh! + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 27.00521 + posY: 1.49737585 + posZ: 75.26165 + rotX: 0.02033227 + rotY: 270.023071 + rotZ: 0.0153790619 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 369130 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3691': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784110538844118232/E948D384460BD0291E7DC53C315709CF0E1321FE/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Endtimes. + GMNotes: '' + GUID: a7dd13 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: A World in Darkness + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 26.9027119 + posY: 1.49093223 + posZ: 74.82743 + rotX: 0.0201691929 + rotY: 269.983276 + rotZ: 0.0146726873 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 369130 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3691': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784110538844118232/E948D384460BD0291E7DC53C315709CF0E1321FE/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Endtimes. + GMNotes: '' + GUID: a7dd13 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: A World in Darkness + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 26.9910221 + posY: 1.49399364 + posZ: 74.62291 + rotX: 0.0125041958 + rotY: 270.003937 + rotZ: 0.0224464256 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 369129 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3691': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784110538844118232/E948D384460BD0291E7DC53C315709CF0E1321FE/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: The Primal Chaos + GMNotes: '' + GUID: c2cc36 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Azathoth + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 31.4739571 + posY: 1.50483418 + posZ: 50.381855 + rotX: 0.0174840763 + rotY: 270.018524 + rotZ: 0.0144813014 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '3691': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784110538844118232/E948D384460BD0291E7DC53C315709CF0E1321FE/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 369134 +- 369134 +- 369134 +- 369133 +- 369133 +- 369133 +- 369132 +- 369132 +- 369131 +- 369131 +- 369130 +- 369130 +- 369129 +Description: '' +GMNotes: '' +GUID: 0d1c93 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Before the Black Throne +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 48.52557 + posY: 2.58638167 + posZ: 27.39941 + rotX: 0.0207928829 + rotY: 270.033142 + rotZ: 0.0167855434 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Beyond the Threshold 859ae9.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Beyond the Threshold 859ae9.yaml new file mode 100644 index 000000000..f53647a35 --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Beyond the Threshold 859ae9.yaml @@ -0,0 +1,301 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 233043 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: a97e94 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Infinite Doorway + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 4.197397 + posY: 1.54959261 + posZ: 7.54406452 + rotX: 359.920135 + rotY: 269.999542 + rotZ: 0.0168782528 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233043 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: 64803b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Infinite Doorway + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 4.32584858 + posY: 1.70545149 + posZ: 7.526225 + rotX: 359.920135 + rotY: 269.999542 + rotZ: 0.0168783125 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233042 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: ff3b62 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: A Baleful Welcome + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.86596346 + posY: 1.55085039 + posZ: 10.3858719 + rotX: 359.920563 + rotY: 269.999939 + rotZ: 0.0141112823 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233042 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: 91d7bc + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: A Baleful Welcome + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 4.27264 + posY: 1.70741928 + posZ: 10.3873577 + rotX: 359.940582 + rotY: 270.0 + rotZ: 0.0103841284 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233041 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: e3fba9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Haunting Recollections + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.9066577 + posY: 1.5516181 + posZ: 13.0453758 + rotX: 359.920135 + rotY: 269.999664 + rotZ: 0.0168763362 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233041 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: 4edfe1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Haunting Recollections + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 4.186173 + posY: 1.70772672 + posZ: 13.2151175 + rotX: 359.920135 + rotY: 269.999664 + rotZ: 0.0168762747 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 233043 +- 233043 +- 233042 +- 233042 +- 233041 +- 233041 +Description: '' +GMNotes: '' +GUID: 859ae9 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Beyond the Threshold +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 11.9566851 + posY: 2.58775043 + posZ: -70.8191452 + rotX: 359.920135 + rotY: 269.999146 + rotZ: 0.01687818 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Bishop's Thralls 692ab0.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Bishop's Thralls 692ab0.yaml new file mode 100644 index 000000000..f74d1f1db --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Bishop's Thralls 692ab0.yaml @@ -0,0 +1,301 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 232814 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Sorcerer. + GMNotes: '' + GUID: e44036 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Wizard of Yog-Sothoth + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.394843 + posY: 1.54970729 + posZ: 4.13393164 + rotX: 359.920135 + rotY: 269.999939 + rotZ: 0.0168757457 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232813 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Monster. Abomination. + GMNotes: '' + GUID: fbe20d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Thrall + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.15501428 + posY: 1.69501209 + posZ: 7.444842 + rotX: 359.935822 + rotY: 269.994781 + rotZ: 7.50431871 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232813 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Monster. Abomination. + GMNotes: '' + GUID: 9b9792 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Thrall + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.32377672 + posY: 1.55104816 + posZ: 8.903832 + rotX: 359.921722 + rotY: 269.997437 + rotZ: 0.008892595 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232813 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Monster. Abomination. + GMNotes: '' + GUID: 76139c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Thrall + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.76801586 + posY: 1.60063446 + posZ: 8.933262 + rotX: 359.9319 + rotY: 269.992828 + rotZ: 0.0655015 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232812 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: "\tPact. Power." + GMNotes: '' + GUID: de3bd5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Light of Aforgomon + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.103076 + posY: 1.5511409 + posZ: 7.621261 + rotX: 359.920135 + rotY: 269.999878 + rotZ: 0.0168763418 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232812 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: "\tPact. Power." + GMNotes: '' + GUID: 6c2f4a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Light of Aforgomon + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.12950444 + posY: 1.70759833 + posZ: 8.101044 + rotX: 359.920135 + rotY: 269.999878 + rotZ: 0.0168764461 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 232814 +- 232813 +- 232813 +- 232813 +- 232812 +- 232812 +Description: '' +GMNotes: '' +GUID: 692ab0 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Bishop's Thralls +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.6102734 + posY: 2.58818221 + posZ: -77.41208 + rotX: 359.920135 + rotY: 269.999451 + rotZ: 0.0168778263 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Brotherhood of the Beast 932381.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Brotherhood of the Beast 932381.yaml new file mode 100644 index 000000000..79196e8c9 --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Brotherhood of the Beast 932381.yaml @@ -0,0 +1,301 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 266120 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2661': + BackIsHidden: true + BackURL: https://i.imgur.com/r6F1mt2.jpg + FaceURL: https://i.imgur.com/CN9PXUd.jpg + NumHeight: 5 + NumWidth: 10 + UniqueBack: true + Description: "Humanoid. Cultist. \nBrotherhood. " + GMNotes: '' + GUID: b9d9d7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Professor Nathaniel Taylor + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 96.0717239 + posY: 1.55856383 + posZ: 6.309998 + rotX: 359.9856 + rotY: 269.991028 + rotZ: 179.976654 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 266119 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2661': + BackIsHidden: true + BackURL: https://i.imgur.com/r6F1mt2.jpg + FaceURL: https://i.imgur.com/CN9PXUd.jpg + NumHeight: 5 + NumWidth: 10 + UniqueBack: true + Description: "Humanoid. Cultist. \nBrotherhood. " + GMNotes: '' + GUID: 915fda + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Nassor + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 96.35854 + posY: 1.55588639 + posZ: 6.306915 + rotX: 359.9922 + rotY: 270.004364 + rotZ: 179.98558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 266118 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2661': + BackIsHidden: true + BackURL: https://i.imgur.com/r6F1mt2.jpg + FaceURL: https://i.imgur.com/CN9PXUd.jpg + NumHeight: 5 + NumWidth: 10 + UniqueBack: true + Description: "Humanoid. Cultist. \nBrotherhood. " + GMNotes: '' + GUID: fba81e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Farid + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 96.26519 + posY: 1.5578481 + posZ: 6.596238 + rotX: 359.988953 + rotY: 270.000336 + rotZ: 179.985886 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 266117 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2661': + BackIsHidden: true + BackURL: https://i.imgur.com/r6F1mt2.jpg + FaceURL: https://i.imgur.com/CN9PXUd.jpg + NumHeight: 5 + NumWidth: 10 + UniqueBack: true + Description: "Humanoid. Cultist. \nBrotherhood. " + GMNotes: '' + GUID: 72726a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: 'Nadia Nimr ' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 96.01542 + posY: 1.57155371 + posZ: 6.34895372 + rotX: 359.993134 + rotY: 269.9985 + rotZ: 180.002029 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 266116 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2661': + BackIsHidden: true + BackURL: https://i.imgur.com/r6F1mt2.jpg + FaceURL: https://i.imgur.com/CN9PXUd.jpg + NumHeight: 5 + NumWidth: 10 + UniqueBack: true + Description: "Humanoid. Cultist. \nBrotherhood. " + GMNotes: '' + GUID: 4d9573 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dr. Wentworth Moore + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 96.01034 + posY: 1.55388844 + posZ: 6.09635639 + rotX: -0.005178709 + rotY: 270.000427 + rotZ: 180.002121 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 266115 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2661': + BackIsHidden: true + BackURL: https://i.imgur.com/r6F1mt2.jpg + FaceURL: https://i.imgur.com/CN9PXUd.jpg + NumHeight: 5 + NumWidth: 10 + UniqueBack: true + Description: "Humanoid. Cultist. \nBrotherhood. " + GMNotes: '' + GUID: e97907 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dr. Layla El Masri + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 96.30568 + posY: 1.4089067 + posZ: 6.36103773 + rotX: 359.981934 + rotY: 269.999817 + rotZ: 179.986679 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2661': + BackIsHidden: true + BackURL: https://i.imgur.com/r6F1mt2.jpg + FaceURL: https://i.imgur.com/CN9PXUd.jpg + NumHeight: 5 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 266120 +- 266119 +- 266118 +- 266117 +- 266116 +- 266115 +Description: '' +GMNotes: '' +GUID: '932381' +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Brotherhood of the Beast +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 15.75797 + posY: 3.58139944 + posZ: -3.85765743 + rotX: 359.921051 + rotY: 270.0003 + rotZ: 0.0172381978 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Byakhee 3168a0.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Byakhee 3168a0.yaml new file mode 100644 index 000000000..fc2d7807b --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Byakhee 3168a0.yaml @@ -0,0 +1,215 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 232211 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Pact. + GMNotes: '' + GUID: 60d096 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Hunted by Byakhee + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -42.38965 + posY: 1.614579 + posZ: 7.717301 + rotX: 359.920258 + rotY: 269.999359 + rotZ: 0.01605293 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232211 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Pact. + GMNotes: '' + GUID: 5e7c00 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Hunted by Byakhee + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -42.4008026 + posY: 1.775796 + posZ: 7.818656 + rotX: 359.9184 + rotY: 269.9989 + rotZ: 0.0150963822 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232210 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Byakhee. + GMNotes: '' + GUID: b323c1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Swift Byakhee + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -42.0870323 + posY: 1.79262948 + posZ: 7.32864046 + rotX: 359.920349 + rotY: 269.997162 + rotZ: 0.01657234 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232210 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Byakhee. + GMNotes: '' + GUID: b323c1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Swift Byakhee + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -42.47628 + posY: 1.76898062 + posZ: 7.469135 + rotX: 359.919647 + rotY: 269.997253 + rotZ: 0.0159163754 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 232211 +- 232211 +- 232210 +- 232210 +Description: '' +GMNotes: '' +GUID: 3168a0 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Byakhee +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 47.5994034 + posY: 2.50300479 + posZ: -37.59028 + rotX: 359.920135 + rotY: 270.001862 + rotZ: 0.0168744382 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Carnevale of Horrors 5d123b.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Carnevale of Horrors 5d123b.yaml new file mode 100644 index 000000000..5e8044635 --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Carnevale of Horrors 5d123b.yaml @@ -0,0 +1,2457 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 3726 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '37': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642320624/6D56E471941AB4D0DEEDAA5DE4780DFDF303016C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: 916af7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Acrid Miasma + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 94.06392 + posY: 1.96925938 + posZ: 16.0292778 + rotX: 0.00755078066 + rotY: 270.04715 + rotZ: 179.89238 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3725 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '37': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642320624/6D56E471941AB4D0DEEDAA5DE4780DFDF303016C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: 83c3ec + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Acrid Miasma + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 94.0669861 + posY: 1.9619509 + posZ: 15.953557 + rotX: 0.52233994 + rotY: 270.009338 + rotZ: 180.737961 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3724 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '37': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642320624/6D56E471941AB4D0DEEDAA5DE4780DFDF303016C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Scheme. + GMNotes: '' + GUID: '453252' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Abduction + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 93.84867 + posY: 1.95025861 + posZ: 16.1545467 + rotX: 359.9876 + rotY: 270.034637 + rotZ: 179.944366 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3723 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '37': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642320624/6D56E471941AB4D0DEEDAA5DE4780DFDF303016C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Scheme. + GMNotes: '' + GUID: c4701c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Abduction + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 94.5863953 + posY: 1.94043088 + posZ: 16.1594715 + rotX: 359.990723 + rotY: 269.995178 + rotZ: 179.97464 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3722 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '37': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642320624/6D56E471941AB4D0DEEDAA5DE4780DFDF303016C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: 79e1a4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Mesmerize + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 94.3182449 + posY: 1.93099034 + posZ: 16.0927734 + rotX: 359.974335 + rotY: 270.018677 + rotZ: 179.978943 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3721 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '37': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642320624/6D56E471941AB4D0DEEDAA5DE4780DFDF303016C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: 32a6e2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Mesmerize + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 94.90699 + posY: 1.92111158 + posZ: 15.9907618 + rotX: 359.987366 + rotY: 270.000061 + rotZ: 179.985321 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3720 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '37': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642320624/6D56E471941AB4D0DEEDAA5DE4780DFDF303016C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: 4448e3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Chaos in the Water + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 94.7948761 + posY: 1.91151559 + posZ: 15.5685 + rotX: 359.9862 + rotY: 270.004517 + rotZ: 179.999664 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3719 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '37': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642320624/6D56E471941AB4D0DEEDAA5DE4780DFDF303016C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: 399d65 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Chaos in the Water + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 93.90108 + posY: 1.90184534 + posZ: 16.6117287 + rotX: 359.9863 + rotY: 270.0 + rotZ: 179.983246 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3718 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '37': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642320624/6D56E471941AB4D0DEEDAA5DE4780DFDF303016C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: 027b2f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Chaos in the Water + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 94.2478561 + posY: 1.89224946 + posZ: 16.011095 + rotX: 359.991425 + rotY: 270.003723 + rotZ: 179.979141 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3717 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '37': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642320624/6D56E471941AB4D0DEEDAA5DE4780DFDF303016C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: fe04b3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Watchers' Gaze + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 94.0345459 + posY: 1.88262868 + posZ: 16.0188236 + rotX: 359.988 + rotY: 270.028656 + rotZ: 179.951141 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3716 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '37': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642320624/6D56E471941AB4D0DEEDAA5DE4780DFDF303016C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: 10d41c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Watchers' Gaze + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 94.37472 + posY: 1.87282014 + posZ: 16.0969372 + rotX: 359.993835 + rotY: 270.0194 + rotZ: 179.952576 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3715 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '37': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642320624/6D56E471941AB4D0DEEDAA5DE4780DFDF303016C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: 97cc02 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Watchers' Gaze + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 94.05456 + posY: 1.86331809 + posZ: 15.9664183 + rotX: 359.989441 + rotY: 270.0121 + rotZ: 179.970917 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3714 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '37': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642320624/6D56E471941AB4D0DEEDAA5DE4780DFDF303016C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Blunder. + GMNotes: '' + GUID: ac4b72 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Lost in Venice + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 94.37839 + posY: 1.85344875 + posZ: 16.0886669 + rotX: -0.000140565826 + rotY: 270.008972 + rotZ: 179.953156 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3713 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '37': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642320624/6D56E471941AB4D0DEEDAA5DE4780DFDF303016C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Blunder. + GMNotes: '' + GUID: 8f3ad2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Lost in Venice + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 94.43179 + posY: 1.843988 + posZ: 15.55632 + rotX: 359.9877 + rotY: 270.000183 + rotZ: 179.991287 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3712 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '37': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642320624/6D56E471941AB4D0DEEDAA5DE4780DFDF303016C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Blunder. + GMNotes: '' + GUID: f39f35 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Lost in Venice + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 94.61658 + posY: 1.83432531 + posZ: 15.7500486 + rotX: 359.990784 + rotY: 269.9917 + rotZ: 179.9695 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3711 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '37': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642320624/6D56E471941AB4D0DEEDAA5DE4780DFDF303016C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: febff1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Mass Hysteria + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 94.23776 + posY: 1.82520175 + posZ: 15.2685719 + rotX: 0.00140257436 + rotY: 269.99707 + rotZ: 180.002167 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3710 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '37': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642320624/6D56E471941AB4D0DEEDAA5DE4780DFDF303016C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: 27c1bf + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Mass Hysteria + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 94.2092 + posY: 1.81512582 + posZ: 15.7168245 + rotX: 359.9843 + rotY: 270.0181 + rotZ: 179.967163 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3709 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '37': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642320624/6D56E471941AB4D0DEEDAA5DE4780DFDF303016C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: 95047c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Mass Hysteria + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 93.85254 + posY: 1.83251357 + posZ: 16.0852737 + rotX: -0.000353622367 + rotY: 270.042053 + rotZ: 178.482086 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3708 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '37': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642320624/6D56E471941AB4D0DEEDAA5DE4780DFDF303016C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Tentacle. + GMNotes: '' + GUID: b39ab7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Writhing Appendage + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 94.3704758 + posY: 1.79563046 + posZ: 16.157774 + rotX: 359.9914 + rotY: 269.999451 + rotZ: 180.006119 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3707 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '37': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642320624/6D56E471941AB4D0DEEDAA5DE4780DFDF303016C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Tentacle. + GMNotes: '' + GUID: e89a0a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Writhing Appendage + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 94.3573761 + posY: 1.78598821 + posZ: 16.0923138 + rotX: 359.985779 + rotY: 270.005768 + rotZ: 179.979538 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3706 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '37': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642320624/6D56E471941AB4D0DEEDAA5DE4780DFDF303016C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Tentacle. + GMNotes: '' + GUID: '649527' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Writhing Appendage + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 93.86858 + posY: 1.77665865 + posZ: 15.80121 + rotX: 359.97345 + rotY: 270.030823 + rotZ: 179.9648 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3705 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '37': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642320624/6D56E471941AB4D0DEEDAA5DE4780DFDF303016C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Cultist. + GMNotes: '' + GUID: f119dc + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Carnevale Sentinel + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 94.27677 + posY: 1.76676357 + posZ: 15.5459814 + rotX: 359.9854 + rotY: 270.000549 + rotZ: 179.989319 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3704 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '37': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642320624/6D56E471941AB4D0DEEDAA5DE4780DFDF303016C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Cultist. + GMNotes: '' + GUID: dbec9d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Carnevale Sentinel + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 94.53851 + posY: 1.75677764 + posZ: 16.3740978 + rotX: 359.96283 + rotY: 269.972168 + rotZ: 179.935226 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3703 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '37': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642320624/6D56E471941AB4D0DEEDAA5DE4780DFDF303016C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Cultist. + GMNotes: '' + GUID: 27fab1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Carnevale Sentinel + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 94.32372 + posY: 1.74752569 + posZ: 15.7947941 + rotX: 359.976074 + rotY: 270.029846 + rotZ: 179.963791 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3702 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '37': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642320624/6D56E471941AB4D0DEEDAA5DE4780DFDF303016C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Deep One. + GMNotes: '' + GUID: 470ba8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Poleman + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 94.47883 + posY: 1.95467257 + posZ: 16.2576447 + rotX: 359.979 + rotY: 269.979767 + rotZ: 192.121674 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3701 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '37': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642320624/6D56E471941AB4D0DEEDAA5DE4780DFDF303016C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Deep One. + GMNotes: '' + GUID: 9b0f6c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Poleman + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 94.36198 + posY: 1.72798193 + posZ: 16.0688171 + rotX: 359.9878 + rotY: 270.003143 + rotZ: 179.993454 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3700 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '37': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642320624/6D56E471941AB4D0DEEDAA5DE4780DFDF303016C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Ancient One. Elite. + GMNotes: '' + GUID: 4d3a26 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Cnidathqua + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 94.6990356 + posY: 1.71807492 + posZ: 16.5110245 + rotX: 359.990967 + rotY: 269.999817 + rotZ: 179.987381 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3904 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '39': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642329861/9768E9FE9C71E74721340D0D81607F534E54A3DE/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Item. Mask. + GMNotes: '' + GUID: f3b3a9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Gilded Volto + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 94.7153 + posY: 1.708611 + posZ: 15.988739 + rotX: 359.9903 + rotY: 269.9998 + rotZ: 179.988785 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3903 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '39': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642329861/9768E9FE9C71E74721340D0D81607F534E54A3DE/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Item. Mask. + GMNotes: '' + GUID: 080d4a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Pantalone + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 94.30905 + posY: 1.69900215 + posZ: 16.0721989 + rotX: 359.9902 + rotY: 270.00238 + rotZ: 179.993484 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3902 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '39': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642329861/9768E9FE9C71E74721340D0D81607F534E54A3DE/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Item. Mask. + GMNotes: '' + GUID: 0f54e7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Medico Della Peste + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 95.07566 + posY: 1.68924713 + posZ: 15.7982416 + rotX: 359.989075 + rotY: 269.999878 + rotZ: 179.989548 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3901 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '39': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642329861/9768E9FE9C71E74721340D0D81607F534E54A3DE/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Item. Mask. + GMNotes: '' + GUID: a42f33 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Bauta + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 94.34839 + posY: 1.67969179 + posZ: 16.0179157 + rotX: 359.987061 + rotY: 270.000183 + rotZ: 179.987 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 4000 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '40': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642329861/9768E9FE9C71E74721340D0D81607F534E54A3DE/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Ally. Believer. + GMNotes: '' + GUID: 1e7f1b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Abbess Allegria Di Biase + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 94.64117 + posY: 1.63079917 + posZ: 15.6358538 + rotX: 359.9884 + rotY: 270.0207 + rotZ: 181.4567 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234622 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2346': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/87094793642370806/651C0A7485AEBE7DF8F893A54A506AFA1165FC3B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642364764/EBA4638B8847E97B3C153A928955F0A536677F8F/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Carnevale. + GMNotes: '' + GUID: 44845f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Masked Carnevale-Goer + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 94.69486 + posY: 1.661596 + posZ: 15.8414345 + rotX: 359.990753 + rotY: 269.973633 + rotZ: 180.041672 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234621 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2346': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/87094793642370806/651C0A7485AEBE7DF8F893A54A506AFA1165FC3B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642364764/EBA4638B8847E97B3C153A928955F0A536677F8F/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Carnevale. + GMNotes: '' + GUID: '105277' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Masked Carnevale-Goer + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 94.42142 + posY: 1.65057552 + posZ: 15.227088 + rotX: 359.987427 + rotY: 270.000427 + rotZ: 180.00563 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234620 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2346': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/87094793642370806/651C0A7485AEBE7DF8F893A54A506AFA1165FC3B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642364764/EBA4638B8847E97B3C153A928955F0A536677F8F/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Carnevale. + GMNotes: '' + GUID: '659820' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Masked Carnevale-Goer + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 94.74701 + posY: 1.64114368 + posZ: 15.6602964 + rotX: 359.986237 + rotY: 270.000732 + rotZ: 179.986832 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234619 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2346': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/87094793642370806/651C0A7485AEBE7DF8F893A54A506AFA1165FC3B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642364764/EBA4638B8847E97B3C153A928955F0A536677F8F/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Carnevale. + GMNotes: '' + GUID: 0a2381 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Masked Carnevale-Goer + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 94.4040146 + posY: 1.63158381 + posZ: 15.9105577 + rotX: 359.975281 + rotY: 269.998352 + rotZ: 179.976227 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234618 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2346': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/87094793642370806/651C0A7485AEBE7DF8F893A54A506AFA1165FC3B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642364764/EBA4638B8847E97B3C153A928955F0A536677F8F/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Carnevale. + GMNotes: '' + GUID: f64f68 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Masked Carnevale-Goer + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 94.50847 + posY: 1.62178636 + posZ: 16.0405865 + rotX: 359.98584 + rotY: 269.9991 + rotZ: 179.979691 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234617 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2346': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/87094793642370806/651C0A7485AEBE7DF8F893A54A506AFA1165FC3B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642364764/EBA4638B8847E97B3C153A928955F0A536677F8F/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Carnevale. + GMNotes: '' + GUID: 1d6b52 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Masked Carnevale-Goer + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 94.61144 + posY: 1.61227608 + posZ: 15.7625589 + rotX: 359.9882 + rotY: 270.039978 + rotZ: 179.949509 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234616 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2346': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/87094793642370806/651C0A7485AEBE7DF8F893A54A506AFA1165FC3B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642364764/EBA4638B8847E97B3C153A928955F0A536677F8F/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Carnevale. + GMNotes: '' + GUID: be4dc6 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Masked Carnevale-Goer + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 94.44554 + posY: 1.60228777 + posZ: 16.3495712 + rotX: 359.9874 + rotY: 269.999237 + rotZ: 179.980255 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234515 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2345': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/87094793642370806/651C0A7485AEBE7DF8F893A54A506AFA1165FC3B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642364764/EBA4638B8847E97B3C153A928955F0A536677F8F/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Venice. + GMNotes: '' + GUID: '124288' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Guardian + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 94.769104 + posY: 1.59268951 + posZ: 15.9206333 + rotX: 359.9857 + rotY: 270.000824 + rotZ: 179.9868 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234514 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2345': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/87094793642370806/651C0A7485AEBE7DF8F893A54A506AFA1165FC3B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642364764/EBA4638B8847E97B3C153A928955F0A536677F8F/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Venice. Bridge. + GMNotes: '' + GUID: 48d3db + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Accademia Bridge + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 94.3376541 + posY: 1.58304107 + posZ: 16.43918 + rotX: 359.983948 + rotY: 270.05603 + rotZ: 180.005081 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234513 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2345': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/87094793642370806/651C0A7485AEBE7DF8F893A54A506AFA1165FC3B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642364764/EBA4638B8847E97B3C153A928955F0A536677F8F/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Venice. + GMNotes: '' + GUID: 8d6af5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Flooded Square + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 93.64457 + posY: 1.573618 + posZ: 16.18737 + rotX: 359.9803 + rotY: 269.980347 + rotZ: 179.994583 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234512 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2345': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/87094793642370806/651C0A7485AEBE7DF8F893A54A506AFA1165FC3B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642364764/EBA4638B8847E97B3C153A928955F0A536677F8F/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Venice. Bridge. + GMNotes: '' + GUID: 04cdf3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Bridge of Sighs + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 94.66218 + posY: 1.56374645 + posZ: 16.0062733 + rotX: 359.987152 + rotY: 269.9945 + rotZ: 179.989792 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234511 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2345': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/87094793642370806/651C0A7485AEBE7DF8F893A54A506AFA1165FC3B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642364764/EBA4638B8847E97B3C153A928955F0A536677F8F/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Venice. + GMNotes: '' + GUID: 4260f0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Venetian Garden + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 94.19605 + posY: 1.55409622 + posZ: 16.1396332 + rotX: 359.987976 + rotY: 270.001038 + rotZ: 179.9898 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234510 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2345': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/87094793642370806/651C0A7485AEBE7DF8F893A54A506AFA1165FC3B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642364764/EBA4638B8847E97B3C153A928955F0A536677F8F/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Venice. Bridge. + GMNotes: '' + GUID: 2f2498 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Rialto Bridge + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 94.97765 + posY: 1.54432571 + posZ: 16.09118 + rotX: 359.9901 + rotY: 269.9927 + rotZ: 179.987122 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234509 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2345': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/87094793642370806/651C0A7485AEBE7DF8F893A54A506AFA1165FC3B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642364764/EBA4638B8847E97B3C153A928955F0A536677F8F/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Venice. + GMNotes: '' + GUID: f2d9d3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Streets of Venice + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 94.39137 + posY: 1.57113552 + posZ: 15.8248234 + rotX: 359.965271 + rotY: 269.996674 + rotZ: 177.962723 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234508 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2345': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/87094793642370806/651C0A7485AEBE7DF8F893A54A506AFA1165FC3B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642364764/EBA4638B8847E97B3C153A928955F0A536677F8F/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Venice. + GMNotes: '' + GUID: eb8aad + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Canal-side + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 94.9064941 + posY: 1.52495956 + posZ: 16.3361149 + rotX: 359.989471 + rotY: 270.005371 + rotZ: 179.987122 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234507 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2345': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/87094793642370806/651C0A7485AEBE7DF8F893A54A506AFA1165FC3B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642364764/EBA4638B8847E97B3C153A928955F0A536677F8F/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Venice. + GMNotes: '' + GUID: 0368c1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: San Marco Basilica + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 94.84279 + posY: 1.5675137 + posZ: 16.1544685 + rotX: 359.9866 + rotY: 270.01712 + rotZ: 179.9841 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234306 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2343': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/87094793642370806/651C0A7485AEBE7DF8F893A54A506AFA1165FC3B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642364764/EBA4638B8847E97B3C153A928955F0A536677F8F/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 3 + GMNotes: '' + GUID: f2e0b7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Row! + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 94.6268 + posY: 1.56134033 + posZ: 15.6842356 + rotX: 359.990875 + rotY: 269.822 + rotZ: 179.985367 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234305 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2343': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/87094793642370806/651C0A7485AEBE7DF8F893A54A506AFA1165FC3B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642364764/EBA4638B8847E97B3C153A928955F0A536677F8F/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 2 + GMNotes: '' + GUID: 519fb4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Get to the Boats! + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 94.2694 + posY: 1.5563457 + posZ: 15.8539915 + rotX: -0.00521171326 + rotY: 270.364258 + rotZ: 179.988068 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234304 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2343': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/87094793642370806/651C0A7485AEBE7DF8F893A54A506AFA1165FC3B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642364764/EBA4638B8847E97B3C153A928955F0A536677F8F/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 1 + GMNotes: '' + GUID: 4f1d00 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Carnevale Conspiracy + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 94.51133 + posY: 1.55401707 + posZ: 15.6014023 + rotX: 359.9791 + rotY: 269.552124 + rotZ: 179.965 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234403 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2344': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/87094793642370806/651C0A7485AEBE7DF8F893A54A506AFA1165FC3B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642364764/EBA4638B8847E97B3C153A928955F0A536677F8F/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 3 + GMNotes: '' + GUID: '256302' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Chaos in the Carnevale + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 94.34169 + posY: 1.55620778 + posZ: 15.97347 + rotX: 359.95932 + rotY: 269.08783 + rotZ: 180.023224 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234402 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2344': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/87094793642370806/651C0A7485AEBE7DF8F893A54A506AFA1165FC3B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642364764/EBA4638B8847E97B3C153A928955F0A536677F8F/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 2 + GMNotes: '' + GUID: 2cc635 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Shadow of the Eclipse + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 94.48209 + posY: 1.56938744 + posZ: 15.5448027 + rotX: 359.979828 + rotY: 269.910645 + rotZ: 179.986465 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234401 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2344': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/87094793642370806/651C0A7485AEBE7DF8F893A54A506AFA1165FC3B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642364764/EBA4638B8847E97B3C153A928955F0A536677F8F/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 1 + GMNotes: '' + GUID: 63b723 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Festivities Begin + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 94.38866 + posY: 1.54569483 + posZ: 15.9509 + rotX: 359.988 + rotY: 269.9937 + rotZ: 180.001526 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234200 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2342': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/87094793642370806/651C0A7485AEBE7DF8F893A54A506AFA1165FC3B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642364764/EBA4638B8847E97B3C153A928955F0A536677F8F/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Carnevale of Horrors + GMNotes: '' + GUID: aa7abc + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Scenario + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 94.38217 + posY: 1.40674353 + posZ: 16.1027164 + rotX: 359.9845 + rotY: 270.005066 + rotZ: 179.979523 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2342': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/87094793642370806/651C0A7485AEBE7DF8F893A54A506AFA1165FC3B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642364764/EBA4638B8847E97B3C153A928955F0A536677F8F/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + '2343': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/87094793642370806/651C0A7485AEBE7DF8F893A54A506AFA1165FC3B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642364764/EBA4638B8847E97B3C153A928955F0A536677F8F/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + '2344': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/87094793642370806/651C0A7485AEBE7DF8F893A54A506AFA1165FC3B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642364764/EBA4638B8847E97B3C153A928955F0A536677F8F/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + '2345': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/87094793642370806/651C0A7485AEBE7DF8F893A54A506AFA1165FC3B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642364764/EBA4638B8847E97B3C153A928955F0A536677F8F/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + '2346': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/87094793642370806/651C0A7485AEBE7DF8F893A54A506AFA1165FC3B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642364764/EBA4638B8847E97B3C153A928955F0A536677F8F/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + '37': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642320624/6D56E471941AB4D0DEEDAA5DE4780DFDF303016C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '39': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642329861/9768E9FE9C71E74721340D0D81607F534E54A3DE/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '40': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642329861/9768E9FE9C71E74721340D0D81607F534E54A3DE/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 3726 +- 3725 +- 3724 +- 3723 +- 3722 +- 3721 +- 3720 +- 3719 +- 3718 +- 3717 +- 3716 +- 3715 +- 3714 +- 3713 +- 3712 +- 3711 +- 3710 +- 3709 +- 3708 +- 3707 +- 3706 +- 3705 +- 3704 +- 3703 +- 3702 +- 3701 +- 3700 +- 3904 +- 3903 +- 3902 +- 3901 +- 4000 +- 234622 +- 234621 +- 234620 +- 234619 +- 234618 +- 234617 +- 234616 +- 234515 +- 234514 +- 234513 +- 234512 +- 234511 +- 234510 +- 234509 +- 234508 +- 234507 +- 234306 +- 234305 +- 234304 +- 234403 +- 234402 +- 234401 +- 234200 +Description: '' +GMNotes: '' +GUID: 5d123b +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Carnevale of Horrors +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 15.3387575 + posY: 3.76588225 + posZ: -5.311949 + rotX: 359.9235 + rotY: 269.99826 + rotZ: 0.0181135926 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Chilling Cold cabe00.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Chilling Cold cabe00.yaml new file mode 100644 index 000000000..6a7b17a7a --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Chilling Cold cabe00.yaml @@ -0,0 +1,215 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- 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 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: 50e716 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: c4ce76 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: ab3719 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: 16d6d6 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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 + UniqueBack: false +DeckIDs: +- 231721 +- 231721 +- 231720 +- 231720 +Description: '' +GMNotes: '' +GUID: cabe00 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Chilling Cold +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 14.9783249 + posY: 3.57874417 + posZ: -15.24706 + rotX: 359.920135 + rotY: 269.998169 + rotZ: 0.016879024 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck City of Sins 118828.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck City of Sins 118828.yaml new file mode 100644 index 000000000..1e48b3c76 --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck City of Sins 118828.yaml @@ -0,0 +1,258 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 231814 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Curse. + GMNotes: '' + GUID: 0a13d0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Centuries of Secrets + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -20.54692 + posY: 1.60918021 + posZ: -33.3808479 + rotX: 359.9352 + rotY: 269.982361 + rotZ: 0.376713872 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231814 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Curse. + GMNotes: '' + GUID: 9cb625 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Centuries of Secrets + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -20.7263336 + posY: 1.754926 + posZ: -33.80658 + rotX: 0.0413828529 + rotY: 269.9769 + rotZ: 0.3666429 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231814 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Curse. + GMNotes: '' + GUID: 81dc7a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Centuries of Secrets + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -21.0152721 + posY: 1.57281208 + posZ: -32.7783356 + rotX: 359.9176 + rotY: 269.977783 + rotZ: 0.01638736 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231813 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Curse. + GMNotes: '' + GUID: 976fd8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Evil Past + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -20.7343235 + posY: 1.86165559 + posZ: -33.3503036 + rotX: 359.785339 + rotY: 269.9796 + rotZ: 0.07815084 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231813 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Curse. + GMNotes: '' + GUID: ab69b8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Evil Past + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -20.8834572 + posY: 1.89827907 + posZ: -33.5683937 + rotX: 0.110509835 + rotY: 269.976044 + rotZ: 0.334469885 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 231814 +- 231814 +- 231814 +- 231813 +- 231813 +Description: '' +GMNotes: '' +GUID: '118828' +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: City of Sins +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 0.268384457 + posY: 3.50528812 + posZ: -5.368785 + rotX: 359.920135 + rotY: 269.991516 + rotZ: 0.016877966 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Corsairs 04ac32.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Corsairs 04ac32.yaml new file mode 100644 index 000000000..ee59e5f22 --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Corsairs 04ac32.yaml @@ -0,0 +1,215 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 274129 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2741': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Scheme. + GMNotes: '' + GUID: d30166 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Hunted by Corsairs + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.618349552 + posY: 1.33599377 + posZ: 48.4793968 + rotX: 0.0208535511 + rotY: 269.999329 + rotZ: 0.0164909977 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274129 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2741': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Scheme. + GMNotes: '' + GUID: 4f56f1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Hunted by Corsairs + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 1.0404532 + posY: 1.501844 + posZ: 48.57248 + rotX: 0.02128441 + rotY: 269.999329 + rotZ: 0.01625457 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274130 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2741': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Monster. + GMNotes: '' + GUID: 646a1a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Corsair of Leng + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.6940008 + posY: 1.33734858 + posZ: 53.0074043 + rotX: 0.02083878 + rotY: 269.999329 + rotZ: 0.0166121013 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274130 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2741': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Monster. + GMNotes: '' + GUID: a45b3a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Corsair of Leng + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 1.11610448 + posY: 1.503188 + posZ: 53.1004868 + rotX: 0.01975236 + rotY: 269.999329 + rotZ: 0.0149388192 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2741': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 274129 +- 274129 +- 274130 +- 274130 +Description: '' +GMNotes: '' +GUID: 04ac32 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Corsairs +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.89433 + posY: 3.3921783 + posZ: 38.9183426 + rotX: 0.0208101943 + rotY: 269.9995 + rotZ: 0.01677009 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Creatures of the Underworld 0404a7.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Creatures of the Underworld 0404a7.yaml new file mode 100644 index 000000000..41c19349b --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Creatures of the Underworld 0404a7.yaml @@ -0,0 +1,215 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 274117 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2741': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Gug. + GMNotes: '' + GUID: '605181' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Lumbering Gug + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -9.79604149 + posY: 1.33284783 + posZ: 50.77426 + rotX: 0.02123998 + rotY: 269.999756 + rotZ: 0.0140851894 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274116 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2741': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Monster. Gug. + GMNotes: '' + GUID: 99845e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Hunting Ghast + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -9.24914 + posY: 1.33209109 + posZ: 47.4869652 + rotX: 0.0211359244 + rotY: 270.0 + rotZ: 0.0145950755 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274116 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2741': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Monster. Gug. + GMNotes: '' + GUID: 9fb152 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Hunting Ghast + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -9.249134 + posY: 1.502976 + posZ: 47.48697 + rotX: 0.0265449174 + rotY: 269.999969 + rotZ: 0.0138654774 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274116 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2741': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Monster. Gug. + GMNotes: '' + GUID: 4c2d5a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Hunting Ghast + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -9.249131 + posY: 1.50332248 + posZ: 47.48698 + rotX: 0.024901526 + rotY: 269.999664 + rotZ: 0.0150892623 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2741': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 274117 +- 274116 +- 274116 +- 274116 +Description: '' +GMNotes: '' +GUID: 0404a7 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Creatures of the Underworld +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 14.9160833 + posY: 3.393625 + posZ: 38.8699951 + rotX: 0.0208095852 + rotY: 270.0014 + rotZ: 0.0167715121 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Creeping Cold 5d3d31.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Creeping Cold 5d3d31.yaml new file mode 100644 index 000000000..ab63e9982 --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Creeping Cold 5d3d31.yaml @@ -0,0 +1,215 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 233047 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: 3e8e0b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Oppressive Mists + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 7.83998156 + posY: 1.54372144 + posZ: 4.850278 + rotX: 359.920135 + rotY: 269.999634 + rotZ: 0.0168781038 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233047 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: d8e5f7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Oppressive Mists + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 7.80314255 + posY: 1.69862533 + posZ: 4.79417324 + rotX: 359.920135 + rotY: 269.999573 + rotZ: 0.0168781523 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233046 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: e3fba9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Inexplicable Cold + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 7.666582 + posY: 1.54493606 + posZ: 8.19385 + rotX: 359.920258 + rotY: 270.000061 + rotZ: 0.01607858 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233046 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: 8fa82b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Inexplicable Cold + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 8.028719 + posY: 1.70623231 + posZ: 8.457989 + rotX: 359.9379 + rotY: 270.0 + rotZ: 0.009667996 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 233047 +- 233047 +- 233046 +- 233046 +Description: '' +GMNotes: '' +GUID: 5d3d31 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Creeping Cold +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 8.581232 + posY: 2.58962846 + posZ: -70.8198242 + rotX: 359.920135 + rotY: 269.9992 + rotZ: 0.01687825 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Cult of Umôrdhoth 372611.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Cult of Umôrdhoth 372611.yaml new file mode 100644 index 000000000..4bc8d7df2 --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Cult of Umôrdhoth 372611.yaml @@ -0,0 +1,258 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 231709 + 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 + UniqueBack: false + Description: The Mortician + GMNotes: '' + GUID: ab3719 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ruth Turner + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -6.18538 + posY: 1.72525084 + posZ: -7.613346 + rotX: 359.936371 + rotY: 270.0 + rotZ: 180.013824 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231708 + 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 + UniqueBack: false + Description: The Collector + GMNotes: '' + GUID: ec86a2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Victoria Devereux + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -6.151805 + posY: 1.71143651 + posZ: -8.111477 + rotX: 359.944366 + rotY: 270.016357 + rotZ: 180.000565 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231707 + 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 + UniqueBack: false + Description: The Occult Professor + GMNotes: '' + GUID: ad2df0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Peter Warren + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -6.05293274 + posY: 1.72509432 + posZ: -7.78916073 + rotX: 359.937225 + rotY: 269.999817 + rotZ: 180.015381 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231706 + 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 + UniqueBack: false + Description: The Undertaker + GMNotes: '' + GUID: a12fd2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Herman Collins + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -5.95645571 + posY: 1.70735312 + posZ: -8.194746 + rotX: 359.924164 + rotY: 269.999878 + rotZ: 180.026428 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231705 + 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 + UniqueBack: false + Description: The Cannibal + GMNotes: '' + GUID: ab3719 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '"Wolf-Man" Drew' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -6.351678 + posY: 1.56253266 + posZ: -7.93774748 + rotX: 359.92038 + rotY: 269.999969 + rotZ: 180.018967 + 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 + UniqueBack: false +DeckIDs: +- 231709 +- 231708 +- 231707 +- 231706 +- 231705 +Description: '' +GMNotes: '' +GUID: '372611' +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: "Cult of Um\xF4rdhoth" +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.5576115 + posY: 3.57453775 + posZ: -10.6715364 + rotX: 359.920135 + rotY: 270.000427 + rotZ: 0.0168767832 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Cult of the Yellow Sign e0c50e.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Cult of the Yellow Sign e0c50e.yaml new file mode 100644 index 000000000..437ecc52f --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Cult of the Yellow Sign e0c50e.yaml @@ -0,0 +1,301 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 232224 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Pact. + GMNotes: '' + GUID: e20141 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The King's Edict + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -45.28207 + posY: 1.61571622 + posZ: -1.99931252 + rotX: 359.920471 + rotY: 269.999542 + rotZ: 0.0138937524 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232224 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Pact. + GMNotes: '' + GUID: '522968' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The King's Edict + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -45.3332253 + posY: 1.76760066 + posZ: -1.86887467 + rotX: 359.932678 + rotY: 269.9998 + rotZ: -0.00222653663 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232223 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Cultist. + GMNotes: '' + GUID: 0bf1f8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Agent of the King + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -45.31658 + posY: 1.77869308 + posZ: -1.76723373 + rotX: 359.925659 + rotY: 270.030243 + rotZ: 359.9921 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232222 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Cultist. + GMNotes: '' + GUID: 8ada81 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Fanatic + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -46.03409 + posY: 1.61745238 + posZ: 0.648399532 + rotX: 359.9214 + rotY: 269.999054 + rotZ: 0.00768406037 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232222 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Cultist. + GMNotes: '' + GUID: dcaaad + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Fanatic + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -45.8543549 + posY: 1.76917815 + posZ: 0.300536335 + rotX: 359.907532 + rotY: 269.998657 + rotZ: 0.0211735331 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232222 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Cultist. + GMNotes: '' + GUID: 8ada81 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Fanatic + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -45.8543625 + posY: 1.80176485 + posZ: 0.3005505 + rotX: 359.920227 + rotY: 269.998779 + rotZ: 0.0167158749 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 232224 +- 232224 +- 232223 +- 232222 +- 232222 +- 232222 +Description: '' +GMNotes: '' +GUID: e0c50e +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Cult of the Yellow Sign +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 43.03746 + posY: 2.51104331 + posZ: -41.4923325 + rotX: 359.9201 + rotY: 270.01593 + rotZ: 0.0168538447 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Curse of the Rougarou 1755b5.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Curse of the Rougarou 1755b5.yaml new file mode 100644 index 000000000..81239a4dc --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Curse of the Rougarou 1755b5.yaml @@ -0,0 +1,838 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 7405 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '74': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/138879070086623108/44B0C8898A6D506FF4C651BEB8C15337B2A813F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 2b1301 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Insatiable Bloodlust + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 99.30737 + posY: 1.61225438 + posZ: 11.3862867 + rotX: 0.005119836 + rotY: 270.006317 + rotZ: 179.98439 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 7405 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '74': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/138879070086623108/44B0C8898A6D506FF4C651BEB8C15337B2A813F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 20972b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Insatiable Bloodlust + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 98.78538 + posY: 1.60274017 + posZ: 10.7438736 + rotX: 359.988831 + rotY: 269.998749 + rotZ: 179.990677 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 7405 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '74': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/138879070086623108/44B0C8898A6D506FF4C651BEB8C15337B2A813F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 2281d8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Insatiable Bloodlust + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 99.58204 + posY: 1.59290349 + posZ: 11.1280384 + rotX: 359.988678 + rotY: 270.001648 + rotZ: 179.99086 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 7400 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '74': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/138879070086623108/44B0C8898A6D506FF4C651BEB8C15337B2A813F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 67af79 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Beast of the Bayou + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 99.01536 + posY: 1.58311129 + posZ: 11.5398331 + rotX: -0.004549613 + rotY: 269.965179 + rotZ: 179.912537 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 7400 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '74': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/138879070086623108/44B0C8898A6D506FF4C651BEB8C15337B2A813F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 00ae1b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Beast of the Bayou + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 98.74301 + posY: 1.8211844 + posZ: 11.2592793 + rotX: 0.009086286 + rotY: 269.9666 + rotZ: 194.118958 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 7407 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '74': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/138879070086623108/44B0C8898A6D506FF4C651BEB8C15337B2A813F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: dcc376 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: On the Prowl + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 98.6135941 + posY: 1.56637335 + posZ: 10.5542831 + rotX: 359.986847 + rotY: 270.003784 + rotZ: 179.8472 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 7407 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '74': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/138879070086623108/44B0C8898A6D506FF4C651BEB8C15337B2A813F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 81741e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: On the Prowl + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 99.51636 + posY: 1.55422115 + posZ: 10.7721949 + rotX: 359.939728 + rotY: 270.028 + rotZ: 179.981949 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 7407 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '74': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/138879070086623108/44B0C8898A6D506FF4C651BEB8C15337B2A813F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: e37396 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: On the Prowl + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 98.6517258 + posY: 1.54479778 + posZ: 10.9197311 + rotX: 359.993 + rotY: 270.001 + rotZ: 179.991791 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 7407 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '74': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/138879070086623108/44B0C8898A6D506FF4C651BEB8C15337B2A813F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: '528887' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: On the Prowl + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 98.7551346 + posY: 1.6212877 + posZ: 11.0184317 + rotX: 357.03714 + rotY: 269.699982 + rotZ: 180.1392 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 7407 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '74': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/138879070086623108/44B0C8898A6D506FF4C651BEB8C15337B2A813F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 7fe6c7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: On the Prowl + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 98.3002 + posY: 1.58303225 + posZ: 10.5771017 + rotX: 359.198 + rotY: 269.800537 + rotZ: 186.887863 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 7403 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '74': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/138879070086623108/44B0C8898A6D506FF4C651BEB8C15337B2A813F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Dark Young. + GMNotes: '' + GUID: db62d1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dark Young Host + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 99.05142 + posY: 1.66341364 + posZ: 11.2451754 + rotX: 359.721954 + rotY: 270.3999 + rotZ: 174.678314 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 7406 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '74': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/138879070086623108/44B0C8898A6D506FF4C651BEB8C15337B2A813F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Gug. + GMNotes: '' + GUID: 551a7b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Marsh Gug + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 98.85598 + posY: 1.568521 + posZ: 11.1333771 + rotX: 359.992218 + rotY: 269.9807 + rotZ: 180.343277 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 7406 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '74': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/138879070086623108/44B0C8898A6D506FF4C651BEB8C15337B2A813F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Gug. + GMNotes: '' + GUID: 891bde + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Marsh Gug + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 99.67064 + posY: 1.55649543 + posZ: 10.8430367 + rotX: 359.9872 + rotY: 269.9989 + rotZ: 179.9927 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 7409 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '74': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/138879070086623108/44B0C8898A6D506FF4C651BEB8C15337B2A813F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Dhole. + GMNotes: '' + GUID: 4b796e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Slime-Covered Dhole + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 99.0298538 + posY: 1.5536921 + posZ: 11.7041607 + rotX: 359.989044 + rotY: 270.0015 + rotZ: 179.977859 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 7409 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '74': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/138879070086623108/44B0C8898A6D506FF4C651BEB8C15337B2A813F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Dhole. + GMNotes: '' + GUID: 259a79 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Slime-Covered Dhole + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 99.36718 + posY: 1.55579293 + posZ: 11.4259481 + rotX: 359.98877 + rotY: 269.999817 + rotZ: 179.984955 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 7604 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '76': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/138879070086634183/2856A2C2077CFA2C61B9EF2498CAE6865024DB72/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Talent. + GMNotes: '' + GUID: 96ae32 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Monstrous Transformation + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 98.6366959 + posY: 1.56967032 + posZ: 11.0860138 + rotX: -0.0035324418 + rotY: 270.010132 + rotZ: 180.007584 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 8901 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '89': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/138879070086634183/2856A2C2077CFA2C61B9EF2498CAE6865024DB72/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Curse. + GMNotes: '' + GUID: 569b06 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Curse of the Rougarou + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 98.9591 + posY: 1.5522716 + posZ: 11.3303947 + rotX: 359.978119 + rotY: 270.001862 + rotZ: 179.9844 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 7312 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '73': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/138879070086623108/44B0C8898A6D506FF4C651BEB8C15337B2A813F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Creature. Elite. + GMNotes: '' + GUID: e86419 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Rougarou + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 98.88834 + posY: 1.40713143 + posZ: 11.2288914 + rotX: 359.986542 + rotY: 270.000458 + rotZ: 179.984726 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '73': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/138879070086623108/44B0C8898A6D506FF4C651BEB8C15337B2A813F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '74': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/138879070086623108/44B0C8898A6D506FF4C651BEB8C15337B2A813F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '76': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/138879070086634183/2856A2C2077CFA2C61B9EF2498CAE6865024DB72/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '89': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/138879070086634183/2856A2C2077CFA2C61B9EF2498CAE6865024DB72/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 7405 +- 7405 +- 7405 +- 7400 +- 7400 +- 7407 +- 7407 +- 7407 +- 7407 +- 7407 +- 7403 +- 7406 +- 7406 +- 7409 +- 7409 +- 7604 +- 8901 +- 7312 +Description: '' +GMNotes: '' +GUID: 1755b5 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Curse of the Rougarou +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 15.73897 + posY: 3.60546136 + posZ: -4.55127 + rotX: 359.9196 + rotY: 269.999817 + rotZ: 0.0172254387 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Dark Cult 301f10.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Dark Cult 301f10.yaml new file mode 100644 index 000000000..b6c5e0845 --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Dark Cult 301f10.yaml @@ -0,0 +1,301 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- 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 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: d63054 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Mysterious Chanting + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -14.9937792 + posY: 1.57623422 + posZ: 7.191085 + rotX: 359.920227 + rotY: 270.005066 + rotZ: 0.01624975 + 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 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: b347d1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Mysterious Chanting + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -15.1765862 + posY: 1.7388649 + posZ: 7.12856245 + rotX: 359.9205 + rotY: 270.005066 + rotZ: 0.011837706 + 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 + UniqueBack: false + Description: Humanoid. Cultist. + GMNotes: '' + GUID: d36612 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Wizard of the Order + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -15.1335211 + posY: 1.7306242 + posZ: 15.1695614 + rotX: 359.933441 + rotY: 269.998932 + rotZ: 180.028931 + 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 + UniqueBack: false + Description: Humanoid. Cultist. + GMNotes: '' + GUID: 50fdc5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Acolyte + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -15.3295956 + posY: 1.62976587 + posZ: 15.9645061 + rotX: 0.0716057643 + rotY: 270.000061 + rotZ: 359.982727 + 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 + UniqueBack: false + Description: Humanoid. Cultist. + GMNotes: '' + GUID: 4911f2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Acolyte + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -15.3297215 + posY: 1.77588809 + posZ: 15.9645157 + rotX: 0.07387834 + rotY: 269.998474 + rotZ: 359.992645 + 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 + UniqueBack: false + Description: Humanoid. Cultist. + GMNotes: '' + GUID: ab3719 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Acolyte + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -15.9929094 + posY: 1.58014917 + posZ: 15.8832378 + rotX: 359.920624 + rotY: 270.0 + rotZ: 0.0137184272 + 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 + UniqueBack: false +DeckIDs: +- 231724 +- 231724 +- 231723 +- 231722 +- 231722 +- 231722 +Description: '' +GMNotes: '' +GUID: 301f10 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Dark Cult +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.8216 + posY: 3.589636 + posZ: -26.1258087 + rotX: 359.920074 + rotY: 270.0007 + rotZ: 0.0168562289 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Dark Rituals 556034.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Dark Rituals 556034.yaml new file mode 100644 index 000000000..77666bb48 --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Dark Rituals 556034.yaml @@ -0,0 +1,258 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 231620 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2316': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493212055041441/90F035BD69A7C5C6B6F43426DDDA3A09DFCBCBDF/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Cultist. + GMNotes: '' + GUID: 3fbc07 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Cultist of the Enclave + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 18.4720955 + posY: 1.526727 + posZ: -2.507222 + rotX: 359.9202 + rotY: 269.999939 + rotZ: 0.01646921 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231620 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2316': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493212055041441/90F035BD69A7C5C6B6F43426DDDA3A09DFCBCBDF/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Cultist. + GMNotes: '' + GUID: b50ce8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Cultist of the Enclave + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 18.78685 + posY: 1.6961205 + posZ: -2.18036175 + rotX: 359.937164 + rotY: 270.0 + rotZ: 0.0101680821 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231620 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2316': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493212055041441/90F035BD69A7C5C6B6F43426DDDA3A09DFCBCBDF/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Cultist. + GMNotes: '' + GUID: 4441df + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Cultist of the Enclave + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 18.7869244 + posY: 1.70657849 + posZ: -2.18037772 + rotX: 359.936768 + rotY: 270.0 + rotZ: 0.0118672745 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231619 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2316': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493212055041441/90F035BD69A7C5C6B6F43426DDDA3A09DFCBCBDF/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Extradimensional. Elite. + GMNotes: '' + GUID: 3fbc07 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dimensional Shambler + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 18.41109 + posY: 1.69439507 + posZ: -2.29884648 + rotX: 359.919647 + rotY: 270.019958 + rotZ: 358.905029 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231618 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2316': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493212055041441/90F035BD69A7C5C6B6F43426DDDA3A09DFCBCBDF/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Blasphemous Volume + GMNotes: '' + GUID: 3fbc07 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Tome of Rituals + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 18.4375744 + posY: 1.67396736 + posZ: -2.19500113 + rotX: 359.94 + rotY: 269.99884 + rotZ: 0.006488284 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2316': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493212055041441/90F035BD69A7C5C6B6F43426DDDA3A09DFCBCBDF/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 231620 +- 231620 +- 231620 +- 231619 +- 231618 +Description: '' +GMNotes: '' +GUID: '556034' +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Dark Rituals +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 12.2504025 + posY: 4.494767 + posZ: 4.6877 + rotX: 359.920135 + rotY: 269.991577 + rotZ: 0.0168912932 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Deadly Traps 0eb930.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Deadly Traps 0eb930.yaml new file mode 100644 index 000000000..024065275 --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Deadly Traps 0eb930.yaml @@ -0,0 +1,258 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 12318 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Trap. + GMNotes: '' + GUID: f3dc03 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Entombed + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 91.75406 + posY: 1.41525948 + posZ: -24.0136147 + rotX: 359.985474 + rotY: 270.039032 + rotZ: 359.98587 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12318 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Trap. + GMNotes: '' + GUID: c092e1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Entombed + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 91.78418 + posY: 1.528591 + posZ: -24.0466022 + rotX: 358.948975 + rotY: 269.9527 + rotZ: 359.9582 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12317 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Trap. + GMNotes: '' + GUID: 2a4bf1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Final Mistake + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 91.65462 + posY: 1.57797384 + posZ: -23.988039 + rotX: 359.982361 + rotY: 269.945068 + rotZ: 0.013356166 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12317 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Trap. + GMNotes: '' + GUID: fc2fb1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Final Mistake + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 91.77656 + posY: 1.56412864 + posZ: -23.8819065 + rotX: -0.000601830368 + rotY: 270.007019 + rotZ: 359.969238 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12317 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Trap. + GMNotes: '' + GUID: 0a4c6c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Final Mistake + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 92.1726456 + posY: 1.56232333 + posZ: -24.34476 + rotX: 359.982239 + rotY: 270.01474 + rotZ: 359.965271 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '123': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 12318 +- 12318 +- 12317 +- 12317 +- 12317 +Description: '' +GMNotes: '' +GUID: 0eb930 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Deadly Traps +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 20.5544357 + posY: 3.48307562 + posZ: 2.63793063 + rotX: 359.920135 + rotY: 269.996765 + rotZ: 0.0168735124 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Decay & Filth afde9a.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Decay & Filth afde9a.yaml new file mode 100644 index 000000000..adfd31785 --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Decay & Filth afde9a.yaml @@ -0,0 +1,301 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 232227 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Creature. + GMNotes: '' + GUID: 8ccfdd + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Roach Swarm + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -46.8359642 + posY: 1.76305425 + posZ: 8.4624 + rotX: 359.910645 + rotY: 269.984741 + rotZ: 180.0322 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232227 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Creature. + GMNotes: '' + GUID: 3fac08 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Roach Swarm + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -46.8668861 + posY: 1.62385666 + posZ: 8.53196 + rotX: 359.917969 + rotY: 270.00647 + rotZ: 180.0149 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232226 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: b4ebc7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Corrosion + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -46.4837646 + posY: 1.78332841 + posZ: 8.843737 + rotX: 0.05284566 + rotY: 270.064484 + rotZ: 359.2714 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232226 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: dc5296 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Corrosion + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -46.5554161 + posY: 1.7855233 + posZ: 8.496747 + rotX: 359.920471 + rotY: 270.004547 + rotZ: 0.0162803121 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232225 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: 2b74e5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ooze and Filth + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -46.6340332 + posY: 1.7679019 + posZ: 8.105726 + rotX: 359.9161 + rotY: 270.000244 + rotZ: 0.0145425647 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232225 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: 9f5a02 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ooze and Filth + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -47.13751 + posY: 1.77141571 + posZ: 8.475297 + rotX: 359.9424 + rotY: 269.970062 + rotZ: 359.9787 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 232227 +- 232227 +- 232226 +- 232226 +- 232225 +- 232225 +Description: '' +GMNotes: '' +GUID: afde9a +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Decay & Filth +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 42.81565 + posY: 2.51041555 + posZ: -44.6767578 + rotX: 359.9201 + rotY: 270.021881 + rotZ: 0.0168457367 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Decaying Reality 99caa2.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Decaying Reality 99caa2.yaml new file mode 100644 index 000000000..3a88e3e5e --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Decaying Reality 99caa2.yaml @@ -0,0 +1,301 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 232816 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723517659500931/4B5458A518FDAF55C44CD8423EC12304E3266A6C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Creature. + GMNotes: '' + GUID: 2789ff + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Maggot Swarm + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -19.2407017 + posY: 1.57227457 + posZ: -26.3014812 + rotX: 359.9204 + rotY: 269.999939 + rotZ: 0.0150428768 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232816 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723517659500931/4B5458A518FDAF55C44CD8423EC12304E3266A6C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Creature. + GMNotes: '' + GUID: e2d075 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Maggot Swarm + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -19.2230339 + posY: 1.73377633 + posZ: -26.3048229 + rotX: 359.915741 + rotY: 270.0 + rotZ: 0.0147493454 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232815 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723517659500931/4B5458A518FDAF55C44CD8423EC12304E3266A6C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: d6340b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Fragile Thoughts + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -18.39599 + posY: 1.57247078 + posZ: -21.6435146 + rotX: 359.92038 + rotY: 269.999847 + rotZ: 0.0152562214 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232815 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723517659500931/4B5458A518FDAF55C44CD8423EC12304E3266A6C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: b4bbb4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Fragile Thoughts + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -18.5655079 + posY: 1.732873 + posZ: -21.3264027 + rotX: 359.948151 + rotY: 270.0 + rotZ: 359.992157 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232814 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723517659500931/4B5458A518FDAF55C44CD8423EC12304E3266A6C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: 5987af + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Bleeding Walls + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -17.9469852 + posY: 1.5728128 + posZ: -18.3870125 + rotX: 359.9203 + rotY: 269.999573 + rotZ: 0.01579755 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232814 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723517659500931/4B5458A518FDAF55C44CD8423EC12304E3266A6C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: a9d501 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Bleeding Walls + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -18.0130978 + posY: 1.72845662 + posZ: -18.5875816 + rotX: 359.9193 + rotY: 269.999573 + rotZ: 0.00951310247 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723517659500931/4B5458A518FDAF55C44CD8423EC12304E3266A6C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 232816 +- 232816 +- 232815 +- 232815 +- 232814 +- 232814 +Description: '' +GMNotes: '' +GUID: 99caa2 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Decaying Reality +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -29.2267456 + posY: 2.59271169 + posZ: -48.0349045 + rotX: 359.920135 + rotY: 269.994568 + rotZ: 0.0168852676 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Delusions d63969.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Delusions d63969.yaml new file mode 100644 index 000000000..2b0ae5e4e --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Delusions d63969.yaml @@ -0,0 +1,301 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 232209 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: 837dc0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Descent into Madness + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -8.254647 + posY: 1.56856728 + posZ: 13.1639223 + rotX: 359.9206 + rotY: 270.010376 + rotZ: 0.0141025912 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232209 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: b5a670 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Descent into Madness + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -7.994349 + posY: 1.72873139 + posZ: 13.4239607 + rotX: 359.910156 + rotY: 270.010345 + rotZ: 359.9914 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232206 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: a13701 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Whispers in Your Head (Doubt) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -8.13497 + posY: 1.73145211 + posZ: 13.3962345 + rotX: 359.9188 + rotY: 270.00116 + rotZ: 0.0158020761 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232205 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: 42b8dc + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Whispers in Your Head (Anxiety) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -7.656395 + posY: 1.73211765 + posZ: 13.2479944 + rotX: 359.900421 + rotY: 270.000153 + rotZ: 0.006056429 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232207 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: ec66a0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Whispers in Your Head (Dread) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -8.143007 + posY: 1.71549714 + posZ: 12.48624 + rotX: 359.929932 + rotY: 270.014252 + rotZ: 0.007635473 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232208 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: 4bea40 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Whispers in Your Head (Dismay) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -7.971472 + posY: 1.718169 + posZ: 13.2703743 + rotX: 359.920532 + rotY: 269.99942 + rotZ: 0.0161604 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 232209 +- 232209 +- 232206 +- 232205 +- 232207 +- 232208 +Description: '' +GMNotes: '' +GUID: d63969 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Delusions +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 47.3456879 + posY: 2.5071938 + posZ: -34.16912 + rotX: 359.920135 + rotY: 270.007 + rotZ: 0.0168669615 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Delusory Evils 57ca37.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Delusory Evils 57ca37.yaml new file mode 100644 index 000000000..33ff3c8e7 --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Delusory Evils 57ca37.yaml @@ -0,0 +1,172 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 232813 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723517659500931/4B5458A518FDAF55C44CD8423EC12304E3266A6C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Curse. + GMNotes: '' + GUID: 5987af + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Delusory Evils + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -41.95185 + posY: 1.60736048 + posZ: -14.73475 + rotX: 359.920166 + rotY: 269.999664 + rotZ: 0.016287826 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232813 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723517659500931/4B5458A518FDAF55C44CD8423EC12304E3266A6C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Curse. + GMNotes: '' + GUID: bc41a5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Delusory Evils + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -42.0116158 + posY: 1.75763893 + posZ: -14.298007 + rotX: 359.914978 + rotY: 270.0003 + rotZ: -0.00206749188 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232813 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723517659500931/4B5458A518FDAF55C44CD8423EC12304E3266A6C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Curse. + GMNotes: '' + GUID: 5987af + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Delusory Evils + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -42.01161 + posY: 1.79005313 + posZ: -14.29804 + rotX: 359.919922 + rotY: 269.999878 + rotZ: 0.016129639 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723517659500931/4B5458A518FDAF55C44CD8423EC12304E3266A6C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 232813 +- 232813 +- 232813 +Description: '' +GMNotes: '' +GUID: 57ca37 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Delusory Evils +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 77.36651 + posY: 3.08877587 + posZ: -64.00391 + rotX: 359.920135 + rotY: 270.001526 + rotZ: 0.0168754477 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Descent into the Pitch 6c8a89.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Descent into the Pitch 6c8a89.yaml new file mode 100644 index 000000000..a0ef7b72f --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Descent into the Pitch 6c8a89.yaml @@ -0,0 +1,215 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 448418 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4484': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780749631103449151/FFAADF06C9BF9D1F4F3FE22D45CEBBB15D9B58CF/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Curse. + GMNotes: '' + GUID: 4fa43f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Shadow of Atlach-Nacha + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 4.58753347 + posY: 1.53658581 + posZ: -34.7654457 + rotX: 359.920166 + rotY: 270.014679 + rotZ: 0.0165293217 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 448418 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4484': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780749631103449151/FFAADF06C9BF9D1F4F3FE22D45CEBBB15D9B58CF/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Curse. + GMNotes: '' + GUID: e43efd + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Shadow of Atlach-Nacha + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 4.57853842 + posY: 1.69774079 + posZ: -34.33032 + rotX: 359.9255 + rotY: 270.014832 + rotZ: 0.004017685 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 448417 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4484': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780749631103449151/FFAADF06C9BF9D1F4F3FE22D45CEBBB15D9B58CF/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Spider. + GMNotes: '' + GUID: e45ec8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Pitch Spider + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 4.796251 + posY: 1.5346638 + posZ: -40.3409348 + rotX: 359.920074 + rotY: 270.0252 + rotZ: 0.01721978 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 448417 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4484': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780749631103449151/FFAADF06C9BF9D1F4F3FE22D45CEBBB15D9B58CF/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Spider. + GMNotes: '' + GUID: 25d93a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Pitch Spider + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 4.931781 + posY: 1.69577944 + posZ: -39.8830147 + rotX: 359.917267 + rotY: 270.02478 + rotZ: 0.009124688 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '4484': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780749631103449151/FFAADF06C9BF9D1F4F3FE22D45CEBBB15D9B58CF/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 448418 +- 448418 +- 448417 +- 448417 +Description: '' +GMNotes: '' +GUID: 6c8a89 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Descent into the Pitch +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 14.40919 + posY: 2.58261752 + posZ: -46.4513664 + rotX: 359.9201 + rotY: 270.014465 + rotZ: 0.016855171 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Disappearance at the Twilight Estate 2db0b7.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Disappearance at the Twilight Estate 2db0b7.yaml new file mode 100644 index 000000000..d6d105b69 --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Disappearance at the Twilight Estate 2db0b7.yaml @@ -0,0 +1,351 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 232003 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/829135524526797029/1F8A6C29028AED32DB44E4CF22E3120C417F413D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526785922/F34A644AC467C751B6D7B8AF398B8FDB07CCF6A0/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Private Security + GMNotes: '' + GUID: 8a83e8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Gavriella Mizrah + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -36.15094 + posY: 1.60894179 + posZ: 18.069046 + rotX: 0.0168344155 + rotY: 180.026917 + rotZ: 0.0798925757 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232004 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/829135524526797029/1F8A6C29028AED32DB44E4CF22E3120C417F413D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526785922/F34A644AC467C751B6D7B8AF398B8FDB07CCF6A0/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Josef's Secretary + GMNotes: '' + GUID: d80c14 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Jerome Davids + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -39.07123 + posY: 1.612616 + posZ: 16.7203026 + rotX: 0.01687318 + rotY: 180.000977 + rotZ: 0.0798805356 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232005 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/829135524526797029/1F8A6C29028AED32DB44E4CF22E3120C417F413D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526785922/F34A644AC467C751B6D7B8AF398B8FDB07CCF6A0/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Wealthy Philanthropist + GMNotes: '' + GUID: 41d2da + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Valentino Rivas + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -36.17885 + posY: 1.61008024 + posZ: 21.8027954 + rotX: 0.0168686882 + rotY: 180.003464 + rotZ: 0.07988123 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232006 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/829135524526797029/1F8A6C29028AED32DB44E4CF22E3120C417F413D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526785922/F34A644AC467C751B6D7B8AF398B8FDB07CCF6A0/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Josef's Housekeeper + GMNotes: '' + GUID: 23b99c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Penny White + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -38.7612534 + posY: 1.61350429 + posZ: 21.2049637 + rotX: 0.0169336274 + rotY: 179.957962 + rotZ: 0.0798678547 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232002 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/829135524526797029/1F8A6C29028AED32DB44E4CF22E3120C417F413D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526785922/F34A644AC467C751B6D7B8AF398B8FDB07CCF6A0/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 1 + GMNotes: '' + GUID: f4f8dc + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Disappearance + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -24.5001068 + posY: 1.73046529 + posZ: 2.236709 + rotX: 0.0145257786 + rotY: 179.950882 + rotZ: 0.100596912 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232001 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/829135524526797029/1F8A6C29028AED32DB44E4CF22E3120C417F413D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526785922/F34A644AC467C751B6D7B8AF398B8FDB07CCF6A0/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 1 + GMNotes: '' + GUID: aa1331 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: "JUDGMENT \xB7 XX" + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -24.3399944 + posY: 1.73259759 + posZ: 2.15535021 + rotX: 0.0183508936 + rotY: 179.9983 + rotZ: 0.07494503 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231700 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2317': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/829135524526797029/1F8A6C29028AED32DB44E4CF22E3120C417F413D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526785922/F34A644AC467C751B6D7B8AF398B8FDB07CCF6A0/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Disappearance at the Twilight Estate + GMNotes: '' + GUID: be1726 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Scenario + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 49.42876 + posY: 1.508843 + posZ: 47.37404 + rotX: 0.0183526333 + rotY: 269.999878 + rotZ: 0.0114074294 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2317': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/829135524526797029/1F8A6C29028AED32DB44E4CF22E3120C417F413D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526785922/F34A644AC467C751B6D7B8AF398B8FDB07CCF6A0/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/829135524526797029/1F8A6C29028AED32DB44E4CF22E3120C417F413D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526785922/F34A644AC467C751B6D7B8AF398B8FDB07CCF6A0/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 232003 +- 232004 +- 232005 +- 232006 +- 232002 +- 232001 +- 231700 +Description: '' +GMNotes: '' +GUID: 2db0b7 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Disappearance at the Twilight Estate +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 52.7846642 + posY: 2.50502968 + posZ: 37.9076576 + rotX: 0.0208092164 + rotY: 269.9997 + rotZ: 0.0167694539 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Dreamer’s Curse 40bbd3.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Dreamer’s Curse 40bbd3.yaml new file mode 100644 index 000000000..3cf35ebfb --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Dreamer’s Curse 40bbd3.yaml @@ -0,0 +1,301 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 274120 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2741': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Curse. + GMNotes: '' + GUID: 07cb83 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Deeper Slumber + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -7.64724255 + posY: 1.33347023 + posZ: 50.15231 + rotX: 0.021022873 + rotY: 269.999847 + rotZ: 0.0156522952 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274120 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2741': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Curse. + GMNotes: '' + GUID: c9a81c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Deeper Slumber + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -7.43135548 + posY: 1.48793566 + posZ: 50.2434 + rotX: 0.0139066791 + rotY: 269.999817 + rotZ: -0.00134133862 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274119 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2741': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: e64ec2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Somniphobia + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.57984281 + posY: 1.33392763 + posZ: 46.79201 + rotX: 0.0213435646 + rotY: 269.999878 + rotZ: 0.0133018475 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274119 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2741': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: bdd705 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Somniphobia + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.363955 + posY: 1.4883889 + posZ: 46.8831024 + rotX: 0.0292372759 + rotY: 269.999878 + rotZ: 0.009698411 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274118 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2741': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Curse. + GMNotes: '' + GUID: 8af23c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dreamer's Curse + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.55991268 + posY: 1.3354677 + posZ: 50.66423 + rotX: 0.0210230164 + rotY: 269.999969 + rotZ: 0.015651783 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274118 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2741': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Curse. + GMNotes: '' + GUID: dd39c6 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dreamer's Curse + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.34402561 + posY: 1.48993313 + posZ: 50.7553253 + rotX: 0.0139070377 + rotY: 269.999969 + rotZ: -0.00134107959 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2741': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 274120 +- 274120 +- 274119 +- 274119 +- 274118 +- 274118 +Description: '' +GMNotes: '' +GUID: 40bbd3 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: "Dreamer\u2019s Curse" +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 14.4619436 + posY: 3.39528084 + posZ: 35.430542 + rotX: 0.02081 + rotY: 269.999939 + rotZ: 0.0167710632 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Dreamlands 651db3.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Dreamlands 651db3.yaml new file mode 100644 index 000000000..fa5e97787 --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Dreamlands 651db3.yaml @@ -0,0 +1,215 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 274122 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2741': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Power. + GMNotes: '' + GUID: c9cb0f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Prismatic Phenomenon + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -1.24633133 + posY: 1.33597839 + posZ: 50.744606 + rotX: 0.0208641291 + rotY: 269.999878 + rotZ: 0.0164128449 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274122 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2741': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Power. + GMNotes: '' + GUID: 4b23ff + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Prismatic Phenomenon + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -1.33692908 + posY: 1.50126624 + posZ: 50.8609619 + rotX: 0.0222992748 + rotY: 269.999878 + rotZ: 0.0146943647 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274121 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2741': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Power. + GMNotes: '' + GUID: c942d4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dreamlands Eclipse + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -0.6114705 + posY: 1.33718181 + posZ: 54.0672035 + rotX: 0.0208639912 + rotY: 269.999878 + rotZ: 0.01641295 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274121 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2741': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Power. + GMNotes: '' + GUID: 9df5fa + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dreamlands Eclipse + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -0.7020685 + posY: 1.50246942 + posZ: 54.18356 + rotX: 0.022299597 + rotY: 269.999878 + rotZ: 0.014693982 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2741': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 274122 +- 274122 +- 274121 +- 274121 +Description: '' +GMNotes: '' +GUID: 651db3 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Dreamlands +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 11.0776205 + posY: 3.39526558 + posZ: 49.238018 + rotX: 0.0208076071 + rotY: 269.999969 + rotZ: 0.01676907 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Dunwich ebbb05.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Dunwich ebbb05.yaml new file mode 100644 index 000000000..d59744a89 --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Dunwich ebbb05.yaml @@ -0,0 +1,215 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 232816 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: 36342a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Sordid and Silent + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 4.15036964 + posY: 1.54897928 + posZ: 5.238284 + rotX: 359.920135 + rotY: 269.999878 + rotZ: 0.016877193 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232816 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: ebb8db + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Sordid and Silent + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.98407245 + posY: 1.705162 + posZ: 5.341168 + rotX: 359.920135 + rotY: 269.999878 + rotZ: 0.0168772284 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232815 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: de3bd5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Unhallowed Country + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 4.32745171 + posY: 1.71471429 + posZ: 5.03506565 + rotX: 359.919861 + rotY: 269.999969 + rotZ: 0.0168688018 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232815 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: de3bd5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Unhallowed Country + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 4.00495052 + posY: 1.70878184 + posZ: 5.306538 + rotX: 359.920135 + rotY: 269.999969 + rotZ: 0.01687902 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 232816 +- 232816 +- 232815 +- 232815 +Description: '' +GMNotes: '' +GUID: ebbb05 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: "\tDunwich" +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.868082 + posY: 2.58385539 + posZ: -81.28374 + rotX: 359.920135 + rotY: 269.999573 + rotZ: 0.0168754384 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Epic Multiplayer 861e9b.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Epic Multiplayer 861e9b.yaml new file mode 100644 index 000000000..28864d008 --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Epic Multiplayer 861e9b.yaml @@ -0,0 +1,910 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 265120 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: '817446' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Paradox Effect + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 96.91641 + posY: 1.40363467 + posZ: 15.36192 + rotX: 359.987427 + rotY: 270.0 + rotZ: 359.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265120 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: 1f26ea + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Paradox Effect + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 96.77602 + posY: 1.57928574 + posZ: 15.0920315 + rotX: 359.993225 + rotY: 269.99884 + rotZ: 358.452118 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265120 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: '817446' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Paradox Effect + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 96.881546 + posY: 1.51969624 + posZ: 15.118618 + rotX: 359.990753 + rotY: 270.0004 + rotZ: 2.5195775 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265112 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false + Description: Monster. Elite. + GMNotes: '' + GUID: '817446' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Jailor + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 96.85528 + posY: 1.5924468 + posZ: 15.0513868 + rotX: 359.9941 + rotY: 269.997559 + rotZ: 357.734741 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265110 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false + Description: You Are Not Its First Victim, Or Its Last + GMNotes: '' + GUID: '817446' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Eixodolon's Pet + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 96.9093857 + posY: 1.5047828 + posZ: 15.52822 + rotX: 359.9912 + rotY: 269.999817 + rotZ: 357.630463 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265107 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false + Description: Item. Script. + GMNotes: '' + GUID: '817446' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Decay Diagram + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 96.82359 + posY: 1.51203859 + posZ: 15.2132769 + rotX: 359.989075 + rotY: 270.003174 + rotZ: 357.488373 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265105 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false + Description: Item. Script. + GMNotes: '' + GUID: a5e76a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Hunger Diagram + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 96.67865 + posY: 1.52480543 + posZ: 15.0467606 + rotX: 359.989746 + rotY: 269.999329 + rotZ: 357.320282 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265103 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false + Description: Item. Script. + GMNotes: '' + GUID: '817446' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Rot Diagram + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 97.2215042 + posY: 1.56520808 + posZ: 15.5002155 + rotX: 359.9922 + rotY: 270.0018 + rotZ: 359.8965 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12337 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 2. + GMNotes: '' + GUID: b634cc + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Encrypted Glyphs + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 98.5084 + posY: 1.55827558 + posZ: -2.97969317 + rotX: 359.989532 + rotY: 269.997345 + rotZ: 179.9842 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12336 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 2. + GMNotes: '' + GUID: a88055 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Gate + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 98.73678 + posY: 1.54851508 + posZ: -2.68779778 + rotX: 359.9887 + rotY: 270.006531 + rotZ: 179.9973 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12335 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 2. + GMNotes: '' + GUID: 5499a4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Dilemma + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 98.7584839 + posY: 1.5388515 + posZ: -2.707048 + rotX: 359.988281 + rotY: 270.0026 + rotZ: 179.990143 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12334 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 1. Act 2. + GMNotes: '' + GUID: 9dc445 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Vent + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 98.95438 + posY: 1.52918565 + posZ: -2.82507038 + rotX: 359.9895 + rotY: 270.0 + rotZ: 179.989777 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12333 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 1. Act 2. + GMNotes: '' + GUID: f5b434 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Rift + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 98.6777 + posY: 1.57180309 + posZ: -2.715079 + rotX: 359.990265 + rotY: 269.9951 + rotZ: 179.9893 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12332 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 1. + GMNotes: '' + GUID: 2b4513 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Arcane Runes + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 98.76241 + posY: 1.523138 + posZ: -2.6991787 + rotX: 359.9934 + rotY: 270.0078 + rotZ: 178.051361 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12321 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Prison. + GMNotes: '' + GUID: '803008' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Chamber of Night + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 98.33681 + posY: 1.56063759 + posZ: -3.0196023 + rotX: 359.984344 + rotY: 270.023132 + rotZ: 179.973663 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12319 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Prison. + GMNotes: '' + GUID: 6a0757 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Chamber of Sorrows + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 98.94531 + posY: 1.55770373 + posZ: -2.63683271 + rotX: 359.991547 + rotY: 269.999817 + rotZ: 179.975052 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12313 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 3 + GMNotes: '' + GUID: 53cf0a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: 'The Escape ' + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 98.78235 + posY: 1.55985987 + posZ: -2.993358 + rotX: 359.9851 + rotY: 269.6358 + rotZ: 179.991882 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12308 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 1 + GMNotes: '' + GUID: 33dafa + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Levers (Group C) + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 98.82 + posY: 1.56699765 + posZ: -2.63886285 + rotX: -0.00221842085 + rotY: 270.0032 + rotZ: 179.981491 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12303 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 2 + GMNotes: '' + GUID: '107633' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Agony and Despair + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 98.41001 + posY: 1.55585825 + posZ: -2.78851652 + rotX: 359.989746 + rotY: 269.357452 + rotZ: 180.01149 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12301 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 1 + GMNotes: '' + GUID: e7d7cc + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Awakening + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 98.54471 + posY: 1.41091537 + posZ: -2.67532849 + rotX: 359.9832 + rotY: 269.992249 + rotZ: 179.992828 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false +DeckIDs: +- 265120 +- 265120 +- 265120 +- 265112 +- 265110 +- 265107 +- 265105 +- 265103 +- 12337 +- 12336 +- 12335 +- 12334 +- 12333 +- 12332 +- 12321 +- 12319 +- 12313 +- 12308 +- 12303 +- 12301 +Description: '' +GMNotes: '' +GUID: 861e9b +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Epic Multiplayer +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 16.38966 + posY: 3.61334419 + posZ: -4.48289967 + rotX: 359.919281 + rotY: 270.000061 + rotZ: 0.0174277648 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Erratic Fear 69e97a.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Erratic Fear 69e97a.yaml new file mode 100644 index 000000000..e72d019a7 --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Erratic Fear 69e97a.yaml @@ -0,0 +1,344 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 233050 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: 7dd094 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Need for Knowledge + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 9.214496 + posY: 1.54113626 + posZ: 2.57877874 + rotX: 359.920135 + rotY: 269.999664 + rotZ: 0.0168800149 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233050 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: 9f855c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Need for Knowledge + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 9.015348 + posY: 1.695799 + posZ: 2.69127941 + rotX: 359.920135 + rotY: 269.999664 + rotZ: 0.0168801211 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233050 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: 7dd094 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Need for Knowledge + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 9.04972649 + posY: 1.71299982 + posZ: 2.68801451 + rotX: 359.919678 + rotY: 269.999664 + rotZ: 0.016476877 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233049 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: e3fba9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Idle Hands + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 9.170475 + posY: 1.54203224 + posZ: 5.413058 + rotX: 359.920135 + rotY: 269.999573 + rotZ: 0.01687807 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233049 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: ac1417 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Idle Hands + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 9.196331 + posY: 1.69662583 + posZ: 5.74743938 + rotX: 359.920135 + rotY: 269.999573 + rotZ: 0.0168674812 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233048 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: d8596b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Violent Commands + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 9.157638 + posY: 1.54277384 + posZ: 7.870572 + rotX: 359.920135 + rotY: 269.999573 + rotZ: 0.0168761183 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233048 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: 27658e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Violent Commands + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 9.356761 + posY: 1.69708729 + posZ: 7.57023 + rotX: 359.920135 + rotY: 269.999573 + rotZ: 0.0168761387 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 233050 +- 233050 +- 233050 +- 233049 +- 233049 +- 233048 +- 233048 +Description: '' +GMNotes: '' +GUID: 69e97a +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Erratic Fear +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 8.734207 + posY: 2.593928 + posZ: -74.1420746 + rotX: 359.9201 + rotY: 270.011169 + rotZ: 0.0168591 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Evil Portents f54d1c.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Evil Portents f54d1c.yaml new file mode 100644 index 000000000..a66c4a644 --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Evil Portents f54d1c.yaml @@ -0,0 +1,301 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 232216 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Pact. + GMNotes: '' + GUID: 7a6d8c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Twisted to His Will + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -40.06019 + posY: 1.60829687 + posZ: -2.629929 + rotX: 359.920044 + rotY: 270.0098 + rotZ: 0.01704826 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232216 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Pact. + GMNotes: '' + GUID: a6af6b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Twisted to His Will + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -40.14995 + posY: 1.78357077 + posZ: -2.83012843 + rotX: 0.5782123 + rotY: 270.002 + rotZ: 0.0179315973 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232215 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: a0d34f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Spires of Carcosa + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -39.56787 + posY: 1.7705667 + posZ: -2.61933255 + rotX: 359.921173 + rotY: 270.003662 + rotZ: 0.0159180127 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232215 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: a0d34f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Spires of Carcosa + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -40.2772331 + posY: 1.7794143 + posZ: -2.527565 + rotX: 359.919922 + rotY: 270.003967 + rotZ: 0.01670667 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232214 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: 0afc45 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Black Stars Rise + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -39.95644 + posY: 1.771017 + posZ: -2.60974526 + rotX: 359.919952 + rotY: 270.027344 + rotZ: 0.0162861571 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232214 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: 0afc45 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Black Stars Rise + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -40.21685 + posY: 1.76258183 + posZ: -3.051078 + rotX: 359.919678 + rotY: 270.027161 + rotZ: 0.0155659933 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 232216 +- 232216 +- 232215 +- 232215 +- 232214 +- 232214 +Description: '' +GMNotes: '' +GUID: f54d1c +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Evil Portents +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 47.20576 + posY: 2.50433064 + posZ: -44.55475 + rotX: 359.920135 + rotY: 270.008636 + rotZ: 0.0168634076 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Excelsior Management e83156.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Excelsior Management e83156.yaml new file mode 100644 index 000000000..e7851c500 --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Excelsior Management e83156.yaml @@ -0,0 +1,258 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 231617 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2316': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493212055041441/90F035BD69A7C5C6B6F43426DDDA3A09DFCBCBDF/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Monster. Staff. + GMNotes: '' + GUID: 3fbc07 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Hotel Security + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 18.4920654 + posY: 1.5275594 + posZ: 0.5202023 + rotX: 359.9204 + rotY: 270.000061 + rotZ: 0.0143561475 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231617 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2316': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493212055041441/90F035BD69A7C5C6B6F43426DDDA3A09DFCBCBDF/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Monster. Staff. + GMNotes: '' + GUID: 7f2492 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Hotel Security + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 18.9652824 + posY: 1.67940474 + posZ: 0.670329154 + rotX: 359.923431 + rotY: 270.0 + rotZ: 0.0105017265 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231617 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2316': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493212055041441/90F035BD69A7C5C6B6F43426DDDA3A09DFCBCBDF/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Monster. Staff. + GMNotes: '' + GUID: 3480cc + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Hotel Security + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 18.9653721 + posY: 1.69892037 + posZ: 0.6702867 + rotX: 359.920868 + rotY: 270.000031 + rotZ: 0.01596997 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231616 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2316': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493212055041441/90F035BD69A7C5C6B6F43426DDDA3A09DFCBCBDF/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Let the Feast Begin + GMNotes: '' + GUID: 3fbc07 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Hotel Manager + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 18.3592834 + posY: 1.67697215 + posZ: 0.8293461 + rotX: 359.924347 + rotY: 270.0 + rotZ: 0.009251183 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231615 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2316': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493212055041441/90F035BD69A7C5C6B6F43426DDDA3A09DFCBCBDF/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Stained by Blood + GMNotes: '' + GUID: 3fbc07 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Manager's Key + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 18.5178471 + posY: 1.6748575 + posZ: 1.11221325 + rotX: 359.920135 + rotY: 270.000427 + rotZ: 0.008978825 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2316': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493212055041441/90F035BD69A7C5C6B6F43426DDDA3A09DFCBCBDF/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 231617 +- 231617 +- 231617 +- 231616 +- 231615 +Description: '' +GMNotes: '' +GUID: e83156 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Excelsior Management +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 11.9069433 + posY: 3.58929443 + posZ: 1.21500838 + rotX: 359.9201 + rotY: 270.010681 + rotZ: 0.01686118 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Expedition f4650a.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Expedition f4650a.yaml new file mode 100644 index 000000000..3bcc2e987 --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Expedition f4650a.yaml @@ -0,0 +1,265 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 234311 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2343': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Blunder. + GMNotes: '' + GUID: '632986' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Low on Supplies + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 110.956413 + posY: 1.413834 + posZ: -34.00648 + rotX: 359.986084 + rotY: 269.910675 + rotZ: 359.984741 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234211 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2342': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Blunder. + GMNotes: '' + GUID: 8e5f0a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Low on Supplies + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 111.076218 + posY: 1.55891144 + posZ: -33.8432922 + rotX: 359.984375 + rotY: 270.0017 + rotZ: 359.990143 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234210 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2342': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Blunder. + GMNotes: '' + GUID: f8b917 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Lost in the Wilds + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 111.493256 + posY: 1.57615733 + posZ: -33.5926628 + rotX: 359.9843 + rotY: 269.9836 + rotZ: 359.980835 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234310 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2343': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Blunder. + GMNotes: '' + GUID: e7d6b8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Lost in the Wilds + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 110.894257 + posY: 1.56286883 + posZ: -34.3112679 + rotX: 359.980682 + rotY: 269.998535 + rotZ: 359.9858 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234310 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2343': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Blunder. + GMNotes: '' + GUID: dc5b1e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Lost in the Wilds + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 110.685661 + posY: 1.56076062 + posZ: -34.00825 + rotX: 359.982819 + rotY: 269.9846 + rotZ: 359.9802 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2342': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + '2343': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 234311 +- 234211 +- 234210 +- 234310 +- 234310 +Description: '' +GMNotes: '' +GUID: f4650a +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Expedition +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.5472126 + posY: 3.483626 + posZ: 1.19510639 + rotX: 359.920135 + rotY: 269.982819 + rotZ: 0.0169603713 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck For the Greater Good c15ada.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck For the Greater Good c15ada.yaml new file mode 100644 index 000000000..ffa7c3d5a --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck For the Greater Good c15ada.yaml @@ -0,0 +1,738 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 312604 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3126': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/786356000879761873/F22612DB451928DCA4344F3F125F5A8CE128A817/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Cultist. Silver Twilight. + GMNotes: '' + GUID: 57cee5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Knight of the Outer Void + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 39.0355949 + posY: 1.35084486 + posZ: 52.51158 + rotX: 0.0234778021 + rotY: 269.955322 + rotZ: -0.0009102802 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 312604 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3126': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/786356000879761873/F22612DB451928DCA4344F3F125F5A8CE128A817/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Cultist. Silver Twilight. + GMNotes: '' + GUID: d43918 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Knight of the Outer Void + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 39.0022621 + posY: 1.50609469 + posZ: 52.89969 + rotX: 0.0598304048 + rotY: 270.009125 + rotZ: 0.342970461 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 312603 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3126': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/786356000879761873/F22612DB451928DCA4344F3F125F5A8CE128A817/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Cultist. Silver Twilight. + GMNotes: '' + GUID: '499347' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Knight of the Inner Circle + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 39.2126579 + posY: 1.3540442 + posZ: 62.3930855 + rotX: 0.0214154385 + rotY: 269.9807 + rotZ: 0.0141904484 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 312603 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3126': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/786356000879761873/F22612DB451928DCA4344F3F125F5A8CE128A817/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Cultist. Silver Twilight. + GMNotes: '' + GUID: 51bd26 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Knight of the Inner Circle + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 38.8971062 + posY: 1.49906588 + posZ: 62.3891029 + rotX: 0.0263424274 + rotY: 269.98053 + rotZ: 5.223194e-05 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 312601 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3126': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/786356000879761873/F22612DB451928DCA4344F3F125F5A8CE128A817/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Cultist. Silver Twilight. + GMNotes: '' + GUID: d47a01 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Cell Keeper + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 35.1583366 + posY: 1.49840617 + posZ: 58.62498 + rotX: 0.0221587084 + rotY: 269.981262 + rotZ: 0.0152097223 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 312600 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3126': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/786356000879761873/F22612DB451928DCA4344F3F125F5A8CE128A817/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Cultist. Silver Twilight. + GMNotes: '' + GUID: 817b5a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Lodge Jailor + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 35.2823524 + posY: 1.50108147 + posZ: 58.3370247 + rotX: 0.0268424749 + rotY: 269.9837 + rotZ: 0.004955252 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 312602 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3126': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/786356000879761873/F22612DB451928DCA4344F3F125F5A8CE128A817/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Silver Twilight. Elite. + GMNotes: '' + GUID: 0f6a54 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Summoned Beast + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 35.15333 + posY: 1.506 + posZ: 58.40247 + rotX: 0.0232514311 + rotY: 269.983124 + rotZ: 0.008076154 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 312407 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3124': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/786356000879758511/CF3D368183597044860CA0BE0FE6A36024904675/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/786356000879757640/1B977B33065106178624452E8B37BC59D06CEC19/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Master of Indoctrination + GMNotes: '' + GUID: 7e2ff5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Nathan Wick + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 35.0746574 + posY: 1.52793145 + posZ: 58.48955 + rotX: 0.0213781819 + rotY: 269.981262 + rotZ: 0.0164458286 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 312605 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3126': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/786356000879761873/F22612DB451928DCA4344F3F125F5A8CE128A817/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Scheme. + GMNotes: '' + GUID: '024771' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Call to Order + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 34.9133835 + posY: 1.35315752 + posZ: 64.6006 + rotX: 0.0209596027 + rotY: 269.981232 + rotZ: 0.0158148948 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 312605 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3126': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/786356000879761873/F22612DB451928DCA4344F3F125F5A8CE128A817/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Scheme. + GMNotes: '' + GUID: 38256e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Call to Order + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 35.06766 + posY: 1.51410151 + posZ: 64.68121 + rotX: 0.023253249 + rotY: 269.981262 + rotZ: 0.0148758916 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 312606 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3126': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/786356000879761873/F22612DB451928DCA4344F3F125F5A8CE128A817/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Scheme. + GMNotes: '' + GUID: b3da23 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Expulsion + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 34.92181 + posY: 1.35406423 + posZ: 67.62116 + rotX: 0.02078857 + rotY: 269.981262 + rotZ: 0.0170785822 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 312606 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3126': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/786356000879761873/F22612DB451928DCA4344F3F125F5A8CE128A817/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Scheme. + GMNotes: '' + GUID: 9aa5ab + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Expulsion + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 35.1211 + posY: 1.51507509 + posZ: 68.0589752 + rotX: 0.0177123118 + rotY: 269.981323 + rotZ: 0.008955666 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 312607 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3126': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/786356000879761873/F22612DB451928DCA4344F3F125F5A8CE128A817/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Scheme. + GMNotes: '' + GUID: abf303 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Beneath the Lodge + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 35.0579872 + posY: 1.35496509 + posZ: 70.6218948 + rotX: 0.0210326537 + rotY: 269.981171 + rotZ: 0.0153134074 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 312607 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3126': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/786356000879761873/F22612DB451928DCA4344F3F125F5A8CE128A817/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Scheme. + GMNotes: '' + GUID: 28d66c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Beneath the Lodge + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 34.93921 + posY: 1.51568758 + posZ: 70.14274 + rotX: 0.0209060367 + rotY: 269.9812 + rotZ: 0.0127279675 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 312608 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3126': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/786356000879761873/F22612DB451928DCA4344F3F125F5A8CE128A817/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Scheme. + GMNotes: '' + GUID: '323982' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Mark of the Order + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 35.1038933 + posY: 1.35573983 + posZ: 73.26771 + rotX: 0.02119793 + rotY: 269.9813 + rotZ: 0.0142221516 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 312608 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3126': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/786356000879761873/F22612DB451928DCA4344F3F125F5A8CE128A817/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Scheme. + GMNotes: '' + GUID: 8cc16b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Mark of the Order + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 35.1185837 + posY: 1.51644886 + posZ: 72.97933 + rotX: 0.0178840477 + rotY: 269.981323 + rotZ: 0.0174572431 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '3124': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/786356000879758511/CF3D368183597044860CA0BE0FE6A36024904675/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/786356000879757640/1B977B33065106178624452E8B37BC59D06CEC19/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + '3126': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/786356000879761873/F22612DB451928DCA4344F3F125F5A8CE128A817/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 312604 +- 312604 +- 312603 +- 312603 +- 312601 +- 312600 +- 312602 +- 312407 +- 312605 +- 312605 +- 312606 +- 312606 +- 312607 +- 312607 +- 312608 +- 312608 +Description: '' +GMNotes: '' +GUID: c15ada +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: For the Greater Good +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 32.3204536 + posY: 2.599496 + posZ: 43.6755943 + rotX: 0.020809019 + rotY: 269.9978 + rotZ: 0.016770523 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Forgotten Ruins 42af0f.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Forgotten Ruins 42af0f.yaml new file mode 100644 index 000000000..6e220f45e --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Forgotten Ruins 42af0f.yaml @@ -0,0 +1,344 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 12323 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Hazard. + GMNotes: '' + GUID: d7978f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Deep Dark + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 93.60351 + posY: 1.415639 + posZ: -26.6612625 + rotX: 359.983948 + rotY: 270.0016 + rotZ: 359.981781 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12323 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Hazard. + GMNotes: '' + GUID: 0d217a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Deep Dark + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 93.69397 + posY: 1.560523 + posZ: -26.5478859 + rotX: 359.987457 + rotY: 270.005157 + rotZ: 359.9649 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12323 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Hazard. + GMNotes: '' + GUID: 16ec42 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Deep Dark + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 93.95461 + posY: 1.57794988 + posZ: -26.1335735 + rotX: 359.982422 + rotY: 269.999756 + rotZ: 359.979828 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12322 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Terror. + GMNotes: '' + GUID: 6dd1d9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ancestral Fear + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 93.42354 + posY: 1.57686341 + posZ: -26.1367111 + rotX: 359.525818 + rotY: 270.002777 + rotZ: 359.993652 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12322 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Terror. + GMNotes: '' + GUID: 6e0cb5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ancestral Fear + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 93.33449 + posY: 1.56238163 + posZ: -26.6032066 + rotX: 0.00463852054 + rotY: 269.965 + rotZ: 0.03435686 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12321 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Omen. Terror. + GMNotes: '' + GUID: 1fbcc6 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ill Omen + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 93.37187 + posY: 1.565085 + posZ: -26.059267 + rotX: 359.9843 + rotY: 270.0182 + rotZ: -0.00412462372 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12321 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Omen. Terror. + GMNotes: '' + GUID: e7fd35 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ill Omen + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 93.68463 + posY: 1.57012033 + posZ: -26.4346638 + rotX: 359.974152 + rotY: 269.966248 + rotZ: 0.009997719 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '123': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 12323 +- 12323 +- 12323 +- 12322 +- 12322 +- 12321 +- 12321 +Description: '' +GMNotes: '' +GUID: 42af0f +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Forgotten Ruins +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 15.1283817 + posY: 3.58567929 + posZ: -4.147645 + rotX: 359.927216 + rotY: 269.999817 + rotZ: 0.0153376553 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Ghouls e8ffa9.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Ghouls e8ffa9.yaml new file mode 100644 index 000000000..a4034546a --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Ghouls e8ffa9.yaml @@ -0,0 +1,344 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 231715 + 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 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: ab3719 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Grasping Hands + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 12.0789223 + posY: 1.538257 + posZ: 6.558776 + rotX: 359.9207 + rotY: 270.0 + rotZ: 0.0130352853 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231715 + 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 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: 272ea4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Grasping Hands + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 11.5948715 + posY: 1.6933527 + posZ: 6.733804 + rotX: 359.940033 + rotY: 270.0 + rotZ: 359.9941 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231715 + 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 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: ab3719 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Grasping Hands + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 11.6057749 + posY: 1.707567 + posZ: 6.731648 + rotX: 359.9248 + rotY: 270.000153 + rotZ: 0.0111529948 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231714 + 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 + UniqueBack: false + Description: Humanoid. Monster. Ghoul. + GMNotes: '' + GUID: 99efa0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ravenous Ghoul + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 11.9229918 + posY: 1.70898592 + posZ: 13.9219513 + rotX: 359.952728 + rotY: 269.999939 + rotZ: 179.966141 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231713 + 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 + UniqueBack: false + Description: Humanoid. Monster. Ghoul. + GMNotes: '' + GUID: b87089 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ghoul Minion + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 12.0413847 + posY: 1.540466 + posZ: 13.7902546 + rotX: 359.920441 + rotY: 270.000244 + rotZ: 0.0148255695 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231713 + 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 + UniqueBack: false + Description: Humanoid. Monster. Ghoul. + GMNotes: '' + GUID: 30bb55 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ghoul Minion + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 11.6936331 + posY: 1.696078 + posZ: 13.6986961 + rotX: 359.923462 + rotY: 270.000183 + rotZ: 0.006271487 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231713 + 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 + UniqueBack: false + Description: Humanoid. Monster. Ghoul. + GMNotes: '' + GUID: b87089 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ghoul Minion + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 11.6935387 + posY: 1.70997131 + posZ: 13.6987247 + rotX: 359.923828 + rotY: 270.0 + rotZ: 0.0162566788 + 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 + UniqueBack: false +DeckIDs: +- 231715 +- 231715 +- 231715 +- 231714 +- 231713 +- 231713 +- 231713 +Description: '' +GMNotes: '' +GUID: e8ffa9 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Ghouls +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.6426678 + posY: 3.57558155 + posZ: -22.55471 + rotX: 359.920135 + rotY: 270.00238 + rotZ: 0.0168739911 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Ghouls of Umôrdhoth af187d.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Ghouls of Umôrdhoth af187d.yaml new file mode 100644 index 000000000..d78f0acd6 --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Ghouls of Umôrdhoth af187d.yaml @@ -0,0 +1,344 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 231739 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 5b4ef3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Chill from Below + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -25.5324268 + posY: 1.59864092 + posZ: 33.35978 + rotX: 359.920135 + rotY: 269.999817 + rotZ: 0.0168426409 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231739 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: fa916a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Chill from Below + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -25.095953 + posY: 1.76498652 + posZ: 33.6871719 + rotX: 359.9181 + rotY: 269.999878 + rotZ: 0.0131390868 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231739 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 5b4ef3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Chill from Below + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -25.0959339 + posY: 1.77885532 + posZ: 33.68717 + rotX: 359.920319 + rotY: 269.999878 + rotZ: 0.0163987149 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231738 + 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 + UniqueBack: false + Description: Humanoid. Monster. Ghoul. + GMNotes: '' + GUID: cadd49 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: "Acolyte of Um\xF4rdhoth" + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -25.8445168 + posY: 1.59990489 + posZ: 36.2778969 + rotX: 359.920441 + rotY: 269.995728 + rotZ: 0.01474889 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231737 + 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 + UniqueBack: false + Description: Humanoid. Monster. Ghoul. + GMNotes: '' + GUID: ab3719 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Grave-Eater + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -25.9238586 + posY: 1.60099757 + posZ: 39.56222 + rotX: 359.9203 + rotY: 270.005859 + rotZ: 0.0158384759 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231737 + 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 + UniqueBack: false + Description: Humanoid. Monster. Ghoul. + GMNotes: '' + GUID: 4d726b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Grave-Eater + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -26.18154 + posY: 1.76863384 + posZ: 39.29493 + rotX: 359.92218 + rotY: 270.005859 + rotZ: 0.0167646986 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231737 + 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 + UniqueBack: false + Description: Humanoid. Monster. Ghoul. + GMNotes: '' + GUID: ab3719 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Grave-Eater + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -26.055315 + posY: 1.78233588 + posZ: 39.3050423 + rotX: 359.920074 + rotY: 270.005859 + rotZ: 0.0165559836 + 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 + UniqueBack: false +DeckIDs: +- 231739 +- 231739 +- 231739 +- 231738 +- 231737 +- 231737 +- 231737 +Description: '' +GMNotes: '' +GUID: af187d +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: "Ghouls of Um\xF4rdhoth" +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 31.91414 + posY: 3.503372 + posZ: -30.5361614 + rotX: 359.920135 + rotY: 269.999725 + rotZ: 0.0168754272 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Guardians of Time 69dfe0.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Guardians of Time 69dfe0.yaml new file mode 100644 index 000000000..ec9b32344 --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Guardians of Time 69dfe0.yaml @@ -0,0 +1,222 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 234216 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2342': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Scheme. + GMNotes: '' + GUID: c4b9d3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Arrows from the Trees + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 111.345619 + posY: 1.50246632 + posZ: -35.8159332 + rotX: 359.974548 + rotY: 269.998 + rotZ: 355.635132 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234316 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2343': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Scheme. + GMNotes: '' + GUID: 74a02c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Arrows from the Trees + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 111.014893 + posY: 1.66188061 + posZ: -35.7250938 + rotX: 359.983337 + rotY: 270.008362 + rotZ: 356.7489 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234315 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2343': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Humanoid. Eztli. + GMNotes: '' + GUID: '571733' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Eztli Guardian + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 111.112961 + posY: 1.576855 + posZ: -35.9195671 + rotX: 359.987854 + rotY: 269.999451 + rotZ: 359.976166 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234315 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2343': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Humanoid. Eztli. + GMNotes: '' + GUID: 1ff419 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Eztli Guardian + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 110.659172 + posY: 1.51936984 + posZ: -36.0036659 + rotX: -0.00208683615 + rotY: 270.029053 + rotZ: 2.31578827 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2342': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + '2343': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 234216 +- 234316 +- 234315 +- 234315 +Description: '' +GMNotes: '' +GUID: 69dfe0 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Guardians of Time +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 15.5218477 + posY: 3.57961226 + posZ: -4.72384071 + rotX: 359.919861 + rotY: 269.999817 + rotZ: 0.0170671772 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Hastur's Gift dc9b9c.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Hastur's Gift dc9b9c.yaml new file mode 100644 index 000000000..627575034 --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Hastur's Gift dc9b9c.yaml @@ -0,0 +1,301 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 232221 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Pact. + GMNotes: '' + GUID: c189a5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dance of the Yellow King + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -33.0721054 + posY: 1.59816492 + posZ: -3.9468503 + rotX: 359.920135 + rotY: 270.00177 + rotZ: 0.0167396571 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232221 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Pact. + GMNotes: '' + GUID: 74b258 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dance of the Yellow King + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -32.95977 + posY: 1.76483011 + posZ: -3.889132 + rotX: 359.9195 + rotY: 270.001862 + rotZ: 0.0146204839 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232220 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Lunatic. + GMNotes: '' + GUID: bce7b8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Young Psychopath + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -32.2588272 + posY: 1.596186 + posZ: -6.7895093 + rotX: 359.920227 + rotY: 269.9985 + rotZ: 0.0162243973 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232220 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Lunatic. + GMNotes: '' + GUID: 40c629 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Young Psychopath + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -32.21109 + posY: 1.762528 + posZ: -6.736423 + rotX: 359.9219 + rotY: 269.998535 + rotZ: 0.0156734586 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232219 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Lunatic. + GMNotes: '' + GUID: 006497 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Maniac + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -33.0786972 + posY: 1.5994426 + posZ: 0.4528645 + rotX: 359.920441 + rotY: 269.9931 + rotZ: 0.0150249889 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232219 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Lunatic. + GMNotes: '' + GUID: 068703 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Maniac + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -33.03474 + posY: 1.73884428 + posZ: 0.8094432 + rotX: 359.959045 + rotY: 270.001862 + rotZ: -0.00308930734 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 232221 +- 232221 +- 232220 +- 232220 +- 232219 +- 232219 +Description: '' +GMNotes: '' +GUID: dc9b9c +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Hastur's Gift +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 43.09745 + posY: 2.51214266 + posZ: -37.47658 + rotX: 359.920135 + rotY: 269.999237 + rotZ: 0.01687824 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Hastur’s Envoys de4ead.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Hastur’s Envoys de4ead.yaml new file mode 100644 index 000000000..6769369c3 --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Hastur’s Envoys de4ead.yaml @@ -0,0 +1,215 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 232818 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723517659500931/4B5458A518FDAF55C44CD8423EC12304E3266A6C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Pact. Power. + GMNotes: '' + GUID: 48ff80 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Sign of Hastur + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -16.4193249 + posY: 1.56677032 + posZ: -31.2345848 + rotX: 359.921478 + rotY: 269.999939 + rotZ: 0.007362036 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232818 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723517659500931/4B5458A518FDAF55C44CD8423EC12304E3266A6C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Pact. Power. + GMNotes: '' + GUID: a3c0d0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Sign of Hastur + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -16.8502655 + posY: 1.7219522 + posZ: -31.3089123 + rotX: 359.9652 + rotY: 270.0 + rotZ: 0.009213697 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232817 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723517659500931/4B5458A518FDAF55C44CD8423EC12304E3266A6C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Byakhee. + GMNotes: '' + GUID: 5987af + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Preying Byakhee + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -17.1722336 + posY: 1.569242 + posZ: -26.9037 + rotX: 359.9201 + rotY: 269.999878 + rotZ: 0.0169682037 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232817 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723517659500931/4B5458A518FDAF55C44CD8423EC12304E3266A6C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Byakhee. + GMNotes: '' + GUID: 7161b9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Preying Byakhee + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -17.1106777 + posY: 1.73652244 + posZ: -26.5900784 + rotX: 359.9353 + rotY: 270.0 + rotZ: 0.0111068469 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723517659500931/4B5458A518FDAF55C44CD8423EC12304E3266A6C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 232818 +- 232818 +- 232817 +- 232817 +Description: '' +GMNotes: '' +GUID: de4ead +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: "Hastur\u2019s Envoys" +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 77.26453 + posY: 3.084663 + posZ: -73.35229 + rotX: 359.920135 + rotY: 270.003876 + rotZ: 0.0168733224 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Hauntings 813c5b.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Hauntings 813c5b.yaml new file mode 100644 index 000000000..4146b852c --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Hauntings 813c5b.yaml @@ -0,0 +1,215 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 232218 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Curse. Geist. + GMNotes: '' + GUID: 2d32e4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Spirit's Torment + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -31.05811 + posY: 1.5943135 + posZ: -7.30223 + rotX: 359.920715 + rotY: 269.999756 + rotZ: 0.013130011 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232218 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Curse. Geist. + GMNotes: '' + GUID: 9349fd + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Spirit's Torment + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -31.1989822 + posY: 1.74595857 + posZ: -7.23980331 + rotX: 359.950958 + rotY: 269.999573 + rotZ: -0.00464719161 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232217 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Geist. + GMNotes: '' + GUID: 1ae587 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Poltergeist + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -30.9912872 + posY: 1.5951972 + posZ: -3.82445621 + rotX: 359.9241 + rotY: 269.9814 + rotZ: 0.0137564549 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232217 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Geist. + GMNotes: '' + GUID: 459f5a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Poltergeist + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -30.9757233 + posY: 1.74052989 + posZ: -3.8652792 + rotX: 359.957245 + rotY: 269.972046 + rotZ: 0.00526940031 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 232218 +- 232218 +- 232217 +- 232217 +Description: '' +GMNotes: '' +GUID: 813c5b +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Hauntings +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 42.83618 + posY: 2.51064968 + posZ: -34.179924 + rotX: 359.920135 + rotY: 269.998657 + rotZ: 0.0168799665 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Heart of the Elders 5b2663.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Heart of the Elders 5b2663.yaml new file mode 100644 index 000000000..b98500979 --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Heart of the Elders 5b2663.yaml @@ -0,0 +1,387 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 265224 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/dduEXOZ.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949584217499447778/D520DDC422F8941F9935AAD9075566696E799853/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Hazard. + GMNotes: '' + GUID: 05d368 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Poisonous Spores + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 99.29889 + posY: 1.56742907 + posZ: 12.5617056 + rotX: 359.983063 + rotY: 269.980347 + rotZ: 179.991089 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265224 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/dduEXOZ.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949584217499447778/D520DDC422F8941F9935AAD9075566696E799853/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Hazard. + GMNotes: '' + GUID: 98a6eb + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Poisonous Spores + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 99.45708 + posY: 1.561092 + posZ: 12.6000261 + rotX: 359.982849 + rotY: 269.999542 + rotZ: 179.984451 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265224 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/dduEXOZ.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949584217499447778/D520DDC422F8941F9935AAD9075566696E799853/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Hazard. + GMNotes: '' + GUID: '679548' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Poisonous Spores + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 98.86566 + posY: 1.5558753 + posZ: 12.560709 + rotX: 359.989838 + rotY: 270.0008 + rotZ: 180.031509 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265223 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/dduEXOZ.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949584217499447778/D520DDC422F8941F9935AAD9075566696E799853/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Trap. + GMNotes: '' + GUID: 58ab68 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Pitfall + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 100.305016 + posY: 1.49004185 + posZ: 5.756226 + rotX: 356.977325 + rotY: 270.025818 + rotZ: 179.983734 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265223 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/dduEXOZ.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949584217499447778/D520DDC422F8941F9935AAD9075566696E799853/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Trap. + GMNotes: '' + GUID: ab80bf + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Pitfall + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 101.279671 + posY: 1.40894473 + posZ: 2.58797669 + rotX: 359.987427 + rotY: 270.000183 + rotZ: 179.984543 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265223 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/dduEXOZ.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949584217499447778/D520DDC422F8941F9935AAD9075566696E799853/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Trap. + GMNotes: '' + GUID: ab80bf + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Pitfall + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 98.8100357 + posY: 1.56915438 + posZ: 13.0408506 + rotX: 359.990234 + rotY: 269.999969 + rotZ: 179.989838 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265214 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/dduEXOZ.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949584217499447778/D520DDC422F8941F9935AAD9075566696E799853/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 97335d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Mouth of K'n-yan + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 98.5499 + posY: 1.55190051 + posZ: 13.0026331 + rotX: 359.978058 + rotY: 270.007355 + rotZ: 179.989182 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265213 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/dduEXOZ.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949584217499447778/D520DDC422F8941F9935AAD9075566696E799853/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Heart of the Elders + GMNotes: '' + GUID: 8f1f3c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Scenario + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 98.70464 + posY: 1.40666723 + posZ: 13.0831165 + rotX: 359.985626 + rotY: 270.002258 + rotZ: 179.9839 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2652': + BackIsHidden: true + BackURL: https://i.imgur.com/dduEXOZ.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949584217499447778/D520DDC422F8941F9935AAD9075566696E799853/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 265224 +- 265224 +- 265224 +- 265223 +- 265223 +- 265223 +- 265214 +- 265213 +Description: '' +GMNotes: '' +GUID: 5b2663 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Heart of the Elders +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 21.7685947 + posY: 3.465152 + posZ: -3.96904087 + rotX: 359.920135 + rotY: 270.000732 + rotZ: 0.0168644767 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Hideous Abominations 4b1413.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Hideous Abominations 4b1413.yaml new file mode 100644 index 000000000..c9a0dfc47 --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Hideous Abominations 4b1413.yaml @@ -0,0 +1,172 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 232831 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Abomination. + GMNotes: '' + GUID: 919fa0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Servant of the Lurker + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.69560742 + posY: 1.54953551 + posZ: 4.974127 + rotX: 359.920135 + rotY: 269.999939 + rotZ: 0.0168759543 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232830 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Abomination. + GMNotes: '' + GUID: de3bd5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Conglomeration of Spheres + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.816169 + posY: 1.55043364 + posZ: 8.595026 + rotX: 359.920135 + rotY: 269.999878 + rotZ: 0.0168762449 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232830 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Abomination. + GMNotes: '' + GUID: 1b1dd5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Conglomeration of Spheres + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.72422314 + posY: 1.70678663 + posZ: 8.640354 + rotX: 359.920135 + rotY: 269.999878 + rotZ: 0.0168763362 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 232831 +- 232830 +- 232830 +Description: '' +GMNotes: '' +GUID: 4b1413 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Hideous Abominations +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 16.0306721 + posY: 2.58956623 + posZ: -85.1604462 + rotX: 359.920135 + rotY: 269.9997 + rotZ: 0.0168778449 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck In the Clutches of Chaos 4db724.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck In the Clutches of Chaos 4db724.yaml new file mode 100644 index 000000000..f9615957e --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck In the Clutches of Chaos 4db724.yaml @@ -0,0 +1,387 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 369122 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3691': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784110538844118232/E948D384460BD0291E7DC53C315709CF0E1321FE/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Curse. + GMNotes: '' + GUID: a71412 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Terror Unleashed + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 58.58292 + posY: 1.35685778 + posZ: 47.9937 + rotX: 0.0214689132 + rotY: 269.998932 + rotZ: 0.0139200166 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 369122 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3691': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784110538844118232/E948D384460BD0291E7DC53C315709CF0E1321FE/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Curse. + GMNotes: '' + GUID: 735cdb + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Terror Unleashed + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 58.7606125 + posY: 1.50205839 + posZ: 48.1445732 + rotX: 0.02945422 + rotY: 269.998047 + rotZ: 0.009088004 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 369122 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3691': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784110538844118232/E948D384460BD0291E7DC53C315709CF0E1321FE/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Curse. + GMNotes: '' + GUID: a71412 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Terror Unleashed + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 58.4156761 + posY: 1.51898789 + posZ: 48.0254631 + rotX: 0.0166849345 + rotY: 269.998749 + rotZ: 0.0125559885 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 369127 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3691': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784110538844118232/E948D384460BD0291E7DC53C315709CF0E1321FE/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Power. + GMNotes: '' + GUID: a47dba + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Primordial Gateway + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 58.38571 + posY: 1.50565636 + posZ: 47.81855 + rotX: 0.0209941231 + rotY: 269.999664 + rotZ: 0.0154777756 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 369127 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3691': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784110538844118232/E948D384460BD0291E7DC53C315709CF0E1321FE/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Power. + GMNotes: '' + GUID: a47dba + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Primordial Gateway + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 58.4880562 + posY: 1.50355768 + posZ: 47.24554 + rotX: 0.0209130254 + rotY: 269.999634 + rotZ: 0.0166651234 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 369128 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3691': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784110538844118232/E948D384460BD0291E7DC53C315709CF0E1321FE/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Power. + GMNotes: '' + GUID: a7dd13 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Chaos Manifest + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 58.39371 + posY: 1.50634408 + posZ: 47.87247 + rotX: 0.024408225 + rotY: 269.999268 + rotZ: 0.0161257125 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 369128 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3691': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784110538844118232/E948D384460BD0291E7DC53C315709CF0E1321FE/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Power. + GMNotes: '' + GUID: ccd9f0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Chaos Manifest + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 58.59821 + posY: 1.51140118 + posZ: 47.73551 + rotX: 0.0225808211 + rotY: 269.9994 + rotZ: 0.0152533529 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 369128 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3691': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784110538844118232/E948D384460BD0291E7DC53C315709CF0E1321FE/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Power. + GMNotes: '' + GUID: a7dd13 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Chaos Manifest + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 58.4594345 + posY: 1.53331447 + posZ: 47.83038 + rotX: 0.02158057 + rotY: 269.999756 + rotZ: 0.01657803 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '3691': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784110538844118232/E948D384460BD0291E7DC53C315709CF0E1321FE/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 369122 +- 369122 +- 369122 +- 369127 +- 369127 +- 369128 +- 369128 +- 369128 +Description: '' +GMNotes: '' +GUID: 4db724 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: In the Clutches of Chaos +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 49.0540352 + posY: 2.56746054 + posZ: 36.0757332 + rotX: 0.0208085924 + rotY: 270.003418 + rotZ: 0.0167717468 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Inexorable Fate 308386.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Inexorable Fate 308386.yaml new file mode 100644 index 000000000..bfe648b49 --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Inexorable Fate 308386.yaml @@ -0,0 +1,301 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 231823 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Omen. Spectral. + GMNotes: '' + GUID: ef132d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Fate of All Fools + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -24.7152367 + posY: 1.91512489 + posZ: -32.59262 + rotX: 359.910583 + rotY: 269.364441 + rotZ: 341.912537 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231823 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Omen. Spectral. + GMNotes: '' + GUID: 717c42 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Fate of All Fools + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -24.6707478 + posY: 1.76058781 + posZ: -33.23441 + rotX: 359.465271 + rotY: 269.459351 + rotZ: 9.029153 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231823 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Omen. Spectral. + GMNotes: '' + GUID: fbcb9f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Fate of All Fools + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -23.46502 + posY: 2.16774321 + posZ: -34.8072357 + rotX: 0.232217044 + rotY: 270.777466 + rotZ: 353.199249 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231822 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. Spectral. + GMNotes: '' + GUID: 43ba03 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Terror in the Night + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -24.27985 + posY: 1.99979043 + posZ: -34.2781525 + rotX: 359.187378 + rotY: 270.910339 + rotZ: 355.236023 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231822 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. Spectral. + GMNotes: '' + GUID: 4f41b0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Terror in the Night + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -24.3842 + posY: 2.1039958 + posZ: -34.9055138 + rotX: 359.182831 + rotY: 270.902466 + rotZ: 355.1978 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231822 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. Spectral. + GMNotes: '' + GUID: 1a350a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Terror in the Night + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -23.6618786 + posY: 2.18380141 + posZ: -35.4214439 + rotX: 359.156219 + rotY: 270.890381 + rotZ: 355.0201 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 231823 +- 231823 +- 231823 +- 231822 +- 231822 +- 231822 +Description: '' +GMNotes: '' +GUID: '308386' +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Inexorable Fate +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -0.24192667 + posY: 3.50602317 + posZ: -12.0702143 + rotX: 359.920135 + rotY: 270.003052 + rotZ: 0.0168635137 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Inhabitants of Carcosa 7607d1.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Inhabitants of Carcosa 7607d1.yaml new file mode 100644 index 000000000..9edbab570 --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Inhabitants of Carcosa 7607d1.yaml @@ -0,0 +1,172 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 232213 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. + GMNotes: '' + GUID: e9dc22 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Spawn of Hali + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -41.0218 + posY: 1.61205661 + posZ: 5.752819 + rotX: 359.920532 + rotY: 270.00177 + rotZ: 0.013646706 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232213 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. + GMNotes: '' + GUID: d46d72 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Spawn of Hali + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -40.7112732 + posY: 1.76276219 + posZ: 5.71570444 + rotX: 359.92627 + rotY: 270.001953 + rotZ: 0.00491145067 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232212 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Elite. + GMNotes: '' + GUID: 83c7c3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Beast of Aldebaran + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -41.1815262 + posY: 1.79055 + posZ: 4.78066158 + rotX: 359.922272 + rotY: 270.029022 + rotZ: 0.02401261 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 232213 +- 232213 +- 232212 +Description: '' +GMNotes: '' +GUID: 7607d1 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Inhabitants of Carcosa +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -6.622473 + posY: 2.564438 + posZ: -34.14409 + rotX: 359.920135 + rotY: 269.983246 + rotZ: 0.0169696733 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck K'n-yan 3ac2d8.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck K'n-yan 3ac2d8.yaml new file mode 100644 index 000000000..c9ffd2684 --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck K'n-yan 3ac2d8.yaml @@ -0,0 +1,602 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 265436 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/dduEXOZ.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949584217499447778/D520DDC422F8941F9935AAD9075566696E799853/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Hazard. + GMNotes: '' + GUID: 3c278f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: No Turning Back + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 109.831581 + posY: 1.40729487 + posZ: -8.72366 + rotX: 359.987427 + rotY: 270.0 + rotZ: 359.984528 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265436 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/dduEXOZ.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949584217499447778/D520DDC422F8941F9935AAD9075566696E799853/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Hazard. + GMNotes: '' + GUID: '198394' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: No Turning Back + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 104.308624 + posY: 1.405478 + posZ: -7.537439 + rotX: 359.987854 + rotY: 269.9997 + rotZ: 359.9854 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265436 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/dduEXOZ.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949584217499447778/D520DDC422F8941F9935AAD9075566696E799853/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Hazard. + GMNotes: '' + GUID: 7cfc06 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: No Turning Back + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 102.759453 + posY: 1.52647579 + posZ: -1.58746159 + rotX: 359.98938 + rotY: 270.0155 + rotZ: 177.8464 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265435 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/dduEXOZ.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949584217499447778/D520DDC422F8941F9935AAD9075566696E799853/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Ancient. Cave. + GMNotes: '' + GUID: d00ab9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Descent to Yoth + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 102.175293 + posY: 1.53769958 + posZ: -1.15542686 + rotX: 359.9833 + rotY: 269.990082 + rotZ: 179.9889 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265434 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/dduEXOZ.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949584217499447778/D520DDC422F8941F9935AAD9075566696E799853/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Ancient. Cave. + GMNotes: '' + GUID: f759d9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Crystal Pillars + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 102.800728 + posY: 1.52788138 + posZ: -1.57140923 + rotX: 359.987823 + rotY: 269.986084 + rotZ: 180.003616 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265433 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/dduEXOZ.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949584217499447778/D520DDC422F8941F9935AAD9075566696E799853/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Ancient. Cave. + GMNotes: '' + GUID: f68247 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Perilous Gulch + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 102.387428 + posY: 1.62206173 + posZ: -1.28868723 + rotX: 0.00283122016 + rotY: 270.034241 + rotZ: 176.788559 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265432 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/dduEXOZ.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949584217499447778/D520DDC422F8941F9935AAD9075566696E799853/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Ancient. Cave. + GMNotes: '' + GUID: a5cee7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dark Hollow + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 102.740944 + posY: 1.560544 + posZ: -1.42245448 + rotX: 359.354584 + rotY: 269.9952 + rotZ: 180.916748 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265431 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/dduEXOZ.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949584217499447778/D520DDC422F8941F9935AAD9075566696E799853/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Ancient. Cave. + GMNotes: '' + GUID: 7216f5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Hall of Idolatry + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 103.274796 + posY: 1.60066533 + posZ: -1.339621 + rotX: 359.98877 + rotY: 270.023041 + rotZ: 182.814209 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265430 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/dduEXOZ.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949584217499447778/D520DDC422F8941F9935AAD9075566696E799853/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Ancient. Cave. + GMNotes: '' + GUID: 8a0365 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Vast Passages + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 102.79924 + posY: 1.59632516 + posZ: -1.92458057 + rotX: 359.986755 + rotY: 270.01944 + rotZ: 177.7032 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265422 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/dduEXOZ.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949584217499447778/D520DDC422F8941F9935AAD9075566696E799853/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 2 + GMNotes: '' + GUID: 2927d8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Descent into Dark + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 102.67276 + posY: 1.5585593 + posZ: -1.181264 + rotX: 359.985748 + rotY: 269.6972 + rotZ: 179.98056 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265421 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/dduEXOZ.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949584217499447778/D520DDC422F8941F9935AAD9075566696E799853/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 1 + GMNotes: '' + GUID: 89e433 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Cavern of the Forgotten Age + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 102.424629 + posY: 1.57214272 + posZ: -0.975977838 + rotX: 359.990448 + rotY: 269.999878 + rotZ: 179.988113 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265420 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/dduEXOZ.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949584217499447778/D520DDC422F8941F9935AAD9075566696E799853/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 2 + GMNotes: '' + GUID: 0bbb1e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Eyes in the Dark + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 102.492142 + posY: 1.55461466 + posZ: -1.136364 + rotX: 359.991547 + rotY: 269.999481 + rotZ: 179.987289 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265419 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/dduEXOZ.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949584217499447778/D520DDC422F8941F9935AAD9075566696E799853/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 1 + GMNotes: '' + GUID: 0d3b97 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Lonely Caverns + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 102.571884 + posY: 1.40954638 + posZ: -1.05628419 + rotX: 359.983 + rotY: 270.00058 + rotZ: 179.985641 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2654': + BackIsHidden: true + BackURL: https://i.imgur.com/dduEXOZ.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949584217499447778/D520DDC422F8941F9935AAD9075566696E799853/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 265436 +- 265436 +- 265436 +- 265435 +- 265434 +- 265433 +- 265432 +- 265431 +- 265430 +- 265422 +- 265421 +- 265420 +- 265419 +Description: '' +GMNotes: '' +GUID: 3ac2d8 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: K'n-yan +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 16.8506584 + posY: 3.48731828 + posZ: -0.3148728 + rotX: 359.920258 + rotY: 269.995972 + rotZ: 0.017492041 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Locked Doors 557850.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Locked Doors 557850.yaml new file mode 100644 index 000000000..826f8999b --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Locked Doors 557850.yaml @@ -0,0 +1,129 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- 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 + UniqueBack: false + Description: Obstacle. + GMNotes: '' + GUID: ab3719 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Locked Door + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -17.60739 + posY: 1.58022821 + posZ: 8.422101 + rotX: 359.920349 + rotY: 269.999756 + rotZ: 0.0154577158 + 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 + UniqueBack: false + Description: Obstacle. + GMNotes: '' + GUID: 4904d0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Locked Door + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -18.06458 + posY: 1.74395728 + posZ: 8.675678 + rotX: 359.928467 + rotY: 269.9997 + rotZ: 0.006147271 + 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 + UniqueBack: false +DeckIDs: +- 231727 +- 231727 +Description: '' +GMNotes: '' +GUID: '557850' +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Locked Doors +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.3485155 + posY: 3.595359 + posZ: -10.7595034 + rotX: 359.920135 + rotY: 269.99765 + rotZ: 0.0168817732 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Maddening Delusions bd621c.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Maddening Delusions bd621c.yaml new file mode 100644 index 000000000..2d9640808 --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Maddening Delusions bd621c.yaml @@ -0,0 +1,301 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 232823 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723517659500931/4B5458A518FDAF55C44CD8423EC12304E3266A6C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: 3effb8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Maddening Delusions + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -20.1577435 + posY: 1.57207835 + posZ: -31.3182583 + rotX: 359.92038 + rotY: 269.999878 + rotZ: 0.0152459564 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232823 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723517659500931/4B5458A518FDAF55C44CD8423EC12304E3266A6C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: dd93e2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Maddening Delusions + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -20.4406471 + posY: 1.73394608 + posZ: -31.18953 + rotX: 359.9276 + rotY: 269.999939 + rotZ: 0.007684529 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232822 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723517659500931/4B5458A518FDAF55C44CD8423EC12304E3266A6C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: a92ef8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Visions in Your Mind (Hatred) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -19.8424263 + posY: 1.73465288 + posZ: -31.0785656 + rotX: 359.919647 + rotY: 270.0066 + rotZ: 0.0226448 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232821 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723517659500931/4B5458A518FDAF55C44CD8423EC12304E3266A6C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: '613256' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Visions in Your Mind (Death) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -20.2634449 + posY: 1.7214551 + posZ: -31.20634 + rotX: 359.922943 + rotY: 269.996216 + rotZ: 0.0142507013 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232820 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723517659500931/4B5458A518FDAF55C44CD8423EC12304E3266A6C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: ca4b6d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Visions in Your Mind (Failure) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -19.837471 + posY: 1.71898663 + posZ: -31.096756 + rotX: 359.918335 + rotY: 269.998779 + rotZ: 0.0132667217 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232819 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723517659500931/4B5458A518FDAF55C44CD8423EC12304E3266A6C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: 5987af + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Visions in Your Mind (Horrors) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -20.4759254 + posY: 1.72235584 + posZ: -30.9665585 + rotX: 359.925446 + rotY: 270.004181 + rotZ: 0.00763365347 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723517659500931/4B5458A518FDAF55C44CD8423EC12304E3266A6C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 232823 +- 232823 +- 232822 +- 232821 +- 232820 +- 232819 +Description: '' +GMNotes: '' +GUID: bd621c +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Maddening Delusions +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -27.5203285 + posY: 2.74597216 + posZ: -45.6499 + rotX: 359.9201 + rotY: 270.00647 + rotZ: 0.0168675818 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Merging Realities 677f60.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Merging Realities 677f60.yaml new file mode 100644 index 000000000..174fba46e --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Merging Realities 677f60.yaml @@ -0,0 +1,301 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 274124 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2741': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: fc9e13 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Glimpse of the Underworld + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 5.84228325 + posY: 1.34083807 + posZ: 58.62573 + rotX: 0.021272542 + rotY: 270.006 + rotZ: 0.009666224 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274124 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2741': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: 8cfcad + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Glimpse of the Underworld + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 5.38974667 + posY: 1.485744 + posZ: 58.4967079 + rotX: 0.0294501316 + rotY: 270.004547 + rotZ: 359.9871 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274125 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2741': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Power. + GMNotes: '' + GUID: b8c436 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Threads of Reality + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 1.29080474 + posY: 1.33946133 + posZ: 59.52883 + rotX: 0.0209642574 + rotY: 269.9999 + rotZ: 0.0157587882 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274125 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2741': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Power. + GMNotes: '' + GUID: dc5bae + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Threads of Reality + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.8402691 + posY: 1.50012553 + posZ: 59.88763 + rotX: 0.0284495931 + rotY: 269.999969 + rotZ: 0.005568467 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274123 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2741': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: 31f1b5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Night Terrors + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 1.29163218 + posY: 1.33841527 + posZ: 56.0256081 + rotX: 0.02121237 + rotY: 269.9997 + rotZ: 0.0143396938 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274123 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2741': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: 6fdcaf + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Night Terrors + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 1.48556733 + posY: 1.4938426 + posZ: 56.0021362 + rotX: 0.00524773542 + rotY: 270.003082 + rotZ: 0.008701706 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2741': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 274124 +- 274124 +- 274125 +- 274125 +- 274123 +- 274123 +Description: '' +GMNotes: '' +GUID: 677f60 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Merging Realities +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 11.0004721 + posY: 3.39688873 + posZ: 45.2199364 + rotX: 0.0208058879 + rotY: 270.0062 + rotZ: 0.0167710986 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Music of the Damned b97715.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Music of the Damned b97715.yaml new file mode 100644 index 000000000..aecca5a00 --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Music of the Damned b97715.yaml @@ -0,0 +1,215 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 369126 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3691': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784110538844118232/E948D384460BD0291E7DC53C315709CF0E1321FE/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: a36f2f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Toil and Trouble + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 58.64388 + posY: 1.356039 + posZ: 45.2182846 + rotX: 0.020898534 + rotY: 270.001373 + rotZ: 0.0116380956 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 369126 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3691': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784110538844118232/E948D384460BD0291E7DC53C315709CF0E1321FE/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: a3ec6a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Toil and Trouble + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 58.16304 + posY: 1.50273311 + posZ: 44.97182 + rotX: 0.0261583552 + rotY: 269.999969 + rotZ: 0.00103113 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 369125 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3691': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784110538844118232/E948D384460BD0291E7DC53C315709CF0E1321FE/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Witch + GMNotes: '' + GUID: 6582d7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Witness of Chaos + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 58.5299 + posY: 1.51869488 + posZ: 45.1395531 + rotX: 0.02387122 + rotY: 270.0603 + rotZ: 359.982056 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 369125 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3691': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784110538844118232/E948D384460BD0291E7DC53C315709CF0E1321FE/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Witch + GMNotes: '' + GUID: 6582d7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Witness of Chaos + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 58.5274124 + posY: 1.50500607 + posZ: 44.93002 + rotX: 0.0114952838 + rotY: 270.006348 + rotZ: 0.0101106968 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '3691': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784110538844118232/E948D384460BD0291E7DC53C315709CF0E1321FE/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 369126 +- 369126 +- 369125 +- 369125 +Description: '' +GMNotes: '' +GUID: b97715 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Music of the Damned +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 49.2054176 + posY: 2.58265924 + posZ: 32.2017441 + rotX: 0.0207957029 + rotY: 270.024963 + rotZ: 0.0167862382 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Naomi's Crew be34b0.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Naomi's Crew be34b0.yaml new file mode 100644 index 000000000..5bd5f7aa9 --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Naomi's Crew be34b0.yaml @@ -0,0 +1,301 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 232826 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Tactic. + GMNotes: '' + GUID: fb489f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Hunted Down + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.980493 + posY: 1.55055571 + posZ: 5.05313349 + rotX: 359.920135 + rotY: 269.999939 + rotZ: 0.016877586 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232826 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Tactic. + GMNotes: '' + GUID: 5da81c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Hunted Down + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.06432152 + posY: 1.70658684 + posZ: 4.754894 + rotX: 359.920135 + rotY: 269.999939 + rotZ: 0.01687765 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232825 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: "\tHuman. Criminal. Syndicate." + GMNotes: '' + GUID: 5b2e99 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Mobster + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.824686 + posY: 1.55165482 + posZ: 8.04818 + rotX: 359.920135 + rotY: 269.999939 + rotZ: 0.0168768317 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232825 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: "\tHuman. Criminal. Syndicate." + GMNotes: '' + GUID: a5bca1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Mobster + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.079666 + posY: 1.707689 + posZ: 7.82385826 + rotX: 359.920135 + rotY: 269.999939 + rotZ: 0.0168767981 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232824 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: "\tHuman. Criminal. Syndicate." + GMNotes: '' + GUID: de3bd5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: O'Bannion's Thug + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.137052 + posY: 1.700631 + posZ: 4.79863548 + rotX: 359.920135 + rotY: 269.999878 + rotZ: 0.016896477 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232824 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: "\tHuman. Criminal. Syndicate." + GMNotes: '' + GUID: de3bd5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: O'Bannion's Thug + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.09011388 + posY: 1.71127486 + posZ: 4.866368 + rotX: 359.9204 + rotY: 269.999878 + rotZ: 0.0165366847 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 232826 +- 232826 +- 232825 +- 232825 +- 232824 +- 232824 +Description: '' +GMNotes: '' +GUID: be34b0 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: "\tNaomi's Crew" +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 15.9039946 + posY: 2.59336185 + posZ: -77.3687744 + rotX: 359.920135 + rotY: 270.000031 + rotZ: 0.016878359 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Neurotic Fear e89db8.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Neurotic Fear e89db8.yaml new file mode 100644 index 000000000..49abc8792 --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Neurotic Fear e89db8.yaml @@ -0,0 +1,344 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 232826 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723517659500931/4B5458A518FDAF55C44CD8423EC12304E3266A6C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: '947597' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Painful Reflection + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -18.6558971 + posY: 1.57049608 + posZ: -29.4339848 + rotX: 359.920837 + rotY: 269.999969 + rotZ: 0.0124607878 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232826 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723517659500931/4B5458A518FDAF55C44CD8423EC12304E3266A6C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: 6cb3f1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Painful Reflection + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -18.8719749 + posY: 1.724139 + posZ: -29.3834038 + rotX: 359.954041 + rotY: 269.999542 + rotZ: 359.993164 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232825 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723517659500931/4B5458A518FDAF55C44CD8423EC12304E3266A6C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: 8e7b73 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Melancholy + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -19.17409 + posY: 1.57282412 + posZ: -24.1210079 + rotX: 359.9204 + rotY: 269.999878 + rotZ: 0.0150721716 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232825 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723517659500931/4B5458A518FDAF55C44CD8423EC12304E3266A6C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: 8d3af5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Melancholy + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -19.190136 + posY: 1.728339 + posZ: -23.9574223 + rotX: 359.928223 + rotY: 269.999939 + rotZ: 0.00379046449 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232824 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723517659500931/4B5458A518FDAF55C44CD8423EC12304E3266A6C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: 5987af + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: "Voice of Tru\u2019nembra" + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -19.00153 + posY: 1.57379735 + posZ: -20.0205536 + rotX: 359.920319 + rotY: 270.000061 + rotZ: 0.0155211845 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232824 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723517659500931/4B5458A518FDAF55C44CD8423EC12304E3266A6C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: 0a0545 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: "Voice of Tru\u2019nembra" + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -18.9889278 + posY: 1.735667 + posZ: -19.9021416 + rotX: 359.924225 + rotY: 270.000031 + rotZ: 0.01324474 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232824 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723517659500931/4B5458A518FDAF55C44CD8423EC12304E3266A6C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: 040fdc + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: "Voice of Tru\u2019nembra" + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -18.9889069 + posY: 1.74957764 + posZ: -19.9021454 + rotX: 359.921265 + rotY: 270.000031 + rotZ: 0.0159616545 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723517659500931/4B5458A518FDAF55C44CD8423EC12304E3266A6C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 232826 +- 232826 +- 232825 +- 232825 +- 232824 +- 232824 +- 232824 +Description: '' +GMNotes: '' +GUID: e89db8 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Neurotic Fear +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 77.19337 + posY: 3.08812022 + posZ: -80.5968246 + rotX: 359.920135 + rotY: 269.989624 + rotZ: 0.0168954059 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Nightgaunts afb971.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Nightgaunts afb971.yaml new file mode 100644 index 000000000..334d723ba --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Nightgaunts afb971.yaml @@ -0,0 +1,215 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 231726 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 1e04da + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: On Wings of Darkness + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -13.4282417 + posY: 1.70155811 + posZ: 13.7778349 + rotX: 359.535278 + rotY: 269.9516 + rotZ: 181.449341 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231726 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 1d0c1c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: On Wings of Darkness + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -15.7923059 + posY: 1.73901558 + posZ: 4.52112341 + rotX: 359.919861 + rotY: 269.999969 + rotZ: 0.0123590212 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231725 + 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 + UniqueBack: false + Description: Monster. Nightgaunt. + GMNotes: '' + GUID: ab3719 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Hunting Nightgaunt + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -16.52605 + posY: 1.57874775 + posZ: 8.559591 + rotX: 359.920471 + rotY: 270.0019 + rotZ: 0.0145635763 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231725 + 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 + UniqueBack: false + Description: Monster. Nightgaunt. + GMNotes: '' + GUID: b75b70 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Hunting Nightgaunt + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -13.47085 + posY: 1.72509861 + posZ: 13.60628 + rotX: 359.9252 + rotY: 269.9989 + rotZ: 0.0176846832 + 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 + UniqueBack: false +DeckIDs: +- 231726 +- 231726 +- 231725 +- 231725 +Description: '' +GMNotes: '' +GUID: afb971 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Nightgaunts +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 14.8160439 + posY: 3.57803941 + posZ: -18.4091282 + rotX: 359.920135 + rotY: 269.9961 + rotZ: 0.0168820955 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Pillars of Judgement 050bae.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Pillars of Judgement 050bae.yaml new file mode 100644 index 000000000..7ce351594 --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Pillars of Judgement 050bae.yaml @@ -0,0 +1,602 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 265329 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/dduEXOZ.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949584217499447778/D520DDC422F8941F9935AAD9075566696E799853/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Hazard. + GMNotes: '' + GUID: 6d682c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ants! + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 108.580948 + posY: 1.406642 + posZ: 5.1806426 + rotX: 359.987427 + rotY: 270.0 + rotZ: 179.984543 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265329 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/dduEXOZ.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949584217499447778/D520DDC422F8941F9935AAD9075566696E799853/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Hazard. + GMNotes: '' + GUID: fe6b01 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ants! + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 106.447426 + posY: 1.40648806 + posZ: 7.48791265 + rotX: 359.987427 + rotY: 270.0 + rotZ: 179.984543 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265329 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/dduEXOZ.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949584217499447778/D520DDC422F8941F9935AAD9075566696E799853/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Hazard. + GMNotes: '' + GUID: 763f2b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ants! + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 106.37645 + posY: 1.40579438 + posZ: 10.1178446 + rotX: 359.987427 + rotY: 269.999969 + rotZ: 179.984543 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265328 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/dduEXOZ.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949584217499447778/D520DDC422F8941F9935AAD9075566696E799853/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Monster. Serpent. + GMNotes: '' + GUID: 9989f2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Basilisk + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 103.2061 + posY: 1.49203479 + posZ: 6.08133459 + rotX: 359.981934 + rotY: 270.008148 + rotZ: 182.355637 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265328 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/dduEXOZ.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949584217499447778/D520DDC422F8941F9935AAD9075566696E799853/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Monster. Serpent. + GMNotes: '' + GUID: 85007f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Basilisk + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 103.608253 + posY: 1.53121209 + posZ: 6.31729937 + rotX: 0.905814052 + rotY: 270.000854 + rotZ: 180.074371 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265327 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/dduEXOZ.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949584217499447778/D520DDC422F8941F9935AAD9075566696E799853/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Creature. Flora. + GMNotes: '' + GUID: af5d2c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Apex Strangleweed + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 103.367714 + posY: 1.6066457 + posZ: 6.087395 + rotX: 359.989716 + rotY: 270.018066 + rotZ: 177.734833 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265327 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/dduEXOZ.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949584217499447778/D520DDC422F8941F9935AAD9075566696E799853/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Creature. Flora. + GMNotes: '' + GUID: '894376' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Apex Strangleweed + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 103.13266 + posY: 1.52823079 + posZ: 6.42342234 + rotX: 359.993774 + rotY: 270.016235 + rotZ: 182.5538 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265326 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/dduEXOZ.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949584217499447778/D520DDC422F8941F9935AAD9075566696E799853/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Ancient. Ruins. + GMNotes: '' + GUID: 0673f6 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Stone Altar + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 102.672905 + posY: 1.5571698 + posZ: 6.33909273 + rotX: 359.9809 + rotY: 270.0203 + rotZ: 179.990067 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265325 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/dduEXOZ.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949584217499447778/D520DDC422F8941F9935AAD9075566696E799853/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Jungle. + GMNotes: '' + GUID: 7b73a5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Time-Wracked Woods + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 103.275444 + posY: 1.5543828 + posZ: 6.052133 + rotX: 359.975 + rotY: 270.024078 + rotZ: 179.974213 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265318 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/dduEXOZ.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949584217499447778/D520DDC422F8941F9935AAD9075566696E799853/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 2 + GMNotes: '' + GUID: 178da9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Opening the Maw + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 103.1004 + posY: 1.55642343 + posZ: 6.00984955 + rotX: 359.9876 + rotY: 270.8454 + rotZ: 179.9904 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265317 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/dduEXOZ.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949584217499447778/D520DDC422F8941F9935AAD9075566696E799853/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 1 + GMNotes: '' + GUID: 9e2e37 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Search for Pattern + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 103.228188 + posY: 1.81488192 + posZ: 5.640787 + rotX: 359.974365 + rotY: 270.058624 + rotZ: 165.98735 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265316 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/dduEXOZ.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949584217499447778/D520DDC422F8941F9935AAD9075566696E799853/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 2 + GMNotes: '' + GUID: 61410b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Setting Sun + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 103.007675 + posY: 1.55230963 + posZ: 5.77806854 + rotX: 0.00312731625 + rotY: 269.098755 + rotZ: 180.0083 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265315 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/dduEXOZ.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949584217499447778/D520DDC422F8941F9935AAD9075566696E799853/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 1 + GMNotes: '' + GUID: 1893f1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Jungle's Heart + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 103.163376 + posY: 1.40738094 + posZ: 6.13082027 + rotX: 359.982452 + rotY: 269.997284 + rotZ: 179.986038 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2653': + BackIsHidden: true + BackURL: https://i.imgur.com/dduEXOZ.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949584217499447778/D520DDC422F8941F9935AAD9075566696E799853/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 265329 +- 265329 +- 265329 +- 265328 +- 265328 +- 265327 +- 265327 +- 265326 +- 265325 +- 265318 +- 265317 +- 265316 +- 265315 +Description: '' +GMNotes: '' +GUID: 050bae +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Pillars of Judgement +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 15.6130114 + posY: 3.58415961 + posZ: -4.244787 + rotX: 359.919983 + rotY: 269.994354 + rotZ: 0.01689293 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Pnakotic Brotherhood 4845b8.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Pnakotic Brotherhood 4845b8.yaml new file mode 100644 index 000000000..b168f1ad7 --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Pnakotic Brotherhood 4845b8.yaml @@ -0,0 +1,301 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 12426 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '124': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Hex. + GMNotes: '' + GUID: d6a48e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Words of Power + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 105.47229 + posY: 1.41302526 + posZ: -26.5370121 + rotX: 359.983246 + rotY: 269.997681 + rotZ: 359.983459 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12426 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '124': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Hex. + GMNotes: '' + GUID: 866eba + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Words of Power + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 105.073769 + posY: 1.55812955 + posZ: -26.3022041 + rotX: 359.9757 + rotY: 269.9969 + rotZ: 359.966278 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12425 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '124': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Scheme. + GMNotes: '' + GUID: 89f4f6 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Shadowed + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 105.394173 + posY: 1.57565773 + posZ: -26.5924683 + rotX: 359.985962 + rotY: 270.000458 + rotZ: 359.9845 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12425 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '124': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Scheme. + GMNotes: '' + GUID: 04e5d3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Shadowed + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 105.19516 + posY: 1.56211627 + posZ: -26.8925056 + rotX: 359.9841 + rotY: 270.035339 + rotZ: 359.964783 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12424 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '124': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Humanoid. Cultist. + GMNotes: '' + GUID: 1f4f54 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Brotherhood Cultist + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 104.979752 + posY: 1.56002176 + posZ: -26.5550346 + rotX: 359.98822 + rotY: 270.004272 + rotZ: 359.982544 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12424 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '124': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Humanoid. Cultist. + GMNotes: '' + GUID: 62cc1f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Brotherhood Cultist + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 105.252594 + posY: 1.56255257 + posZ: -26.7338943 + rotX: 0.00564666232 + rotY: 270.048 + rotZ: 359.947021 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '124': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 12426 +- 12426 +- 12425 +- 12425 +- 12424 +- 12424 +Description: '' +GMNotes: '' +GUID: 4845b8 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Pnakotic Brotherhood +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.0200024 + posY: 3.48472667 + posZ: -4.344431 + rotX: 359.920135 + rotY: 270.000549 + rotZ: 0.0168646928 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Poison 995c5f.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Poison 995c5f.yaml new file mode 100644 index 000000000..f0d2ba3db --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Poison 995c5f.yaml @@ -0,0 +1,308 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 12331 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Poision. + GMNotes: '' + GUID: f3fe44 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Poisoned + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 111.452858 + posY: 1.40993047 + posZ: -20.4789047 + rotX: 359.983856 + rotY: 270.0102 + rotZ: 359.975281 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12331 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Poision. + GMNotes: '' + GUID: d8e72f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Poisoned + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 111.203728 + posY: 1.55516231 + posZ: -20.729353 + rotX: 0.00193368562 + rotY: 270.036316 + rotZ: 359.966248 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12331 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Poision. + GMNotes: '' + GUID: 1f5327 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Poisoned + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 111.038361 + posY: 1.572708 + posZ: -20.8297672 + rotX: 0.000437955867 + rotY: 270.0401 + rotZ: 359.967438 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12331 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Poision. + GMNotes: '' + GUID: 34788c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Poisoned + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 111.992722 + posY: 1.55893481 + posZ: -20.6752548 + rotX: 359.9848 + rotY: 270.003632 + rotZ: 359.979553 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234330 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2343': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Poison. + GMNotes: '' + GUID: b4f854 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Creeping Poison + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 111.255989 + posY: 1.62671483 + posZ: -20.94795 + rotX: 357.4069 + rotY: 269.992035 + rotZ: 359.978821 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234330 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2343': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Poison. + GMNotes: '' + GUID: 8e8fef + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Creeping Poison + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 111.317741 + posY: 1.55971062 + posZ: -20.66656 + rotX: 4.160312e-05 + rotY: 270.0323 + rotZ: 359.9613 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '123': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + '2343': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 12331 +- 12331 +- 12331 +- 12331 +- 234330 +- 234330 +Description: '' +GMNotes: '' +GUID: 995c5f +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Poison +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 12.4059925 + posY: 3.49251914 + posZ: -9.194561 + rotX: 359.920135 + rotY: 269.999725 + rotZ: 0.016875349 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Rainforest 81cf68.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Rainforest 81cf68.yaml new file mode 100644 index 000000000..33eb46bb4 --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Rainforest 81cf68.yaml @@ -0,0 +1,537 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 234306 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2343': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Power. + GMNotes: '' + GUID: 1ecad5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Voice of the Jungle + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 118.488647 + posY: 1.55328572 + posZ: -33.5232544 + rotX: 359.976044 + rotY: 270.0343 + rotZ: 180.0214 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234306 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2343': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Power. + GMNotes: '' + GUID: 53458a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Voice of the Jungle + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 118.637466 + posY: 1.54400635 + posZ: -32.5483665 + rotX: 0.008882008 + rotY: 270.007782 + rotZ: 180.271469 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234305 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2343': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Obstacle. + GMNotes: '' + GUID: cfda2a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Overgrowth + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 118.476913 + posY: 1.53412259 + posZ: -32.8256836 + rotX: 359.9841 + rotY: 270.000641 + rotZ: 179.881454 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234205 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2342': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Obstacle. + GMNotes: '' + GUID: e1873c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Overgrowth + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 118.561516 + posY: 1.57546377 + posZ: -33.0261841 + rotX: 359.9899 + rotY: 270.001221 + rotZ: 179.985 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12304 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Ancient. Ruins. + GMNotes: '' + GUID: 15b776 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Overgrown Ruins + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 118.984642 + posY: 1.56930888 + posZ: -33.7221832 + rotX: 359.993164 + rotY: 270.0065 + rotZ: 179.967682 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12303 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Ancient. Ruins. + GMNotes: '' + GUID: 9eb622 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Temple of the Fang + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 119.178009 + posY: 1.56401336 + posZ: -32.7182579 + rotX: 359.993042 + rotY: 269.9919 + rotZ: 179.966934 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234202 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2342': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Jungle. + GMNotes: '' + GUID: 1ec75c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Circuitous Trail + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 118.651016 + posY: 1.56153333 + posZ: -33.05216 + rotX: 359.984 + rotY: 270.0203 + rotZ: 179.983353 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234201 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2342': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Jungle. + GMNotes: '' + GUID: d4df1b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: "Serpent\u2019s Haven" + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 119.432816 + posY: 1.56344211 + posZ: -33.284687 + rotX: 359.992035 + rotY: 269.998474 + rotZ: 179.984909 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234200 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2342': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Jungle. + GMNotes: '' + GUID: '227273' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Rope Bridge + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 118.975449 + posY: 1.57728839 + posZ: -33.5759964 + rotX: 359.99 + rotY: 270.000427 + rotZ: 179.981674 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 129969 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1299': + BackIsHidden: true + BackURL: https://i.imgur.com/RpzEfmS.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393194495/027101CA5C626EBA0E4F76F3F15569329F81DE3C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Jungle. + GMNotes: '' + GUID: '746983' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: River Canyon + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 119.194267 + posY: 1.52772677 + posZ: -33.092144 + rotX: -0.000396898016 + rotY: 270.0386 + rotZ: 181.786987 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 129968 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1299': + BackIsHidden: true + BackURL: https://i.imgur.com/RpzEfmS.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393194495/027101CA5C626EBA0E4F76F3F15569329F81DE3C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Jungle. + GMNotes: '' + GUID: 3b9b1a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Path of Thorns + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 119.397575 + posY: 1.41487837 + posZ: -33.4909172 + rotX: -0.00424454641 + rotY: 270.007 + rotZ: 179.978 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '123': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + '1299': + BackIsHidden: true + BackURL: https://i.imgur.com/RpzEfmS.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393194495/027101CA5C626EBA0E4F76F3F15569329F81DE3C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + '2342': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + '2343': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 234306 +- 234306 +- 234305 +- 234205 +- 12304 +- 12303 +- 234202 +- 234201 +- 234200 +- 129969 +- 129968 +Description: '' +GMNotes: '' +GUID: 81cf68 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Rainforest +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 16.3245754 + posY: 3.48069739 + posZ: -10.0256472 + rotX: 359.920135 + rotY: 269.999451 + rotZ: 0.016868921 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Rats 3f1614.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Rats 3f1614.yaml new file mode 100644 index 000000000..dcd1bee76 --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Rats 3f1614.yaml @@ -0,0 +1,172 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 231712 + 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 + UniqueBack: false + Description: Creature. + GMNotes: '' + GUID: ab3719 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Swarm of Rats + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 15.456192 + posY: 1.53138053 + posZ: -0.8908986 + rotX: 359.92038 + rotY: 270.0 + rotZ: 0.0147123663 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231712 + 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 + UniqueBack: false + Description: Creature. + GMNotes: '' + GUID: a2cf85 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Swarm of Rats + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 15.4186563 + posY: 1.68472993 + posZ: -0.738109052 + rotX: 359.913422 + rotY: 270.000122 + rotZ: 0.0100070881 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231712 + 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 + UniqueBack: false + Description: Creature. + GMNotes: '' + GUID: ab3719 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Swarm of Rats + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 15.4186554 + posY: 1.69875109 + posZ: -0.738129 + rotX: 359.918427 + rotY: 270.0001 + rotZ: 0.0155182732 + 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 + UniqueBack: false +DeckIDs: +- 231712 +- 231712 +- 231712 +Description: '' +GMNotes: '' +GUID: 3f1614 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Rats +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.38156 + posY: 3.57303715 + posZ: -18.8837032 + rotX: 359.920135 + rotY: 269.9918 + rotZ: 0.0168880746 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Realm of Death 8ee597.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Realm of Death 8ee597.yaml new file mode 100644 index 000000000..1b0845c12 --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Realm of Death 8ee597.yaml @@ -0,0 +1,215 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 231821 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. Spectral. + GMNotes: '' + GUID: 47147f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Shapes in the Mist + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -25.974844 + posY: 1.58076048 + posZ: -29.1853924 + rotX: 359.916321 + rotY: 269.977448 + rotZ: 0.01572173 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231821 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. Spectral. + GMNotes: '' + GUID: 3c04e0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Shapes in the Mist + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -24.9579411 + posY: 1.72431993 + posZ: -29.8048172 + rotX: 359.8922 + rotY: 269.971619 + rotZ: 0.06810118 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231820 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. Spectral. + GMNotes: '' + GUID: 278e46 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Realm of Torment + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -25.91995 + posY: 1.77833688 + posZ: -29.84826 + rotX: 359.884155 + rotY: 269.9732 + rotZ: 0.074736394 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231820 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. Spectral. + GMNotes: '' + GUID: e49187 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Realm of Torment + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -25.5189228 + posY: 1.92383051 + posZ: -29.7425785 + rotX: 359.8803 + rotY: 269.977753 + rotZ: 0.07589612 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 231821 +- 231821 +- 231820 +- 231820 +Description: '' +GMNotes: '' +GUID: 8ee597 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Realm of Death +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -0.05697107 + posY: 3.50379133 + posZ: -9.172975 + rotX: 359.920135 + rotY: 269.9777 + rotZ: 0.01690211 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Resurgent Evils ac6dbd.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Resurgent Evils ac6dbd.yaml new file mode 100644 index 000000000..9fc4a7a46 --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Resurgent Evils ac6dbd.yaml @@ -0,0 +1,172 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 233044 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: e3fba9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Resurgent Evils + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 8.283834 + posY: 1.54401064 + posZ: 7.933346 + rotX: 359.920135 + rotY: 269.999664 + rotZ: 0.0168762654 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233044 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: e6d9b2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Resurgent Evils + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 8.055629 + posY: 1.699255 + posZ: 7.93120241 + rotX: 359.920135 + rotY: 269.999664 + rotZ: 0.0168761984 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233044 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: e3fba9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Resurgent Evils + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 8.055629 + posY: 1.71649992 + posZ: 7.93120241 + rotX: 359.9212 + rotY: 269.999664 + rotZ: 0.01656634 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 233044 +- 233044 +- 233044 +Description: '' +GMNotes: '' +GUID: ac6dbd +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Resurgent Evils +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 12.044137 + posY: 2.585322 + posZ: -74.15269 + rotX: 359.920135 + rotY: 270.000427 + rotZ: 0.0168742836 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Return to Cult of Umôrdhoth 4cbc33.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Return to Cult of Umôrdhoth 4cbc33.yaml new file mode 100644 index 000000000..5450a43da --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Return to Cult of Umôrdhoth 4cbc33.yaml @@ -0,0 +1,172 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 277045 + 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 + UniqueBack: false + Description: The Inquisitive Historian + GMNotes: '' + GUID: 2f6d5c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Alma Hill + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -26.8877316 + posY: 1.60149372 + posZ: 36.9405861 + rotX: 359.9215 + rotY: 269.9995 + rotZ: 0.0105527695 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 277044 + 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 + UniqueBack: false + Description: The Crooked Cop + GMNotes: '' + GUID: 33870a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Billy Cooper + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -26.5962849 + posY: 1.74649262 + posZ: 36.55487 + rotX: 359.927429 + rotY: 270.000427 + rotZ: 0.009708078 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 277043 + 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 + UniqueBack: false + Description: Your Next-Door Neighbor + GMNotes: '' + GUID: ab3719 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Jeremiah Pierce + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 7.54655933 + posY: 1.70176232 + posZ: -12.9934 + rotX: 359.936829 + rotY: 269.999847 + rotZ: 0.0135993231 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2770': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 277045 +- 277044 +- 277043 +Description: '' +GMNotes: '' +GUID: 4cbc33 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: "Return to Cult of Um\xF4rdhoth" +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -9.706528 + posY: 2.55876374 + posZ: -70.17877 + rotX: 359.920135 + rotY: 269.991821 + rotZ: 0.0168912224 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Sands of Egypt a02026.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Sands of Egypt a02026.yaml new file mode 100644 index 000000000..2abdb9f2c --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Sands of Egypt a02026.yaml @@ -0,0 +1,1462 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 266139 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2661': + BackIsHidden: true + BackURL: https://i.imgur.com/r6F1mt2.jpg + FaceURL: https://i.imgur.com/CN9PXUd.jpg + NumHeight: 5 + NumWidth: 10 + UniqueBack: true + Description: Curse. Abyss. + GMNotes: '' + GUID: 401b98 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Abyssal Reach + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 111.764748 + posY: 1.40368664 + posZ: 3.078717 + rotX: 359.987427 + rotY: 270.00592 + rotZ: 359.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 266139 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2661': + BackIsHidden: true + BackURL: https://i.imgur.com/r6F1mt2.jpg + FaceURL: https://i.imgur.com/CN9PXUd.jpg + NumHeight: 5 + NumWidth: 10 + UniqueBack: true + Description: Curse. Abyss. + GMNotes: '' + GUID: e90dfd + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Abyssal Reach + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 111.272751 + posY: 1.40450168 + posZ: 0.461760968 + rotX: 359.987457 + rotY: 270.0058 + rotZ: 359.984528 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 266139 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2661': + BackIsHidden: true + BackURL: https://i.imgur.com/r6F1mt2.jpg + FaceURL: https://i.imgur.com/CN9PXUd.jpg + NumHeight: 5 + NumWidth: 10 + UniqueBack: true + Description: Curse. Abyss. + GMNotes: '' + GUID: c4f1ac + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Abyssal Reach + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 112.553955 + posY: 1.454404 + posZ: 0.7533091 + rotX: 359.9871 + rotY: 270.005859 + rotZ: 359.984344 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 266138 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2661': + BackIsHidden: true + BackURL: https://i.imgur.com/r6F1mt2.jpg + FaceURL: https://i.imgur.com/CN9PXUd.jpg + NumHeight: 5 + NumWidth: 10 + UniqueBack: true + Description: Power. + GMNotes: '' + GUID: 1cf015 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Black Wind + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 103.222229 + posY: 1.405728 + posZ: 2.466515 + rotX: 359.987427 + rotY: 270.00592 + rotZ: 359.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 266138 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2661': + BackIsHidden: true + BackURL: https://i.imgur.com/r6F1mt2.jpg + FaceURL: https://i.imgur.com/CN9PXUd.jpg + NumHeight: 5 + NumWidth: 10 + UniqueBack: true + Description: Power. + GMNotes: '' + GUID: c118b2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Black Wind + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 104.226761 + posY: 1.40468252 + posZ: 5.5247345 + rotX: 359.987427 + rotY: 270.005951 + rotZ: 359.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 266137 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2661': + BackIsHidden: true + BackURL: https://i.imgur.com/r6F1mt2.jpg + FaceURL: https://i.imgur.com/CN9PXUd.jpg + NumHeight: 5 + NumWidth: 10 + UniqueBack: true + Description: Curse. Abyss. + GMNotes: '' + GUID: 9c67a9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dark Sacrifice + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 108.307663 + posY: 1.40514076 + posZ: 0.502831459 + rotX: 359.987427 + rotY: 270.00592 + rotZ: 359.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 266137 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2661': + BackIsHidden: true + BackURL: https://i.imgur.com/r6F1mt2.jpg + FaceURL: https://i.imgur.com/CN9PXUd.jpg + NumHeight: 5 + NumWidth: 10 + UniqueBack: true + Description: Curse. Abyss. + GMNotes: '' + GUID: 9283d5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dark Sacrifice + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 108.419174 + posY: 1.40624368 + posZ: -3.676454 + rotX: 359.987427 + rotY: 270.00592 + rotZ: 359.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 266136 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2661': + BackIsHidden: true + BackURL: https://i.imgur.com/r6F1mt2.jpg + FaceURL: https://i.imgur.com/CN9PXUd.jpg + NumHeight: 5 + NumWidth: 10 + UniqueBack: true + Description: Curse. Abyss. + GMNotes: '' + GUID: d3ee15 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Slumber + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 105.983589 + posY: 1.40620255 + posZ: -1.54122639 + rotX: 359.987427 + rotY: 270.00592 + rotZ: 359.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 266136 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2661': + BackIsHidden: true + BackURL: https://i.imgur.com/r6F1mt2.jpg + FaceURL: https://i.imgur.com/CN9PXUd.jpg + NumHeight: 5 + NumWidth: 10 + UniqueBack: true + Description: Curse. Abyss. + GMNotes: '' + GUID: 7eda6c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Slumber + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 107.604233 + posY: 1.4068253 + posZ: -5.16969728 + rotX: 359.987427 + rotY: 270.00592 + rotZ: 359.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 266135 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2661': + BackIsHidden: true + BackURL: https://i.imgur.com/r6F1mt2.jpg + FaceURL: https://i.imgur.com/CN9PXUd.jpg + NumHeight: 5 + NumWidth: 10 + UniqueBack: true + Description: Power. + GMNotes: '' + GUID: 500bf1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Swarm of Locusts + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 105.789612 + posY: 1.40543532 + posZ: 1.46101308 + rotX: 359.987427 + rotY: 270.005981 + rotZ: 359.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 266135 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2661': + BackIsHidden: true + BackURL: https://i.imgur.com/r6F1mt2.jpg + FaceURL: https://i.imgur.com/CN9PXUd.jpg + NumHeight: 5 + NumWidth: 10 + UniqueBack: true + Description: Power. + GMNotes: '' + GUID: 7330f5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Swarm of Locusts + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 104.146652 + posY: 1.40681064 + posZ: -2.29990029 + rotX: 359.987427 + rotY: 270.005981 + rotZ: 359.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 266135 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2661': + BackIsHidden: true + BackURL: https://i.imgur.com/r6F1mt2.jpg + FaceURL: https://i.imgur.com/CN9PXUd.jpg + NumHeight: 5 + NumWidth: 10 + UniqueBack: true + Description: Power. + GMNotes: '' + GUID: 1f2bda + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Swarm of Locusts + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 109.952225 + posY: 1.40561056 + posZ: -2.57813287 + rotX: 359.987427 + rotY: 270.00592 + rotZ: 359.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 266134 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2661': + BackIsHidden: true + BackURL: https://i.imgur.com/r6F1mt2.jpg + FaceURL: https://i.imgur.com/CN9PXUd.jpg + NumHeight: 5 + NumWidth: 10 + UniqueBack: true + Description: Scheme. + GMNotes: '' + GUID: 7fde12 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Terror Under the Pyramids + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 99.92975 + posY: 1.40878832 + posZ: -6.19831 + rotX: 359.987427 + rotY: 270.005951 + rotZ: 359.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 266134 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2661': + BackIsHidden: true + BackURL: https://i.imgur.com/r6F1mt2.jpg + FaceURL: https://i.imgur.com/CN9PXUd.jpg + NumHeight: 5 + NumWidth: 10 + UniqueBack: true + Description: Scheme. + GMNotes: '' + GUID: ade6e9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Terror Under the Pyramids + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 99.96467 + posY: 1.53950012 + posZ: -11.3978786 + rotX: 359.987427 + rotY: 270.018372 + rotZ: 353.166718 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 266134 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2661': + BackIsHidden: true + BackURL: https://i.imgur.com/r6F1mt2.jpg + FaceURL: https://i.imgur.com/CN9PXUd.jpg + NumHeight: 5 + NumWidth: 10 + UniqueBack: true + Description: Scheme. + GMNotes: '' + GUID: '563177' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Terror Under the Pyramids + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 100.31234 + posY: 1.41043 + posZ: -12.6348228 + rotX: 359.98642 + rotY: 270.005463 + rotZ: 359.984131 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 266133 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2661': + BackIsHidden: true + BackURL: https://i.imgur.com/r6F1mt2.jpg + FaceURL: https://i.imgur.com/CN9PXUd.jpg + NumHeight: 5 + NumWidth: 10 + UniqueBack: true + Description: Hazard. + GMNotes: '' + GUID: 3cbc9d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Sandstorm + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 104.1028 + posY: 1.40746439 + posZ: -4.68969154 + rotX: 359.9874 + rotY: 270.005981 + rotZ: 359.984528 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 266133 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2661': + BackIsHidden: true + BackURL: https://i.imgur.com/r6F1mt2.jpg + FaceURL: https://i.imgur.com/CN9PXUd.jpg + NumHeight: 5 + NumWidth: 10 + UniqueBack: true + Description: Hazard. + GMNotes: '' + GUID: 6a03b8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Sandstorm + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 104.135635 + posY: 1.55408573 + posZ: -6.16795444 + rotX: 359.9865 + rotY: 270.005768 + rotZ: 359.984528 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 266133 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2661': + BackIsHidden: true + BackURL: https://i.imgur.com/r6F1mt2.jpg + FaceURL: https://i.imgur.com/CN9PXUd.jpg + NumHeight: 5 + NumWidth: 10 + UniqueBack: true + Description: Hazard. + GMNotes: '' + GUID: 676e6a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Sandstorm + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 102.225349 + posY: 1.40871572 + posZ: -7.797443 + rotX: 359.987427 + rotY: 270.005951 + rotZ: 359.984528 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 266132 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2661': + BackIsHidden: true + BackURL: https://i.imgur.com/r6F1mt2.jpg + FaceURL: https://i.imgur.com/CN9PXUd.jpg + NumHeight: 5 + NumWidth: 10 + UniqueBack: true + Description: Power. + GMNotes: '' + GUID: 5c2807 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Eclipse + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 103.568939 + posY: 1.4067421 + posZ: -1.57518685 + rotX: 359.987427 + rotY: 270.006 + rotZ: 359.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 266132 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2661': + BackIsHidden: true + BackURL: https://i.imgur.com/r6F1mt2.jpg + FaceURL: https://i.imgur.com/CN9PXUd.jpg + NumHeight: 5 + NumWidth: 10 + UniqueBack: true + Description: Power. + GMNotes: '' + GUID: 8948ac + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Eclipse + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 105.557129 + posY: 1.40734828 + posZ: -5.441262 + rotX: 359.987427 + rotY: 270.006 + rotZ: 359.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 266132 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2661': + BackIsHidden: true + BackURL: https://i.imgur.com/r6F1mt2.jpg + FaceURL: https://i.imgur.com/CN9PXUd.jpg + NumHeight: 5 + NumWidth: 10 + UniqueBack: true + Description: Power. + GMNotes: '' + GUID: f210df + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Eclipse + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 105.829941 + posY: 1.4080708 + posZ: -8.342574 + rotX: 359.987427 + rotY: 270.006 + rotZ: 359.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 266131 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2661': + BackIsHidden: true + BackURL: https://i.imgur.com/r6F1mt2.jpg + FaceURL: https://i.imgur.com/CN9PXUd.jpg + NumHeight: 5 + NumWidth: 10 + UniqueBack: true + Description: Monster. + GMNotes: '' + GUID: bc639e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Thing in the Sarcophagus + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 97.65327 + posY: 1.48622966 + posZ: -1.36814868 + rotX: 357.209076 + rotY: 270.008759 + rotZ: 179.983246 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 266131 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2661': + BackIsHidden: true + BackURL: https://i.imgur.com/r6F1mt2.jpg + FaceURL: https://i.imgur.com/CN9PXUd.jpg + NumHeight: 5 + NumWidth: 10 + UniqueBack: true + Description: Monster. + GMNotes: '' + GUID: c4dd7a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Thing in the Sarcophagus + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 98.014595 + posY: 1.40995169 + posZ: 1.51382911 + rotX: 359.987427 + rotY: 270.0 + rotZ: 179.984543 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 266130 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2661': + BackIsHidden: true + BackURL: https://i.imgur.com/r6F1mt2.jpg + FaceURL: https://i.imgur.com/CN9PXUd.jpg + NumHeight: 5 + NumWidth: 10 + UniqueBack: true + Description: Monster. Dreamlands. + GMNotes: '' + GUID: d113d1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Abyssal Revenant + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 104.273727 + posY: 1.534247 + posZ: 10.3262253 + rotX: 359.9734 + rotY: 269.985474 + rotZ: 179.984451 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 266129 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2661': + BackIsHidden: true + BackURL: https://i.imgur.com/r6F1mt2.jpg + FaceURL: https://i.imgur.com/CN9PXUd.jpg + NumHeight: 5 + NumWidth: 10 + UniqueBack: true + Description: Monster. Dreamlands. + GMNotes: '' + GUID: 173e8a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Abyssal Revenant + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 103.921234 + posY: 1.52458978 + posZ: 10.6535187 + rotX: 359.980072 + rotY: 270.004456 + rotZ: 179.990173 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 266128 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2661': + BackIsHidden: true + BackURL: https://i.imgur.com/r6F1mt2.jpg + FaceURL: https://i.imgur.com/CN9PXUd.jpg + NumHeight: 5 + NumWidth: 10 + UniqueBack: true + Description: Expedition. Desert. Ruins. + GMNotes: '' + GUID: e5e2f5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Sandswept Ruins + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 104.015785 + posY: 1.56677771 + posZ: 10.9518595 + rotX: 359.988678 + rotY: 269.974426 + rotZ: 179.940353 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 266127 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2661': + BackIsHidden: true + BackURL: https://i.imgur.com/r6F1mt2.jpg + FaceURL: https://i.imgur.com/CN9PXUd.jpg + NumHeight: 5 + NumWidth: 10 + UniqueBack: true + Description: Expedition. Desert. + GMNotes: '' + GUID: fb6b7a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Desert Oasis + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 104.149567 + posY: 1.56076884 + posZ: 10.3002863 + rotX: 359.9916 + rotY: 270.038177 + rotZ: 179.9623 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 266126 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2661': + BackIsHidden: true + BackURL: https://i.imgur.com/r6F1mt2.jpg + FaceURL: https://i.imgur.com/CN9PXUd.jpg + NumHeight: 5 + NumWidth: 10 + UniqueBack: true + Description: Expedition. Desert. Ruins. + GMNotes: '' + GUID: 6dd75b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Faceless Sphinx + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 104.061409 + posY: 1.55546522 + posZ: 10.3812437 + rotX: 359.982025 + rotY: 270.00235 + rotZ: 179.980286 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 266125 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2661': + BackIsHidden: true + BackURL: https://i.imgur.com/r6F1mt2.jpg + FaceURL: https://i.imgur.com/CN9PXUd.jpg + NumHeight: 5 + NumWidth: 10 + UniqueBack: true + Description: Expedition. Ruins. + GMNotes: '' + GUID: 46ecbb + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Untouched Vault + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 103.9812 + posY: 1.55318522 + posZ: 10.4010134 + rotX: 359.977173 + rotY: 269.988281 + rotZ: 179.93602 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 266124 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2661': + BackIsHidden: true + BackURL: https://i.imgur.com/r6F1mt2.jpg + FaceURL: https://i.imgur.com/CN9PXUd.jpg + NumHeight: 5 + NumWidth: 10 + UniqueBack: true + Description: Expedition. Desert. + GMNotes: '' + GUID: f8bc37 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dunes of the Sahara + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 103.693748 + posY: 1.55482483 + posZ: 9.793132 + rotX: 0.0151500134 + rotY: 270.000732 + rotZ: 180.010681 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 266123 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2661': + BackIsHidden: true + BackURL: https://i.imgur.com/r6F1mt2.jpg + FaceURL: https://i.imgur.com/CN9PXUd.jpg + NumHeight: 5 + NumWidth: 10 + UniqueBack: true + Description: Expedition. Desert. + GMNotes: '' + GUID: 5ea1c7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Sands of Dashur + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 104.0679 + posY: 1.56877065 + posZ: 10.1948185 + rotX: 359.98 + rotY: 269.9995 + rotZ: 179.984711 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 266122 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2661': + BackIsHidden: true + BackURL: https://i.imgur.com/r6F1mt2.jpg + FaceURL: https://i.imgur.com/CN9PXUd.jpg + NumHeight: 5 + NumWidth: 10 + UniqueBack: true + Description: Expedition. Desert. + GMNotes: '' + GUID: f8187f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Nile River + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 104.023247 + posY: 1.55127156 + posZ: 10.3988094 + rotX: 359.9703 + rotY: 270.023834 + rotZ: 179.976929 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 266121 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2661': + BackIsHidden: true + BackURL: https://i.imgur.com/r6F1mt2.jpg + FaceURL: https://i.imgur.com/CN9PXUd.jpg + NumHeight: 5 + NumWidth: 10 + UniqueBack: true + Description: Expedition. Cairo. Desert. + GMNotes: '' + GUID: 41f836 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Expedition Camp + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 103.999352 + posY: 1.40613282 + posZ: 10.730278 + rotX: 359.9837 + rotY: 270.015076 + rotZ: 179.976654 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2661': + BackIsHidden: true + BackURL: https://i.imgur.com/r6F1mt2.jpg + FaceURL: https://i.imgur.com/CN9PXUd.jpg + NumHeight: 5 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 266139 +- 266139 +- 266139 +- 266138 +- 266138 +- 266137 +- 266137 +- 266136 +- 266136 +- 266135 +- 266135 +- 266135 +- 266134 +- 266134 +- 266134 +- 266133 +- 266133 +- 266133 +- 266132 +- 266132 +- 266132 +- 266131 +- 266131 +- 266130 +- 266129 +- 266128 +- 266127 +- 266126 +- 266125 +- 266124 +- 266123 +- 266122 +- 266121 +Description: '' +GMNotes: '' +GUID: a02026 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Sands of Egypt +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 16.62297 + posY: 3.66922116 + posZ: -4.92832136 + rotX: 359.9193 + rotY: 269.9987 + rotZ: 0.0171032753 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Secret Doors 1921ac.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Secret Doors 1921ac.yaml new file mode 100644 index 000000000..ad4d4a6bb --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Secret Doors 1921ac.yaml @@ -0,0 +1,129 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 233045 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Obstacle. + GMNotes: '' + GUID: e3fba9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Secret Door + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 8.506233 + posY: 1.54346478 + posZ: 7.13301754 + rotX: 359.920135 + rotY: 269.999634 + rotZ: 0.0168786049 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233045 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Obstacle. + GMNotes: '' + GUID: '662570' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Secret Door + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 8.375493 + posY: 1.69850159 + posZ: 7.25795174 + rotX: 359.920135 + rotY: 269.999573 + rotZ: 0.0168786459 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 233045 +- 233045 +Description: '' +GMNotes: '' +GUID: 1921ac +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Secret Doors +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 12.1779423 + posY: 2.59149241 + posZ: -77.47788 + rotX: 359.920135 + rotY: 269.998169 + rotZ: 0.0168779436 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Secrets of the Universe d427d3.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Secrets of the Universe d427d3.yaml new file mode 100644 index 000000000..a76d3438f --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Secrets of the Universe d427d3.yaml @@ -0,0 +1,215 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 369124 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3691': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784110538844118232/E948D384460BD0291E7DC53C315709CF0E1321FE/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: 3c1b20 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Secrets of the Beyond + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 58.8443222 + posY: 1.35779 + posZ: 50.9475632 + rotX: 0.0216053631 + rotY: 269.999481 + rotZ: 0.01178095 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 369124 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3691': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784110538844118232/E948D384460BD0291E7DC53C315709CF0E1321FE/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: af86ae + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Secrets of the Beyond + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 58.7121658 + posY: 1.50282407 + posZ: 50.5226364 + rotX: 0.0208782945 + rotY: 269.999725 + rotZ: 0.00103899743 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 369123 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3691': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784110538844118232/E948D384460BD0291E7DC53C315709CF0E1321FE/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Cultist. Silver Twilight. + GMNotes: '' + GUID: be9d6c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Lodge Enforcer + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 58.5844727 + posY: 1.5199157 + posZ: 50.3753929 + rotX: 0.0302265584 + rotY: 269.998535 + rotZ: 0.0216109157 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 369123 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3691': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784110538844118232/E948D384460BD0291E7DC53C315709CF0E1321FE/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Cultist. Silver Twilight. + GMNotes: '' + GUID: be9d6c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Lodge Enforcer + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 58.7353172 + posY: 1.50654256 + posZ: 50.58267 + rotX: 0.0253733452 + rotY: 270.000427 + rotZ: 0.0166585371 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '3691': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784110538844118232/E948D384460BD0291E7DC53C315709CF0E1321FE/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 369124 +- 369124 +- 369123 +- 369123 +Description: '' +GMNotes: '' +GUID: d427d3 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Secrets of the Universe +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 49.39513 + posY: 2.58511829 + posZ: 40.36572 + rotX: 0.0208092816 + rotY: 269.999481 + rotZ: 0.01677001 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Serpents 40c51c.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Serpents 40c51c.yaml new file mode 100644 index 000000000..8a08dd111 --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Serpents 40c51c.yaml @@ -0,0 +1,351 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 234209 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2342': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Hazard. Poison. + GMNotes: '' + GUID: 4ec414 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Snake Bite + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 107.226814 + posY: 1.41422772 + posZ: -32.48908 + rotX: 359.984619 + rotY: 270.0101 + rotZ: 359.986328 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234309 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2343': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Hazard. Poison. + GMNotes: '' + GUID: fa161c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Snake Bite + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 107.494827 + posY: 1.63908458 + posZ: -32.33602 + rotX: 359.960663 + rotY: 269.9711 + rotZ: 355.1572 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234309 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2343': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Hazard. Poison. + GMNotes: '' + GUID: '180783' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Snake Bite + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 107.055229 + posY: 1.65049648 + posZ: -32.2482529 + rotX: 0.01185294 + rotY: 269.9655 + rotZ: 354.342743 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234308 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2343': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Creature. Serpent. + GMNotes: '' + GUID: '266843' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Boa Constrictor + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 106.796257 + posY: 1.588123 + posZ: -32.12004 + rotX: 359.994263 + rotY: 269.954529 + rotZ: 1.33810365 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234307 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2343': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Creature. Serpent. + GMNotes: '' + GUID: f460e3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Pit Viper + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 107.708458 + posY: 1.56103778 + posZ: -32.63066 + rotX: -0.00214207312 + rotY: 270.0184 + rotZ: 359.991028 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234307 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2343': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Creature. Serpent. + GMNotes: '' + GUID: 6f8db4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Pit Viper + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 107.637756 + posY: 1.56378973 + posZ: -32.6063271 + rotX: 359.993134 + rotY: 269.9707 + rotZ: 359.9239 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234307 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2343': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Creature. Serpent. + GMNotes: '' + GUID: '062575' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Pit Viper + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 107.158653 + posY: 1.56882882 + posZ: -32.4814644 + rotX: 359.987823 + rotY: 270.000671 + rotZ: 359.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2342': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + '2343': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 234209 +- 234309 +- 234309 +- 234308 +- 234307 +- 234307 +- 234307 +Description: '' +GMNotes: '' +GUID: 40c51c +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Serpents +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 15.8471632 + posY: 3.58344746 + posZ: -5.810678 + rotX: 359.919647 + rotY: 270.0004 + rotZ: 0.01736413 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Shattered Aeons e13f1b.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Shattered Aeons e13f1b.yaml new file mode 100644 index 000000000..a71a67e76 --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Shattered Aeons e13f1b.yaml @@ -0,0 +1,1612 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 265700 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2654': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: https://i.imgur.com/mtzND71.jpg + NumHeight: 2 + NumWidth: 2 + UniqueBack: false + Description: Item. Relic. + GMNotes: '' + GUID: 3ff610 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Relic of Ages + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 100.744606 + posY: 1.78859413 + posZ: 1.099486 + rotX: 359.991058 + rotY: 270.002747 + rotZ: 179.984818 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 260414 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2604': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/4vUPeDS.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: 7d2583 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Creeping Darkness + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 100.461594 + posY: 1.77889526 + posZ: 1.38027883 + rotX: -0.00514099 + rotY: 269.9953 + rotZ: 179.9875 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 260414 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2604': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/4vUPeDS.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: bcc344 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Creeping Darkness + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 100.273056 + posY: 1.769436 + posZ: 0.7964915 + rotX: 359.985382 + rotY: 270.005249 + rotZ: 179.985947 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 260412 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2604': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/4vUPeDS.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: b9445f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Wracked by Time + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 100.406113 + posY: 1.75867 + posZ: 0.859655261 + rotX: 359.98288 + rotY: 269.996216 + rotZ: 179.983246 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 260412 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2604': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/4vUPeDS.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: 35d4c5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Wracked by Time + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 100.553993 + posY: 1.75005484 + posZ: 1.040969 + rotX: 359.98056 + rotY: 270.00235 + rotZ: 179.9723 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 260412 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2604': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/4vUPeDS.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: b9445f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Wracked by Time + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 100.9807 + posY: 1.74015379 + posZ: 1.33668339 + rotX: 359.984039 + rotY: 270.001373 + rotZ: 179.973648 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 260415 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2604': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/4vUPeDS.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: fbb723 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Between Worlds + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 100.630104 + posY: 1.7306149 + posZ: 1.089205 + rotX: -0.000338933954 + rotY: 270.0157 + rotZ: 179.984451 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 260415 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2604': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/4vUPeDS.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: abd75a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Between Worlds + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 100.616348 + posY: 1.72081053 + posZ: 1.76738644 + rotX: 359.99295 + rotY: 269.993744 + rotZ: 179.983047 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 260413 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2604': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/4vUPeDS.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: 46f30b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Shattered Ages + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 100.792755 + posY: 1.71132123 + posZ: 0.85006845 + rotX: 359.986725 + rotY: 269.999847 + rotZ: 179.99054 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 260413 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2604': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/4vUPeDS.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: 4bb510 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Shattered Ages + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 100.752716 + posY: 1.70154965 + posZ: 1.42733967 + rotX: 0.015738748 + rotY: 269.9992 + rotZ: 179.935333 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 260410 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2604': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/4vUPeDS.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: false + Description: Monster. Extradimensional. + GMNotes: '' + GUID: 4dfc1c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Temporal Devourer + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 101.170349 + posY: 1.69180071 + posZ: 1.36009645 + rotX: 359.9886 + rotY: 270.0 + rotZ: 179.987473 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 260410 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2604': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/4vUPeDS.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: false + Description: Monster. Extradimensional. + GMNotes: '' + GUID: cc5c21 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Temporal Devourer + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 100.507675 + posY: 1.68220723 + posZ: 1.66922235 + rotX: 359.990631 + rotY: 270.0004 + rotZ: 179.987152 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 260411 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2604': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/4vUPeDS.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: false + Description: Monster. Abomination. Elite. + GMNotes: '' + GUID: eeff54 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Formless Spawn + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 100.803246 + posY: 1.6725688 + posZ: 1.37564468 + rotX: -0.000217988258 + rotY: 269.980774 + rotZ: 179.9849 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 260405 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2604': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/4vUPeDS.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: false + Description: Shattered. Present-Day. + GMNotes: '' + GUID: 512f93 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Plateau of Leng + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 100.399971 + posY: 1.66311634 + posZ: 0.72802496 + rotX: -0.0056582056 + rotY: 269.996918 + rotZ: 179.984436 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 260401 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2604': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/4vUPeDS.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: false + Description: Shattered. Ancient. + GMNotes: '' + GUID: '353475' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Valusia + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 100.689323 + posY: 1.653192 + posZ: 0.7354049 + rotX: 0.009993733 + rotY: 270.010223 + rotZ: 180.018692 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 260404 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2604': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/4vUPeDS.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: false + Description: Shattered. Ancient. + GMNotes: '' + GUID: 3b6d9c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Pnakotus + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 100.474144 + posY: 1.6436981 + posZ: 1.15229344 + rotX: 359.994141 + rotY: 269.99173 + rotZ: 179.993561 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 260408 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2604': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/4vUPeDS.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: false + Description: Shattered. Ancient. + GMNotes: '' + GUID: 7e6245 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Atlantis + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 100.773453 + posY: 1.6339916 + posZ: 1.26608634 + rotX: 359.9838 + rotY: 269.9712 + rotZ: 179.901367 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 260406 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2604': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/4vUPeDS.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: false + Description: Shattered. Ancient. + GMNotes: '' + GUID: 555dff + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Mu + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 100.390076 + posY: 1.624555 + posZ: 1.37583542 + rotX: 359.9686 + rotY: 270.027649 + rotZ: 179.986832 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 260403 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2604': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/4vUPeDS.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: false + Description: Shattered. Ancient. + GMNotes: '' + GUID: d6d845 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ruins of New York + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 100.533142 + posY: 1.61466813 + posZ: 1.33810115 + rotX: 359.988068 + rotY: 270.006165 + rotZ: 179.996765 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 260409 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2604': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/4vUPeDS.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: bbfc9c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: A Pocket in Time + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 100.201492 + posY: 1.60519338 + posZ: 1.16292834 + rotX: 359.984344 + rotY: 270.012268 + rotZ: 179.9774 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 260407 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2604': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/4vUPeDS.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: false + Description: Otherworld. + GMNotes: '' + GUID: 59695a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: City of the Unseen + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 100.205925 + posY: 1.5954361 + posZ: 1.22899687 + rotX: 359.9883 + rotY: 270.000244 + rotZ: 179.98645 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 260402 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2604': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/4vUPeDS.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: false + Description: Otherworld. + GMNotes: '' + GUID: 623fb1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: "Shores of R\u2019lyeh" + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 100.582886 + posY: 1.585712 + posZ: 0.758517742 + rotX: 359.9917 + rotY: 269.994263 + rotZ: 179.992737 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 260400 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2604': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/4vUPeDS.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: false + Description: Otherworld. + GMNotes: '' + GUID: 5db6b7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Yuggoth + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 100.950447 + posY: 1.57598388 + posZ: 1.08820343 + rotX: 359.989319 + rotY: 270.003174 + rotZ: 179.995255 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 260104 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2601': + BackIsHidden: true + BackURL: https://i.imgur.com/bQUL7Ev.jpg + FaceURL: https://i.imgur.com/Kw5u56P.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: true + Description: Humanoid. Cultist. Elite. + GMNotes: '' + GUID: 7f1430 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Alejandro Vela + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 100.441719 + posY: 1.56646311 + posZ: 0.8069625 + rotX: 359.989868 + rotY: 269.526337 + rotZ: 179.9799 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 260103 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2601': + BackIsHidden: true + BackURL: https://i.imgur.com/bQUL7Ev.jpg + FaceURL: https://i.imgur.com/Kw5u56P.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: true + Description: Humanoid. Monster. Serpent. Elite. + GMNotes: '' + GUID: 7727b0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ichtaca + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 100.6315 + posY: 1.62709522 + posZ: 1.25434709 + rotX: 359.992859 + rotY: 270.010437 + rotZ: 184.575882 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 260102 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2601': + BackIsHidden: true + BackURL: https://i.imgur.com/bQUL7Ev.jpg + FaceURL: https://i.imgur.com/Kw5u56P.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: true + Description: Unravelling the Threads + GMNotes: '' + GUID: 594b02 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Nexus of N'kai + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 100.439751 + posY: 1.54704511 + posZ: 1.33924174 + rotX: -0.003077067 + rotY: 269.969055 + rotZ: 179.964386 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265314 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2653': + BackIsHidden: true + BackURL: https://i.imgur.com/bQUL7Ev.jpg + FaceURL: https://i.imgur.com/Kw5u56P.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: true + Description: Act 4 + GMNotes: '' + GUID: 89f177 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Timelock + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 100.01329 + posY: 1.53749478 + posZ: 1.3151983 + rotX: 359.985535 + rotY: 269.9855 + rotZ: 179.983932 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265315 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2653': + BackIsHidden: true + BackURL: https://i.imgur.com/bQUL7Ev.jpg + FaceURL: https://i.imgur.com/Kw5u56P.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: true + Description: Act 4 + GMNotes: '' + GUID: 7f2934 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Paradise Lost + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 100.511116 + posY: 1.58352542 + posZ: 1.44801676 + rotX: 357.8526 + rotY: 269.688782 + rotZ: 179.995575 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265316 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2653': + BackIsHidden: true + BackURL: https://i.imgur.com/bQUL7Ev.jpg + FaceURL: https://i.imgur.com/Kw5u56P.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: true + Description: Act 4 + GMNotes: '' + GUID: ebb16e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Mend the Shatter + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 100.085022 + posY: 1.570292 + posZ: 1.53554976 + rotX: 359.990417 + rotY: 270.154327 + rotZ: 179.988159 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265313 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2653': + BackIsHidden: true + BackURL: https://i.imgur.com/bQUL7Ev.jpg + FaceURL: https://i.imgur.com/Kw5u56P.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: true + Description: Act 3 + GMNotes: '' + GUID: 716efa + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Ythian Relic + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 99.86871 + posY: 1.56400073 + posZ: 1.53660488 + rotX: 359.990082 + rotY: 269.14267 + rotZ: 179.988388 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265311 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2653': + BackIsHidden: true + BackURL: https://i.imgur.com/bQUL7Ev.jpg + FaceURL: https://i.imgur.com/Kw5u56P.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: true + Description: Act 2 + GMNotes: '' + GUID: b0369d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Search for the Brotherhood + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 100.038185 + posY: 1.5589776 + posZ: 1.53186846 + rotX: 359.990326 + rotY: 269.085358 + rotZ: 179.988571 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265309 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2653': + BackIsHidden: true + BackURL: https://i.imgur.com/bQUL7Ev.jpg + FaceURL: https://i.imgur.com/Kw5u56P.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: true + Description: Act 1 + GMNotes: '' + GUID: 7f17c8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Worlds Beyond + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 100.490585 + posY: 1.5563519 + posZ: 1.28187561 + rotX: 359.99 + rotY: 269.111755 + rotZ: 179.972351 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265307 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2653': + BackIsHidden: true + BackURL: https://i.imgur.com/bQUL7Ev.jpg + FaceURL: https://i.imgur.com/Kw5u56P.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: true + Description: Agenda 3 + GMNotes: '' + GUID: 6bc8a2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Snapped Threads + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 100.675636 + posY: 1.557823 + posZ: 2.05312324 + rotX: 359.978241 + rotY: 270.0017 + rotZ: 179.974014 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265306 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2653': + BackIsHidden: true + BackURL: https://i.imgur.com/bQUL7Ev.jpg + FaceURL: https://i.imgur.com/Kw5u56P.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: true + Description: Agenda 2 + GMNotes: '' + GUID: b22648 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Pendulous Threads + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 100.816551 + posY: 1.57173419 + posZ: 1.74279332 + rotX: 359.989838 + rotY: 269.9078 + rotZ: 179.987747 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265305 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2653': + BackIsHidden: true + BackURL: https://i.imgur.com/bQUL7Ev.jpg + FaceURL: https://i.imgur.com/Kw5u56P.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: true + Description: Agenda 1 + GMNotes: '' + GUID: 49a6b7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Threads of Time + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 100.19558 + posY: 1.554466 + posZ: 1.6815815 + rotX: 359.972229 + rotY: 270.008 + rotZ: 179.978943 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 260101 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2601': + BackIsHidden: true + BackURL: https://i.imgur.com/bQUL7Ev.jpg + FaceURL: https://i.imgur.com/Kw5u56P.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: true + Description: Shattered Aeons + GMNotes: '' + GUID: 9c631d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Scenario + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 100.41555 + posY: 1.40942144 + posZ: 1.3691566 + rotX: 359.983459 + rotY: 269.997467 + rotZ: 179.988281 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2601': + BackIsHidden: true + BackURL: https://i.imgur.com/bQUL7Ev.jpg + FaceURL: https://i.imgur.com/Kw5u56P.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: true + '2604': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/4vUPeDS.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: false + '2653': + BackIsHidden: true + BackURL: https://i.imgur.com/bQUL7Ev.jpg + FaceURL: https://i.imgur.com/Kw5u56P.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: true + '2657': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: https://i.imgur.com/mtzND71.jpg + NumHeight: 2 + NumWidth: 2 + UniqueBack: false +DeckIDs: +- 265700 +- 260414 +- 260414 +- 260412 +- 260412 +- 260412 +- 260415 +- 260415 +- 260413 +- 260413 +- 260410 +- 260410 +- 260411 +- 260405 +- 260401 +- 260404 +- 260408 +- 260406 +- 260403 +- 260409 +- 260407 +- 260402 +- 260400 +- 260104 +- 260103 +- 260102 +- 265314 +- 265315 +- 265316 +- 265313 +- 265311 +- 265309 +- 265307 +- 265306 +- 265305 +- 260101 +Description: '' +GMNotes: '' +GUID: e13f1b +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Shattered Aeons +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 14.4844923 + posY: 3.59480858 + posZ: -0.337334752 + rotX: 359.9201 + rotY: 270.010254 + rotZ: 0.016855808 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Silver Twilight Lodge 747a12.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Silver Twilight Lodge 747a12.yaml new file mode 100644 index 000000000..1c3d4b841 --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Silver Twilight Lodge 747a12.yaml @@ -0,0 +1,301 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 231812 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Scheme. + GMNotes: '' + GUID: 0eb939 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Mysteries of the Lodge + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -18.7109814 + posY: 1.56981552 + posZ: -32.18543 + rotX: 359.91922 + rotY: 269.979279 + rotZ: 0.0165627878 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231812 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Scheme. + GMNotes: '' + GUID: 7870f6 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Mysteries of the Lodge + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -18.6118813 + posY: 1.71404207 + posZ: -32.3841057 + rotX: 359.91098 + rotY: 269.979034 + rotZ: 0.0195768736 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231810 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Cultist. Silver Twilight. + GMNotes: '' + GUID: 408a82 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Lodge Neophyte + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -18.5851078 + posY: 1.73144269 + posZ: -32.35143 + rotX: 359.919037 + rotY: 269.979156 + rotZ: 0.01716643 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231810 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Cultist. Silver Twilight. + GMNotes: '' + GUID: '525275' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Lodge Neophyte + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -18.3490829 + posY: 1.71755159 + posZ: -31.918066 + rotX: 359.918579 + rotY: 269.9797 + rotZ: 0.0158215724 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231810 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Cultist. Silver Twilight. + GMNotes: '' + GUID: 8dac94 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Lodge Neophyte + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -18.6574612 + posY: 1.71596491 + posZ: -31.9956455 + rotX: 359.918976 + rotY: 269.979736 + rotZ: 0.0163928568 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231811 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Cultist. Silver Twilight. + GMNotes: '' + GUID: 3761ce + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Keeper of Secrets + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -18.7752514 + posY: 1.71879411 + posZ: -32.00056 + rotX: 359.919342 + rotY: 269.979553 + rotZ: 0.0157596618 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 231812 +- 231812 +- 231810 +- 231810 +- 231810 +- 231811 +Description: '' +GMNotes: '' +GUID: 747a12 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Silver Twilight Lodge +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 1.09008539 + posY: 3.5090158 + posZ: 4.39828968 + rotX: 359.920135 + rotY: 269.98053 + rotZ: 0.0168957263 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Single Group 048ed9.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Single Group 048ed9.yaml new file mode 100644 index 000000000..0992e2423 --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Single Group 048ed9.yaml @@ -0,0 +1,609 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 265121 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: '817446' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Paradox Effect + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 90.48285 + posY: 1.40516555 + posZ: 14.9248466 + rotX: 359.987427 + rotY: 270.0 + rotZ: 359.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265121 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: d50777 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Paradox Effect + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 90.6625443 + posY: 1.51327193 + posZ: 14.5725908 + rotX: 359.989868 + rotY: 270.000549 + rotZ: 357.11438 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265121 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: 86ca2a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Paradox Effect + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 90.61438 + posY: 1.56803632 + posZ: 14.68952 + rotX: 359.989746 + rotY: 269.999939 + rotZ: 0.0343201943 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265111 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false + Description: You Are Not Its First Victim, Or Its Last + GMNotes: '' + GUID: '817446' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Eixodolon's Pet + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 90.6282043 + posY: 1.55411279 + posZ: 14.835288 + rotX: 359.989929 + rotY: 270.0 + rotZ: 359.990265 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265108 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false + Description: Item. Script. + GMNotes: '' + GUID: '817446' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Decay Diagram + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 90.90858 + posY: 1.54964912 + posZ: 15.1913452 + rotX: 359.3183 + rotY: 269.996979 + rotZ: 359.223083 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265106 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false + Description: Item. Script. + GMNotes: '' + GUID: bc2822 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Hunger Diagram + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 90.73025 + posY: 1.55469048 + posZ: 15.0612688 + rotX: 359.9903 + rotY: 269.9998 + rotZ: 359.9904 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265104 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false + Description: Item. Script. + GMNotes: '' + GUID: '817446' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Rot Diagram + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 90.64038 + posY: 1.55980515 + posZ: 14.7245054 + rotX: 359.992279 + rotY: 270.001831 + rotZ: 359.9797 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12322 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Prison. + GMNotes: '' + GUID: 38826f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Chamber of Night + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 99.89206 + posY: 1.55854273 + posZ: 2.85692263 + rotX: 0.009751759 + rotY: 269.939667 + rotZ: 179.991425 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12320 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Prison. + GMNotes: '' + GUID: 9f6ed8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Chamber of Sorrows + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 100.135368 + posY: 1.556011 + posZ: 2.64147544 + rotX: 359.980927 + rotY: 269.982147 + rotZ: 179.9789 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12314 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 3 + GMNotes: '' + GUID: bc3569 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: 'The Escape ' + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 100.67614 + posY: 1.55809665 + posZ: 2.30646729 + rotX: 359.985 + rotY: 270.00647 + rotZ: 179.9762 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12309 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 1 + GMNotes: '' + GUID: 9e2b9c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Levers (Group C) + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 100.6905 + posY: 1.57151639 + posZ: 2.76586628 + rotX: 359.989471 + rotY: 269.636536 + rotZ: 179.98761 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12304 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 2 + GMNotes: '' + GUID: 8d52dd + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Agony and Despair + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 100.532288 + posY: 1.55420244 + posZ: 2.90084934 + rotX: 359.97226 + rotY: 270.00354 + rotZ: 179.985092 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12302 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 1 + GMNotes: '' + GUID: bce775 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Awakening + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 100.365784 + posY: 1.4091264 + posZ: 2.72964573 + rotX: 359.9858 + rotY: 269.763947 + rotZ: 179.986725 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false +DeckIDs: +- 265121 +- 265121 +- 265121 +- 265111 +- 265108 +- 265106 +- 265104 +- 12322 +- 12320 +- 12314 +- 12309 +- 12304 +- 12302 +Description: '' +GMNotes: '' +GUID: 048ed9 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Single Group +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 16.1411 + posY: 3.58313727 + posZ: -5.22379065 + rotX: 359.919525 + rotY: 269.999756 + rotZ: 0.0170921851 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Sins of the Past 0f202c.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Sins of the Past 0f202c.yaml new file mode 100644 index 000000000..2673be0c7 --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Sins of the Past 0f202c.yaml @@ -0,0 +1,258 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 231626 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2316': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493212055041441/90F035BD69A7C5C6B6F43426DDDA3A09DFCBCBDF/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: 3fbc07 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Chilling Presence + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 18.2369041 + posY: 1.52615535 + posZ: -5.314041 + rotX: 359.920776 + rotY: 269.999817 + rotZ: 0.0115456637 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231626 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2316': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493212055041441/90F035BD69A7C5C6B6F43426DDDA3A09DFCBCBDF/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: 19a53b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Chilling Presence + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 18.0128059 + posY: 1.67861116 + posZ: -5.32069969 + rotX: 359.93573 + rotY: 269.999268 + rotZ: 0.0115820542 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231626 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2316': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493212055041441/90F035BD69A7C5C6B6F43426DDDA3A09DFCBCBDF/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: aa6826 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Chilling Presence + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 18.01289 + posY: 1.70457137 + posZ: -5.32073832 + rotX: 359.920227 + rotY: 269.999817 + rotZ: 0.0159090124 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231625 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2316': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493212055041441/90F035BD69A7C5C6B6F43426DDDA3A09DFCBCBDF/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: The First Victim + GMNotes: '' + GUID: 3fbc07 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Vengeful Specter + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 18.30134 + posY: 1.67541063 + posZ: -5.134549 + rotX: 359.938 + rotY: 269.9986 + rotZ: 0.0124833686 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231624 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2316': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493212055041441/90F035BD69A7C5C6B6F43426DDDA3A09DFCBCBDF/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Mournful Vision of the Past + GMNotes: '' + GUID: 3fbc07 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Time-Worn Locket + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 18.3462772 + posY: 1.91589439 + posZ: -5.252728 + rotX: 359.910217 + rotY: 269.994476 + rotZ: 13.8709364 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2316': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493212055041441/90F035BD69A7C5C6B6F43426DDDA3A09DFCBCBDF/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 231626 +- 231626 +- 231626 +- 231625 +- 231624 +Description: '' +GMNotes: '' +GUID: 0f202c +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Sins of the Past +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 11.8910017 + posY: 3.599884 + posZ: -1.47267985 + rotX: 359.917267 + rotY: 269.988647 + rotZ: 359.223 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Sorcery 6f6e72.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Sorcery 6f6e72.yaml new file mode 100644 index 000000000..d7c8e3df5 --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Sorcery 6f6e72.yaml @@ -0,0 +1,301 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 232811 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: d56ff7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Beyond the Veil + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.917338 + posY: 1.55012894 + posZ: 8.039298 + rotX: 359.920135 + rotY: 269.999969 + rotZ: 0.01687837 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232811 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: 9cb0b3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Beyond the Veil + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.89250565 + posY: 1.70636082 + posZ: 8.19774 + rotX: 359.920135 + rotY: 269.999969 + rotZ: 0.01687832 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232811 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: d56ff7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Beyond the Veil + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.89250565 + posY: 1.72360778 + posZ: 8.19774 + rotX: 359.920837 + rotY: 269.999969 + rotZ: 0.0158282 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232810 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: de3bd5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Visions of Futures Past + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.43124938 + posY: 1.55177522 + posZ: 11.3293571 + rotX: 359.920135 + rotY: 269.999969 + rotZ: 0.0168769564 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232810 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: 42d459 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Visions of Futures Past + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.15239716 + posY: 1.70869577 + posZ: 11.50471 + rotX: 359.920135 + rotY: 269.999969 + rotZ: 0.01687689 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232810 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: de3bd5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Visions of Futures Past + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.15239716 + posY: 1.72595167 + posZ: 11.50471 + rotX: 359.9199 + rotY: 269.999969 + rotZ: 0.0165576525 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 232811 +- 232811 +- 232811 +- 232810 +- 232810 +- 232810 +Description: '' +GMNotes: '' +GUID: 6f6e72 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Sorcery +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.4002819 + posY: 2.58944654 + posZ: -74.1123047 + rotX: 359.920135 + rotY: 269.997955 + rotZ: 0.0168805234 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Spectral Predators 842b8d.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Spectral Predators 842b8d.yaml new file mode 100644 index 000000000..dd512b4c8 --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Spectral Predators 842b8d.yaml @@ -0,0 +1,258 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 231816 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Spectral. + GMNotes: '' + GUID: c9136e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Shadow Hound + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -24.9589443 + posY: 1.57623374 + posZ: -40.001133 + rotX: 359.919617 + rotY: 269.9781 + rotZ: 0.0166504774 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231816 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Spectral. + GMNotes: '' + GUID: 9d53c1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Shadow Hound + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -24.7281628 + posY: 1.7203182 + posZ: -40.06545 + rotX: 359.911 + rotY: 269.9779 + rotZ: 0.0166180339 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231815 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Spectral. + GMNotes: '' + GUID: d32fa0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Nether Mist. + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -24.8214874 + posY: 1.73793507 + posZ: -39.8119354 + rotX: 359.9189 + rotY: 269.9784 + rotZ: 0.0163416639 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231817 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Omen. Spectral. + GMNotes: '' + GUID: aa8c0e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Whispers in the Dark + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -24.812706 + posY: 1.72420788 + posZ: -39.9615822 + rotX: 359.9189 + rotY: 269.9785 + rotZ: 0.0168172251 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231817 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Omen. Spectral. + GMNotes: '' + GUID: c4c440 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Whispers in the Dark + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -25.3439846 + posY: 1.72281778 + posZ: -40.31694 + rotX: 359.918823 + rotY: 269.9783 + rotZ: 0.01890598 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 231816 +- 231816 +- 231815 +- 231817 +- 231817 +Description: '' +GMNotes: '' +GUID: 842b8d +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Spectral Predators +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 0.466260433 + posY: 3.50589371 + posZ: -2.37580919 + rotX: 359.920135 + rotY: 269.9784 + rotZ: 0.0168995075 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Spiders 664c14.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Spiders 664c14.yaml new file mode 100644 index 000000000..b50199f38 --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Spiders 664c14.yaml @@ -0,0 +1,301 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 274127 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2741': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Creature. Spider. + GMNotes: '' + GUID: eb88d3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Swarm of Spiders + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -0.844609141 + posY: 1.33724856 + posZ: 54.5767746 + rotX: 0.02087849 + rotY: 270.009552 + rotZ: 0.01652528 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274127 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2741': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Creature. Spider. + GMNotes: '' + GUID: '127543' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Swarm of Spiders + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -0.996398449 + posY: 1.38670981 + posZ: 55.2076263 + rotX: 0.0273220912 + rotY: 270.00946 + rotZ: 359.992828 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274127 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2741': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Creature. Spider. + GMNotes: '' + GUID: '133060' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Swarm of Spiders + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -0.839634538 + posY: 1.49983108 + posZ: 54.6420059 + rotX: 0.0234334059 + rotY: 270.009674 + rotZ: 0.0152485454 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274128 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2741': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Obstacle. + GMNotes: '' + GUID: 23fc06 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Sickening Webs + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -0.8677753 + posY: 1.33790851 + posZ: 57.3880653 + rotX: 0.022798948 + rotY: 270.010162 + rotZ: 0.005616975 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274128 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2741': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Obstacle. + GMNotes: '' + GUID: 09c755 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Sickening Webs + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -0.6885309 + posY: 1.4827323 + posZ: 57.056572 + rotX: 0.007400155 + rotY: 270.009 + rotZ: 0.01982787 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274126 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2741': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Spider. + GMNotes: '' + GUID: 0f9c1e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Spider of Leng + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -1.136676 + posY: 1.486699 + posZ: 54.612114 + rotX: 0.0193328764 + rotY: 270.009644 + rotZ: 0.01589946 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2741': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 274127 +- 274127 +- 274127 +- 274128 +- 274128 +- 274126 +Description: '' +GMNotes: '' +GUID: 664c14 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Spiders +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 11.3560972 + posY: 3.39607382 + posZ: 41.9932 + rotX: 0.0208047573 + rotY: 270.010162 + rotZ: 0.0167724174 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Striking Fear 9c4c01.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Striking Fear 9c4c01.yaml new file mode 100644 index 000000000..a3cc9cfd4 --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Striking Fear 9c4c01.yaml @@ -0,0 +1,344 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- 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 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: f5c831 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: 97416f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: 0f4202 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: c70601 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: ab3719 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: 435a47 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: ab3719 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' +CustomDeck: + '2317': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 231718 +- 231718 +- 231717 +- 231717 +- 231716 +- 231716 +- 231716 +Description: '' +GMNotes: '' +GUID: 9c4c01 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Striking Fear +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.4108543 + posY: 3.57809734 + posZ: -15.1083269 + rotX: 359.920135 + rotY: 270.0008 + rotZ: 0.0168750416 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Temporal Flux aa9a85.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Temporal Flux aa9a85.yaml new file mode 100644 index 000000000..3fa7fdc76 --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Temporal Flux aa9a85.yaml @@ -0,0 +1,258 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 12320 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Hex. + GMNotes: '' + GUID: 5c3d58 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Lost in Time + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 11.9956064 + posY: 1.53671312 + posZ: 1.00855458 + rotX: 359.915924 + rotY: 269.993256 + rotZ: 0.01840952 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12320 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Hex. + GMNotes: '' + GUID: 5ae819 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Lost in Time + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 12.1089106 + posY: 1.67730081 + posZ: 1.38098049 + rotX: 359.9337 + rotY: 270.005066 + rotZ: 359.9755 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12319 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Hex. + GMNotes: '' + GUID: 29e1ba + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: A Tear in Time + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 11.93648 + posY: 1.69501567 + posZ: 1.34456229 + rotX: 359.934326 + rotY: 269.999176 + rotZ: 0.010789468 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12319 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Hex. + GMNotes: '' + GUID: 51ea78 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: A Tear in Time + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 11.8615036 + posY: 1.68144655 + posZ: 1.1147728 + rotX: 359.934723 + rotY: 270.006317 + rotZ: 0.0270947572 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12319 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Hex. + GMNotes: '' + GUID: b2f948 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: A Tear in Time + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 12.2340508 + posY: 1.67897737 + posZ: 1.48605072 + rotX: 359.916321 + rotY: 269.997131 + rotZ: 0.0128464671 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '123': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 12320 +- 12320 +- 12319 +- 12319 +- 12319 +Description: '' +GMNotes: '' +GUID: aa9a85 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Temporal Flux +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 9.82448 + posY: 3.497148 + posZ: -0.3721596 + rotX: 359.920135 + rotY: 269.994568 + rotZ: 0.0168773886 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Terror of the Vale cf2394.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Terror of the Vale cf2394.yaml new file mode 100644 index 000000000..a7919e309 --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Terror of the Vale cf2394.yaml @@ -0,0 +1,215 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 448416 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4484': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780749631103449151/FFAADF06C9BF9D1F4F3FE22D45CEBBB15D9B58CF/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: c8ca95 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dhole Tunnel + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 5.21576738 + posY: 1.54093337 + posZ: -16.1176567 + rotX: 359.922729 + rotY: 270.0033 + rotZ: -0.00108760851 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 448416 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4484': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780749631103449151/FFAADF06C9BF9D1F4F3FE22D45CEBBB15D9B58CF/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: 2472d3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dhole Tunnel + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 5.304054 + posY: 1.54002762 + posZ: -19.6999817 + rotX: 359.9201 + rotY: 270.00708 + rotZ: 0.0168609 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 448416 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4484': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780749631103449151/FFAADF06C9BF9D1F4F3FE22D45CEBBB15D9B58CF/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: ebbf2f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dhole Tunnel + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 5.321104 + posY: 1.76676619 + posZ: -19.30514 + rotX: 359.920227 + rotY: 270.0006 + rotZ: 3.433646 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 448415 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4484': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780749631103449151/FFAADF06C9BF9D1F4F3FE22D45CEBBB15D9B58CF/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Dhole. Elite. + GMNotes: '' + GUID: 4faa7f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Slithering Dhole + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 5.73627472 + posY: 1.68587208 + posZ: -29.244873 + rotX: 359.9356 + rotY: 270.0018 + rotZ: 0.0104480507 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '4484': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780749631103449151/FFAADF06C9BF9D1F4F3FE22D45CEBBB15D9B58CF/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 448416 +- 448416 +- 448416 +- 448415 +Description: '' +GMNotes: '' +GUID: cf2394 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Terror of the Vale +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 14.4037886 + posY: 2.583645 + posZ: -42.9886322 + rotX: 359.9201 + rotY: 270.007477 + rotZ: 0.016866928 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck The Bayou 201e0d.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck The Bayou 201e0d.yaml new file mode 100644 index 000000000..366d54d99 --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck The Bayou 201e0d.yaml @@ -0,0 +1,1790 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 3708 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '37': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/138879070086623108/44B0C8898A6D506FF4C651BEB8C15337B2A813F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: 79bc73 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ripples of the Surface + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 96.11044 + posY: 1.81563771 + posZ: 11.990139 + rotX: 0.002782535 + rotY: 269.978333 + rotZ: 180.03801 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3708 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '37': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/138879070086623108/44B0C8898A6D506FF4C651BEB8C15337B2A813F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: '290595' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ripples of the Surface + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 96.0846252 + posY: 1.80143249 + posZ: 11.50423 + rotX: 359.113129 + rotY: 269.972961 + rotZ: 181.588516 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3708 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '37': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/138879070086623108/44B0C8898A6D506FF4C651BEB8C15337B2A813F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: bddadf + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ripples of the Surface + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 96.0956 + posY: 1.98809683 + posZ: 11.9467564 + rotX: 0.0210224688 + rotY: 270.013367 + rotZ: 191.216843 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3704 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '37': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/138879070086623108/44B0C8898A6D506FF4C651BEB8C15337B2A813F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: 78cad4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dragged Under + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 95.96819 + posY: 1.78672945 + posZ: 11.8741407 + rotX: -0.005171597 + rotY: 269.972534 + rotZ: 179.962311 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3704 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '37': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/138879070086623108/44B0C8898A6D506FF4C651BEB8C15337B2A813F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: 5c297d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dragged Under + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 95.4837341 + posY: 1.777073 + posZ: 11.981926 + rotX: -0.004776053 + rotY: 269.995575 + rotZ: 179.920929 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3704 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '37': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/138879070086623108/44B0C8898A6D506FF4C651BEB8C15337B2A813F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: '225198' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dragged Under + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 96.23346 + posY: 1.76743829 + posZ: 11.5699434 + rotX: -0.004615859 + rotY: 269.978119 + rotZ: 179.977646 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3704 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '37': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/138879070086623108/44B0C8898A6D506FF4C651BEB8C15337B2A813F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: 59477d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dragged Under + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 96.277504 + posY: 1.75769126 + posZ: 11.8612251 + rotX: 359.986969 + rotY: 269.9884 + rotZ: 179.987244 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3710 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '37': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/138879070086623108/44B0C8898A6D506FF4C651BEB8C15337B2A813F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: b3b19e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Spectral Mist + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 96.17178 + posY: 1.74808919 + posZ: 11.7392359 + rotX: 0.000853928737 + rotY: 269.967529 + rotZ: 179.976822 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3710 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '37': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/138879070086623108/44B0C8898A6D506FF4C651BEB8C15337B2A813F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: f1b747 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Spectral Mist + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 95.3496246 + posY: 1.73865211 + posZ: 11.9196148 + rotX: 359.979462 + rotY: 270.012665 + rotZ: 179.967529 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3710 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '37': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/138879070086623108/44B0C8898A6D506FF4C651BEB8C15337B2A813F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: fcd44f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Spectral Mist + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 95.97058 + posY: 1.72877145 + posZ: 11.8046074 + rotX: 359.9874 + rotY: 269.989 + rotZ: 179.989975 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3702 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '37': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/138879070086623108/44B0C8898A6D506FF4C651BEB8C15337B2A813F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: a7fddb + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Cursed Swamp + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 95.81682 + posY: 1.86960351 + posZ: 11.9390812 + rotX: 0.01083823 + rotY: 269.976563 + rotZ: 188.7627 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3702 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '37': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/138879070086623108/44B0C8898A6D506FF4C651BEB8C15337B2A813F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: a3621c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Cursed Swamp + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 95.89244 + posY: 1.70960891 + posZ: 11.5516186 + rotX: 359.969543 + rotY: 269.96048 + rotZ: 179.972015 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3702 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '37': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/138879070086623108/44B0C8898A6D506FF4C651BEB8C15337B2A813F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: 005e92 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Cursed Swamp + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 96.50273 + posY: 1.72349739 + posZ: 12.1810226 + rotX: -0.00499628345 + rotY: 269.967651 + rotZ: 178.650818 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3711 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '37': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/138879070086623108/44B0C8898A6D506FF4C651BEB8C15337B2A813F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Creature. + GMNotes: '' + GUID: 9d5122 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Swamp Leech + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 95.5039444 + posY: 1.68972313 + posZ: 12.1592216 + rotX: 0.03530678 + rotY: 269.996 + rotZ: 180.011276 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3711 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '37': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/138879070086623108/44B0C8898A6D506FF4C651BEB8C15337B2A813F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Creature. + GMNotes: '' + GUID: b9dfc0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Swamp Leech + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 95.5024 + posY: 1.68059254 + posZ: 11.7789927 + rotX: 359.98703 + rotY: 269.984863 + rotZ: 179.9884 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3711 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '37': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/138879070086623108/44B0C8898A6D506FF4C651BEB8C15337B2A813F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Creature. + GMNotes: '' + GUID: b9dfc0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Swamp Leech + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 95.12939 + posY: 1.69603431 + posZ: 11.393609 + rotX: -0.004279594 + rotY: 270.0346 + rotZ: 178.6289 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3701 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '37': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/138879070086623108/44B0C8898A6D506FF4C651BEB8C15337B2A813F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Creature. + GMNotes: '' + GUID: fd576f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Bog Gator + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 96.07761 + posY: 1.6611414 + posZ: 11.536521 + rotX: 359.986542 + rotY: 269.986725 + rotZ: 179.992844 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3701 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '37': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/138879070086623108/44B0C8898A6D506FF4C651BEB8C15337B2A813F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Creature. + GMNotes: '' + GUID: eba049 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Bog Gator + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 96.1857452 + posY: 1.7507633 + posZ: 11.84924 + rotX: 3.60565042 + rotY: 269.964783 + rotZ: 179.948349 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265700 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '74': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/138879070086634183/2856A2C2077CFA2C61B9EF2498CAE6865024DB72/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Trap. + GMNotes: '' + GUID: 74840a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Bear Trap + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 96.01675 + posY: 1.63197923 + posZ: 12.1437464 + rotX: 0.00494211 + rotY: 269.979126 + rotZ: 179.97757 + 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 + UniqueBack: false + Description: Trap. + GMNotes: '' + GUID: c7b748 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Fishing Net + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 96.48252 + posY: 1.64165711 + posZ: 12.0242357 + rotX: 359.9892 + rotY: 269.999969 + rotZ: 179.9881 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265803 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '73': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/138879070086634183/2856A2C2077CFA2C61B9EF2498CAE6865024DB72/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Ally. Sorcerer. + GMNotes: '' + GUID: 37a76b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Lady Esprit + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 96.37452 + posY: 1.62238324 + posZ: 11.9784832 + rotX: 359.993835 + rotY: 269.994843 + rotZ: 179.985138 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 5312 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '53': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/138879070086620847/83DC8071AC8B3FA65B46B534FE722B43617C2700/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/138879070086619228/A78D316AA65C3087EFC6C696B19611C8A9D5126B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Unhallowed. + GMNotes: '' + GUID: 552a1d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Unhallowed Land + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 96.6787 + posY: 1.6116395 + posZ: 15.218606 + rotX: 359.983734 + rotY: 270.009338 + rotZ: 179.987152 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 5311 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '53': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/138879070086620847/83DC8071AC8B3FA65B46B534FE722B43617C2700/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/138879070086619228/A78D316AA65C3087EFC6C696B19611C8A9D5126B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Unhallowed. + GMNotes: '' + GUID: 15983c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Unhallowed Land + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 96.9603 + posY: 1.60194182 + posZ: 15.266715 + rotX: 359.983337 + rotY: 270.0012 + rotZ: 179.992584 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 5310 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '53': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/138879070086620847/83DC8071AC8B3FA65B46B534FE722B43617C2700/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/138879070086619228/A78D316AA65C3087EFC6C696B19611C8A9D5126B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Unhallowed. Bayou. + GMNotes: '' + GUID: 26b322 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Foul Swamp + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 96.11589 + posY: 1.59246218 + posZ: 15.2865553 + rotX: 0.0288821515 + rotY: 270.048279 + rotZ: 180.007324 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 5409 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '54': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/138879070086620847/83DC8071AC8B3FA65B46B534FE722B43617C2700/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/138879070086619228/A78D316AA65C3087EFC6C696B19611C8A9D5126B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Wilderness. + GMNotes: '' + GUID: 03b080 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Wilderness + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 96.5206757 + posY: 1.58277082 + posZ: 15.5397377 + rotX: 359.985748 + rotY: 270.004822 + rotZ: 179.984467 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 5408 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '54': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/138879070086620847/83DC8071AC8B3FA65B46B534FE722B43617C2700/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/138879070086619228/A78D316AA65C3087EFC6C696B19611C8A9D5126B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Wilderness. + GMNotes: '' + GUID: 3c5ea8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Wilderness + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 96.51885 + posY: 1.66623068 + posZ: 15.4592438 + rotX: -0.00504729664 + rotY: 270.0093 + rotZ: 175.00853 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 5407 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '54': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/138879070086620847/83DC8071AC8B3FA65B46B534FE722B43617C2700/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/138879070086619228/A78D316AA65C3087EFC6C696B19611C8A9D5126B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Wilderness. Bayou. + GMNotes: '' + GUID: 2b7d4c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Forgotten Marsh + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 96.95551 + posY: 1.661119 + posZ: 15.16496 + rotX: 359.9688 + rotY: 269.9867 + rotZ: 174.698242 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265906 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '55': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/138879070086620847/83DC8071AC8B3FA65B46B534FE722B43617C2700/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/138879070086619228/A78D316AA65C3087EFC6C696B19611C8A9D5126B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Riverside. + GMNotes: '' + GUID: ab9d69 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Riverside + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 96.3806458 + posY: 1.5538 + posZ: 15.2035551 + rotX: 0.0215503 + rotY: 270.04718 + rotZ: 180.0076 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265905 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '55': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/138879070086620847/83DC8071AC8B3FA65B46B534FE722B43617C2700/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/138879070086619228/A78D316AA65C3087EFC6C696B19611C8A9D5126B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Riverside. + GMNotes: '' + GUID: d5034e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Riverside + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 97.4063339 + posY: 1.54381227 + posZ: 15.3765936 + rotX: 359.9815 + rotY: 270.000427 + rotZ: 179.985565 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265904 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '55': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/138879070086620847/83DC8071AC8B3FA65B46B534FE722B43617C2700/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/138879070086619228/A78D316AA65C3087EFC6C696B19611C8A9D5126B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Riverside. Bayou. + GMNotes: '' + GUID: e103cf + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Brackish Waters + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 96.7821 + posY: 1.53432047 + posZ: 15.7048874 + rotX: 359.989624 + rotY: 270.0001 + rotZ: 179.990814 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 5603 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '56': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/138879070086620847/83DC8071AC8B3FA65B46B534FE722B43617C2700/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/138879070086619228/A78D316AA65C3087EFC6C696B19611C8A9D5126B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: New Orleans. + GMNotes: '' + GUID: '499281' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: New Orleans + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 96.4051361 + posY: 1.52449322 + posZ: 15.5532236 + rotX: 359.978516 + rotY: 269.997925 + rotZ: 180.042 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 5602 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '56': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/138879070086620847/83DC8071AC8B3FA65B46B534FE722B43617C2700/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/138879070086619228/A78D316AA65C3087EFC6C696B19611C8A9D5126B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: New Orleans. + GMNotes: '' + GUID: 5ab18a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: New Orleans + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 96.55859 + posY: 1.56710982 + posZ: 16.183651 + rotX: 359.987274 + rotY: 269.985626 + rotZ: 179.981064 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 5601 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '56': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/138879070086620847/83DC8071AC8B3FA65B46B534FE722B43617C2700/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/138879070086619228/A78D316AA65C3087EFC6C696B19611C8A9D5126B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: New Orleans. Bayou. + GMNotes: '' + GUID: 63f502 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Cursed Shores + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 96.19192 + posY: 1.56122208 + posZ: 15.3186045 + rotX: 0.000559572 + rotY: 269.996429 + rotZ: 180.003265 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 6604 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '66': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/138878581187514194/F3B95F32E3CAFFD36A09054AEE82B4A836D6D425/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/138879070086571028/341DEBA8DACCF6D8F27E19AD24111562E78117C2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 2 + GMNotes: '' + GUID: eb968b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Hunting the Rougarou + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 96.25003 + posY: 1.70756078 + posZ: 15.6913671 + rotX: -0.003039861 + rotY: 270.0255 + rotZ: 171.914627 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 6603 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '66': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/138878581187514194/F3B95F32E3CAFFD36A09054AEE82B4A836D6D425/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/138879070086571028/341DEBA8DACCF6D8F27E19AD24111562E78117C2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 1 + GMNotes: '' + GUID: 548a9a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Finding Lady Esprit + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 96.12794 + posY: 1.58463466 + posZ: 16.11088 + rotX: -0.00433354173 + rotY: 270.034851 + rotZ: 178.209625 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 6702 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '67': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/138878581187514194/F3B95F32E3CAFFD36A09054AEE82B4A836D6D425/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/138879070086571028/341DEBA8DACCF6D8F27E19AD24111562E78117C2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 3 + GMNotes: '' + GUID: 16c364 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Curse Spreads + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 96.34113 + posY: 1.70585382 + posZ: 15.2674551 + rotX: -0.00554312533 + rotY: 270.0221 + rotZ: 171.920471 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 6701 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '67': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/138878581187514194/F3B95F32E3CAFFD36A09054AEE82B4A836D6D425/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/138879070086571028/341DEBA8DACCF6D8F27E19AD24111562E78117C2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 2 + GMNotes: '' + GUID: ef1ce2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Rougarou Feeds + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 96.2938461 + posY: 1.721277 + posZ: 15.4722757 + rotX: 359.991669 + rotY: 270.020325 + rotZ: 171.896561 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 6700 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '67': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/138878581187514194/F3B95F32E3CAFFD36A09054AEE82B4A836D6D425/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/138879070086571028/341DEBA8DACCF6D8F27E19AD24111562E78117C2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 1 + GMNotes: '' + GUID: 0ea5ab + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: A Creature of the Bayou + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 96.3309 + posY: 1.70315087 + posZ: 15.6618423 + rotX: -0.005362979 + rotY: 270.024231 + rotZ: 171.915039 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 266000 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '38': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/138879070086620847/83DC8071AC8B3FA65B46B534FE722B43617C2700/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/138879070086619228/A78D316AA65C3087EFC6C696B19611C8A9D5126B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Curse of the Rougarou + GMNotes: '' + GUID: 9d0d56 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Scenario + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 96.44108 + posY: 1.40651608 + posZ: 15.92663 + rotX: 359.9914 + rotY: 270.021545 + rotZ: 179.96637 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2657': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/138879070086634183/2856A2C2077CFA2C61B9EF2498CAE6865024DB72/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '2658': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/138879070086634183/2856A2C2077CFA2C61B9EF2498CAE6865024DB72/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '2659': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/138879070086620847/83DC8071AC8B3FA65B46B534FE722B43617C2700/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/138879070086619228/A78D316AA65C3087EFC6C696B19611C8A9D5126B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + '2660': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/138879070086620847/83DC8071AC8B3FA65B46B534FE722B43617C2700/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/138879070086619228/A78D316AA65C3087EFC6C696B19611C8A9D5126B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + '37': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/138879070086623108/44B0C8898A6D506FF4C651BEB8C15337B2A813F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '53': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/138879070086620847/83DC8071AC8B3FA65B46B534FE722B43617C2700/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/138879070086619228/A78D316AA65C3087EFC6C696B19611C8A9D5126B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + '54': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/138879070086620847/83DC8071AC8B3FA65B46B534FE722B43617C2700/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/138879070086619228/A78D316AA65C3087EFC6C696B19611C8A9D5126B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + '56': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/138879070086620847/83DC8071AC8B3FA65B46B534FE722B43617C2700/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/138879070086619228/A78D316AA65C3087EFC6C696B19611C8A9D5126B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + '66': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/138878581187514194/F3B95F32E3CAFFD36A09054AEE82B4A836D6D425/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/138879070086571028/341DEBA8DACCF6D8F27E19AD24111562E78117C2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + '67': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/138878581187514194/F3B95F32E3CAFFD36A09054AEE82B4A836D6D425/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/138879070086571028/341DEBA8DACCF6D8F27E19AD24111562E78117C2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + '75': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/138879070086634183/2856A2C2077CFA2C61B9EF2498CAE6865024DB72/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 3708 +- 3708 +- 3708 +- 3704 +- 3704 +- 3704 +- 3704 +- 3710 +- 3710 +- 3710 +- 3702 +- 3702 +- 3702 +- 3711 +- 3711 +- 3711 +- 3701 +- 3701 +- 265700 +- 7502 +- 265803 +- 5312 +- 5311 +- 5310 +- 5409 +- 5408 +- 5407 +- 265906 +- 265905 +- 265904 +- 5603 +- 5602 +- 5601 +- 6604 +- 6603 +- 6702 +- 6701 +- 6700 +- 266000 +Description: '' +GMNotes: '' +GUID: 201e0d +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: The Bayou +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 16.0018234 + posY: 3.696093 + posZ: -4.504774 + rotX: 359.9193 + rotY: 269.981018 + rotZ: 0.0172250438 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck The Beyond 17fb80.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck The Beyond 17fb80.yaml new file mode 100644 index 000000000..240d3032c --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck The Beyond 17fb80.yaml @@ -0,0 +1,301 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 232829 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: "\tHex. Obstacle." + GMNotes: '' + GUID: 2d6b0f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Arcane Barrier + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.163001 + posY: 1.550591 + posZ: 6.036887 + rotX: 359.920135 + rotY: 269.9999 + rotZ: 0.0168760177 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232829 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: "\tHex. Obstacle." + GMNotes: '' + GUID: db1aee + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Arcane Barrier + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.36834574 + posY: 1.70658445 + posZ: 6.162498 + rotX: 359.920135 + rotY: 269.9999 + rotZ: 0.01687594 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232828 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: "\tHex. Terror." + GMNotes: '' + GUID: 851dc1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Terror from Beyond + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.0437057 + posY: 1.55163479 + posZ: 9.017338 + rotX: 359.920135 + rotY: 269.999939 + rotZ: 0.0168782789 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232828 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: "\tHex. Terror." + GMNotes: '' + GUID: 8906a9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Terror from Beyond + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.82296681 + posY: 1.708395 + posZ: 9.019801 + rotX: 359.920135 + rotY: 269.999939 + rotZ: 0.0168783069 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232827 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: de3bd5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Pushed into the Beyond + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.622002 + posY: 1.55319154 + posZ: 12.3073425 + rotX: 359.920135 + rotY: 269.9999 + rotZ: 0.0168778151 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232827 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: d91086 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Pushed into the Beyond + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.70456314 + posY: 1.70989764 + posZ: 12.504797 + rotX: 359.920135 + rotY: 269.9999 + rotZ: 0.0168777462 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 232829 +- 232829 +- 232828 +- 232828 +- 232827 +- 232827 +Description: '' +GMNotes: '' +GUID: 17fb80 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: "\tThe Beyond" +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 15.9843931 + posY: 2.59215617 + posZ: -81.08249 + rotX: 359.920135 + rotY: 269.999664 + rotZ: 0.01687768 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck The Boundary Beyond 33800f.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck The Boundary Beyond 33800f.yaml new file mode 100644 index 000000000..c3ac0c492 --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck The Boundary Beyond 33800f.yaml @@ -0,0 +1,1591 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 12742 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/ZgjFcAU.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/976604071425301191/B229EEF649F55376607371CA92C41F117D0862DC/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Item. Relic. + GMNotes: '' + GUID: 22aed2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Relic of Ages + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 94.41685 + posY: 1.78566909 + posZ: 17.0618534 + rotX: 359.992249 + rotY: 269.960938 + rotZ: 180.021576 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12741 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/ZgjFcAU.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/976604071425301191/B229EEF649F55376607371CA92C41F117D0862DC/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Hex. + GMNotes: '' + GUID: 1461d8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Timeline Destabilization + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 94.44421 + posY: 1.77611554 + posZ: 16.61628 + rotX: 359.986481 + rotY: 269.9992 + rotZ: 179.987091 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12741 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/ZgjFcAU.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/976604071425301191/B229EEF649F55376607371CA92C41F117D0862DC/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Hex. + GMNotes: '' + GUID: 93c195 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Timeline Destabilization + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 94.79245 + posY: 1.7665323 + posZ: 16.36651 + rotX: -0.004671531 + rotY: 269.9884 + rotZ: 179.9637 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12741 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/ZgjFcAU.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/976604071425301191/B229EEF649F55376607371CA92C41F117D0862DC/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Hex. + GMNotes: '' + GUID: 677b10 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Timeline Destabilization + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 94.43858 + posY: 1.7568078 + posZ: 16.69952 + rotX: 359.988739 + rotY: 270.003082 + rotZ: 179.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12740 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/ZgjFcAU.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/976604071425301191/B229EEF649F55376607371CA92C41F117D0862DC/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Hex. + GMNotes: '' + GUID: 03fa5a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Window to Another Time + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 94.23834 + posY: 1.71036482 + posZ: 16.7608547 + rotX: 0.0298711918 + rotY: 269.971863 + rotZ: 177.3324 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12740 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/ZgjFcAU.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/976604071425301191/B229EEF649F55376607371CA92C41F117D0862DC/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Hex. + GMNotes: '' + GUID: 71244a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Window to Another Time + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 94.15408 + posY: 1.73756492 + posZ: 16.7805729 + rotX: 359.972534 + rotY: 269.979 + rotZ: 179.98494 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12740 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/ZgjFcAU.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/976604071425301191/B229EEF649F55376607371CA92C41F117D0862DC/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Hex. + GMNotes: '' + GUID: 7fee93 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Window to Another Time + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 94.57947 + posY: 1.7277261 + posZ: 16.5313129 + rotX: 359.959625 + rotY: 270.033478 + rotZ: 180.018768 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12739 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/ZgjFcAU.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/976604071425301191/B229EEF649F55376607371CA92C41F117D0862DC/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Humanoid. Cultist. + GMNotes: '' + GUID: 0ce1b4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Hand of the Brotherhood + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 94.3191147 + posY: 1.71800232 + posZ: 16.77913 + rotX: 0.0143157616 + rotY: 270.040283 + rotZ: 180.007828 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12739 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/ZgjFcAU.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/976604071425301191/B229EEF649F55376607371CA92C41F117D0862DC/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Humanoid. Cultist. + GMNotes: '' + GUID: e64c28 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Hand of the Brotherhood + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 94.21287 + posY: 1.72830784 + posZ: 16.3630219 + rotX: 359.985016 + rotY: 269.9694 + rotZ: 178.902161 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12738 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/ZgjFcAU.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/976604071425301191/B229EEF649F55376607371CA92C41F117D0862DC/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Humanoid. Monster. Serpent. + GMNotes: '' + GUID: 737ecd + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: "Serpent of Tenochtitl\xE1n" + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 93.71264 + posY: 1.69845581 + posZ: 16.8429565 + rotX: 0.0302375387 + rotY: 270.040649 + rotZ: 179.978455 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12737 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/ZgjFcAU.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/976604071425301191/B229EEF649F55376607371CA92C41F117D0862DC/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Humanoid. Serpent. Servitor. Elite. + GMNotes: '' + GUID: 18f1d9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Padma Amrita + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 93.85208 + posY: 1.77091181 + posZ: 17.0013981 + rotX: 356.999969 + rotY: 269.950134 + rotZ: 180.023056 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12736 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/ZgjFcAU.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/976604071425301191/B229EEF649F55376607371CA92C41F117D0862DC/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: "Ancient. Tenochtitl\xE1n." + GMNotes: '' + GUID: 72603b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Sacred Woods + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 94.31341 + posY: 1.67951179 + posZ: 16.70578 + rotX: 359.988739 + rotY: 269.968719 + rotZ: 179.981079 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12735 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/ZgjFcAU.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/976604071425301191/B229EEF649F55376607371CA92C41F117D0862DC/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: "Ancient. Tenochtitl\xE1n." + GMNotes: '' + GUID: 4a2616 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Sacred Woods + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 94.30131 + posY: 1.66988 + posZ: 16.533268 + rotX: 359.982849 + rotY: 269.96814 + rotZ: 179.983124 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12734 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/ZgjFcAU.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/976604071425301191/B229EEF649F55376607371CA92C41F117D0862DC/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: "Ancient. Tenochtitl\xE1n." + GMNotes: '' + GUID: 11e31d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Lake Xochimilco + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 94.47679 + posY: 1.66016221 + posZ: 16.8481312 + rotX: 359.974731 + rotY: 269.980164 + rotZ: 179.958908 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12733 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/ZgjFcAU.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/976604071425301191/B229EEF649F55376607371CA92C41F117D0862DC/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: "Ancient. Tenochtitl\xE1n." + GMNotes: '' + GUID: e3a79d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Lake Xochimilco + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 94.54766 + posY: 1.65052366 + posZ: 16.7718639 + rotX: 359.97876 + rotY: 269.973633 + rotZ: 179.954575 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12732 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/ZgjFcAU.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/976604071425301191/B229EEF649F55376607371CA92C41F117D0862DC/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: "Ancient. Tenochtitl\xE1n." + GMNotes: '' + GUID: 72cf4d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: "Canals of Tenochtitl\xE1n" + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 94.41516 + posY: 1.64064443 + posZ: 16.1187515 + rotX: 359.983917 + rotY: 269.969879 + rotZ: 180.006088 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12731 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/ZgjFcAU.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/976604071425301191/B229EEF649F55376607371CA92C41F117D0862DC/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: "Ancient. Tenochtitl\xE1n." + GMNotes: '' + GUID: 0cec33 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: "Canals of Tenochtitl\xE1n" + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 94.55946 + posY: 1.63108361 + posZ: 17.211668 + rotX: 359.9866 + rotY: 269.969666 + rotZ: 179.985367 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12730 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/ZgjFcAU.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/976604071425301191/B229EEF649F55376607371CA92C41F117D0862DC/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: "Ancient. Tenochtitl\xE1n." + GMNotes: '' + GUID: b5d586 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Chapultepec Hill + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 94.0606461 + posY: 1.62162733 + posZ: 16.7732849 + rotX: 359.978027 + rotY: 269.977844 + rotZ: 179.976151 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12729 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/ZgjFcAU.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/976604071425301191/B229EEF649F55376607371CA92C41F117D0862DC/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: "Ancient. Tenochtitl\xE1n." + GMNotes: '' + GUID: cd7bd2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Chapultepec Hill + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 94.0487747 + posY: 1.61188173 + posZ: 17.127697 + rotX: 359.9868 + rotY: 270.006653 + rotZ: 179.957138 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12728 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/ZgjFcAU.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/976604071425301191/B229EEF649F55376607371CA92C41F117D0862DC/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: "Ancient. Tenochtitl\xE1n." + GMNotes: '' + GUID: b8d52b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: "Temples of Tenochtitl\xE1n" + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 94.09973 + posY: 1.60224473 + posZ: 16.8717842 + rotX: 359.989044 + rotY: 270.023438 + rotZ: 179.94249 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12727 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/ZgjFcAU.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/976604071425301191/B229EEF649F55376607371CA92C41F117D0862DC/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: "Ancient. Tenochtitl\xE1n." + GMNotes: '' + GUID: c097d8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: "Temples of Tenochtitl\xE1n" + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 94.36444 + posY: 1.59257615 + posZ: 16.5568352 + rotX: 359.986084 + rotY: 269.9683 + rotZ: 179.979538 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12726 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/ZgjFcAU.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/976604071425301191/B229EEF649F55376607371CA92C41F117D0862DC/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: "Ancient. Tenochtitl\xE1n." + GMNotes: '' + GUID: a17423 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Templo Mayor + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 94.12874 + posY: 1.582924 + posZ: 16.6292076 + rotX: 359.9892 + rotY: 269.997528 + rotZ: 179.982651 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12725 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/ZgjFcAU.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/976604071425301191/B229EEF649F55376607371CA92C41F117D0862DC/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: "Ancient. Tenochtitl\xE1n." + GMNotes: '' + GUID: f3c531 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Templo Mayor + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 94.2092 + posY: 1.52477944 + posZ: 17.4037762 + rotX: 359.9929 + rotY: 269.997681 + rotZ: 177.534592 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12724 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/ZgjFcAU.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/976604071425301191/B229EEF649F55376607371CA92C41F117D0862DC/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Mexico City. Present-Day. + GMNotes: '' + GUID: f06df7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: "Coyoac\xE1n" + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 94.37829 + posY: 1.56349778 + posZ: 16.95272 + rotX: 359.9874 + rotY: 269.9995 + rotZ: 179.986115 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12723 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/ZgjFcAU.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/976604071425301191/B229EEF649F55376607371CA92C41F117D0862DC/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Mexico City. Present-Day. + GMNotes: '' + GUID: bfd8f6 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Xochimilco + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 94.81279 + posY: 1.55356812 + posZ: 17.4284534 + rotX: 359.984833 + rotY: 270.001465 + rotZ: 179.978119 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12722 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/ZgjFcAU.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/976604071425301191/B229EEF649F55376607371CA92C41F117D0862DC/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Mexico City. Present-Day. + GMNotes: '' + GUID: c4a174 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: "Z\xF3calo" + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 94.06011 + posY: 1.5970062 + posZ: 16.9952183 + rotX: 358.535522 + rotY: 270.12854 + rotZ: 179.1916 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12721 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/ZgjFcAU.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/976604071425301191/B229EEF649F55376607371CA92C41F117D0862DC/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Mexico City. Present-Day. + GMNotes: '' + GUID: 4fce07 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Chapultepec Park + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 94.4215 + posY: 1.54829288 + posZ: 17.1131935 + rotX: 359.472443 + rotY: 270.021362 + rotZ: 179.9901 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12720 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/ZgjFcAU.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/976604071425301191/B229EEF649F55376607371CA92C41F117D0862DC/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Mexico City. Present-Day. + GMNotes: '' + GUID: 67b662 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Metropolitan Cathedral + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 94.45022 + posY: 1.52484822 + posZ: 16.9458218 + rotX: -0.00153678085 + rotY: 269.963928 + rotZ: 179.969742 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12719 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/ZgjFcAU.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/976604071425301191/B229EEF649F55376607371CA92C41F117D0862DC/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Mexico City. Present-Day. + GMNotes: '' + GUID: c26773 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Temple Ruins + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 93.66794 + posY: 1.56757188 + posZ: 16.9602089 + rotX: 359.986023 + rotY: 270.001221 + rotZ: 179.985611 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12718 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/ZgjFcAU.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/976604071425301191/B229EEF649F55376607371CA92C41F117D0862DC/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 3 + GMNotes: '' + GUID: d43edb + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Return Trip + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 94.00696 + posY: 1.56113815 + posZ: 17.2761 + rotX: 359.984955 + rotY: 269.8893 + rotZ: 179.997131 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12717 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/ZgjFcAU.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/976604071425301191/B229EEF649F55376607371CA92C41F117D0862DC/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 2 + GMNotes: '' + GUID: bdadde + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Past and Present + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 94.54945 + posY: 1.55612123 + posZ: 16.69725 + rotX: 359.9885 + rotY: 269.3757 + rotZ: 179.989517 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12716 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/ZgjFcAU.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/976604071425301191/B229EEF649F55376607371CA92C41F117D0862DC/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 1 + GMNotes: '' + GUID: 6f3fa1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Crossing the Threshold + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 95.0135956 + posY: 1.55333722 + posZ: 16.6873856 + rotX: 359.993347 + rotY: 269.9561 + rotZ: 179.982773 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12715 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/ZgjFcAU.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/976604071425301191/B229EEF649F55376607371CA92C41F117D0862DC/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 3 + GMNotes: '' + GUID: a92fa6 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Time Collapsing + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 94.4406052 + posY: 1.55549073 + posZ: 16.834486 + rotX: 359.990051 + rotY: 258.72168 + rotZ: 179.992325 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12714 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/ZgjFcAU.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/976604071425301191/B229EEF649F55376607371CA92C41F117D0862DC/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 2 + GMNotes: '' + GUID: c988f8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Barrier Is Thin + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 94.5367 + posY: 1.57345593 + posZ: 16.6255856 + rotX: 359.9913 + rotY: 269.409668 + rotZ: 179.970276 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12713 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/ZgjFcAU.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/976604071425301191/B229EEF649F55376607371CA92C41F117D0862DC/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 1 + GMNotes: '' + GUID: 9e6717 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Boundary, Broken + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 94.25224 + posY: 1.55163038 + posZ: 17.0401821 + rotX: 359.968628 + rotY: 270.143768 + rotZ: 179.966827 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12712 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/ZgjFcAU.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/976604071425301191/B229EEF649F55376607371CA92C41F117D0862DC/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: The Boundary Beyond + GMNotes: '' + GUID: fd8c43 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Scenario + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 94.3038254 + posY: 1.40663028 + posZ: 17.0217876 + rotX: 359.9805 + rotY: 270.008636 + rotZ: 179.9824 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/ZgjFcAU.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/976604071425301191/B229EEF649F55376607371CA92C41F117D0862DC/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 12742 +- 12741 +- 12741 +- 12741 +- 12740 +- 12740 +- 12740 +- 12739 +- 12739 +- 12738 +- 12737 +- 12736 +- 12735 +- 12734 +- 12733 +- 12732 +- 12731 +- 12730 +- 12729 +- 12728 +- 12727 +- 12726 +- 12725 +- 12724 +- 12723 +- 12722 +- 12721 +- 12720 +- 12719 +- 12718 +- 12717 +- 12716 +- 12715 +- 12714 +- 12713 +- 12712 +Description: '' +GMNotes: '' +GUID: 33800f +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: The Boundary Beyond +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 16.7240582 + posY: 3.5917 + posZ: -9.878418 + rotX: 359.920135 + rotY: 269.999847 + rotZ: 0.0168690551 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck The City of Archives 3a0a17.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck The City of Archives 3a0a17.yaml new file mode 100644 index 000000000..73d34e20a --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck The City of Archives 3a0a17.yaml @@ -0,0 +1,1935 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 265535 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/m12nk5a.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/954090355584194829/C6D55DDE5652940B4D5CE3163BD9CEDA16237961/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Madness. Paradox. + GMNotes: '' + GUID: 9bed6a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Out of Body Experience + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 100.696342 + posY: 1.547229 + posZ: 16.2115574 + rotX: 359.9883 + rotY: 270.00058 + rotZ: 179.98114 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265535 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/m12nk5a.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/954090355584194829/C6D55DDE5652940B4D5CE3163BD9CEDA16237961/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Madness. Paradox. + GMNotes: '' + GUID: 9bed6a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Out of Body Experience + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 100.69635 + posY: 1.55815125 + posZ: 16.2115612 + rotX: 359.988342 + rotY: 270.0006 + rotZ: 179.9807 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265535 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/m12nk5a.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/954090355584194829/C6D55DDE5652940B4D5CE3163BD9CEDA16237961/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Madness. Paradox. + GMNotes: '' + GUID: 31e37e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Out of Body Experience + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 100.696358 + posY: 1.5437057 + posZ: 16.2115936 + rotX: 359.9887 + rotY: 270.000671 + rotZ: 179.962723 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265535 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/m12nk5a.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/954090355584194829/C6D55DDE5652940B4D5CE3163BD9CEDA16237961/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Madness. Paradox. + GMNotes: '' + GUID: 9bed6a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Out of Body Experience + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 100.668633 + posY: 1.39907324 + posZ: 16.03148 + rotX: 359.980774 + rotY: 270.00058 + rotZ: 179.98764 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265534 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/m12nk5a.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/954090355584194829/C6D55DDE5652940B4D5CE3163BD9CEDA16237961/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Hex. + GMNotes: '' + GUID: 41e5c9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Captive Mind + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 112.638779 + posY: 1.40413809 + posZ: 11.1730461 + rotX: 359.9875 + rotY: 270.0 + rotZ: 179.984619 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265534 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/m12nk5a.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/954090355584194829/C6D55DDE5652940B4D5CE3163BD9CEDA16237961/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Hex. + GMNotes: '' + GUID: dedf7d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Captive Mind + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 113.607536 + posY: 1.55025208 + posZ: 10.5894785 + rotX: 359.9859 + rotY: 270.000122 + rotZ: 179.986008 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265533 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/m12nk5a.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/954090355584194829/C6D55DDE5652940B4D5CE3163BD9CEDA16237961/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Terror. + GMNotes: '' + GUID: 470d38 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Lost Humanity + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 109.890739 + posY: 1.40496814 + posZ: 10.31909 + rotX: 359.9874 + rotY: 270.0031 + rotZ: 179.984543 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265533 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/m12nk5a.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/954090355584194829/C6D55DDE5652940B4D5CE3163BD9CEDA16237961/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Terror. + GMNotes: '' + GUID: e8f268 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Lost Humanity + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 109.291313 + posY: 1.45485353 + posZ: 10.27326 + rotX: 359.9874 + rotY: 270.019531 + rotZ: 179.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265532 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/m12nk5a.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/954090355584194829/C6D55DDE5652940B4D5CE3163BD9CEDA16237961/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Injury. Terror. + GMNotes: '' + GUID: 66f462 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Cruel Interrogations + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 110.903969 + posY: 1.40463054 + posZ: 10.68327 + rotX: 359.987518 + rotY: 269.990082 + rotZ: 179.984467 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265532 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/m12nk5a.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/954090355584194829/C6D55DDE5652940B4D5CE3163BD9CEDA16237961/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Injury. Terror. + GMNotes: '' + GUID: dea5d3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Cruel Interrogations + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 113.308006 + posY: 1.61655319 + posZ: 11.1985064 + rotX: 356.430817 + rotY: 269.682129 + rotZ: 186.19754 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265532 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/m12nk5a.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/954090355584194829/C6D55DDE5652940B4D5CE3163BD9CEDA16237961/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Injury. Terror. + GMNotes: '' + GUID: e32948 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Cruel Interrogations + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 111.291008 + posY: 1.47921479 + posZ: 12.7747631 + rotX: 359.981079 + rotY: 270.009827 + rotZ: 175.984787 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265531 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/m12nk5a.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/954090355584194829/C6D55DDE5652940B4D5CE3163BD9CEDA16237961/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Power. Terror. + GMNotes: '' + GUID: 470a03 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Yithian Presence + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 112.149414 + posY: 1.40376782 + posZ: 12.9302635 + rotX: 359.987427 + rotY: 270.0 + rotZ: 179.984543 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265531 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/m12nk5a.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/954090355584194829/C6D55DDE5652940B4D5CE3163BD9CEDA16237961/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Power. Terror. + GMNotes: '' + GUID: '621078' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Yithian Presence + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 111.933441 + posY: 1.40460384 + posZ: 10.0067587 + rotX: 359.987427 + rotY: 270.0 + rotZ: 179.984543 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265531 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/m12nk5a.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/954090355584194829/C6D55DDE5652940B4D5CE3163BD9CEDA16237961/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Power. Terror. + GMNotes: '' + GUID: a9b607 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Yithian Presence + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 115.838516 + posY: 1.40315115 + posZ: 12.2130985 + rotX: 359.987427 + rotY: 270.000031 + rotZ: 179.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265530 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/m12nk5a.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/954090355584194829/C6D55DDE5652940B4D5CE3163BD9CEDA16237961/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Monster. Yithian. + GMNotes: '' + GUID: e7faab + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Scholar from Yith + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 110.272522 + posY: 1.40519476 + posZ: 9.168564 + rotX: 359.987427 + rotY: 270.0 + rotZ: 179.984543 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265530 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/m12nk5a.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/954090355584194829/C6D55DDE5652940B4D5CE3163BD9CEDA16237961/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Monster. Yithian. + GMNotes: '' + GUID: 312d52 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Scholar from Yith + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 109.30513 + posY: 1.4046725 + posZ: 11.8921614 + rotX: 359.987427 + rotY: 270.000031 + rotZ: 179.984543 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265530 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/m12nk5a.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/954090355584194829/C6D55DDE5652940B4D5CE3163BD9CEDA16237961/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Monster. Yithian. + GMNotes: '' + GUID: b0b1bb + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Scholar from Yith + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 112.687172 + posY: 1.40357 + posZ: 13.2260723 + rotX: 359.987427 + rotY: 270.0 + rotZ: 179.984543 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265529 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/m12nk5a.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/954090355584194829/C6D55DDE5652940B4D5CE3163BD9CEDA16237961/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Monster. Yithian. + GMNotes: '' + GUID: ff0f15 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Scientist of Yith + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 105.263779 + posY: 1.69665086 + posZ: 16.2934456 + rotX: 359.980316 + rotY: 269.978058 + rotZ: 179.994125 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265529 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/m12nk5a.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/954090355584194829/C6D55DDE5652940B4D5CE3163BD9CEDA16237961/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Monster. Yithian. + GMNotes: '' + GUID: e6edac + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Scientist of Yith + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 105.778412 + posY: 1.68034112 + posZ: 16.4246788 + rotX: -0.003753976 + rotY: 269.965027 + rotZ: 179.872849 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265528 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/m12nk5a.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/954090355584194829/C6D55DDE5652940B4D5CE3163BD9CEDA16237961/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Monster. Yithian. + GMNotes: '' + GUID: 0fcf87 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Keeper of the Great Library + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 106.0672 + posY: 1.67713511 + posZ: 16.0551262 + rotX: 359.988129 + rotY: 269.999146 + rotZ: 179.984833 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265528 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/m12nk5a.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/954090355584194829/C6D55DDE5652940B4D5CE3163BD9CEDA16237961/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Monster. Yithian. + GMNotes: '' + GUID: b35444 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Keeper of the Great Library + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 105.817482 + posY: 1.66949761 + posZ: 15.8694258 + rotX: 359.98877 + rotY: 269.99884 + rotZ: 179.974442 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265527 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/m12nk5a.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/954090355584194829/C6D55DDE5652940B4D5CE3163BD9CEDA16237961/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Ally. Yithian + GMNotes: '' + GUID: 8399dd + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Custodian + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 104.636848 + posY: 1.65818655 + posZ: 16.3616848 + rotX: 359.97644 + rotY: 269.968384 + rotZ: 180.0055 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265526 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/m12nk5a.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/954090355584194829/C6D55DDE5652940B4D5CE3163BD9CEDA16237961/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Ancient. Pnakotus. + GMNotes: '' + GUID: 18494c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Towers of Pnakotus + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 105.81752 + posY: 1.64817846 + posZ: 16.1049824 + rotX: 359.9726 + rotY: 270.044128 + rotZ: 179.954559 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265525 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/m12nk5a.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/954090355584194829/C6D55DDE5652940B4D5CE3163BD9CEDA16237961/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Ancient. Pnakotus. + GMNotes: '' + GUID: b80a66 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Deconstruction Room + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 105.797516 + posY: 1.67281175 + posZ: 16.1267872 + rotX: 359.959381 + rotY: 270.0294 + rotZ: 178.036713 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265524 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/m12nk5a.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/954090355584194829/C6D55DDE5652940B4D5CE3163BD9CEDA16237961/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Ancient. Pnakotus. + GMNotes: '' + GUID: 2566f1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Laboratory of the Great Race + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 105.482277 + posY: 1.62900829 + posZ: 15.9010057 + rotX: 359.987274 + rotY: 269.998383 + rotZ: 179.987839 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265523 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/m12nk5a.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/954090355584194829/C6D55DDE5652940B4D5CE3163BD9CEDA16237961/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Ancient. Pnakotus. + GMNotes: '' + GUID: 3bef41 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Yithian Orrery + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 105.501862 + posY: 1.57600391 + posZ: 15.995656 + rotX: 359.966949 + rotY: 270.019867 + rotZ: 177.08905 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265522 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/m12nk5a.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/954090355584194829/C6D55DDE5652940B4D5CE3163BD9CEDA16237961/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Ancient. Pnakotus. + GMNotes: '' + GUID: 896e92 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Great Library + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 105.390846 + posY: 1.60955381 + posZ: 16.0174847 + rotX: 359.993683 + rotY: 270.0187 + rotZ: 180.03334 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265521 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/m12nk5a.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/954090355584194829/C6D55DDE5652940B4D5CE3163BD9CEDA16237961/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Ancient. Pnakotus. + GMNotes: '' + GUID: '121209' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Halls of Pnakotus + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 105.586647 + posY: 1.59967422 + posZ: 16.8675671 + rotX: 359.9907 + rotY: 270.004578 + rotZ: 179.956375 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265520 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/m12nk5a.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/954090355584194829/C6D55DDE5652940B4D5CE3163BD9CEDA16237961/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Ancient. Pnakotus. + GMNotes: '' + GUID: 20f554 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Halls of Pnakotus + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 106.168839 + posY: 1.59018493 + posZ: 15.97843 + rotX: 359.988373 + rotY: 269.9972 + rotZ: 179.982864 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265519 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/m12nk5a.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/954090355584194829/C6D55DDE5652940B4D5CE3163BD9CEDA16237961/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Ancient. Pnakotus. + GMNotes: '' + GUID: ed1363 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Halls of Pnakotus + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 105.760704 + posY: 1.5806129 + posZ: 15.8659143 + rotX: 359.988342 + rotY: 270.000031 + rotZ: 179.988388 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265518 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/m12nk5a.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/954090355584194829/C6D55DDE5652940B4D5CE3163BD9CEDA16237961/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Ancient. Pnakotus. + GMNotes: '' + GUID: 1dc722 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Interview Room + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 105.10997 + posY: 1.57130122 + posZ: 16.09458 + rotX: 359.963928 + rotY: 270.0467 + rotZ: 179.979172 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265517 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/m12nk5a.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/954090355584194829/C6D55DDE5652940B4D5CE3163BD9CEDA16237961/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Ancient. Pnakotus. + GMNotes: '' + GUID: 2fa9e0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Interview Room + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 105.553635 + posY: 1.56158113 + posZ: 16.0647659 + rotX: 359.9893 + rotY: 269.996033 + rotZ: 179.9927 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265516 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/m12nk5a.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/954090355584194829/C6D55DDE5652940B4D5CE3163BD9CEDA16237961/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Ancient. Pnakotus. + GMNotes: '' + GUID: 4440de + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Interview Room + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 105.262932 + posY: 1.55146348 + posZ: 15.8823137 + rotX: 359.985077 + rotY: 269.999 + rotZ: 179.988388 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265515 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/m12nk5a.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/954090355584194829/C6D55DDE5652940B4D5CE3163BD9CEDA16237961/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Monster. Yithian. + GMNotes: '' + GUID: 1f68fb + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Body of a Yithian + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 105.657951 + posY: 1.40525508 + posZ: 12.7021208 + rotX: 359.984558 + rotY: 180.0 + rotZ: 180.012573 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265515 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/m12nk5a.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/954090355584194829/C6D55DDE5652940B4D5CE3163BD9CEDA16237961/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Monster. Yithian. + GMNotes: '' + GUID: 26dd46 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Body of a Yithian + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 108.044472 + posY: 1.40483284 + posZ: 12.3247776 + rotX: 359.984558 + rotY: 180.0 + rotZ: 180.012573 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265515 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/m12nk5a.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/954090355584194829/C6D55DDE5652940B4D5CE3163BD9CEDA16237961/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Monster. Yithian. + GMNotes: '' + GUID: '707456' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Body of a Yithian + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 111.413422 + posY: 1.4039948 + posZ: 12.6882229 + rotX: 359.984558 + rotY: 180.0 + rotZ: 180.012573 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265515 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/m12nk5a.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/954090355584194829/C6D55DDE5652940B4D5CE3163BD9CEDA16237961/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Monster. Yithian. + GMNotes: '' + GUID: dc553a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Body of a Yithian + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 114.478004 + posY: 1.40309012 + posZ: 13.546752 + rotX: 359.984558 + rotY: 180.000031 + rotZ: 180.012573 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265514 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/m12nk5a.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/954090355584194829/C6D55DDE5652940B4D5CE3163BD9CEDA16237961/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 3 + GMNotes: '' + GUID: caba36 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Repossession + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 105.726486 + posY: 1.55871224 + posZ: 16.3885117 + rotX: 359.9898 + rotY: 269.189117 + rotZ: 179.985474 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265513 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/m12nk5a.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/954090355584194829/C6D55DDE5652940B4D5CE3163BD9CEDA16237961/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 2 + GMNotes: '' + GUID: '794903' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Restricted Access + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 105.300522 + posY: 1.55389142 + posZ: 16.01644 + rotX: 359.9918 + rotY: 269.3777 + rotZ: 179.990936 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265512 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/m12nk5a.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/954090355584194829/C6D55DDE5652940B4D5CE3163BD9CEDA16237961/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 1 + GMNotes: '' + GUID: 10c564 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Exploring Pnakotus + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 105.151588 + posY: 1.55116165 + posZ: 15.8170223 + rotX: 359.990936 + rotY: 269.4172 + rotZ: 179.998138 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265511 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/m12nk5a.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/954090355584194829/C6D55DDE5652940B4D5CE3163BD9CEDA16237961/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 3 + GMNotes: '' + GUID: ef8642 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Humanity Fading + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 105.60981 + posY: 1.55333519 + posZ: 16.0090446 + rotX: 359.978363 + rotY: 269.350616 + rotZ: 179.983917 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265510 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/m12nk5a.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/954090355584194829/C6D55DDE5652940B4D5CE3163BD9CEDA16237961/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 2 + GMNotes: '' + GUID: 2d1eec + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Lost Memories + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 105.898582 + posY: 1.5640192 + posZ: 15.80097 + rotX: 359.925385 + rotY: 269.2451 + rotZ: 180.303909 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265509 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/m12nk5a.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/954090355584194829/C6D55DDE5652940B4D5CE3163BD9CEDA16237961/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 1 + GMNotes: '' + GUID: 7347f2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: City of the Great Race + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 105.4616 + posY: 1.54923582 + posZ: 16.0654049 + rotX: 359.986725 + rotY: 269.2236 + rotZ: 179.974335 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265508 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/m12nk5a.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/954090355584194829/C6D55DDE5652940B4D5CE3163BD9CEDA16237961/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: The City of Archives + GMNotes: '' + GUID: e9b3c5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Scenario + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 105.533142 + posY: 1.40427065 + posZ: 16.1892643 + rotX: 359.9811 + rotY: 270.014 + rotZ: 179.978622 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2655': + BackIsHidden: true + BackURL: https://i.imgur.com/m12nk5a.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/954090355584194829/C6D55DDE5652940B4D5CE3163BD9CEDA16237961/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 265535 +- 265535 +- 265535 +- 265535 +- 265534 +- 265534 +- 265533 +- 265533 +- 265532 +- 265532 +- 265532 +- 265531 +- 265531 +- 265531 +- 265530 +- 265530 +- 265530 +- 265529 +- 265529 +- 265528 +- 265528 +- 265527 +- 265526 +- 265525 +- 265524 +- 265523 +- 265522 +- 265521 +- 265520 +- 265519 +- 265518 +- 265517 +- 265516 +- 265515 +- 265515 +- 265515 +- 265515 +- 265514 +- 265513 +- 265512 +- 265511 +- 265510 +- 265509 +- 265508 +Description: '' +GMNotes: '' +GUID: 3a0a17 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: The City of Archives +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 15.8723783 + posY: 3.71771669 + posZ: -5.186513 + rotX: 359.919464 + rotY: 270.0002 + rotZ: 0.017577067 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck The Depths of Yoth 3bf251.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck The Depths of Yoth 3bf251.yaml new file mode 100644 index 000000000..f3bb01f7b --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck The Depths of Yoth 3bf251.yaml @@ -0,0 +1,1548 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 265638 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/VfZuXd1.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/943959879361281633/780B963F4F774A497E33388A89027A83EF0AD8E3/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Item. Relic. + GMNotes: '' + GUID: d1206b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Relic of Ages + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 98.30363 + posY: 1.77987182 + posZ: -0.242779925 + rotX: -0.000223521944 + rotY: 269.945465 + rotZ: 179.887115 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265637 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/VfZuXd1.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/943959879361281633/780B963F4F774A497E33388A89027A83EF0AD8E3/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Scheme. + GMNotes: '' + GUID: '766633' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Serpent's Ire + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 97.92021 + posY: 1.77026141 + posZ: -0.711043358 + rotX: 359.9859 + rotY: 269.998169 + rotZ: 179.989151 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265637 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/VfZuXd1.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/943959879361281633/780B963F4F774A497E33388A89027A83EF0AD8E3/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Scheme. + GMNotes: '' + GUID: be7bde + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Serpent's Ire + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 97.8892 + posY: 1.7608546 + posZ: -0.7130508 + rotX: 359.974152 + rotY: 270.027466 + rotZ: 179.96283 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265636 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/VfZuXd1.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/943959879361281633/780B963F4F774A497E33388A89027A83EF0AD8E3/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Terror. + GMNotes: '' + GUID: 5d4479 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Bathophobia + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 92.94317 + posY: 1.49751234 + posZ: -14.790616 + rotX: 359.9875 + rotY: 270.001465 + rotZ: 184.371048 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265636 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/VfZuXd1.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/943959879361281633/780B963F4F774A497E33388A89027A83EF0AD8E3/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Terror. + GMNotes: '' + GUID: b4f8c3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Bathophobia + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 92.22205 + posY: 1.41509891 + posZ: -12.8698978 + rotX: 359.987976 + rotY: 270.007172 + rotZ: 179.976135 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265636 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/VfZuXd1.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/943959879361281633/780B963F4F774A497E33388A89027A83EF0AD8E3/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Terror. + GMNotes: '' + GUID: e75e4c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Bathophobia + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 92.943634 + posY: 1.413917 + posZ: -9.058213 + rotX: 359.987427 + rotY: 269.998016 + rotZ: 179.984543 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265635 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/VfZuXd1.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/943959879361281633/780B963F4F774A497E33388A89027A83EF0AD8E3/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Terror. + GMNotes: '' + GUID: 082086 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Lightless Shadow + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 97.92784 + posY: 1.72185075 + posZ: 0.11526525 + rotX: 359.992737 + rotY: 269.997437 + rotZ: 179.989182 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265635 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/VfZuXd1.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/943959879361281633/780B963F4F774A497E33388A89027A83EF0AD8E3/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Terror. + GMNotes: '' + GUID: 919da4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Lightless Shadow + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 97.77542 + posY: 1.7125591 + posZ: -0.4065979 + rotX: 359.967926 + rotY: 270.029 + rotZ: 179.974945 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265635 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/VfZuXd1.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/943959879361281633/780B963F4F774A497E33388A89027A83EF0AD8E3/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Terror. + GMNotes: '' + GUID: 646c0e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Lightless Shadow + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 97.82764 + posY: 1.70266747 + posZ: -0.286560833 + rotX: 359.989716 + rotY: 270.0064 + rotZ: 179.976822 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265634 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/VfZuXd1.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/943959879361281633/780B963F4F774A497E33388A89027A83EF0AD8E3/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Scheme. + GMNotes: '' + GUID: a1b639 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Children of Valusia + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 97.5065842 + posY: 1.69322944 + posZ: -0.335975379 + rotX: 359.975037 + rotY: 270.01297 + rotZ: 179.983658 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265634 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/VfZuXd1.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/943959879361281633/780B963F4F774A497E33388A89027A83EF0AD8E3/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Scheme. + GMNotes: '' + GUID: 0e4387 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Children of Valusia + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 97.69844 + posY: 1.68350744 + posZ: -0.53620404 + rotX: 359.980957 + rotY: 270.017883 + rotZ: 179.971161 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265634 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/VfZuXd1.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/943959879361281633/780B963F4F774A497E33388A89027A83EF0AD8E3/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Scheme. + GMNotes: '' + GUID: ae8867 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Children of Valusia + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 98.0337448 + posY: 1.67361915 + posZ: -0.359651119 + rotX: 0.0009573262 + rotY: 269.978271 + rotZ: 179.990463 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265633 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/VfZuXd1.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/943959879361281633/780B963F4F774A497E33388A89027A83EF0AD8E3/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Monster. + GMNotes: '' + GUID: bd44d1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Eater of the Depths + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 98.14551 + posY: 1.66398275 + posZ: -0.3126468 + rotX: 359.983551 + rotY: 269.997131 + rotZ: 179.961166 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265632 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/VfZuXd1.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/943959879361281633/780B963F4F774A497E33388A89027A83EF0AD8E3/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Humanoid. Monster. Serpent. + GMNotes: '' + GUID: 50b857 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Pit Warden + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 97.73028 + posY: 1.6545192 + posZ: -0.413704872 + rotX: 359.9791 + rotY: 270.0312 + rotZ: 179.960464 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265632 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/VfZuXd1.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/943959879361281633/780B963F4F774A497E33388A89027A83EF0AD8E3/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Humanoid. Monster. Serpent. + GMNotes: '' + GUID: 085f52 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Pit Warden + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 97.96586 + posY: 1.64469123 + posZ: -0.253872156 + rotX: 359.970245 + rotY: 270.0172 + rotZ: 179.947556 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265632 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/VfZuXd1.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/943959879361281633/780B963F4F774A497E33388A89027A83EF0AD8E3/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Humanoid. Monster. Serpent. + GMNotes: '' + GUID: 2de72d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Pit Warden + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 97.6622238 + posY: 1.63529646 + posZ: -0.6131318 + rotX: 359.973938 + rotY: 270.039368 + rotZ: 179.958878 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265631 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/VfZuXd1.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/943959879361281633/780B963F4F774A497E33388A89027A83EF0AD8E3/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Ancient One. Serpent. Elite. + GMNotes: '' + GUID: e1be04 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Yig + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 98.33823 + posY: 1.62521541 + posZ: -0.12916705 + rotX: 359.9852 + rotY: 270.002625 + rotZ: 179.986771 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265630 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/VfZuXd1.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/943959879361281633/780B963F4F774A497E33388A89027A83EF0AD8E3/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Ancient. Cave. Yoth. + GMNotes: '' + GUID: 9b12cf + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Bright Canyon + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 98.28011 + posY: 1.61544347 + posZ: 0.263001978 + rotX: 359.989166 + rotY: 270.005554 + rotZ: 179.9919 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265629 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/VfZuXd1.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/943959879361281633/780B963F4F774A497E33388A89027A83EF0AD8E3/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Ancient. Cave. Yoth. + GMNotes: '' + GUID: f639f9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Abandoned Site + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 98.46672 + posY: 1.605819 + posZ: 0.100849681 + rotX: 359.987823 + rotY: 269.99942 + rotZ: 179.983414 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265628 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/VfZuXd1.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/943959879361281633/780B963F4F774A497E33388A89027A83EF0AD8E3/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Ancient. Cave. Yoth. + GMNotes: '' + GUID: a0bede + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Broken Passage + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 98.42447 + posY: 1.56607425 + posZ: 0.136186287 + rotX: 0.0036162117 + rotY: 269.996277 + rotZ: 181.526489 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265627 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/VfZuXd1.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/943959879361281633/780B963F4F774A497E33388A89027A83EF0AD8E3/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Ancient. Cave. Yoth. + GMNotes: '' + GUID: 2d59e1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Bridge over N'kai + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 97.59634 + posY: 1.58670759 + posZ: -0.06655448 + rotX: 359.988159 + rotY: 270.002869 + rotZ: 179.988449 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265626 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/VfZuXd1.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/943959879361281633/780B963F4F774A497E33388A89027A83EF0AD8E3/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Ancient. Cave. Yoth. + GMNotes: '' + GUID: ef24b4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Forked Path + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 98.28844 + posY: 1.57697415 + posZ: -0.288869172 + rotX: -0.00303206383 + rotY: 269.980652 + rotZ: 179.9741 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265625 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/VfZuXd1.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/943959879361281633/780B963F4F774A497E33388A89027A83EF0AD8E3/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Ancient. Cave. Yoth. + GMNotes: '' + GUID: c870e9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Caverns of Yoth + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 98.46298 + posY: 1.56722069 + posZ: -0.170056716 + rotX: 359.989166 + rotY: 269.9997 + rotZ: 179.988 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265624 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/VfZuXd1.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/943959879361281633/780B963F4F774A497E33388A89027A83EF0AD8E3/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Ancient. Cave. Yoth. + GMNotes: '' + GUID: 1cc0b2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Crumbling Precipice + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 98.29021 + posY: 1.55760312 + posZ: -0.248785719 + rotX: 359.99173 + rotY: 270.02124 + rotZ: 180.045227 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265623 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/VfZuXd1.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/943959879361281633/780B963F4F774A497E33388A89027A83EF0AD8E3/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Ancient. Cave. Yoth. + GMNotes: '' + GUID: 2c8131 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Hall of Heresy + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 98.156395 + posY: 1.54796124 + posZ: -0.159081012 + rotX: 359.989929 + rotY: 269.999817 + rotZ: 179.988831 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265622 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/VfZuXd1.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/943959879361281633/780B963F4F774A497E33388A89027A83EF0AD8E3/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Ancient. Cave. Yoth. + GMNotes: '' + GUID: e4e4d3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: City of the Serpents + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 98.24549 + posY: 1.5338881 + posZ: -0.3137031 + rotX: 359.9876 + rotY: 269.995758 + rotZ: 179.982681 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265621 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/VfZuXd1.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/943959879361281633/780B963F4F774A497E33388A89027A83EF0AD8E3/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Ancient. Forgotten. Yoth. + GMNotes: '' + GUID: f7ca01 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Steps of Yoth + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 98.10639 + posY: 1.52869606 + posZ: -0.04158095 + rotX: 359.9903 + rotY: 270.000854 + rotZ: 179.988342 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265620 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/VfZuXd1.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/943959879361281633/780B963F4F774A497E33388A89027A83EF0AD8E3/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 1 + GMNotes: '' + GUID: 34eda1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Journey to the Nexus + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 98.06426 + posY: 1.57131135 + posZ: -0.3948621 + rotX: 359.988678 + rotY: 269.64502 + rotZ: 179.9818 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265619 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/VfZuXd1.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/943959879361281633/780B963F4F774A497E33388A89027A83EF0AD8E3/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 7 + GMNotes: '' + GUID: eefdee + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: VENGEANCE + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 97.88661 + posY: 1.56498349 + posZ: -0.3859256 + rotX: 359.979553 + rotY: 269.153748 + rotZ: 179.961655 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265618 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/VfZuXd1.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/943959879361281633/780B963F4F774A497E33388A89027A83EF0AD8E3/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 6 + GMNotes: '' + GUID: 05dbc3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Red Depths + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 97.63511 + posY: 1.55996192 + posZ: -0.0888301 + rotX: 359.9908 + rotY: 271.1056 + rotZ: 179.975281 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265617 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/VfZuXd1.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/943959879361281633/780B963F4F774A497E33388A89027A83EF0AD8E3/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agend 5 + GMNotes: '' + GUID: bd6405 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Fury That Shakes the Earth + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 97.68949 + posY: 1.55735779 + posZ: -0.238434061 + rotX: 359.9797 + rotY: 269.063354 + rotZ: 179.946747 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265616 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/VfZuXd1.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/943959879361281633/780B963F4F774A497E33388A89027A83EF0AD8E3/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 4 + GMNotes: '' + GUID: c2af87 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: City of Blood + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 97.55728 + posY: 1.55936432 + posZ: -0.220774442 + rotX: 359.983582 + rotY: 269.136261 + rotZ: 179.963531 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265615 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/VfZuXd1.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/943959879361281633/780B963F4F774A497E33388A89027A83EF0AD8E3/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 3 + GMNotes: '' + GUID: 7275cb + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Endless Caverns + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 97.6898 + posY: 1.5730139 + posZ: -0.294707447 + rotX: 359.986481 + rotY: 269.367676 + rotZ: 179.971237 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265614 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/VfZuXd1.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/943959879361281633/780B963F4F774A497E33388A89027A83EF0AD8E3/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 2 + GMNotes: '' + GUID: 7381f6 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Horrific Descent + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 98.09038 + posY: 1.54928517 + posZ: -0.290835142 + rotX: 359.974854 + rotY: 270.03714 + rotZ: 179.988953 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265613 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/VfZuXd1.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/943959879361281633/780B963F4F774A497E33388A89027A83EF0AD8E3/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 1 + GMNotes: '' + GUID: 56b578 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Descent Begins + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 97.92148 + posY: 1.41039765 + posZ: -0.1111426 + rotX: 359.986542 + rotY: 270.024628 + rotZ: 179.982941 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2656': + BackIsHidden: true + BackURL: https://i.imgur.com/VfZuXd1.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/943959879361281633/780B963F4F774A497E33388A89027A83EF0AD8E3/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 265638 +- 265637 +- 265637 +- 265636 +- 265636 +- 265636 +- 265635 +- 265635 +- 265635 +- 265634 +- 265634 +- 265634 +- 265633 +- 265632 +- 265632 +- 265632 +- 265631 +- 265630 +- 265629 +- 265628 +- 265627 +- 265626 +- 265625 +- 265624 +- 265623 +- 265622 +- 265621 +- 265620 +- 265619 +- 265618 +- 265617 +- 265616 +- 265615 +- 265614 +- 265613 +Description: '' +GMNotes: '' +GUID: 3bf251 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: The Depths of Yoth +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 15.5186825 + posY: 3.679359 + posZ: -4.48441648 + rotX: 359.92 + rotY: 270.0001 + rotZ: 0.0167931952 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck The Devourer Below d1ca16.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck The Devourer Below d1ca16.yaml new file mode 100644 index 000000000..5250e1201 --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck The Devourer Below d1ca16.yaml @@ -0,0 +1,824 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 3612 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Curse. + GMNotes: '' + GUID: 278b2f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: "Um\xF4rdhoth's Wrath" + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 94.77683 + posY: 1.61960518 + posZ: 4.40494251 + rotX: 359.987427 + rotY: 270.020325 + rotZ: 179.984589 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3612 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Curse. + GMNotes: '' + GUID: d263b6 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: "Um\xF4rdhoth's Wrath" + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 94.25936 + posY: 1.60574925 + posZ: 3.907616 + rotX: 359.987549 + rotY: 270.019867 + rotZ: 179.985138 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3611 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Ancient One. Elite. + GMNotes: '' + GUID: da8001 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: "Um\xF4rdhoth" + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 94.42791 + posY: 1.59589589 + posZ: 4.514877 + rotX: 359.985779 + rotY: 269.9892 + rotZ: 179.976715 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3541 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '35': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/87094793642556387/D32E204C37FB97BB2F7B5A72C1CB867181533D5C/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642555419/98C6688D4F868ABA23FF62848E773F55962361C5/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Cave. + GMNotes: '' + GUID: c442af + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ritual Site + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 94.21996 + posY: 1.54865885 + posZ: 4.40421724 + rotX: 359.992249 + rotY: 270.0024 + rotZ: 181.549728 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3540 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '35': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/87094793642556387/D32E204C37FB97BB2F7B5A72C1CB867181533D5C/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642555419/98C6688D4F868ABA23FF62848E773F55962361C5/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Woods + GMNotes: '' + GUID: deaa6c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Arkham Woods + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 95.03217 + posY: 1.57646239 + posZ: 4.52385855 + rotX: 359.9874 + rotY: 270.001465 + rotZ: 179.983429 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3539 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '35': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/87094793642556387/D32E204C37FB97BB2F7B5A72C1CB867181533D5C/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642555419/98C6688D4F868ABA23FF62848E773F55962361C5/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Woods + GMNotes: '' + GUID: 9fff9f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Arkham Woods + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 94.27716 + posY: 1.56690967 + posZ: 4.70054245 + rotX: 359.987549 + rotY: 270.001221 + rotZ: 179.984116 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3538 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '35': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/87094793642556387/D32E204C37FB97BB2F7B5A72C1CB867181533D5C/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642555419/98C6688D4F868ABA23FF62848E773F55962361C5/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Woods. + GMNotes: '' + GUID: 3a7f2c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Arkham Woods + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 94.74946 + posY: 1.55727434 + posZ: 4.682507 + rotX: 359.98114 + rotY: 270.0192 + rotZ: 179.952255 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3537 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '35': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/87094793642556387/D32E204C37FB97BB2F7B5A72C1CB867181533D5C/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642555419/98C6688D4F868ABA23FF62848E773F55962361C5/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Woods. + GMNotes: '' + GUID: '701563' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Arkham Woods + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 93.95812 + posY: 1.54775834 + posZ: 4.10932875 + rotX: 359.988251 + rotY: 270.007935 + rotZ: 179.9778 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3536 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '35': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/87094793642556387/D32E204C37FB97BB2F7B5A72C1CB867181533D5C/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642555419/98C6688D4F868ABA23FF62848E773F55962361C5/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Woods. + GMNotes: '' + GUID: add566 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Arkham Woods + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 94.3728943 + posY: 1.53808129 + posZ: 3.908867 + rotX: 359.989532 + rotY: 269.9906 + rotZ: 179.9767 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3535 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '35': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/87094793642556387/D32E204C37FB97BB2F7B5A72C1CB867181533D5C/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642555419/98C6688D4F868ABA23FF62848E773F55962361C5/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Woods. + GMNotes: '' + GUID: 3baf39 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Arkham Woods + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 94.41522 + posY: 1.52842021 + posZ: 3.938056 + rotX: 359.988 + rotY: 270.012146 + rotZ: 179.982437 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3534 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '35': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/87094793642556387/D32E204C37FB97BB2F7B5A72C1CB867181533D5C/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642555419/98C6688D4F868ABA23FF62848E773F55962361C5/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Woods. + GMNotes: '' + GUID: 9bdf0f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Main Path + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 94.79292 + posY: 1.57089424 + posZ: 4.254374 + rotX: 359.9879 + rotY: 270.000671 + rotZ: 179.985153 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3533 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '35': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/87094793642556387/D32E204C37FB97BB2F7B5A72C1CB867181533D5C/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642555419/98C6688D4F868ABA23FF62848E773F55962361C5/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 3 + GMNotes: '' + GUID: 55679c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Disrupting the Ritual + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 94.5572739 + posY: 1.53038764 + posZ: 4.065875 + rotX: 359.99295 + rotY: 269.999146 + rotZ: 177.3867 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3532 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '35': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/87094793642556387/D32E204C37FB97BB2F7B5A72C1CB867181533D5C/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642555419/98C6688D4F868ABA23FF62848E773F55962361C5/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 2 + GMNotes: '' + GUID: 7837cd + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Into the Darkness + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 94.5360641 + posY: 2.0552 + posZ: 3.7830708 + rotX: 359.440155 + rotY: 271.212128 + rotZ: 152.080322 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3531 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '35': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/87094793642556387/D32E204C37FB97BB2F7B5A72C1CB867181533D5C/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642555419/98C6688D4F868ABA23FF62848E773F55962361C5/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 1 + GMNotes: '' + GUID: ab7766 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Investigating the Trail + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 94.81223 + posY: 1.50548768 + posZ: 3.78965282 + rotX: 2.27701855 + rotY: 269.999481 + rotZ: 179.996887 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3530 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '35': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/87094793642556387/D32E204C37FB97BB2F7B5A72C1CB867181533D5C/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642555419/98C6688D4F868ABA23FF62848E773F55962361C5/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 3 + GMNotes: '' + GUID: 4b4391 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Vengeance Awaits + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 94.61443 + posY: 1.64808774 + posZ: 4.16691828 + rotX: 358.0978 + rotY: 269.6155 + rotZ: 176.270615 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3529 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '35': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/87094793642556387/D32E204C37FB97BB2F7B5A72C1CB867181533D5C/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642555419/98C6688D4F868ABA23FF62848E773F55962361C5/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 2 + GMNotes: '' + GUID: 9e3bd8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Ritual Begins + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 94.58 + posY: 1.571015 + posZ: 4.19764948 + rotX: 359.322021 + rotY: 269.993835 + rotZ: 180.929138 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3528 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '35': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/87094793642556387/D32E204C37FB97BB2F7B5A72C1CB867181533D5C/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642555419/98C6688D4F868ABA23FF62848E773F55962361C5/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 1 + GMNotes: '' + GUID: 2cad0b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Arkham Woods + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 94.2860947 + posY: 1.55561543 + posZ: 4.019581 + rotX: 359.9845 + rotY: 272.5499 + rotZ: 179.996063 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3527 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '35': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/87094793642556387/D32E204C37FB97BB2F7B5A72C1CB867181533D5C/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642555419/98C6688D4F868ABA23FF62848E773F55962361C5/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 4efea7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Devourer Below + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 94.30675 + posY: 1.41000366 + posZ: 4.340011 + rotX: 359.987427 + rotY: 270.000061 + rotZ: 179.984543 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '35': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/87094793642556387/D32E204C37FB97BB2F7B5A72C1CB867181533D5C/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642555419/98C6688D4F868ABA23FF62848E773F55962361C5/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 3612 +- 3612 +- 3611 +- 3541 +- 3540 +- 3539 +- 3538 +- 3537 +- 3536 +- 3535 +- 3534 +- 3533 +- 3532 +- 3531 +- 3530 +- 3529 +- 3528 +- 3527 +Description: '' +GMNotes: '' +GUID: d1ca16 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: The Devourer Below +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 11.8647957 + posY: 3.52769971 + posZ: -1.77902246 + rotX: 359.9201 + rotY: 270.014862 + rotZ: 0.0168533139 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck The Devourer’s Cult 3cea3c.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck The Devourer’s Cult 3cea3c.yaml new file mode 100644 index 000000000..ecc63fd5d --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck The Devourer’s Cult 3cea3c.yaml @@ -0,0 +1,301 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 231742 + 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 + UniqueBack: false + Description: Item. Mask. + GMNotes: '' + GUID: 7b7c88 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: "Mask of Um\xF4rdhoth" + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -27.3313046 + posY: 1.60303676 + posZ: 40.0525627 + rotX: 359.919617 + rotY: 269.972717 + rotZ: 0.0103522725 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231742 + 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 + UniqueBack: false + Description: Item. Mask. + GMNotes: '' + GUID: 62b6cd + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: "Mask of Um\xF4rdhoth" + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -27.2997189 + posY: 1.748332 + posZ: 39.7179947 + rotX: 359.942841 + rotY: 270.004272 + rotZ: 0.00302965054 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231741 + 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 + UniqueBack: false + Description: Monster. Servitor. Cultist. + GMNotes: '' + GUID: 53b9cb + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Corpse-Taker + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -27.2525177 + posY: 1.76590574 + posZ: 39.58632 + rotX: 359.924469 + rotY: 270.042847 + rotZ: 359.986053 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231740 + 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 + UniqueBack: false + Description: Humanoid. Cultist. + GMNotes: '' + GUID: ab3719 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Disciple of the Devourer + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -26.841526 + posY: 1.60154414 + posZ: 37.0518341 + rotX: 359.9202 + rotY: 270.005066 + rotZ: 0.0162651874 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231740 + 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 + UniqueBack: false + Description: Humanoid. Cultist. + GMNotes: '' + GUID: 0abaca + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Disciple of the Devourer + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -27.3358841 + posY: 1.76970363 + posZ: 37.12298 + rotX: 359.9229 + rotY: 270.005157 + rotZ: 0.0140643651 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231740 + 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 + UniqueBack: false + Description: Humanoid. Cultist. + GMNotes: '' + GUID: ab3719 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Disciple of the Devourer + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -27.0939522 + posY: 1.78332663 + posZ: 37.4462624 + rotX: 359.919922 + rotY: 270.005157 + rotZ: 0.01614685 + 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 + UniqueBack: false +DeckIDs: +- 231742 +- 231742 +- 231741 +- 231740 +- 231740 +- 231740 +Description: '' +GMNotes: '' +GUID: 3cea3c +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: "The Devourer\u2019s Cult" +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 102.721626 + posY: 7.33040571 + posZ: -60.3219872 + rotX: 359.920135 + rotY: 269.9766 + rotZ: 0.01690835 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck The Doom of Eztli 383c89.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck The Doom of Eztli 383c89.yaml new file mode 100644 index 000000000..253bc126f --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck The Doom of Eztli 383c89.yaml @@ -0,0 +1,688 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 12267 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '122': + BackIsHidden: true + BackURL: https://i.imgur.com/RpzEfmS.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393194495/027101CA5C626EBA0E4F76F3F15569329F81DE3C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Forgotten. Ruins. + GMNotes: '' + GUID: 2be806 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Chamber of Time + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 91.5667648 + posY: 1.58558714 + posZ: 8.969295 + rotX: 359.98526 + rotY: 270.0005 + rotZ: 179.983749 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12266 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '122': + BackIsHidden: true + BackURL: https://i.imgur.com/RpzEfmS.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393194495/027101CA5C626EBA0E4F76F3F15569329F81DE3C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Ancient. Ruins. + GMNotes: '' + GUID: 43dc89 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Secret Passage + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 92.74763 + posY: 1.57573926 + posZ: 8.778662 + rotX: 359.993683 + rotY: 269.9876 + rotZ: 179.977585 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12265 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '122': + BackIsHidden: true + BackURL: https://i.imgur.com/RpzEfmS.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393194495/027101CA5C626EBA0E4F76F3F15569329F81DE3C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Ancient. Ruins. + GMNotes: '' + GUID: fbe6e8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Underground Ruins + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 92.6038 + posY: 1.56609106 + posZ: 8.788659 + rotX: 359.990662 + rotY: 269.9989 + rotZ: 179.989151 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12264 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '122': + BackIsHidden: true + BackURL: https://i.imgur.com/RpzEfmS.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393194495/027101CA5C626EBA0E4F76F3F15569329F81DE3C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Ancient. Ruins. + GMNotes: '' + GUID: 70904c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Burial Pit + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 92.4839554 + posY: 1.55644572 + posZ: 8.8417635 + rotX: 359.992859 + rotY: 269.991638 + rotZ: 179.979 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12263 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '122': + BackIsHidden: true + BackURL: https://i.imgur.com/RpzEfmS.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393194495/027101CA5C626EBA0E4F76F3F15569329F81DE3C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Ancient. Ruins. + GMNotes: '' + GUID: da2655 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Grand Chamber + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 92.7511139 + posY: 1.54587853 + posZ: 8.848999 + rotX: -0.00486217346 + rotY: 269.983215 + rotZ: 179.977188 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12262 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '122': + BackIsHidden: true + BackURL: https://i.imgur.com/RpzEfmS.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393194495/027101CA5C626EBA0E4F76F3F15569329F81DE3C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Ancient. Ruins. + GMNotes: '' + GUID: 58bf8d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ancient Hall + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 92.2386551 + posY: 1.5371083 + posZ: 8.957218 + rotX: -0.0005781982 + rotY: 269.9624 + rotZ: 179.965469 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12261 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '122': + BackIsHidden: true + BackURL: https://i.imgur.com/RpzEfmS.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393194495/027101CA5C626EBA0E4F76F3F15569329F81DE3C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Humanoid. Monster. Serpent. Elite. + GMNotes: '' + GUID: c6b3fc + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Harbinger of Valusia + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 91.95295 + posY: 1.527577 + posZ: 8.818098 + rotX: 359.9852 + rotY: 269.988922 + rotZ: 179.980927 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12260 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '122': + BackIsHidden: true + BackURL: https://i.imgur.com/RpzEfmS.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393194495/027101CA5C626EBA0E4F76F3F15569329F81DE3C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Item. Relic. + GMNotes: '' + GUID: 8df4a7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Relic of Ages + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 92.16451 + posY: 1.55068445 + posZ: 8.796582 + rotX: -0.00281110313 + rotY: 269.981079 + rotZ: 179.217575 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12259 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '122': + BackIsHidden: true + BackURL: https://i.imgur.com/RpzEfmS.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393194495/027101CA5C626EBA0E4F76F3F15569329F81DE3C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: "Ancient. Ruins.\r" + GMNotes: '' + GUID: e5f222 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Entryway + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 92.19433 + posY: 1.58743429 + posZ: 9.311561 + rotX: 359.985382 + rotY: 270.0469 + rotZ: 181.25206 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12258 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '122': + BackIsHidden: true + BackURL: https://i.imgur.com/RpzEfmS.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393194495/027101CA5C626EBA0E4F76F3F15569329F81DE3C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 3 + GMNotes: '' + GUID: 89593e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Escape the Ruins + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 92.74764 + posY: 1.55856192 + posZ: 9.077772 + rotX: 359.9937 + rotY: 269.081116 + rotZ: 179.988724 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12257 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '122': + BackIsHidden: true + BackURL: https://i.imgur.com/RpzEfmS.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393194495/027101CA5C626EBA0E4F76F3F15569329F81DE3C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 2 + GMNotes: '' + GUID: 6a9acd + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Magic and Science + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 92.936676 + posY: 1.55549085 + posZ: 9.136077 + rotX: 359.973633 + rotY: 273.492859 + rotZ: 179.985825 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12256 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '122': + BackIsHidden: true + BackURL: https://i.imgur.com/RpzEfmS.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393194495/027101CA5C626EBA0E4F76F3F15569329F81DE3C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 1 + GMNotes: '' + GUID: 87937f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Into the Ruins + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 92.74613 + posY: 1.56570983 + posZ: 8.949801 + rotX: 0.178097919 + rotY: 269.3002 + rotZ: 179.944061 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12255 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '122': + BackIsHidden: true + BackURL: https://i.imgur.com/RpzEfmS.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393194495/027101CA5C626EBA0E4F76F3F15569329F81DE3C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 2 + GMNotes: '' + GUID: a5a713 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Temple Warden + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 92.29842 + posY: 1.57155883 + posZ: 9.310215 + rotX: 359.990143 + rotY: 269.821655 + rotZ: 179.982132 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12254 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '122': + BackIsHidden: true + BackURL: https://i.imgur.com/RpzEfmS.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393194495/027101CA5C626EBA0E4F76F3F15569329F81DE3C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 1 + GMNotes: '' + GUID: 2376d1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Something Stirs... + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 91.9289856 + posY: 1.55414772 + posZ: 8.842492 + rotX: 359.9914 + rotY: 269.1511 + rotZ: 179.983826 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12253 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '122': + BackIsHidden: true + BackURL: https://i.imgur.com/RpzEfmS.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393194495/027101CA5C626EBA0E4F76F3F15569329F81DE3C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: The Doom of Eztli + GMNotes: '' + GUID: 964bf2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Scenario + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 92.25744 + posY: 1.409087 + posZ: 8.998877 + rotX: 359.980835 + rotY: 270.0092 + rotZ: 179.981079 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '122': + BackIsHidden: true + BackURL: https://i.imgur.com/RpzEfmS.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393194495/027101CA5C626EBA0E4F76F3F15569329F81DE3C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 12267 +- 12266 +- 12265 +- 12264 +- 12263 +- 12262 +- 12261 +- 12260 +- 12259 +- 12258 +- 12257 +- 12256 +- 12255 +- 12254 +- 12253 +Description: '' +GMNotes: '' +GUID: 383c89 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: The Doom of Eztli +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 20.53201 + posY: 3.49520063 + posZ: -10.7249794 + rotX: 359.920135 + rotY: 269.999939 + rotZ: 0.01686714 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck The Eternal Slumber 0e6ca2.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck The Eternal Slumber 0e6ca2.yaml new file mode 100644 index 000000000..68ff9f6b1 --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck The Eternal Slumber 0e6ca2.yaml @@ -0,0 +1,781 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 266114 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2661': + BackIsHidden: true + BackURL: https://i.imgur.com/r6F1mt2.jpg + FaceURL: https://i.imgur.com/CN9PXUd.jpg + NumHeight: 5 + NumWidth: 10 + UniqueBack: true + Description: Monster. Dreamlands. + GMNotes: '' + GUID: 4212af + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Creature from the Abyss + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 89.61434 + posY: 1.41633582 + posZ: -15.3150072 + rotX: 359.987427 + rotY: 270.0 + rotZ: 179.984543 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 266114 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2661': + BackIsHidden: true + BackURL: https://i.imgur.com/r6F1mt2.jpg + FaceURL: https://i.imgur.com/CN9PXUd.jpg + NumHeight: 5 + NumWidth: 10 + UniqueBack: true + Description: Monster. Dreamlands. + GMNotes: '' + GUID: a63585 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Creature from the Abyss + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 87.01582 + posY: 1.41570723 + posZ: -10.8688011 + rotX: 359.987427 + rotY: 269.999939 + rotZ: 179.984543 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 266113 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2661': + BackIsHidden: true + BackURL: https://i.imgur.com/r6F1mt2.jpg + FaceURL: https://i.imgur.com/CN9PXUd.jpg + NumHeight: 5 + NumWidth: 10 + UniqueBack: true + Description: Humanoid. Cultist. + GMNotes: '' + GUID: ec101c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Humble Supplicant + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 101.090149 + posY: 1.58434522 + posZ: 5.876866 + rotX: 359.989 + rotY: 270.001343 + rotZ: 179.989716 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 266113 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2661': + BackIsHidden: true + BackURL: https://i.imgur.com/r6F1mt2.jpg + FaceURL: https://i.imgur.com/CN9PXUd.jpg + NumHeight: 5 + NumWidth: 10 + UniqueBack: true + Description: Humanoid. Cultist. + GMNotes: '' + GUID: c64bf1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Humble Supplicant + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 100.365952 + posY: 1.5747304 + posZ: 6.22209072 + rotX: 359.9845 + rotY: 270.0174 + rotZ: 179.989532 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 266113 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2661': + BackIsHidden: true + BackURL: https://i.imgur.com/r6F1mt2.jpg + FaceURL: https://i.imgur.com/CN9PXUd.jpg + NumHeight: 5 + NumWidth: 10 + UniqueBack: true + Description: Humanoid. Cultist. + GMNotes: '' + GUID: c26998 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Humble Supplicant + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 99.62172 + posY: 1.56528664 + posZ: 6.107013 + rotX: 359.985565 + rotY: 270.000153 + rotZ: 179.986618 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 266112 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2661': + BackIsHidden: true + BackURL: https://i.imgur.com/r6F1mt2.jpg + FaceURL: https://i.imgur.com/CN9PXUd.jpg + NumHeight: 5 + NumWidth: 10 + UniqueBack: true + Description: "Humanoid. Cultist. \nBrotherhood. " + GMNotes: '' + GUID: 7e0c5a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Neith + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 100.521271 + posY: 1.51150644 + posZ: 6.05132532 + rotX: 359.989075 + rotY: 270.0114 + rotZ: 181.902145 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 266111 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2661': + BackIsHidden: true + BackURL: https://i.imgur.com/r6F1mt2.jpg + FaceURL: https://i.imgur.com/CN9PXUd.jpg + NumHeight: 5 + NumWidth: 10 + UniqueBack: true + Description: Cairo. + GMNotes: '' + GUID: ead562 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Temple Courtyard + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 99.66214 + posY: 1.54583585 + posZ: 6.48055172 + rotX: 359.9871 + rotY: 270.001373 + rotZ: 179.984 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 266110 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2661': + BackIsHidden: true + BackURL: https://i.imgur.com/r6F1mt2.jpg + FaceURL: https://i.imgur.com/CN9PXUd.jpg + NumHeight: 5 + NumWidth: 10 + UniqueBack: true + Description: Cairo. + GMNotes: '' + GUID: 893ca0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Outskirts of Cairo + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 100.089371 + posY: 1.53611362 + posZ: 6.56361532 + rotX: 359.9854 + rotY: 270.003784 + rotZ: 179.983658 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 266109 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2661': + BackIsHidden: true + BackURL: https://i.imgur.com/r6F1mt2.jpg + FaceURL: https://i.imgur.com/CN9PXUd.jpg + NumHeight: 5 + NumWidth: 10 + UniqueBack: true + Description: Cairo. + GMNotes: '' + GUID: fb63e7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Museum of Egyptian Antiquities + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 100.060081 + posY: 1.52645457 + posZ: 6.54421234 + rotX: 359.977417 + rotY: 270.0371 + rotZ: 179.98735 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 266108 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2661': + BackIsHidden: true + BackURL: https://i.imgur.com/r6F1mt2.jpg + FaceURL: https://i.imgur.com/CN9PXUd.jpg + NumHeight: 5 + NumWidth: 10 + UniqueBack: true + Description: Cairo. + GMNotes: '' + GUID: d2de0e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Cairo Bazaar + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 100.028214 + posY: 1.59427488 + posZ: 6.516743 + rotX: 359.978516 + rotY: 270.0124 + rotZ: 181.345886 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 266107 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2661': + BackIsHidden: true + BackURL: https://i.imgur.com/r6F1mt2.jpg + FaceURL: https://i.imgur.com/CN9PXUd.jpg + NumHeight: 5 + NumWidth: 10 + UniqueBack: true + Description: Cairo. + GMNotes: '' + GUID: 4e1b71 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Streets of Cairo + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 99.73019 + posY: 1.562684 + posZ: 6.42291164 + rotX: 359.992371 + rotY: 269.9972 + rotZ: 179.986984 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 266206 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2662': + BackIsHidden: true + BackURL: https://i.imgur.com/r6F1mt2.jpg + FaceURL: https://i.imgur.com/CN9PXUd.jpg + NumHeight: 5 + NumWidth: 10 + UniqueBack: true + Description: Act 3 + GMNotes: '' + GUID: 7c9c6b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Hour of Judgment + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 99.9335556 + posY: 1.55775654 + posZ: 6.03743362 + rotX: 359.99057 + rotY: 269.974731 + rotZ: 179.990128 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 266205 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2662': + BackIsHidden: true + BackURL: https://i.imgur.com/r6F1mt2.jpg + FaceURL: https://i.imgur.com/CN9PXUd.jpg + NumHeight: 5 + NumWidth: 10 + UniqueBack: true + Description: Act 2 + GMNotes: '' + GUID: 8f21c4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Secrets in the Sand + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 99.96515 + posY: 1.55506241 + posZ: 6.174742 + rotX: 359.99054 + rotY: 270.15448 + rotZ: 179.988739 + 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: true + BackURL: https://i.imgur.com/r6F1mt2.jpg + FaceURL: https://i.imgur.com/CN9PXUd.jpg + NumHeight: 5 + NumWidth: 10 + UniqueBack: true + Description: Act 1 + GMNotes: '' + GUID: 35de51 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: 'Curse of Endless Sleep ' + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 99.8369751 + posY: 1.55711389 + posZ: 6.01686859 + rotX: 359.990662 + rotY: 269.882233 + rotZ: 179.98996 + 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: true + BackURL: https://i.imgur.com/r6F1mt2.jpg + FaceURL: https://i.imgur.com/CN9PXUd.jpg + NumHeight: 5 + NumWidth: 10 + UniqueBack: true + Description: Agenda 3 + GMNotes: '' + GUID: 9ebdb5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Garden of Shadows + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 100.441 + posY: 1.57075548 + posZ: 5.98070765 + rotX: 359.988464 + rotY: 269.084747 + rotZ: 179.98912 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 266202 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2662': + BackIsHidden: true + BackURL: https://i.imgur.com/r6F1mt2.jpg + FaceURL: https://i.imgur.com/CN9PXUd.jpg + NumHeight: 5 + NumWidth: 10 + UniqueBack: true + Description: Agenda 2 + GMNotes: '' + GUID: 86be88 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Curse of the Abyss + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 100.316193 + posY: 1.55303633 + posZ: 6.045522 + rotX: 359.993164 + rotY: 269.8516 + rotZ: 179.992737 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 266201 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2662': + BackIsHidden: true + BackURL: https://i.imgur.com/r6F1mt2.jpg + FaceURL: https://i.imgur.com/CN9PXUd.jpg + NumHeight: 5 + NumWidth: 10 + UniqueBack: true + Description: Agenda 1 + GMNotes: '' + GUID: a1ba64 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Jessie's Request + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 100.396194 + posY: 1.40806258 + posZ: 6.232809 + rotX: 359.9825 + rotY: 269.081116 + rotZ: 179.985535 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2661': + BackIsHidden: true + BackURL: https://i.imgur.com/r6F1mt2.jpg + FaceURL: https://i.imgur.com/CN9PXUd.jpg + NumHeight: 5 + NumWidth: 10 + UniqueBack: true + '2662': + BackIsHidden: true + BackURL: https://i.imgur.com/r6F1mt2.jpg + FaceURL: https://i.imgur.com/CN9PXUd.jpg + NumHeight: 5 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 266114 +- 266114 +- 266113 +- 266113 +- 266113 +- 266112 +- 266111 +- 266110 +- 266109 +- 266108 +- 266107 +- 266206 +- 266205 +- 266204 +- 266203 +- 266202 +- 266201 +Description: '' +GMNotes: '' +GUID: 0e6ca2 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: The Eternal Slumber +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 16.3158455 + posY: 3.60021257 + posZ: -5.312518 + rotX: 359.919281 + rotY: 270.003 + rotZ: 0.0170865282 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck The Gathering 31748f.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck The Gathering 31748f.yaml new file mode 100644 index 000000000..6d430ab34 --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck The Gathering 31748f.yaml @@ -0,0 +1,801 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 12103 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '121': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humaniod. Monster. Ghoul. + GMNotes: '' + GUID: 533af3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Icy Ghoul + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 94.32165 + posY: 1.55310714 + posZ: 15.9013672 + rotX: 359.993042 + rotY: 270.001465 + rotZ: 182.570679 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12102 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '121': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Monster. Ghoul. + GMNotes: '' + GUID: b9acce + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Flesh-Eater + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 94.15767 + posY: 1.53935432 + posZ: 16.0402641 + rotX: 359.9916 + rotY: 269.999573 + rotZ: 177.543747 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3428 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '34': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642393244/74ADDF83D8B03DBF4AD5DC7230C2D12E84685317/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Ally + GMNotes: '' + GUID: 3c1944 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Lita Chantler + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 93.97569 + posY: 1.59910667 + posZ: 15.9745359 + rotX: 359.9914 + rotY: 270.001251 + rotZ: 181.047958 + scaleX: 1.05 + scaleY: 1.0 + scaleZ: 1.05 + XmlUI: '' +- Autoraise: true + CardID: 11700 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '117': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Monster. Ghoul. Elite. + GMNotes: '' + GUID: 72e0c7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ghoul Priest + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 94.29007 + posY: 1.744217 + posZ: 15.7058048 + rotX: 359.979645 + rotY: 269.9958 + rotZ: 170.216553 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 11211 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '112': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/87094793642556387/D32E204C37FB97BB2F7B5A72C1CB867181533D5C/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642555419/98C6688D4F868ABA23FF62848E773F55962361C5/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 1020b8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Parlor + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 93.81422 + posY: 1.55445862 + posZ: 15.7625875 + rotX: 359.9892 + rotY: 269.9969 + rotZ: 179.9876 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 11610 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '116': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/87094793642556387/D32E204C37FB97BB2F7B5A72C1CB867181533D5C/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642555419/98C6688D4F868ABA23FF62848E773F55962361C5/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 9cf91b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Cellar + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 93.98996 + posY: 1.54471183 + posZ: 15.7620325 + rotX: 359.9886 + rotY: 270.005432 + rotZ: 179.98024 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 11509 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '115': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/87094793642556387/D32E204C37FB97BB2F7B5A72C1CB867181533D5C/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642555419/98C6688D4F868ABA23FF62848E773F55962361C5/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 5421cb + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Attic + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 94.47996 + posY: 1.53493369 + posZ: 15.6676769 + rotX: 359.987885 + rotY: 269.999664 + rotZ: 179.9848 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 11408 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '114': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/87094793642556387/D32E204C37FB97BB2F7B5A72C1CB867181533D5C/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642555419/98C6688D4F868ABA23FF62848E773F55962361C5/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: d8c5f2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Hallway + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 94.24218 + posY: 1.62085927 + posZ: 16.1620274 + rotX: 356.166565 + rotY: 269.999878 + rotZ: 179.989578 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 11307 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '113': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/87094793642556387/D32E204C37FB97BB2F7B5A72C1CB867181533D5C/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642555419/98C6688D4F868ABA23FF62848E773F55962361C5/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: fc8eb5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Study + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 94.37965 + posY: 1.56565082 + posZ: 15.5011158 + rotX: 359.249084 + rotY: 269.9927 + rotZ: 181.018 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12006 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '120': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/87094793642556387/D32E204C37FB97BB2F7B5A72C1CB867181533D5C/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642555419/98C6688D4F868ABA23FF62848E773F55962361C5/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 3 + GMNotes: '' + GUID: a91e8f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: What Have You Done? + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 94.08668 + posY: 1.51818192 + posZ: 15.6751995 + rotX: 359.993134 + rotY: 269.999329 + rotZ: 177.554291 + scaleX: 1.05 + scaleY: 1.0 + scaleZ: 1.05 + XmlUI: '' +- Autoraise: true + CardID: 12005 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '120': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/87094793642556387/D32E204C37FB97BB2F7B5A72C1CB867181533D5C/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642555419/98C6688D4F868ABA23FF62848E773F55962361C5/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 2 + GMNotes: '' + GUID: 45268d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Barrier + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 94.07749 + posY: 1.80330169 + posZ: 14.9073229 + rotX: 359.979 + rotY: 269.996033 + rotZ: 167.007477 + scaleX: 1.05 + scaleY: 1.0 + scaleZ: 1.05 + XmlUI: '' +- Autoraise: true + CardID: 12004 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '120': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/87094793642556387/D32E204C37FB97BB2F7B5A72C1CB867181533D5C/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642555419/98C6688D4F868ABA23FF62848E773F55962361C5/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 1 + GMNotes: '' + GUID: e0ac1b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Trapped + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 94.12299 + posY: 1.76706457 + posZ: 15.4619875 + rotX: 359.9915 + rotY: 270.0003 + rotZ: 193.091354 + scaleX: 1.05 + scaleY: 1.0 + scaleZ: 1.05 + XmlUI: '' +- Autoraise: true + CardID: 11903 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '119': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/87094793642556387/D32E204C37FB97BB2F7B5A72C1CB867181533D5C/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642555419/98C6688D4F868ABA23FF62848E773F55962361C5/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 3 + GMNotes: '' + GUID: 0dd29c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: They're Getting Out! + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 94.57577 + posY: 1.89683127 + posZ: 16.0727673 + rotX: 359.784 + rotY: 271.2202 + rotZ: 156.903717 + scaleX: 1.05 + scaleY: 1.0 + scaleZ: 1.05 + XmlUI: '' +- Autoraise: true + CardID: 11902 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '119': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/87094793642556387/D32E204C37FB97BB2F7B5A72C1CB867181533D5C/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642555419/98C6688D4F868ABA23FF62848E773F55962361C5/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 2 + GMNotes: '' + GUID: dd52dc + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Rise of the Ghouls + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 94.1894455 + posY: 1.56957257 + posZ: 15.9894218 + rotX: 359.987457 + rotY: 269.97644 + rotZ: 179.989685 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 11901 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '119': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/87094793642556387/D32E204C37FB97BB2F7B5A72C1CB867181533D5C/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642555419/98C6688D4F868ABA23FF62848E773F55962361C5/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 1 + GMNotes: '' + GUID: d43c35 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: What's Going On?! + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 94.37307 + posY: 1.55227792 + posZ: 15.53451 + rotX: 359.989929 + rotY: 270.0 + rotZ: 179.98761 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 11800 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '118': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/87094793642556387/D32E204C37FB97BB2F7B5A72C1CB867181533D5C/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642555419/98C6688D4F868ABA23FF62848E773F55962361C5/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: d552e0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Gathering + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 94.01624 + posY: 1.40699708 + posZ: 15.7228765 + rotX: 359.987427 + rotY: 270.0 + rotZ: 179.984543 + scaleX: 1.05 + scaleY: 1.0 + scaleZ: 1.05 + XmlUI: '' +CustomDeck: + '112': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/87094793642556387/D32E204C37FB97BB2F7B5A72C1CB867181533D5C/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642555419/98C6688D4F868ABA23FF62848E773F55962361C5/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + '113': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/87094793642556387/D32E204C37FB97BB2F7B5A72C1CB867181533D5C/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642555419/98C6688D4F868ABA23FF62848E773F55962361C5/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + '114': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/87094793642556387/D32E204C37FB97BB2F7B5A72C1CB867181533D5C/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642555419/98C6688D4F868ABA23FF62848E773F55962361C5/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + '115': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/87094793642556387/D32E204C37FB97BB2F7B5A72C1CB867181533D5C/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642555419/98C6688D4F868ABA23FF62848E773F55962361C5/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + '116': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/87094793642556387/D32E204C37FB97BB2F7B5A72C1CB867181533D5C/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642555419/98C6688D4F868ABA23FF62848E773F55962361C5/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + '117': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '118': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/87094793642556387/D32E204C37FB97BB2F7B5A72C1CB867181533D5C/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642555419/98C6688D4F868ABA23FF62848E773F55962361C5/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + '119': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/87094793642556387/D32E204C37FB97BB2F7B5A72C1CB867181533D5C/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642555419/98C6688D4F868ABA23FF62848E773F55962361C5/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + '120': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/87094793642556387/D32E204C37FB97BB2F7B5A72C1CB867181533D5C/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642555419/98C6688D4F868ABA23FF62848E773F55962361C5/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + '121': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '34': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642393244/74ADDF83D8B03DBF4AD5DC7230C2D12E84685317/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 12103 +- 12102 +- 3428 +- 11700 +- 11211 +- 11610 +- 11509 +- 11408 +- 11307 +- 12006 +- 12005 +- 12004 +- 11903 +- 11902 +- 11901 +- 11800 +Description: '' +GMNotes: '' +GUID: 31748f +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: The Gathering +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 51.6777878 + posY: 2.599536 + posZ: 38.5660629 + rotX: 0.0208045952 + rotY: 270.0114 + rotZ: 0.0167747773 + scaleX: 1.05 + scaleY: 1.0 + scaleZ: 1.05 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck The Labyrinths of Lunacy 1e86b9.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck The Labyrinths of Lunacy 1e86b9.yaml new file mode 100644 index 000000000..eeb65b500 --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck The Labyrinths of Lunacy 1e86b9.yaml @@ -0,0 +1,2071 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 265122 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: 3bf255 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Harvested Pain + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 99.32283 + posY: 1.402891 + posZ: 16.1594715 + rotX: 359.987427 + rotY: 270.0419 + rotZ: 359.984528 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265122 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: 2927c6 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Harvested Pain + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 99.4119644 + posY: 1.50139368 + posZ: 16.1548748 + rotX: 359.98877 + rotY: 269.999573 + rotZ: 357.567535 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265122 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: '817446' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Harvested Pain + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 99.43551 + posY: 1.526434 + posZ: 15.96002 + rotX: 359.986 + rotY: 270.000854 + rotZ: 1.45224845 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265119 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false + Description: Trap. + GMNotes: '' + GUID: '817446' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Blood and Rust + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 88.6678848 + posY: 1.55611813 + posZ: 9.970097 + rotX: 359.9897 + rotY: 269.998932 + rotZ: 0.04547855 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265119 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false + Description: Trap. + GMNotes: '' + GUID: 8b2c36 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Blood and Rust + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 88.437294 + posY: 1.50557923 + posZ: 10.2924681 + rotX: 359.991425 + rotY: 269.999634 + rotZ: 357.5247 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265119 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false + Description: Trap. + GMNotes: '' + GUID: 6fc896 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Blood and Rust + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 88.3853 + posY: 1.556675 + posZ: 10.0119734 + rotX: 359.9889 + rotY: 269.9983 + rotZ: 0.0266411547 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265118 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false + Description: Trap. + GMNotes: '' + GUID: '817446' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dreadful Mechanism + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 88.40202 + posY: 1.51738489 + posZ: 10.3532047 + rotX: 359.990784 + rotY: 270.000977 + rotZ: 357.579376 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265118 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false + Description: Trap. + GMNotes: '' + GUID: 4fa340 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dreadful Mechanism + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 88.3050842 + posY: 1.56658614 + posZ: 10.4130373 + rotX: 0.425195515 + rotY: 270.0003 + rotZ: 359.406342 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265118 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false + Description: Trap. + GMNotes: '' + GUID: 0872f7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dreadful Mechanism + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 88.72666 + posY: 1.52400029 + posZ: 10.4418688 + rotX: 359.500061 + rotY: 269.997375 + rotZ: 359.393829 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265117 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false + Description: Trap. Poison. + GMNotes: '' + GUID: '817446' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Poisonous Gas + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 88.42718 + posY: 1.49226987 + posZ: 9.87393 + rotX: 359.9905 + rotY: 269.988159 + rotZ: 1.84508133 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265117 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false + Description: Trap. Poison. + GMNotes: '' + GUID: 47bd50 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Poisonous Gas + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 88.6328 + posY: 1.49738562 + posZ: 10.44919 + rotX: 359.988739 + rotY: 270.00473 + rotZ: 357.566376 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265117 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false + Description: Trap. Poison. + GMNotes: '' + GUID: '817446' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Poisonous Gas + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 88.67652 + posY: 1.55425286 + posZ: 10.342 + rotX: 359.727173 + rotY: 269.998 + rotZ: 359.719025 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265116 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false + Description: Injury. Poison. + GMNotes: '' + GUID: bf90c6 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Unnatural Weariness + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 88.38768 + posY: 1.51428568 + posZ: 10.3398466 + rotX: 359.99115 + rotY: 270.00116 + rotZ: 357.4586 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265116 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false + Description: Injury. Poison. + GMNotes: '' + GUID: '817446' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Unnatural Weariness + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 88.1717453 + posY: 1.53512383 + posZ: 10.0539761 + rotX: 359.987823 + rotY: 270.000458 + rotZ: 357.402222 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265116 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false + Description: Injury. Poison. + GMNotes: '' + GUID: 24e15d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Unnatural Weariness + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 88.30184 + posY: 1.537315 + posZ: 9.96665 + rotX: 359.991425 + rotY: 269.9994 + rotZ: 2.355699 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265115 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false + Description: Monster. Mi-Go. + GMNotes: '' + GUID: '817446' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Mi-Go Guard + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 88.4297562 + posY: 1.55438137 + posZ: 9.913128 + rotX: 359.987823 + rotY: 270.002563 + rotZ: 357.122559 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265115 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false + Description: Monster. Mi-Go. + GMNotes: '' + GUID: '817446' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Mi-Go Guard + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 88.4773 + posY: 1.55658591 + posZ: 10.076251 + rotX: 359.991028 + rotY: 269.998627 + rotZ: 2.35404778 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265115 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false + Description: Monster. Mi-Go. + GMNotes: '' + GUID: 774f5f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Mi-Go Guard + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 88.5140152 + posY: 1.56959558 + posZ: 10.3835783 + rotX: 359.9919 + rotY: 269.999939 + rotZ: 2.67816639 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265114 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false + Description: Humanoid. Extradimensional. + GMNotes: '' + GUID: '817446' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Tortured Victim + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 88.9503 + posY: 1.57413626 + posZ: 10.09736 + rotX: 359.989166 + rotY: 269.996277 + rotZ: 357.167572 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265114 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false + Description: Humanoid. Extradimensional. + GMNotes: '' + GUID: d18a7d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Tortured Victim + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 88.47839 + posY: 1.6045388 + posZ: 9.786497 + rotX: 359.988434 + rotY: 269.9994 + rotZ: 357.435883 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265114 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false + Description: Humanoid. Extradimensional. + GMNotes: '' + GUID: 7a1943 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Tortured Victim + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 88.448555 + posY: 1.64191353 + posZ: 9.830718 + rotX: 0.5032236 + rotY: 270.002045 + rotZ: 0.777747452 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265113 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false + Description: Monster. Nightgaunt. + GMNotes: '' + GUID: '817446' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Faceless Abductor + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 88.34541 + posY: 1.60692322 + posZ: 10.2378683 + rotX: 359.987549 + rotY: 270.000061 + rotZ: 357.5747 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265113 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false + Description: Monster. Nightgaunt. + GMNotes: '' + GUID: '598744' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Faceless Abductor + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 88.9375458 + posY: 1.65815985 + posZ: 10.5592318 + rotX: 359.166229 + rotY: 270.005554 + rotZ: 358.878784 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265109 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false + Description: Your Anguish Is My Power + GMNotes: '' + GUID: '817446' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Eixodolon + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 88.451004 + posY: 1.67007339 + posZ: 10.45468 + rotX: 359.988678 + rotY: 269.994 + rotZ: -0.00473123277 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265102 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false + Description: Item. + GMNotes: '' + GUID: '817446' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Mysterious Syringe + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 88.489296 + posY: 1.67975593 + posZ: 10.4796286 + rotX: 359.989929 + rotY: 270.0 + rotZ: 359.990234 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265101 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false + Description: Item. Key. + GMNotes: '' + GUID: 7399a5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Key of Mysteries + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 88.51992 + posY: 1.68945372 + posZ: 10.2128325 + rotX: 359.989868 + rotY: 269.999573 + rotZ: 0.00600650348 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265100 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false + Description: Item. Script. + GMNotes: '' + GUID: '817446' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Eixodolon's Note + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 88.6720657 + posY: 1.69802022 + posZ: 9.951589 + rotX: 359.4877 + rotY: 270.000854 + rotZ: 0.6203125 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12331 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Distortion. + GMNotes: '' + GUID: 774c0b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Abandoned Warehouse + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 100.48996 + posY: 1.63266683 + posZ: 6.37992144 + rotX: 359.986328 + rotY: 270.0002 + rotZ: 179.985291 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12330 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 8d4c1e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Chamber of Poison + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 100.078484 + posY: 1.62305188 + posZ: 6.48226738 + rotX: 359.9845 + rotY: 269.999847 + rotZ: 179.982132 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12329 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Distortion. + GMNotes: '' + GUID: 76a7f5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Chamber of Rot + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 99.76724 + posY: 1.61343181 + posZ: 6.50032949 + rotX: 359.986267 + rotY: 270.000275 + rotZ: 179.986191 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12328 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Distortion. + GMNotes: '' + GUID: '839314' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Chamber of Decay + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 99.9974442 + posY: 1.60361958 + posZ: 6.586125 + rotX: 0.00125000137 + rotY: 270.0266 + rotZ: 179.955963 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12327 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Distortion. + GMNotes: '' + GUID: '945939' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Chamber of Hunger + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 100.382927 + posY: 1.59397435 + posZ: 6.80578661 + rotX: -0.0009645224 + rotY: 270.0443 + rotZ: 179.956192 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12326 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: '323435' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Labyrinthine Halls + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 100.535454 + posY: 1.58424151 + posZ: 6.919748 + rotX: 359.9868 + rotY: 270.0008 + rotZ: 179.984344 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12325 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 5eb4c2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Labyrinthine Halls + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 100.359077 + posY: 1.57461894 + posZ: 6.864118 + rotX: 359.987823 + rotY: 269.991577 + rotZ: 179.990234 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12324 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: d13692 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Labyrinthine Halls + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 99.87181 + posY: 1.56502271 + posZ: 6.82675076 + rotX: 359.987579 + rotY: 270.001038 + rotZ: 179.984909 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12323 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Distortion. + GMNotes: '' + GUID: 6c7570 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Chamber of Regret + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 100.43499 + posY: 1.5554446 + posZ: 6.49104261 + rotX: 359.979218 + rotY: 270.031 + rotZ: 179.971375 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12318 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Distortion. + GMNotes: '' + GUID: aa6ad6 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Chamber of Rain + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 100.504578 + posY: 1.54566336 + posZ: 6.43128538 + rotX: 359.9879 + rotY: 269.995575 + rotZ: 179.981628 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12317 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Prison. Distortion. + GMNotes: '' + GUID: 2ce8bf + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Chamber of Secrets + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 100.286957 + posY: 1.536049 + posZ: 6.683697 + rotX: 359.986359 + rotY: 269.999451 + rotZ: 179.985687 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12316 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Prison. Distortion. + GMNotes: '' + GUID: 8fcb18 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Chamber of Secrets + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 99.51592 + posY: 1.52652788 + posZ: 6.33180857 + rotX: 359.987946 + rotY: 269.996643 + rotZ: 179.9918 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12315 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Prison. Distortion. + GMNotes: '' + GUID: f97fe2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Chamber of Secrets + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 100.14653 + posY: 1.56891561 + posZ: 6.36913061 + rotX: 359.9893 + rotY: 270.000427 + rotZ: 179.987961 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12312 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 2 + GMNotes: '' + GUID: 119a43 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Pet (Group C) + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 100.485634 + posY: 1.562698 + posZ: 6.19782 + rotX: 359.988159 + rotY: 270.059937 + rotZ: 179.950546 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12311 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 2 + GMNotes: '' + GUID: 2c450f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Seeping Death (Group B) + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 100.577538 + posY: 1.55699158 + posZ: 6.727262 + rotX: 359.988281 + rotY: 269.814667 + rotZ: 179.980927 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12310 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 2 + GMNotes: '' + GUID: 7d3634 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Distortions in Time (Group A) + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 100.902512 + posY: 1.554574 + posZ: 6.49083328 + rotX: 359.979736 + rotY: 269.8819 + rotZ: 179.977264 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12307 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 1 + GMNotes: '' + GUID: 02cc53 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Watery Grave (Group B) + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 100.615868 + posY: 1.55684555 + posZ: 6.52208328 + rotX: 359.9766 + rotY: 269.683716 + rotZ: 179.978638 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12306 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 1 + GMNotes: '' + GUID: ae9723 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Sealed In (Group A) + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 100.79303 + posY: 1.5612396 + posZ: 6.16108274 + rotX: 0.0184825882 + rotY: 180.356384 + rotZ: 180.019638 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12305 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 3 + GMNotes: '' + GUID: c30682 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Mastermind + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 100.221909 + posY: 1.55294347 + posZ: 6.618331 + rotX: 359.989868 + rotY: 270.923767 + rotZ: 179.990829 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12300 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: The Labyrinths of Lunacy + GMNotes: '' + GUID: c69095 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Scenario + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 100.454636 + posY: 1.40791023 + posZ: 6.72080755 + rotX: 359.982483 + rotY: 270.011444 + rotZ: 179.984741 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false +DeckIDs: +- 265122 +- 265122 +- 265122 +- 265119 +- 265119 +- 265119 +- 265118 +- 265118 +- 265118 +- 265117 +- 265117 +- 265117 +- 265116 +- 265116 +- 265116 +- 265115 +- 265115 +- 265115 +- 265114 +- 265114 +- 265114 +- 265113 +- 265113 +- 265109 +- 265102 +- 265101 +- 265100 +- 12331 +- 12330 +- 12329 +- 12328 +- 12327 +- 12326 +- 12325 +- 12324 +- 12323 +- 12318 +- 12317 +- 12316 +- 12315 +- 12312 +- 12311 +- 12310 +- 12307 +- 12306 +- 12305 +- 12300 +Description: '' +GMNotes: '' +GUID: 1e86b9 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: The Labyrinths of Lunacy +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 16.623888 + posY: 3.729707 + posZ: -5.361016 + rotX: 359.91922 + rotY: 270.02533 + rotZ: 0.01756024 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck The Midnight Masks 780667.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck The Midnight Masks 780667.yaml new file mode 100644 index 000000000..4beb3f74b --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck The Midnight Masks 780667.yaml @@ -0,0 +1,910 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 3605 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: de1cd2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: False Lead + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 95.38174 + posY: 1.636171 + posZ: 14.1271181 + rotX: 359.987427 + rotY: 270.031769 + rotZ: 179.984528 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3605 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: b6793f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: False Lead + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 95.77325 + posY: 1.62190938 + posZ: 14.3964052 + rotX: 359.989868 + rotY: 270.000275 + rotZ: 179.98793 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3604 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Curse. + GMNotes: '' + GUID: 46af71 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Hunting Shadow + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 95.49693 + posY: 1.75674641 + posZ: 14.422184 + rotX: 359.973877 + rotY: 269.999146 + rotZ: 171.766968 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3604 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Curse. + GMNotes: '' + GUID: caabe8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Hunting Shadow + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 95.52533 + posY: 1.67108 + posZ: 14.3545265 + rotX: 359.990631 + rotY: 269.998657 + rotZ: 184.6889 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3604 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Curse. + GMNotes: '' + GUID: e98498 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Hunting Shadow + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 95.56942 + posY: 1.54872537 + posZ: 14.153945 + rotX: 359.975067 + rotY: 269.981354 + rotZ: 182.156113 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3526 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '35': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/87094793642556387/D32E204C37FB97BB2F7B5A72C1CB867181533D5C/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642555419/98C6688D4F868ABA23FF62848E773F55962361C5/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: f1a25d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Northside + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 95.6805038 + posY: 1.5832566 + posZ: 14.5722876 + rotX: 359.987427 + rotY: 270.035248 + rotZ: 179.984665 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3525 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '35': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/87094793642556387/D32E204C37FB97BB2F7B5A72C1CB867181533D5C/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642555419/98C6688D4F868ABA23FF62848E773F55962361C5/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: ad5593 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Graveyard + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 95.61472 + posY: 1.57373106 + posZ: 14.0737324 + rotX: 359.987762 + rotY: 269.9994 + rotZ: 179.983276 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3524 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '35': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/87094793642556387/D32E204C37FB97BB2F7B5A72C1CB867181533D5C/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642555419/98C6688D4F868ABA23FF62848E773F55962361C5/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: '292569' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Easttown + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 95.16433 + posY: 1.56404448 + posZ: 14.5489 + rotX: 359.987274 + rotY: 270.000763 + rotZ: 179.985886 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3523 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '35': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/87094793642556387/D32E204C37FB97BB2F7B5A72C1CB867181533D5C/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642555419/98C6688D4F868ABA23FF62848E773F55962361C5/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 9c7992 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Downtown + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 95.24169 + posY: 1.55433118 + posZ: 14.6757708 + rotX: 359.9876 + rotY: 269.973328 + rotZ: 179.983658 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3522 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '35': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/87094793642556387/D32E204C37FB97BB2F7B5A72C1CB867181533D5C/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642555419/98C6688D4F868ABA23FF62848E773F55962361C5/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 0ef190 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Downtown + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 95.5420761 + posY: 1.546623 + posZ: 14.6822529 + rotX: 359.5782 + rotY: 270.005981 + rotZ: 179.381226 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3521 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '35': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/87094793642556387/D32E204C37FB97BB2F7B5A72C1CB867181533D5C/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642555419/98C6688D4F868ABA23FF62848E773F55962361C5/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: a5509c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Miskatonic University + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 95.13409 + posY: 1.535088 + posZ: 14.4472408 + rotX: 359.9859 + rotY: 269.9884 + rotZ: 179.977036 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3520 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '35': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/87094793642556387/D32E204C37FB97BB2F7B5A72C1CB867181533D5C/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642555419/98C6688D4F868ABA23FF62848E773F55962361C5/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: b93657 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: St. Mary's Hospital + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 95.35883 + posY: 1.52539217 + posZ: 14.437705 + rotX: 359.987366 + rotY: 269.990143 + rotZ: 179.984512 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3519 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '35': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/87094793642556387/D32E204C37FB97BB2F7B5A72C1CB867181533D5C/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642555419/98C6688D4F868ABA23FF62848E773F55962361C5/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: a90fd5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Southside + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 95.40498 + posY: 1.59804928 + posZ: 14.2014523 + rotX: 1.09132445 + rotY: 270.032532 + rotZ: 179.987518 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3518 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '35': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/87094793642556387/D32E204C37FB97BB2F7B5A72C1CB867181533D5C/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642555419/98C6688D4F868ABA23FF62848E773F55962361C5/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 6473f5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Southside + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 95.3178253 + posY: 1.56161773 + posZ: 14.3610544 + rotX: 359.9867 + rotY: 269.993225 + rotZ: 179.98172 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3517 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '35': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/87094793642556387/D32E204C37FB97BB2F7B5A72C1CB867181533D5C/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642555419/98C6688D4F868ABA23FF62848E773F55962361C5/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 784ebd + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Rivertown + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 95.7022552 + posY: 1.5565536 + posZ: 14.539176 + rotX: 359.9851 + rotY: 270.019348 + rotZ: 179.97261 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3516 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '35': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/87094793642556387/D32E204C37FB97BB2F7B5A72C1CB867181533D5C/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642555419/98C6688D4F868ABA23FF62848E773F55962361C5/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 71df4e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Your House + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 95.84744 + posY: 1.55414176 + posZ: 14.6150837 + rotX: 0.00233219867 + rotY: 269.998962 + rotZ: 179.981674 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3515 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '35': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/87094793642556387/D32E204C37FB97BB2F7B5A72C1CB867181533D5C/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642555419/98C6688D4F868ABA23FF62848E773F55962361C5/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 1 + GMNotes: '' + GUID: a4bc3c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Uncovering the Conspiracy + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 95.6837158 + posY: 1.55600536 + posZ: 14.5477524 + rotX: 359.992554 + rotY: 270.579041 + rotZ: 179.991547 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3514 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '35': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/87094793642556387/D32E204C37FB97BB2F7B5A72C1CB867181533D5C/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642555419/98C6688D4F868ABA23FF62848E773F55962361C5/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 2 + GMNotes: '' + GUID: f2dea8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Time is Running Short + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 95.24047 + posY: 1.56962252 + posZ: 14.6040421 + rotX: 359.9878 + rotY: 269.993134 + rotZ: 179.9939 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3513 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '35': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/87094793642556387/D32E204C37FB97BB2F7B5A72C1CB867181533D5C/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642555419/98C6688D4F868ABA23FF62848E773F55962361C5/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 1 + GMNotes: '' + GUID: 39fae4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Predator or Prey + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 95.1464539 + posY: 1.55286086 + posZ: 14.1514826 + rotX: 0.02071851 + rotY: 269.567749 + rotZ: 179.955643 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3512 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '35': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/87094793642556387/D32E204C37FB97BB2F7B5A72C1CB867181533D5C/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642555419/98C6688D4F868ABA23FF62848E773F55962361C5/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 2ca952 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Midnight Masks + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 95.36859 + posY: 1.40702617 + posZ: 14.5146885 + rotX: 359.987427 + rotY: 269.999939 + rotZ: 179.984543 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '35': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/87094793642556387/D32E204C37FB97BB2F7B5A72C1CB867181533D5C/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642555419/98C6688D4F868ABA23FF62848E773F55962361C5/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 3605 +- 3605 +- 3604 +- 3604 +- 3604 +- 3526 +- 3525 +- 3524 +- 3523 +- 3522 +- 3521 +- 3520 +- 3519 +- 3518 +- 3517 +- 3516 +- 3515 +- 3514 +- 3513 +- 3512 +Description: '' +GMNotes: '' +GUID: '780667' +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: The Midnight Masks +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 16.6260853 + posY: 3.61533642 + posZ: -4.819068 + rotX: 359.919464 + rotY: 269.999481 + rotZ: 0.0170698185 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck The Night's Usurper 4cec40.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck The Night's Usurper 4cec40.yaml new file mode 100644 index 000000000..b9d3f18e2 --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck The Night's Usurper 4cec40.yaml @@ -0,0 +1,745 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 266311 + 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 + UniqueBack: true + Description: Humanoid. Cultist. + GMNotes: '' + GUID: ef54c7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Speaker for the Dark Pharaoh + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 99.9226 + posY: 2.596977 + posZ: -4.725564 + rotX: 0.0 + rotY: 270.0 + rotZ: 159.4433 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 266312 + 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 + UniqueBack: true + Description: Humanoid. Cultist. + GMNotes: '' + GUID: 0aae5d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Speaker for the Dark Pharaoh + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 96.80403 + posY: 2.597308 + posZ: -3.412189 + rotX: 0.0 + rotY: 270.0 + rotZ: 159.4433 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 266314 + 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 + UniqueBack: true + Description: Monster. Dreamlands. Shantak. + GMNotes: '' + GUID: 60018e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dreaded Shantak + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 96.26774 + posY: 1.59513223 + posZ: -0.670388 + rotX: 359.0123 + rotY: 269.997681 + rotZ: 177.903961 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 266313 + 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 + UniqueBack: true + Description: Monster. Dreamlands. Shantak. + GMNotes: '' + GUID: 5a91c0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dreaded Shantak + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 95.88562 + posY: 1.63319123 + posZ: -1.08543169 + rotX: 356.671539 + rotY: 270.015259 + rotZ: 181.230835 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 266315 + 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 + UniqueBack: true + Description: Expedition. Desert. Ruins. + GMNotes: '' + GUID: bdbf89 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Eldritch Gate + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 96.45611 + posY: 1.55640936 + posZ: -0.734766364 + rotX: 359.993958 + rotY: 270.020538 + rotZ: 179.961945 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 266305 + 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 + UniqueBack: true + Description: Servitor. Dreamlands. Conspirator. Elite. + GMNotes: '' + GUID: 1484da + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Xzharah + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 95.4240952 + posY: 1.54873657 + posZ: -0.724856436 + rotX: 359.9889 + rotY: 270.0051 + rotZ: 179.981186 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 266310 + 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 + UniqueBack: true + Description: Otherworld. Dreamlands. + GMNotes: '' + GUID: 5c32ef + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Mist-Filled Caverns + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 95.7708359 + posY: 1.53893638 + posZ: -0.619899631 + rotX: 359.990326 + rotY: 270.000549 + rotZ: 179.989929 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 266309 + 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 + UniqueBack: true + Description: Otherworld. Dreamlands. + GMNotes: '' + GUID: '768755' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Stairway to Sarkomand + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 96.04646 + posY: 1.52914584 + posZ: -0.354059726 + rotX: 359.989655 + rotY: 270.003754 + rotZ: 179.989731 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 266306 + 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 + UniqueBack: true + Description: Otherworld. Dreamlands. + GMNotes: '' + GUID: 17e165 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Tunnels under Ngranek + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 96.44039 + posY: 1.59666669 + posZ: -0.55979383 + rotX: 359.9745 + rotY: 270.0378 + rotZ: 181.3411 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 266308 + 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 + UniqueBack: true + Description: Otherworld. Dreamlands. + GMNotes: '' + GUID: da8ae8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Great Abyss + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 95.8229 + posY: 1.565405 + posZ: -0.08878335 + rotX: 359.978943 + rotY: 270.0222 + rotZ: 179.992569 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 266307 + 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 + UniqueBack: true + Description: Otherworld. Extradimensional. + GMNotes: '' + GUID: 19bf4f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: A Dream Betwixt + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 95.37102 + posY: 1.59191561 + posZ: -1.15133333 + rotX: -0.00536361942 + rotY: 270.026062 + rotZ: 178.38002 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 266400 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2664': + BackIsHidden: true + BackURL: https://i.imgur.com/NSozoRe.jpg + FaceURL: https://i.imgur.com/HLQOkvy.jpg + NumHeight: 5 + NumWidth: 10 + UniqueBack: true + Description: Act 3 + GMNotes: '' + GUID: 93dd4c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Night's Usurper + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 95.96377 + posY: 1.55791354 + posZ: -0.7406169 + rotX: 359.9868 + rotY: 269.1516 + rotZ: 179.981064 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 266401 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2664': + BackIsHidden: true + BackURL: https://i.imgur.com/NSozoRe.jpg + FaceURL: https://i.imgur.com/HLQOkvy.jpg + NumHeight: 5 + NumWidth: 10 + UniqueBack: true + Description: Act 2 + GMNotes: '' + GUID: 158b35 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Into the Gate + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 95.6354141 + posY: 1.56212819 + posZ: -0.492235 + rotX: 0.0759175047 + rotY: 269.468872 + rotZ: 179.95282 + 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: true + BackURL: https://i.imgur.com/NSozoRe.jpg + FaceURL: https://i.imgur.com/HLQOkvy.jpg + NumHeight: 5 + NumWidth: 10 + UniqueBack: true + Description: Act 1 + GMNotes: '' + GUID: c715c9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Search for the Gate + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 95.71167 + posY: 1.5735656 + posZ: -0.776779234 + rotX: 359.991852 + rotY: 269.90036 + rotZ: 179.9727 + 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: https://i.imgur.com/b1f3mgA.jpg + FaceURL: https://i.imgur.com/FFxz16e.jpg + NumHeight: 2 + NumWidth: 2 + UniqueBack: true + Description: Agenda 2 + GMNotes: '' + GUID: 023684 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Schemes in the Dark Beyond + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 96.21822 + posY: 1.55591869 + posZ: -0.447373033 + rotX: 359.974731 + rotY: 270.0273 + rotZ: 179.95517 + 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: true + BackURL: https://i.imgur.com/NSozoRe.jpg + FaceURL: https://i.imgur.com/HLQOkvy.jpg + NumHeight: 5 + NumWidth: 10 + UniqueBack: true + Description: Agenda 1 + GMNotes: '' + GUID: 05b7a2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Brotherhood Bides Their Time + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 95.81102 + posY: 1.41099083 + posZ: -0.609462 + rotX: 359.985748 + rotY: 270.020447 + rotZ: 179.9743 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2663': + BackIsHidden: true + BackURL: https://i.imgur.com/NSozoRe.jpg + FaceURL: https://i.imgur.com/HLQOkvy.jpg + NumHeight: 5 + NumWidth: 10 + UniqueBack: true + '2664': + BackIsHidden: true + BackURL: https://i.imgur.com/NSozoRe.jpg + FaceURL: https://i.imgur.com/HLQOkvy.jpg + NumHeight: 5 + NumWidth: 10 + UniqueBack: true + '2665': + BackIsHidden: true + BackURL: https://i.imgur.com/b1f3mgA.jpg + FaceURL: https://i.imgur.com/FFxz16e.jpg + NumHeight: 2 + NumWidth: 2 + UniqueBack: true +DeckIDs: +- 266311 +- 266312 +- 266314 +- 266313 +- 266315 +- 266305 +- 266310 +- 266309 +- 266306 +- 266308 +- 266307 +- 266400 +- 266401 +- 266402 +- 266500 +- 266404 +Description: '' +GMNotes: '' +GUID: 4cec40 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: The Night's Usurper +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 16.3392315 + posY: 3.59600949 + posZ: -4.84060144 + rotX: 359.919983 + rotY: 269.999573 + rotZ: 0.0225269739 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck The Search for Kadath 6340a3.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck The Search for Kadath 6340a3.yaml new file mode 100644 index 000000000..aea6d448b --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck The Search for Kadath 6340a3.yaml @@ -0,0 +1,774 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 231610 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2316': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780741189047974901/76B77E5C6488F3216316F01C4C82727CBEA00188/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Power. + GMNotes: '' + GUID: 2fc907 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Wondrous Lands + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 14.2486362 + posY: 1.5326308 + posZ: -1.66367829 + rotX: 359.921051 + rotY: 269.961823 + rotZ: 0.0291153751 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231610 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2316': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780741189047974901/76B77E5C6488F3216316F01C4C82727CBEA00188/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Power. + GMNotes: '' + GUID: abea7c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Wondrous Lands + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 14.2995672 + posY: 1.66725218 + posZ: -1.86455715 + rotX: 359.9517 + rotY: 269.8919 + rotZ: 0.0220867842 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231609 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2316': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780741189047974901/76B77E5C6488F3216316F01C4C82727CBEA00188/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Curse. + GMNotes: '' + GUID: 2ca8a4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Song of the Magah Bird + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 14.27005 + posY: 1.66587913 + posZ: -2.483604 + rotX: 358.387726 + rotY: 269.948181 + rotZ: 1.93967688 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231609 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2316': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780741189047974901/76B77E5C6488F3216316F01C4C82727CBEA00188/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Curse. + GMNotes: '' + GUID: 227b47 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Song of the Magah Bird + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 14.3005857 + posY: 1.67289412 + posZ: -1.83450055 + rotX: 359.946625 + rotY: 269.878143 + rotZ: 0.045130603 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231608 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2316': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780741189047974901/76B77E5C6488F3216316F01C4C82727CBEA00188/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Creature. Monster. + GMNotes: '' + GUID: 2fc907 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Nightriders + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 14.3368292 + posY: 1.67641234 + posZ: -1.81838536 + rotX: 358.945831 + rotY: 269.976 + rotZ: 1.238435 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231608 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2316': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780741189047974901/76B77E5C6488F3216316F01C4C82727CBEA00188/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Creature. Monster. + GMNotes: '' + GUID: 079905 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Nightriders + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 14.34302 + posY: 1.685765 + posZ: -1.66349041 + rotX: 359.944336 + rotY: 269.9232 + rotZ: 0.052023977 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231607 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2316': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780741189047974901/76B77E5C6488F3216316F01C4C82727CBEA00188/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Creature. Monster. + GMNotes: '' + GUID: 2fc907 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Pack of Vooniths + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 14.3291941 + posY: 1.69023776 + posZ: -2.141777 + rotX: 359.9378 + rotY: 269.896881 + rotZ: 0.0806380361 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231607 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2316': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780741189047974901/76B77E5C6488F3216316F01C4C82727CBEA00188/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Creature. Monster. + GMNotes: '' + GUID: ef03ae + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Pack of Vooniths + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 14.3346825 + posY: 1.69686985 + posZ: -2.19485855 + rotX: 359.93277 + rotY: 269.8689 + rotZ: 0.107650816 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231606 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2316': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780741189047974901/76B77E5C6488F3216316F01C4C82727CBEA00188/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Nightgaunt. + GMNotes: '' + GUID: 2fc907 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Tenebrous Nightgaunt + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 14.2857456 + posY: 1.64069617 + posZ: -1.86240387 + rotX: 359.9462 + rotY: 269.804779 + rotZ: 0.0556671545 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231606 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2316': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780741189047974901/76B77E5C6488F3216316F01C4C82727CBEA00188/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Nightgaunt. + GMNotes: '' + GUID: 19f49a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Tenebrous Nightgaunt + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 14.2226906 + posY: 1.70350146 + posZ: -1.80059159 + rotX: 359.892151 + rotY: 269.98526 + rotZ: 2.369994 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231605 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2316': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780741189047974901/76B77E5C6488F3216316F01C4C82727CBEA00188/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Cultist. + GMNotes: '' + GUID: bd99b0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Priest of a Thousand Masks + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 14.2244539 + posY: 1.67091668 + posZ: -1.81822228 + rotX: 359.933319 + rotY: 270.013336 + rotZ: 0.0248966627 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231605 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2316': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780741189047974901/76B77E5C6488F3216316F01C4C82727CBEA00188/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Cultist. + GMNotes: '' + GUID: 8a5ba5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Priest of a Thousand Masks + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 14.2487316 + posY: 1.680693 + posZ: -1.61303926 + rotX: 359.930725 + rotY: 269.953217 + rotZ: 0.0424909741 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231603 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2316': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780741189047974901/76B77E5C6488F3216316F01C4C82727CBEA00188/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Elite. + GMNotes: '' + GUID: 2fc907 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Horde of Night + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 14.2742186 + posY: 1.69017255 + posZ: -1.76049328 + rotX: 359.933319 + rotY: 269.997 + rotZ: 0.0171613432 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231605 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2316': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780741189047974901/76B77E5C6488F3216316F01C4C82727CBEA00188/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Cultist. + GMNotes: '' + GUID: 40d63c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Priest of a Thousand Masks + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 14.1365843 + posY: 1.70014167 + posZ: -1.36303616 + rotX: 359.938751 + rotY: 270.0042 + rotZ: 0.00643863 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231604 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2316': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780741189047974901/76B77E5C6488F3216316F01C4C82727CBEA00188/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Elite. + GMNotes: '' + GUID: 26251e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Beings of Ib + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 14.1843185 + posY: 1.70974755 + posZ: -1.33032751 + rotX: 359.939026 + rotY: 270.005981 + rotZ: 0.00463627 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231602 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2316': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780741189047974901/76B77E5C6488F3216316F01C4C82727CBEA00188/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Creature. Monster. Elite. + GMNotes: '' + GUID: 2fc907 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Stalking Manticore + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 14.1953449 + posY: 1.71989477 + posZ: -1.00725675 + rotX: 359.931427 + rotY: 269.9967 + rotZ: -0.00546988565 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231601 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2316': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780741189047974901/76B77E5C6488F3216316F01C4C82727CBEA00188/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Creature. Elite. + GMNotes: '' + GUID: bafc5c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Cats of Ulthar + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 14.3475637 + posY: 1.74423814 + posZ: -1.94910884 + rotX: 359.920349 + rotY: 270.030945 + rotZ: 0.0165613722 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2316': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780741189047974901/76B77E5C6488F3216316F01C4C82727CBEA00188/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 231610 +- 231610 +- 231609 +- 231609 +- 231608 +- 231608 +- 231607 +- 231607 +- 231606 +- 231606 +- 231605 +- 231605 +- 231603 +- 231605 +- 231604 +- 231602 +- 231601 +Description: '' +GMNotes: '' +GUID: 6340a3 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: The Search for Kadath +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 12.2504282 + posY: 3.61301517 + posZ: -12.6659021 + rotX: 359.919434 + rotY: 270.0073 + rotZ: 0.017081162 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck The Secret Name 802b3b.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck The Secret Name 802b3b.yaml new file mode 100644 index 000000000..111e297de --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck The Secret Name 802b3b.yaml @@ -0,0 +1,1469 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 275535 + 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/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Geist. Spectral. + GMNotes: '' + GUID: f65ded + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Malevolent Spirit + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 67.89812 + posY: 1.36149263 + posZ: 53.21682 + rotX: -0.002598478 + rotY: 270.011383 + rotZ: -0.00195344677 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 275538 + 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/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: 0fc433 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ominous Portents + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 68.06763 + posY: 1.53320372 + posZ: 53.3220367 + rotX: 0.539758265 + rotY: 270.039764 + rotZ: 0.5909528 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 275534 + 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/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Witch. + GMNotes: '' + GUID: '801539' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Vengeful Witch + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 67.59022 + posY: 1.53167927 + posZ: 53.82726 + rotX: 0.1831578 + rotY: 270.0069 + rotZ: 356.181274 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 275540 + 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/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Curse. Spectral. + GMNotes: '' + GUID: 9b05f2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Bane of the Living + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 67.20943 + posY: 1.79685616 + posZ: 54.0660667 + rotX: 359.881561 + rotY: 269.754059 + rotZ: 355.40863 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 275536 + 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/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: ad69c7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Punishment + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 67.18601 + posY: 2.14929318 + posZ: 53.57404 + rotX: 359.8002 + rotY: 269.726349 + rotZ: 23.32597 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 275536 + 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/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: 832e11 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Punishment + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 67.75685 + posY: 2.13239932 + posZ: 53.5727158 + rotX: 359.837921 + rotY: 269.764984 + rotZ: 11.4208088 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 275538 + 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/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: 8767b5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ominous Portents + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 67.69646 + posY: 2.39175415 + posZ: 53.49457 + rotX: 359.811554 + rotY: 269.796143 + rotZ: 17.6986656 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 275539 + 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/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Curse. + GMNotes: '' + GUID: 84bbd0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Grave-Light + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 68.07826 + posY: 2.830046 + posZ: 53.6572037 + rotX: 359.8148 + rotY: 270.029327 + rotZ: 2.34129548 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 275539 + 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/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Curse. + GMNotes: '' + GUID: 716bb1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Grave-Light + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 67.71578 + posY: 2.04815054 + posZ: 53.9277267 + rotX: 359.849121 + rotY: 270.0116 + rotZ: 2.522452 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 275537 + 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/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Curse. Spectral. + GMNotes: '' + GUID: f3088f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Burdens of the Past + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 68.01878 + posY: 2.05241847 + posZ: 53.7471237 + rotX: 359.734 + rotY: 270.015564 + rotZ: 2.66975427 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 275537 + 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/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Curse. Spectral. + GMNotes: '' + GUID: 199d00 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Burdens of the Past + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 67.6946 + posY: 1.69818509 + posZ: 55.19268 + rotX: 0.0470988452 + rotY: 269.5288 + rotZ: 0.03300087 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 275540 + 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/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Curse. Spectral. + GMNotes: '' + GUID: d9c83e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Bane of the Living + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 67.2187042 + posY: 1.53716135 + posZ: 54.7096024 + rotX: 0.0471831076 + rotY: 269.4903 + rotZ: 359.984924 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 275535 + 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/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Geist. Spectral. + GMNotes: '' + GUID: d02d98 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Malevolent Spirit + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 67.844986 + posY: 1.36183178 + posZ: 54.42846 + rotX: 0.004501297 + rotY: 270.0511 + rotZ: 0.0142555619 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 275534 + 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/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Witch. + GMNotes: '' + GUID: de0939 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Vengeful Witch + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 67.23209 + posY: 1.39144731 + posZ: 54.5489922 + rotX: 0.0159721 + rotY: 270.069763 + rotZ: 0.0057471944 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 275435 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2754': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/829135524526797029/1F8A6C29028AED32DB44E4CF22E3120C417F413D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526785922/F34A644AC467C751B6D7B8AF398B8FDB07CCF6A0/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Monster. Geist. Witch. Spectral. Elite. + GMNotes: '' + GUID: 13d3f3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Heretic + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 69.4145 + posY: 1.69632125 + posZ: 53.4256859 + rotX: 359.980682 + rotY: 270.146057 + rotZ: 352.6332 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 275436 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2754': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/829135524526797029/1F8A6C29028AED32DB44E4CF22E3120C417F413D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526785922/F34A644AC467C751B6D7B8AF398B8FDB07CCF6A0/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Monster. Geist. Witch. Spectral. Elite. + GMNotes: '' + GUID: 71e37c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Heretic + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 69.28269 + posY: 1.729415 + posZ: 53.34302 + rotX: 0.0362166539 + rotY: 270.036682 + rotZ: 3.49055147 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 275433 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2754': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/829135524526797029/1F8A6C29028AED32DB44E4CF22E3120C417F413D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526785922/F34A644AC467C751B6D7B8AF398B8FDB07CCF6A0/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Monster. Geist. Witch. Spectral. Elite. + GMNotes: '' + GUID: 6c0d7e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Heretic + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 68.79226 + posY: 1.41053843 + posZ: 54.1986237 + rotX: 359.9915 + rotY: 270.0384 + rotZ: 359.9652 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 275437 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2754': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/829135524526797029/1F8A6C29028AED32DB44E4CF22E3120C417F413D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526785922/F34A644AC467C751B6D7B8AF398B8FDB07CCF6A0/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Monster. Geist. Witch. Spectral. Elite. + GMNotes: '' + GUID: 6d6a42 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Heretic + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 69.13287 + posY: 1.36207438 + posZ: 53.1704254 + rotX: 0.0117934244 + rotY: 270.007935 + rotZ: 0.0133070461 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 275434 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2754': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/829135524526797029/1F8A6C29028AED32DB44E4CF22E3120C417F413D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526785922/F34A644AC467C751B6D7B8AF398B8FDB07CCF6A0/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Monster. Geist. Witch. Spectral. Elite. + GMNotes: '' + GUID: 6f896e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Heretic + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 68.2450256 + posY: 1.709407 + posZ: 53.6205139 + rotX: 359.978851 + rotY: 270.129272 + rotZ: 352.60144 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 275438 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2754': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/829135524526797029/1F8A6C29028AED32DB44E4CF22E3120C417F413D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526785922/F34A644AC467C751B6D7B8AF398B8FDB07CCF6A0/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Monster. Geist. Witch. Spectral. Elite. + GMNotes: '' + GUID: 962a85 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Heretic + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 69.72875 + posY: 1.51220357 + posZ: 52.1637421 + rotX: 0.0186539944 + rotY: 270.044373 + rotZ: 2.77752519 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 275531 + 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/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: She Who Signed the Black Book + GMNotes: '' + GUID: 5bd251 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Nahab + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 63.1780663 + posY: 1.35980248 + posZ: 52.1102943 + rotX: 0.02060929 + rotY: 270.008148 + rotZ: 0.0155979432 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 275526 + 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/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: 7725f0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ghostly Presence + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 62.6759453 + posY: 1.48951721 + posZ: 53.32214 + rotX: 359.7759 + rotY: 269.814484 + rotZ: 359.74765 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 275526 + 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/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: 5e23b2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ghostly Presence + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 63.576683 + posY: 1.64005351 + posZ: 52.4816475 + rotX: 359.7551 + rotY: 271.1138 + rotZ: 359.70224 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 275529 + 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/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: 4bfb2e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Disquieting Dreams + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 63.3983727 + posY: 1.77840531 + posZ: 52.55637 + rotX: 359.691162 + rotY: 269.879578 + rotZ: 359.720154 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 275529 + 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/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: ecc30a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Disquieting Dreams + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 64.26463 + posY: 1.5050261 + posZ: 51.8708839 + rotX: 359.842 + rotY: 269.636 + rotZ: 0.348466724 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 275525 + 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/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Curse. + GMNotes: '' + GUID: '669016' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Meddlesome Familiar + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 63.1912575 + posY: 1.76543987 + posZ: 52.62533 + rotX: 10.67961 + rotY: 269.308655 + rotZ: 357.195618 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 275527 + 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/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: c309da + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Extradimensional Visions + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 68.01079 + posY: 1.4488461 + posZ: 52.2776451 + rotX: 356.814575 + rotY: 271.9167 + rotZ: 0.0104112066 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 275527 + 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/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: 1a9156 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Extradimensional Visions + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 64.97478 + posY: 1.53172553 + posZ: 51.27002 + rotX: 354.307648 + rotY: 282.067566 + rotZ: 359.141449 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 275525 + 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/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Curse. + GMNotes: '' + GUID: '561923' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Meddlesome Familiar + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 64.37547 + posY: 1.58434379 + posZ: 51.03731 + rotX: 2.14948654 + rotY: 266.722961 + rotZ: 359.387482 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 275525 + 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/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Curse. + GMNotes: '' + GUID: 91ea7c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Meddlesome Familiar + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 64.03149 + posY: 1.62901521 + posZ: 52.1253967 + rotX: 357.864746 + rotY: 270.441956 + rotZ: 0.8495051 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 275528 + 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/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: 73138b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Pulled by the Stars + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 63.3105431 + posY: 1.82498789 + posZ: 52.9158058 + rotX: 357.9664 + rotY: 275.118378 + rotZ: 358.672241 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 275528 + 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/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: 6b521b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Pulled by the Stars + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 68.500946 + posY: 1.36071372 + posZ: 48.69339 + rotX: 0.02063481 + rotY: 270.5835 + rotZ: 0.0169848017 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 275530 + 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/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: The Witch's Familiar + GMNotes: '' + GUID: a5885f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Brown Jenkin + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 67.92371 + posY: 1.35973835 + posZ: 46.077713 + rotX: 0.0216126442 + rotY: 267.158936 + rotZ: 0.0157245919 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2754': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/829135524526797029/1F8A6C29028AED32DB44E4CF22E3120C417F413D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526785922/F34A644AC467C751B6D7B8AF398B8FDB07CCF6A0/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + '2755': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 275535 +- 275538 +- 275534 +- 275540 +- 275536 +- 275536 +- 275538 +- 275539 +- 275539 +- 275537 +- 275537 +- 275540 +- 275535 +- 275534 +- 275435 +- 275436 +- 275433 +- 275437 +- 275434 +- 275438 +- 275531 +- 275526 +- 275526 +- 275529 +- 275529 +- 275525 +- 275527 +- 275527 +- 275525 +- 275525 +- 275528 +- 275528 +- 275530 +Description: '' +GMNotes: '' +GUID: 802b3b +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: The Secret Name +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 50.36447 + posY: 3.5397613 + posZ: 60.06841 + rotX: 0.0202021617 + rotY: 269.989624 + rotZ: 180.016373 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck The Stranger bbd0cf.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck The Stranger bbd0cf.yaml new file mode 100644 index 000000000..9b4e8d543 --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck The Stranger bbd0cf.yaml @@ -0,0 +1,172 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 232229 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Omen. Pact. + GMNotes: '' + GUID: 70009a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Pale Mask Beckons + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -28.2434616 + posY: 1.5971483 + posZ: 15.4716158 + rotX: 359.920166 + rotY: 270.021973 + rotZ: 0.01652023 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232228 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Pact. + GMNotes: '' + GUID: c023fe + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Marked by the Sign + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -28.2468338 + posY: 1.76336575 + posZ: 15.2574654 + rotX: 359.9197 + rotY: 270.021973 + rotZ: 0.0146484794 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232228 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Pact. + GMNotes: '' + GUID: 8c321d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Marked by the Sign + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -28.2435665 + posY: 1.77552032 + posZ: 15.0727062 + rotX: 359.91925 + rotY: 270.021973 + rotZ: 0.0173290391 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 232229 +- 232228 +- 232228 +Description: '' +GMNotes: '' +GUID: bbd0cf +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: The Stranger +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 52.4981651 + posY: 2.4968915 + posZ: -40.26314 + rotX: 359.9201 + rotY: 270.0243 + rotZ: 0.0168426465 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck The Untamed Wilds c1a740.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck The Untamed Wilds c1a740.yaml new file mode 100644 index 000000000..7c6e0b8cf --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck The Untamed Wilds c1a740.yaml @@ -0,0 +1,523 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 12252 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '122': + BackIsHidden: true + BackURL: https://i.imgur.com/RpzEfmS.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393194495/027101CA5C626EBA0E4F76F3F15569329F81DE3C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Ancient. Ruins. + GMNotes: '' + GUID: 17871b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ruins of Eztli + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 96.2189255 + posY: 1.59282887 + posZ: 1.17133462 + rotX: 359.9877 + rotY: 269.981262 + rotZ: 177.501984 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12251 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '122': + BackIsHidden: true + BackURL: https://i.imgur.com/RpzEfmS.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393194495/027101CA5C626EBA0E4F76F3F15569329F81DE3C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Humanoid. Eztli. Elite. + GMNotes: '' + GUID: 73d855 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ichtaca + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 96.3385544 + posY: 1.538362 + posZ: 1.07290018 + rotX: 359.993347 + rotY: 269.995361 + rotZ: 179.988 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12250 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '122': + BackIsHidden: true + BackURL: https://i.imgur.com/RpzEfmS.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393194495/027101CA5C626EBA0E4F76F3F15569329F81DE3C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Ally. Wayfarer. + GMNotes: '' + GUID: 1b9dbf + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Alejandro Vela + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 96.29026 + posY: 1.53130889 + posZ: 0.5600051 + rotX: -0.00466950145 + rotY: 270.025177 + rotZ: 180.8297 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 129849 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1298': + BackIsHidden: true + BackURL: https://i.imgur.com/RpzEfmS.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393194495/027101CA5C626EBA0E4F76F3F15569329F81DE3C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Campsite. Jungle. + GMNotes: '' + GUID: 2ada4f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Expedition Camp + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 95.91954 + posY: 1.57147944 + posZ: 0.9464667 + rotX: 359.980377 + rotY: 270.0098 + rotZ: 179.981812 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 129848 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1298': + BackIsHidden: true + BackURL: https://i.imgur.com/RpzEfmS.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393194495/027101CA5C626EBA0E4F76F3F15569329F81DE3C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 3 + GMNotes: '' + GUID: 54ef29 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Guarded Ruins + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 96.19737 + posY: 1.56486714 + posZ: 1.3791306 + rotX: -0.00436160667 + rotY: 269.9837 + rotZ: 179.990585 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 129847 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1298': + BackIsHidden: true + BackURL: https://i.imgur.com/RpzEfmS.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393194495/027101CA5C626EBA0E4F76F3F15569329F81DE3C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 3 + GMNotes: '' + GUID: 79390e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Search for the Ruins + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 96.69798 + posY: 1.559871 + posZ: 0.9633721 + rotX: 359.988342 + rotY: 270.000977 + rotZ: 179.989868 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 129846 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1298': + BackIsHidden: true + BackURL: https://i.imgur.com/RpzEfmS.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393194495/027101CA5C626EBA0E4F76F3F15569329F81DE3C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 2 + GMNotes: '' + GUID: 487d1f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Huntress of the Eztli + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 96.66484 + posY: 1.55591571 + posZ: 0.987841666 + rotX: 359.290375 + rotY: 269.02182 + rotZ: 180.896057 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 129845 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1298': + BackIsHidden: true + BackURL: https://i.imgur.com/RpzEfmS.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393194495/027101CA5C626EBA0E4F76F3F15569329F81DE3C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 1 + GMNotes: '' + GUID: b77109 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Exploring the Rainforest + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 96.27689 + posY: 1.55939567 + posZ: 0.766602159 + rotX: 359.988068 + rotY: 269.9699 + rotZ: 179.987335 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 129844 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1298': + BackIsHidden: true + BackURL: https://i.imgur.com/RpzEfmS.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393194495/027101CA5C626EBA0E4F76F3F15569329F81DE3C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 2 + GMNotes: '' + GUID: 9a2bf1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Intruders + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 95.9796448 + posY: 1.57302558 + posZ: 1.26838446 + rotX: 359.988 + rotY: 270.0035 + rotZ: 179.984543 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 129843 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1298': + BackIsHidden: true + BackURL: https://i.imgur.com/RpzEfmS.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393194495/027101CA5C626EBA0E4F76F3F15569329F81DE3C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 1 + GMNotes: '' + GUID: 9f7d9a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Expedition into the Wild + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 96.1844559 + posY: 1.58408546 + posZ: 0.8713564 + rotX: 359.986877 + rotY: 269.9848 + rotZ: 181.643753 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 129842 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1298': + BackIsHidden: true + BackURL: https://i.imgur.com/RpzEfmS.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393194495/027101CA5C626EBA0E4F76F3F15569329F81DE3C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: The Untamed Wilds + GMNotes: '' + GUID: 7f1614 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Scenario + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 96.1951141 + posY: 1.4105854 + posZ: 1.07703912 + rotX: 359.9901 + rotY: 269.98822 + rotZ: 179.994522 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '122': + BackIsHidden: true + BackURL: https://i.imgur.com/RpzEfmS.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393194495/027101CA5C626EBA0E4F76F3F15569329F81DE3C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + '1298': + BackIsHidden: true + BackURL: https://i.imgur.com/RpzEfmS.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393194495/027101CA5C626EBA0E4F76F3F15569329F81DE3C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 12252 +- 12251 +- 12250 +- 129849 +- 129848 +- 129847 +- 129846 +- 129845 +- 129844 +- 129843 +- 129842 +Description: '' +GMNotes: '' +GUID: c1a740 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: The Untamed Wilds +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 21.327179 + posY: 3.47785354 + posZ: -7.04309034 + rotX: 359.920135 + rotY: 269.999634 + rotZ: 0.01686484 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck The Watcher 28374b.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck The Watcher 28374b.yaml new file mode 100644 index 000000000..ac2fec3ba --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck The Watcher 28374b.yaml @@ -0,0 +1,172 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 231802 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Power. Spectral. + GMNotes: '' + GUID: f798c8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Watcher's Grasp + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -27.8545532 + posY: 1.58170176 + posZ: -34.8676262 + rotX: 359.915649 + rotY: 269.974121 + rotZ: 0.01525554 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231802 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Power. Spectral. + GMNotes: '' + GUID: f92f1e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Watcher's Grasp + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -27.9526443 + posY: 1.72608125 + posZ: -34.6397629 + rotX: 359.9233 + rotY: 269.9745 + rotZ: 0.00772151956 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231801 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: You Are Its Prey + GMNotes: '' + GUID: a1eb9b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Spectral Watcher + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -27.4475632 + posY: 1.74305177 + posZ: -34.8419075 + rotX: 359.9185 + rotY: 269.974243 + rotZ: 0.0167756584 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 231802 +- 231802 +- 231801 +Description: '' +GMNotes: '' +GUID: 28374b +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: The Watcher +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -0.358435154 + posY: 3.50295258 + posZ: -18.55259 + rotX: 359.920135 + rotY: 269.974548 + rotZ: 0.0169069637 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck The Witching Hour b7d79e.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck The Witching Hour b7d79e.yaml new file mode 100644 index 000000000..c86d0e11b --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck The Witching Hour b7d79e.yaml @@ -0,0 +1,709 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 231707 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2317': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/829135524526797029/1F8A6C29028AED32DB44E4CF22E3120C417F413D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526785922/F34A644AC467C751B6D7B8AF398B8FDB07CCF6A0/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: The Witching Hour + GMNotes: '' + GUID: 35dcd2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Scenario + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 49.2071724 + posY: 1.35346222 + posZ: 48.0567551 + rotX: 0.0214508511 + rotY: 270.019135 + rotZ: 0.0129166609 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232008 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/829135524526797029/1F8A6C29028AED32DB44E4CF22E3120C417F413D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526785922/F34A644AC467C751B6D7B8AF398B8FDB07CCF6A0/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 1 + GMNotes: '' + GUID: 96a76c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: "TEMPERANCE \xB7 XIV" + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 48.9994659 + posY: 1.49845314 + posZ: 48.1676254 + rotX: 0.013805422 + rotY: 270.0191 + rotZ: 0.008607985 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232009 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/829135524526797029/1F8A6C29028AED32DB44E4CF22E3120C417F413D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526785922/F34A644AC467C751B6D7B8AF398B8FDB07CCF6A0/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 2 + GMNotes: '' + GUID: 9d5674 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Night Howls + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 49.0221977 + posY: 1.51654661 + posZ: 48.11106 + rotX: 0.0180173069 + rotY: 270.0211 + rotZ: 0.0203655176 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232010 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/829135524526797029/1F8A6C29028AED32DB44E4CF22E3120C417F413D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526785922/F34A644AC467C751B6D7B8AF398B8FDB07CCF6A0/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 1 + GMNotes: '' + GUID: 5b7c7c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Lost in the Woods + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 49.1034164 + posY: 1.50237215 + posZ: 47.9840164 + rotX: 0.020178441 + rotY: 270.021973 + rotZ: 0.019762177 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232011 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/829135524526797029/1F8A6C29028AED32DB44E4CF22E3120C417F413D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526785922/F34A644AC467C751B6D7B8AF398B8FDB07CCF6A0/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 2 + GMNotes: '' + GUID: 68cfea + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Witch Hauntings + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 49.0225372 + posY: 1.5006299 + posZ: 48.1466064 + rotX: 0.0249958877 + rotY: 270.0302 + rotZ: 0.00615679054 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232012 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/829135524526797029/1F8A6C29028AED32DB44E4CF22E3120C417F413D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526785922/F34A644AC467C751B6D7B8AF398B8FDB07CCF6A0/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 3 + GMNotes: '' + GUID: c31146 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Paths into Twilight + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 49.0514755 + posY: 1.50494492 + posZ: 48.12047 + rotX: 0.019892009 + rotY: 270.0127 + rotZ: -0.00182053063 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232013 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/829135524526797029/1F8A6C29028AED32DB44E4CF22E3120C417F413D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526785922/F34A644AC467C751B6D7B8AF398B8FDB07CCF6A0/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 4 + GMNotes: '' + GUID: 0a0759 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: A Circle Unbroken + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 49.0753975 + posY: 1.49746847 + posZ: 47.2866936 + rotX: 0.0337655321 + rotY: 270.0973 + rotZ: 359.9865 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231906 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/829135524527100186/0D63305581E65C95F286CCA4902B7DE796D815BD/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524527103742/0C4DB40889420CFE47BE897944621ABF2ECA52F9/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Woods. + GMNotes: '' + GUID: fc78d7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Witch-Haunted Woods + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 48.8766632 + posY: 1.51617968 + posZ: 47.4497223 + rotX: 0.020054346 + rotY: 270.0205 + rotZ: -0.0009097709 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231905 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/829135524527100186/0D63305581E65C95F286CCA4902B7DE796D815BD/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524527103742/0C4DB40889420CFE47BE897944621ABF2ECA52F9/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Woods. + GMNotes: '' + GUID: 1539ea + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Witch-Haunted Woods + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 48.7832451 + posY: 1.46606565 + posZ: 48.61643 + rotX: 0.04512627 + rotY: 270.225342 + rotZ: 359.871857 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231903 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/829135524527100186/0D63305581E65C95F286CCA4902B7DE796D815BD/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524527103742/0C4DB40889420CFE47BE897944621ABF2ECA52F9/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Woods. + GMNotes: '' + GUID: d3f8c3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Witch-Haunted Woods + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 48.8313866 + posY: 1.47731411 + posZ: 47.4039536 + rotX: 0.038958177 + rotY: 270.1385 + rotZ: 359.981873 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231900 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/829135524527100186/0D63305581E65C95F286CCA4902B7DE796D815BD/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524527103742/0C4DB40889420CFE47BE897944621ABF2ECA52F9/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Woods. + GMNotes: '' + GUID: d7fb9d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Witch-Haunted Woods + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 48.9027824 + posY: 1.488688 + posZ: 47.49023 + rotX: 0.0433826372 + rotY: 270.168549 + rotZ: 359.947632 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231904 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/829135524527100186/0D63305581E65C95F286CCA4902B7DE796D815BD/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524527103742/0C4DB40889420CFE47BE897944621ABF2ECA52F9/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Woods. + GMNotes: '' + GUID: 0fe9f1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Witch-Haunted Woods + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 48.9649658 + posY: 1.496786 + posZ: 47.9508247 + rotX: 0.0283903722 + rotY: 269.987854 + rotZ: 359.957031 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231902 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/829135524527100186/0D63305581E65C95F286CCA4902B7DE796D815BD/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524527103742/0C4DB40889420CFE47BE897944621ABF2ECA52F9/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Woods. + GMNotes: '' + GUID: 05d5ef + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Witch-Haunted Woods + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 48.9663124 + posY: 3.09745073 + posZ: 46.86898 + rotX: 0.0208015945 + rotY: 270.018982 + rotZ: 0.0167798474 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231901 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/829135524527100186/0D63305581E65C95F286CCA4902B7DE796D815BD/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524527103742/0C4DB40889420CFE47BE897944621ABF2ECA52F9/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Woods. + GMNotes: '' + GUID: eca18e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Witch-Haunted Woods + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 48.96015 + posY: 1.51953745 + posZ: 47.5108261 + rotX: 0.018231472 + rotY: 270.016174 + rotZ: 359.981049 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231800 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: The High Priestess + GMNotes: '' + GUID: '845563' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Anette Mason + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 49.3143349 + posY: 1.52982044 + posZ: 47.8782959 + rotX: 0.0178504288 + rotY: 270.000458 + rotZ: 0.0120635182 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2317': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/829135524526797029/1F8A6C29028AED32DB44E4CF22E3120C417F413D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526785922/F34A644AC467C751B6D7B8AF398B8FDB07CCF6A0/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/829135524527100186/0D63305581E65C95F286CCA4902B7DE796D815BD/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524527103742/0C4DB40889420CFE47BE897944621ABF2ECA52F9/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/829135524526797029/1F8A6C29028AED32DB44E4CF22E3120C417F413D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526785922/F34A644AC467C751B6D7B8AF398B8FDB07CCF6A0/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 231707 +- 232008 +- 232009 +- 232010 +- 232011 +- 232012 +- 232013 +- 231906 +- 231905 +- 231903 +- 231900 +- 231904 +- 231902 +- 231901 +- 231800 +Description: '' +GMNotes: '' +GUID: b7d79e +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: The Witching Hour +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 51.53904 + posY: 2.53432679 + posZ: 36.640522 + rotX: 0.0208084174 + rotY: 270.0 + rotZ: 180.016769 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Threads of Fate 5419e6.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Threads of Fate 5419e6.yaml new file mode 100644 index 000000000..13910e7d5 --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Threads of Fate 5419e6.yaml @@ -0,0 +1,1763 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 265145 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '122': + BackIsHidden: true + BackURL: https://i.imgur.com/No3PMAy.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159325148/B25E4760A8FFC5A71DFA1DE038D6CA8A74C7AE0C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Item. Tome. + GMNotes: '' + GUID: '891282' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Expedition Journal + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 83.8095 + posY: 1.83077276 + posZ: 1.77573037 + rotX: 359.990173 + rotY: 270.000366 + rotZ: 179.990219 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265144 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '122': + BackIsHidden: true + BackURL: https://i.imgur.com/No3PMAy.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159325148/B25E4760A8FFC5A71DFA1DE038D6CA8A74C7AE0C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Ally. Eztli. Wayfarer. + GMNotes: '' + GUID: d6cd01 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ichtaca + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 83.8797455 + posY: 1.821291 + posZ: 1.35523689 + rotX: 359.981 + rotY: 270.00882 + rotZ: 179.976669 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265143 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '122': + BackIsHidden: true + BackURL: https://i.imgur.com/No3PMAy.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159325148/B25E4760A8FFC5A71DFA1DE038D6CA8A74C7AE0C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Hex. + GMNotes: '' + GUID: f6e2b8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Conspiracy of Blood + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 84.679245 + posY: 1.80296457 + posZ: 1.79692626 + rotX: 358.7038 + rotY: 270.019318 + rotZ: 178.318954 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265143 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '122': + BackIsHidden: true + BackURL: https://i.imgur.com/No3PMAy.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159325148/B25E4760A8FFC5A71DFA1DE038D6CA8A74C7AE0C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Hex. + GMNotes: '' + GUID: '776222' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Conspiracy of Blood + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 83.64849 + posY: 1.80282319 + posZ: 1.68001068 + rotX: 359.9899 + rotY: 270.000031 + rotZ: 179.987717 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265142 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '122': + BackIsHidden: true + BackURL: https://i.imgur.com/No3PMAy.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159325148/B25E4760A8FFC5A71DFA1DE038D6CA8A74C7AE0C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Mystery. + GMNotes: '' + GUID: e417e8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Nobody's Home + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 83.2559357 + posY: 1.793434 + posZ: 0.996721566 + rotX: 359.989929 + rotY: 270.0 + rotZ: 179.98764 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265142 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '122': + BackIsHidden: true + BackURL: https://i.imgur.com/No3PMAy.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159325148/B25E4760A8FFC5A71DFA1DE038D6CA8A74C7AE0C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Mystery. + GMNotes: '' + GUID: dd17ff + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Nobody's Home + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 83.8735657 + posY: 1.78353107 + posZ: 1.35551107 + rotX: 359.9898 + rotY: 270.0 + rotZ: 179.987564 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265141 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '122': + BackIsHidden: true + BackURL: https://i.imgur.com/No3PMAy.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159325148/B25E4760A8FFC5A71DFA1DE038D6CA8A74C7AE0C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Scheme. + GMNotes: '' + GUID: e24635 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Secret Must Be Kept + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 83.93091 + posY: 1.76830757 + posZ: 1.36005628 + rotX: 359.990356 + rotY: 270.000275 + rotZ: 179.988373 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265141 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '122': + BackIsHidden: true + BackURL: https://i.imgur.com/No3PMAy.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159325148/B25E4760A8FFC5A71DFA1DE038D6CA8A74C7AE0C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Scheme. + GMNotes: '' + GUID: 8d1b30 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Secret Must Be Kept + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 84.33972 + posY: 1.76415 + posZ: 1.2253269 + rotX: 359.989838 + rotY: 270.0 + rotZ: 179.986633 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265141 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '122': + BackIsHidden: true + BackURL: https://i.imgur.com/No3PMAy.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159325148/B25E4760A8FFC5A71DFA1DE038D6CA8A74C7AE0C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Scheme. + GMNotes: '' + GUID: af5c41 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Secret Must Be Kept + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 83.54061 + posY: 1.75352752 + posZ: 1.77359641 + rotX: 359.9902 + rotY: 269.9999 + rotZ: 179.987762 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265140 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '122': + BackIsHidden: true + BackURL: https://i.imgur.com/No3PMAy.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159325148/B25E4760A8FFC5A71DFA1DE038D6CA8A74C7AE0C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Arkham. + GMNotes: '' + GUID: 7c92d8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Town Hall + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 84.17139 + posY: 1.743716 + posZ: 1.800933 + rotX: 359.9942 + rotY: 269.9938 + rotZ: 179.980255 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265139 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '122': + BackIsHidden: true + BackURL: https://i.imgur.com/No3PMAy.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159325148/B25E4760A8FFC5A71DFA1DE038D6CA8A74C7AE0C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Arkham. + GMNotes: '' + GUID: fbfaec + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Curiositie Shoppe + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 84.36169 + posY: 1.73409951 + posZ: 1.55706394 + rotX: 359.9875 + rotY: 270.0005 + rotZ: 179.985321 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265138 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '122': + BackIsHidden: true + BackURL: https://i.imgur.com/No3PMAy.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159325148/B25E4760A8FFC5A71DFA1DE038D6CA8A74C7AE0C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Arkham. + GMNotes: '' + GUID: 1568bc + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Velma's Diner + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 83.40721 + posY: 1.72458625 + posZ: 1.82523692 + rotX: 359.98764 + rotY: 270.002441 + rotZ: 179.988327 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265137 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '122': + BackIsHidden: true + BackURL: https://i.imgur.com/No3PMAy.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159325148/B25E4760A8FFC5A71DFA1DE038D6CA8A74C7AE0C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 3e + GMNotes: '' + GUID: d27333 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Brother Is Revealed + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 83.9773 + posY: 1.71488929 + posZ: 1.36854291 + rotX: 359.990234 + rotY: 269.242 + rotZ: 179.988678 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265136 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '122': + BackIsHidden: true + BackURL: https://i.imgur.com/No3PMAy.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159325148/B25E4760A8FFC5A71DFA1DE038D6CA8A74C7AE0C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 3e + GMNotes: '' + GUID: 054826 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Strange Occurrences + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 84.29069 + posY: 1.70513475 + posZ: 1.59690487 + rotX: 0.00740803732 + rotY: 269.552917 + rotZ: 180.0076 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265135 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '122': + BackIsHidden: true + BackURL: https://i.imgur.com/No3PMAy.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159325148/B25E4760A8FFC5A71DFA1DE038D6CA8A74C7AE0C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 2e + GMNotes: '' + GUID: c8b7a2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Strange Relics + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 84.1010742 + posY: 1.69448411 + posZ: 1.87373161 + rotX: 359.9867 + rotY: 270.853638 + rotZ: 179.989273 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265134 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '122': + BackIsHidden: true + BackURL: https://i.imgur.com/No3PMAy.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159325148/B25E4760A8FFC5A71DFA1DE038D6CA8A74C7AE0C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 2e + GMNotes: '' + GUID: 1a31dd + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Strange Relics + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 83.87122 + posY: 1.6859467 + posZ: 1.86969209 + rotX: 359.986877 + rotY: 269.24115 + rotZ: 179.989182 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265132 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '122': + BackIsHidden: true + BackURL: https://i.imgur.com/No3PMAy.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159325148/B25E4760A8FFC5A71DFA1DE038D6CA8A74C7AE0C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 2e + GMNotes: '' + GUID: 926c99 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Cave of Darkness + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 84.04345 + posY: 1.69557834 + posZ: 1.77295506 + rotX: 359.990051 + rotY: 270.77066 + rotZ: 181.051941 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265133 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '122': + BackIsHidden: true + BackURL: https://i.imgur.com/No3PMAy.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159325148/B25E4760A8FFC5A71DFA1DE038D6CA8A74C7AE0C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 2e + GMNotes: '' + GUID: 3f9aaf + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Cave of Darkness + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 83.91341 + posY: 1.658221 + posZ: 1.12377918 + rotX: 359.978943 + rotY: 269.176025 + rotZ: 179.924622 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265131 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '122': + BackIsHidden: true + BackURL: https://i.imgur.com/No3PMAy.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159325148/B25E4760A8FFC5A71DFA1DE038D6CA8A74C7AE0C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 1e + GMNotes: '' + GUID: 3757b7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Guardian's Inquiry + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 84.0282 + posY: 1.65582156 + posZ: 1.08077419 + rotX: 359.9881 + rotY: 269.085754 + rotZ: 179.994415 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265130 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '122': + BackIsHidden: true + BackURL: https://i.imgur.com/No3PMAy.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159325148/B25E4760A8FFC5A71DFA1DE038D6CA8A74C7AE0C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 1e + GMNotes: '' + GUID: 28ebe1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Trial of the Huntress + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 84.1850739 + posY: 1.64724 + posZ: 1.58425438 + rotX: 359.994171 + rotY: 269.179657 + rotZ: 179.992615 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265129 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '122': + BackIsHidden: true + BackURL: https://i.imgur.com/No3PMAy.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159325148/B25E4760A8FFC5A71DFA1DE038D6CA8A74C7AE0C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 3c + GMNotes: '' + GUID: c21ad7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Alejandro's Plight + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 84.38008 + posY: 1.63742959 + posZ: 1.744458 + rotX: 359.989777 + rotY: 270.0 + rotZ: 179.98645 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265128 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '122': + BackIsHidden: true + BackURL: https://i.imgur.com/No3PMAy.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159325148/B25E4760A8FFC5A71DFA1DE038D6CA8A74C7AE0C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 3c + GMNotes: '' + GUID: 14f8f1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Alejandro's Prison + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 84.35383 + posY: 1.627909 + posZ: 1.41437125 + rotX: 359.986084 + rotY: 269.153564 + rotZ: 179.991058 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265127 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '122': + BackIsHidden: true + BackURL: https://i.imgur.com/No3PMAy.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159325148/B25E4760A8FFC5A71DFA1DE038D6CA8A74C7AE0C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 2c + GMNotes: '' + GUID: 21cd56 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Friends in High Places + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 84.26948 + posY: 1.61821246 + posZ: 1.81412792 + rotX: 359.9884 + rotY: 270.003052 + rotZ: 179.989212 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265126 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '122': + BackIsHidden: true + BackURL: https://i.imgur.com/No3PMAy.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159325148/B25E4760A8FFC5A71DFA1DE038D6CA8A74C7AE0C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 2c + GMNotes: '' + GUID: 1588b6 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Friends in High Places + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 84.01951 + posY: 1.6084764 + posZ: 1.64239752 + rotX: 0.006299999 + rotY: 269.7226 + rotZ: 179.9303 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265125 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '122': + BackIsHidden: true + BackURL: https://i.imgur.com/No3PMAy.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159325148/B25E4760A8FFC5A71DFA1DE038D6CA8A74C7AE0C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 2c + GMNotes: '' + GUID: 7edfb0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: At the Station + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 84.47324 + posY: 1.59897876 + posZ: 1.26894128 + rotX: 359.987518 + rotY: 270.0 + rotZ: 179.988663 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265124 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '122': + BackIsHidden: true + BackURL: https://i.imgur.com/No3PMAy.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159325148/B25E4760A8FFC5A71DFA1DE038D6CA8A74C7AE0C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 2c + GMNotes: '' + GUID: 34409b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: At the Station + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 83.25272 + posY: 1.57796311 + posZ: 1.60748184 + rotX: 359.424316 + rotY: 269.170532 + rotZ: 179.771484 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265123 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '122': + BackIsHidden: true + BackURL: https://i.imgur.com/No3PMAy.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159325148/B25E4760A8FFC5A71DFA1DE038D6CA8A74C7AE0C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 1c + GMNotes: '' + GUID: e59778 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Missing Persons + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 83.8489151 + posY: 1.57970738 + posZ: 1.55770516 + rotX: 359.9749 + rotY: 269.725983 + rotZ: 179.97287 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265122 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '122': + BackIsHidden: true + BackURL: https://i.imgur.com/No3PMAy.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159325148/B25E4760A8FFC5A71DFA1DE038D6CA8A74C7AE0C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 1c + GMNotes: '' + GUID: 1ee0f0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Search for Alejandro + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 84.6296539 + posY: 1.5697999 + posZ: 1.529388 + rotX: 359.9891 + rotY: 269.999969 + rotZ: 179.98848 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265121 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '122': + BackIsHidden: true + BackURL: https://i.imgur.com/No3PMAy.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159325148/B25E4760A8FFC5A71DFA1DE038D6CA8A74C7AE0C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 3a + GMNotes: '' + GUID: a69973 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Recover the Relic + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 84.4118652 + posY: 1.55745256 + posZ: 1.83878636 + rotX: 359.2443 + rotY: 269.350677 + rotZ: 178.89798 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265120 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '122': + BackIsHidden: true + BackURL: https://i.imgur.com/No3PMAy.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159325148/B25E4760A8FFC5A71DFA1DE038D6CA8A74C7AE0C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 3a + GMNotes: '' + GUID: adcbb0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Find the Relic + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 83.9305649 + posY: 1.55058146 + posZ: 1.91202509 + rotX: 359.988556 + rotY: 264.063263 + rotZ: 179.987442 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265119 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '122': + BackIsHidden: true + BackURL: https://i.imgur.com/No3PMAy.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159325148/B25E4760A8FFC5A71DFA1DE038D6CA8A74C7AE0C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 2a + GMNotes: '' + GUID: f7b446 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Harlan's Curse + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 84.22474 + posY: 1.54081619 + posZ: 1.82484555 + rotX: 359.987427 + rotY: 270.000244 + rotZ: 179.98175 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265118 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '122': + BackIsHidden: true + BackURL: https://i.imgur.com/No3PMAy.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159325148/B25E4760A8FFC5A71DFA1DE038D6CA8A74C7AE0C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 2a + GMNotes: '' + GUID: '586028' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Harlan's Curse + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 84.09123 + posY: 1.531057 + posZ: 2.15505219 + rotX: 359.984161 + rotY: 270.000549 + rotZ: 179.980042 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265117 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '122': + BackIsHidden: true + BackURL: https://i.imgur.com/No3PMAy.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159325148/B25E4760A8FFC5A71DFA1DE038D6CA8A74C7AE0C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 2a + GMNotes: '' + GUID: 6ffd6d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: At the Exhibit + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 84.34379 + posY: 1.5738138 + posZ: 1.38271093 + rotX: 359.992981 + rotY: 270.012848 + rotZ: 179.985657 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265116 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '122': + BackIsHidden: true + BackURL: https://i.imgur.com/No3PMAy.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159325148/B25E4760A8FFC5A71DFA1DE038D6CA8A74C7AE0C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 2a + GMNotes: '' + GUID: 029812 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: At the Exhibit + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 84.4975 + posY: 1.62257624 + posZ: 1.55428541 + rotX: 357.697052 + rotY: 270.352448 + rotZ: 179.70166 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265115 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '122': + BackIsHidden: true + BackURL: https://i.imgur.com/No3PMAy.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159325148/B25E4760A8FFC5A71DFA1DE038D6CA8A74C7AE0C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 1a + GMNotes: '' + GUID: a6d241 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Harlan Is in Danger! + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 84.11781 + posY: 1.56232834 + posZ: 1.94169378 + rotX: 359.987152 + rotY: 270.000244 + rotZ: 179.977615 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265114 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '122': + BackIsHidden: true + BackURL: https://i.imgur.com/No3PMAy.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159325148/B25E4760A8FFC5A71DFA1DE038D6CA8A74C7AE0C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 1a + GMNotes: '' + GUID: e2806c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Relic is Missing! + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 84.71273 + posY: 1.55923939 + posZ: 2.21589136 + rotX: 359.980042 + rotY: 269.997375 + rotZ: 179.9702 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265113 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '122': + BackIsHidden: true + BackURL: https://i.imgur.com/No3PMAy.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159325148/B25E4760A8FFC5A71DFA1DE038D6CA8A74C7AE0C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 3 + GMNotes: '' + GUID: 35fe2f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Hidden Entanglements + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 84.2193 + posY: 1.56149137 + posZ: 2.1158402 + rotX: 359.9895 + rotY: 270.000122 + rotZ: 179.974258 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265112 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '122': + BackIsHidden: true + BackURL: https://i.imgur.com/No3PMAy.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159325148/B25E4760A8FFC5A71DFA1DE038D6CA8A74C7AE0C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 2 + GMNotes: '' + GUID: d3d027 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Behind the Curtain + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 84.09192 + posY: 1.57553542 + posZ: 1.66787446 + rotX: 359.988373 + rotY: 262.538422 + rotZ: 179.990219 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265111 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '122': + BackIsHidden: true + BackURL: https://i.imgur.com/No3PMAy.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159325148/B25E4760A8FFC5A71DFA1DE038D6CA8A74C7AE0C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 1 + GMNotes: '' + GUID: 0dc453 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Three Fates + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 83.6478958 + posY: 1.557923 + posZ: 1.36090934 + rotX: 359.991 + rotY: 269.984039 + rotZ: 179.993835 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265110 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '122': + BackIsHidden: true + BackURL: https://i.imgur.com/No3PMAy.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159325148/B25E4760A8FFC5A71DFA1DE038D6CA8A74C7AE0C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Threads of Fate + GMNotes: '' + GUID: 6c4c60 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Scenario + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 84.08517 + posY: 1.41288257 + posZ: 1.58245552 + rotX: 359.980164 + rotY: 270.005157 + rotZ: 179.984024 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/No3PMAy.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159325148/B25E4760A8FFC5A71DFA1DE038D6CA8A74C7AE0C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 265145 +- 265144 +- 265143 +- 265143 +- 265142 +- 265142 +- 265141 +- 265141 +- 265141 +- 265140 +- 265139 +- 265138 +- 265137 +- 265136 +- 265135 +- 265134 +- 265132 +- 265133 +- 265131 +- 265130 +- 265129 +- 265128 +- 265127 +- 265126 +- 265125 +- 265124 +- 265123 +- 265122 +- 265121 +- 265120 +- 265119 +- 265118 +- 265117 +- 265116 +- 265115 +- 265114 +- 265113 +- 265112 +- 265111 +- 265110 +Description: '' +GMNotes: '' +GUID: 5419e6 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Threads of Fate +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 16.6152115 + posY: 3.700855 + posZ: -5.29051971 + rotX: 359.9193 + rotY: 269.9994 + rotZ: 0.0172285922 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Trapped Spirits 1829fa.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Trapped Spirits 1829fa.yaml new file mode 100644 index 000000000..2fcb016df --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Trapped Spirits 1829fa.yaml @@ -0,0 +1,215 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 231818 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Geist. Spectral. + GMNotes: '' + GUID: 7732b3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Wraith + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -23.14106 + posY: 1.62496328 + posZ: -36.8201828 + rotX: 359.913239 + rotY: 269.973724 + rotZ: 0.00411301153 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231819 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. Spectral. + GMNotes: '' + GUID: 4e4752 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Trapped Spirits + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -23.8059444 + posY: 1.67718458 + posZ: -36.7148056 + rotX: 359.913239 + rotY: 269.9757 + rotZ: 0.004121993 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231819 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. Spectral. + GMNotes: '' + GUID: 10c2cb + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Trapped Spirits + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -23.006403 + posY: 1.73293757 + posZ: -36.7171631 + rotX: 359.904938 + rotY: 269.972717 + rotZ: 0.0009751208 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231818 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Geist. Spectral. + GMNotes: '' + GUID: db1b65 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Wraith + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -23.6921558 + posY: 1.5753423 + posZ: -36.98296 + rotX: 359.918884 + rotY: 269.973633 + rotZ: 0.016206529 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 231818 +- 231819 +- 231819 +- 231818 +Description: '' +GMNotes: '' +GUID: 1829fa +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Trapped Spirits +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 58.64107 + posY: 3.36071348 + posZ: 28.9528065 + rotX: 0.02081728 + rotY: 269.9703 + rotZ: 0.0167602655 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Turn Back Time 32a2f0.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Turn Back Time 32a2f0.yaml new file mode 100644 index 000000000..d1ce90970 --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Turn Back Time 32a2f0.yaml @@ -0,0 +1,222 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 265312 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2653': + BackIsHidden: true + BackURL: https://i.imgur.com/bQUL7Ev.jpg + FaceURL: https://i.imgur.com/Kw5u56P.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: true + Description: Act 3 + GMNotes: '' + GUID: d207f8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Moment of Doom + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 100.220612 + posY: 1.555931 + posZ: 10.3834686 + rotX: 359.981476 + rotY: 268.68808 + rotZ: 179.981689 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265310 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2653': + BackIsHidden: true + BackURL: https://i.imgur.com/bQUL7Ev.jpg + FaceURL: https://i.imgur.com/Kw5u56P.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: true + Description: Act 2 + GMNotes: '' + GUID: ae522c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Chamber of Still Remains + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 99.53189 + posY: 1.569437 + posZ: 10.6899776 + rotX: 359.989349 + rotY: 270.0023 + rotZ: 179.9789 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265308 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2653': + BackIsHidden: true + BackURL: https://i.imgur.com/bQUL7Ev.jpg + FaceURL: https://i.imgur.com/Kw5u56P.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: true + Description: Act 1 + GMNotes: '' + GUID: 3065a4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Into the Ruins Once Again + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 99.97973 + posY: 1.55204749 + posZ: 10.2615719 + rotX: 359.990356 + rotY: 269.989471 + rotZ: 179.98671 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 260100 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2601': + BackIsHidden: true + BackURL: https://i.imgur.com/bQUL7Ev.jpg + FaceURL: https://i.imgur.com/Kw5u56P.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: true + Description: Turn Back Time + GMNotes: '' + GUID: ac5f51 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Scenario + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 99.72302 + posY: 1.4071244 + posZ: 10.3448238 + rotX: 359.984833 + rotY: 270.006439 + rotZ: 179.981491 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2601': + BackIsHidden: true + BackURL: https://i.imgur.com/bQUL7Ev.jpg + FaceURL: https://i.imgur.com/Kw5u56P.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: true + '2653': + BackIsHidden: true + BackURL: https://i.imgur.com/bQUL7Ev.jpg + FaceURL: https://i.imgur.com/Kw5u56P.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 265312 +- 265310 +- 265308 +- 260100 +Description: '' +GMNotes: '' +GUID: 32a2f0 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Turn Back Time +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 16.20353 + posY: 3.48846269 + posZ: 3.153765 + rotX: 359.920135 + rotY: 269.9983 + rotZ: 0.0168716423 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Union and Disillusion d5fdb9.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Union and Disillusion d5fdb9.yaml new file mode 100644 index 000000000..ab0576a12 --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Union and Disillusion d5fdb9.yaml @@ -0,0 +1,867 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 312422 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3124': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/786356000879758511/CF3D368183597044860CA0BE0FE6A36024904675/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/786356000879757640/1B977B33065106178624452E8B37BC59D06CEC19/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Ripped Asunder + GMNotes: '' + GUID: 723cb3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Valentino Rivas + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 51.43249 + posY: 1.5809387 + posZ: 78.47952 + rotX: 0.0207689423 + rotY: 270.0 + rotZ: 180.020416 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 312419 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3124': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/786356000879758511/CF3D368183597044860CA0BE0FE6A36024904675/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/786356000879757640/1B977B33065106178624452E8B37BC59D06CEC19/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: You're Next + GMNotes: '' + GUID: 367d1d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Gavriella Mizrah + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 51.37477 + posY: 1.57123065 + posZ: 78.9515457 + rotX: 0.02376833 + rotY: 270.008942 + rotZ: 180.000839 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 312420 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3124': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/786356000879758511/CF3D368183597044860CA0BE0FE6A36024904675/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/786356000879757640/1B977B33065106178624452E8B37BC59D06CEC19/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Starved for Answers + GMNotes: '' + GUID: 03d161 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Jerome Davids + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 51.3571739 + posY: 1.56170809 + posZ: 78.500885 + rotX: 0.02083175 + rotY: 269.998779 + rotZ: 180.0175 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 312421 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3124': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/786356000879758511/CF3D368183597044860CA0BE0FE6A36024904675/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/786356000879757640/1B977B33065106178624452E8B37BC59D06CEC19/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Tragic Loss + GMNotes: '' + GUID: 31bd61 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Penny White + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 51.15926 + posY: 1.551908 + posZ: 78.3576355 + rotX: 0.0169929732 + rotY: 269.999969 + rotZ: 180.02066 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 312616 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3126': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/786356000879761873/F22612DB451928DCA4344F3F125F5A8CE128A817/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Creature. + GMNotes: '' + GUID: '582874' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Whippoorwill + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 51.13549 + posY: 1.541856 + posZ: 77.95591 + rotX: 0.0203454047 + rotY: 269.9989 + rotZ: 180.022339 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 312616 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3126': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/786356000879761873/F22612DB451928DCA4344F3F125F5A8CE128A817/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Creature. + GMNotes: '' + GUID: '582874' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Whippoorwill + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 51.2490578 + posY: 1.53262508 + posZ: 77.63229 + rotX: 0.0298472065 + rotY: 269.993134 + rotZ: 180.038681 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 312616 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3126': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/786356000879761873/F22612DB451928DCA4344F3F125F5A8CE128A817/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Creature. + GMNotes: '' + GUID: '582874' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Whippoorwill + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 51.285305 + posY: 1.5225991 + posZ: 77.93755 + rotX: 0.02031614 + rotY: 270.000244 + rotZ: 180.023117 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 312616 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3126': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/786356000879761873/F22612DB451928DCA4344F3F125F5A8CE128A817/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Creature. + GMNotes: '' + GUID: '582874' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Whippoorwill + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 51.28735 + posY: 1.51366472 + posZ: 77.8019257 + rotX: 0.0262158159 + rotY: 269.993225 + rotZ: 180.029831 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 312621 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3126': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/786356000879761873/F22612DB451928DCA4344F3F125F5A8CE128A817/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Curse. + GMNotes: '' + GUID: '940982' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Watcher's Gaze + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 51.33679 + posY: 1.495181 + posZ: 77.9095459 + rotX: 0.0217867084 + rotY: 270.062775 + rotZ: 179.985565 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 312615 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3126': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/786356000879761873/F22612DB451928DCA4344F3F125F5A8CE128A817/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Creature. Spectral. + GMNotes: '' + GUID: 0f6a54 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Spectral Raven + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 51.4084854 + posY: 1.48323441 + posZ: 77.79647 + rotX: 0.01966121 + rotY: 269.998169 + rotZ: 180.017456 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 312615 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3126': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/786356000879761873/F22612DB451928DCA4344F3F125F5A8CE128A817/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Creature. Spectral. + GMNotes: '' + GUID: 0f6a54 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Spectral Raven + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 51.30985 + posY: 1.48399925 + posZ: 77.63363 + rotX: 0.02142044 + rotY: 270.000549 + rotZ: 180.026337 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 312618 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3126': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/786356000879761873/F22612DB451928DCA4344F3F125F5A8CE128A817/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: '292724' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Psychopomp's Song + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 51.4219742 + posY: 1.52676249 + posZ: 77.92882 + rotX: 0.0252894852 + rotY: 269.99353 + rotZ: 180.027649 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 312618 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3126': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/786356000879761873/F22612DB451928DCA4344F3F125F5A8CE128A817/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: '292724' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Psychopomp's Song + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 51.4471855 + posY: 1.52028358 + posZ: 77.7801056 + rotX: 0.02768535 + rotY: 269.993469 + rotZ: 180.03392 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 312620 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3126': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/786356000879761873/F22612DB451928DCA4344F3F125F5A8CE128A817/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Curse. + GMNotes: '' + GUID: d21848 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Marked for Death + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 51.68994 + posY: 1.51629055 + posZ: 77.7039642 + rotX: 0.0184782241 + rotY: 270.00177 + rotZ: 180.024643 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 312620 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3126': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/786356000879761873/F22612DB451928DCA4344F3F125F5A8CE128A817/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Curse. + GMNotes: '' + GUID: d21848 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Marked for Death + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 51.6793861 + posY: 1.51354277 + posZ: 77.68181 + rotX: 0.0184153225 + rotY: 269.9967 + rotZ: 180.018265 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 312617 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3126': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/786356000879761873/F22612DB451928DCA4344F3F125F5A8CE128A817/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: 1f2790 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Eager for Death + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 51.5186348 + posY: 1.514317 + posZ: 78.01982 + rotX: 0.0138138793 + rotY: 269.982635 + rotZ: 179.988342 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 312617 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3126': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/786356000879761873/F22612DB451928DCA4344F3F125F5A8CE128A817/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: 1f2790 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Eager for Death + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 51.4586754 + posY: 1.52815163 + posZ: 78.2233047 + rotX: 0.0189247243 + rotY: 270.001221 + rotZ: 180.02034 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 312619 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3126': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/786356000879761873/F22612DB451928DCA4344F3F125F5A8CE128A817/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: a81e3d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Death Approaches + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 51.7013245 + posY: 1.51067209 + posZ: 78.56219 + rotX: 0.0294752289 + rotY: 269.994019 + rotZ: 180.02977 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 312619 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3126': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/786356000879761873/F22612DB451928DCA4344F3F125F5A8CE128A817/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: d4452d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Death Approaches + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 51.5221176 + posY: 1.36595893 + posZ: 78.264534 + rotX: 0.0215721224 + rotY: 269.996948 + rotZ: 180.023285 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '3124': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/786356000879758511/CF3D368183597044860CA0BE0FE6A36024904675/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/786356000879757640/1B977B33065106178624452E8B37BC59D06CEC19/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + '3126': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/786356000879761873/F22612DB451928DCA4344F3F125F5A8CE128A817/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 312422 +- 312419 +- 312420 +- 312421 +- 312616 +- 312616 +- 312616 +- 312616 +- 312621 +- 312615 +- 312615 +- 312618 +- 312618 +- 312620 +- 312620 +- 312617 +- 312617 +- 312619 +- 312619 +Description: '' +GMNotes: '' +GUID: d5fdb9 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Union and Disillusion +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 21.0413322 + posY: 3.621292 + posZ: -10.0923853 + rotX: 359.93985 + rotY: 270.000153 + rotZ: 0.0168814845 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Vile Experiments f3e88c.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Vile Experiments f3e88c.yaml new file mode 100644 index 000000000..e485636e8 --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Vile Experiments f3e88c.yaml @@ -0,0 +1,258 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 231623 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2316': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493212055041441/90F035BD69A7C5C6B6F43426DDDA3A09DFCBCBDF/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: 3fbc07 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Morbid Awareness + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 18.58808 + posY: 1.52577007 + posZ: -5.22194242 + rotX: 359.9201 + rotY: 269.999756 + rotZ: 0.0168050788 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231623 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2316': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493212055041441/90F035BD69A7C5C6B6F43426DDDA3A09DFCBCBDF/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: 363bfa + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Morbid Awareness + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 18.5665646 + posY: 1.67787862 + posZ: -4.75133038 + rotX: 359.915741 + rotY: 270.000458 + rotZ: -0.004531632 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231623 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2316': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493212055041441/90F035BD69A7C5C6B6F43426DDDA3A09DFCBCBDF/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: 870ee1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Morbid Awareness + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 18.56657 + posY: 1.70967972 + posZ: -4.75137043 + rotX: 359.920959 + rotY: 270.0 + rotZ: 0.0149811246 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231622 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2316': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493212055041441/90F035BD69A7C5C6B6F43426DDDA3A09DFCBCBDF/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Ancient. Science. + GMNotes: '' + GUID: 3fbc07 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Harvested Brain + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 19.0201244 + posY: 1.76072323 + posZ: -5.44228554 + rotX: 359.937927 + rotY: 269.891541 + rotZ: 6.59697342 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231621 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2316': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493212055041441/90F035BD69A7C5C6B6F43426DDDA3A09DFCBCBDF/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Vile Concoction + GMNotes: '' + GUID: 3fbc07 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Sinister Solution + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 18.61948 + posY: 1.8230989 + posZ: -5.2996006 + rotX: 359.9359 + rotY: 269.939545 + rotZ: 8.732894 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2316': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493212055041441/90F035BD69A7C5C6B6F43426DDDA3A09DFCBCBDF/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 231623 +- 231623 +- 231623 +- 231622 +- 231621 +Description: '' +GMNotes: '' +GUID: f3e88c +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Vile Experiments +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 12.2504025 + posY: 4.464609 + posZ: -3.91980147 + rotX: 359.920135 + rotY: 269.985748 + rotZ: 0.0168987177 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Weaver of the Cosmos 7b15a1.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Weaver of the Cosmos 7b15a1.yaml new file mode 100644 index 000000000..ca74758a0 --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Weaver of the Cosmos 7b15a1.yaml @@ -0,0 +1,738 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 234644 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2346': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025770470/7C77423FFA657FB6B5937C80D6813C24E2D0E88C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Scheme. + GMNotes: '' + GUID: '785613' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Endless Weaving + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 22.785202 + posY: 1.92803645 + posZ: -24.6396484 + rotX: 359.920135 + rotY: 270.000061 + rotZ: 180.016922 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234644 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2346': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025770470/7C77423FFA657FB6B5937C80D6813C24E2D0E88C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Scheme. + GMNotes: '' + GUID: '785613' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Endless Weaving + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 22.7851753 + posY: 1.91837645 + posZ: -24.63965 + rotX: 359.920135 + rotY: 270.000061 + rotZ: 180.016922 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234644 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2346': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025770470/7C77423FFA657FB6B5937C80D6813C24E2D0E88C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Scheme. + GMNotes: '' + GUID: '785613' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Endless Weaving + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 23.264204 + posY: 1.89883888 + posZ: -24.5000648 + rotX: 359.913483 + rotY: 270.012848 + rotZ: 179.9988 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234643 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2346': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025770470/7C77423FFA657FB6B5937C80D6813C24E2D0E88C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: ea2b60 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Caught in a Web + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 30.2965164 + posY: 1.501012 + posZ: -33.87221 + rotX: 359.920135 + rotY: 269.999939 + rotZ: 0.0168719124 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234643 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2346': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025770470/7C77423FFA657FB6B5937C80D6813C24E2D0E88C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: d9386a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Caught in a Web + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 30.238409 + posY: 1.6664232 + posZ: -33.603672 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234643 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2346': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025770470/7C77423FFA657FB6B5937C80D6813C24E2D0E88C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: ea2b60 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Caught in a Web + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 30.2300072 + posY: 1.67932355 + posZ: -33.6048 + rotX: 359.9363 + rotY: 270.0 + rotZ: 0.0131211616 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234642 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2346': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025770470/7C77423FFA657FB6B5937C80D6813C24E2D0E88C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Power. + GMNotes: '' + GUID: 4f27bf + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Spinner in Darkness + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 23.08712 + posY: 1.86060429 + posZ: -24.45927 + rotX: 359.9363 + rotY: 269.9997 + rotZ: 180.013748 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234642 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2346': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025770470/7C77423FFA657FB6B5937C80D6813C24E2D0E88C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Power. + GMNotes: '' + GUID: 4f27bf + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Spinner in Darkness + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 23.1738663 + posY: 1.85031211 + posZ: -25.061903 + rotX: 359.918671 + rotY: 270.003784 + rotZ: 180.024521 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234641 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2346': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025770470/7C77423FFA657FB6B5937C80D6813C24E2D0E88C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Spider. + GMNotes: '' + GUID: ef8a41 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Web-Spinner + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 27.28021 + posY: 1.50728 + posZ: -26.8438931 + rotX: 359.9202 + rotY: 270.003052 + rotZ: 0.0164223611 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234641 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2346': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025770470/7C77423FFA657FB6B5937C80D6813C24E2D0E88C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Spider. + GMNotes: '' + GUID: e634db + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Web-Spinner + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 27.13497 + posY: 1.66542327 + posZ: -26.84374 + rotX: 359.9193 + rotY: 270.003082 + rotZ: 0.016360376 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234641 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2346': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025770470/7C77423FFA657FB6B5937C80D6813C24E2D0E88C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Spider. + GMNotes: '' + GUID: ef8a41 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Web-Spinner + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 26.7373238 + posY: 1.67394149 + posZ: -26.8421936 + rotX: 359.927 + rotY: 269.970947 + rotZ: 0.026428191 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234640 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2346': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025770470/7C77423FFA657FB6B5937C80D6813C24E2D0E88C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Ancient One. Spider. Elite. + GMNotes: '' + GUID: 6af4f4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Legs of Atlach-Nacha + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 22.404 + posY: 1.8129226 + posZ: -25.3721523 + rotX: 359.9183 + rotY: 269.991943 + rotZ: 180.026932 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234639 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2346': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025770470/7C77423FFA657FB6B5937C80D6813C24E2D0E88C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Ancient One. Spider. Elite. + GMNotes: '' + GUID: f4d669 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Legs of Atlach-Nacha + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 22.8854675 + posY: 1.80326426 + posZ: -24.1651058 + rotX: 359.940918 + rotY: 269.9501 + rotZ: 180.03624 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234638 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2346': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025770470/7C77423FFA657FB6B5937C80D6813C24E2D0E88C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Ancient One. Spider. Elite. + GMNotes: '' + GUID: 34d21c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Legs of Atlach-Nacha + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 22.8076344 + posY: 1.79324472 + posZ: -24.5734825 + rotX: 359.916351 + rotY: 270.103638 + rotZ: 180.006836 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234637 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2346': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025770470/7C77423FFA657FB6B5937C80D6813C24E2D0E88C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Ancient One. Spider. Elite. + GMNotes: '' + GUID: 8b17a1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Legs of Atlach-Nacha + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 23.0166283 + posY: 1.7832396 + posZ: -24.6422253 + rotX: 359.922058 + rotY: 270.101379 + rotZ: 179.989792 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234743 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2347': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1016065725025781883/DDC7B603B5E571A152D76364CCF3155BB7BC8C6F/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025781079/EBC4A272423668544053A4ACD161A993E038255D/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: The Spider God + GMNotes: '' + GUID: a2f955 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Atlatch-Nacha + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -4.158553 + posY: 1.73729742 + posZ: -27.4042225 + rotX: 359.9351 + rotY: 270.00415 + rotZ: 0.013343621 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2346': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025770470/7C77423FFA657FB6B5937C80D6813C24E2D0E88C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '2347': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1016065725025781883/DDC7B603B5E571A152D76364CCF3155BB7BC8C6F/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025781079/EBC4A272423668544053A4ACD161A993E038255D/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 234644 +- 234644 +- 234644 +- 234643 +- 234643 +- 234643 +- 234642 +- 234642 +- 234641 +- 234641 +- 234641 +- 234640 +- 234639 +- 234638 +- 234637 +- 234743 +Description: '' +GMNotes: '' +GUID: 7b15a1 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Weaver of the Cosmos +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.4945736 + posY: 3.61794734 + posZ: -27.1587563 + rotX: 359.91983 + rotY: 270.0191 + rotZ: 0.016815912 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Where the Gods Dwell 9af347.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Where the Gods Dwell 9af347.yaml new file mode 100644 index 000000000..d37b63de4 --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Where the Gods Dwell 9af347.yaml @@ -0,0 +1,946 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 234636 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2346': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025770470/7C77423FFA657FB6B5937C80D6813C24E2D0E88C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Curse. + GMNotes: '' + GUID: d4845c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Abandoned by the Gods + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 23.94412 + posY: 1.95221329 + posZ: -4.00885868 + rotX: 359.9371 + rotY: 270.019684 + rotZ: 179.997742 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234636 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2346': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025770470/7C77423FFA657FB6B5937C80D6813C24E2D0E88C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Curse. + GMNotes: '' + GUID: d4845c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Abandoned by the Gods + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 23.7621918 + posY: 1.94272566 + posZ: -4.18574238 + rotX: 359.9617 + rotY: 269.975922 + rotZ: 180.0185 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234635 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2346': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025770470/7C77423FFA657FB6B5937C80D6813C24E2D0E88C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Curse. + GMNotes: '' + GUID: 4b40bb + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Restless Journey (Lies) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 23.3701916 + posY: 1.93367982 + posZ: -4.36128855 + rotX: 359.921326 + rotY: 270.0052 + rotZ: 180.000824 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234634 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2346': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025770470/7C77423FFA657FB6B5937C80D6813C24E2D0E88C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Curse. + GMNotes: '' + GUID: 9cc2c5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Restless Journey (Hardship) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 24.822422 + posY: 1.92204416 + posZ: -4.675362 + rotX: 359.9141 + rotY: 269.997925 + rotZ: 180.008926 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234633 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2346': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025770470/7C77423FFA657FB6B5937C80D6813C24E2D0E88C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Curse. + GMNotes: '' + GUID: 8b17a1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Restless Journey (Fallacy) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 24.3455772 + posY: 1.9130013 + posZ: -4.31537247 + rotX: 359.942444 + rotY: 270.0401 + rotZ: 179.9737 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234632 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2346': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025770470/7C77423FFA657FB6B5937C80D6813C24E2D0E88C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Power. + GMNotes: '' + GUID: 8b17a1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Myriad Forms + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 24.248291 + posY: 1.90112662 + posZ: -4.12274 + rotX: 359.9361 + rotY: 269.999939 + rotZ: 180.0135 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234632 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2346': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025770470/7C77423FFA657FB6B5937C80D6813C24E2D0E88C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Power. + GMNotes: '' + GUID: 8b17a1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Myriad Forms + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 24.6841278 + posY: 1.89356327 + posZ: -4.09004736 + rotX: 359.940063 + rotY: 269.997955 + rotZ: 180.0192 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234631 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2346': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025770470/7C77423FFA657FB6B5937C80D6813C24E2D0E88C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Power. + GMNotes: '' + GUID: 5fb187 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Whispering Chaos (West) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 24.04887 + posY: 1.88450861 + posZ: -4.306909 + rotX: 359.932831 + rotY: 269.986847 + rotZ: 180.022079 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234630 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2346': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025770470/7C77423FFA657FB6B5937C80D6813C24E2D0E88C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Power. + GMNotes: '' + GUID: b8a1e4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Whispering Chaos (South) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 24.86096 + posY: 1.87369764 + posZ: -4.90019369 + rotX: 359.942841 + rotY: 270.011658 + rotZ: 179.993469 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234629 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2346': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025770470/7C77423FFA657FB6B5937C80D6813C24E2D0E88C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Power. + GMNotes: '' + GUID: bad74a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Whispering Chaos (East) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 24.3523312 + posY: 1.86474633 + posZ: -4.17823362 + rotX: 359.924377 + rotY: 269.996765 + rotZ: 180.005737 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234628 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2346': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025770470/7C77423FFA657FB6B5937C80D6813C24E2D0E88C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Power. + GMNotes: '' + GUID: 8b17a1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Whispering Chaos (North) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 24.8041611 + posY: 1.85457885 + posZ: -4.45476 + rotX: 359.956665 + rotY: 270.0014 + rotZ: 180.010117 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234627 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2346': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025770470/7C77423FFA657FB6B5937C80D6813C24E2D0E88C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Cultist. Servitor. + GMNotes: '' + GUID: 8b17a1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Liar with No Face + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 30.0970116 + posY: 1.50907743 + posZ: -7.34431076 + rotX: 359.92038 + rotY: 270.0 + rotZ: 0.0152852852 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234627 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2346': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025770470/7C77423FFA657FB6B5937C80D6813C24E2D0E88C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Cultist. Servitor. + GMNotes: '' + GUID: 0eece1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Liar with No Face + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 29.6553364 + posY: 1.66466415 + posZ: -6.972593 + rotX: 359.9489 + rotY: 270.0 + rotZ: 359.9941 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234627 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2346': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025770470/7C77423FFA657FB6B5937C80D6813C24E2D0E88C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Cultist. Servitor. + GMNotes: '' + GUID: 8b17a1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Liar with No Face + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 29.7579021 + posY: 1.68210459 + posZ: -7.25603771 + rotX: 359.9379 + rotY: 270.0 + rotZ: 0.0113988724 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234626 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2346': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025770470/7C77423FFA657FB6B5937C80D6813C24E2D0E88C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. + GMNotes: '' + GUID: 8b17a1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dhole of the Wastes + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 24.12478 + posY: 1.816801 + posZ: -4.293566 + rotX: 359.9374 + rotY: 269.9925 + rotZ: 180.019562 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234625 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2346': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025770470/7C77423FFA657FB6B5937C80D6813C24E2D0E88C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Agent of the Other Gods + GMNotes: '' + GUID: 8b17a1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: High Priest Not to Be Described + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 24.6613789 + posY: 1.8062644 + posZ: -4.41321325 + rotX: 359.9175 + rotY: 270.01236 + rotZ: 180.004135 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234624 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2346': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025770470/7C77423FFA657FB6B5937C80D6813C24E2D0E88C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Stalker Among the Stars + GMNotes: '' + GUID: 972fec + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Nyarlathotep + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 24.1821117 + posY: 1.7972374 + posZ: -3.79800153 + rotX: 359.938171 + rotY: 269.9275 + rotZ: 179.990189 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234623 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2346': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025770470/7C77423FFA657FB6B5937C80D6813C24E2D0E88C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: God of a Thousand Forms + GMNotes: '' + GUID: d721c2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Nyarlathotep + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 24.3556118 + posY: 1.78743017 + posZ: -4.37693739 + rotX: 359.9397 + rotY: 270.026184 + rotZ: 179.995834 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234622 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2346': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025770470/7C77423FFA657FB6B5937C80D6813C24E2D0E88C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Messenger of the Outer Gods + GMNotes: '' + GUID: 0f7c12 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Nyarlathotep + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 24.17125 + posY: 1.77807951 + posZ: -4.391301 + rotX: 359.927979 + rotY: 269.999939 + rotZ: 180.0015 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234621 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2346': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025770470/7C77423FFA657FB6B5937C80D6813C24E2D0E88C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: The Faceless Whisperer + GMNotes: '' + GUID: 8be848 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Nyarlathotep + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 23.9577122 + posY: 1.76867974 + posZ: -3.945862 + rotX: 359.909332 + rotY: 269.990051 + rotZ: 179.993744 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234620 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2346': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025770470/7C77423FFA657FB6B5937C80D6813C24E2D0E88C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: The Crawling Chaos + GMNotes: '' + GUID: 8b17a1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Nyarlathotep + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -4.266499 + posY: 1.78676653 + posZ: -24.0399437 + rotX: 359.936157 + rotY: 270.01535 + rotZ: 0.00739918929 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2346': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025770470/7C77423FFA657FB6B5937C80D6813C24E2D0E88C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 234636 +- 234636 +- 234635 +- 234634 +- 234633 +- 234632 +- 234632 +- 234631 +- 234630 +- 234629 +- 234628 +- 234627 +- 234627 +- 234627 +- 234626 +- 234625 +- 234624 +- 234623 +- 234622 +- 234621 +- 234620 +Description: '' +GMNotes: '' +GUID: 9af347 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Where the Gods Dwell +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.4412622 + posY: 3.63991833 + posZ: -26.24505 + rotX: 359.9199 + rotY: 270.02713 + rotZ: 0.0167856775 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Whippoorwills e3473c.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Whippoorwills e3473c.yaml new file mode 100644 index 000000000..22450a0c1 --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Whippoorwills e3473c.yaml @@ -0,0 +1,258 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 232818 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: 60ef9e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Eager for Death + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.646352 + posY: 1.548182 + posZ: 0.144670352 + rotX: 359.920135 + rotY: 269.999939 + rotZ: 0.0168772917 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232818 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: 40e9d0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Eager for Death + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.37573743 + posY: 1.7043395 + posZ: 0.209344044 + rotX: 359.920135 + rotY: 269.999939 + rotZ: 0.0168772619 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232817 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: "\tCreature." + GMNotes: '' + GUID: de3bd5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Whippoorwill + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.19784832 + posY: 1.54999852 + posZ: 4.190304 + rotX: 359.920135 + rotY: 269.9999 + rotZ: 0.0168776866 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232817 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: "\tCreature." + GMNotes: '' + GUID: 61c583 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Whippoorwill + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.24814034 + posY: 1.70613587 + posZ: 4.471411 + rotX: 359.920135 + rotY: 269.9999 + rotZ: 0.0168776922 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232817 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: "\tCreature." + GMNotes: '' + GUID: de3bd5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Whippoorwill + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.24814034 + posY: 1.72339261 + posZ: 4.471411 + rotX: 359.920441 + rotY: 269.9999 + rotZ: 0.0163779482 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 232818 +- 232818 +- 232817 +- 232817 +- 232817 +Description: '' +GMNotes: '' +GUID: e3473c +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Whippoorwills +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.9937057 + posY: 2.5834682 + posZ: -84.82414 + rotX: 359.920135 + rotY: 269.9999 + rotZ: 0.0168773625 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Whispers of Hypnos dacab3.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Whispers of Hypnos dacab3.yaml new file mode 100644 index 000000000..3b12fbcab --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Whispers of Hypnos dacab3.yaml @@ -0,0 +1,172 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 274115 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2741': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: a3ada0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Whispers of Hypnos + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.70772815 + posY: 1.3390168 + posZ: 64.22763 + rotX: 0.0210467484 + rotY: 270.0 + rotZ: 0.0153855 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274115 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2741': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: ce95a3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Whispers of Hypnos + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.7077415 + posY: 1.49358606 + posZ: 64.2276154 + rotX: 0.0181054082 + rotY: 269.999969 + rotZ: -0.000729266962 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274115 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2741': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: 6476cc + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Whispers of Hypnos + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.70772433 + posY: 1.50589979 + posZ: 64.22764 + rotX: 0.0247761626 + rotY: 269.9997 + rotZ: 0.0151432147 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2741': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 274115 +- 274115 +- 274115 +Description: '' +GMNotes: '' +GUID: dacab3 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Whispers of Hypnos +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 15.4280214 + posY: 3.3962388 + posZ: 42.0326042 + rotX: 0.0208076388 + rotY: 269.999969 + rotZ: 0.01676829 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Witchcraft b228e7.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Witchcraft b228e7.yaml new file mode 100644 index 000000000..54e43db1e --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Witchcraft b228e7.yaml @@ -0,0 +1,344 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 231808 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: 4949ea + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Wracked + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -17.71135 + posY: 1.56800044 + posZ: -33.49924 + rotX: 359.9177 + rotY: 269.978638 + rotZ: 0.0161360279 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231808 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: c8092b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Wracked + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -17.80855 + posY: 1.71239948 + posZ: -33.79921 + rotX: 359.910339 + rotY: 269.97876 + rotZ: 0.03349457 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231809 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: a558b5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Bedeviled + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -17.6637516 + posY: 1.7296617 + posZ: -33.73086 + rotX: 359.9201 + rotY: 269.978882 + rotZ: 0.0205486864 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231809 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: f7c676 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Bedeviled + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -18.1656151 + posY: 1.716761 + posZ: -33.74088 + rotX: 359.918976 + rotY: 269.9787 + rotZ: 0.018134892 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231807 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Curse. + GMNotes: '' + GUID: 407e66 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Diabolic Voices + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -18.0510273 + posY: 1.71469259 + posZ: -33.44395 + rotX: 359.919128 + rotY: 269.978668 + rotZ: 0.0163030848 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231807 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Curse. + GMNotes: '' + GUID: 64341a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Diabolic Voices + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -17.73656 + posY: 1.71689022 + posZ: -33.5350227 + rotX: 359.918945 + rotY: 269.979126 + rotZ: 0.0171701312 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231807 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Curse. + GMNotes: '' + GUID: 0fa642 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Diabolic Voices + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -18.055851 + posY: 1.72234285 + posZ: -33.4770279 + rotX: 359.9191 + rotY: 269.978851 + rotZ: 0.0164938 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 231808 +- 231808 +- 231809 +- 231809 +- 231807 +- 231807 +- 231807 +Description: '' +GMNotes: '' +GUID: b228e7 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Witchcraft +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 0.7729049 + posY: 3.511046 + posZ: 0.742994249 + rotX: 359.920135 + rotY: 269.9769 + rotZ: 0.0169074424 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Yig's Venom 56b495.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Yig's Venom 56b495.yaml new file mode 100644 index 000000000..cf7b81b88 --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Yig's Venom 56b495.yaml @@ -0,0 +1,258 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 12329 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Power. + GMNotes: '' + GUID: a04f16 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Serpent's Call + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 106.382652 + posY: 1.41246569 + posZ: -23.9254112 + rotX: -0.00421865238 + rotY: 270.022 + rotZ: 359.964569 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12328 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Curse. + GMNotes: '' + GUID: 9542e8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Snakescourge + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 106.42952 + posY: 1.595207 + posZ: -23.9457169 + rotX: 359.985962 + rotY: 269.996429 + rotZ: 357.917755 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12328 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Curse. + GMNotes: '' + GUID: '660874' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Snakescourge + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 106.414238 + posY: 1.57457292 + posZ: -23.042675 + rotX: 0.0144512765 + rotY: 270.0006 + rotZ: 359.894165 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12327 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Humanoid. Monster. Serpent. + GMNotes: '' + GUID: 58402d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Fang of Yig + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 106.342285 + posY: 1.56107628 + posZ: -24.01606 + rotX: 359.986633 + rotY: 269.983582 + rotZ: 359.984863 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12327 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Humanoid. Monster. Serpent. + GMNotes: '' + GUID: 6b107c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Fang of Yig + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 105.740288 + posY: 1.55914438 + posZ: -24.0910645 + rotX: 359.988037 + rotY: 270.0141 + rotZ: 359.9843 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '123': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 12329 +- 12328 +- 12328 +- 12327 +- 12327 +Description: '' +GMNotes: '' +GUID: 56b495 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Yig's Venom +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.9421988 + posY: 3.496511 + posZ: 2.756488 + rotX: 359.9201 + rotY: 270.024475 + rotZ: 0.0168355312 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Yog-Sothoth's Emissaries 66ba46.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Yog-Sothoth's Emissaries 66ba46.yaml new file mode 100644 index 000000000..a53f02371 --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Yog-Sothoth's Emissaries 66ba46.yaml @@ -0,0 +1,215 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 233052 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Pact. + GMNotes: '' + GUID: e3fba9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Eldritch Accord + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 4.809599 + posY: 1.548922 + posZ: 8.164636 + rotX: 359.920135 + rotY: 269.997925 + rotZ: 0.0168780368 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233052 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Pact. + GMNotes: '' + GUID: 7c4d15 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Eldritch Accord + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 4.68952465 + posY: 1.70496368 + posZ: 8.046578 + rotX: 359.920135 + rotY: 269.997925 + rotZ: 0.0168780237 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233051 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Abomination. + GMNotes: '' + GUID: b01c1a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Vassal of the Lurker + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 4.13109636 + posY: 1.55071533 + posZ: 11.0782423 + rotX: 359.920227 + rotY: 270.0001 + rotZ: 0.0161855575 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233051 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Abomination. + GMNotes: '' + GUID: a9e3e2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Vassal of the Lurker + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 4.01203728 + posY: 1.70712113 + posZ: 11.1905966 + rotX: 359.918457 + rotY: 269.999542 + rotZ: 0.0152380522 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 233052 +- 233052 +- 233051 +- 233051 +Description: '' +GMNotes: '' +GUID: 66ba46 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Yog-Sothoth's Emissaries +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 8.723004 + posY: 2.58745837 + posZ: -77.51662 + rotX: 359.920135 + rotY: 269.9978 + rotZ: 0.01688062 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Zoogs 691cbe.yaml b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Zoogs 691cbe.yaml new file mode 100644 index 000000000..409731303 --- /dev/null +++ b/unpacked/Custom_Model_Bag Encounter Sets fcfa7f/Custom_Model_Bag all encounter sets 9671d3/Deck Zoogs 691cbe.yaml @@ -0,0 +1,301 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 274134 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2741': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: 8b08a8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Zoog Burrow + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -1.92154586 + posY: 1.33657873 + posZ: 53.6150246 + rotX: 0.0208100844 + rotY: 269.999451 + rotZ: 0.01677081 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274133 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2741': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Creature. Zoog. + GMNotes: '' + GUID: d1c795 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Inconspicuous Zoog + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -1.61507952 + posY: 1.33765149 + posZ: 56.89953 + rotX: 0.02081005 + rotY: 269.999451 + rotZ: 0.0167705957 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274132 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2741': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Creature. Zoog. + GMNotes: '' + GUID: db8153 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Stealthy Zoog + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.12494016 + posY: 1.337268 + posZ: 50.9491539 + rotX: 0.0208096933 + rotY: 269.999451 + rotZ: 0.0167707447 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274132 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2741': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Creature. Zoog. + GMNotes: '' + GUID: 27dc33 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Stealthy Zoog + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 1.97949374 + posY: 1.33629358 + posZ: 47.8006134 + rotX: 0.0208098888 + rotY: 269.999542 + rotZ: 0.0167709049 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274131 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2741': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Creature. Zoog. + GMNotes: '' + GUID: fb76f8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Furtive Zoog + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.204516 + posY: 1.33904231 + posZ: 56.9122238 + rotX: 0.020809412 + rotY: 270.002 + rotZ: 0.0167715587 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274131 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2741': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Creature. Zoog. + GMNotes: '' + GUID: 4a2c73 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Furtive Zoog + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.194922 + posY: 1.338211 + posZ: 54.084095 + rotX: 0.0208091978 + rotY: 270.002 + rotZ: 0.0167714339 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2741': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 274134 +- 274133 +- 274132 +- 274132 +- 274131 +- 274131 +Description: '' +GMNotes: '' +GUID: 691cbe +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Zoogs +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.4650354 + posY: 3.39376926 + posZ: 35.2251244 + rotX: 0.0208087154 + rotY: 270.002 + rotZ: 0.0167737026 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 1d802b.ttslua b/unpacked/Custom_Model_Bag Guardian 1d802b.ttslua new file mode 100644 index 000000000..857093fb8 --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 1d802b.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,0,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 + 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=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,0,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,0,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,0,0}, height=350, width=750, + 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}, rotation={0,0,0}, height=350, width=800, + font_size=250, color={0,0,0}, font_color={1,1,1} + }) +-- self.createButton({ +-- label="Setup", click_function="buttonClick_setup", function_owner=self, +-- position={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.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 \ No newline at end of file diff --git a/unpacked/Custom_Model_Bag Guardian 1d802b.yaml b/unpacked/Custom_Model_Bag Guardian 1d802b.yaml new file mode 100644 index 000000000..e38950382 --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 1d802b.yaml @@ -0,0 +1,103 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +ContainedObjects: +- !include 'Custom_Model_Bag Guardian 1d802b/Card Daring 86cf73.yaml' +- !include 'Custom_Model_Bag Guardian 1d802b/Card Leadership 7dc5e1.yaml' +- !include 'Custom_Model_Bag Guardian 1d802b/Card Inspiring Presence b789ac.yaml' +- !include 'Custom_Model_Bag Guardian 1d802b/Card Intrepid 88cd33.yaml' +- !include 'Custom_Model_Bag Guardian 1d802b/Card Self-Sacrifice 184380.yaml' +- !include 'Custom_Model_Bag Guardian 1d802b/Card Steadfast c634a0.yaml' +- !include 'Custom_Model_Bag Guardian 1d802b/Card Take the Initiative a88e8d.yaml' +- !include 'Custom_Model_Bag Guardian 1d802b/Card Vicious Blow ea9ad0.yaml' +- !include 'Custom_Model_Bag Guardian 1d802b/Card Prepared for the Worst 6aa477.yaml' +- !include 'Custom_Model_Bag Guardian 1d802b/Card First Watch 0da344.yaml' +- !include 'Custom_Model_Bag Guardian 1d802b/Card Eat lead! b58038.yaml' +- !include 'Custom_Model_Bag Guardian 1d802b/Card Evidence! 8475cc.yaml' +- !include 'Custom_Model_Bag Guardian 1d802b/Card Taunt 8a25a0.yaml' +- !include 'Custom_Model_Bag Guardian 1d802b/Card I''ll see you in hell! 19507d.yaml' +- !include 'Custom_Model_Bag Guardian 1d802b/Card Teamwork 55ce00.yaml' +- !include 'Custom_Model_Bag Guardian 1d802b/Card Let me handle this! 195b7f.yaml' +- !include 'Custom_Model_Bag Guardian 1d802b/Card Heroic Rescue 724c85.yaml' +- !include 'Custom_Model_Bag Guardian 1d802b/Card If it bleeds... 6d3fdf.yaml' +- !include 'Custom_Model_Bag Guardian 1d802b/Card Dodge 7646d6.yaml' +- !include 'Custom_Model_Bag Guardian 1d802b/Card On The Hunt bf3261.yaml' +- !include 'Custom_Model_Bag Guardian 1d802b/Card Trusted cc23ea.yaml' +- !include 'Custom_Model_Bag Guardian 1d802b/Card Second Wind 5fa99a.yaml' +- !include 'Custom_Model_Bag Guardian 1d802b/Card Delay the Inevitable af4c03.yaml' +- !include 'Custom_Model_Bag Guardian 1d802b/Card Emergency Aid 7b6fd8.yaml' +- !include 'Custom_Model_Bag Guardian 1d802b/Card Interrogate 60acf8.yaml' +- !include 'Custom_Model_Bag Guardian 1d802b/Card Scene of the Crime ca17b8.yaml' +- !include 'Custom_Model_Bag Guardian 1d802b/Card Warning Shot 9eeca1.yaml' +- !include 'Custom_Model_Bag Guardian 1d802b/Card Dynamite Blast 22c65b.yaml' +- !include 'Custom_Model_Bag Guardian 1d802b/Card Beat Cop 591f6f.yaml' +- !include 'Custom_Model_Bag Guardian 1d802b/Card Alice Luxley b2fedd.yaml' +- !include 'Custom_Model_Bag Guardian 1d802b/Card .35 Winchester 0a7642.yaml' +- !include 'Custom_Model_Bag Guardian 1d802b/Card .45 Automatic ce4f97.yaml' +- !include 'Custom_Model_Bag Guardian 1d802b/Card True Grit f2f912.yaml' +- !include 'Custom_Model_Bag Guardian 1d802b/Card Tetsuo Mori 82ee35.yaml' +- !include 'Custom_Model_Bag Guardian 1d802b/Card Something Worth Fighting For 826897.yaml' +- !include 'Custom_Model_Bag Guardian 1d802b/Card Machete 273797.yaml' +- !include 'Custom_Model_Bag Guardian 1d802b/Card Guard Dog db2e8d.yaml' +- !include 'Custom_Model_Bag Guardian 1d802b/Card Enchanted Blade bd34f2.yaml' +- !include 'Custom_Model_Bag Guardian 1d802b/Card .32 Colt f8d22e.yaml' +- !include 'Custom_Model_Bag Guardian 1d802b/Card Handcuffs 7dce77.yaml' +- !include 'Custom_Model_Bag Guardian 1d802b/Card Hallowed Mirror 460cb8.yaml' +- !include 'Custom_Model_Bag Guardian 1d802b/Card Bandolier 8b7da2.yaml' +- !include 'Custom_Model_Bag Guardian 1d802b/Card First Aid e29603.yaml' +- !include 'Custom_Model_Bag Guardian 1d802b/Card Physical Training 45a012.yaml' +- !include 'Custom_Model_Bag Guardian 1d802b/Card Survival Knife 840b3d.yaml' +- !include 'Custom_Model_Bag Guardian 1d802b/Card Blackjack e4c7c9.yaml' +- !include 'Custom_Model_Bag Guardian 1d802b/Card Trench Knife ca8448.yaml' +- !include 'Custom_Model_Bag Guardian 1d802b/Card Solemn Vow 660d08.yaml' +- !include 'Custom_Model_Bag Guardian 1d802b/Card Venturer 293e8d.yaml' +- !include 'Custom_Model_Bag Guardian 1d802b/Card .45 Thompson 4f6ede.yaml' +- !include 'Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian d7e0ca.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/952965722516201848/72B3B9E2B59F25FEC82412AC22245D03655A4558/ + MaterialIndex: 3 + MeshURL: https://pastebin.com/raw/ALrYhQGb + NormalURL: '' + TypeIndex: 6 +Description: '' +GMNotes: '' +GUID: 1d802b +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: true +LuaScript: !include 'Custom_Model_Bag Guardian 1d802b.ttslua' +LuaScriptState: '{"ml":{"0a7642":{"lock":false,"pos":{"x":44.5134,"y":1.3534,"z":53.3608},"rot":{"x":0.0208,"y":269.9969,"z":0.0168}},"0da344":{"lock":false,"pos":{"x":53.2286,"y":1.3639,"z":78.6412},"rot":{"x":0.0208,"y":269.9898,"z":0.0168}},"184380":{"lock":false,"pos":{"x":58.3839,"y":1.3671,"z":83.1904},"rot":{"x":0.0208,"y":270.0088,"z":0.0168}},"19507d":{"lock":false,"pos":{"x":53.2286,"y":1.3666,"z":87.8412},"rot":{"x":0.0208,"y":270.0289,"z":0.0168}},"195b7f":{"lock":false,"pos":{"x":53.2286,"y":1.368,"z":92.4412},"rot":{"x":0.0208,"y":270.0284,"z":0.0168}},"22c65b":{"lock":false,"pos":{"x":53.2127,"y":1.3552,"z":48.7356},"rot":{"x":0.0207,"y":270.3718,"z":0.0169}},"273797":{"lock":false,"pos":{"x":44.5133,"y":1.3567,"z":64.8607},"rot":{"x":0.0208,"y":269.9684,"z":0.0168}},"293e8d":{"lock":false,"pos":{"x":40.9602,"y":1.3635,"z":92.4487},"rot":{"x":0.0208,"y":269.9693,"z":0.0168}},"45a012":{"lock":false,"pos":{"x":44.5133,"y":1.3621,"z":83.2607},"rot":{"x":0.0208,"y":269.9692,"z":0.0168}},"460cb8":{"lock":false,"pos":{"x":44.5133,"y":1.3601,"z":76.3607},"rot":{"x":0.0208,"y":269.9691,"z":0.0168}},"4f6ede":{"lock":false,"pos":{"x":40.9602,"y":1.3628,"z":90.1487},"rot":{"x":0.0208,"y":269.9669,"z":0.0168}},"55ce00":{"lock":false,"pos":{"x":53.2286,"y":1.3673,"z":90.1413},"rot":{"x":0.0208,"y":270.0289,"z":0.0168}},"591f6f":{"lock":false,"pos":{"x":44.4977,"y":1.352,"z":48.7551},"rot":{"x":0.0206,"y":270.705,"z":0.017}},"5fa99a":{"lock":false,"pos":{"x":53.2286,"y":1.3592,"z":62.5412},"rot":{"x":0.0208,"y":270.0289,"z":0.0168}},"60acf8":{"lock":false,"pos":{"x":53.2285,"y":1.3572,"z":55.6412},"rot":{"x":0.0208,"y":270.0289,"z":0.0168}},"660d08":{"lock":false,"pos":{"x":44.5133,"y":1.3648,"z":92.4607},"rot":{"x":0.0208,"y":269.9693,"z":0.0168}},"6aa477":{"lock":false,"pos":{"x":53.2286,"y":1.3633,"z":76.3412},"rot":{"x":0.0208,"y":270.0289,"z":0.0168}},"6d3fdf":{"lock":false,"pos":{"x":53.2286,"y":1.3619,"z":71.7412},"rot":{"x":0.0208,"y":270.0289,"z":0.0168}},"724c85":{"lock":false,"pos":{"x":53.2286,"y":1.3626,"z":74.0412},"rot":{"x":0.0208,"y":270.0287,"z":0.0168}},"7646d6":{"lock":false,"pos":{"x":53.2286,"y":1.3612,"z":69.4412},"rot":{"x":0.0208,"y":270.0287,"z":0.0168}},"7b6fd8":{"lock":false,"pos":{"x":53.2306,"y":1.3579,"z":57.941},"rot":{"x":0.0208,"y":270.0318,"z":0.0168}},"7dc5e1":{"lock":false,"pos":{"x":58.3839,"y":1.3692,"z":90.0904},"rot":{"x":0.0208,"y":270.0121,"z":0.0168}},"7dce77":{"lock":false,"pos":{"x":44.5133,"y":1.3594,"z":74.0607},"rot":{"x":0.0208,"y":269.9692,"z":0.0168}},"826897":{"lock":false,"pos":{"x":44.5133,"y":1.3561,"z":62.5608},"rot":{"x":0.0208,"y":269.9693,"z":0.0168}},"82ee35":{"lock":false,"pos":{"x":44.5133,"y":1.3554,"z":60.2608},"rot":{"x":0.0208,"y":269.9781,"z":0.0168}},"840b3d":{"lock":false,"pos":{"x":44.5133,"y":1.3628,"z":85.5608},"rot":{"x":0.0208,"y":269.9692,"z":0.0168}},"8475cc":{"lock":false,"pos":{"x":53.2286,"y":1.3653,"z":83.2412},"rot":{"x":0.0208,"y":270.0285,"z":0.0168}},"86cf73":{"lock":false,"pos":{"x":58.3839,"y":1.3698,"z":92.3904},"rot":{"x":0.0208,"y":269.9736,"z":0.0168}},"88cd33":{"lock":false,"pos":{"x":58.3839,"y":1.3678,"z":85.4904},"rot":{"x":0.0208,"y":270.0122,"z":0.0168}},"8a25a0":{"lock":false,"pos":{"x":53.2286,"y":1.366,"z":85.5412},"rot":{"x":0.0208,"y":270.0291,"z":0.0168}},"8b7da2":{"lock":false,"pos":{"x":44.5133,"y":1.3608,"z":78.6607},"rot":{"x":0.0208,"y":269.9693,"z":0.0168}},"9eeca1":{"lock":false,"pos":{"x":53.2047,"y":1.3558,"z":51.0014},"rot":{"x":0.0206,"y":270.6674,"z":0.017}},"a88e8d":{"lock":false,"pos":{"x":58.3838,"y":1.3658,"z":78.5904},"rot":{"x":0.0208,"y":270.0151,"z":0.0168}},"af4c03":{"lock":false,"pos":{"x":53.2286,"y":1.3585,"z":60.2412},"rot":{"x":0.0208,"y":270.0279,"z":0.0168}},"b2fedd":{"lock":false,"pos":{"x":44.4915,"y":1.3527,"z":51.0176},"rot":{"x":0.0208,"y":270.1117,"z":0.0168}},"b58038":{"lock":false,"pos":{"x":53.2286,"y":1.3646,"z":80.9412},"rot":{"x":0.0208,"y":270.0289,"z":0.0168}},"b789ac":{"lock":false,"pos":{"x":58.3839,"y":1.3685,"z":87.7904},"rot":{"x":0.0208,"y":270.0117,"z":0.0168}},"bd34f2":{"lock":false,"pos":{"x":44.5133,"y":1.3581,"z":69.4607},"rot":{"x":0.0208,"y":269.9693,"z":0.0168}},"bf3261":{"lock":false,"pos":{"x":53.2286,"y":1.3606,"z":67.1411},"rot":{"x":0.0208,"y":270.0314,"z":0.0168}},"c634a0":{"lock":false,"pos":{"x":58.3839,"y":1.3665,"z":80.8904},"rot":{"x":0.0208,"y":270.0118,"z":0.0168}},"ca17b8":{"lock":false,"pos":{"x":53.2286,"y":1.3565,"z":53.3412},"rot":{"x":0.0208,"y":270.0289,"z":0.0168}},"ca8448":{"lock":false,"pos":{"x":44.5133,"y":1.3641,"z":90.1608},"rot":{"x":0.0208,"y":269.9692,"z":0.0168}},"cc23ea":{"lock":false,"pos":{"x":53.2286,"y":1.3599,"z":64.8411},"rot":{"x":0.0208,"y":270.0282,"z":0.0168}},"ce4f97":{"lock":false,"pos":{"x":44.5132,"y":1.354,"z":55.6608},"rot":{"x":0.0208,"y":269.9693,"z":0.0168}},"db2e8d":{"lock":false,"pos":{"x":44.5133,"y":1.3574,"z":67.1607},"rot":{"x":0.0208,"y":269.9694,"z":0.0168}},"e29603":{"lock":false,"pos":{"x":44.5133,"y":1.3614,"z":80.9607},"rot":{"x":0.0208,"y":269.9692,"z":0.0168}},"e4c7c9":{"lock":false,"pos":{"x":44.5133,"y":1.3635,"z":87.8608},"rot":{"x":0.0208,"y":269.9691,"z":0.0168}},"ea9ad0":{"lock":false,"pos":{"x":58.3838,"y":1.3651,"z":76.2904},"rot":{"x":0.0208,"y":270.0159,"z":0.0168}},"f2f912":{"lock":false,"pos":{"x":44.5154,"y":1.3547,"z":57.9606},"rot":{"x":0.0208,"y":269.9692,"z":0.0168}},"f8d22e":{"lock":false,"pos":{"x":44.5133,"y":1.3588,"z":71.7607},"rot":{"x":0.0208,"y":269.9692,"z":0.0168}}}}' +MaterialIndex: -1 +MeshIndex: -1 +Name: Custom_Model_Bag +Nickname: Guardian +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 66.613 + posY: 1.41627181 + posZ: 75.8782654 + rotX: 0.0208048988 + rotY: 270.02066 + rotZ: 0.0167778078 + scaleX: 1.2 + scaleY: 1.2 + scaleZ: 1.2 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 1d802b/Card .32 Colt f8d22e.yaml b/unpacked/Custom_Model_Bag Guardian 1d802b/Card .32 Colt f8d22e.yaml new file mode 100644 index 000000000..ae8e336d6 --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 1d802b/Card .32 Colt f8d22e.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: f8d22e +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: .32 Colt +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.51333 + posY: 1.358754 + posZ: 71.76075 + rotX: 0.0208159853 + rotY: 269.969177 + rotZ: 0.0167591833 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 1d802b/Card .35 Winchester 0a7642.yaml b/unpacked/Custom_Model_Bag Guardian 1d802b/Card .35 Winchester 0a7642.yaml new file mode 100644 index 000000000..c1a803e8f --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 1d802b/Card .35 Winchester 0a7642.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Item. Weapon. Firearm. +GMNotes: '' +GUID: 0a7642 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: .35 Winchester +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.5133629 + posY: 1.35336816 + posZ: 53.36077 + rotX: 0.0208111443 + rotY: 269.9969 + rotZ: 0.0167715568 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 1d802b/Card .45 Automatic ce4f97.yaml b/unpacked/Custom_Model_Bag Guardian 1d802b/Card .45 Automatic ce4f97.yaml new file mode 100644 index 000000000..692e8602a --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 1d802b/Card .45 Automatic ce4f97.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: ce4f97 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: .45 Automatic +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.5132332 + posY: 1.35404134 + posZ: 55.66079 + rotX: 0.020818891 + rotY: 269.9693 + rotZ: 0.0167616159 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 1d802b/Card .45 Thompson 4f6ede.yaml b/unpacked/Custom_Model_Bag Guardian 1d802b/Card .45 Thompson 4f6ede.yaml new file mode 100644 index 000000000..a9bb0e346 --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 1d802b/Card .45 Thompson 4f6ede.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 4f6ede +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: .45 Thompson +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 40.96023 + posY: 1.36284614 + posZ: 90.148735 + rotX: 0.0208168868 + rotY: 269.966919 + rotZ: 0.0167583376 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 1d802b/Card Alice Luxley b2fedd.yaml b/unpacked/Custom_Model_Bag Guardian 1d802b/Card Alice Luxley b2fedd.yaml new file mode 100644 index 000000000..4f765c380 --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 1d802b/Card Alice Luxley b2fedd.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Fearless Flatfoot +GMNotes: '' +GUID: b2fedd +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Alice Luxley +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.49148 + posY: 1.35267425 + posZ: 51.0176277 + rotX: 0.0207765251 + rotY: 270.1117 + rotZ: 0.0168138221 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 1d802b/Card Bandolier 8b7da2.yaml b/unpacked/Custom_Model_Bag Guardian 1d802b/Card Bandolier 8b7da2.yaml new file mode 100644 index 000000000..03b8b71ec --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 1d802b/Card Bandolier 8b7da2.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 8b7da2 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Bandolier +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.51332 + posY: 1.3607738 + posZ: 78.66074 + rotX: 0.020817088 + rotY: 269.9693 + rotZ: 0.0167585239 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 1d802b/Card Beat Cop 591f6f.yaml b/unpacked/Custom_Model_Bag Guardian 1d802b/Card Beat Cop 591f6f.yaml new file mode 100644 index 000000000..8b6d59da7 --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 1d802b/Card Beat Cop 591f6f.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 591f6f +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Beat Cop +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.4976845 + posY: 1.3520143 + posZ: 48.7551 + rotX: 0.0206034351 + rotY: 270.705 + rotZ: 0.01702541 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 1d802b/Card Blackjack e4c7c9.yaml b/unpacked/Custom_Model_Bag Guardian 1d802b/Card Blackjack e4c7c9.yaml new file mode 100644 index 000000000..08d346bfb --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 1d802b/Card Blackjack e4c7c9.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: e4c7c9 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Blackjack +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.51333 + posY: 1.36346686 + posZ: 87.8607559 + rotX: 0.0208171587 + rotY: 269.969147 + rotZ: 0.016758509 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 1d802b/Card Daring 86cf73.yaml b/unpacked/Custom_Model_Bag Guardian 1d802b/Card Daring 86cf73.yaml new file mode 100644 index 000000000..478912fff --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 1d802b/Card Daring 86cf73.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 86cf73 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Daring +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 58.3838539 + posY: 1.36983013 + posZ: 92.39038 + rotX: 0.0208158679 + rotY: 269.9736 + rotZ: 0.016760176 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 1d802b/Card Delay the Inevitable af4c03.yaml b/unpacked/Custom_Model_Bag Guardian 1d802b/Card Delay the Inevitable af4c03.yaml new file mode 100644 index 000000000..3cceb83c5 --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 1d802b/Card Delay the Inevitable af4c03.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 447007 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: af4c03 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Delay the Inevitable +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 53.2285728 + posY: 1.35854733 + posZ: 60.2411957 + rotX: 0.0208020322 + rotY: 270.0279 + rotZ: 0.01678299 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 1d802b/Card Dodge 7646d6.yaml b/unpacked/Custom_Model_Bag Guardian 1d802b/Card Dodge 7646d6.yaml new file mode 100644 index 000000000..14c82c47b --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 1d802b/Card Dodge 7646d6.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 7646d6 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Dodge +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 53.2285728 + posY: 1.36124039 + posZ: 69.44123 + rotX: 0.0207998771 + rotY: 270.028717 + rotZ: 0.0167801324 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 1d802b/Card Dynamite Blast 22c65b.yaml b/unpacked/Custom_Model_Bag Guardian 1d802b/Card Dynamite Blast 22c65b.yaml new file mode 100644 index 000000000..08d4d3682 --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 1d802b/Card Dynamite Blast 22c65b.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 22c65b +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Dynamite Blast +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 53.21275 + posY: 1.35517371 + posZ: 48.73564 + rotX: 0.0207010079 + rotY: 270.371765 + rotZ: 0.0169061 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 1d802b/Card Eat lead! b58038.yaml b/unpacked/Custom_Model_Bag Guardian 1d802b/Card Eat lead! b58038.yaml new file mode 100644 index 000000000..ff0b47263 --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 1d802b/Card Eat lead! b58038.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 447123 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '4471': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025943109/9C5481E6DFEACD450C5522F884E615482281DDB1/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: b58038 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '"Eat lead!"' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 53.22858 + posY: 1.3646065 + posZ: 80.94124 + rotX: 0.0207996052 + rotY: 270.028931 + rotZ: 0.01678018 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 1d802b/Card Emergency Aid 7b6fd8.yaml b/unpacked/Custom_Model_Bag Guardian 1d802b/Card Emergency Aid 7b6fd8.yaml new file mode 100644 index 000000000..97c3d2e6c --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 1d802b/Card Emergency Aid 7b6fd8.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 7b6fd8 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Emergency Aid +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 53.23061 + posY: 1.35787463 + posZ: 57.9409752 + rotX: 0.02080082 + rotY: 270.0318 + rotZ: 0.0167841911 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 1d802b/Card Enchanted Blade bd34f2.yaml b/unpacked/Custom_Model_Bag Guardian 1d802b/Card Enchanted Blade bd34f2.yaml new file mode 100644 index 000000000..8e42ecb2f --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 1d802b/Card Enchanted Blade bd34f2.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: bd34f2 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Enchanted Blade +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.51332 + posY: 1.35808086 + posZ: 69.46074 + rotX: 0.020817142 + rotY: 269.9693 + rotZ: 0.0167584661 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 1d802b/Card Evidence! 8475cc.yaml b/unpacked/Custom_Model_Bag Guardian 1d802b/Card Evidence! 8475cc.yaml new file mode 100644 index 000000000..9915455b6 --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 1d802b/Card Evidence! 8475cc.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 8475cc +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Evidence! +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 53.2285767 + posY: 1.36527967 + posZ: 83.2412338 + rotX: 0.0208032038 + rotY: 270.0285 + rotZ: 0.0167824477 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 1d802b/Card First Aid e29603.yaml b/unpacked/Custom_Model_Bag Guardian 1d802b/Card First Aid e29603.yaml new file mode 100644 index 000000000..370bdebd3 --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 1d802b/Card First Aid e29603.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: e29603 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: First Aid +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.5133324 + posY: 1.3614471 + posZ: 80.96075 + rotX: 0.0208169986 + rotY: 269.9692 + rotZ: 0.0167584941 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 1d802b/Card First Watch 0da344.yaml b/unpacked/Custom_Model_Bag Guardian 1d802b/Card First Watch 0da344.yaml new file mode 100644 index 000000000..309188113 --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 1d802b/Card First Watch 0da344.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 0da344 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: First Watch +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 53.2285728 + posY: 1.36393321 + posZ: 78.64123 + rotX: 0.020810049 + rotY: 269.989838 + rotZ: 0.0167669337 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 1d802b/Card Guard Dog db2e8d.yaml b/unpacked/Custom_Model_Bag Guardian 1d802b/Card Guard Dog db2e8d.yaml new file mode 100644 index 000000000..4526055b2 --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 1d802b/Card Guard Dog db2e8d.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: db2e8d +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Guard Dog +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.5133171 + posY: 1.35740757 + posZ: 67.1607056 + rotX: 0.0208169054 + rotY: 269.969421 + rotZ: 0.0167586524 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 1d802b/Card Hallowed Mirror 460cb8.yaml b/unpacked/Custom_Model_Bag Guardian 1d802b/Card Hallowed Mirror 460cb8.yaml new file mode 100644 index 000000000..86ff8fae7 --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 1d802b/Card Hallowed Mirror 460cb8.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 460cb8 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Hallowed Mirror +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.51332 + posY: 1.36010051 + posZ: 76.36074 + rotX: 0.02081707 + rotY: 269.9691 + rotZ: 0.01675842 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 1d802b/Card Handcuffs 7dce77.yaml b/unpacked/Custom_Model_Bag Guardian 1d802b/Card Handcuffs 7dce77.yaml new file mode 100644 index 000000000..75f94fe5d --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 1d802b/Card Handcuffs 7dce77.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 446701 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '4467': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025943109/9C5481E6DFEACD450C5522F884E615482281DDB1/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 7dce77 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Handcuffs +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.51332 + posY: 1.35942733 + posZ: 74.0607452 + rotX: 0.0208169036 + rotY: 269.969238 + rotZ: 0.0167584661 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 1d802b/Card Heroic Rescue 724c85.yaml b/unpacked/Custom_Model_Bag Guardian 1d802b/Card Heroic Rescue 724c85.yaml new file mode 100644 index 000000000..c13b79192 --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 1d802b/Card Heroic Rescue 724c85.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 724c85 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Heroic Rescue +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 53.2285767 + posY: 1.36258686 + posZ: 74.04124 + rotX: 0.0208000112 + rotY: 270.028717 + rotZ: 0.0167801231 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 1d802b/Card I'll see you in hell! 19507d.yaml b/unpacked/Custom_Model_Bag Guardian 1d802b/Card I'll see you in hell! 19507d.yaml new file mode 100644 index 000000000..a2e026679 --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 1d802b/Card I'll see you in hell! 19507d.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 19507d +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '"I''ll see you in hell!"' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 53.22858 + posY: 1.36662626 + posZ: 87.84125 + rotX: 0.020799607 + rotY: 270.028931 + rotZ: 0.0167803243 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 1d802b/Card If it bleeds... 6d3fdf.yaml b/unpacked/Custom_Model_Bag Guardian 1d802b/Card If it bleeds... 6d3fdf.yaml new file mode 100644 index 000000000..b567dca4f --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 1d802b/Card If it bleeds... 6d3fdf.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 6d3fdf +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '"If it bleeds..."' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 53.2285767 + posY: 1.36191356 + posZ: 71.7412338 + rotX: 0.0207997821 + rotY: 270.028931 + rotZ: 0.0167803168 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 1d802b/Card Inspiring Presence b789ac.yaml b/unpacked/Custom_Model_Bag Guardian 1d802b/Card Inspiring Presence b789ac.yaml new file mode 100644 index 000000000..e0176fbd1 --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 1d802b/Card Inspiring Presence b789ac.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: b789ac +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Inspiring Presence +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 58.3838539 + posY: 1.36848366 + posZ: 87.79039 + rotX: 0.0208045859 + rotY: 270.011719 + rotZ: 0.0167738665 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 1d802b/Card Interrogate 60acf8.yaml b/unpacked/Custom_Model_Bag Guardian 1d802b/Card Interrogate 60acf8.yaml new file mode 100644 index 000000000..08072c750 --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 1d802b/Card Interrogate 60acf8.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 60acf8 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Interrogate +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 53.2284851 + posY: 1.35720074 + posZ: 55.6411972 + rotX: 0.0208016932 + rotY: 270.02887 + rotZ: 0.0167832617 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 1d802b/Card Intrepid 88cd33.yaml b/unpacked/Custom_Model_Bag Guardian 1d802b/Card Intrepid 88cd33.yaml new file mode 100644 index 000000000..bda04bdde --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 1d802b/Card Intrepid 88cd33.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 226304 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 88cd33 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Intrepid +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 58.38386 + posY: 1.36781049 + posZ: 85.49039 + rotX: 0.020804327 + rotY: 270.0122 + rotZ: 0.0167741738 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 1d802b/Card Leadership 7dc5e1.yaml b/unpacked/Custom_Model_Bag Guardian 1d802b/Card Leadership 7dc5e1.yaml new file mode 100644 index 000000000..ecbe05277 --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 1d802b/Card Leadership 7dc5e1.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 7dc5e1 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Leadership +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 58.3838539 + posY: 1.369157 + posZ: 90.09039 + rotX: 0.020804299 + rotY: 270.012054 + rotZ: 0.0167741757 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 1d802b/Card Let me handle this! 195b7f.yaml b/unpacked/Custom_Model_Bag Guardian 1d802b/Card Let me handle this! 195b7f.yaml new file mode 100644 index 000000000..7de5f84d4 --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 1d802b/Card Let me handle this! 195b7f.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 195b7f +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '"Let me handle this!"' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 53.22858 + posY: 1.36797273 + posZ: 92.44124 + rotX: 0.0207996536 + rotY: 270.028442 + rotZ: 0.0167799741 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 1d802b/Card Machete 273797.yaml b/unpacked/Custom_Model_Bag Guardian 1d802b/Card Machete 273797.yaml new file mode 100644 index 000000000..237fb32b4 --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 1d802b/Card Machete 273797.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: '273797' +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Machete +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.5133171 + posY: 1.3567344 + posZ: 64.8606949 + rotX: 0.0208175853 + rotY: 269.968445 + rotZ: 0.0167583451 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 1d802b/Card On The Hunt bf3261.yaml b/unpacked/Custom_Model_Bag Guardian 1d802b/Card On The Hunt bf3261.yaml new file mode 100644 index 000000000..35c5eebb6 --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 1d802b/Card On The Hunt bf3261.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: bf3261 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: On The Hunt +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 53.22857 + posY: 1.360567 + posZ: 67.14111 + rotX: 0.020798834 + rotY: 270.031372 + rotZ: 0.0167810656 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 1d802b/Card Physical Training 45a012.yaml b/unpacked/Custom_Model_Bag Guardian 1d802b/Card Physical Training 45a012.yaml new file mode 100644 index 000000000..0d6ed3b88 --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 1d802b/Card Physical Training 45a012.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 45a012 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Physical Training +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.5133324 + posY: 1.36212027 + posZ: 83.26075 + rotX: 0.0208168086 + rotY: 269.9692 + rotZ: 0.0167585574 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 1d802b/Card Prepared for the Worst 6aa477.yaml b/unpacked/Custom_Model_Bag Guardian 1d802b/Card Prepared for the Worst 6aa477.yaml new file mode 100644 index 000000000..b8465cda6 --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 1d802b/Card Prepared for the Worst 6aa477.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 6aa477 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Prepared for the Worst +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 53.2285728 + posY: 1.36326 + posZ: 76.34123 + rotX: 0.020799458 + rotY: 270.028931 + rotZ: 0.016780192 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 1d802b/Card Scene of the Crime ca17b8.yaml b/unpacked/Custom_Model_Bag Guardian 1d802b/Card Scene of the Crime ca17b8.yaml new file mode 100644 index 000000000..715138793 --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 1d802b/Card Scene of the Crime ca17b8.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: ca17b8 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Scene of the Crime +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 53.2286148 + posY: 1.35652757 + posZ: 53.34118 + rotX: 0.0208017658 + rotY: 270.028931 + rotZ: 0.0167832132 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 1d802b/Card Second Wind 5fa99a.yaml b/unpacked/Custom_Model_Bag Guardian 1d802b/Card Second Wind 5fa99a.yaml new file mode 100644 index 000000000..e5155808e --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 1d802b/Card Second Wind 5fa99a.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 5fa99a +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Second Wind +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 53.2285728 + posY: 1.3592205 + posZ: 62.5411949 + rotX: 0.0208014678 + rotY: 270.028931 + rotZ: 0.0167833958 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 1d802b/Card Self-Sacrifice 184380.yaml b/unpacked/Custom_Model_Bag Guardian 1d802b/Card Self-Sacrifice 184380.yaml new file mode 100644 index 000000000..ba70b535b --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 1d802b/Card Self-Sacrifice 184380.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: '184380' +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Self-Sacrifice +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 58.38386 + posY: 1.36713707 + posZ: 83.1903839 + rotX: 0.0208054911 + rotY: 270.0088 + rotZ: 0.0167730469 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 1d802b/Card Solemn Vow 660d08.yaml b/unpacked/Custom_Model_Bag Guardian 1d802b/Card Solemn Vow 660d08.yaml new file mode 100644 index 000000000..d0409d894 --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 1d802b/Card Solemn Vow 660d08.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 446826 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '4468': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025943109/9C5481E6DFEACD450C5522F884E615482281DDB1/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 660d08 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Solemn Vow +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.51333 + posY: 1.36481321 + posZ: 92.46075 + rotX: 0.0208171271 + rotY: 269.96933 + rotZ: 0.0167586915 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 1d802b/Card Something Worth Fighting For 826897.yaml b/unpacked/Custom_Model_Bag Guardian 1d802b/Card Something Worth Fighting For 826897.yaml new file mode 100644 index 000000000..f60839d68 --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 1d802b/Card Something Worth Fighting For 826897.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: '826897' +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Something Worth Fighting For +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.51332 + posY: 1.3560611 + posZ: 62.5607872 + rotX: 0.0208191369 + rotY: 269.969269 + rotZ: 0.0167616643 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 1d802b/Card Steadfast c634a0.yaml b/unpacked/Custom_Model_Bag Guardian 1d802b/Card Steadfast c634a0.yaml new file mode 100644 index 000000000..d7c12aa4e --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 1d802b/Card Steadfast c634a0.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 446906 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '4469': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025943109/9C5481E6DFEACD450C5522F884E615482281DDB1/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: c634a0 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Steadfast +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 58.3838539 + posY: 1.3664639 + posZ: 80.89038 + rotX: 0.0208044425 + rotY: 270.01178 + rotZ: 0.0167740881 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 1d802b/Card Survival Knife 840b3d.yaml b/unpacked/Custom_Model_Bag Guardian 1d802b/Card Survival Knife 840b3d.yaml new file mode 100644 index 000000000..ed10afab9 --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 1d802b/Card Survival Knife 840b3d.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 840b3d +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Survival Knife +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.5133324 + posY: 1.36279356 + posZ: 85.56075 + rotX: 0.0208174 + rotY: 269.969177 + rotZ: 0.0167586785 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 1d802b/Card Take the Initiative a88e8d.yaml b/unpacked/Custom_Model_Bag Guardian 1d802b/Card Take the Initiative a88e8d.yaml new file mode 100644 index 000000000..d8e21a564 --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 1d802b/Card Take the Initiative a88e8d.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: a88e8d +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Take the Initiative +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 58.3838463 + posY: 1.36579072 + posZ: 78.59038 + rotX: 0.0208038185 + rotY: 270.015076 + rotZ: 0.0167751554 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 1d802b/Card Taunt 8a25a0.yaml b/unpacked/Custom_Model_Bag Guardian 1d802b/Card Taunt 8a25a0.yaml new file mode 100644 index 000000000..837ddb5e5 --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 1d802b/Card Taunt 8a25a0.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 8a25a0 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Taunt +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 53.2285843 + posY: 1.36595309 + posZ: 85.5412445 + rotX: 0.02079953 + rotY: 270.029144 + rotZ: 0.0167804714 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 1d802b/Card Teamwork 55ce00.yaml b/unpacked/Custom_Model_Bag Guardian 1d802b/Card Teamwork 55ce00.yaml new file mode 100644 index 000000000..cacfcf023 --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 1d802b/Card Teamwork 55ce00.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 55ce00 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Teamwork +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 53.22858 + posY: 1.36729956 + posZ: 90.14125 + rotX: 0.0207999 + rotY: 270.02887 + rotZ: 0.016780097 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 1d802b/Card Tetsuo Mori 82ee35.yaml b/unpacked/Custom_Model_Bag Guardian 1d802b/Card Tetsuo Mori 82ee35.yaml new file mode 100644 index 000000000..7f31a8690 --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 1d802b/Card Tetsuo Mori 82ee35.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Too Noble for His Own Good +GMNotes: '' +GUID: 82ee35 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Tetsuo Mori +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.51332 + posY: 1.35538781 + posZ: 60.260788 + rotX: 0.02081658 + rotY: 269.978119 + rotZ: 0.0167649463 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 1d802b/Card Trench Knife ca8448.yaml b/unpacked/Custom_Model_Bag Guardian 1d802b/Card Trench Knife ca8448.yaml new file mode 100644 index 000000000..32e3dc7f8 --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 1d802b/Card Trench Knife ca8448.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: ca8448 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Trench Knife +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.5133247 + posY: 1.36414 + posZ: 90.16076 + rotX: 0.02081739 + rotY: 269.9692 + rotZ: 0.0167584829 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 1d802b/Card True Grit f2f912.yaml b/unpacked/Custom_Model_Bag Guardian 1d802b/Card True Grit f2f912.yaml new file mode 100644 index 000000000..acf025b43 --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 1d802b/Card True Grit f2f912.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 226329 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: f2f912 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: True Grit +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.515358 + posY: 1.35471523 + posZ: 57.9605675 + rotX: 0.0208195467 + rotY: 269.969238 + rotZ: 0.0167616475 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 1d802b/Card Trusted cc23ea.yaml b/unpacked/Custom_Model_Bag Guardian 1d802b/Card Trusted cc23ea.yaml new file mode 100644 index 000000000..5a93a49f8 --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 1d802b/Card Trusted cc23ea.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: cc23ea +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Trusted +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 53.22857 + posY: 1.3598938 + posZ: 64.8411 + rotX: 0.0207998771 + rotY: 270.028229 + rotZ: 0.0167798717 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 1d802b/Card Venturer 293e8d.yaml b/unpacked/Custom_Model_Bag Guardian 1d802b/Card Venturer 293e8d.yaml new file mode 100644 index 000000000..bce9fc67b --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 1d802b/Card Venturer 293e8d.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 226332 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 293e8d +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Venturer +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 40.960228 + posY: 1.36351943 + posZ: 92.4487152 + rotX: 0.02081698 + rotY: 269.9693 + rotZ: 0.0167584866 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 1d802b/Card Vicious Blow ea9ad0.yaml b/unpacked/Custom_Model_Bag Guardian 1d802b/Card Vicious Blow ea9ad0.yaml new file mode 100644 index 000000000..fa74c8e2f --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 1d802b/Card Vicious Blow ea9ad0.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: ea9ad0 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Vicious Blow +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 58.3838463 + posY: 1.36511743 + posZ: 76.2903748 + rotX: 0.0208032951 + rotY: 270.01593 + rotZ: 0.01677552 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 1d802b/Card Warning Shot 9eeca1.yaml b/unpacked/Custom_Model_Bag Guardian 1d802b/Card Warning Shot 9eeca1.yaml new file mode 100644 index 000000000..61b1a0bc7 --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 1d802b/Card Warning Shot 9eeca1.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 292814 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 9eeca1 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Warning Shot +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 53.2047043 + posY: 1.355834 + posZ: 51.0013542 + rotX: 0.0206128266 + rotY: 270.667358 + rotZ: 0.0170119479 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian d7e0ca.ttslua b/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian d7e0ca.ttslua new file mode 100644 index 000000000..f882a7f09 --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian d7e0ca.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,0,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 + 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=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,0,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,0,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,0,0}, height=350, width=750, + 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}, rotation={0,0,0}, height=350, width=800, + font_size=250, color={0,0,0}, font_color={1,1,1} + }) +-- self.createButton({ +-- label="Setup", click_function="buttonClick_setup", function_owner=self, +-- position={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.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 Guardian 1d802b/Custom_Model_Bag Guardian d7e0ca.yaml b/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian d7e0ca.yaml new file mode 100644 index 000000000..684f45d51 --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian d7e0ca.yaml @@ -0,0 +1,102 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +ContainedObjects: +- !include 'Custom_Model_Bag Guardian d7e0ca/Card Daring 86cf73.yaml' +- !include 'Custom_Model_Bag Guardian d7e0ca/Card Leadership 7dc5e1.yaml' +- !include 'Custom_Model_Bag Guardian d7e0ca/Card Inspiring Presence b789ac.yaml' +- !include 'Custom_Model_Bag Guardian d7e0ca/Card Intrepid 88cd33.yaml' +- !include 'Custom_Model_Bag Guardian d7e0ca/Card Self-Sacrifice 184380.yaml' +- !include 'Custom_Model_Bag Guardian d7e0ca/Card Steadfast c634a0.yaml' +- !include 'Custom_Model_Bag Guardian d7e0ca/Card Take the Initiative a88e8d.yaml' +- !include 'Custom_Model_Bag Guardian d7e0ca/Card Vicious Blow ea9ad0.yaml' +- !include 'Custom_Model_Bag Guardian d7e0ca/Card Prepared for the Worst 6aa477.yaml' +- !include 'Custom_Model_Bag Guardian d7e0ca/Card First Watch 0da344.yaml' +- !include 'Custom_Model_Bag Guardian d7e0ca/Card Eat lead! b58038.yaml' +- !include 'Custom_Model_Bag Guardian d7e0ca/Card Evidence! 8475cc.yaml' +- !include 'Custom_Model_Bag Guardian d7e0ca/Card Taunt 8a25a0.yaml' +- !include 'Custom_Model_Bag Guardian d7e0ca/Card I''ll see you in hell! 19507d.yaml' +- !include 'Custom_Model_Bag Guardian d7e0ca/Card Teamwork 55ce00.yaml' +- !include 'Custom_Model_Bag Guardian d7e0ca/Card Let me handle this! 195b7f.yaml' +- !include 'Custom_Model_Bag Guardian d7e0ca/Card Heroic Rescue 724c85.yaml' +- !include 'Custom_Model_Bag Guardian d7e0ca/Card If it bleeds... 6d3fdf.yaml' +- !include 'Custom_Model_Bag Guardian d7e0ca/Card Dodge 7646d6.yaml' +- !include 'Custom_Model_Bag Guardian d7e0ca/Card On The Hunt bf3261.yaml' +- !include 'Custom_Model_Bag Guardian d7e0ca/Card Trusted cc23ea.yaml' +- !include 'Custom_Model_Bag Guardian d7e0ca/Card Second Wind 5fa99a.yaml' +- !include 'Custom_Model_Bag Guardian d7e0ca/Card Delay the Inevitable af4c03.yaml' +- !include 'Custom_Model_Bag Guardian d7e0ca/Card Emergency Aid 7b6fd8.yaml' +- !include 'Custom_Model_Bag Guardian d7e0ca/Card Interrogate 60acf8.yaml' +- !include 'Custom_Model_Bag Guardian d7e0ca/Card Scene of the Crime ca17b8.yaml' +- !include 'Custom_Model_Bag Guardian d7e0ca/Card Warning Shot 9eeca1.yaml' +- !include 'Custom_Model_Bag Guardian d7e0ca/Card Dynamite Blast 22c65b.yaml' +- !include 'Custom_Model_Bag Guardian d7e0ca/Card Beat Cop 591f6f.yaml' +- !include 'Custom_Model_Bag Guardian d7e0ca/Card Alice Luxley b2fedd.yaml' +- !include 'Custom_Model_Bag Guardian d7e0ca/Card .35 Winchester 0a7642.yaml' +- !include 'Custom_Model_Bag Guardian d7e0ca/Card .45 Automatic ce4f97.yaml' +- !include 'Custom_Model_Bag Guardian d7e0ca/Card True Grit f2f912.yaml' +- !include 'Custom_Model_Bag Guardian d7e0ca/Card Tetsuo Mori 82ee35.yaml' +- !include 'Custom_Model_Bag Guardian d7e0ca/Card Something Worth Fighting For 826897.yaml' +- !include 'Custom_Model_Bag Guardian d7e0ca/Card Machete 273797.yaml' +- !include 'Custom_Model_Bag Guardian d7e0ca/Card Guard Dog db2e8d.yaml' +- !include 'Custom_Model_Bag Guardian d7e0ca/Card Enchanted Blade bd34f2.yaml' +- !include 'Custom_Model_Bag Guardian d7e0ca/Card .32 Colt f8d22e.yaml' +- !include 'Custom_Model_Bag Guardian d7e0ca/Card Handcuffs 7dce77.yaml' +- !include 'Custom_Model_Bag Guardian d7e0ca/Card Hallowed Mirror 460cb8.yaml' +- !include 'Custom_Model_Bag Guardian d7e0ca/Card Bandolier 8b7da2.yaml' +- !include 'Custom_Model_Bag Guardian d7e0ca/Card First Aid e29603.yaml' +- !include 'Custom_Model_Bag Guardian d7e0ca/Card Physical Training 45a012.yaml' +- !include 'Custom_Model_Bag Guardian d7e0ca/Card Survival Knife 840b3d.yaml' +- !include 'Custom_Model_Bag Guardian d7e0ca/Card Blackjack e4c7c9.yaml' +- !include 'Custom_Model_Bag Guardian d7e0ca/Card Trench Knife ca8448.yaml' +- !include 'Custom_Model_Bag Guardian d7e0ca/Card Solemn Vow 660d08.yaml' +- !include 'Custom_Model_Bag Guardian d7e0ca/Card Venturer 293e8d.yaml' +- !include 'Custom_Model_Bag Guardian d7e0ca/Card .45 Thompson 4f6ede.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/952965722516201848/72B3B9E2B59F25FEC82412AC22245D03655A4558/ + MaterialIndex: 3 + MeshURL: https://pastebin.com/raw/ALrYhQGb + NormalURL: '' + TypeIndex: 6 +Description: '' +GMNotes: '' +GUID: d7e0ca +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Model_Bag Guardian d7e0ca.ttslua' +LuaScriptState: '{"ml":{"0a7642":{"lock":false,"pos":{"x":44.5134,"y":1.3534,"z":53.3608},"rot":{"x":0.0208,"y":269.9969,"z":0.0168}},"0da344":{"lock":false,"pos":{"x":53.2286,"y":1.3639,"z":78.6412},"rot":{"x":0.0208,"y":269.9898,"z":0.0168}},"184380":{"lock":false,"pos":{"x":58.3839,"y":1.3671,"z":83.1904},"rot":{"x":0.0208,"y":270.0088,"z":0.0168}},"19507d":{"lock":false,"pos":{"x":53.2286,"y":1.3666,"z":87.8412},"rot":{"x":0.0208,"y":270.0289,"z":0.0168}},"195b7f":{"lock":false,"pos":{"x":53.2286,"y":1.368,"z":92.4412},"rot":{"x":0.0208,"y":270.0284,"z":0.0168}},"22c65b":{"lock":false,"pos":{"x":53.2127,"y":1.3552,"z":48.7356},"rot":{"x":0.0207,"y":270.3718,"z":0.0169}},"273797":{"lock":false,"pos":{"x":44.5133,"y":1.3567,"z":64.8607},"rot":{"x":0.0208,"y":269.9684,"z":0.0168}},"293e8d":{"lock":false,"pos":{"x":40.9602,"y":1.3635,"z":92.4487},"rot":{"x":0.0208,"y":269.9693,"z":0.0168}},"45a012":{"lock":false,"pos":{"x":44.5133,"y":1.3621,"z":83.2607},"rot":{"x":0.0208,"y":269.9692,"z":0.0168}},"460cb8":{"lock":false,"pos":{"x":44.5133,"y":1.3601,"z":76.3607},"rot":{"x":0.0208,"y":269.9691,"z":0.0168}},"4f6ede":{"lock":false,"pos":{"x":40.9602,"y":1.3628,"z":90.1487},"rot":{"x":0.0208,"y":269.9669,"z":0.0168}},"55ce00":{"lock":false,"pos":{"x":53.2286,"y":1.3673,"z":90.1413},"rot":{"x":0.0208,"y":270.0289,"z":0.0168}},"591f6f":{"lock":false,"pos":{"x":44.4977,"y":1.352,"z":48.7551},"rot":{"x":0.0206,"y":270.705,"z":0.017}},"5fa99a":{"lock":false,"pos":{"x":53.2286,"y":1.3592,"z":62.5412},"rot":{"x":0.0208,"y":270.0289,"z":0.0168}},"60acf8":{"lock":false,"pos":{"x":53.2285,"y":1.3572,"z":55.6412},"rot":{"x":0.0208,"y":270.0289,"z":0.0168}},"660d08":{"lock":false,"pos":{"x":44.5133,"y":1.3648,"z":92.4607},"rot":{"x":0.0208,"y":269.9693,"z":0.0168}},"6aa477":{"lock":false,"pos":{"x":53.2286,"y":1.3633,"z":76.3412},"rot":{"x":0.0208,"y":270.0289,"z":0.0168}},"6d3fdf":{"lock":false,"pos":{"x":53.2286,"y":1.3619,"z":71.7412},"rot":{"x":0.0208,"y":270.0289,"z":0.0168}},"724c85":{"lock":false,"pos":{"x":53.2286,"y":1.3626,"z":74.0412},"rot":{"x":0.0208,"y":270.0287,"z":0.0168}},"7646d6":{"lock":false,"pos":{"x":53.2286,"y":1.3612,"z":69.4412},"rot":{"x":0.0208,"y":270.0287,"z":0.0168}},"7b6fd8":{"lock":false,"pos":{"x":53.2306,"y":1.3579,"z":57.941},"rot":{"x":0.0208,"y":270.0318,"z":0.0168}},"7dc5e1":{"lock":false,"pos":{"x":58.3839,"y":1.3692,"z":90.0904},"rot":{"x":0.0208,"y":270.0121,"z":0.0168}},"7dce77":{"lock":false,"pos":{"x":44.5133,"y":1.3594,"z":74.0607},"rot":{"x":0.0208,"y":269.9692,"z":0.0168}},"826897":{"lock":false,"pos":{"x":44.5133,"y":1.3561,"z":62.5608},"rot":{"x":0.0208,"y":269.9693,"z":0.0168}},"82ee35":{"lock":false,"pos":{"x":44.5133,"y":1.3554,"z":60.2608},"rot":{"x":0.0208,"y":269.9781,"z":0.0168}},"840b3d":{"lock":false,"pos":{"x":44.5133,"y":1.3628,"z":85.5608},"rot":{"x":0.0208,"y":269.9692,"z":0.0168}},"8475cc":{"lock":false,"pos":{"x":53.2286,"y":1.3653,"z":83.2412},"rot":{"x":0.0208,"y":270.0285,"z":0.0168}},"86cf73":{"lock":false,"pos":{"x":58.3839,"y":1.3698,"z":92.3904},"rot":{"x":0.0208,"y":269.9736,"z":0.0168}},"88cd33":{"lock":false,"pos":{"x":58.3839,"y":1.3678,"z":85.4904},"rot":{"x":0.0208,"y":270.0122,"z":0.0168}},"8a25a0":{"lock":false,"pos":{"x":53.2286,"y":1.366,"z":85.5412},"rot":{"x":0.0208,"y":270.0291,"z":0.0168}},"8b7da2":{"lock":false,"pos":{"x":44.5133,"y":1.3608,"z":78.6607},"rot":{"x":0.0208,"y":269.9693,"z":0.0168}},"9eeca1":{"lock":false,"pos":{"x":53.2047,"y":1.3558,"z":51.0014},"rot":{"x":0.0206,"y":270.6674,"z":0.017}},"a88e8d":{"lock":false,"pos":{"x":58.3838,"y":1.3658,"z":78.5904},"rot":{"x":0.0208,"y":270.0151,"z":0.0168}},"af4c03":{"lock":false,"pos":{"x":53.2286,"y":1.3585,"z":60.2412},"rot":{"x":0.0208,"y":270.0279,"z":0.0168}},"b2fedd":{"lock":false,"pos":{"x":44.4915,"y":1.3527,"z":51.0176},"rot":{"x":0.0208,"y":270.1117,"z":0.0168}},"b58038":{"lock":false,"pos":{"x":53.2286,"y":1.3646,"z":80.9412},"rot":{"x":0.0208,"y":270.0289,"z":0.0168}},"b789ac":{"lock":false,"pos":{"x":58.3839,"y":1.3685,"z":87.7904},"rot":{"x":0.0208,"y":270.0117,"z":0.0168}},"bd34f2":{"lock":false,"pos":{"x":44.5133,"y":1.3581,"z":69.4607},"rot":{"x":0.0208,"y":269.9693,"z":0.0168}},"bf3261":{"lock":false,"pos":{"x":53.2286,"y":1.3606,"z":67.1411},"rot":{"x":0.0208,"y":270.0314,"z":0.0168}},"c634a0":{"lock":false,"pos":{"x":58.3839,"y":1.3665,"z":80.8904},"rot":{"x":0.0208,"y":270.0118,"z":0.0168}},"ca17b8":{"lock":false,"pos":{"x":53.2286,"y":1.3565,"z":53.3412},"rot":{"x":0.0208,"y":270.0289,"z":0.0168}},"ca8448":{"lock":false,"pos":{"x":44.5133,"y":1.3641,"z":90.1608},"rot":{"x":0.0208,"y":269.9692,"z":0.0168}},"cc23ea":{"lock":false,"pos":{"x":53.2286,"y":1.3599,"z":64.8411},"rot":{"x":0.0208,"y":270.0282,"z":0.0168}},"ce4f97":{"lock":false,"pos":{"x":44.5132,"y":1.354,"z":55.6608},"rot":{"x":0.0208,"y":269.9693,"z":0.0168}},"db2e8d":{"lock":false,"pos":{"x":44.5133,"y":1.3574,"z":67.1607},"rot":{"x":0.0208,"y":269.9694,"z":0.0168}},"e29603":{"lock":false,"pos":{"x":44.5133,"y":1.3614,"z":80.9607},"rot":{"x":0.0208,"y":269.9692,"z":0.0168}},"e4c7c9":{"lock":false,"pos":{"x":44.5133,"y":1.3635,"z":87.8608},"rot":{"x":0.0208,"y":269.9691,"z":0.0168}},"ea9ad0":{"lock":false,"pos":{"x":58.3838,"y":1.3651,"z":76.2904},"rot":{"x":0.0208,"y":270.0159,"z":0.0168}},"f2f912":{"lock":false,"pos":{"x":44.5154,"y":1.3547,"z":57.9606},"rot":{"x":0.0208,"y":269.9692,"z":0.0168}},"f8d22e":{"lock":false,"pos":{"x":44.5133,"y":1.3588,"z":71.7607},"rot":{"x":0.0208,"y":269.9692,"z":0.0168}}}}' +MaterialIndex: -1 +MeshIndex: -1 +Name: Custom_Model_Bag +Nickname: Guardian +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 66.61389 + posY: 1.674167 + posZ: 75.87928 + rotX: 0.0192742143 + rotY: 270.0207 + rotZ: 0.00991379 + scaleX: 1.2 + scaleY: 1.2 + scaleZ: 1.2 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian d7e0ca/Card .32 Colt f8d22e.yaml b/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian d7e0ca/Card .32 Colt f8d22e.yaml new file mode 100644 index 000000000..ae8e336d6 --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian d7e0ca/Card .32 Colt f8d22e.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: f8d22e +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: .32 Colt +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.51333 + posY: 1.358754 + posZ: 71.76075 + rotX: 0.0208159853 + rotY: 269.969177 + rotZ: 0.0167591833 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian d7e0ca/Card .35 Winchester 0a7642.yaml b/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian d7e0ca/Card .35 Winchester 0a7642.yaml new file mode 100644 index 000000000..c1a803e8f --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian d7e0ca/Card .35 Winchester 0a7642.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Item. Weapon. Firearm. +GMNotes: '' +GUID: 0a7642 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: .35 Winchester +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.5133629 + posY: 1.35336816 + posZ: 53.36077 + rotX: 0.0208111443 + rotY: 269.9969 + rotZ: 0.0167715568 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian d7e0ca/Card .45 Automatic ce4f97.yaml b/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian d7e0ca/Card .45 Automatic ce4f97.yaml new file mode 100644 index 000000000..692e8602a --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian d7e0ca/Card .45 Automatic ce4f97.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: ce4f97 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: .45 Automatic +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.5132332 + posY: 1.35404134 + posZ: 55.66079 + rotX: 0.020818891 + rotY: 269.9693 + rotZ: 0.0167616159 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian d7e0ca/Card .45 Thompson 4f6ede.yaml b/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian d7e0ca/Card .45 Thompson 4f6ede.yaml new file mode 100644 index 000000000..a9bb0e346 --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian d7e0ca/Card .45 Thompson 4f6ede.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 4f6ede +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: .45 Thompson +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 40.96023 + posY: 1.36284614 + posZ: 90.148735 + rotX: 0.0208168868 + rotY: 269.966919 + rotZ: 0.0167583376 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian d7e0ca/Card Alice Luxley b2fedd.yaml b/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian d7e0ca/Card Alice Luxley b2fedd.yaml new file mode 100644 index 000000000..4f765c380 --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian d7e0ca/Card Alice Luxley b2fedd.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Fearless Flatfoot +GMNotes: '' +GUID: b2fedd +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Alice Luxley +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.49148 + posY: 1.35267425 + posZ: 51.0176277 + rotX: 0.0207765251 + rotY: 270.1117 + rotZ: 0.0168138221 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian d7e0ca/Card Bandolier 8b7da2.yaml b/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian d7e0ca/Card Bandolier 8b7da2.yaml new file mode 100644 index 000000000..03b8b71ec --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian d7e0ca/Card Bandolier 8b7da2.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 8b7da2 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Bandolier +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.51332 + posY: 1.3607738 + posZ: 78.66074 + rotX: 0.020817088 + rotY: 269.9693 + rotZ: 0.0167585239 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian d7e0ca/Card Beat Cop 591f6f.yaml b/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian d7e0ca/Card Beat Cop 591f6f.yaml new file mode 100644 index 000000000..8b6d59da7 --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian d7e0ca/Card Beat Cop 591f6f.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 591f6f +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Beat Cop +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.4976845 + posY: 1.3520143 + posZ: 48.7551 + rotX: 0.0206034351 + rotY: 270.705 + rotZ: 0.01702541 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian d7e0ca/Card Blackjack e4c7c9.yaml b/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian d7e0ca/Card Blackjack e4c7c9.yaml new file mode 100644 index 000000000..08d346bfb --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian d7e0ca/Card Blackjack e4c7c9.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: e4c7c9 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Blackjack +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.51333 + posY: 1.36346686 + posZ: 87.8607559 + rotX: 0.0208171587 + rotY: 269.969147 + rotZ: 0.016758509 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian d7e0ca/Card Daring 86cf73.yaml b/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian d7e0ca/Card Daring 86cf73.yaml new file mode 100644 index 000000000..478912fff --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian d7e0ca/Card Daring 86cf73.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 86cf73 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Daring +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 58.3838539 + posY: 1.36983013 + posZ: 92.39038 + rotX: 0.0208158679 + rotY: 269.9736 + rotZ: 0.016760176 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian d7e0ca/Card Delay the Inevitable af4c03.yaml b/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian d7e0ca/Card Delay the Inevitable af4c03.yaml new file mode 100644 index 000000000..3cceb83c5 --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian d7e0ca/Card Delay the Inevitable af4c03.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 447007 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: af4c03 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Delay the Inevitable +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 53.2285728 + posY: 1.35854733 + posZ: 60.2411957 + rotX: 0.0208020322 + rotY: 270.0279 + rotZ: 0.01678299 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian d7e0ca/Card Dodge 7646d6.yaml b/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian d7e0ca/Card Dodge 7646d6.yaml new file mode 100644 index 000000000..14c82c47b --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian d7e0ca/Card Dodge 7646d6.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 7646d6 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Dodge +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 53.2285728 + posY: 1.36124039 + posZ: 69.44123 + rotX: 0.0207998771 + rotY: 270.028717 + rotZ: 0.0167801324 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian d7e0ca/Card Dynamite Blast 22c65b.yaml b/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian d7e0ca/Card Dynamite Blast 22c65b.yaml new file mode 100644 index 000000000..08d4d3682 --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian d7e0ca/Card Dynamite Blast 22c65b.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 22c65b +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Dynamite Blast +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 53.21275 + posY: 1.35517371 + posZ: 48.73564 + rotX: 0.0207010079 + rotY: 270.371765 + rotZ: 0.0169061 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian d7e0ca/Card Eat lead! b58038.yaml b/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian d7e0ca/Card Eat lead! b58038.yaml new file mode 100644 index 000000000..ff0b47263 --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian d7e0ca/Card Eat lead! b58038.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 447123 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '4471': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025943109/9C5481E6DFEACD450C5522F884E615482281DDB1/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: b58038 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '"Eat lead!"' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 53.22858 + posY: 1.3646065 + posZ: 80.94124 + rotX: 0.0207996052 + rotY: 270.028931 + rotZ: 0.01678018 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian d7e0ca/Card Emergency Aid 7b6fd8.yaml b/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian d7e0ca/Card Emergency Aid 7b6fd8.yaml new file mode 100644 index 000000000..97c3d2e6c --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian d7e0ca/Card Emergency Aid 7b6fd8.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 7b6fd8 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Emergency Aid +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 53.23061 + posY: 1.35787463 + posZ: 57.9409752 + rotX: 0.02080082 + rotY: 270.0318 + rotZ: 0.0167841911 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian d7e0ca/Card Enchanted Blade bd34f2.yaml b/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian d7e0ca/Card Enchanted Blade bd34f2.yaml new file mode 100644 index 000000000..8e42ecb2f --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian d7e0ca/Card Enchanted Blade bd34f2.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: bd34f2 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Enchanted Blade +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.51332 + posY: 1.35808086 + posZ: 69.46074 + rotX: 0.020817142 + rotY: 269.9693 + rotZ: 0.0167584661 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian d7e0ca/Card Evidence! 8475cc.yaml b/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian d7e0ca/Card Evidence! 8475cc.yaml new file mode 100644 index 000000000..9915455b6 --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian d7e0ca/Card Evidence! 8475cc.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 8475cc +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Evidence! +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 53.2285767 + posY: 1.36527967 + posZ: 83.2412338 + rotX: 0.0208032038 + rotY: 270.0285 + rotZ: 0.0167824477 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian d7e0ca/Card First Aid e29603.yaml b/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian d7e0ca/Card First Aid e29603.yaml new file mode 100644 index 000000000..370bdebd3 --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian d7e0ca/Card First Aid e29603.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: e29603 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: First Aid +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.5133324 + posY: 1.3614471 + posZ: 80.96075 + rotX: 0.0208169986 + rotY: 269.9692 + rotZ: 0.0167584941 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian d7e0ca/Card First Watch 0da344.yaml b/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian d7e0ca/Card First Watch 0da344.yaml new file mode 100644 index 000000000..309188113 --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian d7e0ca/Card First Watch 0da344.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 0da344 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: First Watch +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 53.2285728 + posY: 1.36393321 + posZ: 78.64123 + rotX: 0.020810049 + rotY: 269.989838 + rotZ: 0.0167669337 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian d7e0ca/Card Guard Dog db2e8d.yaml b/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian d7e0ca/Card Guard Dog db2e8d.yaml new file mode 100644 index 000000000..4526055b2 --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian d7e0ca/Card Guard Dog db2e8d.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: db2e8d +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Guard Dog +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.5133171 + posY: 1.35740757 + posZ: 67.1607056 + rotX: 0.0208169054 + rotY: 269.969421 + rotZ: 0.0167586524 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian d7e0ca/Card Hallowed Mirror 460cb8.yaml b/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian d7e0ca/Card Hallowed Mirror 460cb8.yaml new file mode 100644 index 000000000..86ff8fae7 --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian d7e0ca/Card Hallowed Mirror 460cb8.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 460cb8 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Hallowed Mirror +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.51332 + posY: 1.36010051 + posZ: 76.36074 + rotX: 0.02081707 + rotY: 269.9691 + rotZ: 0.01675842 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian d7e0ca/Card Handcuffs 7dce77.yaml b/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian d7e0ca/Card Handcuffs 7dce77.yaml new file mode 100644 index 000000000..75f94fe5d --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian d7e0ca/Card Handcuffs 7dce77.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 446701 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '4467': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025943109/9C5481E6DFEACD450C5522F884E615482281DDB1/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 7dce77 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Handcuffs +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.51332 + posY: 1.35942733 + posZ: 74.0607452 + rotX: 0.0208169036 + rotY: 269.969238 + rotZ: 0.0167584661 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian d7e0ca/Card Heroic Rescue 724c85.yaml b/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian d7e0ca/Card Heroic Rescue 724c85.yaml new file mode 100644 index 000000000..c13b79192 --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian d7e0ca/Card Heroic Rescue 724c85.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 724c85 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Heroic Rescue +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 53.2285767 + posY: 1.36258686 + posZ: 74.04124 + rotX: 0.0208000112 + rotY: 270.028717 + rotZ: 0.0167801231 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian d7e0ca/Card I'll see you in hell! 19507d.yaml b/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian d7e0ca/Card I'll see you in hell! 19507d.yaml new file mode 100644 index 000000000..a2e026679 --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian d7e0ca/Card I'll see you in hell! 19507d.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 19507d +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '"I''ll see you in hell!"' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 53.22858 + posY: 1.36662626 + posZ: 87.84125 + rotX: 0.020799607 + rotY: 270.028931 + rotZ: 0.0167803243 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian d7e0ca/Card If it bleeds... 6d3fdf.yaml b/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian d7e0ca/Card If it bleeds... 6d3fdf.yaml new file mode 100644 index 000000000..b567dca4f --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian d7e0ca/Card If it bleeds... 6d3fdf.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 6d3fdf +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '"If it bleeds..."' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 53.2285767 + posY: 1.36191356 + posZ: 71.7412338 + rotX: 0.0207997821 + rotY: 270.028931 + rotZ: 0.0167803168 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian d7e0ca/Card Inspiring Presence b789ac.yaml b/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian d7e0ca/Card Inspiring Presence b789ac.yaml new file mode 100644 index 000000000..e0176fbd1 --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian d7e0ca/Card Inspiring Presence b789ac.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: b789ac +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Inspiring Presence +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 58.3838539 + posY: 1.36848366 + posZ: 87.79039 + rotX: 0.0208045859 + rotY: 270.011719 + rotZ: 0.0167738665 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian d7e0ca/Card Interrogate 60acf8.yaml b/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian d7e0ca/Card Interrogate 60acf8.yaml new file mode 100644 index 000000000..08072c750 --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian d7e0ca/Card Interrogate 60acf8.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 60acf8 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Interrogate +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 53.2284851 + posY: 1.35720074 + posZ: 55.6411972 + rotX: 0.0208016932 + rotY: 270.02887 + rotZ: 0.0167832617 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian d7e0ca/Card Intrepid 88cd33.yaml b/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian d7e0ca/Card Intrepid 88cd33.yaml new file mode 100644 index 000000000..bda04bdde --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian d7e0ca/Card Intrepid 88cd33.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 226304 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 88cd33 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Intrepid +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 58.38386 + posY: 1.36781049 + posZ: 85.49039 + rotX: 0.020804327 + rotY: 270.0122 + rotZ: 0.0167741738 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian d7e0ca/Card Leadership 7dc5e1.yaml b/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian d7e0ca/Card Leadership 7dc5e1.yaml new file mode 100644 index 000000000..ecbe05277 --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian d7e0ca/Card Leadership 7dc5e1.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 7dc5e1 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Leadership +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 58.3838539 + posY: 1.369157 + posZ: 90.09039 + rotX: 0.020804299 + rotY: 270.012054 + rotZ: 0.0167741757 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian d7e0ca/Card Let me handle this! 195b7f.yaml b/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian d7e0ca/Card Let me handle this! 195b7f.yaml new file mode 100644 index 000000000..7de5f84d4 --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian d7e0ca/Card Let me handle this! 195b7f.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 195b7f +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '"Let me handle this!"' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 53.22858 + posY: 1.36797273 + posZ: 92.44124 + rotX: 0.0207996536 + rotY: 270.028442 + rotZ: 0.0167799741 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian d7e0ca/Card Machete 273797.yaml b/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian d7e0ca/Card Machete 273797.yaml new file mode 100644 index 000000000..237fb32b4 --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian d7e0ca/Card Machete 273797.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: '273797' +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Machete +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.5133171 + posY: 1.3567344 + posZ: 64.8606949 + rotX: 0.0208175853 + rotY: 269.968445 + rotZ: 0.0167583451 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian d7e0ca/Card On The Hunt bf3261.yaml b/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian d7e0ca/Card On The Hunt bf3261.yaml new file mode 100644 index 000000000..35c5eebb6 --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian d7e0ca/Card On The Hunt bf3261.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: bf3261 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: On The Hunt +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 53.22857 + posY: 1.360567 + posZ: 67.14111 + rotX: 0.020798834 + rotY: 270.031372 + rotZ: 0.0167810656 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian d7e0ca/Card Physical Training 45a012.yaml b/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian d7e0ca/Card Physical Training 45a012.yaml new file mode 100644 index 000000000..0d6ed3b88 --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian d7e0ca/Card Physical Training 45a012.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 45a012 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Physical Training +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.5133324 + posY: 1.36212027 + posZ: 83.26075 + rotX: 0.0208168086 + rotY: 269.9692 + rotZ: 0.0167585574 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian d7e0ca/Card Prepared for the Worst 6aa477.yaml b/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian d7e0ca/Card Prepared for the Worst 6aa477.yaml new file mode 100644 index 000000000..b8465cda6 --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian d7e0ca/Card Prepared for the Worst 6aa477.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 6aa477 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Prepared for the Worst +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 53.2285728 + posY: 1.36326 + posZ: 76.34123 + rotX: 0.020799458 + rotY: 270.028931 + rotZ: 0.016780192 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian d7e0ca/Card Scene of the Crime ca17b8.yaml b/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian d7e0ca/Card Scene of the Crime ca17b8.yaml new file mode 100644 index 000000000..715138793 --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian d7e0ca/Card Scene of the Crime ca17b8.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: ca17b8 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Scene of the Crime +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 53.2286148 + posY: 1.35652757 + posZ: 53.34118 + rotX: 0.0208017658 + rotY: 270.028931 + rotZ: 0.0167832132 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian d7e0ca/Card Second Wind 5fa99a.yaml b/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian d7e0ca/Card Second Wind 5fa99a.yaml new file mode 100644 index 000000000..e5155808e --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian d7e0ca/Card Second Wind 5fa99a.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 5fa99a +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Second Wind +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 53.2285728 + posY: 1.3592205 + posZ: 62.5411949 + rotX: 0.0208014678 + rotY: 270.028931 + rotZ: 0.0167833958 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian d7e0ca/Card Self-Sacrifice 184380.yaml b/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian d7e0ca/Card Self-Sacrifice 184380.yaml new file mode 100644 index 000000000..ba70b535b --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian d7e0ca/Card Self-Sacrifice 184380.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: '184380' +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Self-Sacrifice +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 58.38386 + posY: 1.36713707 + posZ: 83.1903839 + rotX: 0.0208054911 + rotY: 270.0088 + rotZ: 0.0167730469 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian d7e0ca/Card Solemn Vow 660d08.yaml b/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian d7e0ca/Card Solemn Vow 660d08.yaml new file mode 100644 index 000000000..d0409d894 --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian d7e0ca/Card Solemn Vow 660d08.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 446826 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '4468': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025943109/9C5481E6DFEACD450C5522F884E615482281DDB1/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 660d08 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Solemn Vow +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.51333 + posY: 1.36481321 + posZ: 92.46075 + rotX: 0.0208171271 + rotY: 269.96933 + rotZ: 0.0167586915 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian d7e0ca/Card Something Worth Fighting For 826897.yaml b/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian d7e0ca/Card Something Worth Fighting For 826897.yaml new file mode 100644 index 000000000..f60839d68 --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian d7e0ca/Card Something Worth Fighting For 826897.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: '826897' +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Something Worth Fighting For +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.51332 + posY: 1.3560611 + posZ: 62.5607872 + rotX: 0.0208191369 + rotY: 269.969269 + rotZ: 0.0167616643 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian d7e0ca/Card Steadfast c634a0.yaml b/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian d7e0ca/Card Steadfast c634a0.yaml new file mode 100644 index 000000000..d7c12aa4e --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian d7e0ca/Card Steadfast c634a0.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 446906 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '4469': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025943109/9C5481E6DFEACD450C5522F884E615482281DDB1/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: c634a0 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Steadfast +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 58.3838539 + posY: 1.3664639 + posZ: 80.89038 + rotX: 0.0208044425 + rotY: 270.01178 + rotZ: 0.0167740881 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian d7e0ca/Card Survival Knife 840b3d.yaml b/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian d7e0ca/Card Survival Knife 840b3d.yaml new file mode 100644 index 000000000..ed10afab9 --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian d7e0ca/Card Survival Knife 840b3d.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 840b3d +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Survival Knife +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.5133324 + posY: 1.36279356 + posZ: 85.56075 + rotX: 0.0208174 + rotY: 269.969177 + rotZ: 0.0167586785 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian d7e0ca/Card Take the Initiative a88e8d.yaml b/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian d7e0ca/Card Take the Initiative a88e8d.yaml new file mode 100644 index 000000000..d8e21a564 --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian d7e0ca/Card Take the Initiative a88e8d.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: a88e8d +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Take the Initiative +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 58.3838463 + posY: 1.36579072 + posZ: 78.59038 + rotX: 0.0208038185 + rotY: 270.015076 + rotZ: 0.0167751554 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian d7e0ca/Card Taunt 8a25a0.yaml b/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian d7e0ca/Card Taunt 8a25a0.yaml new file mode 100644 index 000000000..837ddb5e5 --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian d7e0ca/Card Taunt 8a25a0.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 8a25a0 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Taunt +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 53.2285843 + posY: 1.36595309 + posZ: 85.5412445 + rotX: 0.02079953 + rotY: 270.029144 + rotZ: 0.0167804714 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian d7e0ca/Card Teamwork 55ce00.yaml b/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian d7e0ca/Card Teamwork 55ce00.yaml new file mode 100644 index 000000000..cacfcf023 --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian d7e0ca/Card Teamwork 55ce00.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 55ce00 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Teamwork +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 53.22858 + posY: 1.36729956 + posZ: 90.14125 + rotX: 0.0207999 + rotY: 270.02887 + rotZ: 0.016780097 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian d7e0ca/Card Tetsuo Mori 82ee35.yaml b/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian d7e0ca/Card Tetsuo Mori 82ee35.yaml new file mode 100644 index 000000000..7f31a8690 --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian d7e0ca/Card Tetsuo Mori 82ee35.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Too Noble for His Own Good +GMNotes: '' +GUID: 82ee35 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Tetsuo Mori +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.51332 + posY: 1.35538781 + posZ: 60.260788 + rotX: 0.02081658 + rotY: 269.978119 + rotZ: 0.0167649463 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian d7e0ca/Card Trench Knife ca8448.yaml b/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian d7e0ca/Card Trench Knife ca8448.yaml new file mode 100644 index 000000000..32e3dc7f8 --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian d7e0ca/Card Trench Knife ca8448.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: ca8448 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Trench Knife +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.5133247 + posY: 1.36414 + posZ: 90.16076 + rotX: 0.02081739 + rotY: 269.9692 + rotZ: 0.0167584829 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian d7e0ca/Card True Grit f2f912.yaml b/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian d7e0ca/Card True Grit f2f912.yaml new file mode 100644 index 000000000..acf025b43 --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian d7e0ca/Card True Grit f2f912.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 226329 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: f2f912 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: True Grit +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.515358 + posY: 1.35471523 + posZ: 57.9605675 + rotX: 0.0208195467 + rotY: 269.969238 + rotZ: 0.0167616475 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian d7e0ca/Card Trusted cc23ea.yaml b/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian d7e0ca/Card Trusted cc23ea.yaml new file mode 100644 index 000000000..5a93a49f8 --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian d7e0ca/Card Trusted cc23ea.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: cc23ea +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Trusted +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 53.22857 + posY: 1.3598938 + posZ: 64.8411 + rotX: 0.0207998771 + rotY: 270.028229 + rotZ: 0.0167798717 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian d7e0ca/Card Venturer 293e8d.yaml b/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian d7e0ca/Card Venturer 293e8d.yaml new file mode 100644 index 000000000..bce9fc67b --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian d7e0ca/Card Venturer 293e8d.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 226332 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 293e8d +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Venturer +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 40.960228 + posY: 1.36351943 + posZ: 92.4487152 + rotX: 0.02081698 + rotY: 269.9693 + rotZ: 0.0167584866 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian d7e0ca/Card Vicious Blow ea9ad0.yaml b/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian d7e0ca/Card Vicious Blow ea9ad0.yaml new file mode 100644 index 000000000..fa74c8e2f --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian d7e0ca/Card Vicious Blow ea9ad0.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: ea9ad0 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Vicious Blow +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 58.3838463 + posY: 1.36511743 + posZ: 76.2903748 + rotX: 0.0208032951 + rotY: 270.01593 + rotZ: 0.01677552 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian d7e0ca/Card Warning Shot 9eeca1.yaml b/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian d7e0ca/Card Warning Shot 9eeca1.yaml new file mode 100644 index 000000000..61b1a0bc7 --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 1d802b/Custom_Model_Bag Guardian d7e0ca/Card Warning Shot 9eeca1.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 292814 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 9eeca1 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Warning Shot +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 53.2047043 + posY: 1.355834 + posZ: 51.0013542 + rotX: 0.0206128266 + rotY: 270.667358 + rotZ: 0.0170119479 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 402f5d.ttslua b/unpacked/Custom_Model_Bag Guardian 402f5d.ttslua new file mode 100644 index 000000000..857093fb8 --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 402f5d.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,0,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 + 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=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,0,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,0,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,0,0}, height=350, width=750, + 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}, rotation={0,0,0}, height=350, width=800, + font_size=250, color={0,0,0}, font_color={1,1,1} + }) +-- self.createButton({ +-- label="Setup", click_function="buttonClick_setup", function_owner=self, +-- position={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.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 \ No newline at end of file diff --git a/unpacked/Custom_Model_Bag Guardian 402f5d.yaml b/unpacked/Custom_Model_Bag Guardian 402f5d.yaml new file mode 100644 index 000000000..0d0d5fbef --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 402f5d.yaml @@ -0,0 +1,103 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +ContainedObjects: +- !include 'Custom_Model_Bag Guardian 402f5d/Card Leadership (2) 97104d.yaml' +- !include 'Custom_Model_Bag Guardian 402f5d/Card Vicious Blow (2) d9f87f.yaml' +- !include 'Custom_Model_Bag Guardian 402f5d/Card Mano a Mano (1) c714e7.yaml' +- !include 'Custom_Model_Bag Guardian 402f5d/Card Ever Vigilant (1) d621cc.yaml' +- !include 'Custom_Model_Bag Guardian 402f5d/Card Well-Maintained (1) 72e666.yaml' +- !include 'Custom_Model_Bag Guardian 402f5d/Card Fool me once... (1) 35aa98.yaml' +- !include 'Custom_Model_Bag Guardian 402f5d/Card Reliable (1) 27902c.yaml' +- !include 'Custom_Model_Bag Guardian 402f5d/Card Extra Ammunition (1) d8d40c.yaml' +- !include 'Custom_Model_Bag Guardian 402f5d/Card Ambush (1) e154df.yaml' +- !include 'Custom_Model_Bag Guardian 402f5d/Card Marksmanship (1) d85671.yaml' +- !include 'Custom_Model_Bag Guardian 402f5d/Card Eat lead! (2) e89298.yaml' +- !include 'Custom_Model_Bag Guardian 402f5d/Card Heroic Rescue (2) abdf7c.yaml' +- !include 'Custom_Model_Bag Guardian 402f5d/Card I''ve had worse... (2) bb5558.yaml' +- !include 'Custom_Model_Bag Guardian 402f5d/Card Taunt (2) 79ab41.yaml' +- !include 'Custom_Model_Bag Guardian 402f5d/Card Dynamite Blast (2) f5bd90.yaml' +- !include 'Custom_Model_Bag Guardian 402f5d/Card Stand Together (3) ae7294.yaml' +- !include 'Custom_Model_Bag Guardian 402f5d/Card Blood Eclipse (3) d77af0.yaml' +- !include 'Custom_Model_Bag Guardian 402f5d/Card Custom Ammunition (3) 5b118e.yaml' +- !include 'Custom_Model_Bag Guardian 402f5d/Card Telescopic Sight (3) da7c52.yaml' +- !include 'Custom_Model_Bag Guardian 402f5d/Card I''ve had worse... (4) 73a5e8.yaml' +- !include 'Custom_Model_Bag Guardian 402f5d/Card Monster Slayer (5) 8d6e58.yaml' +- !include 'Custom_Model_Bag Guardian 402f5d/Card Empty Vessel (4) 16d723.yaml' +- !include 'Custom_Model_Bag Guardian 402f5d/Card .45 Thompson (3) dcdc56.yaml' +- !include 'Custom_Model_Bag Guardian 402f5d/Card Enchanted Blade (3) ceb0da.yaml' +- !include 'Custom_Model_Bag Guardian 402f5d/Card First Aid (3) ec2a0a.yaml' +- !include 'Custom_Model_Bag Guardian 402f5d/Card Keen Eye (3) 77985f.yaml' +- !include 'Custom_Model_Bag Guardian 402f5d/Card Stick to the Plan (3) 3b166d.yaml' +- !include 'Custom_Model_Bag Guardian 402f5d/Card Beat Cop (2) 7c278c.yaml' +- !include 'Custom_Model_Bag Guardian 402f5d/Card .45 Automatic (2) 8ef336.yaml' +- !include 'Custom_Model_Bag Guardian 402f5d/Card Police Badge (2) 934f13.yaml' +- !include 'Custom_Model_Bag Guardian 402f5d/Card Safeguard (2) 2df79f.yaml' +- !include 'Custom_Model_Bag Guardian 402f5d/Card Blackjack (2) 014d37.yaml' +- !include 'Custom_Model_Bag Guardian 402f5d/Card Bandolier (2) 81c616.yaml' +- !include 'Custom_Model_Bag Guardian 402f5d/Card Agency Backup (5) 394267.yaml' +- !include 'Custom_Model_Bag Guardian 402f5d/Card Lightning Gun (5) 1d7bbe.yaml' +- !include 'Custom_Model_Bag Guardian 402f5d/Card Well Prepared (2) b68125.yaml' +- !include 'Custom_Model_Bag Guardian 402f5d/Card .32 Colt (2) 8e8930.yaml' +- !include 'Custom_Model_Bag Guardian 402f5d/Card Flamethrower (5) da33cc.yaml' +- !include 'Custom_Model_Bag Guardian 402f5d/Card Physical Training (2) 9b0cff.yaml' +- !include 'Custom_Model_Bag Guardian 402f5d/Card Armor of Ardennes (5) f9a147.yaml' +- !include 'Custom_Model_Bag Guardian 402f5d/Card Spiritual Resolve (5) 217f03.yaml' +- !include 'Custom_Model_Bag Guardian 402f5d/Card Brother Xavier (1) c43ea2.yaml' +- !include 'Custom_Model_Bag Guardian 402f5d/Card The Hungering Blade (1) 9ed0fb.yaml' +- !include 'Custom_Model_Bag Guardian 402f5d/Card M1918 BAR (4) 079cbb.yaml' +- !include 'Custom_Model_Bag Guardian 402f5d/Card Shotgun (4) 8e25de.yaml' +- !include 'Custom_Model_Bag Guardian 402f5d/Card Kerosene (1) c068ac.yaml' +- !include 'Custom_Model_Bag Guardian 402f5d/Card Ace of Swords (1) d6c37b.yaml' +- !include 'Custom_Model_Bag Guardian 402f5d/Card Springfield M1903 (4) f44a10.yaml' +- !include 'Custom_Model_Bag Guardian 402f5d/Card Combat Training (1) 3866c0.yaml' +- !include 'Custom_Model_Bag Guardian 402f5d/Card Mk 1 Grenades (4) 37f218.yaml' +- !include 'Custom_Model_Bag Guardian 402f5d/Custom_Model_Bag Guardian 722899.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/952965722516201848/72B3B9E2B59F25FEC82412AC22245D03655A4558/ + MaterialIndex: 3 + MeshURL: https://pastebin.com/raw/ALrYhQGb + NormalURL: '' + TypeIndex: 6 +Description: '' +GMNotes: '' +GUID: 402f5d +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: true +LuaScript: !include 'Custom_Model_Bag Guardian 402f5d.ttslua' +LuaScriptState: '{"ml":{"014d37":{"lock":false,"pos":{"x":10.6297,"y":1.3815,"z":-68.0481},"rot":{"x":0.0208,"y":269.9994,"z":0.0168}},"079cbb":{"lock":false,"pos":{"x":7.0766,"y":1.3843,"z":-54.2605},"rot":{"x":0.0208,"y":269.9992,"z":0.0168}},"16d723":{"lock":false,"pos":{"x":10.6137,"y":1.3748,"z":-91.04},"rot":{"x":0.0208,"y":269.9988,"z":0.0168}},"1d7bbe":{"lock":false,"pos":{"x":7.0765,"y":1.3816,"z":-63.4605},"rot":{"x":0.0208,"y":269.9992,"z":0.0168}},"217f03":{"lock":false,"pos":{"x":7.0766,"y":1.3836,"z":-56.5605},"rot":{"x":0.0208,"y":270.0165,"z":0.0168}},"27902c":{"lock":false,"pos":{"x":19.3437,"y":1.3526,"z":-56.5679},"rot":{"x":0.0208,"y":269.9995,"z":0.0168}},"2df79f":{"lock":false,"pos":{"x":10.6297,"y":1.3808,"z":-70.3481},"rot":{"x":0.0208,"y":269.9922,"z":0.0168}},"35aa98":{"lock":false,"pos":{"x":19.3437,"y":1.3533,"z":-54.2679},"rot":{"x":0.0208,"y":270.0013,"z":0.0168}},"37f218":{"lock":false,"pos":{"x":7.0766,"y":1.3863,"z":-47.3605},"rot":{"x":0.0208,"y":269.9992,"z":0.0168}},"3866c0":{"lock":false,"pos":{"x":10.6297,"y":1.3876,"z":-47.3484},"rot":{"x":0.0208,"y":269.9995,"z":0.0168}},"394267":{"lock":false,"pos":{"x":7.0766,"y":1.3809,"z":-65.7601},"rot":{"x":0.0208,"y":269.9993,"z":0.0168}},"3b166d":{"lock":false,"pos":{"x":10.6297,"y":1.3781,"z":-79.548},"rot":{"x":0.0208,"y":269.9992,"z":0.0168}},"5b118e":{"lock":false,"pos":{"x":19.3457,"y":1.3452,"z":-81.8678},"rot":{"x":0.0208,"y":269.9992,"z":0.0168}},"72e666":{"lock":false,"pos":{"x":19.3437,"y":1.354,"z":-51.9679},"rot":{"x":0.0208,"y":269.9995,"z":0.0168}},"73a5e8":{"lock":false,"pos":{"x":19.3437,"y":1.3439,"z":-86.4676},"rot":{"x":0.0208,"y":269.9994,"z":0.0168}},"77985f":{"lock":false,"pos":{"x":10.6317,"y":1.3775,"z":-81.8482},"rot":{"x":0.0208,"y":269.9993,"z":0.0168}},"79ab41":{"lock":false,"pos":{"x":19.3437,"y":1.3479,"z":-72.6677},"rot":{"x":0.0208,"y":269.9994,"z":0.0168}},"7c278c":{"lock":false,"pos":{"x":10.6296,"y":1.3788,"z":-77.248},"rot":{"x":0.0208,"y":269.9993,"z":0.0168}},"81c616":{"lock":false,"pos":{"x":10.6296,"y":1.3822,"z":-65.7481},"rot":{"x":0.0208,"y":269.9996,"z":0.0168}},"8d6e58":{"lock":false,"pos":{"x":19.3279,"y":1.3432,"z":-88.757},"rot":{"x":0.0208,"y":269.9992,"z":0.0168}},"8e25de":{"lock":false,"pos":{"x":7.0766,"y":1.3849,"z":-51.9605},"rot":{"x":0.0208,"y":269.9991,"z":0.0168}},"8e8930":{"lock":false,"pos":{"x":10.6297,"y":1.3835,"z":-61.1484},"rot":{"x":0.0208,"y":269.9994,"z":0.0168}},"8ef336":{"lock":false,"pos":{"x":10.6296,"y":1.3795,"z":-74.9481},"rot":{"x":0.0208,"y":269.9991,"z":0.0168}},"934f13":{"lock":false,"pos":{"x":10.6297,"y":1.3802,"z":-72.6481},"rot":{"x":0.0208,"y":269.9995,"z":0.0168}},"97104d":{"lock":false,"pos":{"x":24.5003,"y":1.3572,"z":-47.4186},"rot":{"x":0.0208,"y":269.9895,"z":0.0168}},"9b0cff":{"lock":false,"pos":{"x":10.6297,"y":1.3842,"z":-58.8484},"rot":{"x":0.0208,"y":269.9993,"z":0.0168}},"9ed0fb":{"lock":false,"pos":{"x":10.6297,"y":1.3855,"z":-54.2484},"rot":{"x":0.0208,"y":269.9993,"z":0.0168}},"abdf7c":{"lock":false,"pos":{"x":19.3437,"y":1.3493,"z":-68.0675},"rot":{"x":0.0208,"y":269.9895,"z":0.0168}},"ae7294":{"lock":false,"pos":{"x":19.3437,"y":1.3466,"z":-77.2676},"rot":{"x":0.0208,"y":269.9992,"z":0.0168}},"b68125":{"lock":false,"pos":{"x":10.6296,"y":1.3829,"z":-63.4484},"rot":{"x":0.0208,"y":269.9992,"z":0.0168}},"bb5558":{"lock":false,"pos":{"x":19.3437,"y":1.3486,"z":-70.3675},"rot":{"x":0.0208,"y":269.9992,"z":0.0168}},"c068ac":{"lock":false,"pos":{"x":10.6297,"y":1.3862,"z":-51.9484},"rot":{"x":0.0208,"y":269.9991,"z":0.0168}},"c43ea2":{"lock":false,"pos":{"x":10.6297,"y":1.3849,"z":-56.5484},"rot":{"x":0.0208,"y":269.9992,"z":0.0168}},"c714e7":{"lock":false,"pos":{"x":19.3437,"y":1.3553,"z":-47.3679},"rot":{"x":0.0208,"y":270.0012,"z":0.0168}},"ceb0da":{"lock":false,"pos":{"x":10.6297,"y":1.3761,"z":-86.448},"rot":{"x":0.0208,"y":270.0249,"z":0.0168}},"d621cc":{"lock":false,"pos":{"x":19.3437,"y":1.3546,"z":-49.6679},"rot":{"x":0.0208,"y":269.9995,"z":0.0168}},"d6c37b":{"lock":false,"pos":{"x":10.6296,"y":1.3869,"z":-49.6484},"rot":{"x":0.0208,"y":269.9993,"z":0.0168}},"d77af0":{"lock":false,"pos":{"x":19.3437,"y":1.3459,"z":-79.5676},"rot":{"x":0.0208,"y":269.9991,"z":0.0168}},"d85671":{"lock":false,"pos":{"x":19.3437,"y":1.3506,"z":-63.4679},"rot":{"x":0.0208,"y":269.9993,"z":0.0168}},"d8d40c":{"lock":false,"pos":{"x":19.3437,"y":1.352,"z":-58.8679},"rot":{"x":0.0208,"y":269.9992,"z":0.0168}},"d9f87f":{"lock":false,"pos":{"x":24.5003,"y":1.3565,"z":-49.7185},"rot":{"x":0.0208,"y":270.0021,"z":0.0168}},"da33cc":{"lock":false,"pos":{"x":7.0765,"y":1.3822,"z":-61.1605},"rot":{"x":0.0208,"y":269.9992,"z":0.0168}},"da7c52":{"lock":false,"pos":{"x":19.3435,"y":1.3445,"z":-84.1675},"rot":{"x":0.0208,"y":269.9994,"z":0.0168}},"dcdc56":{"lock":false,"pos":{"x":10.6139,"y":1.3754,"z":-88.74},"rot":{"x":0.0208,"y":269.982,"z":0.0168}},"e154df":{"lock":false,"pos":{"x":19.3437,"y":1.3513,"z":-61.1679},"rot":{"x":0.0208,"y":269.9993,"z":0.0168}},"e89298":{"lock":false,"pos":{"x":19.3437,"y":1.3499,"z":-65.7675},"rot":{"x":0.0208,"y":269.9992,"z":0.0168}},"ec2a0a":{"lock":false,"pos":{"x":10.6296,"y":1.3768,"z":-84.148},"rot":{"x":0.0208,"y":269.9993,"z":0.0168}},"f44a10":{"lock":false,"pos":{"x":7.0766,"y":1.3856,"z":-49.6605},"rot":{"x":0.0208,"y":269.9992,"z":0.0168}},"f5bd90":{"lock":false,"pos":{"x":19.3437,"y":1.3472,"z":-74.9677},"rot":{"x":0.0208,"y":269.9984,"z":0.0168}},"f9a147":{"lock":false,"pos":{"x":7.0766,"y":1.3829,"z":-58.8605},"rot":{"x":0.0208,"y":269.9993,"z":0.0168}}}}' +MaterialIndex: -1 +MeshIndex: -1 +Name: Custom_Model_Bag +Nickname: Guardian +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 32.7242546 + posY: 1.40360248 + posZ: -63.9803352 + rotX: 0.0208047852 + rotY: 270.020416 + rotZ: 0.0167776346 + scaleX: 1.2 + scaleY: 1.2 + scaleZ: 1.2 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 402f5d/Card .32 Colt (2) 8e8930.yaml b/unpacked/Custom_Model_Bag Guardian 402f5d/Card .32 Colt (2) 8e8930.yaml new file mode 100644 index 000000000..c62c0f855 --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 402f5d/Card .32 Colt (2) 8e8930.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 8e8930 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: .32 Colt (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.6296577 + posY: 1.38352466 + posZ: -61.14845 + rotX: 0.02080961 + rotY: 269.9994 + rotZ: 0.0167712364 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 402f5d/Card .45 Automatic (2) 8ef336.yaml b/unpacked/Custom_Model_Bag Guardian 402f5d/Card .45 Automatic (2) 8ef336.yaml new file mode 100644 index 000000000..13bd86545 --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 402f5d/Card .45 Automatic (2) 8ef336.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 8ef336 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: .45 Automatic (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.6296444 + posY: 1.37948549 + posZ: -74.94812 + rotX: 0.0208080132 + rotY: 269.999084 + rotZ: 0.0167671014 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 402f5d/Card .45 Thompson (3) dcdc56.yaml b/unpacked/Custom_Model_Bag Guardian 402f5d/Card .45 Thompson (3) dcdc56.yaml new file mode 100644 index 000000000..123c6f6c6 --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 402f5d/Card .45 Thompson (3) dcdc56.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Guardian +GMNotes: '' +GUID: dcdc56 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: .45 Thompson (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.6138659 + posY: 1.37544262 + posZ: -88.74 + rotX: 0.020813033 + rotY: 269.982 + rotZ: 0.01676203 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 402f5d/Card Ace of Swords (1) d6c37b.yaml b/unpacked/Custom_Model_Bag Guardian 402f5d/Card Ace of Swords (1) d6c37b.yaml new file mode 100644 index 000000000..de022356a --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 402f5d/Card Ace of Swords (1) d6c37b.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 273709 +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 + UniqueBack: false +Description: Let Your Arrow Fly True +GMNotes: '' +GUID: d6c37b +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Ace of Swords (1) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.6296482 + posY: 1.38689089 + posZ: -49.6484337 + rotX: 0.0208097547 + rotY: 269.999268 + rotZ: 0.0167714916 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 402f5d/Card Agency Backup (5) 394267.yaml b/unpacked/Custom_Model_Bag Guardian 402f5d/Card Agency Backup (5) 394267.yaml new file mode 100644 index 000000000..27cf2aadb --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 402f5d/Card Agency Backup (5) 394267.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: '394267' +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Agency Backup (5) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 7.07655048 + posY: 1.38088453 + posZ: -65.7601 + rotX: 0.0208075941 + rotY: 269.999268 + rotZ: 0.016768096 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 402f5d/Card Ambush (1) e154df.yaml b/unpacked/Custom_Model_Bag Guardian 402f5d/Card Ambush (1) e154df.yaml new file mode 100644 index 000000000..9107db219 --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 402f5d/Card Ambush (1) e154df.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: e154df +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Ambush (1) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.34366 + posY: 1.35127974 + posZ: -61.16791 + rotX: 0.0208085515 + rotY: 269.999268 + rotZ: 0.0167695936 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 402f5d/Card Armor of Ardennes (5) f9a147.yaml b/unpacked/Custom_Model_Bag Guardian 402f5d/Card Armor of Ardennes (5) f9a147.yaml new file mode 100644 index 000000000..a6b666f97 --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 402f5d/Card Armor of Ardennes (5) f9a147.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: f9a147 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Armor of Ardennes (5) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 7.076559 + posY: 1.382904 + posZ: -58.8604851 + rotX: 0.0208102781 + rotY: 269.999268 + rotZ: 0.0167710241 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 402f5d/Card Bandolier (2) 81c616.yaml b/unpacked/Custom_Model_Bag Guardian 402f5d/Card Bandolier (2) 81c616.yaml new file mode 100644 index 000000000..4b643be96 --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 402f5d/Card Bandolier (2) 81c616.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 292304 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2923': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025943109/9C5481E6DFEACD450C5522F884E615482281DDB1/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 81c616 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Bandolier (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.6296463 + posY: 1.38217843 + posZ: -65.74806 + rotX: 0.0208074227 + rotY: 269.999573 + rotZ: 0.01676846 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 402f5d/Card Beat Cop (2) 7c278c.yaml b/unpacked/Custom_Model_Bag Guardian 402f5d/Card Beat Cop (2) 7c278c.yaml new file mode 100644 index 000000000..a22ec16f8 --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 402f5d/Card Beat Cop (2) 7c278c.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 7c278c +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Beat Cop (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.6296463 + posY: 1.37881231 + posZ: -77.24802 + rotX: 0.0208077114 + rotY: 269.999329 + rotZ: 0.0167686846 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 402f5d/Card Blackjack (2) 014d37.yaml b/unpacked/Custom_Model_Bag Guardian 402f5d/Card Blackjack (2) 014d37.yaml new file mode 100644 index 000000000..9a045ccaf --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 402f5d/Card Blackjack (2) 014d37.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 292205 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2922': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025943109/9C5481E6DFEACD450C5522F884E615482281DDB1/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 014d37 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Blackjack (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.6296577 + posY: 1.38150513 + posZ: -68.0480652 + rotX: 0.0208076034 + rotY: 269.99942 + rotZ: 0.0167685673 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 402f5d/Card Blood Eclipse (3) d77af0.yaml b/unpacked/Custom_Model_Bag Guardian 402f5d/Card Blood Eclipse (3) d77af0.yaml new file mode 100644 index 000000000..fcafd085c --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 402f5d/Card Blood Eclipse (3) d77af0.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 292100 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2921': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025943109/9C5481E6DFEACD450C5522F884E615482281DDB1/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: d77af0 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Blood Eclipse (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.3436642 + posY: 1.345894 + posZ: -79.56757 + rotX: 0.0208085626 + rotY: 269.999146 + rotZ: 0.0167695265 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 402f5d/Card Brother Xavier (1) c43ea2.yaml b/unpacked/Custom_Model_Bag Guardian 402f5d/Card Brother Xavier (1) c43ea2.yaml new file mode 100644 index 000000000..8ce5318e6 --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 402f5d/Card Brother Xavier (1) c43ea2.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Pure of Spirit +GMNotes: '' +GUID: c43ea2 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Brother Xavier (1) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.6296616 + posY: 1.38487124 + posZ: -56.5484428 + rotX: 0.0208099969 + rotY: 269.9992 + rotZ: 0.0167698059 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 402f5d/Card Combat Training (1) 3866c0.yaml b/unpacked/Custom_Model_Bag Guardian 402f5d/Card Combat Training (1) 3866c0.yaml new file mode 100644 index 000000000..8588d3924 --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 402f5d/Card Combat Training (1) 3866c0.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 3866c0 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Combat Training (1) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.6296606 + posY: 1.38756418 + posZ: -47.3484459 + rotX: 0.0208096635 + rotY: 269.999451 + rotZ: 0.0167712886 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 402f5d/Card Custom Ammunition (3) 5b118e.yaml b/unpacked/Custom_Model_Bag Guardian 402f5d/Card Custom Ammunition (3) 5b118e.yaml new file mode 100644 index 000000000..56b549aef --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 402f5d/Card Custom Ammunition (3) 5b118e.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 5b118e +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Custom Ammunition (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.3456936 + posY: 1.3452214 + posZ: -81.86779 + rotX: 0.0208086614 + rotY: 269.9992 + rotZ: 0.0167693216 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 402f5d/Card Dynamite Blast (2) f5bd90.yaml b/unpacked/Custom_Model_Bag Guardian 402f5d/Card Dynamite Blast (2) f5bd90.yaml new file mode 100644 index 000000000..717412bdd --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 402f5d/Card Dynamite Blast (2) f5bd90.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: f5bd90 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Dynamite Blast (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.3436565 + posY: 1.34724045 + posZ: -74.9676743 + rotX: 0.0208088048 + rotY: 269.998352 + rotZ: 0.0167689528 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 402f5d/Card Eat lead! (2) e89298.yaml b/unpacked/Custom_Model_Bag Guardian 402f5d/Card Eat lead! (2) e89298.yaml new file mode 100644 index 000000000..cc2562069 --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 402f5d/Card Eat lead! (2) e89298.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: e89298 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '"Eat lead!" (2)' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.3436642 + posY: 1.34993339 + posZ: -65.76754 + rotX: 0.0208086055 + rotY: 269.9992 + rotZ: 0.0167692453 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 402f5d/Card Empty Vessel (4) 16d723.yaml b/unpacked/Custom_Model_Bag Guardian 402f5d/Card Empty Vessel (4) 16d723.yaml new file mode 100644 index 000000000..623f3b261 --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 402f5d/Card Empty Vessel (4) 16d723.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Abandoned by the Gods +GMNotes: '' +GUID: 16d723 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Empty Vessel (4) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.6137209 + posY: 1.37476933 + posZ: -91.04 + rotX: 0.0208075345 + rotY: 269.998779 + rotZ: 0.0167680755 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 402f5d/Card Enchanted Blade (3) ceb0da.yaml b/unpacked/Custom_Model_Bag Guardian 402f5d/Card Enchanted Blade (3) ceb0da.yaml new file mode 100644 index 000000000..9ab70f2dc --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 402f5d/Card Enchanted Blade (3) ceb0da.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Guardian +GMNotes: '' +GUID: ceb0da +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Enchanted Blade (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.62969 + posY: 1.37611926 + posZ: -86.44803 + rotX: 0.020800136 + rotY: 270.0249 + rotZ: 0.0167774912 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 402f5d/Card Ever Vigilant (1) d621cc.yaml b/unpacked/Custom_Model_Bag Guardian 402f5d/Card Ever Vigilant (1) d621cc.yaml new file mode 100644 index 000000000..42aa9b81a --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 402f5d/Card Ever Vigilant (1) d621cc.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: d621cc +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Ever Vigilant (1) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.3436661 + posY: 1.354646 + posZ: -49.6678963 + rotX: 0.02080844 + rotY: 269.999481 + rotZ: 0.0167695042 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 402f5d/Card Extra Ammunition (1) d8d40c.yaml b/unpacked/Custom_Model_Bag Guardian 402f5d/Card Extra Ammunition (1) d8d40c.yaml new file mode 100644 index 000000000..d986015bc --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 402f5d/Card Extra Ammunition (1) d8d40c.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: d8d40c +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Extra Ammunition (1) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.343668 + posY: 1.351953 + posZ: -58.86791 + rotX: 0.0208086558 + rotY: 269.9992 + rotZ: 0.0167692546 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 402f5d/Card First Aid (3) ec2a0a.yaml b/unpacked/Custom_Model_Bag Guardian 402f5d/Card First Aid (3) ec2a0a.yaml new file mode 100644 index 000000000..fc938396f --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 402f5d/Card First Aid (3) ec2a0a.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: ec2a0a +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: First Aid (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.6295624 + posY: 1.37679243 + posZ: -84.14801 + rotX: 0.0208076779 + rotY: 269.999268 + rotZ: 0.0167678054 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 402f5d/Card Flamethrower (5) da33cc.yaml b/unpacked/Custom_Model_Bag Guardian 402f5d/Card Flamethrower (5) da33cc.yaml new file mode 100644 index 000000000..ca9f8b3b0 --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 402f5d/Card Flamethrower (5) da33cc.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 292102 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2921': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025943109/9C5481E6DFEACD450C5522F884E615482281DDB1/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: da33cc +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Flamethrower (5) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 7.076545 + posY: 1.38223076 + posZ: -61.16049 + rotX: 0.0208099559 + rotY: 269.9992 + rotZ: 0.0167703871 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 402f5d/Card Fool me once... (1) 35aa98.yaml b/unpacked/Custom_Model_Bag Guardian 402f5d/Card Fool me once... (1) 35aa98.yaml new file mode 100644 index 000000000..2baa6b4aa --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 402f5d/Card Fool me once... (1) 35aa98.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 35aa98 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '"Fool me once..." (1)' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.343668 + posY: 1.3532995 + posZ: -54.2679024 + rotX: 0.0208080336 + rotY: 270.001282 + rotZ: 0.01677007 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 402f5d/Card Heroic Rescue (2) abdf7c.yaml b/unpacked/Custom_Model_Bag Guardian 402f5d/Card Heroic Rescue (2) abdf7c.yaml new file mode 100644 index 000000000..bc19a2121 --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 402f5d/Card Heroic Rescue (2) abdf7c.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Spirit. Tactic. +GMNotes: '' +GUID: abdf7c +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Heroic Rescue (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.3436623 + posY: 1.34926009 + posZ: -68.06754 + rotX: 0.0208113268 + rotY: 269.989532 + rotZ: 0.01676578 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 402f5d/Card I've had worse... (2) bb5558.yaml b/unpacked/Custom_Model_Bag Guardian 402f5d/Card I've had worse... (2) bb5558.yaml new file mode 100644 index 000000000..be81813ce --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 402f5d/Card I've had worse... (2) bb5558.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: bb5558 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '"I''ve had worse..." (2)' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.3436565 + posY: 1.34858692 + posZ: -70.3675461 + rotX: 0.0208085235 + rotY: 269.9992 + rotZ: 0.0167692043 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 402f5d/Card I've had worse... (4) 73a5e8.yaml b/unpacked/Custom_Model_Bag Guardian 402f5d/Card I've had worse... (4) 73a5e8.yaml new file mode 100644 index 000000000..fd1157819 --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 402f5d/Card I've had worse... (4) 73a5e8.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 73a5e8 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '"I''ve had worse..." (4)' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.3436966 + posY: 1.34387422 + posZ: -86.46758 + rotX: 0.0208085161 + rotY: 269.9994 + rotZ: 0.01676887 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 402f5d/Card Keen Eye (3) 77985f.yaml b/unpacked/Custom_Model_Bag Guardian 402f5d/Card Keen Eye (3) 77985f.yaml new file mode 100644 index 000000000..75245aa17 --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 402f5d/Card Keen Eye (3) 77985f.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 77985f +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Keen Eye (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.6316948 + posY: 1.37746644 + posZ: -81.8482361 + rotX: 0.0208077133 + rotY: 269.999268 + rotZ: 0.01676831 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 402f5d/Card Kerosene (1) c068ac.yaml b/unpacked/Custom_Model_Bag Guardian 402f5d/Card Kerosene (1) c068ac.yaml new file mode 100644 index 000000000..fba0d51fc --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 402f5d/Card Kerosene (1) c068ac.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 292103 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2921': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025943109/9C5481E6DFEACD450C5522F884E615482281DDB1/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: c068ac +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Kerosene (1) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.6296539 + posY: 1.38621771 + posZ: -51.9484329 + rotX: 0.020809859 + rotY: 269.999084 + rotZ: 0.0167701561 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 402f5d/Card Leadership (2) 97104d.yaml b/unpacked/Custom_Model_Bag Guardian 402f5d/Card Leadership (2) 97104d.yaml new file mode 100644 index 000000000..3436d1a18 --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 402f5d/Card Leadership (2) 97104d.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Practiced. +GMNotes: '' +GUID: 97104d +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Leadership (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 24.5003471 + posY: 1.35717714 + posZ: -47.41856 + rotX: 0.02081154 + rotY: 269.9895 + rotZ: 0.01676583 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 402f5d/Card Lightning Gun (5) 1d7bbe.yaml b/unpacked/Custom_Model_Bag Guardian 402f5d/Card Lightning Gun (5) 1d7bbe.yaml new file mode 100644 index 000000000..56bd01167 --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 402f5d/Card Lightning Gun (5) 1d7bbe.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 1d7bbe +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Lightning Gun (5) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 7.076548 + posY: 1.38155758 + posZ: -63.4604759 + rotX: 0.0208098236 + rotY: 269.9992 + rotZ: 0.01677116 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 402f5d/Card M1918 BAR (4) 079cbb.yaml b/unpacked/Custom_Model_Bag Guardian 402f5d/Card M1918 BAR (4) 079cbb.yaml new file mode 100644 index 000000000..affa20032 --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 402f5d/Card M1918 BAR (4) 079cbb.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 079cbb +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: M1918 BAR (4) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 7.07656431 + posY: 1.38425064 + posZ: -54.26048 + rotX: 0.020810023 + rotY: 269.999176 + rotZ: 0.0167702623 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 402f5d/Card Mano a Mano (1) c714e7.yaml b/unpacked/Custom_Model_Bag Guardian 402f5d/Card Mano a Mano (1) c714e7.yaml new file mode 100644 index 000000000..317901310 --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 402f5d/Card Mano a Mano (1) c714e7.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: c714e7 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Mano a Mano (1) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.3436642 + posY: 1.35531926 + posZ: -47.36791 + rotX: 0.0208079387 + rotY: 270.001221 + rotZ: 0.0167698115 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 402f5d/Card Marksmanship (1) d85671.yaml b/unpacked/Custom_Model_Bag Guardian 402f5d/Card Marksmanship (1) d85671.yaml new file mode 100644 index 000000000..4625c4672 --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 402f5d/Card Marksmanship (1) d85671.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: d85671 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Marksmanship (1) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.3436565 + posY: 1.3506068 + posZ: -63.4678955 + rotX: 0.0208084844 + rotY: 269.999268 + rotZ: 0.0167693663 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 402f5d/Card Mk 1 Grenades (4) 37f218.yaml b/unpacked/Custom_Model_Bag Guardian 402f5d/Card Mk 1 Grenades (4) 37f218.yaml new file mode 100644 index 000000000..58fabb029 --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 402f5d/Card Mk 1 Grenades (4) 37f218.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 449017 +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/1016065725025943109/9C5481E6DFEACD450C5522F884E615482281DDB1/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: Item. Weapon. Ranged. +GMNotes: '' +GUID: 37f218 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Mk 1 Grenades (4) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 7.076562 + posY: 1.38627028 + posZ: -47.3604774 + rotX: 0.0208095759 + rotY: 269.9992 + rotZ: 0.0167709384 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 402f5d/Card Monster Slayer (5) 8d6e58.yaml b/unpacked/Custom_Model_Bag Guardian 402f5d/Card Monster Slayer (5) 8d6e58.yaml new file mode 100644 index 000000000..5d7827675 --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 402f5d/Card Monster Slayer (5) 8d6e58.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 8d6e58 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Monster Slayer (5) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.3279018 + posY: 1.34319842 + posZ: -88.75703 + rotX: 0.0208085272 + rotY: 269.999176 + rotZ: 0.0167691577 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 402f5d/Card Physical Training (2) 9b0cff.yaml b/unpacked/Custom_Model_Bag Guardian 402f5d/Card Physical Training (2) 9b0cff.yaml new file mode 100644 index 000000000..11afa162b --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 402f5d/Card Physical Training (2) 9b0cff.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 9b0cff +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Physical Training (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.6296616 + posY: 1.384198 + posZ: -58.8484459 + rotX: 0.02081009 + rotY: 269.999268 + rotZ: 0.0167704169 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 402f5d/Card Police Badge (2) 934f13.yaml b/unpacked/Custom_Model_Bag Guardian 402f5d/Card Police Badge (2) 934f13.yaml new file mode 100644 index 000000000..8a114c024 --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 402f5d/Card Police Badge (2) 934f13.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 934f13 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Police Badge (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.62965 + posY: 1.38015878 + posZ: -72.6481 + rotX: 0.0208072644 + rotY: 269.9995 + rotZ: 0.0167683046 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 402f5d/Card Reliable (1) 27902c.yaml b/unpacked/Custom_Model_Bag Guardian 402f5d/Card Reliable (1) 27902c.yaml new file mode 100644 index 000000000..cc971c886 --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 402f5d/Card Reliable (1) 27902c.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 27902c +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Reliable (1) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.343668 + posY: 1.35262632 + posZ: -56.5679054 + rotX: 0.020808449 + rotY: 269.999451 + rotZ: 0.01676946 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 402f5d/Card Safeguard (2) 2df79f.yaml b/unpacked/Custom_Model_Bag Guardian 402f5d/Card Safeguard (2) 2df79f.yaml new file mode 100644 index 000000000..57b22b940 --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 402f5d/Card Safeguard (2) 2df79f.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Talent. +GMNotes: '' +GUID: 2df79f +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Safeguard (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.62965 + posY: 1.380832 + posZ: -70.34807 + rotX: 0.0208096169 + rotY: 269.9922 + rotZ: 0.016765628 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 402f5d/Card Shotgun (4) 8e25de.yaml b/unpacked/Custom_Model_Bag Guardian 402f5d/Card Shotgun (4) 8e25de.yaml new file mode 100644 index 000000000..744db96ad --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 402f5d/Card Shotgun (4) 8e25de.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 8e25de +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Shotgun (4) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 7.07655525 + posY: 1.38492382 + posZ: -51.96047 + rotX: 0.0208098963 + rotY: 269.999084 + rotZ: 0.0167710613 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 402f5d/Card Spiritual Resolve (5) 217f03.yaml b/unpacked/Custom_Model_Bag Guardian 402f5d/Card Spiritual Resolve (5) 217f03.yaml new file mode 100644 index 000000000..17af43d1d --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 402f5d/Card Spiritual Resolve (5) 217f03.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Ritual. +GMNotes: '' +GUID: 217f03 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Spiritual Resolve (5) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 7.07656431 + posY: 1.38357723 + posZ: -56.560482 + rotX: 0.0208050255 + rotY: 270.016541 + rotZ: 0.01677667 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 402f5d/Card Springfield M1903 (4) f44a10.yaml b/unpacked/Custom_Model_Bag Guardian 402f5d/Card Springfield M1903 (4) f44a10.yaml new file mode 100644 index 000000000..aa62cddfd --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 402f5d/Card Springfield M1903 (4) f44a10.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: f44a10 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Springfield M1903 (4) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 7.07655859 + posY: 1.38559711 + posZ: -49.6604652 + rotX: 0.0208099354 + rotY: 269.999176 + rotZ: 0.0167703647 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 402f5d/Card Stand Together (3) ae7294.yaml b/unpacked/Custom_Model_Bag Guardian 402f5d/Card Stand Together (3) ae7294.yaml new file mode 100644 index 000000000..8fb68d813 --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 402f5d/Card Stand Together (3) ae7294.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: ae7294 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Stand Together (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.3436546 + posY: 1.34656715 + posZ: -77.26757 + rotX: 0.0208084844 + rotY: 269.9992 + rotZ: 0.0167691819 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 402f5d/Card Stick to the Plan (3) 3b166d.yaml b/unpacked/Custom_Model_Bag Guardian 402f5d/Card Stick to the Plan (3) 3b166d.yaml new file mode 100644 index 000000000..c9a1d7ba8 --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 402f5d/Card Stick to the Plan (3) 3b166d.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 3b166d +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Stick to the Plan (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.62965 + posY: 1.3781389 + posZ: -79.54802 + rotX: 0.020807568 + rotY: 269.9992 + rotZ: 0.01676812 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 402f5d/Card Taunt (2) 79ab41.yaml b/unpacked/Custom_Model_Bag Guardian 402f5d/Card Taunt (2) 79ab41.yaml new file mode 100644 index 000000000..9c67a487d --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 402f5d/Card Taunt (2) 79ab41.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 79ab41 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Taunt (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.3436527 + posY: 1.34791362 + posZ: -72.6676559 + rotX: 0.0208085086 + rotY: 269.9994 + rotZ: 0.016768897 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 402f5d/Card Telescopic Sight (3) da7c52.yaml b/unpacked/Custom_Model_Bag Guardian 402f5d/Card Telescopic Sight (3) da7c52.yaml new file mode 100644 index 000000000..0fb9d8bce --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 402f5d/Card Telescopic Sight (3) da7c52.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: da7c52 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Telescopic Sight (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.34352 + posY: 1.34454739 + posZ: -84.16753 + rotX: 0.0208075251 + rotY: 269.9994 + rotZ: 0.0167682 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 402f5d/Card The Hungering Blade (1) 9ed0fb.yaml b/unpacked/Custom_Model_Bag Guardian 402f5d/Card The Hungering Blade (1) 9ed0fb.yaml new file mode 100644 index 000000000..3165e8426 --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 402f5d/Card The Hungering Blade (1) 9ed0fb.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: "Calamitous Blade of Celepha\xEFs" +GMNotes: '' +GUID: 9ed0fb +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: The Hungering Blade (1) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.6296654 + posY: 1.38554442 + posZ: -54.24844 + rotX: 0.0208100323 + rotY: 269.999268 + rotZ: 0.01677025 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 402f5d/Card Vicious Blow (2) d9f87f.yaml b/unpacked/Custom_Model_Bag Guardian 402f5d/Card Vicious Blow (2) d9f87f.yaml new file mode 100644 index 000000000..60d1330d2 --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 402f5d/Card Vicious Blow (2) d9f87f.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: d9f87f +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Vicious Blow (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 24.5003471 + posY: 1.356504 + posZ: -49.7185478 + rotX: 0.02080777 + rotY: 270.002075 + rotZ: 0.0167702548 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 402f5d/Card Well Prepared (2) b68125.yaml b/unpacked/Custom_Model_Bag Guardian 402f5d/Card Well Prepared (2) b68125.yaml new file mode 100644 index 000000000..bf5aa3d12 --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 402f5d/Card Well Prepared (2) b68125.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: b68125 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Well Prepared (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.6296473 + posY: 1.38285148 + posZ: -63.4484367 + rotX: 0.0208086353 + rotY: 269.9992 + rotZ: 0.0167690963 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 402f5d/Card Well-Maintained (1) 72e666.yaml b/unpacked/Custom_Model_Bag Guardian 402f5d/Card Well-Maintained (1) 72e666.yaml new file mode 100644 index 000000000..259fc1929 --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 402f5d/Card Well-Maintained (1) 72e666.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 72e666 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Well-Maintained (1) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.3436623 + posY: 1.35397279 + posZ: -51.9679 + rotX: 0.0208085272 + rotY: 269.999451 + rotZ: 0.0167689975 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 402f5d/Custom_Model_Bag Guardian 722899.ttslua b/unpacked/Custom_Model_Bag Guardian 402f5d/Custom_Model_Bag Guardian 722899.ttslua new file mode 100644 index 000000000..f882a7f09 --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 402f5d/Custom_Model_Bag Guardian 722899.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,0,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 + 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=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,0,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,0,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,0,0}, height=350, width=750, + 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}, rotation={0,0,0}, height=350, width=800, + font_size=250, color={0,0,0}, font_color={1,1,1} + }) +-- self.createButton({ +-- label="Setup", click_function="buttonClick_setup", function_owner=self, +-- position={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.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 Guardian 402f5d/Custom_Model_Bag Guardian 722899.yaml b/unpacked/Custom_Model_Bag Guardian 402f5d/Custom_Model_Bag Guardian 722899.yaml new file mode 100644 index 000000000..2a2fb4e73 --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 402f5d/Custom_Model_Bag Guardian 722899.yaml @@ -0,0 +1,102 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +ContainedObjects: +- !include 'Custom_Model_Bag Guardian 722899/Card Leadership (2) 97104d.yaml' +- !include 'Custom_Model_Bag Guardian 722899/Card Vicious Blow (2) d9f87f.yaml' +- !include 'Custom_Model_Bag Guardian 722899/Card Mano a Mano (1) c714e7.yaml' +- !include 'Custom_Model_Bag Guardian 722899/Card Ever Vigilant (1) d621cc.yaml' +- !include 'Custom_Model_Bag Guardian 722899/Card Well-Maintained (1) 72e666.yaml' +- !include 'Custom_Model_Bag Guardian 722899/Card Fool me once... (1) 35aa98.yaml' +- !include 'Custom_Model_Bag Guardian 722899/Card Reliable (1) 27902c.yaml' +- !include 'Custom_Model_Bag Guardian 722899/Card Extra Ammunition (1) d8d40c.yaml' +- !include 'Custom_Model_Bag Guardian 722899/Card Ambush (1) e154df.yaml' +- !include 'Custom_Model_Bag Guardian 722899/Card Marksmanship (1) d85671.yaml' +- !include 'Custom_Model_Bag Guardian 722899/Card Eat lead! (2) e89298.yaml' +- !include 'Custom_Model_Bag Guardian 722899/Card Heroic Rescue (2) abdf7c.yaml' +- !include 'Custom_Model_Bag Guardian 722899/Card I''ve had worse... (2) bb5558.yaml' +- !include 'Custom_Model_Bag Guardian 722899/Card Taunt (2) 79ab41.yaml' +- !include 'Custom_Model_Bag Guardian 722899/Card Dynamite Blast (2) f5bd90.yaml' +- !include 'Custom_Model_Bag Guardian 722899/Card Stand Together (3) ae7294.yaml' +- !include 'Custom_Model_Bag Guardian 722899/Card Blood Eclipse (3) d77af0.yaml' +- !include 'Custom_Model_Bag Guardian 722899/Card Custom Ammunition (3) 5b118e.yaml' +- !include 'Custom_Model_Bag Guardian 722899/Card Telescopic Sight (3) da7c52.yaml' +- !include 'Custom_Model_Bag Guardian 722899/Card I''ve had worse... (4) 73a5e8.yaml' +- !include 'Custom_Model_Bag Guardian 722899/Card Monster Slayer (5) 8d6e58.yaml' +- !include 'Custom_Model_Bag Guardian 722899/Card Empty Vessel (4) 16d723.yaml' +- !include 'Custom_Model_Bag Guardian 722899/Card .45 Thompson (3) dcdc56.yaml' +- !include 'Custom_Model_Bag Guardian 722899/Card Enchanted Blade (3) ceb0da.yaml' +- !include 'Custom_Model_Bag Guardian 722899/Card First Aid (3) ec2a0a.yaml' +- !include 'Custom_Model_Bag Guardian 722899/Card Keen Eye (3) 77985f.yaml' +- !include 'Custom_Model_Bag Guardian 722899/Card Stick to the Plan (3) 3b166d.yaml' +- !include 'Custom_Model_Bag Guardian 722899/Card Beat Cop (2) 7c278c.yaml' +- !include 'Custom_Model_Bag Guardian 722899/Card .45 Automatic (2) 8ef336.yaml' +- !include 'Custom_Model_Bag Guardian 722899/Card Police Badge (2) 934f13.yaml' +- !include 'Custom_Model_Bag Guardian 722899/Card Safeguard (2) 2df79f.yaml' +- !include 'Custom_Model_Bag Guardian 722899/Card Blackjack (2) 014d37.yaml' +- !include 'Custom_Model_Bag Guardian 722899/Card Bandolier (2) 81c616.yaml' +- !include 'Custom_Model_Bag Guardian 722899/Card Agency Backup (5) 394267.yaml' +- !include 'Custom_Model_Bag Guardian 722899/Card Lightning Gun (5) 1d7bbe.yaml' +- !include 'Custom_Model_Bag Guardian 722899/Card Well Prepared (2) b68125.yaml' +- !include 'Custom_Model_Bag Guardian 722899/Card .32 Colt (2) 8e8930.yaml' +- !include 'Custom_Model_Bag Guardian 722899/Card Flamethrower (5) da33cc.yaml' +- !include 'Custom_Model_Bag Guardian 722899/Card Physical Training (2) 9b0cff.yaml' +- !include 'Custom_Model_Bag Guardian 722899/Card Armor of Ardennes (5) f9a147.yaml' +- !include 'Custom_Model_Bag Guardian 722899/Card Spiritual Resolve (5) 217f03.yaml' +- !include 'Custom_Model_Bag Guardian 722899/Card Brother Xavier (1) c43ea2.yaml' +- !include 'Custom_Model_Bag Guardian 722899/Card The Hungering Blade (1) 9ed0fb.yaml' +- !include 'Custom_Model_Bag Guardian 722899/Card M1918 BAR (4) 079cbb.yaml' +- !include 'Custom_Model_Bag Guardian 722899/Card Shotgun (4) 8e25de.yaml' +- !include 'Custom_Model_Bag Guardian 722899/Card Kerosene (1) c068ac.yaml' +- !include 'Custom_Model_Bag Guardian 722899/Card Ace of Swords (1) d6c37b.yaml' +- !include 'Custom_Model_Bag Guardian 722899/Card Springfield M1903 (4) f44a10.yaml' +- !include 'Custom_Model_Bag Guardian 722899/Card Combat Training (1) 3866c0.yaml' +- !include 'Custom_Model_Bag Guardian 722899/Card Mk 1 Grenades (4) 37f218.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/952965722516201848/72B3B9E2B59F25FEC82412AC22245D03655A4558/ + MaterialIndex: 3 + MeshURL: https://pastebin.com/raw/ALrYhQGb + NormalURL: '' + TypeIndex: 6 +Description: '' +GMNotes: '' +GUID: '722899' +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Model_Bag Guardian 722899.ttslua' +LuaScriptState: '{"ml":{"014d37":{"lock":false,"pos":{"x":10.6297,"y":1.3815,"z":-68.0481},"rot":{"x":0.0208,"y":269.9994,"z":0.0168}},"079cbb":{"lock":false,"pos":{"x":7.0766,"y":1.3843,"z":-54.2605},"rot":{"x":0.0208,"y":269.9992,"z":0.0168}},"16d723":{"lock":false,"pos":{"x":10.6137,"y":1.3748,"z":-91.04},"rot":{"x":0.0208,"y":269.9988,"z":0.0168}},"1d7bbe":{"lock":false,"pos":{"x":7.0765,"y":1.3816,"z":-63.4605},"rot":{"x":0.0208,"y":269.9992,"z":0.0168}},"217f03":{"lock":false,"pos":{"x":7.0766,"y":1.3836,"z":-56.5605},"rot":{"x":0.0208,"y":270.0165,"z":0.0168}},"27902c":{"lock":false,"pos":{"x":19.3437,"y":1.3526,"z":-56.5679},"rot":{"x":0.0208,"y":269.9995,"z":0.0168}},"2df79f":{"lock":false,"pos":{"x":10.6297,"y":1.3808,"z":-70.3481},"rot":{"x":0.0208,"y":269.9922,"z":0.0168}},"35aa98":{"lock":false,"pos":{"x":19.3437,"y":1.3533,"z":-54.2679},"rot":{"x":0.0208,"y":270.0013,"z":0.0168}},"37f218":{"lock":false,"pos":{"x":7.0766,"y":1.3863,"z":-47.3605},"rot":{"x":0.0208,"y":269.9992,"z":0.0168}},"3866c0":{"lock":false,"pos":{"x":10.6297,"y":1.3876,"z":-47.3484},"rot":{"x":0.0208,"y":269.9995,"z":0.0168}},"394267":{"lock":false,"pos":{"x":7.0766,"y":1.3809,"z":-65.7601},"rot":{"x":0.0208,"y":269.9993,"z":0.0168}},"3b166d":{"lock":false,"pos":{"x":10.6297,"y":1.3781,"z":-79.548},"rot":{"x":0.0208,"y":269.9992,"z":0.0168}},"5b118e":{"lock":false,"pos":{"x":19.3457,"y":1.3452,"z":-81.8678},"rot":{"x":0.0208,"y":269.9992,"z":0.0168}},"72e666":{"lock":false,"pos":{"x":19.3437,"y":1.354,"z":-51.9679},"rot":{"x":0.0208,"y":269.9995,"z":0.0168}},"73a5e8":{"lock":false,"pos":{"x":19.3437,"y":1.3439,"z":-86.4676},"rot":{"x":0.0208,"y":269.9994,"z":0.0168}},"77985f":{"lock":false,"pos":{"x":10.6317,"y":1.3775,"z":-81.8482},"rot":{"x":0.0208,"y":269.9993,"z":0.0168}},"79ab41":{"lock":false,"pos":{"x":19.3437,"y":1.3479,"z":-72.6677},"rot":{"x":0.0208,"y":269.9994,"z":0.0168}},"7c278c":{"lock":false,"pos":{"x":10.6296,"y":1.3788,"z":-77.248},"rot":{"x":0.0208,"y":269.9993,"z":0.0168}},"81c616":{"lock":false,"pos":{"x":10.6296,"y":1.3822,"z":-65.7481},"rot":{"x":0.0208,"y":269.9996,"z":0.0168}},"8d6e58":{"lock":false,"pos":{"x":19.3279,"y":1.3432,"z":-88.757},"rot":{"x":0.0208,"y":269.9992,"z":0.0168}},"8e25de":{"lock":false,"pos":{"x":7.0766,"y":1.3849,"z":-51.9605},"rot":{"x":0.0208,"y":269.9991,"z":0.0168}},"8e8930":{"lock":false,"pos":{"x":10.6297,"y":1.3835,"z":-61.1484},"rot":{"x":0.0208,"y":269.9994,"z":0.0168}},"8ef336":{"lock":false,"pos":{"x":10.6296,"y":1.3795,"z":-74.9481},"rot":{"x":0.0208,"y":269.9991,"z":0.0168}},"934f13":{"lock":false,"pos":{"x":10.6297,"y":1.3802,"z":-72.6481},"rot":{"x":0.0208,"y":269.9995,"z":0.0168}},"97104d":{"lock":false,"pos":{"x":24.5003,"y":1.3572,"z":-47.4186},"rot":{"x":0.0208,"y":269.9895,"z":0.0168}},"9b0cff":{"lock":false,"pos":{"x":10.6297,"y":1.3842,"z":-58.8484},"rot":{"x":0.0208,"y":269.9993,"z":0.0168}},"9ed0fb":{"lock":false,"pos":{"x":10.6297,"y":1.3855,"z":-54.2484},"rot":{"x":0.0208,"y":269.9993,"z":0.0168}},"abdf7c":{"lock":false,"pos":{"x":19.3437,"y":1.3493,"z":-68.0675},"rot":{"x":0.0208,"y":269.9895,"z":0.0168}},"ae7294":{"lock":false,"pos":{"x":19.3437,"y":1.3466,"z":-77.2676},"rot":{"x":0.0208,"y":269.9992,"z":0.0168}},"b68125":{"lock":false,"pos":{"x":10.6296,"y":1.3829,"z":-63.4484},"rot":{"x":0.0208,"y":269.9992,"z":0.0168}},"bb5558":{"lock":false,"pos":{"x":19.3437,"y":1.3486,"z":-70.3675},"rot":{"x":0.0208,"y":269.9992,"z":0.0168}},"c068ac":{"lock":false,"pos":{"x":10.6297,"y":1.3862,"z":-51.9484},"rot":{"x":0.0208,"y":269.9991,"z":0.0168}},"c43ea2":{"lock":false,"pos":{"x":10.6297,"y":1.3849,"z":-56.5484},"rot":{"x":0.0208,"y":269.9992,"z":0.0168}},"c714e7":{"lock":false,"pos":{"x":19.3437,"y":1.3553,"z":-47.3679},"rot":{"x":0.0208,"y":270.0012,"z":0.0168}},"ceb0da":{"lock":false,"pos":{"x":10.6297,"y":1.3761,"z":-86.448},"rot":{"x":0.0208,"y":270.0249,"z":0.0168}},"d621cc":{"lock":false,"pos":{"x":19.3437,"y":1.3546,"z":-49.6679},"rot":{"x":0.0208,"y":269.9995,"z":0.0168}},"d6c37b":{"lock":false,"pos":{"x":10.6296,"y":1.3869,"z":-49.6484},"rot":{"x":0.0208,"y":269.9993,"z":0.0168}},"d77af0":{"lock":false,"pos":{"x":19.3437,"y":1.3459,"z":-79.5676},"rot":{"x":0.0208,"y":269.9991,"z":0.0168}},"d85671":{"lock":false,"pos":{"x":19.3437,"y":1.3506,"z":-63.4679},"rot":{"x":0.0208,"y":269.9993,"z":0.0168}},"d8d40c":{"lock":false,"pos":{"x":19.3437,"y":1.352,"z":-58.8679},"rot":{"x":0.0208,"y":269.9992,"z":0.0168}},"d9f87f":{"lock":false,"pos":{"x":24.5003,"y":1.3565,"z":-49.7185},"rot":{"x":0.0208,"y":270.0021,"z":0.0168}},"da33cc":{"lock":false,"pos":{"x":7.0765,"y":1.3822,"z":-61.1605},"rot":{"x":0.0208,"y":269.9992,"z":0.0168}},"da7c52":{"lock":false,"pos":{"x":19.3435,"y":1.3445,"z":-84.1675},"rot":{"x":0.0208,"y":269.9994,"z":0.0168}},"dcdc56":{"lock":false,"pos":{"x":10.6139,"y":1.3754,"z":-88.74},"rot":{"x":0.0208,"y":269.982,"z":0.0168}},"e154df":{"lock":false,"pos":{"x":19.3437,"y":1.3513,"z":-61.1679},"rot":{"x":0.0208,"y":269.9993,"z":0.0168}},"e89298":{"lock":false,"pos":{"x":19.3437,"y":1.3499,"z":-65.7675},"rot":{"x":0.0208,"y":269.9992,"z":0.0168}},"ec2a0a":{"lock":false,"pos":{"x":10.6296,"y":1.3768,"z":-84.148},"rot":{"x":0.0208,"y":269.9993,"z":0.0168}},"f44a10":{"lock":false,"pos":{"x":7.0766,"y":1.3856,"z":-49.6605},"rot":{"x":0.0208,"y":269.9992,"z":0.0168}},"f5bd90":{"lock":false,"pos":{"x":19.3437,"y":1.3472,"z":-74.9677},"rot":{"x":0.0208,"y":269.9984,"z":0.0168}},"f9a147":{"lock":false,"pos":{"x":7.0766,"y":1.3829,"z":-58.8605},"rot":{"x":0.0208,"y":269.9993,"z":0.0168}}}}' +MaterialIndex: -1 +MeshIndex: -1 +Name: Custom_Model_Bag +Nickname: Guardian +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 32.72266 + posY: 1.65888751 + posZ: -63.9800148 + rotX: 0.0129432464 + rotY: 270.020447 + rotZ: 0.0139856869 + scaleX: 1.2 + scaleY: 1.2 + scaleZ: 1.2 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 402f5d/Custom_Model_Bag Guardian 722899/Card .32 Colt (2) 8e8930.yaml b/unpacked/Custom_Model_Bag Guardian 402f5d/Custom_Model_Bag Guardian 722899/Card .32 Colt (2) 8e8930.yaml new file mode 100644 index 000000000..c62c0f855 --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 402f5d/Custom_Model_Bag Guardian 722899/Card .32 Colt (2) 8e8930.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 8e8930 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: .32 Colt (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.6296577 + posY: 1.38352466 + posZ: -61.14845 + rotX: 0.02080961 + rotY: 269.9994 + rotZ: 0.0167712364 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 402f5d/Custom_Model_Bag Guardian 722899/Card .45 Automatic (2) 8ef336.yaml b/unpacked/Custom_Model_Bag Guardian 402f5d/Custom_Model_Bag Guardian 722899/Card .45 Automatic (2) 8ef336.yaml new file mode 100644 index 000000000..13bd86545 --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 402f5d/Custom_Model_Bag Guardian 722899/Card .45 Automatic (2) 8ef336.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 8ef336 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: .45 Automatic (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.6296444 + posY: 1.37948549 + posZ: -74.94812 + rotX: 0.0208080132 + rotY: 269.999084 + rotZ: 0.0167671014 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 402f5d/Custom_Model_Bag Guardian 722899/Card .45 Thompson (3) dcdc56.yaml b/unpacked/Custom_Model_Bag Guardian 402f5d/Custom_Model_Bag Guardian 722899/Card .45 Thompson (3) dcdc56.yaml new file mode 100644 index 000000000..123c6f6c6 --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 402f5d/Custom_Model_Bag Guardian 722899/Card .45 Thompson (3) dcdc56.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Guardian +GMNotes: '' +GUID: dcdc56 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: .45 Thompson (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.6138659 + posY: 1.37544262 + posZ: -88.74 + rotX: 0.020813033 + rotY: 269.982 + rotZ: 0.01676203 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 402f5d/Custom_Model_Bag Guardian 722899/Card Ace of Swords (1) d6c37b.yaml b/unpacked/Custom_Model_Bag Guardian 402f5d/Custom_Model_Bag Guardian 722899/Card Ace of Swords (1) d6c37b.yaml new file mode 100644 index 000000000..de022356a --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 402f5d/Custom_Model_Bag Guardian 722899/Card Ace of Swords (1) d6c37b.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 273709 +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 + UniqueBack: false +Description: Let Your Arrow Fly True +GMNotes: '' +GUID: d6c37b +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Ace of Swords (1) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.6296482 + posY: 1.38689089 + posZ: -49.6484337 + rotX: 0.0208097547 + rotY: 269.999268 + rotZ: 0.0167714916 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 402f5d/Custom_Model_Bag Guardian 722899/Card Agency Backup (5) 394267.yaml b/unpacked/Custom_Model_Bag Guardian 402f5d/Custom_Model_Bag Guardian 722899/Card Agency Backup (5) 394267.yaml new file mode 100644 index 000000000..27cf2aadb --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 402f5d/Custom_Model_Bag Guardian 722899/Card Agency Backup (5) 394267.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: '394267' +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Agency Backup (5) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 7.07655048 + posY: 1.38088453 + posZ: -65.7601 + rotX: 0.0208075941 + rotY: 269.999268 + rotZ: 0.016768096 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 402f5d/Custom_Model_Bag Guardian 722899/Card Ambush (1) e154df.yaml b/unpacked/Custom_Model_Bag Guardian 402f5d/Custom_Model_Bag Guardian 722899/Card Ambush (1) e154df.yaml new file mode 100644 index 000000000..9107db219 --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 402f5d/Custom_Model_Bag Guardian 722899/Card Ambush (1) e154df.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: e154df +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Ambush (1) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.34366 + posY: 1.35127974 + posZ: -61.16791 + rotX: 0.0208085515 + rotY: 269.999268 + rotZ: 0.0167695936 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 402f5d/Custom_Model_Bag Guardian 722899/Card Armor of Ardennes (5) f9a147.yaml b/unpacked/Custom_Model_Bag Guardian 402f5d/Custom_Model_Bag Guardian 722899/Card Armor of Ardennes (5) f9a147.yaml new file mode 100644 index 000000000..a6b666f97 --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 402f5d/Custom_Model_Bag Guardian 722899/Card Armor of Ardennes (5) f9a147.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: f9a147 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Armor of Ardennes (5) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 7.076559 + posY: 1.382904 + posZ: -58.8604851 + rotX: 0.0208102781 + rotY: 269.999268 + rotZ: 0.0167710241 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 402f5d/Custom_Model_Bag Guardian 722899/Card Bandolier (2) 81c616.yaml b/unpacked/Custom_Model_Bag Guardian 402f5d/Custom_Model_Bag Guardian 722899/Card Bandolier (2) 81c616.yaml new file mode 100644 index 000000000..4b643be96 --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 402f5d/Custom_Model_Bag Guardian 722899/Card Bandolier (2) 81c616.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 292304 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2923': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025943109/9C5481E6DFEACD450C5522F884E615482281DDB1/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 81c616 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Bandolier (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.6296463 + posY: 1.38217843 + posZ: -65.74806 + rotX: 0.0208074227 + rotY: 269.999573 + rotZ: 0.01676846 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 402f5d/Custom_Model_Bag Guardian 722899/Card Beat Cop (2) 7c278c.yaml b/unpacked/Custom_Model_Bag Guardian 402f5d/Custom_Model_Bag Guardian 722899/Card Beat Cop (2) 7c278c.yaml new file mode 100644 index 000000000..a22ec16f8 --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 402f5d/Custom_Model_Bag Guardian 722899/Card Beat Cop (2) 7c278c.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 7c278c +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Beat Cop (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.6296463 + posY: 1.37881231 + posZ: -77.24802 + rotX: 0.0208077114 + rotY: 269.999329 + rotZ: 0.0167686846 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 402f5d/Custom_Model_Bag Guardian 722899/Card Blackjack (2) 014d37.yaml b/unpacked/Custom_Model_Bag Guardian 402f5d/Custom_Model_Bag Guardian 722899/Card Blackjack (2) 014d37.yaml new file mode 100644 index 000000000..9a045ccaf --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 402f5d/Custom_Model_Bag Guardian 722899/Card Blackjack (2) 014d37.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 292205 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2922': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025943109/9C5481E6DFEACD450C5522F884E615482281DDB1/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 014d37 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Blackjack (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.6296577 + posY: 1.38150513 + posZ: -68.0480652 + rotX: 0.0208076034 + rotY: 269.99942 + rotZ: 0.0167685673 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 402f5d/Custom_Model_Bag Guardian 722899/Card Blood Eclipse (3) d77af0.yaml b/unpacked/Custom_Model_Bag Guardian 402f5d/Custom_Model_Bag Guardian 722899/Card Blood Eclipse (3) d77af0.yaml new file mode 100644 index 000000000..fcafd085c --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 402f5d/Custom_Model_Bag Guardian 722899/Card Blood Eclipse (3) d77af0.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 292100 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2921': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025943109/9C5481E6DFEACD450C5522F884E615482281DDB1/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: d77af0 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Blood Eclipse (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.3436642 + posY: 1.345894 + posZ: -79.56757 + rotX: 0.0208085626 + rotY: 269.999146 + rotZ: 0.0167695265 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 402f5d/Custom_Model_Bag Guardian 722899/Card Brother Xavier (1) c43ea2.yaml b/unpacked/Custom_Model_Bag Guardian 402f5d/Custom_Model_Bag Guardian 722899/Card Brother Xavier (1) c43ea2.yaml new file mode 100644 index 000000000..8ce5318e6 --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 402f5d/Custom_Model_Bag Guardian 722899/Card Brother Xavier (1) c43ea2.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Pure of Spirit +GMNotes: '' +GUID: c43ea2 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Brother Xavier (1) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.6296616 + posY: 1.38487124 + posZ: -56.5484428 + rotX: 0.0208099969 + rotY: 269.9992 + rotZ: 0.0167698059 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 402f5d/Custom_Model_Bag Guardian 722899/Card Combat Training (1) 3866c0.yaml b/unpacked/Custom_Model_Bag Guardian 402f5d/Custom_Model_Bag Guardian 722899/Card Combat Training (1) 3866c0.yaml new file mode 100644 index 000000000..8588d3924 --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 402f5d/Custom_Model_Bag Guardian 722899/Card Combat Training (1) 3866c0.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 3866c0 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Combat Training (1) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.6296606 + posY: 1.38756418 + posZ: -47.3484459 + rotX: 0.0208096635 + rotY: 269.999451 + rotZ: 0.0167712886 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 402f5d/Custom_Model_Bag Guardian 722899/Card Custom Ammunition (3) 5b118e.yaml b/unpacked/Custom_Model_Bag Guardian 402f5d/Custom_Model_Bag Guardian 722899/Card Custom Ammunition (3) 5b118e.yaml new file mode 100644 index 000000000..56b549aef --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 402f5d/Custom_Model_Bag Guardian 722899/Card Custom Ammunition (3) 5b118e.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 5b118e +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Custom Ammunition (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.3456936 + posY: 1.3452214 + posZ: -81.86779 + rotX: 0.0208086614 + rotY: 269.9992 + rotZ: 0.0167693216 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 402f5d/Custom_Model_Bag Guardian 722899/Card Dynamite Blast (2) f5bd90.yaml b/unpacked/Custom_Model_Bag Guardian 402f5d/Custom_Model_Bag Guardian 722899/Card Dynamite Blast (2) f5bd90.yaml new file mode 100644 index 000000000..717412bdd --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 402f5d/Custom_Model_Bag Guardian 722899/Card Dynamite Blast (2) f5bd90.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: f5bd90 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Dynamite Blast (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.3436565 + posY: 1.34724045 + posZ: -74.9676743 + rotX: 0.0208088048 + rotY: 269.998352 + rotZ: 0.0167689528 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 402f5d/Custom_Model_Bag Guardian 722899/Card Eat lead! (2) e89298.yaml b/unpacked/Custom_Model_Bag Guardian 402f5d/Custom_Model_Bag Guardian 722899/Card Eat lead! (2) e89298.yaml new file mode 100644 index 000000000..cc2562069 --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 402f5d/Custom_Model_Bag Guardian 722899/Card Eat lead! (2) e89298.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: e89298 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '"Eat lead!" (2)' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.3436642 + posY: 1.34993339 + posZ: -65.76754 + rotX: 0.0208086055 + rotY: 269.9992 + rotZ: 0.0167692453 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 402f5d/Custom_Model_Bag Guardian 722899/Card Empty Vessel (4) 16d723.yaml b/unpacked/Custom_Model_Bag Guardian 402f5d/Custom_Model_Bag Guardian 722899/Card Empty Vessel (4) 16d723.yaml new file mode 100644 index 000000000..623f3b261 --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 402f5d/Custom_Model_Bag Guardian 722899/Card Empty Vessel (4) 16d723.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Abandoned by the Gods +GMNotes: '' +GUID: 16d723 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Empty Vessel (4) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.6137209 + posY: 1.37476933 + posZ: -91.04 + rotX: 0.0208075345 + rotY: 269.998779 + rotZ: 0.0167680755 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 402f5d/Custom_Model_Bag Guardian 722899/Card Enchanted Blade (3) ceb0da.yaml b/unpacked/Custom_Model_Bag Guardian 402f5d/Custom_Model_Bag Guardian 722899/Card Enchanted Blade (3) ceb0da.yaml new file mode 100644 index 000000000..9ab70f2dc --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 402f5d/Custom_Model_Bag Guardian 722899/Card Enchanted Blade (3) ceb0da.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Guardian +GMNotes: '' +GUID: ceb0da +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Enchanted Blade (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.62969 + posY: 1.37611926 + posZ: -86.44803 + rotX: 0.020800136 + rotY: 270.0249 + rotZ: 0.0167774912 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 402f5d/Custom_Model_Bag Guardian 722899/Card Ever Vigilant (1) d621cc.yaml b/unpacked/Custom_Model_Bag Guardian 402f5d/Custom_Model_Bag Guardian 722899/Card Ever Vigilant (1) d621cc.yaml new file mode 100644 index 000000000..42aa9b81a --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 402f5d/Custom_Model_Bag Guardian 722899/Card Ever Vigilant (1) d621cc.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: d621cc +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Ever Vigilant (1) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.3436661 + posY: 1.354646 + posZ: -49.6678963 + rotX: 0.02080844 + rotY: 269.999481 + rotZ: 0.0167695042 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 402f5d/Custom_Model_Bag Guardian 722899/Card Extra Ammunition (1) d8d40c.yaml b/unpacked/Custom_Model_Bag Guardian 402f5d/Custom_Model_Bag Guardian 722899/Card Extra Ammunition (1) d8d40c.yaml new file mode 100644 index 000000000..d986015bc --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 402f5d/Custom_Model_Bag Guardian 722899/Card Extra Ammunition (1) d8d40c.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: d8d40c +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Extra Ammunition (1) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.343668 + posY: 1.351953 + posZ: -58.86791 + rotX: 0.0208086558 + rotY: 269.9992 + rotZ: 0.0167692546 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 402f5d/Custom_Model_Bag Guardian 722899/Card First Aid (3) ec2a0a.yaml b/unpacked/Custom_Model_Bag Guardian 402f5d/Custom_Model_Bag Guardian 722899/Card First Aid (3) ec2a0a.yaml new file mode 100644 index 000000000..fc938396f --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 402f5d/Custom_Model_Bag Guardian 722899/Card First Aid (3) ec2a0a.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: ec2a0a +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: First Aid (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.6295624 + posY: 1.37679243 + posZ: -84.14801 + rotX: 0.0208076779 + rotY: 269.999268 + rotZ: 0.0167678054 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 402f5d/Custom_Model_Bag Guardian 722899/Card Flamethrower (5) da33cc.yaml b/unpacked/Custom_Model_Bag Guardian 402f5d/Custom_Model_Bag Guardian 722899/Card Flamethrower (5) da33cc.yaml new file mode 100644 index 000000000..ca9f8b3b0 --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 402f5d/Custom_Model_Bag Guardian 722899/Card Flamethrower (5) da33cc.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 292102 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2921': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025943109/9C5481E6DFEACD450C5522F884E615482281DDB1/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: da33cc +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Flamethrower (5) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 7.076545 + posY: 1.38223076 + posZ: -61.16049 + rotX: 0.0208099559 + rotY: 269.9992 + rotZ: 0.0167703871 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 402f5d/Custom_Model_Bag Guardian 722899/Card Fool me once... (1) 35aa98.yaml b/unpacked/Custom_Model_Bag Guardian 402f5d/Custom_Model_Bag Guardian 722899/Card Fool me once... (1) 35aa98.yaml new file mode 100644 index 000000000..2baa6b4aa --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 402f5d/Custom_Model_Bag Guardian 722899/Card Fool me once... (1) 35aa98.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 35aa98 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '"Fool me once..." (1)' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.343668 + posY: 1.3532995 + posZ: -54.2679024 + rotX: 0.0208080336 + rotY: 270.001282 + rotZ: 0.01677007 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 402f5d/Custom_Model_Bag Guardian 722899/Card Heroic Rescue (2) abdf7c.yaml b/unpacked/Custom_Model_Bag Guardian 402f5d/Custom_Model_Bag Guardian 722899/Card Heroic Rescue (2) abdf7c.yaml new file mode 100644 index 000000000..bc19a2121 --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 402f5d/Custom_Model_Bag Guardian 722899/Card Heroic Rescue (2) abdf7c.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Spirit. Tactic. +GMNotes: '' +GUID: abdf7c +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Heroic Rescue (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.3436623 + posY: 1.34926009 + posZ: -68.06754 + rotX: 0.0208113268 + rotY: 269.989532 + rotZ: 0.01676578 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 402f5d/Custom_Model_Bag Guardian 722899/Card I've had worse... (2) bb5558.yaml b/unpacked/Custom_Model_Bag Guardian 402f5d/Custom_Model_Bag Guardian 722899/Card I've had worse... (2) bb5558.yaml new file mode 100644 index 000000000..be81813ce --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 402f5d/Custom_Model_Bag Guardian 722899/Card I've had worse... (2) bb5558.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: bb5558 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '"I''ve had worse..." (2)' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.3436565 + posY: 1.34858692 + posZ: -70.3675461 + rotX: 0.0208085235 + rotY: 269.9992 + rotZ: 0.0167692043 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 402f5d/Custom_Model_Bag Guardian 722899/Card I've had worse... (4) 73a5e8.yaml b/unpacked/Custom_Model_Bag Guardian 402f5d/Custom_Model_Bag Guardian 722899/Card I've had worse... (4) 73a5e8.yaml new file mode 100644 index 000000000..fd1157819 --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 402f5d/Custom_Model_Bag Guardian 722899/Card I've had worse... (4) 73a5e8.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 73a5e8 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '"I''ve had worse..." (4)' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.3436966 + posY: 1.34387422 + posZ: -86.46758 + rotX: 0.0208085161 + rotY: 269.9994 + rotZ: 0.01676887 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 402f5d/Custom_Model_Bag Guardian 722899/Card Keen Eye (3) 77985f.yaml b/unpacked/Custom_Model_Bag Guardian 402f5d/Custom_Model_Bag Guardian 722899/Card Keen Eye (3) 77985f.yaml new file mode 100644 index 000000000..75245aa17 --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 402f5d/Custom_Model_Bag Guardian 722899/Card Keen Eye (3) 77985f.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 77985f +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Keen Eye (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.6316948 + posY: 1.37746644 + posZ: -81.8482361 + rotX: 0.0208077133 + rotY: 269.999268 + rotZ: 0.01676831 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 402f5d/Custom_Model_Bag Guardian 722899/Card Kerosene (1) c068ac.yaml b/unpacked/Custom_Model_Bag Guardian 402f5d/Custom_Model_Bag Guardian 722899/Card Kerosene (1) c068ac.yaml new file mode 100644 index 000000000..fba0d51fc --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 402f5d/Custom_Model_Bag Guardian 722899/Card Kerosene (1) c068ac.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 292103 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2921': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025943109/9C5481E6DFEACD450C5522F884E615482281DDB1/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: c068ac +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Kerosene (1) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.6296539 + posY: 1.38621771 + posZ: -51.9484329 + rotX: 0.020809859 + rotY: 269.999084 + rotZ: 0.0167701561 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 402f5d/Custom_Model_Bag Guardian 722899/Card Leadership (2) 97104d.yaml b/unpacked/Custom_Model_Bag Guardian 402f5d/Custom_Model_Bag Guardian 722899/Card Leadership (2) 97104d.yaml new file mode 100644 index 000000000..3436d1a18 --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 402f5d/Custom_Model_Bag Guardian 722899/Card Leadership (2) 97104d.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Practiced. +GMNotes: '' +GUID: 97104d +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Leadership (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 24.5003471 + posY: 1.35717714 + posZ: -47.41856 + rotX: 0.02081154 + rotY: 269.9895 + rotZ: 0.01676583 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 402f5d/Custom_Model_Bag Guardian 722899/Card Lightning Gun (5) 1d7bbe.yaml b/unpacked/Custom_Model_Bag Guardian 402f5d/Custom_Model_Bag Guardian 722899/Card Lightning Gun (5) 1d7bbe.yaml new file mode 100644 index 000000000..56bd01167 --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 402f5d/Custom_Model_Bag Guardian 722899/Card Lightning Gun (5) 1d7bbe.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 1d7bbe +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Lightning Gun (5) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 7.076548 + posY: 1.38155758 + posZ: -63.4604759 + rotX: 0.0208098236 + rotY: 269.9992 + rotZ: 0.01677116 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 402f5d/Custom_Model_Bag Guardian 722899/Card M1918 BAR (4) 079cbb.yaml b/unpacked/Custom_Model_Bag Guardian 402f5d/Custom_Model_Bag Guardian 722899/Card M1918 BAR (4) 079cbb.yaml new file mode 100644 index 000000000..affa20032 --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 402f5d/Custom_Model_Bag Guardian 722899/Card M1918 BAR (4) 079cbb.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 079cbb +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: M1918 BAR (4) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 7.07656431 + posY: 1.38425064 + posZ: -54.26048 + rotX: 0.020810023 + rotY: 269.999176 + rotZ: 0.0167702623 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 402f5d/Custom_Model_Bag Guardian 722899/Card Mano a Mano (1) c714e7.yaml b/unpacked/Custom_Model_Bag Guardian 402f5d/Custom_Model_Bag Guardian 722899/Card Mano a Mano (1) c714e7.yaml new file mode 100644 index 000000000..317901310 --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 402f5d/Custom_Model_Bag Guardian 722899/Card Mano a Mano (1) c714e7.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: c714e7 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Mano a Mano (1) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.3436642 + posY: 1.35531926 + posZ: -47.36791 + rotX: 0.0208079387 + rotY: 270.001221 + rotZ: 0.0167698115 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 402f5d/Custom_Model_Bag Guardian 722899/Card Marksmanship (1) d85671.yaml b/unpacked/Custom_Model_Bag Guardian 402f5d/Custom_Model_Bag Guardian 722899/Card Marksmanship (1) d85671.yaml new file mode 100644 index 000000000..4625c4672 --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 402f5d/Custom_Model_Bag Guardian 722899/Card Marksmanship (1) d85671.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: d85671 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Marksmanship (1) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.3436565 + posY: 1.3506068 + posZ: -63.4678955 + rotX: 0.0208084844 + rotY: 269.999268 + rotZ: 0.0167693663 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 402f5d/Custom_Model_Bag Guardian 722899/Card Mk 1 Grenades (4) 37f218.yaml b/unpacked/Custom_Model_Bag Guardian 402f5d/Custom_Model_Bag Guardian 722899/Card Mk 1 Grenades (4) 37f218.yaml new file mode 100644 index 000000000..58fabb029 --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 402f5d/Custom_Model_Bag Guardian 722899/Card Mk 1 Grenades (4) 37f218.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 449017 +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/1016065725025943109/9C5481E6DFEACD450C5522F884E615482281DDB1/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: Item. Weapon. Ranged. +GMNotes: '' +GUID: 37f218 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Mk 1 Grenades (4) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 7.076562 + posY: 1.38627028 + posZ: -47.3604774 + rotX: 0.0208095759 + rotY: 269.9992 + rotZ: 0.0167709384 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 402f5d/Custom_Model_Bag Guardian 722899/Card Monster Slayer (5) 8d6e58.yaml b/unpacked/Custom_Model_Bag Guardian 402f5d/Custom_Model_Bag Guardian 722899/Card Monster Slayer (5) 8d6e58.yaml new file mode 100644 index 000000000..5d7827675 --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 402f5d/Custom_Model_Bag Guardian 722899/Card Monster Slayer (5) 8d6e58.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 8d6e58 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Monster Slayer (5) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.3279018 + posY: 1.34319842 + posZ: -88.75703 + rotX: 0.0208085272 + rotY: 269.999176 + rotZ: 0.0167691577 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 402f5d/Custom_Model_Bag Guardian 722899/Card Physical Training (2) 9b0cff.yaml b/unpacked/Custom_Model_Bag Guardian 402f5d/Custom_Model_Bag Guardian 722899/Card Physical Training (2) 9b0cff.yaml new file mode 100644 index 000000000..11afa162b --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 402f5d/Custom_Model_Bag Guardian 722899/Card Physical Training (2) 9b0cff.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 9b0cff +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Physical Training (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.6296616 + posY: 1.384198 + posZ: -58.8484459 + rotX: 0.02081009 + rotY: 269.999268 + rotZ: 0.0167704169 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 402f5d/Custom_Model_Bag Guardian 722899/Card Police Badge (2) 934f13.yaml b/unpacked/Custom_Model_Bag Guardian 402f5d/Custom_Model_Bag Guardian 722899/Card Police Badge (2) 934f13.yaml new file mode 100644 index 000000000..8a114c024 --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 402f5d/Custom_Model_Bag Guardian 722899/Card Police Badge (2) 934f13.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 934f13 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Police Badge (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.62965 + posY: 1.38015878 + posZ: -72.6481 + rotX: 0.0208072644 + rotY: 269.9995 + rotZ: 0.0167683046 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 402f5d/Custom_Model_Bag Guardian 722899/Card Reliable (1) 27902c.yaml b/unpacked/Custom_Model_Bag Guardian 402f5d/Custom_Model_Bag Guardian 722899/Card Reliable (1) 27902c.yaml new file mode 100644 index 000000000..cc971c886 --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 402f5d/Custom_Model_Bag Guardian 722899/Card Reliable (1) 27902c.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 27902c +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Reliable (1) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.343668 + posY: 1.35262632 + posZ: -56.5679054 + rotX: 0.020808449 + rotY: 269.999451 + rotZ: 0.01676946 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 402f5d/Custom_Model_Bag Guardian 722899/Card Safeguard (2) 2df79f.yaml b/unpacked/Custom_Model_Bag Guardian 402f5d/Custom_Model_Bag Guardian 722899/Card Safeguard (2) 2df79f.yaml new file mode 100644 index 000000000..57b22b940 --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 402f5d/Custom_Model_Bag Guardian 722899/Card Safeguard (2) 2df79f.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Talent. +GMNotes: '' +GUID: 2df79f +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Safeguard (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.62965 + posY: 1.380832 + posZ: -70.34807 + rotX: 0.0208096169 + rotY: 269.9922 + rotZ: 0.016765628 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 402f5d/Custom_Model_Bag Guardian 722899/Card Shotgun (4) 8e25de.yaml b/unpacked/Custom_Model_Bag Guardian 402f5d/Custom_Model_Bag Guardian 722899/Card Shotgun (4) 8e25de.yaml new file mode 100644 index 000000000..744db96ad --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 402f5d/Custom_Model_Bag Guardian 722899/Card Shotgun (4) 8e25de.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 8e25de +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Shotgun (4) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 7.07655525 + posY: 1.38492382 + posZ: -51.96047 + rotX: 0.0208098963 + rotY: 269.999084 + rotZ: 0.0167710613 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 402f5d/Custom_Model_Bag Guardian 722899/Card Spiritual Resolve (5) 217f03.yaml b/unpacked/Custom_Model_Bag Guardian 402f5d/Custom_Model_Bag Guardian 722899/Card Spiritual Resolve (5) 217f03.yaml new file mode 100644 index 000000000..17af43d1d --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 402f5d/Custom_Model_Bag Guardian 722899/Card Spiritual Resolve (5) 217f03.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Ritual. +GMNotes: '' +GUID: 217f03 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Spiritual Resolve (5) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 7.07656431 + posY: 1.38357723 + posZ: -56.560482 + rotX: 0.0208050255 + rotY: 270.016541 + rotZ: 0.01677667 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 402f5d/Custom_Model_Bag Guardian 722899/Card Springfield M1903 (4) f44a10.yaml b/unpacked/Custom_Model_Bag Guardian 402f5d/Custom_Model_Bag Guardian 722899/Card Springfield M1903 (4) f44a10.yaml new file mode 100644 index 000000000..aa62cddfd --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 402f5d/Custom_Model_Bag Guardian 722899/Card Springfield M1903 (4) f44a10.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: f44a10 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Springfield M1903 (4) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 7.07655859 + posY: 1.38559711 + posZ: -49.6604652 + rotX: 0.0208099354 + rotY: 269.999176 + rotZ: 0.0167703647 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 402f5d/Custom_Model_Bag Guardian 722899/Card Stand Together (3) ae7294.yaml b/unpacked/Custom_Model_Bag Guardian 402f5d/Custom_Model_Bag Guardian 722899/Card Stand Together (3) ae7294.yaml new file mode 100644 index 000000000..8fb68d813 --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 402f5d/Custom_Model_Bag Guardian 722899/Card Stand Together (3) ae7294.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: ae7294 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Stand Together (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.3436546 + posY: 1.34656715 + posZ: -77.26757 + rotX: 0.0208084844 + rotY: 269.9992 + rotZ: 0.0167691819 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 402f5d/Custom_Model_Bag Guardian 722899/Card Stick to the Plan (3) 3b166d.yaml b/unpacked/Custom_Model_Bag Guardian 402f5d/Custom_Model_Bag Guardian 722899/Card Stick to the Plan (3) 3b166d.yaml new file mode 100644 index 000000000..c9a1d7ba8 --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 402f5d/Custom_Model_Bag Guardian 722899/Card Stick to the Plan (3) 3b166d.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 3b166d +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Stick to the Plan (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.62965 + posY: 1.3781389 + posZ: -79.54802 + rotX: 0.020807568 + rotY: 269.9992 + rotZ: 0.01676812 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 402f5d/Custom_Model_Bag Guardian 722899/Card Taunt (2) 79ab41.yaml b/unpacked/Custom_Model_Bag Guardian 402f5d/Custom_Model_Bag Guardian 722899/Card Taunt (2) 79ab41.yaml new file mode 100644 index 000000000..9c67a487d --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 402f5d/Custom_Model_Bag Guardian 722899/Card Taunt (2) 79ab41.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 79ab41 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Taunt (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.3436527 + posY: 1.34791362 + posZ: -72.6676559 + rotX: 0.0208085086 + rotY: 269.9994 + rotZ: 0.016768897 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 402f5d/Custom_Model_Bag Guardian 722899/Card Telescopic Sight (3) da7c52.yaml b/unpacked/Custom_Model_Bag Guardian 402f5d/Custom_Model_Bag Guardian 722899/Card Telescopic Sight (3) da7c52.yaml new file mode 100644 index 000000000..0fb9d8bce --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 402f5d/Custom_Model_Bag Guardian 722899/Card Telescopic Sight (3) da7c52.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: da7c52 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Telescopic Sight (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.34352 + posY: 1.34454739 + posZ: -84.16753 + rotX: 0.0208075251 + rotY: 269.9994 + rotZ: 0.0167682 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 402f5d/Custom_Model_Bag Guardian 722899/Card The Hungering Blade (1) 9ed0fb.yaml b/unpacked/Custom_Model_Bag Guardian 402f5d/Custom_Model_Bag Guardian 722899/Card The Hungering Blade (1) 9ed0fb.yaml new file mode 100644 index 000000000..3165e8426 --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 402f5d/Custom_Model_Bag Guardian 722899/Card The Hungering Blade (1) 9ed0fb.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: "Calamitous Blade of Celepha\xEFs" +GMNotes: '' +GUID: 9ed0fb +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: The Hungering Blade (1) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.6296654 + posY: 1.38554442 + posZ: -54.24844 + rotX: 0.0208100323 + rotY: 269.999268 + rotZ: 0.01677025 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 402f5d/Custom_Model_Bag Guardian 722899/Card Vicious Blow (2) d9f87f.yaml b/unpacked/Custom_Model_Bag Guardian 402f5d/Custom_Model_Bag Guardian 722899/Card Vicious Blow (2) d9f87f.yaml new file mode 100644 index 000000000..60d1330d2 --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 402f5d/Custom_Model_Bag Guardian 722899/Card Vicious Blow (2) d9f87f.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: d9f87f +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Vicious Blow (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 24.5003471 + posY: 1.356504 + posZ: -49.7185478 + rotX: 0.02080777 + rotY: 270.002075 + rotZ: 0.0167702548 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 402f5d/Custom_Model_Bag Guardian 722899/Card Well Prepared (2) b68125.yaml b/unpacked/Custom_Model_Bag Guardian 402f5d/Custom_Model_Bag Guardian 722899/Card Well Prepared (2) b68125.yaml new file mode 100644 index 000000000..bf5aa3d12 --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 402f5d/Custom_Model_Bag Guardian 722899/Card Well Prepared (2) b68125.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: b68125 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Well Prepared (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.6296473 + posY: 1.38285148 + posZ: -63.4484367 + rotX: 0.0208086353 + rotY: 269.9992 + rotZ: 0.0167690963 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 402f5d/Custom_Model_Bag Guardian 722899/Card Well-Maintained (1) 72e666.yaml b/unpacked/Custom_Model_Bag Guardian 402f5d/Custom_Model_Bag Guardian 722899/Card Well-Maintained (1) 72e666.yaml new file mode 100644 index 000000000..259fc1929 --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 402f5d/Custom_Model_Bag Guardian 722899/Card Well-Maintained (1) 72e666.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 72e666 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Well-Maintained (1) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.3436623 + posY: 1.35397279 + posZ: -51.9679 + rotX: 0.0208085272 + rotY: 269.999451 + rotZ: 0.0167689975 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 816ad8.ttslua b/unpacked/Custom_Model_Bag Guardian 816ad8.ttslua new file mode 100644 index 000000000..857093fb8 --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 816ad8.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,0,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 + 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=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,0,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,0,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,0,0}, height=350, width=750, + 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}, rotation={0,0,0}, height=350, width=800, + font_size=250, color={0,0,0}, font_color={1,1,1} + }) +-- self.createButton({ +-- label="Setup", click_function="buttonClick_setup", function_owner=self, +-- position={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.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 \ No newline at end of file diff --git a/unpacked/Custom_Model_Bag Guardian 816ad8.yaml b/unpacked/Custom_Model_Bag Guardian 816ad8.yaml new file mode 100644 index 000000000..3a9769474 --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 816ad8.yaml @@ -0,0 +1,103 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +ContainedObjects: +- !include 'Custom_Model_Bag Guardian 816ad8/Custom_Model_Bag Guardian 888318.yaml' +- !include 'Custom_Model_Bag Guardian 816ad8/Card Inspiring Presence 01a894.yaml' +- !include 'Custom_Model_Bag Guardian 816ad8/Card Emergency Aid 05c26b.yaml' +- !include 'Custom_Model_Bag Guardian 816ad8/Card Heroic Rescue 07bae2.yaml' +- !include 'Custom_Model_Bag Guardian 816ad8/Card Interrogate 097d2b.yaml' +- !include 'Custom_Model_Bag Guardian 816ad8/Card Taunt 0f2742.yaml' +- !include 'Custom_Model_Bag Guardian 816ad8/Card Solemn Vow 105ebf.yaml' +- !include 'Custom_Model_Bag Guardian 816ad8/Card Vicious Blow 12a0ab.yaml' +- !include 'Custom_Model_Bag Guardian 816ad8/Card Second Wind 12f935.yaml' +- !include 'Custom_Model_Bag Guardian 816ad8/Card Eat lead! 13b4ea.yaml' +- !include 'Custom_Model_Bag Guardian 816ad8/Card Blackjack 19537a.yaml' +- !include 'Custom_Model_Bag Guardian 816ad8/Card Steadfast 1cfcbe.yaml' +- !include 'Custom_Model_Bag Guardian 816ad8/Card Dynamite Blast 21382f.yaml' +- !include 'Custom_Model_Bag Guardian 816ad8/Card Take the Initiative 2ba495.yaml' +- !include 'Custom_Model_Bag Guardian 816ad8/Card Let me handle this! 2dc5e0.yaml' +- !include 'Custom_Model_Bag Guardian 816ad8/Card Prepared for the Worst 2f9f0f.yaml' +- !include 'Custom_Model_Bag Guardian 816ad8/Card Guard Dog 3801f7.yaml' +- !include 'Custom_Model_Bag Guardian 816ad8/Card Survival Knife 40785e.yaml' +- !include 'Custom_Model_Bag Guardian 816ad8/Card Machete 4dc805.yaml' +- !include 'Custom_Model_Bag Guardian 816ad8/Card First Watch 533260.yaml' +- !include 'Custom_Model_Bag Guardian 816ad8/Card Handcuffs 54afcb.yaml' +- !include 'Custom_Model_Bag Guardian 816ad8/Card Daring 56e3cc.yaml' +- !include 'Custom_Model_Bag Guardian 816ad8/Card Self-Sacrifice 597950.yaml' +- !include 'Custom_Model_Bag Guardian 816ad8/Card On The Hunt 5bfdde.yaml' +- !include 'Custom_Model_Bag Guardian 816ad8/Card Physical Training 5c070f.yaml' +- !include 'Custom_Model_Bag Guardian 816ad8/Card Trusted 60a283.yaml' +- !include 'Custom_Model_Bag Guardian 816ad8/Card First Aid 676b1e.yaml' +- !include 'Custom_Model_Bag Guardian 816ad8/Card Trench Knife 6d1f49.yaml' +- !include 'Custom_Model_Bag Guardian 816ad8/Card Alice Luxley 734a8a.yaml' +- !include 'Custom_Model_Bag Guardian 816ad8/Card Tetsuo Mori 756ec4.yaml' +- !include 'Custom_Model_Bag Guardian 816ad8/Card If it bleeds... 80b9b7.yaml' +- !include 'Custom_Model_Bag Guardian 816ad8/Card True Grit 8dbe76.yaml' +- !include 'Custom_Model_Bag Guardian 816ad8/Card Evidence! 925c25.yaml' +- !include 'Custom_Model_Bag Guardian 816ad8/Card Intrepid 96ab3f.yaml' +- !include 'Custom_Model_Bag Guardian 816ad8/Card Beat Cop 9fedc2.yaml' +- !include 'Custom_Model_Bag Guardian 816ad8/Card Bandolier a48416.yaml' +- !include 'Custom_Model_Bag Guardian 816ad8/Card Scene of the Crime acdb71.yaml' +- !include 'Custom_Model_Bag Guardian 816ad8/Card Venturer b26d91.yaml' +- !include 'Custom_Model_Bag Guardian 816ad8/Card Delay the Inevitable b5d6e5.yaml' +- !include 'Custom_Model_Bag Guardian 816ad8/Card .32 Colt bb5684.yaml' +- !include 'Custom_Model_Bag Guardian 816ad8/Card Leadership bc008b.yaml' +- !include 'Custom_Model_Bag Guardian 816ad8/Card .45 Thompson bd5974.yaml' +- !include 'Custom_Model_Bag Guardian 816ad8/Card .45 Automatic c02b12.yaml' +- !include 'Custom_Model_Bag Guardian 816ad8/Card Something Worth Fighting For c2d22a.yaml' +- !include 'Custom_Model_Bag Guardian 816ad8/Card Teamwork cac7d0.yaml' +- !include 'Custom_Model_Bag Guardian 816ad8/Card Dodge d4d676.yaml' +- !include 'Custom_Model_Bag Guardian 816ad8/Card Hallowed Mirror dc2bff.yaml' +- !include 'Custom_Model_Bag Guardian 816ad8/Card I''ll see you in hell! e367cc.yaml' +- !include 'Custom_Model_Bag Guardian 816ad8/Card Warning Shot eafd11.yaml' +- !include 'Custom_Model_Bag Guardian 816ad8/Card .35 Winchester ebdd78.yaml' +- !include 'Custom_Model_Bag Guardian 816ad8/Card Enchanted Blade ed16f2.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/952965722516201848/72B3B9E2B59F25FEC82412AC22245D03655A4558/ + MaterialIndex: 3 + MeshURL: https://pastebin.com/raw/ALrYhQGb + NormalURL: '' + TypeIndex: 6 +Description: '' +GMNotes: '' +GUID: 816ad8 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: true +LuaScript: !include 'Custom_Model_Bag Guardian 816ad8.ttslua' +LuaScriptState: '{"ml":{"01a894":{"lock":false,"pos":{"x":24.4394,"y":1.3562,"z":87.7904},"rot":{"x":0.0208,"y":270.0117,"z":0.0168}},"05c26b":{"lock":false,"pos":{"x":19.2861,"y":1.3455,"z":57.941},"rot":{"x":0.0208,"y":270.0318,"z":0.0168}},"07bae2":{"lock":false,"pos":{"x":19.2841,"y":1.3503,"z":74.0412},"rot":{"x":0.0208,"y":270.0287,"z":0.0168}},"097d2b":{"lock":false,"pos":{"x":19.284,"y":1.3449,"z":55.6412},"rot":{"x":0.0208,"y":270.0289,"z":0.0168}},"0f2742":{"lock":false,"pos":{"x":19.2841,"y":1.3536,"z":85.5412},"rot":{"x":0.0208,"y":270.0291,"z":0.0168}},"105ebf":{"lock":false,"pos":{"x":10.5689,"y":1.3525,"z":92.4607},"rot":{"x":0.0208,"y":269.9694,"z":0.0168}},"12a0ab":{"lock":false,"pos":{"x":24.4394,"y":1.3528,"z":76.2904},"rot":{"x":0.0208,"y":270.0159,"z":0.0168}},"12f935":{"lock":false,"pos":{"x":19.2841,"y":1.3469,"z":62.5412},"rot":{"x":0.0208,"y":270.0289,"z":0.0168}},"13b4ea":{"lock":false,"pos":{"x":19.2841,"y":1.3523,"z":80.9412},"rot":{"x":0.0208,"y":270.0289,"z":0.0168}},"19537a":{"lock":false,"pos":{"x":10.5689,"y":1.3511,"z":87.8608},"rot":{"x":0.0208,"y":269.9691,"z":0.0168}},"1cfcbe":{"lock":false,"pos":{"x":24.4394,"y":1.3541,"z":80.8904},"rot":{"x":0.0208,"y":270.0118,"z":0.0168}},"21382f":{"lock":false,"pos":{"x":19.2682,"y":1.3428,"z":48.7453},"rot":{"x":0.0208,"y":270.0312,"z":0.0168}},"2ba495":{"lock":false,"pos":{"x":24.4394,"y":1.3535,"z":78.5904},"rot":{"x":0.0208,"y":270.0151,"z":0.0168}},"2dc5e0":{"lock":false,"pos":{"x":19.2841,"y":1.3556,"z":92.4412},"rot":{"x":0.0208,"y":270.0284,"z":0.0168}},"2f9f0f":{"lock":false,"pos":{"x":19.2841,"y":1.3509,"z":76.3412},"rot":{"x":0.0208,"y":270.0289,"z":0.0168}},"3801f7":{"lock":false,"pos":{"x":10.5689,"y":1.3451,"z":67.1607},"rot":{"x":0.0208,"y":269.9694,"z":0.0168}},"40785e":{"lock":false,"pos":{"x":10.5689,"y":1.3505,"z":85.5608},"rot":{"x":0.0208,"y":269.9692,"z":0.0168}},"4dc805":{"lock":false,"pos":{"x":10.5689,"y":1.3444,"z":64.8607},"rot":{"x":0.0208,"y":269.9684,"z":0.0168}},"533260":{"lock":false,"pos":{"x":19.2841,"y":1.3516,"z":78.6412},"rot":{"x":0.0208,"y":269.9898,"z":0.0168}},"54afcb":{"lock":false,"pos":{"x":10.5689,"y":1.3471,"z":74.0607},"rot":{"x":0.0208,"y":269.9692,"z":0.0168}},"56e3cc":{"lock":false,"pos":{"x":24.4394,"y":1.3575,"z":92.3904},"rot":{"x":0.0208,"y":269.9736,"z":0.0168}},"597950":{"lock":false,"pos":{"x":24.4394,"y":1.3548,"z":83.1904},"rot":{"x":0.0208,"y":270.0088,"z":0.0168}},"5bfdde":{"lock":false,"pos":{"x":19.2841,"y":1.3482,"z":67.1411},"rot":{"x":0.0208,"y":270.0314,"z":0.0168}},"5c070f":{"lock":false,"pos":{"x":10.5689,"y":1.3498,"z":83.2607},"rot":{"x":0.0208,"y":269.9692,"z":0.0168}},"60a283":{"lock":false,"pos":{"x":19.2841,"y":1.3476,"z":64.8411},"rot":{"x":0.0208,"y":270.0282,"z":0.0168}},"676b1e":{"lock":false,"pos":{"x":10.5689,"y":1.3491,"z":80.9607},"rot":{"x":0.0208,"y":269.9692,"z":0.0168}},"6d1f49":{"lock":false,"pos":{"x":10.5689,"y":1.3518,"z":90.1608},"rot":{"x":0.0208,"y":269.9692,"z":0.0168}},"734a8a":{"lock":false,"pos":{"x":10.5531,"y":1.3404,"z":51.0713},"rot":{"x":0.0208,"y":269.9692,"z":0.0168}},"756ec4":{"lock":false,"pos":{"x":10.5689,"y":1.3431,"z":60.2608},"rot":{"x":0.0208,"y":269.9781,"z":0.0168}},"80b9b7":{"lock":false,"pos":{"x":19.2841,"y":1.3496,"z":71.7415},"rot":{"x":0.0208,"y":270.029,"z":0.0168}},"8dbe76":{"lock":false,"pos":{"x":10.5709,"y":1.3424,"z":57.9606},"rot":{"x":0.0208,"y":269.9692,"z":0.0168}},"925c25":{"lock":false,"pos":{"x":19.2841,"y":1.353,"z":83.2412},"rot":{"x":0.0208,"y":270.0285,"z":0.0168}},"96ab3f":{"lock":false,"pos":{"x":24.4394,"y":1.3555,"z":85.4904},"rot":{"x":0.0208,"y":270.0122,"z":0.0168}},"9fedc2":{"lock":false,"pos":{"x":10.5529,"y":1.3397,"z":48.764},"rot":{"x":0.0208,"y":269.9693,"z":0.0168}},"a48416":{"lock":false,"pos":{"x":10.5689,"y":1.3484,"z":78.6607},"rot":{"x":0.0208,"y":269.9693,"z":0.0168}},"acdb71":{"lock":false,"pos":{"x":19.2842,"y":1.3442,"z":53.3412},"rot":{"x":0.0208,"y":270.0289,"z":0.0168}},"b26d91":{"lock":false,"pos":{"x":7.0158,"y":1.3512,"z":92.4487},"rot":{"x":0.0208,"y":269.9693,"z":0.0168}},"b5d6e5":{"lock":false,"pos":{"x":19.2841,"y":1.3462,"z":60.2412},"rot":{"x":0.0208,"y":270.0279,"z":0.0168}},"bb5684":{"lock":false,"pos":{"x":10.5689,"y":1.3464,"z":71.7607},"rot":{"x":0.0208,"y":269.9692,"z":0.0168}},"bc008b":{"lock":false,"pos":{"x":24.4394,"y":1.3568,"z":90.0904},"rot":{"x":0.0208,"y":270.0121,"z":0.0168}},"bd5974":{"lock":false,"pos":{"x":7.0158,"y":1.3505,"z":90.1487},"rot":{"x":0.0208,"y":269.9669,"z":0.0168}},"c02b12":{"lock":false,"pos":{"x":10.5688,"y":1.3417,"z":55.6608},"rot":{"x":0.0208,"y":269.9693,"z":0.0168}},"c2d22a":{"lock":false,"pos":{"x":10.5689,"y":1.3437,"z":62.5608},"rot":{"x":0.0208,"y":269.9693,"z":0.0168}},"cac7d0":{"lock":false,"pos":{"x":19.2841,"y":1.355,"z":90.1413},"rot":{"x":0.0208,"y":270.0289,"z":0.0168}},"d4d676":{"lock":false,"pos":{"x":19.2841,"y":1.3489,"z":69.4412},"rot":{"x":0.0208,"y":270.0287,"z":0.0168}},"dc2bff":{"lock":false,"pos":{"x":10.5689,"y":1.3478,"z":76.3607},"rot":{"x":0.0208,"y":269.9691,"z":0.0168}},"e367cc":{"lock":false,"pos":{"x":19.2841,"y":1.3543,"z":87.8412},"rot":{"x":0.0208,"y":270.0289,"z":0.0168}},"eafd11":{"lock":false,"pos":{"x":19.2683,"y":1.3435,"z":51.0517},"rot":{"x":0.0208,"y":270.0318,"z":0.0168}},"ebdd78":{"lock":false,"pos":{"x":10.5689,"y":1.341,"z":53.3608},"rot":{"x":0.0208,"y":269.9969,"z":0.0168}},"ed16f2":{"lock":false,"pos":{"x":10.5689,"y":1.3458,"z":69.4607},"rot":{"x":0.0208,"y":269.9693,"z":0.0168}}}}' +MaterialIndex: -1 +MeshIndex: -1 +Name: Custom_Model_Bag +Nickname: Guardian +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 32.98037 + posY: 1.40421152 + posZ: 76.40486 + rotX: 0.0208054017 + rotY: 270.017456 + rotZ: 0.01677666 + scaleX: 1.2 + scaleY: 1.2 + scaleZ: 1.2 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 816ad8/Card .32 Colt bb5684.yaml b/unpacked/Custom_Model_Bag Guardian 816ad8/Card .32 Colt bb5684.yaml new file mode 100644 index 000000000..4fa03a108 --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 816ad8/Card .32 Colt bb5684.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: bb5684 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: .32 Colt +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.5689 + posY: 1.34642637 + posZ: 71.7607 + rotX: 0.02081827 + rotY: 269.969177 + rotZ: 0.0167591441 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 816ad8/Card .35 Winchester ebdd78.yaml b/unpacked/Custom_Model_Bag Guardian 816ad8/Card .35 Winchester ebdd78.yaml new file mode 100644 index 000000000..72f42462a --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 816ad8/Card .35 Winchester ebdd78.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Item. Weapon. Firearm. +GMNotes: '' +GUID: ebdd78 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: .35 Winchester +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.5689 + posY: 1.34104061 + posZ: 53.3608 + rotX: 0.0208102074 + rotY: 269.996979 + rotZ: 0.0167690143 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 816ad8/Card .45 Automatic c02b12.yaml b/unpacked/Custom_Model_Bag Guardian 816ad8/Card .45 Automatic c02b12.yaml new file mode 100644 index 000000000..140a37be2 --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 816ad8/Card .45 Automatic c02b12.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: c02b12 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: .45 Automatic +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.5688019 + posY: 1.34171379 + posZ: 55.6608 + rotX: 0.02081797 + rotY: 269.96933 + rotZ: 0.0167594478 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 816ad8/Card .45 Thompson bd5974.yaml b/unpacked/Custom_Model_Bag Guardian 816ad8/Card .45 Thompson bd5974.yaml new file mode 100644 index 000000000..ee11a31f8 --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 816ad8/Card .45 Thompson bd5974.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: bd5974 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: .45 Thompson +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 7.015802 + posY: 1.35051847 + posZ: 90.1487 + rotX: 0.0208188612 + rotY: 269.966949 + rotZ: 0.01675855 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 816ad8/Card Alice Luxley 734a8a.yaml b/unpacked/Custom_Model_Bag Guardian 816ad8/Card Alice Luxley 734a8a.yaml new file mode 100644 index 000000000..7cfa3d831 --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 816ad8/Card Alice Luxley 734a8a.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Fearless Flatfoot +GMNotes: '' +GUID: 734a8a +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Alice Luxley +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.5531015 + posY: 1.34036458 + posZ: 51.0713 + rotX: 0.0208183657 + rotY: 269.969177 + rotZ: 0.016759498 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 816ad8/Card Bandolier a48416.yaml b/unpacked/Custom_Model_Bag Guardian 816ad8/Card Bandolier a48416.yaml new file mode 100644 index 000000000..efbf0a801 --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 816ad8/Card Bandolier a48416.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: a48416 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Bandolier +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.5688982 + posY: 1.34844613 + posZ: 78.6607 + rotX: 0.02081843 + rotY: 269.9693 + rotZ: 0.0167594 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 816ad8/Card Beat Cop 9fedc2.yaml b/unpacked/Custom_Model_Bag Guardian 816ad8/Card Beat Cop 9fedc2.yaml new file mode 100644 index 000000000..add841be0 --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 816ad8/Card Beat Cop 9fedc2.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 9fedc2 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Beat Cop +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.5529022 + posY: 1.33968925 + posZ: 48.764 + rotX: 0.0208182074 + rotY: 269.96933 + rotZ: 0.016759593 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 816ad8/Card Blackjack 19537a.yaml b/unpacked/Custom_Model_Bag Guardian 816ad8/Card Blackjack 19537a.yaml new file mode 100644 index 000000000..951888aa4 --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 816ad8/Card Blackjack 19537a.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 19537a +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Blackjack +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.5689 + posY: 1.35113919 + posZ: 87.8608 + rotX: 0.0208181 + rotY: 269.969269 + rotZ: 0.01675917 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 816ad8/Card Daring 56e3cc.yaml b/unpacked/Custom_Model_Bag Guardian 816ad8/Card Daring 56e3cc.yaml new file mode 100644 index 000000000..dd465912a --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 816ad8/Card Daring 56e3cc.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 56e3cc +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Daring +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 24.4394 + posY: 1.35750222 + posZ: 92.3904 + rotX: 0.02081692 + rotY: 269.9736 + rotZ: 0.0167606473 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 816ad8/Card Delay the Inevitable b5d6e5.yaml b/unpacked/Custom_Model_Bag Guardian 816ad8/Card Delay the Inevitable b5d6e5.yaml new file mode 100644 index 000000000..b298cd191 --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 816ad8/Card Delay the Inevitable b5d6e5.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 447007 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: b5d6e5 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Delay the Inevitable +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.2841 + posY: 1.34621942 + posZ: 60.2412 + rotX: 0.0208011121 + rotY: 270.0279 + rotZ: 0.0167808514 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 816ad8/Card Dodge d4d676.yaml b/unpacked/Custom_Model_Bag Guardian 816ad8/Card Dodge d4d676.yaml new file mode 100644 index 000000000..d3b8db542 --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 816ad8/Card Dodge d4d676.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: d4d676 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Dodge +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.2841 + posY: 1.34891248 + posZ: 69.4412 + rotX: 0.0208009 + rotY: 270.028717 + rotZ: 0.0167812482 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 816ad8/Card Dynamite Blast 21382f.yaml b/unpacked/Custom_Model_Bag Guardian 816ad8/Card Dynamite Blast 21382f.yaml new file mode 100644 index 000000000..5a6ed3208 --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 816ad8/Card Dynamite Blast 21382f.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 21382f +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Dynamite Blast +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.2682 + posY: 1.3428489 + posZ: 48.7453 + rotX: 0.02080013 + rotY: 270.031219 + rotZ: 0.01678212 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 816ad8/Card Eat lead! 13b4ea.yaml b/unpacked/Custom_Model_Bag Guardian 816ad8/Card Eat lead! 13b4ea.yaml new file mode 100644 index 000000000..eb89ebeec --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 816ad8/Card Eat lead! 13b4ea.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 447123 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '4471': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025943109/9C5481E6DFEACD450C5522F884E615482281DDB1/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 13b4ea +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '"Eat lead!"' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.2841 + posY: 1.35227859 + posZ: 80.9412 + rotX: 0.0208004732 + rotY: 270.028931 + rotZ: 0.0167810172 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 816ad8/Card Emergency Aid 05c26b.yaml b/unpacked/Custom_Model_Bag Guardian 816ad8/Card Emergency Aid 05c26b.yaml new file mode 100644 index 000000000..c1452a9ac --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 816ad8/Card Emergency Aid 05c26b.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 05c26b +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Emergency Aid +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.2861 + posY: 1.34554684 + posZ: 57.941 + rotX: 0.0207999311 + rotY: 270.0318 + rotZ: 0.01678211 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 816ad8/Card Enchanted Blade ed16f2.yaml b/unpacked/Custom_Model_Bag Guardian 816ad8/Card Enchanted Blade ed16f2.yaml new file mode 100644 index 000000000..627b575ae --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 816ad8/Card Enchanted Blade ed16f2.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: ed16f2 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Enchanted Blade +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.568902 + posY: 1.34575319 + posZ: 69.4607 + rotX: 0.0208182763 + rotY: 269.9693 + rotZ: 0.0167595539 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 816ad8/Card Evidence! 925c25.yaml b/unpacked/Custom_Model_Bag Guardian 816ad8/Card Evidence! 925c25.yaml new file mode 100644 index 000000000..9ae39cac9 --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 816ad8/Card Evidence! 925c25.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 925c25 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Evidence! +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.2841 + posY: 1.352952 + posZ: 83.2412 + rotX: 0.02080071 + rotY: 270.028534 + rotZ: 0.0167808812 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 816ad8/Card First Aid 676b1e.yaml b/unpacked/Custom_Model_Bag Guardian 816ad8/Card First Aid 676b1e.yaml new file mode 100644 index 000000000..1c329e7f9 --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 816ad8/Card First Aid 676b1e.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 676b1e +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: First Aid +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.5688982 + posY: 1.34911942 + posZ: 80.9607 + rotX: 0.0208180025 + rotY: 269.9692 + rotZ: 0.0167594627 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 816ad8/Card First Watch 533260.yaml b/unpacked/Custom_Model_Bag Guardian 816ad8/Card First Watch 533260.yaml new file mode 100644 index 000000000..e87990593 --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 816ad8/Card First Watch 533260.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: '533260' +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: First Watch +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.2841 + posY: 1.35160542 + posZ: 78.6412 + rotX: 0.02081218 + rotY: 269.989838 + rotZ: 0.0167670641 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 816ad8/Card Guard Dog 3801f7.yaml b/unpacked/Custom_Model_Bag Guardian 816ad8/Card Guard Dog 3801f7.yaml new file mode 100644 index 000000000..7e2d8b7c8 --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 816ad8/Card Guard Dog 3801f7.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 3801f7 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Guard Dog +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.5688963 + posY: 1.34508 + posZ: 67.1607 + rotX: 0.0208179373 + rotY: 269.969421 + rotZ: 0.0167593863 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 816ad8/Card Hallowed Mirror dc2bff.yaml b/unpacked/Custom_Model_Bag Guardian 816ad8/Card Hallowed Mirror dc2bff.yaml new file mode 100644 index 000000000..15841e6b5 --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 816ad8/Card Hallowed Mirror dc2bff.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: dc2bff +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Hallowed Mirror +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.5689 + posY: 1.347773 + posZ: 76.3607 + rotX: 0.02081816 + rotY: 269.969055 + rotZ: 0.0167593788 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 816ad8/Card Handcuffs 54afcb.yaml b/unpacked/Custom_Model_Bag Guardian 816ad8/Card Handcuffs 54afcb.yaml new file mode 100644 index 000000000..318375a84 --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 816ad8/Card Handcuffs 54afcb.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 446701 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '4467': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025943109/9C5481E6DFEACD450C5522F884E615482281DDB1/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 54afcb +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Handcuffs +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.568902 + posY: 1.34709978 + posZ: 74.0607 + rotX: 0.0208181124 + rotY: 269.969238 + rotZ: 0.0167594459 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 816ad8/Card Heroic Rescue 07bae2.yaml b/unpacked/Custom_Model_Bag Guardian 816ad8/Card Heroic Rescue 07bae2.yaml new file mode 100644 index 000000000..3b388b084 --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 816ad8/Card Heroic Rescue 07bae2.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 07bae2 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Heroic Rescue +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.2841 + posY: 1.350259 + posZ: 74.0412 + rotX: 0.0208009128 + rotY: 270.028717 + rotZ: 0.016781006 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 816ad8/Card I'll see you in hell! e367cc.yaml b/unpacked/Custom_Model_Bag Guardian 816ad8/Card I'll see you in hell! e367cc.yaml new file mode 100644 index 000000000..44621d3a0 --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 816ad8/Card I'll see you in hell! e367cc.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: e367cc +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '"I''ll see you in hell!"' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.2841 + posY: 1.35429835 + posZ: 87.8412 + rotX: 0.0208005812 + rotY: 270.028931 + rotZ: 0.0167812183 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 816ad8/Card If it bleeds... 80b9b7.yaml b/unpacked/Custom_Model_Bag Guardian 816ad8/Card If it bleeds... 80b9b7.yaml new file mode 100644 index 000000000..29ac1a9e5 --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 816ad8/Card If it bleeds... 80b9b7.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 80b9b7 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '"If it bleeds..."' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.2841 + posY: 1.34958577 + posZ: 71.7415 + rotX: 0.020800624 + rotY: 270.028961 + rotZ: 0.0167811625 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 816ad8/Card Inspiring Presence 01a894.yaml b/unpacked/Custom_Model_Bag Guardian 816ad8/Card Inspiring Presence 01a894.yaml new file mode 100644 index 000000000..6f3176032 --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 816ad8/Card Inspiring Presence 01a894.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 01a894 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Inspiring Presence +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 24.4394 + posY: 1.35615575 + posZ: 87.7904 + rotX: 0.0208057575 + rotY: 270.011749 + rotZ: 0.016775107 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 816ad8/Card Interrogate 097d2b.yaml b/unpacked/Custom_Model_Bag Guardian 816ad8/Card Interrogate 097d2b.yaml new file mode 100644 index 000000000..f3094bef0 --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 816ad8/Card Interrogate 097d2b.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 097d2b +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Interrogate +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.284 + posY: 1.344873 + posZ: 55.6412 + rotX: 0.0208005458 + rotY: 270.02887 + rotZ: 0.0167810414 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 816ad8/Card Intrepid 96ab3f.yaml b/unpacked/Custom_Model_Bag Guardian 816ad8/Card Intrepid 96ab3f.yaml new file mode 100644 index 000000000..beed42f8f --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 816ad8/Card Intrepid 96ab3f.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 226304 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 96ab3f +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Intrepid +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 24.4394 + posY: 1.35548258 + posZ: 85.4904 + rotX: 0.0208054464 + rotY: 270.0122 + rotZ: 0.0167750288 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 816ad8/Card Leadership bc008b.yaml b/unpacked/Custom_Model_Bag Guardian 816ad8/Card Leadership bc008b.yaml new file mode 100644 index 000000000..8bfd3468a --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 816ad8/Card Leadership bc008b.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: bc008b +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Leadership +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 24.4394 + posY: 1.356829 + posZ: 90.0904 + rotX: 0.0208059531 + rotY: 270.012054 + rotZ: 0.0167749375 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 816ad8/Card Let me handle this! 2dc5e0.yaml b/unpacked/Custom_Model_Bag Guardian 816ad8/Card Let me handle this! 2dc5e0.yaml new file mode 100644 index 000000000..60077cef6 --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 816ad8/Card Let me handle this! 2dc5e0.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 2dc5e0 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '"Let me handle this!"' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.2841 + posY: 1.35564482 + posZ: 92.4412 + rotX: 0.020800788 + rotY: 270.028442 + rotZ: 0.0167810936 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 816ad8/Card Machete 4dc805.yaml b/unpacked/Custom_Model_Bag Guardian 816ad8/Card Machete 4dc805.yaml new file mode 100644 index 000000000..1eba30e06 --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 816ad8/Card Machete 4dc805.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 4dc805 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Machete +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.5689 + posY: 1.34440672 + posZ: 64.8607 + rotX: 0.02081916 + rotY: 269.96814 + rotZ: 0.0167604219 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 816ad8/Card On The Hunt 5bfdde.yaml b/unpacked/Custom_Model_Bag Guardian 816ad8/Card On The Hunt 5bfdde.yaml new file mode 100644 index 000000000..b92663b9e --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 816ad8/Card On The Hunt 5bfdde.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 5bfdde +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: On The Hunt +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.2841 + posY: 1.34823918 + posZ: 67.1411 + rotX: 0.0208001342 + rotY: 270.031372 + rotZ: 0.0167821646 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 816ad8/Card Physical Training 5c070f.yaml b/unpacked/Custom_Model_Bag Guardian 816ad8/Card Physical Training 5c070f.yaml new file mode 100644 index 000000000..b0782b006 --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 816ad8/Card Physical Training 5c070f.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 5c070f +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Physical Training +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.5688982 + posY: 1.3497926 + posZ: 83.2607 + rotX: 0.0208179224 + rotY: 269.9692 + rotZ: 0.0167596564 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 816ad8/Card Prepared for the Worst 2f9f0f.yaml b/unpacked/Custom_Model_Bag Guardian 816ad8/Card Prepared for the Worst 2f9f0f.yaml new file mode 100644 index 000000000..bdf8ebbfb --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 816ad8/Card Prepared for the Worst 2f9f0f.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 2f9f0f +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Prepared for the Worst +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.2841 + posY: 1.35093212 + posZ: 76.3412 + rotX: 0.0208005086 + rotY: 270.028931 + rotZ: 0.0167810246 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 816ad8/Card Scene of the Crime acdb71.yaml b/unpacked/Custom_Model_Bag Guardian 816ad8/Card Scene of the Crime acdb71.yaml new file mode 100644 index 000000000..ac5b0e2d1 --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 816ad8/Card Scene of the Crime acdb71.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: acdb71 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Scene of the Crime +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.2842 + posY: 1.34419978 + posZ: 53.3412 + rotX: 0.0208008923 + rotY: 270.028931 + rotZ: 0.016781237 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 816ad8/Card Second Wind 12f935.yaml b/unpacked/Custom_Model_Bag Guardian 816ad8/Card Second Wind 12f935.yaml new file mode 100644 index 000000000..53cc6a22a --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 816ad8/Card Second Wind 12f935.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 12f935 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Second Wind +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.2841 + posY: 1.34689271 + posZ: 62.5412 + rotX: 0.0208009388 + rotY: 270.028931 + rotZ: 0.0167810582 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 816ad8/Card Self-Sacrifice 597950.yaml b/unpacked/Custom_Model_Bag Guardian 816ad8/Card Self-Sacrifice 597950.yaml new file mode 100644 index 000000000..eca602da2 --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 816ad8/Card Self-Sacrifice 597950.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: '597950' +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Self-Sacrifice +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 24.4394 + posY: 1.35480928 + posZ: 83.1904 + rotX: 0.0208063237 + rotY: 270.0088 + rotZ: 0.0167738646 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 816ad8/Card Solemn Vow 105ebf.yaml b/unpacked/Custom_Model_Bag Guardian 816ad8/Card Solemn Vow 105ebf.yaml new file mode 100644 index 000000000..c389b95db --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 816ad8/Card Solemn Vow 105ebf.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 446826 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '4468': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025943109/9C5481E6DFEACD450C5522F884E615482281DDB1/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 105ebf +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Solemn Vow +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.5688982 + posY: 1.35248566 + posZ: 92.4607 + rotX: 0.020818226 + rotY: 269.96936 + rotZ: 0.0167591851 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 816ad8/Card Something Worth Fighting For c2d22a.yaml b/unpacked/Custom_Model_Bag Guardian 816ad8/Card Something Worth Fighting For c2d22a.yaml new file mode 100644 index 000000000..7d5150bba --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 816ad8/Card Something Worth Fighting For c2d22a.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: c2d22a +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Something Worth Fighting For +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.5689 + posY: 1.34373355 + posZ: 62.5608 + rotX: 0.0208182372 + rotY: 269.9693 + rotZ: 0.0167596843 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 816ad8/Card Steadfast 1cfcbe.yaml b/unpacked/Custom_Model_Bag Guardian 816ad8/Card Steadfast 1cfcbe.yaml new file mode 100644 index 000000000..ce1113385 --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 816ad8/Card Steadfast 1cfcbe.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 446906 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '4469': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025943109/9C5481E6DFEACD450C5522F884E615482281DDB1/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 1cfcbe +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Steadfast +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 24.4394 + posY: 1.35413611 + posZ: 80.8904 + rotX: 0.0208059549 + rotY: 270.01178 + rotZ: 0.0167750157 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 816ad8/Card Survival Knife 40785e.yaml b/unpacked/Custom_Model_Bag Guardian 816ad8/Card Survival Knife 40785e.yaml new file mode 100644 index 000000000..74468e543 --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 816ad8/Card Survival Knife 40785e.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 40785e +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Survival Knife +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.568902 + posY: 1.35046589 + posZ: 85.5608 + rotX: 0.0208182223 + rotY: 269.969177 + rotZ: 0.0167591535 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 816ad8/Card Take the Initiative 2ba495.yaml b/unpacked/Custom_Model_Bag Guardian 816ad8/Card Take the Initiative 2ba495.yaml new file mode 100644 index 000000000..69201063e --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 816ad8/Card Take the Initiative 2ba495.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 2ba495 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Take the Initiative +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 24.4394 + posY: 1.35346282 + posZ: 78.5904 + rotX: 0.0208045077 + rotY: 270.015076 + rotZ: 0.01677606 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 816ad8/Card Taunt 0f2742.yaml b/unpacked/Custom_Model_Bag Guardian 816ad8/Card Taunt 0f2742.yaml new file mode 100644 index 000000000..d9c207b8b --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 816ad8/Card Taunt 0f2742.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 0f2742 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Taunt +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.2841 + posY: 1.35362518 + posZ: 85.5412 + rotX: 0.020800624 + rotY: 270.029144 + rotZ: 0.0167813525 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 816ad8/Card Teamwork cac7d0.yaml b/unpacked/Custom_Model_Bag Guardian 816ad8/Card Teamwork cac7d0.yaml new file mode 100644 index 000000000..4b991413d --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 816ad8/Card Teamwork cac7d0.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: cac7d0 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Teamwork +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.2841 + posY: 1.35497165 + posZ: 90.1413 + rotX: 0.0208007786 + rotY: 270.02887 + rotZ: 0.016781209 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 816ad8/Card Tetsuo Mori 756ec4.yaml b/unpacked/Custom_Model_Bag Guardian 816ad8/Card Tetsuo Mori 756ec4.yaml new file mode 100644 index 000000000..6208c0e3f --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 816ad8/Card Tetsuo Mori 756ec4.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Too Noble for His Own Good +GMNotes: '' +GUID: 756ec4 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Tetsuo Mori +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.5688982 + posY: 1.34306026 + posZ: 60.2608 + rotX: 0.020815568 + rotY: 269.978149 + rotZ: 0.0167623758 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 816ad8/Card Trench Knife 6d1f49.yaml b/unpacked/Custom_Model_Bag Guardian 816ad8/Card Trench Knife 6d1f49.yaml new file mode 100644 index 000000000..821ec085d --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 816ad8/Card Trench Knife 6d1f49.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 6d1f49 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Trench Knife +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.5688982 + posY: 1.35181236 + posZ: 90.1608 + rotX: 0.02081805 + rotY: 269.9692 + rotZ: 0.0167594049 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 816ad8/Card True Grit 8dbe76.yaml b/unpacked/Custom_Model_Bag Guardian 816ad8/Card True Grit 8dbe76.yaml new file mode 100644 index 000000000..c791075a8 --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 816ad8/Card True Grit 8dbe76.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 226329 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 8dbe76 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: True Grit +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.5708981 + posY: 1.34238768 + posZ: 57.9606 + rotX: 0.0208180156 + rotY: 269.969238 + rotZ: 0.0167594235 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 816ad8/Card Trusted 60a283.yaml b/unpacked/Custom_Model_Bag Guardian 816ad8/Card Trusted 60a283.yaml new file mode 100644 index 000000000..9dd835ae7 --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 816ad8/Card Trusted 60a283.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 60a283 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Trusted +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.2841 + posY: 1.347566 + posZ: 64.8411 + rotX: 0.020800801 + rotY: 270.028229 + rotZ: 0.0167809371 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 816ad8/Card Venturer b26d91.yaml b/unpacked/Custom_Model_Bag Guardian 816ad8/Card Venturer b26d91.yaml new file mode 100644 index 000000000..c6456d497 --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 816ad8/Card Venturer b26d91.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 226332 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: b26d91 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Venturer +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 7.015798 + posY: 1.35119176 + posZ: 92.4487 + rotX: 0.0208183769 + rotY: 269.9693 + rotZ: 0.0167595055 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 816ad8/Card Vicious Blow 12a0ab.yaml b/unpacked/Custom_Model_Bag Guardian 816ad8/Card Vicious Blow 12a0ab.yaml new file mode 100644 index 000000000..ad19adb29 --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 816ad8/Card Vicious Blow 12a0ab.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 12a0ab +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Vicious Blow +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 24.4394 + posY: 1.35278952 + posZ: 76.2904 + rotX: 0.0208045226 + rotY: 270.01593 + rotZ: 0.0167761054 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 816ad8/Card Warning Shot eafd11.yaml b/unpacked/Custom_Model_Bag Guardian 816ad8/Card Warning Shot eafd11.yaml new file mode 100644 index 000000000..1b75b5cfd --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 816ad8/Card Warning Shot eafd11.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 292814 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: eafd11 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Warning Shot +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.2683 + posY: 1.34352386 + posZ: 51.0517 + rotX: 0.0208002049 + rotY: 270.0318 + rotZ: 0.016782131 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 816ad8/Custom_Model_Bag Guardian 888318.ttslua b/unpacked/Custom_Model_Bag Guardian 816ad8/Custom_Model_Bag Guardian 888318.ttslua new file mode 100644 index 000000000..f882a7f09 --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 816ad8/Custom_Model_Bag Guardian 888318.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,0,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 + 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=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,0,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,0,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,0,0}, height=350, width=750, + 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}, rotation={0,0,0}, height=350, width=800, + font_size=250, color={0,0,0}, font_color={1,1,1} + }) +-- self.createButton({ +-- label="Setup", click_function="buttonClick_setup", function_owner=self, +-- position={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.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 Guardian 816ad8/Custom_Model_Bag Guardian 888318.yaml b/unpacked/Custom_Model_Bag Guardian 816ad8/Custom_Model_Bag Guardian 888318.yaml new file mode 100644 index 000000000..5cecab98a --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 816ad8/Custom_Model_Bag Guardian 888318.yaml @@ -0,0 +1,102 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +ContainedObjects: +- !include 'Custom_Model_Bag Guardian 888318/Card Daring 56e3cc.yaml' +- !include 'Custom_Model_Bag Guardian 888318/Card Leadership bc008b.yaml' +- !include 'Custom_Model_Bag Guardian 888318/Card Inspiring Presence 01a894.yaml' +- !include 'Custom_Model_Bag Guardian 888318/Card Intrepid 96ab3f.yaml' +- !include 'Custom_Model_Bag Guardian 888318/Card Self-Sacrifice 597950.yaml' +- !include 'Custom_Model_Bag Guardian 888318/Card Steadfast 1cfcbe.yaml' +- !include 'Custom_Model_Bag Guardian 888318/Card Take the Initiative 2ba495.yaml' +- !include 'Custom_Model_Bag Guardian 888318/Card Vicious Blow 12a0ab.yaml' +- !include 'Custom_Model_Bag Guardian 888318/Card Prepared for the Worst 2f9f0f.yaml' +- !include 'Custom_Model_Bag Guardian 888318/Card First Watch 533260.yaml' +- !include 'Custom_Model_Bag Guardian 888318/Card Eat lead! 13b4ea.yaml' +- !include 'Custom_Model_Bag Guardian 888318/Card Evidence! 925c25.yaml' +- !include 'Custom_Model_Bag Guardian 888318/Card Taunt 0f2742.yaml' +- !include 'Custom_Model_Bag Guardian 888318/Card I''ll see you in hell! e367cc.yaml' +- !include 'Custom_Model_Bag Guardian 888318/Card Let me handle this! 2dc5e0.yaml' +- !include 'Custom_Model_Bag Guardian 888318/Card Teamwork cac7d0.yaml' +- !include 'Custom_Model_Bag Guardian 888318/Card Heroic Rescue 07bae2.yaml' +- !include 'Custom_Model_Bag Guardian 888318/Card If it bleeds... 80b9b7.yaml' +- !include 'Custom_Model_Bag Guardian 888318/Card Dodge d4d676.yaml' +- !include 'Custom_Model_Bag Guardian 888318/Card On The Hunt 5bfdde.yaml' +- !include 'Custom_Model_Bag Guardian 888318/Card Trusted 60a283.yaml' +- !include 'Custom_Model_Bag Guardian 888318/Card Second Wind 12f935.yaml' +- !include 'Custom_Model_Bag Guardian 888318/Card Delay the Inevitable b5d6e5.yaml' +- !include 'Custom_Model_Bag Guardian 888318/Card Emergency Aid 05c26b.yaml' +- !include 'Custom_Model_Bag Guardian 888318/Card Interrogate 097d2b.yaml' +- !include 'Custom_Model_Bag Guardian 888318/Card Scene of the Crime acdb71.yaml' +- !include 'Custom_Model_Bag Guardian 888318/Card Warning Shot eafd11.yaml' +- !include 'Custom_Model_Bag Guardian 888318/Card Dynamite Blast 21382f.yaml' +- !include 'Custom_Model_Bag Guardian 888318/Card Beat Cop 9fedc2.yaml' +- !include 'Custom_Model_Bag Guardian 888318/Card Alice Luxley 734a8a.yaml' +- !include 'Custom_Model_Bag Guardian 888318/Card .35 Winchester ebdd78.yaml' +- !include 'Custom_Model_Bag Guardian 888318/Card .45 Automatic c02b12.yaml' +- !include 'Custom_Model_Bag Guardian 888318/Card True Grit 8dbe76.yaml' +- !include 'Custom_Model_Bag Guardian 888318/Card Tetsuo Mori 756ec4.yaml' +- !include 'Custom_Model_Bag Guardian 888318/Card Something Worth Fighting For c2d22a.yaml' +- !include 'Custom_Model_Bag Guardian 888318/Card Machete 4dc805.yaml' +- !include 'Custom_Model_Bag Guardian 888318/Card Guard Dog 3801f7.yaml' +- !include 'Custom_Model_Bag Guardian 888318/Card Enchanted Blade ed16f2.yaml' +- !include 'Custom_Model_Bag Guardian 888318/Card .32 Colt bb5684.yaml' +- !include 'Custom_Model_Bag Guardian 888318/Card Handcuffs 54afcb.yaml' +- !include 'Custom_Model_Bag Guardian 888318/Card Hallowed Mirror dc2bff.yaml' +- !include 'Custom_Model_Bag Guardian 888318/Card Bandolier a48416.yaml' +- !include 'Custom_Model_Bag Guardian 888318/Card First Aid 676b1e.yaml' +- !include 'Custom_Model_Bag Guardian 888318/Card Physical Training 5c070f.yaml' +- !include 'Custom_Model_Bag Guardian 888318/Card Survival Knife 40785e.yaml' +- !include 'Custom_Model_Bag Guardian 888318/Card Blackjack 19537a.yaml' +- !include 'Custom_Model_Bag Guardian 888318/Card Trench Knife 6d1f49.yaml' +- !include 'Custom_Model_Bag Guardian 888318/Card Solemn Vow 105ebf.yaml' +- !include 'Custom_Model_Bag Guardian 888318/Card Venturer b26d91.yaml' +- !include 'Custom_Model_Bag Guardian 888318/Card .45 Thompson bd5974.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/952965722516201848/72B3B9E2B59F25FEC82412AC22245D03655A4558/ + MaterialIndex: 3 + MeshURL: https://pastebin.com/raw/ALrYhQGb + NormalURL: '' + TypeIndex: 6 +Description: '' +GMNotes: '' +GUID: '888318' +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Model_Bag Guardian 888318.ttslua' +LuaScriptState: '{"ml":{"01a894":{"lock":false,"pos":{"x":24.4394,"y":1.3562,"z":87.7904},"rot":{"x":0.0208,"y":270.0117,"z":0.0168}},"05c26b":{"lock":false,"pos":{"x":19.2861,"y":1.3455,"z":57.941},"rot":{"x":0.0208,"y":270.0318,"z":0.0168}},"07bae2":{"lock":false,"pos":{"x":19.2841,"y":1.3503,"z":74.0412},"rot":{"x":0.0208,"y":270.0287,"z":0.0168}},"097d2b":{"lock":false,"pos":{"x":19.284,"y":1.3449,"z":55.6412},"rot":{"x":0.0208,"y":270.0289,"z":0.0168}},"0f2742":{"lock":false,"pos":{"x":19.2841,"y":1.3536,"z":85.5412},"rot":{"x":0.0208,"y":270.0291,"z":0.0168}},"105ebf":{"lock":false,"pos":{"x":10.5689,"y":1.3525,"z":92.4607},"rot":{"x":0.0208,"y":269.9694,"z":0.0168}},"12a0ab":{"lock":false,"pos":{"x":24.4394,"y":1.3528,"z":76.2904},"rot":{"x":0.0208,"y":270.0159,"z":0.0168}},"12f935":{"lock":false,"pos":{"x":19.2841,"y":1.3469,"z":62.5412},"rot":{"x":0.0208,"y":270.0289,"z":0.0168}},"13b4ea":{"lock":false,"pos":{"x":19.2841,"y":1.3523,"z":80.9412},"rot":{"x":0.0208,"y":270.0289,"z":0.0168}},"19537a":{"lock":false,"pos":{"x":10.5689,"y":1.3511,"z":87.8608},"rot":{"x":0.0208,"y":269.9691,"z":0.0168}},"1cfcbe":{"lock":false,"pos":{"x":24.4394,"y":1.3541,"z":80.8904},"rot":{"x":0.0208,"y":270.0118,"z":0.0168}},"21382f":{"lock":false,"pos":{"x":19.2682,"y":1.3428,"z":48.7453},"rot":{"x":0.0208,"y":270.0312,"z":0.0168}},"2ba495":{"lock":false,"pos":{"x":24.4394,"y":1.3535,"z":78.5904},"rot":{"x":0.0208,"y":270.0151,"z":0.0168}},"2dc5e0":{"lock":false,"pos":{"x":19.2841,"y":1.3556,"z":92.4412},"rot":{"x":0.0208,"y":270.0284,"z":0.0168}},"2f9f0f":{"lock":false,"pos":{"x":19.2841,"y":1.3509,"z":76.3412},"rot":{"x":0.0208,"y":270.0289,"z":0.0168}},"3801f7":{"lock":false,"pos":{"x":10.5689,"y":1.3451,"z":67.1607},"rot":{"x":0.0208,"y":269.9694,"z":0.0168}},"40785e":{"lock":false,"pos":{"x":10.5689,"y":1.3505,"z":85.5608},"rot":{"x":0.0208,"y":269.9692,"z":0.0168}},"4dc805":{"lock":false,"pos":{"x":10.5689,"y":1.3444,"z":64.8607},"rot":{"x":0.0208,"y":269.9684,"z":0.0168}},"533260":{"lock":false,"pos":{"x":19.2841,"y":1.3516,"z":78.6412},"rot":{"x":0.0208,"y":269.9898,"z":0.0168}},"54afcb":{"lock":false,"pos":{"x":10.5689,"y":1.3471,"z":74.0607},"rot":{"x":0.0208,"y":269.9692,"z":0.0168}},"56e3cc":{"lock":false,"pos":{"x":24.4394,"y":1.3575,"z":92.3904},"rot":{"x":0.0208,"y":269.9736,"z":0.0168}},"597950":{"lock":false,"pos":{"x":24.4394,"y":1.3548,"z":83.1904},"rot":{"x":0.0208,"y":270.0088,"z":0.0168}},"5bfdde":{"lock":false,"pos":{"x":19.2841,"y":1.3482,"z":67.1411},"rot":{"x":0.0208,"y":270.0314,"z":0.0168}},"5c070f":{"lock":false,"pos":{"x":10.5689,"y":1.3498,"z":83.2607},"rot":{"x":0.0208,"y":269.9692,"z":0.0168}},"60a283":{"lock":false,"pos":{"x":19.2841,"y":1.3476,"z":64.8411},"rot":{"x":0.0208,"y":270.0282,"z":0.0168}},"676b1e":{"lock":false,"pos":{"x":10.5689,"y":1.3491,"z":80.9607},"rot":{"x":0.0208,"y":269.9692,"z":0.0168}},"6d1f49":{"lock":false,"pos":{"x":10.5689,"y":1.3518,"z":90.1608},"rot":{"x":0.0208,"y":269.9692,"z":0.0168}},"734a8a":{"lock":false,"pos":{"x":10.5531,"y":1.3404,"z":51.0713},"rot":{"x":0.0208,"y":269.9692,"z":0.0168}},"756ec4":{"lock":false,"pos":{"x":10.5689,"y":1.3431,"z":60.2608},"rot":{"x":0.0208,"y":269.9781,"z":0.0168}},"80b9b7":{"lock":false,"pos":{"x":19.2841,"y":1.3496,"z":71.7415},"rot":{"x":0.0208,"y":270.029,"z":0.0168}},"8dbe76":{"lock":false,"pos":{"x":10.5709,"y":1.3424,"z":57.9606},"rot":{"x":0.0208,"y":269.9692,"z":0.0168}},"925c25":{"lock":false,"pos":{"x":19.2841,"y":1.353,"z":83.2412},"rot":{"x":0.0208,"y":270.0285,"z":0.0168}},"96ab3f":{"lock":false,"pos":{"x":24.4394,"y":1.3555,"z":85.4904},"rot":{"x":0.0208,"y":270.0122,"z":0.0168}},"9fedc2":{"lock":false,"pos":{"x":10.5529,"y":1.3397,"z":48.764},"rot":{"x":0.0208,"y":269.9693,"z":0.0168}},"a48416":{"lock":false,"pos":{"x":10.5689,"y":1.3484,"z":78.6607},"rot":{"x":0.0208,"y":269.9693,"z":0.0168}},"acdb71":{"lock":false,"pos":{"x":19.2842,"y":1.3442,"z":53.3412},"rot":{"x":0.0208,"y":270.0289,"z":0.0168}},"b26d91":{"lock":false,"pos":{"x":7.0158,"y":1.3512,"z":92.4487},"rot":{"x":0.0208,"y":269.9693,"z":0.0168}},"b5d6e5":{"lock":false,"pos":{"x":19.2841,"y":1.3462,"z":60.2412},"rot":{"x":0.0208,"y":270.0279,"z":0.0168}},"bb5684":{"lock":false,"pos":{"x":10.5689,"y":1.3464,"z":71.7607},"rot":{"x":0.0208,"y":269.9692,"z":0.0168}},"bc008b":{"lock":false,"pos":{"x":24.4394,"y":1.3568,"z":90.0904},"rot":{"x":0.0208,"y":270.0121,"z":0.0168}},"bd5974":{"lock":false,"pos":{"x":7.0158,"y":1.3505,"z":90.1487},"rot":{"x":0.0208,"y":269.9669,"z":0.0168}},"c02b12":{"lock":false,"pos":{"x":10.5688,"y":1.3417,"z":55.6608},"rot":{"x":0.0208,"y":269.9693,"z":0.0168}},"c2d22a":{"lock":false,"pos":{"x":10.5689,"y":1.3437,"z":62.5608},"rot":{"x":0.0208,"y":269.9693,"z":0.0168}},"cac7d0":{"lock":false,"pos":{"x":19.2841,"y":1.355,"z":90.1413},"rot":{"x":0.0208,"y":270.0289,"z":0.0168}},"d4d676":{"lock":false,"pos":{"x":19.2841,"y":1.3489,"z":69.4412},"rot":{"x":0.0208,"y":270.0287,"z":0.0168}},"dc2bff":{"lock":false,"pos":{"x":10.5689,"y":1.3478,"z":76.3607},"rot":{"x":0.0208,"y":269.9691,"z":0.0168}},"e367cc":{"lock":false,"pos":{"x":19.2841,"y":1.3543,"z":87.8412},"rot":{"x":0.0208,"y":270.0289,"z":0.0168}},"eafd11":{"lock":false,"pos":{"x":19.2683,"y":1.3435,"z":51.0517},"rot":{"x":0.0208,"y":270.0318,"z":0.0168}},"ebdd78":{"lock":false,"pos":{"x":10.5689,"y":1.341,"z":53.3608},"rot":{"x":0.0208,"y":269.9969,"z":0.0168}},"ed16f2":{"lock":false,"pos":{"x":10.5689,"y":1.3458,"z":69.4607},"rot":{"x":0.0208,"y":269.9693,"z":0.0168}}}}' +MaterialIndex: -1 +MeshIndex: -1 +Name: Custom_Model_Bag +Nickname: Guardian +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 32.9836235 + posY: 1.64826024 + posZ: 76.405 + rotX: 0.0336023979 + rotY: 270.0171 + rotZ: 0.0124417963 + scaleX: 1.2 + scaleY: 1.2 + scaleZ: 1.2 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 816ad8/Custom_Model_Bag Guardian 888318/Card .32 Colt bb5684.yaml b/unpacked/Custom_Model_Bag Guardian 816ad8/Custom_Model_Bag Guardian 888318/Card .32 Colt bb5684.yaml new file mode 100644 index 000000000..4983376c5 --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 816ad8/Custom_Model_Bag Guardian 888318/Card .32 Colt bb5684.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: bb5684 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: .32 Colt +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.568902 + posY: 1.34642637 + posZ: 71.7607 + rotX: 0.02081799 + rotY: 269.969177 + rotZ: 0.0167596713 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 816ad8/Custom_Model_Bag Guardian 888318/Card .35 Winchester ebdd78.yaml b/unpacked/Custom_Model_Bag Guardian 816ad8/Custom_Model_Bag Guardian 888318/Card .35 Winchester ebdd78.yaml new file mode 100644 index 000000000..6851256ce --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 816ad8/Custom_Model_Bag Guardian 888318/Card .35 Winchester ebdd78.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Item. Weapon. Firearm. +GMNotes: '' +GUID: ebdd78 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: .35 Winchester +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.5688934 + posY: 1.34104061 + posZ: 53.36077 + rotX: 0.02081042 + rotY: 269.996918 + rotZ: 0.0167699363 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 816ad8/Custom_Model_Bag Guardian 888318/Card .45 Automatic c02b12.yaml b/unpacked/Custom_Model_Bag Guardian 816ad8/Custom_Model_Bag Guardian 888318/Card .45 Automatic c02b12.yaml new file mode 100644 index 000000000..fe264c9a9 --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 816ad8/Custom_Model_Bag Guardian 888318/Card .45 Automatic c02b12.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: c02b12 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: .45 Automatic +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.5688019 + posY: 1.34171379 + posZ: 55.6608 + rotX: 0.0208181273 + rotY: 269.96933 + rotZ: 0.0167596973 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 816ad8/Custom_Model_Bag Guardian 888318/Card .45 Thompson bd5974.yaml b/unpacked/Custom_Model_Bag Guardian 816ad8/Custom_Model_Bag Guardian 888318/Card .45 Thompson bd5974.yaml new file mode 100644 index 000000000..6b196901b --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 816ad8/Custom_Model_Bag Guardian 888318/Card .45 Thompson bd5974.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: bd5974 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: .45 Thompson +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 7.01576567 + posY: 1.35051847 + posZ: 90.14873 + rotX: 0.0208175089 + rotY: 269.966949 + rotZ: 0.0167568848 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 816ad8/Custom_Model_Bag Guardian 888318/Card Alice Luxley 734a8a.yaml b/unpacked/Custom_Model_Bag Guardian 816ad8/Custom_Model_Bag Guardian 888318/Card Alice Luxley 734a8a.yaml new file mode 100644 index 000000000..2f89f2c77 --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 816ad8/Custom_Model_Bag Guardian 888318/Card Alice Luxley 734a8a.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Fearless Flatfoot +GMNotes: '' +GUID: 734a8a +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Alice Luxley +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.5530748 + posY: 1.34036469 + posZ: 51.0713348 + rotX: 0.0208195467 + rotY: 269.969177 + rotZ: 0.016760584 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 816ad8/Custom_Model_Bag Guardian 888318/Card Bandolier a48416.yaml b/unpacked/Custom_Model_Bag Guardian 816ad8/Custom_Model_Bag Guardian 888318/Card Bandolier a48416.yaml new file mode 100644 index 000000000..30653d2cd --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 816ad8/Custom_Model_Bag Guardian 888318/Card Bandolier a48416.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: a48416 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Bandolier +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.5688982 + posY: 1.34844625 + posZ: 78.6607 + rotX: 0.020818105 + rotY: 269.9693 + rotZ: 0.0167592112 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 816ad8/Custom_Model_Bag Guardian 888318/Card Beat Cop 9fedc2.yaml b/unpacked/Custom_Model_Bag Guardian 816ad8/Custom_Model_Bag Guardian 888318/Card Beat Cop 9fedc2.yaml new file mode 100644 index 000000000..a45573f93 --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 816ad8/Custom_Model_Bag Guardian 888318/Card Beat Cop 9fedc2.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 9fedc2 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Beat Cop +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.5529051 + posY: 1.33968914 + posZ: 48.7640076 + rotX: 0.0208193641 + rotY: 269.96933 + rotZ: 0.0167608112 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 816ad8/Custom_Model_Bag Guardian 888318/Card Blackjack 19537a.yaml b/unpacked/Custom_Model_Bag Guardian 816ad8/Custom_Model_Bag Guardian 888318/Card Blackjack 19537a.yaml new file mode 100644 index 000000000..f91931952 --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 816ad8/Custom_Model_Bag Guardian 888318/Card Blackjack 19537a.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 19537a +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Blackjack +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.5689 + posY: 1.35113919 + posZ: 87.8608 + rotX: 0.02081833 + rotY: 269.969147 + rotZ: 0.0167595334 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 816ad8/Custom_Model_Bag Guardian 888318/Card Daring 56e3cc.yaml b/unpacked/Custom_Model_Bag Guardian 816ad8/Custom_Model_Bag Guardian 888318/Card Daring 56e3cc.yaml new file mode 100644 index 000000000..e9c764506 --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 816ad8/Custom_Model_Bag Guardian 888318/Card Daring 56e3cc.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 56e3cc +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Daring +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 24.4394 + posY: 1.35750222 + posZ: 92.3904 + rotX: 0.0208167937 + rotY: 269.9736 + rotZ: 0.01676101 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 816ad8/Custom_Model_Bag Guardian 888318/Card Delay the Inevitable b5d6e5.yaml b/unpacked/Custom_Model_Bag Guardian 816ad8/Custom_Model_Bag Guardian 888318/Card Delay the Inevitable b5d6e5.yaml new file mode 100644 index 000000000..932b08ed9 --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 816ad8/Custom_Model_Bag Guardian 888318/Card Delay the Inevitable b5d6e5.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 447007 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: b5d6e5 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Delay the Inevitable +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.2841 + posY: 1.34621942 + posZ: 60.2412 + rotX: 0.0208009146 + rotY: 270.0279 + rotZ: 0.0167807285 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 816ad8/Custom_Model_Bag Guardian 888318/Card Dodge d4d676.yaml b/unpacked/Custom_Model_Bag Guardian 816ad8/Custom_Model_Bag Guardian 888318/Card Dodge d4d676.yaml new file mode 100644 index 000000000..8fce66875 --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 816ad8/Custom_Model_Bag Guardian 888318/Card Dodge d4d676.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: d4d676 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Dodge +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.2841 + posY: 1.34891248 + posZ: 69.4412 + rotX: 0.0208008848 + rotY: 270.028717 + rotZ: 0.0167811066 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 816ad8/Custom_Model_Bag Guardian 888318/Card Dynamite Blast 21382f.yaml b/unpacked/Custom_Model_Bag Guardian 816ad8/Custom_Model_Bag Guardian 888318/Card Dynamite Blast 21382f.yaml new file mode 100644 index 000000000..619591867 --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 816ad8/Custom_Model_Bag Guardian 888318/Card Dynamite Blast 21382f.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 21382f +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Dynamite Blast +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.2682 + posY: 1.34284878 + posZ: 48.7453 + rotX: 0.0208000969 + rotY: 270.031219 + rotZ: 0.0167820957 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 816ad8/Custom_Model_Bag Guardian 888318/Card Eat lead! 13b4ea.yaml b/unpacked/Custom_Model_Bag Guardian 816ad8/Custom_Model_Bag Guardian 888318/Card Eat lead! 13b4ea.yaml new file mode 100644 index 000000000..d87f465ff --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 816ad8/Custom_Model_Bag Guardian 888318/Card Eat lead! 13b4ea.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 447123 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '4471': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025943109/9C5481E6DFEACD450C5522F884E615482281DDB1/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 13b4ea +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '"Eat lead!"' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.2841 + posY: 1.35227859 + posZ: 80.9412 + rotX: 0.0208007842 + rotY: 270.028931 + rotZ: 0.0167812 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 816ad8/Custom_Model_Bag Guardian 888318/Card Emergency Aid 05c26b.yaml b/unpacked/Custom_Model_Bag Guardian 816ad8/Custom_Model_Bag Guardian 888318/Card Emergency Aid 05c26b.yaml new file mode 100644 index 000000000..5129d415e --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 816ad8/Custom_Model_Bag Guardian 888318/Card Emergency Aid 05c26b.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 05c26b +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Emergency Aid +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.2861 + posY: 1.34554684 + posZ: 57.941 + rotX: 0.0207999013 + rotY: 270.0318 + rotZ: 0.0167823434 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 816ad8/Custom_Model_Bag Guardian 888318/Card Enchanted Blade ed16f2.yaml b/unpacked/Custom_Model_Bag Guardian 816ad8/Custom_Model_Bag Guardian 888318/Card Enchanted Blade ed16f2.yaml new file mode 100644 index 000000000..07524058f --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 816ad8/Custom_Model_Bag Guardian 888318/Card Enchanted Blade ed16f2.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: ed16f2 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Enchanted Blade +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.5688982 + posY: 1.34575319 + posZ: 69.4607 + rotX: 0.0208181925 + rotY: 269.9693 + rotZ: 0.0167595726 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 816ad8/Custom_Model_Bag Guardian 888318/Card Evidence! 925c25.yaml b/unpacked/Custom_Model_Bag Guardian 816ad8/Custom_Model_Bag Guardian 888318/Card Evidence! 925c25.yaml new file mode 100644 index 000000000..ffc423c22 --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 816ad8/Custom_Model_Bag Guardian 888318/Card Evidence! 925c25.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 925c25 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Evidence! +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.2841 + posY: 1.352952 + posZ: 83.2412 + rotX: 0.0208006613 + rotY: 270.028534 + rotZ: 0.0167811587 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 816ad8/Custom_Model_Bag Guardian 888318/Card First Aid 676b1e.yaml b/unpacked/Custom_Model_Bag Guardian 816ad8/Custom_Model_Bag Guardian 888318/Card First Aid 676b1e.yaml new file mode 100644 index 000000000..b9f6cd93d --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 816ad8/Custom_Model_Bag Guardian 888318/Card First Aid 676b1e.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 676b1e +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: First Aid +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.5688982 + posY: 1.34911942 + posZ: 80.9607 + rotX: 0.0208179969 + rotY: 269.9692 + rotZ: 0.0167595837 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 816ad8/Custom_Model_Bag Guardian 888318/Card First Watch 533260.yaml b/unpacked/Custom_Model_Bag Guardian 816ad8/Custom_Model_Bag Guardian 888318/Card First Watch 533260.yaml new file mode 100644 index 000000000..d6ecd4bd5 --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 816ad8/Custom_Model_Bag Guardian 888318/Card First Watch 533260.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: '533260' +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: First Watch +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.2841 + posY: 1.35160542 + posZ: 78.6412 + rotX: 0.02081224 + rotY: 269.989838 + rotZ: 0.0167666413 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 816ad8/Custom_Model_Bag Guardian 888318/Card Guard Dog 3801f7.yaml b/unpacked/Custom_Model_Bag Guardian 816ad8/Custom_Model_Bag Guardian 888318/Card Guard Dog 3801f7.yaml new file mode 100644 index 000000000..c2407e252 --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 816ad8/Custom_Model_Bag Guardian 888318/Card Guard Dog 3801f7.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 3801f7 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Guard Dog +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.5688982 + posY: 1.34508014 + posZ: 67.1607 + rotX: 0.02081797 + rotY: 269.969421 + rotZ: 0.0167594664 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 816ad8/Custom_Model_Bag Guardian 888318/Card Hallowed Mirror dc2bff.yaml b/unpacked/Custom_Model_Bag Guardian 816ad8/Custom_Model_Bag Guardian 888318/Card Hallowed Mirror dc2bff.yaml new file mode 100644 index 000000000..1efe07a20 --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 816ad8/Custom_Model_Bag Guardian 888318/Card Hallowed Mirror dc2bff.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: dc2bff +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Hallowed Mirror +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.5689 + posY: 1.347773 + posZ: 76.3607 + rotX: 0.0208182149 + rotY: 269.969116 + rotZ: 0.0167595614 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 816ad8/Custom_Model_Bag Guardian 888318/Card Handcuffs 54afcb.yaml b/unpacked/Custom_Model_Bag Guardian 816ad8/Custom_Model_Bag Guardian 888318/Card Handcuffs 54afcb.yaml new file mode 100644 index 000000000..27e22eb11 --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 816ad8/Custom_Model_Bag Guardian 888318/Card Handcuffs 54afcb.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 446701 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '4467': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025943109/9C5481E6DFEACD450C5522F884E615482281DDB1/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 54afcb +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Handcuffs +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.568902 + posY: 1.34709978 + posZ: 74.0607 + rotX: 0.0208181776 + rotY: 269.969238 + rotZ: 0.0167591479 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 816ad8/Custom_Model_Bag Guardian 888318/Card Heroic Rescue 07bae2.yaml b/unpacked/Custom_Model_Bag Guardian 816ad8/Custom_Model_Bag Guardian 888318/Card Heroic Rescue 07bae2.yaml new file mode 100644 index 000000000..1c814235f --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 816ad8/Custom_Model_Bag Guardian 888318/Card Heroic Rescue 07bae2.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 07bae2 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Heroic Rescue +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.2841 + posY: 1.350259 + posZ: 74.0412 + rotX: 0.0208009183 + rotY: 270.028717 + rotZ: 0.0167811885 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 816ad8/Custom_Model_Bag Guardian 888318/Card I'll see you in hell! e367cc.yaml b/unpacked/Custom_Model_Bag Guardian 816ad8/Custom_Model_Bag Guardian 888318/Card I'll see you in hell! e367cc.yaml new file mode 100644 index 000000000..b6f0452fe --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 816ad8/Custom_Model_Bag Guardian 888318/Card I'll see you in hell! e367cc.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: e367cc +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '"I''ll see you in hell!"' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.2841 + posY: 1.35429847 + posZ: 87.8412 + rotX: 0.0208007619 + rotY: 270.028931 + rotZ: 0.01678137 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 816ad8/Custom_Model_Bag Guardian 888318/Card If it bleeds... 80b9b7.yaml b/unpacked/Custom_Model_Bag Guardian 816ad8/Custom_Model_Bag Guardian 888318/Card If it bleeds... 80b9b7.yaml new file mode 100644 index 000000000..114653097 --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 816ad8/Custom_Model_Bag Guardian 888318/Card If it bleeds... 80b9b7.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 80b9b7 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '"If it bleeds..."' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.2841 + posY: 1.34958577 + posZ: 71.7415 + rotX: 0.0208006855 + rotY: 270.028961 + rotZ: 0.0167812817 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 816ad8/Custom_Model_Bag Guardian 888318/Card Inspiring Presence 01a894.yaml b/unpacked/Custom_Model_Bag Guardian 816ad8/Custom_Model_Bag Guardian 888318/Card Inspiring Presence 01a894.yaml new file mode 100644 index 000000000..149f0125a --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 816ad8/Custom_Model_Bag Guardian 888318/Card Inspiring Presence 01a894.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 01a894 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Inspiring Presence +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 24.4394 + posY: 1.35615575 + posZ: 87.7904 + rotX: 0.0208056122 + rotY: 270.011749 + rotZ: 0.0167748854 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 816ad8/Custom_Model_Bag Guardian 888318/Card Interrogate 097d2b.yaml b/unpacked/Custom_Model_Bag Guardian 816ad8/Custom_Model_Bag Guardian 888318/Card Interrogate 097d2b.yaml new file mode 100644 index 000000000..ad5660e42 --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 816ad8/Custom_Model_Bag Guardian 888318/Card Interrogate 097d2b.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 097d2b +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Interrogate +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.284 + posY: 1.34487307 + posZ: 55.6412 + rotX: 0.0208006743 + rotY: 270.02887 + rotZ: 0.0167811755 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 816ad8/Custom_Model_Bag Guardian 888318/Card Intrepid 96ab3f.yaml b/unpacked/Custom_Model_Bag Guardian 816ad8/Custom_Model_Bag Guardian 888318/Card Intrepid 96ab3f.yaml new file mode 100644 index 000000000..ecf075052 --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 816ad8/Custom_Model_Bag Guardian 888318/Card Intrepid 96ab3f.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 226304 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 96ab3f +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Intrepid +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 24.4394 + posY: 1.35548258 + posZ: 85.4904 + rotX: 0.0208054148 + rotY: 270.0122 + rotZ: 0.0167750362 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 816ad8/Custom_Model_Bag Guardian 888318/Card Leadership bc008b.yaml b/unpacked/Custom_Model_Bag Guardian 816ad8/Custom_Model_Bag Guardian 888318/Card Leadership bc008b.yaml new file mode 100644 index 000000000..94d416add --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 816ad8/Custom_Model_Bag Guardian 888318/Card Leadership bc008b.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: bc008b +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Leadership +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 24.4394 + posY: 1.356829 + posZ: 90.0904 + rotX: 0.0208058786 + rotY: 270.012054 + rotZ: 0.0167749655 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 816ad8/Custom_Model_Bag Guardian 888318/Card Let me handle this! 2dc5e0.yaml b/unpacked/Custom_Model_Bag Guardian 816ad8/Custom_Model_Bag Guardian 888318/Card Let me handle this! 2dc5e0.yaml new file mode 100644 index 000000000..53945f108 --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 816ad8/Custom_Model_Bag Guardian 888318/Card Let me handle this! 2dc5e0.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 2dc5e0 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '"Let me handle this!"' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.2841 + posY: 1.35564482 + posZ: 92.4412 + rotX: 0.0208010916 + rotY: 270.028442 + rotZ: 0.0167810638 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 816ad8/Custom_Model_Bag Guardian 888318/Card Machete 4dc805.yaml b/unpacked/Custom_Model_Bag Guardian 816ad8/Custom_Model_Bag Guardian 888318/Card Machete 4dc805.yaml new file mode 100644 index 000000000..416ee0d08 --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 816ad8/Custom_Model_Bag Guardian 888318/Card Machete 4dc805.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 4dc805 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Machete +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.5689 + posY: 1.34440672 + posZ: 64.8607 + rotX: 0.0208177269 + rotY: 269.968445 + rotZ: 0.0167577472 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 816ad8/Custom_Model_Bag Guardian 888318/Card On The Hunt 5bfdde.yaml b/unpacked/Custom_Model_Bag Guardian 816ad8/Custom_Model_Bag Guardian 888318/Card On The Hunt 5bfdde.yaml new file mode 100644 index 000000000..d4cdd60f8 --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 816ad8/Custom_Model_Bag Guardian 888318/Card On The Hunt 5bfdde.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 5bfdde +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: On The Hunt +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.2841 + posY: 1.34823918 + posZ: 67.1411 + rotX: 0.0208000951 + rotY: 270.031372 + rotZ: 0.0167819615 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 816ad8/Custom_Model_Bag Guardian 888318/Card Physical Training 5c070f.yaml b/unpacked/Custom_Model_Bag Guardian 816ad8/Custom_Model_Bag Guardian 888318/Card Physical Training 5c070f.yaml new file mode 100644 index 000000000..21f408688 --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 816ad8/Custom_Model_Bag Guardian 888318/Card Physical Training 5c070f.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 5c070f +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Physical Training +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.5688982 + posY: 1.3497926 + posZ: 83.2607 + rotX: 0.0208180863 + rotY: 269.9692 + rotZ: 0.0167594217 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 816ad8/Custom_Model_Bag Guardian 888318/Card Prepared for the Worst 2f9f0f.yaml b/unpacked/Custom_Model_Bag Guardian 816ad8/Custom_Model_Bag Guardian 888318/Card Prepared for the Worst 2f9f0f.yaml new file mode 100644 index 000000000..a8750f56a --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 816ad8/Custom_Model_Bag Guardian 888318/Card Prepared for the Worst 2f9f0f.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 2f9f0f +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Prepared for the Worst +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.2841 + posY: 1.35093212 + posZ: 76.3412 + rotX: 0.0208004564 + rotY: 270.028931 + rotZ: 0.0167812854 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 816ad8/Custom_Model_Bag Guardian 888318/Card Scene of the Crime acdb71.yaml b/unpacked/Custom_Model_Bag Guardian 816ad8/Custom_Model_Bag Guardian 888318/Card Scene of the Crime acdb71.yaml new file mode 100644 index 000000000..c5874172d --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 816ad8/Custom_Model_Bag Guardian 888318/Card Scene of the Crime acdb71.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: acdb71 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Scene of the Crime +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.2842 + posY: 1.34419978 + posZ: 53.3412 + rotX: 0.0208007619 + rotY: 270.028931 + rotZ: 0.01678123 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 816ad8/Custom_Model_Bag Guardian 888318/Card Second Wind 12f935.yaml b/unpacked/Custom_Model_Bag Guardian 816ad8/Custom_Model_Bag Guardian 888318/Card Second Wind 12f935.yaml new file mode 100644 index 000000000..d7e74b6b7 --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 816ad8/Custom_Model_Bag Guardian 888318/Card Second Wind 12f935.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 12f935 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Second Wind +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.2841 + posY: 1.34689283 + posZ: 62.5412 + rotX: 0.0208006129 + rotY: 270.028931 + rotZ: 0.01678128 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 816ad8/Custom_Model_Bag Guardian 888318/Card Self-Sacrifice 597950.yaml b/unpacked/Custom_Model_Bag Guardian 816ad8/Custom_Model_Bag Guardian 888318/Card Self-Sacrifice 597950.yaml new file mode 100644 index 000000000..f2d29d175 --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 816ad8/Custom_Model_Bag Guardian 888318/Card Self-Sacrifice 597950.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: '597950' +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Self-Sacrifice +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 24.4394 + posY: 1.35480928 + posZ: 83.1904 + rotX: 0.0208067186 + rotY: 270.0088 + rotZ: 0.0167739466 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 816ad8/Custom_Model_Bag Guardian 888318/Card Solemn Vow 105ebf.yaml b/unpacked/Custom_Model_Bag Guardian 816ad8/Custom_Model_Bag Guardian 888318/Card Solemn Vow 105ebf.yaml new file mode 100644 index 000000000..12e9cf8fc --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 816ad8/Custom_Model_Bag Guardian 888318/Card Solemn Vow 105ebf.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 446826 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '4468': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025943109/9C5481E6DFEACD450C5522F884E615482281DDB1/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 105ebf +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Solemn Vow +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.5688982 + posY: 1.35248566 + posZ: 92.4607 + rotX: 0.0208179541 + rotY: 269.96936 + rotZ: 0.0167596769 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 816ad8/Custom_Model_Bag Guardian 888318/Card Something Worth Fighting For c2d22a.yaml b/unpacked/Custom_Model_Bag Guardian 816ad8/Custom_Model_Bag Guardian 888318/Card Something Worth Fighting For c2d22a.yaml new file mode 100644 index 000000000..2a1702818 --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 816ad8/Custom_Model_Bag Guardian 888318/Card Something Worth Fighting For c2d22a.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: c2d22a +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Something Worth Fighting For +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.568902 + posY: 1.34373343 + posZ: 62.5608 + rotX: 0.0208179764 + rotY: 269.9693 + rotZ: 0.0167595055 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 816ad8/Custom_Model_Bag Guardian 888318/Card Steadfast 1cfcbe.yaml b/unpacked/Custom_Model_Bag Guardian 816ad8/Custom_Model_Bag Guardian 888318/Card Steadfast 1cfcbe.yaml new file mode 100644 index 000000000..3d4c45904 --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 816ad8/Custom_Model_Bag Guardian 888318/Card Steadfast 1cfcbe.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 446906 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '4469': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025943109/9C5481E6DFEACD450C5522F884E615482281DDB1/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 1cfcbe +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Steadfast +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 24.4394 + posY: 1.35413611 + posZ: 80.8904 + rotX: 0.0208057184 + rotY: 270.01178 + rotZ: 0.0167750716 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 816ad8/Custom_Model_Bag Guardian 888318/Card Survival Knife 40785e.yaml b/unpacked/Custom_Model_Bag Guardian 816ad8/Custom_Model_Bag Guardian 888318/Card Survival Knife 40785e.yaml new file mode 100644 index 000000000..c1af99033 --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 816ad8/Custom_Model_Bag Guardian 888318/Card Survival Knife 40785e.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 40785e +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Survival Knife +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.568902 + posY: 1.350466 + posZ: 85.5608 + rotX: 0.0208179131 + rotY: 269.969177 + rotZ: 0.0167596135 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 816ad8/Custom_Model_Bag Guardian 888318/Card Take the Initiative 2ba495.yaml b/unpacked/Custom_Model_Bag Guardian 816ad8/Custom_Model_Bag Guardian 888318/Card Take the Initiative 2ba495.yaml new file mode 100644 index 000000000..4df0e3c59 --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 816ad8/Custom_Model_Bag Guardian 888318/Card Take the Initiative 2ba495.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 2ba495 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Take the Initiative +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 24.4394 + posY: 1.35346282 + posZ: 78.5904 + rotX: 0.02080457 + rotY: 270.015076 + rotZ: 0.0167761929 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 816ad8/Custom_Model_Bag Guardian 888318/Card Taunt 0f2742.yaml b/unpacked/Custom_Model_Bag Guardian 816ad8/Custom_Model_Bag Guardian 888318/Card Taunt 0f2742.yaml new file mode 100644 index 000000000..651edad18 --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 816ad8/Custom_Model_Bag Guardian 888318/Card Taunt 0f2742.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 0f2742 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Taunt +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.2841 + posY: 1.35362518 + posZ: 85.5412 + rotX: 0.0208006185 + rotY: 270.029144 + rotZ: 0.0167813059 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 816ad8/Custom_Model_Bag Guardian 888318/Card Teamwork cac7d0.yaml b/unpacked/Custom_Model_Bag Guardian 816ad8/Custom_Model_Bag Guardian 888318/Card Teamwork cac7d0.yaml new file mode 100644 index 000000000..72b58b514 --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 816ad8/Custom_Model_Bag Guardian 888318/Card Teamwork cac7d0.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: cac7d0 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Teamwork +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.2841 + posY: 1.35497165 + posZ: 90.1413 + rotX: 0.0208005421 + rotY: 270.02887 + rotZ: 0.016781 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 816ad8/Custom_Model_Bag Guardian 888318/Card Tetsuo Mori 756ec4.yaml b/unpacked/Custom_Model_Bag Guardian 816ad8/Custom_Model_Bag Guardian 888318/Card Tetsuo Mori 756ec4.yaml new file mode 100644 index 000000000..2043f9709 --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 816ad8/Custom_Model_Bag Guardian 888318/Card Tetsuo Mori 756ec4.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Too Noble for His Own Good +GMNotes: '' +GUID: 756ec4 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Tetsuo Mori +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.5688982 + posY: 1.34306026 + posZ: 60.2608 + rotX: 0.0208156519 + rotY: 269.978149 + rotZ: 0.016762631 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 816ad8/Custom_Model_Bag Guardian 888318/Card Trench Knife 6d1f49.yaml b/unpacked/Custom_Model_Bag Guardian 816ad8/Custom_Model_Bag Guardian 888318/Card Trench Knife 6d1f49.yaml new file mode 100644 index 000000000..defd96a50 --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 816ad8/Custom_Model_Bag Guardian 888318/Card Trench Knife 6d1f49.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 6d1f49 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Trench Knife +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.5688982 + posY: 1.35181236 + posZ: 90.1608 + rotX: 0.0208179113 + rotY: 269.9692 + rotZ: 0.016759336 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 816ad8/Custom_Model_Bag Guardian 888318/Card True Grit 8dbe76.yaml b/unpacked/Custom_Model_Bag Guardian 816ad8/Custom_Model_Bag Guardian 888318/Card True Grit 8dbe76.yaml new file mode 100644 index 000000000..90107a603 --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 816ad8/Custom_Model_Bag Guardian 888318/Card True Grit 8dbe76.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 226329 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 8dbe76 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: True Grit +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.5709019 + posY: 1.34238768 + posZ: 57.9606 + rotX: 0.0208185688 + rotY: 269.969238 + rotZ: 0.0167595129 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 816ad8/Custom_Model_Bag Guardian 888318/Card Trusted 60a283.yaml b/unpacked/Custom_Model_Bag Guardian 816ad8/Custom_Model_Bag Guardian 888318/Card Trusted 60a283.yaml new file mode 100644 index 000000000..5c2ff156b --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 816ad8/Custom_Model_Bag Guardian 888318/Card Trusted 60a283.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 60a283 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Trusted +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.2841 + posY: 1.347566 + posZ: 64.8411 + rotX: 0.0208008587 + rotY: 270.028229 + rotZ: 0.0167809725 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 816ad8/Custom_Model_Bag Guardian 888318/Card Venturer b26d91.yaml b/unpacked/Custom_Model_Bag Guardian 816ad8/Custom_Model_Bag Guardian 888318/Card Venturer b26d91.yaml new file mode 100644 index 000000000..a44b7c0e4 --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 816ad8/Custom_Model_Bag Guardian 888318/Card Venturer b26d91.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 226332 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: b26d91 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Venturer +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 7.015771 + posY: 1.35119176 + posZ: 92.4487152 + rotX: 0.0208167918 + rotY: 269.9693 + rotZ: 0.0167578571 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 816ad8/Custom_Model_Bag Guardian 888318/Card Vicious Blow 12a0ab.yaml b/unpacked/Custom_Model_Bag Guardian 816ad8/Custom_Model_Bag Guardian 888318/Card Vicious Blow 12a0ab.yaml new file mode 100644 index 000000000..d3bfcadf9 --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 816ad8/Custom_Model_Bag Guardian 888318/Card Vicious Blow 12a0ab.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 12a0ab +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Vicious Blow +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 24.4394 + posY: 1.35278952 + posZ: 76.2904 + rotX: 0.0208045412 + rotY: 270.01593 + rotZ: 0.0167765226 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian 816ad8/Custom_Model_Bag Guardian 888318/Card Warning Shot eafd11.yaml b/unpacked/Custom_Model_Bag Guardian 816ad8/Custom_Model_Bag Guardian 888318/Card Warning Shot eafd11.yaml new file mode 100644 index 000000000..14bf1d2b3 --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian 816ad8/Custom_Model_Bag Guardian 888318/Card Warning Shot eafd11.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 292814 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: eafd11 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Warning Shot +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.2683 + posY: 1.34352386 + posZ: 51.0517 + rotX: 0.02079994 + rotY: 270.0318 + rotZ: 0.0167823359 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian cd002a.ttslua b/unpacked/Custom_Model_Bag Guardian cd002a.ttslua new file mode 100644 index 000000000..857093fb8 --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian cd002a.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,0,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 + 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=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,0,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,0,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,0,0}, height=350, width=750, + 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}, rotation={0,0,0}, height=350, width=800, + font_size=250, color={0,0,0}, font_color={1,1,1} + }) +-- self.createButton({ +-- label="Setup", click_function="buttonClick_setup", function_owner=self, +-- position={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.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 \ No newline at end of file diff --git a/unpacked/Custom_Model_Bag Guardian cd002a.yaml b/unpacked/Custom_Model_Bag Guardian cd002a.yaml new file mode 100644 index 000000000..eaa79bc48 --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian cd002a.yaml @@ -0,0 +1,103 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +ContainedObjects: +- !include 'Custom_Model_Bag Guardian cd002a/Card Leadership (2) 80fafa.yaml' +- !include 'Custom_Model_Bag Guardian cd002a/Card Vicious Blow (2) 8f5533.yaml' +- !include 'Custom_Model_Bag Guardian cd002a/Card Mano a Mano (1) 88d2ba.yaml' +- !include 'Custom_Model_Bag Guardian cd002a/Card Ever Vigilant (1) ab620e.yaml' +- !include 'Custom_Model_Bag Guardian cd002a/Card Well-Maintained (1) 0c2f37.yaml' +- !include 'Custom_Model_Bag Guardian cd002a/Card Fool me once... (1) 596620.yaml' +- !include 'Custom_Model_Bag Guardian cd002a/Card Reliable (1) 187591.yaml' +- !include 'Custom_Model_Bag Guardian cd002a/Card Extra Ammunition (1) 5761c7.yaml' +- !include 'Custom_Model_Bag Guardian cd002a/Card Ambush (1) 36ffa9.yaml' +- !include 'Custom_Model_Bag Guardian cd002a/Card Marksmanship (1) 1408ad.yaml' +- !include 'Custom_Model_Bag Guardian cd002a/Card Eat lead! (2) c4018c.yaml' +- !include 'Custom_Model_Bag Guardian cd002a/Card Heroic Rescue (2) 93381d.yaml' +- !include 'Custom_Model_Bag Guardian cd002a/Card I''ve had worse... (2) e3ae5c.yaml' +- !include 'Custom_Model_Bag Guardian cd002a/Card Taunt (2) d93397.yaml' +- !include 'Custom_Model_Bag Guardian cd002a/Card Dynamite Blast (2) 2b76c6.yaml' +- !include 'Custom_Model_Bag Guardian cd002a/Card Stand Together (3) 3accaf.yaml' +- !include 'Custom_Model_Bag Guardian cd002a/Card Blood Eclipse (3) 537351.yaml' +- !include 'Custom_Model_Bag Guardian cd002a/Card Custom Ammunition (3) 0c278c.yaml' +- !include 'Custom_Model_Bag Guardian cd002a/Card Telescopic Sight (3) 2badf6.yaml' +- !include 'Custom_Model_Bag Guardian cd002a/Card I''ve had worse... (4) 5a4bb5.yaml' +- !include 'Custom_Model_Bag Guardian cd002a/Card Monster Slayer (5) 661c3f.yaml' +- !include 'Custom_Model_Bag Guardian cd002a/Card Empty Vessel (4) 043971.yaml' +- !include 'Custom_Model_Bag Guardian cd002a/Card .45 Thompson (3) 650903.yaml' +- !include 'Custom_Model_Bag Guardian cd002a/Card Enchanted Blade (3) 5cfb72.yaml' +- !include 'Custom_Model_Bag Guardian cd002a/Card First Aid (3) 80d5e3.yaml' +- !include 'Custom_Model_Bag Guardian cd002a/Card Keen Eye (3) 22256f.yaml' +- !include 'Custom_Model_Bag Guardian cd002a/Card Stick to the Plan (3) a26425.yaml' +- !include 'Custom_Model_Bag Guardian cd002a/Card Beat Cop (2) 1e7f9a.yaml' +- !include 'Custom_Model_Bag Guardian cd002a/Card .45 Automatic (2) e1ef43.yaml' +- !include 'Custom_Model_Bag Guardian cd002a/Card Police Badge (2) 2901ee.yaml' +- !include 'Custom_Model_Bag Guardian cd002a/Card Safeguard (2) 7dc42a.yaml' +- !include 'Custom_Model_Bag Guardian cd002a/Card Blackjack (2) e56d1d.yaml' +- !include 'Custom_Model_Bag Guardian cd002a/Card Bandolier (2) bdffae.yaml' +- !include 'Custom_Model_Bag Guardian cd002a/Card Well Prepared (2) 1fc1f4.yaml' +- !include 'Custom_Model_Bag Guardian cd002a/Card .32 Colt (2) 15fa11.yaml' +- !include 'Custom_Model_Bag Guardian cd002a/Card Lightning Gun (5) 639a09.yaml' +- !include 'Custom_Model_Bag Guardian cd002a/Card Agency Backup (5) f54b74.yaml' +- !include 'Custom_Model_Bag Guardian cd002a/Card Armor of Ardennes (5) 1c0bcd.yaml' +- !include 'Custom_Model_Bag Guardian cd002a/Card Flamethrower (5) 066c18.yaml' +- !include 'Custom_Model_Bag Guardian cd002a/Card Physical Training (2) 62392c.yaml' +- !include 'Custom_Model_Bag Guardian cd002a/Card Brother Xavier (1) 5a7137.yaml' +- !include 'Custom_Model_Bag Guardian cd002a/Card Spiritual Resolve (5) 7ab680.yaml' +- !include 'Custom_Model_Bag Guardian cd002a/Card M1918 BAR (4) 6c6340.yaml' +- !include 'Custom_Model_Bag Guardian cd002a/Card The Hungering Blade (1) 17f807.yaml' +- !include 'Custom_Model_Bag Guardian cd002a/Card Kerosene (1) 218e04.yaml' +- !include 'Custom_Model_Bag Guardian cd002a/Card Shotgun (4) 3a622d.yaml' +- !include 'Custom_Model_Bag Guardian cd002a/Card Ace of Swords (1) 32b458.yaml' +- !include 'Custom_Model_Bag Guardian cd002a/Card Springfield M1903 (4) 3b042e.yaml' +- !include 'Custom_Model_Bag Guardian cd002a/Card Mk 1 Grenades (4) afef79.yaml' +- !include 'Custom_Model_Bag Guardian cd002a/Card Combat Training (1) 88fdeb.yaml' +- !include 'Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian facf45.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/952965722516201848/72B3B9E2B59F25FEC82412AC22245D03655A4558/ + MaterialIndex: 3 + MeshURL: https://pastebin.com/raw/ALrYhQGb + NormalURL: '' + TypeIndex: 6 +Description: '' +GMNotes: '' +GUID: cd002a +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: true +LuaScript: !include 'Custom_Model_Bag Guardian cd002a.ttslua' +LuaScriptState: '{"ml":{"043971":{"lock":false,"pos":{"x":44.2207,"y":1.3516,"z":-91.0972},"rot":{"x":0.0208,"y":269.9988,"z":0.0168}},"066c18":{"lock":false,"pos":{"x":40.6755,"y":1.359,"z":-61.2128},"rot":{"x":0.0208,"y":269.9992,"z":0.0168}},"0c278c":{"lock":false,"pos":{"x":52.9455,"y":1.3574,"z":-81.9203},"rot":{"x":0.0208,"y":269.9992,"z":0.0168}},"0c2f37":{"lock":false,"pos":{"x":52.9434,"y":1.3662,"z":-52.0202},"rot":{"x":0.0208,"y":269.9995,"z":0.0168}},"1408ad":{"lock":false,"pos":{"x":52.9434,"y":1.3628,"z":-63.5202},"rot":{"x":0.0208,"y":269.9993,"z":0.0168}},"15fa11":{"lock":false,"pos":{"x":44.2282,"y":1.3603,"z":-61.2007},"rot":{"x":0.0208,"y":269.9994,"z":0.0168}},"17f807":{"lock":false,"pos":{"x":44.2282,"y":1.3623,"z":-54.3007},"rot":{"x":0.0208,"y":269.9993,"z":0.0168}},"187591":{"lock":false,"pos":{"x":52.9434,"y":1.3648,"z":-56.6202},"rot":{"x":0.0208,"y":269.9995,"z":0.0168}},"1c0bcd":{"lock":false,"pos":{"x":40.6755,"y":1.3597,"z":-58.9128},"rot":{"x":0.0208,"y":269.9993,"z":0.0168}},"1e7f9a":{"lock":false,"pos":{"x":44.2282,"y":1.3556,"z":-77.3005},"rot":{"x":0.0208,"y":269.9993,"z":0.0168}},"1fc1f4":{"lock":false,"pos":{"x":44.2282,"y":1.3596,"z":-63.5007},"rot":{"x":0.0208,"y":269.9992,"z":0.0168}},"218e04":{"lock":false,"pos":{"x":44.2282,"y":1.363,"z":-52.0007},"rot":{"x":0.0208,"y":269.9991,"z":0.0168}},"22256f":{"lock":false,"pos":{"x":44.2302,"y":1.3542,"z":-81.9008},"rot":{"x":0.0208,"y":269.9993,"z":0.0168}},"2901ee":{"lock":false,"pos":{"x":44.2282,"y":1.3569,"z":-72.7006},"rot":{"x":0.0208,"y":269.9995,"z":0.0168}},"2b76c6":{"lock":false,"pos":{"x":52.9434,"y":1.3594,"z":-75.0202},"rot":{"x":0.0208,"y":269.9984,"z":0.0168}},"2badf6":{"lock":false,"pos":{"x":52.9433,"y":1.3567,"z":-84.2201},"rot":{"x":0.0208,"y":269.9994,"z":0.0168}},"32b458":{"lock":false,"pos":{"x":44.2282,"y":1.3637,"z":-49.7007},"rot":{"x":0.0208,"y":269.9993,"z":0.0168}},"36ffa9":{"lock":false,"pos":{"x":52.9434,"y":1.3635,"z":-61.2202},"rot":{"x":0.0208,"y":269.9993,"z":0.0168}},"3a622d":{"lock":false,"pos":{"x":40.6755,"y":1.3617,"z":-52.0128},"rot":{"x":0.0208,"y":269.9991,"z":0.0168}},"3accaf":{"lock":false,"pos":{"x":52.9434,"y":1.3588,"z":-77.3201},"rot":{"x":0.0208,"y":269.9992,"z":0.0168}},"3b042e":{"lock":false,"pos":{"x":40.6755,"y":1.3624,"z":-49.7128},"rot":{"x":0.0208,"y":269.9991,"z":0.0168}},"537351":{"lock":false,"pos":{"x":52.9434,"y":1.3581,"z":-79.6201},"rot":{"x":0.0208,"y":269.9991,"z":0.0168}},"5761c7":{"lock":false,"pos":{"x":52.9434,"y":1.3641,"z":-58.9202},"rot":{"x":0.0208,"y":269.9992,"z":0.0168}},"596620":{"lock":false,"pos":{"x":52.9434,"y":1.3655,"z":-54.3202},"rot":{"x":0.0208,"y":270.0013,"z":0.0168}},"5a4bb5":{"lock":false,"pos":{"x":52.9435,"y":1.3561,"z":-86.5201},"rot":{"x":0.0208,"y":269.9993,"z":0.0168}},"5a7137":{"lock":false,"pos":{"x":44.2282,"y":1.3617,"z":-56.6007},"rot":{"x":0.0208,"y":269.9992,"z":0.0168}},"5cfb72":{"lock":false,"pos":{"x":44.2282,"y":1.3529,"z":-86.5005},"rot":{"x":0.0208,"y":270.0248,"z":0.0168}},"62392c":{"lock":false,"pos":{"x":44.2282,"y":1.361,"z":-58.9007},"rot":{"x":0.0208,"y":269.9993,"z":0.0168}},"639a09":{"lock":false,"pos":{"x":40.6755,"y":1.3583,"z":-63.5128},"rot":{"x":0.0208,"y":269.9991,"z":0.0168}},"650903":{"lock":false,"pos":{"x":44.2128,"y":1.3522,"z":-88.7901},"rot":{"x":0.0208,"y":269.982,"z":0.0168}},"661c3f":{"lock":false,"pos":{"x":52.9277,"y":1.3554,"z":-88.8096},"rot":{"x":0.0208,"y":269.9991,"z":0.0168}},"6c6340":{"lock":false,"pos":{"x":40.6755,"y":1.361,"z":-54.3128},"rot":{"x":0.0208,"y":269.9991,"z":0.0168}},"7ab680":{"lock":false,"pos":{"x":40.6755,"y":1.3604,"z":-56.6128},"rot":{"x":0.0208,"y":270.0165,"z":0.0168}},"7dc42a":{"lock":false,"pos":{"x":44.2282,"y":1.3576,"z":-70.4006},"rot":{"x":0.0208,"y":269.9922,"z":0.0168}},"80d5e3":{"lock":false,"pos":{"x":44.2281,"y":1.3536,"z":-84.2005},"rot":{"x":0.0208,"y":269.9993,"z":0.0168}},"80fafa":{"lock":false,"pos":{"x":58.0989,"y":1.3694,"z":-47.4709},"rot":{"x":0.0208,"y":269.9895,"z":0.0168}},"88d2ba":{"lock":false,"pos":{"x":52.9434,"y":1.3675,"z":-47.4202},"rot":{"x":0.0208,"y":270.0012,"z":0.0168}},"88fdeb":{"lock":false,"pos":{"x":44.2282,"y":1.3643,"z":-47.4007},"rot":{"x":0.0208,"y":269.9995,"z":0.0168}},"8f5533":{"lock":false,"pos":{"x":58.0989,"y":1.3687,"z":-49.7708},"rot":{"x":0.0208,"y":270.0021,"z":0.0168}},"93381d":{"lock":false,"pos":{"x":52.9434,"y":1.3614,"z":-68.1201},"rot":{"x":0.0208,"y":269.9895,"z":0.0168}},"a26425":{"lock":false,"pos":{"x":44.2282,"y":1.3549,"z":-79.6005},"rot":{"x":0.0208,"y":269.9992,"z":0.0168}},"ab620e":{"lock":false,"pos":{"x":52.9434,"y":1.3668,"z":-49.7202},"rot":{"x":0.0208,"y":269.9995,"z":0.0168}},"afef79":{"lock":false,"pos":{"x":40.6755,"y":1.3631,"z":-47.4128},"rot":{"x":0.0208,"y":269.9992,"z":0.0168}},"bdffae":{"lock":false,"pos":{"x":44.2282,"y":1.359,"z":-65.8006},"rot":{"x":0.0208,"y":269.9996,"z":0.0168}},"c4018c":{"lock":false,"pos":{"x":52.9434,"y":1.3621,"z":-65.8201},"rot":{"x":0.0208,"y":269.9992,"z":0.0168}},"d93397":{"lock":false,"pos":{"x":52.9434,"y":1.3601,"z":-72.7202},"rot":{"x":0.0208,"y":269.9994,"z":0.0168}},"e1ef43":{"lock":false,"pos":{"x":44.2282,"y":1.3563,"z":-75.0006},"rot":{"x":0.0208,"y":269.999,"z":0.0168}},"e3ae5c":{"lock":false,"pos":{"x":52.9434,"y":1.3608,"z":-70.4201},"rot":{"x":0.0208,"y":269.9992,"z":0.0168}},"e56d1d":{"lock":false,"pos":{"x":44.2282,"y":1.3583,"z":-68.1006},"rot":{"x":0.0208,"y":269.9994,"z":0.0168}},"f54b74":{"lock":false,"pos":{"x":40.6755,"y":1.3577,"z":-65.8127},"rot":{"x":0.0208,"y":269.9992,"z":0.0168}}}}' +MaterialIndex: -1 +MeshIndex: -1 +Name: Custom_Model_Bag +Nickname: Guardian +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 66.31716 + posY: 1.41580188 + posZ: -63.9827423 + rotX: 0.02080511 + rotY: 270.018738 + rotZ: 0.0167771485 + scaleX: 1.2 + scaleY: 1.2 + scaleZ: 1.2 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian cd002a/Card .32 Colt (2) 15fa11.yaml b/unpacked/Custom_Model_Bag Guardian cd002a/Card .32 Colt (2) 15fa11.yaml new file mode 100644 index 000000000..881a81f7b --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian cd002a/Card .32 Colt (2) 15fa11.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 15fa11 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: .32 Colt (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.22822 + posY: 1.36030781 + posZ: -61.20068 + rotX: 0.0208094846 + rotY: 269.9994 + rotZ: 0.0167707112 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian cd002a/Card .45 Automatic (2) e1ef43.yaml b/unpacked/Custom_Model_Bag Guardian cd002a/Card .45 Automatic (2) e1ef43.yaml new file mode 100644 index 000000000..6a040df53 --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian cd002a/Card .45 Automatic (2) e1ef43.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: e1ef43 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: .45 Automatic (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.22822 + posY: 1.35626817 + posZ: -75.00058 + rotX: 0.0208094511 + rotY: 269.998962 + rotZ: 0.01677001 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian cd002a/Card .45 Thompson (3) 650903.yaml b/unpacked/Custom_Model_Bag Guardian cd002a/Card .45 Thompson (3) 650903.yaml new file mode 100644 index 000000000..a8cbe2136 --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian cd002a/Card .45 Thompson (3) 650903.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Guardian +GMNotes: '' +GUID: '650903' +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: .45 Thompson (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.2128067 + posY: 1.35222626 + posZ: -88.7900848 + rotX: 0.0208144244 + rotY: 269.981964 + rotZ: 0.01676417 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian cd002a/Card Ace of Swords (1) 32b458.yaml b/unpacked/Custom_Model_Bag Guardian cd002a/Card Ace of Swords (1) 32b458.yaml new file mode 100644 index 000000000..ff0d01306 --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian cd002a/Card Ace of Swords (1) 32b458.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 273709 +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 + UniqueBack: false +Description: Let Your Arrow Fly True +GMNotes: '' +GUID: 32b458 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Ace of Swords (1) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.22822 + posY: 1.36367381 + posZ: -49.70068 + rotX: 0.0208091512 + rotY: 269.999268 + rotZ: 0.016770415 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian cd002a/Card Agency Backup (5) f54b74.yaml b/unpacked/Custom_Model_Bag Guardian cd002a/Card Agency Backup (5) f54b74.yaml new file mode 100644 index 000000000..088bf65c2 --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian cd002a/Card Agency Backup (5) f54b74.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: f54b74 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Agency Backup (5) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 40.6754951 + posY: 1.35766733 + posZ: -65.8127 + rotX: 0.0208095666 + rotY: 269.999237 + rotZ: 0.0167706814 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian cd002a/Card Ambush (1) 36ffa9.yaml b/unpacked/Custom_Model_Bag Guardian cd002a/Card Ambush (1) 36ffa9.yaml new file mode 100644 index 000000000..220ffd2c3 --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian cd002a/Card Ambush (1) 36ffa9.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 36ffa9 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Ambush (1) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 52.9434242 + posY: 1.3634671 + posZ: -61.22018 + rotX: 0.0208092723 + rotY: 269.999268 + rotZ: 0.0167704038 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian cd002a/Card Armor of Ardennes (5) 1c0bcd.yaml b/unpacked/Custom_Model_Bag Guardian cd002a/Card Armor of Ardennes (5) 1c0bcd.yaml new file mode 100644 index 000000000..1c0388169 --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian cd002a/Card Armor of Ardennes (5) 1c0bcd.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 1c0bcd +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Armor of Ardennes (5) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 40.6755028 + posY: 1.35968721 + posZ: -58.91284 + rotX: 0.0208095815 + rotY: 269.999268 + rotZ: 0.0167704485 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian cd002a/Card Bandolier (2) bdffae.yaml b/unpacked/Custom_Model_Bag Guardian cd002a/Card Bandolier (2) bdffae.yaml new file mode 100644 index 000000000..5fd4fd484 --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian cd002a/Card Bandolier (2) bdffae.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 292304 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2923': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025943109/9C5481E6DFEACD450C5522F884E615482281DDB1/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: bdffae +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Bandolier (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.22822 + posY: 1.35896111 + posZ: -65.80058 + rotX: 0.0208092313 + rotY: 269.999573 + rotZ: 0.01677039 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian cd002a/Card Beat Cop (2) 1e7f9a.yaml b/unpacked/Custom_Model_Bag Guardian cd002a/Card Beat Cop (2) 1e7f9a.yaml new file mode 100644 index 000000000..99182dadd --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian cd002a/Card Beat Cop (2) 1e7f9a.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 1e7f9a +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Beat Cop (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.22822 + posY: 1.355595 + posZ: -77.3004761 + rotX: 0.020809168 + rotY: 269.999329 + rotZ: 0.0167704653 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian cd002a/Card Blackjack (2) e56d1d.yaml b/unpacked/Custom_Model_Bag Guardian cd002a/Card Blackjack (2) e56d1d.yaml new file mode 100644 index 000000000..f918f7d24 --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian cd002a/Card Blackjack (2) e56d1d.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 292205 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2922': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025943109/9C5481E6DFEACD450C5522F884E615482281DDB1/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: e56d1d +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Blackjack (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.22822 + posY: 1.35828793 + posZ: -68.1005859 + rotX: 0.0208093077 + rotY: 269.9994 + rotZ: 0.0167704783 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian cd002a/Card Blood Eclipse (3) 537351.yaml b/unpacked/Custom_Model_Bag Guardian cd002a/Card Blood Eclipse (3) 537351.yaml new file mode 100644 index 000000000..819ebd334 --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian cd002a/Card Blood Eclipse (3) 537351.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 292100 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2921': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025943109/9C5481E6DFEACD450C5522F884E615482281DDB1/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: '537351' +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Blood Eclipse (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 52.9434242 + posY: 1.3580811 + posZ: -79.62009 + rotX: 0.0208094958 + rotY: 269.999146 + rotZ: 0.0167704038 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian cd002a/Card Brother Xavier (1) 5a7137.yaml b/unpacked/Custom_Model_Bag Guardian cd002a/Card Brother Xavier (1) 5a7137.yaml new file mode 100644 index 000000000..4380cac58 --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian cd002a/Card Brother Xavier (1) 5a7137.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Pure of Spirit +GMNotes: '' +GUID: 5a7137 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Brother Xavier (1) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.22822 + posY: 1.361654 + posZ: -56.60068 + rotX: 0.0208092388 + rotY: 269.9992 + rotZ: 0.0167704765 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian cd002a/Card Combat Training (1) 88fdeb.yaml b/unpacked/Custom_Model_Bag Guardian cd002a/Card Combat Training (1) 88fdeb.yaml new file mode 100644 index 000000000..5d2e70148 --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian cd002a/Card Combat Training (1) 88fdeb.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 88fdeb +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Combat Training (1) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.22822 + posY: 1.3643471 + posZ: -47.40068 + rotX: 0.0208094586 + rotY: 269.999451 + rotZ: 0.0167703349 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian cd002a/Card Custom Ammunition (3) 0c278c.yaml b/unpacked/Custom_Model_Bag Guardian cd002a/Card Custom Ammunition (3) 0c278c.yaml new file mode 100644 index 000000000..1b0bdc150 --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian cd002a/Card Custom Ammunition (3) 0c278c.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 0c278c +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Custom Ammunition (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 52.9455223 + posY: 1.35740864 + posZ: -81.92029 + rotX: 0.0208093654 + rotY: 269.999237 + rotZ: 0.0167701971 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian cd002a/Card Dynamite Blast (2) 2b76c6.yaml b/unpacked/Custom_Model_Bag Guardian cd002a/Card Dynamite Blast (2) 2b76c6.yaml new file mode 100644 index 000000000..5c8ad9563 --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian cd002a/Card Dynamite Blast (2) 2b76c6.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 2b76c6 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Dynamite Blast (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 52.9434242 + posY: 1.35942757 + posZ: -75.02019 + rotX: 0.0208098665 + rotY: 269.998352 + rotZ: 0.016770009 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian cd002a/Card Eat lead! (2) c4018c.yaml b/unpacked/Custom_Model_Bag Guardian cd002a/Card Eat lead! (2) c4018c.yaml new file mode 100644 index 000000000..6c0d40457 --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian cd002a/Card Eat lead! (2) c4018c.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: c4018c +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '"Eat lead!" (2)' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 52.9434242 + posY: 1.36212063 + posZ: -65.82008 + rotX: 0.0208095312 + rotY: 269.999237 + rotZ: 0.0167703517 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian cd002a/Card Empty Vessel (4) 043971.yaml b/unpacked/Custom_Model_Bag Guardian cd002a/Card Empty Vessel (4) 043971.yaml new file mode 100644 index 000000000..9a48ce117 --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian cd002a/Card Empty Vessel (4) 043971.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Abandoned by the Gods +GMNotes: '' +GUID: 043971 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Empty Vessel (4) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.2207222 + posY: 1.3515538 + posZ: -91.09718 + rotX: 0.0208095275 + rotY: 269.998779 + rotZ: 0.0167705081 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian cd002a/Card Enchanted Blade (3) 5cfb72.yaml b/unpacked/Custom_Model_Bag Guardian cd002a/Card Enchanted Blade (3) 5cfb72.yaml new file mode 100644 index 000000000..d4a7364f5 --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian cd002a/Card Enchanted Blade (3) 5cfb72.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Guardian +GMNotes: '' +GUID: 5cfb72 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Enchanted Blade (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.22822 + posY: 1.352902 + posZ: -86.50049 + rotX: 0.0208020583 + rotY: 270.02478 + rotZ: 0.01677956 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian cd002a/Card Ever Vigilant (1) ab620e.yaml b/unpacked/Custom_Model_Bag Guardian cd002a/Card Ever Vigilant (1) ab620e.yaml new file mode 100644 index 000000000..fd1688f5c --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian cd002a/Card Ever Vigilant (1) ab620e.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: ab620e +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Ever Vigilant (1) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 52.9434242 + posY: 1.36683321 + posZ: -49.72018 + rotX: 0.0208094064 + rotY: 269.9995 + rotZ: 0.0167705175 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian cd002a/Card Extra Ammunition (1) 5761c7.yaml b/unpacked/Custom_Model_Bag Guardian cd002a/Card Extra Ammunition (1) 5761c7.yaml new file mode 100644 index 000000000..cf75e1bf8 --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian cd002a/Card Extra Ammunition (1) 5761c7.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 5761c7 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Extra Ammunition (1) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 52.9434242 + posY: 1.36414027 + posZ: -58.92018 + rotX: 0.0208091568 + rotY: 269.9992 + rotZ: 0.0167705 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian cd002a/Card First Aid (3) 80d5e3.yaml b/unpacked/Custom_Model_Bag Guardian cd002a/Card First Aid (3) 80d5e3.yaml new file mode 100644 index 000000000..7e3fbbe2f --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian cd002a/Card First Aid (3) 80d5e3.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 80d5e3 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: First Aid (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.2281227 + posY: 1.35357523 + posZ: -84.2004852 + rotX: 0.02080939 + rotY: 269.999268 + rotZ: 0.0167704448 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian cd002a/Card Flamethrower (5) 066c18.yaml b/unpacked/Custom_Model_Bag Guardian cd002a/Card Flamethrower (5) 066c18.yaml new file mode 100644 index 000000000..447a2b4dd --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian cd002a/Card Flamethrower (5) 066c18.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 292102 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2921': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025943109/9C5481E6DFEACD450C5522F884E615482281DDB1/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 066c18 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Flamethrower (5) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 40.67549 + posY: 1.3590138 + posZ: -61.2128448 + rotX: 0.0208094586 + rotY: 269.9992 + rotZ: 0.0167705417 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian cd002a/Card Fool me once... (1) 596620.yaml b/unpacked/Custom_Model_Bag Guardian cd002a/Card Fool me once... (1) 596620.yaml new file mode 100644 index 000000000..352d42d6e --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian cd002a/Card Fool me once... (1) 596620.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: '596620' +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '"Fool me once..." (1)' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 52.9434242 + posY: 1.36548674 + posZ: -54.3201828 + rotX: 0.0208089333 + rotY: 270.001282 + rotZ: 0.0167710036 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian cd002a/Card Heroic Rescue (2) 93381d.yaml b/unpacked/Custom_Model_Bag Guardian cd002a/Card Heroic Rescue (2) 93381d.yaml new file mode 100644 index 000000000..e51d66bad --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian cd002a/Card Heroic Rescue (2) 93381d.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Spirit. Tactic. +GMNotes: '' +GUID: 93381d +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Heroic Rescue (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 52.9434242 + posY: 1.36144733 + posZ: -68.12009 + rotX: 0.02081249 + rotY: 269.989532 + rotZ: 0.0167669244 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian cd002a/Card I've had worse... (2) e3ae5c.yaml b/unpacked/Custom_Model_Bag Guardian cd002a/Card I've had worse... (2) e3ae5c.yaml new file mode 100644 index 000000000..7644d9397 --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian cd002a/Card I've had worse... (2) e3ae5c.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: e3ae5c +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '"I''ve had worse..." (2)' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 52.9434242 + posY: 1.36077416 + posZ: -70.4200745 + rotX: 0.02080938 + rotY: 269.999237 + rotZ: 0.0167704262 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian cd002a/Card I've had worse... (4) 5a4bb5.yaml b/unpacked/Custom_Model_Bag Guardian cd002a/Card I've had worse... (4) 5a4bb5.yaml new file mode 100644 index 000000000..cc802676b --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian cd002a/Card I've had worse... (4) 5a4bb5.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 5a4bb5 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '"I''ve had worse..." (4)' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 52.9435158 + posY: 1.35606146 + posZ: -86.52009 + rotX: 0.0208111834 + rotY: 269.999329 + rotZ: 0.0167723 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian cd002a/Card Keen Eye (3) 22256f.yaml b/unpacked/Custom_Model_Bag Guardian cd002a/Card Keen Eye (3) 22256f.yaml new file mode 100644 index 000000000..5e89a68a6 --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian cd002a/Card Keen Eye (3) 22256f.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 22256f +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Keen Eye (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.23022 + posY: 1.35424912 + posZ: -81.90079 + rotX: 0.020809589 + rotY: 269.999268 + rotZ: 0.0167704877 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian cd002a/Card Kerosene (1) 218e04.yaml b/unpacked/Custom_Model_Bag Guardian cd002a/Card Kerosene (1) 218e04.yaml new file mode 100644 index 000000000..65aae3466 --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian cd002a/Card Kerosene (1) 218e04.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 292103 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2921': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025943109/9C5481E6DFEACD450C5522F884E615482281DDB1/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 218e04 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Kerosene (1) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.22822 + posY: 1.36300063 + posZ: -52.0006828 + rotX: 0.0208094642 + rotY: 269.999146 + rotZ: 0.01677044 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian cd002a/Card Leadership (2) 80fafa.yaml b/unpacked/Custom_Model_Bag Guardian cd002a/Card Leadership (2) 80fafa.yaml new file mode 100644 index 000000000..f1779d6f5 --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian cd002a/Card Leadership (2) 80fafa.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Practiced. +GMNotes: '' +GUID: 80fafa +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Leadership (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 58.0989227 + posY: 1.3693639 + posZ: -47.4708824 + rotX: 0.0208123066 + rotY: 269.9895 + rotZ: 0.0167665463 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian cd002a/Card Lightning Gun (5) 639a09.yaml b/unpacked/Custom_Model_Bag Guardian cd002a/Card Lightning Gun (5) 639a09.yaml new file mode 100644 index 000000000..eb60f23ad --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian cd002a/Card Lightning Gun (5) 639a09.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 639a09 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Lightning Gun (5) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 40.6754951 + posY: 1.3583405 + posZ: -63.5128479 + rotX: 0.0208095182 + rotY: 269.999146 + rotZ: 0.016770266 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian cd002a/Card M1918 BAR (4) 6c6340.yaml b/unpacked/Custom_Model_Bag Guardian cd002a/Card M1918 BAR (4) 6c6340.yaml new file mode 100644 index 000000000..e6d790d39 --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian cd002a/Card M1918 BAR (4) 6c6340.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 6c6340 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: M1918 BAR (4) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 40.6755066 + posY: 1.36103356 + posZ: -54.3128357 + rotX: 0.0208095964 + rotY: 269.999146 + rotZ: 0.0167703 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian cd002a/Card Mano a Mano (1) 88d2ba.yaml b/unpacked/Custom_Model_Bag Guardian cd002a/Card Mano a Mano (1) 88d2ba.yaml new file mode 100644 index 000000000..a73b5a5a5 --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian cd002a/Card Mano a Mano (1) 88d2ba.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 88d2ba +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Mano a Mano (1) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 52.9434242 + posY: 1.3675065 + posZ: -47.42018 + rotX: 0.020808924 + rotY: 270.001221 + rotZ: 0.0167711414 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian cd002a/Card Marksmanship (1) 1408ad.yaml b/unpacked/Custom_Model_Bag Guardian cd002a/Card Marksmanship (1) 1408ad.yaml new file mode 100644 index 000000000..db1629b30 --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian cd002a/Card Marksmanship (1) 1408ad.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 1408ad +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Marksmanship (1) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 52.9434242 + posY: 1.3627938 + posZ: -63.52018 + rotX: 0.0208095182 + rotY: 269.999268 + rotZ: 0.0167704634 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian cd002a/Card Mk 1 Grenades (4) afef79.yaml b/unpacked/Custom_Model_Bag Guardian cd002a/Card Mk 1 Grenades (4) afef79.yaml new file mode 100644 index 000000000..02b020446 --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian cd002a/Card Mk 1 Grenades (4) afef79.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 449017 +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/1016065725025943109/9C5481E6DFEACD450C5522F884E615482281DDB1/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: Item. Weapon. Ranged. +GMNotes: '' +GUID: afef79 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Mk 1 Grenades (4) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 40.6755028 + posY: 1.36305332 + posZ: -47.412838 + rotX: 0.02080945 + rotY: 269.9992 + rotZ: 0.0167705454 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian cd002a/Card Monster Slayer (5) 661c3f.yaml b/unpacked/Custom_Model_Bag Guardian cd002a/Card Monster Slayer (5) 661c3f.yaml new file mode 100644 index 000000000..75734127b --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian cd002a/Card Monster Slayer (5) 661c3f.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 661c3f +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Monster Slayer (5) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 52.9277229 + posY: 1.35538554 + posZ: -88.8095856 + rotX: 0.0208096523 + rotY: 269.999146 + rotZ: 0.01677041 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian cd002a/Card Physical Training (2) 62392c.yaml b/unpacked/Custom_Model_Bag Guardian cd002a/Card Physical Training (2) 62392c.yaml new file mode 100644 index 000000000..9ad1fae13 --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian cd002a/Card Physical Training (2) 62392c.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 62392c +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Physical Training (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.22822 + posY: 1.36098075 + posZ: -58.90068 + rotX: 0.0208094921 + rotY: 269.999268 + rotZ: 0.01677045 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian cd002a/Card Police Badge (2) 2901ee.yaml b/unpacked/Custom_Model_Bag Guardian cd002a/Card Police Badge (2) 2901ee.yaml new file mode 100644 index 000000000..434d2e452 --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian cd002a/Card Police Badge (2) 2901ee.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 2901ee +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Police Badge (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.22822 + posY: 1.35694146 + posZ: -72.70058 + rotX: 0.0208093543 + rotY: 269.999481 + rotZ: 0.0167706534 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian cd002a/Card Reliable (1) 187591.yaml b/unpacked/Custom_Model_Bag Guardian cd002a/Card Reliable (1) 187591.yaml new file mode 100644 index 000000000..e403272a2 --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian cd002a/Card Reliable (1) 187591.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: '187591' +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Reliable (1) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 52.9434242 + posY: 1.36481357 + posZ: -56.620182 + rotX: 0.0208093133 + rotY: 269.999451 + rotZ: 0.01677045 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian cd002a/Card Safeguard (2) 7dc42a.yaml b/unpacked/Custom_Model_Bag Guardian cd002a/Card Safeguard (2) 7dc42a.yaml new file mode 100644 index 000000000..2bdf1bbd5 --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian cd002a/Card Safeguard (2) 7dc42a.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Talent. +GMNotes: '' +GUID: 7dc42a +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Safeguard (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.22822 + posY: 1.35761464 + posZ: -70.40057 + rotX: 0.0208114982 + rotY: 269.9922 + rotZ: 0.0167679116 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian cd002a/Card Shotgun (4) 3a622d.yaml b/unpacked/Custom_Model_Bag Guardian cd002a/Card Shotgun (4) 3a622d.yaml new file mode 100644 index 000000000..1a457beda --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian cd002a/Card Shotgun (4) 3a622d.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 3a622d +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Shotgun (4) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 40.6755028 + posY: 1.36170673 + posZ: -52.012825 + rotX: 0.02080953 + rotY: 269.999146 + rotZ: 0.0167702585 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian cd002a/Card Spiritual Resolve (5) 7ab680.yaml b/unpacked/Custom_Model_Bag Guardian cd002a/Card Spiritual Resolve (5) 7ab680.yaml new file mode 100644 index 000000000..a1910f241 --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian cd002a/Card Spiritual Resolve (5) 7ab680.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Ritual. +GMNotes: '' +GUID: 7ab680 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Spiritual Resolve (5) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 40.6755066 + posY: 1.36036026 + posZ: -56.61284 + rotX: 0.0208043158 + rotY: 270.016541 + rotZ: 0.0167767163 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian cd002a/Card Springfield M1903 (4) 3b042e.yaml b/unpacked/Custom_Model_Bag Guardian cd002a/Card Springfield M1903 (4) 3b042e.yaml new file mode 100644 index 000000000..02447535a --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian cd002a/Card Springfield M1903 (4) 3b042e.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 3b042e +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Springfield M1903 (4) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 40.6755028 + posY: 1.36238 + posZ: -49.712822 + rotX: 0.0208095722 + rotY: 269.999146 + rotZ: 0.0167705957 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian cd002a/Card Stand Together (3) 3accaf.yaml b/unpacked/Custom_Model_Bag Guardian cd002a/Card Stand Together (3) 3accaf.yaml new file mode 100644 index 000000000..cf2b0381c --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian cd002a/Card Stand Together (3) 3accaf.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 3accaf +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Stand Together (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 52.9434242 + posY: 1.35875428 + posZ: -77.32008 + rotX: 0.020809222 + rotY: 269.999237 + rotZ: 0.0167702939 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian cd002a/Card Stick to the Plan (3) a26425.yaml b/unpacked/Custom_Model_Bag Guardian cd002a/Card Stick to the Plan (3) a26425.yaml new file mode 100644 index 000000000..1f231a85f --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian cd002a/Card Stick to the Plan (3) a26425.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: a26425 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Stick to the Plan (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.22822 + posY: 1.35492182 + posZ: -79.60048 + rotX: 0.0208095722 + rotY: 269.9992 + rotZ: 0.0167704541 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian cd002a/Card Taunt (2) d93397.yaml b/unpacked/Custom_Model_Bag Guardian cd002a/Card Taunt (2) d93397.yaml new file mode 100644 index 000000000..69e19178b --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian cd002a/Card Taunt (2) d93397.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: d93397 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Taunt (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 52.9434242 + posY: 1.36010075 + posZ: -72.7201843 + rotX: 0.0208093 + rotY: 269.9994 + rotZ: 0.0167703554 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian cd002a/Card Telescopic Sight (3) 2badf6.yaml b/unpacked/Custom_Model_Bag Guardian cd002a/Card Telescopic Sight (3) 2badf6.yaml new file mode 100644 index 000000000..5aa84d5e7 --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian cd002a/Card Telescopic Sight (3) 2badf6.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 2badf6 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Telescopic Sight (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 52.94332 + posY: 1.35673451 + posZ: -84.22008 + rotX: 0.02080956 + rotY: 269.9994 + rotZ: 0.01677059 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian cd002a/Card The Hungering Blade (1) 17f807.yaml b/unpacked/Custom_Model_Bag Guardian cd002a/Card The Hungering Blade (1) 17f807.yaml new file mode 100644 index 000000000..74813f607 --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian cd002a/Card The Hungering Blade (1) 17f807.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: "Calamitous Blade of Celepha\xEFs" +GMNotes: '' +GUID: 17f807 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: The Hungering Blade (1) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.22822 + posY: 1.36232734 + posZ: -54.3006821 + rotX: 0.0208091512 + rotY: 269.999268 + rotZ: 0.0167703517 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian cd002a/Card Vicious Blow (2) 8f5533.yaml b/unpacked/Custom_Model_Bag Guardian cd002a/Card Vicious Blow (2) 8f5533.yaml new file mode 100644 index 000000000..821f3701f --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian cd002a/Card Vicious Blow (2) 8f5533.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 8f5533 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Vicious Blow (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 58.0989227 + posY: 1.36869073 + posZ: -49.7707825 + rotX: 0.0208086576 + rotY: 270.002075 + rotZ: 0.0167715773 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian cd002a/Card Well Prepared (2) 1fc1f4.yaml b/unpacked/Custom_Model_Bag Guardian cd002a/Card Well Prepared (2) 1fc1f4.yaml new file mode 100644 index 000000000..d8664d6e0 --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian cd002a/Card Well Prepared (2) 1fc1f4.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 1fc1f4 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Well Prepared (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.22822 + posY: 1.35963428 + posZ: -63.5006828 + rotX: 0.0208091233 + rotY: 269.999237 + rotZ: 0.0167704 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian cd002a/Card Well-Maintained (1) 0c2f37.yaml b/unpacked/Custom_Model_Bag Guardian cd002a/Card Well-Maintained (1) 0c2f37.yaml new file mode 100644 index 000000000..5b11faf3e --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian cd002a/Card Well-Maintained (1) 0c2f37.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 0c2f37 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Well-Maintained (1) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 52.9434242 + posY: 1.36616 + posZ: -52.02018 + rotX: 0.0208094884 + rotY: 269.999451 + rotZ: 0.0167705473 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian facf45.ttslua b/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian facf45.ttslua new file mode 100644 index 000000000..f882a7f09 --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian facf45.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,0,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 + 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=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,0,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,0,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,0,0}, height=350, width=750, + 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}, rotation={0,0,0}, height=350, width=800, + font_size=250, color={0,0,0}, font_color={1,1,1} + }) +-- self.createButton({ +-- label="Setup", click_function="buttonClick_setup", function_owner=self, +-- position={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.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 Guardian cd002a/Custom_Model_Bag Guardian facf45.yaml b/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian facf45.yaml new file mode 100644 index 000000000..beee359ce --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian facf45.yaml @@ -0,0 +1,102 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +ContainedObjects: +- !include 'Custom_Model_Bag Guardian facf45/Card Leadership (2) 80fafa.yaml' +- !include 'Custom_Model_Bag Guardian facf45/Card Vicious Blow (2) 8f5533.yaml' +- !include 'Custom_Model_Bag Guardian facf45/Card Mano a Mano (1) 88d2ba.yaml' +- !include 'Custom_Model_Bag Guardian facf45/Card Ever Vigilant (1) ab620e.yaml' +- !include 'Custom_Model_Bag Guardian facf45/Card Well-Maintained (1) 0c2f37.yaml' +- !include 'Custom_Model_Bag Guardian facf45/Card Fool me once... (1) 596620.yaml' +- !include 'Custom_Model_Bag Guardian facf45/Card Reliable (1) 187591.yaml' +- !include 'Custom_Model_Bag Guardian facf45/Card Extra Ammunition (1) 5761c7.yaml' +- !include 'Custom_Model_Bag Guardian facf45/Card Ambush (1) 36ffa9.yaml' +- !include 'Custom_Model_Bag Guardian facf45/Card Marksmanship (1) 1408ad.yaml' +- !include 'Custom_Model_Bag Guardian facf45/Card Eat lead! (2) c4018c.yaml' +- !include 'Custom_Model_Bag Guardian facf45/Card Heroic Rescue (2) 93381d.yaml' +- !include 'Custom_Model_Bag Guardian facf45/Card I''ve had worse... (2) e3ae5c.yaml' +- !include 'Custom_Model_Bag Guardian facf45/Card Taunt (2) d93397.yaml' +- !include 'Custom_Model_Bag Guardian facf45/Card Dynamite Blast (2) 2b76c6.yaml' +- !include 'Custom_Model_Bag Guardian facf45/Card Stand Together (3) 3accaf.yaml' +- !include 'Custom_Model_Bag Guardian facf45/Card Blood Eclipse (3) 537351.yaml' +- !include 'Custom_Model_Bag Guardian facf45/Card Custom Ammunition (3) 0c278c.yaml' +- !include 'Custom_Model_Bag Guardian facf45/Card Telescopic Sight (3) 2badf6.yaml' +- !include 'Custom_Model_Bag Guardian facf45/Card I''ve had worse... (4) 5a4bb5.yaml' +- !include 'Custom_Model_Bag Guardian facf45/Card Monster Slayer (5) 661c3f.yaml' +- !include 'Custom_Model_Bag Guardian facf45/Card Empty Vessel (4) 043971.yaml' +- !include 'Custom_Model_Bag Guardian facf45/Card .45 Thompson (3) 650903.yaml' +- !include 'Custom_Model_Bag Guardian facf45/Card Enchanted Blade (3) 5cfb72.yaml' +- !include 'Custom_Model_Bag Guardian facf45/Card First Aid (3) 80d5e3.yaml' +- !include 'Custom_Model_Bag Guardian facf45/Card Keen Eye (3) 22256f.yaml' +- !include 'Custom_Model_Bag Guardian facf45/Card Stick to the Plan (3) a26425.yaml' +- !include 'Custom_Model_Bag Guardian facf45/Card Beat Cop (2) 1e7f9a.yaml' +- !include 'Custom_Model_Bag Guardian facf45/Card .45 Automatic (2) e1ef43.yaml' +- !include 'Custom_Model_Bag Guardian facf45/Card Police Badge (2) 2901ee.yaml' +- !include 'Custom_Model_Bag Guardian facf45/Card Safeguard (2) 7dc42a.yaml' +- !include 'Custom_Model_Bag Guardian facf45/Card Blackjack (2) e56d1d.yaml' +- !include 'Custom_Model_Bag Guardian facf45/Card Bandolier (2) bdffae.yaml' +- !include 'Custom_Model_Bag Guardian facf45/Card Well Prepared (2) 1fc1f4.yaml' +- !include 'Custom_Model_Bag Guardian facf45/Card .32 Colt (2) 15fa11.yaml' +- !include 'Custom_Model_Bag Guardian facf45/Card Lightning Gun (5) 639a09.yaml' +- !include 'Custom_Model_Bag Guardian facf45/Card Agency Backup (5) f54b74.yaml' +- !include 'Custom_Model_Bag Guardian facf45/Card Armor of Ardennes (5) 1c0bcd.yaml' +- !include 'Custom_Model_Bag Guardian facf45/Card Flamethrower (5) 066c18.yaml' +- !include 'Custom_Model_Bag Guardian facf45/Card Physical Training (2) 62392c.yaml' +- !include 'Custom_Model_Bag Guardian facf45/Card Brother Xavier (1) 5a7137.yaml' +- !include 'Custom_Model_Bag Guardian facf45/Card Spiritual Resolve (5) 7ab680.yaml' +- !include 'Custom_Model_Bag Guardian facf45/Card M1918 BAR (4) 6c6340.yaml' +- !include 'Custom_Model_Bag Guardian facf45/Card The Hungering Blade (1) 17f807.yaml' +- !include 'Custom_Model_Bag Guardian facf45/Card Kerosene (1) 218e04.yaml' +- !include 'Custom_Model_Bag Guardian facf45/Card Shotgun (4) 3a622d.yaml' +- !include 'Custom_Model_Bag Guardian facf45/Card Ace of Swords (1) 32b458.yaml' +- !include 'Custom_Model_Bag Guardian facf45/Card Springfield M1903 (4) 3b042e.yaml' +- !include 'Custom_Model_Bag Guardian facf45/Card Mk 1 Grenades (4) afef79.yaml' +- !include 'Custom_Model_Bag Guardian facf45/Card Combat Training (1) 88fdeb.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/952965722516201848/72B3B9E2B59F25FEC82412AC22245D03655A4558/ + MaterialIndex: 3 + MeshURL: https://pastebin.com/raw/ALrYhQGb + NormalURL: '' + TypeIndex: 6 +Description: '' +GMNotes: '' +GUID: facf45 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Model_Bag Guardian facf45.ttslua' +LuaScriptState: '{"ml":{"043971":{"lock":false,"pos":{"x":44.2207,"y":1.3516,"z":-91.0972},"rot":{"x":0.0208,"y":269.9988,"z":0.0168}},"066c18":{"lock":false,"pos":{"x":40.6755,"y":1.359,"z":-61.2128},"rot":{"x":0.0208,"y":269.9992,"z":0.0168}},"0c278c":{"lock":false,"pos":{"x":52.9455,"y":1.3574,"z":-81.9203},"rot":{"x":0.0208,"y":269.9992,"z":0.0168}},"0c2f37":{"lock":false,"pos":{"x":52.9434,"y":1.3662,"z":-52.0202},"rot":{"x":0.0208,"y":269.9995,"z":0.0168}},"1408ad":{"lock":false,"pos":{"x":52.9434,"y":1.3628,"z":-63.5202},"rot":{"x":0.0208,"y":269.9993,"z":0.0168}},"15fa11":{"lock":false,"pos":{"x":44.2282,"y":1.3603,"z":-61.2007},"rot":{"x":0.0208,"y":269.9994,"z":0.0168}},"17f807":{"lock":false,"pos":{"x":44.2282,"y":1.3623,"z":-54.3007},"rot":{"x":0.0208,"y":269.9993,"z":0.0168}},"187591":{"lock":false,"pos":{"x":52.9434,"y":1.3648,"z":-56.6202},"rot":{"x":0.0208,"y":269.9995,"z":0.0168}},"1c0bcd":{"lock":false,"pos":{"x":40.6755,"y":1.3597,"z":-58.9128},"rot":{"x":0.0208,"y":269.9993,"z":0.0168}},"1e7f9a":{"lock":false,"pos":{"x":44.2282,"y":1.3556,"z":-77.3005},"rot":{"x":0.0208,"y":269.9993,"z":0.0168}},"1fc1f4":{"lock":false,"pos":{"x":44.2282,"y":1.3596,"z":-63.5007},"rot":{"x":0.0208,"y":269.9992,"z":0.0168}},"218e04":{"lock":false,"pos":{"x":44.2282,"y":1.363,"z":-52.0007},"rot":{"x":0.0208,"y":269.9991,"z":0.0168}},"22256f":{"lock":false,"pos":{"x":44.2302,"y":1.3542,"z":-81.9008},"rot":{"x":0.0208,"y":269.9993,"z":0.0168}},"2901ee":{"lock":false,"pos":{"x":44.2282,"y":1.3569,"z":-72.7006},"rot":{"x":0.0208,"y":269.9995,"z":0.0168}},"2b76c6":{"lock":false,"pos":{"x":52.9434,"y":1.3594,"z":-75.0202},"rot":{"x":0.0208,"y":269.9984,"z":0.0168}},"2badf6":{"lock":false,"pos":{"x":52.9433,"y":1.3567,"z":-84.2201},"rot":{"x":0.0208,"y":269.9994,"z":0.0168}},"32b458":{"lock":false,"pos":{"x":44.2282,"y":1.3637,"z":-49.7007},"rot":{"x":0.0208,"y":269.9993,"z":0.0168}},"36ffa9":{"lock":false,"pos":{"x":52.9434,"y":1.3635,"z":-61.2202},"rot":{"x":0.0208,"y":269.9993,"z":0.0168}},"3a622d":{"lock":false,"pos":{"x":40.6755,"y":1.3617,"z":-52.0128},"rot":{"x":0.0208,"y":269.9991,"z":0.0168}},"3accaf":{"lock":false,"pos":{"x":52.9434,"y":1.3588,"z":-77.3201},"rot":{"x":0.0208,"y":269.9992,"z":0.0168}},"3b042e":{"lock":false,"pos":{"x":40.6755,"y":1.3624,"z":-49.7128},"rot":{"x":0.0208,"y":269.9991,"z":0.0168}},"537351":{"lock":false,"pos":{"x":52.9434,"y":1.3581,"z":-79.6201},"rot":{"x":0.0208,"y":269.9991,"z":0.0168}},"5761c7":{"lock":false,"pos":{"x":52.9434,"y":1.3641,"z":-58.9202},"rot":{"x":0.0208,"y":269.9992,"z":0.0168}},"596620":{"lock":false,"pos":{"x":52.9434,"y":1.3655,"z":-54.3202},"rot":{"x":0.0208,"y":270.0013,"z":0.0168}},"5a4bb5":{"lock":false,"pos":{"x":52.9435,"y":1.3561,"z":-86.5201},"rot":{"x":0.0208,"y":269.9993,"z":0.0168}},"5a7137":{"lock":false,"pos":{"x":44.2282,"y":1.3617,"z":-56.6007},"rot":{"x":0.0208,"y":269.9992,"z":0.0168}},"5cfb72":{"lock":false,"pos":{"x":44.2282,"y":1.3529,"z":-86.5005},"rot":{"x":0.0208,"y":270.0248,"z":0.0168}},"62392c":{"lock":false,"pos":{"x":44.2282,"y":1.361,"z":-58.9007},"rot":{"x":0.0208,"y":269.9993,"z":0.0168}},"639a09":{"lock":false,"pos":{"x":40.6755,"y":1.3583,"z":-63.5128},"rot":{"x":0.0208,"y":269.9991,"z":0.0168}},"650903":{"lock":false,"pos":{"x":44.2128,"y":1.3522,"z":-88.7901},"rot":{"x":0.0208,"y":269.982,"z":0.0168}},"661c3f":{"lock":false,"pos":{"x":52.9277,"y":1.3554,"z":-88.8096},"rot":{"x":0.0208,"y":269.9991,"z":0.0168}},"6c6340":{"lock":false,"pos":{"x":40.6755,"y":1.361,"z":-54.3128},"rot":{"x":0.0208,"y":269.9991,"z":0.0168}},"7ab680":{"lock":false,"pos":{"x":40.6755,"y":1.3604,"z":-56.6128},"rot":{"x":0.0208,"y":270.0165,"z":0.0168}},"7dc42a":{"lock":false,"pos":{"x":44.2282,"y":1.3576,"z":-70.4006},"rot":{"x":0.0208,"y":269.9922,"z":0.0168}},"80d5e3":{"lock":false,"pos":{"x":44.2281,"y":1.3536,"z":-84.2005},"rot":{"x":0.0208,"y":269.9993,"z":0.0168}},"80fafa":{"lock":false,"pos":{"x":58.0989,"y":1.3694,"z":-47.4709},"rot":{"x":0.0208,"y":269.9895,"z":0.0168}},"88d2ba":{"lock":false,"pos":{"x":52.9434,"y":1.3675,"z":-47.4202},"rot":{"x":0.0208,"y":270.0012,"z":0.0168}},"88fdeb":{"lock":false,"pos":{"x":44.2282,"y":1.3643,"z":-47.4007},"rot":{"x":0.0208,"y":269.9995,"z":0.0168}},"8f5533":{"lock":false,"pos":{"x":58.0989,"y":1.3687,"z":-49.7708},"rot":{"x":0.0208,"y":270.0021,"z":0.0168}},"93381d":{"lock":false,"pos":{"x":52.9434,"y":1.3614,"z":-68.1201},"rot":{"x":0.0208,"y":269.9895,"z":0.0168}},"a26425":{"lock":false,"pos":{"x":44.2282,"y":1.3549,"z":-79.6005},"rot":{"x":0.0208,"y":269.9992,"z":0.0168}},"ab620e":{"lock":false,"pos":{"x":52.9434,"y":1.3668,"z":-49.7202},"rot":{"x":0.0208,"y":269.9995,"z":0.0168}},"afef79":{"lock":false,"pos":{"x":40.6755,"y":1.3631,"z":-47.4128},"rot":{"x":0.0208,"y":269.9992,"z":0.0168}},"bdffae":{"lock":false,"pos":{"x":44.2282,"y":1.359,"z":-65.8006},"rot":{"x":0.0208,"y":269.9996,"z":0.0168}},"c4018c":{"lock":false,"pos":{"x":52.9434,"y":1.3621,"z":-65.8201},"rot":{"x":0.0208,"y":269.9992,"z":0.0168}},"d93397":{"lock":false,"pos":{"x":52.9434,"y":1.3601,"z":-72.7202},"rot":{"x":0.0208,"y":269.9994,"z":0.0168}},"e1ef43":{"lock":false,"pos":{"x":44.2282,"y":1.3563,"z":-75.0006},"rot":{"x":0.0208,"y":269.999,"z":0.0168}},"e3ae5c":{"lock":false,"pos":{"x":52.9434,"y":1.3608,"z":-70.4201},"rot":{"x":0.0208,"y":269.9992,"z":0.0168}},"e56d1d":{"lock":false,"pos":{"x":44.2282,"y":1.3583,"z":-68.1006},"rot":{"x":0.0208,"y":269.9994,"z":0.0168}},"f54b74":{"lock":false,"pos":{"x":40.6755,"y":1.3577,"z":-65.8127},"rot":{"x":0.0208,"y":269.9992,"z":0.0168}}}}' +MaterialIndex: -1 +MeshIndex: -1 +Name: Custom_Model_Bag +Nickname: Guardian +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 66.32201 + posY: 1.67363536 + posZ: -63.9796333 + rotX: 0.0180881824 + rotY: 270.0187 + rotZ: 0.008984934 + scaleX: 1.2 + scaleY: 1.2 + scaleZ: 1.2 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian facf45/Card .32 Colt (2) 15fa11.yaml b/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian facf45/Card .32 Colt (2) 15fa11.yaml new file mode 100644 index 000000000..881a81f7b --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian facf45/Card .32 Colt (2) 15fa11.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 15fa11 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: .32 Colt (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.22822 + posY: 1.36030781 + posZ: -61.20068 + rotX: 0.0208094846 + rotY: 269.9994 + rotZ: 0.0167707112 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian facf45/Card .45 Automatic (2) e1ef43.yaml b/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian facf45/Card .45 Automatic (2) e1ef43.yaml new file mode 100644 index 000000000..6a040df53 --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian facf45/Card .45 Automatic (2) e1ef43.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: e1ef43 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: .45 Automatic (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.22822 + posY: 1.35626817 + posZ: -75.00058 + rotX: 0.0208094511 + rotY: 269.998962 + rotZ: 0.01677001 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian facf45/Card .45 Thompson (3) 650903.yaml b/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian facf45/Card .45 Thompson (3) 650903.yaml new file mode 100644 index 000000000..a8cbe2136 --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian facf45/Card .45 Thompson (3) 650903.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Guardian +GMNotes: '' +GUID: '650903' +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: .45 Thompson (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.2128067 + posY: 1.35222626 + posZ: -88.7900848 + rotX: 0.0208144244 + rotY: 269.981964 + rotZ: 0.01676417 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian facf45/Card Ace of Swords (1) 32b458.yaml b/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian facf45/Card Ace of Swords (1) 32b458.yaml new file mode 100644 index 000000000..ff0d01306 --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian facf45/Card Ace of Swords (1) 32b458.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 273709 +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 + UniqueBack: false +Description: Let Your Arrow Fly True +GMNotes: '' +GUID: 32b458 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Ace of Swords (1) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.22822 + posY: 1.36367381 + posZ: -49.70068 + rotX: 0.0208091512 + rotY: 269.999268 + rotZ: 0.016770415 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian facf45/Card Agency Backup (5) f54b74.yaml b/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian facf45/Card Agency Backup (5) f54b74.yaml new file mode 100644 index 000000000..088bf65c2 --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian facf45/Card Agency Backup (5) f54b74.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: f54b74 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Agency Backup (5) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 40.6754951 + posY: 1.35766733 + posZ: -65.8127 + rotX: 0.0208095666 + rotY: 269.999237 + rotZ: 0.0167706814 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian facf45/Card Ambush (1) 36ffa9.yaml b/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian facf45/Card Ambush (1) 36ffa9.yaml new file mode 100644 index 000000000..220ffd2c3 --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian facf45/Card Ambush (1) 36ffa9.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 36ffa9 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Ambush (1) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 52.9434242 + posY: 1.3634671 + posZ: -61.22018 + rotX: 0.0208092723 + rotY: 269.999268 + rotZ: 0.0167704038 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian facf45/Card Armor of Ardennes (5) 1c0bcd.yaml b/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian facf45/Card Armor of Ardennes (5) 1c0bcd.yaml new file mode 100644 index 000000000..1c0388169 --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian facf45/Card Armor of Ardennes (5) 1c0bcd.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 1c0bcd +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Armor of Ardennes (5) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 40.6755028 + posY: 1.35968721 + posZ: -58.91284 + rotX: 0.0208095815 + rotY: 269.999268 + rotZ: 0.0167704485 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian facf45/Card Bandolier (2) bdffae.yaml b/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian facf45/Card Bandolier (2) bdffae.yaml new file mode 100644 index 000000000..5fd4fd484 --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian facf45/Card Bandolier (2) bdffae.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 292304 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2923': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025943109/9C5481E6DFEACD450C5522F884E615482281DDB1/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: bdffae +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Bandolier (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.22822 + posY: 1.35896111 + posZ: -65.80058 + rotX: 0.0208092313 + rotY: 269.999573 + rotZ: 0.01677039 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian facf45/Card Beat Cop (2) 1e7f9a.yaml b/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian facf45/Card Beat Cop (2) 1e7f9a.yaml new file mode 100644 index 000000000..99182dadd --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian facf45/Card Beat Cop (2) 1e7f9a.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 1e7f9a +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Beat Cop (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.22822 + posY: 1.355595 + posZ: -77.3004761 + rotX: 0.020809168 + rotY: 269.999329 + rotZ: 0.0167704653 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian facf45/Card Blackjack (2) e56d1d.yaml b/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian facf45/Card Blackjack (2) e56d1d.yaml new file mode 100644 index 000000000..f918f7d24 --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian facf45/Card Blackjack (2) e56d1d.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 292205 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2922': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025943109/9C5481E6DFEACD450C5522F884E615482281DDB1/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: e56d1d +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Blackjack (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.22822 + posY: 1.35828793 + posZ: -68.1005859 + rotX: 0.0208093077 + rotY: 269.9994 + rotZ: 0.0167704783 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian facf45/Card Blood Eclipse (3) 537351.yaml b/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian facf45/Card Blood Eclipse (3) 537351.yaml new file mode 100644 index 000000000..819ebd334 --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian facf45/Card Blood Eclipse (3) 537351.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 292100 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2921': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025943109/9C5481E6DFEACD450C5522F884E615482281DDB1/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: '537351' +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Blood Eclipse (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 52.9434242 + posY: 1.3580811 + posZ: -79.62009 + rotX: 0.0208094958 + rotY: 269.999146 + rotZ: 0.0167704038 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian facf45/Card Brother Xavier (1) 5a7137.yaml b/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian facf45/Card Brother Xavier (1) 5a7137.yaml new file mode 100644 index 000000000..4380cac58 --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian facf45/Card Brother Xavier (1) 5a7137.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Pure of Spirit +GMNotes: '' +GUID: 5a7137 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Brother Xavier (1) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.22822 + posY: 1.361654 + posZ: -56.60068 + rotX: 0.0208092388 + rotY: 269.9992 + rotZ: 0.0167704765 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian facf45/Card Combat Training (1) 88fdeb.yaml b/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian facf45/Card Combat Training (1) 88fdeb.yaml new file mode 100644 index 000000000..5d2e70148 --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian facf45/Card Combat Training (1) 88fdeb.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 88fdeb +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Combat Training (1) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.22822 + posY: 1.3643471 + posZ: -47.40068 + rotX: 0.0208094586 + rotY: 269.999451 + rotZ: 0.0167703349 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian facf45/Card Custom Ammunition (3) 0c278c.yaml b/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian facf45/Card Custom Ammunition (3) 0c278c.yaml new file mode 100644 index 000000000..1b0bdc150 --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian facf45/Card Custom Ammunition (3) 0c278c.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 0c278c +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Custom Ammunition (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 52.9455223 + posY: 1.35740864 + posZ: -81.92029 + rotX: 0.0208093654 + rotY: 269.999237 + rotZ: 0.0167701971 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian facf45/Card Dynamite Blast (2) 2b76c6.yaml b/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian facf45/Card Dynamite Blast (2) 2b76c6.yaml new file mode 100644 index 000000000..5c8ad9563 --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian facf45/Card Dynamite Blast (2) 2b76c6.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 2b76c6 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Dynamite Blast (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 52.9434242 + posY: 1.35942757 + posZ: -75.02019 + rotX: 0.0208098665 + rotY: 269.998352 + rotZ: 0.016770009 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian facf45/Card Eat lead! (2) c4018c.yaml b/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian facf45/Card Eat lead! (2) c4018c.yaml new file mode 100644 index 000000000..6c0d40457 --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian facf45/Card Eat lead! (2) c4018c.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: c4018c +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '"Eat lead!" (2)' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 52.9434242 + posY: 1.36212063 + posZ: -65.82008 + rotX: 0.0208095312 + rotY: 269.999237 + rotZ: 0.0167703517 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian facf45/Card Empty Vessel (4) 043971.yaml b/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian facf45/Card Empty Vessel (4) 043971.yaml new file mode 100644 index 000000000..9a48ce117 --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian facf45/Card Empty Vessel (4) 043971.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Abandoned by the Gods +GMNotes: '' +GUID: 043971 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Empty Vessel (4) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.2207222 + posY: 1.3515538 + posZ: -91.09718 + rotX: 0.0208095275 + rotY: 269.998779 + rotZ: 0.0167705081 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian facf45/Card Enchanted Blade (3) 5cfb72.yaml b/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian facf45/Card Enchanted Blade (3) 5cfb72.yaml new file mode 100644 index 000000000..d4a7364f5 --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian facf45/Card Enchanted Blade (3) 5cfb72.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Guardian +GMNotes: '' +GUID: 5cfb72 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Enchanted Blade (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.22822 + posY: 1.352902 + posZ: -86.50049 + rotX: 0.0208020583 + rotY: 270.02478 + rotZ: 0.01677956 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian facf45/Card Ever Vigilant (1) ab620e.yaml b/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian facf45/Card Ever Vigilant (1) ab620e.yaml new file mode 100644 index 000000000..fd1688f5c --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian facf45/Card Ever Vigilant (1) ab620e.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: ab620e +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Ever Vigilant (1) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 52.9434242 + posY: 1.36683321 + posZ: -49.72018 + rotX: 0.0208094064 + rotY: 269.9995 + rotZ: 0.0167705175 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian facf45/Card Extra Ammunition (1) 5761c7.yaml b/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian facf45/Card Extra Ammunition (1) 5761c7.yaml new file mode 100644 index 000000000..cf75e1bf8 --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian facf45/Card Extra Ammunition (1) 5761c7.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 5761c7 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Extra Ammunition (1) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 52.9434242 + posY: 1.36414027 + posZ: -58.92018 + rotX: 0.0208091568 + rotY: 269.9992 + rotZ: 0.0167705 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian facf45/Card First Aid (3) 80d5e3.yaml b/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian facf45/Card First Aid (3) 80d5e3.yaml new file mode 100644 index 000000000..7e3fbbe2f --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian facf45/Card First Aid (3) 80d5e3.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 80d5e3 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: First Aid (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.2281227 + posY: 1.35357523 + posZ: -84.2004852 + rotX: 0.02080939 + rotY: 269.999268 + rotZ: 0.0167704448 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian facf45/Card Flamethrower (5) 066c18.yaml b/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian facf45/Card Flamethrower (5) 066c18.yaml new file mode 100644 index 000000000..447a2b4dd --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian facf45/Card Flamethrower (5) 066c18.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 292102 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2921': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025943109/9C5481E6DFEACD450C5522F884E615482281DDB1/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 066c18 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Flamethrower (5) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 40.67549 + posY: 1.3590138 + posZ: -61.2128448 + rotX: 0.0208094586 + rotY: 269.9992 + rotZ: 0.0167705417 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian facf45/Card Fool me once... (1) 596620.yaml b/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian facf45/Card Fool me once... (1) 596620.yaml new file mode 100644 index 000000000..352d42d6e --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian facf45/Card Fool me once... (1) 596620.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: '596620' +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '"Fool me once..." (1)' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 52.9434242 + posY: 1.36548674 + posZ: -54.3201828 + rotX: 0.0208089333 + rotY: 270.001282 + rotZ: 0.0167710036 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian facf45/Card Heroic Rescue (2) 93381d.yaml b/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian facf45/Card Heroic Rescue (2) 93381d.yaml new file mode 100644 index 000000000..e51d66bad --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian facf45/Card Heroic Rescue (2) 93381d.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Spirit. Tactic. +GMNotes: '' +GUID: 93381d +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Heroic Rescue (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 52.9434242 + posY: 1.36144733 + posZ: -68.12009 + rotX: 0.02081249 + rotY: 269.989532 + rotZ: 0.0167669244 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian facf45/Card I've had worse... (2) e3ae5c.yaml b/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian facf45/Card I've had worse... (2) e3ae5c.yaml new file mode 100644 index 000000000..7644d9397 --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian facf45/Card I've had worse... (2) e3ae5c.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: e3ae5c +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '"I''ve had worse..." (2)' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 52.9434242 + posY: 1.36077416 + posZ: -70.4200745 + rotX: 0.02080938 + rotY: 269.999237 + rotZ: 0.0167704262 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian facf45/Card I've had worse... (4) 5a4bb5.yaml b/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian facf45/Card I've had worse... (4) 5a4bb5.yaml new file mode 100644 index 000000000..cc802676b --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian facf45/Card I've had worse... (4) 5a4bb5.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 5a4bb5 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '"I''ve had worse..." (4)' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 52.9435158 + posY: 1.35606146 + posZ: -86.52009 + rotX: 0.0208111834 + rotY: 269.999329 + rotZ: 0.0167723 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian facf45/Card Keen Eye (3) 22256f.yaml b/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian facf45/Card Keen Eye (3) 22256f.yaml new file mode 100644 index 000000000..5e89a68a6 --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian facf45/Card Keen Eye (3) 22256f.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 22256f +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Keen Eye (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.23022 + posY: 1.35424912 + posZ: -81.90079 + rotX: 0.020809589 + rotY: 269.999268 + rotZ: 0.0167704877 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian facf45/Card Kerosene (1) 218e04.yaml b/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian facf45/Card Kerosene (1) 218e04.yaml new file mode 100644 index 000000000..65aae3466 --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian facf45/Card Kerosene (1) 218e04.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 292103 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2921': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025943109/9C5481E6DFEACD450C5522F884E615482281DDB1/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 218e04 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Kerosene (1) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.22822 + posY: 1.36300063 + posZ: -52.0006828 + rotX: 0.0208094642 + rotY: 269.999146 + rotZ: 0.01677044 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian facf45/Card Leadership (2) 80fafa.yaml b/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian facf45/Card Leadership (2) 80fafa.yaml new file mode 100644 index 000000000..f1779d6f5 --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian facf45/Card Leadership (2) 80fafa.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Practiced. +GMNotes: '' +GUID: 80fafa +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Leadership (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 58.0989227 + posY: 1.3693639 + posZ: -47.4708824 + rotX: 0.0208123066 + rotY: 269.9895 + rotZ: 0.0167665463 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian facf45/Card Lightning Gun (5) 639a09.yaml b/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian facf45/Card Lightning Gun (5) 639a09.yaml new file mode 100644 index 000000000..eb60f23ad --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian facf45/Card Lightning Gun (5) 639a09.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 639a09 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Lightning Gun (5) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 40.6754951 + posY: 1.3583405 + posZ: -63.5128479 + rotX: 0.0208095182 + rotY: 269.999146 + rotZ: 0.016770266 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian facf45/Card M1918 BAR (4) 6c6340.yaml b/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian facf45/Card M1918 BAR (4) 6c6340.yaml new file mode 100644 index 000000000..e6d790d39 --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian facf45/Card M1918 BAR (4) 6c6340.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 6c6340 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: M1918 BAR (4) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 40.6755066 + posY: 1.36103356 + posZ: -54.3128357 + rotX: 0.0208095964 + rotY: 269.999146 + rotZ: 0.0167703 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian facf45/Card Mano a Mano (1) 88d2ba.yaml b/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian facf45/Card Mano a Mano (1) 88d2ba.yaml new file mode 100644 index 000000000..a73b5a5a5 --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian facf45/Card Mano a Mano (1) 88d2ba.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 88d2ba +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Mano a Mano (1) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 52.9434242 + posY: 1.3675065 + posZ: -47.42018 + rotX: 0.020808924 + rotY: 270.001221 + rotZ: 0.0167711414 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian facf45/Card Marksmanship (1) 1408ad.yaml b/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian facf45/Card Marksmanship (1) 1408ad.yaml new file mode 100644 index 000000000..db1629b30 --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian facf45/Card Marksmanship (1) 1408ad.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 1408ad +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Marksmanship (1) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 52.9434242 + posY: 1.3627938 + posZ: -63.52018 + rotX: 0.0208095182 + rotY: 269.999268 + rotZ: 0.0167704634 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian facf45/Card Mk 1 Grenades (4) afef79.yaml b/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian facf45/Card Mk 1 Grenades (4) afef79.yaml new file mode 100644 index 000000000..02b020446 --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian facf45/Card Mk 1 Grenades (4) afef79.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 449017 +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/1016065725025943109/9C5481E6DFEACD450C5522F884E615482281DDB1/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: Item. Weapon. Ranged. +GMNotes: '' +GUID: afef79 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Mk 1 Grenades (4) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 40.6755028 + posY: 1.36305332 + posZ: -47.412838 + rotX: 0.02080945 + rotY: 269.9992 + rotZ: 0.0167705454 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian facf45/Card Monster Slayer (5) 661c3f.yaml b/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian facf45/Card Monster Slayer (5) 661c3f.yaml new file mode 100644 index 000000000..75734127b --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian facf45/Card Monster Slayer (5) 661c3f.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 661c3f +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Monster Slayer (5) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 52.9277229 + posY: 1.35538554 + posZ: -88.8095856 + rotX: 0.0208096523 + rotY: 269.999146 + rotZ: 0.01677041 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian facf45/Card Physical Training (2) 62392c.yaml b/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian facf45/Card Physical Training (2) 62392c.yaml new file mode 100644 index 000000000..9ad1fae13 --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian facf45/Card Physical Training (2) 62392c.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 62392c +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Physical Training (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.22822 + posY: 1.36098075 + posZ: -58.90068 + rotX: 0.0208094921 + rotY: 269.999268 + rotZ: 0.01677045 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian facf45/Card Police Badge (2) 2901ee.yaml b/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian facf45/Card Police Badge (2) 2901ee.yaml new file mode 100644 index 000000000..434d2e452 --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian facf45/Card Police Badge (2) 2901ee.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 2901ee +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Police Badge (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.22822 + posY: 1.35694146 + posZ: -72.70058 + rotX: 0.0208093543 + rotY: 269.999481 + rotZ: 0.0167706534 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian facf45/Card Reliable (1) 187591.yaml b/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian facf45/Card Reliable (1) 187591.yaml new file mode 100644 index 000000000..e403272a2 --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian facf45/Card Reliable (1) 187591.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: '187591' +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Reliable (1) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 52.9434242 + posY: 1.36481357 + posZ: -56.620182 + rotX: 0.0208093133 + rotY: 269.999451 + rotZ: 0.01677045 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian facf45/Card Safeguard (2) 7dc42a.yaml b/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian facf45/Card Safeguard (2) 7dc42a.yaml new file mode 100644 index 000000000..2bdf1bbd5 --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian facf45/Card Safeguard (2) 7dc42a.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Talent. +GMNotes: '' +GUID: 7dc42a +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Safeguard (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.22822 + posY: 1.35761464 + posZ: -70.40057 + rotX: 0.0208114982 + rotY: 269.9922 + rotZ: 0.0167679116 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian facf45/Card Shotgun (4) 3a622d.yaml b/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian facf45/Card Shotgun (4) 3a622d.yaml new file mode 100644 index 000000000..1a457beda --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian facf45/Card Shotgun (4) 3a622d.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 3a622d +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Shotgun (4) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 40.6755028 + posY: 1.36170673 + posZ: -52.012825 + rotX: 0.02080953 + rotY: 269.999146 + rotZ: 0.0167702585 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian facf45/Card Spiritual Resolve (5) 7ab680.yaml b/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian facf45/Card Spiritual Resolve (5) 7ab680.yaml new file mode 100644 index 000000000..a1910f241 --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian facf45/Card Spiritual Resolve (5) 7ab680.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Ritual. +GMNotes: '' +GUID: 7ab680 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Spiritual Resolve (5) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 40.6755066 + posY: 1.36036026 + posZ: -56.61284 + rotX: 0.0208043158 + rotY: 270.016541 + rotZ: 0.0167767163 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian facf45/Card Springfield M1903 (4) 3b042e.yaml b/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian facf45/Card Springfield M1903 (4) 3b042e.yaml new file mode 100644 index 000000000..02447535a --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian facf45/Card Springfield M1903 (4) 3b042e.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 3b042e +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Springfield M1903 (4) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 40.6755028 + posY: 1.36238 + posZ: -49.712822 + rotX: 0.0208095722 + rotY: 269.999146 + rotZ: 0.0167705957 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian facf45/Card Stand Together (3) 3accaf.yaml b/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian facf45/Card Stand Together (3) 3accaf.yaml new file mode 100644 index 000000000..cf2b0381c --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian facf45/Card Stand Together (3) 3accaf.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 3accaf +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Stand Together (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 52.9434242 + posY: 1.35875428 + posZ: -77.32008 + rotX: 0.020809222 + rotY: 269.999237 + rotZ: 0.0167702939 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian facf45/Card Stick to the Plan (3) a26425.yaml b/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian facf45/Card Stick to the Plan (3) a26425.yaml new file mode 100644 index 000000000..1f231a85f --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian facf45/Card Stick to the Plan (3) a26425.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: a26425 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Stick to the Plan (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.22822 + posY: 1.35492182 + posZ: -79.60048 + rotX: 0.0208095722 + rotY: 269.9992 + rotZ: 0.0167704541 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian facf45/Card Taunt (2) d93397.yaml b/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian facf45/Card Taunt (2) d93397.yaml new file mode 100644 index 000000000..69e19178b --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian facf45/Card Taunt (2) d93397.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: d93397 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Taunt (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 52.9434242 + posY: 1.36010075 + posZ: -72.7201843 + rotX: 0.0208093 + rotY: 269.9994 + rotZ: 0.0167703554 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian facf45/Card Telescopic Sight (3) 2badf6.yaml b/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian facf45/Card Telescopic Sight (3) 2badf6.yaml new file mode 100644 index 000000000..5aa84d5e7 --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian facf45/Card Telescopic Sight (3) 2badf6.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 2badf6 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Telescopic Sight (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 52.94332 + posY: 1.35673451 + posZ: -84.22008 + rotX: 0.02080956 + rotY: 269.9994 + rotZ: 0.01677059 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian facf45/Card The Hungering Blade (1) 17f807.yaml b/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian facf45/Card The Hungering Blade (1) 17f807.yaml new file mode 100644 index 000000000..74813f607 --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian facf45/Card The Hungering Blade (1) 17f807.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: "Calamitous Blade of Celepha\xEFs" +GMNotes: '' +GUID: 17f807 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: The Hungering Blade (1) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.22822 + posY: 1.36232734 + posZ: -54.3006821 + rotX: 0.0208091512 + rotY: 269.999268 + rotZ: 0.0167703517 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian facf45/Card Vicious Blow (2) 8f5533.yaml b/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian facf45/Card Vicious Blow (2) 8f5533.yaml new file mode 100644 index 000000000..821f3701f --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian facf45/Card Vicious Blow (2) 8f5533.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 8f5533 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Vicious Blow (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 58.0989227 + posY: 1.36869073 + posZ: -49.7707825 + rotX: 0.0208086576 + rotY: 270.002075 + rotZ: 0.0167715773 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian facf45/Card Well Prepared (2) 1fc1f4.yaml b/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian facf45/Card Well Prepared (2) 1fc1f4.yaml new file mode 100644 index 000000000..d8664d6e0 --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian facf45/Card Well Prepared (2) 1fc1f4.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 1fc1f4 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Well Prepared (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.22822 + posY: 1.35963428 + posZ: -63.5006828 + rotX: 0.0208091233 + rotY: 269.999237 + rotZ: 0.0167704 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian facf45/Card Well-Maintained (1) 0c2f37.yaml b/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian facf45/Card Well-Maintained (1) 0c2f37.yaml new file mode 100644 index 000000000..5b11faf3e --- /dev/null +++ b/unpacked/Custom_Model_Bag Guardian cd002a/Custom_Model_Bag Guardian facf45/Card Well-Maintained (1) 0c2f37.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 0c2f37 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Well-Maintained (1) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 52.9434242 + posY: 1.36616 + posZ: -52.02018 + rotX: 0.0208094884 + rotY: 269.999451 + rotZ: 0.0167705473 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Idol Thoughts 2d417b.ttslua b/unpacked/Custom_Model_Bag Idol Thoughts 2d417b.ttslua new file mode 100644 index 000000000..5534586ac --- /dev/null +++ b/unpacked/Custom_Model_Bag Idol Thoughts 2d417b.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.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 \ No newline at end of file diff --git a/unpacked/Custom_Model_Bag Idol Thoughts 2d417b.yaml b/unpacked/Custom_Model_Bag Idol Thoughts 2d417b.yaml new file mode 100644 index 000000000..7e5450fd1 --- /dev/null +++ b/unpacked/Custom_Model_Bag Idol Thoughts 2d417b.yaml @@ -0,0 +1,76 @@ +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 Idol Thoughts 2d417b/Custom_Model_Bag 4 Cost of Azure + 0fad66.yaml' +- !include 'Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses + 16ceab.yaml' +- !include 'Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 3 Bon Voyage 49dfb9.yaml' +- !include 'Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 2 Enter the Dragon + 4f944f.yaml' +- !include 'Custom_Model_Bag Idol Thoughts 2d417b/Custom_Tile Bread and Circuses 82e1ed.yaml' +- !include 'Custom_Model_Bag Idol Thoughts 2d417b/Bag Campaign Guide d5b604.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/1011563111884720834/103D38A8FBBFA64EB66439667F8775B15FC679C9/ + MaterialIndex: 3 + MeshURL: https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj + NormalURL: '' + TypeIndex: 6 +Description: '' +GMNotes: '' +GUID: 2d417b +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Model_Bag Idol Thoughts 2d417b.ttslua' +LuaScriptState: '{"ml":{"0fad66":{"lock":false,"pos":{"x":12.25,"y":1.4607,"z":-12.6663},"rot":{"x":359.9201,"y":270.0131,"z":0.0169}},"16ceab":{"lock":false,"pos":{"x":12.2508,"y":1.4684,"z":13.4375},"rot":{"x":359.9201,"y":269.9978,"z":0.0169}},"49dfb9":{"lock":false,"pos":{"x":12.2508,"y":1.4633,"z":-3.9202},"rot":{"x":359.9201,"y":269.9943,"z":0.0169}},"4f944f":{"lock":false,"pos":{"x":12.2503,"y":1.4658,"z":4.6877},"rot":{"x":359.9201,"y":270.0047,"z":0.0169}},"82e1ed":{"lock":false,"pos":{"x":-4.5533,"y":1.5835,"z":-14.8002},"rot":{"x":359.9197,"y":270,"z":0.0168}},"d5b604":{"lock":false,"pos":{"x":12.2505,"y":1.2731,"z":-21.3052},"rot":{"x":359.9554,"y":225.0007,"z":0.0685}}}}' +MaterialIndex: -1 +MeshIndex: -1 +Name: Custom_Model_Bag +Nickname: Idol Thoughts +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 32.4527359 + posY: 1.43240213 + posZ: -13.1239948 + rotX: 359.9201 + rotY: 270.013458 + rotZ: 0.0168549512 + scaleX: 2.21 + scaleY: 0.46 + scaleZ: 2.42 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Bag Campaign Guide d5b604.yaml b/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Bag Campaign Guide d5b604.yaml new file mode 100644 index 000000000..291c273f4 --- /dev/null +++ b/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Bag Campaign Guide d5b604.yaml @@ -0,0 +1,72 @@ +Autoraise: true +ColorDiffuse: + b: 0.0 + g: 0.0 + r: 0.0 +ContainedObjects: +- Autoraise: false + ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 + CustomPDF: + PDFPage: 0 + PDFPageOffset: 0 + PDFPassword: '' + PDFUrl: http://cloud-3.steamusercontent.com/ugc/1010437351815818816/BDA60FDDFF367396C8940D82B295C89A09D79A33/ + Description: '' + GMNotes: '' + GUID: '957365' + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Custom_PDF + Nickname: Idol Thoughts Campaign Guide + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 6.25088 + posY: 2.340202 + posZ: -46.57162 + rotX: 359.920135 + rotY: 269.957062 + rotZ: 0.0169319641 + scaleX: 2.18 + scaleY: 1.0 + scaleZ: 2.18 + XmlUI: '' +Description: '' +GMNotes: '' +GUID: d5b604 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +MeshIndex: -1 +Name: Bag +Nickname: Campaign Guide +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 32.45269 + posY: 1.43240237 + posZ: -13.1239805 + rotX: 359.9554 + rotY: 225.002579 + rotZ: 0.06846707 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab.ttslua b/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab.ttslua new file mode 100644 index 000000000..54d591927 --- /dev/null +++ b/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab.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.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 Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab.yaml b/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab.yaml new file mode 100644 index 000000000..7e0552aba --- /dev/null +++ b/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab.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 1 Bread and Circuses 16ceab/Bag Custom Investigators + dca07f.yaml' +- !include 'Custom_Model_Bag 1 Bread and Circuses 16ceab/Custom_Model_Bag Set-aside + 9427d8.yaml' +- !include 'Custom_Model_Bag 1 Bread and Circuses 16ceab/Deck Encounter Deck be9f73.yaml' +- !include 'Custom_Model_Bag 1 Bread and Circuses 16ceab/Deck Agenda Deck 8f68a9.yaml' +- !include 'Custom_Model_Bag 1 Bread and Circuses 16ceab/Deck Act Deck 0243c5.yaml' +- !include 'Custom_Model_Bag 1 Bread and Circuses 16ceab/Card Scenario 5a7cdb.yaml' +- !include 'Custom_Model_Bag 1 Bread and Circuses 16ceab/Card The Dance Floor 6f22b2.yaml' +- !include 'Custom_Model_Bag 1 Bread and Circuses 16ceab/Custom_Tile 21b7c9.yaml' +- !include 'Custom_Model_Bag 1 Bread and Circuses 16ceab/Custom_Tile 9ed742.yaml' +- !include 'Custom_Model_Bag 1 Bread and Circuses 16ceab/Custom_Tile c7b7cc.yaml' +- !include 'Custom_Model_Bag 1 Bread and Circuses 16ceab/Custom_Tile 8262aa.yaml' +- !include 'Custom_Model_Bag 1 Bread and Circuses 16ceab/Card The Dining Area 954f96.yaml' +- !include 'Custom_Model_Bag 1 Bread and Circuses 16ceab/Card e20744.yaml' +- !include 'Custom_Model_Bag 1 Bread and Circuses 16ceab/Custom_Tile 49a255.yaml' +- !include 'Custom_Model_Bag 1 Bread and Circuses 16ceab/Custom_Tile e0f43f.yaml' +- !include 'Custom_Model_Bag 1 Bread and Circuses 16ceab/Card The Back Booths 09a94a.yaml' +- !include 'Custom_Model_Bag 1 Bread and Circuses 16ceab/Custom_Tile d0209c.yaml' +- !include 'Custom_Model_Bag 1 Bread and Circuses 16ceab/Custom_Tile 7234af.yaml' +- !include 'Custom_Model_Bag 1 Bread and Circuses 16ceab/Card Dark Stairwell 45cd63.yaml' +- !include 'Custom_Model_Bag 1 Bread and Circuses 16ceab/Card 588f16.yaml' +- !include 'Custom_Model_Bag 1 Bread and Circuses 16ceab/Card Stairway 18b46f.yaml' +- !include 'Custom_Model_Bag 1 Bread and Circuses 16ceab/Custom_Tile 6c9a78.yaml' +- !include 'Custom_Model_Bag 1 Bread and Circuses 16ceab/Card The Balcony 7e22c1.yaml' +- !include 'Custom_Model_Bag 1 Bread and Circuses 16ceab/Card eea1d3.yaml' +- !include 'Custom_Model_Bag 1 Bread and Circuses 16ceab/Card The Lobby 4ebd97.yaml' +- !include 'Custom_Model_Bag 1 Bread and Circuses 16ceab/Custom_Tile af6a85.yaml' +- !include 'Custom_Model_Bag 1 Bread and Circuses 16ceab/Card The Imperial Entrance + 349146.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/1011563111884530509/77E6BE7FB5EC7621B55B1A6F4A95C8FBA0868B52/ + MaterialIndex: 3 + MeshURL: https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj + NormalURL: '' + TypeIndex: 6 +Description: Idol Thoughts +GMNotes: '' +GUID: 16ceab +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Model_Bag 1 Bread and Circuses 16ceab.ttslua' +LuaScriptState: '{"ml":{"0243c5":{"lock":false,"pos":{"x":-2.6885,"y":1.6623,"z":-5.0485},"rot":{"x":359.9197,"y":269.9999,"z":0.0168}},"09a94a":{"lock":false,"pos":{"x":-23.6794,"y":1.6885,"z":7.5699},"rot":{"x":359.9201,"y":270.0031,"z":0.0169}},"18b46f":{"lock":false,"pos":{"x":-30.2242,"y":1.6954,"z":-0.03},"rot":{"x":359.9201,"y":269.9995,"z":0.0169}},"21b7c9":{"lock":false,"pos":{"x":-20.2371,"y":1.6097,"z":-0.0598},"rot":{"x":359.9201,"y":269.9998,"z":0.0169}},"349146":{"lock":false,"pos":{"x":-23.6766,"y":1.6817,"z":-15.28},"rot":{"x":359.9201,"y":269.9994,"z":0.0169}},"45cd63":{"lock":false,"pos":{"x":-30.2242,"y":1.6976,"z":7.57},"rot":{"x":359.9201,"y":269.9994,"z":0.0169}},"49a255":{"lock":false,"pos":{"x":-26.9767,"y":1.6191,"z":0.0458},"rot":{"x":359.9201,"y":269.9999,"z":0.0169}},"4ebd97":{"lock":false,"pos":{"x":-23.6765,"y":1.684,"z":-7.7},"rot":{"x":359.9201,"y":269.9995,"z":0.0169}},"588f16":{"lock":false,"pos":{"x":-30.2243,"y":1.6987,"z":11.46},"rot":{"x":359.9201,"y":270,"z":0.0169}},"5a7cdb":{"lock":false,"pos":{"x":-3.9558,"y":1.6556,"z":-10.4414},"rot":{"x":359.9197,"y":269.9998,"z":0.0168}},"6c9a78":{"lock":false,"pos":{"x":-33.5795,"y":1.6283,"z":-0.1135},"rot":{"x":359.9201,"y":269.9999,"z":0.0169}},"6f22b2":{"lock":false,"pos":{"x":-17.12,"y":1.6771,"z":-0.03},"rot":{"x":359.9201,"y":269.9976,"z":0.0169}},"7234af":{"lock":false,"pos":{"x":-29.1704,"y":1.6232,"z":3.6156},"rot":{"x":359.9831,"y":0,"z":359.9201}},"7e22c1":{"lock":false,"pos":{"x":-36.7731,"y":1.7045,"z":-0.03},"rot":{"x":359.9201,"y":269.9995,"z":0.0169}},"8262aa":{"lock":false,"pos":{"x":-23.6765,"y":1.6134,"z":-3.83},"rot":{"x":359.9831,"y":0.0001,"z":359.92}},"8f68a9":{"lock":false,"pos":{"x":-2.7247,"y":1.6566,"z":0.3733},"rot":{"x":359.9197,"y":269.9976,"z":0.0168}},"9427d8":{"lock":false,"pos":{"x":1.6966,"y":1.5583,"z":14.2787},"rot":{"x":359.9551,"y":224.998,"z":0.0687}},"954f96":{"lock":false,"pos":{"x":-23.6765,"y":1.6864,"z":-0.03},"rot":{"x":359.9221,"y":269.9994,"z":0.0222}},"9ed742":{"lock":false,"pos":{"x":-19.078,"y":1.6093,"z":4.131},"rot":{"x":359.9316,"y":315.0001,"z":359.9554}},"af6a85":{"lock":false,"pos":{"x":-23.6765,"y":1.6111,"z":-11.51},"rot":{"x":359.9831,"y":0,"z":359.9201}},"be9f73":{"lock":false,"pos":{"x":-3.9277,"y":1.7717,"z":5.7572},"rot":{"x":359.9197,"y":270.0005,"z":180.0168}},"c7b7cc":{"lock":false,"pos":{"x":-20.1562,"y":1.6084,"z":-4.0361},"rot":{"x":0.0447,"y":45.1401,"z":359.9317}},"d0209c":{"lock":false,"pos":{"x":-26.6943,"y":1.6209,"z":7.5062},"rot":{"x":359.9201,"y":270.036,"z":0.0168}},"dca07f":{"lock":false,"pos":{"x":-4.2365,"y":1.4067,"z":14.9013},"rot":{"x":359.9832,"y":0.0559,"z":359.9196}},"e0f43f":{"lock":false,"pos":{"x":-23.6765,"y":1.6157,"z":3.86},"rot":{"x":359.9831,"y":0.0002,"z":359.92}},"e20744":{"lock":false,"pos":{"x":-25.1856,"y":1.8336,"z":-1.0486},"rot":{"x":359.9351,"y":270.0494,"z":0.0396}},"eea1d3":{"lock":false,"pos":{"x":-27.2076,"y":1.6889,"z":-7.7258},"rot":{"x":359.9201,"y":269.9999,"z":0.0169}}}}' +MaterialIndex: -1 +MeshIndex: -1 +Name: Custom_Model_Bag +Nickname: 1 Bread and Circuses +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 32.45269 + posY: 1.43240237 + posZ: -13.1239805 + rotX: 359.920135 + rotY: 269.99762 + rotZ: 0.01687735 + scaleX: 2.21 + scaleY: 0.46 + scaleZ: 2.42 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Bag Custom Investigators dca07f.yaml b/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Bag Custom Investigators dca07f.yaml new file mode 100644 index 000000000..b916c9f6a --- /dev/null +++ b/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Bag Custom Investigators dca07f.yaml @@ -0,0 +1,40 @@ +Autoraise: true +ColorDiffuse: + b: 0.7383361 + g: 0.7383361 + r: 0.7804878 +ContainedObjects: +- !include 'Bag Custom Investigators dca07f/Bag Ivan Orlov dbcd3e.yaml' +- !include 'Bag Custom Investigators dca07f/Bag Ainsley Wentworth, Esq. 1d8686.yaml' +- !include 'Bag Custom Investigators dca07f/Bag Edith Alexander ff6a43.yaml' +- !include 'Bag Custom Investigators dca07f/Bag Alma Winter 80877e.yaml' +- !include 'Bag Custom Investigators dca07f/Bag David Emerson 2f75e3.yaml' +Description: '' +GMNotes: '' +GUID: dca07f +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +MeshIndex: -1 +Name: Bag +Nickname: Custom Investigators +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -4.236499 + posY: 1.40674019 + posZ: 14.9013023 + rotX: 359.983215 + rotY: 0.05589366 + rotZ: 359.919647 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/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 Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Bag Custom Investigators dca07f/Bag Ainsley Wentworth, Esq. 1d8686.yaml new file mode 100644 index 000000000..0e43c4d28 --- /dev/null +++ b/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Bag Custom Investigators dca07f/Bag Ainsley Wentworth, Esq. 1d8686.yaml @@ -0,0 +1,39 @@ +Autoraise: true +ColorDiffuse: + b: 0.151740819 + g: 0.698579252 + r: 0.862369 +ContainedObjects: +- !include 'Bag Ainsley Wentworth, Esq. 1d8686/Card cdbb7f.yaml' +- !include 'Bag Ainsley Wentworth, Esq. 1d8686/Card d57d70.yaml' +- !include 'Bag Ainsley Wentworth, Esq. 1d8686/Card Ainsley Wentworth, Esq. 55809d.yaml' +- !include 'Bag Ainsley Wentworth, Esq. 1d8686/Card Ainsley Wentworth, Esq. b1256b.yaml' +Description: '' +GMNotes: '' +GUID: 1d8686 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +MeshIndex: -1 +Name: Bag +Nickname: Ainsley Wentworth, Esq. +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 4.83897543 + posY: 3.33834958 + posZ: -10.7654362 + rotX: 0.8689586 + rotY: 359.979736 + rotZ: 1.3573873 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/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 Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Bag Custom Investigators dca07f/Bag Ainsley Wentworth, Esq. 1d8686/Card cdbb7f.yaml new file mode 100644 index 000000000..2ea9cc240 --- /dev/null +++ b/unpacked/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 @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 264608 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2646': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949592555966687262/DAD7E7339965DCFFF3EECE9D77805F4A7FD817B2/ + NumHeight: 2 + NumWidth: 7 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: cdbb7f +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 14.7564116 + posY: 3.542341 + posZ: -20.8496342 + rotX: 358.158478 + rotY: 270.064575 + rotZ: 357.037781 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/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 Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Bag Custom Investigators dca07f/Bag Ainsley Wentworth, Esq. 1d8686/Card d57d70.yaml new file mode 100644 index 000000000..cab5ae86e --- /dev/null +++ b/unpacked/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 @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 264609 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2646': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949592555966687262/DAD7E7339965DCFFF3EECE9D77805F4A7FD817B2/ + NumHeight: 2 + NumWidth: 7 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: d57d70 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 14.7547092 + posY: 3.50733423 + posZ: -17.6183281 + rotX: 359.920135 + rotY: 269.997375 + rotZ: 0.0168735143 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/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 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 new file mode 100644 index 000000000..084b0eda2 --- /dev/null +++ b/unpacked/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 @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 260800 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2608': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/949592555966718397/23274AF73AB34005FDDEF374AB024FB874471A2F/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949592555966710270/D257018E33D89C2E623FF6A5F369A94A674FA0B0/ + NumHeight: 2 + NumWidth: 3 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 55809d +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Ainsley Wentworth, Esq. +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.1014385 + posY: 3.50081682 + posZ: -19.174202 + rotX: 359.920135 + rotY: 269.999664 + rotZ: 0.0168704689 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/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 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 new file mode 100644 index 000000000..2d6a5dfbd --- /dev/null +++ b/unpacked/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 @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 262600 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2626': + BackIsHidden: true + BackURL: https://i.imgur.com/Kvbx58J.jpg + FaceURL: https://i.imgur.com/GVltRuj.jpg + NumHeight: 2 + NumWidth: 6 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: b1256b +Grid: false +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Ainsley Wentworth, Esq. +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 22.256897 + posY: 3.49641752 + posZ: -19.1745033 + rotX: 359.920135 + rotY: 269.993958 + rotZ: 0.0168705434 + scaleX: 0.6 + scaleY: 1.0 + scaleZ: 0.6 +XmlUI: '' diff --git a/unpacked/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 Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Bag Custom Investigators dca07f/Bag Alma Winter 80877e.yaml new file mode 100644 index 000000000..cd5f3f439 --- /dev/null +++ b/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Bag Custom Investigators dca07f/Bag Alma Winter 80877e.yaml @@ -0,0 +1,39 @@ +Autoraise: true +ColorDiffuse: + b: 0.07567654 + g: 0.7019608 + r: 0.0 +ContainedObjects: +- !include 'Bag Alma Winter 80877e/Card 427afe.yaml' +- !include 'Bag Alma Winter 80877e/Card 8ba462.yaml' +- !include 'Bag Alma Winter 80877e/Card Alma Winter 6e7ea8.yaml' +- !include 'Bag Alma Winter 80877e/Card Alma Winter d2913a.yaml' +Description: '' +GMNotes: '' +GUID: 80877e +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +MeshIndex: -1 +Name: Bag +Nickname: Alma Winter +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 5.46555233 + posY: 3.35983562 + posZ: -11.0832071 + rotX: 0.6669054 + rotY: 0.135817155 + rotZ: 1.46792388 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/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 Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Bag Custom Investigators dca07f/Bag Alma Winter 80877e/Card 427afe.yaml new file mode 100644 index 000000000..8283cd19d --- /dev/null +++ b/unpacked/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 @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 264604 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2646': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949592555966687262/DAD7E7339965DCFFF3EECE9D77805F4A7FD817B2/ + NumHeight: 2 + NumWidth: 7 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 427afe +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -0.0277516525 + posY: 3.58668113 + posZ: -24.5685749 + rotX: 1.66411757 + rotY: 270.062225 + rotZ: 2.92243838 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/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 Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Bag Custom Investigators dca07f/Bag Alma Winter 80877e/Card 8ba462.yaml new file mode 100644 index 000000000..30cd05d58 --- /dev/null +++ b/unpacked/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 @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 264605 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2646': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949592555966687262/DAD7E7339965DCFFF3EECE9D77805F4A7FD817B2/ + NumHeight: 2 + NumWidth: 7 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 8ba462 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -0.6234155 + posY: 3.563412 + posZ: -24.3103085 + rotX: 2.94665241 + rotY: 269.991058 + rotZ: 0.2713191 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/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 Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Bag Custom Investigators dca07f/Bag Alma Winter 80877e/Card Alma Winter 6e7ea8.yaml new file mode 100644 index 000000000..0026b4452 --- /dev/null +++ b/unpacked/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 @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 260801 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2608': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/949592555966718397/23274AF73AB34005FDDEF374AB024FB874471A2F/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949592555966710270/D257018E33D89C2E623FF6A5F369A94A674FA0B0/ + NumHeight: 2 + NumWidth: 3 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 6e7ea8 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Alma Winter +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.12133336 + posY: 2.7783978 + posZ: -24.7745724 + rotX: 0.051999677 + rotY: 269.9915 + rotZ: 0.0399167351 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/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 Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Bag Custom Investigators dca07f/Bag Alma Winter 80877e/Card Alma Winter d2913a.yaml new file mode 100644 index 000000000..48cdc8e6a --- /dev/null +++ b/unpacked/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 @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 262501 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2625': + BackIsHidden: true + BackURL: https://i.imgur.com/Kvbx58J.jpg + FaceURL: https://i.imgur.com/GVltRuj.jpg + NumHeight: 2 + NumWidth: 6 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: d2913a +Grid: false +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Alma Winter +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 1.02950287 + posY: 3.57057714 + posZ: -24.77604 + rotX: 358.34906 + rotY: 269.908325 + rotZ: 2.73933 + scaleX: 0.6 + scaleY: 1.0 + scaleZ: 0.6 +XmlUI: '' diff --git a/unpacked/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 Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Bag Custom Investigators dca07f/Bag David Emerson 2f75e3.yaml new file mode 100644 index 000000000..d467885e9 --- /dev/null +++ b/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Bag Custom Investigators dca07f/Bag David Emerson 2f75e3.yaml @@ -0,0 +1,39 @@ +Autoraise: true +ColorDiffuse: + b: 0.0240839645 + g: 0.0240839645 + r: 0.9216025 +ContainedObjects: +- !include 'Bag David Emerson 2f75e3/Card 45db8c.yaml' +- !include 'Bag David Emerson 2f75e3/Card 3dee9f.yaml' +- !include 'Bag David Emerson 2f75e3/Card David Emerson ecaa8c.yaml' +- !include 'Bag David Emerson 2f75e3/Card David Emerson 3c216d.yaml' +Description: '' +GMNotes: '' +GUID: 2f75e3 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +MeshIndex: -1 +Name: Bag +Nickname: David Emerson +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 4.718557 + posY: 3.30231547 + posZ: -10.7712488 + rotX: 1.6511215 + rotY: 0.0362849757 + rotZ: 2.70512414 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/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 Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Bag Custom Investigators dca07f/Bag David Emerson 2f75e3/Card 3dee9f.yaml new file mode 100644 index 000000000..b870c0e41 --- /dev/null +++ b/unpacked/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 @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 264606 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2646': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949592555966687262/DAD7E7339965DCFFF3EECE9D77805F4A7FD817B2/ + NumHeight: 2 + NumWidth: 7 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 3dee9f +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -4.506353 + posY: 3.526794 + posZ: -22.66374 + rotX: 359.920135 + rotY: 270.000549 + rotZ: 0.0168695245 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/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 Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Bag Custom Investigators dca07f/Bag David Emerson 2f75e3/Card 45db8c.yaml new file mode 100644 index 000000000..604dac4bd --- /dev/null +++ b/unpacked/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 @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 264607 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2646': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949592555966687262/DAD7E7339965DCFFF3EECE9D77805F4A7FD817B2/ + NumHeight: 2 + NumWidth: 7 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 45db8c +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -4.50644827 + posY: 3.52586079 + posZ: -25.8323479 + rotX: 359.920135 + rotY: 270.0001 + rotZ: 0.01686651 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/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 Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Bag Custom Investigators dca07f/Bag David Emerson 2f75e3/Card David Emerson 3c216d.yaml new file mode 100644 index 000000000..eeef98078 --- /dev/null +++ b/unpacked/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 @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 262303 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2623': + BackIsHidden: true + BackURL: https://i.imgur.com/Kvbx58J.jpg + FaceURL: https://i.imgur.com/GVltRuj.jpg + NumHeight: 2 + NumWidth: 6 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 3c216d +Grid: false +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: David Emerson +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 3.05300975 + posY: 3.5158062 + posZ: -24.19166 + rotX: 359.920135 + rotY: 269.996979 + rotZ: 0.0168666411 + scaleX: 0.6 + scaleY: 1.0 + scaleZ: 0.6 +XmlUI: '' diff --git a/unpacked/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 Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Bag Custom Investigators dca07f/Bag David Emerson 2f75e3/Card David Emerson ecaa8c.yaml new file mode 100644 index 000000000..dad652b70 --- /dev/null +++ b/unpacked/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 @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 260803 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2608': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/949592555966718397/23274AF73AB34005FDDEF374AB024FB874471A2F/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949592555966710270/D257018E33D89C2E623FF6A5F369A94A674FA0B0/ + NumHeight: 2 + NumWidth: 3 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: ecaa8c +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: David Emerson +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -0.151075467 + posY: 3.5994575 + posZ: -24.24692 + rotX: 358.89032 + rotY: 269.989929 + rotZ: 1.35770011 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/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 Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Bag Custom Investigators dca07f/Bag Edith Alexander ff6a43.yaml new file mode 100644 index 000000000..645f94692 --- /dev/null +++ b/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Bag Custom Investigators dca07f/Bag Edith Alexander ff6a43.yaml @@ -0,0 +1,39 @@ +Autoraise: true +ColorDiffuse: + b: 0.7019608 + g: 0.153961033 + r: 0.0 +ContainedObjects: +- !include 'Bag Edith Alexander ff6a43/Card 0d35ef.yaml' +- !include 'Bag Edith Alexander ff6a43/Card 920ed7.yaml' +- !include 'Bag Edith Alexander ff6a43/Card Edith Alexander f89508.yaml' +- !include 'Bag Edith Alexander ff6a43/Card Edith Alexander c72bdd.yaml' +Description: '' +GMNotes: '' +GUID: ff6a43 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +MeshIndex: -1 +Name: Bag +Nickname: Edith Alexander +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 5.03003836 + posY: 3.32034588 + posZ: -11.7636127 + rotX: 358.574 + rotY: 0.13634184 + rotZ: 2.94185972 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/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 Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Bag Custom Investigators dca07f/Bag Edith Alexander ff6a43/Card 0d35ef.yaml new file mode 100644 index 000000000..15e228d59 --- /dev/null +++ b/unpacked/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 @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 264602 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2646': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949592555966687262/DAD7E7339965DCFFF3EECE9D77805F4A7FD817B2/ + NumHeight: 2 + NumWidth: 7 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 0d35ef +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 0.1331425 + posY: 3.519723 + posZ: -22.3573532 + rotX: 359.920135 + rotY: 270.000366 + rotZ: 0.0168668833 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/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 Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Bag Custom Investigators dca07f/Bag Edith Alexander ff6a43/Card 920ed7.yaml new file mode 100644 index 000000000..0d4cc1e41 --- /dev/null +++ b/unpacked/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 @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 264603 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2646': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949592555966687262/DAD7E7339965DCFFF3EECE9D77805F4A7FD817B2/ + NumHeight: 2 + NumWidth: 7 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 920ed7 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 0.133123428 + posY: 3.520596 + posZ: -19.3925323 + rotX: 359.920135 + rotY: 269.9993 + rotZ: 0.0168738738 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/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 Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Bag Custom Investigators dca07f/Bag Edith Alexander ff6a43/Card Edith Alexander c72bdd.yaml new file mode 100644 index 000000000..1e86914e3 --- /dev/null +++ b/unpacked/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 @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 262402 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2624': + BackIsHidden: true + BackURL: https://i.imgur.com/Kvbx58J.jpg + FaceURL: https://i.imgur.com/GVltRuj.jpg + NumHeight: 2 + NumWidth: 6 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: c72bdd +Grid: false +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Edith Alexander +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 7.63520765 + posY: 3.50973558 + posZ: -20.7585182 + rotX: 359.920135 + rotY: 269.999573 + rotZ: 0.0168728959 + scaleX: 0.6 + scaleY: 1.0 + scaleZ: 0.6 +XmlUI: '' diff --git a/unpacked/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 Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Bag Custom Investigators dca07f/Bag Edith Alexander ff6a43/Card Edith Alexander f89508.yaml new file mode 100644 index 000000000..779432f5d --- /dev/null +++ b/unpacked/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 @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 260802 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2608': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/949592555966718397/23274AF73AB34005FDDEF374AB024FB874471A2F/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949592555966710270/D257018E33D89C2E623FF6A5F369A94A674FA0B0/ + NumHeight: 2 + NumWidth: 3 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: f89508 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Edith Alexander +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 4.486213 + posY: 3.56491733 + posZ: -20.7601852 + rotX: 1.28738785 + rotY: 270.011139 + rotZ: 1.92592359 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/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 Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Bag Custom Investigators dca07f/Bag Ivan Orlov dbcd3e.yaml new file mode 100644 index 000000000..52874cb26 --- /dev/null +++ b/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Bag Custom Investigators dca07f/Bag Ivan Orlov dbcd3e.yaml @@ -0,0 +1,39 @@ +Autoraise: true +ColorDiffuse: + b: 0.7019608 + g: 0.0 + r: 0.456665158 +ContainedObjects: +- !include 'Bag Ivan Orlov dbcd3e/Card 2049d9.yaml' +- !include 'Bag Ivan Orlov dbcd3e/Card 21141d.yaml' +- !include 'Bag Ivan Orlov dbcd3e/Card Ivan Orlov 08ab92.yaml' +- !include 'Bag Ivan Orlov dbcd3e/Card Ivan Orlov 057e04.yaml' +Description: '' +GMNotes: '' +GUID: dbcd3e +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +MeshIndex: -1 +Name: Bag +Nickname: Ivan Orlov +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 5.091763 + posY: 3.33335972 + posZ: -11.5228157 + rotX: 358.3617 + rotY: -0.00367272133 + rotZ: 1.45244265 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/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 Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Bag Custom Investigators dca07f/Bag Ivan Orlov dbcd3e/Card 2049d9.yaml new file mode 100644 index 000000000..5fa6effba --- /dev/null +++ b/unpacked/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 @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 264600 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2646': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949592555966687262/DAD7E7339965DCFFF3EECE9D77805F4A7FD817B2/ + NumHeight: 2 + NumWidth: 7 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 2049d9 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 6.155708 + posY: 3.51210356 + posZ: -16.2178726 + rotX: 359.920135 + rotY: 269.999878 + rotZ: 0.0168668367 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/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 Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Bag Custom Investigators dca07f/Bag Ivan Orlov dbcd3e/Card 21141d.yaml new file mode 100644 index 000000000..4a8bde176 --- /dev/null +++ b/unpacked/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 @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 264601 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2646': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949592555966687262/DAD7E7339965DCFFF3EECE9D77805F4A7FD817B2/ + NumHeight: 2 + NumWidth: 7 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 21141d +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 6.15752745 + posY: 3.51306581 + posZ: -12.9422035 + rotX: 359.920135 + rotY: 269.999573 + rotZ: 0.0168654956 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/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 Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Bag Custom Investigators dca07f/Bag Ivan Orlov dbcd3e/Card Ivan Orlov 057e04.yaml new file mode 100644 index 000000000..329a0efe7 --- /dev/null +++ b/unpacked/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 @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 262204 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2622': + BackIsHidden: true + BackURL: https://i.imgur.com/Kvbx58J.jpg + FaceURL: https://i.imgur.com/GVltRuj.jpg + NumHeight: 2 + NumWidth: 6 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 057e04 +Grid: false +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Ivan Orlov +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 13.6593208 + posY: 3.50216341 + posZ: -14.4519844 + rotX: 359.920135 + rotY: 269.997742 + rotZ: 0.0168736 + scaleX: 0.6 + scaleY: 1.0 + scaleZ: 0.6 +XmlUI: '' diff --git a/unpacked/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 Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Bag Custom Investigators dca07f/Bag Ivan Orlov dbcd3e/Card Ivan Orlov 08ab92.yaml new file mode 100644 index 000000000..7ad68cf1c --- /dev/null +++ b/unpacked/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 @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 260804 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2608': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/949592555966718397/23274AF73AB34005FDDEF374AB024FB874471A2F/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949592555966710270/D257018E33D89C2E623FF6A5F369A94A674FA0B0/ + NumHeight: 2 + NumWidth: 3 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 08ab92 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Ivan Orlov +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.5088205 + posY: 3.55477333 + posZ: -14.451972 + rotX: 2.91924477 + rotY: 270.000061 + rotZ: 0.07760042 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Card 588f16.yaml b/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Card 588f16.yaml new file mode 100644 index 000000000..0f04e546f --- /dev/null +++ b/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Card 588f16.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 263927 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2639': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949592555967535671/D99E803742D584F9701FF377FB04FECACD973E7C/ + NumHeight: 4 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 588f16 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -30.2243 + posY: 1.69873416 + posZ: 11.46 + rotX: 359.9201 + rotY: 270.0 + rotZ: 0.0168762486 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Card e20744.yaml b/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Card e20744.yaml new file mode 100644 index 000000000..fe783a0f3 --- /dev/null +++ b/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Card e20744.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 263905 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2639': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949592555967535671/D99E803742D584F9701FF377FB04FECACD973E7C/ + NumHeight: 4 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: e20744 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -25.1856155 + posY: 1.83355975 + posZ: -1.04863274 + rotX: 359.93512 + rotY: 270.0494 + rotZ: 0.0395989 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Card eea1d3.yaml b/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Card eea1d3.yaml new file mode 100644 index 000000000..fc9085d19 --- /dev/null +++ b/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Card eea1d3.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 263924 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2639': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949592555967535671/D99E803742D584F9701FF377FB04FECACD973E7C/ + NumHeight: 4 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: eea1d3 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -27.2076 + posY: 1.68887818 + posZ: -7.72580051 + rotX: 359.9201 + rotY: 269.999939 + rotZ: 0.0168763138 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Card Dark Stairwell 45cd63.yaml b/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Card Dark Stairwell 45cd63.yaml new file mode 100644 index 000000000..5c8e5c930 --- /dev/null +++ b/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Card Dark Stairwell 45cd63.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 269804 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2698': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/949592555967447479/4CD014FB65102851A0597D6F79EE8BA493F6902B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949592555967447131/BF11520AAC6CDE5C3FAEFAEEB217CF8C47BDF32B/ + NumHeight: 2 + NumWidth: 5 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 45cd63 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Dark Stairwell +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -30.2242 + posY: 1.69758856 + posZ: 7.569999 + rotX: 359.9201 + rotY: 269.9994 + rotZ: 0.0168772228 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Card Scenario 5a7cdb.yaml b/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Card Scenario 5a7cdb.yaml new file mode 100644 index 000000000..20e8440b3 --- /dev/null +++ b/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Card Scenario 5a7cdb.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 800 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '8': + BackIsHidden: true + BackURL: https://i.imgur.com/SIgsq9J.jpg/ + FaceURL: https://i.imgur.com/SIgsq9J.jpg/ + NumHeight: 3 + NumWidth: 5 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 5a7cdb +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Scenario +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.95584035 + posY: 1.65564787 + posZ: -10.4414139 + rotX: 359.919739 + rotY: 269.999756 + rotZ: 0.01684158 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Card Stairway 18b46f.yaml b/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Card Stairway 18b46f.yaml new file mode 100644 index 000000000..76746bf81 --- /dev/null +++ b/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Card Stairway 18b46f.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 269801 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2698': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/949592555967447479/4CD014FB65102851A0597D6F79EE8BA493F6902B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949592555967447131/BF11520AAC6CDE5C3FAEFAEEB217CF8C47BDF32B/ + NumHeight: 2 + NumWidth: 5 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 18b46f +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Stairway +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -30.2242 + posY: 1.69535065 + posZ: -0.0300003756 + rotX: 359.9201 + rotY: 269.9995 + rotZ: 0.0168769658 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/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 Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Card The Back Booths 09a94a.yaml new file mode 100644 index 000000000..127074d1f --- /dev/null +++ b/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Card The Back Booths 09a94a.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 269805 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2698': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/949592555967447479/4CD014FB65102851A0597D6F79EE8BA493F6902B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949592555967447131/BF11520AAC6CDE5C3FAEFAEEB217CF8C47BDF32B/ + NumHeight: 2 + NumWidth: 5 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 09a94a +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: The Back Booths +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -23.6793976 + posY: 1.68846226 + posZ: 7.569899 + rotX: 359.9201 + rotY: 270.003052 + rotZ: 0.0168720465 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Card The Balcony 7e22c1.yaml b/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Card The Balcony 7e22c1.yaml new file mode 100644 index 000000000..0eae2ba61 --- /dev/null +++ b/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Card The Balcony 7e22c1.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 269806 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2698': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/949592555967447479/4CD014FB65102851A0597D6F79EE8BA493F6902B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949592555967447131/BF11520AAC6CDE5C3FAEFAEEB217CF8C47BDF32B/ + NumHeight: 2 + NumWidth: 5 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 7e22c1 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: The Balcony +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -36.7731 + posY: 1.70448267 + posZ: -0.0300004762 + rotX: 359.9201 + rotY: 269.9995 + rotZ: 0.0168769788 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/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 Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Card The Dance Floor 6f22b2.yaml new file mode 100644 index 000000000..0a4b3b865 --- /dev/null +++ b/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Card The Dance Floor 6f22b2.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 269807 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2698': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/949592555967447479/4CD014FB65102851A0597D6F79EE8BA493F6902B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949592555967447131/BF11520AAC6CDE5C3FAEFAEEB217CF8C47BDF32B/ + NumHeight: 2 + NumWidth: 5 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 6f22b2 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: The Dance Floor +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -17.12 + posY: 1.67707777 + posZ: -0.0300005134 + rotX: 359.9201 + rotY: 269.9976 + rotZ: 0.0168790128 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/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 Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Card The Dining Area 954f96.yaml new file mode 100644 index 000000000..9b1a72f47 --- /dev/null +++ b/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Card The Dining Area 954f96.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 269809 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2698': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/949592555967447479/4CD014FB65102851A0597D6F79EE8BA493F6902B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949592555967447131/BF11520AAC6CDE5C3FAEFAEEB217CF8C47BDF32B/ + NumHeight: 2 + NumWidth: 5 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 954f96 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: The Dining Area +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -23.6765 + posY: 1.68637776 + posZ: -0.0300013814 + rotX: 359.92215 + rotY: 269.9994 + rotZ: 0.0222164486 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/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 Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Card The Imperial Entrance 349146.yaml new file mode 100644 index 000000000..532cbed5a --- /dev/null +++ b/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Card The Imperial Entrance 349146.yaml @@ -0,0 +1,42 @@ +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/949592555967447479/4CD014FB65102851A0597D6F79EE8BA493F6902B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949592555967447131/BF11520AAC6CDE5C3FAEFAEEB217CF8C47BDF32B/ + NumHeight: 2 + NumWidth: 5 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: '349146' +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: The Imperial Entrance +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -23.6766 + posY: 1.68173 + posZ: -15.28 + rotX: 359.9201 + rotY: 269.99942 + rotZ: 0.0168773886 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Card The Lobby 4ebd97.yaml b/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Card The Lobby 4ebd97.yaml new file mode 100644 index 000000000..d2ce420a5 --- /dev/null +++ b/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Card The Lobby 4ebd97.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 269808 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2698': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/949592555967447479/4CD014FB65102851A0597D6F79EE8BA493F6902B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949592555967447131/BF11520AAC6CDE5C3FAEFAEEB217CF8C47BDF32B/ + NumHeight: 2 + NumWidth: 5 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 4ebd97 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: The Lobby +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -23.6765 + posY: 1.68396187 + posZ: -7.70000029 + rotX: 359.9201 + rotY: 269.999451 + rotZ: 0.016876949 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/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 Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Custom_Model_Bag Set-aside 9427d8.yaml new file mode 100644 index 000000000..1e7465c4f --- /dev/null +++ b/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Custom_Model_Bag Set-aside 9427d8.yaml @@ -0,0 +1,59 @@ +Autoraise: true +ColorDiffuse: + b: 0.02148666 + g: 0.00100758043 + r: 0.02148666 +ContainedObjects: +- !include 'Custom_Model_Bag Set-aside 9427d8/Deck Post-scenario rewards 9fd2e9.yaml' +- !include 'Custom_Model_Bag Set-aside 9427d8/Deck Regular Deck 135d82.yaml' +- !include 'Custom_Model_Bag Set-aside 9427d8/Deck Backroom Doors 45c385.yaml' +- !include 'Custom_Model_Bag Set-aside 9427d8/Deck Alaric Gang f36211.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: '' +GMNotes: '' +GUID: 9427d8 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +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.696601 + posY: 1.55831671 + posZ: 14.2787008 + rotX: 359.955139 + rotY: 224.998 + rotZ: 0.06867307 + scaleX: 2.0 + scaleY: 2.0 + scaleZ: 2.0 +XmlUI: '' diff --git a/unpacked/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 Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Custom_Model_Bag Set-aside 9427d8/Deck Alaric Gang f36211.yaml new file mode 100644 index 000000000..da9d15f15 --- /dev/null +++ b/unpacked/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 @@ -0,0 +1,301 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 263933 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2639': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949592555967535671/D99E803742D584F9701FF377FB04FECACD973E7C/ + NumHeight: 4 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 91e9d8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 14.0577679 + posY: 1.53135979 + posZ: -7.489671 + rotX: 359.914978 + rotY: 270.00116 + rotZ: 0.0141879292 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 263932 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2639': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949592555967535671/D99E803742D584F9701FF377FB04FECACD973E7C/ + NumHeight: 4 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 02df12 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 14.1749411 + posY: 1.671387 + posZ: -7.630474 + rotX: 359.927277 + rotY: 269.996155 + rotZ: 0.0237845145 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 263931 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2639': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949592555967535671/D99E803742D584F9701FF377FB04FECACD973E7C/ + NumHeight: 4 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 9edec6 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 14.7484465 + posY: 1.68832588 + posZ: -7.831169 + rotX: 359.917542 + rotY: 269.9881 + rotZ: 0.0146572758 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 263922 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2639': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949592555967535671/D99E803742D584F9701FF377FB04FECACD973E7C/ + NumHeight: 4 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: eea1d3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 14.2596493 + posY: 1.67555761 + posZ: -7.503851 + rotX: 359.943939 + rotY: 269.935059 + rotZ: 359.929932 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 263921 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2639': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949592555967535671/D99E803742D584F9701FF377FB04FECACD973E7C/ + NumHeight: 4 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: eea1d3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 13.8826275 + posY: 1.67395425 + posZ: -7.674783 + rotX: 359.9333 + rotY: 270.0008 + rotZ: 0.013846471 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 263920 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2639': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949592555967535671/D99E803742D584F9701FF377FB04FECACD973E7C/ + NumHeight: 4 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: eea1d3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 13.6852827 + posY: 1.67628491 + posZ: -8.335837 + rotX: 359.9503 + rotY: 270.001068 + rotZ: 0.03643083 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2639': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949592555967535671/D99E803742D584F9701FF377FB04FECACD973E7C/ + NumHeight: 4 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 263933 +- 263932 +- 263931 +- 263922 +- 263921 +- 263920 +Description: '' +GMNotes: '' +GUID: f36211 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Alaric Gang +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 22.8346081 + posY: 3.584188 + posZ: 3.892865 + rotX: 359.9197 + rotY: 270.000031 + rotZ: 180.017044 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/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 Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Custom_Model_Bag Set-aside 9427d8/Deck Backroom Doors 45c385.yaml new file mode 100644 index 000000000..a68ac1c7d --- /dev/null +++ b/unpacked/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 @@ -0,0 +1,129 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 265603 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2638': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/949592555967447479/4CD014FB65102851A0597D6F79EE8BA493F6902B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949592555967447131/BF11520AAC6CDE5C3FAEFAEEB217CF8C47BDF32B/ + NumHeight: 2 + NumWidth: 5 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: ed439d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Backroom Door + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 14.8624306 + posY: 1.53030646 + posZ: -7.04439831 + rotX: 359.9141 + rotY: 270.0006 + rotZ: 0.0148601755 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265602 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2638': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/949592555967447479/4CD014FB65102851A0597D6F79EE8BA493F6902B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949592555967447131/BF11520AAC6CDE5C3FAEFAEEB217CF8C47BDF32B/ + NumHeight: 2 + NumWidth: 5 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 45cd63 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Backroom Door + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 14.5053883 + posY: 1.67123878 + posZ: -7.097611 + rotX: 359.923157 + rotY: 269.9997 + rotZ: 0.012250918 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2656': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/949592555967447479/4CD014FB65102851A0597D6F79EE8BA493F6902B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949592555967447131/BF11520AAC6CDE5C3FAEFAEEB217CF8C47BDF32B/ + NumHeight: 2 + NumWidth: 5 + UniqueBack: true +DeckIDs: +- 265603 +- 265602 +Description: '' +GMNotes: '' +GUID: 45c385 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Backroom Doors +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 34.7675247 + posY: 5.07913446 + posZ: -22.8947353 + rotX: 359.920135 + rotY: 270.0006 + rotZ: 0.0168680437 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/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 Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Custom_Model_Bag Set-aside 9427d8/Deck Post-scenario rewards 9fd2e9.yaml new file mode 100644 index 000000000..c409edde0 --- /dev/null +++ b/unpacked/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 @@ -0,0 +1,301 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 263804 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2638': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949592555967094166/DC08F9B7FAA120C99DFCE236C065FC15A41DB4F5/ + NumHeight: 2 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: d2fcc1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Edwin Bruce, The Gambler + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 18.3269863 + posY: 1.52309716 + posZ: -14.3023281 + rotX: 359.902222 + rotY: 269.965118 + rotZ: 0.0105234208 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 263800 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2638': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949592555967094166/DC08F9B7FAA120C99DFCE236C065FC15A41DB4F5/ + NumHeight: 2 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: d8bc2e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 20.3877087 + posY: 1.52230227 + posZ: -8.160224 + rotX: 359.915619 + rotY: 269.994263 + rotZ: 0.0153591279 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 263801 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2638': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949592555967094166/DC08F9B7FAA120C99DFCE236C065FC15A41DB4F5/ + NumHeight: 2 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: b64c23 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 20.772934 + posY: 1.66186786 + posZ: -8.534752 + rotX: 359.9239 + rotY: 269.9941 + rotZ: 0.05325753 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 263802 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2638': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949592555967094166/DC08F9B7FAA120C99DFCE236C065FC15A41DB4F5/ + NumHeight: 2 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 8b4a81 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 20.71718 + posY: 1.67987943 + posZ: -8.571685 + rotX: 359.9313 + rotY: 269.992859 + rotZ: 0.0233355574 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 263803 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2638': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949592555967094166/DC08F9B7FAA120C99DFCE236C065FC15A41DB4F5/ + NumHeight: 2 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 22e3a0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 20.6823254 + posY: 1.66636312 + posZ: -8.389319 + rotX: 359.932678 + rotY: 269.994446 + rotZ: 0.01816386 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 263807 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2638': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949592555967094166/DC08F9B7FAA120C99DFCE236C065FC15A41DB4F5/ + NumHeight: 2 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 4201fc + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: A Strange Idol + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 20.140049 + posY: 1.6650846 + posZ: -8.407126 + rotX: 359.918884 + rotY: 270.0159 + rotZ: 0.00466883229 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2638': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949592555967094166/DC08F9B7FAA120C99DFCE236C065FC15A41DB4F5/ + NumHeight: 2 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 263804 +- 263800 +- 263801 +- 263802 +- 263803 +- 263807 +Description: '' +GMNotes: '' +GUID: 9fd2e9 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Post-scenario rewards +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 33.07504 + posY: 2.358086 + posZ: -24.688612 + rotX: 359.9201 + rotY: 270.006958 + rotZ: 0.0168610234 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/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 Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Custom_Model_Bag Set-aside 9427d8/Deck Regular Deck 135d82.yaml new file mode 100644 index 000000000..313be060e --- /dev/null +++ b/unpacked/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 @@ -0,0 +1,258 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 263810 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2638': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949592555967094166/DC08F9B7FAA120C99DFCE236C065FC15A41DB4F5/ + NumHeight: 2 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: aaa915 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.0161018 + posY: 1.52516937 + posZ: -19.4433041 + rotX: 359.920135 + rotY: 270.001038 + rotZ: 0.0168647561 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 263809 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2638': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949592555967094166/DC08F9B7FAA120C99DFCE236C065FC15A41DB4F5/ + NumHeight: 2 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: ec6386 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 15.8463564 + posY: 1.52447689 + posZ: -22.59844 + rotX: 359.920135 + rotY: 270.000732 + rotZ: 0.0168680921 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 263808 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2638': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949592555967094166/DC08F9B7FAA120C99DFCE236C065FC15A41DB4F5/ + NumHeight: 2 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 6fc2b8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.037405 + posY: 1.52338552 + posZ: -25.40034 + rotX: 359.920135 + rotY: 270.000671 + rotZ: 0.0168639049 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 263805 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2638': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949592555967094166/DC08F9B7FAA120C99DFCE236C065FC15A41DB4F5/ + NumHeight: 2 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 0a7a35 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 12.2520571 + posY: 1.52932775 + posZ: -23.1421528 + rotX: 359.920135 + rotY: 270.000763 + rotZ: 0.01686639 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 263806 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2638': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949592555967094166/DC08F9B7FAA120C99DFCE236C065FC15A41DB4F5/ + NumHeight: 2 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 9f6e94 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 15.7629442 + posY: 1.52278209 + posZ: -28.7489033 + rotX: 359.920135 + rotY: 270.0006 + rotZ: 0.0168640148 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2638': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949592555967094166/DC08F9B7FAA120C99DFCE236C065FC15A41DB4F5/ + NumHeight: 2 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 263810 +- 263809 +- 263808 +- 263805 +- 263806 +Description: '' +GMNotes: '' +GUID: 135d82 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Regular Deck +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 14.7100353 + posY: 2.52332926 + posZ: -29.24305 + rotX: 359.920135 + rotY: 270.000153 + rotZ: 0.0168729443 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Custom_Tile 21b7c9.yaml b/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Custom_Tile 21b7c9.yaml new file mode 100644 index 000000000..340224a25 --- /dev/null +++ b/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Custom_Tile 21b7c9.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 21b7c9 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.2371 + posY: 1.60970211 + posZ: -0.05980023 + rotX: 359.9201 + rotY: 269.999817 + rotZ: 0.0169002619 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Custom_Tile 49a255.yaml b/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Custom_Tile 49a255.yaml new file mode 100644 index 000000000..e2b745d5c --- /dev/null +++ b/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Custom_Tile 49a255.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 49a255 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.9767 + posY: 1.619131 + posZ: 0.0457997471 + rotX: 359.9201 + rotY: 269.9999 + rotZ: 0.0169000588 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Custom_Tile 6c9a78.yaml b/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Custom_Tile 6c9a78.yaml new file mode 100644 index 000000000..5a9a808db --- /dev/null +++ b/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Custom_Tile 6c9a78.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 6c9a78 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.5795 + posY: 1.62829137 + posZ: -0.11350023 + rotX: 359.9201 + rotY: 269.999939 + rotZ: 0.0169007573 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Custom_Tile 7234af.yaml b/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Custom_Tile 7234af.yaml new file mode 100644 index 000000000..0e3b57704 --- /dev/null +++ b/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Custom_Tile 7234af.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 7234af +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: -29.1704 + posY: 1.62324142 + posZ: 3.61560035 + rotX: 359.983124 + rotY: 4.71725834e-05 + rotZ: 359.920074 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Custom_Tile 8262aa.yaml b/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Custom_Tile 8262aa.yaml new file mode 100644 index 000000000..d4ef5eabd --- /dev/null +++ b/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Custom_Tile 8262aa.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 8262aa +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.6765 + posY: 1.613388 + posZ: -3.83000064 + rotX: 359.983124 + rotY: 0.000129546126 + rotZ: 359.920044 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Custom_Tile 9ed742.yaml b/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Custom_Tile 9ed742.yaml new file mode 100644 index 000000000..96d5764eb --- /dev/null +++ b/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Custom_Tile 9ed742.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 9ed742 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: -19.0779972 + posY: 1.60931981 + posZ: 4.131 + rotX: 359.93158 + rotY: 315.000061 + rotZ: 359.955444 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Custom_Tile af6a85.yaml b/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Custom_Tile af6a85.yaml new file mode 100644 index 000000000..dd1be1568 --- /dev/null +++ b/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Custom_Tile af6a85.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: af6a85 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.6765 + posY: 1.61112654 + posZ: -11.5100031 + rotX: 359.983124 + rotY: -6.3581947e-06 + rotZ: 359.920074 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Custom_Tile c7b7cc.yaml b/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Custom_Tile c7b7cc.yaml new file mode 100644 index 000000000..424c946e4 --- /dev/null +++ b/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Custom_Tile c7b7cc.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: c7b7cc +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.1562 + posY: 1.60841846 + posZ: -4.0361 + rotX: 0.04473264 + rotY: 45.14007 + rotZ: 359.9317 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Custom_Tile d0209c.yaml b/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Custom_Tile d0209c.yaml new file mode 100644 index 000000000..f9720d114 --- /dev/null +++ b/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Custom_Tile d0209c.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: d0209c +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.6943 + posY: 1.62093389 + posZ: 7.5062 + rotX: 359.9201 + rotY: 270.036 + rotZ: 0.016849244 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Custom_Tile e0f43f.yaml b/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Custom_Tile e0f43f.yaml new file mode 100644 index 000000000..79b5aa77f --- /dev/null +++ b/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Custom_Tile e0f43f.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: e0f43f +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.61565244 + posZ: 3.86 + rotX: 359.983124 + rotY: 0.000191347572 + rotZ: 359.920044 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Deck Act Deck 0243c5.yaml b/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Deck Act Deck 0243c5.yaml new file mode 100644 index 000000000..cf927a51f --- /dev/null +++ b/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Deck Act Deck 0243c5.yaml @@ -0,0 +1,129 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 263802 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2638': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/949592555966978409/2E4D7FD76BC1332B8BD9F97E50ACBE9E59E3C13A/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949592555966978158/0DF607D01BA026C9857194737078E9BCC3767203/ + NumHeight: 3 + NumWidth: 2 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 174d02 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 6.417603 + posY: 1.53889227 + posZ: -17.93016 + rotX: 359.914978 + rotY: 270.001 + rotZ: 0.01586249 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 263800 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2638': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/949592555966978409/2E4D7FD76BC1332B8BD9F97E50ACBE9E59E3C13A/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949592555966978158/0DF607D01BA026C9857194737078E9BCC3767203/ + NumHeight: 3 + NumWidth: 2 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: e7c51d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 6.314996 + posY: 1.67952371 + posZ: -17.9812679 + rotX: 359.922638 + rotY: 269.999847 + rotZ: 0.0126955146 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2638': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/949592555966978409/2E4D7FD76BC1332B8BD9F97E50ACBE9E59E3C13A/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949592555966978158/0DF607D01BA026C9857194737078E9BCC3767203/ + NumHeight: 3 + NumWidth: 2 + UniqueBack: true +DeckIDs: +- 263802 +- 263800 +Description: '' +GMNotes: '' +GUID: 0243c5 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Act Deck +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.68849969 + posY: 1.66233337 + posZ: -5.048501 + rotX: 359.919739 + rotY: 269.999878 + rotZ: 0.01683889 + scaleX: 0.73 + scaleY: 1.0 + scaleZ: 0.73 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Deck Agenda Deck 8f68a9.yaml b/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Deck Agenda Deck 8f68a9.yaml new file mode 100644 index 000000000..72fed4946 --- /dev/null +++ b/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Deck Agenda Deck 8f68a9.yaml @@ -0,0 +1,172 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 263804 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2638': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/949592555966978409/2E4D7FD76BC1332B8BD9F97E50ACBE9E59E3C13A/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949592555966978158/0DF607D01BA026C9857194737078E9BCC3767203/ + NumHeight: 3 + NumWidth: 2 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 9fd7c8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 7.139815 + posY: 1.53947937 + posZ: -12.9969769 + rotX: 359.922058 + rotY: 269.987274 + rotZ: 0.0160801858 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 263803 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2638': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/949592555966978409/2E4D7FD76BC1332B8BD9F97E50ACBE9E59E3C13A/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949592555966978158/0DF607D01BA026C9857194737078E9BCC3767203/ + NumHeight: 3 + NumWidth: 2 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: abef46 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 7.12185574 + posY: 1.64566708 + posZ: -12.9573832 + rotX: 359.1603 + rotY: 270.016937 + rotZ: 0.6500156 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 263801 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2638': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/949592555966978409/2E4D7FD76BC1332B8BD9F97E50ACBE9E59E3C13A/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949592555966978158/0DF607D01BA026C9857194737078E9BCC3767203/ + NumHeight: 3 + NumWidth: 2 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: bd91f8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 6.95238733 + posY: 1.69776034 + posZ: -13.0441561 + rotX: 359.920654 + rotY: 269.9997 + rotZ: 0.0160416458 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2638': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/949592555966978409/2E4D7FD76BC1332B8BD9F97E50ACBE9E59E3C13A/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949592555966978158/0DF607D01BA026C9857194737078E9BCC3767203/ + NumHeight: 3 + NumWidth: 2 + UniqueBack: true +DeckIDs: +- 263804 +- 263803 +- 263801 +Description: '' +GMNotes: '' +GUID: 8f68a9 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Agenda Deck +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.72469974 + posY: 1.65664113 + posZ: 0.373299539 + rotX: 359.919739 + rotY: 269.9976 + rotZ: 0.0168419573 + scaleX: 0.73 + scaleY: 1.0 + scaleZ: 0.73 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Deck Encounter Deck be9f73.yaml b/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Deck Encounter Deck be9f73.yaml new file mode 100644 index 000000000..21b98e072 --- /dev/null +++ b/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 1 Bread and Circuses 16ceab/Deck Encounter Deck be9f73.yaml @@ -0,0 +1,1333 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 263936 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2639': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949592555967535671/D99E803742D584F9701FF377FB04FECACD973E7C/ + NumHeight: 4 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 3e324b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 11.2638426 + posY: 1.53458321 + posZ: -16.13824 + rotX: 359.962158 + rotY: 270.0205 + rotZ: 359.949 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 263938 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2639': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949592555967535671/D99E803742D584F9701FF377FB04FECACD973E7C/ + NumHeight: 4 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: eea1d3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 11.492095 + posY: 1.53299952 + posZ: -16.0576229 + rotX: 359.930969 + rotY: 269.9944 + rotZ: 0.006323049 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 263937 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2639': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949592555967535671/D99E803742D584F9701FF377FB04FECACD973E7C/ + NumHeight: 4 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 2c49ee + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 11.1417341 + posY: 1.57904887 + posZ: -15.39037 + rotX: 0.120297439 + rotY: 269.9939 + rotZ: 359.7272 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 263935 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2639': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949592555967535671/D99E803742D584F9701FF377FB04FECACD973E7C/ + NumHeight: 4 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: b8ae6e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 11.280798 + posY: 1.696913 + posZ: -15.2130508 + rotX: 359.9376 + rotY: 270.040741 + rotZ: 2.751389 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 263930 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2639': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949592555967535671/D99E803742D584F9701FF377FB04FECACD973E7C/ + NumHeight: 4 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 81234f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 11.2408419 + posY: 1.7747581 + posZ: -15.0381556 + rotX: 359.919281 + rotY: 269.979858 + rotZ: 0.110212743 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 263934 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2639': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949592555967535671/D99E803742D584F9701FF377FB04FECACD973E7C/ + NumHeight: 4 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 049dfb + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 11.2820511 + posY: 1.71901929 + posZ: -15.9266586 + rotX: 359.930847 + rotY: 270.0093 + rotZ: 2.28691459 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 263929 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2639': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949592555967535671/D99E803742D584F9701FF377FB04FECACD973E7C/ + NumHeight: 4 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 188c42 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 11.2921877 + posY: 1.92347085 + posZ: -15.0647163 + rotX: 359.845 + rotY: 270.014771 + rotZ: 0.12859045 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 263928 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2639': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949592555967535671/D99E803742D584F9701FF377FB04FECACD973E7C/ + NumHeight: 4 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 1828d9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 11.4630718 + posY: 2.06358624 + posZ: -15.147439 + rotX: 359.860718 + rotY: 270.009827 + rotZ: 0.0786645338 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 263926 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2639': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949592555967535671/D99E803742D584F9701FF377FB04FECACD973E7C/ + NumHeight: 4 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: eea1d3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 11.5282984 + posY: 1.80962133 + posZ: -14.766674 + rotX: 359.930634 + rotY: 270.0031 + rotZ: 357.8291 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 263925 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2639': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949592555967535671/D99E803742D584F9701FF377FB04FECACD973E7C/ + NumHeight: 4 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: eea1d3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 11.3027945 + posY: 1.78818464 + posZ: -14.3974075 + rotX: 359.954 + rotY: 270.001648 + rotZ: 356.797363 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 263923 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2639': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949592555967535671/D99E803742D584F9701FF377FB04FECACD973E7C/ + NumHeight: 4 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: eea1d3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 11.4293432 + posY: 1.77097666 + posZ: -14.3407974 + rotX: 359.938782 + rotY: 270.003571 + rotZ: 357.146149 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 263919 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2639': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949592555967535671/D99E803742D584F9701FF377FB04FECACD973E7C/ + NumHeight: 4 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: eea1d3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 10.9714108 + posY: 1.88867867 + posZ: -15.2785788 + rotX: 359.979156 + rotY: 270.009521 + rotZ: 357.552673 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 263918 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2639': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949592555967535671/D99E803742D584F9701FF377FB04FECACD973E7C/ + NumHeight: 4 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: eea1d3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 11.0698633 + posY: 1.88584185 + posZ: -15.1584978 + rotX: 359.97168 + rotY: 270.0097 + rotZ: 357.0668 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 263917 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2639': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949592555967535671/D99E803742D584F9701FF377FB04FECACD973E7C/ + NumHeight: 4 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: eea1d3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 11.2127619 + posY: 1.90169573 + posZ: -14.9466906 + rotX: 359.961975 + rotY: 270.001556 + rotZ: 357.4477 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 263916 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2639': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949592555967535671/D99E803742D584F9701FF377FB04FECACD973E7C/ + NumHeight: 4 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: eea1d3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 11.11671 + posY: 1.92202055 + posZ: -14.8204489 + rotX: 359.9626 + rotY: 270.005554 + rotZ: 358.034 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 263915 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2639': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949592555967535671/D99E803742D584F9701FF377FB04FECACD973E7C/ + NumHeight: 4 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: eea1d3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 11.2285919 + posY: 1.90530038 + posZ: -14.7918377 + rotX: 359.960754 + rotY: 270.003784 + rotZ: 357.4079 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 263914 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2639': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949592555967535671/D99E803742D584F9701FF377FB04FECACD973E7C/ + NumHeight: 4 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: eea1d3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 11.1167288 + posY: 1.89423454 + posZ: -14.68231 + rotX: 359.97522 + rotY: 270.000854 + rotZ: 357.029541 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 263913 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2639': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949592555967535671/D99E803742D584F9701FF377FB04FECACD973E7C/ + NumHeight: 4 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: eea1d3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 11.2118616 + posY: 1.88279569 + posZ: -14.4746084 + rotX: 359.965759 + rotY: 270.000977 + rotZ: 356.896454 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 263912 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2639': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949592555967535671/D99E803742D584F9701FF377FB04FECACD973E7C/ + NumHeight: 4 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: eea1d3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 11.0746508 + posY: 1.84068334 + posZ: -14.13802 + rotX: 0.00387506513 + rotY: 269.992432 + rotZ: 356.238739 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 263911 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2639': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949592555967535671/D99E803742D584F9701FF377FB04FECACD973E7C/ + NumHeight: 4 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: eea1d3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 11.16729 + posY: 1.92352152 + posZ: -14.7617645 + rotX: 359.972 + rotY: 270.002319 + rotZ: 356.916748 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 263910 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2639': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949592555967535671/D99E803742D584F9701FF377FB04FECACD973E7C/ + NumHeight: 4 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: eea1d3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 11.0623245 + posY: 1.90702462 + posZ: -14.5348806 + rotX: 359.986877 + rotY: 269.9965 + rotZ: 356.631226 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 263909 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2639': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949592555967535671/D99E803742D584F9701FF377FB04FECACD973E7C/ + NumHeight: 4 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: eea1d3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 11.19376 + posY: 1.94627607 + posZ: -14.8439837 + rotX: 359.9578 + rotY: 270.00885 + rotZ: 356.9146 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 263908 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2639': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949592555967535671/D99E803742D584F9701FF377FB04FECACD973E7C/ + NumHeight: 4 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: eea1d3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 11.1178894 + posY: 1.94223309 + posZ: -14.7289858 + rotX: 359.9795 + rotY: 269.9981 + rotZ: 356.7412 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 263907 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2639': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949592555967535671/D99E803742D584F9701FF377FB04FECACD973E7C/ + NumHeight: 4 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: eea1d3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 11.2663012 + posY: 1.95224881 + posZ: -14.6115494 + rotX: 359.9594 + rotY: 270.003723 + rotZ: 356.969 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 263903 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2639': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949592555967535671/D99E803742D584F9701FF377FB04FECACD973E7C/ + NumHeight: 4 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: eea1d3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 11.3332214 + posY: 2.022313 + posZ: -14.9809961 + rotX: 359.949768 + rotY: 269.992249 + rotZ: 357.2391 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 263902 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2639': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949592555967535671/D99E803742D584F9701FF377FB04FECACD973E7C/ + NumHeight: 4 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: eea1d3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 11.2115574 + posY: 2.038525 + posZ: -15.3902626 + rotX: 359.976044 + rotY: 270.00296 + rotZ: 357.550354 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 263901 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2639': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949592555967535671/D99E803742D584F9701FF377FB04FECACD973E7C/ + NumHeight: 4 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 33a90c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 11.4258413 + posY: 2.05039382 + posZ: -15.6029539 + rotX: 359.927216 + rotY: 269.9735 + rotZ: 358.1764 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 263900 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2639': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949592555967535671/D99E803742D584F9701FF377FB04FECACD973E7C/ + NumHeight: 4 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: eea1d3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 10.7943735 + posY: 1.87920988 + posZ: -15.6596365 + rotX: 359.919281 + rotY: 269.99765 + rotZ: 0.0165406466 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 263904 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2639': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949592555967535671/D99E803742D584F9701FF377FB04FECACD973E7C/ + NumHeight: 4 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: eea1d3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 11.4091892 + posY: 1.53350639 + posZ: -12.7488031 + rotX: 359.917053 + rotY: 269.999634 + rotZ: 0.0156501 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 263906 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2639': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949592555967535671/D99E803742D584F9701FF377FB04FECACD973E7C/ + NumHeight: 4 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 32dd4b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 11.4079456 + posY: 1.67779171 + posZ: -12.4799232 + rotX: 359.913666 + rotY: 270.000061 + rotZ: 0.0163442921 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2639': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949592555967535671/D99E803742D584F9701FF377FB04FECACD973E7C/ + NumHeight: 4 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 263936 +- 263938 +- 263937 +- 263935 +- 263930 +- 263934 +- 263929 +- 263928 +- 263926 +- 263925 +- 263923 +- 263919 +- 263918 +- 263917 +- 263916 +- 263915 +- 263914 +- 263913 +- 263912 +- 263911 +- 263910 +- 263909 +- 263908 +- 263907 +- 263903 +- 263902 +- 263901 +- 263900 +- 263904 +- 263906 +Description: '' +GMNotes: '' +GUID: be9f73 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Encounter Deck +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.9277 + posY: 1.77170992 + posZ: 5.75720072 + rotX: 359.919739 + rotY: 270.000549 + rotZ: 180.016815 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 2 Enter the Dragon 4f944f.ttslua b/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 2 Enter the Dragon 4f944f.ttslua new file mode 100644 index 000000000..54d591927 --- /dev/null +++ b/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 2 Enter the Dragon 4f944f.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.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 Idol Thoughts 2d417b/Custom_Model_Bag 2 Enter the Dragon 4f944f.yaml b/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 2 Enter the Dragon 4f944f.yaml new file mode 100644 index 000000000..c20e3c28a --- /dev/null +++ b/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 2 Enter the Dragon 4f944f.yaml @@ -0,0 +1,96 @@ +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 2 Enter the Dragon 4f944f/Custom_Tile 02a39c.yaml' +- !include 'Custom_Model_Bag 2 Enter the Dragon 4f944f/Deck Alternate Eyes of the + Dragon 031d10.yaml' +- !include 'Custom_Model_Bag 2 Enter the Dragon 4f944f/Custom_Tile 0dd529.yaml' +- !include 'Custom_Model_Bag 2 Enter the Dragon 4f944f/Card Flea Market 10bac1.yaml' +- !include 'Custom_Model_Bag 2 Enter the Dragon 4f944f/Custom_Model_Bag Set-aside + 2c6263.yaml' +- !include 'Custom_Model_Bag 2 Enter the Dragon 4f944f/Deck Encounter Deck 35feb6.yaml' +- !include 'Custom_Model_Bag 2 Enter the Dragon 4f944f/Card Golden Temple of the Heavens + 3a8ef9.yaml' +- !include 'Custom_Model_Bag 2 Enter the Dragon 4f944f/Custom_Tile 3d7614.yaml' +- !include 'Custom_Model_Bag 2 Enter the Dragon 4f944f/Card Daiyu''s Tea Garden 460803.yaml' +- !include 'Custom_Model_Bag 2 Enter the Dragon 4f944f/Card Zihao''s House of Fighting + Arts 464a07.yaml' +- !include 'Custom_Model_Bag 2 Enter the Dragon 4f944f/Deck Act Deck V.I 4f3b10.yaml' +- !include 'Custom_Model_Bag 2 Enter the Dragon 4f944f/Deck Act Deck V.II 5044b6.yaml' +- !include 'Custom_Model_Bag 2 Enter the Dragon 4f944f/Card Back Alley 5c8249.yaml' +- !include 'Custom_Model_Bag 2 Enter the Dragon 4f944f/Custom_Tile 651725.yaml' +- !include 'Custom_Model_Bag 2 Enter the Dragon 4f944f/Custom_Tile 664f8a.yaml' +- !include 'Custom_Model_Bag 2 Enter the Dragon 4f944f/Custom_Tile 697b33.yaml' +- !include 'Custom_Model_Bag 2 Enter the Dragon 4f944f/Card Gateway to the East 6fe23b.yaml' +- !include 'Custom_Model_Bag 2 Enter the Dragon 4f944f/Card Scenario 7037e8.yaml' +- !include 'Custom_Model_Bag 2 Enter the Dragon 4f944f/Custom_Tile 7234af.yaml' +- !include 'Custom_Model_Bag 2 Enter the Dragon 4f944f/Card Mingzhu Laundry 821b75.yaml' +- !include 'Custom_Model_Bag 2 Enter the Dragon 4f944f/Deck Agenda Deck 88d710.yaml' +- !include 'Custom_Model_Bag 2 Enter the Dragon 4f944f/Card The Phoenix''s Nest b20dd5.yaml' +- !include 'Custom_Model_Bag 2 Enter the Dragon 4f944f/Custom_Tile bf761b.yaml' +- !include 'Custom_Model_Bag 2 Enter the Dragon 4f944f/Custom_Tile f3d826.yaml' +- !include 'Custom_Model_Bag 2 Enter the Dragon 4f944f/Custom_Tile fee8a2.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/1011563111884531661/3B481286BE74C39A7BCAA99AAA38F73645104D7C/ + MaterialIndex: 3 + MeshURL: https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj + NormalURL: '' + TypeIndex: 6 +Description: Idol Thoughts +GMNotes: '' +GUID: 4f944f +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Model_Bag 2 Enter the Dragon 4f944f.ttslua' +LuaScriptState: '{"ml":{"02a39c":{"lock":false,"pos":{"x":-26.6698,"y":1.6188,"z":0.2297},"rot":{"x":0.0799,"y":89.9999,"z":359.9831}},"031d10":{"lock":false,"pos":{"x":-10.4643,"y":1.6777,"z":10.3214},"rot":{"x":359.9201,"y":270.0002,"z":0.0169}},"0dd529":{"lock":false,"pos":{"x":-17.12,"y":1.6042,"z":-3.83},"rot":{"x":0.0169,"y":179.9915,"z":0.0799}},"10bac1":{"lock":false,"pos":{"x":-17.12,"y":1.6748,"z":-7.7},"rot":{"x":359.9201,"y":270.0003,"z":0.0169}},"2c6263":{"lock":false,"pos":{"x":1.6959,"y":1.5583,"z":14.2757},"rot":{"x":359.9551,"y":224.9986,"z":0.0687}},"35feb6":{"lock":false,"pos":{"x":-3.9277,"y":1.793,"z":5.7571},"rot":{"x":359.9197,"y":270.0004,"z":180.0168}},"3a8ef9":{"lock":false,"pos":{"x":-23.6765,"y":1.6862,"z":-0.03},"rot":{"x":359.9201,"y":270.0003,"z":0.0169}},"3d7614":{"lock":false,"pos":{"x":-30.2242,"y":1.6225,"z":-3.83},"rot":{"x":0.0169,"y":179.9915,"z":0.0799}},"460803":{"lock":false,"pos":{"x":-17.12,"y":1.6793,"z":7.57},"rot":{"x":359.9201,"y":270.0004,"z":0.0169}},"464a07":{"lock":false,"pos":{"x":-17.1199,"y":1.6771,"z":-0.03},"rot":{"x":359.9201,"y":270.0003,"z":0.0169}},"4f3b10":{"lock":false,"pos":{"x":-2.6885,"y":1.6535,"z":-5.0486},"rot":{"x":359.9197,"y":269.9999,"z":0.0168}},"5044b6":{"lock":false,"pos":{"x":1.6668,"y":1.6475,"z":-4.7705},"rot":{"x":359.9197,"y":269.9893,"z":0.0169}},"5c8249":{"lock":false,"pos":{"x":-23.6766,"y":1.6885,"z":7.57},"rot":{"x":359.9201,"y":270.0018,"z":0.0169}},"651725":{"lock":false,"pos":{"x":-27.1632,"y":1.6172,"z":-7.4224},"rot":{"x":0.0799,"y":90.1305,"z":359.9833}},"664f8a":{"lock":false,"pos":{"x":-20.4573,"y":1.6089,"z":-3.7515},"rot":{"x":0.0446,"y":45,"z":359.9316}},"697b33":{"lock":false,"pos":{"x":-27.3832,"y":1.6207,"z":3.5496},"rot":{"x":359.9747,"y":209.9999,"z":0.0776}},"6fe23b":{"lock":false,"pos":{"x":-30.2243,"y":1.6931,"z":-7.7},"rot":{"x":359.9201,"y":270.0003,"z":0.0169}},"7037e8":{"lock":false,"pos":{"x":-3.9561,"y":1.6556,"z":-10.4415},"rot":{"x":359.9197,"y":269.997,"z":0.0168}},"7234af":{"lock":false,"pos":{"x":-17.12,"y":1.6065,"z":3.86},"rot":{"x":0.0169,"y":179.9915,"z":0.0799}},"821b75":{"lock":false,"pos":{"x":-23.6765,"y":1.684,"z":-7.7},"rot":{"x":359.9201,"y":270.0002,"z":0.0169}},"88d710":{"lock":false,"pos":{"x":-2.7247,"y":1.6551,"z":0.3733},"rot":{"x":359.9197,"y":270.0015,"z":0.0168}},"b20dd5":{"lock":false,"pos":{"x":-30.2242,"y":1.6954,"z":-0.03},"rot":{"x":359.9201,"y":270.0003,"z":0.0169}},"bf761b":{"lock":false,"pos":{"x":-23.6765,"y":1.6134,"z":-3.83},"rot":{"x":0.0169,"y":179.9915,"z":0.0799}},"f3d826":{"lock":false,"pos":{"x":-23.6765,"y":1.6157,"z":3.86},"rot":{"x":0.0169,"y":179.9914,"z":0.0799}},"fee8a2":{"lock":false,"pos":{"x":-20.8968,"y":1.6128,"z":7.2255},"rot":{"x":359.9201,"y":270.0019,"z":0.0169}}}}' +MaterialIndex: -1 +MeshIndex: -1 +Name: Custom_Model_Bag +Nickname: 2 Enter the Dragon +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 32.45269 + posY: 1.43240237 + posZ: -13.1239805 + rotX: 359.920135 + rotY: 270.004669 + rotZ: 0.0168668516 + scaleX: 2.21 + scaleY: 0.46 + scaleZ: 2.42 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 2 Enter the Dragon 4f944f/Card Back Alley 5c8249.yaml b/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 2 Enter the Dragon 4f944f/Card Back Alley 5c8249.yaml new file mode 100644 index 000000000..17ef21152 --- /dev/null +++ b/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 2 Enter the Dragon 4f944f/Card Back Alley 5c8249.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 270702 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2707': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/949592555969323029/477804E2824619174BA81777E3D373FD6C219E1C/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949592555969322779/1E9AB4B8672C72B401F0E5905452DA4A753444F7/ + NumHeight: 4 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 5c8249 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Back Alley +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -23.6766 + posY: 1.68845844 + posZ: 7.569999 + rotX: 359.9201 + rotY: 270.0018 + rotZ: 0.0168736875 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/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 Idol Thoughts 2d417b/Custom_Model_Bag 2 Enter the Dragon 4f944f/Card Daiyu's Tea Garden 460803.yaml new file mode 100644 index 000000000..9ddbe092f --- /dev/null +++ b/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 2 Enter the Dragon 4f944f/Card Daiyu's Tea Garden 460803.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 270705 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2707': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/949592555969323029/477804E2824619174BA81777E3D373FD6C219E1C/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949592555969322779/1E9AB4B8672C72B401F0E5905452DA4A753444F7/ + NumHeight: 4 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: '460803' +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Daiyu's Tea Garden +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -17.12 + posY: 1.67931569 + posZ: 7.56999969 + rotX: 359.9201 + rotY: 270.000366 + rotZ: 0.0168764479 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 2 Enter the Dragon 4f944f/Card Flea Market 10bac1.yaml b/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 2 Enter the Dragon 4f944f/Card Flea Market 10bac1.yaml new file mode 100644 index 000000000..9cf60ec08 --- /dev/null +++ b/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 2 Enter the Dragon 4f944f/Card Flea Market 10bac1.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 270707 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2707': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/949592555969323029/477804E2824619174BA81777E3D373FD6C219E1C/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949592555969322779/1E9AB4B8672C72B401F0E5905452DA4A753444F7/ + NumHeight: 4 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 10bac1 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Flea Market +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -17.1199989 + posY: 1.67481923 + posZ: -7.700001 + rotX: 359.9201 + rotY: 270.000336 + rotZ: 0.0168763362 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/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 Idol Thoughts 2d417b/Custom_Model_Bag 2 Enter the Dragon 4f944f/Card Gateway to the East 6fe23b.yaml new file mode 100644 index 000000000..0f31f546c --- /dev/null +++ b/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 2 Enter the Dragon 4f944f/Card Gateway to the East 6fe23b.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 270700 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2707': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/949592555969323029/477804E2824619174BA81777E3D373FD6C219E1C/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949592555969322779/1E9AB4B8672C72B401F0E5905452DA4A753444F7/ + NumHeight: 4 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 6fe23b +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Gateway to the East +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -30.2243 + posY: 1.69309235 + posZ: -7.70000124 + rotX: 359.9201 + rotY: 270.000336 + rotZ: 0.0168756284 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/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 Idol Thoughts 2d417b/Custom_Model_Bag 2 Enter the Dragon 4f944f/Card Golden Temple of the Heavens 3a8ef9.yaml new file mode 100644 index 000000000..72abde64f --- /dev/null +++ b/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 2 Enter the Dragon 4f944f/Card Golden Temple of the Heavens 3a8ef9.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 270703 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2707': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/949592555969323029/477804E2824619174BA81777E3D373FD6C219E1C/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949592555969322779/1E9AB4B8672C72B401F0E5905452DA4A753444F7/ + NumHeight: 4 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 3a8ef9 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Golden Temple of the Heavens +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -23.6765 + posY: 1.68622029 + posZ: -0.030000452 + rotX: 359.9201 + rotY: 270.000275 + rotZ: 0.0168757 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 2 Enter the Dragon 4f944f/Card Mingzhu Laundry 821b75.yaml b/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 2 Enter the Dragon 4f944f/Card Mingzhu Laundry 821b75.yaml new file mode 100644 index 000000000..e14323a76 --- /dev/null +++ b/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 2 Enter the Dragon 4f944f/Card Mingzhu Laundry 821b75.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 270704 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2707': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/949592555969323029/477804E2824619174BA81777E3D373FD6C219E1C/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949592555969322779/1E9AB4B8672C72B401F0E5905452DA4A753444F7/ + NumHeight: 4 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 821b75 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Mingzhu Laundry +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -23.6765 + posY: 1.68396187 + posZ: -7.70000029 + rotX: 359.9201 + rotY: 270.000244 + rotZ: 0.01687589 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 2 Enter the Dragon 4f944f/Card Scenario 7037e8.yaml b/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 2 Enter the Dragon 4f944f/Card Scenario 7037e8.yaml new file mode 100644 index 000000000..a58788283 --- /dev/null +++ b/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 2 Enter the Dragon 4f944f/Card Scenario 7037e8.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 265100 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2651': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/949592555969350391/1D3BC398EAB53F7E24F57CB0297D2D902E7994F0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949592555969350391/1D3BC398EAB53F7E24F57CB0297D2D902E7994F0/ + NumHeight: 2 + NumWidth: 2 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 7037e8 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Scenario +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.95610046 + posY: 1.65564823 + posZ: -10.4415007 + rotX: 359.919739 + rotY: 269.996979 + rotZ: 0.01684524 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/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 Idol Thoughts 2d417b/Custom_Model_Bag 2 Enter the Dragon 4f944f/Card The Phoenix's Nest b20dd5.yaml new file mode 100644 index 000000000..0cbe3446d --- /dev/null +++ b/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 2 Enter the Dragon 4f944f/Card The Phoenix's Nest b20dd5.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 270701 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2707': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/949592555969323029/477804E2824619174BA81777E3D373FD6C219E1C/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949592555969322779/1E9AB4B8672C72B401F0E5905452DA4A753444F7/ + NumHeight: 4 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: b20dd5 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: The Phoenix's Nest +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -30.2242 + posY: 1.69535065 + posZ: -0.0300003812 + rotX: 359.9201 + rotY: 270.000336 + rotZ: 0.0168758426 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/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 Idol Thoughts 2d417b/Custom_Model_Bag 2 Enter the Dragon 4f944f/Card Zihao's House of Fighting Arts 464a07.yaml new file mode 100644 index 000000000..071bd88d2 --- /dev/null +++ b/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 2 Enter the Dragon 4f944f/Card Zihao's House of Fighting Arts 464a07.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 270706 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2707': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/949592555969323029/477804E2824619174BA81777E3D373FD6C219E1C/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949592555969322779/1E9AB4B8672C72B401F0E5905452DA4A753444F7/ + NumHeight: 4 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 464a07 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Zihao's House of Fighting Arts +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -17.1199 + posY: 1.67707765 + posZ: -0.0300004352 + rotX: 359.9201 + rotY: 270.000275 + rotZ: 0.0168757811 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/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 Idol Thoughts 2d417b/Custom_Model_Bag 2 Enter the Dragon 4f944f/Custom_Model_Bag Set-aside 2c6263.yaml new file mode 100644 index 000000000..6705ccb01 --- /dev/null +++ b/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 2 Enter the Dragon 4f944f/Custom_Model_Bag Set-aside 2c6263.yaml @@ -0,0 +1,60 @@ +Autoraise: true +ColorDiffuse: + b: 0.02148666 + g: 0.00100758043 + r: 0.02148666 +ContainedObjects: +- !include 'Custom_Model_Bag Set-aside 2c6263/Card The Dragon''s Den 1bf440.yaml' +- !include 'Custom_Model_Bag Set-aside 2c6263/Card Feng Shao 654ef3.yaml' +- !include 'Custom_Model_Bag Set-aside 2c6263/Card A Strange Idol 9de6cc.yaml' +- !include 'Custom_Model_Bag Set-aside 2c6263/Card Lin Xingjuan ac534f.yaml' +- !include 'Custom_Model_Bag Set-aside 2c6263/Card Edwin Bruce 897e12.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: '' +GMNotes: '' +GUID: 2c6263 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +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.69590044 + posY: 1.55831707 + posZ: 14.2757015 + rotX: 359.955139 + rotY: 224.9986 + rotZ: 0.06867199 + scaleX: 2.0 + scaleY: 2.0 + scaleZ: 2.0 +XmlUI: '' diff --git a/unpacked/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 Idol Thoughts 2d417b/Custom_Model_Bag 2 Enter the Dragon 4f944f/Custom_Model_Bag Set-aside 2c6263/Card A Strange Idol 9de6cc.yaml new file mode 100644 index 000000000..a46bc7359 --- /dev/null +++ b/unpacked/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 @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 264902 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2649': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949592555969341463/16F3D35A9898E546CBD0E7E5390DB37306874C73/ + NumHeight: 4 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 9de6cc +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: A Strange Idol +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 11.6996412 + posY: 3.49945164 + posZ: -12.125474 + rotX: 359.920135 + rotY: 269.999969 + rotZ: 0.03358269 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/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 Idol Thoughts 2d417b/Custom_Model_Bag 2 Enter the Dragon 4f944f/Custom_Model_Bag Set-aside 2c6263/Card Edwin Bruce 897e12.yaml new file mode 100644 index 000000000..bb4c03b42 --- /dev/null +++ b/unpacked/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 @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 264904 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2649': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949592555969341463/16F3D35A9898E546CBD0E7E5390DB37306874C73/ + NumHeight: 4 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 897e12 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Edwin Bruce +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 15.3406057 + posY: 3.49348259 + posZ: -15.1601305 + rotX: 359.920135 + rotY: 269.999969 + rotZ: 0.0335765854 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/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 Idol Thoughts 2d417b/Custom_Model_Bag 2 Enter the Dragon 4f944f/Custom_Model_Bag Set-aside 2c6263/Card Feng Shao 654ef3.yaml new file mode 100644 index 000000000..c7c1851ec --- /dev/null +++ b/unpacked/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 @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 264903 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2649': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949592555969341463/16F3D35A9898E546CBD0E7E5390DB37306874C73/ + NumHeight: 4 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 654ef3 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Feng Shao +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 9.035589 + posY: 3.59100246 + posZ: -8.606434 + rotX: 359.9194 + rotY: 270.000061 + rotZ: 0.0206951275 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/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 Idol Thoughts 2d417b/Custom_Model_Bag 2 Enter the Dragon 4f944f/Custom_Model_Bag Set-aside 2c6263/Card Lin Xingjuan ac534f.yaml new file mode 100644 index 000000000..0b517fb3a --- /dev/null +++ b/unpacked/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 @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 264901 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2649': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949592555969341463/16F3D35A9898E546CBD0E7E5390DB37306874C73/ + NumHeight: 4 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: ac534f +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Lin Xingjuan +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 9.176567 + posY: 2.37069345 + posZ: -22.1058159 + rotX: 359.920135 + rotY: 270.0 + rotZ: 0.0168667063 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/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 Idol Thoughts 2d417b/Custom_Model_Bag 2 Enter the Dragon 4f944f/Custom_Model_Bag Set-aside 2c6263/Card The Dragon's Den 1bf440.yaml new file mode 100644 index 000000000..22cb6d077 --- /dev/null +++ b/unpacked/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 @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 265000 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2650': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949592555969341463/16F3D35A9898E546CBD0E7E5390DB37306874C73/ + NumHeight: 4 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 1bf440 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: The Dragon's Den +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 18.2757225 + posY: 2.35947013 + posZ: -14.0632334 + rotX: 359.920135 + rotY: 269.999969 + rotZ: 0.01687261 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 2 Enter the Dragon 4f944f/Custom_Tile 02a39c.yaml b/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 2 Enter the Dragon 4f944f/Custom_Tile 02a39c.yaml new file mode 100644 index 000000000..b72d1203c --- /dev/null +++ b/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 2 Enter the Dragon 4f944f/Custom_Tile 02a39c.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 02a39c +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.6698 + posY: 1.61875737 + posZ: 0.229699746 + rotX: 0.07989434 + rotY: 89.9999161 + rotZ: 359.9831 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 2 Enter the Dragon 4f944f/Custom_Tile 0dd529.yaml b/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 2 Enter the Dragon 4f944f/Custom_Tile 0dd529.yaml new file mode 100644 index 000000000..3a1e4b1be --- /dev/null +++ b/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 2 Enter the Dragon 4f944f/Custom_Tile 0dd529.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 0dd529 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.1199989 + posY: 1.604245 + posZ: -3.8300004 + rotX: 0.0168838724 + rotY: 179.99144 + rotZ: 0.07994361 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 2 Enter the Dragon 4f944f/Custom_Tile 3d7614.yaml b/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 2 Enter the Dragon 4f944f/Custom_Tile 3d7614.yaml new file mode 100644 index 000000000..2f2a71f03 --- /dev/null +++ b/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 2 Enter the Dragon 4f944f/Custom_Tile 3d7614.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 3d7614 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.62251806 + posZ: -3.82999969 + rotX: 0.0168835819 + rotY: 179.991547 + rotZ: 0.07993305 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 2 Enter the Dragon 4f944f/Custom_Tile 651725.yaml b/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 2 Enter the Dragon 4f944f/Custom_Tile 651725.yaml new file mode 100644 index 000000000..20553d729 --- /dev/null +++ b/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 2 Enter the Dragon 4f944f/Custom_Tile 651725.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: '651725' +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.1632 + posY: 1.617192 + posZ: -7.42240047 + rotX: 0.0799327046 + rotY: 90.13049 + rotZ: 359.983276 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 2 Enter the Dragon 4f944f/Custom_Tile 664f8a.yaml b/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 2 Enter the Dragon 4f944f/Custom_Tile 664f8a.yaml new file mode 100644 index 000000000..5cddac309 --- /dev/null +++ b/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 2 Enter the Dragon 4f944f/Custom_Tile 664f8a.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 664f8a +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.4573 + posY: 1.60892224 + posZ: -3.75150013 + rotX: 0.04456555 + rotY: 45.0000076 + rotZ: 359.9316 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 2 Enter the Dragon 4f944f/Custom_Tile 697b33.yaml b/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 2 Enter the Dragon 4f944f/Custom_Tile 697b33.yaml new file mode 100644 index 000000000..bf45edf81 --- /dev/null +++ b/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 2 Enter the Dragon 4f944f/Custom_Tile 697b33.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 697b33 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.3832 + posY: 1.62072945 + posZ: 3.5496006 + rotX: 359.97467 + rotY: 209.999924 + rotZ: 0.077628836 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 2 Enter the Dragon 4f944f/Custom_Tile 7234af.yaml b/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 2 Enter the Dragon 4f944f/Custom_Tile 7234af.yaml new file mode 100644 index 000000000..ecdd8fd3e --- /dev/null +++ b/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 2 Enter the Dragon 4f944f/Custom_Tile 7234af.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 7234af +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.60650957 + posZ: 3.86000037 + rotX: 0.0168838035 + rotY: 179.991425 + rotZ: 0.07993707 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 2 Enter the Dragon 4f944f/Custom_Tile bf761b.yaml b/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 2 Enter the Dragon 4f944f/Custom_Tile bf761b.yaml new file mode 100644 index 000000000..60c9fd43f --- /dev/null +++ b/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 2 Enter the Dragon 4f944f/Custom_Tile bf761b.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: bf761b +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.6765 + posY: 1.6133877 + posZ: -3.83000016 + rotX: 0.0168837663 + rotY: 179.9914 + rotZ: 0.07993744 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 2 Enter the Dragon 4f944f/Custom_Tile f3d826.yaml b/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 2 Enter the Dragon 4f944f/Custom_Tile f3d826.yaml new file mode 100644 index 000000000..decfb9170 --- /dev/null +++ b/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 2 Enter the Dragon 4f944f/Custom_Tile f3d826.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: f3d826 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.6765 + posY: 1.61565208 + posZ: 3.86000013 + rotX: 0.0168838762 + rotY: 179.991379 + rotZ: 0.0799375847 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 2 Enter the Dragon 4f944f/Custom_Tile fee8a2.yaml b/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 2 Enter the Dragon 4f944f/Custom_Tile fee8a2.yaml new file mode 100644 index 000000000..44927722a --- /dev/null +++ b/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 2 Enter the Dragon 4f944f/Custom_Tile fee8a2.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: fee8a2 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.8967972 + posY: 1.6127671 + posZ: 7.22549963 + rotX: 359.9201 + rotY: 270.00177 + rotZ: 0.0168989059 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/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 Idol Thoughts 2d417b/Custom_Model_Bag 2 Enter the Dragon 4f944f/Deck Act Deck V.I 4f3b10.yaml new file mode 100644 index 000000000..b6a50f453 --- /dev/null +++ b/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 2 Enter the Dragon 4f944f/Deck Act Deck V.I 4f3b10.yaml @@ -0,0 +1,215 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 265810 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2651': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/949592555969412232/179DFE7EAFB12BB78ED84F53B0D4C77947D600BA/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949592555969411948/E76BC2A6738EAB86780592A4A3404F04C3571243/ + NumHeight: 4 + NumWidth: 3 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: b99703 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 8.627927 + posY: 1.53887224 + posZ: -7.671524 + rotX: 359.9163 + rotY: 269.998718 + rotZ: 0.0163119249 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265807 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2651': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/949592555969412232/179DFE7EAFB12BB78ED84F53B0D4C77947D600BA/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949592555969411948/E76BC2A6738EAB86780592A4A3404F04C3571243/ + NumHeight: 4 + NumWidth: 3 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: ddc847 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 8.881671 + posY: 1.678993 + posZ: -7.84604025 + rotX: 359.9164 + rotY: 270.000519 + rotZ: 0.0207035765 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265804 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2651': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/949592555969412232/179DFE7EAFB12BB78ED84F53B0D4C77947D600BA/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949592555969411948/E76BC2A6738EAB86780592A4A3404F04C3571243/ + NumHeight: 4 + NumWidth: 3 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 0270f3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 8.126372 + posY: 1.6976335 + posZ: -7.668219 + rotX: 359.923279 + rotY: 270.006775 + rotZ: 0.0160517544 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265801 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2651': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/949592555969412232/179DFE7EAFB12BB78ED84F53B0D4C77947D600BA/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949592555969411948/E76BC2A6738EAB86780592A4A3404F04C3571243/ + NumHeight: 4 + NumWidth: 3 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 77d135 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 8.600137 + posY: 1.68346918 + posZ: -7.70217371 + rotX: 359.918 + rotY: 270.0146 + rotZ: 0.0120979985 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2658': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/949592555969412232/179DFE7EAFB12BB78ED84F53B0D4C77947D600BA/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949592555969411948/E76BC2A6738EAB86780592A4A3404F04C3571243/ + NumHeight: 4 + NumWidth: 3 + UniqueBack: true +DeckIDs: +- 265810 +- 265807 +- 265804 +- 265801 +Description: '' +GMNotes: '' +GUID: 4f3b10 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Act Deck V.I +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.68849969 + posY: 1.65349448 + posZ: -5.048601 + rotX: 359.919739 + rotY: 269.999939 + rotZ: 0.0168386418 + scaleX: 0.73 + scaleY: 1.0 + scaleZ: 0.73 +XmlUI: '' diff --git a/unpacked/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 Idol Thoughts 2d417b/Custom_Model_Bag 2 Enter the Dragon 4f944f/Deck Act Deck V.II 5044b6.yaml new file mode 100644 index 000000000..ae70d2760 --- /dev/null +++ b/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 2 Enter the Dragon 4f944f/Deck Act Deck V.II 5044b6.yaml @@ -0,0 +1,215 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 265711 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2651': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/949592555969412232/179DFE7EAFB12BB78ED84F53B0D4C77947D600BA/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949592555969411948/E76BC2A6738EAB86780592A4A3404F04C3571243/ + NumHeight: 4 + NumWidth: 3 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: d4f2fb + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.10181022 + posY: 1.55081809 + posZ: -22.8462734 + rotX: 359.919617 + rotY: 269.9996 + rotZ: 0.0167069416 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265708 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2651': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/949592555969412232/179DFE7EAFB12BB78ED84F53B0D4C77947D600BA/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949592555969411948/E76BC2A6738EAB86780592A4A3404F04C3571243/ + NumHeight: 4 + NumWidth: 3 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: ccfc44 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.772361 + posY: 1.69111574 + posZ: -22.8356552 + rotX: 359.9076 + rotY: 269.999084 + rotZ: 0.015540068 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265705 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2657': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/949592555969412232/179DFE7EAFB12BB78ED84F53B0D4C77947D600BA/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949592555969411948/E76BC2A6738EAB86780592A4A3404F04C3571243/ + NumHeight: 4 + NumWidth: 3 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 2ea534 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 10.8441324 + posY: 1.69715428 + posZ: 3.550156 + rotX: 359.9375 + rotY: 269.998169 + rotZ: 0.017016124 + scaleX: 0.73 + scaleY: 1.0 + scaleZ: 0.73 + XmlUI: '' +- Autoraise: true + CardID: 265702 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2657': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/949592555969412232/179DFE7EAFB12BB78ED84F53B0D4C77947D600BA/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949592555969411948/E76BC2A6738EAB86780592A4A3404F04C3571243/ + NumHeight: 4 + NumWidth: 3 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 7e1c46 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 11.0748615 + posY: 1.68292379 + posZ: 3.51217842 + rotX: 359.918152 + rotY: 269.999847 + rotZ: 0.015536828 + scaleX: 0.73 + scaleY: 1.0 + scaleZ: 0.73 + XmlUI: '' +CustomDeck: + '2657': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/949592555969412232/179DFE7EAFB12BB78ED84F53B0D4C77947D600BA/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949592555969411948/E76BC2A6738EAB86780592A4A3404F04C3571243/ + NumHeight: 4 + NumWidth: 3 + UniqueBack: true +DeckIDs: +- 265711 +- 265708 +- 265705 +- 265702 +Description: '' +GMNotes: '' +GUID: 5044b6 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Act Deck V.II +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 1.6668005 + posY: 1.64747572 + posZ: -4.770501 + rotX: 359.919739 + rotY: 269.989349 + rotZ: 0.0168535169 + scaleX: 0.73 + scaleY: 1.0 + scaleZ: 0.73 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 2 Enter the Dragon 4f944f/Deck Agenda Deck 88d710.yaml b/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 2 Enter the Dragon 4f944f/Deck Agenda Deck 88d710.yaml new file mode 100644 index 000000000..b4d887dc7 --- /dev/null +++ b/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 2 Enter the Dragon 4f944f/Deck Agenda Deck 88d710.yaml @@ -0,0 +1,215 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 265609 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2651': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/949592555969412232/179DFE7EAFB12BB78ED84F53B0D4C77947D600BA/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949592555969411948/E76BC2A6738EAB86780592A4A3404F04C3571243/ + NumHeight: 4 + NumWidth: 3 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 859cd9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.1692853 + posY: 1.54116333 + posZ: -24.4914951 + rotX: 359.8994 + rotY: 270.0031 + rotZ: 0.0132283913 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265606 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2651': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/949592555969412232/179DFE7EAFB12BB78ED84F53B0D4C77947D600BA/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949592555969411948/E76BC2A6738EAB86780592A4A3404F04C3571243/ + NumHeight: 4 + NumWidth: 3 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: a18612 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 6.91259 + posY: 1.53499508 + posZ: -28.1896381 + rotX: 359.904968 + rotY: 269.9947 + rotZ: 0.0136603741 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265603 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2651': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/949592555969412232/179DFE7EAFB12BB78ED84F53B0D4C77947D600BA/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949592555969411948/E76BC2A6738EAB86780592A4A3404F04C3571243/ + NumHeight: 4 + NumWidth: 3 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: e6a565 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 7.855642 + posY: 1.53432655 + posZ: -26.8521385 + rotX: 359.914185 + rotY: 269.9924 + rotZ: 0.0162566323 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265600 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2651': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/949592555969412232/179DFE7EAFB12BB78ED84F53B0D4C77947D600BA/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949592555969411948/E76BC2A6738EAB86780592A4A3404F04C3571243/ + NumHeight: 4 + NumWidth: 3 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 7e9288 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 7.37143373 + posY: 1.67573678 + posZ: -26.6048946 + rotX: 359.905 + rotY: 269.985016 + rotZ: 0.009470471 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2656': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/949592555969412232/179DFE7EAFB12BB78ED84F53B0D4C77947D600BA/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949592555969411948/E76BC2A6738EAB86780592A4A3404F04C3571243/ + NumHeight: 4 + NumWidth: 3 + UniqueBack: true +DeckIDs: +- 265609 +- 265606 +- 265603 +- 265600 +Description: '' +GMNotes: '' +GUID: 88d710 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Agenda Deck +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.7247 + posY: 1.65513849 + posZ: 0.373300016 + rotX: 359.919739 + rotY: 270.001465 + rotZ: 0.01683645 + scaleX: 0.73 + scaleY: 1.0 + scaleZ: 0.73 +XmlUI: '' diff --git a/unpacked/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 Idol Thoughts 2d417b/Custom_Model_Bag 2 Enter the Dragon 4f944f/Deck Alternate Eyes of the Dragon 031d10.yaml new file mode 100644 index 000000000..7cd8b7f90 --- /dev/null +++ b/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 2 Enter the Dragon 4f944f/Deck Alternate Eyes of the Dragon 031d10.yaml @@ -0,0 +1,130 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 264800 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2648': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949592555970292959/B0659FAF6F363B74064B6C16DB8A3CF58C81883D/ + NumHeight: 2 + NumWidth: 2 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: b1e48e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 8.189575 + posY: 1.47785223 + posZ: -14.5686293 + rotX: 359.9201 + rotY: 270.0111 + rotZ: 0.0168573931 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 264800 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2648': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949592555970292959/B0659FAF6F363B74064B6C16DB8A3CF58C81883D/ + NumHeight: 2 + NumWidth: 2 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: ec7ab1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 8.189575 + posY: 1.67785227 + posZ: -14.5686293 + rotX: 359.9201 + rotY: 270.0111 + rotZ: 0.0168573931 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2648': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949592555970292959/B0659FAF6F363B74064B6C16DB8A3CF58C81883D/ + NumHeight: 2 + NumWidth: 2 + UniqueBack: false +DeckIDs: +- 264800 +- 264800 +Description: Replace the "Eyes" cards in the encounter deck with this version if you + prefer spawning enemies. +GMNotes: '' +GUID: 031d10 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Alternate Eyes of the Dragon +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -10.4642992 + posY: 1.6777209 + posZ: 10.3214006 + rotX: 359.9201 + rotY: 270.000183 + rotZ: 0.0168680772 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 2 Enter the Dragon 4f944f/Deck Encounter Deck 35feb6.yaml b/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 2 Enter the Dragon 4f944f/Deck Encounter Deck 35feb6.yaml new file mode 100644 index 000000000..9189183cb --- /dev/null +++ b/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 2 Enter the Dragon 4f944f/Deck Encounter Deck 35feb6.yaml @@ -0,0 +1,1512 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 264725 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2647': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949592555969333109/629D4A40EF796ABAFB4D62A5F693A20C4F807E43/ + NumHeight: 4 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: aea78d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 13.1397533 + posY: 1.7369858 + posZ: -13.9350119 + rotX: 359.922882 + rotY: 269.9939 + rotZ: 355.6162 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 270800 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2708': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1010437351815789197/BF596A1B4F040FEE501B063BE162C49E54D6B585/ + NumHeight: 2 + NumWidth: 2 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: af0db8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 8.977231 + posY: 3.01632142 + posZ: 15.2722921 + rotX: 359.920135 + rotY: 270.0055 + rotZ: 0.0168708749 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 264722 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2647': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949592555969333109/629D4A40EF796ABAFB4D62A5F693A20C4F807E43/ + NumHeight: 4 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: aea78d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 13.1794682 + posY: 1.72904956 + posZ: -13.9017267 + rotX: 359.9233 + rotY: 269.993225 + rotZ: 356.9253 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 264706 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2647': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949592555969333109/629D4A40EF796ABAFB4D62A5F693A20C4F807E43/ + NumHeight: 4 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: aea78d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 13.1540756 + posY: 1.82821977 + posZ: -13.9653473 + rotX: 359.9325 + rotY: 270.000732 + rotZ: 0.0150437532 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 264720 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2647': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949592555969333109/629D4A40EF796ABAFB4D62A5F693A20C4F807E43/ + NumHeight: 4 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: aea78d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 13.2018518 + posY: 1.69291079 + posZ: -13.4763651 + rotX: 359.9326 + rotY: 270.0007 + rotZ: 0.0141459806 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 264701 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2647': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949592555969333109/629D4A40EF796ABAFB4D62A5F693A20C4F807E43/ + NumHeight: 4 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: bcca03 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 13.1528749 + posY: 1.87658644 + posZ: -13.7211409 + rotX: 359.93335 + rotY: 270.0008 + rotZ: 0.0145881716 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 264721 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2647': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949592555969333109/629D4A40EF796ABAFB4D62A5F693A20C4F807E43/ + NumHeight: 4 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: aea78d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 13.145627 + posY: 1.7291646 + posZ: -13.9905586 + rotX: 359.922546 + rotY: 270.017975 + rotZ: 357.221954 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 264732 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2647': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949592555969333109/629D4A40EF796ABAFB4D62A5F693A20C4F807E43/ + NumHeight: 4 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 0a0980 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 13.3454723 + posY: 1.67112625 + posZ: -13.4086962 + rotX: 359.934448 + rotY: 270.000336 + rotZ: -0.004751804 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 264707 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2647': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949592555969333109/629D4A40EF796ABAFB4D62A5F693A20C4F807E43/ + NumHeight: 4 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: aea78d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 13.1238985 + posY: 1.81860149 + posZ: -13.9183912 + rotX: 359.933044 + rotY: 270.00058 + rotZ: 0.0147158662 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 264710 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2647': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949592555969333109/629D4A40EF796ABAFB4D62A5F693A20C4F807E43/ + NumHeight: 4 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: aea78d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 13.0918941 + posY: 1.78962994 + posZ: -13.9451208 + rotX: 359.933167 + rotY: 270.00058 + rotZ: 0.0153282657 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 264709 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2647': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949592555969333109/629D4A40EF796ABAFB4D62A5F693A20C4F807E43/ + NumHeight: 4 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: aea78d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 13.1039572 + posY: 1.79920793 + posZ: -14.0701694 + rotX: 359.9334 + rotY: 270.000122 + rotZ: 0.0145474728 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 264705 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2647': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949592555969333109/629D4A40EF796ABAFB4D62A5F693A20C4F807E43/ + NumHeight: 4 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: aea78d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 10.8401318 + posY: 1.88450718 + posZ: -14.3136616 + rotX: -0.00383456424 + rotY: 269.977966 + rotZ: 180.121674 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 264704 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2647': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949592555969333109/629D4A40EF796ABAFB4D62A5F693A20C4F807E43/ + NumHeight: 4 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 3963bd + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 10.6265907 + posY: 2.0268364 + posZ: -14.6949759 + rotX: 359.987518 + rotY: 269.977478 + rotZ: 180.28038 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 264730 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2647': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949592555969333109/629D4A40EF796ABAFB4D62A5F693A20C4F807E43/ + NumHeight: 4 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: aea78d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 13.0916843 + posY: 1.67537665 + posZ: -13.67346 + rotX: 359.932648 + rotY: 270.0038 + rotZ: 0.02415352 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 264719 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2647': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949592555969333109/629D4A40EF796ABAFB4D62A5F693A20C4F807E43/ + NumHeight: 4 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: aea78d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 13.1950731 + posY: 1.73148572 + posZ: -13.9356527 + rotX: 359.891632 + rotY: 270.005 + rotZ: 358.945648 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 264724 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2647': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949592555969333109/629D4A40EF796ABAFB4D62A5F693A20C4F807E43/ + NumHeight: 4 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: aea78d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 13.154809 + posY: 1.73433971 + posZ: -13.92682 + rotX: 359.9235 + rotY: 269.992645 + rotZ: 356.051758 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 264728 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2647': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949592555969333109/629D4A40EF796ABAFB4D62A5F693A20C4F807E43/ + NumHeight: 4 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: aea78d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 13.09026 + posY: 1.67562985 + posZ: -13.72418 + rotX: 359.9332 + rotY: 270.000336 + rotZ: 0.0144202868 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 264729 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2647': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949592555969333109/629D4A40EF796ABAFB4D62A5F693A20C4F807E43/ + NumHeight: 4 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: aea78d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 12.9361582 + posY: 1.76136923 + posZ: -13.94483 + rotX: 359.9228 + rotY: 270.0218 + rotZ: 354.635773 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 270801 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2708': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1010437351815789197/BF596A1B4F040FEE501B063BE162C49E54D6B585/ + NumHeight: 2 + NumWidth: 2 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 3b3fd5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 8.23191 + posY: 3.018713 + posZ: 19.8656464 + rotX: 359.920135 + rotY: 270.0005 + rotZ: 0.0168740172 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 264727 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2647': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949592555969333109/629D4A40EF796ABAFB4D62A5F693A20C4F807E43/ + NumHeight: 4 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: aea78d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 13.0638428 + posY: 1.68151844 + posZ: -13.69724 + rotX: 359.932648 + rotY: 269.9967 + rotZ: 0.00330104446 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 264717 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2647': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949592555969333109/629D4A40EF796ABAFB4D62A5F693A20C4F807E43/ + NumHeight: 4 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: aea78d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 13.3465118 + posY: 1.72181129 + posZ: -13.6691837 + rotX: 359.932373 + rotY: 270.000732 + rotZ: 0.01630795 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 270803 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2708': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1010437351815789197/BF596A1B4F040FEE501B063BE162C49E54D6B585/ + NumHeight: 2 + NumWidth: 2 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: e13c98 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 5.40805531 + posY: 3.02347136 + posZ: 22.6564522 + rotX: 359.920135 + rotY: 270.000366 + rotZ: 0.0168755148 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 264715 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2647': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949592555969333109/629D4A40EF796ABAFB4D62A5F693A20C4F807E43/ + NumHeight: 4 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: aea78d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 13.2550049 + posY: 1.74135327 + posZ: -13.2422609 + rotX: 359.932739 + rotY: 270.000946 + rotZ: 0.0132839782 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 264733 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2647': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949592555969333109/629D4A40EF796ABAFB4D62A5F693A20C4F807E43/ + NumHeight: 4 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: aea78d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 13.3179512 + posY: 1.53059042 + posZ: -13.5286207 + rotX: 359.915833 + rotY: 270.0001 + rotZ: 0.0151707493 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 264700 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2647': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949592555969333109/629D4A40EF796ABAFB4D62A5F693A20C4F807E43/ + NumHeight: 4 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: aea78d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 13.43234 + posY: 1.88587987 + posZ: -13.6391239 + rotX: 359.918549 + rotY: 269.995819 + rotZ: -0.00510107959 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 264723 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2647': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949592555969333109/629D4A40EF796ABAFB4D62A5F693A20C4F807E43/ + NumHeight: 4 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: aea78d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 13.1892061 + posY: 1.737391 + posZ: -14.077116 + rotX: 359.9225 + rotY: 269.9923 + rotZ: 356.2085 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 270802 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2708': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1010437351815789197/BF596A1B4F040FEE501B063BE162C49E54D6B585/ + NumHeight: 2 + NumWidth: 2 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 4f69b7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 5.546752 + posY: 3.02162337 + posZ: 17.0378132 + rotX: 359.920135 + rotY: 270.000549 + rotZ: 0.0168741271 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 264703 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2647': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949592555969333109/629D4A40EF796ABAFB4D62A5F693A20C4F807E43/ + NumHeight: 4 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: aea78d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 13.274498 + posY: 1.85716975 + posZ: -13.6903744 + rotX: 359.9322 + rotY: 269.995728 + rotZ: 0.005910348 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 264718 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2647': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949592555969333109/629D4A40EF796ABAFB4D62A5F693A20C4F807E43/ + NumHeight: 4 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: aea78d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 13.2093182 + posY: 1.71333957 + posZ: -13.7727 + rotX: 359.932831 + rotY: 269.998932 + rotZ: 0.0116967792 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 264726 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2647': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949592555969333109/629D4A40EF796ABAFB4D62A5F693A20C4F807E43/ + NumHeight: 4 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: aea78d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 13.1103535 + posY: 1.75690353 + posZ: -13.8649292 + rotX: 359.92395 + rotY: 269.994873 + rotZ: 356.45 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 264716 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2647': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949592555969333109/629D4A40EF796ABAFB4D62A5F693A20C4F807E43/ + NumHeight: 4 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: aea78d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 13.2892828 + posY: 1.73013592 + posZ: -13.9650946 + rotX: 359.913483 + rotY: 270.001282 + rotZ: 0.129848525 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 264731 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2647': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949592555969333109/629D4A40EF796ABAFB4D62A5F693A20C4F807E43/ + NumHeight: 4 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: aea78d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 13.11811 + posY: 1.68905318 + posZ: -13.5822668 + rotX: 359.932556 + rotY: 270.000122 + rotZ: 0.01301135 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 264702 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2647': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949592555969333109/629D4A40EF796ABAFB4D62A5F693A20C4F807E43/ + NumHeight: 4 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: aea78d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 13.2063513 + posY: 1.86696339 + posZ: -13.6537457 + rotX: 359.931519 + rotY: 269.981262 + rotZ: 359.974976 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 264708 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2647': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949592555969333109/629D4A40EF796ABAFB4D62A5F693A20C4F807E43/ + NumHeight: 4 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: aea78d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 12.9997158 + posY: 1.8091079 + posZ: -13.8851337 + rotX: 359.932983 + rotY: 270.0003 + rotZ: 0.01251975 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2647': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949592555969333109/629D4A40EF796ABAFB4D62A5F693A20C4F807E43/ + NumHeight: 4 + NumWidth: 10 + UniqueBack: false + '2708': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1010437351815789197/BF596A1B4F040FEE501B063BE162C49E54D6B585/ + NumHeight: 2 + NumWidth: 2 + UniqueBack: false +DeckIDs: +- 264725 +- 270800 +- 264722 +- 264706 +- 264720 +- 264701 +- 264721 +- 264732 +- 264707 +- 264710 +- 264709 +- 264705 +- 264704 +- 264730 +- 264719 +- 264724 +- 264728 +- 264729 +- 270801 +- 264727 +- 264717 +- 270803 +- 264715 +- 264733 +- 264700 +- 264723 +- 270802 +- 264703 +- 264718 +- 264726 +- 264716 +- 264731 +- 264702 +- 264708 +Description: '' +GMNotes: '' +GUID: 35feb6 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Encounter Deck +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.92723274 + posY: 1.793027 + posZ: 5.757003 + rotX: 359.919739 + rotY: 270.000031 + rotZ: 180.016815 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 3 Bon Voyage 49dfb9.ttslua b/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 3 Bon Voyage 49dfb9.ttslua new file mode 100644 index 000000000..54d591927 --- /dev/null +++ b/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 3 Bon Voyage 49dfb9.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.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 Idol Thoughts 2d417b/Custom_Model_Bag 3 Bon Voyage 49dfb9.yaml b/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 3 Bon Voyage 49dfb9.yaml new file mode 100644 index 000000000..3d31ea17f --- /dev/null +++ b/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 3 Bon Voyage 49dfb9.yaml @@ -0,0 +1,92 @@ +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 3 Bon Voyage 49dfb9/Custom_Model_Bag Set-aside cff68d.yaml' +- !include 'Custom_Model_Bag 3 Bon Voyage 49dfb9/Deck Encounter Deck 5079c9.yaml' +- !include 'Custom_Model_Bag 3 Bon Voyage 49dfb9/Deck Agenda Deck 66a92e.yaml' +- !include 'Custom_Model_Bag 3 Bon Voyage 49dfb9/Deck Act Deck 811a00.yaml' +- !include 'Custom_Model_Bag 3 Bon Voyage 49dfb9/Custom_Tile 7d816e.yaml' +- !include 'Custom_Model_Bag 3 Bon Voyage 49dfb9/Card Scenario a14d0c.yaml' +- !include 'Custom_Model_Bag 3 Bon Voyage 49dfb9/Deck Random Assets d719b5.yaml' +- !include 'Custom_Model_Bag 3 Bon Voyage 49dfb9/Card First Class 26cc97.yaml' +- !include 'Custom_Model_Bag 3 Bon Voyage 49dfb9/Custom_Tile 7234af.yaml' +- !include 'Custom_Model_Bag 3 Bon Voyage 49dfb9/Card The Upper Deck e9bc69.yaml' +- !include 'Custom_Model_Bag 3 Bon Voyage 49dfb9/Custom_Tile 85c289.yaml' +- !include 'Custom_Model_Bag 3 Bon Voyage 49dfb9/Custom_Tile 31eed4.yaml' +- !include 'Custom_Model_Bag 3 Bon Voyage 49dfb9/Custom_Tile 2c2ae0.yaml' +- !include 'Custom_Model_Bag 3 Bon Voyage 49dfb9/Card Steerage 9b0d7f.yaml' +- !include 'Custom_Model_Bag 3 Bon Voyage 49dfb9/Card Second Class 4ea780.yaml' +- !include 'Custom_Model_Bag 3 Bon Voyage 49dfb9/Custom_Tile 194545.yaml' +- !include 'Custom_Model_Bag 3 Bon Voyage 49dfb9/Card Service Corridors 886b98.yaml' +- !include 'Custom_Model_Bag 3 Bon Voyage 49dfb9/Custom_Tile b4f166.yaml' +- !include 'Custom_Model_Bag 3 Bon Voyage 49dfb9/Card Port Hull e764b3.yaml' +- !include 'Custom_Model_Bag 3 Bon Voyage 49dfb9/Custom_Tile 5adeb8.yaml' +- !include 'Custom_Model_Bag 3 Bon Voyage 49dfb9/Card Starboard Hull 576222.yaml' +- !include 'Custom_Model_Bag 3 Bon Voyage 49dfb9/Custom_Tile 35cda1.yaml' +- !include 'Custom_Model_Bag 3 Bon Voyage 49dfb9/Custom_Tile 9a38a2.yaml' +- !include 'Custom_Model_Bag 3 Bon Voyage 49dfb9/Custom_Tile a61d13.yaml' +- !include 'Custom_Model_Bag 3 Bon Voyage 49dfb9/Card The Engine Room fec36a.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/1011563111884532727/28C363F6261ACDE0E58669B0DC6283157A70BE7B/ + MaterialIndex: 3 + MeshURL: https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj + NormalURL: '' + TypeIndex: 6 +Description: Idol Thoughts +GMNotes: '' +GUID: 49dfb9 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Model_Bag 3 Bon Voyage 49dfb9.ttslua' +LuaScriptState: '{"ml":{"194545":{"lock":false,"pos":{"x":-27.2074,"y":1.6195,"z":0.3677},"rot":{"x":359.9201,"y":269.9948,"z":0.0169}},"26cc97":{"lock":false,"pos":{"x":-17.1199,"y":1.6771,"z":-0.03},"rot":{"x":359.9201,"y":270,"z":0.0169}},"2c2ae0":{"lock":false,"pos":{"x":-23.6765,"y":1.6134,"z":-3.83},"rot":{"x":359.9831,"y":0.0001,"z":359.92}},"31eed4":{"lock":false,"pos":{"x":-19.8241,"y":1.608,"z":-3.9426},"rot":{"x":359.9554,"y":224.9997,"z":0.0684}},"35cda1":{"lock":false,"pos":{"x":-34.1459,"y":1.628,"z":-3.6537},"rot":{"x":359.9454,"y":330.0001,"z":359.9392}},"4ea780":{"lock":false,"pos":{"x":-23.6766,"y":1.684,"z":-7.7},"rot":{"x":359.9201,"y":269.9999,"z":0.0169}},"5079c9":{"lock":false,"pos":{"x":-3.9277,"y":1.777,"z":5.7571},"rot":{"x":359.9197,"y":270.0005,"z":180.0168}},"576222":{"lock":false,"pos":{"x":-30.2242,"y":1.6931,"z":-7.7},"rot":{"x":359.9201,"y":269.9999,"z":0.0169}},"5adeb8":{"lock":false,"pos":{"x":-30.2242,"y":1.6225,"z":-3.83},"rot":{"x":359.9831,"y":0.0002,"z":359.9201}},"66a92e":{"lock":false,"pos":{"x":-2.7247,"y":1.656,"z":0.3733},"rot":{"x":359.9197,"y":270.0001,"z":0.0168}},"7234af":{"lock":false,"pos":{"x":-17.12,"y":1.6065,"z":3.86},"rot":{"x":359.9831,"y":359.9931,"z":359.92}},"7d816e":{"lock":false,"pos":{"x":-8.0687,"y":1.5653,"z":-10.918},"rot":{"x":5.338,"y":270.0222,"z":0.0176}},"811a00":{"lock":false,"pos":{"x":-2.6885,"y":1.655,"z":-5.0485},"rot":{"x":359.9197,"y":270.0049,"z":0.0168}},"85c289":{"lock":false,"pos":{"x":-20.2852,"y":1.6097,"z":-0.1974},"rot":{"x":359.9201,"y":269.9948,"z":0.0169}},"886b98":{"lock":false,"pos":{"x":-30.2242,"y":1.6954,"z":-0.03},"rot":{"x":359.9201,"y":269.9999,"z":0.0169}},"9a38a2":{"lock":false,"pos":{"x":-33.6608,"y":1.6285,"z":0.1003},"rot":{"x":359.9201,"y":269.9948,"z":0.0169}},"9b0d7f":{"lock":false,"pos":{"x":-23.6765,"y":1.6862,"z":-0.03},"rot":{"x":359.9201,"y":270,"z":0.0169}},"a14d0c":{"lock":false,"pos":{"x":-3.9561,"y":1.6585,"z":-10.4436},"rot":{"x":359.9197,"y":270.0199,"z":180.0168}},"a61d13":{"lock":false,"pos":{"x":-33.7158,"y":1.6296,"z":3.6588},"rot":{"x":359.9554,"y":224.9999,"z":0.0684}},"b4f166":{"lock":false,"pos":{"x":-30.2242,"y":1.6248,"z":3.86},"rot":{"x":359.9831,"y":0.0002,"z":359.9201}},"cff68d":{"lock":false,"pos":{"x":1.697,"y":1.5583,"z":14.2784},"rot":{"x":359.9551,"y":224.998,"z":0.0687}},"d719b5":{"lock":false,"pos":{"x":-11.0458,"y":1.679,"z":11.8922},"rot":{"x":359.9201,"y":270,"z":180.0169}},"e764b3":{"lock":false,"pos":{"x":-30.2242,"y":1.6976,"z":7.57},"rot":{"x":359.9201,"y":270,"z":0.0169}},"e9bc69":{"lock":false,"pos":{"x":-17.12,"y":1.6793,"z":7.57},"rot":{"x":359.9201,"y":270,"z":0.0169}},"fec36a":{"lock":false,"pos":{"x":-36.7731,"y":1.7045,"z":-0.03},"rot":{"x":359.9201,"y":269.9999,"z":0.0169}}}}' +MaterialIndex: -1 +MeshIndex: -1 +Name: Custom_Model_Bag +Nickname: 3 Bon Voyage +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 32.45269 + posY: 1.43240237 + posZ: -13.1239805 + rotX: 359.920135 + rotY: 269.994141 + rotZ: 0.01688226 + scaleX: 2.21 + scaleY: 0.46 + scaleZ: 2.42 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 3 Bon Voyage 49dfb9/Card First Class 26cc97.yaml b/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 3 Bon Voyage 49dfb9/Card First Class 26cc97.yaml new file mode 100644 index 000000000..56ac0a73f --- /dev/null +++ b/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 3 Bon Voyage 49dfb9/Card First Class 26cc97.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 265201 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2652': + BackIsHidden: true + BackURL: https://i.imgur.com/nRdDsDi.jpg + FaceURL: https://i.imgur.com/E8QP0BV.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 26cc97 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: First Class +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -17.1198959 + posY: 1.67707765 + posZ: -0.0300005674 + rotX: 359.9201 + rotY: 269.999969 + rotZ: 0.0168768466 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 3 Bon Voyage 49dfb9/Card Port Hull e764b3.yaml b/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 3 Bon Voyage 49dfb9/Card Port Hull e764b3.yaml new file mode 100644 index 000000000..c81ab6308 --- /dev/null +++ b/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 3 Bon Voyage 49dfb9/Card Port Hull e764b3.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 265205 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2652': + BackIsHidden: true + BackURL: https://i.imgur.com/nRdDsDi.jpg + FaceURL: https://i.imgur.com/E8QP0BV.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: e764b3 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Port Hull +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -30.2242 + posY: 1.69758856 + posZ: 7.569999 + rotX: 359.9201 + rotY: 270.0 + rotZ: 0.0168761816 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 3 Bon Voyage 49dfb9/Card Scenario a14d0c.yaml b/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 3 Bon Voyage 49dfb9/Card Scenario a14d0c.yaml new file mode 100644 index 000000000..81fbff81e --- /dev/null +++ b/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 3 Bon Voyage 49dfb9/Card Scenario a14d0c.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 264800 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2648': + BackIsHidden: true + BackURL: https://i.imgur.com/UlBflNU.jpg + FaceURL: https://i.imgur.com/UlBflNU.jpg + NumHeight: 2 + NumWidth: 2 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: a14d0c +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Scenario +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.956101 + posY: 1.65847051 + posZ: -10.4436026 + rotX: 359.919739 + rotY: 270.0199 + rotZ: 180.016815 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 3 Bon Voyage 49dfb9/Card Second Class 4ea780.yaml b/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 3 Bon Voyage 49dfb9/Card Second Class 4ea780.yaml new file mode 100644 index 000000000..f754287e0 --- /dev/null +++ b/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 3 Bon Voyage 49dfb9/Card Second Class 4ea780.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 265202 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2652': + BackIsHidden: true + BackURL: https://i.imgur.com/nRdDsDi.jpg + FaceURL: https://i.imgur.com/E8QP0BV.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 4ea780 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Second Class +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -23.6765976 + posY: 1.683962 + posZ: -7.70000124 + rotX: 359.9201 + rotY: 269.9999 + rotZ: 0.01687544 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 3 Bon Voyage 49dfb9/Card Service Corridors 886b98.yaml b/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 3 Bon Voyage 49dfb9/Card Service Corridors 886b98.yaml new file mode 100644 index 000000000..66e2d1275 --- /dev/null +++ b/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 3 Bon Voyage 49dfb9/Card Service Corridors 886b98.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 265204 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2652': + BackIsHidden: true + BackURL: https://i.imgur.com/nRdDsDi.jpg + FaceURL: https://i.imgur.com/E8QP0BV.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 886b98 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Service Corridors +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -30.2242 + posY: 1.69535065 + posZ: -0.0300007649 + rotX: 359.9201 + rotY: 269.999939 + rotZ: 0.0168763157 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 3 Bon Voyage 49dfb9/Card Starboard Hull 576222.yaml b/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 3 Bon Voyage 49dfb9/Card Starboard Hull 576222.yaml new file mode 100644 index 000000000..361d5fd94 --- /dev/null +++ b/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 3 Bon Voyage 49dfb9/Card Starboard Hull 576222.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 265206 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2652': + BackIsHidden: true + BackURL: https://i.imgur.com/nRdDsDi.jpg + FaceURL: https://i.imgur.com/E8QP0BV.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: '576222' +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Starboard Hull +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -30.2242 + posY: 1.69309223 + posZ: -7.70000267 + rotX: 359.9201 + rotY: 269.999939 + rotZ: 0.01687629 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 3 Bon Voyage 49dfb9/Card Steerage 9b0d7f.yaml b/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 3 Bon Voyage 49dfb9/Card Steerage 9b0d7f.yaml new file mode 100644 index 000000000..5a753f51e --- /dev/null +++ b/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 3 Bon Voyage 49dfb9/Card Steerage 9b0d7f.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 265203 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2652': + BackIsHidden: true + BackURL: https://i.imgur.com/nRdDsDi.jpg + FaceURL: https://i.imgur.com/E8QP0BV.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 9b0d7f +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Steerage +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -23.6765 + posY: 1.68622029 + posZ: -0.0300006811 + rotX: 359.9201 + rotY: 269.999969 + rotZ: 0.0168764386 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 3 Bon Voyage 49dfb9/Card The Engine Room fec36a.yaml b/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 3 Bon Voyage 49dfb9/Card The Engine Room fec36a.yaml new file mode 100644 index 000000000..1911d6c46 --- /dev/null +++ b/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 3 Bon Voyage 49dfb9/Card The Engine Room fec36a.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 265207 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2652': + BackIsHidden: true + BackURL: https://i.imgur.com/nRdDsDi.jpg + FaceURL: https://i.imgur.com/E8QP0BV.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: fec36a +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: The Engine Room +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -36.7731056 + posY: 1.70448279 + posZ: -0.0300012026 + rotX: 359.9201 + rotY: 269.999939 + rotZ: 0.0168762561 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 3 Bon Voyage 49dfb9/Card The Upper Deck e9bc69.yaml b/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 3 Bon Voyage 49dfb9/Card The Upper Deck e9bc69.yaml new file mode 100644 index 000000000..8ac52a501 --- /dev/null +++ b/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 3 Bon Voyage 49dfb9/Card The Upper Deck e9bc69.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 265200 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2652': + BackIsHidden: true + BackURL: https://i.imgur.com/nRdDsDi.jpg + FaceURL: https://i.imgur.com/E8QP0BV.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: e9bc69 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: The Upper Deck +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -17.12 + posY: 1.67931569 + posZ: 7.57 + rotX: 359.9201 + rotY: 269.999969 + rotZ: 0.016876936 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/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 Idol Thoughts 2d417b/Custom_Model_Bag 3 Bon Voyage 49dfb9/Custom_Model_Bag Set-aside cff68d.yaml new file mode 100644 index 000000000..b47dcd6a2 --- /dev/null +++ b/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 3 Bon Voyage 49dfb9/Custom_Model_Bag Set-aside cff68d.yaml @@ -0,0 +1,57 @@ +Autoraise: true +ColorDiffuse: + b: 0.02148666 + g: 0.00100758043 + r: 0.02148666 +ContainedObjects: +- !include 'Custom_Model_Bag Set-aside cff68d/Card The Hungry Masses d0896c.yaml' +- !include 'Custom_Model_Bag Set-aside cff68d/Card Benthic Titan 0cfb8b.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: '' +GMNotes: '' +GUID: cff68d +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +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.6970011 + posY: 1.55831623 + posZ: 14.2784042 + rotX: 359.955139 + rotY: 224.998032 + rotZ: 0.06867222 + scaleX: 2.0 + scaleY: 2.0 + scaleZ: 2.0 +XmlUI: '' diff --git a/unpacked/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 Idol Thoughts 2d417b/Custom_Model_Bag 3 Bon Voyage 49dfb9/Custom_Model_Bag Set-aside cff68d/Card Benthic Titan 0cfb8b.yaml new file mode 100644 index 000000000..ef8b3f1b1 --- /dev/null +++ b/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 3 Bon Voyage 49dfb9/Custom_Model_Bag Set-aside cff68d/Card Benthic Titan 0cfb8b.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 265329 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2653': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/xcyJYJw.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 0cfb8b +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Benthic Titan +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 17.789484 + posY: 3.57007885 + posZ: -30.1682644 + rotX: 359.919678 + rotY: 270.000031 + rotZ: 0.0169816557 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/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 Idol Thoughts 2d417b/Custom_Model_Bag 3 Bon Voyage 49dfb9/Custom_Model_Bag Set-aside cff68d/Card The Hungry Masses d0896c.yaml new file mode 100644 index 000000000..6a772e190 --- /dev/null +++ b/unpacked/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 @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 265101 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: https://i.imgur.com/9f0nVfw.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: d0896c +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: The Hungry Masses +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 18.1941338 + posY: 3.56952524 + posZ: -30.364399 + rotX: 359.919678 + rotY: 270.002045 + rotZ: 0.01699977 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 3 Bon Voyage 49dfb9/Custom_Tile 194545.yaml b/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 3 Bon Voyage 49dfb9/Custom_Tile 194545.yaml new file mode 100644 index 000000000..5be0e3362 --- /dev/null +++ b/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 3 Bon Voyage 49dfb9/Custom_Tile 194545.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: '194545' +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.2074 + posY: 1.61954749 + posZ: 0.367699564 + rotX: 359.9201 + rotY: 269.9948 + rotZ: 0.0169074629 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 3 Bon Voyage 49dfb9/Custom_Tile 2c2ae0.yaml b/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 3 Bon Voyage 49dfb9/Custom_Tile 2c2ae0.yaml new file mode 100644 index 000000000..5a0c062c5 --- /dev/null +++ b/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 3 Bon Voyage 49dfb9/Custom_Tile 2c2ae0.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 2c2ae0 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.613388 + posZ: -3.83000064 + rotX: 359.983124 + rotY: 0.000146229519 + rotZ: 359.920044 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 3 Bon Voyage 49dfb9/Custom_Tile 31eed4.yaml b/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 3 Bon Voyage 49dfb9/Custom_Tile 31eed4.yaml new file mode 100644 index 000000000..63bfc734f --- /dev/null +++ b/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 3 Bon Voyage 49dfb9/Custom_Tile 31eed4.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 31eed4 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: -19.8241 + posY: 1.60798264 + posZ: -3.94260049 + rotX: 359.955444 + rotY: 224.9997 + rotZ: 0.06840746 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 3 Bon Voyage 49dfb9/Custom_Tile 35cda1.yaml b/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 3 Bon Voyage 49dfb9/Custom_Tile 35cda1.yaml new file mode 100644 index 000000000..7cb7bafd0 --- /dev/null +++ b/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 3 Bon Voyage 49dfb9/Custom_Tile 35cda1.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 35cda1 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: -34.1459 + posY: 1.62803876 + posZ: -3.65370059 + rotX: 359.945435 + rotY: 330.0001 + rotZ: 359.9392 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 3 Bon Voyage 49dfb9/Custom_Tile 5adeb8.yaml b/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 3 Bon Voyage 49dfb9/Custom_Tile 5adeb8.yaml new file mode 100644 index 000000000..b2099a4de --- /dev/null +++ b/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 3 Bon Voyage 49dfb9/Custom_Tile 5adeb8.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 5adeb8 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.2241974 + posY: 1.62251842 + posZ: -3.829999 + rotX: 359.983124 + rotY: 0.000166418264 + rotZ: 359.920074 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 3 Bon Voyage 49dfb9/Custom_Tile 7234af.yaml b/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 3 Bon Voyage 49dfb9/Custom_Tile 7234af.yaml new file mode 100644 index 000000000..80ffa4355 --- /dev/null +++ b/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 3 Bon Voyage 49dfb9/Custom_Tile 7234af.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 7234af +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.1199989 + posY: 1.60650992 + posZ: 3.86000061 + rotX: 359.983124 + rotY: 359.993134 + rotZ: 359.920044 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 3 Bon Voyage 49dfb9/Custom_Tile 7d816e.yaml b/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 3 Bon Voyage 49dfb9/Custom_Tile 7d816e.yaml new file mode 100644 index 000000000..e65a21c47 --- /dev/null +++ b/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 3 Bon Voyage 49dfb9/Custom_Tile 7d816e.yaml @@ -0,0 +1,42 @@ +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: '' +GMNotes: '' +GUID: 7d816e +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Tile +Nickname: '' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -8.068703 + posY: 1.565321 + posZ: -10.918005 + rotX: 5.33795 + rotY: 270.022217 + rotZ: 0.0176062472 + scaleX: 0.81 + scaleY: 1.0 + scaleZ: 0.81 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 3 Bon Voyage 49dfb9/Custom_Tile 85c289.yaml b/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 3 Bon Voyage 49dfb9/Custom_Tile 85c289.yaml new file mode 100644 index 000000000..40e9e45b5 --- /dev/null +++ b/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 3 Bon Voyage 49dfb9/Custom_Tile 85c289.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 85c289 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.2852 + posY: 1.60972857 + posZ: -0.197400525 + rotX: 359.9201 + rotY: 269.9948 + rotZ: 0.0169074126 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 3 Bon Voyage 49dfb9/Custom_Tile 9a38a2.yaml b/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 3 Bon Voyage 49dfb9/Custom_Tile 9a38a2.yaml new file mode 100644 index 000000000..e4ee4e378 --- /dev/null +++ b/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 3 Bon Voyage 49dfb9/Custom_Tile 9a38a2.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 9a38a2 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.6608 + posY: 1.62846768 + posZ: 0.10029956 + rotX: 359.9201 + rotY: 269.9948 + rotZ: 0.0169071127 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 3 Bon Voyage 49dfb9/Custom_Tile a61d13.yaml b/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 3 Bon Voyage 49dfb9/Custom_Tile a61d13.yaml new file mode 100644 index 000000000..f41951b97 --- /dev/null +++ b/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 3 Bon Voyage 49dfb9/Custom_Tile a61d13.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: a61d13 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.7158 + posY: 1.62959206 + posZ: 3.658801 + rotX: 359.955444 + rotY: 224.999939 + rotZ: 0.06840429 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 3 Bon Voyage 49dfb9/Custom_Tile b4f166.yaml b/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 3 Bon Voyage 49dfb9/Custom_Tile b4f166.yaml new file mode 100644 index 000000000..805f98c92 --- /dev/null +++ b/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 3 Bon Voyage 49dfb9/Custom_Tile b4f166.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: b4f166 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.6247828 + posZ: 3.86000061 + rotX: 359.983124 + rotY: 0.000159649251 + rotZ: 359.920074 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 3 Bon Voyage 49dfb9/Deck Act Deck 811a00.yaml b/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 3 Bon Voyage 49dfb9/Deck Act Deck 811a00.yaml new file mode 100644 index 000000000..51dc040a1 --- /dev/null +++ b/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 3 Bon Voyage 49dfb9/Deck Act Deck 811a00.yaml @@ -0,0 +1,172 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 264905 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2649': + BackIsHidden: true + BackURL: https://i.imgur.com/QABLkFd.jpg + FaceURL: https://i.imgur.com/faDzdOJ.jpg + NumHeight: 4 + NumWidth: 2 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 6f9bd6 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 4.271712 + posY: 1.54322159 + posZ: -13.2404661 + rotX: 359.918243 + rotY: 270.012543 + rotZ: 0.01151234 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 264903 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2649': + BackIsHidden: true + BackURL: https://i.imgur.com/QABLkFd.jpg + FaceURL: https://i.imgur.com/faDzdOJ.jpg + NumHeight: 4 + NumWidth: 2 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 5914d2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 1.53057218 + posY: 1.632911 + posZ: -13.1218414 + rotX: 2.81295919 + rotY: 270.111633 + rotZ: 0.0172338039 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 264901 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2649': + BackIsHidden: true + BackURL: https://i.imgur.com/QABLkFd.jpg + FaceURL: https://i.imgur.com/faDzdOJ.jpg + NumHeight: 4 + NumWidth: 2 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: d65b39 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 1.51109266 + posY: 1.77948 + posZ: -13.2379351 + rotX: 2.53453183 + rotY: 269.992371 + rotZ: 0.0142274341 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2649': + BackIsHidden: true + BackURL: https://i.imgur.com/QABLkFd.jpg + FaceURL: https://i.imgur.com/faDzdOJ.jpg + NumHeight: 4 + NumWidth: 2 + UniqueBack: true +DeckIDs: +- 264905 +- 264903 +- 264901 +Description: '' +GMNotes: '' +GUID: 811a00 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Act Deck +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.68849945 + posY: 1.65499735 + posZ: -5.0485034 + rotX: 359.919739 + rotY: 270.004944 + rotZ: 0.0168316774 + scaleX: 0.73 + scaleY: 1.0 + scaleZ: 0.73 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 3 Bon Voyage 49dfb9/Deck Agenda Deck 66a92e.yaml b/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 3 Bon Voyage 49dfb9/Deck Agenda Deck 66a92e.yaml new file mode 100644 index 000000000..3453962e6 --- /dev/null +++ b/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 3 Bon Voyage 49dfb9/Deck Agenda Deck 66a92e.yaml @@ -0,0 +1,258 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 264906 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2649': + BackIsHidden: true + BackURL: https://i.imgur.com/QABLkFd.jpg + FaceURL: https://i.imgur.com/faDzdOJ.jpg + NumHeight: 4 + NumWidth: 2 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: '737883' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -1.41050422 + posY: 1.5485214 + posZ: -22.6147861 + rotX: 359.9194 + rotY: 269.999817 + rotZ: 0.0166350529 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 264904 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2649': + BackIsHidden: true + BackURL: https://i.imgur.com/QABLkFd.jpg + FaceURL: https://i.imgur.com/faDzdOJ.jpg + NumHeight: 4 + NumWidth: 2 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 49a39d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -1.29586637 + posY: 1.68919456 + posZ: -22.3660259 + rotX: 359.9099 + rotY: 269.985748 + rotZ: 0.014584518 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 264902 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2649': + BackIsHidden: true + BackURL: https://i.imgur.com/QABLkFd.jpg + FaceURL: https://i.imgur.com/faDzdOJ.jpg + NumHeight: 4 + NumWidth: 2 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 5c8c11 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -1.01037967 + posY: 1.70611393 + posZ: -22.6437073 + rotX: 359.9196 + rotY: 270.000183 + rotZ: 0.01696971 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 264900 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2649': + BackIsHidden: true + BackURL: https://i.imgur.com/QABLkFd.jpg + FaceURL: https://i.imgur.com/faDzdOJ.jpg + NumHeight: 4 + NumWidth: 2 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 2ae371 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -1.21479356 + posY: 1.69289255 + posZ: -22.24233 + rotX: 359.9188 + rotY: 269.989319 + rotZ: 0.016460862 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 264907 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2649': + BackIsHidden: true + BackURL: https://i.imgur.com/QABLkFd.jpg + FaceURL: https://i.imgur.com/faDzdOJ.jpg + NumHeight: 4 + NumWidth: 2 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 4f02eb + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -1.079801 + posY: 1.6906997 + posZ: -22.3177719 + rotX: 359.918762 + rotY: 269.999969 + rotZ: 0.0165669 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2649': + BackIsHidden: true + BackURL: https://i.imgur.com/QABLkFd.jpg + FaceURL: https://i.imgur.com/faDzdOJ.jpg + NumHeight: 4 + NumWidth: 2 + UniqueBack: true +DeckIDs: +- 264906 +- 264904 +- 264902 +- 264900 +- 264907 +Description: '' +GMNotes: '' +GUID: 66a92e +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Agenda Deck +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.7247 + posY: 1.655969 + posZ: 0.37329945 + rotX: 359.919739 + rotY: 270.000061 + rotZ: 0.0168385934 + scaleX: 0.73 + scaleY: 1.0 + scaleZ: 0.73 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 3 Bon Voyage 49dfb9/Deck Encounter Deck 5079c9.yaml b/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 3 Bon Voyage 49dfb9/Deck Encounter Deck 5079c9.yaml new file mode 100644 index 000000000..8563feb7c --- /dev/null +++ b/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 3 Bon Voyage 49dfb9/Deck Encounter Deck 5079c9.yaml @@ -0,0 +1,1376 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 265331 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2653': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/xcyJYJw.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 0cfb8b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 13.1622543 + posY: 1.52575386 + posZ: -30.6111641 + rotX: 359.914856 + rotY: 269.999725 + rotZ: 0.0149850547 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265330 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2653': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/xcyJYJw.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: fcbe62 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 13.0727005 + posY: 1.66640663 + posZ: -30.56783 + rotX: 359.935516 + rotY: 269.9999 + rotZ: 0.0117458329 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265328 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2653': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/xcyJYJw.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 0cfb8b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 13.1037617 + posY: 1.68410194 + posZ: -30.42324 + rotX: 359.933441 + rotY: 269.9999 + rotZ: 0.01263844 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265327 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2653': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/xcyJYJw.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 0cfb8b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 12.9694262 + posY: 1.67051315 + posZ: -30.8258686 + rotX: 359.9331 + rotY: 269.996674 + rotZ: 0.00562581141 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265326 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2653': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/xcyJYJw.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 0cfb8b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 13.1098289 + posY: 1.6683923 + posZ: -30.7004185 + rotX: 359.9325 + rotY: 269.991943 + rotZ: 0.0007621369 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265325 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2653': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/xcyJYJw.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 0cfb8b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 13.0953341 + posY: 1.67107356 + posZ: -30.553091 + rotX: 359.93338 + rotY: 270.0 + rotZ: 0.0136468019 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265324 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2653': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/xcyJYJw.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 0cfb8b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 13.1384468 + posY: 1.67603624 + posZ: -30.5036736 + rotX: 359.933319 + rotY: 270.000153 + rotZ: 0.013639654 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265323 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2653': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/xcyJYJw.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 0cfb8b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 13.1962538 + posY: 1.68227243 + posZ: -30.5771255 + rotX: 359.9333 + rotY: 270.0001 + rotZ: 0.0117601668 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265322 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2653': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/xcyJYJw.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 0cfb8b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 13.0990467 + posY: 1.6398412 + posZ: -30.72552 + rotX: 359.932526 + rotY: 270.0016 + rotZ: 0.0156364888 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265321 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2653': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/xcyJYJw.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 0cfb8b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 13.2140217 + posY: 1.64929831 + posZ: -30.86622 + rotX: 359.932251 + rotY: 270.000183 + rotZ: 0.018212894 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265320 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2653': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/xcyJYJw.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 0cfb8b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 13.1804562 + posY: 1.659051 + posZ: -30.8656559 + rotX: 359.930847 + rotY: 270.000244 + rotZ: 0.013190845 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265319 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2653': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/xcyJYJw.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 0cfb8b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 13.1930962 + posY: 1.66859937 + posZ: -30.928093 + rotX: 359.932953 + rotY: 270.000244 + rotZ: 0.01942148 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265318 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2653': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/xcyJYJw.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 0cfb8b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 13.1069832 + posY: 1.67848146 + posZ: -30.58572 + rotX: 359.932648 + rotY: 270.0005 + rotZ: 0.014703216 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265317 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2653': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/xcyJYJw.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 0cfb8b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 13.159996 + posY: 1.68814909 + posZ: -30.4767361 + rotX: 359.932129 + rotY: 270.006 + rotZ: 0.0193677638 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265316 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2653': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/xcyJYJw.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 0cfb8b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 13.1068926 + posY: 1.69769239 + posZ: -31.0586586 + rotX: 359.930847 + rotY: 270.000275 + rotZ: 0.019206034 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265315 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2653': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/xcyJYJw.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 0cfb8b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 13.0817108 + posY: 1.70739591 + posZ: -30.9349232 + rotX: 359.933319 + rotY: 270.0001 + rotZ: 0.0143789724 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265314 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2653': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/xcyJYJw.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 0cfb8b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 13.0983934 + posY: 1.715087 + posZ: -30.2243576 + rotX: 359.981323 + rotY: 269.999756 + rotZ: 359.887878 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265313 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2653': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/xcyJYJw.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 0cfb8b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 13.2114477 + posY: 1.72643268 + posZ: -30.9734478 + rotX: 359.928223 + rotY: 270.027832 + rotZ: 0.06972921 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265312 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2653': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/xcyJYJw.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: d9863b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 13.1654692 + posY: 1.84882689 + posZ: -30.81385 + rotX: 358.329376 + rotY: 270.010071 + rotZ: 356.664185 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265311 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2653': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/xcyJYJw.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 37812f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 13.1270742 + posY: 1.80021656 + posZ: -30.4322014 + rotX: 359.8604 + rotY: 270.034058 + rotZ: 2.80496526 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265310 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2653': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/xcyJYJw.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 0cfb8b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 13.0279131 + posY: 1.75579631 + posZ: -30.5393677 + rotX: 359.920471 + rotY: 270.0003 + rotZ: 0.01669873 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265309 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2653': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/xcyJYJw.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 0cfb8b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 13.02045 + posY: 1.76552641 + posZ: -30.6851387 + rotX: 359.933044 + rotY: 270.0001 + rotZ: 0.0131636644 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265308 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2653': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/xcyJYJw.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 0cfb8b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 13.0648365 + posY: 1.77513647 + posZ: -30.68654 + rotX: 359.933075 + rotY: 270.000122 + rotZ: 0.01316294 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265307 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2653': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/xcyJYJw.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 0cfb8b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 13.0706749 + posY: 1.78472555 + posZ: -30.93377 + rotX: 359.932434 + rotY: 270.0003 + rotZ: 0.0143724158 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265306 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2653': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/xcyJYJw.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 0cfb8b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 12.9644356 + posY: 1.79438758 + posZ: -31.1251831 + rotX: 359.933319 + rotY: 270.000244 + rotZ: 0.0156511 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265305 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2653': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/xcyJYJw.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: f9b09e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 13.2758369 + posY: 1.80374885 + posZ: -30.7661171 + rotX: 359.935577 + rotY: 270.0106 + rotZ: 0.0151481237 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265304 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2653': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/xcyJYJw.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 0cfb8b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 12.8600149 + posY: 1.814014 + posZ: -30.8136883 + rotX: 359.915527 + rotY: 270.032837 + rotZ: -0.0009402493 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265303 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2653': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/xcyJYJw.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 0cfb8b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 13.076457 + posY: 1.8234452 + posZ: -30.7088089 + rotX: 359.9323 + rotY: 270.0005 + rotZ: 0.0136478925 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265302 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2653': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/xcyJYJw.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 0cfb8b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 12.9401321 + posY: 1.83312488 + posZ: -31.0298462 + rotX: 359.933075 + rotY: 270.000244 + rotZ: 0.0142367054 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265301 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2653': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/xcyJYJw.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: df6492 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 12.9649353 + posY: 1.84287691 + posZ: -30.675827 + rotX: 359.933075 + rotY: 270.0005 + rotZ: 0.0137383956 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265300 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2653': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/xcyJYJw.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 0cfb8b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 13.0405359 + posY: 1.852389 + posZ: -30.7488651 + rotX: 359.9195 + rotY: 270.002747 + rotZ: 0.0178249013 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2653': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/xcyJYJw.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 265331 +- 265330 +- 265328 +- 265327 +- 265326 +- 265325 +- 265324 +- 265323 +- 265322 +- 265321 +- 265320 +- 265319 +- 265318 +- 265317 +- 265316 +- 265315 +- 265314 +- 265313 +- 265312 +- 265311 +- 265310 +- 265309 +- 265308 +- 265307 +- 265306 +- 265305 +- 265304 +- 265303 +- 265302 +- 265301 +- 265300 +Description: '' +GMNotes: '' +GUID: 5079c9 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Encounter Deck +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.9277 + posY: 1.77703941 + posZ: 5.757102 + rotX: 359.919739 + rotY: 270.000519 + rotZ: 180.016815 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 3 Bon Voyage 49dfb9/Deck Random Assets d719b5.yaml b/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 3 Bon Voyage 49dfb9/Deck Random Assets d719b5.yaml new file mode 100644 index 000000000..99a35006d --- /dev/null +++ b/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 3 Bon Voyage 49dfb9/Deck Random Assets d719b5.yaml @@ -0,0 +1,172 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 265102 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: https://i.imgur.com/9f0nVfw.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: a9745f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 1.0971477 + posY: 1.54646552 + posZ: -17.4090881 + rotX: 359.9151 + rotY: 270.003784 + rotZ: 0.01506359 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265103 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: https://i.imgur.com/9f0nVfw.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: abc27a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 1.05566609 + posY: 1.68704081 + posZ: -17.5465927 + rotX: 359.934875 + rotY: 270.00354 + rotZ: 0.0106438855 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265100 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: https://i.imgur.com/9f0nVfw.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 5246c6 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 1.007238 + posY: 1.70478535 + posZ: -17.4125462 + rotX: 359.921173 + rotY: 270.017151 + rotZ: 0.0189822167 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: https://i.imgur.com/9f0nVfw.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 265102 +- 265103 +- 265100 +Description: '' +GMNotes: '' +GUID: d719b5 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Random Assets +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -11.0458012 + posY: 1.678998 + posZ: 11.8922033 + 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 Idol Thoughts 2d417b/Custom_Model_Bag 4 Cost of Azure 0fad66.ttslua b/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 4 Cost of Azure 0fad66.ttslua new file mode 100644 index 000000000..54d591927 --- /dev/null +++ b/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 4 Cost of Azure 0fad66.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.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 Idol Thoughts 2d417b/Custom_Model_Bag 4 Cost of Azure 0fad66.yaml b/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 4 Cost of Azure 0fad66.yaml new file mode 100644 index 000000000..81c7ee787 --- /dev/null +++ b/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 4 Cost of Azure 0fad66.yaml @@ -0,0 +1,92 @@ +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 4 Cost of Azure 0fad66/Custom_Tile 00370d.yaml' +- !include 'Custom_Model_Bag 4 Cost of Azure 0fad66/Custom_Tile 14fc99.yaml' +- !include 'Custom_Model_Bag 4 Cost of Azure 0fad66/Card The Beach 1547b3.yaml' +- !include 'Custom_Model_Bag 4 Cost of Azure 0fad66/Card The Promenade 220781.yaml' +- !include 'Custom_Model_Bag 4 Cost of Azure 0fad66/Card Scenario 2332f5.yaml' +- !include 'Custom_Model_Bag 4 Cost of Azure 0fad66/Card The Track 289540.yaml' +- !include 'Custom_Model_Bag 4 Cost of Azure 0fad66/Custom_Tile 2aa861.yaml' +- !include 'Custom_Model_Bag 4 Cost of Azure 0fad66/Custom_Tile 338e54.yaml' +- !include 'Custom_Model_Bag 4 Cost of Azure 0fad66/Custom_Model_Bag Set-aside 376a06.yaml' +- !include 'Custom_Model_Bag 4 Cost of Azure 0fad66/Deck Shuffle Me 42cb1f.yaml' +- !include 'Custom_Model_Bag 4 Cost of Azure 0fad66/Card The Grand Hotel 55a546.yaml' +- !include 'Custom_Model_Bag 4 Cost of Azure 0fad66/Custom_Tile 7234af.yaml' +- !include 'Custom_Model_Bag 4 Cost of Azure 0fad66/Deck Ally Deck 79e739.yaml' +- !include 'Custom_Model_Bag 4 Cost of Azure 0fad66/Deck Act Deck 82546b.yaml' +- !include 'Custom_Model_Bag 4 Cost of Azure 0fad66/Card Casino de Monte-Carlo 9138d3.yaml' +- !include 'Custom_Model_Bag 4 Cost of Azure 0fad66/Custom_Tile 93479b.yaml' +- !include 'Custom_Model_Bag 4 Cost of Azure 0fad66/Deck Cultist Deck a07c49.yaml' +- !include 'Custom_Model_Bag 4 Cost of Azure 0fad66/Custom_Tile a4e80d.yaml' +- !include 'Custom_Model_Bag 4 Cost of Azure 0fad66/Notecard How to Build the Agenda + Deck b16a2e.yaml' +- !include 'Custom_Model_Bag 4 Cost of Azure 0fad66/Custom_Tile b6eab2.yaml' +- !include 'Custom_Model_Bag 4 Cost of Azure 0fad66/Card The Marina bd7dba.yaml' +- !include 'Custom_Model_Bag 4 Cost of Azure 0fad66/Deck Encounter Deck e4f726.yaml' +- !include 'Custom_Model_Bag 4 Cost of Azure 0fad66/Deck Agenda Deck f0b042.yaml' +- !include 'Custom_Model_Bag 4 Cost of Azure 0fad66/Card Monday in Monte-Carlo fa8aeb.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/1011563197573064478/BC2DE3C0A0CFF6787CCDC64E8ECB7A1674CFACCF/ + MaterialIndex: 3 + MeshURL: https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj + NormalURL: '' + TypeIndex: 6 +Description: Idol Thoughts +GMNotes: '' +GUID: 0fad66 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Model_Bag 4 Cost of Azure 0fad66.ttslua' +LuaScriptState: '{"ml":{"00370d":{"lock":false,"pos":{"x":-30.1481,"y":1.6235,"z":-0.0657},"rot":{"x":0.0169,"y":180.0042,"z":0.0799}},"14fc99":{"lock":false,"pos":{"x":-26.9362,"y":1.6184,"z":-2.2878},"rot":{"x":359.9554,"y":224.9979,"z":0.0684}},"1547b3":{"lock":false,"pos":{"x":-36.7728,"y":1.7073,"z":-0.0301},"rot":{"x":359.9201,"y":269.9999,"z":180.0169}},"220781":{"lock":false,"pos":{"x":-23.6842,"y":1.6885,"z":7.57},"rot":{"x":359.9201,"y":270,"z":0.0169}},"2332f5":{"lock":false,"pos":{"x":-3.9559,"y":1.6585,"z":-10.4412},"rot":{"x":359.9197,"y":270,"z":180.0168}},"289540":{"lock":false,"pos":{"x":-30.2238,"y":1.6942,"z":-3.8301},"rot":{"x":359.9201,"y":270.0001,"z":0.0169}},"2aa861":{"lock":false,"pos":{"x":-26.9738,"y":1.6209,"z":6.0714},"rot":{"x":0.0443,"y":44.7376,"z":359.9314}},"338e54":{"lock":false,"pos":{"x":-23.6765,"y":1.6157,"z":3.86},"rot":{"x":359.9831,"y":-0.0024,"z":359.9201}},"376a06":{"lock":false,"pos":{"x":1.6964,"y":1.5583,"z":14.2788},"rot":{"x":359.9551,"y":224.998,"z":0.0687}},"42cb1f":{"lock":false,"pos":{"x":-5.3221,"y":1.7603,"z":0.3787},"rot":{"x":0.0168,"y":180.0363,"z":0.0803}},"55a546":{"lock":false,"pos":{"x":-30.2237,"y":1.6965,"z":3.8599},"rot":{"x":359.9201,"y":270.0001,"z":0.0169}},"7234af":{"lock":false,"pos":{"x":-36.7732,"y":1.6339,"z":3.8826},"rot":{"x":359.9831,"y":-0.0023,"z":359.9201}},"79e739":{"lock":false,"pos":{"x":-12.1716,"y":1.6542,"z":7.7749},"rot":{"x":359.9201,"y":270.0003,"z":0.0169}},"82546b":{"lock":false,"pos":{"x":-2.6885,"y":1.6535,"z":-5.0485},"rot":{"x":0.0168,"y":179.9999,"z":0.0803}},"9138d3":{"lock":false,"pos":{"x":-23.6763,"y":1.6862,"z":-0.03},"rot":{"x":359.9201,"y":270,"z":0.0169}},"93479b":{"lock":false,"pos":{"x":-26.8159,"y":1.6195,"z":1.9599},"rot":{"x":359.9317,"y":315.2073,"z":359.9552}},"a07c49":{"lock":false,"pos":{"x":-12.1147,"y":1.6552,"z":11.1599},"rot":{"x":359.9201,"y":270.0002,"z":0.0169}},"a4e80d":{"lock":false,"pos":{"x":-33.3391,"y":1.6286,"z":2.1094},"rot":{"x":0.0446,"y":45.0004,"z":359.9316}},"b16a2e":{"lock":false,"pos":{"x":0.2326,"y":1.6528,"z":5.5852},"rot":{"x":0.0803,"y":89.9745,"z":359.9831}},"b6eab2":{"lock":false,"pos":{"x":-36.7731,"y":1.6362,"z":11.46},"rot":{"x":359.9831,"y":-0.0025,"z":359.9201}},"bd7dba":{"lock":false,"pos":{"x":-36.7728,"y":1.7067,"z":7.5699},"rot":{"x":359.9201,"y":270,"z":0.0169}},"e4f726":{"lock":false,"pos":{"x":-3.9277,"y":1.777,"z":5.757},"rot":{"x":359.9197,"y":269.9938,"z":180.0168}},"f0b042":{"lock":false,"pos":{"x":-2.7247,"y":1.664,"z":0.3735},"rot":{"x":0.0168,"y":179.9986,"z":0.0803}},"fa8aeb":{"lock":false,"pos":{"x":-7.8007,"y":1.6642,"z":0.3669},"rot":{"x":0.0168,"y":180.0059,"z":0.0801}}}}' +MaterialIndex: -1 +MeshIndex: -1 +Name: Custom_Model_Bag +Nickname: 4 Cost of Azure +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 12.2500019 + posY: 1.4607017 + posZ: -12.6663017 + rotX: 359.9201 + rotY: 270.013123 + rotZ: 0.01685575 + scaleX: 2.21 + scaleY: 0.46 + scaleZ: 2.42 +XmlUI: '' diff --git a/unpacked/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 Idol Thoughts 2d417b/Custom_Model_Bag 4 Cost of Azure 0fad66/Card Casino de Monte-Carlo 9138d3.yaml new file mode 100644 index 000000000..298bbc26e --- /dev/null +++ b/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 4 Cost of Azure 0fad66/Card Casino de Monte-Carlo 9138d3.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 234910 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2349': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1011563111883037718/6149D5265487450C9FFD57A90DCF12EBC2BA20FB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1011563111883037004/AD5227AD57CF1F9855210E6CF7A59D7C8C76BD80/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Riviera. +GMNotes: '' +GUID: 9138d3 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Casino de Monte-Carlo +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -23.6763 + posY: 1.68622 + posZ: -0.0300008319 + rotX: 359.9201 + rotY: 270.0 + rotZ: 0.0168762989 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/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 Idol Thoughts 2d417b/Custom_Model_Bag 4 Cost of Azure 0fad66/Card Monday in Monte-Carlo fa8aeb.yaml new file mode 100644 index 000000000..2d5963ea9 --- /dev/null +++ b/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 4 Cost of Azure 0fad66/Card Monday in Monte-Carlo fa8aeb.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 235404 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2354': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1011563111883037718/6149D5265487450C9FFD57A90DCF12EBC2BA20FB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1011563111883037004/AD5227AD57CF1F9855210E6CF7A59D7C8C76BD80/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Agenda 1 +GMNotes: '' +GUID: fa8aeb +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Monday in Monte-Carlo +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -7.8007 + posY: 1.66420949 + posZ: 0.366899729 + rotX: 0.0168271232 + rotY: 180.00592 + rotZ: 0.08012902 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 4 Cost of Azure 0fad66/Card Scenario 2332f5.yaml b/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 4 Cost of Azure 0fad66/Card Scenario 2332f5.yaml new file mode 100644 index 000000000..2c2be7a5a --- /dev/null +++ b/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 4 Cost of Azure 0fad66/Card Scenario 2332f5.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 235620 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2356': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1011563111883037004/AD5227AD57CF1F9855210E6CF7A59D7C8C76BD80/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1011563111883037004/AD5227AD57CF1F9855210E6CF7A59D7C8C76BD80/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 2332f5 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Scenario +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.955901 + posY: 1.65847087 + posZ: -10.4412022 + rotX: 359.919739 + rotY: 270.000031 + rotZ: 180.01683 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 4 Cost of Azure 0fad66/Card The Beach 1547b3.yaml b/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 4 Cost of Azure 0fad66/Card The Beach 1547b3.yaml new file mode 100644 index 000000000..4e05252e3 --- /dev/null +++ b/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 4 Cost of Azure 0fad66/Card The Beach 1547b3.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 234913 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2349': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1011563111883037718/6149D5265487450C9FFD57A90DCF12EBC2BA20FB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1011563111883037004/AD5227AD57CF1F9855210E6CF7A59D7C8C76BD80/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Riviera. +GMNotes: '' +GUID: 1547b3 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: The Beach +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -36.7728 + posY: 1.70730519 + posZ: -0.0300992839 + 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 Idol Thoughts 2d417b/Custom_Model_Bag 4 Cost of Azure 0fad66/Card The Grand Hotel 55a546.yaml b/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 4 Cost of Azure 0fad66/Card The Grand Hotel 55a546.yaml new file mode 100644 index 000000000..e1c6fc768 --- /dev/null +++ b/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 4 Cost of Azure 0fad66/Card The Grand Hotel 55a546.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 234912 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2349': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1011563111883037718/6149D5265487450C9FFD57A90DCF12EBC2BA20FB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1011563111883037004/AD5227AD57CF1F9855210E6CF7A59D7C8C76BD80/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Riviera. +GMNotes: '' +GUID: 55a546 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: The Grand Hotel +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -30.2237 + posY: 1.69649541 + posZ: 3.8599 + rotX: 359.9201 + rotY: 270.000031 + rotZ: 0.0168763157 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 4 Cost of Azure 0fad66/Card The Marina bd7dba.yaml b/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 4 Cost of Azure 0fad66/Card The Marina bd7dba.yaml new file mode 100644 index 000000000..a0ec3c7d9 --- /dev/null +++ b/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 4 Cost of Azure 0fad66/Card The Marina bd7dba.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 234914 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2349': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1011563111883037718/6149D5265487450C9FFD57A90DCF12EBC2BA20FB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1011563111883037004/AD5227AD57CF1F9855210E6CF7A59D7C8C76BD80/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Riviera. +GMNotes: '' +GUID: bd7dba +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: The Marina +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -36.7728 + posY: 1.70672011 + posZ: 7.5699 + rotX: 359.9201 + rotY: 270.0 + rotZ: 0.0168761685 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 4 Cost of Azure 0fad66/Card The Promenade 220781.yaml b/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 4 Cost of Azure 0fad66/Card The Promenade 220781.yaml new file mode 100644 index 000000000..b99bb5200 --- /dev/null +++ b/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 4 Cost of Azure 0fad66/Card The Promenade 220781.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 234915 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2349': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1011563111883037718/6149D5265487450C9FFD57A90DCF12EBC2BA20FB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1011563111883037004/AD5227AD57CF1F9855210E6CF7A59D7C8C76BD80/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Riviera. +GMNotes: '' +GUID: '220781' +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: The Promenade +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -23.6842 + posY: 1.68846893 + posZ: 7.56999826 + rotX: 359.9201 + rotY: 269.999939 + rotZ: 0.0168760624 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 4 Cost of Azure 0fad66/Card The Track 289540.yaml b/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 4 Cost of Azure 0fad66/Card The Track 289540.yaml new file mode 100644 index 000000000..7c533cddd --- /dev/null +++ b/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 4 Cost of Azure 0fad66/Card The Track 289540.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 234916 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2349': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1011563111883037718/6149D5265487450C9FFD57A90DCF12EBC2BA20FB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1011563111883037004/AD5227AD57CF1F9855210E6CF7A59D7C8C76BD80/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Riviera. +GMNotes: '' +GUID: '289540' +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: The Track +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -30.2238 + posY: 1.69423115 + posZ: -3.83010077 + rotX: 359.9201 + rotY: 270.0 + rotZ: 0.01687608 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/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 Idol Thoughts 2d417b/Custom_Model_Bag 4 Cost of Azure 0fad66/Custom_Model_Bag Set-aside 376a06.yaml new file mode 100644 index 000000000..113355c39 --- /dev/null +++ b/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 4 Cost of Azure 0fad66/Custom_Model_Bag Set-aside 376a06.yaml @@ -0,0 +1,59 @@ +Autoraise: true +ColorDiffuse: + b: 0.02148666 + g: 0.00100758043 + r: 0.02148666 +ContainedObjects: +- !include 'Custom_Model_Bag Set-aside 376a06/Card The Cove 5c2ea6.yaml' +- !include 'Custom_Model_Bag Set-aside 376a06/Card The Solar Ray 965cf3.yaml' +- !include 'Custom_Model_Bag Set-aside 376a06/Card Hulking Horror 105f2d.yaml' +- !include 'Custom_Model_Bag Set-aside 376a06/Card Beach Spawn 1bcffd.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: '' +GMNotes: '' +GUID: 376a06 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +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.5583173 + posZ: 14.2788038 + rotX: 359.955139 + rotY: 224.997955 + rotZ: 0.06867281 + scaleX: 2.0 + scaleY: 2.0 + scaleZ: 2.0 +XmlUI: '' diff --git a/unpacked/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 Idol Thoughts 2d417b/Custom_Model_Bag 4 Cost of Azure 0fad66/Custom_Model_Bag Set-aside 376a06/Card Beach Spawn 1bcffd.yaml new file mode 100644 index 000000000..e32fadb37 --- /dev/null +++ b/unpacked/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 @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 266340 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2663': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1011563111883037004/AD5227AD57CF1F9855210E6CF7A59D7C8C76BD80/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: The Guest of Honor? +GMNotes: '' +GUID: 1bcffd +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Beach Spawn +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -1.43147552 + posY: 4.725015 + posZ: 13.0138121 + rotX: 359.921936 + rotY: 269.994934 + rotZ: 0.0174718667 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/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 Idol Thoughts 2d417b/Custom_Model_Bag 4 Cost of Azure 0fad66/Custom_Model_Bag Set-aside 376a06/Card Hulking Horror 105f2d.yaml new file mode 100644 index 000000000..f09f3e567 --- /dev/null +++ b/unpacked/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 @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 266341 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2663': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1011563111883037004/AD5227AD57CF1F9855210E6CF7A59D7C8C76BD80/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: The Guest of Honor +GMNotes: '' +GUID: 105f2d +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Hulking Horror +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.973005 + posY: 4.72864151 + posZ: 17.9411 + rotX: 359.920135 + rotY: 269.999847 + rotZ: 0.0168786123 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/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 Idol Thoughts 2d417b/Custom_Model_Bag 4 Cost of Azure 0fad66/Custom_Model_Bag Set-aside 376a06/Card The Cove 5c2ea6.yaml new file mode 100644 index 000000000..8ffb24fe0 --- /dev/null +++ b/unpacked/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 @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 266211 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2662': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1011563111883037718/6149D5265487450C9FFD57A90DCF12EBC2BA20FB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1011563111883037004/AD5227AD57CF1F9855210E6CF7A59D7C8C76BD80/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Riviera. +GMNotes: '' +GUID: 5c2ea6 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: The Cove +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 5.56494 + posY: 2.65535069 + posZ: -6.42491055 + rotX: 359.919739 + rotY: 270.000122 + rotZ: 0.01684096 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/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 Idol Thoughts 2d417b/Custom_Model_Bag 4 Cost of Azure 0fad66/Custom_Model_Bag Set-aside 376a06/Card The Solar Ray 965cf3.yaml new file mode 100644 index 000000000..a07dd72a3 --- /dev/null +++ b/unpacked/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 @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 266529 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2665': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/1011563111883037004/AD5227AD57CF1F9855210E6CF7A59D7C8C76BD80/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: Vehicle. +GMNotes: '' +GUID: 965cf3 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: The Solar Ray +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 1.00913584 + posY: 4.815683 + posZ: 14.2148619 + rotX: 356.4812 + rotY: 270.000916 + rotZ: 359.994232 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 4 Cost of Azure 0fad66/Custom_Tile 00370d.yaml b/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 4 Cost of Azure 0fad66/Custom_Tile 00370d.yaml new file mode 100644 index 000000000..1a5a377f0 --- /dev/null +++ b/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 4 Cost of Azure 0fad66/Custom_Tile 00370d.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 00370d +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Tile +Nickname: '' +Snap: false +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.1481 + posY: 1.62352037 + posZ: -0.06569958 + rotX: 0.0168659631 + rotY: 180.004089 + rotZ: 0.0799412057 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 4 Cost of Azure 0fad66/Custom_Tile 14fc99.yaml b/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 4 Cost of Azure 0fad66/Custom_Tile 14fc99.yaml new file mode 100644 index 000000000..c95e2f6ff --- /dev/null +++ b/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 4 Cost of Azure 0fad66/Custom_Tile 14fc99.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 14fc99 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.9362 + posY: 1.61838746 + posZ: -2.28779984 + rotX: 359.955444 + rotY: 224.9979 + rotZ: 0.0684042647 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 4 Cost of Azure 0fad66/Custom_Tile 2aa861.yaml b/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 4 Cost of Azure 0fad66/Custom_Tile 2aa861.yaml new file mode 100644 index 000000000..d2b64cab5 --- /dev/null +++ b/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 4 Cost of Azure 0fad66/Custom_Tile 2aa861.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 2aa861 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.9738 + posY: 1.62090135 + posZ: 6.071401 + rotX: 0.0442519262 + rotY: 44.73761 + rotZ: 359.9314 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 4 Cost of Azure 0fad66/Custom_Tile 338e54.yaml b/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 4 Cost of Azure 0fad66/Custom_Tile 338e54.yaml new file mode 100644 index 000000000..b42c0fc9e --- /dev/null +++ b/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 4 Cost of Azure 0fad66/Custom_Tile 338e54.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 338e54 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.6765 + posY: 1.61565244 + posZ: 3.86000013 + rotX: 359.983124 + rotY: -0.00235590176 + rotZ: 359.920074 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 4 Cost of Azure 0fad66/Custom_Tile 7234af.yaml b/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 4 Cost of Azure 0fad66/Custom_Tile 7234af.yaml new file mode 100644 index 000000000..617112cee --- /dev/null +++ b/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 4 Cost of Azure 0fad66/Custom_Tile 7234af.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 7234af +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.6339215 + posZ: 3.88260055 + rotX: 359.983124 + rotY: -0.00220126333 + rotZ: 359.920074 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 4 Cost of Azure 0fad66/Custom_Tile 93479b.yaml b/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 4 Cost of Azure 0fad66/Custom_Tile 93479b.yaml new file mode 100644 index 000000000..b27190456 --- /dev/null +++ b/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 4 Cost of Azure 0fad66/Custom_Tile 93479b.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 93479b +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.8159 + posY: 1.6194706 + posZ: 1.95989954 + rotX: 359.931732 + rotY: 315.2073 + rotZ: 359.9552 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 4 Cost of Azure 0fad66/Custom_Tile a4e80d.yaml b/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 4 Cost of Azure 0fad66/Custom_Tile a4e80d.yaml new file mode 100644 index 000000000..8d706e27a --- /dev/null +++ b/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 4 Cost of Azure 0fad66/Custom_Tile a4e80d.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: a4e80d +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.3391 + posY: 1.62861073 + posZ: 2.109401 + rotX: 0.044565998 + rotY: 45.00044 + rotZ: 359.9316 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 4 Cost of Azure 0fad66/Custom_Tile b6eab2.yaml b/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 4 Cost of Azure 0fad66/Custom_Tile b6eab2.yaml new file mode 100644 index 000000000..003af0672 --- /dev/null +++ b/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 4 Cost of Azure 0fad66/Custom_Tile b6eab2.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: b6eab2 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.63615263 + posZ: 11.4600019 + rotX: 359.983124 + rotY: -0.00246257335 + rotZ: 359.920074 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 4 Cost of Azure 0fad66/Deck Act Deck 82546b.yaml b/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 4 Cost of Azure 0fad66/Deck Act Deck 82546b.yaml new file mode 100644 index 000000000..e5ec2549a --- /dev/null +++ b/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 4 Cost of Azure 0fad66/Deck Act Deck 82546b.yaml @@ -0,0 +1,215 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 235403 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2354': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1011563111883037718/6149D5265487450C9FFD57A90DCF12EBC2BA20FB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1011563111883037004/AD5227AD57CF1F9855210E6CF7A59D7C8C76BD80/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 3 + GMNotes: '' + GUID: 7802f5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Shallows of Lunacy + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -23.2264042 + posY: 1.59450209 + posZ: 30.2423038 + rotX: 0.0169379674 + rotY: 179.999969 + rotZ: 0.07946534 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 235402 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2354': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1011563111883037718/6149D5265487450C9FFD57A90DCF12EBC2BA20FB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1011563111883037004/AD5227AD57CF1F9855210E6CF7A59D7C8C76BD80/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 3 + GMNotes: '' + GUID: 0622bf + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Crashing the Party + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -23.0887833 + posY: 1.75545359 + posZ: 30.2254047 + rotX: 0.01630579 + rotY: 179.999954 + rotZ: 0.07636442 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 235401 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2354': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1011563111883037718/6149D5265487450C9FFD57A90DCF12EBC2BA20FB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1011563111883037004/AD5227AD57CF1F9855210E6CF7A59D7C8C76BD80/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 2 + GMNotes: '' + GUID: '501342' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Out on the Town + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -23.2015076 + posY: 1.77293313 + posZ: 30.39173 + rotX: 0.01627587 + rotY: 179.999908 + rotZ: 0.07973651 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 235400 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2354': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1011563111883037718/6149D5265487450C9FFD57A90DCF12EBC2BA20FB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1011563111883037004/AD5227AD57CF1F9855210E6CF7A59D7C8C76BD80/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 1 + GMNotes: '' + GUID: d58fbf + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Working Vacation + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -23.04446 + posY: 1.75897217 + posZ: 30.1086082 + rotX: 0.0177192856 + rotY: 179.999985 + rotZ: 0.07970648 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2354': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1011563111883037718/6149D5265487450C9FFD57A90DCF12EBC2BA20FB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1011563111883037004/AD5227AD57CF1F9855210E6CF7A59D7C8C76BD80/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 235403 +- 235402 +- 235401 +- 235400 +Description: '' +GMNotes: '' +GUID: 82546b +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Act Deck +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.68849969 + posY: 1.65349448 + posZ: -5.04850054 + rotX: 0.0168352779 + rotY: 179.999939 + rotZ: 0.08025768 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 4 Cost of Azure 0fad66/Deck Agenda Deck f0b042.yaml b/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 4 Cost of Azure 0fad66/Deck Agenda Deck f0b042.yaml new file mode 100644 index 000000000..f79b41f79 --- /dev/null +++ b/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 4 Cost of Azure 0fad66/Deck Agenda Deck f0b042.yaml @@ -0,0 +1,129 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 235409 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2354': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1011563111883037718/6149D5265487450C9FFD57A90DCF12EBC2BA20FB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1011563111883037004/AD5227AD57CF1F9855210E6CF7A59D7C8C76BD80/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 4 + GMNotes: '' + GUID: d75d5c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Fish out of Water + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -28.0633984 + posY: 1.602585 + posZ: 34.8067551 + rotX: 0.0169795956 + rotY: 179.999847 + rotZ: 0.0791724846 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 235408 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2354': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1011563111883037718/6149D5265487450C9FFD57A90DCF12EBC2BA20FB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1011563111883037004/AD5227AD57CF1F9855210E6CF7A59D7C8C76BD80/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 3 + GMNotes: '' + GUID: 66864c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Weak's End + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -27.7488556 + posY: 1.7632978 + posZ: 34.7227135 + rotX: 0.0165991951 + rotY: 179.999985 + rotZ: 0.07654087 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2354': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1011563111883037718/6149D5265487450C9FFD57A90DCF12EBC2BA20FB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1011563111883037004/AD5227AD57CF1F9855210E6CF7A59D7C8C76BD80/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 235409 +- 235408 +Description: '' +GMNotes: '' +GUID: f0b042 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Agenda Deck +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.7247 + posY: 1.66397738 + posZ: 0.373500824 + rotX: 0.01683695 + rotY: 179.998566 + rotZ: 0.0802574754 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 4 Cost of Azure 0fad66/Deck Ally Deck 79e739.yaml b/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 4 Cost of Azure 0fad66/Deck Ally Deck 79e739.yaml new file mode 100644 index 000000000..c464045bf --- /dev/null +++ b/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 4 Cost of Azure 0fad66/Deck Ally Deck 79e739.yaml @@ -0,0 +1,387 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 235328 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2353': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/1011563111883037004/AD5227AD57CF1F9855210E6CF7A59D7C8C76BD80/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: The Cunning Adventurer + GMNotes: '' + GUID: de6e73 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Alexi Lawrence + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -6.730842 + posY: 1.55546141 + posZ: -24.3272839 + rotX: 359.920044 + rotY: 269.999939 + rotZ: 0.0179331619 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 235327 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2353': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/1011563111883037004/AD5227AD57CF1F9855210E6CF7A59D7C8C76BD80/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: The Tennis Star + GMNotes: '' + GUID: 6b7fb1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Monty Harrington + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -6.730152 + posY: 1.55613446 + posZ: -21.9386044 + rotX: 359.920319 + rotY: 269.999817 + rotZ: 0.016032679 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 235326 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2353': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/1011563111883037004/AD5227AD57CF1F9855210E6CF7A59D7C8C76BD80/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: The Cocquette + GMNotes: '' + GUID: 82abfd + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Yvette Andrews + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -6.729455 + posY: 1.5568372 + posZ: -19.54994 + rotX: 359.9203 + rotY: 270.0 + rotZ: 0.0160793737 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 235324 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2353': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/1011563111883037004/AD5227AD57CF1F9855210E6CF7A59D7C8C76BD80/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: The Young Couple + GMNotes: '' + GUID: fd53bf + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Parkers + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -6.72875643 + posY: 1.55758655 + posZ: -17.1612549 + rotX: 359.9199 + rotY: 269.9999 + rotZ: 0.0191008151 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 235322 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2353': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/1011563111883037004/AD5227AD57CF1F9855210E6CF7A59D7C8C76BD80/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: The Artist + GMNotes: '' + GUID: 140dc5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ellen Winkle + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -6.72806168 + posY: 1.55826747 + posZ: -14.7725611 + rotX: 359.920074 + rotY: 269.9999 + rotZ: 0.01774382 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 235321 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2353': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/1011563111883037004/AD5227AD57CF1F9855210E6CF7A59D7C8C76BD80/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: The Tycoon's Wife + GMNotes: '' + GUID: 24fbab + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Claudia Morgan + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -6.727368 + posY: 1.558975 + posZ: -12.3838882 + rotX: 359.92 + rotY: 269.9999 + rotZ: 0.018070763 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 235325 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2353': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/1011563111883037004/AD5227AD57CF1F9855210E6CF7A59D7C8C76BD80/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: The Racer + GMNotes: '' + GUID: '796567' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Lorenzo Alfieri + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -6.72666931 + posY: 1.55964065 + posZ: -9.995203 + rotX: 359.9203 + rotY: 269.999756 + rotZ: 0.0157636646 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 235323 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2353': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/1011563111883037004/AD5227AD57CF1F9855210E6CF7A59D7C8C76BD80/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: The Heiress + GMNotes: '' + GUID: 7fedff + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Helen Hargrove + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -12.1295967 + posY: 1.83366811 + posZ: 7.5509243 + rotX: 359.9342 + rotY: 269.999969 + rotZ: 0.0125619061 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2353': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/1011563111883037004/AD5227AD57CF1F9855210E6CF7A59D7C8C76BD80/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 235328 +- 235327 +- 235326 +- 235324 +- 235322 +- 235321 +- 235325 +- 235323 +Description: '' +GMNotes: '' +GUID: 79e739 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Ally Deck +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -12.1716 + posY: 1.65423512 + posZ: 7.774899 + rotX: 359.9201 + rotY: 270.000153 + rotZ: 0.0168748274 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 4 Cost of Azure 0fad66/Deck Cultist Deck a07c49.yaml b/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 4 Cost of Azure 0fad66/Deck Cultist Deck a07c49.yaml new file mode 100644 index 000000000..c0abf796e --- /dev/null +++ b/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 4 Cost of Azure 0fad66/Deck Cultist Deck a07c49.yaml @@ -0,0 +1,387 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 235137 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2351': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1011563111883037004/AD5227AD57CF1F9855210E6CF7A59D7C8C76BD80/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: The Cunning Adventurer + GMNotes: '' + GUID: 73d706 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Alexi Lawrence + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.27997875 + posY: 1.55061972 + posZ: -24.4215641 + rotX: 359.9201 + rotY: 270.000122 + rotZ: 0.017723158 + 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/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1011563111883037004/AD5227AD57CF1F9855210E6CF7A59D7C8C76BD80/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: The Tennis Star + GMNotes: '' + GUID: cb3517 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Monty Harrington + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.30617356 + posY: 1.55142081 + posZ: -21.8441639 + rotX: 359.920044 + rotY: 270.000153 + rotZ: 0.01805868 + 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/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1011563111883037004/AD5227AD57CF1F9855210E6CF7A59D7C8C76BD80/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: The Cocquette + GMNotes: '' + GUID: ea9829 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Yvette Andrews + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.351898 + posY: 1.55218935 + posZ: -19.502655 + rotX: 359.919922 + rotY: 270.0 + rotZ: 0.0190632157 + 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/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1011563111883037004/AD5227AD57CF1F9855210E6CF7A59D7C8C76BD80/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: The Young Couple + GMNotes: '' + GUID: 883de7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Parkers + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.321869 + posY: 1.552869 + posZ: -17.1253643 + rotX: 359.919739 + rotY: 270.000061 + rotZ: 0.0204655956 + 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/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1011563111883037004/AD5227AD57CF1F9855210E6CF7A59D7C8C76BD80/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: The Artist + GMNotes: '' + GUID: 985d36 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ellen Winkle + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.32825541 + posY: 1.55352986 + posZ: -14.7100048 + rotX: 359.920227 + rotY: 270.000122 + rotZ: 0.0166679882 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 235130 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2351': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1011563111883037004/AD5227AD57CF1F9855210E6CF7A59D7C8C76BD80/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: The Tycoon's Wife + GMNotes: '' + GUID: '739921' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Claudia Morgan + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.4021883 + posY: 1.55424774 + posZ: -12.3429031 + rotX: 359.920959 + rotY: 270.000122 + rotZ: 0.0113135157 + 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/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1011563111883037004/AD5227AD57CF1F9855210E6CF7A59D7C8C76BD80/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: The Racer + GMNotes: '' + GUID: d8a72c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Lorenzo Alfieri + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.33532643 + posY: 1.55492806 + posZ: -9.982005 + rotX: 359.9202 + rotY: 270.000122 + rotZ: 0.016504487 + 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/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1011563111883037004/AD5227AD57CF1F9855210E6CF7A59D7C8C76BD80/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: The Heiress + GMNotes: '' + GUID: 9a7420 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Helen Hargrove + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.35013628 + posY: 1.71621144 + posZ: -9.67743 + rotX: 359.918457 + rotY: 270.0001 + rotZ: 0.0134595372 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2351': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1011563111883037004/AD5227AD57CF1F9855210E6CF7A59D7C8C76BD80/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 235137 +- 235136 +- 235135 +- 235133 +- 235131 +- 235130 +- 235134 +- 235132 +Description: '' +GMNotes: '' +GUID: a07c49 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Cultist Deck +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -12.1146965 + posY: 1.65515256 + posZ: 11.1599007 + rotX: 359.9201 + rotY: 270.0002 + rotZ: 0.0168750081 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 4 Cost of Azure 0fad66/Deck Encounter Deck e4f726.yaml b/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 4 Cost of Azure 0fad66/Deck Encounter Deck e4f726.yaml new file mode 100644 index 000000000..31ff616a2 --- /dev/null +++ b/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 4 Cost of Azure 0fad66/Deck Encounter Deck e4f726.yaml @@ -0,0 +1,1376 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 235151 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2351': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1011563111883037004/AD5227AD57CF1F9855210E6CF7A59D7C8C76BD80/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Treachery + GMNotes: '' + GUID: 84ce07 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Friendship's Fee + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.92523932 + posY: 1.971002 + posZ: 5.758605 + rotX: 358.138336 + rotY: 270.023376 + rotZ: 178.909546 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 235152 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2351': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1011563111883037004/AD5227AD57CF1F9855210E6CF7A59D7C8C76BD80/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Treachery + GMNotes: '' + GUID: f5ce58 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Siren's Call + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -18.9407635 + posY: 1.71681535 + posZ: -32.44492 + rotX: 5.32608175 + rotY: 270.166718 + rotZ: 0.0185484868 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 235147 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2351': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1011563111883037004/AD5227AD57CF1F9855210E6CF7A59D7C8C76BD80/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Treachery + GMNotes: '' + GUID: 7350e7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Bounty of the Hunt + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -15.8627214 + posY: 1.64150453 + posZ: -27.6431236 + rotX: 357.1927 + rotY: 269.99176 + rotZ: 0.017411517 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 235145 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2351': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1011563111883037004/AD5227AD57CF1F9855210E6CF7A59D7C8C76BD80/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Peril. + GMNotes: '' + GUID: ebca5f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Sun Beats Down + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -18.9335175 + posY: 1.5721432 + posZ: -25.2780113 + rotX: 359.922241 + rotY: 269.997864 + rotZ: 0.0148069765 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 235143 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2351': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1011563111883037004/AD5227AD57CF1F9855210E6CF7A59D7C8C76BD80/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: 5ffe35 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Wrath of Cod + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -18.9328766 + posY: 1.57285118 + posZ: -22.8900223 + rotX: 359.92218 + rotY: 269.996 + rotZ: 0.0153451161 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 235146 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2351': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1011563111883037004/AD5227AD57CF1F9855210E6CF7A59D7C8C76BD80/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Treachery + GMNotes: '' + GUID: '606572' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Bottoms Up + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -21.6714611 + posY: 1.66340613 + posZ: -10.9783058 + rotX: 2.97246122 + rotY: 270.005859 + rotZ: 0.0171033926 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 235149 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2351': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1011563111883037004/AD5227AD57CF1F9855210E6CF7A59D7C8C76BD80/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Treachery + GMNotes: '' + GUID: a5b611 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: La Dolce Vita + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -15.7031555 + posY: 1.57047176 + posZ: -15.7678347 + rotX: 359.920135 + rotY: 269.9985 + rotZ: 0.0168798361 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 235152 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2351': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1011563111883037004/AD5227AD57CF1F9855210E6CF7A59D7C8C76BD80/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Treachery + GMNotes: '' + GUID: b251d0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Siren's Call + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -15.7636909 + posY: 1.56535971 + posZ: -33.414444 + rotX: 359.92 + rotY: 270.3285 + rotZ: 0.0164175648 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 235149 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2351': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1011563111883037004/AD5227AD57CF1F9855210E6CF7A59D7C8C76BD80/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Treachery + GMNotes: '' + GUID: '821817' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: La Dolce Vita + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -18.9308147 + posY: 1.57499266 + posZ: -15.7171078 + rotX: 359.92038 + rotY: 269.9968 + rotZ: 0.0154737672 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 235146 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2351': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1011563111883037004/AD5227AD57CF1F9855210E6CF7A59D7C8C76BD80/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Treachery + GMNotes: '' + GUID: 4c97c1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Bottoms Up + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -15.6108 + posY: 1.5717361 + posZ: -11.0352144 + rotX: 359.920135 + rotY: 269.999542 + rotZ: 0.0168761257 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 235148 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2351': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1011563111883037004/AD5227AD57CF1F9855210E6CF7A59D7C8C76BD80/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Treachery + GMNotes: '' + GUID: 77d92d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: A Sea of Faces + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -21.4609413 + posY: 1.74771178 + posZ: -13.6782408 + rotX: 2.934376 + rotY: 269.891876 + rotZ: 356.163177 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 235146 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2351': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1011563111883037004/AD5227AD57CF1F9855210E6CF7A59D7C8C76BD80/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Treachery + GMNotes: '' + GUID: d75271 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Bottoms Up + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -18.9294167 + posY: 1.576383 + posZ: -10.9367447 + rotX: 359.924042 + rotY: 269.996277 + rotZ: 0.0153030772 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 235144 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2351': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1011563111883037004/AD5227AD57CF1F9855210E6CF7A59D7C8C76BD80/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Treachery + GMNotes: '' + GUID: c79f95 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Need for Speed + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -15.13978 + posY: 1.57174909 + posZ: -8.762453 + rotX: 359.920135 + rotY: 269.9991 + rotZ: 0.016877966 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 235151 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2351': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1011563111883037004/AD5227AD57CF1F9855210E6CF7A59D7C8C76BD80/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Treachery + GMNotes: '' + GUID: 2f9796 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Friendship's Fee + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -18.9347687 + posY: 1.57080793 + posZ: -30.0584736 + rotX: 359.920135 + rotY: 270.0015 + rotZ: 0.0189051069 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 235143 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2351': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1011563111883037004/AD5227AD57CF1F9855210E6CF7A59D7C8C76BD80/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: 1c3d8e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Wrath of Cod + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -15.4214268 + posY: 1.56789291 + posZ: -23.20969 + rotX: 359.9206 + rotY: 269.998657 + rotZ: 0.0168422516 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 235149 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2351': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1011563111883037004/AD5227AD57CF1F9855210E6CF7A59D7C8C76BD80/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Treachery + GMNotes: '' + GUID: 94de2c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: La Dolce Vita + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -21.7059956 + posY: 1.660917 + posZ: -15.8526506 + rotX: 2.94002676 + rotY: 270.005249 + rotZ: 0.0127704777 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 235138 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2351': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1011563111883037004/AD5227AD57CF1F9855210E6CF7A59D7C8C76BD80/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 3591fe + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Entrancing Dancer + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -18.93204 + posY: 1.57358038 + posZ: -20.497757 + rotX: 359.920135 + rotY: 269.999268 + rotZ: 0.01687753 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 235148 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2351': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1011563111883037004/AD5227AD57CF1F9855210E6CF7A59D7C8C76BD80/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Treachery + GMNotes: '' + GUID: bb3353 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: A Sea of Faces + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -15.8878126 + posY: 1.64642668 + posZ: -13.3392 + rotX: 357.163452 + rotY: 269.9915 + rotZ: 0.0174498875 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 235142 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2351': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1011563111883037004/AD5227AD57CF1F9855210E6CF7A59D7C8C76BD80/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Criminal. + GMNotes: '' + GUID: 0c4fc8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Black Market Trader + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -21.600605 + posY: 1.66696393 + posZ: -5.84286165 + rotX: 3.056426 + rotY: 270.004242 + rotZ: 0.0163536053 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 235145 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2351': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1011563111883037004/AD5227AD57CF1F9855210E6CF7A59D7C8C76BD80/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Peril. + GMNotes: '' + GUID: 410d61 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Sun Beats Down + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -16.0021362 + posY: 1.71437192 + posZ: -25.0383663 + rotX: 359.911163 + rotY: 270.00116 + rotZ: 0.0250315275 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 235150 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2351': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1011563111883037004/AD5227AD57CF1F9855210E6CF7A59D7C8C76BD80/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Treachery + GMNotes: '' + GUID: 59e70b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Suspicion + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -18.93111 + posY: 1.57427263 + posZ: -18.10761 + rotX: 359.917328 + rotY: 270.0042 + rotZ: 0.0156290978 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 235142 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2351': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1011563111883037004/AD5227AD57CF1F9855210E6CF7A59D7C8C76BD80/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Criminal. + GMNotes: '' + GUID: c40f95 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Black Market Trader + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -15.3300171 + posY: 1.57291162 + posZ: -5.71564436 + rotX: 359.920135 + rotY: 269.999268 + rotZ: 0.0168793444 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 235139 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2351': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1011563111883037004/AD5227AD57CF1F9855210E6CF7A59D7C8C76BD80/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Criminal. + GMNotes: '' + GUID: 2f4404 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dock Mobster + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -15.4124565 + posY: 1.57388389 + posZ: -2.80390859 + rotX: 359.920135 + rotY: 269.9995 + rotZ: 0.0168778822 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 235142 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2351': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1011563111883037004/AD5227AD57CF1F9855210E6CF7A59D7C8C76BD80/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Criminal. + GMNotes: '' + GUID: a83148 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Black Market Trader + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -18.9278831 + posY: 1.57778811 + posZ: -6.15647745 + rotX: 359.921356 + rotY: 269.998749 + rotZ: 0.0164277032 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 235139 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2351': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1011563111883037004/AD5227AD57CF1F9855210E6CF7A59D7C8C76BD80/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Criminal. + GMNotes: '' + GUID: df3bd4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dock Mobster + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -18.9389572 + posY: 1.57867038 + posZ: -3.244612 + rotX: 359.920135 + rotY: 269.999573 + rotZ: 0.0168779027 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 235145 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2351': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1011563111883037004/AD5227AD57CF1F9855210E6CF7A59D7C8C76BD80/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Peril. + GMNotes: '' + GUID: 8b77ff + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Sun Beats Down + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -21.6526985 + posY: 1.66015112 + posZ: -24.4113159 + rotX: 2.99777412 + rotY: 270.0082 + rotZ: 0.01685158 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 235148 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2351': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1011563111883037004/AD5227AD57CF1F9855210E6CF7A59D7C8C76BD80/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Treachery + GMNotes: '' + GUID: d6e67f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: A Sea of Faces + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -18.9297867 + posY: 1.57567251 + posZ: -13.32739 + rotX: 359.9199 + rotY: 270.0007 + rotZ: 0.0186675638 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 235138 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2351': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1011563111883037004/AD5227AD57CF1F9855210E6CF7A59D7C8C76BD80/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: c27200 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Entrancing Dancer + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -15.3038635 + posY: 1.5684588 + posZ: -20.713213 + rotX: 359.920135 + rotY: 269.999329 + rotZ: 0.0168779735 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 235144 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2351': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1011563111883037004/AD5227AD57CF1F9855210E6CF7A59D7C8C76BD80/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Treachery + GMNotes: '' + GUID: 0d840e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Need for Speed + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -18.9285831 + posY: 1.57709467 + posZ: -8.546743 + rotX: 359.920135 + rotY: 269.9991 + rotZ: 0.0168794729 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 235147 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2351': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1011563111883037004/AD5227AD57CF1F9855210E6CF7A59D7C8C76BD80/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Treachery + GMNotes: '' + GUID: c1fe55 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Bounty of the Hunt + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -18.9339752 + posY: 1.57146955 + posZ: -27.6680069 + rotX: 359.917816 + rotY: 270.001221 + rotZ: 0.0162735488 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 235150 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2351': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1011563111883037004/AD5227AD57CF1F9855210E6CF7A59D7C8C76BD80/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Treachery + GMNotes: '' + GUID: f482fe + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Suspicion + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -16.38793 + posY: 1.66043913 + posZ: -18.2046452 + rotX: 356.626221 + rotY: 269.977051 + rotZ: 0.01607336 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2351': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1011563111883037004/AD5227AD57CF1F9855210E6CF7A59D7C8C76BD80/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 235151 +- 235152 +- 235147 +- 235145 +- 235143 +- 235146 +- 235149 +- 235152 +- 235149 +- 235146 +- 235148 +- 235146 +- 235144 +- 235151 +- 235143 +- 235149 +- 235138 +- 235148 +- 235142 +- 235145 +- 235150 +- 235142 +- 235139 +- 235142 +- 235139 +- 235145 +- 235148 +- 235138 +- 235144 +- 235147 +- 235150 +Description: '' +GMNotes: '' +GUID: e4f726 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Encounter Deck +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.9277 + posY: 1.77703941 + posZ: 5.757002 + rotX: 359.919739 + rotY: 269.9938 + rotZ: 180.01683 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 4 Cost of Azure 0fad66/Deck Shuffle Me 42cb1f.yaml b/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 4 Cost of Azure 0fad66/Deck Shuffle Me 42cb1f.yaml new file mode 100644 index 000000000..e3cdd58c6 --- /dev/null +++ b/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 4 Cost of Azure 0fad66/Deck Shuffle Me 42cb1f.yaml @@ -0,0 +1,172 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 235407 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2354': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1011563111883037718/6149D5265487450C9FFD57A90DCF12EBC2BA20FB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1011563111883037004/AD5227AD57CF1F9855210E6CF7A59D7C8C76BD80/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 2 + GMNotes: '' + GUID: 34b3e6 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Beachside Paradise + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -0.804455161 + posY: 1.84726465 + posZ: -2.16277146 + rotX: 0.0244224053 + rotY: 179.9895 + rotZ: 0.0228365064 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 235406 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2354': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1011563111883037718/6149D5265487450C9FFD57A90DCF12EBC2BA20FB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1011563111883037004/AD5227AD57CF1F9855210E6CF7A59D7C8C76BD80/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 2 + GMNotes: '' + GUID: 0c7fc6 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: A Day at the Races + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -0.4885615 + posY: 1.70106447 + posZ: -2.15400767 + rotX: 0.0144065879 + rotY: 179.9993 + rotZ: 0.0279724821 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 235405 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2354': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1011563111883037718/6149D5265487450C9FFD57A90DCF12EBC2BA20FB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1011563111883037004/AD5227AD57CF1F9855210E6CF7A59D7C8C76BD80/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 2 + GMNotes: '' + GUID: c5bbe0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: One-Day Sale + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.384837925 + posY: 1.65198016 + posZ: -2.43098474 + rotX: 0.0163835585 + rotY: 179.999 + rotZ: 0.08398761 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2354': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1011563111883037718/6149D5265487450C9FFD57A90DCF12EBC2BA20FB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1011563111883037004/AD5227AD57CF1F9855210E6CF7A59D7C8C76BD80/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 235407 +- 235406 +- 235405 +Description: '' +GMNotes: '' +GUID: 42cb1f +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Shuffle Me +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -5.3221 + posY: 1.76028132 + posZ: 0.378700078 + rotX: 0.016792303 + rotY: 180.036316 + rotZ: 0.08025928 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/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 Idol Thoughts 2d417b/Custom_Model_Bag 4 Cost of Azure 0fad66/Notecard How to Build the Agenda Deck b16a2e.yaml new file mode 100644 index 000000000..b4bd76338 --- /dev/null +++ b/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Model_Bag 4 Cost of Azure 0fad66/Notecard How to Build the Agenda Deck b16a2e.yaml @@ -0,0 +1,36 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +Description: '1. Shuffle Deck 2 (3x Agenda 2a cards) + + 2. Place Agenda card 1a on top of Deck 2. + + 3.Place the combined decks on top of Deck 1 (Agenda Deck)' +GMNotes: '' +GUID: b16a2e +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Notecard +Nickname: How to Build the Agenda Deck +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 0.232601121 + posY: 1.652777 + posZ: 5.585201 + rotX: 0.08025361 + rotY: 89.97445 + rotZ: 359.983124 + scaleX: 0.5 + scaleY: 1.0 + scaleZ: 0.5 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Tile Bread and Circuses 82e1ed.ttslua b/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Tile Bread and Circuses 82e1ed.ttslua new file mode 100644 index 000000000..d47035472 --- /dev/null +++ b/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Tile Bread and Circuses 82e1ed.ttslua @@ -0,0 +1,21 @@ +name = 'Bread and Circuses' + +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 Idol Thoughts 2d417b/Custom_Tile Bread and Circuses 82e1ed.yaml b/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Tile Bread and Circuses 82e1ed.yaml new file mode 100644 index 000000000..354aedb38 --- /dev/null +++ b/unpacked/Custom_Model_Bag Idol Thoughts 2d417b/Custom_Tile Bread and Circuses 82e1ed.yaml @@ -0,0 +1,42 @@ +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 +GMNotes: '' +GUID: 82e1ed +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Tile Bread and Circuses 82e1ed.ttslua' +LuaScriptState: '' +Name: Custom_Tile +Nickname: Bread and Circuses +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 32.45269 + posY: 1.43240237 + posZ: -13.1239805 + rotX: 359.919739 + rotY: 269.999969 + rotZ: 0.0168380085 + scaleX: 2.2 + scaleY: 1.0 + scaleZ: 2.2 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Leaked Starter Deck Cards 42cd6e.yaml b/unpacked/Custom_Model_Bag Leaked Starter Deck Cards 42cd6e.yaml new file mode 100644 index 000000000..1851301dc --- /dev/null +++ b/unpacked/Custom_Model_Bag Leaked Starter Deck Cards 42cd6e.yaml @@ -0,0 +1,55 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +ContainedObjects: +- !include 'Custom_Model_Bag Leaked Starter Deck Cards 42cd6e/Bag Investigators 1643c9.yaml' +- !include 'Custom_Model_Bag Leaked Starter Deck Cards 42cd6e/Custom_Model_Bag Leaked + Cards 471dc2.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/1016065725028510450/7BC76948EE00979A428636EF40D46AE8634760A6/ + MaterialIndex: 3 + MeshURL: https://pastebin.com/raw/166Kdeqb + NormalURL: '' + TypeIndex: 6 +Description: '' +GMNotes: '' +GUID: 42cd6e +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +MeshIndex: -1 +Name: Custom_Model_Bag +Nickname: Leaked Starter Deck Cards +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 29.9965878 + posY: 3.04989839 + posZ: -26.97731 + rotX: 0.0700541 + rotY: 134.999878 + rotZ: 0.0459768921 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Leaked Starter Deck Cards 42cd6e/Bag Investigators 1643c9.yaml b/unpacked/Custom_Model_Bag Leaked Starter Deck Cards 42cd6e/Bag Investigators 1643c9.yaml new file mode 100644 index 000000000..294c9bc82 --- /dev/null +++ b/unpacked/Custom_Model_Bag Leaked Starter Deck Cards 42cd6e/Bag Investigators 1643c9.yaml @@ -0,0 +1,40 @@ +Autoraise: true +ColorDiffuse: + b: 0.0 + g: 0.0 + r: 0.0 +ContainedObjects: +- !include 'Bag Investigators 1643c9/Bag Stella Clark 8391dd.yaml' +- !include 'Bag Investigators 1643c9/Bag Jacqueline Fine 1f3a75.yaml' +- !include 'Bag Investigators 1643c9/Bag Winifred Habbamock 4b1852.yaml' +- !include 'Bag Investigators 1643c9/Bag Harvey Walters fbe784.yaml' +- !include 'Bag Investigators 1643c9/Bag Nathaniel Cho 263cb2.yaml' +Description: '' +GMNotes: '' +GUID: 1643c9 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +MeshIndex: -1 +Name: Bag +Nickname: Investigators +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 35.6959152 + posY: 2.250029 + posZ: -62.3832054 + rotX: -0.0035419 + rotY: -0.00400733529 + rotZ: 359.983246 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Leaked Starter Deck Cards 42cd6e/Bag Investigators 1643c9/Bag Harvey Walters fbe784.yaml b/unpacked/Custom_Model_Bag Leaked Starter Deck Cards 42cd6e/Bag Investigators 1643c9/Bag Harvey Walters fbe784.yaml new file mode 100644 index 000000000..e95b51e69 --- /dev/null +++ b/unpacked/Custom_Model_Bag Leaked Starter Deck Cards 42cd6e/Bag Investigators 1643c9/Bag Harvey Walters fbe784.yaml @@ -0,0 +1,38 @@ +Autoraise: true +ColorDiffuse: + b: 0.0 + g: 0.592301965 + r: 0.8170731 +ContainedObjects: +- !include 'Bag Harvey Walters fbe784/Card Vault of Knowledge 41f205.yaml' +- !include 'Bag Harvey Walters fbe784/Card Harvey Walters 8070c3.yaml' +- !include 'Bag Harvey Walters fbe784/Card Harvey Walters 777a2e.yaml' +Description: '' +GMNotes: '' +GUID: fbe784 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +MeshIndex: -1 +Name: Bag +Nickname: Harvey Walters +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 16.1766243 + posY: 3.34965849 + posZ: -15.4173517 + rotX: 0.677697 + rotY: 359.976685 + rotZ: 0.284093946 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Leaked Starter Deck Cards 42cd6e/Bag Investigators 1643c9/Bag Harvey Walters fbe784/Card Harvey Walters 777a2e.yaml b/unpacked/Custom_Model_Bag Leaked Starter Deck Cards 42cd6e/Bag Investigators 1643c9/Bag Harvey Walters fbe784/Card Harvey Walters 777a2e.yaml new file mode 100644 index 000000000..9bd8c8e73 --- /dev/null +++ b/unpacked/Custom_Model_Bag Leaked Starter Deck Cards 42cd6e/Bag Investigators 1643c9/Bag Harvey Walters fbe784/Card Harvey Walters 777a2e.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 274217 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2742': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1011562618093846975/4726098952C64103F2C211D202FFDD40D9D988BB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1011562618093847742/6DF29C75A96B1D04C068D3AACAE25F9D2363BE9A/ + NumHeight: 3 + NumWidth: 7 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 777a2e +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Harvey Walters +SidewaysCard: false +Snap: false +Sticky: true +Tooltip: true +Transform: + posX: 13.3251505 + posY: 3.57555 + posZ: -11.9431171 + rotX: 0.1662483 + rotY: 270.0505 + rotZ: 1.27988338 + scaleX: 0.6 + scaleY: 1.0 + scaleZ: 0.6 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Leaked Starter Deck Cards 42cd6e/Bag Investigators 1643c9/Bag Harvey Walters fbe784/Card Harvey Walters 8070c3.yaml b/unpacked/Custom_Model_Bag Leaked Starter Deck Cards 42cd6e/Bag Investigators 1643c9/Bag Harvey Walters fbe784/Card Harvey Walters 8070c3.yaml new file mode 100644 index 000000000..bd19b3924 --- /dev/null +++ b/unpacked/Custom_Model_Bag Leaked Starter Deck Cards 42cd6e/Bag Investigators 1643c9/Bag Harvey Walters fbe784/Card Harvey Walters 8070c3.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 234901 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2349': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1016065907887642390/2CC878F26205C80F4B8D69DE3A4433804A31AABF/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065907887640918/BF3A963B745EF2047ABDFC524AEE4EA0145A04F4/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: The Professor +GMNotes: '' +GUID: 8070c3 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Harvey Walters +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 1.44742835 + posY: 3.61295462 + posZ: -20.4123783 + rotX: 359.088928 + rotY: 180.006973 + rotZ: 359.3679 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Leaked Starter Deck Cards 42cd6e/Bag Investigators 1643c9/Bag Harvey Walters fbe784/Card Vault of Knowledge 41f205.yaml b/unpacked/Custom_Model_Bag Leaked Starter Deck Cards 42cd6e/Bag Investigators 1643c9/Bag Harvey Walters fbe784/Card Vault of Knowledge 41f205.yaml new file mode 100644 index 000000000..172ad2966 --- /dev/null +++ b/unpacked/Custom_Model_Bag Leaked Starter Deck Cards 42cd6e/Bag Investigators 1643c9/Bag Harvey Walters fbe784/Card Vault of Knowledge 41f205.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Talent. +GMNotes: '' +GUID: 41f205 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Vault of Knowledge +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 1.92680085 + posY: 3.598932 + posZ: -20.4378166 + rotX: 358.010742 + rotY: 270.033752 + rotZ: 358.719 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Leaked Starter Deck Cards 42cd6e/Bag Investigators 1643c9/Bag Jacqueline Fine 1f3a75.yaml b/unpacked/Custom_Model_Bag Leaked Starter Deck Cards 42cd6e/Bag Investigators 1643c9/Bag Jacqueline Fine 1f3a75.yaml new file mode 100644 index 000000000..1ae198f5f --- /dev/null +++ b/unpacked/Custom_Model_Bag Leaked Starter Deck Cards 42cd6e/Bag Investigators 1643c9/Bag Jacqueline Fine 1f3a75.yaml @@ -0,0 +1,37 @@ +Autoraise: true +ColorDiffuse: + b: 0.8344947 + g: 0.1148519 + r: 0.438557118 +ContainedObjects: +- !include 'Bag Jacqueline Fine 1f3a75/Card Jacqueline Fine 7f7566.yaml' +- !include 'Bag Jacqueline Fine 1f3a75/Card Jacqueline Fine 55e98a.yaml' +Description: '' +GMNotes: '' +GUID: 1f3a75 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +MeshIndex: -1 +Name: Bag +Nickname: Jacqueline Fine +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 15.770257 + posY: 3.346415 + posZ: -16.0036144 + rotX: 359.723938 + rotY: 359.980133 + rotZ: 0.769524038 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Leaked Starter Deck Cards 42cd6e/Bag Investigators 1643c9/Bag Jacqueline Fine 1f3a75/Card Jacqueline Fine 55e98a.yaml b/unpacked/Custom_Model_Bag Leaked Starter Deck Cards 42cd6e/Bag Investigators 1643c9/Bag Jacqueline Fine 1f3a75/Card Jacqueline Fine 55e98a.yaml new file mode 100644 index 000000000..86e50e529 --- /dev/null +++ b/unpacked/Custom_Model_Bag Leaked Starter Deck Cards 42cd6e/Bag Investigators 1643c9/Bag Jacqueline Fine 1f3a75/Card Jacqueline Fine 55e98a.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 274219 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2742': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1011562618093846975/4726098952C64103F2C211D202FFDD40D9D988BB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1011562618093847742/6DF29C75A96B1D04C068D3AACAE25F9D2363BE9A/ + NumHeight: 3 + NumWidth: 7 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 55e98a +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Jacqueline Fine +SidewaysCard: false +Snap: false +Sticky: true +Tooltip: true +Transform: + posX: 12.2207708 + posY: 3.60371017 + posZ: -26.8325672 + rotX: 0.433602929 + rotY: 270.020355 + rotZ: 1.32410538 + scaleX: 0.6 + scaleY: 1.0 + scaleZ: 0.6 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Leaked Starter Deck Cards 42cd6e/Bag Investigators 1643c9/Bag Jacqueline Fine 1f3a75/Card Jacqueline Fine 7f7566.yaml b/unpacked/Custom_Model_Bag Leaked Starter Deck Cards 42cd6e/Bag Investigators 1643c9/Bag Jacqueline Fine 1f3a75/Card Jacqueline Fine 7f7566.yaml new file mode 100644 index 000000000..8ede9c240 --- /dev/null +++ b/unpacked/Custom_Model_Bag Leaked Starter Deck Cards 42cd6e/Bag Investigators 1643c9/Bag Jacqueline Fine 1f3a75/Card Jacqueline Fine 7f7566.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 234903 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2349': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1016065907887642390/2CC878F26205C80F4B8D69DE3A4433804A31AABF/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065907887640918/BF3A963B745EF2047ABDFC524AEE4EA0145A04F4/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: The Psychic +GMNotes: '' +GUID: 7f7566 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Jacqueline Fine +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 1.8535521 + posY: 3.632112 + posZ: -2.67439842 + rotX: 359.8768 + rotY: 179.998978 + rotZ: 0.7595841 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Leaked Starter Deck Cards 42cd6e/Bag Investigators 1643c9/Bag Nathaniel Cho 263cb2.yaml b/unpacked/Custom_Model_Bag Leaked Starter Deck Cards 42cd6e/Bag Investigators 1643c9/Bag Nathaniel Cho 263cb2.yaml new file mode 100644 index 000000000..f205fcd29 --- /dev/null +++ b/unpacked/Custom_Model_Bag Leaked Starter Deck Cards 42cd6e/Bag Investigators 1643c9/Bag Nathaniel Cho 263cb2.yaml @@ -0,0 +1,37 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 0.107806347 + r: 0.0 +ContainedObjects: +- !include 'Bag Nathaniel Cho 263cb2/Card Nathaniel Cho 150b36.yaml' +- !include 'Bag Nathaniel Cho 263cb2/Card Nathaniel Cho 6506d9.yaml' +Description: '' +GMNotes: '' +GUID: 263cb2 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +MeshIndex: -1 +Name: Bag +Nickname: Nathaniel Cho +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 16.3274841 + posY: 3.34977245 + posZ: -15.3665295 + rotX: 0.725681 + rotY: 359.989258 + rotZ: 0.0220145173 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Leaked Starter Deck Cards 42cd6e/Bag Investigators 1643c9/Bag Nathaniel Cho 263cb2/Card Nathaniel Cho 150b36.yaml b/unpacked/Custom_Model_Bag Leaked Starter Deck Cards 42cd6e/Bag Investigators 1643c9/Bag Nathaniel Cho 263cb2/Card Nathaniel Cho 150b36.yaml new file mode 100644 index 000000000..3acda4d39 --- /dev/null +++ b/unpacked/Custom_Model_Bag Leaked Starter Deck Cards 42cd6e/Bag Investigators 1643c9/Bag Nathaniel Cho 263cb2/Card Nathaniel Cho 150b36.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 234900 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2349': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1016065907887642390/2CC878F26205C80F4B8D69DE3A4433804A31AABF/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065907887640918/BF3A963B745EF2047ABDFC524AEE4EA0145A04F4/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: The Boxer +GMNotes: '' +GUID: 150b36 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Nathaniel Cho +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 1.90787554 + posY: 3.57842088 + posZ: -6.68759727 + rotX: 357.385223 + rotY: 179.992722 + rotZ: 0.451693982 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Leaked Starter Deck Cards 42cd6e/Bag Investigators 1643c9/Bag Nathaniel Cho 263cb2/Card Nathaniel Cho 6506d9.yaml b/unpacked/Custom_Model_Bag Leaked Starter Deck Cards 42cd6e/Bag Investigators 1643c9/Bag Nathaniel Cho 263cb2/Card Nathaniel Cho 6506d9.yaml new file mode 100644 index 000000000..f1aa5576c --- /dev/null +++ b/unpacked/Custom_Model_Bag Leaked Starter Deck Cards 42cd6e/Bag Investigators 1643c9/Bag Nathaniel Cho 263cb2/Card Nathaniel Cho 6506d9.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 274216 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2742': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1011562618093846975/4726098952C64103F2C211D202FFDD40D9D988BB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1011562618093847742/6DF29C75A96B1D04C068D3AACAE25F9D2363BE9A/ + NumHeight: 3 + NumWidth: 7 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 6506d9 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Nathaniel Cho +SidewaysCard: false +Snap: false +Sticky: true +Tooltip: true +Transform: + posX: 15.9721346 + posY: 3.59723759 + posZ: -5.065343 + rotX: 0.191715345 + rotY: 269.961456 + rotZ: 358.752258 + scaleX: 0.6 + scaleY: 1.0 + scaleZ: 0.6 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Leaked Starter Deck Cards 42cd6e/Bag Investigators 1643c9/Bag Stella Clark 8391dd.yaml b/unpacked/Custom_Model_Bag Leaked Starter Deck Cards 42cd6e/Bag Investigators 1643c9/Bag Stella Clark 8391dd.yaml new file mode 100644 index 000000000..c00bc90ce --- /dev/null +++ b/unpacked/Custom_Model_Bag Leaked Starter Deck Cards 42cd6e/Bag Investigators 1643c9/Bag Stella Clark 8391dd.yaml @@ -0,0 +1,37 @@ +Autoraise: true +ColorDiffuse: + b: 0.0 + g: 0.0 + r: 1.0 +ContainedObjects: +- !include 'Bag Stella Clark 8391dd/Card Stella Clark a95b8c.yaml' +- !include 'Bag Stella Clark 8391dd/Card Stella Clark 2b0bee.yaml' +Description: '' +GMNotes: '' +GUID: 8391dd +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +MeshIndex: -1 +Name: Bag +Nickname: Stella Clark +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 16.4419365 + posY: 3.35330033 + posZ: -16.0096779 + rotX: 359.548248 + rotY: 359.9929 + rotZ: 359.77298 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Leaked Starter Deck Cards 42cd6e/Bag Investigators 1643c9/Bag Stella Clark 8391dd/Card Stella Clark 2b0bee.yaml b/unpacked/Custom_Model_Bag Leaked Starter Deck Cards 42cd6e/Bag Investigators 1643c9/Bag Stella Clark 8391dd/Card Stella Clark 2b0bee.yaml new file mode 100644 index 000000000..81370ee74 --- /dev/null +++ b/unpacked/Custom_Model_Bag Leaked Starter Deck Cards 42cd6e/Bag Investigators 1643c9/Bag Stella Clark 8391dd/Card Stella Clark 2b0bee.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 274220 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2742': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1011562618093846975/4726098952C64103F2C211D202FFDD40D9D988BB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1011562618093847742/6DF29C75A96B1D04C068D3AACAE25F9D2363BE9A/ + NumHeight: 3 + NumWidth: 7 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 2b0bee +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Stella Clark +SidewaysCard: false +Snap: false +Sticky: true +Tooltip: true +Transform: + posX: 11.5566235 + posY: 3.581716 + posZ: -34.4906158 + rotX: 359.753082 + rotY: 269.965546 + rotZ: 1.28412378 + scaleX: 0.6 + scaleY: 1.0 + scaleZ: 0.6 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Leaked Starter Deck Cards 42cd6e/Bag Investigators 1643c9/Bag Stella Clark 8391dd/Card Stella Clark a95b8c.yaml b/unpacked/Custom_Model_Bag Leaked Starter Deck Cards 42cd6e/Bag Investigators 1643c9/Bag Stella Clark 8391dd/Card Stella Clark a95b8c.yaml new file mode 100644 index 000000000..04ecd87cf --- /dev/null +++ b/unpacked/Custom_Model_Bag Leaked Starter Deck Cards 42cd6e/Bag Investigators 1643c9/Bag Stella Clark 8391dd/Card Stella Clark a95b8c.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 234904 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2349': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1016065907887642390/2CC878F26205C80F4B8D69DE3A4433804A31AABF/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065907887640918/BF3A963B745EF2047ABDFC524AEE4EA0145A04F4/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: The Letter Carrier +GMNotes: '' +GUID: a95b8c +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Stella Clark +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 2.23294187 + posY: 3.574477 + posZ: -11.4834023 + rotX: 359.7074 + rotY: 179.9897 + rotZ: 3.77467132 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Leaked Starter Deck Cards 42cd6e/Bag Investigators 1643c9/Bag Winifred Habbamock 4b1852.yaml b/unpacked/Custom_Model_Bag Leaked Starter Deck Cards 42cd6e/Bag Investigators 1643c9/Bag Winifred Habbamock 4b1852.yaml new file mode 100644 index 000000000..d28cb3931 --- /dev/null +++ b/unpacked/Custom_Model_Bag Leaked Starter Deck Cards 42cd6e/Bag Investigators 1643c9/Bag Winifred Habbamock 4b1852.yaml @@ -0,0 +1,39 @@ +Autoraise: true +ColorDiffuse: + b: 0.0516108423 + g: 0.6916376 + r: 0.00843459647 +ContainedObjects: +- !include 'Bag Winifred Habbamock 4b1852/Card Arrogance 23a3ed.yaml' +- !include 'Bag Winifred Habbamock 4b1852/Card Anything You Can Do, Better 485e4c.yaml' +- !include 'Bag Winifred Habbamock 4b1852/Card Winifred Habbamock 8e8dcf.yaml' +- !include 'Bag Winifred Habbamock 4b1852/Card Winifred Habbamock 15105c.yaml' +Description: '' +GMNotes: '' +GUID: 4b1852 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +MeshIndex: -1 +Name: Bag +Nickname: Winifred Habbamock +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 15.5527773 + posY: 3.32266521 + posZ: -16.4485111 + rotX: 359.035522 + rotY: 0.001684583 + rotZ: 1.16504824 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Leaked Starter Deck Cards 42cd6e/Bag Investigators 1643c9/Bag Winifred Habbamock 4b1852/Card Anything You Can Do, Better 485e4c.yaml b/unpacked/Custom_Model_Bag Leaked Starter Deck Cards 42cd6e/Bag Investigators 1643c9/Bag Winifred Habbamock 4b1852/Card Anything You Can Do, Better 485e4c.yaml new file mode 100644 index 000000000..a7a7af4e4 --- /dev/null +++ b/unpacked/Custom_Model_Bag Leaked Starter Deck Cards 42cd6e/Bag Investigators 1643c9/Bag Winifred Habbamock 4b1852/Card Anything You Can Do, Better 485e4c.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 235106 +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 + UniqueBack: false +Description: Innate. Developed. +GMNotes: '' +GUID: 485e4c +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Anything You Can Do, Better +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 1.003746 + posY: 3.61047363 + posZ: -16.1802158 + rotX: 1.111282 + rotY: 269.980652 + rotZ: 358.6173 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Leaked Starter Deck Cards 42cd6e/Bag Investigators 1643c9/Bag Winifred Habbamock 4b1852/Card Arrogance 23a3ed.yaml b/unpacked/Custom_Model_Bag Leaked Starter Deck Cards 42cd6e/Bag Investigators 1643c9/Bag Winifred Habbamock 4b1852/Card Arrogance 23a3ed.yaml new file mode 100644 index 000000000..9fd0c09c9 --- /dev/null +++ b/unpacked/Custom_Model_Bag Leaked Starter Deck Cards 42cd6e/Bag Investigators 1643c9/Bag Winifred Habbamock 4b1852/Card Arrogance 23a3ed.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Weakness +GMNotes: '' +GUID: 23a3ed +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Arrogance +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 0.892530441 + posY: 3.58015013 + posZ: -15.7734518 + rotX: 0.9831593 + rotY: 269.9378 + rotZ: 356.583679 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Leaked Starter Deck Cards 42cd6e/Bag Investigators 1643c9/Bag Winifred Habbamock 4b1852/Card Winifred Habbamock 15105c.yaml b/unpacked/Custom_Model_Bag Leaked Starter Deck Cards 42cd6e/Bag Investigators 1643c9/Bag Winifred Habbamock 4b1852/Card Winifred Habbamock 15105c.yaml new file mode 100644 index 000000000..862f8aea4 --- /dev/null +++ b/unpacked/Custom_Model_Bag Leaked Starter Deck Cards 42cd6e/Bag Investigators 1643c9/Bag Winifred Habbamock 4b1852/Card Winifred Habbamock 15105c.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 274218 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2742': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1011562618093846975/4726098952C64103F2C211D202FFDD40D9D988BB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1011562618093847742/6DF29C75A96B1D04C068D3AACAE25F9D2363BE9A/ + NumHeight: 3 + NumWidth: 7 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 15105c +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Winifred Habbamock +SidewaysCard: false +Snap: false +Sticky: true +Tooltip: true +Transform: + posX: 12.064229 + posY: 3.577742 + posZ: -19.2220936 + rotX: 0.185643584 + rotY: 270.035431 + rotZ: 1.22384489 + scaleX: 0.6 + scaleY: 1.0 + scaleZ: 0.6 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Leaked Starter Deck Cards 42cd6e/Bag Investigators 1643c9/Bag Winifred Habbamock 4b1852/Card Winifred Habbamock 8e8dcf.yaml b/unpacked/Custom_Model_Bag Leaked Starter Deck Cards 42cd6e/Bag Investigators 1643c9/Bag Winifred Habbamock 4b1852/Card Winifred Habbamock 8e8dcf.yaml new file mode 100644 index 000000000..74b4eb26a --- /dev/null +++ b/unpacked/Custom_Model_Bag Leaked Starter Deck Cards 42cd6e/Bag Investigators 1643c9/Bag Winifred Habbamock 4b1852/Card Winifred Habbamock 8e8dcf.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 234902 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2349': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1016065907887642390/2CC878F26205C80F4B8D69DE3A4433804A31AABF/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065907887640918/BF3A963B745EF2047ABDFC524AEE4EA0145A04F4/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: The Aviatrix +GMNotes: '' +GUID: 8e8dcf +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Winifred Habbamock +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 1.24743414 + posY: 3.58150935 + posZ: -15.5137777 + rotX: 357.386566 + rotY: 180.002609 + rotZ: 0.198642761 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Leaked Starter Deck Cards 42cd6e/Custom_Model_Bag Leaked Cards 471dc2.yaml b/unpacked/Custom_Model_Bag Leaked Starter Deck Cards 42cd6e/Custom_Model_Bag Leaked Cards 471dc2.yaml new file mode 100644 index 000000000..3e6b85703 --- /dev/null +++ b/unpacked/Custom_Model_Bag Leaked Starter Deck Cards 42cd6e/Custom_Model_Bag Leaked Cards 471dc2.yaml @@ -0,0 +1,84 @@ +Autoraise: true +ColorDiffuse: + b: 0.02148666 + g: 0.00100758043 + r: 0.02148666 +ContainedObjects: +- !include 'Custom_Model_Bag Leaked Cards 471dc2/Card Old Keyring 682e84.yaml' +- !include 'Custom_Model_Bag Leaked Cards 471dc2/Card .18 Derringer (2) a4e44a.yaml' +- !include 'Custom_Model_Bag Leaked Cards 471dc2/Card Grit Your Teeth e173d0.yaml' +- !include 'Custom_Model_Bag Leaked Cards 471dc2/Card Granny Orne (3) c490a4.yaml' +- !include 'Custom_Model_Bag Leaked Cards 471dc2/Card Quick Learner (4) a177db.yaml' +- !include 'Custom_Model_Bag Leaked Cards 471dc2/Card Grimm''s Fairy Tales 5c25fa.yaml' +- !include 'Custom_Model_Bag Leaked Cards 471dc2/Card Clairvoyance 9f8a0a.yaml' +- !include 'Custom_Model_Bag Leaked Cards 471dc2/Card Robes of Endless Night (2) c4c4b1.yaml' +- !include 'Custom_Model_Bag Leaked Cards 471dc2/Card Ineffable Truth (3) 648590.yaml' +- !include 'Custom_Model_Bag Leaked Cards 471dc2/Card Azure Flame 396e1c.yaml' +- !include 'Custom_Model_Bag Leaked Cards 471dc2/Card Recharge (4) da25d8.yaml' +- !include 'Custom_Model_Bag Leaked Cards 471dc2/Card Crystal Pendulum 4ff44f.yaml' +- !include 'Custom_Model_Bag Leaked Cards 471dc2/Card Scrying Mirror dac4f8.yaml' +- !include 'Custom_Model_Bag Leaked Cards 471dc2/Card Manual Dexterity (2) 098da7.yaml' +- !include 'Custom_Model_Bag Leaked Cards 471dc2/Card Mauser C96 085581.yaml' +- !include 'Custom_Model_Bag Leaked Cards 471dc2/Card Nimble f6fdb0.yaml' +- !include 'Custom_Model_Bag Leaked Cards 471dc2/Card Copycat (3) cb4730.yaml' +- !include 'Custom_Model_Bag Leaked Cards 471dc2/Card Beretta M1918 (4) 705e27.yaml' +- !include 'Custom_Model_Bag Leaked Cards 471dc2/Card Arcane Enlightenment 8e915d.yaml' +- !include 'Custom_Model_Bag Leaked Cards 471dc2/Card Cryptic Writings (2) 380c3c.yaml' +- !include 'Custom_Model_Bag Leaked Cards 471dc2/Card The Necronomicon (5) eaafcf.yaml' +- !include 'Custom_Model_Bag Leaked Cards 471dc2/Card Celaeno Fragments eac7ac.yaml' +- !include 'Custom_Model_Bag Leaked Cards 471dc2/Card Mind Over Matter (2) 731411.yaml' +- !include 'Custom_Model_Bag Leaked Cards 471dc2/Card Counterpunch c021fd.yaml' +- !include 'Custom_Model_Bag Leaked Cards 471dc2/Card Boxing Gloves 5ec2d2.yaml' +- !include 'Custom_Model_Bag Leaked Cards 471dc2/Card Clean Them Out 99765a.yaml' +- !include 'Custom_Model_Bag Leaked Cards 471dc2/Card Lesson Learned (2) c5aa89.yaml' +- !include 'Custom_Model_Bag Leaked Cards 471dc2/Card One-Two Punch 8c5d4c.yaml' +- !include 'Custom_Model_Bag Leaked Cards 471dc2/Card Get over here! (2) e55fe0.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: '' +GMNotes: '' +GUID: 471dc2 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +MeshIndex: -1 +Name: Custom_Model_Bag +Nickname: Leaked 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: 34.5183525 + posY: 2.27310371 + posZ: -55.69125 + rotX: 0.0206173453 + rotY: 89.9999542 + rotZ: -0.00435433164 + scaleX: 2.0 + scaleY: 2.0 + scaleZ: 2.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Leaked Starter Deck Cards 42cd6e/Custom_Model_Bag Leaked Cards 471dc2/Card .18 Derringer (2) a4e44a.yaml b/unpacked/Custom_Model_Bag Leaked Starter Deck Cards 42cd6e/Custom_Model_Bag Leaked Cards 471dc2/Card .18 Derringer (2) a4e44a.yaml new file mode 100644 index 000000000..ea32664cb --- /dev/null +++ b/unpacked/Custom_Model_Bag Leaked Starter Deck Cards 42cd6e/Custom_Model_Bag Leaked Cards 471dc2/Card .18 Derringer (2) a4e44a.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Item. Weapon. Firearm. Illicit. +GMNotes: '' +GUID: a4e44a +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: .18 Derringer (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 8.19178 + posY: 3.592455 + posZ: -15.5313683 + rotX: 359.92 + rotY: 270.000671 + rotZ: 0.0169386379 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Leaked Starter Deck Cards 42cd6e/Custom_Model_Bag Leaked Cards 471dc2/Card Arcane Enlightenment 8e915d.yaml b/unpacked/Custom_Model_Bag Leaked Starter Deck Cards 42cd6e/Custom_Model_Bag Leaked Cards 471dc2/Card Arcane Enlightenment 8e915d.yaml new file mode 100644 index 000000000..c1cb1ef9c --- /dev/null +++ b/unpacked/Custom_Model_Bag Leaked Starter Deck Cards 42cd6e/Custom_Model_Bag Leaked Cards 471dc2/Card Arcane Enlightenment 8e915d.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Ritual. +GMNotes: '' +GUID: 8e915d +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Arcane Enlightenment +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 8.933294 + posY: 3.592037 + posZ: -13.6850758 + rotX: 359.919464 + rotY: 270.0008 + rotZ: 0.0166523773 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Leaked Starter Deck Cards 42cd6e/Custom_Model_Bag Leaked Cards 471dc2/Card Azure Flame 396e1c.yaml b/unpacked/Custom_Model_Bag Leaked Starter Deck Cards 42cd6e/Custom_Model_Bag Leaked Cards 471dc2/Card Azure Flame 396e1c.yaml new file mode 100644 index 000000000..ffd94e5ee --- /dev/null +++ b/unpacked/Custom_Model_Bag Leaked Starter Deck Cards 42cd6e/Custom_Model_Bag Leaked Cards 471dc2/Card Azure Flame 396e1c.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Spell. +GMNotes: '' +GUID: 396e1c +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Azure Flame +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 9.382173 + posY: 3.59110451 + posZ: -15.0778046 + rotX: 359.9198 + rotY: 270.000519 + rotZ: 0.01666326 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Leaked Starter Deck Cards 42cd6e/Custom_Model_Bag Leaked Cards 471dc2/Card Beretta M1918 (4) 705e27.yaml b/unpacked/Custom_Model_Bag Leaked Starter Deck Cards 42cd6e/Custom_Model_Bag Leaked Cards 471dc2/Card Beretta M1918 (4) 705e27.yaml new file mode 100644 index 000000000..267a2ad63 --- /dev/null +++ b/unpacked/Custom_Model_Bag Leaked Starter Deck Cards 42cd6e/Custom_Model_Bag Leaked Cards 471dc2/Card Beretta M1918 (4) 705e27.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Item. Weapon. Firearm. Illicit. +GMNotes: '' +GUID: 705e27 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Beretta M1918 (4) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 8.420779 + posY: 3.592365 + posZ: -14.7771368 + rotX: 359.920166 + rotY: 270.000854 + rotZ: 0.0162748843 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Leaked Starter Deck Cards 42cd6e/Custom_Model_Bag Leaked Cards 471dc2/Card Boxing Gloves 5ec2d2.yaml b/unpacked/Custom_Model_Bag Leaked Starter Deck Cards 42cd6e/Custom_Model_Bag Leaked Cards 471dc2/Card Boxing Gloves 5ec2d2.yaml new file mode 100644 index 000000000..eab187f91 --- /dev/null +++ b/unpacked/Custom_Model_Bag Leaked Starter Deck Cards 42cd6e/Custom_Model_Bag Leaked Cards 471dc2/Card Boxing Gloves 5ec2d2.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Item. Weapon. +GMNotes: '' +GUID: 5ec2d2 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Boxing Gloves +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 9.519619 + posY: 3.59087181 + posZ: -15.2681875 + rotX: 359.918243 + rotY: 270.001648 + rotZ: 0.018129779 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Leaked Starter Deck Cards 42cd6e/Custom_Model_Bag Leaked Cards 471dc2/Card Celaeno Fragments eac7ac.yaml b/unpacked/Custom_Model_Bag Leaked Starter Deck Cards 42cd6e/Custom_Model_Bag Leaked Cards 471dc2/Card Celaeno Fragments eac7ac.yaml new file mode 100644 index 000000000..bd0e2989c --- /dev/null +++ b/unpacked/Custom_Model_Bag Leaked Starter Deck Cards 42cd6e/Custom_Model_Bag Leaked Cards 471dc2/Card Celaeno Fragments eac7ac.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Book of Books +GMNotes: '' +GUID: eac7ac +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Celaeno Fragments +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 8.877313 + posY: 3.59179449 + posZ: -15.3993254 + rotX: 359.857666 + rotY: 270.0202 + rotZ: 0.05424618 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Leaked Starter Deck Cards 42cd6e/Custom_Model_Bag Leaked Cards 471dc2/Card Clairvoyance 9f8a0a.yaml b/unpacked/Custom_Model_Bag Leaked Starter Deck Cards 42cd6e/Custom_Model_Bag Leaked Cards 471dc2/Card Clairvoyance 9f8a0a.yaml new file mode 100644 index 000000000..73a0a114d --- /dev/null +++ b/unpacked/Custom_Model_Bag Leaked Starter Deck Cards 42cd6e/Custom_Model_Bag Leaked Cards 471dc2/Card Clairvoyance 9f8a0a.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Spell. +GMNotes: '' +GUID: 9f8a0a +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Clairvoyance +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 8.125459 + posY: 3.59267521 + posZ: -14.8896875 + rotX: 359.921844 + rotY: 270.001068 + rotZ: 0.015566648 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Leaked Starter Deck Cards 42cd6e/Custom_Model_Bag Leaked Cards 471dc2/Card Clean Them Out 99765a.yaml b/unpacked/Custom_Model_Bag Leaked Starter Deck Cards 42cd6e/Custom_Model_Bag Leaked Cards 471dc2/Card Clean Them Out 99765a.yaml new file mode 100644 index 000000000..467e2543f --- /dev/null +++ b/unpacked/Custom_Model_Bag Leaked Starter Deck Cards 42cd6e/Custom_Model_Bag Leaked Cards 471dc2/Card Clean Them Out 99765a.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Spirit. Tactic. +GMNotes: '' +GUID: 99765a +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Clean Them Out +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 9.111132 + posY: 3.59120512 + posZ: -15.9004965 + rotX: 359.9092 + rotY: 269.9975 + rotZ: 0.01598825 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Leaked Starter Deck Cards 42cd6e/Custom_Model_Bag Leaked Cards 471dc2/Card Copycat (3) cb4730.yaml b/unpacked/Custom_Model_Bag Leaked Starter Deck Cards 42cd6e/Custom_Model_Bag Leaked Cards 471dc2/Card Copycat (3) cb4730.yaml new file mode 100644 index 000000000..a66a1c204 --- /dev/null +++ b/unpacked/Custom_Model_Bag Leaked Starter Deck Cards 42cd6e/Custom_Model_Bag Leaked Cards 471dc2/Card Copycat (3) cb4730.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Gambit. +GMNotes: '' +GUID: cb4730 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Copycat (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 9.267787 + posY: 3.59135485 + posZ: -14.6264305 + rotX: 359.9203 + rotY: 270.000122 + rotZ: 0.01600217 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Leaked Starter Deck Cards 42cd6e/Custom_Model_Bag Leaked Cards 471dc2/Card Counterpunch c021fd.yaml b/unpacked/Custom_Model_Bag Leaked Starter Deck Cards 42cd6e/Custom_Model_Bag Leaked Cards 471dc2/Card Counterpunch c021fd.yaml new file mode 100644 index 000000000..91894c983 --- /dev/null +++ b/unpacked/Custom_Model_Bag Leaked Starter Deck Cards 42cd6e/Custom_Model_Bag Leaked Cards 471dc2/Card Counterpunch c021fd.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Spirit. Tactic. +GMNotes: '' +GUID: c021fd +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Counterpunch +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 7.8709836 + posY: 3.592793 + posZ: -15.9807892 + rotX: 359.921234 + rotY: 269.9956 + rotZ: 0.01819611 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Leaked Starter Deck Cards 42cd6e/Custom_Model_Bag Leaked Cards 471dc2/Card Cryptic Writings (2) 380c3c.yaml b/unpacked/Custom_Model_Bag Leaked Starter Deck Cards 42cd6e/Custom_Model_Bag Leaked Cards 471dc2/Card Cryptic Writings (2) 380c3c.yaml new file mode 100644 index 000000000..5f1ab1183 --- /dev/null +++ b/unpacked/Custom_Model_Bag Leaked Starter Deck Cards 42cd6e/Custom_Model_Bag Leaked Cards 471dc2/Card Cryptic Writings (2) 380c3c.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Insight. +GMNotes: '' +GUID: 380c3c +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Cryptic Writings (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 8.553401 + posY: 3.59266567 + posZ: -14.9215622 + rotX: 359.897369 + rotY: 269.9923 + rotZ: 0.04730728 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Leaked Starter Deck Cards 42cd6e/Custom_Model_Bag Leaked Cards 471dc2/Card Crystal Pendulum 4ff44f.yaml b/unpacked/Custom_Model_Bag Leaked Starter Deck Cards 42cd6e/Custom_Model_Bag Leaked Cards 471dc2/Card Crystal Pendulum 4ff44f.yaml new file mode 100644 index 000000000..31f022aa8 --- /dev/null +++ b/unpacked/Custom_Model_Bag Leaked Starter Deck Cards 42cd6e/Custom_Model_Bag Leaked Cards 471dc2/Card Crystal Pendulum 4ff44f.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Item. Charm. +GMNotes: '' +GUID: 4ff44f +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Crystal Pendulum +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 8.832499 + posY: 3.592083 + posZ: -14.1567726 + rotX: 359.916351 + rotY: 270.003448 + rotZ: 0.0209428724 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Leaked Starter Deck Cards 42cd6e/Custom_Model_Bag Leaked Cards 471dc2/Card Get over here! (2) e55fe0.yaml b/unpacked/Custom_Model_Bag Leaked Starter Deck Cards 42cd6e/Custom_Model_Bag Leaked Cards 471dc2/Card Get over here! (2) e55fe0.yaml new file mode 100644 index 000000000..fcdb40f26 --- /dev/null +++ b/unpacked/Custom_Model_Bag Leaked Starter Deck Cards 42cd6e/Custom_Model_Bag Leaked Cards 471dc2/Card Get over here! (2) e55fe0.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Spirit. Tactic. +GMNotes: '' +GUID: e55fe0 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '"Get over here!" (2)' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 8.449073 + posY: 3.59239149 + posZ: -15.4362192 + rotX: 359.891266 + rotY: 269.993774 + rotZ: 0.0298084468 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Leaked Starter Deck Cards 42cd6e/Custom_Model_Bag Leaked Cards 471dc2/Card Granny Orne (3) c490a4.yaml b/unpacked/Custom_Model_Bag Leaked Starter Deck Cards 42cd6e/Custom_Model_Bag Leaked Cards 471dc2/Card Granny Orne (3) c490a4.yaml new file mode 100644 index 000000000..1b47a6d41 --- /dev/null +++ b/unpacked/Custom_Model_Bag Leaked Starter Deck Cards 42cd6e/Custom_Model_Bag Leaked Cards 471dc2/Card Granny Orne (3) c490a4.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Tough Old Bird +GMNotes: '' +GUID: c490a4 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Granny Orne (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 8.755645 + posY: 3.59203362 + posZ: -14.4437933 + rotX: 359.921265 + rotY: 270.000122 + rotZ: 0.0160213467 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Leaked Starter Deck Cards 42cd6e/Custom_Model_Bag Leaked Cards 471dc2/Card Grimm's Fairy Tales 5c25fa.yaml b/unpacked/Custom_Model_Bag Leaked Starter Deck Cards 42cd6e/Custom_Model_Bag Leaked Cards 471dc2/Card Grimm's Fairy Tales 5c25fa.yaml new file mode 100644 index 000000000..2dd173d13 --- /dev/null +++ b/unpacked/Custom_Model_Bag Leaked Starter Deck Cards 42cd6e/Custom_Model_Bag Leaked Cards 471dc2/Card Grimm's Fairy Tales 5c25fa.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Item. Tome. +GMNotes: '' +GUID: 5c25fa +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Grimm's Fairy Tales +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 8.283423 + posY: 3.59251237 + posZ: -14.913805 + rotX: 359.919678 + rotY: 270.0008 + rotZ: 0.01690222 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Leaked Starter Deck Cards 42cd6e/Custom_Model_Bag Leaked Cards 471dc2/Card Grit Your Teeth e173d0.yaml b/unpacked/Custom_Model_Bag Leaked Starter Deck Cards 42cd6e/Custom_Model_Bag Leaked Cards 471dc2/Card Grit Your Teeth e173d0.yaml new file mode 100644 index 000000000..af2dcca0d --- /dev/null +++ b/unpacked/Custom_Model_Bag Leaked Starter Deck Cards 42cd6e/Custom_Model_Bag Leaked Cards 471dc2/Card Grit Your Teeth e173d0.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Spirit. +GMNotes: '' +GUID: e173d0 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Grit Your Teeth +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 9.058409 + posY: 3.59142256 + posZ: -15.3828564 + rotX: 359.921875 + rotY: 270.000732 + rotZ: 0.0164485537 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Leaked Starter Deck Cards 42cd6e/Custom_Model_Bag Leaked Cards 471dc2/Card Ineffable Truth (3) 648590.yaml b/unpacked/Custom_Model_Bag Leaked Starter Deck Cards 42cd6e/Custom_Model_Bag Leaked Cards 471dc2/Card Ineffable Truth (3) 648590.yaml new file mode 100644 index 000000000..b636045db --- /dev/null +++ b/unpacked/Custom_Model_Bag Leaked Starter Deck Cards 42cd6e/Custom_Model_Bag Leaked Cards 471dc2/Card Ineffable Truth (3) 648590.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Spell. +GMNotes: '' +GUID: '648590' +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Ineffable Truth (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 8.825479 + posY: 3.59179878 + posZ: -15.0465736 + rotX: 359.922058 + rotY: 270.0003 + rotZ: 0.0162263419 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Leaked Starter Deck Cards 42cd6e/Custom_Model_Bag Leaked Cards 471dc2/Card Lesson Learned (2) c5aa89.yaml b/unpacked/Custom_Model_Bag Leaked Starter Deck Cards 42cd6e/Custom_Model_Bag Leaked Cards 471dc2/Card Lesson Learned (2) c5aa89.yaml new file mode 100644 index 000000000..95f603820 --- /dev/null +++ b/unpacked/Custom_Model_Bag Leaked Starter Deck Cards 42cd6e/Custom_Model_Bag Leaked Cards 471dc2/Card Lesson Learned (2) c5aa89.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Insight. Sprint. +GMNotes: '' +GUID: c5aa89 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Lesson Learned (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 9.196683 + posY: 3.59138751 + posZ: -14.7303543 + rotX: 359.921844 + rotY: 270.025482 + rotZ: 0.01654873 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Leaked Starter Deck Cards 42cd6e/Custom_Model_Bag Leaked Cards 471dc2/Card Manual Dexterity (2) 098da7.yaml b/unpacked/Custom_Model_Bag Leaked Starter Deck Cards 42cd6e/Custom_Model_Bag Leaked Cards 471dc2/Card Manual Dexterity (2) 098da7.yaml new file mode 100644 index 000000000..394acb7ec --- /dev/null +++ b/unpacked/Custom_Model_Bag Leaked Starter Deck Cards 42cd6e/Custom_Model_Bag Leaked Cards 471dc2/Card Manual Dexterity (2) 098da7.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Innate. Developed. +GMNotes: '' +GUID: 098da7 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Manual Dexterity (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 8.484168 + posY: 3.59244442 + posZ: -14.23783 + rotX: 359.919739 + rotY: 270.000549 + rotZ: 0.0168434512 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Leaked Starter Deck Cards 42cd6e/Custom_Model_Bag Leaked Cards 471dc2/Card Mauser C96 085581.yaml b/unpacked/Custom_Model_Bag Leaked Starter Deck Cards 42cd6e/Custom_Model_Bag Leaked Cards 471dc2/Card Mauser C96 085581.yaml new file mode 100644 index 000000000..8655477ab --- /dev/null +++ b/unpacked/Custom_Model_Bag Leaked Starter Deck Cards 42cd6e/Custom_Model_Bag Leaked Cards 471dc2/Card Mauser C96 085581.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Item. Weapon. Firearm. Illicit. +GMNotes: '' +GUID: 085581 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Mauser C96 +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 7.94441748 + posY: 3.59272146 + posZ: -15.4832039 + rotX: 359.9297 + rotY: 270.000977 + rotZ: 0.0157532226 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Leaked Starter Deck Cards 42cd6e/Custom_Model_Bag Leaked Cards 471dc2/Card Mind Over Matter (2) 731411.yaml b/unpacked/Custom_Model_Bag Leaked Starter Deck Cards 42cd6e/Custom_Model_Bag Leaked Cards 471dc2/Card Mind Over Matter (2) 731411.yaml new file mode 100644 index 000000000..9c0733bd0 --- /dev/null +++ b/unpacked/Custom_Model_Bag Leaked Starter Deck Cards 42cd6e/Custom_Model_Bag Leaked Cards 471dc2/Card Mind Over Matter (2) 731411.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Insight. +GMNotes: '' +GUID: '731411' +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Mind Over Matter (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 8.408458 + posY: 3.59197974 + posZ: -16.1436348 + rotX: 359.918182 + rotY: 269.9998 + rotZ: 0.0170764811 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Leaked Starter Deck Cards 42cd6e/Custom_Model_Bag Leaked Cards 471dc2/Card Nimble f6fdb0.yaml b/unpacked/Custom_Model_Bag Leaked Starter Deck Cards 42cd6e/Custom_Model_Bag Leaked Cards 471dc2/Card Nimble f6fdb0.yaml new file mode 100644 index 000000000..d48bafee4 --- /dev/null +++ b/unpacked/Custom_Model_Bag Leaked Starter Deck Cards 42cd6e/Custom_Model_Bag Leaked Cards 471dc2/Card Nimble f6fdb0.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Innate. +GMNotes: '' +GUID: f6fdb0 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Nimble +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 8.744859 + posY: 3.59162927 + posZ: -16.0627728 + rotX: 359.9195 + rotY: 270.000519 + rotZ: 0.0169375911 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Leaked Starter Deck Cards 42cd6e/Custom_Model_Bag Leaked Cards 471dc2/Card Old Keyring 682e84.yaml b/unpacked/Custom_Model_Bag Leaked Starter Deck Cards 42cd6e/Custom_Model_Bag Leaked Cards 471dc2/Card Old Keyring 682e84.yaml new file mode 100644 index 000000000..7ed7e0127 --- /dev/null +++ b/unpacked/Custom_Model_Bag Leaked Starter Deck Cards 42cd6e/Custom_Model_Bag Leaked Cards 471dc2/Card Old Keyring 682e84.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Item. Tool. +GMNotes: '' +GUID: 682e84 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Old Keyring +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 8.552192 + posY: 3.591994 + posZ: -15.5585947 + rotX: 359.9216 + rotY: 270.001221 + rotZ: 0.0159515683 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Leaked Starter Deck Cards 42cd6e/Custom_Model_Bag Leaked Cards 471dc2/Card One-Two Punch 8c5d4c.yaml b/unpacked/Custom_Model_Bag Leaked Starter Deck Cards 42cd6e/Custom_Model_Bag Leaked Cards 471dc2/Card One-Two Punch 8c5d4c.yaml new file mode 100644 index 000000000..6ac83e131 --- /dev/null +++ b/unpacked/Custom_Model_Bag Leaked Starter Deck Cards 42cd6e/Custom_Model_Bag Leaked Cards 471dc2/Card One-Two Punch 8c5d4c.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Spirit. Tactic. +GMNotes: '' +GUID: 8c5d4c +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: One-Two Punch +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 8.66099 + posY: 3.59216642 + posZ: -15.3264246 + rotX: 359.8663 + rotY: 270.0328 + rotZ: 0.04280618 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Leaked Starter Deck Cards 42cd6e/Custom_Model_Bag Leaked Cards 471dc2/Card Quick Learner (4) a177db.yaml b/unpacked/Custom_Model_Bag Leaked Starter Deck Cards 42cd6e/Custom_Model_Bag Leaked Cards 471dc2/Card Quick Learner (4) a177db.yaml new file mode 100644 index 000000000..b81a99f58 --- /dev/null +++ b/unpacked/Custom_Model_Bag Leaked Starter Deck Cards 42cd6e/Custom_Model_Bag Leaked Cards 471dc2/Card Quick Learner (4) a177db.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Condition. +GMNotes: '' +GUID: a177db +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Quick Learner (4) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 8.883783 + posY: 3.59162855 + posZ: -15.405755 + rotX: 359.920319 + rotY: 270.000153 + rotZ: 0.0158317126 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Leaked Starter Deck Cards 42cd6e/Custom_Model_Bag Leaked Cards 471dc2/Card Recharge (4) da25d8.yaml b/unpacked/Custom_Model_Bag Leaked Starter Deck Cards 42cd6e/Custom_Model_Bag Leaked Cards 471dc2/Card Recharge (4) da25d8.yaml new file mode 100644 index 000000000..d0e63402f --- /dev/null +++ b/unpacked/Custom_Model_Bag Leaked Starter Deck Cards 42cd6e/Custom_Model_Bag Leaked Cards 471dc2/Card Recharge (4) da25d8.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Spell. +GMNotes: '' +GUID: da25d8 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Recharge (4) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 8.860433 + posY: 3.59179783 + posZ: -14.8527632 + rotX: 359.918762 + rotY: 270.001 + rotZ: 0.0171178933 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Leaked Starter Deck Cards 42cd6e/Custom_Model_Bag Leaked Cards 471dc2/Card Robes of Endless Night (2) c4c4b1.yaml b/unpacked/Custom_Model_Bag Leaked Starter Deck Cards 42cd6e/Custom_Model_Bag Leaked Cards 471dc2/Card Robes of Endless Night (2) c4c4b1.yaml new file mode 100644 index 000000000..016de9ece --- /dev/null +++ b/unpacked/Custom_Model_Bag Leaked Starter Deck Cards 42cd6e/Custom_Model_Bag Leaked Cards 471dc2/Card Robes of Endless Night (2) c4c4b1.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 235130 +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 + UniqueBack: false +Description: Item. Clothing. +GMNotes: '' +GUID: c4c4b1 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Robes of Endless Night (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 9.399671 + posY: 3.59116149 + posZ: -14.7855339 + rotX: 359.921478 + rotY: 270.0 + rotZ: 0.0159472637 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Leaked Starter Deck Cards 42cd6e/Custom_Model_Bag Leaked Cards 471dc2/Card Scrying Mirror dac4f8.yaml b/unpacked/Custom_Model_Bag Leaked Starter Deck Cards 42cd6e/Custom_Model_Bag Leaked Cards 471dc2/Card Scrying Mirror dac4f8.yaml new file mode 100644 index 000000000..1678b7d01 --- /dev/null +++ b/unpacked/Custom_Model_Bag Leaked Starter Deck Cards 42cd6e/Custom_Model_Bag Leaked Cards 471dc2/Card Scrying Mirror dac4f8.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Item. Charm. +GMNotes: '' +GUID: dac4f8 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Scrying Mirror +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 8.700194 + posY: 3.591985 + posZ: -14.9382811 + rotX: 359.920227 + rotY: 270.0005 + rotZ: 0.0163609255 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Leaked Starter Deck Cards 42cd6e/Custom_Model_Bag Leaked Cards 471dc2/Card The Necronomicon (5) eaafcf.yaml b/unpacked/Custom_Model_Bag Leaked Starter Deck Cards 42cd6e/Custom_Model_Bag Leaked Cards 471dc2/Card The Necronomicon (5) eaafcf.yaml new file mode 100644 index 000000000..5fc6018b8 --- /dev/null +++ b/unpacked/Custom_Model_Bag Leaked Starter Deck Cards 42cd6e/Custom_Model_Bag Leaked Cards 471dc2/Card The Necronomicon (5) eaafcf.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 235118 +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 + UniqueBack: false +Description: Petrus de Dacia Translation +GMNotes: '' +GUID: eaafcf +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: The Necronomicon (5) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 8.645188 + posY: 3.59221363 + posZ: -15.0685987 + rotX: 359.9182 + rotY: 269.9936 + rotZ: 0.01854696 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic 6117a1.ttslua b/unpacked/Custom_Model_Bag Mystic 6117a1.ttslua new file mode 100644 index 000000000..857093fb8 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic 6117a1.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,0,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 + 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=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,0,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,0,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,0,0}, height=350, width=750, + 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}, rotation={0,0,0}, height=350, width=800, + font_size=250, color={0,0,0}, font_color={1,1,1} + }) +-- self.createButton({ +-- label="Setup", click_function="buttonClick_setup", function_owner=self, +-- position={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.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 \ No newline at end of file diff --git a/unpacked/Custom_Model_Bag Mystic 6117a1.yaml b/unpacked/Custom_Model_Bag Mystic 6117a1.yaml new file mode 100644 index 000000000..1242bb8b1 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic 6117a1.yaml @@ -0,0 +1,108 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +ContainedObjects: +- !include 'Custom_Model_Bag Mystic 6117a1/Card Fearless (2) e53458.yaml' +- !include 'Custom_Model_Bag Mystic 6117a1/Card Defiance (2) c311be.yaml' +- !include 'Custom_Model_Bag Mystic 6117a1/Card Seal of the Elder Sign (5) 918fde.yaml' +- !include 'Custom_Model_Bag Mystic 6117a1/Card Mind Wipe (1) 3c7e85.yaml' +- !include 'Custom_Model_Bag Mystic 6117a1/Card Stargazing (1) 9c0a3d.yaml' +- !include 'Custom_Model_Bag Mystic 6117a1/Card Sacrifice (1) ef52e6.yaml' +- !include 'Custom_Model_Bag Mystic 6117a1/Card Banish (1) 2403fa.yaml' +- !include 'Custom_Model_Bag Mystic 6117a1/Card Recharge (2) f560b1.yaml' +- !include 'Custom_Model_Bag Mystic 6117a1/Card Ward of Protection (2) 443992.yaml' +- !include 'Custom_Model_Bag Mystic 6117a1/Card Blinding Light (2) fa4a56.yaml' +- !include 'Custom_Model_Bag Mystic 6117a1/Card Time Warp (2) ec3a71.yaml' +- !include 'Custom_Model_Bag Mystic 6117a1/Card Counterspell (2) 4fb7c0.yaml' +- !include 'Custom_Model_Bag Mystic 6117a1/Card Word of Command (2) 16154f.yaml' +- !include 'Custom_Model_Bag Mystic 6117a1/Card Bind Monster (2) 8f6cb3.yaml' +- !include 'Custom_Model_Bag Mystic 6117a1/Card Storm of Spirits (3) a906ee.yaml' +- !include 'Custom_Model_Bag Mystic 6117a1/Card Mind Wipe (3) 82d9bb.yaml' +- !include 'Custom_Model_Bag Mystic 6117a1/Card Deny Existence (5) d26b84.yaml' +- !include 'Custom_Model_Bag Mystic 6117a1/Card Ward of Protection (5) fc4caf.yaml' +- !include 'Custom_Model_Bag Mystic 6117a1/Card Scrying (3) 2b7765.yaml' +- !include 'Custom_Model_Bag Mystic 6117a1/Card Scroll of Secrets (3) bb9d20.yaml' +- !include 'Custom_Model_Bag Mystic 6117a1/Card Arcane Initiate (3) 45e559.yaml' +- !include 'Custom_Model_Bag Mystic 6117a1/Card Blood Pact (3) 86ed13.yaml' +- !include 'Custom_Model_Bag Mystic 6117a1/Card Rite of Seeking (2) 426c61.yaml' +- !include 'Custom_Model_Bag Mystic 6117a1/Card Mind''s Eye (2) 4e86c1.yaml' +- !include 'Custom_Model_Bag Mystic 6117a1/Card Empower Self (2) fea03b.yaml' +- !include 'Custom_Model_Bag Mystic 6117a1/Card Empower Self (2) 31051f.yaml' +- !include 'Custom_Model_Bag Mystic 6117a1/Card Empower Self (2) b49ef1.yaml' +- !include 'Custom_Model_Bag Mystic 6117a1/Card Song of the Dead (2) d4d8c4.yaml' +- !include 'Custom_Model_Bag Mystic 6117a1/Card Recall the Future (2) bdddfa.yaml' +- !include 'Custom_Model_Bag Mystic 6117a1/Card De Vermis Mysteriis (2) cb968f.yaml' +- !include 'Custom_Model_Bag Mystic 6117a1/Card Arcane Studies (2) f89dd6.yaml' +- !include 'Custom_Model_Bag Mystic 6117a1/Card Shrivelling (3) f1654d.yaml' +- !include 'Custom_Model_Bag Mystic 6117a1/Card Dayana Esperence (3) fcd9ce.yaml' +- !include 'Custom_Model_Bag Mystic 6117a1/Card Shining Trapezohedron (4) ef7b23.yaml' +- !include 'Custom_Model_Bag Mystic 6117a1/Card Grotesque Statue (4) f71c08.yaml' +- !include 'Custom_Model_Bag Mystic 6117a1/Card Wither (4) c78082.yaml' +- !include 'Custom_Model_Bag Mystic 6117a1/Card Sixth Sense (4) b9dd5d.yaml' +- !include 'Custom_Model_Bag Mystic 6117a1/Card Rite of Seeking (4) ea3df4.yaml' +- !include 'Custom_Model_Bag Mystic 6117a1/Card Seal of the Seventh Sign (5) 8272e9.yaml' +- !include 'Custom_Model_Bag Mystic 6117a1/Card Shrivelling (5) bb7d83.yaml' +- !include 'Custom_Model_Bag Mystic 6117a1/Card Mists of R''lyeh (4) 0e2b00.yaml' +- !include 'Custom_Model_Bag Mystic 6117a1/Card Alchemical Transmutation (2) d74e66.yaml' +- !include 'Custom_Model_Bag Mystic 6117a1/Card Summoned Hound (1) 0e8b75.yaml' +- !include 'Custom_Model_Bag Mystic 6117a1/Card Spirit Athame (1) a1c372.yaml' +- !include 'Custom_Model_Bag Mystic 6117a1/Card Four of Cups (1) f9a151.yaml' +- !include 'Custom_Model_Bag Mystic 6117a1/Card Book of Shadows (1) becb9c.yaml' +- !include 'Custom_Model_Bag Mystic 6117a1/Card Protective Incantation (1) c2f6b1.yaml' +- !include 'Custom_Model_Bag Mystic 6117a1/Card Grounded (1) 7da732.yaml' +- !include 'Custom_Model_Bag Mystic 6117a1/Card Clarity of Mind (3) 598837.yaml' +- !include 'Custom_Model_Bag Mystic 6117a1/Card Crystalline Elder Sign (3) 8c0e3b.yaml' +- !include 'Custom_Model_Bag Mystic 6117a1/Card Enchanted Blade (3) 053015.yaml' +- !include 'Custom_Model_Bag Mystic 6117a1/Card Jewel of Aureolus (3) 0919cf.yaml' +- !include 'Custom_Model_Bag Mystic 6117a1/Card Shards of the Void (3) f651e8.yaml' +- !include 'Custom_Model_Bag Mystic 6117a1/Card Twila Katherine Price (3) b9b811.yaml' +- !include 'Custom_Model_Bag Mystic 6117a1/Card Book of Shadows (3) 17c6c8.yaml' +- !include 'Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 8f9a96.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/952965722516557267/757887224F6C37104CDFFE241FAD09B57117D670/ + MaterialIndex: 3 + MeshURL: https://pastebin.com/raw/ALrYhQGb + NormalURL: '' + TypeIndex: 6 +Description: '' +GMNotes: '' +GUID: 6117a1 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: true +LuaScript: !include 'Custom_Model_Bag Mystic 6117a1.ttslua' +LuaScriptState: '{"ml":{"053015":{"lock":false,"pos":{"x":40.6759,"y":1.3617,"z":-52.0129},"rot":{"x":0.0208,"y":270,"z":0.0168}},"0919cf":{"lock":false,"pos":{"x":40.6759,"y":1.361,"z":-54.3129},"rot":{"x":0.0208,"y":269.9994,"z":0.0168}},"0e2b00":{"lock":false,"pos":{"x":40.6758,"y":1.3556,"z":-72.7128},"rot":{"x":0.0208,"y":269.999,"z":0.0168}},"0e8b75":{"lock":false,"pos":{"x":44.229,"y":1.361,"z":-58.9008},"rot":{"x":0.0208,"y":269.9998,"z":0.0168}},"16154f":{"lock":false,"pos":{"x":52.9443,"y":1.3614,"z":-68.1214},"rot":{"x":0.0208,"y":270.0292,"z":0.0168}},"17c6c8":{"lock":false,"pos":{"x":40.6758,"y":1.359,"z":-61.2129},"rot":{"x":0.0208,"y":269.9821,"z":0.0168}},"2403fa":{"lock":false,"pos":{"x":52.9443,"y":1.3655,"z":-54.3215},"rot":{"x":0.0208,"y":269.9995,"z":0.0168}},"2b7765":{"lock":false,"pos":{"x":44.213,"y":1.3516,"z":-91.0974},"rot":{"x":0.0208,"y":270.0111,"z":0.0168}},"31051f":{"lock":false,"pos":{"x":44.2289,"y":1.3563,"z":-75.0008},"rot":{"x":0.0208,"y":270.0312,"z":0.0168}},"3c7e85":{"lock":false,"pos":{"x":52.9443,"y":1.3662,"z":-52.0215},"rot":{"x":0.0208,"y":269.9995,"z":0.0168}},"426c61":{"lock":false,"pos":{"x":44.231,"y":1.3542,"z":-81.9009},"rot":{"x":0.0208,"y":269.9993,"z":0.0168}},"443992":{"lock":false,"pos":{"x":52.9443,"y":1.3641,"z":-58.9215},"rot":{"x":0.0208,"y":269.9995,"z":0.0168}},"45e559":{"lock":false,"pos":{"x":44.229,"y":1.3529,"z":-86.5007},"rot":{"x":0.0208,"y":269.9994,"z":0.0168}},"4e86c1":{"lock":false,"pos":{"x":44.229,"y":1.3549,"z":-79.6007},"rot":{"x":0.0208,"y":270.0188,"z":0.0168}},"4fb7c0":{"lock":false,"pos":{"x":52.9443,"y":1.3621,"z":-65.8214},"rot":{"x":0.0208,"y":269.9995,"z":0.0168}},"598837":{"lock":false,"pos":{"x":40.6759,"y":1.3631,"z":-47.4129},"rot":{"x":0.0208,"y":269.9995,"z":0.0168}},"7da732":{"lock":false,"pos":{"x":44.229,"y":1.3643,"z":-47.4008},"rot":{"x":0.0208,"y":269.9995,"z":0.0168}},"8272e9":{"lock":false,"pos":{"x":40.6791,"y":1.353,"z":-81.9129},"rot":{"x":0.0208,"y":270.0167,"z":0.0168}},"82d9bb":{"lock":false,"pos":{"x":52.9443,"y":1.3594,"z":-75.0215},"rot":{"x":0.0208,"y":269.9997,"z":0.0168}},"86ed13":{"lock":false,"pos":{"x":44.2289,"y":1.3536,"z":-84.2007},"rot":{"x":0.0208,"y":269.9995,"z":0.0168}},"8c0e3b":{"lock":false,"pos":{"x":40.6759,"y":1.3624,"z":-49.7129},"rot":{"x":0.0208,"y":270.0018,"z":0.0168}},"8f6cb3":{"lock":false,"pos":{"x":52.9443,"y":1.3608,"z":-70.4214},"rot":{"x":0.0208,"y":269.9995,"z":0.0168}},"918fde":{"lock":false,"pos":{"x":58.0998,"y":1.368,"z":-52.0722},"rot":{"x":0.0208,"y":269.9995,"z":0.0168}},"9c0a3d":{"lock":false,"pos":{"x":52.9443,"y":1.3668,"z":-49.7215},"rot":{"x":0.0208,"y":269.9995,"z":0.0168}},"a1c372":{"lock":false,"pos":{"x":44.229,"y":1.3617,"z":-56.6008},"rot":{"x":0.0208,"y":269.9995,"z":0.0168}},"a906ee":{"lock":false,"pos":{"x":52.9443,"y":1.3601,"z":-72.7215},"rot":{"x":0.0208,"y":269.9995,"z":0.0168}},"b49ef1":{"lock":false,"pos":{"x":44.229,"y":1.3569,"z":-72.7007},"rot":{"x":0.0208,"y":269.978,"z":0.0168}},"b9b811":{"lock":false,"pos":{"x":40.6759,"y":1.3597,"z":-58.9129},"rot":{"x":0.0208,"y":269.9831,"z":0.0168}},"b9dd5d":{"lock":false,"pos":{"x":40.6758,"y":1.3543,"z":-77.3127},"rot":{"x":0.0208,"y":269.9993,"z":0.0168}},"bb7d83":{"lock":false,"pos":{"x":40.6791,"y":1.3523,"z":-84.2122},"rot":{"x":0.0208,"y":270.0334,"z":0.0168}},"bb9d20":{"lock":false,"pos":{"x":44.2132,"y":1.3522,"z":-88.7901},"rot":{"x":0.0208,"y":269.9992,"z":0.0168}},"bdddfa":{"lock":false,"pos":{"x":44.229,"y":1.3583,"z":-68.1007},"rot":{"x":0.0208,"y":269.9995,"z":0.0168}},"becb9c":{"lock":false,"pos":{"x":44.229,"y":1.363,"z":-52.0008},"rot":{"x":0.0208,"y":269.9995,"z":0.0168}},"c2f6b1":{"lock":false,"pos":{"x":44.229,"y":1.3637,"z":-49.7008},"rot":{"x":0.0208,"y":269.9995,"z":0.0168}},"c311be":{"lock":false,"pos":{"x":58.0998,"y":1.3687,"z":-49.7722},"rot":{"x":0.0208,"y":269.9995,"z":0.0168}},"c78082":{"lock":false,"pos":{"x":40.6758,"y":1.355,"z":-75.0128},"rot":{"x":0.0208,"y":269.9995,"z":0.0168}},"cb968f":{"lock":false,"pos":{"x":44.229,"y":1.359,"z":-65.8007},"rot":{"x":0.0208,"y":269.9996,"z":0.0168}},"d26b84":{"lock":false,"pos":{"x":52.9443,"y":1.3588,"z":-77.3214},"rot":{"x":0.0208,"y":269.9995,"z":0.0168}},"d4d8c4":{"lock":false,"pos":{"x":44.229,"y":1.3576,"z":-70.4007},"rot":{"x":0.0208,"y":269.9994,"z":0.0168}},"d74e66":{"lock":false,"pos":{"x":44.229,"y":1.3603,"z":-61.2008},"rot":{"x":0.0208,"y":269.9995,"z":0.0168}},"e53458":{"lock":false,"pos":{"x":58.0998,"y":1.3694,"z":-47.4722},"rot":{"x":0.0208,"y":269.9995,"z":0.0168}},"ea3df4":{"lock":false,"pos":{"x":40.676,"y":1.3536,"z":-79.6126},"rot":{"x":0.0208,"y":269.9996,"z":0.0168}},"ec3a71":{"lock":false,"pos":{"x":52.9443,"y":1.3628,"z":-63.5215},"rot":{"x":0.0208,"y":269.9995,"z":0.0168}},"ef52e6":{"lock":false,"pos":{"x":52.9443,"y":1.3675,"z":-47.4215},"rot":{"x":0.0208,"y":269.9995,"z":0.0168}},"ef7b23":{"lock":false,"pos":{"x":40.6759,"y":1.357,"z":-68.1127},"rot":{"x":0.0208,"y":269.9971,"z":0.0168}},"f1654d":{"lock":false,"pos":{"x":40.6759,"y":1.3583,"z":-63.5129},"rot":{"x":0.0208,"y":269.9995,"z":0.0168}},"f560b1":{"lock":false,"pos":{"x":52.9443,"y":1.3648,"z":-56.6215},"rot":{"x":0.0208,"y":269.9995,"z":0.0168}},"f651e8":{"lock":false,"pos":{"x":40.6759,"y":1.3604,"z":-56.6129},"rot":{"x":0.0208,"y":270.0041,"z":0.0168}},"f71c08":{"lock":false,"pos":{"x":40.6758,"y":1.3563,"z":-70.4128},"rot":{"x":0.0208,"y":269.9995,"z":0.0168}},"f89dd6":{"lock":false,"pos":{"x":44.229,"y":1.3596,"z":-63.5008},"rot":{"x":0.0208,"y":269.9995,"z":0.0168}},"f9a151":{"lock":false,"pos":{"x":44.229,"y":1.3623,"z":-54.3008},"rot":{"x":0.0208,"y":269.9995,"z":0.0168}},"fa4a56":{"lock":false,"pos":{"x":52.9443,"y":1.3635,"z":-61.2215},"rot":{"x":0.0208,"y":269.9995,"z":0.0168}},"fc4caf":{"lock":false,"pos":{"x":52.9442,"y":1.3581,"z":-79.6203},"rot":{"x":0.0208,"y":270.0139,"z":0.0168}},"fcd9ce":{"lock":false,"pos":{"x":40.6759,"y":1.3577,"z":-65.8127},"rot":{"x":0.0208,"y":269.9995,"z":0.0168}},"fea03b":{"lock":false,"pos":{"x":44.229,"y":1.3556,"z":-77.3007},"rot":{"x":0.0208,"y":269.9643,"z":0.0168}}}}' +MaterialIndex: -1 +MeshIndex: -1 +Name: Custom_Model_Bag +Nickname: Mystic +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 66.31649 + posY: 1.41105807 + posZ: -80.1881256 + rotX: 0.02080415 + rotY: 270.022156 + rotZ: 0.016778497 + scaleX: 1.2 + scaleY: 1.2 + scaleZ: 1.2 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic 6117a1/Card Alchemical Transmutation (2) d74e66.yaml b/unpacked/Custom_Model_Bag Mystic 6117a1/Card Alchemical Transmutation (2) d74e66.yaml new file mode 100644 index 000000000..edcbf630a --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic 6117a1/Card Alchemical Transmutation (2) d74e66.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 440820 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: d74e66 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Alchemical Transmutation (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.2289543 + posY: 1.36030793 + posZ: -61.20084 + rotX: 0.0208086614 + rotY: 269.999481 + rotZ: 0.0167703349 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic 6117a1/Card Arcane Initiate (3) 45e559.yaml b/unpacked/Custom_Model_Bag Mystic 6117a1/Card Arcane Initiate (3) 45e559.yaml new file mode 100644 index 000000000..c08e503e2 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic 6117a1/Card Arcane Initiate (3) 45e559.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 45e559 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Arcane Initiate (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.2289963 + posY: 1.35290217 + posZ: -86.50067 + rotX: 0.020810511 + rotY: 269.99942 + rotZ: 0.0167729463 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic 6117a1/Card Arcane Studies (2) f89dd6.yaml b/unpacked/Custom_Model_Bag Mystic 6117a1/Card Arcane Studies (2) f89dd6.yaml new file mode 100644 index 000000000..376206649 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic 6117a1/Card Arcane Studies (2) f89dd6.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: f89dd6 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Arcane Studies (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.2289543 + posY: 1.35963464 + posZ: -63.500843 + rotX: 0.0208098944 + rotY: 269.999451 + rotZ: 0.016771907 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic 6117a1/Card Banish (1) 2403fa.yaml b/unpacked/Custom_Model_Bag Mystic 6117a1/Card Banish (1) 2403fa.yaml new file mode 100644 index 000000000..b9cb043c7 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic 6117a1/Card Banish (1) 2403fa.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 2403fa +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Banish (1) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 52.9442177 + posY: 1.365487 + posZ: -54.32034 + rotX: 0.0208087638 + rotY: 269.999481 + rotZ: 0.0167699158 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic 6117a1/Card Bind Monster (2) 8f6cb3.yaml b/unpacked/Custom_Model_Bag Mystic 6117a1/Card Bind Monster (2) 8f6cb3.yaml new file mode 100644 index 000000000..1e744d5ee --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic 6117a1/Card Bind Monster (2) 8f6cb3.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 8f6cb3 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Bind Monster (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 52.9442024 + posY: 1.36077428 + posZ: -70.42022 + rotX: 0.02081003 + rotY: 269.999451 + rotZ: 0.0167748015 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic 6117a1/Card Blinding Light (2) fa4a56.yaml b/unpacked/Custom_Model_Bag Mystic 6117a1/Card Blinding Light (2) fa4a56.yaml new file mode 100644 index 000000000..be6780c3a --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic 6117a1/Card Blinding Light (2) fa4a56.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: fa4a56 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Blinding Light (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 52.9442062 + posY: 1.36346734 + posZ: -61.22035 + rotX: 0.0208086614 + rotY: 269.999481 + rotZ: 0.0167702436 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic 6117a1/Card Blood Pact (3) 86ed13.yaml b/unpacked/Custom_Model_Bag Mystic 6117a1/Card Blood Pact (3) 86ed13.yaml new file mode 100644 index 000000000..9cbb40e7a --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic 6117a1/Card Blood Pact (3) 86ed13.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 86ed13 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Blood Pact (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.2288666 + posY: 1.35357547 + posZ: -84.20065 + rotX: 0.02081042 + rotY: 269.9995 + rotZ: 0.016772531 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic 6117a1/Card Book of Shadows (1) becb9c.yaml b/unpacked/Custom_Model_Bag Mystic 6117a1/Card Book of Shadows (1) becb9c.yaml new file mode 100644 index 000000000..c4d02f9cd --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic 6117a1/Card Book of Shadows (1) becb9c.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: becb9c +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Book of Shadows (1) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.2289619 + posY: 1.36300087 + posZ: -52.0008278 + rotX: 0.0208087061 + rotY: 269.999481 + rotZ: 0.0167701151 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic 6117a1/Card Book of Shadows (3) 17c6c8.yaml b/unpacked/Custom_Model_Bag Mystic 6117a1/Card Book of Shadows (3) 17c6c8.yaml new file mode 100644 index 000000000..ee0c8361f --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic 6117a1/Card Book of Shadows (3) 17c6c8.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 17c6c8 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Book of Shadows (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 40.67585 + posY: 1.35901392 + posZ: -61.21288 + rotX: 0.0208138656 + rotY: 269.982056 + rotZ: 0.0167637728 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic 6117a1/Card Clarity of Mind (3) 598837.yaml b/unpacked/Custom_Model_Bag Mystic 6117a1/Card Clarity of Mind (3) 598837.yaml new file mode 100644 index 000000000..e9a35c0b3 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic 6117a1/Card Clarity of Mind (3) 598837.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 278203 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2782': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025945336/04E36F64C2CBE1B4905FF44A869C75EC52CB3A56/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: '598837' +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Clarity of Mind (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 40.67586 + posY: 1.36305332 + posZ: -47.41287 + rotX: 0.020808598 + rotY: 269.999481 + rotZ: 0.0167700853 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic 6117a1/Card Counterspell (2) 4fb7c0.yaml b/unpacked/Custom_Model_Bag Mystic 6117a1/Card Counterspell (2) 4fb7c0.yaml new file mode 100644 index 000000000..9da5c2783 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic 6117a1/Card Counterspell (2) 4fb7c0.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 4fb7c0 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Counterspell (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 52.94421 + posY: 1.36212075 + posZ: -65.82021 + rotX: 0.0208108239 + rotY: 269.999451 + rotZ: 0.0167728513 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic 6117a1/Card Crystalline Elder Sign (3) 8c0e3b.yaml b/unpacked/Custom_Model_Bag Mystic 6117a1/Card Crystalline Elder Sign (3) 8c0e3b.yaml new file mode 100644 index 000000000..92a6235d2 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic 6117a1/Card Crystalline Elder Sign (3) 8c0e3b.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 8c0e3b +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Crystalline Elder Sign (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 40.67586 + posY: 1.36238015 + posZ: -49.7128563 + rotX: 0.0208079685 + rotY: 270.0018 + rotZ: 0.0167714339 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic 6117a1/Card Dayana Esperence (3) fcd9ce.yaml b/unpacked/Custom_Model_Bag Mystic 6117a1/Card Dayana Esperence (3) fcd9ce.yaml new file mode 100644 index 000000000..aa62779b3 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic 6117a1/Card Dayana Esperence (3) fcd9ce.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Deals with "Devils" +GMNotes: '' +GUID: fcd9ce +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Dayana Esperence (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 40.6758537 + posY: 1.35766745 + posZ: -65.8127441 + rotX: 0.02081082 + rotY: 269.999451 + rotZ: 0.01677291 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic 6117a1/Card De Vermis Mysteriis (2) cb968f.yaml b/unpacked/Custom_Model_Bag Mystic 6117a1/Card De Vermis Mysteriis (2) cb968f.yaml new file mode 100644 index 000000000..8626a1cae --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic 6117a1/Card De Vermis Mysteriis (2) cb968f.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Signs of the Black Stars +GMNotes: '' +GUID: cb968f +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: De Vermis Mysteriis (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.2289543 + posY: 1.35896134 + posZ: -65.800705 + rotX: 0.020810429 + rotY: 269.999634 + rotZ: 0.0167726818 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic 6117a1/Card Defiance (2) c311be.yaml b/unpacked/Custom_Model_Bag Mystic 6117a1/Card Defiance (2) c311be.yaml new file mode 100644 index 000000000..173a5f230 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic 6117a1/Card Defiance (2) c311be.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: c311be +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Defiance (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 58.0996628 + posY: 1.368691 + posZ: -49.77096 + rotX: 0.0208086539 + rotY: 269.999481 + rotZ: 0.0167706385 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic 6117a1/Card Deny Existence (5) d26b84.yaml b/unpacked/Custom_Model_Bag Mystic 6117a1/Card Deny Existence (5) d26b84.yaml new file mode 100644 index 000000000..2838d9785 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic 6117a1/Card Deny Existence (5) d26b84.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: d26b84 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Deny Existence (5) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 52.9442024 + posY: 1.35875452 + posZ: -77.32025 + rotX: 0.02080966 + rotY: 269.999451 + rotZ: 0.0167743843 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic 6117a1/Card Empower Self (2) 31051f.yaml b/unpacked/Custom_Model_Bag Mystic 6117a1/Card Empower Self (2) 31051f.yaml new file mode 100644 index 000000000..84042a7ce --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic 6117a1/Card Empower Self (2) 31051f.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Alacrity +GMNotes: '' +GUID: 31051f +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Empower Self (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.2289467 + posY: 1.35626841 + posZ: -75.0007553 + rotX: 0.020800408 + rotY: 270.031219 + rotZ: 0.0167863239 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic 6117a1/Card Empower Self (2) b49ef1.yaml b/unpacked/Custom_Model_Bag Mystic 6117a1/Card Empower Self (2) b49ef1.yaml new file mode 100644 index 000000000..f82eeacce --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic 6117a1/Card Empower Self (2) b49ef1.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Stamina +GMNotes: '' +GUID: b49ef1 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Empower Self (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.22895 + posY: 1.35694158 + posZ: -72.7007446 + rotX: 0.0208170563 + rotY: 269.978027 + rotZ: 0.0167649016 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic 6117a1/Card Empower Self (2) fea03b.yaml b/unpacked/Custom_Model_Bag Mystic 6117a1/Card Empower Self (2) fea03b.yaml new file mode 100644 index 000000000..809cd9423 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic 6117a1/Card Empower Self (2) fea03b.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Acuity +GMNotes: '' +GUID: fea03b +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Empower Self (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.2289543 + posY: 1.35559523 + posZ: -77.30066 + rotX: 0.0208207611 + rotY: 269.964325 + rotZ: 0.0167600866 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic 6117a1/Card Enchanted Blade (3) 053015.yaml b/unpacked/Custom_Model_Bag Mystic 6117a1/Card Enchanted Blade (3) 053015.yaml new file mode 100644 index 000000000..b0381a599 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic 6117a1/Card Enchanted Blade (3) 053015.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Mystic +GMNotes: '' +GUID: '053015' +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Enchanted Blade (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 40.67586 + posY: 1.36170685 + posZ: -52.01286 + rotX: 0.0208084881 + rotY: 270.000031 + rotZ: 0.0167704821 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic 6117a1/Card Fearless (2) e53458.yaml b/unpacked/Custom_Model_Bag Mystic 6117a1/Card Fearless (2) e53458.yaml new file mode 100644 index 000000000..3ab14dcfe --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic 6117a1/Card Fearless (2) e53458.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: e53458 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Fearless (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 58.0996628 + posY: 1.36936426 + posZ: -47.470974 + rotX: 0.020808747 + rotY: 269.999481 + rotZ: 0.0167701822 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic 6117a1/Card Four of Cups (1) f9a151.yaml b/unpacked/Custom_Model_Bag Mystic 6117a1/Card Four of Cups (1) f9a151.yaml new file mode 100644 index 000000000..c6187967f --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic 6117a1/Card Four of Cups (1) f9a151.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 278305 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2783': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025945336/04E36F64C2CBE1B4905FF44A869C75EC52CB3A56/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: Chalice of the Heart +GMNotes: '' +GUID: f9a151 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Four of Cups (1) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.2289658 + posY: 1.36232758 + posZ: -54.30083 + rotX: 0.02080877 + rotY: 269.999451 + rotZ: 0.0167700518 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic 6117a1/Card Grotesque Statue (4) f71c08.yaml b/unpacked/Custom_Model_Bag Mystic 6117a1/Card Grotesque Statue (4) f71c08.yaml new file mode 100644 index 000000000..81f74e35f --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic 6117a1/Card Grotesque Statue (4) f71c08.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: f71c08 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Grotesque Statue (4) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 40.67585 + posY: 1.356321 + posZ: -70.41275 + rotX: 0.02081036 + rotY: 269.9995 + rotZ: 0.0167727545 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic 6117a1/Card Grounded (1) 7da732.yaml b/unpacked/Custom_Model_Bag Mystic 6117a1/Card Grounded (1) 7da732.yaml new file mode 100644 index 000000000..2a09614ca --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic 6117a1/Card Grounded (1) 7da732.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 7da732 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Grounded (1) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.2289619 + posY: 1.36434734 + posZ: -47.4008369 + rotX: 0.02080869 + rotY: 269.9995 + rotZ: 0.0167702455 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic 6117a1/Card Jewel of Aureolus (3) 0919cf.yaml b/unpacked/Custom_Model_Bag Mystic 6117a1/Card Jewel of Aureolus (3) 0919cf.yaml new file mode 100644 index 000000000..0bf0c7b58 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic 6117a1/Card Jewel of Aureolus (3) 0919cf.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Gift of the Homunculi +GMNotes: '' +GUID: 0919cf +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Jewel of Aureolus (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 40.6758652 + posY: 1.36103368 + posZ: -54.31287 + rotX: 0.0208085421 + rotY: 269.9994 + rotZ: 0.01677023 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic 6117a1/Card Mind Wipe (1) 3c7e85.yaml b/unpacked/Custom_Model_Bag Mystic 6117a1/Card Mind Wipe (1) 3c7e85.yaml new file mode 100644 index 000000000..b5a6b3dd8 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic 6117a1/Card Mind Wipe (1) 3c7e85.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 3c7e85 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Mind Wipe (1) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 52.9442139 + posY: 1.36616027 + posZ: -52.0203362 + rotX: 0.0208090134 + rotY: 269.999481 + rotZ: 0.01677027 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic 6117a1/Card Mind Wipe (3) 82d9bb.yaml b/unpacked/Custom_Model_Bag Mystic 6117a1/Card Mind Wipe (3) 82d9bb.yaml new file mode 100644 index 000000000..f31d8ff45 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic 6117a1/Card Mind Wipe (3) 82d9bb.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 82d9bb +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Mind Wipe (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 52.9442024 + posY: 1.35942781 + posZ: -75.02035 + rotX: 0.0208102837 + rotY: 269.9996 + rotZ: 0.0167725459 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic 6117a1/Card Mind's Eye (2) 4e86c1.yaml b/unpacked/Custom_Model_Bag Mystic 6117a1/Card Mind's Eye (2) 4e86c1.yaml new file mode 100644 index 000000000..a7d73d9a8 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic 6117a1/Card Mind's Eye (2) 4e86c1.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 449137 +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 + UniqueBack: false +Description: Ritual. +GMNotes: '' +GUID: 4e86c1 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Mind's Eye (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.2289543 + posY: 1.35492194 + posZ: -79.60066 + rotX: 0.020804964 + rotY: 270.0188 + rotZ: 0.01677978 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic 6117a1/Card Mists of R'lyeh (4) 0e2b00.yaml b/unpacked/Custom_Model_Bag Mystic 6117a1/Card Mists of R'lyeh (4) 0e2b00.yaml new file mode 100644 index 000000000..e3e4bddae --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic 6117a1/Card Mists of R'lyeh (4) 0e2b00.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 0e2b00 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Mists of R'lyeh (4) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 40.6758423 + posY: 1.35564768 + posZ: -72.71276 + rotX: 0.0208115671 + rotY: 269.999023 + rotZ: 0.0167725869 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic 6117a1/Card Protective Incantation (1) c2f6b1.yaml b/unpacked/Custom_Model_Bag Mystic 6117a1/Card Protective Incantation (1) c2f6b1.yaml new file mode 100644 index 000000000..5c1d13c59 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic 6117a1/Card Protective Incantation (1) c2f6b1.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: c2f6b1 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Protective Incantation (1) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.22896 + posY: 1.363674 + posZ: -49.7008247 + rotX: 0.0208087079 + rotY: 269.9995 + rotZ: 0.0167701282 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic 6117a1/Card Recall the Future (2) bdddfa.yaml b/unpacked/Custom_Model_Bag Mystic 6117a1/Card Recall the Future (2) bdddfa.yaml new file mode 100644 index 000000000..1260fd0b5 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic 6117a1/Card Recall the Future (2) bdddfa.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: bdddfa +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Recall the Future (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.2289543 + posY: 1.35828817 + posZ: -68.10071 + rotX: 0.0208095219 + rotY: 269.999451 + rotZ: 0.016774809 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic 6117a1/Card Recharge (2) f560b1.yaml b/unpacked/Custom_Model_Bag Mystic 6117a1/Card Recharge (2) f560b1.yaml new file mode 100644 index 000000000..9c46dbcf2 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic 6117a1/Card Recharge (2) f560b1.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: f560b1 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Recharge (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 52.9442177 + posY: 1.3648138 + posZ: -56.6203423 + rotX: 0.0208084118 + rotY: 269.999481 + rotZ: 0.0167702641 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic 6117a1/Card Rite of Seeking (2) 426c61.yaml b/unpacked/Custom_Model_Bag Mystic 6117a1/Card Rite of Seeking (2) 426c61.yaml new file mode 100644 index 000000000..e09ccbb66 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic 6117a1/Card Rite of Seeking (2) 426c61.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 278204 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2782': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025945336/04E36F64C2CBE1B4905FF44A869C75EC52CB3A56/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 426c61 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Rite of Seeking (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.23099 + posY: 1.35424936 + posZ: -81.90088 + rotX: 0.0208107885 + rotY: 269.999329 + rotZ: 0.0167728812 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic 6117a1/Card Rite of Seeking (4) ea3df4.yaml b/unpacked/Custom_Model_Bag Mystic 6117a1/Card Rite of Seeking (4) ea3df4.yaml new file mode 100644 index 000000000..09c5f9d12 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic 6117a1/Card Rite of Seeking (4) ea3df4.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: ea3df4 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Rite of Seeking (4) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 40.67597 + posY: 1.353628 + posZ: -79.61265 + rotX: 0.0208104625 + rotY: 269.999573 + rotZ: 0.0167728718 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic 6117a1/Card Sacrifice (1) ef52e6.yaml b/unpacked/Custom_Model_Bag Mystic 6117a1/Card Sacrifice (1) ef52e6.yaml new file mode 100644 index 000000000..990e22989 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic 6117a1/Card Sacrifice (1) ef52e6.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: ef52e6 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Sacrifice (1) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 52.9442139 + posY: 1.36750674 + posZ: -47.4203453 + rotX: 0.0208087973 + rotY: 269.999481 + rotZ: 0.0167700816 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic 6117a1/Card Scroll of Secrets (3) bb9d20.yaml b/unpacked/Custom_Model_Bag Mystic 6117a1/Card Scroll of Secrets (3) bb9d20.yaml new file mode 100644 index 000000000..6dabec733 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic 6117a1/Card Scroll of Secrets (3) bb9d20.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Mystic +GMNotes: '' +GUID: bb9d20 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Scroll of Secrets (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.2131767 + posY: 1.35222638 + posZ: -88.7901154 + rotX: 0.02081076 + rotY: 269.999176 + rotZ: 0.0167728551 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic 6117a1/Card Scrying (3) 2b7765.yaml b/unpacked/Custom_Model_Bag Mystic 6117a1/Card Scrying (3) 2b7765.yaml new file mode 100644 index 000000000..348e7d615 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic 6117a1/Card Scrying (3) 2b7765.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 230350 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 2b7765 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Scrying (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.2130051 + posY: 1.35155082 + posZ: -91.09744 + rotX: 0.0208071116 + rotY: 270.0111 + rotZ: 0.0167771149 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic 6117a1/Card Seal of the Elder Sign (5) 918fde.yaml b/unpacked/Custom_Model_Bag Mystic 6117a1/Card Seal of the Elder Sign (5) 918fde.yaml new file mode 100644 index 000000000..292407663 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic 6117a1/Card Seal of the Elder Sign (5) 918fde.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 918fde +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Seal of the Elder Sign (5) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 58.0996628 + posY: 1.36801779 + posZ: -52.0709648 + rotX: 0.0208086781 + rotY: 269.9995 + rotZ: 0.01677015 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic 6117a1/Card Seal of the Seventh Sign (5) 8272e9.yaml b/unpacked/Custom_Model_Bag Mystic 6117a1/Card Seal of the Seventh Sign (5) 8272e9.yaml new file mode 100644 index 000000000..f627c826c --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic 6117a1/Card Seal of the Seventh Sign (5) 8272e9.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 278101 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2781': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025945336/04E36F64C2CBE1B4905FF44A869C75EC52CB3A56/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: Over the Threshold and Beyond +GMNotes: '' +GUID: 8272e9 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Seal of the Seventh Sign (5) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 40.6790733 + posY: 1.35295594 + posZ: -81.91287 + rotX: 0.020805629 + rotY: 270.016663 + rotZ: 0.0167775862 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic 6117a1/Card Shards of the Void (3) f651e8.yaml b/unpacked/Custom_Model_Bag Mystic 6117a1/Card Shards of the Void (3) f651e8.yaml new file mode 100644 index 000000000..8daf592ec --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic 6117a1/Card Shards of the Void (3) f651e8.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 278102 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2781': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025945336/04E36F64C2CBE1B4905FF44A869C75EC52CB3A56/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: f651e8 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Shards of the Void (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 40.6758652 + posY: 1.3603605 + posZ: -56.6128731 + rotX: 0.0208072737 + rotY: 270.0041 + rotZ: 0.0167719536 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic 6117a1/Card Shining Trapezohedron (4) ef7b23.yaml b/unpacked/Custom_Model_Bag Mystic 6117a1/Card Shining Trapezohedron (4) ef7b23.yaml new file mode 100644 index 000000000..086385b1e --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic 6117a1/Card Shining Trapezohedron (4) ef7b23.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 449138 +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 + UniqueBack: false +Description: Item. Relic. +GMNotes: '' +GUID: ef7b23 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Shining Trapezohedron (4) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 40.6758537 + posY: 1.35699427 + posZ: -68.11275 + rotX: 0.02080938 + rotY: 269.997131 + rotZ: 0.0167651642 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic 6117a1/Card Shrivelling (3) f1654d.yaml b/unpacked/Custom_Model_Bag Mystic 6117a1/Card Shrivelling (3) f1654d.yaml new file mode 100644 index 000000000..7cb45a860 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic 6117a1/Card Shrivelling (3) f1654d.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: f1654d +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Shrivelling (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 40.6758537 + posY: 1.35834062 + posZ: -63.5128822 + rotX: 0.0208098888 + rotY: 269.999451 + rotZ: 0.0167722423 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic 6117a1/Card Shrivelling (5) bb7d83.yaml b/unpacked/Custom_Model_Bag Mystic 6117a1/Card Shrivelling (5) bb7d83.yaml new file mode 100644 index 000000000..da2dd9734 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic 6117a1/Card Shrivelling (5) bb7d83.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: bb7d83 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Shrivelling (5) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 40.6790733 + posY: 1.35228288 + posZ: -84.21222 + rotX: 0.0208006073 + rotY: 270.0334 + rotZ: 0.0167852677 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic 6117a1/Card Sixth Sense (4) b9dd5d.yaml b/unpacked/Custom_Model_Bag Mystic 6117a1/Card Sixth Sense (4) b9dd5d.yaml new file mode 100644 index 000000000..9cd3f4a3a --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic 6117a1/Card Sixth Sense (4) b9dd5d.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: b9dd5d +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Sixth Sense (4) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 40.67583 + posY: 1.35430121 + posZ: -77.31268 + rotX: 0.0208108481 + rotY: 269.999329 + rotZ: 0.0167728029 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic 6117a1/Card Song of the Dead (2) d4d8c4.yaml b/unpacked/Custom_Model_Bag Mystic 6117a1/Card Song of the Dead (2) d4d8c4.yaml new file mode 100644 index 000000000..bc0cc4efc --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic 6117a1/Card Song of the Dead (2) d4d8c4.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: d4d8c4 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Song of the Dead (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.22895 + posY: 1.35761487 + posZ: -70.40071 + rotX: 0.0208097957 + rotY: 269.99942 + rotZ: 0.0167745631 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic 6117a1/Card Spirit Athame (1) a1c372.yaml b/unpacked/Custom_Model_Bag Mystic 6117a1/Card Spirit Athame (1) a1c372.yaml new file mode 100644 index 000000000..ebae2d735 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic 6117a1/Card Spirit Athame (1) a1c372.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: a1c372 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Spirit Athame (1) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.2289619 + posY: 1.36165428 + posZ: -56.6008339 + rotX: 0.0208105911 + rotY: 269.999481 + rotZ: 0.0167692173 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic 6117a1/Card Stargazing (1) 9c0a3d.yaml b/unpacked/Custom_Model_Bag Mystic 6117a1/Card Stargazing (1) 9c0a3d.yaml new file mode 100644 index 000000000..dd2f94739 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic 6117a1/Card Stargazing (1) 9c0a3d.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 440822 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 9c0a3d +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Stargazing (1) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 52.9442139 + posY: 1.36683357 + posZ: -49.7203331 + rotX: 0.02080873 + rotY: 269.999481 + rotZ: 0.0167703182 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic 6117a1/Card Storm of Spirits (3) a906ee.yaml b/unpacked/Custom_Model_Bag Mystic 6117a1/Card Storm of Spirits (3) a906ee.yaml new file mode 100644 index 000000000..a7e032d7e --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic 6117a1/Card Storm of Spirits (3) a906ee.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 440821 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: a906ee +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Storm of Spirits (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 52.9442 + posY: 1.360101 + posZ: -72.72034 + rotX: 0.0208097529 + rotY: 269.999451 + rotZ: 0.0167747326 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic 6117a1/Card Summoned Hound (1) 0e8b75.yaml b/unpacked/Custom_Model_Bag Mystic 6117a1/Card Summoned Hound (1) 0e8b75.yaml new file mode 100644 index 000000000..86108c551 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic 6117a1/Card Summoned Hound (1) 0e8b75.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 449135 +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 + UniqueBack: false +Description: Ally. Summon. +GMNotes: '' +GUID: 0e8b75 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Summoned Hound (1) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.2289619 + posY: 1.36098111 + posZ: -58.9008369 + rotX: 0.0208086222 + rotY: 269.999817 + rotZ: 0.0167704 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic 6117a1/Card Time Warp (2) ec3a71.yaml b/unpacked/Custom_Model_Bag Mystic 6117a1/Card Time Warp (2) ec3a71.yaml new file mode 100644 index 000000000..85ca74df7 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic 6117a1/Card Time Warp (2) ec3a71.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: ec3a71 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Time Warp (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 52.9442062 + posY: 1.362794 + posZ: -63.52035 + rotX: 0.0208097268 + rotY: 269.999542 + rotZ: 0.0167720579 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic 6117a1/Card Twila Katherine Price (3) b9b811.yaml b/unpacked/Custom_Model_Bag Mystic 6117a1/Card Twila Katherine Price (3) b9b811.yaml new file mode 100644 index 000000000..8c97c2ad7 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic 6117a1/Card Twila Katherine Price (3) b9b811.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Lost in a Dream +GMNotes: '' +GUID: b9b811 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Twila Katherine Price (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 40.67586 + posY: 1.35968721 + posZ: -58.9128761 + rotX: 0.0208135471 + rotY: 269.9831 + rotZ: 0.01676419 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic 6117a1/Card Ward of Protection (2) 443992.yaml b/unpacked/Custom_Model_Bag Mystic 6117a1/Card Ward of Protection (2) 443992.yaml new file mode 100644 index 000000000..6cd65426b --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic 6117a1/Card Ward of Protection (2) 443992.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: '443992' +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Ward of Protection (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 52.9442139 + posY: 1.36414051 + posZ: -58.9203453 + rotX: 0.0208087452 + rotY: 269.999481 + rotZ: 0.01677002 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic 6117a1/Card Ward of Protection (5) fc4caf.yaml b/unpacked/Custom_Model_Bag Mystic 6117a1/Card Ward of Protection (5) fc4caf.yaml new file mode 100644 index 000000000..5a573916a --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic 6117a1/Card Ward of Protection (5) fc4caf.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: fc4caf +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Ward of Protection (5) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 52.9442062 + posY: 1.35808134 + posZ: -79.6202545 + rotX: 0.020806158 + rotY: 270.013947 + rotZ: 0.0167782735 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic 6117a1/Card Wither (4) c78082.yaml b/unpacked/Custom_Model_Bag Mystic 6117a1/Card Wither (4) c78082.yaml new file mode 100644 index 000000000..bbcac0473 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic 6117a1/Card Wither (4) c78082.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: c78082 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Wither (4) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 40.6758232 + posY: 1.35497439 + posZ: -75.01278 + rotX: 0.0208096243 + rotY: 269.999542 + rotZ: 0.01677493 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic 6117a1/Card Word of Command (2) 16154f.yaml b/unpacked/Custom_Model_Bag Mystic 6117a1/Card Word of Command (2) 16154f.yaml new file mode 100644 index 000000000..e2ec176de --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic 6117a1/Card Word of Command (2) 16154f.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Spell. +GMNotes: '' +GUID: 16154f +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Word of Command (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 52.94421 + posY: 1.36144757 + posZ: -68.12022 + rotX: 0.0208015256 + rotY: 270.029144 + rotZ: 0.016783651 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 8f9a96.ttslua b/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 8f9a96.ttslua new file mode 100644 index 000000000..f882a7f09 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 8f9a96.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,0,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 + 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=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,0,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,0,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,0,0}, height=350, width=750, + 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}, rotation={0,0,0}, height=350, width=800, + font_size=250, color={0,0,0}, font_color={1,1,1} + }) +-- self.createButton({ +-- label="Setup", click_function="buttonClick_setup", function_owner=self, +-- position={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.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 Mystic 6117a1/Custom_Model_Bag Mystic 8f9a96.yaml b/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 8f9a96.yaml new file mode 100644 index 000000000..978698b7b --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 8f9a96.yaml @@ -0,0 +1,107 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +ContainedObjects: +- !include 'Custom_Model_Bag Mystic 8f9a96/Card Fearless (2) e53458.yaml' +- !include 'Custom_Model_Bag Mystic 8f9a96/Card Defiance (2) c311be.yaml' +- !include 'Custom_Model_Bag Mystic 8f9a96/Card Seal of the Elder Sign (5) 918fde.yaml' +- !include 'Custom_Model_Bag Mystic 8f9a96/Card Mind Wipe (1) 3c7e85.yaml' +- !include 'Custom_Model_Bag Mystic 8f9a96/Card Stargazing (1) 9c0a3d.yaml' +- !include 'Custom_Model_Bag Mystic 8f9a96/Card Sacrifice (1) ef52e6.yaml' +- !include 'Custom_Model_Bag Mystic 8f9a96/Card Banish (1) 2403fa.yaml' +- !include 'Custom_Model_Bag Mystic 8f9a96/Card Recharge (2) f560b1.yaml' +- !include 'Custom_Model_Bag Mystic 8f9a96/Card Ward of Protection (2) 443992.yaml' +- !include 'Custom_Model_Bag Mystic 8f9a96/Card Blinding Light (2) fa4a56.yaml' +- !include 'Custom_Model_Bag Mystic 8f9a96/Card Time Warp (2) ec3a71.yaml' +- !include 'Custom_Model_Bag Mystic 8f9a96/Card Counterspell (2) 4fb7c0.yaml' +- !include 'Custom_Model_Bag Mystic 8f9a96/Card Word of Command (2) 16154f.yaml' +- !include 'Custom_Model_Bag Mystic 8f9a96/Card Bind Monster (2) 8f6cb3.yaml' +- !include 'Custom_Model_Bag Mystic 8f9a96/Card Storm of Spirits (3) a906ee.yaml' +- !include 'Custom_Model_Bag Mystic 8f9a96/Card Mind Wipe (3) 82d9bb.yaml' +- !include 'Custom_Model_Bag Mystic 8f9a96/Card Deny Existence (5) d26b84.yaml' +- !include 'Custom_Model_Bag Mystic 8f9a96/Card Ward of Protection (5) fc4caf.yaml' +- !include 'Custom_Model_Bag Mystic 8f9a96/Card Scrying (3) 2b7765.yaml' +- !include 'Custom_Model_Bag Mystic 8f9a96/Card Scroll of Secrets (3) bb9d20.yaml' +- !include 'Custom_Model_Bag Mystic 8f9a96/Card Arcane Initiate (3) 45e559.yaml' +- !include 'Custom_Model_Bag Mystic 8f9a96/Card Blood Pact (3) 86ed13.yaml' +- !include 'Custom_Model_Bag Mystic 8f9a96/Card Rite of Seeking (2) 426c61.yaml' +- !include 'Custom_Model_Bag Mystic 8f9a96/Card Mind''s Eye (2) 4e86c1.yaml' +- !include 'Custom_Model_Bag Mystic 8f9a96/Card Empower Self (2) fea03b.yaml' +- !include 'Custom_Model_Bag Mystic 8f9a96/Card Empower Self (2) 31051f.yaml' +- !include 'Custom_Model_Bag Mystic 8f9a96/Card Empower Self (2) b49ef1.yaml' +- !include 'Custom_Model_Bag Mystic 8f9a96/Card Song of the Dead (2) d4d8c4.yaml' +- !include 'Custom_Model_Bag Mystic 8f9a96/Card Recall the Future (2) bdddfa.yaml' +- !include 'Custom_Model_Bag Mystic 8f9a96/Card De Vermis Mysteriis (2) cb968f.yaml' +- !include 'Custom_Model_Bag Mystic 8f9a96/Card Arcane Studies (2) f89dd6.yaml' +- !include 'Custom_Model_Bag Mystic 8f9a96/Card Shrivelling (3) f1654d.yaml' +- !include 'Custom_Model_Bag Mystic 8f9a96/Card Dayana Esperence (3) fcd9ce.yaml' +- !include 'Custom_Model_Bag Mystic 8f9a96/Card Shining Trapezohedron (4) ef7b23.yaml' +- !include 'Custom_Model_Bag Mystic 8f9a96/Card Grotesque Statue (4) f71c08.yaml' +- !include 'Custom_Model_Bag Mystic 8f9a96/Card Wither (4) c78082.yaml' +- !include 'Custom_Model_Bag Mystic 8f9a96/Card Sixth Sense (4) b9dd5d.yaml' +- !include 'Custom_Model_Bag Mystic 8f9a96/Card Rite of Seeking (4) ea3df4.yaml' +- !include 'Custom_Model_Bag Mystic 8f9a96/Card Seal of the Seventh Sign (5) 8272e9.yaml' +- !include 'Custom_Model_Bag Mystic 8f9a96/Card Shrivelling (5) bb7d83.yaml' +- !include 'Custom_Model_Bag Mystic 8f9a96/Card Mists of R''lyeh (4) 0e2b00.yaml' +- !include 'Custom_Model_Bag Mystic 8f9a96/Card Alchemical Transmutation (2) d74e66.yaml' +- !include 'Custom_Model_Bag Mystic 8f9a96/Card Summoned Hound (1) 0e8b75.yaml' +- !include 'Custom_Model_Bag Mystic 8f9a96/Card Spirit Athame (1) a1c372.yaml' +- !include 'Custom_Model_Bag Mystic 8f9a96/Card Four of Cups (1) f9a151.yaml' +- !include 'Custom_Model_Bag Mystic 8f9a96/Card Book of Shadows (1) becb9c.yaml' +- !include 'Custom_Model_Bag Mystic 8f9a96/Card Protective Incantation (1) c2f6b1.yaml' +- !include 'Custom_Model_Bag Mystic 8f9a96/Card Grounded (1) 7da732.yaml' +- !include 'Custom_Model_Bag Mystic 8f9a96/Card Clarity of Mind (3) 598837.yaml' +- !include 'Custom_Model_Bag Mystic 8f9a96/Card Crystalline Elder Sign (3) 8c0e3b.yaml' +- !include 'Custom_Model_Bag Mystic 8f9a96/Card Enchanted Blade (3) 053015.yaml' +- !include 'Custom_Model_Bag Mystic 8f9a96/Card Jewel of Aureolus (3) 0919cf.yaml' +- !include 'Custom_Model_Bag Mystic 8f9a96/Card Shards of the Void (3) f651e8.yaml' +- !include 'Custom_Model_Bag Mystic 8f9a96/Card Twila Katherine Price (3) b9b811.yaml' +- !include 'Custom_Model_Bag Mystic 8f9a96/Card Book of Shadows (3) 17c6c8.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/952965722516557267/757887224F6C37104CDFFE241FAD09B57117D670/ + MaterialIndex: 3 + MeshURL: https://pastebin.com/raw/ALrYhQGb + NormalURL: '' + TypeIndex: 6 +Description: '' +GMNotes: '' +GUID: 8f9a96 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Model_Bag Mystic 8f9a96.ttslua' +LuaScriptState: '{"ml":{"053015":{"lock":false,"pos":{"x":40.6759,"y":1.3617,"z":-52.0129},"rot":{"x":0.0208,"y":270,"z":0.0168}},"0919cf":{"lock":false,"pos":{"x":40.6759,"y":1.361,"z":-54.3129},"rot":{"x":0.0208,"y":269.9994,"z":0.0168}},"0e2b00":{"lock":false,"pos":{"x":40.6758,"y":1.3556,"z":-72.7128},"rot":{"x":0.0208,"y":269.999,"z":0.0168}},"0e8b75":{"lock":false,"pos":{"x":44.229,"y":1.361,"z":-58.9008},"rot":{"x":0.0208,"y":269.9998,"z":0.0168}},"16154f":{"lock":false,"pos":{"x":52.9443,"y":1.3614,"z":-68.1214},"rot":{"x":0.0208,"y":270.0292,"z":0.0168}},"17c6c8":{"lock":false,"pos":{"x":40.6758,"y":1.359,"z":-61.2129},"rot":{"x":0.0208,"y":269.9821,"z":0.0168}},"2403fa":{"lock":false,"pos":{"x":52.9443,"y":1.3655,"z":-54.3215},"rot":{"x":0.0208,"y":269.9995,"z":0.0168}},"2b7765":{"lock":false,"pos":{"x":44.213,"y":1.3516,"z":-91.0974},"rot":{"x":0.0208,"y":270.0111,"z":0.0168}},"31051f":{"lock":false,"pos":{"x":44.2289,"y":1.3563,"z":-75.0008},"rot":{"x":0.0208,"y":270.0312,"z":0.0168}},"3c7e85":{"lock":false,"pos":{"x":52.9443,"y":1.3662,"z":-52.0215},"rot":{"x":0.0208,"y":269.9995,"z":0.0168}},"426c61":{"lock":false,"pos":{"x":44.231,"y":1.3542,"z":-81.9009},"rot":{"x":0.0208,"y":269.9993,"z":0.0168}},"443992":{"lock":false,"pos":{"x":52.9443,"y":1.3641,"z":-58.9215},"rot":{"x":0.0208,"y":269.9995,"z":0.0168}},"45e559":{"lock":false,"pos":{"x":44.229,"y":1.3529,"z":-86.5007},"rot":{"x":0.0208,"y":269.9994,"z":0.0168}},"4e86c1":{"lock":false,"pos":{"x":44.229,"y":1.3549,"z":-79.6007},"rot":{"x":0.0208,"y":270.0188,"z":0.0168}},"4fb7c0":{"lock":false,"pos":{"x":52.9443,"y":1.3621,"z":-65.8214},"rot":{"x":0.0208,"y":269.9995,"z":0.0168}},"598837":{"lock":false,"pos":{"x":40.6759,"y":1.3631,"z":-47.4129},"rot":{"x":0.0208,"y":269.9995,"z":0.0168}},"7da732":{"lock":false,"pos":{"x":44.229,"y":1.3643,"z":-47.4008},"rot":{"x":0.0208,"y":269.9995,"z":0.0168}},"8272e9":{"lock":false,"pos":{"x":40.6791,"y":1.353,"z":-81.9129},"rot":{"x":0.0208,"y":270.0167,"z":0.0168}},"82d9bb":{"lock":false,"pos":{"x":52.9443,"y":1.3594,"z":-75.0215},"rot":{"x":0.0208,"y":269.9997,"z":0.0168}},"86ed13":{"lock":false,"pos":{"x":44.2289,"y":1.3536,"z":-84.2007},"rot":{"x":0.0208,"y":269.9995,"z":0.0168}},"8c0e3b":{"lock":false,"pos":{"x":40.6759,"y":1.3624,"z":-49.7129},"rot":{"x":0.0208,"y":270.0018,"z":0.0168}},"8f6cb3":{"lock":false,"pos":{"x":52.9443,"y":1.3608,"z":-70.4214},"rot":{"x":0.0208,"y":269.9995,"z":0.0168}},"918fde":{"lock":false,"pos":{"x":58.0998,"y":1.368,"z":-52.0722},"rot":{"x":0.0208,"y":269.9995,"z":0.0168}},"9c0a3d":{"lock":false,"pos":{"x":52.9443,"y":1.3668,"z":-49.7215},"rot":{"x":0.0208,"y":269.9995,"z":0.0168}},"a1c372":{"lock":false,"pos":{"x":44.229,"y":1.3617,"z":-56.6008},"rot":{"x":0.0208,"y":269.9995,"z":0.0168}},"a906ee":{"lock":false,"pos":{"x":52.9443,"y":1.3601,"z":-72.7215},"rot":{"x":0.0208,"y":269.9995,"z":0.0168}},"b49ef1":{"lock":false,"pos":{"x":44.229,"y":1.3569,"z":-72.7007},"rot":{"x":0.0208,"y":269.978,"z":0.0168}},"b9b811":{"lock":false,"pos":{"x":40.6759,"y":1.3597,"z":-58.9129},"rot":{"x":0.0208,"y":269.9831,"z":0.0168}},"b9dd5d":{"lock":false,"pos":{"x":40.6758,"y":1.3543,"z":-77.3127},"rot":{"x":0.0208,"y":269.9993,"z":0.0168}},"bb7d83":{"lock":false,"pos":{"x":40.6791,"y":1.3523,"z":-84.2122},"rot":{"x":0.0208,"y":270.0334,"z":0.0168}},"bb9d20":{"lock":false,"pos":{"x":44.2132,"y":1.3522,"z":-88.7901},"rot":{"x":0.0208,"y":269.9992,"z":0.0168}},"bdddfa":{"lock":false,"pos":{"x":44.229,"y":1.3583,"z":-68.1007},"rot":{"x":0.0208,"y":269.9995,"z":0.0168}},"becb9c":{"lock":false,"pos":{"x":44.229,"y":1.363,"z":-52.0008},"rot":{"x":0.0208,"y":269.9995,"z":0.0168}},"c2f6b1":{"lock":false,"pos":{"x":44.229,"y":1.3637,"z":-49.7008},"rot":{"x":0.0208,"y":269.9995,"z":0.0168}},"c311be":{"lock":false,"pos":{"x":58.0998,"y":1.3687,"z":-49.7722},"rot":{"x":0.0208,"y":269.9995,"z":0.0168}},"c78082":{"lock":false,"pos":{"x":40.6758,"y":1.355,"z":-75.0128},"rot":{"x":0.0208,"y":269.9995,"z":0.0168}},"cb968f":{"lock":false,"pos":{"x":44.229,"y":1.359,"z":-65.8007},"rot":{"x":0.0208,"y":269.9996,"z":0.0168}},"d26b84":{"lock":false,"pos":{"x":52.9443,"y":1.3588,"z":-77.3214},"rot":{"x":0.0208,"y":269.9995,"z":0.0168}},"d4d8c4":{"lock":false,"pos":{"x":44.229,"y":1.3576,"z":-70.4007},"rot":{"x":0.0208,"y":269.9994,"z":0.0168}},"d74e66":{"lock":false,"pos":{"x":44.229,"y":1.3603,"z":-61.2008},"rot":{"x":0.0208,"y":269.9995,"z":0.0168}},"e53458":{"lock":false,"pos":{"x":58.0998,"y":1.3694,"z":-47.4722},"rot":{"x":0.0208,"y":269.9995,"z":0.0168}},"ea3df4":{"lock":false,"pos":{"x":40.676,"y":1.3536,"z":-79.6126},"rot":{"x":0.0208,"y":269.9996,"z":0.0168}},"ec3a71":{"lock":false,"pos":{"x":52.9443,"y":1.3628,"z":-63.5215},"rot":{"x":0.0208,"y":269.9995,"z":0.0168}},"ef52e6":{"lock":false,"pos":{"x":52.9443,"y":1.3675,"z":-47.4215},"rot":{"x":0.0208,"y":269.9995,"z":0.0168}},"ef7b23":{"lock":false,"pos":{"x":40.6759,"y":1.357,"z":-68.1127},"rot":{"x":0.0208,"y":269.9971,"z":0.0168}},"f1654d":{"lock":false,"pos":{"x":40.6759,"y":1.3583,"z":-63.5129},"rot":{"x":0.0208,"y":269.9995,"z":0.0168}},"f560b1":{"lock":false,"pos":{"x":52.9443,"y":1.3648,"z":-56.6215},"rot":{"x":0.0208,"y":269.9995,"z":0.0168}},"f651e8":{"lock":false,"pos":{"x":40.6759,"y":1.3604,"z":-56.6129},"rot":{"x":0.0208,"y":270.0041,"z":0.0168}},"f71c08":{"lock":false,"pos":{"x":40.6758,"y":1.3563,"z":-70.4128},"rot":{"x":0.0208,"y":269.9995,"z":0.0168}},"f89dd6":{"lock":false,"pos":{"x":44.229,"y":1.3596,"z":-63.5008},"rot":{"x":0.0208,"y":269.9995,"z":0.0168}},"f9a151":{"lock":false,"pos":{"x":44.229,"y":1.3623,"z":-54.3008},"rot":{"x":0.0208,"y":269.9995,"z":0.0168}},"fa4a56":{"lock":false,"pos":{"x":52.9443,"y":1.3635,"z":-61.2215},"rot":{"x":0.0208,"y":269.9995,"z":0.0168}},"fc4caf":{"lock":false,"pos":{"x":52.9442,"y":1.3581,"z":-79.6203},"rot":{"x":0.0208,"y":270.0139,"z":0.0168}},"fcd9ce":{"lock":false,"pos":{"x":40.6759,"y":1.3577,"z":-65.8127},"rot":{"x":0.0208,"y":269.9995,"z":0.0168}},"fea03b":{"lock":false,"pos":{"x":44.229,"y":1.3556,"z":-77.3007},"rot":{"x":0.0208,"y":269.9643,"z":0.0168}}}}' +MaterialIndex: -1 +MeshIndex: -1 +Name: Custom_Model_Bag +Nickname: Mystic +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 66.2996 + posY: 1.66786456 + posZ: -80.18449 + rotX: 0.0140683623 + rotY: 270.022125 + rotZ: 0.0142999049 + scaleX: 1.2 + scaleY: 1.2 + scaleZ: 1.2 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 8f9a96/Card Alchemical Transmutation (2) d74e66.yaml b/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 8f9a96/Card Alchemical Transmutation (2) d74e66.yaml new file mode 100644 index 000000000..edcbf630a --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 8f9a96/Card Alchemical Transmutation (2) d74e66.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 440820 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: d74e66 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Alchemical Transmutation (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.2289543 + posY: 1.36030793 + posZ: -61.20084 + rotX: 0.0208086614 + rotY: 269.999481 + rotZ: 0.0167703349 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 8f9a96/Card Arcane Initiate (3) 45e559.yaml b/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 8f9a96/Card Arcane Initiate (3) 45e559.yaml new file mode 100644 index 000000000..c08e503e2 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 8f9a96/Card Arcane Initiate (3) 45e559.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 45e559 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Arcane Initiate (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.2289963 + posY: 1.35290217 + posZ: -86.50067 + rotX: 0.020810511 + rotY: 269.99942 + rotZ: 0.0167729463 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 8f9a96/Card Arcane Studies (2) f89dd6.yaml b/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 8f9a96/Card Arcane Studies (2) f89dd6.yaml new file mode 100644 index 000000000..376206649 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 8f9a96/Card Arcane Studies (2) f89dd6.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: f89dd6 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Arcane Studies (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.2289543 + posY: 1.35963464 + posZ: -63.500843 + rotX: 0.0208098944 + rotY: 269.999451 + rotZ: 0.016771907 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 8f9a96/Card Banish (1) 2403fa.yaml b/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 8f9a96/Card Banish (1) 2403fa.yaml new file mode 100644 index 000000000..b9cb043c7 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 8f9a96/Card Banish (1) 2403fa.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 2403fa +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Banish (1) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 52.9442177 + posY: 1.365487 + posZ: -54.32034 + rotX: 0.0208087638 + rotY: 269.999481 + rotZ: 0.0167699158 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 8f9a96/Card Bind Monster (2) 8f6cb3.yaml b/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 8f9a96/Card Bind Monster (2) 8f6cb3.yaml new file mode 100644 index 000000000..1e744d5ee --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 8f9a96/Card Bind Monster (2) 8f6cb3.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 8f6cb3 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Bind Monster (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 52.9442024 + posY: 1.36077428 + posZ: -70.42022 + rotX: 0.02081003 + rotY: 269.999451 + rotZ: 0.0167748015 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 8f9a96/Card Blinding Light (2) fa4a56.yaml b/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 8f9a96/Card Blinding Light (2) fa4a56.yaml new file mode 100644 index 000000000..be6780c3a --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 8f9a96/Card Blinding Light (2) fa4a56.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: fa4a56 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Blinding Light (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 52.9442062 + posY: 1.36346734 + posZ: -61.22035 + rotX: 0.0208086614 + rotY: 269.999481 + rotZ: 0.0167702436 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 8f9a96/Card Blood Pact (3) 86ed13.yaml b/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 8f9a96/Card Blood Pact (3) 86ed13.yaml new file mode 100644 index 000000000..9cbb40e7a --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 8f9a96/Card Blood Pact (3) 86ed13.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 86ed13 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Blood Pact (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.2288666 + posY: 1.35357547 + posZ: -84.20065 + rotX: 0.02081042 + rotY: 269.9995 + rotZ: 0.016772531 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 8f9a96/Card Book of Shadows (1) becb9c.yaml b/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 8f9a96/Card Book of Shadows (1) becb9c.yaml new file mode 100644 index 000000000..c4d02f9cd --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 8f9a96/Card Book of Shadows (1) becb9c.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: becb9c +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Book of Shadows (1) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.2289619 + posY: 1.36300087 + posZ: -52.0008278 + rotX: 0.0208087061 + rotY: 269.999481 + rotZ: 0.0167701151 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 8f9a96/Card Book of Shadows (3) 17c6c8.yaml b/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 8f9a96/Card Book of Shadows (3) 17c6c8.yaml new file mode 100644 index 000000000..ee0c8361f --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 8f9a96/Card Book of Shadows (3) 17c6c8.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 17c6c8 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Book of Shadows (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 40.67585 + posY: 1.35901392 + posZ: -61.21288 + rotX: 0.0208138656 + rotY: 269.982056 + rotZ: 0.0167637728 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 8f9a96/Card Clarity of Mind (3) 598837.yaml b/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 8f9a96/Card Clarity of Mind (3) 598837.yaml new file mode 100644 index 000000000..e9a35c0b3 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 8f9a96/Card Clarity of Mind (3) 598837.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 278203 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2782': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025945336/04E36F64C2CBE1B4905FF44A869C75EC52CB3A56/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: '598837' +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Clarity of Mind (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 40.67586 + posY: 1.36305332 + posZ: -47.41287 + rotX: 0.020808598 + rotY: 269.999481 + rotZ: 0.0167700853 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 8f9a96/Card Counterspell (2) 4fb7c0.yaml b/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 8f9a96/Card Counterspell (2) 4fb7c0.yaml new file mode 100644 index 000000000..9da5c2783 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 8f9a96/Card Counterspell (2) 4fb7c0.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 4fb7c0 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Counterspell (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 52.94421 + posY: 1.36212075 + posZ: -65.82021 + rotX: 0.0208108239 + rotY: 269.999451 + rotZ: 0.0167728513 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 8f9a96/Card Crystalline Elder Sign (3) 8c0e3b.yaml b/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 8f9a96/Card Crystalline Elder Sign (3) 8c0e3b.yaml new file mode 100644 index 000000000..92a6235d2 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 8f9a96/Card Crystalline Elder Sign (3) 8c0e3b.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 8c0e3b +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Crystalline Elder Sign (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 40.67586 + posY: 1.36238015 + posZ: -49.7128563 + rotX: 0.0208079685 + rotY: 270.0018 + rotZ: 0.0167714339 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 8f9a96/Card Dayana Esperence (3) fcd9ce.yaml b/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 8f9a96/Card Dayana Esperence (3) fcd9ce.yaml new file mode 100644 index 000000000..aa62779b3 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 8f9a96/Card Dayana Esperence (3) fcd9ce.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Deals with "Devils" +GMNotes: '' +GUID: fcd9ce +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Dayana Esperence (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 40.6758537 + posY: 1.35766745 + posZ: -65.8127441 + rotX: 0.02081082 + rotY: 269.999451 + rotZ: 0.01677291 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 8f9a96/Card De Vermis Mysteriis (2) cb968f.yaml b/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 8f9a96/Card De Vermis Mysteriis (2) cb968f.yaml new file mode 100644 index 000000000..8626a1cae --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 8f9a96/Card De Vermis Mysteriis (2) cb968f.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Signs of the Black Stars +GMNotes: '' +GUID: cb968f +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: De Vermis Mysteriis (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.2289543 + posY: 1.35896134 + posZ: -65.800705 + rotX: 0.020810429 + rotY: 269.999634 + rotZ: 0.0167726818 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 8f9a96/Card Defiance (2) c311be.yaml b/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 8f9a96/Card Defiance (2) c311be.yaml new file mode 100644 index 000000000..173a5f230 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 8f9a96/Card Defiance (2) c311be.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: c311be +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Defiance (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 58.0996628 + posY: 1.368691 + posZ: -49.77096 + rotX: 0.0208086539 + rotY: 269.999481 + rotZ: 0.0167706385 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 8f9a96/Card Deny Existence (5) d26b84.yaml b/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 8f9a96/Card Deny Existence (5) d26b84.yaml new file mode 100644 index 000000000..2838d9785 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 8f9a96/Card Deny Existence (5) d26b84.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: d26b84 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Deny Existence (5) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 52.9442024 + posY: 1.35875452 + posZ: -77.32025 + rotX: 0.02080966 + rotY: 269.999451 + rotZ: 0.0167743843 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 8f9a96/Card Empower Self (2) 31051f.yaml b/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 8f9a96/Card Empower Self (2) 31051f.yaml new file mode 100644 index 000000000..84042a7ce --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 8f9a96/Card Empower Self (2) 31051f.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Alacrity +GMNotes: '' +GUID: 31051f +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Empower Self (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.2289467 + posY: 1.35626841 + posZ: -75.0007553 + rotX: 0.020800408 + rotY: 270.031219 + rotZ: 0.0167863239 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 8f9a96/Card Empower Self (2) b49ef1.yaml b/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 8f9a96/Card Empower Self (2) b49ef1.yaml new file mode 100644 index 000000000..f82eeacce --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 8f9a96/Card Empower Self (2) b49ef1.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Stamina +GMNotes: '' +GUID: b49ef1 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Empower Self (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.22895 + posY: 1.35694158 + posZ: -72.7007446 + rotX: 0.0208170563 + rotY: 269.978027 + rotZ: 0.0167649016 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 8f9a96/Card Empower Self (2) fea03b.yaml b/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 8f9a96/Card Empower Self (2) fea03b.yaml new file mode 100644 index 000000000..809cd9423 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 8f9a96/Card Empower Self (2) fea03b.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Acuity +GMNotes: '' +GUID: fea03b +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Empower Self (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.2289543 + posY: 1.35559523 + posZ: -77.30066 + rotX: 0.0208207611 + rotY: 269.964325 + rotZ: 0.0167600866 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 8f9a96/Card Enchanted Blade (3) 053015.yaml b/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 8f9a96/Card Enchanted Blade (3) 053015.yaml new file mode 100644 index 000000000..b0381a599 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 8f9a96/Card Enchanted Blade (3) 053015.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Mystic +GMNotes: '' +GUID: '053015' +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Enchanted Blade (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 40.67586 + posY: 1.36170685 + posZ: -52.01286 + rotX: 0.0208084881 + rotY: 270.000031 + rotZ: 0.0167704821 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 8f9a96/Card Fearless (2) e53458.yaml b/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 8f9a96/Card Fearless (2) e53458.yaml new file mode 100644 index 000000000..3ab14dcfe --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 8f9a96/Card Fearless (2) e53458.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: e53458 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Fearless (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 58.0996628 + posY: 1.36936426 + posZ: -47.470974 + rotX: 0.020808747 + rotY: 269.999481 + rotZ: 0.0167701822 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 8f9a96/Card Four of Cups (1) f9a151.yaml b/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 8f9a96/Card Four of Cups (1) f9a151.yaml new file mode 100644 index 000000000..c6187967f --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 8f9a96/Card Four of Cups (1) f9a151.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 278305 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2783': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025945336/04E36F64C2CBE1B4905FF44A869C75EC52CB3A56/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: Chalice of the Heart +GMNotes: '' +GUID: f9a151 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Four of Cups (1) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.2289658 + posY: 1.36232758 + posZ: -54.30083 + rotX: 0.02080877 + rotY: 269.999451 + rotZ: 0.0167700518 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 8f9a96/Card Grotesque Statue (4) f71c08.yaml b/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 8f9a96/Card Grotesque Statue (4) f71c08.yaml new file mode 100644 index 000000000..81f74e35f --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 8f9a96/Card Grotesque Statue (4) f71c08.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: f71c08 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Grotesque Statue (4) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 40.67585 + posY: 1.356321 + posZ: -70.41275 + rotX: 0.02081036 + rotY: 269.9995 + rotZ: 0.0167727545 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 8f9a96/Card Grounded (1) 7da732.yaml b/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 8f9a96/Card Grounded (1) 7da732.yaml new file mode 100644 index 000000000..2a09614ca --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 8f9a96/Card Grounded (1) 7da732.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 7da732 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Grounded (1) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.2289619 + posY: 1.36434734 + posZ: -47.4008369 + rotX: 0.02080869 + rotY: 269.9995 + rotZ: 0.0167702455 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 8f9a96/Card Jewel of Aureolus (3) 0919cf.yaml b/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 8f9a96/Card Jewel of Aureolus (3) 0919cf.yaml new file mode 100644 index 000000000..0bf0c7b58 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 8f9a96/Card Jewel of Aureolus (3) 0919cf.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Gift of the Homunculi +GMNotes: '' +GUID: 0919cf +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Jewel of Aureolus (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 40.6758652 + posY: 1.36103368 + posZ: -54.31287 + rotX: 0.0208085421 + rotY: 269.9994 + rotZ: 0.01677023 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 8f9a96/Card Mind Wipe (1) 3c7e85.yaml b/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 8f9a96/Card Mind Wipe (1) 3c7e85.yaml new file mode 100644 index 000000000..b5a6b3dd8 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 8f9a96/Card Mind Wipe (1) 3c7e85.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 3c7e85 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Mind Wipe (1) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 52.9442139 + posY: 1.36616027 + posZ: -52.0203362 + rotX: 0.0208090134 + rotY: 269.999481 + rotZ: 0.01677027 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 8f9a96/Card Mind Wipe (3) 82d9bb.yaml b/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 8f9a96/Card Mind Wipe (3) 82d9bb.yaml new file mode 100644 index 000000000..f31d8ff45 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 8f9a96/Card Mind Wipe (3) 82d9bb.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 82d9bb +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Mind Wipe (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 52.9442024 + posY: 1.35942781 + posZ: -75.02035 + rotX: 0.0208102837 + rotY: 269.9996 + rotZ: 0.0167725459 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 8f9a96/Card Mind's Eye (2) 4e86c1.yaml b/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 8f9a96/Card Mind's Eye (2) 4e86c1.yaml new file mode 100644 index 000000000..a7d73d9a8 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 8f9a96/Card Mind's Eye (2) 4e86c1.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 449137 +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 + UniqueBack: false +Description: Ritual. +GMNotes: '' +GUID: 4e86c1 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Mind's Eye (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.2289543 + posY: 1.35492194 + posZ: -79.60066 + rotX: 0.020804964 + rotY: 270.0188 + rotZ: 0.01677978 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 8f9a96/Card Mists of R'lyeh (4) 0e2b00.yaml b/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 8f9a96/Card Mists of R'lyeh (4) 0e2b00.yaml new file mode 100644 index 000000000..e3e4bddae --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 8f9a96/Card Mists of R'lyeh (4) 0e2b00.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 0e2b00 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Mists of R'lyeh (4) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 40.6758423 + posY: 1.35564768 + posZ: -72.71276 + rotX: 0.0208115671 + rotY: 269.999023 + rotZ: 0.0167725869 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 8f9a96/Card Protective Incantation (1) c2f6b1.yaml b/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 8f9a96/Card Protective Incantation (1) c2f6b1.yaml new file mode 100644 index 000000000..5c1d13c59 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 8f9a96/Card Protective Incantation (1) c2f6b1.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: c2f6b1 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Protective Incantation (1) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.22896 + posY: 1.363674 + posZ: -49.7008247 + rotX: 0.0208087079 + rotY: 269.9995 + rotZ: 0.0167701282 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 8f9a96/Card Recall the Future (2) bdddfa.yaml b/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 8f9a96/Card Recall the Future (2) bdddfa.yaml new file mode 100644 index 000000000..1260fd0b5 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 8f9a96/Card Recall the Future (2) bdddfa.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: bdddfa +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Recall the Future (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.2289543 + posY: 1.35828817 + posZ: -68.10071 + rotX: 0.0208095219 + rotY: 269.999451 + rotZ: 0.016774809 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 8f9a96/Card Recharge (2) f560b1.yaml b/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 8f9a96/Card Recharge (2) f560b1.yaml new file mode 100644 index 000000000..9c46dbcf2 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 8f9a96/Card Recharge (2) f560b1.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: f560b1 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Recharge (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 52.9442177 + posY: 1.3648138 + posZ: -56.6203423 + rotX: 0.0208084118 + rotY: 269.999481 + rotZ: 0.0167702641 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 8f9a96/Card Rite of Seeking (2) 426c61.yaml b/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 8f9a96/Card Rite of Seeking (2) 426c61.yaml new file mode 100644 index 000000000..e09ccbb66 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 8f9a96/Card Rite of Seeking (2) 426c61.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 278204 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2782': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025945336/04E36F64C2CBE1B4905FF44A869C75EC52CB3A56/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 426c61 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Rite of Seeking (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.23099 + posY: 1.35424936 + posZ: -81.90088 + rotX: 0.0208107885 + rotY: 269.999329 + rotZ: 0.0167728812 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 8f9a96/Card Rite of Seeking (4) ea3df4.yaml b/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 8f9a96/Card Rite of Seeking (4) ea3df4.yaml new file mode 100644 index 000000000..09c5f9d12 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 8f9a96/Card Rite of Seeking (4) ea3df4.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: ea3df4 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Rite of Seeking (4) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 40.67597 + posY: 1.353628 + posZ: -79.61265 + rotX: 0.0208104625 + rotY: 269.999573 + rotZ: 0.0167728718 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 8f9a96/Card Sacrifice (1) ef52e6.yaml b/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 8f9a96/Card Sacrifice (1) ef52e6.yaml new file mode 100644 index 000000000..990e22989 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 8f9a96/Card Sacrifice (1) ef52e6.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: ef52e6 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Sacrifice (1) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 52.9442139 + posY: 1.36750674 + posZ: -47.4203453 + rotX: 0.0208087973 + rotY: 269.999481 + rotZ: 0.0167700816 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 8f9a96/Card Scroll of Secrets (3) bb9d20.yaml b/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 8f9a96/Card Scroll of Secrets (3) bb9d20.yaml new file mode 100644 index 000000000..6dabec733 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 8f9a96/Card Scroll of Secrets (3) bb9d20.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Mystic +GMNotes: '' +GUID: bb9d20 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Scroll of Secrets (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.2131767 + posY: 1.35222638 + posZ: -88.7901154 + rotX: 0.02081076 + rotY: 269.999176 + rotZ: 0.0167728551 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 8f9a96/Card Scrying (3) 2b7765.yaml b/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 8f9a96/Card Scrying (3) 2b7765.yaml new file mode 100644 index 000000000..348e7d615 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 8f9a96/Card Scrying (3) 2b7765.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 230350 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 2b7765 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Scrying (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.2130051 + posY: 1.35155082 + posZ: -91.09744 + rotX: 0.0208071116 + rotY: 270.0111 + rotZ: 0.0167771149 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 8f9a96/Card Seal of the Elder Sign (5) 918fde.yaml b/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 8f9a96/Card Seal of the Elder Sign (5) 918fde.yaml new file mode 100644 index 000000000..292407663 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 8f9a96/Card Seal of the Elder Sign (5) 918fde.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 918fde +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Seal of the Elder Sign (5) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 58.0996628 + posY: 1.36801779 + posZ: -52.0709648 + rotX: 0.0208086781 + rotY: 269.9995 + rotZ: 0.01677015 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 8f9a96/Card Seal of the Seventh Sign (5) 8272e9.yaml b/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 8f9a96/Card Seal of the Seventh Sign (5) 8272e9.yaml new file mode 100644 index 000000000..f627c826c --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 8f9a96/Card Seal of the Seventh Sign (5) 8272e9.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 278101 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2781': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025945336/04E36F64C2CBE1B4905FF44A869C75EC52CB3A56/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: Over the Threshold and Beyond +GMNotes: '' +GUID: 8272e9 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Seal of the Seventh Sign (5) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 40.6790733 + posY: 1.35295594 + posZ: -81.91287 + rotX: 0.020805629 + rotY: 270.016663 + rotZ: 0.0167775862 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 8f9a96/Card Shards of the Void (3) f651e8.yaml b/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 8f9a96/Card Shards of the Void (3) f651e8.yaml new file mode 100644 index 000000000..8daf592ec --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 8f9a96/Card Shards of the Void (3) f651e8.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 278102 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2781': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025945336/04E36F64C2CBE1B4905FF44A869C75EC52CB3A56/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: f651e8 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Shards of the Void (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 40.6758652 + posY: 1.3603605 + posZ: -56.6128731 + rotX: 0.0208072737 + rotY: 270.0041 + rotZ: 0.0167719536 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 8f9a96/Card Shining Trapezohedron (4) ef7b23.yaml b/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 8f9a96/Card Shining Trapezohedron (4) ef7b23.yaml new file mode 100644 index 000000000..086385b1e --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 8f9a96/Card Shining Trapezohedron (4) ef7b23.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 449138 +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 + UniqueBack: false +Description: Item. Relic. +GMNotes: '' +GUID: ef7b23 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Shining Trapezohedron (4) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 40.6758537 + posY: 1.35699427 + posZ: -68.11275 + rotX: 0.02080938 + rotY: 269.997131 + rotZ: 0.0167651642 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 8f9a96/Card Shrivelling (3) f1654d.yaml b/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 8f9a96/Card Shrivelling (3) f1654d.yaml new file mode 100644 index 000000000..7cb45a860 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 8f9a96/Card Shrivelling (3) f1654d.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: f1654d +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Shrivelling (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 40.6758537 + posY: 1.35834062 + posZ: -63.5128822 + rotX: 0.0208098888 + rotY: 269.999451 + rotZ: 0.0167722423 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 8f9a96/Card Shrivelling (5) bb7d83.yaml b/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 8f9a96/Card Shrivelling (5) bb7d83.yaml new file mode 100644 index 000000000..da2dd9734 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 8f9a96/Card Shrivelling (5) bb7d83.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: bb7d83 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Shrivelling (5) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 40.6790733 + posY: 1.35228288 + posZ: -84.21222 + rotX: 0.0208006073 + rotY: 270.0334 + rotZ: 0.0167852677 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 8f9a96/Card Sixth Sense (4) b9dd5d.yaml b/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 8f9a96/Card Sixth Sense (4) b9dd5d.yaml new file mode 100644 index 000000000..9cd3f4a3a --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 8f9a96/Card Sixth Sense (4) b9dd5d.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: b9dd5d +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Sixth Sense (4) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 40.67583 + posY: 1.35430121 + posZ: -77.31268 + rotX: 0.0208108481 + rotY: 269.999329 + rotZ: 0.0167728029 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 8f9a96/Card Song of the Dead (2) d4d8c4.yaml b/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 8f9a96/Card Song of the Dead (2) d4d8c4.yaml new file mode 100644 index 000000000..bc0cc4efc --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 8f9a96/Card Song of the Dead (2) d4d8c4.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: d4d8c4 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Song of the Dead (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.22895 + posY: 1.35761487 + posZ: -70.40071 + rotX: 0.0208097957 + rotY: 269.99942 + rotZ: 0.0167745631 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 8f9a96/Card Spirit Athame (1) a1c372.yaml b/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 8f9a96/Card Spirit Athame (1) a1c372.yaml new file mode 100644 index 000000000..ebae2d735 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 8f9a96/Card Spirit Athame (1) a1c372.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: a1c372 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Spirit Athame (1) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.2289619 + posY: 1.36165428 + posZ: -56.6008339 + rotX: 0.0208105911 + rotY: 269.999481 + rotZ: 0.0167692173 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 8f9a96/Card Stargazing (1) 9c0a3d.yaml b/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 8f9a96/Card Stargazing (1) 9c0a3d.yaml new file mode 100644 index 000000000..dd2f94739 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 8f9a96/Card Stargazing (1) 9c0a3d.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 440822 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 9c0a3d +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Stargazing (1) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 52.9442139 + posY: 1.36683357 + posZ: -49.7203331 + rotX: 0.02080873 + rotY: 269.999481 + rotZ: 0.0167703182 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 8f9a96/Card Storm of Spirits (3) a906ee.yaml b/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 8f9a96/Card Storm of Spirits (3) a906ee.yaml new file mode 100644 index 000000000..a7e032d7e --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 8f9a96/Card Storm of Spirits (3) a906ee.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 440821 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: a906ee +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Storm of Spirits (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 52.9442 + posY: 1.360101 + posZ: -72.72034 + rotX: 0.0208097529 + rotY: 269.999451 + rotZ: 0.0167747326 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 8f9a96/Card Summoned Hound (1) 0e8b75.yaml b/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 8f9a96/Card Summoned Hound (1) 0e8b75.yaml new file mode 100644 index 000000000..86108c551 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 8f9a96/Card Summoned Hound (1) 0e8b75.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 449135 +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 + UniqueBack: false +Description: Ally. Summon. +GMNotes: '' +GUID: 0e8b75 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Summoned Hound (1) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.2289619 + posY: 1.36098111 + posZ: -58.9008369 + rotX: 0.0208086222 + rotY: 269.999817 + rotZ: 0.0167704 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 8f9a96/Card Time Warp (2) ec3a71.yaml b/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 8f9a96/Card Time Warp (2) ec3a71.yaml new file mode 100644 index 000000000..85ca74df7 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 8f9a96/Card Time Warp (2) ec3a71.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: ec3a71 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Time Warp (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 52.9442062 + posY: 1.362794 + posZ: -63.52035 + rotX: 0.0208097268 + rotY: 269.999542 + rotZ: 0.0167720579 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 8f9a96/Card Twila Katherine Price (3) b9b811.yaml b/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 8f9a96/Card Twila Katherine Price (3) b9b811.yaml new file mode 100644 index 000000000..8c97c2ad7 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 8f9a96/Card Twila Katherine Price (3) b9b811.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Lost in a Dream +GMNotes: '' +GUID: b9b811 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Twila Katherine Price (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 40.67586 + posY: 1.35968721 + posZ: -58.9128761 + rotX: 0.0208135471 + rotY: 269.9831 + rotZ: 0.01676419 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 8f9a96/Card Ward of Protection (2) 443992.yaml b/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 8f9a96/Card Ward of Protection (2) 443992.yaml new file mode 100644 index 000000000..6cd65426b --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 8f9a96/Card Ward of Protection (2) 443992.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: '443992' +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Ward of Protection (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 52.9442139 + posY: 1.36414051 + posZ: -58.9203453 + rotX: 0.0208087452 + rotY: 269.999481 + rotZ: 0.01677002 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 8f9a96/Card Ward of Protection (5) fc4caf.yaml b/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 8f9a96/Card Ward of Protection (5) fc4caf.yaml new file mode 100644 index 000000000..5a573916a --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 8f9a96/Card Ward of Protection (5) fc4caf.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: fc4caf +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Ward of Protection (5) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 52.9442062 + posY: 1.35808134 + posZ: -79.6202545 + rotX: 0.020806158 + rotY: 270.013947 + rotZ: 0.0167782735 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 8f9a96/Card Wither (4) c78082.yaml b/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 8f9a96/Card Wither (4) c78082.yaml new file mode 100644 index 000000000..bbcac0473 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 8f9a96/Card Wither (4) c78082.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: c78082 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Wither (4) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 40.6758232 + posY: 1.35497439 + posZ: -75.01278 + rotX: 0.0208096243 + rotY: 269.999542 + rotZ: 0.01677493 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 8f9a96/Card Word of Command (2) 16154f.yaml b/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 8f9a96/Card Word of Command (2) 16154f.yaml new file mode 100644 index 000000000..e2ec176de --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic 6117a1/Custom_Model_Bag Mystic 8f9a96/Card Word of Command (2) 16154f.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Spell. +GMNotes: '' +GUID: 16154f +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Word of Command (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 52.94421 + posY: 1.36144757 + posZ: -68.12022 + rotX: 0.0208015256 + rotY: 270.029144 + rotZ: 0.016783651 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic 64bb5b.ttslua b/unpacked/Custom_Model_Bag Mystic 64bb5b.ttslua new file mode 100644 index 000000000..857093fb8 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic 64bb5b.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,0,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 + 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=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,0,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,0,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,0,0}, height=350, width=750, + 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}, rotation={0,0,0}, height=350, width=800, + font_size=250, color={0,0,0}, font_color={1,1,1} + }) +-- self.createButton({ +-- label="Setup", click_function="buttonClick_setup", function_owner=self, +-- position={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.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 \ No newline at end of file diff --git a/unpacked/Custom_Model_Bag Mystic 64bb5b.yaml b/unpacked/Custom_Model_Bag Mystic 64bb5b.yaml new file mode 100644 index 000000000..d76ea90f3 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic 64bb5b.yaml @@ -0,0 +1,100 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +ContainedObjects: +- !include 'Custom_Model_Bag Mystic 64bb5b/Card Torrent of Power 8017d9.yaml' +- !include 'Custom_Model_Bag Mystic 64bb5b/Card Prophesy 4a9214.yaml' +- !include 'Custom_Model_Bag Mystic 64bb5b/Card Enraptured 69b332.yaml' +- !include 'Custom_Model_Bag Mystic 64bb5b/Card Defiance d5f8d1.yaml' +- !include 'Custom_Model_Bag Mystic 64bb5b/Card Fearless 322e0e.yaml' +- !include 'Custom_Model_Bag Mystic 64bb5b/Card Uncage the Soul b38243.yaml' +- !include 'Custom_Model_Bag Mystic 64bb5b/Card Drawn to the Flame 565cb2.yaml' +- !include 'Custom_Model_Bag Mystic 64bb5b/Card Premonition 6e98b8.yaml' +- !include 'Custom_Model_Bag Mystic 64bb5b/Card Eldritch Inspiration b146d4.yaml' +- !include 'Custom_Model_Bag Mystic 64bb5b/Card Deny Existence 303af5.yaml' +- !include 'Custom_Model_Bag Mystic 64bb5b/Card Moonlight Ritual aa03c1.yaml' +- !include 'Custom_Model_Bag Mystic 64bb5b/Card Quantum Flux 6a0e2b.yaml' +- !include 'Custom_Model_Bag Mystic 64bb5b/Card Ward of Protection 862255.yaml' +- !include 'Custom_Model_Bag Mystic 64bb5b/Card Open Gate 65e124.yaml' +- !include 'Custom_Model_Bag Mystic 64bb5b/Card Dark Prophecy 833348.yaml' +- !include 'Custom_Model_Bag Mystic 64bb5b/Card Delve too Deep bde120.yaml' +- !include 'Custom_Model_Bag Mystic 64bb5b/Card Blinding Light 0daceb.yaml' +- !include 'Custom_Model_Bag Mystic 64bb5b/Card Ethereal Form 762a22.yaml' +- !include 'Custom_Model_Bag Mystic 64bb5b/Card Read the Signs 1e0818.yaml' +- !include 'Custom_Model_Bag Mystic 64bb5b/Card Spectral Razor 8e8a14.yaml' +- !include 'Custom_Model_Bag Mystic 64bb5b/Card Astral Travel 0cedc1.yaml' +- !include 'Custom_Model_Bag Mystic 64bb5b/Card Hypnotic Gaze b535b5.yaml' +- !include 'Custom_Model_Bag Mystic 64bb5b/Card Storm of Spirits 05f644.yaml' +- !include 'Custom_Model_Bag Mystic 64bb5b/Card Sign Magick e90b04.yaml' +- !include 'Custom_Model_Bag Mystic 64bb5b/Card Shrivelling cfd68d.yaml' +- !include 'Custom_Model_Bag Mystic 64bb5b/Card Scroll of Prophecies f4034c.yaml' +- !include 'Custom_Model_Bag Mystic 64bb5b/Card Enchanted Blade a5a6cd.yaml' +- !include 'Custom_Model_Bag Mystic 64bb5b/Card The Chthonian Stone ed310c.yaml' +- !include 'Custom_Model_Bag Mystic 64bb5b/Card Wither ef36a1.yaml' +- !include 'Custom_Model_Bag Mystic 64bb5b/Card Mists of R''lyeh 6e4969.yaml' +- !include 'Custom_Model_Bag Mystic 64bb5b/Card David Renfield 20174f.yaml' +- !include 'Custom_Model_Bag Mystic 64bb5b/Card Arcane Studies 58a92e.yaml' +- !include 'Custom_Model_Bag Mystic 64bb5b/Card Holy Rosary 2c31e0.yaml' +- !include 'Custom_Model_Bag Mystic 64bb5b/Card Healing Words 4132e5.yaml' +- !include 'Custom_Model_Bag Mystic 64bb5b/Card Clarity of Mind 294b5d.yaml' +- !include 'Custom_Model_Bag Mystic 64bb5b/Card Olive McBride 53cb9f.yaml' +- !include 'Custom_Model_Bag Mystic 64bb5b/Card Alchemical Transmutation 964dee.yaml' +- !include 'Custom_Model_Bag Mystic 64bb5b/Card Scrying cf397c.yaml' +- !include 'Custom_Model_Bag Mystic 64bb5b/Card Scroll of Secrets b2c2a3.yaml' +- !include 'Custom_Model_Bag Mystic 64bb5b/Card Arcane Initiate de820a.yaml' +- !include 'Custom_Model_Bag Mystic 64bb5b/Card Ritual Candles 3c4ca3.yaml' +- !include 'Custom_Model_Bag Mystic 64bb5b/Card Forbidden Knowledge 90b11b.yaml' +- !include 'Custom_Model_Bag Mystic 64bb5b/Card Arcane Research 5c9ce3.yaml' +- !include 'Custom_Model_Bag Mystic 64bb5b/Card Sixth Sense 8070ac.yaml' +- !include 'Custom_Model_Bag Mystic 64bb5b/Card Rite of Seeking 4a569b.yaml' +- !include 'Custom_Model_Bag Mystic 64bb5b/Card Alyssa Graham 46cc4f.yaml' +- !include 'Custom_Model_Bag Mystic 64bb5b/Card St. Hubert''s Key 590c4a.yaml' +- !include 'Custom_Model_Bag Mystic 64bb5b/Custom_Model_Bag Mystic 1d900d.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/952965722516557267/757887224F6C37104CDFFE241FAD09B57117D670/ + MaterialIndex: 3 + MeshURL: https://pastebin.com/raw/ALrYhQGb + NormalURL: '' + TypeIndex: 6 +Description: '' +GMNotes: '' +GUID: 64bb5b +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: true +LuaScript: !include 'Custom_Model_Bag Mystic 64bb5b.ttslua' +LuaScriptState: '{"ml":{"05f644":{"lock":false,"pos":{"x":19.2842,"y":1.3442,"z":53.3412},"rot":{"x":0.0208,"y":269.9695,"z":0.0168}},"0cedc1":{"lock":false,"pos":{"x":19.2861,"y":1.3455,"z":57.941},"rot":{"x":0.0208,"y":269.9679,"z":0.0168}},"0daceb":{"lock":false,"pos":{"x":19.2841,"y":1.3482,"z":67.1411},"rot":{"x":0.0208,"y":269.9677,"z":0.0168}},"1e0818":{"lock":false,"pos":{"x":19.2841,"y":1.3469,"z":62.5412},"rot":{"x":0.0208,"y":270.0185,"z":0.0168}},"20174f":{"lock":false,"pos":{"x":10.5689,"y":1.3444,"z":64.8607},"rot":{"x":0.0208,"y":270.0311,"z":0.0168}},"294b5d":{"lock":false,"pos":{"x":10.5689,"y":1.3471,"z":74.0607},"rot":{"x":0.0208,"y":270.0309,"z":0.0168}},"2c31e0":{"lock":false,"pos":{"x":10.5689,"y":1.3458,"z":69.4607},"rot":{"x":0.0208,"y":270.031,"z":0.0168}},"303af5":{"lock":false,"pos":{"x":19.2841,"y":1.3556,"z":92.4412},"rot":{"x":0.0208,"y":269.9674,"z":0.0168}},"322e0e":{"lock":false,"pos":{"x":24.4394,"y":1.3548,"z":83.1904},"rot":{"x":0.0208,"y":269.9708,"z":0.0168}},"3c4ca3":{"lock":false,"pos":{"x":10.5689,"y":1.3511,"z":87.8608},"rot":{"x":0.0208,"y":270.0312,"z":0.0168}},"4132e5":{"lock":false,"pos":{"x":10.5689,"y":1.3464,"z":71.7607},"rot":{"x":0.0208,"y":270.0047,"z":0.0168}},"46cc4f":{"lock":false,"pos":{"x":7.0158,"y":1.3498,"z":87.8487},"rot":{"x":0.0208,"y":269.9845,"z":0.0168}},"4a569b":{"lock":false,"pos":{"x":7.0158,"y":1.3505,"z":90.1487},"rot":{"x":0.0208,"y":269.9865,"z":0.0168}},"4a9214":{"lock":false,"pos":{"x":24.4394,"y":1.3568,"z":90.0904},"rot":{"x":0.0208,"y":269.9708,"z":0.0168}},"53cb9f":{"lock":false,"pos":{"x":10.5689,"y":1.3478,"z":76.3607},"rot":{"x":0.0208,"y":270.031,"z":0.0168}},"565cb2":{"lock":false,"pos":{"x":19.2841,"y":1.3536,"z":85.5412},"rot":{"x":0.0208,"y":269.968,"z":0.0168}},"58a92e":{"lock":false,"pos":{"x":10.5689,"y":1.3451,"z":67.1607},"rot":{"x":0.0208,"y":270.031,"z":0.0168}},"590c4a":{"lock":false,"pos":{"x":7.0158,"y":1.3492,"z":85.5487},"rot":{"x":0.0208,"y":269.9805,"z":0.0168}},"5c9ce3":{"lock":false,"pos":{"x":10.5689,"y":1.3525,"z":92.4607},"rot":{"x":0.0208,"y":270.0309,"z":0.0168}},"65e124":{"lock":false,"pos":{"x":19.2841,"y":1.3503,"z":74.0412},"rot":{"x":0.0208,"y":269.9695,"z":0.0168}},"69b332":{"lock":false,"pos":{"x":24.4394,"y":1.3562,"z":87.7904},"rot":{"x":0.0208,"y":269.971,"z":0.0168}},"6a0e2b":{"lock":false,"pos":{"x":19.2841,"y":1.3516,"z":78.6412},"rot":{"x":0.0208,"y":269.9697,"z":0.0168}},"6e4969":{"lock":false,"pos":{"x":10.5689,"y":1.3437,"z":62.5608},"rot":{"x":0.0208,"y":270.0311,"z":0.0168}},"6e98b8":{"lock":false,"pos":{"x":19.2841,"y":1.3543,"z":87.8412},"rot":{"x":0.0208,"y":269.968,"z":0.0168}},"762a22":{"lock":false,"pos":{"x":19.2841,"y":1.3476,"z":64.8411},"rot":{"x":0.0208,"y":270.0125,"z":0.0168}},"8017d9":{"lock":false,"pos":{"x":24.4394,"y":1.3575,"z":92.3904},"rot":{"x":0.0208,"y":269.9707,"z":0.0168}},"8070ac":{"lock":false,"pos":{"x":7.0158,"y":1.3512,"z":92.4487},"rot":{"x":0.0208,"y":269.9703,"z":0.0168}},"833348":{"lock":false,"pos":{"x":19.2841,"y":1.3496,"z":71.7412},"rot":{"x":0.0208,"y":269.9677,"z":0.0168}},"862255":{"lock":false,"pos":{"x":19.2841,"y":1.3509,"z":76.3412},"rot":{"x":0.0208,"y":269.9697,"z":0.0168}},"8e8a14":{"lock":false,"pos":{"x":19.2841,"y":1.3462,"z":60.2412},"rot":{"x":0.0208,"y":270.0016,"z":0.0168}},"90b11b":{"lock":false,"pos":{"x":10.5689,"y":1.3518,"z":90.1608},"rot":{"x":0.0208,"y":270.0309,"z":0.0168}},"964dee":{"lock":false,"pos":{"x":10.5689,"y":1.3484,"z":78.6607},"rot":{"x":0.0208,"y":270.0308,"z":0.0168}},"a5a6cd":{"lock":false,"pos":{"x":10.5688,"y":1.3417,"z":55.6608},"rot":{"x":0.0208,"y":270.0059,"z":0.0168}},"aa03c1":{"lock":false,"pos":{"x":19.2841,"y":1.3523,"z":80.9412},"rot":{"x":0.0208,"y":269.9681,"z":0.0168}},"b146d4":{"lock":false,"pos":{"x":19.2841,"y":1.355,"z":90.1413},"rot":{"x":0.0208,"y":269.9697,"z":0.0168}},"b2c2a3":{"lock":false,"pos":{"x":10.5689,"y":1.3498,"z":83.2607},"rot":{"x":0.0208,"y":270.0309,"z":0.0168}},"b38243":{"lock":false,"pos":{"x":19.2841,"y":1.353,"z":83.2412},"rot":{"x":0.0208,"y":269.9694,"z":0.0168}},"b535b5":{"lock":false,"pos":{"x":19.284,"y":1.3449,"z":55.6412},"rot":{"x":0.0208,"y":269.9674,"z":0.0168}},"bde120":{"lock":false,"pos":{"x":19.2841,"y":1.3489,"z":69.4412},"rot":{"x":0.0208,"y":269.968,"z":0.0168}},"cf397c":{"lock":false,"pos":{"x":10.5689,"y":1.3491,"z":80.9607},"rot":{"x":0.0208,"y":270.0308,"z":0.0168}},"cfd68d":{"lock":false,"pos":{"x":10.5531,"y":1.3404,"z":51.0713},"rot":{"x":0.0208,"y":270.006,"z":0.0168}},"d5f8d1":{"lock":false,"pos":{"x":24.4394,"y":1.3555,"z":85.4904},"rot":{"x":0.0208,"y":269.9708,"z":0.0168}},"de820a":{"lock":false,"pos":{"x":10.5689,"y":1.3505,"z":85.5608},"rot":{"x":0.0208,"y":270.0308,"z":0.0168}},"e90b04":{"lock":false,"pos":{"x":10.5529,"y":1.3397,"z":48.764},"rot":{"x":0.0208,"y":269.8976,"z":0.0167}},"ed310c":{"lock":false,"pos":{"x":10.5709,"y":1.3424,"z":57.9606},"rot":{"x":0.0208,"y":270.006,"z":0.0168}},"ef36a1":{"lock":false,"pos":{"x":10.5689,"y":1.3431,"z":60.2608},"rot":{"x":0.0208,"y":270.031,"z":0.0168}},"f4034c":{"lock":false,"pos":{"x":10.5689,"y":1.341,"z":53.3608},"rot":{"x":0.0208,"y":270.0058,"z":0.0168}}}}' +MaterialIndex: -1 +MeshIndex: -1 +Name: Custom_Model_Bag +Nickname: Mystic +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 32.94981 + posY: 1.39945793 + posZ: 60.203476 + rotX: 0.0208030883 + rotY: 270.026245 + rotZ: 0.0167797133 + scaleX: 1.2 + scaleY: 1.2 + scaleZ: 1.2 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic 64bb5b/Card Alchemical Transmutation 964dee.yaml b/unpacked/Custom_Model_Bag Mystic 64bb5b/Card Alchemical Transmutation 964dee.yaml new file mode 100644 index 000000000..c2b37b943 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic 64bb5b/Card Alchemical Transmutation 964dee.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 964dee +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Alchemical Transmutation +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.5688982 + posY: 1.34844625 + posZ: 78.6607 + rotX: 0.0208002273 + rotY: 270.030762 + rotZ: 0.0167817343 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic 64bb5b/Card Alyssa Graham 46cc4f.yaml b/unpacked/Custom_Model_Bag Mystic 64bb5b/Card Alyssa Graham 46cc4f.yaml new file mode 100644 index 000000000..62b848ea5 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic 64bb5b/Card Alyssa Graham 46cc4f.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Speaker to the Dead +GMNotes: '' +GUID: 46cc4f +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Alyssa Graham +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 7.0158 + posY: 1.34984517 + posZ: 87.8487 + rotX: 0.0208136626 + rotY: 269.984528 + rotZ: 0.0167651381 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic 64bb5b/Card Arcane Initiate de820a.yaml b/unpacked/Custom_Model_Bag Mystic 64bb5b/Card Arcane Initiate de820a.yaml new file mode 100644 index 000000000..2f471b063 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic 64bb5b/Card Arcane Initiate de820a.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: de820a +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Arcane Initiate +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.568902 + posY: 1.350466 + posZ: 85.5608 + rotX: 0.0208004527 + rotY: 270.030823 + rotZ: 0.0167818163 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic 64bb5b/Card Arcane Research 5c9ce3.yaml b/unpacked/Custom_Model_Bag Mystic 64bb5b/Card Arcane Research 5c9ce3.yaml new file mode 100644 index 000000000..23186c35c --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic 64bb5b/Card Arcane Research 5c9ce3.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 5c9ce3 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Arcane Research +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.568902 + posY: 1.35248566 + posZ: 92.4607 + rotX: 0.02080025 + rotY: 270.030884 + rotZ: 0.0167815555 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic 64bb5b/Card Arcane Studies 58a92e.yaml b/unpacked/Custom_Model_Bag Mystic 64bb5b/Card Arcane Studies 58a92e.yaml new file mode 100644 index 000000000..ab8f87d46 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic 64bb5b/Card Arcane Studies 58a92e.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 58a92e +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Arcane Studies +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.5688982 + posY: 1.3450799 + posZ: 67.1607 + rotX: 0.0208000783 + rotY: 270.030975 + rotZ: 0.01678183 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic 64bb5b/Card Astral Travel 0cedc1.yaml b/unpacked/Custom_Model_Bag Mystic 64bb5b/Card Astral Travel 0cedc1.yaml new file mode 100644 index 000000000..0731d1eba --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic 64bb5b/Card Astral Travel 0cedc1.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 0cedc1 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Astral Travel +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.2861462 + posY: 1.34554684 + posZ: 57.94098 + rotX: 0.0208195746 + rotY: 269.967926 + rotZ: 0.0167611819 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic 64bb5b/Card Blinding Light 0daceb.yaml b/unpacked/Custom_Model_Bag Mystic 64bb5b/Card Blinding Light 0daceb.yaml new file mode 100644 index 000000000..1f5c60ef6 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic 64bb5b/Card Blinding Light 0daceb.yaml @@ -0,0 +1,42 @@ +Autoraise: true +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 0daceb +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Blinding Light +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.2841 + posY: 1.34823918 + posZ: 67.1411 + rotX: 0.0208186414 + rotY: 269.967651 + rotZ: 0.0167590268 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic 64bb5b/Card Clarity of Mind 294b5d.yaml b/unpacked/Custom_Model_Bag Mystic 64bb5b/Card Clarity of Mind 294b5d.yaml new file mode 100644 index 000000000..ee17abf01 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic 64bb5b/Card Clarity of Mind 294b5d.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 294b5d +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Clarity of Mind +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.5688982 + posY: 1.34709978 + posZ: 74.0607 + rotX: 0.02080026 + rotY: 270.030884 + rotZ: 0.0167820249 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic 64bb5b/Card Dark Prophecy 833348.yaml b/unpacked/Custom_Model_Bag Mystic 64bb5b/Card Dark Prophecy 833348.yaml new file mode 100644 index 000000000..cb0264f08 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic 64bb5b/Card Dark Prophecy 833348.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: '833348' +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Dark Prophecy +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.2841 + posY: 1.34958577 + posZ: 71.7412 + rotX: 0.0208187066 + rotY: 269.967651 + rotZ: 0.0167587977 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic 64bb5b/Card David Renfield 20174f.yaml b/unpacked/Custom_Model_Bag Mystic 64bb5b/Card David Renfield 20174f.yaml new file mode 100644 index 000000000..6306c6513 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic 64bb5b/Card David Renfield 20174f.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Esteemed Eschatologist +GMNotes: '' +GUID: 20174f +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: David Renfield +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.5688992 + posY: 1.34440672 + posZ: 64.8607 + rotX: 0.0208012946 + rotY: 270.031128 + rotZ: 0.01678296 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic 64bb5b/Card Defiance d5f8d1.yaml b/unpacked/Custom_Model_Bag Mystic 64bb5b/Card Defiance d5f8d1.yaml new file mode 100644 index 000000000..0de9899f5 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic 64bb5b/Card Defiance d5f8d1.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: d5f8d1 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Defiance +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 24.4394 + posY: 1.35548258 + posZ: 85.4904 + rotX: 0.0208178665 + rotY: 269.970764 + rotZ: 0.0167597383 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic 64bb5b/Card Delve too Deep bde120.yaml b/unpacked/Custom_Model_Bag Mystic 64bb5b/Card Delve too Deep bde120.yaml new file mode 100644 index 000000000..b4c69d4bc --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic 64bb5b/Card Delve too Deep bde120.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: bde120 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Delve too Deep +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.2841 + posY: 1.34891248 + posZ: 69.4412 + rotX: 0.02081862 + rotY: 269.968 + rotZ: 0.0167590734 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic 64bb5b/Card Deny Existence 303af5.yaml b/unpacked/Custom_Model_Bag Mystic 64bb5b/Card Deny Existence 303af5.yaml new file mode 100644 index 000000000..3569d49dd --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic 64bb5b/Card Deny Existence 303af5.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 278808 +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/1016065725025945336/04E36F64C2CBE1B4905FF44A869C75EC52CB3A56/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 303af5 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Deny Existence +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.2841 + posY: 1.35564482 + posZ: 92.4412 + rotX: 0.0208187364 + rotY: 269.967438 + rotZ: 0.0167587977 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic 64bb5b/Card Drawn to the Flame 565cb2.yaml b/unpacked/Custom_Model_Bag Mystic 64bb5b/Card Drawn to the Flame 565cb2.yaml new file mode 100644 index 000000000..9a382e2a3 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic 64bb5b/Card Drawn to the Flame 565cb2.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 565cb2 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Drawn to the Flame +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.2841 + posY: 1.35362518 + posZ: 85.5412 + rotX: 0.0208185278 + rotY: 269.968018 + rotZ: 0.016758753 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic 64bb5b/Card Eldritch Inspiration b146d4.yaml b/unpacked/Custom_Model_Bag Mystic 64bb5b/Card Eldritch Inspiration b146d4.yaml new file mode 100644 index 000000000..5519c26b3 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic 64bb5b/Card Eldritch Inspiration b146d4.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 278807 +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/1016065725025945336/04E36F64C2CBE1B4905FF44A869C75EC52CB3A56/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: b146d4 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Eldritch Inspiration +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.2841 + posY: 1.35497165 + posZ: 90.1413 + rotX: 0.0208180863 + rotY: 269.969666 + rotZ: 0.0167595446 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic 64bb5b/Card Enchanted Blade a5a6cd.yaml b/unpacked/Custom_Model_Bag Mystic 64bb5b/Card Enchanted Blade a5a6cd.yaml new file mode 100644 index 000000000..61e295c05 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic 64bb5b/Card Enchanted Blade a5a6cd.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: a5a6cd +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Enchanted Blade +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.5688019 + posY: 1.34171379 + posZ: 55.6608 + rotX: 0.020807391 + rotY: 270.005859 + rotZ: 0.0167728178 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic 64bb5b/Card Enraptured 69b332.yaml b/unpacked/Custom_Model_Bag Mystic 64bb5b/Card Enraptured 69b332.yaml new file mode 100644 index 000000000..157e64be3 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic 64bb5b/Card Enraptured 69b332.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 69b332 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Enraptured +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 24.4394 + posY: 1.35615587 + posZ: 87.7904 + rotX: 0.0208176579 + rotY: 269.970978 + rotZ: 0.0167602785 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic 64bb5b/Card Ethereal Form 762a22.yaml b/unpacked/Custom_Model_Bag Mystic 64bb5b/Card Ethereal Form 762a22.yaml new file mode 100644 index 000000000..f0b9dcd9d --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic 64bb5b/Card Ethereal Form 762a22.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 762a22 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Ethereal Form +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.2841 + posY: 1.347566 + posZ: 64.8411 + rotX: 0.02080573 + rotY: 270.0125 + rotZ: 0.01677506 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic 64bb5b/Card Fearless 322e0e.yaml b/unpacked/Custom_Model_Bag Mystic 64bb5b/Card Fearless 322e0e.yaml new file mode 100644 index 000000000..32328dc2e --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic 64bb5b/Card Fearless 322e0e.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 322e0e +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Fearless +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 24.4394 + posY: 1.3548094 + posZ: 83.1904 + rotX: 0.0208177157 + rotY: 269.970764 + rotZ: 0.016760027 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic 64bb5b/Card Forbidden Knowledge 90b11b.yaml b/unpacked/Custom_Model_Bag Mystic 64bb5b/Card Forbidden Knowledge 90b11b.yaml new file mode 100644 index 000000000..0018b0855 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic 64bb5b/Card Forbidden Knowledge 90b11b.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 90b11b +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Forbidden Knowledge +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.568902 + posY: 1.35181236 + posZ: 90.1608 + rotX: 0.0207998473 + rotY: 270.030945 + rotZ: 0.01678185 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic 64bb5b/Card Healing Words 4132e5.yaml b/unpacked/Custom_Model_Bag Mystic 64bb5b/Card Healing Words 4132e5.yaml new file mode 100644 index 000000000..2e0830c72 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic 64bb5b/Card Healing Words 4132e5.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 4132e5 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Healing Words +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.5688982 + posY: 1.34642637 + posZ: 71.7607 + rotX: 0.0208076816 + rotY: 270.004669 + rotZ: 0.0167723931 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic 64bb5b/Card Holy Rosary 2c31e0.yaml b/unpacked/Custom_Model_Bag Mystic 64bb5b/Card Holy Rosary 2c31e0.yaml new file mode 100644 index 000000000..8f9795e6d --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic 64bb5b/Card Holy Rosary 2c31e0.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 2c31e0 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Holy Rosary +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.5688982 + posY: 1.34575319 + posZ: 69.4607 + rotX: 0.0208000187 + rotY: 270.031036 + rotZ: 0.0167819113 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic 64bb5b/Card Hypnotic Gaze b535b5.yaml b/unpacked/Custom_Model_Bag Mystic 64bb5b/Card Hypnotic Gaze b535b5.yaml new file mode 100644 index 000000000..8d10226d3 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic 64bb5b/Card Hypnotic Gaze b535b5.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: b535b5 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Hypnotic Gaze +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.2840176 + posY: 1.344873 + posZ: 55.6412 + rotX: 0.0208198484 + rotY: 269.9674 + rotZ: 0.0167608447 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic 64bb5b/Card Mists of R'lyeh 6e4969.yaml b/unpacked/Custom_Model_Bag Mystic 64bb5b/Card Mists of R'lyeh 6e4969.yaml new file mode 100644 index 000000000..7744acd58 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic 64bb5b/Card Mists of R'lyeh 6e4969.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 6e4969 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Mists of R'lyeh +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.5688982 + posY: 1.34373355 + posZ: 62.5608 + rotX: 0.02079986 + rotY: 270.031067 + rotZ: 0.0167820957 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic 64bb5b/Card Moonlight Ritual aa03c1.yaml b/unpacked/Custom_Model_Bag Mystic 64bb5b/Card Moonlight Ritual aa03c1.yaml new file mode 100644 index 000000000..cdefcb452 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic 64bb5b/Card Moonlight Ritual aa03c1.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 230306 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: aa03c1 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Moonlight Ritual +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.2841 + posY: 1.35227859 + posZ: 80.9412 + rotX: 0.020818254 + rotY: 269.9681 + rotZ: 0.0167590789 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic 64bb5b/Card Olive McBride 53cb9f.yaml b/unpacked/Custom_Model_Bag Mystic 64bb5b/Card Olive McBride 53cb9f.yaml new file mode 100644 index 000000000..ed08a15a3 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic 64bb5b/Card Olive McBride 53cb9f.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Will Try Anything Once +GMNotes: '' +GUID: 53cb9f +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Olive McBride +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.5689 + posY: 1.347773 + posZ: 76.3607 + rotX: 0.020799825 + rotY: 270.031 + rotZ: 0.0167819746 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic 64bb5b/Card Open Gate 65e124.yaml b/unpacked/Custom_Model_Bag Mystic 64bb5b/Card Open Gate 65e124.yaml new file mode 100644 index 000000000..a463053e8 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic 64bb5b/Card Open Gate 65e124.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 440824 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 65e124 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Open Gate +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.2841 + posY: 1.350259 + posZ: 74.0412 + rotX: 0.02081802 + rotY: 269.969482 + rotZ: 0.01675952 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic 64bb5b/Card Premonition 6e98b8.yaml b/unpacked/Custom_Model_Bag Mystic 64bb5b/Card Premonition 6e98b8.yaml new file mode 100644 index 000000000..04f0922eb --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic 64bb5b/Card Premonition 6e98b8.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 6e98b8 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Premonition +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.2841 + posY: 1.35429859 + posZ: 87.8412 + rotX: 0.0208185241 + rotY: 269.968 + rotZ: 0.0167586319 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic 64bb5b/Card Prophesy 4a9214.yaml b/unpacked/Custom_Model_Bag Mystic 64bb5b/Card Prophesy 4a9214.yaml new file mode 100644 index 000000000..a0b592212 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic 64bb5b/Card Prophesy 4a9214.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 278706 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2787': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025945336/04E36F64C2CBE1B4905FF44A869C75EC52CB3A56/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 4a9214 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Prophesy +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 24.4394 + posY: 1.356829 + posZ: 90.0904 + rotX: 0.0208179466 + rotY: 269.970764 + rotZ: 0.016760068 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic 64bb5b/Card Quantum Flux 6a0e2b.yaml b/unpacked/Custom_Model_Bag Mystic 64bb5b/Card Quantum Flux 6a0e2b.yaml new file mode 100644 index 000000000..1759049ce --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic 64bb5b/Card Quantum Flux 6a0e2b.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 6a0e2b +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Quantum Flux +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.2841 + posY: 1.35160542 + posZ: 78.6412 + rotX: 0.0208181217 + rotY: 269.969666 + rotZ: 0.0167593826 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic 64bb5b/Card Read the Signs 1e0818.yaml b/unpacked/Custom_Model_Bag Mystic 64bb5b/Card Read the Signs 1e0818.yaml new file mode 100644 index 000000000..048a0caf8 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic 64bb5b/Card Read the Signs 1e0818.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 1e0818 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Read the Signs +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.2841 + posY: 1.34689271 + posZ: 62.5412 + rotX: 0.0208037458 + rotY: 270.0185 + rotZ: 0.01677744 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic 64bb5b/Card Rite of Seeking 4a569b.yaml b/unpacked/Custom_Model_Bag Mystic 64bb5b/Card Rite of Seeking 4a569b.yaml new file mode 100644 index 000000000..a560e0e28 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic 64bb5b/Card Rite of Seeking 4a569b.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 4a569b +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Rite of Seeking +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 7.015802 + posY: 1.35051847 + posZ: 90.1487 + rotX: 0.020813087 + rotY: 269.98645 + rotZ: 0.016765669 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic 64bb5b/Card Ritual Candles 3c4ca3.yaml b/unpacked/Custom_Model_Bag Mystic 64bb5b/Card Ritual Candles 3c4ca3.yaml new file mode 100644 index 000000000..2cfab7dc9 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic 64bb5b/Card Ritual Candles 3c4ca3.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 3c4ca3 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Ritual Candles +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.5689 + posY: 1.35113919 + posZ: 87.8608 + rotX: 0.02080009 + rotY: 270.031158 + rotZ: 0.0167818759 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic 64bb5b/Card Scroll of Prophecies f4034c.yaml b/unpacked/Custom_Model_Bag Mystic 64bb5b/Card Scroll of Prophecies f4034c.yaml new file mode 100644 index 000000000..c761e048f --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic 64bb5b/Card Scroll of Prophecies f4034c.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: f4034c +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Scroll of Prophecies +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.5689 + posY: 1.34104049 + posZ: 53.3608 + rotX: 0.020807635 + rotY: 270.005768 + rotZ: 0.0167723931 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic 64bb5b/Card Scroll of Secrets b2c2a3.yaml b/unpacked/Custom_Model_Bag Mystic 64bb5b/Card Scroll of Secrets b2c2a3.yaml new file mode 100644 index 000000000..ee7984160 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic 64bb5b/Card Scroll of Secrets b2c2a3.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: b2c2a3 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Scroll of Secrets +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.568902 + posY: 1.3497926 + posZ: 83.2607 + rotX: 0.0208000727 + rotY: 270.030945 + rotZ: 0.0167819671 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic 64bb5b/Card Scrying cf397c.yaml b/unpacked/Custom_Model_Bag Mystic 64bb5b/Card Scrying cf397c.yaml new file mode 100644 index 000000000..ec5ac0797 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic 64bb5b/Card Scrying cf397c.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: cf397c +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Scrying +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.5688982 + posY: 1.34911942 + posZ: 80.9607 + rotX: 0.0208003316 + rotY: 270.030823 + rotZ: 0.0167818926 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic 64bb5b/Card Shrivelling cfd68d.yaml b/unpacked/Custom_Model_Bag Mystic 64bb5b/Card Shrivelling cfd68d.yaml new file mode 100644 index 000000000..9f90f2280 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic 64bb5b/Card Shrivelling cfd68d.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: cfd68d +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Shrivelling +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.5531015 + posY: 1.34036469 + posZ: 51.0713 + rotX: 0.020807242 + rotY: 270.006 + rotZ: 0.0167728737 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic 64bb5b/Card Sign Magick e90b04.yaml b/unpacked/Custom_Model_Bag Mystic 64bb5b/Card Sign Magick e90b04.yaml new file mode 100644 index 000000000..0dea719d5 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic 64bb5b/Card Sign Magick e90b04.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 277510 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: e90b04 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Sign Magick +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.5528984 + posY: 1.33968925 + posZ: 48.764 + rotX: 0.02083898 + rotY: 269.897644 + rotZ: 0.0167334136 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic 64bb5b/Card Sixth Sense 8070ac.yaml b/unpacked/Custom_Model_Bag Mystic 64bb5b/Card Sixth Sense 8070ac.yaml new file mode 100644 index 000000000..bd19ae1be --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic 64bb5b/Card Sixth Sense 8070ac.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 8070ac +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Sixth Sense +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 7.015798 + posY: 1.35119164 + posZ: 92.4487 + rotX: 0.0208175872 + rotY: 269.9703 + rotZ: 0.0167597122 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic 64bb5b/Card Spectral Razor 8e8a14.yaml b/unpacked/Custom_Model_Bag Mystic 64bb5b/Card Spectral Razor 8e8a14.yaml new file mode 100644 index 000000000..eae34ec89 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic 64bb5b/Card Spectral Razor 8e8a14.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Spell. +GMNotes: '' +GUID: 8e8a14 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Spectral Razor +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.2840843 + posY: 1.34621942 + posZ: 60.24118 + rotX: 0.0208085645 + rotY: 270.0016 + rotZ: 0.01677193 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic 64bb5b/Card St. Hubert's Key 590c4a.yaml b/unpacked/Custom_Model_Bag Mystic 64bb5b/Card St. Hubert's Key 590c4a.yaml new file mode 100644 index 000000000..cd4ba5fb7 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic 64bb5b/Card St. Hubert's Key 590c4a.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Cleansing Fire +GMNotes: '' +GUID: 590c4a +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: St. Hubert's Key +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 7.015798 + posY: 1.349172 + posZ: 85.5487 + rotX: 0.0208147038 + rotY: 269.9805 + rotZ: 0.0167637281 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic 64bb5b/Card Storm of Spirits 05f644.yaml b/unpacked/Custom_Model_Bag Mystic 64bb5b/Card Storm of Spirits 05f644.yaml new file mode 100644 index 000000000..aab99c4be --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic 64bb5b/Card Storm of Spirits 05f644.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 05f644 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Storm of Spirits +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.2841511 + posY: 1.34419978 + posZ: 53.3411827 + rotX: 0.02081899 + rotY: 269.969482 + rotZ: 0.016761547 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic 64bb5b/Card The Chthonian Stone ed310c.yaml b/unpacked/Custom_Model_Bag Mystic 64bb5b/Card The Chthonian Stone ed310c.yaml new file mode 100644 index 000000000..89c389f45 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic 64bb5b/Card The Chthonian Stone ed310c.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Stygian Waymark +GMNotes: '' +GUID: ed310c +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: The Chthonian Stone +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.5709019 + posY: 1.34238768 + posZ: 57.9606 + rotX: 0.0208077636 + rotY: 270.006 + rotZ: 0.0167729072 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic 64bb5b/Card Torrent of Power 8017d9.yaml b/unpacked/Custom_Model_Bag Mystic 64bb5b/Card Torrent of Power 8017d9.yaml new file mode 100644 index 000000000..f95a02538 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic 64bb5b/Card Torrent of Power 8017d9.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 8017d9 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Torrent of Power +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 24.4394 + posY: 1.35750234 + posZ: 92.3904 + rotX: 0.02081787 + rotY: 269.9707 + rotZ: 0.0167596322 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic 64bb5b/Card Uncage the Soul b38243.yaml b/unpacked/Custom_Model_Bag Mystic 64bb5b/Card Uncage the Soul b38243.yaml new file mode 100644 index 000000000..91c60abc1 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic 64bb5b/Card Uncage the Soul b38243.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: b38243 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Uncage the Soul +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.2841 + posY: 1.352952 + posZ: 83.2412 + rotX: 0.0208178367 + rotY: 269.969421 + rotZ: 0.0167597383 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic 64bb5b/Card Ward of Protection 862255.yaml b/unpacked/Custom_Model_Bag Mystic 64bb5b/Card Ward of Protection 862255.yaml new file mode 100644 index 000000000..454d685a1 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic 64bb5b/Card Ward of Protection 862255.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: '862255' +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Ward of Protection +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.2841 + posY: 1.35093212 + posZ: 76.3412 + rotX: 0.0208179932 + rotY: 269.969666 + rotZ: 0.0167592987 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic 64bb5b/Card Wither ef36a1.yaml b/unpacked/Custom_Model_Bag Mystic 64bb5b/Card Wither ef36a1.yaml new file mode 100644 index 000000000..aebf695fc --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic 64bb5b/Card Wither ef36a1.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: ef36a1 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Wither +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.5688982 + posY: 1.34306026 + posZ: 60.2608 + rotX: 0.0208000876 + rotY: 270.031036 + rotZ: 0.01678196 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic 64bb5b/Custom_Model_Bag Mystic 1d900d.ttslua b/unpacked/Custom_Model_Bag Mystic 64bb5b/Custom_Model_Bag Mystic 1d900d.ttslua new file mode 100644 index 000000000..f882a7f09 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic 64bb5b/Custom_Model_Bag Mystic 1d900d.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,0,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 + 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=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,0,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,0,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,0,0}, height=350, width=750, + 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}, rotation={0,0,0}, height=350, width=800, + font_size=250, color={0,0,0}, font_color={1,1,1} + }) +-- self.createButton({ +-- label="Setup", click_function="buttonClick_setup", function_owner=self, +-- position={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.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 Mystic 64bb5b/Custom_Model_Bag Mystic 1d900d.yaml b/unpacked/Custom_Model_Bag Mystic 64bb5b/Custom_Model_Bag Mystic 1d900d.yaml new file mode 100644 index 000000000..13a81840d --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic 64bb5b/Custom_Model_Bag Mystic 1d900d.yaml @@ -0,0 +1,99 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +ContainedObjects: +- !include 'Custom_Model_Bag Mystic 1d900d/Card Torrent of Power 8017d9.yaml' +- !include 'Custom_Model_Bag Mystic 1d900d/Card Prophesy 4a9214.yaml' +- !include 'Custom_Model_Bag Mystic 1d900d/Card Enraptured 69b332.yaml' +- !include 'Custom_Model_Bag Mystic 1d900d/Card Defiance d5f8d1.yaml' +- !include 'Custom_Model_Bag Mystic 1d900d/Card Fearless 322e0e.yaml' +- !include 'Custom_Model_Bag Mystic 1d900d/Card Uncage the Soul b38243.yaml' +- !include 'Custom_Model_Bag Mystic 1d900d/Card Drawn to the Flame 565cb2.yaml' +- !include 'Custom_Model_Bag Mystic 1d900d/Card Premonition 6e98b8.yaml' +- !include 'Custom_Model_Bag Mystic 1d900d/Card Eldritch Inspiration b146d4.yaml' +- !include 'Custom_Model_Bag Mystic 1d900d/Card Deny Existence 303af5.yaml' +- !include 'Custom_Model_Bag Mystic 1d900d/Card Moonlight Ritual aa03c1.yaml' +- !include 'Custom_Model_Bag Mystic 1d900d/Card Quantum Flux 6a0e2b.yaml' +- !include 'Custom_Model_Bag Mystic 1d900d/Card Ward of Protection 862255.yaml' +- !include 'Custom_Model_Bag Mystic 1d900d/Card Open Gate 65e124.yaml' +- !include 'Custom_Model_Bag Mystic 1d900d/Card Dark Prophecy 833348.yaml' +- !include 'Custom_Model_Bag Mystic 1d900d/Card Delve too Deep bde120.yaml' +- !include 'Custom_Model_Bag Mystic 1d900d/Card Blinding Light 0daceb.yaml' +- !include 'Custom_Model_Bag Mystic 1d900d/Card Ethereal Form 762a22.yaml' +- !include 'Custom_Model_Bag Mystic 1d900d/Card Read the Signs 1e0818.yaml' +- !include 'Custom_Model_Bag Mystic 1d900d/Card Spectral Razor 8e8a14.yaml' +- !include 'Custom_Model_Bag Mystic 1d900d/Card Astral Travel 0cedc1.yaml' +- !include 'Custom_Model_Bag Mystic 1d900d/Card Hypnotic Gaze b535b5.yaml' +- !include 'Custom_Model_Bag Mystic 1d900d/Card Storm of Spirits 05f644.yaml' +- !include 'Custom_Model_Bag Mystic 1d900d/Card Sign Magick e90b04.yaml' +- !include 'Custom_Model_Bag Mystic 1d900d/Card Shrivelling cfd68d.yaml' +- !include 'Custom_Model_Bag Mystic 1d900d/Card Scroll of Prophecies f4034c.yaml' +- !include 'Custom_Model_Bag Mystic 1d900d/Card Enchanted Blade a5a6cd.yaml' +- !include 'Custom_Model_Bag Mystic 1d900d/Card The Chthonian Stone ed310c.yaml' +- !include 'Custom_Model_Bag Mystic 1d900d/Card Wither ef36a1.yaml' +- !include 'Custom_Model_Bag Mystic 1d900d/Card Mists of R''lyeh 6e4969.yaml' +- !include 'Custom_Model_Bag Mystic 1d900d/Card David Renfield 20174f.yaml' +- !include 'Custom_Model_Bag Mystic 1d900d/Card Arcane Studies 58a92e.yaml' +- !include 'Custom_Model_Bag Mystic 1d900d/Card Holy Rosary 2c31e0.yaml' +- !include 'Custom_Model_Bag Mystic 1d900d/Card Healing Words 4132e5.yaml' +- !include 'Custom_Model_Bag Mystic 1d900d/Card Clarity of Mind 294b5d.yaml' +- !include 'Custom_Model_Bag Mystic 1d900d/Card Olive McBride 53cb9f.yaml' +- !include 'Custom_Model_Bag Mystic 1d900d/Card Alchemical Transmutation 964dee.yaml' +- !include 'Custom_Model_Bag Mystic 1d900d/Card Scrying cf397c.yaml' +- !include 'Custom_Model_Bag Mystic 1d900d/Card Scroll of Secrets b2c2a3.yaml' +- !include 'Custom_Model_Bag Mystic 1d900d/Card Arcane Initiate de820a.yaml' +- !include 'Custom_Model_Bag Mystic 1d900d/Card Ritual Candles 3c4ca3.yaml' +- !include 'Custom_Model_Bag Mystic 1d900d/Card Forbidden Knowledge 90b11b.yaml' +- !include 'Custom_Model_Bag Mystic 1d900d/Card Arcane Research 5c9ce3.yaml' +- !include 'Custom_Model_Bag Mystic 1d900d/Card Sixth Sense 8070ac.yaml' +- !include 'Custom_Model_Bag Mystic 1d900d/Card Rite of Seeking 4a569b.yaml' +- !include 'Custom_Model_Bag Mystic 1d900d/Card Alyssa Graham 46cc4f.yaml' +- !include 'Custom_Model_Bag Mystic 1d900d/Card St. Hubert''s Key 590c4a.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/952965722516557267/757887224F6C37104CDFFE241FAD09B57117D670/ + MaterialIndex: 3 + MeshURL: https://pastebin.com/raw/ALrYhQGb + NormalURL: '' + TypeIndex: 6 +Description: '' +GMNotes: '' +GUID: 1d900d +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Model_Bag Mystic 1d900d.ttslua' +LuaScriptState: '{"ml":{"05f644":{"lock":false,"pos":{"x":19.2842,"y":1.3442,"z":53.3412},"rot":{"x":0.0208,"y":269.9695,"z":0.0168}},"0cedc1":{"lock":false,"pos":{"x":19.2861,"y":1.3455,"z":57.941},"rot":{"x":0.0208,"y":269.9679,"z":0.0168}},"0daceb":{"lock":false,"pos":{"x":19.2841,"y":1.3482,"z":67.1411},"rot":{"x":0.0208,"y":269.9677,"z":0.0168}},"1e0818":{"lock":false,"pos":{"x":19.2841,"y":1.3469,"z":62.5412},"rot":{"x":0.0208,"y":270.0185,"z":0.0168}},"20174f":{"lock":false,"pos":{"x":10.5689,"y":1.3444,"z":64.8607},"rot":{"x":0.0208,"y":270.0311,"z":0.0168}},"294b5d":{"lock":false,"pos":{"x":10.5689,"y":1.3471,"z":74.0607},"rot":{"x":0.0208,"y":270.0309,"z":0.0168}},"2c31e0":{"lock":false,"pos":{"x":10.5689,"y":1.3458,"z":69.4607},"rot":{"x":0.0208,"y":270.031,"z":0.0168}},"303af5":{"lock":false,"pos":{"x":19.2841,"y":1.3556,"z":92.4412},"rot":{"x":0.0208,"y":269.9674,"z":0.0168}},"322e0e":{"lock":false,"pos":{"x":24.4394,"y":1.3548,"z":83.1904},"rot":{"x":0.0208,"y":269.9708,"z":0.0168}},"3c4ca3":{"lock":false,"pos":{"x":10.5689,"y":1.3511,"z":87.8608},"rot":{"x":0.0208,"y":270.0312,"z":0.0168}},"4132e5":{"lock":false,"pos":{"x":10.5689,"y":1.3464,"z":71.7607},"rot":{"x":0.0208,"y":270.0047,"z":0.0168}},"46cc4f":{"lock":false,"pos":{"x":7.0158,"y":1.3498,"z":87.8487},"rot":{"x":0.0208,"y":269.9845,"z":0.0168}},"4a569b":{"lock":false,"pos":{"x":7.0158,"y":1.3505,"z":90.1487},"rot":{"x":0.0208,"y":269.9865,"z":0.0168}},"4a9214":{"lock":false,"pos":{"x":24.4394,"y":1.3568,"z":90.0904},"rot":{"x":0.0208,"y":269.9708,"z":0.0168}},"53cb9f":{"lock":false,"pos":{"x":10.5689,"y":1.3478,"z":76.3607},"rot":{"x":0.0208,"y":270.031,"z":0.0168}},"565cb2":{"lock":false,"pos":{"x":19.2841,"y":1.3536,"z":85.5412},"rot":{"x":0.0208,"y":269.968,"z":0.0168}},"58a92e":{"lock":false,"pos":{"x":10.5689,"y":1.3451,"z":67.1607},"rot":{"x":0.0208,"y":270.031,"z":0.0168}},"590c4a":{"lock":false,"pos":{"x":7.0158,"y":1.3492,"z":85.5487},"rot":{"x":0.0208,"y":269.9805,"z":0.0168}},"5c9ce3":{"lock":false,"pos":{"x":10.5689,"y":1.3525,"z":92.4607},"rot":{"x":0.0208,"y":270.0309,"z":0.0168}},"65e124":{"lock":false,"pos":{"x":19.2841,"y":1.3503,"z":74.0412},"rot":{"x":0.0208,"y":269.9695,"z":0.0168}},"69b332":{"lock":false,"pos":{"x":24.4394,"y":1.3562,"z":87.7904},"rot":{"x":0.0208,"y":269.971,"z":0.0168}},"6a0e2b":{"lock":false,"pos":{"x":19.2841,"y":1.3516,"z":78.6412},"rot":{"x":0.0208,"y":269.9697,"z":0.0168}},"6e4969":{"lock":false,"pos":{"x":10.5689,"y":1.3437,"z":62.5608},"rot":{"x":0.0208,"y":270.0311,"z":0.0168}},"6e98b8":{"lock":false,"pos":{"x":19.2841,"y":1.3543,"z":87.8412},"rot":{"x":0.0208,"y":269.968,"z":0.0168}},"762a22":{"lock":false,"pos":{"x":19.2841,"y":1.3476,"z":64.8411},"rot":{"x":0.0208,"y":270.0125,"z":0.0168}},"8017d9":{"lock":false,"pos":{"x":24.4394,"y":1.3575,"z":92.3904},"rot":{"x":0.0208,"y":269.9707,"z":0.0168}},"8070ac":{"lock":false,"pos":{"x":7.0158,"y":1.3512,"z":92.4487},"rot":{"x":0.0208,"y":269.9703,"z":0.0168}},"833348":{"lock":false,"pos":{"x":19.2841,"y":1.3496,"z":71.7412},"rot":{"x":0.0208,"y":269.9677,"z":0.0168}},"862255":{"lock":false,"pos":{"x":19.2841,"y":1.3509,"z":76.3412},"rot":{"x":0.0208,"y":269.9697,"z":0.0168}},"8e8a14":{"lock":false,"pos":{"x":19.2841,"y":1.3462,"z":60.2412},"rot":{"x":0.0208,"y":270.0016,"z":0.0168}},"90b11b":{"lock":false,"pos":{"x":10.5689,"y":1.3518,"z":90.1608},"rot":{"x":0.0208,"y":270.0309,"z":0.0168}},"964dee":{"lock":false,"pos":{"x":10.5689,"y":1.3484,"z":78.6607},"rot":{"x":0.0208,"y":270.0308,"z":0.0168}},"a5a6cd":{"lock":false,"pos":{"x":10.5688,"y":1.3417,"z":55.6608},"rot":{"x":0.0208,"y":270.0059,"z":0.0168}},"aa03c1":{"lock":false,"pos":{"x":19.2841,"y":1.3523,"z":80.9412},"rot":{"x":0.0208,"y":269.9681,"z":0.0168}},"b146d4":{"lock":false,"pos":{"x":19.2841,"y":1.355,"z":90.1413},"rot":{"x":0.0208,"y":269.9697,"z":0.0168}},"b2c2a3":{"lock":false,"pos":{"x":10.5689,"y":1.3498,"z":83.2607},"rot":{"x":0.0208,"y":270.0309,"z":0.0168}},"b38243":{"lock":false,"pos":{"x":19.2841,"y":1.353,"z":83.2412},"rot":{"x":0.0208,"y":269.9694,"z":0.0168}},"b535b5":{"lock":false,"pos":{"x":19.284,"y":1.3449,"z":55.6412},"rot":{"x":0.0208,"y":269.9674,"z":0.0168}},"bde120":{"lock":false,"pos":{"x":19.2841,"y":1.3489,"z":69.4412},"rot":{"x":0.0208,"y":269.968,"z":0.0168}},"cf397c":{"lock":false,"pos":{"x":10.5689,"y":1.3491,"z":80.9607},"rot":{"x":0.0208,"y":270.0308,"z":0.0168}},"cfd68d":{"lock":false,"pos":{"x":10.5531,"y":1.3404,"z":51.0713},"rot":{"x":0.0208,"y":270.006,"z":0.0168}},"d5f8d1":{"lock":false,"pos":{"x":24.4394,"y":1.3555,"z":85.4904},"rot":{"x":0.0208,"y":269.9708,"z":0.0168}},"de820a":{"lock":false,"pos":{"x":10.5689,"y":1.3505,"z":85.5608},"rot":{"x":0.0208,"y":270.0308,"z":0.0168}},"e90b04":{"lock":false,"pos":{"x":10.5529,"y":1.3397,"z":48.764},"rot":{"x":0.0208,"y":269.8976,"z":0.0167}},"ed310c":{"lock":false,"pos":{"x":10.5709,"y":1.3424,"z":57.9606},"rot":{"x":0.0208,"y":270.006,"z":0.0168}},"ef36a1":{"lock":false,"pos":{"x":10.5689,"y":1.3431,"z":60.2608},"rot":{"x":0.0208,"y":270.031,"z":0.0168}},"f4034c":{"lock":false,"pos":{"x":10.5689,"y":1.341,"z":53.3608},"rot":{"x":0.0208,"y":270.0058,"z":0.0168}}}}' +MaterialIndex: -1 +MeshIndex: -1 +Name: Custom_Model_Bag +Nickname: Mystic +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 32.9536057 + posY: 1.65386856 + posZ: 60.20395 + rotX: 0.0187369213 + rotY: 270.0262 + rotZ: 0.007686195 + scaleX: 1.2 + scaleY: 1.2 + scaleZ: 1.2 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic 64bb5b/Custom_Model_Bag Mystic 1d900d/Card Alchemical Transmutation 964dee.yaml b/unpacked/Custom_Model_Bag Mystic 64bb5b/Custom_Model_Bag Mystic 1d900d/Card Alchemical Transmutation 964dee.yaml new file mode 100644 index 000000000..c2b37b943 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic 64bb5b/Custom_Model_Bag Mystic 1d900d/Card Alchemical Transmutation 964dee.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 964dee +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Alchemical Transmutation +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.5688982 + posY: 1.34844625 + posZ: 78.6607 + rotX: 0.0208002273 + rotY: 270.030762 + rotZ: 0.0167817343 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic 64bb5b/Custom_Model_Bag Mystic 1d900d/Card Alyssa Graham 46cc4f.yaml b/unpacked/Custom_Model_Bag Mystic 64bb5b/Custom_Model_Bag Mystic 1d900d/Card Alyssa Graham 46cc4f.yaml new file mode 100644 index 000000000..62b848ea5 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic 64bb5b/Custom_Model_Bag Mystic 1d900d/Card Alyssa Graham 46cc4f.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Speaker to the Dead +GMNotes: '' +GUID: 46cc4f +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Alyssa Graham +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 7.0158 + posY: 1.34984517 + posZ: 87.8487 + rotX: 0.0208136626 + rotY: 269.984528 + rotZ: 0.0167651381 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic 64bb5b/Custom_Model_Bag Mystic 1d900d/Card Arcane Initiate de820a.yaml b/unpacked/Custom_Model_Bag Mystic 64bb5b/Custom_Model_Bag Mystic 1d900d/Card Arcane Initiate de820a.yaml new file mode 100644 index 000000000..2f471b063 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic 64bb5b/Custom_Model_Bag Mystic 1d900d/Card Arcane Initiate de820a.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: de820a +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Arcane Initiate +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.568902 + posY: 1.350466 + posZ: 85.5608 + rotX: 0.0208004527 + rotY: 270.030823 + rotZ: 0.0167818163 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic 64bb5b/Custom_Model_Bag Mystic 1d900d/Card Arcane Research 5c9ce3.yaml b/unpacked/Custom_Model_Bag Mystic 64bb5b/Custom_Model_Bag Mystic 1d900d/Card Arcane Research 5c9ce3.yaml new file mode 100644 index 000000000..23186c35c --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic 64bb5b/Custom_Model_Bag Mystic 1d900d/Card Arcane Research 5c9ce3.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 5c9ce3 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Arcane Research +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.568902 + posY: 1.35248566 + posZ: 92.4607 + rotX: 0.02080025 + rotY: 270.030884 + rotZ: 0.0167815555 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic 64bb5b/Custom_Model_Bag Mystic 1d900d/Card Arcane Studies 58a92e.yaml b/unpacked/Custom_Model_Bag Mystic 64bb5b/Custom_Model_Bag Mystic 1d900d/Card Arcane Studies 58a92e.yaml new file mode 100644 index 000000000..ab8f87d46 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic 64bb5b/Custom_Model_Bag Mystic 1d900d/Card Arcane Studies 58a92e.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 58a92e +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Arcane Studies +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.5688982 + posY: 1.3450799 + posZ: 67.1607 + rotX: 0.0208000783 + rotY: 270.030975 + rotZ: 0.01678183 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic 64bb5b/Custom_Model_Bag Mystic 1d900d/Card Astral Travel 0cedc1.yaml b/unpacked/Custom_Model_Bag Mystic 64bb5b/Custom_Model_Bag Mystic 1d900d/Card Astral Travel 0cedc1.yaml new file mode 100644 index 000000000..0731d1eba --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic 64bb5b/Custom_Model_Bag Mystic 1d900d/Card Astral Travel 0cedc1.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 0cedc1 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Astral Travel +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.2861462 + posY: 1.34554684 + posZ: 57.94098 + rotX: 0.0208195746 + rotY: 269.967926 + rotZ: 0.0167611819 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic 64bb5b/Custom_Model_Bag Mystic 1d900d/Card Blinding Light 0daceb.yaml b/unpacked/Custom_Model_Bag Mystic 64bb5b/Custom_Model_Bag Mystic 1d900d/Card Blinding Light 0daceb.yaml new file mode 100644 index 000000000..1f5c60ef6 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic 64bb5b/Custom_Model_Bag Mystic 1d900d/Card Blinding Light 0daceb.yaml @@ -0,0 +1,42 @@ +Autoraise: true +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 0daceb +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Blinding Light +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.2841 + posY: 1.34823918 + posZ: 67.1411 + rotX: 0.0208186414 + rotY: 269.967651 + rotZ: 0.0167590268 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic 64bb5b/Custom_Model_Bag Mystic 1d900d/Card Clarity of Mind 294b5d.yaml b/unpacked/Custom_Model_Bag Mystic 64bb5b/Custom_Model_Bag Mystic 1d900d/Card Clarity of Mind 294b5d.yaml new file mode 100644 index 000000000..ee17abf01 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic 64bb5b/Custom_Model_Bag Mystic 1d900d/Card Clarity of Mind 294b5d.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 294b5d +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Clarity of Mind +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.5688982 + posY: 1.34709978 + posZ: 74.0607 + rotX: 0.02080026 + rotY: 270.030884 + rotZ: 0.0167820249 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic 64bb5b/Custom_Model_Bag Mystic 1d900d/Card Dark Prophecy 833348.yaml b/unpacked/Custom_Model_Bag Mystic 64bb5b/Custom_Model_Bag Mystic 1d900d/Card Dark Prophecy 833348.yaml new file mode 100644 index 000000000..cb0264f08 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic 64bb5b/Custom_Model_Bag Mystic 1d900d/Card Dark Prophecy 833348.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: '833348' +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Dark Prophecy +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.2841 + posY: 1.34958577 + posZ: 71.7412 + rotX: 0.0208187066 + rotY: 269.967651 + rotZ: 0.0167587977 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic 64bb5b/Custom_Model_Bag Mystic 1d900d/Card David Renfield 20174f.yaml b/unpacked/Custom_Model_Bag Mystic 64bb5b/Custom_Model_Bag Mystic 1d900d/Card David Renfield 20174f.yaml new file mode 100644 index 000000000..6306c6513 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic 64bb5b/Custom_Model_Bag Mystic 1d900d/Card David Renfield 20174f.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Esteemed Eschatologist +GMNotes: '' +GUID: 20174f +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: David Renfield +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.5688992 + posY: 1.34440672 + posZ: 64.8607 + rotX: 0.0208012946 + rotY: 270.031128 + rotZ: 0.01678296 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic 64bb5b/Custom_Model_Bag Mystic 1d900d/Card Defiance d5f8d1.yaml b/unpacked/Custom_Model_Bag Mystic 64bb5b/Custom_Model_Bag Mystic 1d900d/Card Defiance d5f8d1.yaml new file mode 100644 index 000000000..0de9899f5 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic 64bb5b/Custom_Model_Bag Mystic 1d900d/Card Defiance d5f8d1.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: d5f8d1 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Defiance +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 24.4394 + posY: 1.35548258 + posZ: 85.4904 + rotX: 0.0208178665 + rotY: 269.970764 + rotZ: 0.0167597383 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic 64bb5b/Custom_Model_Bag Mystic 1d900d/Card Delve too Deep bde120.yaml b/unpacked/Custom_Model_Bag Mystic 64bb5b/Custom_Model_Bag Mystic 1d900d/Card Delve too Deep bde120.yaml new file mode 100644 index 000000000..b4c69d4bc --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic 64bb5b/Custom_Model_Bag Mystic 1d900d/Card Delve too Deep bde120.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: bde120 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Delve too Deep +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.2841 + posY: 1.34891248 + posZ: 69.4412 + rotX: 0.02081862 + rotY: 269.968 + rotZ: 0.0167590734 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic 64bb5b/Custom_Model_Bag Mystic 1d900d/Card Deny Existence 303af5.yaml b/unpacked/Custom_Model_Bag Mystic 64bb5b/Custom_Model_Bag Mystic 1d900d/Card Deny Existence 303af5.yaml new file mode 100644 index 000000000..3569d49dd --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic 64bb5b/Custom_Model_Bag Mystic 1d900d/Card Deny Existence 303af5.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 278808 +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/1016065725025945336/04E36F64C2CBE1B4905FF44A869C75EC52CB3A56/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 303af5 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Deny Existence +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.2841 + posY: 1.35564482 + posZ: 92.4412 + rotX: 0.0208187364 + rotY: 269.967438 + rotZ: 0.0167587977 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic 64bb5b/Custom_Model_Bag Mystic 1d900d/Card Drawn to the Flame 565cb2.yaml b/unpacked/Custom_Model_Bag Mystic 64bb5b/Custom_Model_Bag Mystic 1d900d/Card Drawn to the Flame 565cb2.yaml new file mode 100644 index 000000000..9a382e2a3 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic 64bb5b/Custom_Model_Bag Mystic 1d900d/Card Drawn to the Flame 565cb2.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 565cb2 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Drawn to the Flame +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.2841 + posY: 1.35362518 + posZ: 85.5412 + rotX: 0.0208185278 + rotY: 269.968018 + rotZ: 0.016758753 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic 64bb5b/Custom_Model_Bag Mystic 1d900d/Card Eldritch Inspiration b146d4.yaml b/unpacked/Custom_Model_Bag Mystic 64bb5b/Custom_Model_Bag Mystic 1d900d/Card Eldritch Inspiration b146d4.yaml new file mode 100644 index 000000000..5519c26b3 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic 64bb5b/Custom_Model_Bag Mystic 1d900d/Card Eldritch Inspiration b146d4.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 278807 +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/1016065725025945336/04E36F64C2CBE1B4905FF44A869C75EC52CB3A56/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: b146d4 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Eldritch Inspiration +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.2841 + posY: 1.35497165 + posZ: 90.1413 + rotX: 0.0208180863 + rotY: 269.969666 + rotZ: 0.0167595446 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic 64bb5b/Custom_Model_Bag Mystic 1d900d/Card Enchanted Blade a5a6cd.yaml b/unpacked/Custom_Model_Bag Mystic 64bb5b/Custom_Model_Bag Mystic 1d900d/Card Enchanted Blade a5a6cd.yaml new file mode 100644 index 000000000..61e295c05 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic 64bb5b/Custom_Model_Bag Mystic 1d900d/Card Enchanted Blade a5a6cd.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: a5a6cd +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Enchanted Blade +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.5688019 + posY: 1.34171379 + posZ: 55.6608 + rotX: 0.020807391 + rotY: 270.005859 + rotZ: 0.0167728178 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic 64bb5b/Custom_Model_Bag Mystic 1d900d/Card Enraptured 69b332.yaml b/unpacked/Custom_Model_Bag Mystic 64bb5b/Custom_Model_Bag Mystic 1d900d/Card Enraptured 69b332.yaml new file mode 100644 index 000000000..157e64be3 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic 64bb5b/Custom_Model_Bag Mystic 1d900d/Card Enraptured 69b332.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 69b332 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Enraptured +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 24.4394 + posY: 1.35615587 + posZ: 87.7904 + rotX: 0.0208176579 + rotY: 269.970978 + rotZ: 0.0167602785 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic 64bb5b/Custom_Model_Bag Mystic 1d900d/Card Ethereal Form 762a22.yaml b/unpacked/Custom_Model_Bag Mystic 64bb5b/Custom_Model_Bag Mystic 1d900d/Card Ethereal Form 762a22.yaml new file mode 100644 index 000000000..f0b9dcd9d --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic 64bb5b/Custom_Model_Bag Mystic 1d900d/Card Ethereal Form 762a22.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 762a22 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Ethereal Form +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.2841 + posY: 1.347566 + posZ: 64.8411 + rotX: 0.02080573 + rotY: 270.0125 + rotZ: 0.01677506 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic 64bb5b/Custom_Model_Bag Mystic 1d900d/Card Fearless 322e0e.yaml b/unpacked/Custom_Model_Bag Mystic 64bb5b/Custom_Model_Bag Mystic 1d900d/Card Fearless 322e0e.yaml new file mode 100644 index 000000000..32328dc2e --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic 64bb5b/Custom_Model_Bag Mystic 1d900d/Card Fearless 322e0e.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 322e0e +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Fearless +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 24.4394 + posY: 1.3548094 + posZ: 83.1904 + rotX: 0.0208177157 + rotY: 269.970764 + rotZ: 0.016760027 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic 64bb5b/Custom_Model_Bag Mystic 1d900d/Card Forbidden Knowledge 90b11b.yaml b/unpacked/Custom_Model_Bag Mystic 64bb5b/Custom_Model_Bag Mystic 1d900d/Card Forbidden Knowledge 90b11b.yaml new file mode 100644 index 000000000..0018b0855 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic 64bb5b/Custom_Model_Bag Mystic 1d900d/Card Forbidden Knowledge 90b11b.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 90b11b +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Forbidden Knowledge +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.568902 + posY: 1.35181236 + posZ: 90.1608 + rotX: 0.0207998473 + rotY: 270.030945 + rotZ: 0.01678185 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic 64bb5b/Custom_Model_Bag Mystic 1d900d/Card Healing Words 4132e5.yaml b/unpacked/Custom_Model_Bag Mystic 64bb5b/Custom_Model_Bag Mystic 1d900d/Card Healing Words 4132e5.yaml new file mode 100644 index 000000000..2e0830c72 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic 64bb5b/Custom_Model_Bag Mystic 1d900d/Card Healing Words 4132e5.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 4132e5 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Healing Words +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.5688982 + posY: 1.34642637 + posZ: 71.7607 + rotX: 0.0208076816 + rotY: 270.004669 + rotZ: 0.0167723931 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic 64bb5b/Custom_Model_Bag Mystic 1d900d/Card Holy Rosary 2c31e0.yaml b/unpacked/Custom_Model_Bag Mystic 64bb5b/Custom_Model_Bag Mystic 1d900d/Card Holy Rosary 2c31e0.yaml new file mode 100644 index 000000000..8f9795e6d --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic 64bb5b/Custom_Model_Bag Mystic 1d900d/Card Holy Rosary 2c31e0.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 2c31e0 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Holy Rosary +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.5688982 + posY: 1.34575319 + posZ: 69.4607 + rotX: 0.0208000187 + rotY: 270.031036 + rotZ: 0.0167819113 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic 64bb5b/Custom_Model_Bag Mystic 1d900d/Card Hypnotic Gaze b535b5.yaml b/unpacked/Custom_Model_Bag Mystic 64bb5b/Custom_Model_Bag Mystic 1d900d/Card Hypnotic Gaze b535b5.yaml new file mode 100644 index 000000000..8d10226d3 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic 64bb5b/Custom_Model_Bag Mystic 1d900d/Card Hypnotic Gaze b535b5.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: b535b5 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Hypnotic Gaze +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.2840176 + posY: 1.344873 + posZ: 55.6412 + rotX: 0.0208198484 + rotY: 269.9674 + rotZ: 0.0167608447 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic 64bb5b/Custom_Model_Bag Mystic 1d900d/Card Mists of R'lyeh 6e4969.yaml b/unpacked/Custom_Model_Bag Mystic 64bb5b/Custom_Model_Bag Mystic 1d900d/Card Mists of R'lyeh 6e4969.yaml new file mode 100644 index 000000000..7744acd58 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic 64bb5b/Custom_Model_Bag Mystic 1d900d/Card Mists of R'lyeh 6e4969.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 6e4969 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Mists of R'lyeh +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.5688982 + posY: 1.34373355 + posZ: 62.5608 + rotX: 0.02079986 + rotY: 270.031067 + rotZ: 0.0167820957 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic 64bb5b/Custom_Model_Bag Mystic 1d900d/Card Moonlight Ritual aa03c1.yaml b/unpacked/Custom_Model_Bag Mystic 64bb5b/Custom_Model_Bag Mystic 1d900d/Card Moonlight Ritual aa03c1.yaml new file mode 100644 index 000000000..cdefcb452 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic 64bb5b/Custom_Model_Bag Mystic 1d900d/Card Moonlight Ritual aa03c1.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 230306 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: aa03c1 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Moonlight Ritual +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.2841 + posY: 1.35227859 + posZ: 80.9412 + rotX: 0.020818254 + rotY: 269.9681 + rotZ: 0.0167590789 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic 64bb5b/Custom_Model_Bag Mystic 1d900d/Card Olive McBride 53cb9f.yaml b/unpacked/Custom_Model_Bag Mystic 64bb5b/Custom_Model_Bag Mystic 1d900d/Card Olive McBride 53cb9f.yaml new file mode 100644 index 000000000..ed08a15a3 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic 64bb5b/Custom_Model_Bag Mystic 1d900d/Card Olive McBride 53cb9f.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Will Try Anything Once +GMNotes: '' +GUID: 53cb9f +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Olive McBride +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.5689 + posY: 1.347773 + posZ: 76.3607 + rotX: 0.020799825 + rotY: 270.031 + rotZ: 0.0167819746 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic 64bb5b/Custom_Model_Bag Mystic 1d900d/Card Open Gate 65e124.yaml b/unpacked/Custom_Model_Bag Mystic 64bb5b/Custom_Model_Bag Mystic 1d900d/Card Open Gate 65e124.yaml new file mode 100644 index 000000000..a463053e8 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic 64bb5b/Custom_Model_Bag Mystic 1d900d/Card Open Gate 65e124.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 440824 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 65e124 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Open Gate +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.2841 + posY: 1.350259 + posZ: 74.0412 + rotX: 0.02081802 + rotY: 269.969482 + rotZ: 0.01675952 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic 64bb5b/Custom_Model_Bag Mystic 1d900d/Card Premonition 6e98b8.yaml b/unpacked/Custom_Model_Bag Mystic 64bb5b/Custom_Model_Bag Mystic 1d900d/Card Premonition 6e98b8.yaml new file mode 100644 index 000000000..04f0922eb --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic 64bb5b/Custom_Model_Bag Mystic 1d900d/Card Premonition 6e98b8.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 6e98b8 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Premonition +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.2841 + posY: 1.35429859 + posZ: 87.8412 + rotX: 0.0208185241 + rotY: 269.968 + rotZ: 0.0167586319 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic 64bb5b/Custom_Model_Bag Mystic 1d900d/Card Prophesy 4a9214.yaml b/unpacked/Custom_Model_Bag Mystic 64bb5b/Custom_Model_Bag Mystic 1d900d/Card Prophesy 4a9214.yaml new file mode 100644 index 000000000..a0b592212 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic 64bb5b/Custom_Model_Bag Mystic 1d900d/Card Prophesy 4a9214.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 278706 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2787': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025945336/04E36F64C2CBE1B4905FF44A869C75EC52CB3A56/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 4a9214 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Prophesy +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 24.4394 + posY: 1.356829 + posZ: 90.0904 + rotX: 0.0208179466 + rotY: 269.970764 + rotZ: 0.016760068 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic 64bb5b/Custom_Model_Bag Mystic 1d900d/Card Quantum Flux 6a0e2b.yaml b/unpacked/Custom_Model_Bag Mystic 64bb5b/Custom_Model_Bag Mystic 1d900d/Card Quantum Flux 6a0e2b.yaml new file mode 100644 index 000000000..1759049ce --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic 64bb5b/Custom_Model_Bag Mystic 1d900d/Card Quantum Flux 6a0e2b.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 6a0e2b +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Quantum Flux +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.2841 + posY: 1.35160542 + posZ: 78.6412 + rotX: 0.0208181217 + rotY: 269.969666 + rotZ: 0.0167593826 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic 64bb5b/Custom_Model_Bag Mystic 1d900d/Card Read the Signs 1e0818.yaml b/unpacked/Custom_Model_Bag Mystic 64bb5b/Custom_Model_Bag Mystic 1d900d/Card Read the Signs 1e0818.yaml new file mode 100644 index 000000000..048a0caf8 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic 64bb5b/Custom_Model_Bag Mystic 1d900d/Card Read the Signs 1e0818.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 1e0818 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Read the Signs +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.2841 + posY: 1.34689271 + posZ: 62.5412 + rotX: 0.0208037458 + rotY: 270.0185 + rotZ: 0.01677744 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic 64bb5b/Custom_Model_Bag Mystic 1d900d/Card Rite of Seeking 4a569b.yaml b/unpacked/Custom_Model_Bag Mystic 64bb5b/Custom_Model_Bag Mystic 1d900d/Card Rite of Seeking 4a569b.yaml new file mode 100644 index 000000000..a560e0e28 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic 64bb5b/Custom_Model_Bag Mystic 1d900d/Card Rite of Seeking 4a569b.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 4a569b +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Rite of Seeking +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 7.015802 + posY: 1.35051847 + posZ: 90.1487 + rotX: 0.020813087 + rotY: 269.98645 + rotZ: 0.016765669 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic 64bb5b/Custom_Model_Bag Mystic 1d900d/Card Ritual Candles 3c4ca3.yaml b/unpacked/Custom_Model_Bag Mystic 64bb5b/Custom_Model_Bag Mystic 1d900d/Card Ritual Candles 3c4ca3.yaml new file mode 100644 index 000000000..2cfab7dc9 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic 64bb5b/Custom_Model_Bag Mystic 1d900d/Card Ritual Candles 3c4ca3.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 3c4ca3 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Ritual Candles +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.5689 + posY: 1.35113919 + posZ: 87.8608 + rotX: 0.02080009 + rotY: 270.031158 + rotZ: 0.0167818759 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic 64bb5b/Custom_Model_Bag Mystic 1d900d/Card Scroll of Prophecies f4034c.yaml b/unpacked/Custom_Model_Bag Mystic 64bb5b/Custom_Model_Bag Mystic 1d900d/Card Scroll of Prophecies f4034c.yaml new file mode 100644 index 000000000..c761e048f --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic 64bb5b/Custom_Model_Bag Mystic 1d900d/Card Scroll of Prophecies f4034c.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: f4034c +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Scroll of Prophecies +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.5689 + posY: 1.34104049 + posZ: 53.3608 + rotX: 0.020807635 + rotY: 270.005768 + rotZ: 0.0167723931 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic 64bb5b/Custom_Model_Bag Mystic 1d900d/Card Scroll of Secrets b2c2a3.yaml b/unpacked/Custom_Model_Bag Mystic 64bb5b/Custom_Model_Bag Mystic 1d900d/Card Scroll of Secrets b2c2a3.yaml new file mode 100644 index 000000000..ee7984160 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic 64bb5b/Custom_Model_Bag Mystic 1d900d/Card Scroll of Secrets b2c2a3.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: b2c2a3 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Scroll of Secrets +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.568902 + posY: 1.3497926 + posZ: 83.2607 + rotX: 0.0208000727 + rotY: 270.030945 + rotZ: 0.0167819671 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic 64bb5b/Custom_Model_Bag Mystic 1d900d/Card Scrying cf397c.yaml b/unpacked/Custom_Model_Bag Mystic 64bb5b/Custom_Model_Bag Mystic 1d900d/Card Scrying cf397c.yaml new file mode 100644 index 000000000..ec5ac0797 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic 64bb5b/Custom_Model_Bag Mystic 1d900d/Card Scrying cf397c.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: cf397c +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Scrying +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.5688982 + posY: 1.34911942 + posZ: 80.9607 + rotX: 0.0208003316 + rotY: 270.030823 + rotZ: 0.0167818926 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic 64bb5b/Custom_Model_Bag Mystic 1d900d/Card Shrivelling cfd68d.yaml b/unpacked/Custom_Model_Bag Mystic 64bb5b/Custom_Model_Bag Mystic 1d900d/Card Shrivelling cfd68d.yaml new file mode 100644 index 000000000..9f90f2280 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic 64bb5b/Custom_Model_Bag Mystic 1d900d/Card Shrivelling cfd68d.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: cfd68d +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Shrivelling +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.5531015 + posY: 1.34036469 + posZ: 51.0713 + rotX: 0.020807242 + rotY: 270.006 + rotZ: 0.0167728737 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic 64bb5b/Custom_Model_Bag Mystic 1d900d/Card Sign Magick e90b04.yaml b/unpacked/Custom_Model_Bag Mystic 64bb5b/Custom_Model_Bag Mystic 1d900d/Card Sign Magick e90b04.yaml new file mode 100644 index 000000000..0dea719d5 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic 64bb5b/Custom_Model_Bag Mystic 1d900d/Card Sign Magick e90b04.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 277510 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: e90b04 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Sign Magick +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.5528984 + posY: 1.33968925 + posZ: 48.764 + rotX: 0.02083898 + rotY: 269.897644 + rotZ: 0.0167334136 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic 64bb5b/Custom_Model_Bag Mystic 1d900d/Card Sixth Sense 8070ac.yaml b/unpacked/Custom_Model_Bag Mystic 64bb5b/Custom_Model_Bag Mystic 1d900d/Card Sixth Sense 8070ac.yaml new file mode 100644 index 000000000..bd19ae1be --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic 64bb5b/Custom_Model_Bag Mystic 1d900d/Card Sixth Sense 8070ac.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 8070ac +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Sixth Sense +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 7.015798 + posY: 1.35119164 + posZ: 92.4487 + rotX: 0.0208175872 + rotY: 269.9703 + rotZ: 0.0167597122 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic 64bb5b/Custom_Model_Bag Mystic 1d900d/Card Spectral Razor 8e8a14.yaml b/unpacked/Custom_Model_Bag Mystic 64bb5b/Custom_Model_Bag Mystic 1d900d/Card Spectral Razor 8e8a14.yaml new file mode 100644 index 000000000..eae34ec89 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic 64bb5b/Custom_Model_Bag Mystic 1d900d/Card Spectral Razor 8e8a14.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Spell. +GMNotes: '' +GUID: 8e8a14 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Spectral Razor +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.2840843 + posY: 1.34621942 + posZ: 60.24118 + rotX: 0.0208085645 + rotY: 270.0016 + rotZ: 0.01677193 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic 64bb5b/Custom_Model_Bag Mystic 1d900d/Card St. Hubert's Key 590c4a.yaml b/unpacked/Custom_Model_Bag Mystic 64bb5b/Custom_Model_Bag Mystic 1d900d/Card St. Hubert's Key 590c4a.yaml new file mode 100644 index 000000000..cd4ba5fb7 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic 64bb5b/Custom_Model_Bag Mystic 1d900d/Card St. Hubert's Key 590c4a.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Cleansing Fire +GMNotes: '' +GUID: 590c4a +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: St. Hubert's Key +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 7.015798 + posY: 1.349172 + posZ: 85.5487 + rotX: 0.0208147038 + rotY: 269.9805 + rotZ: 0.0167637281 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic 64bb5b/Custom_Model_Bag Mystic 1d900d/Card Storm of Spirits 05f644.yaml b/unpacked/Custom_Model_Bag Mystic 64bb5b/Custom_Model_Bag Mystic 1d900d/Card Storm of Spirits 05f644.yaml new file mode 100644 index 000000000..aab99c4be --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic 64bb5b/Custom_Model_Bag Mystic 1d900d/Card Storm of Spirits 05f644.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 05f644 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Storm of Spirits +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.2841511 + posY: 1.34419978 + posZ: 53.3411827 + rotX: 0.02081899 + rotY: 269.969482 + rotZ: 0.016761547 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic 64bb5b/Custom_Model_Bag Mystic 1d900d/Card The Chthonian Stone ed310c.yaml b/unpacked/Custom_Model_Bag Mystic 64bb5b/Custom_Model_Bag Mystic 1d900d/Card The Chthonian Stone ed310c.yaml new file mode 100644 index 000000000..89c389f45 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic 64bb5b/Custom_Model_Bag Mystic 1d900d/Card The Chthonian Stone ed310c.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Stygian Waymark +GMNotes: '' +GUID: ed310c +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: The Chthonian Stone +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.5709019 + posY: 1.34238768 + posZ: 57.9606 + rotX: 0.0208077636 + rotY: 270.006 + rotZ: 0.0167729072 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic 64bb5b/Custom_Model_Bag Mystic 1d900d/Card Torrent of Power 8017d9.yaml b/unpacked/Custom_Model_Bag Mystic 64bb5b/Custom_Model_Bag Mystic 1d900d/Card Torrent of Power 8017d9.yaml new file mode 100644 index 000000000..f95a02538 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic 64bb5b/Custom_Model_Bag Mystic 1d900d/Card Torrent of Power 8017d9.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 8017d9 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Torrent of Power +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 24.4394 + posY: 1.35750234 + posZ: 92.3904 + rotX: 0.02081787 + rotY: 269.9707 + rotZ: 0.0167596322 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic 64bb5b/Custom_Model_Bag Mystic 1d900d/Card Uncage the Soul b38243.yaml b/unpacked/Custom_Model_Bag Mystic 64bb5b/Custom_Model_Bag Mystic 1d900d/Card Uncage the Soul b38243.yaml new file mode 100644 index 000000000..91c60abc1 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic 64bb5b/Custom_Model_Bag Mystic 1d900d/Card Uncage the Soul b38243.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: b38243 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Uncage the Soul +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.2841 + posY: 1.352952 + posZ: 83.2412 + rotX: 0.0208178367 + rotY: 269.969421 + rotZ: 0.0167597383 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic 64bb5b/Custom_Model_Bag Mystic 1d900d/Card Ward of Protection 862255.yaml b/unpacked/Custom_Model_Bag Mystic 64bb5b/Custom_Model_Bag Mystic 1d900d/Card Ward of Protection 862255.yaml new file mode 100644 index 000000000..454d685a1 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic 64bb5b/Custom_Model_Bag Mystic 1d900d/Card Ward of Protection 862255.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: '862255' +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Ward of Protection +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.2841 + posY: 1.35093212 + posZ: 76.3412 + rotX: 0.0208179932 + rotY: 269.969666 + rotZ: 0.0167592987 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic 64bb5b/Custom_Model_Bag Mystic 1d900d/Card Wither ef36a1.yaml b/unpacked/Custom_Model_Bag Mystic 64bb5b/Custom_Model_Bag Mystic 1d900d/Card Wither ef36a1.yaml new file mode 100644 index 000000000..aebf695fc --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic 64bb5b/Custom_Model_Bag Mystic 1d900d/Card Wither ef36a1.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: ef36a1 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Wither +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.5688982 + posY: 1.34306026 + posZ: 60.2608 + rotX: 0.0208000876 + rotY: 270.031036 + rotZ: 0.01678196 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic b4d9bf.ttslua b/unpacked/Custom_Model_Bag Mystic b4d9bf.ttslua new file mode 100644 index 000000000..857093fb8 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic b4d9bf.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,0,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 + 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=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,0,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,0,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,0,0}, height=350, width=750, + 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}, rotation={0,0,0}, height=350, width=800, + font_size=250, color={0,0,0}, font_color={1,1,1} + }) +-- self.createButton({ +-- label="Setup", click_function="buttonClick_setup", function_owner=self, +-- position={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.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 \ No newline at end of file diff --git a/unpacked/Custom_Model_Bag Mystic b4d9bf.yaml b/unpacked/Custom_Model_Bag Mystic b4d9bf.yaml new file mode 100644 index 000000000..86e412ccf --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic b4d9bf.yaml @@ -0,0 +1,100 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +ContainedObjects: +- !include 'Custom_Model_Bag Mystic b4d9bf/Card Torrent of Power 9f2514.yaml' +- !include 'Custom_Model_Bag Mystic b4d9bf/Card Prophesy e0906c.yaml' +- !include 'Custom_Model_Bag Mystic b4d9bf/Card Enraptured 0ce7b8.yaml' +- !include 'Custom_Model_Bag Mystic b4d9bf/Card Defiance 946958.yaml' +- !include 'Custom_Model_Bag Mystic b4d9bf/Card Uncage the Soul a82830.yaml' +- !include 'Custom_Model_Bag Mystic b4d9bf/Card Fearless f21135.yaml' +- !include 'Custom_Model_Bag Mystic b4d9bf/Card Drawn to the Flame b36f5e.yaml' +- !include 'Custom_Model_Bag Mystic b4d9bf/Card Premonition 348395.yaml' +- !include 'Custom_Model_Bag Mystic b4d9bf/Card Eldritch Inspiration a268ef.yaml' +- !include 'Custom_Model_Bag Mystic b4d9bf/Card Deny Existence 62db13.yaml' +- !include 'Custom_Model_Bag Mystic b4d9bf/Card Moonlight Ritual 247824.yaml' +- !include 'Custom_Model_Bag Mystic b4d9bf/Card Quantum Flux 562eb1.yaml' +- !include 'Custom_Model_Bag Mystic b4d9bf/Card Open Gate dfc9b0.yaml' +- !include 'Custom_Model_Bag Mystic b4d9bf/Card Ward of Protection 9bee5a.yaml' +- !include 'Custom_Model_Bag Mystic b4d9bf/Card Dark Prophecy 74b8d4.yaml' +- !include 'Custom_Model_Bag Mystic b4d9bf/Card Blinding Light 00d05a.yaml' +- !include 'Custom_Model_Bag Mystic b4d9bf/Card Delve too Deep b83784.yaml' +- !include 'Custom_Model_Bag Mystic b4d9bf/Card Ethereal Form ee51d8.yaml' +- !include 'Custom_Model_Bag Mystic b4d9bf/Card Read the Signs 4f33d5.yaml' +- !include 'Custom_Model_Bag Mystic b4d9bf/Card Spectral Razor b6bccc.yaml' +- !include 'Custom_Model_Bag Mystic b4d9bf/Card Astral Travel 8bb57d.yaml' +- !include 'Custom_Model_Bag Mystic b4d9bf/Card Hypnotic Gaze e546c0.yaml' +- !include 'Custom_Model_Bag Mystic b4d9bf/Card Storm of Spirits e792b0.yaml' +- !include 'Custom_Model_Bag Mystic b4d9bf/Card Sign Magick 4fe0b8.yaml' +- !include 'Custom_Model_Bag Mystic b4d9bf/Card Shrivelling e16d74.yaml' +- !include 'Custom_Model_Bag Mystic b4d9bf/Card Scroll of Prophecies ebdac9.yaml' +- !include 'Custom_Model_Bag Mystic b4d9bf/Card Enchanted Blade 0e459d.yaml' +- !include 'Custom_Model_Bag Mystic b4d9bf/Card The Chthonian Stone 916f1c.yaml' +- !include 'Custom_Model_Bag Mystic b4d9bf/Card Wither 5792ab.yaml' +- !include 'Custom_Model_Bag Mystic b4d9bf/Card Mists of R''lyeh 64fcdf.yaml' +- !include 'Custom_Model_Bag Mystic b4d9bf/Card David Renfield 3120e7.yaml' +- !include 'Custom_Model_Bag Mystic b4d9bf/Card Arcane Studies eb8234.yaml' +- !include 'Custom_Model_Bag Mystic b4d9bf/Card Holy Rosary 98aa6a.yaml' +- !include 'Custom_Model_Bag Mystic b4d9bf/Card Healing Words 4abb47.yaml' +- !include 'Custom_Model_Bag Mystic b4d9bf/Card Clarity of Mind e563d5.yaml' +- !include 'Custom_Model_Bag Mystic b4d9bf/Card Olive McBride 715974.yaml' +- !include 'Custom_Model_Bag Mystic b4d9bf/Card Alchemical Transmutation 7d133c.yaml' +- !include 'Custom_Model_Bag Mystic b4d9bf/Card Scrying 24a147.yaml' +- !include 'Custom_Model_Bag Mystic b4d9bf/Card Scroll of Secrets c63ec7.yaml' +- !include 'Custom_Model_Bag Mystic b4d9bf/Card Arcane Initiate 4287c0.yaml' +- !include 'Custom_Model_Bag Mystic b4d9bf/Card Ritual Candles d2776c.yaml' +- !include 'Custom_Model_Bag Mystic b4d9bf/Card Arcane Research fee183.yaml' +- !include 'Custom_Model_Bag Mystic b4d9bf/Card Forbidden Knowledge 7cf231.yaml' +- !include 'Custom_Model_Bag Mystic b4d9bf/Card Rite of Seeking 8b39e9.yaml' +- !include 'Custom_Model_Bag Mystic b4d9bf/Card Sixth Sense b7efb5.yaml' +- !include 'Custom_Model_Bag Mystic b4d9bf/Card Alyssa Graham a26795.yaml' +- !include 'Custom_Model_Bag Mystic b4d9bf/Card St. Hubert''s Key 5905a9.yaml' +- !include 'Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic a0c9eb.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/952965722516557267/757887224F6C37104CDFFE241FAD09B57117D670/ + MaterialIndex: 3 + MeshURL: https://pastebin.com/raw/ALrYhQGb + NormalURL: '' + TypeIndex: 6 +Description: '' +GMNotes: '' +GUID: b4d9bf +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: true +LuaScript: !include 'Custom_Model_Bag Mystic b4d9bf.ttslua' +LuaScriptState: '{"ml":{"00d05a":{"lock":false,"pos":{"x":53.2286,"y":1.3606,"z":67.1411},"rot":{"x":0.0208,"y":269.9677,"z":0.0168}},"0ce7b8":{"lock":false,"pos":{"x":58.3839,"y":1.3685,"z":87.7904},"rot":{"x":0.0208,"y":269.971,"z":0.0168}},"0e459d":{"lock":false,"pos":{"x":44.5132,"y":1.354,"z":55.6608},"rot":{"x":0.0208,"y":270.0058,"z":0.0168}},"247824":{"lock":false,"pos":{"x":53.2286,"y":1.3646,"z":80.9412},"rot":{"x":0.0208,"y":269.9681,"z":0.0168}},"24a147":{"lock":false,"pos":{"x":44.5133,"y":1.3614,"z":80.9607},"rot":{"x":0.0208,"y":270.0308,"z":0.0168}},"3120e7":{"lock":false,"pos":{"x":44.5133,"y":1.3567,"z":64.8607},"rot":{"x":0.0208,"y":270.0311,"z":0.0168}},"348395":{"lock":false,"pos":{"x":53.2286,"y":1.3666,"z":87.8412},"rot":{"x":0.0208,"y":269.968,"z":0.0168}},"4287c0":{"lock":false,"pos":{"x":44.5133,"y":1.3628,"z":85.5608},"rot":{"x":0.0208,"y":270.0308,"z":0.0168}},"4abb47":{"lock":false,"pos":{"x":44.5133,"y":1.3588,"z":71.7607},"rot":{"x":0.0208,"y":270.0047,"z":0.0168}},"4f33d5":{"lock":false,"pos":{"x":53.2286,"y":1.3592,"z":62.5412},"rot":{"x":0.0208,"y":270.0185,"z":0.0168}},"4fe0b8":{"lock":false,"pos":{"x":44.4974,"y":1.352,"z":48.764},"rot":{"x":0.0208,"y":269.8976,"z":0.0167}},"562eb1":{"lock":false,"pos":{"x":53.2286,"y":1.3639,"z":78.6412},"rot":{"x":0.0208,"y":269.9697,"z":0.0168}},"5792ab":{"lock":false,"pos":{"x":44.5133,"y":1.3554,"z":60.2608},"rot":{"x":0.0208,"y":270.031,"z":0.0168}},"5905a9":{"lock":false,"pos":{"x":40.9602,"y":1.3615,"z":85.5487},"rot":{"x":0.0208,"y":269.9805,"z":0.0168}},"62db13":{"lock":false,"pos":{"x":53.2286,"y":1.368,"z":92.4412},"rot":{"x":0.0208,"y":269.9674,"z":0.0168}},"64fcdf":{"lock":false,"pos":{"x":44.5133,"y":1.3561,"z":62.5608},"rot":{"x":0.0208,"y":270.031,"z":0.0168}},"715974":{"lock":false,"pos":{"x":44.5133,"y":1.3601,"z":76.3607},"rot":{"x":0.0208,"y":270.031,"z":0.0168}},"74b8d4":{"lock":false,"pos":{"x":53.2286,"y":1.3619,"z":71.7412},"rot":{"x":0.0208,"y":269.9677,"z":0.0168}},"7cf231":{"lock":false,"pos":{"x":44.5137,"y":1.3641,"z":90.1039},"rot":{"x":0.0208,"y":270.031,"z":0.0168}},"7d133c":{"lock":false,"pos":{"x":44.5133,"y":1.3608,"z":78.6607},"rot":{"x":0.0208,"y":270.0308,"z":0.0168}},"8b39e9":{"lock":false,"pos":{"x":40.9602,"y":1.3628,"z":90.1487},"rot":{"x":0.0208,"y":269.9865,"z":0.0168}},"8bb57d":{"lock":false,"pos":{"x":53.2306,"y":1.3579,"z":57.941},"rot":{"x":0.0208,"y":269.9679,"z":0.0168}},"916f1c":{"lock":false,"pos":{"x":44.5154,"y":1.3547,"z":57.9606},"rot":{"x":0.0208,"y":270.006,"z":0.0168}},"946958":{"lock":false,"pos":{"x":58.3839,"y":1.3678,"z":85.4904},"rot":{"x":0.0208,"y":269.9708,"z":0.0168}},"98aa6a":{"lock":false,"pos":{"x":44.5133,"y":1.3581,"z":69.4607},"rot":{"x":0.0208,"y":270.031,"z":0.0168}},"9bee5a":{"lock":false,"pos":{"x":53.2286,"y":1.3633,"z":76.3412},"rot":{"x":0.0208,"y":269.9697,"z":0.0168}},"9f2514":{"lock":false,"pos":{"x":58.3839,"y":1.3698,"z":92.3904},"rot":{"x":0.0208,"y":269.9707,"z":0.0168}},"a26795":{"lock":false,"pos":{"x":40.9602,"y":1.3622,"z":87.8487},"rot":{"x":0.0208,"y":269.9846,"z":0.0168}},"a268ef":{"lock":false,"pos":{"x":53.2286,"y":1.3673,"z":90.1413},"rot":{"x":0.0208,"y":269.9697,"z":0.0168}},"a82830":{"lock":false,"pos":{"x":53.2286,"y":1.3653,"z":83.2412},"rot":{"x":0.0208,"y":269.9694,"z":0.0168}},"b36f5e":{"lock":false,"pos":{"x":53.2286,"y":1.366,"z":85.5412},"rot":{"x":0.0208,"y":269.968,"z":0.0168}},"b6bccc":{"lock":false,"pos":{"x":53.2286,"y":1.3585,"z":60.2412},"rot":{"x":0.0208,"y":270.0016,"z":0.0168}},"b7efb5":{"lock":false,"pos":{"x":40.9602,"y":1.3635,"z":92.4487},"rot":{"x":0.0208,"y":269.9703,"z":0.0168}},"b83784":{"lock":false,"pos":{"x":53.2286,"y":1.3612,"z":69.4412},"rot":{"x":0.0208,"y":269.968,"z":0.0168}},"c63ec7":{"lock":false,"pos":{"x":44.5133,"y":1.3621,"z":83.2607},"rot":{"x":0.0208,"y":270.0309,"z":0.0168}},"d2776c":{"lock":false,"pos":{"x":44.5133,"y":1.3635,"z":87.8608},"rot":{"x":0.0208,"y":270.0311,"z":0.0168}},"dfc9b0":{"lock":false,"pos":{"x":53.2286,"y":1.3626,"z":74.0412},"rot":{"x":0.0208,"y":269.9695,"z":0.0168}},"e0906c":{"lock":false,"pos":{"x":58.3839,"y":1.3692,"z":90.0904},"rot":{"x":0.0208,"y":269.9708,"z":0.0168}},"e16d74":{"lock":false,"pos":{"x":44.4975,"y":1.3527,"z":51.0713},"rot":{"x":0.0208,"y":270.006,"z":0.0168}},"e546c0":{"lock":false,"pos":{"x":53.2285,"y":1.3572,"z":55.6412},"rot":{"x":0.0208,"y":269.9674,"z":0.0168}},"e563d5":{"lock":false,"pos":{"x":44.5133,"y":1.3594,"z":74.0607},"rot":{"x":0.0208,"y":270.0309,"z":0.0168}},"e792b0":{"lock":false,"pos":{"x":53.2286,"y":1.3565,"z":53.3412},"rot":{"x":0.0208,"y":269.9695,"z":0.0168}},"eb8234":{"lock":false,"pos":{"x":44.5133,"y":1.3574,"z":67.1607},"rot":{"x":0.0208,"y":270.031,"z":0.0168}},"ebdac9":{"lock":false,"pos":{"x":44.5134,"y":1.3534,"z":53.3608},"rot":{"x":0.0208,"y":270.0057,"z":0.0168}},"ee51d8":{"lock":false,"pos":{"x":53.2286,"y":1.3599,"z":64.8411},"rot":{"x":0.0208,"y":270.0125,"z":0.0168}},"f21135":{"lock":false,"pos":{"x":58.3839,"y":1.3671,"z":83.1904},"rot":{"x":0.0208,"y":269.9708,"z":0.0168}},"fee183":{"lock":false,"pos":{"x":44.5133,"y":1.3648,"z":92.4607},"rot":{"x":0.0208,"y":270.0309,"z":0.0168}}}}' +MaterialIndex: -1 +MeshIndex: -1 +Name: Custom_Model_Bag +Nickname: Mystic +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 66.5861 + posY: 1.41151953 + posZ: 59.67662 + rotX: 0.0208025333 + rotY: 270.028717 + rotZ: 0.01678063 + scaleX: 1.2 + scaleY: 1.2 + scaleZ: 1.2 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic b4d9bf/Card Alchemical Transmutation 7d133c.yaml b/unpacked/Custom_Model_Bag Mystic b4d9bf/Card Alchemical Transmutation 7d133c.yaml new file mode 100644 index 000000000..027aea64b --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic b4d9bf/Card Alchemical Transmutation 7d133c.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 7d133c +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Alchemical Transmutation +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.51332 + posY: 1.36077392 + posZ: 78.66074 + rotX: 0.0207989663 + rotY: 270.030762 + rotZ: 0.0167808868 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic b4d9bf/Card Alyssa Graham a26795.yaml b/unpacked/Custom_Model_Bag Mystic b4d9bf/Card Alyssa Graham a26795.yaml new file mode 100644 index 000000000..6036070ca --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic b4d9bf/Card Alyssa Graham a26795.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Speaker to the Dead +GMNotes: '' +GUID: a26795 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Alyssa Graham +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 40.960228 + posY: 1.36217284 + posZ: 87.8487244 + rotX: 0.0208126456 + rotY: 269.984558 + rotZ: 0.01676438 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic b4d9bf/Card Arcane Initiate 4287c0.yaml b/unpacked/Custom_Model_Bag Mystic b4d9bf/Card Arcane Initiate 4287c0.yaml new file mode 100644 index 000000000..f0d4f96ba --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic b4d9bf/Card Arcane Initiate 4287c0.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 4287c0 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Arcane Initiate +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.5133324 + posY: 1.36279356 + posZ: 85.56075 + rotX: 0.0207990054 + rotY: 270.030823 + rotZ: 0.0167812221 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic b4d9bf/Card Arcane Research fee183.yaml b/unpacked/Custom_Model_Bag Mystic b4d9bf/Card Arcane Research fee183.yaml new file mode 100644 index 000000000..72321ab67 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic b4d9bf/Card Arcane Research fee183.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: fee183 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Arcane Research +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.51333 + posY: 1.36481321 + posZ: 92.46075 + rotX: 0.0207992177 + rotY: 270.030853 + rotZ: 0.01678084 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic b4d9bf/Card Arcane Studies eb8234.yaml b/unpacked/Custom_Model_Bag Mystic b4d9bf/Card Arcane Studies eb8234.yaml new file mode 100644 index 000000000..55c11be2c --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic b4d9bf/Card Arcane Studies eb8234.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: eb8234 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Arcane Studies +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.5133171 + posY: 1.35740757 + posZ: 67.1607056 + rotX: 0.0207989216 + rotY: 270.030975 + rotZ: 0.0167808477 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic b4d9bf/Card Astral Travel 8bb57d.yaml b/unpacked/Custom_Model_Bag Mystic b4d9bf/Card Astral Travel 8bb57d.yaml new file mode 100644 index 000000000..e25a2ab9f --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic b4d9bf/Card Astral Travel 8bb57d.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 8bb57d +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Astral Travel +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 53.23061 + posY: 1.35787463 + posZ: 57.9409752 + rotX: 0.0208194815 + rotY: 269.9679 + rotZ: 0.0167610385 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic b4d9bf/Card Blinding Light 00d05a.yaml b/unpacked/Custom_Model_Bag Mystic b4d9bf/Card Blinding Light 00d05a.yaml new file mode 100644 index 000000000..0ba24f95c --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic b4d9bf/Card Blinding Light 00d05a.yaml @@ -0,0 +1,42 @@ +Autoraise: true +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 00d05a +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Blinding Light +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 53.22857 + posY: 1.36056709 + posZ: 67.14111 + rotX: 0.0208176337 + rotY: 269.967651 + rotZ: 0.0167580433 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic b4d9bf/Card Clarity of Mind e563d5.yaml b/unpacked/Custom_Model_Bag Mystic b4d9bf/Card Clarity of Mind e563d5.yaml new file mode 100644 index 000000000..70ab2c5b5 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic b4d9bf/Card Clarity of Mind e563d5.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: e563d5 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Clarity of Mind +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.51332 + posY: 1.35942733 + posZ: 74.0607452 + rotX: 0.0207989085 + rotY: 270.030853 + rotZ: 0.01678085 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic b4d9bf/Card Dark Prophecy 74b8d4.yaml b/unpacked/Custom_Model_Bag Mystic b4d9bf/Card Dark Prophecy 74b8d4.yaml new file mode 100644 index 000000000..2548faa50 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic b4d9bf/Card Dark Prophecy 74b8d4.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 74b8d4 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Dark Prophecy +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 53.2285767 + posY: 1.36191356 + posZ: 71.7412338 + rotX: 0.0208177548 + rotY: 269.967651 + rotZ: 0.0167579483 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic b4d9bf/Card David Renfield 3120e7.yaml b/unpacked/Custom_Model_Bag Mystic b4d9bf/Card David Renfield 3120e7.yaml new file mode 100644 index 000000000..0edf85831 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic b4d9bf/Card David Renfield 3120e7.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Esteemed Eschatologist +GMNotes: '' +GUID: 3120e7 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: David Renfield +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.5133171 + posY: 1.3567344 + posZ: 64.8606949 + rotX: 0.0207990166 + rotY: 270.0311 + rotZ: 0.01678096 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic b4d9bf/Card Defiance 946958.yaml b/unpacked/Custom_Model_Bag Mystic b4d9bf/Card Defiance 946958.yaml new file mode 100644 index 000000000..7b8c1ca37 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic b4d9bf/Card Defiance 946958.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: '946958' +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Defiance +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 58.38386 + posY: 1.36781037 + posZ: 85.49039 + rotX: 0.0208166651 + rotY: 269.970764 + rotZ: 0.016759064 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic b4d9bf/Card Delve too Deep b83784.yaml b/unpacked/Custom_Model_Bag Mystic b4d9bf/Card Delve too Deep b83784.yaml new file mode 100644 index 000000000..112e1cbd5 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic b4d9bf/Card Delve too Deep b83784.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: b83784 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Delve too Deep +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 53.2285652 + posY: 1.36124027 + posZ: 69.44122 + rotX: 0.0208212286 + rotY: 269.967957 + rotZ: 0.0167583469 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic b4d9bf/Card Deny Existence 62db13.yaml b/unpacked/Custom_Model_Bag Mystic b4d9bf/Card Deny Existence 62db13.yaml new file mode 100644 index 000000000..4b7b5a1c0 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic b4d9bf/Card Deny Existence 62db13.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 278808 +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/1016065725025945336/04E36F64C2CBE1B4905FF44A869C75EC52CB3A56/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 62db13 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Deny Existence +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 53.22858 + posY: 1.36797273 + posZ: 92.44124 + rotX: 0.02081753 + rotY: 269.9674 + rotZ: 0.01675788 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic b4d9bf/Card Drawn to the Flame b36f5e.yaml b/unpacked/Custom_Model_Bag Mystic b4d9bf/Card Drawn to the Flame b36f5e.yaml new file mode 100644 index 000000000..b3409b281 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic b4d9bf/Card Drawn to the Flame b36f5e.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: b36f5e +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Drawn to the Flame +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 53.2285843 + posY: 1.365953 + posZ: 85.5412445 + rotX: 0.0208174642 + rotY: 269.968 + rotZ: 0.0167582836 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic b4d9bf/Card Eldritch Inspiration a268ef.yaml b/unpacked/Custom_Model_Bag Mystic b4d9bf/Card Eldritch Inspiration a268ef.yaml new file mode 100644 index 000000000..55a57581c --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic b4d9bf/Card Eldritch Inspiration a268ef.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 278807 +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/1016065725025945336/04E36F64C2CBE1B4905FF44A869C75EC52CB3A56/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: a268ef +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Eldritch Inspiration +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 53.22858 + posY: 1.36729944 + posZ: 90.14125 + rotX: 0.0208169632 + rotY: 269.969666 + rotZ: 0.0167588145 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic b4d9bf/Card Enchanted Blade 0e459d.yaml b/unpacked/Custom_Model_Bag Mystic b4d9bf/Card Enchanted Blade 0e459d.yaml new file mode 100644 index 000000000..07461c972 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic b4d9bf/Card Enchanted Blade 0e459d.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 0e459d +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Enchanted Blade +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.5132332 + posY: 1.35404146 + posZ: 55.66079 + rotX: 0.0208079964 + rotY: 270.005829 + rotZ: 0.0167746544 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic b4d9bf/Card Enraptured 0ce7b8.yaml b/unpacked/Custom_Model_Bag Mystic b4d9bf/Card Enraptured 0ce7b8.yaml new file mode 100644 index 000000000..6d0a74e3f --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic b4d9bf/Card Enraptured 0ce7b8.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 0ce7b8 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Enraptured +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 58.3838539 + posY: 1.36848366 + posZ: 87.79039 + rotX: 0.02081672 + rotY: 269.970978 + rotZ: 0.016759526 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic b4d9bf/Card Ethereal Form ee51d8.yaml b/unpacked/Custom_Model_Bag Mystic b4d9bf/Card Ethereal Form ee51d8.yaml new file mode 100644 index 000000000..cb41124ed --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic b4d9bf/Card Ethereal Form ee51d8.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: ee51d8 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Ethereal Form +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 53.22857 + posY: 1.3598938 + posZ: 64.8411 + rotX: 0.02080436 + rotY: 270.0125 + rotZ: 0.0167743657 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic b4d9bf/Card Fearless f21135.yaml b/unpacked/Custom_Model_Bag Mystic b4d9bf/Card Fearless f21135.yaml new file mode 100644 index 000000000..fe9acf051 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic b4d9bf/Card Fearless f21135.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: f21135 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Fearless +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 58.38387 + posY: 1.36713719 + posZ: 83.19039 + rotX: 0.0208177455 + rotY: 269.970764 + rotZ: 0.0167600811 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic b4d9bf/Card Forbidden Knowledge 7cf231.yaml b/unpacked/Custom_Model_Bag Mystic b4d9bf/Card Forbidden Knowledge 7cf231.yaml new file mode 100644 index 000000000..38ace3d19 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic b4d9bf/Card Forbidden Knowledge 7cf231.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 7cf231 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Forbidden Knowledge +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.5137329 + posY: 1.36412346 + posZ: 90.10386 + rotX: 0.0207994319 + rotY: 270.030975 + rotZ: 0.0167774446 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic b4d9bf/Card Healing Words 4abb47.yaml b/unpacked/Custom_Model_Bag Mystic b4d9bf/Card Healing Words 4abb47.yaml new file mode 100644 index 000000000..55a18136d --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic b4d9bf/Card Healing Words 4abb47.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 4abb47 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Healing Words +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.5133247 + posY: 1.358754 + posZ: 71.76074 + rotX: 0.0208070315 + rotY: 270.004669 + rotZ: 0.0167713426 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic b4d9bf/Card Holy Rosary 98aa6a.yaml b/unpacked/Custom_Model_Bag Mystic b4d9bf/Card Holy Rosary 98aa6a.yaml new file mode 100644 index 000000000..9accfda82 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic b4d9bf/Card Holy Rosary 98aa6a.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 98aa6a +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Holy Rosary +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.51332 + posY: 1.35808086 + posZ: 69.46074 + rotX: 0.0207990576 + rotY: 270.031036 + rotZ: 0.01678102 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic b4d9bf/Card Hypnotic Gaze e546c0.yaml b/unpacked/Custom_Model_Bag Mystic b4d9bf/Card Hypnotic Gaze e546c0.yaml new file mode 100644 index 000000000..ab3966083 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic b4d9bf/Card Hypnotic Gaze e546c0.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: e546c0 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Hypnotic Gaze +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 53.2284851 + posY: 1.35720074 + posZ: 55.6411972 + rotX: 0.0208197776 + rotY: 269.9674 + rotZ: 0.0167610124 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic b4d9bf/Card Mists of R'lyeh 64fcdf.yaml b/unpacked/Custom_Model_Bag Mystic b4d9bf/Card Mists of R'lyeh 64fcdf.yaml new file mode 100644 index 000000000..b59e189b5 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic b4d9bf/Card Mists of R'lyeh 64fcdf.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 64fcdf +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Mists of R'lyeh +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.51332 + posY: 1.3560611 + posZ: 62.5607872 + rotX: 0.0208006259 + rotY: 270.031036 + rotZ: 0.0167836621 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic b4d9bf/Card Moonlight Ritual 247824.yaml b/unpacked/Custom_Model_Bag Mystic b4d9bf/Card Moonlight Ritual 247824.yaml new file mode 100644 index 000000000..15fc100d3 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic b4d9bf/Card Moonlight Ritual 247824.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 230306 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: '247824' +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Moonlight Ritual +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 53.22858 + posY: 1.3646065 + posZ: 80.94124 + rotX: 0.0208172966 + rotY: 269.9681 + rotZ: 0.0167582557 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic b4d9bf/Card Olive McBride 715974.yaml b/unpacked/Custom_Model_Bag Mystic b4d9bf/Card Olive McBride 715974.yaml new file mode 100644 index 000000000..d7877c709 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic b4d9bf/Card Olive McBride 715974.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Will Try Anything Once +GMNotes: '' +GUID: '715974' +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Olive McBride +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.51332 + posY: 1.36010063 + posZ: 76.36074 + rotX: 0.0207990389 + rotY: 270.031 + rotZ: 0.0167815629 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic b4d9bf/Card Open Gate dfc9b0.yaml b/unpacked/Custom_Model_Bag Mystic b4d9bf/Card Open Gate dfc9b0.yaml new file mode 100644 index 000000000..9e2d35737 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic b4d9bf/Card Open Gate dfc9b0.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 440824 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: dfc9b0 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Open Gate +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 53.2285767 + posY: 1.36258686 + posZ: 74.04124 + rotX: 0.0208167154 + rotY: 269.969482 + rotZ: 0.016758807 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic b4d9bf/Card Premonition 348395.yaml b/unpacked/Custom_Model_Bag Mystic b4d9bf/Card Premonition 348395.yaml new file mode 100644 index 000000000..10e94036a --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic b4d9bf/Card Premonition 348395.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: '348395' +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Premonition +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 53.22858 + posY: 1.36662626 + posZ: 87.84125 + rotX: 0.02081761 + rotY: 269.967957 + rotZ: 0.0167584028 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic b4d9bf/Card Prophesy e0906c.yaml b/unpacked/Custom_Model_Bag Mystic b4d9bf/Card Prophesy e0906c.yaml new file mode 100644 index 000000000..b3d8a82fa --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic b4d9bf/Card Prophesy e0906c.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 278706 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2787': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025945336/04E36F64C2CBE1B4905FF44A869C75EC52CB3A56/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: e0906c +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Prophesy +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 58.3838539 + posY: 1.3691566 + posZ: 90.09039 + rotX: 0.020816464 + rotY: 269.970764 + rotZ: 0.01675925 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic b4d9bf/Card Quantum Flux 562eb1.yaml b/unpacked/Custom_Model_Bag Mystic b4d9bf/Card Quantum Flux 562eb1.yaml new file mode 100644 index 000000000..6b3664b0e --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic b4d9bf/Card Quantum Flux 562eb1.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 562eb1 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Quantum Flux +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 53.2285728 + posY: 1.36393332 + posZ: 78.6412354 + rotX: 0.020816762 + rotY: 269.969666 + rotZ: 0.0167589411 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic b4d9bf/Card Read the Signs 4f33d5.yaml b/unpacked/Custom_Model_Bag Mystic b4d9bf/Card Read the Signs 4f33d5.yaml new file mode 100644 index 000000000..3676f5d5e --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic b4d9bf/Card Read the Signs 4f33d5.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 4f33d5 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Read the Signs +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 53.2285728 + posY: 1.3592205 + posZ: 62.5411949 + rotX: 0.0208045952 + rotY: 270.0185 + rotZ: 0.016779488 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic b4d9bf/Card Rite of Seeking 8b39e9.yaml b/unpacked/Custom_Model_Bag Mystic b4d9bf/Card Rite of Seeking 8b39e9.yaml new file mode 100644 index 000000000..cbd0238a8 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic b4d9bf/Card Rite of Seeking 8b39e9.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 8b39e9 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Rite of Seeking +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 40.960228 + posY: 1.36284614 + posZ: 90.14873 + rotX: 0.0208120327 + rotY: 269.98645 + rotZ: 0.0167648345 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic b4d9bf/Card Ritual Candles d2776c.yaml b/unpacked/Custom_Model_Bag Mystic b4d9bf/Card Ritual Candles d2776c.yaml new file mode 100644 index 000000000..8fe4f44d6 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic b4d9bf/Card Ritual Candles d2776c.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: d2776c +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Ritual Candles +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.51333 + posY: 1.36346686 + posZ: 87.8607559 + rotX: 0.02080011 + rotY: 270.031128 + rotZ: 0.0167817567 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic b4d9bf/Card Scroll of Prophecies ebdac9.yaml b/unpacked/Custom_Model_Bag Mystic b4d9bf/Card Scroll of Prophecies ebdac9.yaml new file mode 100644 index 000000000..b84b7ea2e --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic b4d9bf/Card Scroll of Prophecies ebdac9.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: ebdac9 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Scroll of Prophecies +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.5133629 + posY: 1.35336816 + posZ: 53.36077 + rotX: 0.0208085813 + rotY: 270.005737 + rotZ: 0.0167748127 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic b4d9bf/Card Scroll of Secrets c63ec7.yaml b/unpacked/Custom_Model_Bag Mystic b4d9bf/Card Scroll of Secrets c63ec7.yaml new file mode 100644 index 000000000..818e38b42 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic b4d9bf/Card Scroll of Secrets c63ec7.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: c63ec7 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Scroll of Secrets +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.5133324 + posY: 1.36212039 + posZ: 83.26075 + rotX: 0.0207990911 + rotY: 270.030945 + rotZ: 0.0167813078 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic b4d9bf/Card Scrying 24a147.yaml b/unpacked/Custom_Model_Bag Mystic b4d9bf/Card Scrying 24a147.yaml new file mode 100644 index 000000000..5ec94e575 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic b4d9bf/Card Scrying 24a147.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 24a147 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Scrying +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.51333 + posY: 1.3614471 + posZ: 80.96075 + rotX: 0.0207993314 + rotY: 270.030823 + rotZ: 0.0167811 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic b4d9bf/Card Shrivelling e16d74.yaml b/unpacked/Custom_Model_Bag Mystic b4d9bf/Card Shrivelling e16d74.yaml new file mode 100644 index 000000000..88dda2bb0 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic b4d9bf/Card Shrivelling e16d74.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: e16d74 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Shrivelling +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.4975433 + posY: 1.35269248 + posZ: 51.07133 + rotX: 0.0208085161 + rotY: 270.005981 + rotZ: 0.01677481 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic b4d9bf/Card Sign Magick 4fe0b8.yaml b/unpacked/Custom_Model_Bag Mystic b4d9bf/Card Sign Magick 4fe0b8.yaml new file mode 100644 index 000000000..e23200d78 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic b4d9bf/Card Sign Magick 4fe0b8.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 277510 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 4fe0b8 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Sign Magick +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.49737 + posY: 1.35201693 + posZ: 48.7640038 + rotX: 0.0208396055 + rotY: 269.8976 + rotZ: 0.0167353358 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic b4d9bf/Card Sixth Sense b7efb5.yaml b/unpacked/Custom_Model_Bag Mystic b4d9bf/Card Sixth Sense b7efb5.yaml new file mode 100644 index 000000000..bd8cb2840 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic b4d9bf/Card Sixth Sense b7efb5.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: b7efb5 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Sixth Sense +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 40.960228 + posY: 1.36351931 + posZ: 92.4487152 + rotX: 0.0208166242 + rotY: 269.970276 + rotZ: 0.0167590957 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic b4d9bf/Card Spectral Razor b6bccc.yaml b/unpacked/Custom_Model_Bag Mystic b4d9bf/Card Spectral Razor b6bccc.yaml new file mode 100644 index 000000000..7bb6249fd --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic b4d9bf/Card Spectral Razor b6bccc.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Spell. +GMNotes: '' +GUID: b6bccc +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Spectral Razor +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 53.2285728 + posY: 1.35854721 + posZ: 60.2411957 + rotX: 0.0208096933 + rotY: 270.001556 + rotZ: 0.0167732388 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic b4d9bf/Card St. Hubert's Key 5905a9.yaml b/unpacked/Custom_Model_Bag Mystic b4d9bf/Card St. Hubert's Key 5905a9.yaml new file mode 100644 index 000000000..a5da4e162 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic b4d9bf/Card St. Hubert's Key 5905a9.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Cleansing Fire +GMNotes: '' +GUID: 5905a9 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: St. Hubert's Key +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 40.96023 + posY: 1.36149967 + posZ: 85.54871 + rotX: 0.0208136532 + rotY: 269.9805 + rotZ: 0.0167630911 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic b4d9bf/Card Storm of Spirits e792b0.yaml b/unpacked/Custom_Model_Bag Mystic b4d9bf/Card Storm of Spirits e792b0.yaml new file mode 100644 index 000000000..9f5b156e8 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic b4d9bf/Card Storm of Spirits e792b0.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: e792b0 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Storm of Spirits +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 53.2286148 + posY: 1.35652757 + posZ: 53.34118 + rotX: 0.0208191425 + rotY: 269.969482 + rotZ: 0.0167617816 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic b4d9bf/Card The Chthonian Stone 916f1c.yaml b/unpacked/Custom_Model_Bag Mystic b4d9bf/Card The Chthonian Stone 916f1c.yaml new file mode 100644 index 000000000..39dfb2e68 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic b4d9bf/Card The Chthonian Stone 916f1c.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Stygian Waymark +GMNotes: '' +GUID: 916f1c +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: The Chthonian Stone +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.515358 + posY: 1.35471535 + posZ: 57.9605675 + rotX: 0.0208079815 + rotY: 270.005981 + rotZ: 0.0167744756 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic b4d9bf/Card Torrent of Power 9f2514.yaml b/unpacked/Custom_Model_Bag Mystic b4d9bf/Card Torrent of Power 9f2514.yaml new file mode 100644 index 000000000..d5d4edfaa --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic b4d9bf/Card Torrent of Power 9f2514.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 9f2514 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Torrent of Power +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 58.3838539 + posY: 1.36983013 + posZ: 92.39038 + rotX: 0.0208167154 + rotY: 269.9707 + rotZ: 0.0167590585 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic b4d9bf/Card Uncage the Soul a82830.yaml b/unpacked/Custom_Model_Bag Mystic b4d9bf/Card Uncage the Soul a82830.yaml new file mode 100644 index 000000000..992b3ea17 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic b4d9bf/Card Uncage the Soul a82830.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: a82830 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Uncage the Soul +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 53.2285843 + posY: 1.36527979 + posZ: 83.24124 + rotX: 0.0208172649 + rotY: 269.969421 + rotZ: 0.0167586822 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic b4d9bf/Card Ward of Protection 9bee5a.yaml b/unpacked/Custom_Model_Bag Mystic b4d9bf/Card Ward of Protection 9bee5a.yaml new file mode 100644 index 000000000..f160465b5 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic b4d9bf/Card Ward of Protection 9bee5a.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 9bee5a +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Ward of Protection +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 53.2285767 + posY: 1.36326 + posZ: 76.34124 + rotX: 0.0208157916 + rotY: 269.969666 + rotZ: 0.0167592559 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic b4d9bf/Card Wither 5792ab.yaml b/unpacked/Custom_Model_Bag Mystic b4d9bf/Card Wither 5792ab.yaml new file mode 100644 index 000000000..7e82ba4d0 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic b4d9bf/Card Wither 5792ab.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 5792ab +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Wither +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.51332 + posY: 1.35538793 + posZ: 60.260788 + rotX: 0.0208005477 + rotY: 270.031 + rotZ: 0.0167836118 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic a0c9eb.ttslua b/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic a0c9eb.ttslua new file mode 100644 index 000000000..f882a7f09 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic a0c9eb.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,0,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 + 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=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,0,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,0,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,0,0}, height=350, width=750, + 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}, rotation={0,0,0}, height=350, width=800, + font_size=250, color={0,0,0}, font_color={1,1,1} + }) +-- self.createButton({ +-- label="Setup", click_function="buttonClick_setup", function_owner=self, +-- position={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.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 Mystic b4d9bf/Custom_Model_Bag Mystic a0c9eb.yaml b/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic a0c9eb.yaml new file mode 100644 index 000000000..0bb500d82 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic a0c9eb.yaml @@ -0,0 +1,99 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +ContainedObjects: +- !include 'Custom_Model_Bag Mystic a0c9eb/Card Torrent of Power 9f2514.yaml' +- !include 'Custom_Model_Bag Mystic a0c9eb/Card Prophesy e0906c.yaml' +- !include 'Custom_Model_Bag Mystic a0c9eb/Card Enraptured 0ce7b8.yaml' +- !include 'Custom_Model_Bag Mystic a0c9eb/Card Defiance 946958.yaml' +- !include 'Custom_Model_Bag Mystic a0c9eb/Card Uncage the Soul a82830.yaml' +- !include 'Custom_Model_Bag Mystic a0c9eb/Card Fearless f21135.yaml' +- !include 'Custom_Model_Bag Mystic a0c9eb/Card Drawn to the Flame b36f5e.yaml' +- !include 'Custom_Model_Bag Mystic a0c9eb/Card Premonition 348395.yaml' +- !include 'Custom_Model_Bag Mystic a0c9eb/Card Eldritch Inspiration a268ef.yaml' +- !include 'Custom_Model_Bag Mystic a0c9eb/Card Deny Existence 62db13.yaml' +- !include 'Custom_Model_Bag Mystic a0c9eb/Card Moonlight Ritual 247824.yaml' +- !include 'Custom_Model_Bag Mystic a0c9eb/Card Quantum Flux 562eb1.yaml' +- !include 'Custom_Model_Bag Mystic a0c9eb/Card Open Gate dfc9b0.yaml' +- !include 'Custom_Model_Bag Mystic a0c9eb/Card Ward of Protection 9bee5a.yaml' +- !include 'Custom_Model_Bag Mystic a0c9eb/Card Dark Prophecy 74b8d4.yaml' +- !include 'Custom_Model_Bag Mystic a0c9eb/Card Blinding Light 00d05a.yaml' +- !include 'Custom_Model_Bag Mystic a0c9eb/Card Delve too Deep b83784.yaml' +- !include 'Custom_Model_Bag Mystic a0c9eb/Card Ethereal Form ee51d8.yaml' +- !include 'Custom_Model_Bag Mystic a0c9eb/Card Read the Signs 4f33d5.yaml' +- !include 'Custom_Model_Bag Mystic a0c9eb/Card Spectral Razor b6bccc.yaml' +- !include 'Custom_Model_Bag Mystic a0c9eb/Card Astral Travel 8bb57d.yaml' +- !include 'Custom_Model_Bag Mystic a0c9eb/Card Hypnotic Gaze e546c0.yaml' +- !include 'Custom_Model_Bag Mystic a0c9eb/Card Storm of Spirits e792b0.yaml' +- !include 'Custom_Model_Bag Mystic a0c9eb/Card Sign Magick 4fe0b8.yaml' +- !include 'Custom_Model_Bag Mystic a0c9eb/Card Shrivelling e16d74.yaml' +- !include 'Custom_Model_Bag Mystic a0c9eb/Card Scroll of Prophecies ebdac9.yaml' +- !include 'Custom_Model_Bag Mystic a0c9eb/Card Enchanted Blade 0e459d.yaml' +- !include 'Custom_Model_Bag Mystic a0c9eb/Card The Chthonian Stone 916f1c.yaml' +- !include 'Custom_Model_Bag Mystic a0c9eb/Card Wither 5792ab.yaml' +- !include 'Custom_Model_Bag Mystic a0c9eb/Card Mists of R''lyeh 64fcdf.yaml' +- !include 'Custom_Model_Bag Mystic a0c9eb/Card David Renfield 3120e7.yaml' +- !include 'Custom_Model_Bag Mystic a0c9eb/Card Arcane Studies eb8234.yaml' +- !include 'Custom_Model_Bag Mystic a0c9eb/Card Holy Rosary 98aa6a.yaml' +- !include 'Custom_Model_Bag Mystic a0c9eb/Card Healing Words 4abb47.yaml' +- !include 'Custom_Model_Bag Mystic a0c9eb/Card Clarity of Mind e563d5.yaml' +- !include 'Custom_Model_Bag Mystic a0c9eb/Card Olive McBride 715974.yaml' +- !include 'Custom_Model_Bag Mystic a0c9eb/Card Alchemical Transmutation 7d133c.yaml' +- !include 'Custom_Model_Bag Mystic a0c9eb/Card Scrying 24a147.yaml' +- !include 'Custom_Model_Bag Mystic a0c9eb/Card Scroll of Secrets c63ec7.yaml' +- !include 'Custom_Model_Bag Mystic a0c9eb/Card Arcane Initiate 4287c0.yaml' +- !include 'Custom_Model_Bag Mystic a0c9eb/Card Ritual Candles d2776c.yaml' +- !include 'Custom_Model_Bag Mystic a0c9eb/Card Arcane Research fee183.yaml' +- !include 'Custom_Model_Bag Mystic a0c9eb/Card Forbidden Knowledge 7cf231.yaml' +- !include 'Custom_Model_Bag Mystic a0c9eb/Card Rite of Seeking 8b39e9.yaml' +- !include 'Custom_Model_Bag Mystic a0c9eb/Card Sixth Sense b7efb5.yaml' +- !include 'Custom_Model_Bag Mystic a0c9eb/Card Alyssa Graham a26795.yaml' +- !include 'Custom_Model_Bag Mystic a0c9eb/Card St. Hubert''s Key 5905a9.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/952965722516557267/757887224F6C37104CDFFE241FAD09B57117D670/ + MaterialIndex: 3 + MeshURL: https://pastebin.com/raw/ALrYhQGb + NormalURL: '' + TypeIndex: 6 +Description: '' +GMNotes: '' +GUID: a0c9eb +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Model_Bag Mystic a0c9eb.ttslua' +LuaScriptState: '{"ml":{"00d05a":{"lock":false,"pos":{"x":53.2286,"y":1.3606,"z":67.1411},"rot":{"x":0.0208,"y":269.9677,"z":0.0168}},"0ce7b8":{"lock":false,"pos":{"x":58.3839,"y":1.3685,"z":87.7904},"rot":{"x":0.0208,"y":269.971,"z":0.0168}},"0e459d":{"lock":false,"pos":{"x":44.5132,"y":1.354,"z":55.6608},"rot":{"x":0.0208,"y":270.0058,"z":0.0168}},"247824":{"lock":false,"pos":{"x":53.2286,"y":1.3646,"z":80.9412},"rot":{"x":0.0208,"y":269.9681,"z":0.0168}},"24a147":{"lock":false,"pos":{"x":44.5133,"y":1.3614,"z":80.9607},"rot":{"x":0.0208,"y":270.0308,"z":0.0168}},"3120e7":{"lock":false,"pos":{"x":44.5133,"y":1.3567,"z":64.8607},"rot":{"x":0.0208,"y":270.0311,"z":0.0168}},"348395":{"lock":false,"pos":{"x":53.2286,"y":1.3666,"z":87.8412},"rot":{"x":0.0208,"y":269.968,"z":0.0168}},"4287c0":{"lock":false,"pos":{"x":44.5133,"y":1.3628,"z":85.5608},"rot":{"x":0.0208,"y":270.0308,"z":0.0168}},"4abb47":{"lock":false,"pos":{"x":44.5133,"y":1.3588,"z":71.7607},"rot":{"x":0.0208,"y":270.0047,"z":0.0168}},"4f33d5":{"lock":false,"pos":{"x":53.2286,"y":1.3592,"z":62.5412},"rot":{"x":0.0208,"y":270.0185,"z":0.0168}},"4fe0b8":{"lock":false,"pos":{"x":44.4974,"y":1.352,"z":48.764},"rot":{"x":0.0208,"y":269.8976,"z":0.0167}},"562eb1":{"lock":false,"pos":{"x":53.2286,"y":1.3639,"z":78.6412},"rot":{"x":0.0208,"y":269.9697,"z":0.0168}},"5792ab":{"lock":false,"pos":{"x":44.5133,"y":1.3554,"z":60.2608},"rot":{"x":0.0208,"y":270.031,"z":0.0168}},"5905a9":{"lock":false,"pos":{"x":40.9602,"y":1.3615,"z":85.5487},"rot":{"x":0.0208,"y":269.9805,"z":0.0168}},"62db13":{"lock":false,"pos":{"x":53.2286,"y":1.368,"z":92.4412},"rot":{"x":0.0208,"y":269.9674,"z":0.0168}},"64fcdf":{"lock":false,"pos":{"x":44.5133,"y":1.3561,"z":62.5608},"rot":{"x":0.0208,"y":270.031,"z":0.0168}},"715974":{"lock":false,"pos":{"x":44.5133,"y":1.3601,"z":76.3607},"rot":{"x":0.0208,"y":270.031,"z":0.0168}},"74b8d4":{"lock":false,"pos":{"x":53.2286,"y":1.3619,"z":71.7412},"rot":{"x":0.0208,"y":269.9677,"z":0.0168}},"7cf231":{"lock":false,"pos":{"x":44.5137,"y":1.3641,"z":90.1039},"rot":{"x":0.0208,"y":270.031,"z":0.0168}},"7d133c":{"lock":false,"pos":{"x":44.5133,"y":1.3608,"z":78.6607},"rot":{"x":0.0208,"y":270.0308,"z":0.0168}},"8b39e9":{"lock":false,"pos":{"x":40.9602,"y":1.3628,"z":90.1487},"rot":{"x":0.0208,"y":269.9865,"z":0.0168}},"8bb57d":{"lock":false,"pos":{"x":53.2306,"y":1.3579,"z":57.941},"rot":{"x":0.0208,"y":269.9679,"z":0.0168}},"916f1c":{"lock":false,"pos":{"x":44.5154,"y":1.3547,"z":57.9606},"rot":{"x":0.0208,"y":270.006,"z":0.0168}},"946958":{"lock":false,"pos":{"x":58.3839,"y":1.3678,"z":85.4904},"rot":{"x":0.0208,"y":269.9708,"z":0.0168}},"98aa6a":{"lock":false,"pos":{"x":44.5133,"y":1.3581,"z":69.4607},"rot":{"x":0.0208,"y":270.031,"z":0.0168}},"9bee5a":{"lock":false,"pos":{"x":53.2286,"y":1.3633,"z":76.3412},"rot":{"x":0.0208,"y":269.9697,"z":0.0168}},"9f2514":{"lock":false,"pos":{"x":58.3839,"y":1.3698,"z":92.3904},"rot":{"x":0.0208,"y":269.9707,"z":0.0168}},"a26795":{"lock":false,"pos":{"x":40.9602,"y":1.3622,"z":87.8487},"rot":{"x":0.0208,"y":269.9846,"z":0.0168}},"a268ef":{"lock":false,"pos":{"x":53.2286,"y":1.3673,"z":90.1413},"rot":{"x":0.0208,"y":269.9697,"z":0.0168}},"a82830":{"lock":false,"pos":{"x":53.2286,"y":1.3653,"z":83.2412},"rot":{"x":0.0208,"y":269.9694,"z":0.0168}},"b36f5e":{"lock":false,"pos":{"x":53.2286,"y":1.366,"z":85.5412},"rot":{"x":0.0208,"y":269.968,"z":0.0168}},"b6bccc":{"lock":false,"pos":{"x":53.2286,"y":1.3585,"z":60.2412},"rot":{"x":0.0208,"y":270.0016,"z":0.0168}},"b7efb5":{"lock":false,"pos":{"x":40.9602,"y":1.3635,"z":92.4487},"rot":{"x":0.0208,"y":269.9703,"z":0.0168}},"b83784":{"lock":false,"pos":{"x":53.2286,"y":1.3612,"z":69.4412},"rot":{"x":0.0208,"y":269.968,"z":0.0168}},"c63ec7":{"lock":false,"pos":{"x":44.5133,"y":1.3621,"z":83.2607},"rot":{"x":0.0208,"y":270.0309,"z":0.0168}},"d2776c":{"lock":false,"pos":{"x":44.5133,"y":1.3635,"z":87.8608},"rot":{"x":0.0208,"y":270.0311,"z":0.0168}},"dfc9b0":{"lock":false,"pos":{"x":53.2286,"y":1.3626,"z":74.0412},"rot":{"x":0.0208,"y":269.9695,"z":0.0168}},"e0906c":{"lock":false,"pos":{"x":58.3839,"y":1.3692,"z":90.0904},"rot":{"x":0.0208,"y":269.9708,"z":0.0168}},"e16d74":{"lock":false,"pos":{"x":44.4975,"y":1.3527,"z":51.0713},"rot":{"x":0.0208,"y":270.006,"z":0.0168}},"e546c0":{"lock":false,"pos":{"x":53.2285,"y":1.3572,"z":55.6412},"rot":{"x":0.0208,"y":269.9674,"z":0.0168}},"e563d5":{"lock":false,"pos":{"x":44.5133,"y":1.3594,"z":74.0607},"rot":{"x":0.0208,"y":270.0309,"z":0.0168}},"e792b0":{"lock":false,"pos":{"x":53.2286,"y":1.3565,"z":53.3412},"rot":{"x":0.0208,"y":269.9695,"z":0.0168}},"eb8234":{"lock":false,"pos":{"x":44.5133,"y":1.3574,"z":67.1607},"rot":{"x":0.0208,"y":270.031,"z":0.0168}},"ebdac9":{"lock":false,"pos":{"x":44.5134,"y":1.3534,"z":53.3608},"rot":{"x":0.0208,"y":270.0057,"z":0.0168}},"ee51d8":{"lock":false,"pos":{"x":53.2286,"y":1.3599,"z":64.8411},"rot":{"x":0.0208,"y":270.0125,"z":0.0168}},"f21135":{"lock":false,"pos":{"x":58.3839,"y":1.3671,"z":83.1904},"rot":{"x":0.0208,"y":269.9708,"z":0.0168}},"fee183":{"lock":false,"pos":{"x":44.5133,"y":1.3648,"z":92.4607},"rot":{"x":0.0208,"y":270.0309,"z":0.0168}}}}' +MaterialIndex: -1 +MeshIndex: -1 +Name: Custom_Model_Bag +Nickname: Mystic +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 66.58338 + posY: 1.66842175 + posZ: 59.6779556 + rotX: 0.0295358486 + rotY: 270.028748 + rotZ: 0.009208317 + scaleX: 1.2 + scaleY: 1.2 + scaleZ: 1.2 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic a0c9eb/Card Alchemical Transmutation 7d133c.yaml b/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic a0c9eb/Card Alchemical Transmutation 7d133c.yaml new file mode 100644 index 000000000..027aea64b --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic a0c9eb/Card Alchemical Transmutation 7d133c.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 7d133c +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Alchemical Transmutation +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.51332 + posY: 1.36077392 + posZ: 78.66074 + rotX: 0.0207989663 + rotY: 270.030762 + rotZ: 0.0167808868 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic a0c9eb/Card Alyssa Graham a26795.yaml b/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic a0c9eb/Card Alyssa Graham a26795.yaml new file mode 100644 index 000000000..6036070ca --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic a0c9eb/Card Alyssa Graham a26795.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Speaker to the Dead +GMNotes: '' +GUID: a26795 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Alyssa Graham +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 40.960228 + posY: 1.36217284 + posZ: 87.8487244 + rotX: 0.0208126456 + rotY: 269.984558 + rotZ: 0.01676438 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic a0c9eb/Card Arcane Initiate 4287c0.yaml b/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic a0c9eb/Card Arcane Initiate 4287c0.yaml new file mode 100644 index 000000000..f0d4f96ba --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic a0c9eb/Card Arcane Initiate 4287c0.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 4287c0 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Arcane Initiate +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.5133324 + posY: 1.36279356 + posZ: 85.56075 + rotX: 0.0207990054 + rotY: 270.030823 + rotZ: 0.0167812221 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic a0c9eb/Card Arcane Research fee183.yaml b/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic a0c9eb/Card Arcane Research fee183.yaml new file mode 100644 index 000000000..72321ab67 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic a0c9eb/Card Arcane Research fee183.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: fee183 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Arcane Research +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.51333 + posY: 1.36481321 + posZ: 92.46075 + rotX: 0.0207992177 + rotY: 270.030853 + rotZ: 0.01678084 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic a0c9eb/Card Arcane Studies eb8234.yaml b/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic a0c9eb/Card Arcane Studies eb8234.yaml new file mode 100644 index 000000000..55c11be2c --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic a0c9eb/Card Arcane Studies eb8234.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: eb8234 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Arcane Studies +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.5133171 + posY: 1.35740757 + posZ: 67.1607056 + rotX: 0.0207989216 + rotY: 270.030975 + rotZ: 0.0167808477 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic a0c9eb/Card Astral Travel 8bb57d.yaml b/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic a0c9eb/Card Astral Travel 8bb57d.yaml new file mode 100644 index 000000000..e25a2ab9f --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic a0c9eb/Card Astral Travel 8bb57d.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 8bb57d +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Astral Travel +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 53.23061 + posY: 1.35787463 + posZ: 57.9409752 + rotX: 0.0208194815 + rotY: 269.9679 + rotZ: 0.0167610385 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic a0c9eb/Card Blinding Light 00d05a.yaml b/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic a0c9eb/Card Blinding Light 00d05a.yaml new file mode 100644 index 000000000..0ba24f95c --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic a0c9eb/Card Blinding Light 00d05a.yaml @@ -0,0 +1,42 @@ +Autoraise: true +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 00d05a +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Blinding Light +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 53.22857 + posY: 1.36056709 + posZ: 67.14111 + rotX: 0.0208176337 + rotY: 269.967651 + rotZ: 0.0167580433 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic a0c9eb/Card Clarity of Mind e563d5.yaml b/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic a0c9eb/Card Clarity of Mind e563d5.yaml new file mode 100644 index 000000000..70ab2c5b5 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic a0c9eb/Card Clarity of Mind e563d5.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: e563d5 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Clarity of Mind +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.51332 + posY: 1.35942733 + posZ: 74.0607452 + rotX: 0.0207989085 + rotY: 270.030853 + rotZ: 0.01678085 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic a0c9eb/Card Dark Prophecy 74b8d4.yaml b/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic a0c9eb/Card Dark Prophecy 74b8d4.yaml new file mode 100644 index 000000000..2548faa50 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic a0c9eb/Card Dark Prophecy 74b8d4.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 74b8d4 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Dark Prophecy +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 53.2285767 + posY: 1.36191356 + posZ: 71.7412338 + rotX: 0.0208177548 + rotY: 269.967651 + rotZ: 0.0167579483 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic a0c9eb/Card David Renfield 3120e7.yaml b/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic a0c9eb/Card David Renfield 3120e7.yaml new file mode 100644 index 000000000..0edf85831 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic a0c9eb/Card David Renfield 3120e7.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Esteemed Eschatologist +GMNotes: '' +GUID: 3120e7 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: David Renfield +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.5133171 + posY: 1.3567344 + posZ: 64.8606949 + rotX: 0.0207990166 + rotY: 270.0311 + rotZ: 0.01678096 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic a0c9eb/Card Defiance 946958.yaml b/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic a0c9eb/Card Defiance 946958.yaml new file mode 100644 index 000000000..7b8c1ca37 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic a0c9eb/Card Defiance 946958.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: '946958' +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Defiance +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 58.38386 + posY: 1.36781037 + posZ: 85.49039 + rotX: 0.0208166651 + rotY: 269.970764 + rotZ: 0.016759064 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic a0c9eb/Card Delve too Deep b83784.yaml b/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic a0c9eb/Card Delve too Deep b83784.yaml new file mode 100644 index 000000000..112e1cbd5 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic a0c9eb/Card Delve too Deep b83784.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: b83784 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Delve too Deep +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 53.2285652 + posY: 1.36124027 + posZ: 69.44122 + rotX: 0.0208212286 + rotY: 269.967957 + rotZ: 0.0167583469 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic a0c9eb/Card Deny Existence 62db13.yaml b/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic a0c9eb/Card Deny Existence 62db13.yaml new file mode 100644 index 000000000..4b7b5a1c0 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic a0c9eb/Card Deny Existence 62db13.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 278808 +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/1016065725025945336/04E36F64C2CBE1B4905FF44A869C75EC52CB3A56/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 62db13 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Deny Existence +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 53.22858 + posY: 1.36797273 + posZ: 92.44124 + rotX: 0.02081753 + rotY: 269.9674 + rotZ: 0.01675788 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic a0c9eb/Card Drawn to the Flame b36f5e.yaml b/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic a0c9eb/Card Drawn to the Flame b36f5e.yaml new file mode 100644 index 000000000..b3409b281 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic a0c9eb/Card Drawn to the Flame b36f5e.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: b36f5e +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Drawn to the Flame +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 53.2285843 + posY: 1.365953 + posZ: 85.5412445 + rotX: 0.0208174642 + rotY: 269.968 + rotZ: 0.0167582836 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic a0c9eb/Card Eldritch Inspiration a268ef.yaml b/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic a0c9eb/Card Eldritch Inspiration a268ef.yaml new file mode 100644 index 000000000..55a57581c --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic a0c9eb/Card Eldritch Inspiration a268ef.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 278807 +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/1016065725025945336/04E36F64C2CBE1B4905FF44A869C75EC52CB3A56/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: a268ef +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Eldritch Inspiration +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 53.22858 + posY: 1.36729944 + posZ: 90.14125 + rotX: 0.0208169632 + rotY: 269.969666 + rotZ: 0.0167588145 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic a0c9eb/Card Enchanted Blade 0e459d.yaml b/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic a0c9eb/Card Enchanted Blade 0e459d.yaml new file mode 100644 index 000000000..07461c972 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic a0c9eb/Card Enchanted Blade 0e459d.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 0e459d +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Enchanted Blade +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.5132332 + posY: 1.35404146 + posZ: 55.66079 + rotX: 0.0208079964 + rotY: 270.005829 + rotZ: 0.0167746544 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic a0c9eb/Card Enraptured 0ce7b8.yaml b/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic a0c9eb/Card Enraptured 0ce7b8.yaml new file mode 100644 index 000000000..6d0a74e3f --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic a0c9eb/Card Enraptured 0ce7b8.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 0ce7b8 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Enraptured +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 58.3838539 + posY: 1.36848366 + posZ: 87.79039 + rotX: 0.02081672 + rotY: 269.970978 + rotZ: 0.016759526 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic a0c9eb/Card Ethereal Form ee51d8.yaml b/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic a0c9eb/Card Ethereal Form ee51d8.yaml new file mode 100644 index 000000000..cb41124ed --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic a0c9eb/Card Ethereal Form ee51d8.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: ee51d8 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Ethereal Form +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 53.22857 + posY: 1.3598938 + posZ: 64.8411 + rotX: 0.02080436 + rotY: 270.0125 + rotZ: 0.0167743657 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic a0c9eb/Card Fearless f21135.yaml b/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic a0c9eb/Card Fearless f21135.yaml new file mode 100644 index 000000000..fe9acf051 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic a0c9eb/Card Fearless f21135.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: f21135 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Fearless +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 58.38387 + posY: 1.36713719 + posZ: 83.19039 + rotX: 0.0208177455 + rotY: 269.970764 + rotZ: 0.0167600811 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic a0c9eb/Card Forbidden Knowledge 7cf231.yaml b/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic a0c9eb/Card Forbidden Knowledge 7cf231.yaml new file mode 100644 index 000000000..38ace3d19 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic a0c9eb/Card Forbidden Knowledge 7cf231.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 7cf231 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Forbidden Knowledge +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.5137329 + posY: 1.36412346 + posZ: 90.10386 + rotX: 0.0207994319 + rotY: 270.030975 + rotZ: 0.0167774446 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic a0c9eb/Card Healing Words 4abb47.yaml b/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic a0c9eb/Card Healing Words 4abb47.yaml new file mode 100644 index 000000000..55a18136d --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic a0c9eb/Card Healing Words 4abb47.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 4abb47 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Healing Words +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.5133247 + posY: 1.358754 + posZ: 71.76074 + rotX: 0.0208070315 + rotY: 270.004669 + rotZ: 0.0167713426 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic a0c9eb/Card Holy Rosary 98aa6a.yaml b/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic a0c9eb/Card Holy Rosary 98aa6a.yaml new file mode 100644 index 000000000..9accfda82 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic a0c9eb/Card Holy Rosary 98aa6a.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 98aa6a +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Holy Rosary +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.51332 + posY: 1.35808086 + posZ: 69.46074 + rotX: 0.0207990576 + rotY: 270.031036 + rotZ: 0.01678102 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic a0c9eb/Card Hypnotic Gaze e546c0.yaml b/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic a0c9eb/Card Hypnotic Gaze e546c0.yaml new file mode 100644 index 000000000..ab3966083 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic a0c9eb/Card Hypnotic Gaze e546c0.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: e546c0 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Hypnotic Gaze +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 53.2284851 + posY: 1.35720074 + posZ: 55.6411972 + rotX: 0.0208197776 + rotY: 269.9674 + rotZ: 0.0167610124 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic a0c9eb/Card Mists of R'lyeh 64fcdf.yaml b/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic a0c9eb/Card Mists of R'lyeh 64fcdf.yaml new file mode 100644 index 000000000..b59e189b5 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic a0c9eb/Card Mists of R'lyeh 64fcdf.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 64fcdf +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Mists of R'lyeh +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.51332 + posY: 1.3560611 + posZ: 62.5607872 + rotX: 0.0208006259 + rotY: 270.031036 + rotZ: 0.0167836621 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic a0c9eb/Card Moonlight Ritual 247824.yaml b/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic a0c9eb/Card Moonlight Ritual 247824.yaml new file mode 100644 index 000000000..15fc100d3 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic a0c9eb/Card Moonlight Ritual 247824.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 230306 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: '247824' +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Moonlight Ritual +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 53.22858 + posY: 1.3646065 + posZ: 80.94124 + rotX: 0.0208172966 + rotY: 269.9681 + rotZ: 0.0167582557 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic a0c9eb/Card Olive McBride 715974.yaml b/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic a0c9eb/Card Olive McBride 715974.yaml new file mode 100644 index 000000000..d7877c709 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic a0c9eb/Card Olive McBride 715974.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Will Try Anything Once +GMNotes: '' +GUID: '715974' +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Olive McBride +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.51332 + posY: 1.36010063 + posZ: 76.36074 + rotX: 0.0207990389 + rotY: 270.031 + rotZ: 0.0167815629 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic a0c9eb/Card Open Gate dfc9b0.yaml b/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic a0c9eb/Card Open Gate dfc9b0.yaml new file mode 100644 index 000000000..9e2d35737 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic a0c9eb/Card Open Gate dfc9b0.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 440824 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: dfc9b0 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Open Gate +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 53.2285767 + posY: 1.36258686 + posZ: 74.04124 + rotX: 0.0208167154 + rotY: 269.969482 + rotZ: 0.016758807 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic a0c9eb/Card Premonition 348395.yaml b/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic a0c9eb/Card Premonition 348395.yaml new file mode 100644 index 000000000..10e94036a --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic a0c9eb/Card Premonition 348395.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: '348395' +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Premonition +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 53.22858 + posY: 1.36662626 + posZ: 87.84125 + rotX: 0.02081761 + rotY: 269.967957 + rotZ: 0.0167584028 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic a0c9eb/Card Prophesy e0906c.yaml b/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic a0c9eb/Card Prophesy e0906c.yaml new file mode 100644 index 000000000..b3d8a82fa --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic a0c9eb/Card Prophesy e0906c.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 278706 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2787': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025945336/04E36F64C2CBE1B4905FF44A869C75EC52CB3A56/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: e0906c +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Prophesy +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 58.3838539 + posY: 1.3691566 + posZ: 90.09039 + rotX: 0.020816464 + rotY: 269.970764 + rotZ: 0.01675925 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic a0c9eb/Card Quantum Flux 562eb1.yaml b/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic a0c9eb/Card Quantum Flux 562eb1.yaml new file mode 100644 index 000000000..6b3664b0e --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic a0c9eb/Card Quantum Flux 562eb1.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 562eb1 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Quantum Flux +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 53.2285728 + posY: 1.36393332 + posZ: 78.6412354 + rotX: 0.020816762 + rotY: 269.969666 + rotZ: 0.0167589411 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic a0c9eb/Card Read the Signs 4f33d5.yaml b/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic a0c9eb/Card Read the Signs 4f33d5.yaml new file mode 100644 index 000000000..3676f5d5e --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic a0c9eb/Card Read the Signs 4f33d5.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 4f33d5 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Read the Signs +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 53.2285728 + posY: 1.3592205 + posZ: 62.5411949 + rotX: 0.0208045952 + rotY: 270.0185 + rotZ: 0.016779488 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic a0c9eb/Card Rite of Seeking 8b39e9.yaml b/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic a0c9eb/Card Rite of Seeking 8b39e9.yaml new file mode 100644 index 000000000..cbd0238a8 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic a0c9eb/Card Rite of Seeking 8b39e9.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 8b39e9 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Rite of Seeking +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 40.960228 + posY: 1.36284614 + posZ: 90.14873 + rotX: 0.0208120327 + rotY: 269.98645 + rotZ: 0.0167648345 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic a0c9eb/Card Ritual Candles d2776c.yaml b/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic a0c9eb/Card Ritual Candles d2776c.yaml new file mode 100644 index 000000000..8fe4f44d6 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic a0c9eb/Card Ritual Candles d2776c.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: d2776c +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Ritual Candles +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.51333 + posY: 1.36346686 + posZ: 87.8607559 + rotX: 0.02080011 + rotY: 270.031128 + rotZ: 0.0167817567 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic a0c9eb/Card Scroll of Prophecies ebdac9.yaml b/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic a0c9eb/Card Scroll of Prophecies ebdac9.yaml new file mode 100644 index 000000000..b84b7ea2e --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic a0c9eb/Card Scroll of Prophecies ebdac9.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: ebdac9 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Scroll of Prophecies +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.5133629 + posY: 1.35336816 + posZ: 53.36077 + rotX: 0.0208085813 + rotY: 270.005737 + rotZ: 0.0167748127 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic a0c9eb/Card Scroll of Secrets c63ec7.yaml b/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic a0c9eb/Card Scroll of Secrets c63ec7.yaml new file mode 100644 index 000000000..818e38b42 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic a0c9eb/Card Scroll of Secrets c63ec7.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: c63ec7 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Scroll of Secrets +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.5133324 + posY: 1.36212039 + posZ: 83.26075 + rotX: 0.0207990911 + rotY: 270.030945 + rotZ: 0.0167813078 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic a0c9eb/Card Scrying 24a147.yaml b/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic a0c9eb/Card Scrying 24a147.yaml new file mode 100644 index 000000000..5ec94e575 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic a0c9eb/Card Scrying 24a147.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 24a147 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Scrying +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.51333 + posY: 1.3614471 + posZ: 80.96075 + rotX: 0.0207993314 + rotY: 270.030823 + rotZ: 0.0167811 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic a0c9eb/Card Shrivelling e16d74.yaml b/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic a0c9eb/Card Shrivelling e16d74.yaml new file mode 100644 index 000000000..88dda2bb0 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic a0c9eb/Card Shrivelling e16d74.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: e16d74 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Shrivelling +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.4975433 + posY: 1.35269248 + posZ: 51.07133 + rotX: 0.0208085161 + rotY: 270.005981 + rotZ: 0.01677481 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic a0c9eb/Card Sign Magick 4fe0b8.yaml b/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic a0c9eb/Card Sign Magick 4fe0b8.yaml new file mode 100644 index 000000000..e23200d78 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic a0c9eb/Card Sign Magick 4fe0b8.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 277510 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 4fe0b8 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Sign Magick +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.49737 + posY: 1.35201693 + posZ: 48.7640038 + rotX: 0.0208396055 + rotY: 269.8976 + rotZ: 0.0167353358 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic a0c9eb/Card Sixth Sense b7efb5.yaml b/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic a0c9eb/Card Sixth Sense b7efb5.yaml new file mode 100644 index 000000000..bd8cb2840 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic a0c9eb/Card Sixth Sense b7efb5.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: b7efb5 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Sixth Sense +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 40.960228 + posY: 1.36351931 + posZ: 92.4487152 + rotX: 0.0208166242 + rotY: 269.970276 + rotZ: 0.0167590957 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic a0c9eb/Card Spectral Razor b6bccc.yaml b/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic a0c9eb/Card Spectral Razor b6bccc.yaml new file mode 100644 index 000000000..7bb6249fd --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic a0c9eb/Card Spectral Razor b6bccc.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Spell. +GMNotes: '' +GUID: b6bccc +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Spectral Razor +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 53.2285728 + posY: 1.35854721 + posZ: 60.2411957 + rotX: 0.0208096933 + rotY: 270.001556 + rotZ: 0.0167732388 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic a0c9eb/Card St. Hubert's Key 5905a9.yaml b/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic a0c9eb/Card St. Hubert's Key 5905a9.yaml new file mode 100644 index 000000000..a5da4e162 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic a0c9eb/Card St. Hubert's Key 5905a9.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Cleansing Fire +GMNotes: '' +GUID: 5905a9 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: St. Hubert's Key +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 40.96023 + posY: 1.36149967 + posZ: 85.54871 + rotX: 0.0208136532 + rotY: 269.9805 + rotZ: 0.0167630911 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic a0c9eb/Card Storm of Spirits e792b0.yaml b/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic a0c9eb/Card Storm of Spirits e792b0.yaml new file mode 100644 index 000000000..9f5b156e8 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic a0c9eb/Card Storm of Spirits e792b0.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: e792b0 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Storm of Spirits +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 53.2286148 + posY: 1.35652757 + posZ: 53.34118 + rotX: 0.0208191425 + rotY: 269.969482 + rotZ: 0.0167617816 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic a0c9eb/Card The Chthonian Stone 916f1c.yaml b/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic a0c9eb/Card The Chthonian Stone 916f1c.yaml new file mode 100644 index 000000000..39dfb2e68 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic a0c9eb/Card The Chthonian Stone 916f1c.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Stygian Waymark +GMNotes: '' +GUID: 916f1c +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: The Chthonian Stone +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.515358 + posY: 1.35471535 + posZ: 57.9605675 + rotX: 0.0208079815 + rotY: 270.005981 + rotZ: 0.0167744756 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic a0c9eb/Card Torrent of Power 9f2514.yaml b/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic a0c9eb/Card Torrent of Power 9f2514.yaml new file mode 100644 index 000000000..d5d4edfaa --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic a0c9eb/Card Torrent of Power 9f2514.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 9f2514 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Torrent of Power +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 58.3838539 + posY: 1.36983013 + posZ: 92.39038 + rotX: 0.0208167154 + rotY: 269.9707 + rotZ: 0.0167590585 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic a0c9eb/Card Uncage the Soul a82830.yaml b/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic a0c9eb/Card Uncage the Soul a82830.yaml new file mode 100644 index 000000000..992b3ea17 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic a0c9eb/Card Uncage the Soul a82830.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: a82830 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Uncage the Soul +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 53.2285843 + posY: 1.36527979 + posZ: 83.24124 + rotX: 0.0208172649 + rotY: 269.969421 + rotZ: 0.0167586822 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic a0c9eb/Card Ward of Protection 9bee5a.yaml b/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic a0c9eb/Card Ward of Protection 9bee5a.yaml new file mode 100644 index 000000000..f160465b5 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic a0c9eb/Card Ward of Protection 9bee5a.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 9bee5a +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Ward of Protection +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 53.2285767 + posY: 1.36326 + posZ: 76.34124 + rotX: 0.0208157916 + rotY: 269.969666 + rotZ: 0.0167592559 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic a0c9eb/Card Wither 5792ab.yaml b/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic a0c9eb/Card Wither 5792ab.yaml new file mode 100644 index 000000000..7e82ba4d0 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic b4d9bf/Custom_Model_Bag Mystic a0c9eb/Card Wither 5792ab.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 5792ab +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Wither +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.51332 + posY: 1.35538793 + posZ: 60.260788 + rotX: 0.0208005477 + rotY: 270.031 + rotZ: 0.0167836118 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic b950f3.ttslua b/unpacked/Custom_Model_Bag Mystic b950f3.ttslua new file mode 100644 index 000000000..857093fb8 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic b950f3.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,0,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 + 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=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,0,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,0,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,0,0}, height=350, width=750, + 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}, rotation={0,0,0}, height=350, width=800, + font_size=250, color={0,0,0}, font_color={1,1,1} + }) +-- self.createButton({ +-- label="Setup", click_function="buttonClick_setup", function_owner=self, +-- position={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.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 \ No newline at end of file diff --git a/unpacked/Custom_Model_Bag Mystic b950f3.yaml b/unpacked/Custom_Model_Bag Mystic b950f3.yaml new file mode 100644 index 000000000..fb41301b6 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic b950f3.yaml @@ -0,0 +1,108 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +ContainedObjects: +- !include 'Custom_Model_Bag Mystic b950f3/Card Fearless (2) 9f66a7.yaml' +- !include 'Custom_Model_Bag Mystic b950f3/Card Defiance (2) 0c2dad.yaml' +- !include 'Custom_Model_Bag Mystic b950f3/Card Seal of the Elder Sign (5) 28ae85.yaml' +- !include 'Custom_Model_Bag Mystic b950f3/Card Mind Wipe (1) df8700.yaml' +- !include 'Custom_Model_Bag Mystic b950f3/Card Stargazing (1) cd8764.yaml' +- !include 'Custom_Model_Bag Mystic b950f3/Card Sacrifice (1) 72e2d9.yaml' +- !include 'Custom_Model_Bag Mystic b950f3/Card Banish (1) c4a55b.yaml' +- !include 'Custom_Model_Bag Mystic b950f3/Card Recharge (2) 765ac3.yaml' +- !include 'Custom_Model_Bag Mystic b950f3/Card Ward of Protection (2) 3b4524.yaml' +- !include 'Custom_Model_Bag Mystic b950f3/Card Blinding Light (2) f7bfec.yaml' +- !include 'Custom_Model_Bag Mystic b950f3/Card Time Warp (2) 504b8d.yaml' +- !include 'Custom_Model_Bag Mystic b950f3/Card Counterspell (2) ce1967.yaml' +- !include 'Custom_Model_Bag Mystic b950f3/Card Word of Command (2) f1bf15.yaml' +- !include 'Custom_Model_Bag Mystic b950f3/Card De Vermis Mysteriis (2) 584913.yaml' +- !include 'Custom_Model_Bag Mystic b950f3/Card Dayana Esperence (3) 3db9b1.yaml' +- !include 'Custom_Model_Bag Mystic b950f3/Card Shrivelling (3) 6af5d3.yaml' +- !include 'Custom_Model_Bag Mystic b950f3/Card Arcane Studies (2) 3f9b51.yaml' +- !include 'Custom_Model_Bag Mystic b950f3/Card Alchemical Transmutation (2) a69be0.yaml' +- !include 'Custom_Model_Bag Mystic b950f3/Card Book of Shadows (3) 823a3f.yaml' +- !include 'Custom_Model_Bag Mystic b950f3/Card Twila Katherine Price (3) f6dc28.yaml' +- !include 'Custom_Model_Bag Mystic b950f3/Card Summoned Hound (1) d21b15.yaml' +- !include 'Custom_Model_Bag Mystic b950f3/Card Spirit Athame (1) e0aee9.yaml' +- !include 'Custom_Model_Bag Mystic b950f3/Card Shards of the Void (3) 41435f.yaml' +- !include 'Custom_Model_Bag Mystic b950f3/Card Jewel of Aureolus (3) e1438c.yaml' +- !include 'Custom_Model_Bag Mystic b950f3/Card Four of Cups (1) 43b4be.yaml' +- !include 'Custom_Model_Bag Mystic b950f3/Card Book of Shadows (1) 0587b8.yaml' +- !include 'Custom_Model_Bag Mystic b950f3/Card Enchanted Blade (3) 1cf6bb.yaml' +- !include 'Custom_Model_Bag Mystic b950f3/Card Crystalline Elder Sign (3) 83936c.yaml' +- !include 'Custom_Model_Bag Mystic b950f3/Card Protective Incantation (1) 86f539.yaml' +- !include 'Custom_Model_Bag Mystic b950f3/Card Grounded (1) 491a94.yaml' +- !include 'Custom_Model_Bag Mystic b950f3/Card Clarity of Mind (3) 25dd68.yaml' +- !include 'Custom_Model_Bag Mystic b950f3/Card Shining Trapezohedron (4) 590f43.yaml' +- !include 'Custom_Model_Bag Mystic b950f3/Card Recall the Future (2) 704f6e.yaml' +- !include 'Custom_Model_Bag Mystic b950f3/Card Bind Monster (2) 5d5a96.yaml' +- !include 'Custom_Model_Bag Mystic b950f3/Card Storm of Spirits (3) a2a79e.yaml' +- !include 'Custom_Model_Bag Mystic b950f3/Card Mind Wipe (3) be0d74.yaml' +- !include 'Custom_Model_Bag Mystic b950f3/Card Deny Existence (5) ae8349.yaml' +- !include 'Custom_Model_Bag Mystic b950f3/Card Ward of Protection (5) 7600af.yaml' +- !include 'Custom_Model_Bag Mystic b950f3/Card Song of the Dead (2) 822232.yaml' +- !include 'Custom_Model_Bag Mystic b950f3/Card Grotesque Statue (4) c1af37.yaml' +- !include 'Custom_Model_Bag Mystic b950f3/Card Mists of R''lyeh (4) 2ec15c.yaml' +- !include 'Custom_Model_Bag Mystic b950f3/Card Empower Self (2) 7fdfd7.yaml' +- !include 'Custom_Model_Bag Mystic b950f3/Card Empower Self (2) cda37d.yaml' +- !include 'Custom_Model_Bag Mystic b950f3/Card Wither (4) 31aa5d.yaml' +- !include 'Custom_Model_Bag Mystic b950f3/Card Sixth Sense (4) c25daa.yaml' +- !include 'Custom_Model_Bag Mystic b950f3/Card Empower Self (2) 4888b7.yaml' +- !include 'Custom_Model_Bag Mystic b950f3/Card Mind''s Eye (2) 5003da.yaml' +- !include 'Custom_Model_Bag Mystic b950f3/Card Rite of Seeking (4) 1fef17.yaml' +- !include 'Custom_Model_Bag Mystic b950f3/Card Seal of the Seventh Sign (5) d3c7f7.yaml' +- !include 'Custom_Model_Bag Mystic b950f3/Card Rite of Seeking (2) d90d23.yaml' +- !include 'Custom_Model_Bag Mystic b950f3/Card Blood Pact (3) 858866.yaml' +- !include 'Custom_Model_Bag Mystic b950f3/Card Shrivelling (5) ed0aea.yaml' +- !include 'Custom_Model_Bag Mystic b950f3/Card Arcane Initiate (3) 3bfbe7.yaml' +- !include 'Custom_Model_Bag Mystic b950f3/Card Scroll of Secrets (3) ea918a.yaml' +- !include 'Custom_Model_Bag Mystic b950f3/Card Scrying (3) bb3e67.yaml' +- !include 'Custom_Model_Bag Mystic b950f3/Custom_Model_Bag Mystic 1ebc8b.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/952965722516557267/757887224F6C37104CDFFE241FAD09B57117D670/ + MaterialIndex: 3 + MeshURL: https://pastebin.com/raw/ALrYhQGb + NormalURL: '' + TypeIndex: 6 +Description: '' +GMNotes: '' +GUID: b950f3 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: true +LuaScript: !include 'Custom_Model_Bag Mystic b950f3.ttslua' +LuaScriptState: '{"ml":{"0587b8":{"lock":false,"pos":{"x":10.6297,"y":1.3862,"z":-51.9484},"rot":{"x":0.0208,"y":269.9995,"z":0.0168}},"0c2dad":{"lock":false,"pos":{"x":24.5003,"y":1.3565,"z":-49.7185},"rot":{"x":0.0208,"y":269.9995,"z":0.0168}},"1cf6bb":{"lock":false,"pos":{"x":7.0766,"y":1.3849,"z":-51.9605},"rot":{"x":0.0208,"y":270,"z":0.0168}},"1fef17":{"lock":false,"pos":{"x":7.0767,"y":1.3768,"z":-79.56},"rot":{"x":0.0208,"y":269.9997,"z":0.0168}},"25dd68":{"lock":false,"pos":{"x":7.0766,"y":1.3863,"z":-47.3605},"rot":{"x":0.0208,"y":269.9995,"z":0.0168}},"28ae85":{"lock":false,"pos":{"x":24.5003,"y":1.3558,"z":-52.0186},"rot":{"x":0.0208,"y":269.9995,"z":0.0168}},"2ec15c":{"lock":false,"pos":{"x":7.0765,"y":1.3789,"z":-72.6601},"rot":{"x":0.0208,"y":269.9992,"z":0.0168}},"31aa5d":{"lock":false,"pos":{"x":7.0765,"y":1.3782,"z":-74.9601},"rot":{"x":0.0208,"y":269.9995,"z":0.0168}},"3b4524":{"lock":false,"pos":{"x":19.3437,"y":1.352,"z":-58.8679},"rot":{"x":0.0208,"y":269.9995,"z":0.0168}},"3bfbe7":{"lock":false,"pos":{"x":10.6297,"y":1.3761,"z":-86.448},"rot":{"x":0.0208,"y":269.9994,"z":0.0168}},"3db9b1":{"lock":false,"pos":{"x":7.0766,"y":1.3809,"z":-65.7601},"rot":{"x":0.0208,"y":269.9996,"z":0.0168}},"3f9b51":{"lock":false,"pos":{"x":10.6296,"y":1.3829,"z":-63.4484},"rot":{"x":0.0208,"y":269.9995,"z":0.0168}},"41435f":{"lock":false,"pos":{"x":7.0766,"y":1.3836,"z":-56.5605},"rot":{"x":0.0208,"y":270.0041,"z":0.0168}},"43b4be":{"lock":false,"pos":{"x":10.6297,"y":1.3855,"z":-54.2484},"rot":{"x":0.0208,"y":269.9995,"z":0.0168}},"4888b7":{"lock":false,"pos":{"x":10.6297,"y":1.3788,"z":-77.248},"rot":{"x":0.0208,"y":269.9644,"z":0.0168}},"491a94":{"lock":false,"pos":{"x":10.6297,"y":1.3876,"z":-47.3484},"rot":{"x":0.0208,"y":269.9995,"z":0.0168}},"5003da":{"lock":false,"pos":{"x":10.6297,"y":1.3781,"z":-79.548},"rot":{"x":0.0208,"y":270.0189,"z":0.0168}},"504b8d":{"lock":false,"pos":{"x":19.3437,"y":1.3506,"z":-63.4679},"rot":{"x":0.0208,"y":269.9995,"z":0.0168}},"584913":{"lock":false,"pos":{"x":10.6297,"y":1.3822,"z":-65.7481},"rot":{"x":0.0208,"y":269.9998,"z":0.0168}},"590f43":{"lock":false,"pos":{"x":7.0766,"y":1.3802,"z":-68.0601},"rot":{"x":0.0208,"y":269.9971,"z":0.0168}},"5d5a96":{"lock":false,"pos":{"x":19.3437,"y":1.3486,"z":-70.3675},"rot":{"x":0.0208,"y":269.9995,"z":0.0168}},"6af5d3":{"lock":false,"pos":{"x":7.0765,"y":1.3816,"z":-63.4605},"rot":{"x":0.0208,"y":269.9994,"z":0.0168}},"704f6e":{"lock":false,"pos":{"x":10.6297,"y":1.3815,"z":-68.0481},"rot":{"x":0.0208,"y":269.9995,"z":0.0168}},"72e2d9":{"lock":false,"pos":{"x":19.3437,"y":1.3553,"z":-47.3679},"rot":{"x":0.0208,"y":269.9995,"z":0.0168}},"7600af":{"lock":false,"pos":{"x":19.3437,"y":1.3459,"z":-79.5676},"rot":{"x":0.0208,"y":270.014,"z":0.0168}},"765ac3":{"lock":false,"pos":{"x":19.3437,"y":1.3526,"z":-56.5679},"rot":{"x":0.0208,"y":269.9995,"z":0.0168}},"7fdfd7":{"lock":false,"pos":{"x":10.6296,"y":1.3802,"z":-72.6481},"rot":{"x":0.0208,"y":269.9781,"z":0.0168}},"822232":{"lock":false,"pos":{"x":10.6297,"y":1.3808,"z":-70.3481},"rot":{"x":0.0208,"y":269.9995,"z":0.0168}},"823a3f":{"lock":false,"pos":{"x":7.0765,"y":1.3822,"z":-61.1605},"rot":{"x":0.0208,"y":269.9821,"z":0.0168}},"83936c":{"lock":false,"pos":{"x":7.0766,"y":1.3856,"z":-49.6605},"rot":{"x":0.0208,"y":270.0018,"z":0.0168}},"858866":{"lock":false,"pos":{"x":10.6296,"y":1.3768,"z":-84.148},"rot":{"x":0.0208,"y":269.9995,"z":0.0168}},"86f539":{"lock":false,"pos":{"x":10.6296,"y":1.3869,"z":-49.6484},"rot":{"x":0.0208,"y":269.9995,"z":0.0168}},"9f66a7":{"lock":false,"pos":{"x":24.5003,"y":1.3572,"z":-47.4186},"rot":{"x":0.0208,"y":269.9995,"z":0.0168}},"a2a79e":{"lock":false,"pos":{"x":19.3437,"y":1.3479,"z":-72.6677},"rot":{"x":0.0208,"y":269.9995,"z":0.0168}},"a69be0":{"lock":false,"pos":{"x":10.6297,"y":1.3835,"z":-61.1484},"rot":{"x":0.0208,"y":269.9995,"z":0.0168}},"ae8349":{"lock":false,"pos":{"x":19.3437,"y":1.3466,"z":-77.2676},"rot":{"x":0.0208,"y":269.9995,"z":0.0168}},"bb3e67":{"lock":false,"pos":{"x":10.6137,"y":1.3748,"z":-91.04},"rot":{"x":0.0208,"y":270.0112,"z":0.0168}},"be0d74":{"lock":false,"pos":{"x":19.3437,"y":1.3472,"z":-74.9677},"rot":{"x":0.0208,"y":269.9997,"z":0.0168}},"c1af37":{"lock":false,"pos":{"x":7.0765,"y":1.3795,"z":-70.3601},"rot":{"x":0.0208,"y":269.9996,"z":0.0168}},"c25daa":{"lock":false,"pos":{"x":7.0765,"y":1.3775,"z":-77.26},"rot":{"x":0.0208,"y":269.9995,"z":0.0168}},"c4a55b":{"lock":false,"pos":{"x":19.3437,"y":1.3533,"z":-54.2679},"rot":{"x":0.0208,"y":269.9995,"z":0.0168}},"cd8764":{"lock":false,"pos":{"x":19.3437,"y":1.3546,"z":-49.6679},"rot":{"x":0.0208,"y":269.9995,"z":0.0168}},"cda37d":{"lock":false,"pos":{"x":10.6296,"y":1.3795,"z":-74.9481},"rot":{"x":0.0208,"y":270.0312,"z":0.0168}},"ce1967":{"lock":false,"pos":{"x":19.3437,"y":1.3499,"z":-65.7675},"rot":{"x":0.0208,"y":269.9996,"z":0.0168}},"d21b15":{"lock":false,"pos":{"x":10.6297,"y":1.3842,"z":-58.8484},"rot":{"x":0.0208,"y":269.9998,"z":0.0168}},"d3c7f7":{"lock":false,"pos":{"x":7.0798,"y":1.3762,"z":-81.8602},"rot":{"x":0.0208,"y":270.0167,"z":0.0168}},"d90d23":{"lock":false,"pos":{"x":10.6317,"y":1.3775,"z":-81.8482},"rot":{"x":0.0208,"y":269.9994,"z":0.0168}},"df8700":{"lock":false,"pos":{"x":19.3437,"y":1.354,"z":-51.9679},"rot":{"x":0.0208,"y":269.9995,"z":0.0168}},"e0aee9":{"lock":false,"pos":{"x":10.6297,"y":1.3849,"z":-56.5484},"rot":{"x":0.0208,"y":269.9995,"z":0.0168}},"e1438c":{"lock":false,"pos":{"x":7.0766,"y":1.3843,"z":-54.2605},"rot":{"x":0.0208,"y":269.9994,"z":0.0168}},"ea918a":{"lock":false,"pos":{"x":10.6139,"y":1.3754,"z":-88.74},"rot":{"x":0.0208,"y":269.9993,"z":0.0168}},"ed0aea":{"lock":false,"pos":{"x":7.08,"y":1.3755,"z":-84.1596},"rot":{"x":0.0208,"y":270.0335,"z":0.0168}},"f1bf15":{"lock":false,"pos":{"x":19.3437,"y":1.3493,"z":-68.0675},"rot":{"x":0.0208,"y":270.0292,"z":0.0168}},"f6dc28":{"lock":false,"pos":{"x":7.0766,"y":1.3829,"z":-58.8605},"rot":{"x":0.0208,"y":269.9831,"z":0.0168}},"f7bfec":{"lock":false,"pos":{"x":19.3437,"y":1.3513,"z":-61.1679},"rot":{"x":0.0208,"y":269.9995,"z":0.0168}}}}' +MaterialIndex: -1 +MeshIndex: -1 +Name: Custom_Model_Bag +Nickname: Mystic +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 32.70541 + posY: 1.39885354 + posZ: -80.18028 + rotX: 0.0208037589 + rotY: 270.023468 + rotZ: 0.0167786814 + scaleX: 1.2 + scaleY: 1.2 + scaleZ: 1.2 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic b950f3/Card Alchemical Transmutation (2) a69be0.yaml b/unpacked/Custom_Model_Bag Mystic b950f3/Card Alchemical Transmutation (2) a69be0.yaml new file mode 100644 index 000000000..703b6f9ea --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic b950f3/Card Alchemical Transmutation (2) a69be0.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 440820 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: a69be0 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Alchemical Transmutation (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.629653 + posY: 1.38352466 + posZ: -61.14845 + rotX: 0.0208097342 + rotY: 269.999481 + rotZ: 0.0167710613 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic b950f3/Card Arcane Initiate (3) 3bfbe7.yaml b/unpacked/Custom_Model_Bag Mystic b950f3/Card Arcane Initiate (3) 3bfbe7.yaml new file mode 100644 index 000000000..160c41125 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic b950f3/Card Arcane Initiate (3) 3bfbe7.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 3bfbe7 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Arcane Initiate (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.62969 + posY: 1.37611926 + posZ: -86.44803 + rotX: 0.0208074786 + rotY: 269.99942 + rotZ: 0.0167685263 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic b950f3/Card Arcane Studies (2) 3f9b51.yaml b/unpacked/Custom_Model_Bag Mystic b950f3/Card Arcane Studies (2) 3f9b51.yaml new file mode 100644 index 000000000..61e5287ab --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic b950f3/Card Arcane Studies (2) 3f9b51.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 3f9b51 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Arcane Studies (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.6296463 + posY: 1.38285148 + posZ: -63.4484367 + rotX: 0.0208082963 + rotY: 269.999542 + rotZ: 0.0167681985 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic b950f3/Card Banish (1) c4a55b.yaml b/unpacked/Custom_Model_Bag Mystic b950f3/Card Banish (1) c4a55b.yaml new file mode 100644 index 000000000..49f20258d --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic b950f3/Card Banish (1) c4a55b.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: c4a55b +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Banish (1) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.343668 + posY: 1.3532995 + posZ: -54.2679024 + rotX: 0.0208086632 + rotY: 269.999481 + rotZ: 0.0167699326 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic b950f3/Card Bind Monster (2) 5d5a96.yaml b/unpacked/Custom_Model_Bag Mystic b950f3/Card Bind Monster (2) 5d5a96.yaml new file mode 100644 index 000000000..9c1397b79 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic b950f3/Card Bind Monster (2) 5d5a96.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 5d5a96 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Bind Monster (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.3436565 + posY: 1.34858692 + posZ: -70.3675461 + rotX: 0.0208084416 + rotY: 269.999451 + rotZ: 0.01676927 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic b950f3/Card Blinding Light (2) f7bfec.yaml b/unpacked/Custom_Model_Bag Mystic b950f3/Card Blinding Light (2) f7bfec.yaml new file mode 100644 index 000000000..5a8ff1610 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic b950f3/Card Blinding Light (2) f7bfec.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: f7bfec +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Blinding Light (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.34366 + posY: 1.35127974 + posZ: -61.16791 + rotX: 0.020808395 + rotY: 269.999481 + rotZ: 0.0167692378 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic b950f3/Card Blood Pact (3) 858866.yaml b/unpacked/Custom_Model_Bag Mystic b950f3/Card Blood Pact (3) 858866.yaml new file mode 100644 index 000000000..1a3f550fe --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic b950f3/Card Blood Pact (3) 858866.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: '858866' +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Blood Pact (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.6295624 + posY: 1.37679243 + posZ: -84.14801 + rotX: 0.0208074 + rotY: 269.999542 + rotZ: 0.0167684 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic b950f3/Card Book of Shadows (1) 0587b8.yaml b/unpacked/Custom_Model_Bag Mystic b950f3/Card Book of Shadows (1) 0587b8.yaml new file mode 100644 index 000000000..6452ba96b --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic b950f3/Card Book of Shadows (1) 0587b8.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 0587b8 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Book of Shadows (1) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.629653 + posY: 1.38621783 + posZ: -51.9484329 + rotX: 0.0208095089 + rotY: 269.999481 + rotZ: 0.0167709943 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic b950f3/Card Book of Shadows (3) 823a3f.yaml b/unpacked/Custom_Model_Bag Mystic b950f3/Card Book of Shadows (3) 823a3f.yaml new file mode 100644 index 000000000..df7d2ad7f --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic b950f3/Card Book of Shadows (3) 823a3f.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 823a3f +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Book of Shadows (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 7.07654428 + posY: 1.38223076 + posZ: -61.16049 + rotX: 0.02081485 + rotY: 269.982117 + rotZ: 0.01676454 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic b950f3/Card Clarity of Mind (3) 25dd68.yaml b/unpacked/Custom_Model_Bag Mystic b950f3/Card Clarity of Mind (3) 25dd68.yaml new file mode 100644 index 000000000..715b59e90 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic b950f3/Card Clarity of Mind (3) 25dd68.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 278203 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2782': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025945336/04E36F64C2CBE1B4905FF44A869C75EC52CB3A56/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 25dd68 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Clarity of Mind (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 7.076563 + posY: 1.38627028 + posZ: -47.3604774 + rotX: 0.0208100341 + rotY: 269.9995 + rotZ: 0.01677044 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic b950f3/Card Counterspell (2) ce1967.yaml b/unpacked/Custom_Model_Bag Mystic b950f3/Card Counterspell (2) ce1967.yaml new file mode 100644 index 000000000..6493e962e --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic b950f3/Card Counterspell (2) ce1967.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: ce1967 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Counterspell (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.3436642 + posY: 1.34993339 + posZ: -65.76754 + rotX: 0.0208085421 + rotY: 269.999573 + rotZ: 0.0167694464 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic b950f3/Card Crystalline Elder Sign (3) 83936c.yaml b/unpacked/Custom_Model_Bag Mystic b950f3/Card Crystalline Elder Sign (3) 83936c.yaml new file mode 100644 index 000000000..2df396cf8 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic b950f3/Card Crystalline Elder Sign (3) 83936c.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 83936c +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Crystalline Elder Sign (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 7.07656145 + posY: 1.38559711 + posZ: -49.6604652 + rotX: 0.0208088048 + rotY: 270.0018 + rotZ: 0.0167717058 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic b950f3/Card Dayana Esperence (3) 3db9b1.yaml b/unpacked/Custom_Model_Bag Mystic b950f3/Card Dayana Esperence (3) 3db9b1.yaml new file mode 100644 index 000000000..804bcc915 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic b950f3/Card Dayana Esperence (3) 3db9b1.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Deals with "Devils" +GMNotes: '' +GUID: 3db9b1 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Dayana Esperence (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 7.07655048 + posY: 1.38088453 + posZ: -65.7601 + rotX: 0.02080745 + rotY: 269.999573 + rotZ: 0.0167685933 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic b950f3/Card De Vermis Mysteriis (2) 584913.yaml b/unpacked/Custom_Model_Bag Mystic b950f3/Card De Vermis Mysteriis (2) 584913.yaml new file mode 100644 index 000000000..0696b00db --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic b950f3/Card De Vermis Mysteriis (2) 584913.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Signs of the Black Stars +GMNotes: '' +GUID: '584913' +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: De Vermis Mysteriis (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.62965 + posY: 1.38217843 + posZ: -65.74806 + rotX: 0.0208077189 + rotY: 269.9998 + rotZ: 0.01676846 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic b950f3/Card Defiance (2) 0c2dad.yaml b/unpacked/Custom_Model_Bag Mystic b950f3/Card Defiance (2) 0c2dad.yaml new file mode 100644 index 000000000..bcc5cf1f1 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic b950f3/Card Defiance (2) 0c2dad.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 0c2dad +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Defiance (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 24.5003471 + posY: 1.356504 + posZ: -49.7185478 + rotX: 0.02080844 + rotY: 269.999481 + rotZ: 0.0167692415 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic b950f3/Card Deny Existence (5) ae8349.yaml b/unpacked/Custom_Model_Bag Mystic b950f3/Card Deny Existence (5) ae8349.yaml new file mode 100644 index 000000000..6b593e752 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic b950f3/Card Deny Existence (5) ae8349.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: ae8349 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Deny Existence (5) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.3436546 + posY: 1.34656715 + posZ: -77.26757 + rotX: 0.020808585 + rotY: 269.999451 + rotZ: 0.0167693626 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic b950f3/Card Empower Self (2) 4888b7.yaml b/unpacked/Custom_Model_Bag Mystic b950f3/Card Empower Self (2) 4888b7.yaml new file mode 100644 index 000000000..ccfc47837 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic b950f3/Card Empower Self (2) 4888b7.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Acuity +GMNotes: '' +GUID: 4888b7 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Empower Self (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.62965 + posY: 1.37881219 + posZ: -77.24802 + rotX: 0.02081753 + rotY: 269.9644 + rotZ: 0.0167554859 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic b950f3/Card Empower Self (2) 7fdfd7.yaml b/unpacked/Custom_Model_Bag Mystic b950f3/Card Empower Self (2) 7fdfd7.yaml new file mode 100644 index 000000000..5f2587b1e --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic b950f3/Card Empower Self (2) 7fdfd7.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Stamina +GMNotes: '' +GUID: 7fdfd7 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Empower Self (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.6296463 + posY: 1.38015866 + posZ: -72.6481 + rotX: 0.0208139718 + rotY: 269.9781 + rotZ: 0.01676067 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic b950f3/Card Empower Self (2) cda37d.yaml b/unpacked/Custom_Model_Bag Mystic b950f3/Card Empower Self (2) cda37d.yaml new file mode 100644 index 000000000..c527dbaa8 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic b950f3/Card Empower Self (2) cda37d.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Alacrity +GMNotes: '' +GUID: cda37d +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Empower Self (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.6296444 + posY: 1.37948549 + posZ: -74.94812 + rotX: 0.0207982864 + rotY: 270.0312 + rotZ: 0.0167803615 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic b950f3/Card Enchanted Blade (3) 1cf6bb.yaml b/unpacked/Custom_Model_Bag Mystic b950f3/Card Enchanted Blade (3) 1cf6bb.yaml new file mode 100644 index 000000000..b01e5e30a --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic b950f3/Card Enchanted Blade (3) 1cf6bb.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Mystic +GMNotes: '' +GUID: 1cf6bb +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Enchanted Blade (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 7.07655573 + posY: 1.38492382 + posZ: -51.96047 + rotX: 0.0208098274 + rotY: 269.999969 + rotZ: 0.01677053 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic b950f3/Card Fearless (2) 9f66a7.yaml b/unpacked/Custom_Model_Bag Mystic b950f3/Card Fearless (2) 9f66a7.yaml new file mode 100644 index 000000000..4dc5456d7 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic b950f3/Card Fearless (2) 9f66a7.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 9f66a7 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Fearless (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 24.5003471 + posY: 1.35717714 + posZ: -47.41856 + rotX: 0.0208084546 + rotY: 269.999481 + rotZ: 0.0167694446 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic b950f3/Card Four of Cups (1) 43b4be.yaml b/unpacked/Custom_Model_Bag Mystic b950f3/Card Four of Cups (1) 43b4be.yaml new file mode 100644 index 000000000..7042dde85 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic b950f3/Card Four of Cups (1) 43b4be.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 278305 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2783': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025945336/04E36F64C2CBE1B4905FF44A869C75EC52CB3A56/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: Chalice of the Heart +GMNotes: '' +GUID: 43b4be +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Four of Cups (1) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.6296635 + posY: 1.38554454 + posZ: -54.24844 + rotX: 0.0208096 + rotY: 269.9995 + rotZ: 0.016771106 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic b950f3/Card Grotesque Statue (4) c1af37.yaml b/unpacked/Custom_Model_Bag Mystic b950f3/Card Grotesque Statue (4) c1af37.yaml new file mode 100644 index 000000000..5fd380dfb --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic b950f3/Card Grotesque Statue (4) c1af37.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: c1af37 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Grotesque Statue (4) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 7.076545 + posY: 1.37953794 + posZ: -70.36011 + rotX: 0.0208077189 + rotY: 269.999573 + rotZ: 0.0167682283 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic b950f3/Card Grounded (1) 491a94.yaml b/unpacked/Custom_Model_Bag Mystic b950f3/Card Grounded (1) 491a94.yaml new file mode 100644 index 000000000..1689cd711 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic b950f3/Card Grounded (1) 491a94.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 491a94 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Grounded (1) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.6296654 + posY: 1.38756418 + posZ: -47.3484459 + rotX: 0.0208096914 + rotY: 269.999542 + rotZ: 0.0167702828 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic b950f3/Card Jewel of Aureolus (3) e1438c.yaml b/unpacked/Custom_Model_Bag Mystic b950f3/Card Jewel of Aureolus (3) e1438c.yaml new file mode 100644 index 000000000..c4bda841b --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic b950f3/Card Jewel of Aureolus (3) e1438c.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Gift of the Homunculi +GMNotes: '' +GUID: e1438c +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Jewel of Aureolus (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 7.0765605 + posY: 1.38425052 + posZ: -54.26048 + rotX: 0.02080997 + rotY: 269.99942 + rotZ: 0.0167704616 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic b950f3/Card Mind Wipe (1) df8700.yaml b/unpacked/Custom_Model_Bag Mystic b950f3/Card Mind Wipe (1) df8700.yaml new file mode 100644 index 000000000..d21f16a86 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic b950f3/Card Mind Wipe (1) df8700.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: df8700 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Mind Wipe (1) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.3436623 + posY: 1.35397279 + posZ: -51.9679 + rotX: 0.0208084825 + rotY: 269.999481 + rotZ: 0.0167693868 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic b950f3/Card Mind Wipe (3) be0d74.yaml b/unpacked/Custom_Model_Bag Mystic b950f3/Card Mind Wipe (3) be0d74.yaml new file mode 100644 index 000000000..adefd5ba0 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic b950f3/Card Mind Wipe (3) be0d74.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: be0d74 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Mind Wipe (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.3436565 + posY: 1.34724033 + posZ: -74.9676743 + rotX: 0.020808531 + rotY: 269.999664 + rotZ: 0.01676984 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic b950f3/Card Mind's Eye (2) 5003da.yaml b/unpacked/Custom_Model_Bag Mystic b950f3/Card Mind's Eye (2) 5003da.yaml new file mode 100644 index 000000000..9f151253f --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic b950f3/Card Mind's Eye (2) 5003da.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 449137 +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 + UniqueBack: false +Description: Ritual. +GMNotes: '' +GUID: 5003da +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Mind's Eye (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.6296539 + posY: 1.378139 + posZ: -79.54802 + rotX: 0.0208018459 + rotY: 270.018921 + rotZ: 0.0167756584 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic b950f3/Card Mists of R'lyeh (4) 2ec15c.yaml b/unpacked/Custom_Model_Bag Mystic b950f3/Card Mists of R'lyeh (4) 2ec15c.yaml new file mode 100644 index 000000000..684a8a959 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic b950f3/Card Mists of R'lyeh (4) 2ec15c.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 2ec15c +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Mists of R'lyeh (4) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 7.07654333 + posY: 1.37886477 + posZ: -72.66011 + rotX: 0.02080771 + rotY: 269.9992 + rotZ: 0.0167681836 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic b950f3/Card Protective Incantation (1) 86f539.yaml b/unpacked/Custom_Model_Bag Mystic b950f3/Card Protective Incantation (1) 86f539.yaml new file mode 100644 index 000000000..0dddc5bb9 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic b950f3/Card Protective Incantation (1) 86f539.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 86f539 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Protective Incantation (1) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.6296473 + posY: 1.38689089 + posZ: -49.6484337 + rotX: 0.02080978 + rotY: 269.999542 + rotZ: 0.0167713109 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic b950f3/Card Recall the Future (2) 704f6e.yaml b/unpacked/Custom_Model_Bag Mystic b950f3/Card Recall the Future (2) 704f6e.yaml new file mode 100644 index 000000000..13d5d61ab --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic b950f3/Card Recall the Future (2) 704f6e.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 704f6e +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Recall the Future (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.6296577 + posY: 1.38150525 + posZ: -68.0480652 + rotX: 0.0208074581 + rotY: 269.999481 + rotZ: 0.0167685132 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic b950f3/Card Recharge (2) 765ac3.yaml b/unpacked/Custom_Model_Bag Mystic b950f3/Card Recharge (2) 765ac3.yaml new file mode 100644 index 000000000..5d561676c --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic b950f3/Card Recharge (2) 765ac3.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 765ac3 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Recharge (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.343668 + posY: 1.3526262 + posZ: -56.5679054 + rotX: 0.02080842 + rotY: 269.999481 + rotZ: 0.0167693757 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic b950f3/Card Rite of Seeking (2) d90d23.yaml b/unpacked/Custom_Model_Bag Mystic b950f3/Card Rite of Seeking (2) d90d23.yaml new file mode 100644 index 000000000..0c4ea63ee --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic b950f3/Card Rite of Seeking (2) d90d23.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 278204 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2782': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025945336/04E36F64C2CBE1B4905FF44A869C75EC52CB3A56/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: d90d23 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Rite of Seeking (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.63169 + posY: 1.37746644 + posZ: -81.8482361 + rotX: 0.02080736 + rotY: 269.99942 + rotZ: 0.01676837 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic b950f3/Card Rite of Seeking (4) 1fef17.yaml b/unpacked/Custom_Model_Bag Mystic b950f3/Card Rite of Seeking (4) 1fef17.yaml new file mode 100644 index 000000000..3c0320321 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic b950f3/Card Rite of Seeking (4) 1fef17.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 1fef17 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Rite of Seeking (4) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 7.07666969 + posY: 1.37684512 + posZ: -79.56001 + rotX: 0.0208078139 + rotY: 269.9997 + rotZ: 0.016767649 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic b950f3/Card Sacrifice (1) 72e2d9.yaml b/unpacked/Custom_Model_Bag Mystic b950f3/Card Sacrifice (1) 72e2d9.yaml new file mode 100644 index 000000000..7ba12cb79 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic b950f3/Card Sacrifice (1) 72e2d9.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 72e2d9 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Sacrifice (1) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.3436642 + posY: 1.35531926 + posZ: -47.36791 + rotX: 0.0208086483 + rotY: 269.999481 + rotZ: 0.0167699214 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic b950f3/Card Scroll of Secrets (3) ea918a.yaml b/unpacked/Custom_Model_Bag Mystic b950f3/Card Scroll of Secrets (3) ea918a.yaml new file mode 100644 index 000000000..2e04d538e --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic b950f3/Card Scroll of Secrets (3) ea918a.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Mystic +GMNotes: '' +GUID: ea918a +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Scroll of Secrets (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.61387 + posY: 1.37544262 + posZ: -88.74 + rotX: 0.020807609 + rotY: 269.999268 + rotZ: 0.0167679172 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic b950f3/Card Scrying (3) bb3e67.yaml b/unpacked/Custom_Model_Bag Mystic b950f3/Card Scrying (3) bb3e67.yaml new file mode 100644 index 000000000..bdf353eb1 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic b950f3/Card Scrying (3) bb3e67.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 230350 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: bb3e67 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Scrying (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.6137209 + posY: 1.37476933 + posZ: -91.04 + rotX: 0.0208040737 + rotY: 270.0112 + rotZ: 0.0167726316 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic b950f3/Card Seal of the Elder Sign (5) 28ae85.yaml b/unpacked/Custom_Model_Bag Mystic b950f3/Card Seal of the Elder Sign (5) 28ae85.yaml new file mode 100644 index 000000000..b3fc61670 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic b950f3/Card Seal of the Elder Sign (5) 28ae85.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 28ae85 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Seal of the Elder Sign (5) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 24.5003471 + posY: 1.35583067 + posZ: -52.01855 + rotX: 0.020808382 + rotY: 269.9995 + rotZ: 0.016769411 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic b950f3/Card Seal of the Seventh Sign (5) d3c7f7.yaml b/unpacked/Custom_Model_Bag Mystic b950f3/Card Seal of the Seventh Sign (5) d3c7f7.yaml new file mode 100644 index 000000000..6c5e57037 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic b950f3/Card Seal of the Seventh Sign (5) d3c7f7.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 278101 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2781': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025945336/04E36F64C2CBE1B4905FF44A869C75EC52CB3A56/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: Over the Threshold and Beyond +GMNotes: '' +GUID: d3c7f7 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Seal of the Seventh Sign (5) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 7.07977438 + posY: 1.376173 + posZ: -81.86023 + rotX: 0.02080253 + rotY: 270.016724 + rotZ: 0.0167749915 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic b950f3/Card Shards of the Void (3) 41435f.yaml b/unpacked/Custom_Model_Bag Mystic b950f3/Card Shards of the Void (3) 41435f.yaml new file mode 100644 index 000000000..d66fc8ef5 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic b950f3/Card Shards of the Void (3) 41435f.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 278102 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2781': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025945336/04E36F64C2CBE1B4905FF44A869C75EC52CB3A56/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 41435f +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Shards of the Void (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 7.076564 + posY: 1.38357735 + posZ: -56.560482 + rotX: 0.0208083913 + rotY: 270.00412 + rotZ: 0.0167719387 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic b950f3/Card Shining Trapezohedron (4) 590f43.yaml b/unpacked/Custom_Model_Bag Mystic b950f3/Card Shining Trapezohedron (4) 590f43.yaml new file mode 100644 index 000000000..4a573ef81 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic b950f3/Card Shining Trapezohedron (4) 590f43.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 449138 +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 + UniqueBack: false +Description: Item. Relic. +GMNotes: '' +GUID: 590f43 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Shining Trapezohedron (4) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 7.076556 + posY: 1.38021135 + posZ: -68.0601044 + rotX: 0.0208083354 + rotY: 269.9971 + rotZ: 0.0167673733 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic b950f3/Card Shrivelling (3) 6af5d3.yaml b/unpacked/Custom_Model_Bag Mystic b950f3/Card Shrivelling (3) 6af5d3.yaml new file mode 100644 index 000000000..392492797 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic b950f3/Card Shrivelling (3) 6af5d3.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 6af5d3 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Shrivelling (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 7.07654953 + posY: 1.3815577 + posZ: -63.4604759 + rotX: 0.0208087638 + rotY: 269.99942 + rotZ: 0.0167691316 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic b950f3/Card Shrivelling (5) ed0aea.yaml b/unpacked/Custom_Model_Bag Mystic b950f3/Card Shrivelling (5) ed0aea.yaml new file mode 100644 index 000000000..c48d290e7 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic b950f3/Card Shrivelling (5) ed0aea.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: ed0aea +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Shrivelling (5) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 7.079998 + posY: 1.3755 + posZ: -84.15958 + rotX: 0.0207973849 + rotY: 270.033478 + rotZ: 0.0167803112 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic b950f3/Card Sixth Sense (4) c25daa.yaml b/unpacked/Custom_Model_Bag Mystic b950f3/Card Sixth Sense (4) c25daa.yaml new file mode 100644 index 000000000..235d76fb4 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic b950f3/Card Sixth Sense (4) c25daa.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: c25daa +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Sixth Sense (4) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 7.076528 + posY: 1.3775183 + posZ: -77.26004 + rotX: 0.0208076332 + rotY: 269.999451 + rotZ: 0.0167678725 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic b950f3/Card Song of the Dead (2) 822232.yaml b/unpacked/Custom_Model_Bag Mystic b950f3/Card Song of the Dead (2) 822232.yaml new file mode 100644 index 000000000..8b2639fea --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic b950f3/Card Song of the Dead (2) 822232.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: '822232' +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Song of the Dead (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.62965 + posY: 1.380832 + posZ: -70.34807 + rotX: 0.02080763 + rotY: 269.999481 + rotZ: 0.0167682078 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic b950f3/Card Spirit Athame (1) e0aee9.yaml b/unpacked/Custom_Model_Bag Mystic b950f3/Card Spirit Athame (1) e0aee9.yaml new file mode 100644 index 000000000..e81538ad0 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic b950f3/Card Spirit Athame (1) e0aee9.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: e0aee9 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Spirit Athame (1) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.6296606 + posY: 1.38487124 + posZ: -56.5484428 + rotX: 0.0208096188 + rotY: 269.9995 + rotZ: 0.0167710837 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic b950f3/Card Stargazing (1) cd8764.yaml b/unpacked/Custom_Model_Bag Mystic b950f3/Card Stargazing (1) cd8764.yaml new file mode 100644 index 000000000..600be8267 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic b950f3/Card Stargazing (1) cd8764.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 440822 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: cd8764 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Stargazing (1) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.3436661 + posY: 1.354646 + posZ: -49.6678963 + rotX: 0.020808449 + rotY: 269.999481 + rotZ: 0.0167692713 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic b950f3/Card Storm of Spirits (3) a2a79e.yaml b/unpacked/Custom_Model_Bag Mystic b950f3/Card Storm of Spirits (3) a2a79e.yaml new file mode 100644 index 000000000..d0eab8721 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic b950f3/Card Storm of Spirits (3) a2a79e.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 440821 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: a2a79e +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Storm of Spirits (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.3436527 + posY: 1.34791362 + posZ: -72.6676559 + rotX: 0.0208084937 + rotY: 269.999481 + rotZ: 0.0167692043 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic b950f3/Card Summoned Hound (1) d21b15.yaml b/unpacked/Custom_Model_Bag Mystic b950f3/Card Summoned Hound (1) d21b15.yaml new file mode 100644 index 000000000..51b1f98b2 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic b950f3/Card Summoned Hound (1) d21b15.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 449135 +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 + UniqueBack: false +Description: Ally. Summon. +GMNotes: '' +GUID: d21b15 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Summoned Hound (1) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.6296625 + posY: 1.38419807 + posZ: -58.8484459 + rotX: 0.0208093375 + rotY: 269.999817 + rotZ: 0.0167712234 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic b950f3/Card Time Warp (2) 504b8d.yaml b/unpacked/Custom_Model_Bag Mystic b950f3/Card Time Warp (2) 504b8d.yaml new file mode 100644 index 000000000..7b4883781 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic b950f3/Card Time Warp (2) 504b8d.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 504b8d +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Time Warp (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.3436565 + posY: 1.35060656 + posZ: -63.4678955 + rotX: 0.0208084472 + rotY: 269.9995 + rotZ: 0.0167692062 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic b950f3/Card Twila Katherine Price (3) f6dc28.yaml b/unpacked/Custom_Model_Bag Mystic b950f3/Card Twila Katherine Price (3) f6dc28.yaml new file mode 100644 index 000000000..3b35defe7 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic b950f3/Card Twila Katherine Price (3) f6dc28.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Lost in a Dream +GMNotes: '' +GUID: f6dc28 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Twila Katherine Price (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 7.07655859 + posY: 1.382904 + posZ: -58.8604851 + rotX: 0.0208147857 + rotY: 269.9831 + rotZ: 0.01676471 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic b950f3/Card Ward of Protection (2) 3b4524.yaml b/unpacked/Custom_Model_Bag Mystic b950f3/Card Ward of Protection (2) 3b4524.yaml new file mode 100644 index 000000000..4c6aebf32 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic b950f3/Card Ward of Protection (2) 3b4524.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 3b4524 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Ward of Protection (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.343668 + posY: 1.351953 + posZ: -58.86791 + rotX: 0.0208085347 + rotY: 269.999481 + rotZ: 0.0167693663 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic b950f3/Card Ward of Protection (5) 7600af.yaml b/unpacked/Custom_Model_Bag Mystic b950f3/Card Ward of Protection (5) 7600af.yaml new file mode 100644 index 000000000..f99722717 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic b950f3/Card Ward of Protection (5) 7600af.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 7600af +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Ward of Protection (5) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.3436642 + posY: 1.345894 + posZ: -79.56757 + rotX: 0.020804299 + rotY: 270.014 + rotZ: 0.01677465 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic b950f3/Card Wither (4) 31aa5d.yaml b/unpacked/Custom_Model_Bag Mystic b950f3/Card Wither (4) 31aa5d.yaml new file mode 100644 index 000000000..ca6924825 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic b950f3/Card Wither (4) 31aa5d.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 31aa5d +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Wither (4) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 7.0765233 + posY: 1.37819147 + posZ: -74.960144 + rotX: 0.0208076 + rotY: 269.999481 + rotZ: 0.0167678352 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic b950f3/Card Word of Command (2) f1bf15.yaml b/unpacked/Custom_Model_Bag Mystic b950f3/Card Word of Command (2) f1bf15.yaml new file mode 100644 index 000000000..70dbaadb1 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic b950f3/Card Word of Command (2) f1bf15.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Spell. +GMNotes: '' +GUID: f1bf15 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Word of Command (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.3436623 + posY: 1.34926009 + posZ: -68.06754 + rotX: 0.0207997262 + rotY: 270.029175 + rotZ: 0.0167801958 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic b950f3/Custom_Model_Bag Mystic 1ebc8b.ttslua b/unpacked/Custom_Model_Bag Mystic b950f3/Custom_Model_Bag Mystic 1ebc8b.ttslua new file mode 100644 index 000000000..f882a7f09 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic b950f3/Custom_Model_Bag Mystic 1ebc8b.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,0,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 + 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=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,0,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,0,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,0,0}, height=350, width=750, + 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}, rotation={0,0,0}, height=350, width=800, + font_size=250, color={0,0,0}, font_color={1,1,1} + }) +-- self.createButton({ +-- label="Setup", click_function="buttonClick_setup", function_owner=self, +-- position={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.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 Mystic b950f3/Custom_Model_Bag Mystic 1ebc8b.yaml b/unpacked/Custom_Model_Bag Mystic b950f3/Custom_Model_Bag Mystic 1ebc8b.yaml new file mode 100644 index 000000000..67f544b25 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic b950f3/Custom_Model_Bag Mystic 1ebc8b.yaml @@ -0,0 +1,107 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +ContainedObjects: +- !include 'Custom_Model_Bag Mystic 1ebc8b/Card Fearless (2) 9f66a7.yaml' +- !include 'Custom_Model_Bag Mystic 1ebc8b/Card Defiance (2) 0c2dad.yaml' +- !include 'Custom_Model_Bag Mystic 1ebc8b/Card Seal of the Elder Sign (5) 28ae85.yaml' +- !include 'Custom_Model_Bag Mystic 1ebc8b/Card Mind Wipe (1) df8700.yaml' +- !include 'Custom_Model_Bag Mystic 1ebc8b/Card Stargazing (1) cd8764.yaml' +- !include 'Custom_Model_Bag Mystic 1ebc8b/Card Sacrifice (1) 72e2d9.yaml' +- !include 'Custom_Model_Bag Mystic 1ebc8b/Card Banish (1) c4a55b.yaml' +- !include 'Custom_Model_Bag Mystic 1ebc8b/Card Recharge (2) 765ac3.yaml' +- !include 'Custom_Model_Bag Mystic 1ebc8b/Card Ward of Protection (2) 3b4524.yaml' +- !include 'Custom_Model_Bag Mystic 1ebc8b/Card Blinding Light (2) f7bfec.yaml' +- !include 'Custom_Model_Bag Mystic 1ebc8b/Card Time Warp (2) 504b8d.yaml' +- !include 'Custom_Model_Bag Mystic 1ebc8b/Card Counterspell (2) ce1967.yaml' +- !include 'Custom_Model_Bag Mystic 1ebc8b/Card Word of Command (2) f1bf15.yaml' +- !include 'Custom_Model_Bag Mystic 1ebc8b/Card De Vermis Mysteriis (2) 584913.yaml' +- !include 'Custom_Model_Bag Mystic 1ebc8b/Card Dayana Esperence (3) 3db9b1.yaml' +- !include 'Custom_Model_Bag Mystic 1ebc8b/Card Shrivelling (3) 6af5d3.yaml' +- !include 'Custom_Model_Bag Mystic 1ebc8b/Card Arcane Studies (2) 3f9b51.yaml' +- !include 'Custom_Model_Bag Mystic 1ebc8b/Card Alchemical Transmutation (2) a69be0.yaml' +- !include 'Custom_Model_Bag Mystic 1ebc8b/Card Book of Shadows (3) 823a3f.yaml' +- !include 'Custom_Model_Bag Mystic 1ebc8b/Card Twila Katherine Price (3) f6dc28.yaml' +- !include 'Custom_Model_Bag Mystic 1ebc8b/Card Summoned Hound (1) d21b15.yaml' +- !include 'Custom_Model_Bag Mystic 1ebc8b/Card Spirit Athame (1) e0aee9.yaml' +- !include 'Custom_Model_Bag Mystic 1ebc8b/Card Shards of the Void (3) 41435f.yaml' +- !include 'Custom_Model_Bag Mystic 1ebc8b/Card Jewel of Aureolus (3) e1438c.yaml' +- !include 'Custom_Model_Bag Mystic 1ebc8b/Card Four of Cups (1) 43b4be.yaml' +- !include 'Custom_Model_Bag Mystic 1ebc8b/Card Book of Shadows (1) 0587b8.yaml' +- !include 'Custom_Model_Bag Mystic 1ebc8b/Card Enchanted Blade (3) 1cf6bb.yaml' +- !include 'Custom_Model_Bag Mystic 1ebc8b/Card Crystalline Elder Sign (3) 83936c.yaml' +- !include 'Custom_Model_Bag Mystic 1ebc8b/Card Protective Incantation (1) 86f539.yaml' +- !include 'Custom_Model_Bag Mystic 1ebc8b/Card Grounded (1) 491a94.yaml' +- !include 'Custom_Model_Bag Mystic 1ebc8b/Card Clarity of Mind (3) 25dd68.yaml' +- !include 'Custom_Model_Bag Mystic 1ebc8b/Card Shining Trapezohedron (4) 590f43.yaml' +- !include 'Custom_Model_Bag Mystic 1ebc8b/Card Recall the Future (2) 704f6e.yaml' +- !include 'Custom_Model_Bag Mystic 1ebc8b/Card Bind Monster (2) 5d5a96.yaml' +- !include 'Custom_Model_Bag Mystic 1ebc8b/Card Storm of Spirits (3) a2a79e.yaml' +- !include 'Custom_Model_Bag Mystic 1ebc8b/Card Mind Wipe (3) be0d74.yaml' +- !include 'Custom_Model_Bag Mystic 1ebc8b/Card Deny Existence (5) ae8349.yaml' +- !include 'Custom_Model_Bag Mystic 1ebc8b/Card Ward of Protection (5) 7600af.yaml' +- !include 'Custom_Model_Bag Mystic 1ebc8b/Card Song of the Dead (2) 822232.yaml' +- !include 'Custom_Model_Bag Mystic 1ebc8b/Card Grotesque Statue (4) c1af37.yaml' +- !include 'Custom_Model_Bag Mystic 1ebc8b/Card Mists of R''lyeh (4) 2ec15c.yaml' +- !include 'Custom_Model_Bag Mystic 1ebc8b/Card Empower Self (2) 7fdfd7.yaml' +- !include 'Custom_Model_Bag Mystic 1ebc8b/Card Empower Self (2) cda37d.yaml' +- !include 'Custom_Model_Bag Mystic 1ebc8b/Card Wither (4) 31aa5d.yaml' +- !include 'Custom_Model_Bag Mystic 1ebc8b/Card Sixth Sense (4) c25daa.yaml' +- !include 'Custom_Model_Bag Mystic 1ebc8b/Card Empower Self (2) 4888b7.yaml' +- !include 'Custom_Model_Bag Mystic 1ebc8b/Card Mind''s Eye (2) 5003da.yaml' +- !include 'Custom_Model_Bag Mystic 1ebc8b/Card Rite of Seeking (4) 1fef17.yaml' +- !include 'Custom_Model_Bag Mystic 1ebc8b/Card Seal of the Seventh Sign (5) d3c7f7.yaml' +- !include 'Custom_Model_Bag Mystic 1ebc8b/Card Rite of Seeking (2) d90d23.yaml' +- !include 'Custom_Model_Bag Mystic 1ebc8b/Card Blood Pact (3) 858866.yaml' +- !include 'Custom_Model_Bag Mystic 1ebc8b/Card Shrivelling (5) ed0aea.yaml' +- !include 'Custom_Model_Bag Mystic 1ebc8b/Card Arcane Initiate (3) 3bfbe7.yaml' +- !include 'Custom_Model_Bag Mystic 1ebc8b/Card Scroll of Secrets (3) ea918a.yaml' +- !include 'Custom_Model_Bag Mystic 1ebc8b/Card Scrying (3) bb3e67.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/952965722516557267/757887224F6C37104CDFFE241FAD09B57117D670/ + MaterialIndex: 3 + MeshURL: https://pastebin.com/raw/ALrYhQGb + NormalURL: '' + TypeIndex: 6 +Description: '' +GMNotes: '' +GUID: 1ebc8b +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Model_Bag Mystic 1ebc8b.ttslua' +LuaScriptState: '{"ml":{"0587b8":{"lock":false,"pos":{"x":10.6297,"y":1.3862,"z":-51.9484},"rot":{"x":0.0208,"y":269.9995,"z":0.0168}},"0c2dad":{"lock":false,"pos":{"x":24.5003,"y":1.3565,"z":-49.7185},"rot":{"x":0.0208,"y":269.9995,"z":0.0168}},"1cf6bb":{"lock":false,"pos":{"x":7.0766,"y":1.3849,"z":-51.9605},"rot":{"x":0.0208,"y":270,"z":0.0168}},"1fef17":{"lock":false,"pos":{"x":7.0767,"y":1.3768,"z":-79.56},"rot":{"x":0.0208,"y":269.9997,"z":0.0168}},"25dd68":{"lock":false,"pos":{"x":7.0766,"y":1.3863,"z":-47.3605},"rot":{"x":0.0208,"y":269.9995,"z":0.0168}},"28ae85":{"lock":false,"pos":{"x":24.5003,"y":1.3558,"z":-52.0186},"rot":{"x":0.0208,"y":269.9995,"z":0.0168}},"2ec15c":{"lock":false,"pos":{"x":7.0765,"y":1.3789,"z":-72.6601},"rot":{"x":0.0208,"y":269.9992,"z":0.0168}},"31aa5d":{"lock":false,"pos":{"x":7.0765,"y":1.3782,"z":-74.9601},"rot":{"x":0.0208,"y":269.9995,"z":0.0168}},"3b4524":{"lock":false,"pos":{"x":19.3437,"y":1.352,"z":-58.8679},"rot":{"x":0.0208,"y":269.9995,"z":0.0168}},"3bfbe7":{"lock":false,"pos":{"x":10.6297,"y":1.3761,"z":-86.448},"rot":{"x":0.0208,"y":269.9994,"z":0.0168}},"3db9b1":{"lock":false,"pos":{"x":7.0766,"y":1.3809,"z":-65.7601},"rot":{"x":0.0208,"y":269.9996,"z":0.0168}},"3f9b51":{"lock":false,"pos":{"x":10.6296,"y":1.3829,"z":-63.4484},"rot":{"x":0.0208,"y":269.9995,"z":0.0168}},"41435f":{"lock":false,"pos":{"x":7.0766,"y":1.3836,"z":-56.5605},"rot":{"x":0.0208,"y":270.0041,"z":0.0168}},"43b4be":{"lock":false,"pos":{"x":10.6297,"y":1.3855,"z":-54.2484},"rot":{"x":0.0208,"y":269.9995,"z":0.0168}},"4888b7":{"lock":false,"pos":{"x":10.6297,"y":1.3788,"z":-77.248},"rot":{"x":0.0208,"y":269.9644,"z":0.0168}},"491a94":{"lock":false,"pos":{"x":10.6297,"y":1.3876,"z":-47.3484},"rot":{"x":0.0208,"y":269.9995,"z":0.0168}},"5003da":{"lock":false,"pos":{"x":10.6297,"y":1.3781,"z":-79.548},"rot":{"x":0.0208,"y":270.0189,"z":0.0168}},"504b8d":{"lock":false,"pos":{"x":19.3437,"y":1.3506,"z":-63.4679},"rot":{"x":0.0208,"y":269.9995,"z":0.0168}},"584913":{"lock":false,"pos":{"x":10.6297,"y":1.3822,"z":-65.7481},"rot":{"x":0.0208,"y":269.9998,"z":0.0168}},"590f43":{"lock":false,"pos":{"x":7.0766,"y":1.3802,"z":-68.0601},"rot":{"x":0.0208,"y":269.9971,"z":0.0168}},"5d5a96":{"lock":false,"pos":{"x":19.3437,"y":1.3486,"z":-70.3675},"rot":{"x":0.0208,"y":269.9995,"z":0.0168}},"6af5d3":{"lock":false,"pos":{"x":7.0765,"y":1.3816,"z":-63.4605},"rot":{"x":0.0208,"y":269.9994,"z":0.0168}},"704f6e":{"lock":false,"pos":{"x":10.6297,"y":1.3815,"z":-68.0481},"rot":{"x":0.0208,"y":269.9995,"z":0.0168}},"72e2d9":{"lock":false,"pos":{"x":19.3437,"y":1.3553,"z":-47.3679},"rot":{"x":0.0208,"y":269.9995,"z":0.0168}},"7600af":{"lock":false,"pos":{"x":19.3437,"y":1.3459,"z":-79.5676},"rot":{"x":0.0208,"y":270.014,"z":0.0168}},"765ac3":{"lock":false,"pos":{"x":19.3437,"y":1.3526,"z":-56.5679},"rot":{"x":0.0208,"y":269.9995,"z":0.0168}},"7fdfd7":{"lock":false,"pos":{"x":10.6296,"y":1.3802,"z":-72.6481},"rot":{"x":0.0208,"y":269.9781,"z":0.0168}},"822232":{"lock":false,"pos":{"x":10.6297,"y":1.3808,"z":-70.3481},"rot":{"x":0.0208,"y":269.9995,"z":0.0168}},"823a3f":{"lock":false,"pos":{"x":7.0765,"y":1.3822,"z":-61.1605},"rot":{"x":0.0208,"y":269.9821,"z":0.0168}},"83936c":{"lock":false,"pos":{"x":7.0766,"y":1.3856,"z":-49.6605},"rot":{"x":0.0208,"y":270.0018,"z":0.0168}},"858866":{"lock":false,"pos":{"x":10.6296,"y":1.3768,"z":-84.148},"rot":{"x":0.0208,"y":269.9995,"z":0.0168}},"86f539":{"lock":false,"pos":{"x":10.6296,"y":1.3869,"z":-49.6484},"rot":{"x":0.0208,"y":269.9995,"z":0.0168}},"9f66a7":{"lock":false,"pos":{"x":24.5003,"y":1.3572,"z":-47.4186},"rot":{"x":0.0208,"y":269.9995,"z":0.0168}},"a2a79e":{"lock":false,"pos":{"x":19.3437,"y":1.3479,"z":-72.6677},"rot":{"x":0.0208,"y":269.9995,"z":0.0168}},"a69be0":{"lock":false,"pos":{"x":10.6297,"y":1.3835,"z":-61.1484},"rot":{"x":0.0208,"y":269.9995,"z":0.0168}},"ae8349":{"lock":false,"pos":{"x":19.3437,"y":1.3466,"z":-77.2676},"rot":{"x":0.0208,"y":269.9995,"z":0.0168}},"bb3e67":{"lock":false,"pos":{"x":10.6137,"y":1.3748,"z":-91.04},"rot":{"x":0.0208,"y":270.0112,"z":0.0168}},"be0d74":{"lock":false,"pos":{"x":19.3437,"y":1.3472,"z":-74.9677},"rot":{"x":0.0208,"y":269.9997,"z":0.0168}},"c1af37":{"lock":false,"pos":{"x":7.0765,"y":1.3795,"z":-70.3601},"rot":{"x":0.0208,"y":269.9996,"z":0.0168}},"c25daa":{"lock":false,"pos":{"x":7.0765,"y":1.3775,"z":-77.26},"rot":{"x":0.0208,"y":269.9995,"z":0.0168}},"c4a55b":{"lock":false,"pos":{"x":19.3437,"y":1.3533,"z":-54.2679},"rot":{"x":0.0208,"y":269.9995,"z":0.0168}},"cd8764":{"lock":false,"pos":{"x":19.3437,"y":1.3546,"z":-49.6679},"rot":{"x":0.0208,"y":269.9995,"z":0.0168}},"cda37d":{"lock":false,"pos":{"x":10.6296,"y":1.3795,"z":-74.9481},"rot":{"x":0.0208,"y":270.0312,"z":0.0168}},"ce1967":{"lock":false,"pos":{"x":19.3437,"y":1.3499,"z":-65.7675},"rot":{"x":0.0208,"y":269.9996,"z":0.0168}},"d21b15":{"lock":false,"pos":{"x":10.6297,"y":1.3842,"z":-58.8484},"rot":{"x":0.0208,"y":269.9998,"z":0.0168}},"d3c7f7":{"lock":false,"pos":{"x":7.0798,"y":1.3762,"z":-81.8602},"rot":{"x":0.0208,"y":270.0167,"z":0.0168}},"d90d23":{"lock":false,"pos":{"x":10.6317,"y":1.3775,"z":-81.8482},"rot":{"x":0.0208,"y":269.9994,"z":0.0168}},"df8700":{"lock":false,"pos":{"x":19.3437,"y":1.354,"z":-51.9679},"rot":{"x":0.0208,"y":269.9995,"z":0.0168}},"e0aee9":{"lock":false,"pos":{"x":10.6297,"y":1.3849,"z":-56.5484},"rot":{"x":0.0208,"y":269.9995,"z":0.0168}},"e1438c":{"lock":false,"pos":{"x":7.0766,"y":1.3843,"z":-54.2605},"rot":{"x":0.0208,"y":269.9994,"z":0.0168}},"ea918a":{"lock":false,"pos":{"x":10.6139,"y":1.3754,"z":-88.74},"rot":{"x":0.0208,"y":269.9993,"z":0.0168}},"ed0aea":{"lock":false,"pos":{"x":7.08,"y":1.3755,"z":-84.1596},"rot":{"x":0.0208,"y":270.0335,"z":0.0168}},"f1bf15":{"lock":false,"pos":{"x":19.3437,"y":1.3493,"z":-68.0675},"rot":{"x":0.0208,"y":270.0292,"z":0.0168}},"f6dc28":{"lock":false,"pos":{"x":7.0766,"y":1.3829,"z":-58.8605},"rot":{"x":0.0208,"y":269.9831,"z":0.0168}},"f7bfec":{"lock":false,"pos":{"x":19.3437,"y":1.3513,"z":-61.1679},"rot":{"x":0.0208,"y":269.9995,"z":0.0168}}}}' +MaterialIndex: -1 +MeshIndex: -1 +Name: Custom_Model_Bag +Nickname: Mystic +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 32.70026 + posY: 1.65299571 + posZ: -80.1800156 + rotX: 0.03163844 + rotY: 270.0235 + rotZ: 0.00741844 + scaleX: 1.2 + scaleY: 1.2 + scaleZ: 1.2 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic b950f3/Custom_Model_Bag Mystic 1ebc8b/Card Alchemical Transmutation (2) a69be0.yaml b/unpacked/Custom_Model_Bag Mystic b950f3/Custom_Model_Bag Mystic 1ebc8b/Card Alchemical Transmutation (2) a69be0.yaml new file mode 100644 index 000000000..703b6f9ea --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic b950f3/Custom_Model_Bag Mystic 1ebc8b/Card Alchemical Transmutation (2) a69be0.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 440820 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: a69be0 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Alchemical Transmutation (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.629653 + posY: 1.38352466 + posZ: -61.14845 + rotX: 0.0208097342 + rotY: 269.999481 + rotZ: 0.0167710613 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic b950f3/Custom_Model_Bag Mystic 1ebc8b/Card Arcane Initiate (3) 3bfbe7.yaml b/unpacked/Custom_Model_Bag Mystic b950f3/Custom_Model_Bag Mystic 1ebc8b/Card Arcane Initiate (3) 3bfbe7.yaml new file mode 100644 index 000000000..160c41125 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic b950f3/Custom_Model_Bag Mystic 1ebc8b/Card Arcane Initiate (3) 3bfbe7.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 3bfbe7 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Arcane Initiate (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.62969 + posY: 1.37611926 + posZ: -86.44803 + rotX: 0.0208074786 + rotY: 269.99942 + rotZ: 0.0167685263 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic b950f3/Custom_Model_Bag Mystic 1ebc8b/Card Arcane Studies (2) 3f9b51.yaml b/unpacked/Custom_Model_Bag Mystic b950f3/Custom_Model_Bag Mystic 1ebc8b/Card Arcane Studies (2) 3f9b51.yaml new file mode 100644 index 000000000..61e5287ab --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic b950f3/Custom_Model_Bag Mystic 1ebc8b/Card Arcane Studies (2) 3f9b51.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 3f9b51 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Arcane Studies (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.6296463 + posY: 1.38285148 + posZ: -63.4484367 + rotX: 0.0208082963 + rotY: 269.999542 + rotZ: 0.0167681985 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic b950f3/Custom_Model_Bag Mystic 1ebc8b/Card Banish (1) c4a55b.yaml b/unpacked/Custom_Model_Bag Mystic b950f3/Custom_Model_Bag Mystic 1ebc8b/Card Banish (1) c4a55b.yaml new file mode 100644 index 000000000..49f20258d --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic b950f3/Custom_Model_Bag Mystic 1ebc8b/Card Banish (1) c4a55b.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: c4a55b +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Banish (1) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.343668 + posY: 1.3532995 + posZ: -54.2679024 + rotX: 0.0208086632 + rotY: 269.999481 + rotZ: 0.0167699326 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic b950f3/Custom_Model_Bag Mystic 1ebc8b/Card Bind Monster (2) 5d5a96.yaml b/unpacked/Custom_Model_Bag Mystic b950f3/Custom_Model_Bag Mystic 1ebc8b/Card Bind Monster (2) 5d5a96.yaml new file mode 100644 index 000000000..9c1397b79 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic b950f3/Custom_Model_Bag Mystic 1ebc8b/Card Bind Monster (2) 5d5a96.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 5d5a96 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Bind Monster (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.3436565 + posY: 1.34858692 + posZ: -70.3675461 + rotX: 0.0208084416 + rotY: 269.999451 + rotZ: 0.01676927 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic b950f3/Custom_Model_Bag Mystic 1ebc8b/Card Blinding Light (2) f7bfec.yaml b/unpacked/Custom_Model_Bag Mystic b950f3/Custom_Model_Bag Mystic 1ebc8b/Card Blinding Light (2) f7bfec.yaml new file mode 100644 index 000000000..5a8ff1610 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic b950f3/Custom_Model_Bag Mystic 1ebc8b/Card Blinding Light (2) f7bfec.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: f7bfec +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Blinding Light (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.34366 + posY: 1.35127974 + posZ: -61.16791 + rotX: 0.020808395 + rotY: 269.999481 + rotZ: 0.0167692378 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic b950f3/Custom_Model_Bag Mystic 1ebc8b/Card Blood Pact (3) 858866.yaml b/unpacked/Custom_Model_Bag Mystic b950f3/Custom_Model_Bag Mystic 1ebc8b/Card Blood Pact (3) 858866.yaml new file mode 100644 index 000000000..1a3f550fe --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic b950f3/Custom_Model_Bag Mystic 1ebc8b/Card Blood Pact (3) 858866.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: '858866' +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Blood Pact (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.6295624 + posY: 1.37679243 + posZ: -84.14801 + rotX: 0.0208074 + rotY: 269.999542 + rotZ: 0.0167684 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic b950f3/Custom_Model_Bag Mystic 1ebc8b/Card Book of Shadows (1) 0587b8.yaml b/unpacked/Custom_Model_Bag Mystic b950f3/Custom_Model_Bag Mystic 1ebc8b/Card Book of Shadows (1) 0587b8.yaml new file mode 100644 index 000000000..6452ba96b --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic b950f3/Custom_Model_Bag Mystic 1ebc8b/Card Book of Shadows (1) 0587b8.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 0587b8 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Book of Shadows (1) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.629653 + posY: 1.38621783 + posZ: -51.9484329 + rotX: 0.0208095089 + rotY: 269.999481 + rotZ: 0.0167709943 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic b950f3/Custom_Model_Bag Mystic 1ebc8b/Card Book of Shadows (3) 823a3f.yaml b/unpacked/Custom_Model_Bag Mystic b950f3/Custom_Model_Bag Mystic 1ebc8b/Card Book of Shadows (3) 823a3f.yaml new file mode 100644 index 000000000..df7d2ad7f --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic b950f3/Custom_Model_Bag Mystic 1ebc8b/Card Book of Shadows (3) 823a3f.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 823a3f +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Book of Shadows (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 7.07654428 + posY: 1.38223076 + posZ: -61.16049 + rotX: 0.02081485 + rotY: 269.982117 + rotZ: 0.01676454 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic b950f3/Custom_Model_Bag Mystic 1ebc8b/Card Clarity of Mind (3) 25dd68.yaml b/unpacked/Custom_Model_Bag Mystic b950f3/Custom_Model_Bag Mystic 1ebc8b/Card Clarity of Mind (3) 25dd68.yaml new file mode 100644 index 000000000..715b59e90 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic b950f3/Custom_Model_Bag Mystic 1ebc8b/Card Clarity of Mind (3) 25dd68.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 278203 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2782': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025945336/04E36F64C2CBE1B4905FF44A869C75EC52CB3A56/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 25dd68 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Clarity of Mind (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 7.076563 + posY: 1.38627028 + posZ: -47.3604774 + rotX: 0.0208100341 + rotY: 269.9995 + rotZ: 0.01677044 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic b950f3/Custom_Model_Bag Mystic 1ebc8b/Card Counterspell (2) ce1967.yaml b/unpacked/Custom_Model_Bag Mystic b950f3/Custom_Model_Bag Mystic 1ebc8b/Card Counterspell (2) ce1967.yaml new file mode 100644 index 000000000..6493e962e --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic b950f3/Custom_Model_Bag Mystic 1ebc8b/Card Counterspell (2) ce1967.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: ce1967 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Counterspell (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.3436642 + posY: 1.34993339 + posZ: -65.76754 + rotX: 0.0208085421 + rotY: 269.999573 + rotZ: 0.0167694464 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic b950f3/Custom_Model_Bag Mystic 1ebc8b/Card Crystalline Elder Sign (3) 83936c.yaml b/unpacked/Custom_Model_Bag Mystic b950f3/Custom_Model_Bag Mystic 1ebc8b/Card Crystalline Elder Sign (3) 83936c.yaml new file mode 100644 index 000000000..2df396cf8 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic b950f3/Custom_Model_Bag Mystic 1ebc8b/Card Crystalline Elder Sign (3) 83936c.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 83936c +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Crystalline Elder Sign (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 7.07656145 + posY: 1.38559711 + posZ: -49.6604652 + rotX: 0.0208088048 + rotY: 270.0018 + rotZ: 0.0167717058 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic b950f3/Custom_Model_Bag Mystic 1ebc8b/Card Dayana Esperence (3) 3db9b1.yaml b/unpacked/Custom_Model_Bag Mystic b950f3/Custom_Model_Bag Mystic 1ebc8b/Card Dayana Esperence (3) 3db9b1.yaml new file mode 100644 index 000000000..804bcc915 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic b950f3/Custom_Model_Bag Mystic 1ebc8b/Card Dayana Esperence (3) 3db9b1.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Deals with "Devils" +GMNotes: '' +GUID: 3db9b1 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Dayana Esperence (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 7.07655048 + posY: 1.38088453 + posZ: -65.7601 + rotX: 0.02080745 + rotY: 269.999573 + rotZ: 0.0167685933 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic b950f3/Custom_Model_Bag Mystic 1ebc8b/Card De Vermis Mysteriis (2) 584913.yaml b/unpacked/Custom_Model_Bag Mystic b950f3/Custom_Model_Bag Mystic 1ebc8b/Card De Vermis Mysteriis (2) 584913.yaml new file mode 100644 index 000000000..0696b00db --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic b950f3/Custom_Model_Bag Mystic 1ebc8b/Card De Vermis Mysteriis (2) 584913.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Signs of the Black Stars +GMNotes: '' +GUID: '584913' +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: De Vermis Mysteriis (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.62965 + posY: 1.38217843 + posZ: -65.74806 + rotX: 0.0208077189 + rotY: 269.9998 + rotZ: 0.01676846 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic b950f3/Custom_Model_Bag Mystic 1ebc8b/Card Defiance (2) 0c2dad.yaml b/unpacked/Custom_Model_Bag Mystic b950f3/Custom_Model_Bag Mystic 1ebc8b/Card Defiance (2) 0c2dad.yaml new file mode 100644 index 000000000..bcc5cf1f1 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic b950f3/Custom_Model_Bag Mystic 1ebc8b/Card Defiance (2) 0c2dad.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 0c2dad +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Defiance (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 24.5003471 + posY: 1.356504 + posZ: -49.7185478 + rotX: 0.02080844 + rotY: 269.999481 + rotZ: 0.0167692415 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic b950f3/Custom_Model_Bag Mystic 1ebc8b/Card Deny Existence (5) ae8349.yaml b/unpacked/Custom_Model_Bag Mystic b950f3/Custom_Model_Bag Mystic 1ebc8b/Card Deny Existence (5) ae8349.yaml new file mode 100644 index 000000000..6b593e752 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic b950f3/Custom_Model_Bag Mystic 1ebc8b/Card Deny Existence (5) ae8349.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: ae8349 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Deny Existence (5) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.3436546 + posY: 1.34656715 + posZ: -77.26757 + rotX: 0.020808585 + rotY: 269.999451 + rotZ: 0.0167693626 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic b950f3/Custom_Model_Bag Mystic 1ebc8b/Card Empower Self (2) 4888b7.yaml b/unpacked/Custom_Model_Bag Mystic b950f3/Custom_Model_Bag Mystic 1ebc8b/Card Empower Self (2) 4888b7.yaml new file mode 100644 index 000000000..ccfc47837 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic b950f3/Custom_Model_Bag Mystic 1ebc8b/Card Empower Self (2) 4888b7.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Acuity +GMNotes: '' +GUID: 4888b7 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Empower Self (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.62965 + posY: 1.37881219 + posZ: -77.24802 + rotX: 0.02081753 + rotY: 269.9644 + rotZ: 0.0167554859 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic b950f3/Custom_Model_Bag Mystic 1ebc8b/Card Empower Self (2) 7fdfd7.yaml b/unpacked/Custom_Model_Bag Mystic b950f3/Custom_Model_Bag Mystic 1ebc8b/Card Empower Self (2) 7fdfd7.yaml new file mode 100644 index 000000000..5f2587b1e --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic b950f3/Custom_Model_Bag Mystic 1ebc8b/Card Empower Self (2) 7fdfd7.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Stamina +GMNotes: '' +GUID: 7fdfd7 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Empower Self (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.6296463 + posY: 1.38015866 + posZ: -72.6481 + rotX: 0.0208139718 + rotY: 269.9781 + rotZ: 0.01676067 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic b950f3/Custom_Model_Bag Mystic 1ebc8b/Card Empower Self (2) cda37d.yaml b/unpacked/Custom_Model_Bag Mystic b950f3/Custom_Model_Bag Mystic 1ebc8b/Card Empower Self (2) cda37d.yaml new file mode 100644 index 000000000..c527dbaa8 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic b950f3/Custom_Model_Bag Mystic 1ebc8b/Card Empower Self (2) cda37d.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Alacrity +GMNotes: '' +GUID: cda37d +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Empower Self (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.6296444 + posY: 1.37948549 + posZ: -74.94812 + rotX: 0.0207982864 + rotY: 270.0312 + rotZ: 0.0167803615 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic b950f3/Custom_Model_Bag Mystic 1ebc8b/Card Enchanted Blade (3) 1cf6bb.yaml b/unpacked/Custom_Model_Bag Mystic b950f3/Custom_Model_Bag Mystic 1ebc8b/Card Enchanted Blade (3) 1cf6bb.yaml new file mode 100644 index 000000000..b01e5e30a --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic b950f3/Custom_Model_Bag Mystic 1ebc8b/Card Enchanted Blade (3) 1cf6bb.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Mystic +GMNotes: '' +GUID: 1cf6bb +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Enchanted Blade (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 7.07655573 + posY: 1.38492382 + posZ: -51.96047 + rotX: 0.0208098274 + rotY: 269.999969 + rotZ: 0.01677053 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic b950f3/Custom_Model_Bag Mystic 1ebc8b/Card Fearless (2) 9f66a7.yaml b/unpacked/Custom_Model_Bag Mystic b950f3/Custom_Model_Bag Mystic 1ebc8b/Card Fearless (2) 9f66a7.yaml new file mode 100644 index 000000000..4dc5456d7 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic b950f3/Custom_Model_Bag Mystic 1ebc8b/Card Fearless (2) 9f66a7.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 9f66a7 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Fearless (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 24.5003471 + posY: 1.35717714 + posZ: -47.41856 + rotX: 0.0208084546 + rotY: 269.999481 + rotZ: 0.0167694446 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic b950f3/Custom_Model_Bag Mystic 1ebc8b/Card Four of Cups (1) 43b4be.yaml b/unpacked/Custom_Model_Bag Mystic b950f3/Custom_Model_Bag Mystic 1ebc8b/Card Four of Cups (1) 43b4be.yaml new file mode 100644 index 000000000..7042dde85 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic b950f3/Custom_Model_Bag Mystic 1ebc8b/Card Four of Cups (1) 43b4be.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 278305 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2783': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025945336/04E36F64C2CBE1B4905FF44A869C75EC52CB3A56/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: Chalice of the Heart +GMNotes: '' +GUID: 43b4be +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Four of Cups (1) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.6296635 + posY: 1.38554454 + posZ: -54.24844 + rotX: 0.0208096 + rotY: 269.9995 + rotZ: 0.016771106 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic b950f3/Custom_Model_Bag Mystic 1ebc8b/Card Grotesque Statue (4) c1af37.yaml b/unpacked/Custom_Model_Bag Mystic b950f3/Custom_Model_Bag Mystic 1ebc8b/Card Grotesque Statue (4) c1af37.yaml new file mode 100644 index 000000000..5fd380dfb --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic b950f3/Custom_Model_Bag Mystic 1ebc8b/Card Grotesque Statue (4) c1af37.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: c1af37 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Grotesque Statue (4) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 7.076545 + posY: 1.37953794 + posZ: -70.36011 + rotX: 0.0208077189 + rotY: 269.999573 + rotZ: 0.0167682283 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic b950f3/Custom_Model_Bag Mystic 1ebc8b/Card Grounded (1) 491a94.yaml b/unpacked/Custom_Model_Bag Mystic b950f3/Custom_Model_Bag Mystic 1ebc8b/Card Grounded (1) 491a94.yaml new file mode 100644 index 000000000..1689cd711 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic b950f3/Custom_Model_Bag Mystic 1ebc8b/Card Grounded (1) 491a94.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 491a94 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Grounded (1) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.6296654 + posY: 1.38756418 + posZ: -47.3484459 + rotX: 0.0208096914 + rotY: 269.999542 + rotZ: 0.0167702828 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic b950f3/Custom_Model_Bag Mystic 1ebc8b/Card Jewel of Aureolus (3) e1438c.yaml b/unpacked/Custom_Model_Bag Mystic b950f3/Custom_Model_Bag Mystic 1ebc8b/Card Jewel of Aureolus (3) e1438c.yaml new file mode 100644 index 000000000..c4bda841b --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic b950f3/Custom_Model_Bag Mystic 1ebc8b/Card Jewel of Aureolus (3) e1438c.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Gift of the Homunculi +GMNotes: '' +GUID: e1438c +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Jewel of Aureolus (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 7.0765605 + posY: 1.38425052 + posZ: -54.26048 + rotX: 0.02080997 + rotY: 269.99942 + rotZ: 0.0167704616 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic b950f3/Custom_Model_Bag Mystic 1ebc8b/Card Mind Wipe (1) df8700.yaml b/unpacked/Custom_Model_Bag Mystic b950f3/Custom_Model_Bag Mystic 1ebc8b/Card Mind Wipe (1) df8700.yaml new file mode 100644 index 000000000..d21f16a86 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic b950f3/Custom_Model_Bag Mystic 1ebc8b/Card Mind Wipe (1) df8700.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: df8700 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Mind Wipe (1) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.3436623 + posY: 1.35397279 + posZ: -51.9679 + rotX: 0.0208084825 + rotY: 269.999481 + rotZ: 0.0167693868 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic b950f3/Custom_Model_Bag Mystic 1ebc8b/Card Mind Wipe (3) be0d74.yaml b/unpacked/Custom_Model_Bag Mystic b950f3/Custom_Model_Bag Mystic 1ebc8b/Card Mind Wipe (3) be0d74.yaml new file mode 100644 index 000000000..adefd5ba0 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic b950f3/Custom_Model_Bag Mystic 1ebc8b/Card Mind Wipe (3) be0d74.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: be0d74 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Mind Wipe (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.3436565 + posY: 1.34724033 + posZ: -74.9676743 + rotX: 0.020808531 + rotY: 269.999664 + rotZ: 0.01676984 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic b950f3/Custom_Model_Bag Mystic 1ebc8b/Card Mind's Eye (2) 5003da.yaml b/unpacked/Custom_Model_Bag Mystic b950f3/Custom_Model_Bag Mystic 1ebc8b/Card Mind's Eye (2) 5003da.yaml new file mode 100644 index 000000000..9f151253f --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic b950f3/Custom_Model_Bag Mystic 1ebc8b/Card Mind's Eye (2) 5003da.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 449137 +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 + UniqueBack: false +Description: Ritual. +GMNotes: '' +GUID: 5003da +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Mind's Eye (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.6296539 + posY: 1.378139 + posZ: -79.54802 + rotX: 0.0208018459 + rotY: 270.018921 + rotZ: 0.0167756584 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic b950f3/Custom_Model_Bag Mystic 1ebc8b/Card Mists of R'lyeh (4) 2ec15c.yaml b/unpacked/Custom_Model_Bag Mystic b950f3/Custom_Model_Bag Mystic 1ebc8b/Card Mists of R'lyeh (4) 2ec15c.yaml new file mode 100644 index 000000000..684a8a959 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic b950f3/Custom_Model_Bag Mystic 1ebc8b/Card Mists of R'lyeh (4) 2ec15c.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 2ec15c +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Mists of R'lyeh (4) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 7.07654333 + posY: 1.37886477 + posZ: -72.66011 + rotX: 0.02080771 + rotY: 269.9992 + rotZ: 0.0167681836 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic b950f3/Custom_Model_Bag Mystic 1ebc8b/Card Protective Incantation (1) 86f539.yaml b/unpacked/Custom_Model_Bag Mystic b950f3/Custom_Model_Bag Mystic 1ebc8b/Card Protective Incantation (1) 86f539.yaml new file mode 100644 index 000000000..0dddc5bb9 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic b950f3/Custom_Model_Bag Mystic 1ebc8b/Card Protective Incantation (1) 86f539.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 86f539 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Protective Incantation (1) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.6296473 + posY: 1.38689089 + posZ: -49.6484337 + rotX: 0.02080978 + rotY: 269.999542 + rotZ: 0.0167713109 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic b950f3/Custom_Model_Bag Mystic 1ebc8b/Card Recall the Future (2) 704f6e.yaml b/unpacked/Custom_Model_Bag Mystic b950f3/Custom_Model_Bag Mystic 1ebc8b/Card Recall the Future (2) 704f6e.yaml new file mode 100644 index 000000000..13d5d61ab --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic b950f3/Custom_Model_Bag Mystic 1ebc8b/Card Recall the Future (2) 704f6e.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 704f6e +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Recall the Future (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.6296577 + posY: 1.38150525 + posZ: -68.0480652 + rotX: 0.0208074581 + rotY: 269.999481 + rotZ: 0.0167685132 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic b950f3/Custom_Model_Bag Mystic 1ebc8b/Card Recharge (2) 765ac3.yaml b/unpacked/Custom_Model_Bag Mystic b950f3/Custom_Model_Bag Mystic 1ebc8b/Card Recharge (2) 765ac3.yaml new file mode 100644 index 000000000..5d561676c --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic b950f3/Custom_Model_Bag Mystic 1ebc8b/Card Recharge (2) 765ac3.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 765ac3 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Recharge (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.343668 + posY: 1.3526262 + posZ: -56.5679054 + rotX: 0.02080842 + rotY: 269.999481 + rotZ: 0.0167693757 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic b950f3/Custom_Model_Bag Mystic 1ebc8b/Card Rite of Seeking (2) d90d23.yaml b/unpacked/Custom_Model_Bag Mystic b950f3/Custom_Model_Bag Mystic 1ebc8b/Card Rite of Seeking (2) d90d23.yaml new file mode 100644 index 000000000..0c4ea63ee --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic b950f3/Custom_Model_Bag Mystic 1ebc8b/Card Rite of Seeking (2) d90d23.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 278204 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2782': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025945336/04E36F64C2CBE1B4905FF44A869C75EC52CB3A56/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: d90d23 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Rite of Seeking (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.63169 + posY: 1.37746644 + posZ: -81.8482361 + rotX: 0.02080736 + rotY: 269.99942 + rotZ: 0.01676837 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic b950f3/Custom_Model_Bag Mystic 1ebc8b/Card Rite of Seeking (4) 1fef17.yaml b/unpacked/Custom_Model_Bag Mystic b950f3/Custom_Model_Bag Mystic 1ebc8b/Card Rite of Seeking (4) 1fef17.yaml new file mode 100644 index 000000000..3c0320321 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic b950f3/Custom_Model_Bag Mystic 1ebc8b/Card Rite of Seeking (4) 1fef17.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 1fef17 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Rite of Seeking (4) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 7.07666969 + posY: 1.37684512 + posZ: -79.56001 + rotX: 0.0208078139 + rotY: 269.9997 + rotZ: 0.016767649 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic b950f3/Custom_Model_Bag Mystic 1ebc8b/Card Sacrifice (1) 72e2d9.yaml b/unpacked/Custom_Model_Bag Mystic b950f3/Custom_Model_Bag Mystic 1ebc8b/Card Sacrifice (1) 72e2d9.yaml new file mode 100644 index 000000000..7ba12cb79 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic b950f3/Custom_Model_Bag Mystic 1ebc8b/Card Sacrifice (1) 72e2d9.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 72e2d9 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Sacrifice (1) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.3436642 + posY: 1.35531926 + posZ: -47.36791 + rotX: 0.0208086483 + rotY: 269.999481 + rotZ: 0.0167699214 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic b950f3/Custom_Model_Bag Mystic 1ebc8b/Card Scroll of Secrets (3) ea918a.yaml b/unpacked/Custom_Model_Bag Mystic b950f3/Custom_Model_Bag Mystic 1ebc8b/Card Scroll of Secrets (3) ea918a.yaml new file mode 100644 index 000000000..2e04d538e --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic b950f3/Custom_Model_Bag Mystic 1ebc8b/Card Scroll of Secrets (3) ea918a.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Mystic +GMNotes: '' +GUID: ea918a +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Scroll of Secrets (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.61387 + posY: 1.37544262 + posZ: -88.74 + rotX: 0.020807609 + rotY: 269.999268 + rotZ: 0.0167679172 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic b950f3/Custom_Model_Bag Mystic 1ebc8b/Card Scrying (3) bb3e67.yaml b/unpacked/Custom_Model_Bag Mystic b950f3/Custom_Model_Bag Mystic 1ebc8b/Card Scrying (3) bb3e67.yaml new file mode 100644 index 000000000..bdf353eb1 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic b950f3/Custom_Model_Bag Mystic 1ebc8b/Card Scrying (3) bb3e67.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 230350 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: bb3e67 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Scrying (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.6137209 + posY: 1.37476933 + posZ: -91.04 + rotX: 0.0208040737 + rotY: 270.0112 + rotZ: 0.0167726316 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic b950f3/Custom_Model_Bag Mystic 1ebc8b/Card Seal of the Elder Sign (5) 28ae85.yaml b/unpacked/Custom_Model_Bag Mystic b950f3/Custom_Model_Bag Mystic 1ebc8b/Card Seal of the Elder Sign (5) 28ae85.yaml new file mode 100644 index 000000000..b3fc61670 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic b950f3/Custom_Model_Bag Mystic 1ebc8b/Card Seal of the Elder Sign (5) 28ae85.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 28ae85 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Seal of the Elder Sign (5) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 24.5003471 + posY: 1.35583067 + posZ: -52.01855 + rotX: 0.020808382 + rotY: 269.9995 + rotZ: 0.016769411 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic b950f3/Custom_Model_Bag Mystic 1ebc8b/Card Seal of the Seventh Sign (5) d3c7f7.yaml b/unpacked/Custom_Model_Bag Mystic b950f3/Custom_Model_Bag Mystic 1ebc8b/Card Seal of the Seventh Sign (5) d3c7f7.yaml new file mode 100644 index 000000000..6c5e57037 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic b950f3/Custom_Model_Bag Mystic 1ebc8b/Card Seal of the Seventh Sign (5) d3c7f7.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 278101 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2781': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025945336/04E36F64C2CBE1B4905FF44A869C75EC52CB3A56/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: Over the Threshold and Beyond +GMNotes: '' +GUID: d3c7f7 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Seal of the Seventh Sign (5) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 7.07977438 + posY: 1.376173 + posZ: -81.86023 + rotX: 0.02080253 + rotY: 270.016724 + rotZ: 0.0167749915 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic b950f3/Custom_Model_Bag Mystic 1ebc8b/Card Shards of the Void (3) 41435f.yaml b/unpacked/Custom_Model_Bag Mystic b950f3/Custom_Model_Bag Mystic 1ebc8b/Card Shards of the Void (3) 41435f.yaml new file mode 100644 index 000000000..d66fc8ef5 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic b950f3/Custom_Model_Bag Mystic 1ebc8b/Card Shards of the Void (3) 41435f.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 278102 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2781': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025945336/04E36F64C2CBE1B4905FF44A869C75EC52CB3A56/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 41435f +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Shards of the Void (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 7.076564 + posY: 1.38357735 + posZ: -56.560482 + rotX: 0.0208083913 + rotY: 270.00412 + rotZ: 0.0167719387 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic b950f3/Custom_Model_Bag Mystic 1ebc8b/Card Shining Trapezohedron (4) 590f43.yaml b/unpacked/Custom_Model_Bag Mystic b950f3/Custom_Model_Bag Mystic 1ebc8b/Card Shining Trapezohedron (4) 590f43.yaml new file mode 100644 index 000000000..4a573ef81 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic b950f3/Custom_Model_Bag Mystic 1ebc8b/Card Shining Trapezohedron (4) 590f43.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 449138 +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 + UniqueBack: false +Description: Item. Relic. +GMNotes: '' +GUID: 590f43 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Shining Trapezohedron (4) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 7.076556 + posY: 1.38021135 + posZ: -68.0601044 + rotX: 0.0208083354 + rotY: 269.9971 + rotZ: 0.0167673733 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic b950f3/Custom_Model_Bag Mystic 1ebc8b/Card Shrivelling (3) 6af5d3.yaml b/unpacked/Custom_Model_Bag Mystic b950f3/Custom_Model_Bag Mystic 1ebc8b/Card Shrivelling (3) 6af5d3.yaml new file mode 100644 index 000000000..392492797 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic b950f3/Custom_Model_Bag Mystic 1ebc8b/Card Shrivelling (3) 6af5d3.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 6af5d3 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Shrivelling (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 7.07654953 + posY: 1.3815577 + posZ: -63.4604759 + rotX: 0.0208087638 + rotY: 269.99942 + rotZ: 0.0167691316 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic b950f3/Custom_Model_Bag Mystic 1ebc8b/Card Shrivelling (5) ed0aea.yaml b/unpacked/Custom_Model_Bag Mystic b950f3/Custom_Model_Bag Mystic 1ebc8b/Card Shrivelling (5) ed0aea.yaml new file mode 100644 index 000000000..c48d290e7 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic b950f3/Custom_Model_Bag Mystic 1ebc8b/Card Shrivelling (5) ed0aea.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: ed0aea +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Shrivelling (5) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 7.079998 + posY: 1.3755 + posZ: -84.15958 + rotX: 0.0207973849 + rotY: 270.033478 + rotZ: 0.0167803112 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic b950f3/Custom_Model_Bag Mystic 1ebc8b/Card Sixth Sense (4) c25daa.yaml b/unpacked/Custom_Model_Bag Mystic b950f3/Custom_Model_Bag Mystic 1ebc8b/Card Sixth Sense (4) c25daa.yaml new file mode 100644 index 000000000..235d76fb4 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic b950f3/Custom_Model_Bag Mystic 1ebc8b/Card Sixth Sense (4) c25daa.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: c25daa +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Sixth Sense (4) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 7.076528 + posY: 1.3775183 + posZ: -77.26004 + rotX: 0.0208076332 + rotY: 269.999451 + rotZ: 0.0167678725 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic b950f3/Custom_Model_Bag Mystic 1ebc8b/Card Song of the Dead (2) 822232.yaml b/unpacked/Custom_Model_Bag Mystic b950f3/Custom_Model_Bag Mystic 1ebc8b/Card Song of the Dead (2) 822232.yaml new file mode 100644 index 000000000..8b2639fea --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic b950f3/Custom_Model_Bag Mystic 1ebc8b/Card Song of the Dead (2) 822232.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: '822232' +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Song of the Dead (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.62965 + posY: 1.380832 + posZ: -70.34807 + rotX: 0.02080763 + rotY: 269.999481 + rotZ: 0.0167682078 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic b950f3/Custom_Model_Bag Mystic 1ebc8b/Card Spirit Athame (1) e0aee9.yaml b/unpacked/Custom_Model_Bag Mystic b950f3/Custom_Model_Bag Mystic 1ebc8b/Card Spirit Athame (1) e0aee9.yaml new file mode 100644 index 000000000..e81538ad0 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic b950f3/Custom_Model_Bag Mystic 1ebc8b/Card Spirit Athame (1) e0aee9.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: e0aee9 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Spirit Athame (1) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.6296606 + posY: 1.38487124 + posZ: -56.5484428 + rotX: 0.0208096188 + rotY: 269.9995 + rotZ: 0.0167710837 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic b950f3/Custom_Model_Bag Mystic 1ebc8b/Card Stargazing (1) cd8764.yaml b/unpacked/Custom_Model_Bag Mystic b950f3/Custom_Model_Bag Mystic 1ebc8b/Card Stargazing (1) cd8764.yaml new file mode 100644 index 000000000..600be8267 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic b950f3/Custom_Model_Bag Mystic 1ebc8b/Card Stargazing (1) cd8764.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 440822 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: cd8764 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Stargazing (1) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.3436661 + posY: 1.354646 + posZ: -49.6678963 + rotX: 0.020808449 + rotY: 269.999481 + rotZ: 0.0167692713 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic b950f3/Custom_Model_Bag Mystic 1ebc8b/Card Storm of Spirits (3) a2a79e.yaml b/unpacked/Custom_Model_Bag Mystic b950f3/Custom_Model_Bag Mystic 1ebc8b/Card Storm of Spirits (3) a2a79e.yaml new file mode 100644 index 000000000..d0eab8721 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic b950f3/Custom_Model_Bag Mystic 1ebc8b/Card Storm of Spirits (3) a2a79e.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 440821 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: a2a79e +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Storm of Spirits (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.3436527 + posY: 1.34791362 + posZ: -72.6676559 + rotX: 0.0208084937 + rotY: 269.999481 + rotZ: 0.0167692043 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic b950f3/Custom_Model_Bag Mystic 1ebc8b/Card Summoned Hound (1) d21b15.yaml b/unpacked/Custom_Model_Bag Mystic b950f3/Custom_Model_Bag Mystic 1ebc8b/Card Summoned Hound (1) d21b15.yaml new file mode 100644 index 000000000..51b1f98b2 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic b950f3/Custom_Model_Bag Mystic 1ebc8b/Card Summoned Hound (1) d21b15.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 449135 +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 + UniqueBack: false +Description: Ally. Summon. +GMNotes: '' +GUID: d21b15 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Summoned Hound (1) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.6296625 + posY: 1.38419807 + posZ: -58.8484459 + rotX: 0.0208093375 + rotY: 269.999817 + rotZ: 0.0167712234 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic b950f3/Custom_Model_Bag Mystic 1ebc8b/Card Time Warp (2) 504b8d.yaml b/unpacked/Custom_Model_Bag Mystic b950f3/Custom_Model_Bag Mystic 1ebc8b/Card Time Warp (2) 504b8d.yaml new file mode 100644 index 000000000..7b4883781 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic b950f3/Custom_Model_Bag Mystic 1ebc8b/Card Time Warp (2) 504b8d.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 504b8d +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Time Warp (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.3436565 + posY: 1.35060656 + posZ: -63.4678955 + rotX: 0.0208084472 + rotY: 269.9995 + rotZ: 0.0167692062 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic b950f3/Custom_Model_Bag Mystic 1ebc8b/Card Twila Katherine Price (3) f6dc28.yaml b/unpacked/Custom_Model_Bag Mystic b950f3/Custom_Model_Bag Mystic 1ebc8b/Card Twila Katherine Price (3) f6dc28.yaml new file mode 100644 index 000000000..3b35defe7 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic b950f3/Custom_Model_Bag Mystic 1ebc8b/Card Twila Katherine Price (3) f6dc28.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Lost in a Dream +GMNotes: '' +GUID: f6dc28 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Twila Katherine Price (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 7.07655859 + posY: 1.382904 + posZ: -58.8604851 + rotX: 0.0208147857 + rotY: 269.9831 + rotZ: 0.01676471 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic b950f3/Custom_Model_Bag Mystic 1ebc8b/Card Ward of Protection (2) 3b4524.yaml b/unpacked/Custom_Model_Bag Mystic b950f3/Custom_Model_Bag Mystic 1ebc8b/Card Ward of Protection (2) 3b4524.yaml new file mode 100644 index 000000000..4c6aebf32 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic b950f3/Custom_Model_Bag Mystic 1ebc8b/Card Ward of Protection (2) 3b4524.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 3b4524 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Ward of Protection (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.343668 + posY: 1.351953 + posZ: -58.86791 + rotX: 0.0208085347 + rotY: 269.999481 + rotZ: 0.0167693663 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic b950f3/Custom_Model_Bag Mystic 1ebc8b/Card Ward of Protection (5) 7600af.yaml b/unpacked/Custom_Model_Bag Mystic b950f3/Custom_Model_Bag Mystic 1ebc8b/Card Ward of Protection (5) 7600af.yaml new file mode 100644 index 000000000..f99722717 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic b950f3/Custom_Model_Bag Mystic 1ebc8b/Card Ward of Protection (5) 7600af.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 7600af +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Ward of Protection (5) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.3436642 + posY: 1.345894 + posZ: -79.56757 + rotX: 0.020804299 + rotY: 270.014 + rotZ: 0.01677465 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic b950f3/Custom_Model_Bag Mystic 1ebc8b/Card Wither (4) 31aa5d.yaml b/unpacked/Custom_Model_Bag Mystic b950f3/Custom_Model_Bag Mystic 1ebc8b/Card Wither (4) 31aa5d.yaml new file mode 100644 index 000000000..ca6924825 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic b950f3/Custom_Model_Bag Mystic 1ebc8b/Card Wither (4) 31aa5d.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 31aa5d +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Wither (4) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 7.0765233 + posY: 1.37819147 + posZ: -74.960144 + rotX: 0.0208076 + rotY: 269.999481 + rotZ: 0.0167678352 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Mystic b950f3/Custom_Model_Bag Mystic 1ebc8b/Card Word of Command (2) f1bf15.yaml b/unpacked/Custom_Model_Bag Mystic b950f3/Custom_Model_Bag Mystic 1ebc8b/Card Word of Command (2) f1bf15.yaml new file mode 100644 index 000000000..70dbaadb1 --- /dev/null +++ b/unpacked/Custom_Model_Bag Mystic b950f3/Custom_Model_Bag Mystic 1ebc8b/Card Word of Command (2) f1bf15.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Spell. +GMNotes: '' +GUID: f1bf15 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Word of Command (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.3436623 + posY: 1.34926009 + posZ: -68.06754 + rotX: 0.0207997262 + rotY: 270.029175 + rotZ: 0.0167801958 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Neutral 065f29.ttslua b/unpacked/Custom_Model_Bag Neutral 065f29.ttslua new file mode 100644 index 000000000..857093fb8 --- /dev/null +++ b/unpacked/Custom_Model_Bag Neutral 065f29.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,0,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 + 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=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,0,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,0,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,0,0}, height=350, width=750, + 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}, rotation={0,0,0}, height=350, width=800, + font_size=250, color={0,0,0}, font_color={1,1,1} + }) +-- self.createButton({ +-- label="Setup", click_function="buttonClick_setup", function_owner=self, +-- position={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.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 \ No newline at end of file diff --git a/unpacked/Custom_Model_Bag Neutral 065f29.yaml b/unpacked/Custom_Model_Bag Neutral 065f29.yaml new file mode 100644 index 000000000..51ae11e15 --- /dev/null +++ b/unpacked/Custom_Model_Bag Neutral 065f29.yaml @@ -0,0 +1,73 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +ContainedObjects: +- !include 'Custom_Model_Bag Neutral 065f29/Card Guts 19efca.yaml' +- !include 'Custom_Model_Bag Neutral 065f29/Card Say Your Prayers 4067cc.yaml' +- !include 'Custom_Model_Bag Neutral 065f29/Card Perception 224529.yaml' +- !include 'Custom_Model_Bag Neutral 065f29/Card Desperate Search b34d81.yaml' +- !include 'Custom_Model_Bag Neutral 065f29/Card Overpower 59fb0f.yaml' +- !include 'Custom_Model_Bag Neutral 065f29/Card Reckless Assault 0132b0.yaml' +- !include 'Custom_Model_Bag Neutral 065f29/Card Manual Dexterity 8a29b1.yaml' +- !include 'Custom_Model_Bag Neutral 065f29/Card Run For Your Life 4bf58b.yaml' +- !include 'Custom_Model_Bag Neutral 065f29/Card Unexpected Courage eb6ad7.yaml' +- !include 'Custom_Model_Bag Neutral 065f29/Card Calling in Favors de4020.yaml' +- !include 'Custom_Model_Bag Neutral 065f29/Card Emergency Cache 1fb975.yaml' +- !include 'Custom_Model_Bag Neutral 065f29/Card Fine Clothes 96d57a.yaml' +- !include 'Custom_Model_Bag Neutral 065f29/Card Knife ad54b5.yaml' +- !include 'Custom_Model_Bag Neutral 065f29/Card Painkillers dfa8f0.yaml' +- !include 'Custom_Model_Bag Neutral 065f29/Card Smoking Pipe b8d1c9.yaml' +- !include 'Custom_Model_Bag Neutral 065f29/Card Flashlight 5354b0.yaml' +- !include 'Custom_Model_Bag Neutral 065f29/Card Kukri ead177.yaml' +- !include 'Custom_Model_Bag Neutral 065f29/Card Backpack dde6bf.yaml' +- !include 'Custom_Model_Bag Neutral 065f29/Card Trench Coat 73f850.yaml' +- !include 'Custom_Model_Bag Neutral 065f29/Card Thermos e1d2a7.yaml' +- !include 'Custom_Model_Bag Neutral 065f29/Custom_Model_Bag Neutral 8503ed.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/952965722515017130/AD0A2EDADD663473879A6A391FACD32966983B17/ + MaterialIndex: 3 + MeshURL: https://pastebin.com/raw/ALrYhQGb + NormalURL: '' + TypeIndex: 6 +Description: '' +GMNotes: '' +GUID: 065f29 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: true +LuaScript: !include 'Custom_Model_Bag Neutral 065f29.ttslua' +LuaScriptState: '{"ml":{"0132b0":{"lock":false,"pos":{"x":24.4394,"y":1.3541,"z":80.8904},"rot":{"x":0.0208,"y":269.9968,"z":0.0168}},"19efca":{"lock":false,"pos":{"x":24.4394,"y":1.3575,"z":92.3904},"rot":{"x":0.0208,"y":269.9835,"z":0.0168}},"1fb975":{"lock":false,"pos":{"x":19.2841,"y":1.3556,"z":92.4412},"rot":{"x":0.0208,"y":270.0168,"z":0.0168}},"224529":{"lock":false,"pos":{"x":24.4394,"y":1.3562,"z":87.7904},"rot":{"x":0.0208,"y":270.0149,"z":0.0168}},"4067cc":{"lock":false,"pos":{"x":24.4394,"y":1.3568,"z":90.0904},"rot":{"x":0.0208,"y":269.9555,"z":0.0168}},"4bf58b":{"lock":false,"pos":{"x":24.4394,"y":1.3528,"z":76.2904},"rot":{"x":0.0208,"y":269.9971,"z":0.0168}},"5354b0":{"lock":false,"pos":{"x":10.5689,"y":1.3498,"z":83.2607},"rot":{"x":0.0208,"y":269.9949,"z":0.0168}},"59fb0f":{"lock":false,"pos":{"x":24.4394,"y":1.3548,"z":83.1904},"rot":{"x":0.0208,"y":269.9974,"z":0.0168}},"73f850":{"lock":false,"pos":{"x":10.5689,"y":1.3478,"z":76.3607},"rot":{"x":0.0208,"y":269.9942,"z":0.0168}},"8a29b1":{"lock":false,"pos":{"x":24.4394,"y":1.3535,"z":78.5904},"rot":{"x":0.0208,"y":269.9969,"z":0.0168}},"96d57a":{"lock":false,"pos":{"x":10.5689,"y":1.3525,"z":92.4607},"rot":{"x":0.0208,"y":270.0003,"z":0.0168}},"ad54b5":{"lock":false,"pos":{"x":10.5689,"y":1.3518,"z":90.1608},"rot":{"x":0.0208,"y":270.0029,"z":0.0168}},"b34d81":{"lock":false,"pos":{"x":24.4394,"y":1.3555,"z":85.4904},"rot":{"x":0.0208,"y":269.9971,"z":0.0168}},"b8d1c9":{"lock":false,"pos":{"x":10.5689,"y":1.3505,"z":85.5608},"rot":{"x":0.0208,"y":269.9941,"z":0.0168}},"dde6bf":{"lock":false,"pos":{"x":10.5689,"y":1.3484,"z":78.6607},"rot":{"x":0.0208,"y":269.9941,"z":0.0168}},"de4020":{"lock":false,"pos":{"x":19.2841,"y":1.355,"z":90.1413},"rot":{"x":0.0208,"y":269.9958,"z":0.0168}},"dfa8f0":{"lock":false,"pos":{"x":10.5689,"y":1.3511,"z":87.8608},"rot":{"x":0.0208,"y":270.0086,"z":0.0168}},"e1d2a7":{"lock":false,"pos":{"x":10.5689,"y":1.3471,"z":74.0607},"rot":{"x":0.0208,"y":269.9941,"z":0.0168}},"ead177":{"lock":false,"pos":{"x":10.5689,"y":1.3491,"z":80.9607},"rot":{"x":0.0208,"y":269.9942,"z":0.0168}},"eb6ad7":{"lock":false,"pos":{"x":24.4394,"y":1.3521,"z":73.9904},"rot":{"x":0.0208,"y":269.9969,"z":0.0168}}}}' +MaterialIndex: -1 +MeshIndex: -1 +Name: Custom_Model_Bag +Nickname: Neutral +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 32.9611473 + posY: 1.39634371 + posZ: 49.5502167 + rotX: 0.02080493 + rotY: 270.019745 + rotZ: 0.0167774223 + scaleX: 1.2 + scaleY: 1.2 + scaleZ: 1.2 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Neutral 065f29/Card Backpack dde6bf.yaml b/unpacked/Custom_Model_Bag Neutral 065f29/Card Backpack dde6bf.yaml new file mode 100644 index 000000000..efbf16f44 --- /dev/null +++ b/unpacked/Custom_Model_Bag Neutral 065f29/Card Backpack dde6bf.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 209617 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: dde6bf +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Backpack +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.5688581 + posY: 1.34844625 + posZ: 78.66074 + rotX: 0.0208102763 + rotY: 269.99408 + rotZ: 0.01676717 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Neutral 065f29/Card Calling in Favors de4020.yaml b/unpacked/Custom_Model_Bag Neutral 065f29/Card Calling in Favors de4020.yaml new file mode 100644 index 000000000..da116e362 --- /dev/null +++ b/unpacked/Custom_Model_Bag Neutral 065f29/Card Calling in Favors de4020.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: de4020 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Calling in Favors +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.2841187 + posY: 1.35497165 + posZ: 90.14125 + rotX: 0.0208098013 + rotY: 269.995758 + rotZ: 0.01676778 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Neutral 065f29/Card Desperate Search b34d81.yaml b/unpacked/Custom_Model_Bag Neutral 065f29/Card Desperate Search b34d81.yaml new file mode 100644 index 000000000..468875a1a --- /dev/null +++ b/unpacked/Custom_Model_Bag Neutral 065f29/Card Desperate Search b34d81.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 209607 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: b34d81 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Desperate Search +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 24.4394016 + posY: 1.35548258 + posZ: 85.49039 + rotX: 0.0208093654 + rotY: 269.997131 + rotZ: 0.0167683661 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Neutral 065f29/Card Emergency Cache 1fb975.yaml b/unpacked/Custom_Model_Bag Neutral 065f29/Card Emergency Cache 1fb975.yaml new file mode 100644 index 000000000..708efedc9 --- /dev/null +++ b/unpacked/Custom_Model_Bag Neutral 065f29/Card Emergency Cache 1fb975.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 1fb975 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Emergency Cache +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.28412 + posY: 1.355645 + posZ: 92.44124 + rotX: 0.0208034925 + rotY: 270.016754 + rotZ: 0.0167756714 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Neutral 065f29/Card Fine Clothes 96d57a.yaml b/unpacked/Custom_Model_Bag Neutral 065f29/Card Fine Clothes 96d57a.yaml new file mode 100644 index 000000000..25e61488b --- /dev/null +++ b/unpacked/Custom_Model_Bag Neutral 065f29/Card Fine Clothes 96d57a.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 209611 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 96d57a +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Fine Clothes +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.5688639 + posY: 1.35248566 + posZ: 92.46075 + rotX: 0.020808598 + rotY: 270.000275 + rotZ: 0.0167694669 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Neutral 065f29/Card Flashlight 5354b0.yaml b/unpacked/Custom_Model_Bag Neutral 065f29/Card Flashlight 5354b0.yaml new file mode 100644 index 000000000..e52d802d3 --- /dev/null +++ b/unpacked/Custom_Model_Bag Neutral 065f29/Card Flashlight 5354b0.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 209615 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 5354b0 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Flashlight +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.5688725 + posY: 1.34979272 + posZ: 83.26075 + rotX: 0.0208099168 + rotY: 269.994873 + rotZ: 0.0167676043 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Neutral 065f29/Card Guts 19efca.yaml b/unpacked/Custom_Model_Bag Neutral 065f29/Card Guts 19efca.yaml new file mode 100644 index 000000000..f0f6e13ef --- /dev/null +++ b/unpacked/Custom_Model_Bag Neutral 065f29/Card Guts 19efca.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 19efca +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Guts +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 24.439394 + posY: 1.35750234 + posZ: 92.39039 + rotX: 0.0208133962 + rotY: 269.983521 + rotZ: 0.0167633127 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Neutral 065f29/Card Knife ad54b5.yaml b/unpacked/Custom_Model_Bag Neutral 065f29/Card Knife ad54b5.yaml new file mode 100644 index 000000000..52902f576 --- /dev/null +++ b/unpacked/Custom_Model_Bag Neutral 065f29/Card Knife ad54b5.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 209612 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: ad54b5 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Knife +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.5688639 + posY: 1.35181248 + posZ: 90.16076 + rotX: 0.0208074376 + rotY: 270.0029 + rotZ: 0.0167705584 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Neutral 065f29/Card Kukri ead177.yaml b/unpacked/Custom_Model_Bag Neutral 065f29/Card Kukri ead177.yaml new file mode 100644 index 000000000..949fdbc9e --- /dev/null +++ b/unpacked/Custom_Model_Bag Neutral 065f29/Card Kukri ead177.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 209616 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: ead177 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Kukri +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.5688705 + posY: 1.34911942 + posZ: 80.96075 + rotX: 0.02081029 + rotY: 269.994232 + rotZ: 0.0167676825 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Neutral 065f29/Card Manual Dexterity 8a29b1.yaml b/unpacked/Custom_Model_Bag Neutral 065f29/Card Manual Dexterity 8a29b1.yaml new file mode 100644 index 000000000..9252932f7 --- /dev/null +++ b/unpacked/Custom_Model_Bag Neutral 065f29/Card Manual Dexterity 8a29b1.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 8a29b1 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Manual Dexterity +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 24.4393978 + posY: 1.35346282 + posZ: 78.5903854 + rotX: 0.0208095349 + rotY: 269.9969 + rotZ: 0.016768679 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Neutral 065f29/Card Overpower 59fb0f.yaml b/unpacked/Custom_Model_Bag Neutral 065f29/Card Overpower 59fb0f.yaml new file mode 100644 index 000000000..9635a6888 --- /dev/null +++ b/unpacked/Custom_Model_Bag Neutral 065f29/Card Overpower 59fb0f.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 59fb0f +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Overpower +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 24.4394169 + posY: 1.3548094 + posZ: 83.19039 + rotX: 0.0208093636 + rotY: 269.9974 + rotZ: 0.0167683717 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Neutral 065f29/Card Painkillers dfa8f0.yaml b/unpacked/Custom_Model_Bag Neutral 065f29/Card Painkillers dfa8f0.yaml new file mode 100644 index 000000000..7bd0375e5 --- /dev/null +++ b/unpacked/Custom_Model_Bag Neutral 065f29/Card Painkillers dfa8f0.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 209613 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: dfa8f0 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Painkillers +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.5688667 + posY: 1.35113919 + posZ: 87.8607559 + rotX: 0.0208062064 + rotY: 270.008636 + rotZ: 0.0167726111 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Neutral 065f29/Card Perception 224529.yaml b/unpacked/Custom_Model_Bag Neutral 065f29/Card Perception 224529.yaml new file mode 100644 index 000000000..6ec4635f9 --- /dev/null +++ b/unpacked/Custom_Model_Bag Neutral 065f29/Card Perception 224529.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: '224529' +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Perception +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 24.4394054 + posY: 1.35615587 + posZ: 87.7904 + rotX: 0.0208042171 + rotY: 270.014862 + rotZ: 0.0167747121 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Neutral 065f29/Card Reckless Assault 0132b0.yaml b/unpacked/Custom_Model_Bag Neutral 065f29/Card Reckless Assault 0132b0.yaml new file mode 100644 index 000000000..fd07bd5eb --- /dev/null +++ b/unpacked/Custom_Model_Bag Neutral 065f29/Card Reckless Assault 0132b0.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 209603 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 0132b0 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Reckless Assault +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 24.4393864 + posY: 1.35413611 + posZ: 80.89037 + rotX: 0.0208094846 + rotY: 269.9968 + rotZ: 0.0167679731 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Neutral 065f29/Card Run For Your Life 4bf58b.yaml b/unpacked/Custom_Model_Bag Neutral 065f29/Card Run For Your Life 4bf58b.yaml new file mode 100644 index 000000000..e75328c21 --- /dev/null +++ b/unpacked/Custom_Model_Bag Neutral 065f29/Card Run For Your Life 4bf58b.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 209605 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 4bf58b +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Run For Your Life +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 24.4393921 + posY: 1.35278964 + posZ: 76.29038 + rotX: 0.0208094716 + rotY: 269.997131 + rotZ: 0.0167683139 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Neutral 065f29/Card Say Your Prayers 4067cc.yaml b/unpacked/Custom_Model_Bag Neutral 065f29/Card Say Your Prayers 4067cc.yaml new file mode 100644 index 000000000..7bb4a8e38 --- /dev/null +++ b/unpacked/Custom_Model_Bag Neutral 065f29/Card Say Your Prayers 4067cc.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 209601 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 4067cc +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Say Your Prayers +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 24.4394016 + posY: 1.356829 + posZ: 90.09039 + rotX: 0.0208217055 + rotY: 269.955475 + rotZ: 0.0167534035 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Neutral 065f29/Card Smoking Pipe b8d1c9.yaml b/unpacked/Custom_Model_Bag Neutral 065f29/Card Smoking Pipe b8d1c9.yaml new file mode 100644 index 000000000..91a774cbb --- /dev/null +++ b/unpacked/Custom_Model_Bag Neutral 065f29/Card Smoking Pipe b8d1c9.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 209614 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: b8d1c9 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Smoking Pipe +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.5688648 + posY: 1.35046589 + posZ: 85.56075 + rotX: 0.02081049 + rotY: 269.99408 + rotZ: 0.0167674348 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Neutral 065f29/Card Thermos e1d2a7.yaml b/unpacked/Custom_Model_Bag Neutral 065f29/Card Thermos e1d2a7.yaml new file mode 100644 index 000000000..618df1769 --- /dev/null +++ b/unpacked/Custom_Model_Bag Neutral 065f29/Card Thermos e1d2a7.yaml @@ -0,0 +1,42 @@ +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/829135524530025341/1C7D6F355B4B87A99BDCDF7CE7959FB88856A5A2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: e1d2a7 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Thermos +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.5688667 + posY: 1.34709978 + posZ: 74.0607452 + rotX: 0.0208103247 + rotY: 269.994141 + rotZ: 0.0167674683 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Neutral 065f29/Card Trench Coat 73f850.yaml b/unpacked/Custom_Model_Bag Neutral 065f29/Card Trench Coat 73f850.yaml new file mode 100644 index 000000000..945d48635 --- /dev/null +++ b/unpacked/Custom_Model_Bag Neutral 065f29/Card Trench Coat 73f850.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 209618 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 73f850 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Trench Coat +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.568861 + posY: 1.34777308 + posZ: 76.36074 + rotX: 0.0208103247 + rotY: 269.9942 + rotZ: 0.0167671833 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Neutral 065f29/Card Unexpected Courage eb6ad7.yaml b/unpacked/Custom_Model_Bag Neutral 065f29/Card Unexpected Courage eb6ad7.yaml new file mode 100644 index 000000000..9b08c5e1d --- /dev/null +++ b/unpacked/Custom_Model_Bag Neutral 065f29/Card Unexpected Courage eb6ad7.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: eb6ad7 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Unexpected Courage +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 24.4394016 + posY: 1.35211647 + posZ: 73.99039 + rotX: 0.0208096635 + rotY: 269.996918 + rotZ: 0.0167683847 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Neutral 065f29/Custom_Model_Bag Neutral 8503ed.ttslua b/unpacked/Custom_Model_Bag Neutral 065f29/Custom_Model_Bag Neutral 8503ed.ttslua new file mode 100644 index 000000000..f882a7f09 --- /dev/null +++ b/unpacked/Custom_Model_Bag Neutral 065f29/Custom_Model_Bag Neutral 8503ed.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,0,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 + 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=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,0,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,0,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,0,0}, height=350, width=750, + 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}, rotation={0,0,0}, height=350, width=800, + font_size=250, color={0,0,0}, font_color={1,1,1} + }) +-- self.createButton({ +-- label="Setup", click_function="buttonClick_setup", function_owner=self, +-- position={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.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 Neutral 065f29/Custom_Model_Bag Neutral 8503ed.yaml b/unpacked/Custom_Model_Bag Neutral 065f29/Custom_Model_Bag Neutral 8503ed.yaml new file mode 100644 index 000000000..b82e817f9 --- /dev/null +++ b/unpacked/Custom_Model_Bag Neutral 065f29/Custom_Model_Bag Neutral 8503ed.yaml @@ -0,0 +1,72 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +ContainedObjects: +- !include 'Custom_Model_Bag Neutral 8503ed/Card Guts 19efca.yaml' +- !include 'Custom_Model_Bag Neutral 8503ed/Card Say Your Prayers 4067cc.yaml' +- !include 'Custom_Model_Bag Neutral 8503ed/Card Perception 224529.yaml' +- !include 'Custom_Model_Bag Neutral 8503ed/Card Desperate Search b34d81.yaml' +- !include 'Custom_Model_Bag Neutral 8503ed/Card Overpower 59fb0f.yaml' +- !include 'Custom_Model_Bag Neutral 8503ed/Card Reckless Assault 0132b0.yaml' +- !include 'Custom_Model_Bag Neutral 8503ed/Card Manual Dexterity 8a29b1.yaml' +- !include 'Custom_Model_Bag Neutral 8503ed/Card Run For Your Life 4bf58b.yaml' +- !include 'Custom_Model_Bag Neutral 8503ed/Card Unexpected Courage eb6ad7.yaml' +- !include 'Custom_Model_Bag Neutral 8503ed/Card Calling in Favors de4020.yaml' +- !include 'Custom_Model_Bag Neutral 8503ed/Card Emergency Cache 1fb975.yaml' +- !include 'Custom_Model_Bag Neutral 8503ed/Card Fine Clothes 96d57a.yaml' +- !include 'Custom_Model_Bag Neutral 8503ed/Card Knife ad54b5.yaml' +- !include 'Custom_Model_Bag Neutral 8503ed/Card Painkillers dfa8f0.yaml' +- !include 'Custom_Model_Bag Neutral 8503ed/Card Smoking Pipe b8d1c9.yaml' +- !include 'Custom_Model_Bag Neutral 8503ed/Card Flashlight 5354b0.yaml' +- !include 'Custom_Model_Bag Neutral 8503ed/Card Kukri ead177.yaml' +- !include 'Custom_Model_Bag Neutral 8503ed/Card Backpack dde6bf.yaml' +- !include 'Custom_Model_Bag Neutral 8503ed/Card Trench Coat 73f850.yaml' +- !include 'Custom_Model_Bag Neutral 8503ed/Card Thermos e1d2a7.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/952965722515017130/AD0A2EDADD663473879A6A391FACD32966983B17/ + MaterialIndex: 3 + MeshURL: https://pastebin.com/raw/ALrYhQGb + NormalURL: '' + TypeIndex: 6 +Description: '' +GMNotes: '' +GUID: 8503ed +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Model_Bag Neutral 8503ed.ttslua' +LuaScriptState: '{"ml":{"0132b0":{"lock":false,"pos":{"x":24.4394,"y":1.3541,"z":80.8904},"rot":{"x":0.0208,"y":269.9968,"z":0.0168}},"19efca":{"lock":false,"pos":{"x":24.4394,"y":1.3575,"z":92.3904},"rot":{"x":0.0208,"y":269.9835,"z":0.0168}},"1fb975":{"lock":false,"pos":{"x":19.2841,"y":1.3556,"z":92.4412},"rot":{"x":0.0208,"y":270.0168,"z":0.0168}},"224529":{"lock":false,"pos":{"x":24.4394,"y":1.3562,"z":87.7904},"rot":{"x":0.0208,"y":270.0149,"z":0.0168}},"4067cc":{"lock":false,"pos":{"x":24.4394,"y":1.3568,"z":90.0904},"rot":{"x":0.0208,"y":269.9555,"z":0.0168}},"4bf58b":{"lock":false,"pos":{"x":24.4394,"y":1.3528,"z":76.2904},"rot":{"x":0.0208,"y":269.9971,"z":0.0168}},"5354b0":{"lock":false,"pos":{"x":10.5689,"y":1.3498,"z":83.2607},"rot":{"x":0.0208,"y":269.9949,"z":0.0168}},"59fb0f":{"lock":false,"pos":{"x":24.4394,"y":1.3548,"z":83.1904},"rot":{"x":0.0208,"y":269.9974,"z":0.0168}},"73f850":{"lock":false,"pos":{"x":10.5689,"y":1.3478,"z":76.3607},"rot":{"x":0.0208,"y":269.9942,"z":0.0168}},"8a29b1":{"lock":false,"pos":{"x":24.4394,"y":1.3535,"z":78.5904},"rot":{"x":0.0208,"y":269.9969,"z":0.0168}},"96d57a":{"lock":false,"pos":{"x":10.5689,"y":1.3525,"z":92.4607},"rot":{"x":0.0208,"y":270.0003,"z":0.0168}},"ad54b5":{"lock":false,"pos":{"x":10.5689,"y":1.3518,"z":90.1608},"rot":{"x":0.0208,"y":270.0029,"z":0.0168}},"b34d81":{"lock":false,"pos":{"x":24.4394,"y":1.3555,"z":85.4904},"rot":{"x":0.0208,"y":269.9971,"z":0.0168}},"b8d1c9":{"lock":false,"pos":{"x":10.5689,"y":1.3505,"z":85.5608},"rot":{"x":0.0208,"y":269.9941,"z":0.0168}},"dde6bf":{"lock":false,"pos":{"x":10.5689,"y":1.3484,"z":78.6607},"rot":{"x":0.0208,"y":269.9941,"z":0.0168}},"de4020":{"lock":false,"pos":{"x":19.2841,"y":1.355,"z":90.1413},"rot":{"x":0.0208,"y":269.9958,"z":0.0168}},"dfa8f0":{"lock":false,"pos":{"x":10.5689,"y":1.3511,"z":87.8608},"rot":{"x":0.0208,"y":270.0086,"z":0.0168}},"e1d2a7":{"lock":false,"pos":{"x":10.5689,"y":1.3471,"z":74.0607},"rot":{"x":0.0208,"y":269.9941,"z":0.0168}},"ead177":{"lock":false,"pos":{"x":10.5689,"y":1.3491,"z":80.9607},"rot":{"x":0.0208,"y":269.9942,"z":0.0168}},"eb6ad7":{"lock":false,"pos":{"x":24.4394,"y":1.3521,"z":73.9904},"rot":{"x":0.0208,"y":269.9969,"z":0.0168}}}}' +MaterialIndex: -1 +MeshIndex: -1 +Name: Custom_Model_Bag +Nickname: Neutral +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 32.9638977 + posY: 1.65027952 + posZ: 49.55064 + rotX: 0.0186833031 + rotY: 270.019775 + rotZ: 0.007372111 + scaleX: 1.2 + scaleY: 1.2 + scaleZ: 1.2 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Neutral 065f29/Custom_Model_Bag Neutral 8503ed/Card Backpack dde6bf.yaml b/unpacked/Custom_Model_Bag Neutral 065f29/Custom_Model_Bag Neutral 8503ed/Card Backpack dde6bf.yaml new file mode 100644 index 000000000..efbf16f44 --- /dev/null +++ b/unpacked/Custom_Model_Bag Neutral 065f29/Custom_Model_Bag Neutral 8503ed/Card Backpack dde6bf.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 209617 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: dde6bf +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Backpack +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.5688581 + posY: 1.34844625 + posZ: 78.66074 + rotX: 0.0208102763 + rotY: 269.99408 + rotZ: 0.01676717 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Neutral 065f29/Custom_Model_Bag Neutral 8503ed/Card Calling in Favors de4020.yaml b/unpacked/Custom_Model_Bag Neutral 065f29/Custom_Model_Bag Neutral 8503ed/Card Calling in Favors de4020.yaml new file mode 100644 index 000000000..da116e362 --- /dev/null +++ b/unpacked/Custom_Model_Bag Neutral 065f29/Custom_Model_Bag Neutral 8503ed/Card Calling in Favors de4020.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: de4020 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Calling in Favors +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.2841187 + posY: 1.35497165 + posZ: 90.14125 + rotX: 0.0208098013 + rotY: 269.995758 + rotZ: 0.01676778 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Neutral 065f29/Custom_Model_Bag Neutral 8503ed/Card Desperate Search b34d81.yaml b/unpacked/Custom_Model_Bag Neutral 065f29/Custom_Model_Bag Neutral 8503ed/Card Desperate Search b34d81.yaml new file mode 100644 index 000000000..468875a1a --- /dev/null +++ b/unpacked/Custom_Model_Bag Neutral 065f29/Custom_Model_Bag Neutral 8503ed/Card Desperate Search b34d81.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 209607 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: b34d81 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Desperate Search +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 24.4394016 + posY: 1.35548258 + posZ: 85.49039 + rotX: 0.0208093654 + rotY: 269.997131 + rotZ: 0.0167683661 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Neutral 065f29/Custom_Model_Bag Neutral 8503ed/Card Emergency Cache 1fb975.yaml b/unpacked/Custom_Model_Bag Neutral 065f29/Custom_Model_Bag Neutral 8503ed/Card Emergency Cache 1fb975.yaml new file mode 100644 index 000000000..708efedc9 --- /dev/null +++ b/unpacked/Custom_Model_Bag Neutral 065f29/Custom_Model_Bag Neutral 8503ed/Card Emergency Cache 1fb975.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 1fb975 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Emergency Cache +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.28412 + posY: 1.355645 + posZ: 92.44124 + rotX: 0.0208034925 + rotY: 270.016754 + rotZ: 0.0167756714 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Neutral 065f29/Custom_Model_Bag Neutral 8503ed/Card Fine Clothes 96d57a.yaml b/unpacked/Custom_Model_Bag Neutral 065f29/Custom_Model_Bag Neutral 8503ed/Card Fine Clothes 96d57a.yaml new file mode 100644 index 000000000..25e61488b --- /dev/null +++ b/unpacked/Custom_Model_Bag Neutral 065f29/Custom_Model_Bag Neutral 8503ed/Card Fine Clothes 96d57a.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 209611 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 96d57a +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Fine Clothes +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.5688639 + posY: 1.35248566 + posZ: 92.46075 + rotX: 0.020808598 + rotY: 270.000275 + rotZ: 0.0167694669 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Neutral 065f29/Custom_Model_Bag Neutral 8503ed/Card Flashlight 5354b0.yaml b/unpacked/Custom_Model_Bag Neutral 065f29/Custom_Model_Bag Neutral 8503ed/Card Flashlight 5354b0.yaml new file mode 100644 index 000000000..e52d802d3 --- /dev/null +++ b/unpacked/Custom_Model_Bag Neutral 065f29/Custom_Model_Bag Neutral 8503ed/Card Flashlight 5354b0.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 209615 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 5354b0 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Flashlight +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.5688725 + posY: 1.34979272 + posZ: 83.26075 + rotX: 0.0208099168 + rotY: 269.994873 + rotZ: 0.0167676043 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Neutral 065f29/Custom_Model_Bag Neutral 8503ed/Card Guts 19efca.yaml b/unpacked/Custom_Model_Bag Neutral 065f29/Custom_Model_Bag Neutral 8503ed/Card Guts 19efca.yaml new file mode 100644 index 000000000..f0f6e13ef --- /dev/null +++ b/unpacked/Custom_Model_Bag Neutral 065f29/Custom_Model_Bag Neutral 8503ed/Card Guts 19efca.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 19efca +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Guts +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 24.439394 + posY: 1.35750234 + posZ: 92.39039 + rotX: 0.0208133962 + rotY: 269.983521 + rotZ: 0.0167633127 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Neutral 065f29/Custom_Model_Bag Neutral 8503ed/Card Knife ad54b5.yaml b/unpacked/Custom_Model_Bag Neutral 065f29/Custom_Model_Bag Neutral 8503ed/Card Knife ad54b5.yaml new file mode 100644 index 000000000..52902f576 --- /dev/null +++ b/unpacked/Custom_Model_Bag Neutral 065f29/Custom_Model_Bag Neutral 8503ed/Card Knife ad54b5.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 209612 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: ad54b5 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Knife +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.5688639 + posY: 1.35181248 + posZ: 90.16076 + rotX: 0.0208074376 + rotY: 270.0029 + rotZ: 0.0167705584 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Neutral 065f29/Custom_Model_Bag Neutral 8503ed/Card Kukri ead177.yaml b/unpacked/Custom_Model_Bag Neutral 065f29/Custom_Model_Bag Neutral 8503ed/Card Kukri ead177.yaml new file mode 100644 index 000000000..949fdbc9e --- /dev/null +++ b/unpacked/Custom_Model_Bag Neutral 065f29/Custom_Model_Bag Neutral 8503ed/Card Kukri ead177.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 209616 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: ead177 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Kukri +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.5688705 + posY: 1.34911942 + posZ: 80.96075 + rotX: 0.02081029 + rotY: 269.994232 + rotZ: 0.0167676825 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Neutral 065f29/Custom_Model_Bag Neutral 8503ed/Card Manual Dexterity 8a29b1.yaml b/unpacked/Custom_Model_Bag Neutral 065f29/Custom_Model_Bag Neutral 8503ed/Card Manual Dexterity 8a29b1.yaml new file mode 100644 index 000000000..9252932f7 --- /dev/null +++ b/unpacked/Custom_Model_Bag Neutral 065f29/Custom_Model_Bag Neutral 8503ed/Card Manual Dexterity 8a29b1.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 8a29b1 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Manual Dexterity +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 24.4393978 + posY: 1.35346282 + posZ: 78.5903854 + rotX: 0.0208095349 + rotY: 269.9969 + rotZ: 0.016768679 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Neutral 065f29/Custom_Model_Bag Neutral 8503ed/Card Overpower 59fb0f.yaml b/unpacked/Custom_Model_Bag Neutral 065f29/Custom_Model_Bag Neutral 8503ed/Card Overpower 59fb0f.yaml new file mode 100644 index 000000000..9635a6888 --- /dev/null +++ b/unpacked/Custom_Model_Bag Neutral 065f29/Custom_Model_Bag Neutral 8503ed/Card Overpower 59fb0f.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 59fb0f +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Overpower +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 24.4394169 + posY: 1.3548094 + posZ: 83.19039 + rotX: 0.0208093636 + rotY: 269.9974 + rotZ: 0.0167683717 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Neutral 065f29/Custom_Model_Bag Neutral 8503ed/Card Painkillers dfa8f0.yaml b/unpacked/Custom_Model_Bag Neutral 065f29/Custom_Model_Bag Neutral 8503ed/Card Painkillers dfa8f0.yaml new file mode 100644 index 000000000..7bd0375e5 --- /dev/null +++ b/unpacked/Custom_Model_Bag Neutral 065f29/Custom_Model_Bag Neutral 8503ed/Card Painkillers dfa8f0.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 209613 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: dfa8f0 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Painkillers +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.5688667 + posY: 1.35113919 + posZ: 87.8607559 + rotX: 0.0208062064 + rotY: 270.008636 + rotZ: 0.0167726111 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Neutral 065f29/Custom_Model_Bag Neutral 8503ed/Card Perception 224529.yaml b/unpacked/Custom_Model_Bag Neutral 065f29/Custom_Model_Bag Neutral 8503ed/Card Perception 224529.yaml new file mode 100644 index 000000000..6ec4635f9 --- /dev/null +++ b/unpacked/Custom_Model_Bag Neutral 065f29/Custom_Model_Bag Neutral 8503ed/Card Perception 224529.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: '224529' +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Perception +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 24.4394054 + posY: 1.35615587 + posZ: 87.7904 + rotX: 0.0208042171 + rotY: 270.014862 + rotZ: 0.0167747121 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Neutral 065f29/Custom_Model_Bag Neutral 8503ed/Card Reckless Assault 0132b0.yaml b/unpacked/Custom_Model_Bag Neutral 065f29/Custom_Model_Bag Neutral 8503ed/Card Reckless Assault 0132b0.yaml new file mode 100644 index 000000000..fd07bd5eb --- /dev/null +++ b/unpacked/Custom_Model_Bag Neutral 065f29/Custom_Model_Bag Neutral 8503ed/Card Reckless Assault 0132b0.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 209603 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 0132b0 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Reckless Assault +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 24.4393864 + posY: 1.35413611 + posZ: 80.89037 + rotX: 0.0208094846 + rotY: 269.9968 + rotZ: 0.0167679731 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Neutral 065f29/Custom_Model_Bag Neutral 8503ed/Card Run For Your Life 4bf58b.yaml b/unpacked/Custom_Model_Bag Neutral 065f29/Custom_Model_Bag Neutral 8503ed/Card Run For Your Life 4bf58b.yaml new file mode 100644 index 000000000..e75328c21 --- /dev/null +++ b/unpacked/Custom_Model_Bag Neutral 065f29/Custom_Model_Bag Neutral 8503ed/Card Run For Your Life 4bf58b.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 209605 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 4bf58b +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Run For Your Life +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 24.4393921 + posY: 1.35278964 + posZ: 76.29038 + rotX: 0.0208094716 + rotY: 269.997131 + rotZ: 0.0167683139 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Neutral 065f29/Custom_Model_Bag Neutral 8503ed/Card Say Your Prayers 4067cc.yaml b/unpacked/Custom_Model_Bag Neutral 065f29/Custom_Model_Bag Neutral 8503ed/Card Say Your Prayers 4067cc.yaml new file mode 100644 index 000000000..7bb4a8e38 --- /dev/null +++ b/unpacked/Custom_Model_Bag Neutral 065f29/Custom_Model_Bag Neutral 8503ed/Card Say Your Prayers 4067cc.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 209601 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 4067cc +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Say Your Prayers +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 24.4394016 + posY: 1.356829 + posZ: 90.09039 + rotX: 0.0208217055 + rotY: 269.955475 + rotZ: 0.0167534035 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Neutral 065f29/Custom_Model_Bag Neutral 8503ed/Card Smoking Pipe b8d1c9.yaml b/unpacked/Custom_Model_Bag Neutral 065f29/Custom_Model_Bag Neutral 8503ed/Card Smoking Pipe b8d1c9.yaml new file mode 100644 index 000000000..91a774cbb --- /dev/null +++ b/unpacked/Custom_Model_Bag Neutral 065f29/Custom_Model_Bag Neutral 8503ed/Card Smoking Pipe b8d1c9.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 209614 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: b8d1c9 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Smoking Pipe +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.5688648 + posY: 1.35046589 + posZ: 85.56075 + rotX: 0.02081049 + rotY: 269.99408 + rotZ: 0.0167674348 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Neutral 065f29/Custom_Model_Bag Neutral 8503ed/Card Thermos e1d2a7.yaml b/unpacked/Custom_Model_Bag Neutral 065f29/Custom_Model_Bag Neutral 8503ed/Card Thermos e1d2a7.yaml new file mode 100644 index 000000000..618df1769 --- /dev/null +++ b/unpacked/Custom_Model_Bag Neutral 065f29/Custom_Model_Bag Neutral 8503ed/Card Thermos e1d2a7.yaml @@ -0,0 +1,42 @@ +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/829135524530025341/1C7D6F355B4B87A99BDCDF7CE7959FB88856A5A2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: e1d2a7 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Thermos +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.5688667 + posY: 1.34709978 + posZ: 74.0607452 + rotX: 0.0208103247 + rotY: 269.994141 + rotZ: 0.0167674683 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Neutral 065f29/Custom_Model_Bag Neutral 8503ed/Card Trench Coat 73f850.yaml b/unpacked/Custom_Model_Bag Neutral 065f29/Custom_Model_Bag Neutral 8503ed/Card Trench Coat 73f850.yaml new file mode 100644 index 000000000..945d48635 --- /dev/null +++ b/unpacked/Custom_Model_Bag Neutral 065f29/Custom_Model_Bag Neutral 8503ed/Card Trench Coat 73f850.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 209618 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 73f850 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Trench Coat +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.568861 + posY: 1.34777308 + posZ: 76.36074 + rotX: 0.0208103247 + rotY: 269.9942 + rotZ: 0.0167671833 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Neutral 065f29/Custom_Model_Bag Neutral 8503ed/Card Unexpected Courage eb6ad7.yaml b/unpacked/Custom_Model_Bag Neutral 065f29/Custom_Model_Bag Neutral 8503ed/Card Unexpected Courage eb6ad7.yaml new file mode 100644 index 000000000..9b08c5e1d --- /dev/null +++ b/unpacked/Custom_Model_Bag Neutral 065f29/Custom_Model_Bag Neutral 8503ed/Card Unexpected Courage eb6ad7.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: eb6ad7 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Unexpected Courage +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 24.4394016 + posY: 1.35211647 + posZ: 73.99039 + rotX: 0.0208096635 + rotY: 269.996918 + rotZ: 0.0167683847 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Neutral 6aaeb5.ttslua b/unpacked/Custom_Model_Bag Neutral 6aaeb5.ttslua new file mode 100644 index 000000000..857093fb8 --- /dev/null +++ b/unpacked/Custom_Model_Bag Neutral 6aaeb5.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,0,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 + 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=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,0,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,0,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,0,0}, height=350, width=750, + 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}, rotation={0,0,0}, height=350, width=800, + font_size=250, color={0,0,0}, font_color={1,1,1} + }) +-- self.createButton({ +-- label="Setup", click_function="buttonClick_setup", function_owner=self, +-- position={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.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 \ No newline at end of file diff --git a/unpacked/Custom_Model_Bag Neutral 6aaeb5.yaml b/unpacked/Custom_Model_Bag Neutral 6aaeb5.yaml new file mode 100644 index 000000000..fd0bd7ac8 --- /dev/null +++ b/unpacked/Custom_Model_Bag Neutral 6aaeb5.yaml @@ -0,0 +1,71 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +ContainedObjects: +- !include 'Custom_Model_Bag Neutral 6aaeb5/Card Versatile (2) 9a393c.yaml' +- !include 'Custom_Model_Bag Neutral 6aaeb5/Card Emergency Cache (2) fab4c7.yaml' +- !include 'Custom_Model_Bag Neutral 6aaeb5/Card Lucid Dreaming (2) 5d9816.yaml' +- !include 'Custom_Model_Bag Neutral 6aaeb5/Card Emergency Cache (3) c922e7.yaml' +- !include 'Custom_Model_Bag Neutral 6aaeb5/Card Moment of Respite (3) b64c7f.yaml' +- !include 'Custom_Model_Bag Neutral 6aaeb5/Card Ace of Rods (1) 23207c.yaml' +- !include 'Custom_Model_Bag Neutral 6aaeb5/Card The Council''s Coffer (2) 7d999e.yaml' +- !include 'Custom_Model_Bag Neutral 6aaeb5/Card Charisma (3) b6e2ee.yaml' +- !include 'Custom_Model_Bag Neutral 6aaeb5/Card Relic Hunter (3) 7e8423.yaml' +- !include 'Custom_Model_Bag Neutral 6aaeb5/Card Bulletproof Vest (3) c619e6.yaml' +- !include 'Custom_Model_Bag Neutral 6aaeb5/Card Elder Sign Amulet (3) 3c7553.yaml' +- !include 'Custom_Model_Bag Neutral 6aaeb5/Card Hemispheric Map (3) c46c6c.yaml' +- !include 'Custom_Model_Bag Neutral 6aaeb5/Card Ornate Bow (3) 080de1.yaml' +- !include 'Custom_Model_Bag Neutral 6aaeb5/Card Anna Kaslow (4) f6cee9.yaml' +- !include 'Custom_Model_Bag Neutral 6aaeb5/Card The Black Cat (5) d829fd.yaml' +- !include 'Custom_Model_Bag Neutral 6aaeb5/Card The Red-Gloved Man (5) 654971.yaml' +- !include 'Custom_Model_Bag Neutral 6aaeb5/Card Key of Ys (5) f0ad1b.yaml' +- !include 'Custom_Model_Bag Neutral 6aaeb5/Card Timeworn Brand (5) 891a6b.yaml' +- !include 'Custom_Model_Bag Neutral 6aaeb5/Custom_Model_Bag Neutral 558096.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/952965722515017130/AD0A2EDADD663473879A6A391FACD32966983B17/ + MaterialIndex: 3 + MeshURL: https://pastebin.com/raw/ALrYhQGb + NormalURL: '' + TypeIndex: 6 +Description: '' +GMNotes: '' +GUID: 6aaeb5 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: true +LuaScript: !include 'Custom_Model_Bag Neutral 6aaeb5.ttslua' +LuaScriptState: '{"ml":{"080de1":{"lock":false,"pos":{"x":10.6296,"y":1.3829,"z":-63.4484},"rot":{"x":0.0208,"y":270.0002,"z":0.0168}},"23207c":{"lock":false,"pos":{"x":10.6297,"y":1.3876,"z":-47.3484},"rot":{"x":0.0208,"y":270.0001,"z":0.0168}},"3c7553":{"lock":false,"pos":{"x":10.6297,"y":1.3842,"z":-58.8484},"rot":{"x":0.0208,"y":270.0001,"z":0.0168}},"5d9816":{"lock":false,"pos":{"x":19.3437,"y":1.3546,"z":-49.6679},"rot":{"x":0.0208,"y":269.9902,"z":0.0168}},"654971":{"lock":false,"pos":{"x":10.6296,"y":1.3808,"z":-70.3481},"rot":{"x":0.0208,"y":270.0001,"z":0.0168}},"7d999e":{"lock":false,"pos":{"x":10.6297,"y":1.3869,"z":-49.6484},"rot":{"x":0.0208,"y":270,"z":0.0168}},"7e8423":{"lock":false,"pos":{"x":10.6297,"y":1.3855,"z":-54.2484},"rot":{"x":0.0208,"y":270.0001,"z":0.0168}},"891a6b":{"lock":false,"pos":{"x":10.6296,"y":1.3795,"z":-74.9481},"rot":{"x":0.0208,"y":270,"z":0.0168}},"9a393c":{"lock":false,"pos":{"x":24.5003,"y":1.3572,"z":-47.4186},"rot":{"x":0.0208,"y":270.0011,"z":0.0168}},"b64c7f":{"lock":false,"pos":{"x":19.3437,"y":1.3533,"z":-54.2679},"rot":{"x":0.0208,"y":270,"z":0.0168}},"b6e2ee":{"lock":false,"pos":{"x":10.6297,"y":1.3862,"z":-51.9484},"rot":{"x":0.0208,"y":269.9999,"z":0.0168}},"c46c6c":{"lock":false,"pos":{"x":10.6297,"y":1.3835,"z":-61.1484},"rot":{"x":0.0208,"y":270.0001,"z":0.0168}},"c619e6":{"lock":false,"pos":{"x":10.6297,"y":1.3849,"z":-56.5484},"rot":{"x":0.0208,"y":270.0001,"z":0.0168}},"c922e7":{"lock":false,"pos":{"x":19.3437,"y":1.354,"z":-51.9679},"rot":{"x":0.0208,"y":270,"z":0.0168}},"d829fd":{"lock":false,"pos":{"x":10.6297,"y":1.3815,"z":-68.0481},"rot":{"x":0.0208,"y":270.0002,"z":0.0168}},"f0ad1b":{"lock":false,"pos":{"x":10.6296,"y":1.3802,"z":-72.6481},"rot":{"x":0.0208,"y":270,"z":0.0168}},"f6cee9":{"lock":false,"pos":{"x":10.6297,"y":1.3822,"z":-65.7481},"rot":{"x":0.0208,"y":270.0003,"z":0.0168}},"fab4c7":{"lock":false,"pos":{"x":19.3437,"y":1.3553,"z":-47.3679},"rot":{"x":0.0208,"y":270,"z":0.0168}}}}' +MaterialIndex: -1 +MeshIndex: -1 +Name: Custom_Model_Bag +Nickname: Neutral +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 32.7170639 + posY: 1.39573753 + posZ: -90.83987 + rotX: 0.0208038818 + rotY: 270.021942 + rotZ: 0.0167782288 + scaleX: 1.2 + scaleY: 1.2 + scaleZ: 1.2 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Neutral 6aaeb5/Card Ace of Rods (1) 23207c.yaml b/unpacked/Custom_Model_Bag Neutral 6aaeb5/Card Ace of Rods (1) 23207c.yaml new file mode 100644 index 000000000..43b8c0b35 --- /dev/null +++ b/unpacked/Custom_Model_Bag Neutral 6aaeb5/Card Ace of Rods (1) 23207c.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 292603 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2926': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025942034/FEADE7F6206804B42CC9B6049F51EDF6040C5D1D/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: The Fateful Step +GMNotes: '' +GUID: 23207c +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Ace of Rods (1) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.6296654 + posY: 1.38756418 + posZ: -47.3484459 + rotX: 0.0208098665 + rotY: 270.000061 + rotZ: 0.0167706218 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Neutral 6aaeb5/Card Anna Kaslow (4) f6cee9.yaml b/unpacked/Custom_Model_Bag Neutral 6aaeb5/Card Anna Kaslow (4) f6cee9.yaml new file mode 100644 index 000000000..8337b220a --- /dev/null +++ b/unpacked/Custom_Model_Bag Neutral 6aaeb5/Card Anna Kaslow (4) f6cee9.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Mysterious Soothsayer +GMNotes: '' +GUID: f6cee9 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Anna Kaslow (4) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.62965 + posY: 1.38217843 + posZ: -65.74806 + rotX: 0.020807676 + rotY: 270.000275 + rotZ: 0.01676823 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Neutral 6aaeb5/Card Bulletproof Vest (3) c619e6.yaml b/unpacked/Custom_Model_Bag Neutral 6aaeb5/Card Bulletproof Vest (3) c619e6.yaml new file mode 100644 index 000000000..883b0f5f7 --- /dev/null +++ b/unpacked/Custom_Model_Bag Neutral 6aaeb5/Card Bulletproof Vest (3) c619e6.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 292521 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2925': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: c619e6 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Bulletproof Vest (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.6296606 + posY: 1.38487124 + posZ: -56.5484428 + rotX: 0.02080929 + rotY: 270.0001 + rotZ: 0.0167713426 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Neutral 6aaeb5/Card Charisma (3) b6e2ee.yaml b/unpacked/Custom_Model_Bag Neutral 6aaeb5/Card Charisma (3) b6e2ee.yaml new file mode 100644 index 000000000..e60c40c7e --- /dev/null +++ b/unpacked/Custom_Model_Bag Neutral 6aaeb5/Card Charisma (3) b6e2ee.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 292524 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2925': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: b6e2ee +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Charisma (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.6296539 + posY: 1.38621771 + posZ: -51.9484329 + rotX: 0.0208095238 + rotY: 269.9999 + rotZ: 0.0167712178 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Neutral 6aaeb5/Card Elder Sign Amulet (3) 3c7553.yaml b/unpacked/Custom_Model_Bag Neutral 6aaeb5/Card Elder Sign Amulet (3) 3c7553.yaml new file mode 100644 index 000000000..d9aeb6810 --- /dev/null +++ b/unpacked/Custom_Model_Bag Neutral 6aaeb5/Card Elder Sign Amulet (3) 3c7553.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 292522 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2925': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 3c7553 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Elder Sign Amulet (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.6296606 + posY: 1.38419807 + posZ: -58.8484459 + rotX: 0.02080929 + rotY: 270.0001 + rotZ: 0.01677148 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Neutral 6aaeb5/Card Emergency Cache (2) fab4c7.yaml b/unpacked/Custom_Model_Bag Neutral 6aaeb5/Card Emergency Cache (2) fab4c7.yaml new file mode 100644 index 000000000..7ab372d10 --- /dev/null +++ b/unpacked/Custom_Model_Bag Neutral 6aaeb5/Card Emergency Cache (2) fab4c7.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 292519 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2925': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: fab4c7 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Emergency Cache (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.3436642 + posY: 1.35531926 + posZ: -47.36791 + rotX: 0.020808069 + rotY: 270.0 + rotZ: 0.0167697631 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Neutral 6aaeb5/Card Emergency Cache (3) c922e7.yaml b/unpacked/Custom_Model_Bag Neutral 6aaeb5/Card Emergency Cache (3) c922e7.yaml new file mode 100644 index 000000000..b1c239896 --- /dev/null +++ b/unpacked/Custom_Model_Bag Neutral 6aaeb5/Card Emergency Cache (3) c922e7.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 292520 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2925': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: c922e7 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Emergency Cache (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.3436623 + posY: 1.35397279 + posZ: -51.9679 + rotX: 0.0208083317 + rotY: 270.0 + rotZ: 0.0167690441 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Neutral 6aaeb5/Card Hemispheric Map (3) c46c6c.yaml b/unpacked/Custom_Model_Bag Neutral 6aaeb5/Card Hemispheric Map (3) c46c6c.yaml new file mode 100644 index 000000000..8b7f66e65 --- /dev/null +++ b/unpacked/Custom_Model_Bag Neutral 6aaeb5/Card Hemispheric Map (3) c46c6c.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: c46c6c +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Hemispheric Map (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.629653 + posY: 1.38352478 + posZ: -61.14845 + rotX: 0.0208095331 + rotY: 270.000061 + rotZ: 0.01677138 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Neutral 6aaeb5/Card Key of Ys (5) f0ad1b.yaml b/unpacked/Custom_Model_Bag Neutral 6aaeb5/Card Key of Ys (5) f0ad1b.yaml new file mode 100644 index 000000000..73d5c7ba8 --- /dev/null +++ b/unpacked/Custom_Model_Bag Neutral 6aaeb5/Card Key of Ys (5) f0ad1b.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 292527 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2925': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: Let the Storm Rage +GMNotes: '' +GUID: f0ad1b +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Key of Ys (5) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.6296463 + posY: 1.38015866 + posZ: -72.6481 + rotX: 0.02080735 + rotY: 270.000031 + rotZ: 0.0167684685 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Neutral 6aaeb5/Card Lucid Dreaming (2) 5d9816.yaml b/unpacked/Custom_Model_Bag Neutral 6aaeb5/Card Lucid Dreaming (2) 5d9816.yaml new file mode 100644 index 000000000..e843b50e0 --- /dev/null +++ b/unpacked/Custom_Model_Bag Neutral 6aaeb5/Card Lucid Dreaming (2) 5d9816.yaml @@ -0,0 +1,42 @@ +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/1016065725025942034/FEADE7F6206804B42CC9B6049F51EDF6040C5D1D/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: Spell. +GMNotes: '' +GUID: 5d9816 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Lucid Dreaming (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.3436661 + posY: 1.35464609 + posZ: -49.6678963 + rotX: 0.0208111722 + rotY: 269.9902 + rotZ: 0.0167659782 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Neutral 6aaeb5/Card Moment of Respite (3) b64c7f.yaml b/unpacked/Custom_Model_Bag Neutral 6aaeb5/Card Moment of Respite (3) b64c7f.yaml new file mode 100644 index 000000000..4c707694b --- /dev/null +++ b/unpacked/Custom_Model_Bag Neutral 6aaeb5/Card Moment of Respite (3) b64c7f.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 292525 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2925': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: b64c7f +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Moment of Respite (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.343668 + posY: 1.3532995 + posZ: -54.2679024 + rotX: 0.0208082665 + rotY: 270.0 + rotZ: 0.0167696178 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Neutral 6aaeb5/Card Ornate Bow (3) 080de1.yaml b/unpacked/Custom_Model_Bag Neutral 6aaeb5/Card Ornate Bow (3) 080de1.yaml new file mode 100644 index 000000000..d8929838b --- /dev/null +++ b/unpacked/Custom_Model_Bag Neutral 6aaeb5/Card Ornate Bow (3) 080de1.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 292528 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2925': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 080de1 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Ornate Bow (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.6296463 + posY: 1.3828516 + posZ: -63.4484367 + rotX: 0.0208079536 + rotY: 270.0002 + rotZ: 0.0167684574 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Neutral 6aaeb5/Card Relic Hunter (3) 7e8423.yaml b/unpacked/Custom_Model_Bag Neutral 6aaeb5/Card Relic Hunter (3) 7e8423.yaml new file mode 100644 index 000000000..0df8aa65f --- /dev/null +++ b/unpacked/Custom_Model_Bag Neutral 6aaeb5/Card Relic Hunter (3) 7e8423.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 292523 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2925': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 7e8423 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Relic Hunter (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.6296606 + posY: 1.38554454 + posZ: -54.24844 + rotX: 0.0208094958 + rotY: 270.000122 + rotZ: 0.0167712737 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Neutral 6aaeb5/Card The Black Cat (5) d829fd.yaml b/unpacked/Custom_Model_Bag Neutral 6aaeb5/Card The Black Cat (5) d829fd.yaml new file mode 100644 index 000000000..d9793e308 --- /dev/null +++ b/unpacked/Custom_Model_Bag Neutral 6aaeb5/Card The Black Cat (5) d829fd.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: A Liar, or a Prophet, or Both +GMNotes: '' +GUID: d829fd +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: The Black Cat (5) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.6296577 + posY: 1.38150525 + posZ: -68.0480652 + rotX: 0.0208074227 + rotY: 270.000244 + rotZ: 0.0167688429 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Neutral 6aaeb5/Card The Council's Coffer (2) 7d999e.yaml b/unpacked/Custom_Model_Bag Neutral 6aaeb5/Card The Council's Coffer (2) 7d999e.yaml new file mode 100644 index 000000000..7a19211b1 --- /dev/null +++ b/unpacked/Custom_Model_Bag Neutral 6aaeb5/Card The Council's Coffer (2) 7d999e.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: "What\u2019s in the Box?" +GMNotes: '' +GUID: 7d999e +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: The Council's Coffer (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.6296511 + posY: 1.386891 + posZ: -49.6484337 + rotX: 0.0208095815 + rotY: 269.999969 + rotZ: 0.0167713743 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Neutral 6aaeb5/Card The Red-Gloved Man (5) 654971.yaml b/unpacked/Custom_Model_Bag Neutral 6aaeb5/Card The Red-Gloved Man (5) 654971.yaml new file mode 100644 index 000000000..72f70300c --- /dev/null +++ b/unpacked/Custom_Model_Bag Neutral 6aaeb5/Card The Red-Gloved Man (5) 654971.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 292526 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2925': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: He Was Never There +GMNotes: '' +GUID: '654971' +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: The Red-Gloved Man (5) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.6296463 + posY: 1.380832 + posZ: -70.34807 + rotX: 0.0208071209 + rotY: 270.0001 + rotZ: 0.0167685524 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Neutral 6aaeb5/Card Timeworn Brand (5) 891a6b.yaml b/unpacked/Custom_Model_Bag Neutral 6aaeb5/Card Timeworn Brand (5) 891a6b.yaml new file mode 100644 index 000000000..edd08069d --- /dev/null +++ b/unpacked/Custom_Model_Bag Neutral 6aaeb5/Card Timeworn Brand (5) 891a6b.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 891a6b +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Timeworn Brand (5) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.6296444 + posY: 1.37948549 + posZ: -74.94812 + rotX: 0.0208074711 + rotY: 270.0 + rotZ: 0.0167685673 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Neutral 6aaeb5/Card Versatile (2) 9a393c.yaml b/unpacked/Custom_Model_Bag Neutral 6aaeb5/Card Versatile (2) 9a393c.yaml new file mode 100644 index 000000000..5c69a9d3a --- /dev/null +++ b/unpacked/Custom_Model_Bag Neutral 6aaeb5/Card Versatile (2) 9a393c.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 379711 +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/1016065725025942034/FEADE7F6206804B42CC9B6049F51EDF6040C5D1D/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 9a393c +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Versatile (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 24.5003471 + posY: 1.35717726 + posZ: -47.41856 + rotX: 0.0208081268 + rotY: 270.0011 + rotZ: 0.0167698022 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Neutral 6aaeb5/Custom_Model_Bag Neutral 558096.ttslua b/unpacked/Custom_Model_Bag Neutral 6aaeb5/Custom_Model_Bag Neutral 558096.ttslua new file mode 100644 index 000000000..f882a7f09 --- /dev/null +++ b/unpacked/Custom_Model_Bag Neutral 6aaeb5/Custom_Model_Bag Neutral 558096.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,0,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 + 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=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,0,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,0,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,0,0}, height=350, width=750, + 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}, rotation={0,0,0}, height=350, width=800, + font_size=250, color={0,0,0}, font_color={1,1,1} + }) +-- self.createButton({ +-- label="Setup", click_function="buttonClick_setup", function_owner=self, +-- position={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.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 Neutral 6aaeb5/Custom_Model_Bag Neutral 558096.yaml b/unpacked/Custom_Model_Bag Neutral 6aaeb5/Custom_Model_Bag Neutral 558096.yaml new file mode 100644 index 000000000..12fb17637 --- /dev/null +++ b/unpacked/Custom_Model_Bag Neutral 6aaeb5/Custom_Model_Bag Neutral 558096.yaml @@ -0,0 +1,70 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +ContainedObjects: +- !include 'Custom_Model_Bag Neutral 558096/Card Versatile (2) 9a393c.yaml' +- !include 'Custom_Model_Bag Neutral 558096/Card Emergency Cache (2) fab4c7.yaml' +- !include 'Custom_Model_Bag Neutral 558096/Card Lucid Dreaming (2) 5d9816.yaml' +- !include 'Custom_Model_Bag Neutral 558096/Card Emergency Cache (3) c922e7.yaml' +- !include 'Custom_Model_Bag Neutral 558096/Card Moment of Respite (3) b64c7f.yaml' +- !include 'Custom_Model_Bag Neutral 558096/Card Ace of Rods (1) 23207c.yaml' +- !include 'Custom_Model_Bag Neutral 558096/Card The Council''s Coffer (2) 7d999e.yaml' +- !include 'Custom_Model_Bag Neutral 558096/Card Charisma (3) b6e2ee.yaml' +- !include 'Custom_Model_Bag Neutral 558096/Card Relic Hunter (3) 7e8423.yaml' +- !include 'Custom_Model_Bag Neutral 558096/Card Bulletproof Vest (3) c619e6.yaml' +- !include 'Custom_Model_Bag Neutral 558096/Card Elder Sign Amulet (3) 3c7553.yaml' +- !include 'Custom_Model_Bag Neutral 558096/Card Hemispheric Map (3) c46c6c.yaml' +- !include 'Custom_Model_Bag Neutral 558096/Card Ornate Bow (3) 080de1.yaml' +- !include 'Custom_Model_Bag Neutral 558096/Card Anna Kaslow (4) f6cee9.yaml' +- !include 'Custom_Model_Bag Neutral 558096/Card The Black Cat (5) d829fd.yaml' +- !include 'Custom_Model_Bag Neutral 558096/Card The Red-Gloved Man (5) 654971.yaml' +- !include 'Custom_Model_Bag Neutral 558096/Card Key of Ys (5) f0ad1b.yaml' +- !include 'Custom_Model_Bag Neutral 558096/Card Timeworn Brand (5) 891a6b.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/952965722515017130/AD0A2EDADD663473879A6A391FACD32966983B17/ + MaterialIndex: 3 + MeshURL: https://pastebin.com/raw/ALrYhQGb + NormalURL: '' + TypeIndex: 6 +Description: '' +GMNotes: '' +GUID: '558096' +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Model_Bag Neutral 558096.ttslua' +LuaScriptState: '{"ml":{"080de1":{"lock":false,"pos":{"x":10.6296,"y":1.3829,"z":-63.4484},"rot":{"x":0.0208,"y":270.0002,"z":0.0168}},"23207c":{"lock":false,"pos":{"x":10.6297,"y":1.3876,"z":-47.3484},"rot":{"x":0.0208,"y":270.0001,"z":0.0168}},"3c7553":{"lock":false,"pos":{"x":10.6297,"y":1.3842,"z":-58.8484},"rot":{"x":0.0208,"y":270.0001,"z":0.0168}},"5d9816":{"lock":false,"pos":{"x":19.3437,"y":1.3546,"z":-49.6679},"rot":{"x":0.0208,"y":269.9902,"z":0.0168}},"654971":{"lock":false,"pos":{"x":10.6296,"y":1.3808,"z":-70.3481},"rot":{"x":0.0208,"y":270.0001,"z":0.0168}},"7d999e":{"lock":false,"pos":{"x":10.6297,"y":1.3869,"z":-49.6484},"rot":{"x":0.0208,"y":270,"z":0.0168}},"7e8423":{"lock":false,"pos":{"x":10.6297,"y":1.3855,"z":-54.2484},"rot":{"x":0.0208,"y":270.0001,"z":0.0168}},"891a6b":{"lock":false,"pos":{"x":10.6296,"y":1.3795,"z":-74.9481},"rot":{"x":0.0208,"y":270,"z":0.0168}},"9a393c":{"lock":false,"pos":{"x":24.5003,"y":1.3572,"z":-47.4186},"rot":{"x":0.0208,"y":270.0011,"z":0.0168}},"b64c7f":{"lock":false,"pos":{"x":19.3437,"y":1.3533,"z":-54.2679},"rot":{"x":0.0208,"y":270,"z":0.0168}},"b6e2ee":{"lock":false,"pos":{"x":10.6297,"y":1.3862,"z":-51.9484},"rot":{"x":0.0208,"y":269.9999,"z":0.0168}},"c46c6c":{"lock":false,"pos":{"x":10.6297,"y":1.3835,"z":-61.1484},"rot":{"x":0.0208,"y":270.0001,"z":0.0168}},"c619e6":{"lock":false,"pos":{"x":10.6297,"y":1.3849,"z":-56.5484},"rot":{"x":0.0208,"y":270.0001,"z":0.0168}},"c922e7":{"lock":false,"pos":{"x":19.3437,"y":1.354,"z":-51.9679},"rot":{"x":0.0208,"y":270,"z":0.0168}},"d829fd":{"lock":false,"pos":{"x":10.6297,"y":1.3815,"z":-68.0481},"rot":{"x":0.0208,"y":270.0002,"z":0.0168}},"f0ad1b":{"lock":false,"pos":{"x":10.6296,"y":1.3802,"z":-72.6481},"rot":{"x":0.0208,"y":270,"z":0.0168}},"f6cee9":{"lock":false,"pos":{"x":10.6297,"y":1.3822,"z":-65.7481},"rot":{"x":0.0208,"y":270.0003,"z":0.0168}},"fab4c7":{"lock":false,"pos":{"x":19.3437,"y":1.3553,"z":-47.3679},"rot":{"x":0.0208,"y":270,"z":0.0168}}}}' +MaterialIndex: -1 +MeshIndex: -1 +Name: Custom_Model_Bag +Nickname: Neutral +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 32.7134438 + posY: 1.64950871 + posZ: -90.84001 + rotX: 0.0187693033 + rotY: 270.021942 + rotZ: 0.007288327 + scaleX: 1.2 + scaleY: 1.2 + scaleZ: 1.2 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Neutral 6aaeb5/Custom_Model_Bag Neutral 558096/Card Ace of Rods (1) 23207c.yaml b/unpacked/Custom_Model_Bag Neutral 6aaeb5/Custom_Model_Bag Neutral 558096/Card Ace of Rods (1) 23207c.yaml new file mode 100644 index 000000000..43b8c0b35 --- /dev/null +++ b/unpacked/Custom_Model_Bag Neutral 6aaeb5/Custom_Model_Bag Neutral 558096/Card Ace of Rods (1) 23207c.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 292603 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2926': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025942034/FEADE7F6206804B42CC9B6049F51EDF6040C5D1D/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: The Fateful Step +GMNotes: '' +GUID: 23207c +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Ace of Rods (1) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.6296654 + posY: 1.38756418 + posZ: -47.3484459 + rotX: 0.0208098665 + rotY: 270.000061 + rotZ: 0.0167706218 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Neutral 6aaeb5/Custom_Model_Bag Neutral 558096/Card Anna Kaslow (4) f6cee9.yaml b/unpacked/Custom_Model_Bag Neutral 6aaeb5/Custom_Model_Bag Neutral 558096/Card Anna Kaslow (4) f6cee9.yaml new file mode 100644 index 000000000..8337b220a --- /dev/null +++ b/unpacked/Custom_Model_Bag Neutral 6aaeb5/Custom_Model_Bag Neutral 558096/Card Anna Kaslow (4) f6cee9.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Mysterious Soothsayer +GMNotes: '' +GUID: f6cee9 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Anna Kaslow (4) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.62965 + posY: 1.38217843 + posZ: -65.74806 + rotX: 0.020807676 + rotY: 270.000275 + rotZ: 0.01676823 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Neutral 6aaeb5/Custom_Model_Bag Neutral 558096/Card Bulletproof Vest (3) c619e6.yaml b/unpacked/Custom_Model_Bag Neutral 6aaeb5/Custom_Model_Bag Neutral 558096/Card Bulletproof Vest (3) c619e6.yaml new file mode 100644 index 000000000..883b0f5f7 --- /dev/null +++ b/unpacked/Custom_Model_Bag Neutral 6aaeb5/Custom_Model_Bag Neutral 558096/Card Bulletproof Vest (3) c619e6.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 292521 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2925': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: c619e6 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Bulletproof Vest (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.6296606 + posY: 1.38487124 + posZ: -56.5484428 + rotX: 0.02080929 + rotY: 270.0001 + rotZ: 0.0167713426 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Neutral 6aaeb5/Custom_Model_Bag Neutral 558096/Card Charisma (3) b6e2ee.yaml b/unpacked/Custom_Model_Bag Neutral 6aaeb5/Custom_Model_Bag Neutral 558096/Card Charisma (3) b6e2ee.yaml new file mode 100644 index 000000000..e60c40c7e --- /dev/null +++ b/unpacked/Custom_Model_Bag Neutral 6aaeb5/Custom_Model_Bag Neutral 558096/Card Charisma (3) b6e2ee.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 292524 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2925': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: b6e2ee +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Charisma (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.6296539 + posY: 1.38621771 + posZ: -51.9484329 + rotX: 0.0208095238 + rotY: 269.9999 + rotZ: 0.0167712178 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Neutral 6aaeb5/Custom_Model_Bag Neutral 558096/Card Elder Sign Amulet (3) 3c7553.yaml b/unpacked/Custom_Model_Bag Neutral 6aaeb5/Custom_Model_Bag Neutral 558096/Card Elder Sign Amulet (3) 3c7553.yaml new file mode 100644 index 000000000..d9aeb6810 --- /dev/null +++ b/unpacked/Custom_Model_Bag Neutral 6aaeb5/Custom_Model_Bag Neutral 558096/Card Elder Sign Amulet (3) 3c7553.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 292522 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2925': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 3c7553 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Elder Sign Amulet (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.6296606 + posY: 1.38419807 + posZ: -58.8484459 + rotX: 0.02080929 + rotY: 270.0001 + rotZ: 0.01677148 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Neutral 6aaeb5/Custom_Model_Bag Neutral 558096/Card Emergency Cache (2) fab4c7.yaml b/unpacked/Custom_Model_Bag Neutral 6aaeb5/Custom_Model_Bag Neutral 558096/Card Emergency Cache (2) fab4c7.yaml new file mode 100644 index 000000000..7ab372d10 --- /dev/null +++ b/unpacked/Custom_Model_Bag Neutral 6aaeb5/Custom_Model_Bag Neutral 558096/Card Emergency Cache (2) fab4c7.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 292519 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2925': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: fab4c7 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Emergency Cache (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.3436642 + posY: 1.35531926 + posZ: -47.36791 + rotX: 0.020808069 + rotY: 270.0 + rotZ: 0.0167697631 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Neutral 6aaeb5/Custom_Model_Bag Neutral 558096/Card Emergency Cache (3) c922e7.yaml b/unpacked/Custom_Model_Bag Neutral 6aaeb5/Custom_Model_Bag Neutral 558096/Card Emergency Cache (3) c922e7.yaml new file mode 100644 index 000000000..b1c239896 --- /dev/null +++ b/unpacked/Custom_Model_Bag Neutral 6aaeb5/Custom_Model_Bag Neutral 558096/Card Emergency Cache (3) c922e7.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 292520 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2925': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: c922e7 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Emergency Cache (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.3436623 + posY: 1.35397279 + posZ: -51.9679 + rotX: 0.0208083317 + rotY: 270.0 + rotZ: 0.0167690441 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Neutral 6aaeb5/Custom_Model_Bag Neutral 558096/Card Hemispheric Map (3) c46c6c.yaml b/unpacked/Custom_Model_Bag Neutral 6aaeb5/Custom_Model_Bag Neutral 558096/Card Hemispheric Map (3) c46c6c.yaml new file mode 100644 index 000000000..8b7f66e65 --- /dev/null +++ b/unpacked/Custom_Model_Bag Neutral 6aaeb5/Custom_Model_Bag Neutral 558096/Card Hemispheric Map (3) c46c6c.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: c46c6c +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Hemispheric Map (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.629653 + posY: 1.38352478 + posZ: -61.14845 + rotX: 0.0208095331 + rotY: 270.000061 + rotZ: 0.01677138 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Neutral 6aaeb5/Custom_Model_Bag Neutral 558096/Card Key of Ys (5) f0ad1b.yaml b/unpacked/Custom_Model_Bag Neutral 6aaeb5/Custom_Model_Bag Neutral 558096/Card Key of Ys (5) f0ad1b.yaml new file mode 100644 index 000000000..73d5c7ba8 --- /dev/null +++ b/unpacked/Custom_Model_Bag Neutral 6aaeb5/Custom_Model_Bag Neutral 558096/Card Key of Ys (5) f0ad1b.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 292527 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2925': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: Let the Storm Rage +GMNotes: '' +GUID: f0ad1b +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Key of Ys (5) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.6296463 + posY: 1.38015866 + posZ: -72.6481 + rotX: 0.02080735 + rotY: 270.000031 + rotZ: 0.0167684685 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Neutral 6aaeb5/Custom_Model_Bag Neutral 558096/Card Lucid Dreaming (2) 5d9816.yaml b/unpacked/Custom_Model_Bag Neutral 6aaeb5/Custom_Model_Bag Neutral 558096/Card Lucid Dreaming (2) 5d9816.yaml new file mode 100644 index 000000000..e843b50e0 --- /dev/null +++ b/unpacked/Custom_Model_Bag Neutral 6aaeb5/Custom_Model_Bag Neutral 558096/Card Lucid Dreaming (2) 5d9816.yaml @@ -0,0 +1,42 @@ +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/1016065725025942034/FEADE7F6206804B42CC9B6049F51EDF6040C5D1D/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: Spell. +GMNotes: '' +GUID: 5d9816 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Lucid Dreaming (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.3436661 + posY: 1.35464609 + posZ: -49.6678963 + rotX: 0.0208111722 + rotY: 269.9902 + rotZ: 0.0167659782 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Neutral 6aaeb5/Custom_Model_Bag Neutral 558096/Card Moment of Respite (3) b64c7f.yaml b/unpacked/Custom_Model_Bag Neutral 6aaeb5/Custom_Model_Bag Neutral 558096/Card Moment of Respite (3) b64c7f.yaml new file mode 100644 index 000000000..4c707694b --- /dev/null +++ b/unpacked/Custom_Model_Bag Neutral 6aaeb5/Custom_Model_Bag Neutral 558096/Card Moment of Respite (3) b64c7f.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 292525 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2925': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: b64c7f +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Moment of Respite (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.343668 + posY: 1.3532995 + posZ: -54.2679024 + rotX: 0.0208082665 + rotY: 270.0 + rotZ: 0.0167696178 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Neutral 6aaeb5/Custom_Model_Bag Neutral 558096/Card Ornate Bow (3) 080de1.yaml b/unpacked/Custom_Model_Bag Neutral 6aaeb5/Custom_Model_Bag Neutral 558096/Card Ornate Bow (3) 080de1.yaml new file mode 100644 index 000000000..d8929838b --- /dev/null +++ b/unpacked/Custom_Model_Bag Neutral 6aaeb5/Custom_Model_Bag Neutral 558096/Card Ornate Bow (3) 080de1.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 292528 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2925': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 080de1 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Ornate Bow (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.6296463 + posY: 1.3828516 + posZ: -63.4484367 + rotX: 0.0208079536 + rotY: 270.0002 + rotZ: 0.0167684574 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Neutral 6aaeb5/Custom_Model_Bag Neutral 558096/Card Relic Hunter (3) 7e8423.yaml b/unpacked/Custom_Model_Bag Neutral 6aaeb5/Custom_Model_Bag Neutral 558096/Card Relic Hunter (3) 7e8423.yaml new file mode 100644 index 000000000..0df8aa65f --- /dev/null +++ b/unpacked/Custom_Model_Bag Neutral 6aaeb5/Custom_Model_Bag Neutral 558096/Card Relic Hunter (3) 7e8423.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 292523 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2925': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 7e8423 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Relic Hunter (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.6296606 + posY: 1.38554454 + posZ: -54.24844 + rotX: 0.0208094958 + rotY: 270.000122 + rotZ: 0.0167712737 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Neutral 6aaeb5/Custom_Model_Bag Neutral 558096/Card The Black Cat (5) d829fd.yaml b/unpacked/Custom_Model_Bag Neutral 6aaeb5/Custom_Model_Bag Neutral 558096/Card The Black Cat (5) d829fd.yaml new file mode 100644 index 000000000..d9793e308 --- /dev/null +++ b/unpacked/Custom_Model_Bag Neutral 6aaeb5/Custom_Model_Bag Neutral 558096/Card The Black Cat (5) d829fd.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: A Liar, or a Prophet, or Both +GMNotes: '' +GUID: d829fd +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: The Black Cat (5) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.6296577 + posY: 1.38150525 + posZ: -68.0480652 + rotX: 0.0208074227 + rotY: 270.000244 + rotZ: 0.0167688429 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Neutral 6aaeb5/Custom_Model_Bag Neutral 558096/Card The Council's Coffer (2) 7d999e.yaml b/unpacked/Custom_Model_Bag Neutral 6aaeb5/Custom_Model_Bag Neutral 558096/Card The Council's Coffer (2) 7d999e.yaml new file mode 100644 index 000000000..7a19211b1 --- /dev/null +++ b/unpacked/Custom_Model_Bag Neutral 6aaeb5/Custom_Model_Bag Neutral 558096/Card The Council's Coffer (2) 7d999e.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: "What\u2019s in the Box?" +GMNotes: '' +GUID: 7d999e +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: The Council's Coffer (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.6296511 + posY: 1.386891 + posZ: -49.6484337 + rotX: 0.0208095815 + rotY: 269.999969 + rotZ: 0.0167713743 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Neutral 6aaeb5/Custom_Model_Bag Neutral 558096/Card The Red-Gloved Man (5) 654971.yaml b/unpacked/Custom_Model_Bag Neutral 6aaeb5/Custom_Model_Bag Neutral 558096/Card The Red-Gloved Man (5) 654971.yaml new file mode 100644 index 000000000..72f70300c --- /dev/null +++ b/unpacked/Custom_Model_Bag Neutral 6aaeb5/Custom_Model_Bag Neutral 558096/Card The Red-Gloved Man (5) 654971.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 292526 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2925': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: He Was Never There +GMNotes: '' +GUID: '654971' +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: The Red-Gloved Man (5) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.6296463 + posY: 1.380832 + posZ: -70.34807 + rotX: 0.0208071209 + rotY: 270.0001 + rotZ: 0.0167685524 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Neutral 6aaeb5/Custom_Model_Bag Neutral 558096/Card Timeworn Brand (5) 891a6b.yaml b/unpacked/Custom_Model_Bag Neutral 6aaeb5/Custom_Model_Bag Neutral 558096/Card Timeworn Brand (5) 891a6b.yaml new file mode 100644 index 000000000..edd08069d --- /dev/null +++ b/unpacked/Custom_Model_Bag Neutral 6aaeb5/Custom_Model_Bag Neutral 558096/Card Timeworn Brand (5) 891a6b.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 891a6b +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Timeworn Brand (5) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.6296444 + posY: 1.37948549 + posZ: -74.94812 + rotX: 0.0208074711 + rotY: 270.0 + rotZ: 0.0167685673 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Neutral 6aaeb5/Custom_Model_Bag Neutral 558096/Card Versatile (2) 9a393c.yaml b/unpacked/Custom_Model_Bag Neutral 6aaeb5/Custom_Model_Bag Neutral 558096/Card Versatile (2) 9a393c.yaml new file mode 100644 index 000000000..5c69a9d3a --- /dev/null +++ b/unpacked/Custom_Model_Bag Neutral 6aaeb5/Custom_Model_Bag Neutral 558096/Card Versatile (2) 9a393c.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 379711 +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/1016065725025942034/FEADE7F6206804B42CC9B6049F51EDF6040C5D1D/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 9a393c +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Versatile (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 24.5003471 + posY: 1.35717726 + posZ: -47.41856 + rotX: 0.0208081268 + rotY: 270.0011 + rotZ: 0.0167698022 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Neutral a4d0e8.ttslua b/unpacked/Custom_Model_Bag Neutral a4d0e8.ttslua new file mode 100644 index 000000000..857093fb8 --- /dev/null +++ b/unpacked/Custom_Model_Bag Neutral a4d0e8.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,0,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 + 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=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,0,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,0,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,0,0}, height=350, width=750, + 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}, rotation={0,0,0}, height=350, width=800, + font_size=250, color={0,0,0}, font_color={1,1,1} + }) +-- self.createButton({ +-- label="Setup", click_function="buttonClick_setup", function_owner=self, +-- position={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.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 \ No newline at end of file diff --git a/unpacked/Custom_Model_Bag Neutral a4d0e8.yaml b/unpacked/Custom_Model_Bag Neutral a4d0e8.yaml new file mode 100644 index 000000000..1d3a6d2b0 --- /dev/null +++ b/unpacked/Custom_Model_Bag Neutral a4d0e8.yaml @@ -0,0 +1,73 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +ContainedObjects: +- !include 'Custom_Model_Bag Neutral a4d0e8/Custom_Model_Bag Neutral 0b4994.yaml' +- !include 'Custom_Model_Bag Neutral a4d0e8/Card Flashlight 1687f1.yaml' +- !include 'Custom_Model_Bag Neutral a4d0e8/Card Calling in Favors 399b4b.yaml' +- !include 'Custom_Model_Bag Neutral a4d0e8/Card Smoking Pipe 46e63d.yaml' +- !include 'Custom_Model_Bag Neutral a4d0e8/Card Overpower 4a2976.yaml' +- !include 'Custom_Model_Bag Neutral a4d0e8/Card Thermos 4a7483.yaml' +- !include 'Custom_Model_Bag Neutral a4d0e8/Card Reckless Assault 8b5134.yaml' +- !include 'Custom_Model_Bag Neutral a4d0e8/Card Guts 8c9a30.yaml' +- !include 'Custom_Model_Bag Neutral a4d0e8/Card Backpack 8d4398.yaml' +- !include 'Custom_Model_Bag Neutral a4d0e8/Card Trench Coat 980ca8.yaml' +- !include 'Custom_Model_Bag Neutral a4d0e8/Card Fine Clothes 9aa907.yaml' +- !include 'Custom_Model_Bag Neutral a4d0e8/Card Unexpected Courage 9be77d.yaml' +- !include 'Custom_Model_Bag Neutral a4d0e8/Card Painkillers 9d2034.yaml' +- !include 'Custom_Model_Bag Neutral a4d0e8/Card Perception 9fa3cf.yaml' +- !include 'Custom_Model_Bag Neutral a4d0e8/Card Desperate Search b2ce24.yaml' +- !include 'Custom_Model_Bag Neutral a4d0e8/Card Manual Dexterity b7f546.yaml' +- !include 'Custom_Model_Bag Neutral a4d0e8/Card Run For Your Life d64789.yaml' +- !include 'Custom_Model_Bag Neutral a4d0e8/Card Emergency Cache ea2bce.yaml' +- !include 'Custom_Model_Bag Neutral a4d0e8/Card Kukri eb1fed.yaml' +- !include 'Custom_Model_Bag Neutral a4d0e8/Card Say Your Prayers ec160e.yaml' +- !include 'Custom_Model_Bag Neutral a4d0e8/Card Knife ffb841.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/952965722515017130/AD0A2EDADD663473879A6A391FACD32966983B17/ + MaterialIndex: 3 + MeshURL: https://pastebin.com/raw/ALrYhQGb + NormalURL: '' + TypeIndex: 6 +Description: '' +GMNotes: '' +GUID: a4d0e8 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: true +LuaScript: !include 'Custom_Model_Bag Neutral a4d0e8.ttslua' +LuaScriptState: '{"ml":{"1687f1":{"lock":false,"pos":{"x":44.5133,"y":1.3621,"z":83.2607},"rot":{"x":0.0208,"y":269.9949,"z":0.0168}},"399b4b":{"lock":false,"pos":{"x":53.2286,"y":1.3673,"z":90.1413},"rot":{"x":0.0208,"y":269.9958,"z":0.0168}},"46e63d":{"lock":false,"pos":{"x":44.5133,"y":1.3628,"z":85.5608},"rot":{"x":0.0208,"y":269.9941,"z":0.0168}},"4a2976":{"lock":false,"pos":{"x":58.3839,"y":1.3671,"z":83.1904},"rot":{"x":0.0208,"y":269.9974,"z":0.0168}},"4a7483":{"lock":false,"pos":{"x":44.5133,"y":1.3594,"z":74.0607},"rot":{"x":0.0208,"y":269.9941,"z":0.0168}},"8b5134":{"lock":false,"pos":{"x":58.3839,"y":1.3665,"z":80.8904},"rot":{"x":0.0208,"y":269.9968,"z":0.0168}},"8c9a30":{"lock":false,"pos":{"x":58.3839,"y":1.3698,"z":92.3904},"rot":{"x":0.0208,"y":269.9835,"z":0.0168}},"8d4398":{"lock":false,"pos":{"x":44.5133,"y":1.3608,"z":78.6607},"rot":{"x":0.0208,"y":269.9941,"z":0.0168}},"980ca8":{"lock":false,"pos":{"x":44.5133,"y":1.3601,"z":76.3607},"rot":{"x":0.0208,"y":269.9941,"z":0.0168}},"9aa907":{"lock":false,"pos":{"x":44.5133,"y":1.3648,"z":92.4607},"rot":{"x":0.0208,"y":270.0002,"z":0.0168}},"9be77d":{"lock":false,"pos":{"x":58.3838,"y":1.3644,"z":73.9904},"rot":{"x":0.0208,"y":269.9969,"z":0.0168}},"9d2034":{"lock":false,"pos":{"x":44.5133,"y":1.3635,"z":87.8608},"rot":{"x":0.0208,"y":270.0087,"z":0.0168}},"9fa3cf":{"lock":false,"pos":{"x":58.3839,"y":1.3685,"z":87.7904},"rot":{"x":0.0208,"y":270.0149,"z":0.0168}},"b2ce24":{"lock":false,"pos":{"x":58.3839,"y":1.3678,"z":85.4904},"rot":{"x":0.0208,"y":269.9971,"z":0.0168}},"b7f546":{"lock":false,"pos":{"x":58.3838,"y":1.3658,"z":78.5904},"rot":{"x":0.0208,"y":269.9969,"z":0.0168}},"d64789":{"lock":false,"pos":{"x":58.3838,"y":1.3651,"z":76.2904},"rot":{"x":0.0208,"y":269.9972,"z":0.0168}},"ea2bce":{"lock":false,"pos":{"x":53.2286,"y":1.368,"z":92.4412},"rot":{"x":0.0208,"y":270.0168,"z":0.0168}},"eb1fed":{"lock":false,"pos":{"x":44.5133,"y":1.3614,"z":80.9607},"rot":{"x":0.0208,"y":269.9942,"z":0.0168}},"ec160e":{"lock":false,"pos":{"x":58.3839,"y":1.3692,"z":90.0904},"rot":{"x":0.0208,"y":269.9555,"z":0.0168}},"ffb841":{"lock":false,"pos":{"x":44.5133,"y":1.3641,"z":90.1608},"rot":{"x":0.0208,"y":270.0029,"z":0.0168}}}}' +MaterialIndex: -1 +MeshIndex: -1 +Name: Custom_Model_Bag +Nickname: Neutral +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 66.5971 + posY: 1.40840542 + posZ: 49.0238457 + rotX: 0.02080581 + rotY: 270.016541 + rotZ: 0.0167764 + scaleX: 1.2 + scaleY: 1.2 + scaleZ: 1.2 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Neutral a4d0e8/Card Backpack 8d4398.yaml b/unpacked/Custom_Model_Bag Neutral a4d0e8/Card Backpack 8d4398.yaml new file mode 100644 index 000000000..e5b076898 --- /dev/null +++ b/unpacked/Custom_Model_Bag Neutral a4d0e8/Card Backpack 8d4398.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 209617 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 8d4398 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Backpack +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.5133 + posY: 1.3607738 + posZ: 78.6607 + rotX: 0.0208113268 + rotY: 269.99408 + rotZ: 0.0167686 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Neutral a4d0e8/Card Calling in Favors 399b4b.yaml b/unpacked/Custom_Model_Bag Neutral a4d0e8/Card Calling in Favors 399b4b.yaml new file mode 100644 index 000000000..1ff8acd56 --- /dev/null +++ b/unpacked/Custom_Model_Bag Neutral a4d0e8/Card Calling in Favors 399b4b.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 399b4b +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Calling in Favors +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 53.2286 + posY: 1.36729956 + posZ: 90.1413 + rotX: 0.02081047 + rotY: 269.995758 + rotZ: 0.0167688336 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Neutral a4d0e8/Card Desperate Search b2ce24.yaml b/unpacked/Custom_Model_Bag Neutral a4d0e8/Card Desperate Search b2ce24.yaml new file mode 100644 index 000000000..e0bf3e60b --- /dev/null +++ b/unpacked/Custom_Model_Bag Neutral a4d0e8/Card Desperate Search b2ce24.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 209607 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: b2ce24 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Desperate Search +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 58.3839 + posY: 1.36781037 + posZ: 85.4904 + rotX: 0.020810198 + rotY: 269.997131 + rotZ: 0.01676955 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Neutral a4d0e8/Card Emergency Cache ea2bce.yaml b/unpacked/Custom_Model_Bag Neutral a4d0e8/Card Emergency Cache ea2bce.yaml new file mode 100644 index 000000000..3ee49b5d7 --- /dev/null +++ b/unpacked/Custom_Model_Bag Neutral a4d0e8/Card Emergency Cache ea2bce.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: ea2bce +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Emergency Cache +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 53.2286 + posY: 1.36797261 + posZ: 92.4412 + rotX: 0.02080434 + rotY: 270.016785 + rotZ: 0.01677639 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Neutral a4d0e8/Card Fine Clothes 9aa907.yaml b/unpacked/Custom_Model_Bag Neutral a4d0e8/Card Fine Clothes 9aa907.yaml new file mode 100644 index 000000000..147727bf3 --- /dev/null +++ b/unpacked/Custom_Model_Bag Neutral a4d0e8/Card Fine Clothes 9aa907.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 209611 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 9aa907 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Fine Clothes +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.5133 + posY: 1.36481321 + posZ: 92.4607 + rotX: 0.02080933 + rotY: 270.000244 + rotZ: 0.0167707074 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Neutral a4d0e8/Card Flashlight 1687f1.yaml b/unpacked/Custom_Model_Bag Neutral a4d0e8/Card Flashlight 1687f1.yaml new file mode 100644 index 000000000..10a088178 --- /dev/null +++ b/unpacked/Custom_Model_Bag Neutral a4d0e8/Card Flashlight 1687f1.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 209615 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 1687f1 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Flashlight +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.5133 + posY: 1.36212027 + posZ: 83.2607 + rotX: 0.0208105519 + rotY: 269.994873 + rotZ: 0.0167687517 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Neutral a4d0e8/Card Guts 8c9a30.yaml b/unpacked/Custom_Model_Bag Neutral a4d0e8/Card Guts 8c9a30.yaml new file mode 100644 index 000000000..d3e0b5ab0 --- /dev/null +++ b/unpacked/Custom_Model_Bag Neutral a4d0e8/Card Guts 8c9a30.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 8c9a30 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Guts +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 58.3839 + posY: 1.36983013 + posZ: 92.3904 + rotX: 0.0208142828 + rotY: 269.983521 + rotZ: 0.0167646687 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Neutral a4d0e8/Card Knife ffb841.yaml b/unpacked/Custom_Model_Bag Neutral a4d0e8/Card Knife ffb841.yaml new file mode 100644 index 000000000..3096b7de1 --- /dev/null +++ b/unpacked/Custom_Model_Bag Neutral a4d0e8/Card Knife ffb841.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 209612 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: ffb841 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Knife +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.5133 + posY: 1.36413991 + posZ: 90.1608 + rotX: 0.020808287 + rotY: 270.002869 + rotZ: 0.0167716984 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Neutral a4d0e8/Card Kukri eb1fed.yaml b/unpacked/Custom_Model_Bag Neutral a4d0e8/Card Kukri eb1fed.yaml new file mode 100644 index 000000000..3e5d295f7 --- /dev/null +++ b/unpacked/Custom_Model_Bag Neutral a4d0e8/Card Kukri eb1fed.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 209616 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: eb1fed +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Kukri +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.5133 + posY: 1.361447 + posZ: 80.9607 + rotX: 0.020810863 + rotY: 269.9942 + rotZ: 0.0167686474 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Neutral a4d0e8/Card Manual Dexterity b7f546.yaml b/unpacked/Custom_Model_Bag Neutral a4d0e8/Card Manual Dexterity b7f546.yaml new file mode 100644 index 000000000..b328ad066 --- /dev/null +++ b/unpacked/Custom_Model_Bag Neutral a4d0e8/Card Manual Dexterity b7f546.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: b7f546 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Manual Dexterity +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 58.3838 + posY: 1.36579072 + posZ: 78.5904 + rotX: 0.0208100546 + rotY: 269.9969 + rotZ: 0.0167696122 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Neutral a4d0e8/Card Overpower 4a2976.yaml b/unpacked/Custom_Model_Bag Neutral a4d0e8/Card Overpower 4a2976.yaml new file mode 100644 index 000000000..0dc135bf1 --- /dev/null +++ b/unpacked/Custom_Model_Bag Neutral a4d0e8/Card Overpower 4a2976.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 4a2976 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Overpower +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 58.3839 + posY: 1.36713719 + posZ: 83.1904 + rotX: 0.0208101459 + rotY: 269.9974 + rotZ: 0.0167698413 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Neutral a4d0e8/Card Painkillers 9d2034.yaml b/unpacked/Custom_Model_Bag Neutral a4d0e8/Card Painkillers 9d2034.yaml new file mode 100644 index 000000000..db65d6b00 --- /dev/null +++ b/unpacked/Custom_Model_Bag Neutral a4d0e8/Card Painkillers 9d2034.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 209613 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 9d2034 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Painkillers +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.5133 + posY: 1.36346674 + posZ: 87.8608 + rotX: 0.0208065938 + rotY: 270.008728 + rotZ: 0.01677349 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Neutral a4d0e8/Card Perception 9fa3cf.yaml b/unpacked/Custom_Model_Bag Neutral a4d0e8/Card Perception 9fa3cf.yaml new file mode 100644 index 000000000..47524e553 --- /dev/null +++ b/unpacked/Custom_Model_Bag Neutral a4d0e8/Card Perception 9fa3cf.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 9fa3cf +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Perception +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 58.3839 + posY: 1.36848366 + posZ: 87.7904 + rotX: 0.0208047554 + rotY: 270.0149 + rotZ: 0.01677609 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Neutral a4d0e8/Card Reckless Assault 8b5134.yaml b/unpacked/Custom_Model_Bag Neutral a4d0e8/Card Reckless Assault 8b5134.yaml new file mode 100644 index 000000000..d1730af1e --- /dev/null +++ b/unpacked/Custom_Model_Bag Neutral a4d0e8/Card Reckless Assault 8b5134.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 209603 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 8b5134 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Reckless Assault +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 58.3839 + posY: 1.3664639 + posZ: 80.8904 + rotX: 0.0208098814 + rotY: 269.9968 + rotZ: 0.0167696271 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Neutral a4d0e8/Card Run For Your Life d64789.yaml b/unpacked/Custom_Model_Bag Neutral a4d0e8/Card Run For Your Life d64789.yaml new file mode 100644 index 000000000..0bb474359 --- /dev/null +++ b/unpacked/Custom_Model_Bag Neutral a4d0e8/Card Run For Your Life d64789.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 209605 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: d64789 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Run For Your Life +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 58.3838 + posY: 1.36511731 + posZ: 76.2904 + rotX: 0.0208097734 + rotY: 269.997162 + rotZ: 0.0167695768 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Neutral a4d0e8/Card Say Your Prayers ec160e.yaml b/unpacked/Custom_Model_Bag Neutral a4d0e8/Card Say Your Prayers ec160e.yaml new file mode 100644 index 000000000..ba9a44718 --- /dev/null +++ b/unpacked/Custom_Model_Bag Neutral a4d0e8/Card Say Your Prayers ec160e.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 209601 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: ec160e +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Say Your Prayers +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 58.3839 + posY: 1.36915684 + posZ: 90.0904 + rotX: 0.0208219178 + rotY: 269.9555 + rotZ: 0.016754685 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Neutral a4d0e8/Card Smoking Pipe 46e63d.yaml b/unpacked/Custom_Model_Bag Neutral a4d0e8/Card Smoking Pipe 46e63d.yaml new file mode 100644 index 000000000..153e2128a --- /dev/null +++ b/unpacked/Custom_Model_Bag Neutral a4d0e8/Card Smoking Pipe 46e63d.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 209614 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 46e63d +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Smoking Pipe +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.5133 + posY: 1.36279356 + posZ: 85.5608 + rotX: 0.02081119 + rotY: 269.99408 + rotZ: 0.0167686436 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Neutral a4d0e8/Card Thermos 4a7483.yaml b/unpacked/Custom_Model_Bag Neutral a4d0e8/Card Thermos 4a7483.yaml new file mode 100644 index 000000000..8a380196a --- /dev/null +++ b/unpacked/Custom_Model_Bag Neutral a4d0e8/Card Thermos 4a7483.yaml @@ -0,0 +1,42 @@ +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/829135524530025341/1C7D6F355B4B87A99BDCDF7CE7959FB88856A5A2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 4a7483 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Thermos +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.5133 + posY: 1.35942721 + posZ: 74.0607 + rotX: 0.0208112076 + rotY: 269.994141 + rotZ: 0.016768489 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Neutral a4d0e8/Card Trench Coat 980ca8.yaml b/unpacked/Custom_Model_Bag Neutral a4d0e8/Card Trench Coat 980ca8.yaml new file mode 100644 index 000000000..921bf37ad --- /dev/null +++ b/unpacked/Custom_Model_Bag Neutral a4d0e8/Card Trench Coat 980ca8.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 209618 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 980ca8 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Trench Coat +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.5133 + posY: 1.36010051 + posZ: 76.3607 + rotX: 0.0208107047 + rotY: 269.99408 + rotZ: 0.01676851 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Neutral a4d0e8/Card Unexpected Courage 9be77d.yaml b/unpacked/Custom_Model_Bag Neutral a4d0e8/Card Unexpected Courage 9be77d.yaml new file mode 100644 index 000000000..eda17d658 --- /dev/null +++ b/unpacked/Custom_Model_Bag Neutral a4d0e8/Card Unexpected Courage 9be77d.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 9be77d +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Unexpected Courage +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 58.3838 + posY: 1.36444414 + posZ: 73.9904 + rotX: 0.0208100416 + rotY: 269.996948 + rotZ: 0.0167695209 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Neutral a4d0e8/Custom_Model_Bag Neutral 0b4994.ttslua b/unpacked/Custom_Model_Bag Neutral a4d0e8/Custom_Model_Bag Neutral 0b4994.ttslua new file mode 100644 index 000000000..f882a7f09 --- /dev/null +++ b/unpacked/Custom_Model_Bag Neutral a4d0e8/Custom_Model_Bag Neutral 0b4994.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,0,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 + 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=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,0,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,0,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,0,0}, height=350, width=750, + 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}, rotation={0,0,0}, height=350, width=800, + font_size=250, color={0,0,0}, font_color={1,1,1} + }) +-- self.createButton({ +-- label="Setup", click_function="buttonClick_setup", function_owner=self, +-- position={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.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 Neutral a4d0e8/Custom_Model_Bag Neutral 0b4994.yaml b/unpacked/Custom_Model_Bag Neutral a4d0e8/Custom_Model_Bag Neutral 0b4994.yaml new file mode 100644 index 000000000..332a48ad8 --- /dev/null +++ b/unpacked/Custom_Model_Bag Neutral a4d0e8/Custom_Model_Bag Neutral 0b4994.yaml @@ -0,0 +1,72 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +ContainedObjects: +- !include 'Custom_Model_Bag Neutral 0b4994/Card Flashlight 1687f1.yaml' +- !include 'Custom_Model_Bag Neutral 0b4994/Card Calling in Favors 399b4b.yaml' +- !include 'Custom_Model_Bag Neutral 0b4994/Card Smoking Pipe 46e63d.yaml' +- !include 'Custom_Model_Bag Neutral 0b4994/Card Overpower 4a2976.yaml' +- !include 'Custom_Model_Bag Neutral 0b4994/Card Thermos 4a7483.yaml' +- !include 'Custom_Model_Bag Neutral 0b4994/Card Reckless Assault 8b5134.yaml' +- !include 'Custom_Model_Bag Neutral 0b4994/Card Guts 8c9a30.yaml' +- !include 'Custom_Model_Bag Neutral 0b4994/Card Backpack 8d4398.yaml' +- !include 'Custom_Model_Bag Neutral 0b4994/Card Trench Coat 980ca8.yaml' +- !include 'Custom_Model_Bag Neutral 0b4994/Card Fine Clothes 9aa907.yaml' +- !include 'Custom_Model_Bag Neutral 0b4994/Card Unexpected Courage 9be77d.yaml' +- !include 'Custom_Model_Bag Neutral 0b4994/Card Painkillers 9d2034.yaml' +- !include 'Custom_Model_Bag Neutral 0b4994/Card Perception 9fa3cf.yaml' +- !include 'Custom_Model_Bag Neutral 0b4994/Card Desperate Search b2ce24.yaml' +- !include 'Custom_Model_Bag Neutral 0b4994/Card Manual Dexterity b7f546.yaml' +- !include 'Custom_Model_Bag Neutral 0b4994/Card Run For Your Life d64789.yaml' +- !include 'Custom_Model_Bag Neutral 0b4994/Card Emergency Cache ea2bce.yaml' +- !include 'Custom_Model_Bag Neutral 0b4994/Card Kukri eb1fed.yaml' +- !include 'Custom_Model_Bag Neutral 0b4994/Card Say Your Prayers ec160e.yaml' +- !include 'Custom_Model_Bag Neutral 0b4994/Card Knife ffb841.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/952965722515017130/AD0A2EDADD663473879A6A391FACD32966983B17/ + MaterialIndex: 3 + MeshURL: https://pastebin.com/raw/ALrYhQGb + NormalURL: '' + TypeIndex: 6 +Description: '' +GMNotes: '' +GUID: 0b4994 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Model_Bag Neutral 0b4994.ttslua' +LuaScriptState: '{"ml":{"1687f1":{"lock":false,"pos":{"x":44.5133,"y":1.3621,"z":83.2607},"rot":{"x":0.0208,"y":269.9949,"z":0.0168}},"399b4b":{"lock":false,"pos":{"x":53.2286,"y":1.3673,"z":90.1413},"rot":{"x":0.0208,"y":269.9958,"z":0.0168}},"46e63d":{"lock":false,"pos":{"x":44.5133,"y":1.3628,"z":85.5608},"rot":{"x":0.0208,"y":269.9941,"z":0.0168}},"4a2976":{"lock":false,"pos":{"x":58.3839,"y":1.3671,"z":83.1904},"rot":{"x":0.0208,"y":269.9974,"z":0.0168}},"4a7483":{"lock":false,"pos":{"x":44.5133,"y":1.3594,"z":74.0607},"rot":{"x":0.0208,"y":269.9941,"z":0.0168}},"8b5134":{"lock":false,"pos":{"x":58.3839,"y":1.3665,"z":80.8904},"rot":{"x":0.0208,"y":269.9968,"z":0.0168}},"8c9a30":{"lock":false,"pos":{"x":58.3839,"y":1.3698,"z":92.3904},"rot":{"x":0.0208,"y":269.9835,"z":0.0168}},"8d4398":{"lock":false,"pos":{"x":44.5133,"y":1.3608,"z":78.6607},"rot":{"x":0.0208,"y":269.9941,"z":0.0168}},"980ca8":{"lock":false,"pos":{"x":44.5133,"y":1.3601,"z":76.3607},"rot":{"x":0.0208,"y":269.9941,"z":0.0168}},"9aa907":{"lock":false,"pos":{"x":44.5133,"y":1.3648,"z":92.4607},"rot":{"x":0.0208,"y":270.0002,"z":0.0168}},"9be77d":{"lock":false,"pos":{"x":58.3838,"y":1.3644,"z":73.9904},"rot":{"x":0.0208,"y":269.9969,"z":0.0168}},"9d2034":{"lock":false,"pos":{"x":44.5133,"y":1.3635,"z":87.8608},"rot":{"x":0.0208,"y":270.0087,"z":0.0168}},"9fa3cf":{"lock":false,"pos":{"x":58.3839,"y":1.3685,"z":87.7904},"rot":{"x":0.0208,"y":270.0149,"z":0.0168}},"b2ce24":{"lock":false,"pos":{"x":58.3839,"y":1.3678,"z":85.4904},"rot":{"x":0.0208,"y":269.9971,"z":0.0168}},"b7f546":{"lock":false,"pos":{"x":58.3838,"y":1.3658,"z":78.5904},"rot":{"x":0.0208,"y":269.9969,"z":0.0168}},"d64789":{"lock":false,"pos":{"x":58.3838,"y":1.3651,"z":76.2904},"rot":{"x":0.0208,"y":269.9972,"z":0.0168}},"ea2bce":{"lock":false,"pos":{"x":53.2286,"y":1.368,"z":92.4412},"rot":{"x":0.0208,"y":270.0168,"z":0.0168}},"eb1fed":{"lock":false,"pos":{"x":44.5133,"y":1.3614,"z":80.9607},"rot":{"x":0.0208,"y":269.9942,"z":0.0168}},"ec160e":{"lock":false,"pos":{"x":58.3839,"y":1.3692,"z":90.0904},"rot":{"x":0.0208,"y":269.9555,"z":0.0168}},"ffb841":{"lock":false,"pos":{"x":44.5133,"y":1.3641,"z":90.1608},"rot":{"x":0.0208,"y":270.0029,"z":0.0168}}}}' +MaterialIndex: -1 +MeshIndex: -1 +Name: Custom_Model_Bag +Nickname: Neutral +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 66.59367 + posY: 1.6646198 + posZ: 49.0246429 + rotX: 0.0135271959 + rotY: 270.016541 + rotZ: 0.0141790006 + scaleX: 1.2 + scaleY: 1.2 + scaleZ: 1.2 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Neutral a4d0e8/Custom_Model_Bag Neutral 0b4994/Card Backpack 8d4398.yaml b/unpacked/Custom_Model_Bag Neutral a4d0e8/Custom_Model_Bag Neutral 0b4994/Card Backpack 8d4398.yaml new file mode 100644 index 000000000..7665af96f --- /dev/null +++ b/unpacked/Custom_Model_Bag Neutral a4d0e8/Custom_Model_Bag Neutral 0b4994/Card Backpack 8d4398.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 209617 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 8d4398 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Backpack +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.5133 + posY: 1.3607738 + posZ: 78.6607 + rotX: 0.0208107457 + rotY: 269.99408 + rotZ: 0.0167682618 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Neutral a4d0e8/Custom_Model_Bag Neutral 0b4994/Card Calling in Favors 399b4b.yaml b/unpacked/Custom_Model_Bag Neutral a4d0e8/Custom_Model_Bag Neutral 0b4994/Card Calling in Favors 399b4b.yaml new file mode 100644 index 000000000..349038ddf --- /dev/null +++ b/unpacked/Custom_Model_Bag Neutral a4d0e8/Custom_Model_Bag Neutral 0b4994/Card Calling in Favors 399b4b.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 399b4b +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Calling in Favors +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 53.2286 + posY: 1.36729956 + posZ: 90.1413 + rotX: 0.0208103675 + rotY: 269.995758 + rotZ: 0.0167689044 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Neutral a4d0e8/Custom_Model_Bag Neutral 0b4994/Card Desperate Search b2ce24.yaml b/unpacked/Custom_Model_Bag Neutral a4d0e8/Custom_Model_Bag Neutral 0b4994/Card Desperate Search b2ce24.yaml new file mode 100644 index 000000000..b5e082a99 --- /dev/null +++ b/unpacked/Custom_Model_Bag Neutral a4d0e8/Custom_Model_Bag Neutral 0b4994/Card Desperate Search b2ce24.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 209607 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: b2ce24 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Desperate Search +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 58.3839 + posY: 1.36781037 + posZ: 85.4904 + rotX: 0.0208101049 + rotY: 269.997131 + rotZ: 0.0167693142 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Neutral a4d0e8/Custom_Model_Bag Neutral 0b4994/Card Emergency Cache ea2bce.yaml b/unpacked/Custom_Model_Bag Neutral a4d0e8/Custom_Model_Bag Neutral 0b4994/Card Emergency Cache ea2bce.yaml new file mode 100644 index 000000000..909f70706 --- /dev/null +++ b/unpacked/Custom_Model_Bag Neutral a4d0e8/Custom_Model_Bag Neutral 0b4994/Card Emergency Cache ea2bce.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: ea2bce +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Emergency Cache +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 53.2286 + posY: 1.36797273 + posZ: 92.4412 + rotX: 0.0208042935 + rotY: 270.016785 + rotZ: 0.0167768449 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Neutral a4d0e8/Custom_Model_Bag Neutral 0b4994/Card Fine Clothes 9aa907.yaml b/unpacked/Custom_Model_Bag Neutral a4d0e8/Custom_Model_Bag Neutral 0b4994/Card Fine Clothes 9aa907.yaml new file mode 100644 index 000000000..7b863b19c --- /dev/null +++ b/unpacked/Custom_Model_Bag Neutral a4d0e8/Custom_Model_Bag Neutral 0b4994/Card Fine Clothes 9aa907.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 209611 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 9aa907 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Fine Clothes +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.5133 + posY: 1.36481321 + posZ: 92.4607 + rotX: 0.0208090972 + rotY: 270.000244 + rotZ: 0.0167709235 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Neutral a4d0e8/Custom_Model_Bag Neutral 0b4994/Card Flashlight 1687f1.yaml b/unpacked/Custom_Model_Bag Neutral a4d0e8/Custom_Model_Bag Neutral 0b4994/Card Flashlight 1687f1.yaml new file mode 100644 index 000000000..222e263a1 --- /dev/null +++ b/unpacked/Custom_Model_Bag Neutral a4d0e8/Custom_Model_Bag Neutral 0b4994/Card Flashlight 1687f1.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 209615 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 1687f1 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Flashlight +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.5133 + posY: 1.36212027 + posZ: 83.2607 + rotX: 0.0208104234 + rotY: 269.994873 + rotZ: 0.0167688131 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Neutral a4d0e8/Custom_Model_Bag Neutral 0b4994/Card Guts 8c9a30.yaml b/unpacked/Custom_Model_Bag Neutral a4d0e8/Custom_Model_Bag Neutral 0b4994/Card Guts 8c9a30.yaml new file mode 100644 index 000000000..821500434 --- /dev/null +++ b/unpacked/Custom_Model_Bag Neutral a4d0e8/Custom_Model_Bag Neutral 0b4994/Card Guts 8c9a30.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 8c9a30 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Guts +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 58.3839 + posY: 1.36983013 + posZ: 92.3904 + rotX: 0.0208142847 + rotY: 269.983521 + rotZ: 0.0167644862 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Neutral a4d0e8/Custom_Model_Bag Neutral 0b4994/Card Knife ffb841.yaml b/unpacked/Custom_Model_Bag Neutral a4d0e8/Custom_Model_Bag Neutral 0b4994/Card Knife ffb841.yaml new file mode 100644 index 000000000..e0489cae1 --- /dev/null +++ b/unpacked/Custom_Model_Bag Neutral a4d0e8/Custom_Model_Bag Neutral 0b4994/Card Knife ffb841.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 209612 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: ffb841 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Knife +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.5133 + posY: 1.36413991 + posZ: 90.1608 + rotX: 0.0208086856 + rotY: 270.002869 + rotZ: 0.0167716257 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Neutral a4d0e8/Custom_Model_Bag Neutral 0b4994/Card Kukri eb1fed.yaml b/unpacked/Custom_Model_Bag Neutral a4d0e8/Custom_Model_Bag Neutral 0b4994/Card Kukri eb1fed.yaml new file mode 100644 index 000000000..309441ff2 --- /dev/null +++ b/unpacked/Custom_Model_Bag Neutral a4d0e8/Custom_Model_Bag Neutral 0b4994/Card Kukri eb1fed.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 209616 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: eb1fed +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Kukri +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.5133 + posY: 1.3614471 + posZ: 80.9607 + rotX: 0.0208107531 + rotY: 269.9942 + rotZ: 0.0167687163 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Neutral a4d0e8/Custom_Model_Bag Neutral 0b4994/Card Manual Dexterity b7f546.yaml b/unpacked/Custom_Model_Bag Neutral a4d0e8/Custom_Model_Bag Neutral 0b4994/Card Manual Dexterity b7f546.yaml new file mode 100644 index 000000000..0d1a70de7 --- /dev/null +++ b/unpacked/Custom_Model_Bag Neutral a4d0e8/Custom_Model_Bag Neutral 0b4994/Card Manual Dexterity b7f546.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: b7f546 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Manual Dexterity +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 58.3838 + posY: 1.36579072 + posZ: 78.5904 + rotX: 0.02081044 + rotY: 269.9969 + rotZ: 0.0167695638 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Neutral a4d0e8/Custom_Model_Bag Neutral 0b4994/Card Overpower 4a2976.yaml b/unpacked/Custom_Model_Bag Neutral a4d0e8/Custom_Model_Bag Neutral 0b4994/Card Overpower 4a2976.yaml new file mode 100644 index 000000000..8bfeab8fb --- /dev/null +++ b/unpacked/Custom_Model_Bag Neutral a4d0e8/Custom_Model_Bag Neutral 0b4994/Card Overpower 4a2976.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 4a2976 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Overpower +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 58.3839 + posY: 1.36713719 + posZ: 83.1904 + rotX: 0.0208101626 + rotY: 269.9974 + rotZ: 0.0167697743 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Neutral a4d0e8/Custom_Model_Bag Neutral 0b4994/Card Painkillers 9d2034.yaml b/unpacked/Custom_Model_Bag Neutral a4d0e8/Custom_Model_Bag Neutral 0b4994/Card Painkillers 9d2034.yaml new file mode 100644 index 000000000..0b2103371 --- /dev/null +++ b/unpacked/Custom_Model_Bag Neutral a4d0e8/Custom_Model_Bag Neutral 0b4994/Card Painkillers 9d2034.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 209613 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 9d2034 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Painkillers +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.5133 + posY: 1.36346674 + posZ: 87.8608 + rotX: 0.0208064727 + rotY: 270.008728 + rotZ: 0.0167739838 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Neutral a4d0e8/Custom_Model_Bag Neutral 0b4994/Card Perception 9fa3cf.yaml b/unpacked/Custom_Model_Bag Neutral a4d0e8/Custom_Model_Bag Neutral 0b4994/Card Perception 9fa3cf.yaml new file mode 100644 index 000000000..585a18954 --- /dev/null +++ b/unpacked/Custom_Model_Bag Neutral a4d0e8/Custom_Model_Bag Neutral 0b4994/Card Perception 9fa3cf.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 9fa3cf +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Perception +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 58.3839 + posY: 1.36848366 + posZ: 87.7904 + rotX: 0.0208049472 + rotY: 270.0149 + rotZ: 0.0167757124 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Neutral a4d0e8/Custom_Model_Bag Neutral 0b4994/Card Reckless Assault 8b5134.yaml b/unpacked/Custom_Model_Bag Neutral a4d0e8/Custom_Model_Bag Neutral 0b4994/Card Reckless Assault 8b5134.yaml new file mode 100644 index 000000000..4848f7dfe --- /dev/null +++ b/unpacked/Custom_Model_Bag Neutral a4d0e8/Custom_Model_Bag Neutral 0b4994/Card Reckless Assault 8b5134.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 209603 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 8b5134 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Reckless Assault +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 58.3839 + posY: 1.3664639 + posZ: 80.8904 + rotX: 0.0208101124 + rotY: 269.9968 + rotZ: 0.0167695135 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Neutral a4d0e8/Custom_Model_Bag Neutral 0b4994/Card Run For Your Life d64789.yaml b/unpacked/Custom_Model_Bag Neutral a4d0e8/Custom_Model_Bag Neutral 0b4994/Card Run For Your Life d64789.yaml new file mode 100644 index 000000000..fc1a7bd7b --- /dev/null +++ b/unpacked/Custom_Model_Bag Neutral a4d0e8/Custom_Model_Bag Neutral 0b4994/Card Run For Your Life d64789.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 209605 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: d64789 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Run For Your Life +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 58.3838 + posY: 1.36511731 + posZ: 76.2904 + rotX: 0.0208099764 + rotY: 269.997162 + rotZ: 0.0167697668 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Neutral a4d0e8/Custom_Model_Bag Neutral 0b4994/Card Say Your Prayers ec160e.yaml b/unpacked/Custom_Model_Bag Neutral a4d0e8/Custom_Model_Bag Neutral 0b4994/Card Say Your Prayers ec160e.yaml new file mode 100644 index 000000000..77134f872 --- /dev/null +++ b/unpacked/Custom_Model_Bag Neutral a4d0e8/Custom_Model_Bag Neutral 0b4994/Card Say Your Prayers ec160e.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 209601 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: ec160e +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Say Your Prayers +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 58.3839 + posY: 1.36915684 + posZ: 90.0904 + rotX: 0.0208224375 + rotY: 269.9555 + rotZ: 0.0167544968 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Neutral a4d0e8/Custom_Model_Bag Neutral 0b4994/Card Smoking Pipe 46e63d.yaml b/unpacked/Custom_Model_Bag Neutral a4d0e8/Custom_Model_Bag Neutral 0b4994/Card Smoking Pipe 46e63d.yaml new file mode 100644 index 000000000..97273c562 --- /dev/null +++ b/unpacked/Custom_Model_Bag Neutral a4d0e8/Custom_Model_Bag Neutral 0b4994/Card Smoking Pipe 46e63d.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 209614 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 46e63d +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Smoking Pipe +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.5133 + posY: 1.36279356 + posZ: 85.5608 + rotX: 0.0208109934 + rotY: 269.99408 + rotZ: 0.0167686045 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Neutral a4d0e8/Custom_Model_Bag Neutral 0b4994/Card Thermos 4a7483.yaml b/unpacked/Custom_Model_Bag Neutral a4d0e8/Custom_Model_Bag Neutral 0b4994/Card Thermos 4a7483.yaml new file mode 100644 index 000000000..6dcf08b40 --- /dev/null +++ b/unpacked/Custom_Model_Bag Neutral a4d0e8/Custom_Model_Bag Neutral 0b4994/Card Thermos 4a7483.yaml @@ -0,0 +1,42 @@ +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/829135524530025341/1C7D6F355B4B87A99BDCDF7CE7959FB88856A5A2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 4a7483 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Thermos +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.5133 + posY: 1.35942721 + posZ: 74.0607 + rotX: 0.0208108947 + rotY: 269.994141 + rotZ: 0.0167686716 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Neutral a4d0e8/Custom_Model_Bag Neutral 0b4994/Card Trench Coat 980ca8.yaml b/unpacked/Custom_Model_Bag Neutral a4d0e8/Custom_Model_Bag Neutral 0b4994/Card Trench Coat 980ca8.yaml new file mode 100644 index 000000000..57fc0e6b5 --- /dev/null +++ b/unpacked/Custom_Model_Bag Neutral a4d0e8/Custom_Model_Bag Neutral 0b4994/Card Trench Coat 980ca8.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 209618 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 980ca8 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Trench Coat +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.5133 + posY: 1.36010051 + posZ: 76.3607 + rotX: 0.020810971 + rotY: 269.99408 + rotZ: 0.0167686976 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Neutral a4d0e8/Custom_Model_Bag Neutral 0b4994/Card Unexpected Courage 9be77d.yaml b/unpacked/Custom_Model_Bag Neutral a4d0e8/Custom_Model_Bag Neutral 0b4994/Card Unexpected Courage 9be77d.yaml new file mode 100644 index 000000000..38927836e --- /dev/null +++ b/unpacked/Custom_Model_Bag Neutral a4d0e8/Custom_Model_Bag Neutral 0b4994/Card Unexpected Courage 9be77d.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 9be77d +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Unexpected Courage +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 58.3838 + posY: 1.36444414 + posZ: 73.9904 + rotX: 0.020810103 + rotY: 269.996948 + rotZ: 0.0167695154 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Neutral aef7dd.ttslua b/unpacked/Custom_Model_Bag Neutral aef7dd.ttslua new file mode 100644 index 000000000..857093fb8 --- /dev/null +++ b/unpacked/Custom_Model_Bag Neutral aef7dd.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,0,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 + 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=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,0,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,0,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,0,0}, height=350, width=750, + 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}, rotation={0,0,0}, height=350, width=800, + font_size=250, color={0,0,0}, font_color={1,1,1} + }) +-- self.createButton({ +-- label="Setup", click_function="buttonClick_setup", function_owner=self, +-- position={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.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 \ No newline at end of file diff --git a/unpacked/Custom_Model_Bag Neutral aef7dd.yaml b/unpacked/Custom_Model_Bag Neutral aef7dd.yaml new file mode 100644 index 000000000..8a4c6d47f --- /dev/null +++ b/unpacked/Custom_Model_Bag Neutral aef7dd.yaml @@ -0,0 +1,71 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +ContainedObjects: +- !include 'Custom_Model_Bag Neutral aef7dd/Custom_Model_Bag Neutral 2b3af2.yaml' +- !include 'Custom_Model_Bag Neutral aef7dd/Card Ornate Bow (3) 08097a.yaml' +- !include 'Custom_Model_Bag Neutral aef7dd/Card Elder Sign Amulet (3) 0aece0.yaml' +- !include 'Custom_Model_Bag Neutral aef7dd/Card Emergency Cache (2) 1b1f60.yaml' +- !include 'Custom_Model_Bag Neutral aef7dd/Card Key of Ys (5) 1ea991.yaml' +- !include 'Custom_Model_Bag Neutral aef7dd/Card The Black Cat (5) 2acaa8.yaml' +- !include 'Custom_Model_Bag Neutral aef7dd/Card Hemispheric Map (3) 519cc4.yaml' +- !include 'Custom_Model_Bag Neutral aef7dd/Card Charisma (3) 67dfca.yaml' +- !include 'Custom_Model_Bag Neutral aef7dd/Card The Red-Gloved Man (5) 6b6ed9.yaml' +- !include 'Custom_Model_Bag Neutral aef7dd/Card Emergency Cache (3) 73aab3.yaml' +- !include 'Custom_Model_Bag Neutral aef7dd/Card The Council''s Coffer (2) 79ef94.yaml' +- !include 'Custom_Model_Bag Neutral aef7dd/Card Bulletproof Vest (3) 8737b5.yaml' +- !include 'Custom_Model_Bag Neutral aef7dd/Card Lucid Dreaming (2) b5763a.yaml' +- !include 'Custom_Model_Bag Neutral aef7dd/Card Versatile (2) c1124f.yaml' +- !include 'Custom_Model_Bag Neutral aef7dd/Card Anna Kaslow (4) cd426b.yaml' +- !include 'Custom_Model_Bag Neutral aef7dd/Card Timeworn Brand (5) cf212b.yaml' +- !include 'Custom_Model_Bag Neutral aef7dd/Card Moment of Respite (3) d78375.yaml' +- !include 'Custom_Model_Bag Neutral aef7dd/Card Ace of Rods (1) eef2a9.yaml' +- !include 'Custom_Model_Bag Neutral aef7dd/Card Relic Hunter (3) fa4c7c.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/952965722515017130/AD0A2EDADD663473879A6A391FACD32966983B17/ + MaterialIndex: 3 + MeshURL: https://pastebin.com/raw/ALrYhQGb + NormalURL: '' + TypeIndex: 6 +Description: '' +GMNotes: '' +GUID: aef7dd +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: true +LuaScript: !include 'Custom_Model_Bag Neutral aef7dd.ttslua' +LuaScriptState: '{"ml":{"08097a":{"lock":false,"pos":{"x":44.229,"y":1.3596,"z":-63.5009},"rot":{"x":0.0208,"y":270.0001,"z":0.0168}},"0aece0":{"lock":false,"pos":{"x":44.229,"y":1.361,"z":-58.9008},"rot":{"x":0.0208,"y":270.0001,"z":0.0168}},"1b1f60":{"lock":false,"pos":{"x":52.9442,"y":1.3675,"z":-47.4203},"rot":{"x":0.0208,"y":270,"z":0.0168}},"1ea991":{"lock":false,"pos":{"x":44.229,"y":1.3569,"z":-72.7007},"rot":{"x":0.0208,"y":270,"z":0.0168}},"2acaa8":{"lock":false,"pos":{"x":44.229,"y":1.3583,"z":-68.1007},"rot":{"x":0.0208,"y":270.0002,"z":0.0168}},"519cc4":{"lock":false,"pos":{"x":44.229,"y":1.3603,"z":-61.2008},"rot":{"x":0.0208,"y":270.0001,"z":0.0168}},"67dfca":{"lock":false,"pos":{"x":44.229,"y":1.363,"z":-52.0008},"rot":{"x":0.0208,"y":270,"z":0.0168}},"6b6ed9":{"lock":false,"pos":{"x":44.229,"y":1.3576,"z":-70.4007},"rot":{"x":0.0208,"y":270.0001,"z":0.0168}},"73aab3":{"lock":false,"pos":{"x":52.9442,"y":1.3662,"z":-52.0203},"rot":{"x":0.0208,"y":270,"z":0.0168}},"79ef94":{"lock":false,"pos":{"x":44.229,"y":1.3637,"z":-49.7008},"rot":{"x":0.0208,"y":269.9999,"z":0.0168}},"8737b5":{"lock":false,"pos":{"x":44.229,"y":1.3617,"z":-56.6008},"rot":{"x":0.0208,"y":270.0001,"z":0.0168}},"b5763a":{"lock":false,"pos":{"x":52.9442,"y":1.3668,"z":-49.7203},"rot":{"x":0.0208,"y":269.9902,"z":0.0168}},"c1124f":{"lock":false,"pos":{"x":58.0997,"y":1.3694,"z":-47.471},"rot":{"x":0.0208,"y":270.0011,"z":0.0168}},"cd426b":{"lock":false,"pos":{"x":44.229,"y":1.359,"z":-65.8007},"rot":{"x":0.0208,"y":270.0002,"z":0.0168}},"cf212b":{"lock":false,"pos":{"x":44.229,"y":1.3563,"z":-75.0007},"rot":{"x":0.0208,"y":270.0001,"z":0.0168}},"d78375":{"lock":false,"pos":{"x":52.9442,"y":1.3655,"z":-54.3203},"rot":{"x":0.0208,"y":270,"z":0.0168}},"eef2a9":{"lock":false,"pos":{"x":44.229,"y":1.3643,"z":-47.4008},"rot":{"x":0.0208,"y":270.0001,"z":0.0168}},"fa4c7c":{"lock":false,"pos":{"x":44.229,"y":1.3623,"z":-54.3008},"rot":{"x":0.0208,"y":270.0001,"z":0.0168}}}}' +MaterialIndex: -1 +MeshIndex: -1 +Name: Custom_Model_Bag +Nickname: Neutral +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 66.31683 + posY: 1.40794086 + posZ: -90.8378143 + rotX: 0.0208075047 + rotY: 270.010925 + rotZ: 0.0167742278 + scaleX: 1.2 + scaleY: 1.2 + scaleZ: 1.2 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Neutral aef7dd/Card Ace of Rods (1) eef2a9.yaml b/unpacked/Custom_Model_Bag Neutral aef7dd/Card Ace of Rods (1) eef2a9.yaml new file mode 100644 index 000000000..f1536eba8 --- /dev/null +++ b/unpacked/Custom_Model_Bag Neutral aef7dd/Card Ace of Rods (1) eef2a9.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 292603 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2926': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025942034/FEADE7F6206804B42CC9B6049F51EDF6040C5D1D/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: The Fateful Step +GMNotes: '' +GUID: eef2a9 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Ace of Rods (1) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.2289963 + posY: 1.36434722 + posZ: -47.4008 + rotX: 0.0208103787 + rotY: 270.000031 + rotZ: 0.0167691112 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Neutral aef7dd/Card Anna Kaslow (4) cd426b.yaml b/unpacked/Custom_Model_Bag Neutral aef7dd/Card Anna Kaslow (4) cd426b.yaml new file mode 100644 index 000000000..b5d4fbe8a --- /dev/null +++ b/unpacked/Custom_Model_Bag Neutral aef7dd/Card Anna Kaslow (4) cd426b.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Mysterious Soothsayer +GMNotes: '' +GUID: cd426b +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Anna Kaslow (4) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.229 + posY: 1.35896146 + posZ: -65.8007 + rotX: 0.02080887 + rotY: 270.000244 + rotZ: 0.016770795 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Neutral aef7dd/Card Bulletproof Vest (3) 8737b5.yaml b/unpacked/Custom_Model_Bag Neutral aef7dd/Card Bulletproof Vest (3) 8737b5.yaml new file mode 100644 index 000000000..7da7746e8 --- /dev/null +++ b/unpacked/Custom_Model_Bag Neutral aef7dd/Card Bulletproof Vest (3) 8737b5.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 292521 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2925': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 8737b5 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Bulletproof Vest (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.229 + posY: 1.3616544 + posZ: -56.6008 + rotX: 0.02080924 + rotY: 270.0001 + rotZ: 0.0167703573 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Neutral aef7dd/Card Charisma (3) 67dfca.yaml b/unpacked/Custom_Model_Bag Neutral aef7dd/Card Charisma (3) 67dfca.yaml new file mode 100644 index 000000000..84b3f322a --- /dev/null +++ b/unpacked/Custom_Model_Bag Neutral aef7dd/Card Charisma (3) 67dfca.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 292524 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2925': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 67dfca +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Charisma (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.229 + posY: 1.36300075 + posZ: -52.0008 + rotX: 0.0208094735 + rotY: 270.0 + rotZ: 0.0167705659 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Neutral aef7dd/Card Elder Sign Amulet (3) 0aece0.yaml b/unpacked/Custom_Model_Bag Neutral aef7dd/Card Elder Sign Amulet (3) 0aece0.yaml new file mode 100644 index 000000000..93e343def --- /dev/null +++ b/unpacked/Custom_Model_Bag Neutral aef7dd/Card Elder Sign Amulet (3) 0aece0.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 292522 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2925': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 0aece0 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Elder Sign Amulet (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.229 + posY: 1.36098111 + posZ: -58.9008 + rotX: 0.0208089314 + rotY: 270.0001 + rotZ: 0.0167705864 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Neutral aef7dd/Card Emergency Cache (2) 1b1f60.yaml b/unpacked/Custom_Model_Bag Neutral aef7dd/Card Emergency Cache (2) 1b1f60.yaml new file mode 100644 index 000000000..c9ff6ed57 --- /dev/null +++ b/unpacked/Custom_Model_Bag Neutral aef7dd/Card Emergency Cache (2) 1b1f60.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 292519 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2925': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 1b1f60 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Emergency Cache (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 52.9442 + posY: 1.36750674 + posZ: -47.4203 + rotX: 0.0208092928 + rotY: 270.0 + rotZ: 0.0167707149 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Neutral aef7dd/Card Emergency Cache (3) 73aab3.yaml b/unpacked/Custom_Model_Bag Neutral aef7dd/Card Emergency Cache (3) 73aab3.yaml new file mode 100644 index 000000000..22737e49d --- /dev/null +++ b/unpacked/Custom_Model_Bag Neutral aef7dd/Card Emergency Cache (3) 73aab3.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 292520 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2925': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 73aab3 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Emergency Cache (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 52.9442 + posY: 1.36616015 + posZ: -52.0203 + rotX: 0.020809114 + rotY: 270.0 + rotZ: 0.01677084 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Neutral aef7dd/Card Hemispheric Map (3) 519cc4.yaml b/unpacked/Custom_Model_Bag Neutral aef7dd/Card Hemispheric Map (3) 519cc4.yaml new file mode 100644 index 000000000..83428d482 --- /dev/null +++ b/unpacked/Custom_Model_Bag Neutral aef7dd/Card Hemispheric Map (3) 519cc4.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 519cc4 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Hemispheric Map (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.229 + posY: 1.36030781 + posZ: -61.2008 + rotX: 0.0208089389 + rotY: 270.000061 + rotZ: 0.016770659 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Neutral aef7dd/Card Key of Ys (5) 1ea991.yaml b/unpacked/Custom_Model_Bag Neutral aef7dd/Card Key of Ys (5) 1ea991.yaml new file mode 100644 index 000000000..2d631d288 --- /dev/null +++ b/unpacked/Custom_Model_Bag Neutral aef7dd/Card Key of Ys (5) 1ea991.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 292527 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2925': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: Let the Storm Rage +GMNotes: '' +GUID: 1ea991 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Key of Ys (5) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.229 + posY: 1.35694158 + posZ: -72.7007 + rotX: 0.0208091773 + rotY: 270.000031 + rotZ: 0.01677067 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Neutral aef7dd/Card Lucid Dreaming (2) b5763a.yaml b/unpacked/Custom_Model_Bag Neutral aef7dd/Card Lucid Dreaming (2) b5763a.yaml new file mode 100644 index 000000000..3aa1a3b44 --- /dev/null +++ b/unpacked/Custom_Model_Bag Neutral aef7dd/Card Lucid Dreaming (2) b5763a.yaml @@ -0,0 +1,42 @@ +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/1016065725025942034/FEADE7F6206804B42CC9B6049F51EDF6040C5D1D/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: Spell. +GMNotes: '' +GUID: b5763a +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Lucid Dreaming (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 52.9442 + posY: 1.36683357 + posZ: -49.7203 + rotX: 0.0208120849 + rotY: 269.990234 + rotZ: 0.0167672075 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Neutral aef7dd/Card Moment of Respite (3) d78375.yaml b/unpacked/Custom_Model_Bag Neutral aef7dd/Card Moment of Respite (3) d78375.yaml new file mode 100644 index 000000000..99d7cbc3b --- /dev/null +++ b/unpacked/Custom_Model_Bag Neutral aef7dd/Card Moment of Respite (3) d78375.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 292525 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2925': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: d78375 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Moment of Respite (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 52.9442 + posY: 1.365487 + posZ: -54.3203 + rotX: 0.02080913 + rotY: 270.0 + rotZ: 0.0167708155 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Neutral aef7dd/Card Ornate Bow (3) 08097a.yaml b/unpacked/Custom_Model_Bag Neutral aef7dd/Card Ornate Bow (3) 08097a.yaml new file mode 100644 index 000000000..7f0131feb --- /dev/null +++ b/unpacked/Custom_Model_Bag Neutral aef7dd/Card Ornate Bow (3) 08097a.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 292528 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2925': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 08097a +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Ornate Bow (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.229 + posY: 1.35963464 + posZ: -63.5009 + rotX: 0.020809304 + rotY: 270.000122 + rotZ: 0.01677064 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Neutral aef7dd/Card Relic Hunter (3) fa4c7c.yaml b/unpacked/Custom_Model_Bag Neutral aef7dd/Card Relic Hunter (3) fa4c7c.yaml new file mode 100644 index 000000000..3cdd79b27 --- /dev/null +++ b/unpacked/Custom_Model_Bag Neutral aef7dd/Card Relic Hunter (3) fa4c7c.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 292523 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2925': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: fa4c7c +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Relic Hunter (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.229 + posY: 1.36232758 + posZ: -54.3008 + rotX: 0.02080942 + rotY: 270.000122 + rotZ: 0.0167706385 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Neutral aef7dd/Card The Black Cat (5) 2acaa8.yaml b/unpacked/Custom_Model_Bag Neutral aef7dd/Card The Black Cat (5) 2acaa8.yaml new file mode 100644 index 000000000..725709d26 --- /dev/null +++ b/unpacked/Custom_Model_Bag Neutral aef7dd/Card The Black Cat (5) 2acaa8.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: A Liar, or a Prophet, or Both +GMNotes: '' +GUID: 2acaa8 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: The Black Cat (5) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.229 + posY: 1.35828817 + posZ: -68.1007 + rotX: 0.0208088215 + rotY: 270.000244 + rotZ: 0.016770808 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Neutral aef7dd/Card The Council's Coffer (2) 79ef94.yaml b/unpacked/Custom_Model_Bag Neutral aef7dd/Card The Council's Coffer (2) 79ef94.yaml new file mode 100644 index 000000000..648dbe990 --- /dev/null +++ b/unpacked/Custom_Model_Bag Neutral aef7dd/Card The Council's Coffer (2) 79ef94.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: "What\u2019s in the Box?" +GMNotes: '' +GUID: 79ef94 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: The Council's Coffer (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.229 + posY: 1.363674 + posZ: -49.7008 + rotX: 0.0208091885 + rotY: 269.999939 + rotZ: 0.0167708378 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Neutral aef7dd/Card The Red-Gloved Man (5) 6b6ed9.yaml b/unpacked/Custom_Model_Bag Neutral aef7dd/Card The Red-Gloved Man (5) 6b6ed9.yaml new file mode 100644 index 000000000..d8b77d24b --- /dev/null +++ b/unpacked/Custom_Model_Bag Neutral aef7dd/Card The Red-Gloved Man (5) 6b6ed9.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 292526 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2925': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: He Was Never There +GMNotes: '' +GUID: 6b6ed9 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: The Red-Gloved Man (5) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.229 + posY: 1.35761487 + posZ: -70.4007 + rotX: 0.0208089724 + rotY: 270.000061 + rotZ: 0.01677083 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Neutral aef7dd/Card Timeworn Brand (5) cf212b.yaml b/unpacked/Custom_Model_Bag Neutral aef7dd/Card Timeworn Brand (5) cf212b.yaml new file mode 100644 index 000000000..58f94aeb0 --- /dev/null +++ b/unpacked/Custom_Model_Bag Neutral aef7dd/Card Timeworn Brand (5) cf212b.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: cf212b +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Timeworn Brand (5) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.229 + posY: 1.35626841 + posZ: -75.0007 + rotX: 0.0208091121 + rotY: 270.000061 + rotZ: 0.0167703219 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Neutral aef7dd/Card Versatile (2) c1124f.yaml b/unpacked/Custom_Model_Bag Neutral aef7dd/Card Versatile (2) c1124f.yaml new file mode 100644 index 000000000..857f68bfd --- /dev/null +++ b/unpacked/Custom_Model_Bag Neutral aef7dd/Card Versatile (2) c1124f.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 379711 +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/1016065725025942034/FEADE7F6206804B42CC9B6049F51EDF6040C5D1D/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: c1124f +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Versatile (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 58.0997 + posY: 1.36936426 + posZ: -47.471 + rotX: 0.020808829 + rotY: 270.001068 + rotZ: 0.0167711247 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Neutral aef7dd/Custom_Model_Bag Neutral 2b3af2.ttslua b/unpacked/Custom_Model_Bag Neutral aef7dd/Custom_Model_Bag Neutral 2b3af2.ttslua new file mode 100644 index 000000000..f882a7f09 --- /dev/null +++ b/unpacked/Custom_Model_Bag Neutral aef7dd/Custom_Model_Bag Neutral 2b3af2.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,0,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 + 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=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,0,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,0,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,0,0}, height=350, width=750, + 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}, rotation={0,0,0}, height=350, width=800, + font_size=250, color={0,0,0}, font_color={1,1,1} + }) +-- self.createButton({ +-- label="Setup", click_function="buttonClick_setup", function_owner=self, +-- position={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.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 Neutral aef7dd/Custom_Model_Bag Neutral 2b3af2.yaml b/unpacked/Custom_Model_Bag Neutral aef7dd/Custom_Model_Bag Neutral 2b3af2.yaml new file mode 100644 index 000000000..289fb57d6 --- /dev/null +++ b/unpacked/Custom_Model_Bag Neutral aef7dd/Custom_Model_Bag Neutral 2b3af2.yaml @@ -0,0 +1,70 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +ContainedObjects: +- !include 'Custom_Model_Bag Neutral 2b3af2/Card Versatile (2) c1124f.yaml' +- !include 'Custom_Model_Bag Neutral 2b3af2/Card Emergency Cache (2) 1b1f60.yaml' +- !include 'Custom_Model_Bag Neutral 2b3af2/Card Lucid Dreaming (2) b5763a.yaml' +- !include 'Custom_Model_Bag Neutral 2b3af2/Card Emergency Cache (3) 73aab3.yaml' +- !include 'Custom_Model_Bag Neutral 2b3af2/Card Moment of Respite (3) d78375.yaml' +- !include 'Custom_Model_Bag Neutral 2b3af2/Card Ace of Rods (1) eef2a9.yaml' +- !include 'Custom_Model_Bag Neutral 2b3af2/Card The Council''s Coffer (2) 79ef94.yaml' +- !include 'Custom_Model_Bag Neutral 2b3af2/Card Charisma (3) 67dfca.yaml' +- !include 'Custom_Model_Bag Neutral 2b3af2/Card Relic Hunter (3) fa4c7c.yaml' +- !include 'Custom_Model_Bag Neutral 2b3af2/Card Bulletproof Vest (3) 8737b5.yaml' +- !include 'Custom_Model_Bag Neutral 2b3af2/Card Elder Sign Amulet (3) 0aece0.yaml' +- !include 'Custom_Model_Bag Neutral 2b3af2/Card Hemispheric Map (3) 519cc4.yaml' +- !include 'Custom_Model_Bag Neutral 2b3af2/Card Ornate Bow (3) 08097a.yaml' +- !include 'Custom_Model_Bag Neutral 2b3af2/Card Anna Kaslow (4) cd426b.yaml' +- !include 'Custom_Model_Bag Neutral 2b3af2/Card The Black Cat (5) 2acaa8.yaml' +- !include 'Custom_Model_Bag Neutral 2b3af2/Card The Red-Gloved Man (5) 6b6ed9.yaml' +- !include 'Custom_Model_Bag Neutral 2b3af2/Card Key of Ys (5) 1ea991.yaml' +- !include 'Custom_Model_Bag Neutral 2b3af2/Card Timeworn Brand (5) cf212b.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/952965722515017130/AD0A2EDADD663473879A6A391FACD32966983B17/ + MaterialIndex: 3 + MeshURL: https://pastebin.com/raw/ALrYhQGb + NormalURL: '' + TypeIndex: 6 +Description: '' +GMNotes: '' +GUID: 2b3af2 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Model_Bag Neutral 2b3af2.ttslua' +LuaScriptState: '{"ml":{"08097a":{"lock":false,"pos":{"x":44.229,"y":1.3596,"z":-63.5009},"rot":{"x":0.0208,"y":270.0001,"z":0.0168}},"0aece0":{"lock":false,"pos":{"x":44.229,"y":1.361,"z":-58.9008},"rot":{"x":0.0208,"y":270.0001,"z":0.0168}},"1b1f60":{"lock":false,"pos":{"x":52.9442,"y":1.3675,"z":-47.4203},"rot":{"x":0.0208,"y":270,"z":0.0168}},"1ea991":{"lock":false,"pos":{"x":44.229,"y":1.3569,"z":-72.7007},"rot":{"x":0.0208,"y":270,"z":0.0168}},"2acaa8":{"lock":false,"pos":{"x":44.229,"y":1.3583,"z":-68.1007},"rot":{"x":0.0208,"y":270.0002,"z":0.0168}},"519cc4":{"lock":false,"pos":{"x":44.229,"y":1.3603,"z":-61.2008},"rot":{"x":0.0208,"y":270.0001,"z":0.0168}},"67dfca":{"lock":false,"pos":{"x":44.229,"y":1.363,"z":-52.0008},"rot":{"x":0.0208,"y":270,"z":0.0168}},"6b6ed9":{"lock":false,"pos":{"x":44.229,"y":1.3576,"z":-70.4007},"rot":{"x":0.0208,"y":270.0001,"z":0.0168}},"73aab3":{"lock":false,"pos":{"x":52.9442,"y":1.3662,"z":-52.0203},"rot":{"x":0.0208,"y":270,"z":0.0168}},"79ef94":{"lock":false,"pos":{"x":44.229,"y":1.3637,"z":-49.7008},"rot":{"x":0.0208,"y":269.9999,"z":0.0168}},"8737b5":{"lock":false,"pos":{"x":44.229,"y":1.3617,"z":-56.6008},"rot":{"x":0.0208,"y":270.0001,"z":0.0168}},"b5763a":{"lock":false,"pos":{"x":52.9442,"y":1.3668,"z":-49.7203},"rot":{"x":0.0208,"y":269.9902,"z":0.0168}},"c1124f":{"lock":false,"pos":{"x":58.0997,"y":1.3694,"z":-47.471},"rot":{"x":0.0208,"y":270.0011,"z":0.0168}},"cd426b":{"lock":false,"pos":{"x":44.229,"y":1.359,"z":-65.8007},"rot":{"x":0.0208,"y":270.0002,"z":0.0168}},"cf212b":{"lock":false,"pos":{"x":44.229,"y":1.3563,"z":-75.0007},"rot":{"x":0.0208,"y":270.0001,"z":0.0168}},"d78375":{"lock":false,"pos":{"x":52.9442,"y":1.3655,"z":-54.3203},"rot":{"x":0.0208,"y":270,"z":0.0168}},"eef2a9":{"lock":false,"pos":{"x":44.229,"y":1.3643,"z":-47.4008},"rot":{"x":0.0208,"y":270.0001,"z":0.0168}},"fa4c7c":{"lock":false,"pos":{"x":44.229,"y":1.3623,"z":-54.3008},"rot":{"x":0.0208,"y":270.0001,"z":0.0168}}}}' +MaterialIndex: -1 +MeshIndex: -1 +Name: Custom_Model_Bag +Nickname: Neutral +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 66.31278 + posY: 1.664095 + posZ: -90.8376 + rotX: 0.0134947635 + rotY: 270.010925 + rotZ: 0.01417013 + scaleX: 1.2 + scaleY: 1.2 + scaleZ: 1.2 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Neutral aef7dd/Custom_Model_Bag Neutral 2b3af2/Card Ace of Rods (1) eef2a9.yaml b/unpacked/Custom_Model_Bag Neutral aef7dd/Custom_Model_Bag Neutral 2b3af2/Card Ace of Rods (1) eef2a9.yaml new file mode 100644 index 000000000..a33a75a26 --- /dev/null +++ b/unpacked/Custom_Model_Bag Neutral aef7dd/Custom_Model_Bag Neutral 2b3af2/Card Ace of Rods (1) eef2a9.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 292603 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2926': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025942034/FEADE7F6206804B42CC9B6049F51EDF6040C5D1D/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: The Fateful Step +GMNotes: '' +GUID: eef2a9 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Ace of Rods (1) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.229 + posY: 1.36434734 + posZ: -47.4008 + rotX: 0.020809507 + rotY: 270.000061 + rotZ: 0.0167706721 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Neutral aef7dd/Custom_Model_Bag Neutral 2b3af2/Card Anna Kaslow (4) cd426b.yaml b/unpacked/Custom_Model_Bag Neutral aef7dd/Custom_Model_Bag Neutral 2b3af2/Card Anna Kaslow (4) cd426b.yaml new file mode 100644 index 000000000..44502b629 --- /dev/null +++ b/unpacked/Custom_Model_Bag Neutral aef7dd/Custom_Model_Bag Neutral 2b3af2/Card Anna Kaslow (4) cd426b.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Mysterious Soothsayer +GMNotes: '' +GUID: cd426b +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Anna Kaslow (4) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.229 + posY: 1.35896146 + posZ: -65.8007 + rotX: 0.0208091084 + rotY: 270.000244 + rotZ: 0.0167710967 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Neutral aef7dd/Custom_Model_Bag Neutral 2b3af2/Card Bulletproof Vest (3) 8737b5.yaml b/unpacked/Custom_Model_Bag Neutral aef7dd/Custom_Model_Bag Neutral 2b3af2/Card Bulletproof Vest (3) 8737b5.yaml new file mode 100644 index 000000000..6cd1574b4 --- /dev/null +++ b/unpacked/Custom_Model_Bag Neutral aef7dd/Custom_Model_Bag Neutral 2b3af2/Card Bulletproof Vest (3) 8737b5.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 292521 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2925': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 8737b5 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Bulletproof Vest (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.229 + posY: 1.3616544 + posZ: -56.6008 + rotX: 0.0208089836 + rotY: 270.0001 + rotZ: 0.0167706534 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Neutral aef7dd/Custom_Model_Bag Neutral 2b3af2/Card Charisma (3) 67dfca.yaml b/unpacked/Custom_Model_Bag Neutral aef7dd/Custom_Model_Bag Neutral 2b3af2/Card Charisma (3) 67dfca.yaml new file mode 100644 index 000000000..ea85c5f1d --- /dev/null +++ b/unpacked/Custom_Model_Bag Neutral aef7dd/Custom_Model_Bag Neutral 2b3af2/Card Charisma (3) 67dfca.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 292524 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2925': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 67dfca +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Charisma (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.229 + posY: 1.36300075 + posZ: -52.0008 + rotX: 0.0208092146 + rotY: 270.0 + rotZ: 0.0167702865 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Neutral aef7dd/Custom_Model_Bag Neutral 2b3af2/Card Elder Sign Amulet (3) 0aece0.yaml b/unpacked/Custom_Model_Bag Neutral aef7dd/Custom_Model_Bag Neutral 2b3af2/Card Elder Sign Amulet (3) 0aece0.yaml new file mode 100644 index 000000000..6c6d619a4 --- /dev/null +++ b/unpacked/Custom_Model_Bag Neutral aef7dd/Custom_Model_Bag Neutral 2b3af2/Card Elder Sign Amulet (3) 0aece0.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 292522 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2925': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 0aece0 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Elder Sign Amulet (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.229 + posY: 1.36098111 + posZ: -58.9008 + rotX: 0.0208092052 + rotY: 270.0001 + rotZ: 0.0167707577 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Neutral aef7dd/Custom_Model_Bag Neutral 2b3af2/Card Emergency Cache (2) 1b1f60.yaml b/unpacked/Custom_Model_Bag Neutral aef7dd/Custom_Model_Bag Neutral 2b3af2/Card Emergency Cache (2) 1b1f60.yaml new file mode 100644 index 000000000..1c5f19e91 --- /dev/null +++ b/unpacked/Custom_Model_Bag Neutral aef7dd/Custom_Model_Bag Neutral 2b3af2/Card Emergency Cache (2) 1b1f60.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 292519 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2925': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 1b1f60 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Emergency Cache (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 52.9442 + posY: 1.36750674 + posZ: -47.4203 + rotX: 0.0208090581 + rotY: 270.0 + rotZ: 0.0167705175 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Neutral aef7dd/Custom_Model_Bag Neutral 2b3af2/Card Emergency Cache (3) 73aab3.yaml b/unpacked/Custom_Model_Bag Neutral aef7dd/Custom_Model_Bag Neutral 2b3af2/Card Emergency Cache (3) 73aab3.yaml new file mode 100644 index 000000000..d143de4a3 --- /dev/null +++ b/unpacked/Custom_Model_Bag Neutral aef7dd/Custom_Model_Bag Neutral 2b3af2/Card Emergency Cache (3) 73aab3.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 292520 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2925': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 73aab3 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Emergency Cache (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 52.9442 + posY: 1.36616015 + posZ: -52.0203 + rotX: 0.0208091345 + rotY: 270.0 + rotZ: 0.0167707652 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Neutral aef7dd/Custom_Model_Bag Neutral 2b3af2/Card Hemispheric Map (3) 519cc4.yaml b/unpacked/Custom_Model_Bag Neutral aef7dd/Custom_Model_Bag Neutral 2b3af2/Card Hemispheric Map (3) 519cc4.yaml new file mode 100644 index 000000000..db3dec402 --- /dev/null +++ b/unpacked/Custom_Model_Bag Neutral aef7dd/Custom_Model_Bag Neutral 2b3af2/Card Hemispheric Map (3) 519cc4.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 519cc4 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Hemispheric Map (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.229 + posY: 1.36030781 + posZ: -61.2008 + rotX: 0.0208092071 + rotY: 270.000061 + rotZ: 0.0167705733 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Neutral aef7dd/Custom_Model_Bag Neutral 2b3af2/Card Key of Ys (5) 1ea991.yaml b/unpacked/Custom_Model_Bag Neutral aef7dd/Custom_Model_Bag Neutral 2b3af2/Card Key of Ys (5) 1ea991.yaml new file mode 100644 index 000000000..f57675a28 --- /dev/null +++ b/unpacked/Custom_Model_Bag Neutral aef7dd/Custom_Model_Bag Neutral 2b3af2/Card Key of Ys (5) 1ea991.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 292527 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2925': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: Let the Storm Rage +GMNotes: '' +GUID: 1ea991 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Key of Ys (5) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.22897 + posY: 1.3569417 + posZ: -72.70072 + rotX: 0.0208077747 + rotY: 270.000031 + rotZ: 0.0167698935 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Neutral aef7dd/Custom_Model_Bag Neutral 2b3af2/Card Lucid Dreaming (2) b5763a.yaml b/unpacked/Custom_Model_Bag Neutral aef7dd/Custom_Model_Bag Neutral 2b3af2/Card Lucid Dreaming (2) b5763a.yaml new file mode 100644 index 000000000..7979591f6 --- /dev/null +++ b/unpacked/Custom_Model_Bag Neutral aef7dd/Custom_Model_Bag Neutral 2b3af2/Card Lucid Dreaming (2) b5763a.yaml @@ -0,0 +1,42 @@ +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/1016065725025942034/FEADE7F6206804B42CC9B6049F51EDF6040C5D1D/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: Spell. +GMNotes: '' +GUID: b5763a +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Lucid Dreaming (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 52.9442 + posY: 1.36683357 + posZ: -49.7203 + rotX: 0.0208120048 + rotY: 269.990234 + rotZ: 0.0167667866 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Neutral aef7dd/Custom_Model_Bag Neutral 2b3af2/Card Moment of Respite (3) d78375.yaml b/unpacked/Custom_Model_Bag Neutral aef7dd/Custom_Model_Bag Neutral 2b3af2/Card Moment of Respite (3) d78375.yaml new file mode 100644 index 000000000..8407d345e --- /dev/null +++ b/unpacked/Custom_Model_Bag Neutral aef7dd/Custom_Model_Bag Neutral 2b3af2/Card Moment of Respite (3) d78375.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 292525 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2925': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: d78375 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Moment of Respite (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 52.9442 + posY: 1.365487 + posZ: -54.3203 + rotX: 0.0208089072 + rotY: 270.0 + rotZ: 0.0167705063 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Neutral aef7dd/Custom_Model_Bag Neutral 2b3af2/Card Ornate Bow (3) 08097a.yaml b/unpacked/Custom_Model_Bag Neutral aef7dd/Custom_Model_Bag Neutral 2b3af2/Card Ornate Bow (3) 08097a.yaml new file mode 100644 index 000000000..193af0cd5 --- /dev/null +++ b/unpacked/Custom_Model_Bag Neutral aef7dd/Custom_Model_Bag Neutral 2b3af2/Card Ornate Bow (3) 08097a.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 292528 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2925': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 08097a +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Ornate Bow (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.229 + posY: 1.35963464 + posZ: -63.5009 + rotX: 0.0208092127 + rotY: 270.000122 + rotZ: 0.0167706516 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Neutral aef7dd/Custom_Model_Bag Neutral 2b3af2/Card Relic Hunter (3) fa4c7c.yaml b/unpacked/Custom_Model_Bag Neutral aef7dd/Custom_Model_Bag Neutral 2b3af2/Card Relic Hunter (3) fa4c7c.yaml new file mode 100644 index 000000000..5d29fb2bc --- /dev/null +++ b/unpacked/Custom_Model_Bag Neutral aef7dd/Custom_Model_Bag Neutral 2b3af2/Card Relic Hunter (3) fa4c7c.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 292523 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2925': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: fa4c7c +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Relic Hunter (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.229 + posY: 1.36232758 + posZ: -54.3008 + rotX: 0.0208092779 + rotY: 270.000122 + rotZ: 0.0167706534 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Neutral aef7dd/Custom_Model_Bag Neutral 2b3af2/Card The Black Cat (5) 2acaa8.yaml b/unpacked/Custom_Model_Bag Neutral aef7dd/Custom_Model_Bag Neutral 2b3af2/Card The Black Cat (5) 2acaa8.yaml new file mode 100644 index 000000000..a9fa3fee7 --- /dev/null +++ b/unpacked/Custom_Model_Bag Neutral aef7dd/Custom_Model_Bag Neutral 2b3af2/Card The Black Cat (5) 2acaa8.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: A Liar, or a Prophet, or Both +GMNotes: '' +GUID: 2acaa8 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: The Black Cat (5) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.2289772 + posY: 1.35828817 + posZ: -68.1006851 + rotX: 0.0208076313 + rotY: 270.000244 + rotZ: 0.0167705528 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Neutral aef7dd/Custom_Model_Bag Neutral 2b3af2/Card The Council's Coffer (2) 79ef94.yaml b/unpacked/Custom_Model_Bag Neutral aef7dd/Custom_Model_Bag Neutral 2b3af2/Card The Council's Coffer (2) 79ef94.yaml new file mode 100644 index 000000000..82b1f432e --- /dev/null +++ b/unpacked/Custom_Model_Bag Neutral aef7dd/Custom_Model_Bag Neutral 2b3af2/Card The Council's Coffer (2) 79ef94.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: "What\u2019s in the Box?" +GMNotes: '' +GUID: 79ef94 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: The Council's Coffer (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.229 + posY: 1.363674 + posZ: -49.7008 + rotX: 0.020809304 + rotY: 269.999939 + rotZ: 0.0167706218 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Neutral aef7dd/Custom_Model_Bag Neutral 2b3af2/Card The Red-Gloved Man (5) 6b6ed9.yaml b/unpacked/Custom_Model_Bag Neutral aef7dd/Custom_Model_Bag Neutral 2b3af2/Card The Red-Gloved Man (5) 6b6ed9.yaml new file mode 100644 index 000000000..a93423002 --- /dev/null +++ b/unpacked/Custom_Model_Bag Neutral aef7dd/Custom_Model_Bag Neutral 2b3af2/Card The Red-Gloved Man (5) 6b6ed9.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 292526 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2925': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: He Was Never There +GMNotes: '' +GUID: 6b6ed9 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: The Red-Gloved Man (5) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.2289734 + posY: 1.357615 + posZ: -70.40069 + rotX: 0.020807419 + rotY: 270.000061 + rotZ: 0.0167700369 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Neutral aef7dd/Custom_Model_Bag Neutral 2b3af2/Card Timeworn Brand (5) cf212b.yaml b/unpacked/Custom_Model_Bag Neutral aef7dd/Custom_Model_Bag Neutral 2b3af2/Card Timeworn Brand (5) cf212b.yaml new file mode 100644 index 000000000..4d9e20fc9 --- /dev/null +++ b/unpacked/Custom_Model_Bag Neutral aef7dd/Custom_Model_Bag Neutral 2b3af2/Card Timeworn Brand (5) cf212b.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: cf212b +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Timeworn Brand (5) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.2289658 + posY: 1.35626853 + posZ: -75.00074 + rotX: 0.0208072048 + rotY: 270.000061 + rotZ: 0.0167703182 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Neutral aef7dd/Custom_Model_Bag Neutral 2b3af2/Card Versatile (2) c1124f.yaml b/unpacked/Custom_Model_Bag Neutral aef7dd/Custom_Model_Bag Neutral 2b3af2/Card Versatile (2) c1124f.yaml new file mode 100644 index 000000000..f605cc583 --- /dev/null +++ b/unpacked/Custom_Model_Bag Neutral aef7dd/Custom_Model_Bag Neutral 2b3af2/Card Versatile (2) c1124f.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 379711 +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/1016065725025942034/FEADE7F6206804B42CC9B6049F51EDF6040C5D1D/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: c1124f +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Versatile (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 58.0997 + posY: 1.36936426 + posZ: -47.471 + rotX: 0.02080911 + rotY: 270.001068 + rotZ: 0.0167708769 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Neutral c5261f.ttslua b/unpacked/Custom_Model_Bag Neutral c5261f.ttslua new file mode 100644 index 000000000..ba2c9c0f7 --- /dev/null +++ b/unpacked/Custom_Model_Bag Neutral c5261f.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,0,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 + 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=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,0,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,0,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.9,0,2}, rotation={0,0,0}, height=350, width=750, + 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.9,0,2}, rotation={0,0,0}, height=350, width=800, + font_size=250, color={0,0,0}, font_color={1,1,1} + }) +-- self.createButton({ +-- label="Setup", click_function="buttonClick_setup", function_owner=self, +-- position={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.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 \ No newline at end of file diff --git a/unpacked/Custom_Model_Bag Neutral c5261f.yaml b/unpacked/Custom_Model_Bag Neutral c5261f.yaml new file mode 100644 index 000000000..69d5d46cf --- /dev/null +++ b/unpacked/Custom_Model_Bag Neutral c5261f.yaml @@ -0,0 +1,66 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +ContainedObjects: +- !include 'Custom_Model_Bag Neutral c5261f/Custom_Model_Bag Neutral 141327.yaml' +- !include 'Custom_Model_Bag Neutral c5261f/Card Guardian of the Crystallizer 100e24.yaml' +- !include 'Custom_Model_Bag Neutral c5261f/Card Augur 143e38.yaml' +- !include 'Custom_Model_Bag Neutral c5261f/Card Bloodlust 14c7e0.yaml' +- !include 'Custom_Model_Bag Neutral c5261f/Card Wish Eater 20570c.yaml' +- !include 'Custom_Model_Bag Neutral c5261f/Card Pendant of the Queen 29f699.yaml' +- !include 'Custom_Model_Bag Neutral c5261f/Card The Stars Are Right 406a2b.yaml' +- !include 'Custom_Model_Bag Neutral c5261f/Card Unbound Beast 4a8eef.yaml' +- !include 'Custom_Model_Bag Neutral c5261f/Card Blood-Rite 4cc413.yaml' +- !include 'Custom_Model_Bag Neutral c5261f/Card Hope 4da36d.yaml' +- !include 'Custom_Model_Bag Neutral c5261f/Card Zeal 506382.yaml' +- !include 'Custom_Model_Bag Neutral c5261f/Card Essence of the Dream 6ad46b.yaml' +- !include 'Custom_Model_Bag Neutral c5261f/Card Soothing Melody 6ced1f.yaml' +- !include 'Custom_Model_Bag Neutral c5261f/Card Dream Parasite cb91bd.yaml' +CustomMesh: + CastShadows: true + ColliderURL: '' + Convex: true + CustomShader: + FresnelStrength: 0.0 + SpecularColor: + b: 1.0 + g: 1.0 + r: 1.0 + SpecularIntensity: 0.0 + SpecularSharpness: 2.0 + DiffuseURL: http://cloud-3.steamusercontent.com/ugc/784110538847770224/4D6AB235B353C755559B14FF6B92C257DBEC075B/ + MaterialIndex: 3 + MeshURL: https://pastebin.com/raw/ALrYhQGb + NormalURL: '' + TypeIndex: 6 +Description: '' +GMNotes: '' +GUID: c5261f +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: true +LuaScript: !include 'Custom_Model_Bag Neutral c5261f.ttslua' +LuaScriptState: '{"ml":{"100e24":{"lock":false,"pos":{"x":-33.8782,"y":1.3296,"z":69.509},"rot":{"x":0.0208,"y":269.9948,"z":0.0168}},"143e38":{"lock":false,"pos":{"x":-33.8782,"y":1.3269,"z":60.3088},"rot":{"x":0.0208,"y":269.9949,"z":0.0168}},"14c7e0":{"lock":false,"pos":{"x":-33.8782,"y":1.333,"z":81.009},"rot":{"x":0.0208,"y":269.9948,"z":0.0168}},"20570c":{"lock":false,"pos":{"x":-33.8782,"y":1.3337,"z":83.309},"rot":{"x":0.0208,"y":269.9898,"z":0.0168}},"29f699":{"lock":false,"pos":{"x":-33.8782,"y":1.3323,"z":78.709},"rot":{"x":0.0208,"y":269.9948,"z":0.0168}},"406a2b":{"lock":false,"pos":{"x":-33.8782,"y":1.3303,"z":71.809},"rot":{"x":0.0208,"y":269.9946,"z":0.0168}},"4a8eef":{"lock":false,"pos":{"x":-33.8782,"y":1.329,"z":67.209},"rot":{"x":0.0208,"y":269.9872,"z":0.0168}},"4cc413":{"lock":false,"pos":{"x":-33.8782,"y":1.3316,"z":76.409},"rot":{"x":0.0208,"y":269.9948,"z":0.0168}},"4da36d":{"lock":false,"pos":{"x":-33.8782,"y":1.3276,"z":62.6088},"rot":{"x":0.0208,"y":269.9948,"z":0.0168}},"506382":{"lock":false,"pos":{"x":-33.8782,"y":1.3283,"z":64.909},"rot":{"x":0.0208,"y":269.9948,"z":0.0168}},"6ad46b":{"lock":false,"pos":{"x":-33.8782,"y":1.331,"z":74.109},"rot":{"x":0.0208,"y":269.9683,"z":0.0168}},"6ced1f":{"lock":false,"pos":{"x":-33.8782,"y":1.3343,"z":85.609},"rot":{"x":0.0208,"y":269.9947,"z":0.0168}},"cb91bd":{"lock":false,"pos":{"x":-33.8782,"y":1.3263,"z":58.0087},"rot":{"x":0.0208,"y":270.021,"z":0.0168}}}}' +MaterialIndex: -1 +MeshIndex: -1 +Name: Custom_Model_Bag +Nickname: Neutral +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -33.8005447 + posY: 1.38440692 + posZ: 91.60289 + rotX: 0.0208070949 + rotY: 270.011353 + rotZ: 0.0167744439 + scaleX: 1.2 + scaleY: 1.2 + scaleZ: 1.2 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Neutral c5261f/Card Augur 143e38.yaml b/unpacked/Custom_Model_Bag Neutral c5261f/Card Augur 143e38.yaml new file mode 100644 index 000000000..47a39813f --- /dev/null +++ b/unpacked/Custom_Model_Bag Neutral c5261f/Card Augur 143e38.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 143e38 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Augur +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -33.8782 + posY: 1.32693231 + posZ: 60.3088 + rotX: 0.0208106656 + rotY: 269.994873 + rotZ: 0.0167691782 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Neutral c5261f/Card Blood-Rite 4cc413.yaml b/unpacked/Custom_Model_Bag Neutral c5261f/Card Blood-Rite 4cc413.yaml new file mode 100644 index 000000000..622885cbd --- /dev/null +++ b/unpacked/Custom_Model_Bag Neutral c5261f/Card Blood-Rite 4cc413.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 4cc413 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Blood-Rite +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -33.8782 + posY: 1.331645 + posZ: 76.409 + rotX: 0.0208108071 + rotY: 269.994781 + rotZ: 0.0167689044 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Neutral c5261f/Card Bloodlust 14c7e0.yaml b/unpacked/Custom_Model_Bag Neutral c5261f/Card Bloodlust 14c7e0.yaml new file mode 100644 index 000000000..a91343a2b --- /dev/null +++ b/unpacked/Custom_Model_Bag Neutral c5261f/Card Bloodlust 14c7e0.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 449225 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '4492': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025943109/9C5481E6DFEACD450C5522F884E615482281DDB1/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: Treachery +GMNotes: '' +GUID: 14c7e0 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Bloodlust +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -33.8782 + posY: 1.3329916 + posZ: 81.009 + rotX: 0.0208106618 + rotY: 269.9948 + rotZ: 0.01676881 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Neutral c5261f/Card Dream Parasite cb91bd.yaml b/unpacked/Custom_Model_Bag Neutral c5261f/Card Dream Parasite cb91bd.yaml new file mode 100644 index 000000000..9ef30761f --- /dev/null +++ b/unpacked/Custom_Model_Bag Neutral c5261f/Card Dream Parasite cb91bd.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Weakness +GMNotes: '' +GUID: cb91bd +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Dream Parasite +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -33.8782 + posY: 1.326259 + posZ: 58.0087 + rotX: 0.02080313 + rotY: 270.021 + rotZ: 0.016778145 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Neutral c5261f/Card Essence of the Dream 6ad46b.yaml b/unpacked/Custom_Model_Bag Neutral c5261f/Card Essence of the Dream 6ad46b.yaml new file mode 100644 index 000000000..7ab79b2d7 --- /dev/null +++ b/unpacked/Custom_Model_Bag Neutral c5261f/Card Essence of the Dream 6ad46b.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 6ad46b +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Essence of the Dream +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -33.8782 + posY: 1.33097184 + posZ: 74.109 + rotX: 0.0208185334 + rotY: 269.968262 + rotZ: 0.01675914 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Neutral c5261f/Card Guardian of the Crystallizer 100e24.yaml b/unpacked/Custom_Model_Bag Neutral c5261f/Card Guardian of the Crystallizer 100e24.yaml new file mode 100644 index 000000000..11635944f --- /dev/null +++ b/unpacked/Custom_Model_Bag Neutral c5261f/Card Guardian of the Crystallizer 100e24.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 100e24 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Guardian of the Crystallizer +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -33.8782 + posY: 1.32962537 + posZ: 69.509 + rotX: 0.0208107661 + rotY: 269.994781 + rotZ: 0.01676891 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Neutral c5261f/Card Hope 4da36d.yaml b/unpacked/Custom_Model_Bag Neutral c5261f/Card Hope 4da36d.yaml new file mode 100644 index 000000000..cc9706d89 --- /dev/null +++ b/unpacked/Custom_Model_Bag Neutral c5261f/Card Hope 4da36d.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 440624 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '4406': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025946328/561232524C8EAA4B4371B28652F78969E6ED6FFB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 4da36d +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Hope +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -33.8782 + posY: 1.32760549 + posZ: 62.6088 + rotX: 0.0208108947 + rotY: 269.994751 + rotZ: 0.0167685635 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Neutral c5261f/Card Pendant of the Queen 29f699.yaml b/unpacked/Custom_Model_Bag Neutral c5261f/Card Pendant of the Queen 29f699.yaml new file mode 100644 index 000000000..9e72af891 --- /dev/null +++ b/unpacked/Custom_Model_Bag Neutral c5261f/Card Pendant of the Queen 29f699.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 449327 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '4493': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025943833/DE98A03934DF8FF5B3CF6C53143B15BFC3ED7341/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: Of Nothing at All +GMNotes: '' +GUID: 29f699 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Pendant of the Queen +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -33.8782 + posY: 1.33231831 + posZ: 78.709 + rotX: 0.02081063 + rotY: 269.994751 + rotZ: 0.0167686958 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Neutral c5261f/Card Soothing Melody 6ced1f.yaml b/unpacked/Custom_Model_Bag Neutral c5261f/Card Soothing Melody 6ced1f.yaml new file mode 100644 index 000000000..99747dc84 --- /dev/null +++ b/unpacked/Custom_Model_Bag Neutral c5261f/Card Soothing Melody 6ced1f.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 6ced1f +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Soothing Melody +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -33.8782 + posY: 1.33433807 + posZ: 85.609 + rotX: 0.0208107922 + rotY: 269.9947 + rotZ: 0.0167688318 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Neutral c5261f/Card The Stars Are Right 406a2b.yaml b/unpacked/Custom_Model_Bag Neutral c5261f/Card The Stars Are Right 406a2b.yaml new file mode 100644 index 000000000..18d2dc3a6 --- /dev/null +++ b/unpacked/Custom_Model_Bag Neutral c5261f/Card The Stars Are Right 406a2b.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 449423 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '4494': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025945336/04E36F64C2CBE1B4905FF44A869C75EC52CB3A56/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 406a2b +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: The Stars Are Right +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -33.8782 + posY: 1.33029854 + posZ: 71.809 + rotX: 0.02081069 + rotY: 269.994629 + rotZ: 0.0167687759 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Neutral c5261f/Card Unbound Beast 4a8eef.yaml b/unpacked/Custom_Model_Bag Neutral c5261f/Card Unbound Beast 4a8eef.yaml new file mode 100644 index 000000000..860ccb0a9 --- /dev/null +++ b/unpacked/Custom_Model_Bag Neutral c5261f/Card Unbound Beast 4a8eef.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 449136 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '4491': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025945336/04E36F64C2CBE1B4905FF44A869C75EC52CB3A56/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: Monster. Extradimensional. Tindalos. +GMNotes: '' +GUID: 4a8eef +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Unbound Beast +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -33.8782 + posY: 1.32895207 + posZ: 67.209 + rotX: 0.0208129548 + rotY: 269.9872 + rotZ: 0.01676614 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Neutral c5261f/Card Wish Eater 20570c.yaml b/unpacked/Custom_Model_Bag Neutral c5261f/Card Wish Eater 20570c.yaml new file mode 100644 index 000000000..68640c4c4 --- /dev/null +++ b/unpacked/Custom_Model_Bag Neutral c5261f/Card Wish Eater 20570c.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Jewel of the Gods +GMNotes: '' +GUID: 20570c +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Wish Eater +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -33.8782 + posY: 1.33366477 + posZ: 83.309 + rotX: 0.0208120551 + rotY: 269.989838 + rotZ: 0.01676721 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Neutral c5261f/Card Zeal 506382.yaml b/unpacked/Custom_Model_Bag Neutral c5261f/Card Zeal 506382.yaml new file mode 100644 index 000000000..0c52635c8 --- /dev/null +++ b/unpacked/Custom_Model_Bag Neutral c5261f/Card Zeal 506382.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: '506382' +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Zeal +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -33.8782 + posY: 1.32827878 + posZ: 64.909 + rotX: 0.0208107568 + rotY: 269.994751 + rotZ: 0.0167689919 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Neutral c5261f/Custom_Model_Bag Neutral 141327.ttslua b/unpacked/Custom_Model_Bag Neutral c5261f/Custom_Model_Bag Neutral 141327.ttslua new file mode 100644 index 000000000..ae681fad2 --- /dev/null +++ b/unpacked/Custom_Model_Bag Neutral c5261f/Custom_Model_Bag Neutral 141327.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,0,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 + 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=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,0,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,0,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.9,0,2}, rotation={0,0,0}, height=350, width=750, + 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.9,0,2}, rotation={0,0,0}, height=350, width=800, + font_size=250, color={0,0,0}, font_color={1,1,1} + }) +-- self.createButton({ +-- label="Setup", click_function="buttonClick_setup", function_owner=self, +-- position={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.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 Neutral c5261f/Custom_Model_Bag Neutral 141327.yaml b/unpacked/Custom_Model_Bag Neutral c5261f/Custom_Model_Bag Neutral 141327.yaml new file mode 100644 index 000000000..5549dc7cf --- /dev/null +++ b/unpacked/Custom_Model_Bag Neutral c5261f/Custom_Model_Bag Neutral 141327.yaml @@ -0,0 +1,65 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +ContainedObjects: +- !include 'Custom_Model_Bag Neutral 141327/Card Soothing Melody 6ced1f.yaml' +- !include 'Custom_Model_Bag Neutral 141327/Card Wish Eater 20570c.yaml' +- !include 'Custom_Model_Bag Neutral 141327/Card Bloodlust 14c7e0.yaml' +- !include 'Custom_Model_Bag Neutral 141327/Card Pendant of the Queen 29f699.yaml' +- !include 'Custom_Model_Bag Neutral 141327/Card Blood-Rite 4cc413.yaml' +- !include 'Custom_Model_Bag Neutral 141327/Card Essence of the Dream 6ad46b.yaml' +- !include 'Custom_Model_Bag Neutral 141327/Card The Stars Are Right 406a2b.yaml' +- !include 'Custom_Model_Bag Neutral 141327/Card Guardian of the Crystallizer 100e24.yaml' +- !include 'Custom_Model_Bag Neutral 141327/Card Unbound Beast 4a8eef.yaml' +- !include 'Custom_Model_Bag Neutral 141327/Card Zeal 506382.yaml' +- !include 'Custom_Model_Bag Neutral 141327/Card Hope 4da36d.yaml' +- !include 'Custom_Model_Bag Neutral 141327/Card Augur 143e38.yaml' +- !include 'Custom_Model_Bag Neutral 141327/Card Dream Parasite cb91bd.yaml' +CustomMesh: + CastShadows: true + ColliderURL: '' + Convex: true + CustomShader: + FresnelStrength: 0.0 + SpecularColor: + b: 1.0 + g: 1.0 + r: 1.0 + SpecularIntensity: 0.0 + SpecularSharpness: 2.0 + DiffuseURL: http://cloud-3.steamusercontent.com/ugc/784110538847770224/4D6AB235B353C755559B14FF6B92C257DBEC075B/ + MaterialIndex: 3 + MeshURL: https://pastebin.com/raw/ALrYhQGb + NormalURL: '' + TypeIndex: 6 +Description: '' +GMNotes: '' +GUID: '141327' +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Model_Bag Neutral 141327.ttslua' +LuaScriptState: '{"ml":{"100e24":{"lock":false,"pos":{"x":-33.8782,"y":1.3296,"z":69.509},"rot":{"x":0.0208,"y":269.9948,"z":0.0168}},"143e38":{"lock":false,"pos":{"x":-33.8782,"y":1.3269,"z":60.3088},"rot":{"x":0.0208,"y":269.9949,"z":0.0168}},"14c7e0":{"lock":false,"pos":{"x":-33.8782,"y":1.333,"z":81.009},"rot":{"x":0.0208,"y":269.9948,"z":0.0168}},"20570c":{"lock":false,"pos":{"x":-33.8782,"y":1.3337,"z":83.309},"rot":{"x":0.0208,"y":269.9898,"z":0.0168}},"29f699":{"lock":false,"pos":{"x":-33.8782,"y":1.3323,"z":78.709},"rot":{"x":0.0208,"y":269.9948,"z":0.0168}},"406a2b":{"lock":false,"pos":{"x":-33.8782,"y":1.3303,"z":71.809},"rot":{"x":0.0208,"y":269.9946,"z":0.0168}},"4a8eef":{"lock":false,"pos":{"x":-33.8782,"y":1.329,"z":67.209},"rot":{"x":0.0208,"y":269.9872,"z":0.0168}},"4cc413":{"lock":false,"pos":{"x":-33.8782,"y":1.3316,"z":76.409},"rot":{"x":0.0208,"y":269.9948,"z":0.0168}},"4da36d":{"lock":false,"pos":{"x":-33.8782,"y":1.3276,"z":62.6088},"rot":{"x":0.0208,"y":269.9948,"z":0.0168}},"506382":{"lock":false,"pos":{"x":-33.8782,"y":1.3283,"z":64.909},"rot":{"x":0.0208,"y":269.9948,"z":0.0168}},"6ad46b":{"lock":false,"pos":{"x":-33.8782,"y":1.331,"z":74.109},"rot":{"x":0.0208,"y":269.9683,"z":0.0168}},"6ced1f":{"lock":false,"pos":{"x":-33.8782,"y":1.3343,"z":85.609},"rot":{"x":0.0208,"y":269.9947,"z":0.0168}},"cb91bd":{"lock":false,"pos":{"x":-33.8782,"y":1.3263,"z":58.0087},"rot":{"x":0.0208,"y":270.021,"z":0.0168}}}}' +MaterialIndex: -1 +MeshIndex: -1 +Name: Custom_Model_Bag +Nickname: Neutral +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -33.801445 + posY: 1.63565671 + posZ: 91.6034 + rotX: 0.0105357412 + rotY: 270.011353 + rotZ: 0.0131255062 + scaleX: 1.2 + scaleY: 1.2 + scaleZ: 1.2 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Neutral c5261f/Custom_Model_Bag Neutral 141327/Card Augur 143e38.yaml b/unpacked/Custom_Model_Bag Neutral c5261f/Custom_Model_Bag Neutral 141327/Card Augur 143e38.yaml new file mode 100644 index 000000000..9c8176f7e --- /dev/null +++ b/unpacked/Custom_Model_Bag Neutral c5261f/Custom_Model_Bag Neutral 141327/Card Augur 143e38.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 143e38 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Augur +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -33.8782234 + posY: 1.32693231 + posZ: 60.30876 + rotX: 0.0208111871 + rotY: 269.994873 + rotZ: 0.0167706 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Neutral c5261f/Custom_Model_Bag Neutral 141327/Card Blood-Rite 4cc413.yaml b/unpacked/Custom_Model_Bag Neutral c5261f/Custom_Model_Bag Neutral 141327/Card Blood-Rite 4cc413.yaml new file mode 100644 index 000000000..2906aee61 --- /dev/null +++ b/unpacked/Custom_Model_Bag Neutral c5261f/Custom_Model_Bag Neutral 141327/Card Blood-Rite 4cc413.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 4cc413 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Blood-Rite +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -33.878212 + posY: 1.33164513 + posZ: 76.40904 + rotX: 0.0208101254 + rotY: 269.994781 + rotZ: 0.0167679675 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Neutral c5261f/Custom_Model_Bag Neutral 141327/Card Bloodlust 14c7e0.yaml b/unpacked/Custom_Model_Bag Neutral c5261f/Custom_Model_Bag Neutral 141327/Card Bloodlust 14c7e0.yaml new file mode 100644 index 000000000..cb07a4ddd --- /dev/null +++ b/unpacked/Custom_Model_Bag Neutral c5261f/Custom_Model_Bag Neutral 141327/Card Bloodlust 14c7e0.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 449225 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '4492': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025943109/9C5481E6DFEACD450C5522F884E615482281DDB1/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: Treachery +GMNotes: '' +GUID: 14c7e0 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Bloodlust +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -33.87822 + posY: 1.3329916 + posZ: 81.00904 + rotX: 0.0208089873 + rotY: 269.9948 + rotZ: 0.0167686958 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Neutral c5261f/Custom_Model_Bag Neutral 141327/Card Dream Parasite cb91bd.yaml b/unpacked/Custom_Model_Bag Neutral c5261f/Custom_Model_Bag Neutral 141327/Card Dream Parasite cb91bd.yaml new file mode 100644 index 000000000..eaa01cb16 --- /dev/null +++ b/unpacked/Custom_Model_Bag Neutral c5261f/Custom_Model_Bag Neutral 141327/Card Dream Parasite cb91bd.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Weakness +GMNotes: '' +GUID: cb91bd +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Dream Parasite +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -33.87823 + posY: 1.3262589 + posZ: 58.0087471 + rotX: 0.020802943 + rotY: 270.021 + rotZ: 0.0167806465 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Neutral c5261f/Custom_Model_Bag Neutral 141327/Card Essence of the Dream 6ad46b.yaml b/unpacked/Custom_Model_Bag Neutral c5261f/Custom_Model_Bag Neutral 141327/Card Essence of the Dream 6ad46b.yaml new file mode 100644 index 000000000..7b0cbeaec --- /dev/null +++ b/unpacked/Custom_Model_Bag Neutral c5261f/Custom_Model_Bag Neutral 141327/Card Essence of the Dream 6ad46b.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 6ad46b +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Essence of the Dream +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -33.878212 + posY: 1.33097184 + posZ: 74.10904 + rotX: 0.02081796 + rotY: 269.968262 + rotZ: 0.01675824 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Neutral c5261f/Custom_Model_Bag Neutral 141327/Card Guardian of the Crystallizer 100e24.yaml b/unpacked/Custom_Model_Bag Neutral c5261f/Custom_Model_Bag Neutral 141327/Card Guardian of the Crystallizer 100e24.yaml new file mode 100644 index 000000000..cf8a6e27b --- /dev/null +++ b/unpacked/Custom_Model_Bag Neutral c5261f/Custom_Model_Bag Neutral 141327/Card Guardian of the Crystallizer 100e24.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 100e24 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Guardian of the Crystallizer +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -33.8782272 + posY: 1.32962525 + posZ: 69.50903 + rotX: 0.02080896 + rotY: 269.994781 + rotZ: 0.0167678688 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Neutral c5261f/Custom_Model_Bag Neutral 141327/Card Hope 4da36d.yaml b/unpacked/Custom_Model_Bag Neutral c5261f/Custom_Model_Bag Neutral 141327/Card Hope 4da36d.yaml new file mode 100644 index 000000000..5494cf11c --- /dev/null +++ b/unpacked/Custom_Model_Bag Neutral c5261f/Custom_Model_Bag Neutral 141327/Card Hope 4da36d.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 440624 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '4406': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025946328/561232524C8EAA4B4371B28652F78969E6ED6FFB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 4da36d +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Hope +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -33.87822 + posY: 1.32760549 + posZ: 62.6087952 + rotX: 0.02081126 + rotY: 269.994751 + rotZ: 0.0167707372 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Neutral c5261f/Custom_Model_Bag Neutral 141327/Card Pendant of the Queen 29f699.yaml b/unpacked/Custom_Model_Bag Neutral c5261f/Custom_Model_Bag Neutral 141327/Card Pendant of the Queen 29f699.yaml new file mode 100644 index 000000000..1ec02ab4a --- /dev/null +++ b/unpacked/Custom_Model_Bag Neutral c5261f/Custom_Model_Bag Neutral 141327/Card Pendant of the Queen 29f699.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 449327 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '4493': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025943833/DE98A03934DF8FF5B3CF6C53143B15BFC3ED7341/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: Of Nothing at All +GMNotes: '' +GUID: 29f699 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Pendant of the Queen +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -33.8782158 + posY: 1.33231831 + posZ: 78.7090454 + rotX: 0.0208100323 + rotY: 269.994751 + rotZ: 0.0167678036 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Neutral c5261f/Custom_Model_Bag Neutral 141327/Card Soothing Melody 6ced1f.yaml b/unpacked/Custom_Model_Bag Neutral c5261f/Custom_Model_Bag Neutral 141327/Card Soothing Melody 6ced1f.yaml new file mode 100644 index 000000000..1f0bc30f7 --- /dev/null +++ b/unpacked/Custom_Model_Bag Neutral c5261f/Custom_Model_Bag Neutral 141327/Card Soothing Melody 6ced1f.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 6ced1f +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Soothing Melody +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -33.8782 + posY: 1.33433807 + posZ: 85.609 + rotX: 0.020810822 + rotY: 269.9947 + rotZ: 0.01676886 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Neutral c5261f/Custom_Model_Bag Neutral 141327/Card The Stars Are Right 406a2b.yaml b/unpacked/Custom_Model_Bag Neutral c5261f/Custom_Model_Bag Neutral 141327/Card The Stars Are Right 406a2b.yaml new file mode 100644 index 000000000..094ebc68a --- /dev/null +++ b/unpacked/Custom_Model_Bag Neutral c5261f/Custom_Model_Bag Neutral 141327/Card The Stars Are Right 406a2b.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 449423 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '4494': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025945336/04E36F64C2CBE1B4905FF44A869C75EC52CB3A56/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 406a2b +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: The Stars Are Right +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -33.8782272 + posY: 1.33029854 + posZ: 71.80904 + rotX: 0.0208102185 + rotY: 269.994629 + rotZ: 0.0167679712 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Neutral c5261f/Custom_Model_Bag Neutral 141327/Card Unbound Beast 4a8eef.yaml b/unpacked/Custom_Model_Bag Neutral c5261f/Custom_Model_Bag Neutral 141327/Card Unbound Beast 4a8eef.yaml new file mode 100644 index 000000000..04d0b9f18 --- /dev/null +++ b/unpacked/Custom_Model_Bag Neutral c5261f/Custom_Model_Bag Neutral 141327/Card Unbound Beast 4a8eef.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 449136 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '4491': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025945336/04E36F64C2CBE1B4905FF44A869C75EC52CB3A56/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: Monster. Extradimensional. Tindalos. +GMNotes: '' +GUID: 4a8eef +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Unbound Beast +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -33.8782234 + posY: 1.32895207 + posZ: 67.20903 + rotX: 0.0208109561 + rotY: 269.9872 + rotZ: 0.0167657379 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Neutral c5261f/Custom_Model_Bag Neutral 141327/Card Wish Eater 20570c.yaml b/unpacked/Custom_Model_Bag Neutral c5261f/Custom_Model_Bag Neutral 141327/Card Wish Eater 20570c.yaml new file mode 100644 index 000000000..8e273d8b0 --- /dev/null +++ b/unpacked/Custom_Model_Bag Neutral c5261f/Custom_Model_Bag Neutral 141327/Card Wish Eater 20570c.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Jewel of the Gods +GMNotes: '' +GUID: 20570c +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Wish Eater +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -33.8782234 + posY: 1.33366477 + posZ: 83.3090439 + rotX: 0.0208101887 + rotY: 269.989838 + rotZ: 0.0167664438 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Neutral c5261f/Custom_Model_Bag Neutral 141327/Card Zeal 506382.yaml b/unpacked/Custom_Model_Bag Neutral c5261f/Custom_Model_Bag Neutral 141327/Card Zeal 506382.yaml new file mode 100644 index 000000000..03f230b21 --- /dev/null +++ b/unpacked/Custom_Model_Bag Neutral c5261f/Custom_Model_Bag Neutral 141327/Card Zeal 506382.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: '506382' +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Zeal +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -33.8782158 + posY: 1.32827878 + posZ: 64.9090347 + rotX: 0.0208096 + rotY: 269.994751 + rotZ: 0.01676825 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Promo Investigators 35fb9c.ttslua b/unpacked/Custom_Model_Bag Promo Investigators 35fb9c.ttslua new file mode 100644 index 000000000..5dff2f1d7 --- /dev/null +++ b/unpacked/Custom_Model_Bag Promo Investigators 35fb9c.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,3,7}, rotation={0,0,0}, height=700, width=2000, + font_size=700, 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 +12 + 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=800, width=800, + 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,3,7}, rotation={0,0,0}, height=700, width=2000, + font_size=700, color={0,0,0}, font_color={1,1,1} + }) + self.createButton({ + label="Submit", click_function="buttonClick_submit", function_owner=self, + position={0,3,-7}, rotation={0,0,0}, height=700, width=2000, + font_size=700, color={0,0,0}, font_color={1,1,1} + }) +-- self.createButton({ +-- label="Reset", click_function="buttonClick_reset", function_owner=self, +-- position={3,2.5,6}, rotation={0,0,0}, height=550, width=1100, +-- font_size=400, 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={2.4,3,7}, rotation={0,0,0}, height=850, width=2000, + font_size=700, color={0,0,0}, font_color={1,1,1} + }) + self.createButton({ + label="Recall", click_function="buttonClick_recall", function_owner=self, + position={-2.4,3,7}, rotation={0,0,0}, height=850, width=2200, + font_size=700, 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.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 \ No newline at end of file diff --git a/unpacked/Custom_Model_Bag Promo Investigators 35fb9c.yaml b/unpacked/Custom_Model_Bag Promo Investigators 35fb9c.yaml new file mode 100644 index 000000000..06bea64fd --- /dev/null +++ b/unpacked/Custom_Model_Bag Promo Investigators 35fb9c.yaml @@ -0,0 +1,76 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +ContainedObjects: +- !include 'Custom_Model_Bag Promo Investigators 35fb9c/Card Silas Marsh 1da958.yaml' +- !include 'Custom_Model_Bag Promo Investigators 35fb9c/Custom_Model Survivor turn + token 26f88d.yaml' +- !include 'Custom_Model_Bag Promo Investigators 35fb9c/Card Norman Withers 298237.yaml' +- !include 'Custom_Model_Bag Promo Investigators 35fb9c/Custom_Model_Bag starter deck + & cards 376a06.yaml' +- !include 'Custom_Model_Bag Promo Investigators 35fb9c/Card Dexter Drake 389792.yaml' +- !include 'Custom_Model_Bag Promo Investigators 35fb9c/Card Norman Withers 3f60eb.yaml' +- !include 'Custom_Model_Bag Promo Investigators 35fb9c/Custom_Model Turn token 6bd479.yaml' +- !include 'Custom_Model_Bag Promo Investigators 35fb9c/Custom_Model Survivor turn + token 72caa1.yaml' +- !include 'Custom_Model_Bag Promo Investigators 35fb9c/Card Silas Marsh 888fcc.yaml' +- !include 'Custom_Model_Bag Promo Investigators 35fb9c/Custom_Model Survivor turn + token 8b0a9e.yaml' +- !include 'Custom_Model_Bag Promo Investigators 35fb9c/Custom_Model_Bag starter deck + & cards ab52dc.yaml' +- !include 'Custom_Model_Bag Promo Investigators 35fb9c/Custom_Model Turn token d3d270.yaml' +- !include 'Custom_Model_Bag Promo Investigators 35fb9c/Custom_Model Turn token d8e1ad.yaml' +- !include 'Custom_Model_Bag Promo Investigators 35fb9c/Custom_Model Turn token d9f2c7.yaml' +- !include 'Custom_Model_Bag Promo Investigators 35fb9c/Custom_Model Turn token e1786c.yaml' +- !include 'Custom_Model_Bag Promo Investigators 35fb9c/Custom_Model_Bag starter deck + & cards fc27ff.yaml' +- !include 'Custom_Model_Bag Promo Investigators 35fb9c/Card Dexter Drake fc63ca.yaml' +- !include 'Custom_Model_Bag Promo Investigators 35fb9c/Custom_Model Turn token ffa2b2.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/778493489662643453/D2A4691056C419B9766927701A20E932C69986F9/ + MaterialIndex: 3 + MeshURL: https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/core_h_MSH.obj + NormalURL: '' + TypeIndex: 6 +Description: '' +GMNotes: '' +GUID: 35fb9c +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Model_Bag Promo Investigators 35fb9c.ttslua' +LuaScriptState: '{"ml":{"1da958":{"lock":false,"pos":{"x":-22.6169,"y":1.3645,"z":-84.8185},"rot":{"x":0.0168,"y":179.9921,"z":359.9792}},"26f88d":{"lock":false,"pos":{"x":-16.639,"y":1.3603,"z":-66.8114},"rot":{"x":0.0208,"y":270.0166,"z":0.0168}},"298237":{"lock":false,"pos":{"x":-22.6146,"y":1.3701,"z":-65.5964},"rot":{"x":0.0168,"y":180.0003,"z":359.9792}},"376a06":{"lock":false,"pos":{"x":-26.3002,"y":1.2688,"z":-76.9456},"rot":{"x":359.9792,"y":89.9798,"z":359.9832}},"389792":{"lock":false,"pos":{"x":-22.6157,"y":1.3668,"z":-76.946},"rot":{"x":0.0168,"y":180,"z":359.9792}},"3f60eb":{"lock":false,"pos":{"x":-19.2948,"y":1.3714,"z":-65.5815},"rot":{"x":0.0208,"y":269.9986,"z":0.0168}},"6bd479":{"lock":false,"pos":{"x":-16.6403,"y":1.3576,"z":-75.7054},"rot":{"x":0.0208,"y":270.0208,"z":0.0168}},"72caa1":{"lock":false,"pos":{"x":-16.6392,"y":1.3606,"z":-65.5811},"rot":{"x":0.0208,"y":269.9983,"z":0.0168}},"888fcc":{"lock":false,"pos":{"x":-19.2998,"y":1.3657,"z":-84.8182},"rot":{"x":0.0208,"y":270.0035,"z":0.0168}},"8b0a9e":{"lock":false,"pos":{"x":-16.639,"y":1.361,"z":-64.3414},"rot":{"x":0.0208,"y":269.9907,"z":0.0168}},"ab52dc":{"lock":false,"pos":{"x":-26.2996,"y":1.2665,"z":-84.818},"rot":{"x":359.9792,"y":90.0128,"z":359.9832}},"d3d270":{"lock":false,"pos":{"x":-16.6396,"y":1.3573,"z":-76.9456},"rot":{"x":0.0208,"y":270.0207,"z":0.0168}},"d8e1ad":{"lock":false,"pos":{"x":-16.6401,"y":1.3569,"z":-78.1756},"rot":{"x":0.0208,"y":270.0207,"z":0.0168}},"d9f2c7":{"lock":false,"pos":{"x":-16.6385,"y":1.3554,"z":-83.5415},"rot":{"x":0.0208,"y":269.9983,"z":0.0168}},"e1786c":{"lock":false,"pos":{"x":-16.6394,"y":1.3546,"z":-86.0186},"rot":{"x":0.0208,"y":269.9993,"z":0.0168}},"fc27ff":{"lock":false,"pos":{"x":-26.2991,"y":1.2721,"z":-65.5814},"rot":{"x":359.9792,"y":90.0019,"z":359.9832}},"fc63ca":{"lock":false,"pos":{"x":-19.2936,"y":1.368,"z":-76.9415},"rot":{"x":0.0208,"y":269.9999,"z":0.0168}},"ffa2b2":{"lock":false,"pos":{"x":-16.6402,"y":1.355,"z":-84.8182},"rot":{"x":0.0208,"y":269.9994,"z":0.0168}}}}' +MaterialIndex: -1 +MeshIndex: -1 +Name: Custom_Model_Bag +Nickname: Promo Investigators +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -9.739967 + posY: 1.29607391 + posZ: -89.63861 + rotX: 0.0208099876 + rotY: 270.0011 + rotZ: 0.0167706832 + scaleX: 0.5 + scaleY: 0.139652729 + scaleZ: 0.5 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Promo Investigators 35fb9c/Card Dexter Drake 389792.yaml b/unpacked/Custom_Model_Bag Promo Investigators 35fb9c/Card Dexter Drake 389792.yaml new file mode 100644 index 000000000..829ffde9f --- /dev/null +++ b/unpacked/Custom_Model_Bag Promo Investigators 35fb9c/Card Dexter Drake 389792.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 274137 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2741': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1011562618093845464/80687C9319FA2015F3D9F7CBEB4C55FBF045B27D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1011562618093845971/A678BD374EC4DE672206B5EF7EB57DC885BC839C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: The Magician +GMNotes: '' +GUID: '389792' +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Dexter Drake +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -22.6158066 + posY: 1.36682653 + posZ: -76.94609 + rotX: 0.0167717319 + rotY: 180.0 + rotZ: 359.9792 + scaleX: 1.1 + scaleY: 1.0 + scaleZ: 1.1 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Promo Investigators 35fb9c/Card Dexter Drake fc63ca.yaml b/unpacked/Custom_Model_Bag Promo Investigators 35fb9c/Card Dexter Drake fc63ca.yaml new file mode 100644 index 000000000..023caeea6 --- /dev/null +++ b/unpacked/Custom_Model_Bag Promo Investigators 35fb9c/Card Dexter Drake fc63ca.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 274300 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2743': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1011562618093849750/0A603123EE623768F23DC105F629D33E9CAF8333/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1011562618093850037/05B303D11D87919B0388BF646EB2792033620EE0/ + NumHeight: 3 + NumWidth: 7 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: fc63ca +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Dexter Drake +SidewaysCard: false +Snap: false +Sticky: true +Tooltip: true +Transform: + posX: -19.2936268 + posY: 1.36803448 + posZ: -76.94152 + rotX: 0.0208103713 + rotY: 270.000031 + rotZ: 0.01676986 + scaleX: 0.6 + scaleY: 1.0 + scaleZ: 0.6 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Promo Investigators 35fb9c/Card Norman Withers 298237.yaml b/unpacked/Custom_Model_Bag Promo Investigators 35fb9c/Card Norman Withers 298237.yaml new file mode 100644 index 000000000..a7c93969e --- /dev/null +++ b/unpacked/Custom_Model_Bag Promo Investigators 35fb9c/Card Norman Withers 298237.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 272328 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2723': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1011562618093845464/80687C9319FA2015F3D9F7CBEB4C55FBF045B27D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1011562618093845971/A678BD374EC4DE672206B5EF7EB57DC885BC839C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: The Astronomer +GMNotes: '' +GUID: '298237' +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Norman Withers +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -22.6146 + posY: 1.37014925 + posZ: -65.5964 + rotX: 0.01677191 + rotY: 180.000259 + rotZ: 359.9792 + scaleX: 1.1 + scaleY: 1.0 + scaleZ: 1.1 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Promo Investigators 35fb9c/Card Norman Withers 3f60eb.yaml b/unpacked/Custom_Model_Bag Promo Investigators 35fb9c/Card Norman Withers 3f60eb.yaml new file mode 100644 index 000000000..0a538bb4b --- /dev/null +++ b/unpacked/Custom_Model_Bag Promo Investigators 35fb9c/Card Norman Withers 3f60eb.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 272607 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2726': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1011562618093846975/4726098952C64103F2C211D202FFDD40D9D988BB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869050066760/0DE2BD4589CC8C2F3D26C2900A17ED7A6483062F/ + NumHeight: 3 + NumWidth: 7 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 3f60eb +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Norman Withers +SidewaysCard: false +Snap: false +Sticky: true +Tooltip: true +Transform: + posX: -19.2948 + posY: 1.37135923 + posZ: -65.5815 + rotX: 0.0208109953 + rotY: 269.998566 + rotZ: 0.0167695563 + scaleX: 0.6 + scaleY: 1.0 + scaleZ: 0.6 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Promo Investigators 35fb9c/Card Silas Marsh 1da958.yaml b/unpacked/Custom_Model_Bag Promo Investigators 35fb9c/Card Silas Marsh 1da958.yaml new file mode 100644 index 000000000..2a07017f1 --- /dev/null +++ b/unpacked/Custom_Model_Bag Promo Investigators 35fb9c/Card Silas Marsh 1da958.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 272429 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2724': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1011562618093845464/80687C9319FA2015F3D9F7CBEB4C55FBF045B27D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1011562618093845971/A678BD374EC4DE672206B5EF7EB57DC885BC839C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: The Sailor +GMNotes: '' +GUID: 1da958 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Silas Marsh +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -22.6169 + posY: 1.36452186 + posZ: -84.8185 + rotX: 0.0167689826 + rotY: 179.992065 + rotZ: 359.9792 + scaleX: 1.1 + scaleY: 1.0 + scaleZ: 1.1 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Promo Investigators 35fb9c/Card Silas Marsh 888fcc.yaml b/unpacked/Custom_Model_Bag Promo Investigators 35fb9c/Card Silas Marsh 888fcc.yaml new file mode 100644 index 000000000..c1040d169 --- /dev/null +++ b/unpacked/Custom_Model_Bag Promo Investigators 35fb9c/Card Silas Marsh 888fcc.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 272508 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2725': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1011562618093846975/4726098952C64103F2C211D202FFDD40D9D988BB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869050066760/0DE2BD4589CC8C2F3D26C2900A17ED7A6483062F/ + NumHeight: 3 + NumWidth: 7 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 888fcc +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Silas Marsh +SidewaysCard: false +Snap: false +Sticky: true +Tooltip: true +Transform: + posX: -19.2998 + posY: 1.36572659 + posZ: -84.8182 + rotX: 0.020809615 + rotY: 270.00354 + rotZ: 0.0167716518 + scaleX: 0.6 + scaleY: 1.0 + scaleZ: 0.6 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Promo Investigators 35fb9c/Custom_Model Survivor turn token 26f88d.yaml b/unpacked/Custom_Model_Bag Promo Investigators 35fb9c/Custom_Model Survivor turn token 26f88d.yaml new file mode 100644 index 000000000..889c8d5d6 --- /dev/null +++ b/unpacked/Custom_Model_Bag Promo Investigators 35fb9c/Custom_Model Survivor turn token 26f88d.yaml @@ -0,0 +1,41 @@ +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: '' +GMNotes: '' +GUID: 26f88d +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Model +Nickname: Survivor turn token +Snap: true +Sticky: true +Tooltip: false +Transform: + posX: -16.639 + posY: 1.36025023 + posZ: -66.8114 + rotX: 0.020811988 + rotY: 270.016571 + rotZ: 0.0167739224 + scaleX: 0.45 + scaleY: 0.6 + scaleZ: 0.45 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Promo Investigators 35fb9c/Custom_Model Survivor turn token 72caa1.yaml b/unpacked/Custom_Model_Bag Promo Investigators 35fb9c/Custom_Model Survivor turn token 72caa1.yaml new file mode 100644 index 000000000..fca83f55e --- /dev/null +++ b/unpacked/Custom_Model_Bag Promo Investigators 35fb9c/Custom_Model Survivor turn token 72caa1.yaml @@ -0,0 +1,41 @@ +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: '' +GMNotes: '' +GUID: 72caa1 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Model +Nickname: Survivor turn token +Snap: true +Sticky: true +Tooltip: false +Transform: + posX: -16.6392 + posY: 1.36061025 + posZ: -65.5811 + rotX: 0.02081707 + rotY: 269.9983 + rotZ: 0.0167675056 + scaleX: 0.45 + scaleY: 0.6 + scaleZ: 0.45 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Promo Investigators 35fb9c/Custom_Model Survivor turn token 8b0a9e.yaml b/unpacked/Custom_Model_Bag Promo Investigators 35fb9c/Custom_Model Survivor turn token 8b0a9e.yaml new file mode 100644 index 000000000..9ee874900 --- /dev/null +++ b/unpacked/Custom_Model_Bag Promo Investigators 35fb9c/Custom_Model Survivor turn token 8b0a9e.yaml @@ -0,0 +1,41 @@ +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: '' +GMNotes: '' +GUID: 8b0a9e +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Model +Nickname: Survivor turn token +Snap: true +Sticky: true +Tooltip: false +Transform: + posX: -16.639 + posY: 1.36097324 + posZ: -64.3414 + rotX: 0.02081969 + rotY: 269.990723 + rotZ: 0.0167646278 + scaleX: 0.45 + scaleY: 0.6 + scaleZ: 0.45 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Promo Investigators 35fb9c/Custom_Model Turn token 6bd479.yaml b/unpacked/Custom_Model_Bag Promo Investigators 35fb9c/Custom_Model Turn token 6bd479.yaml new file mode 100644 index 000000000..ec7f3ec86 --- /dev/null +++ b/unpacked/Custom_Model_Bag Promo Investigators 35fb9c/Custom_Model Turn token 6bd479.yaml @@ -0,0 +1,41 @@ +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: '' +GMNotes: '' +GUID: 6bd479 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Model +Nickname: Turn token +Snap: true +Sticky: true +Tooltip: false +Transform: + posX: -16.6403 + posY: 1.35764635 + posZ: -75.7054 + rotX: 0.020810293 + rotY: 270.020844 + rotZ: 0.0167759042 + scaleX: 0.45 + scaleY: 0.6 + scaleZ: 0.45 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Promo Investigators 35fb9c/Custom_Model Turn token d3d270.yaml b/unpacked/Custom_Model_Bag Promo Investigators 35fb9c/Custom_Model Turn token d3d270.yaml new file mode 100644 index 000000000..89e306322 --- /dev/null +++ b/unpacked/Custom_Model_Bag Promo Investigators 35fb9c/Custom_Model Turn token d3d270.yaml @@ -0,0 +1,41 @@ +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: '' +GMNotes: '' +GUID: d3d270 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Model +Nickname: Turn token +Snap: true +Sticky: true +Tooltip: false +Transform: + posX: -16.6396 + posY: 1.35728359 + posZ: -76.9456 + rotX: 0.0208104253 + rotY: 270.020721 + rotZ: 0.0167757142 + scaleX: 0.45 + scaleY: 0.6 + scaleZ: 0.45 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Promo Investigators 35fb9c/Custom_Model Turn token d8e1ad.yaml b/unpacked/Custom_Model_Bag Promo Investigators 35fb9c/Custom_Model Turn token d8e1ad.yaml new file mode 100644 index 000000000..80a32cb9e --- /dev/null +++ b/unpacked/Custom_Model_Bag Promo Investigators 35fb9c/Custom_Model Turn token d8e1ad.yaml @@ -0,0 +1,41 @@ +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: '' +GMNotes: '' +GUID: d8e1ad +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Model +Nickname: Turn token +Snap: true +Sticky: true +Tooltip: false +Transform: + posX: -16.6401 + posY: 1.35692334 + posZ: -78.1756 + rotX: 0.02081047 + rotY: 270.020721 + rotZ: 0.0167754591 + scaleX: 0.45 + scaleY: 0.6 + scaleZ: 0.45 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Promo Investigators 35fb9c/Custom_Model Turn token d9f2c7.yaml b/unpacked/Custom_Model_Bag Promo Investigators 35fb9c/Custom_Model Turn token d9f2c7.yaml new file mode 100644 index 000000000..1b90c12fd --- /dev/null +++ b/unpacked/Custom_Model_Bag Promo Investigators 35fb9c/Custom_Model Turn token d9f2c7.yaml @@ -0,0 +1,41 @@ +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: '' +GMNotes: '' +GUID: d9f2c7 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Model +Nickname: Turn token +Snap: true +Sticky: true +Tooltip: false +Transform: + posX: -16.6385 + posY: 1.35535324 + posZ: -83.5415 + rotX: 0.0208171122 + rotY: 269.9983 + rotZ: 0.0167678036 + scaleX: 0.45 + scaleY: 0.6 + scaleZ: 0.45 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Promo Investigators 35fb9c/Custom_Model Turn token e1786c.yaml b/unpacked/Custom_Model_Bag Promo Investigators 35fb9c/Custom_Model Turn token e1786c.yaml new file mode 100644 index 000000000..df18a2459 --- /dev/null +++ b/unpacked/Custom_Model_Bag Promo Investigators 35fb9c/Custom_Model Turn token e1786c.yaml @@ -0,0 +1,41 @@ +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: '' +GMNotes: '' +GUID: e1786c +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Model +Nickname: Turn token +Snap: true +Sticky: true +Tooltip: false +Transform: + posX: -16.6394 + posY: 1.35462773 + posZ: -86.0186 + rotX: 0.020816749 + rotY: 269.999329 + rotZ: 0.01676774 + scaleX: 0.45 + scaleY: 0.6 + scaleZ: 0.45 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Promo Investigators 35fb9c/Custom_Model Turn token ffa2b2.yaml b/unpacked/Custom_Model_Bag Promo Investigators 35fb9c/Custom_Model Turn token ffa2b2.yaml new file mode 100644 index 000000000..62d91a8dd --- /dev/null +++ b/unpacked/Custom_Model_Bag Promo Investigators 35fb9c/Custom_Model Turn token ffa2b2.yaml @@ -0,0 +1,41 @@ +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: '' +GMNotes: '' +GUID: ffa2b2 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Model +Nickname: Turn token +Snap: true +Sticky: true +Tooltip: false +Transform: + posX: -16.6402 + posY: 1.35497892 + posZ: -84.8182 + rotX: 0.0208168533 + rotY: 269.9994 + rotZ: 0.016767351 + scaleX: 0.45 + scaleY: 0.6 + scaleZ: 0.45 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Promo Investigators 35fb9c/Custom_Model_Bag starter deck & cards 376a06.yaml b/unpacked/Custom_Model_Bag Promo Investigators 35fb9c/Custom_Model_Bag starter deck & cards 376a06.yaml new file mode 100644 index 000000000..6de0323be --- /dev/null +++ b/unpacked/Custom_Model_Bag Promo Investigators 35fb9c/Custom_Model_Bag starter deck & cards 376a06.yaml @@ -0,0 +1,57 @@ +Autoraise: true +ColorDiffuse: + b: 0.02148666 + g: 0.00100758043 + r: 0.02148666 +ContainedObjects: +- !include 'Custom_Model_Bag starter deck & cards 376a06/Card Yaztaroth 6975d3.yaml' +- !include 'Custom_Model_Bag starter deck & cards 376a06/Card Molly Maxwell 636f6b.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: '' +GMNotes: '' +GUID: 376a06 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +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.26881135 + posZ: -76.9456 + rotX: 359.979156 + rotY: 89.97985 + rotZ: 359.983246 + scaleX: 2.0 + scaleY: 2.0 + scaleZ: 2.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Promo Investigators 35fb9c/Custom_Model_Bag starter deck & cards 376a06/Card Molly Maxwell 636f6b.yaml b/unpacked/Custom_Model_Bag Promo Investigators 35fb9c/Custom_Model_Bag starter deck & cards 376a06/Card Molly Maxwell 636f6b.yaml new file mode 100644 index 000000000..2e0560209 --- /dev/null +++ b/unpacked/Custom_Model_Bag Promo Investigators 35fb9c/Custom_Model_Bag starter deck & cards 376a06/Card Molly Maxwell 636f6b.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 444212 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '4442': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/1011562618093846571/13C76218853EE87123267F8F6BE99206DB40470B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: The Exotic Morgana +GMNotes: '' +GUID: 636f6b +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Molly Maxwell +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -26.3001175 + posY: 3.53793359 + posZ: -76.94706 + rotX: 358.912781 + rotY: 269.987427 + rotZ: 359.6553 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Promo Investigators 35fb9c/Custom_Model_Bag starter deck & cards 376a06/Card Yaztaroth 6975d3.yaml b/unpacked/Custom_Model_Bag Promo Investigators 35fb9c/Custom_Model_Bag starter deck & cards 376a06/Card Yaztaroth 6975d3.yaml new file mode 100644 index 000000000..dd96c1eaf --- /dev/null +++ b/unpacked/Custom_Model_Bag Promo Investigators 35fb9c/Custom_Model_Bag starter deck & cards 376a06/Card Yaztaroth 6975d3.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 444213 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '4442': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/1011562618093846571/13C76218853EE87123267F8F6BE99206DB40470B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: Weakness +GMNotes: '' +GUID: 6975d3 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Yaztaroth +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -26.3008289 + posY: 3.38261461 + posZ: -76.95107 + rotX: 359.959442 + rotY: 270.017181 + rotZ: 1.58224177 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Promo Investigators 35fb9c/Custom_Model_Bag starter deck & cards ab52dc.yaml b/unpacked/Custom_Model_Bag Promo Investigators 35fb9c/Custom_Model_Bag starter deck & cards ab52dc.yaml new file mode 100644 index 000000000..6af4817e8 --- /dev/null +++ b/unpacked/Custom_Model_Bag Promo Investigators 35fb9c/Custom_Model_Bag starter deck & cards ab52dc.yaml @@ -0,0 +1,58 @@ +Autoraise: true +ColorDiffuse: + b: 0.02148666 + g: 0.00100758043 + r: 0.02148666 +ContainedObjects: +- !include 'Custom_Model_Bag starter deck & cards ab52dc/Deck a060fe.yaml' +- !include 'Custom_Model_Bag starter deck & cards ab52dc/Card Nautical Prowess 9d6e9a.yaml' +- !include 'Custom_Model_Bag starter deck & cards ab52dc/Card Dreams of the Deep 8a7f13.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: '' +GMNotes: '' +GUID: ab52dc +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +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.26650715 + posZ: -84.818 + rotX: 359.9792 + rotY: 90.01284 + rotZ: 359.983215 + scaleX: 2.0 + scaleY: 2.0 + scaleZ: 2.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Promo Investigators 35fb9c/Custom_Model_Bag starter deck & cards ab52dc/Card Dreams of the Deep 8a7f13.yaml b/unpacked/Custom_Model_Bag Promo Investigators 35fb9c/Custom_Model_Bag starter deck & cards ab52dc/Card Dreams of the Deep 8a7f13.yaml new file mode 100644 index 000000000..53ba8d9b3 --- /dev/null +++ b/unpacked/Custom_Model_Bag Promo Investigators 35fb9c/Custom_Model_Bag starter deck & cards ab52dc/Card Dreams of the Deep 8a7f13.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 230547 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 8a7f13 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Dreams of the Deep +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -29.14225 + posY: 3.4265964 + posZ: -53.027195 + rotX: 0.0167037956 + rotY: 269.999969 + rotZ: 0.007159554 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Promo Investigators 35fb9c/Custom_Model_Bag starter deck & cards ab52dc/Card Nautical Prowess 9d6e9a.yaml b/unpacked/Custom_Model_Bag Promo Investigators 35fb9c/Custom_Model_Bag starter deck & cards ab52dc/Card Nautical Prowess 9d6e9a.yaml new file mode 100644 index 000000000..b136b04de --- /dev/null +++ b/unpacked/Custom_Model_Bag Promo Investigators 35fb9c/Custom_Model_Bag starter deck & cards ab52dc/Card Nautical Prowess 9d6e9a.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 230648 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 9d6e9a +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Nautical Prowess +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 55.9903564 + posY: 2.508828 + posZ: -45.9085236 + rotX: 1.30025136 + rotY: 269.9928 + rotZ: 359.992676 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Promo Investigators 35fb9c/Custom_Model_Bag starter deck & cards ab52dc/Deck a060fe.yaml b/unpacked/Custom_Model_Bag Promo Investigators 35fb9c/Custom_Model_Bag starter deck & cards ab52dc/Deck a060fe.yaml new file mode 100644 index 000000000..5e57ab4ac --- /dev/null +++ b/unpacked/Custom_Model_Bag Promo Investigators 35fb9c/Custom_Model_Bag starter deck & cards ab52dc/Deck a060fe.yaml @@ -0,0 +1,1468 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 368514 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3685': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 603e29 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Smoking Pipe + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.3627625 + posY: 2.71723318 + posZ: -72.27231 + rotX: 0.0208230074 + rotY: 270.002655 + rotZ: 180.016815 + 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: + '3688': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 215cec + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Cherished Keepsake + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.3627625 + posY: 2.66723323 + posZ: -72.27231 + rotX: 0.0208230056 + rotY: 270.002655 + rotZ: 180.016815 + 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: + '3688': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Mysterious Benefactress + GMNotes: '' + GUID: 1ee492 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Madame Labranche + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.3627625 + posY: 2.66723323 + posZ: -72.27231 + rotX: 0.0208230056 + rotY: 270.002655 + rotZ: 180.016815 + 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: + '3688': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: d1d7fa + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '"Not without a fight!"' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.3627625 + posY: 2.66723323 + posZ: -72.27231 + rotX: 0.0208230056 + rotY: 270.002655 + rotZ: 180.016815 + 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: + '3688': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Mysterious Benefactress + GMNotes: '' + GUID: 1ee492 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Madame Labranche + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.3627625 + posY: 2.71723318 + posZ: -72.27231 + rotX: 0.0208230074 + rotY: 270.002655 + rotZ: 180.016815 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 368400 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: ffa4f9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Eureka! + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.3627625 + posY: 2.66723323 + posZ: -72.27231 + rotX: 0.0208230056 + rotY: 270.002655 + rotZ: 180.016815 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 368400 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: ffa4f9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Eureka! + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.3627625 + posY: 2.71723318 + posZ: -72.27231 + rotX: 0.0208230074 + rotY: 270.002655 + rotZ: 180.016815 + 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: + '3688': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: d1d7fa + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '"Not without a fight!"' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.3627625 + posY: 2.71723318 + posZ: -72.27231 + rotX: 0.0208230074 + rotY: 270.002655 + rotZ: 180.016815 + 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: + '3685': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 603e29 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Smoking Pipe + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.3627625 + posY: 2.66723323 + posZ: -72.27231 + rotX: 0.0208230056 + rotY: 270.002655 + rotZ: 180.016815 + 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: + '3688': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Big Man on Campus + GMNotes: '' + GUID: ffdeb5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Peter Sylvestre + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.3627625 + posY: 2.71723318 + posZ: -72.27231 + rotX: 0.0208230074 + rotY: 270.002655 + rotZ: 180.016815 + 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: + '3685': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: bb1cce + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Flashlight + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.3627625 + posY: 2.66723323 + posZ: -72.27231 + rotX: 0.0208230056 + rotY: 270.002655 + rotZ: 180.016815 + 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: + '3688': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 9da37c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Fire Axe + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.3627625 + posY: 2.71723318 + posZ: -72.27231 + rotX: 0.0208230074 + rotY: 270.002655 + rotZ: 180.016815 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: cd0ac1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Fearless + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.3627625 + posY: 2.66723323 + posZ: -72.27231 + rotX: 0.0208230056 + rotY: 270.002655 + rotZ: 180.016815 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: a88392 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Opportunist + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.3627625 + posY: 2.71723318 + posZ: -72.27231 + rotX: 0.0208230074 + rotY: 270.002655 + rotZ: 180.016815 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: a88392 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Opportunist + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.3627625 + posY: 2.66723323 + posZ: -72.27231 + rotX: 0.0208230056 + rotY: 270.002655 + rotZ: 180.016815 + 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: + '3688': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 9da37c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Fire Axe + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.3627625 + posY: 2.66723323 + posZ: -72.27231 + rotX: 0.0208230056 + rotY: 270.002655 + rotZ: 180.016815 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 80628f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Inspiring Presence + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.3627625 + posY: 2.71723318 + posZ: -72.27231 + rotX: 0.0208230074 + rotY: 270.002655 + rotZ: 180.016815 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: ce0dd5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Lucky! + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.3627625 + posY: 2.66723323 + posZ: -72.27231 + rotX: 0.0208230056 + rotY: 270.002655 + rotZ: 180.016815 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 368802 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 334f03 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Resourceful + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.3627625 + posY: 2.71723318 + posZ: -72.27231 + rotX: 0.0208230074 + rotY: 270.002655 + rotZ: 180.016815 + 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: + '3688': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 1b4434 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dark Horse + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.3627625 + posY: 2.66723323 + posZ: -72.27231 + rotX: 0.0208230056 + rotY: 270.002655 + rotZ: 180.016815 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: cd0ac1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Fearless + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.3627625 + posY: 2.71723318 + posZ: -72.27231 + rotX: 0.0208230074 + rotY: 270.002655 + rotZ: 180.016815 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 368802 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 334f03 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Resourceful + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.3627625 + posY: 2.66723323 + posZ: -72.27231 + rotX: 0.0208230056 + rotY: 270.002655 + rotZ: 180.016815 + 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: + '3688': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 1b4434 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dark Horse + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.3627625 + posY: 2.71723318 + posZ: -72.27231 + rotX: 0.0208230074 + rotY: 270.002655 + rotZ: 180.016815 + 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: + '3688': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Big Man on Campus + GMNotes: '' + GUID: ffdeb5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Peter Sylvestre + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.3627625 + posY: 2.66723323 + posZ: -72.27231 + rotX: 0.0208230056 + rotY: 270.002655 + rotZ: 180.016815 + 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: + '3685': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: bb1cce + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Flashlight + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.3627625 + posY: 2.71723318 + posZ: -72.27231 + rotX: 0.0208230074 + rotY: 270.002655 + rotZ: 180.016815 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 380547 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 13eaf0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dreams of the Deep + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.3627625 + posY: 2.66723323 + posZ: -72.27231 + rotX: 0.0208230056 + rotY: 270.002655 + rotZ: 180.016815 + 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: + '3688': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 215cec + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Cherished Keepsake + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.3627625 + posY: 2.71723318 + posZ: -72.27231 + rotX: 0.0208230074 + rotY: 270.002655 + rotZ: 180.016815 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 380648 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 9d6e9a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Nautical Prowess + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.3627625 + posY: 2.66723323 + posZ: -72.27231 + rotX: 0.0208230056 + rotY: 270.002655 + rotZ: 180.016815 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: ce0dd5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Lucky! + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.3627625 + posY: 2.71723318 + posZ: -72.27231 + rotX: 0.0208230074 + rotY: 270.002655 + rotZ: 180.016815 + 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: + '3685': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: acb83a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Unexpected Courage + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.3627625 + posY: 2.66723323 + posZ: -72.27231 + rotX: 0.0208230056 + rotY: 270.002655 + rotZ: 180.016815 + 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: + '3685': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: acb83a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Unexpected Courage + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.3627625 + posY: 2.71723318 + posZ: -72.27231 + rotX: 0.0208230074 + rotY: 270.002655 + rotZ: 180.016815 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 80628f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Inspiring Presence + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.3627625 + posY: 2.66723323 + posZ: -72.27231 + rotX: 0.0208230056 + rotY: 270.002655 + rotZ: 180.016815 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2263': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/ + NumHeight: 7 + NumWidth: 10 + 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 + 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 + UniqueBack: false + '3684': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '3685': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '3688': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '3805': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '3806': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 368514 +- 368821 +- 368828 +- 368803 +- 368828 +- 368400 +- 368400 +- 368803 +- 368514 +- 368832 +- 368515 +- 368825 +- 230303 +- 261702 +- 261702 +- 368825 +- 226301 +- 368810 +- 368802 +- 368833 +- 230303 +- 368802 +- 368833 +- 368832 +- 368515 +- 380547 +- 368821 +- 380648 +- 368810 +- 368508 +- 368508 +- 226301 +Description: '' +GMNotes: '' +GUID: a060fe +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -28.514246 + posY: 3.54860735 + posZ: -53.19381 + rotX: 0.0195109583 + rotY: 270.0027 + rotZ: 180.018143 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Promo Investigators 35fb9c/Custom_Model_Bag starter deck & cards fc27ff.yaml b/unpacked/Custom_Model_Bag Promo Investigators 35fb9c/Custom_Model_Bag starter deck & cards fc27ff.yaml new file mode 100644 index 000000000..8352935cc --- /dev/null +++ b/unpacked/Custom_Model_Bag Promo Investigators 35fb9c/Custom_Model_Bag starter deck & cards fc27ff.yaml @@ -0,0 +1,58 @@ +Autoraise: true +ColorDiffuse: + b: 0.02148666 + g: 0.00100758043 + r: 0.02148666 +ContainedObjects: +- !include 'Custom_Model_Bag starter deck & cards fc27ff/Card Split the Angle 67e006.yaml' +- !include 'Custom_Model_Bag starter deck & cards fc27ff/Card Vengeful Hound ce3a1a.yaml' +- !include 'Custom_Model_Bag starter deck & cards fc27ff/Deck 68067c.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: '' +GMNotes: '' +GUID: fc27ff +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +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.2991 + posY: 1.272138 + posZ: -65.5814 + rotX: 359.979156 + rotY: 90.001915 + rotZ: 359.983215 + scaleX: 2.0 + scaleY: 2.0 + scaleZ: 2.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Promo Investigators 35fb9c/Custom_Model_Bag starter deck & cards fc27ff/Card Split the Angle 67e006.yaml b/unpacked/Custom_Model_Bag Promo Investigators 35fb9c/Custom_Model_Bag starter deck & cards fc27ff/Card Split the Angle 67e006.yaml new file mode 100644 index 000000000..838a1d82f --- /dev/null +++ b/unpacked/Custom_Model_Bag Promo Investigators 35fb9c/Custom_Model_Bag starter deck & cards fc27ff/Card Split the Angle 67e006.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 230850 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2308': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 67e006 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Split the Angle +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 56.1129646 + posY: 2.48945785 + posZ: -68.2086258 + rotX: 2.627217 + rotY: 269.999084 + rotZ: 359.99118 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Promo Investigators 35fb9c/Custom_Model_Bag starter deck & cards fc27ff/Card Vengeful Hound ce3a1a.yaml b/unpacked/Custom_Model_Bag Promo Investigators 35fb9c/Custom_Model_Bag starter deck & cards fc27ff/Card Vengeful Hound ce3a1a.yaml new file mode 100644 index 000000000..9efbb3693 --- /dev/null +++ b/unpacked/Custom_Model_Bag Promo Investigators 35fb9c/Custom_Model_Bag starter deck & cards fc27ff/Card Vengeful Hound ce3a1a.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 230949 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2309': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: ce3a1a +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Vengeful Hound +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 56.7422256 + posY: 2.52509665 + posZ: -68.93685 + rotX: 2.174644 + rotY: 270.0042 + rotZ: 359.9856 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Promo Investigators 35fb9c/Custom_Model_Bag starter deck & cards fc27ff/Deck 68067c.yaml b/unpacked/Custom_Model_Bag Promo Investigators 35fb9c/Custom_Model_Bag starter deck & cards fc27ff/Deck 68067c.yaml new file mode 100644 index 000000000..81d06191f --- /dev/null +++ b/unpacked/Custom_Model_Bag Promo Investigators 35fb9c/Custom_Model_Bag starter deck & cards fc27ff/Deck 68067c.yaml @@ -0,0 +1,1447 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 91ebae + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Magnifying Glass + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 5.463791 + posY: 0.5317567 + posZ: 47.82212 + rotX: -7.07406525e-06 + rotY: 269.986267 + rotZ: 359.991943 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: a0ed58 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Magnifying Glass + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 5.463791 + posY: 0.6783723 + posZ: 47.82212 + rotX: -7.044883e-06 + rotY: 269.986267 + rotZ: 359.991943 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 230408 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: ee46e8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Mind over Matter + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 5.531972 + posY: 0.6956355 + posZ: 47.87073 + rotX: -3.43510487e-06 + rotY: 270.0102 + rotZ: 359.991943 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 230408 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: f03884 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Mind over Matter + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 5.53198862 + posY: 0.680505157 + posZ: 47.8706245 + rotX: 0.009734234 + rotY: 270.010956 + rotZ: 0.0762395561 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: e05e1c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Shortcut + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 5.3278656 + posY: 0.6796617 + posZ: 48.10322 + rotX: 359.981262 + rotY: 270.0102 + rotZ: 0.0570756 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: '214799' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Shortcut + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 5.32685 + posY: 0.6786285 + posZ: 48.10489 + rotX: 1.02788854 + rotY: 269.983826 + rotZ: 358.291168 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 230413 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: f6b4b5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Working a Hunch + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 5.42977047 + posY: 0.687584937 + posZ: 48.041275 + rotX: -3.533906e-06 + rotY: 270.010376 + rotZ: 359.991943 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 230413 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: e54f40 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Working a Hunch + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 5.429215 + posY: 0.692244768 + posZ: 48.0422935 + rotX: 0.6267309 + rotY: 269.996948 + rotZ: 358.902985 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 230415 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 33f7d9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: No Stone Unturned + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 4.92251539 + posY: 0.6512987 + posZ: 48.0804176 + rotX: -3.71483247e-06 + rotY: 270.0095 + rotZ: 359.991943 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 230415 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 9caa08 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: No Stone Unturned + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 4.922516 + posY: 0.6609828 + posZ: 48.0804253 + rotX: -3.71483247e-06 + rotY: 270.0095 + rotZ: 359.991943 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 230417 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: fdcc62 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Logical Reasoning + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 4.5210433 + posY: 0.6734308 + posZ: 48.3257523 + rotX: -0.00298382319 + rotY: 269.9765 + rotZ: -0.002580315 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 230417 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 3ecdbf + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Logical Reasoning + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 5.00096035 + posY: 0.6808889 + posZ: 47.94309 + rotX: 359.992432 + rotY: 269.9848 + rotZ: 0.0235980414 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 230423 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: b10dc7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '*Dr. William T. Maleson' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 5.566175 + posY: 0.690058649 + posZ: 47.70526 + rotX: -7.338368e-06 + rotY: 269.986267 + rotZ: 359.991943 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 230423 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 432ffa + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '*Dr. William T. Maleson' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 5.56618071 + posY: 0.6986462 + posZ: 47.7053452 + rotX: 0.00562915672 + rotY: 269.9859 + rotZ: 359.9358 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 8eb444 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Deduction + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 5.26005745 + posY: 0.7036037 + posZ: 48.2977371 + rotX: -0.00281399139 + rotY: 269.982361 + rotZ: 359.982849 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: a6cd71 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Deduction + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 5.2600503 + posY: 0.7189576 + posZ: 48.2977142 + rotX: -0.000116758551 + rotY: 269.982361 + rotZ: 359.991943 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 230409 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 4260db + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Anatomical Diagrams + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 5.60037565 + posY: 0.719094157 + posZ: 48.0281258 + rotX: 0.000166934842 + rotY: 270.0102 + rotZ: 359.9879 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 230409 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 7cea56 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Anatomical Diagrams + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 5.6007123 + posY: 0.7358199 + posZ: 48.02862 + rotX: 359.657135 + rotY: 270.015472 + rotZ: 359.436859 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 230418 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: dc5957 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '"I''ve got a plan!"' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 5.192216 + posY: 0.7346878 + posZ: 47.60067 + rotX: -0.0008176654 + rotY: 270.013916 + rotZ: 359.9937 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 230418 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: '614399' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '"I''ve got a plan!"' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 5.192215 + posY: 0.755841 + posZ: 47.600666 + rotX: -0.0006704289 + rotY: 270.013824 + rotZ: 359.993347 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: ab5b2a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Holy Rosary + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -29.04376 + posY: 0.529895544 + posZ: 61.1253052 + rotX: -5.893873e-06 + rotY: 269.999329 + rotZ: 359.991943 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 5209c2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Holy Rosary + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -29.04376 + posY: 0.676511168 + posZ: 61.1253052 + rotX: -4.8070624e-06 + rotY: 269.999329 + rotZ: 359.991943 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 65f204 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Shrivelling + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -29.2657986 + posY: 0.693837643 + posZ: 60.72317 + rotX: -4.67991367e-06 + rotY: 269.9994 + rotZ: 359.991943 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: '598303' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Shrivelling + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -29.2657986 + posY: 0.680164337 + posZ: 60.72317 + rotX: -4.67991367e-06 + rotY: 269.9994 + rotZ: 359.991943 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 338be4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Arcane Initiate + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -28.76471 + posY: 0.6788045 + posZ: 61.71179 + rotX: 0.00468718354 + rotY: 269.9995 + rotZ: 0.005321238 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 18afb8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Calling in Favors + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 64.14303 + posY: 0.8122306 + posZ: 48.62121 + rotX: 0.00020410151 + rotY: 269.999817 + rotZ: 359.990936 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: '513462' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Emergency Cache + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 63.76354 + posY: 0.820036232 + posZ: 47.9772568 + rotX: 0.000307057519 + rotY: 269.9999 + rotZ: 359.992584 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 61802c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Emergency Cache + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 63.76354 + posY: 0.830864 + posZ: 47.9772568 + rotX: 0.000316779217 + rotY: 269.999847 + rotZ: 359.992584 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 209613 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: b4820d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Painkillers + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 63.4993973 + posY: 0.835431039 + posZ: 48.0828934 + rotX: 6.596006e-05 + rotY: 269.9748 + rotZ: 359.993927 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 209613 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: ff7e1c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Painkillers + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 63.49874 + posY: 0.854504049 + posZ: 48.0819664 + rotX: 0.6310234 + rotY: 269.986633 + rotZ: 0.942871153 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 230949 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2309': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: '226326' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Vengeful Hound + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 51.40486 + posY: 0.8034739 + posZ: -69.97787 + rotX: -0.00364878681 + rotY: 270.010925 + rotZ: 359.979675 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 230850 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2308': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 99a07b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Split the Angle + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 51.1056747 + posY: 0.811214745 + posZ: -69.9247055 + rotX: 0.000164041267 + rotY: 269.999084 + rotZ: 359.9905 + 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 + 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 + 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 + UniqueBack: false + '2308': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '2309': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 230421 +- 230421 +- 230408 +- 230408 +- 230405 +- 230405 +- 230413 +- 230413 +- 230415 +- 230415 +- 230417 +- 230417 +- 230423 +- 230423 +- 230402 +- 230402 +- 230409 +- 230409 +- 230418 +- 230418 +- 230323 +- 230323 +- 230328 +- 230328 +- 230318 +- 209610 +- 209609 +- 209609 +- 209613 +- 209613 +- 230949 +- 230850 +Description: '' +GMNotes: '' +GUID: 68067c +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 56.39733 + posY: 2.62425 + posZ: -69.40266 + rotX: 2.61571527 + rotY: 270.0052 + rotZ: 179.994125 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130.ttslua b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130.ttslua new file mode 100644 index 000000000..6f03e2324 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130.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,5,-2}, rotation={0,0,0}, height=250, width=600, + font_size=150, 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={1.5,5,2}, rotation={0,0,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={-1.2,5,2}, rotation={0,0,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={-3.5,5,2}, rotation={0,0,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.7,1,-2}, rotation={0,0,0}, height=280, width=600, + font_size=200, color={0,0,0}, font_color={1,1,1} + }) + self.createButton({ + label="Recall", click_function="buttonClick_recall", function_owner=self, + position={-0.7,1,-2}, rotation={0,0,0}, height=280, width=650, + font_size=200, color={0,0,0}, font_color={1,1,1} + }) +-- self.createButton({ +-- label="Setup", click_function="buttonClick_setup", function_owner=self, +-- position={-6,1,0}, rotation={0,90,0}, height=500, width=1200, +-- font_size=350, 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 \ No newline at end of file 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 new file mode 100644 index 000000000..dcf5f9614 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130.yaml @@ -0,0 +1,70 @@ +Autoraise: true +ColorDiffuse: + b: 0.9999998 + g: 0.992168248 + r: 0.9999998 +ContainedObjects: +- !include 'Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag + 4 Blood on the Altar 1536e7.yaml' +- !include 'Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag + 6 Where Doom Awaits 175a29.yaml' +- !include 'Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag + 7 Lost in Time and Space 1fca6b.yaml' +- !include 'Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag + 2 The Miskatonic Museum 87897a.yaml' +- !include 'Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag + 5 Undimensioned and Unseen a82dde.yaml' +- !include 'Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Tile Dunwich + Legacy Campaign Log b713e7.yaml' +- !include 'Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag + 1a Extracurricular Activity d33f7e.yaml' +- !include 'Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag + 3 The Essex County Express d92b86.yaml' +- !include 'Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag + 1b The House Always Wins f52082.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/762723517667592476/36D86649503A49A36AA97B7B72C6150E4C2BE333/ + MaterialIndex: 3 + MeshURL: http://pastebin.com/raw.php?i=uWAmuNZ2 + NormalURL: '' + TypeIndex: 6 +Description: '' +GMNotes: '' +GUID: ce9130 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Model_Bag Return to The Dunwich Legacy ce9130.ttslua' +LuaScriptState: '{"ml":{"1536e7":{"lock":false,"pos":{"x":12.2503,"y":1.4633,"z":-3.9199},"rot":{"x":359.9201,"y":269.9974,"z":0.0169}},"175a29":{"lock":false,"pos":{"x":12.2504,"y":1.4582,"z":-21.3053},"rot":{"x":359.9201,"y":270.0169,"z":0.0168}},"1fca6b":{"lock":false,"pos":{"x":12.2504,"y":1.4557,"z":-30.0549},"rot":{"x":359.9201,"y":270.0251,"z":0.0168}},"87897a":{"lock":false,"pos":{"x":12.2505,"y":1.4684,"z":13.4375},"rot":{"x":359.9201,"y":269.9996,"z":0.0169}},"a82dde":{"lock":false,"pos":{"x":12.2503,"y":1.4607,"z":-12.6661},"rot":{"x":359.9201,"y":270.0075,"z":0.0169}},"b713e7":{"lock":false,"pos":{"x":-1.3494,"y":1.4754,"z":-27.0534},"rot":{"x":359.9201,"y":270.0005,"z":0.0169}},"d33f7e":{"lock":false,"pos":{"x":12.2521,"y":1.4735,"z":30.8264},"rot":{"x":359.9201,"y":270.0044,"z":0.0169}},"d92b86":{"lock":false,"pos":{"x":12.2503,"y":1.4658,"z":4.6877},"rot":{"x":359.9201,"y":270.0032,"z":0.0169}},"f52082":{"lock":false,"pos":{"x":12.2509,"y":1.4709,"z":22.0768},"rot":{"x":359.9201,"y":270.0002,"z":0.0169}}}}' +MaterialIndex: -1 +MeshIndex: -1 +Name: Custom_Model_Bag +Nickname: Return to The Dunwich Legacy +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 63.0288658 + posY: 1.76845622 + posZ: 14.5004091 + rotX: 359.9201 + rotY: 269.9968 + rotZ: 0.0168771353 + scaleX: 2.00002885 + scaleY: 0.10587021 + scaleZ: 1.69295752 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 1a Extracurricular Activity d33f7e.ttslua b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 1a Extracurricular Activity d33f7e.ttslua new file mode 100644 index 000000000..54d591927 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 1a Extracurricular Activity d33f7e.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.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 Return to The Dunwich Legacy ce9130/Custom_Model_Bag 1a Extracurricular Activity d33f7e.yaml b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 1a Extracurricular Activity d33f7e.yaml new file mode 100644 index 000000000..221f7c955 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 1a Extracurricular Activity d33f7e.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 1a Extracurricular Activity d33f7e/Deck Encounter Deck + 02daa0.yaml' +- !include 'Custom_Model_Bag 1a Extracurricular Activity d33f7e/Custom_Tile 09f0d9.yaml' +- !include 'Custom_Model_Bag 1a Extracurricular Activity d33f7e/Card Student Union + 2503af.yaml' +- !include 'Custom_Model_Bag 1a Extracurricular Activity d33f7e/Custom_Tile 376ef8.yaml' +- !include 'Custom_Model_Bag 1a Extracurricular Activity d33f7e/Card Miskatonic Quad + 4541f6.yaml' +- !include 'Custom_Model_Bag 1a Extracurricular Activity d33f7e/Card Science Building + 45f91d.yaml' +- !include 'Custom_Model_Bag 1a Extracurricular Activity d33f7e/Card Scenario 70df0b.yaml' +- !include 'Custom_Model_Bag 1a Extracurricular Activity d33f7e/Custom_Tile 7234af.yaml' +- !include 'Custom_Model_Bag 1a Extracurricular Activity d33f7e/Deck Act Deck 72b0c4.yaml' +- !include 'Custom_Model_Bag 1a Extracurricular Activity d33f7e/Custom_Tile 85af77.yaml' +- !include 'Custom_Model_Bag 1a Extracurricular Activity d33f7e/Custom_Model_Bag Set-aside + a71c47.yaml' +- !include 'Custom_Model_Bag 1a Extracurricular Activity d33f7e/Custom_Tile The Dunwich + Legacy a74352.yaml' +- !include 'Custom_Model_Bag 1a Extracurricular Activity d33f7e/Card Setup aa50e4.yaml' +- !include 'Custom_Model_Bag 1a Extracurricular Activity d33f7e/Custom_Tile b680b5.yaml' +- !include 'Custom_Model_Bag 1a Extracurricular Activity d33f7e/Custom_Tile b8bae0.yaml' +- !include 'Custom_Model_Bag 1a Extracurricular Activity d33f7e/Deck Agenda Deck b90f89.yaml' +- !include 'Custom_Model_Bag 1a Extracurricular Activity d33f7e/Card Humanities Building + c33d1f.yaml' +- !include 'Custom_Model_Bag 1a Extracurricular Activity d33f7e/Card Orne Library + db7433.yaml' +- !include 'Custom_Model_Bag 1a Extracurricular Activity d33f7e/Card Warren Observatory + dd38a5.yaml' +- !include 'Custom_Model_Bag 1a Extracurricular Activity d33f7e/Card Administration + Building e7dfe0.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/829135118403787197/8A0EA09ECC1EFD1EA4127BD728ED77EDC9D80672/ + MaterialIndex: 3 + MeshURL: https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj + NormalURL: '' + TypeIndex: 6 +Description: Return to the Dunwich Legacy +GMNotes: '' +GUID: d33f7e +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Model_Bag 1a Extracurricular Activity d33f7e.ttslua' +LuaScriptState: '{"ml":{"02daa0":{"lock":false,"pos":{"x":-3.9273,"y":1.793,"z":5.7572},"rot":{"x":359.9197,"y":269.9998,"z":180.0168}},"09f0d9":{"lock":false,"pos":{"x":-20.6211,"y":1.6091,"z":-3.8333},"rot":{"x":359.9747,"y":209.9999,"z":0.0776}},"2503af":{"lock":false,"pos":{"x":-23.6765,"y":1.6862,"z":-0.03},"rot":{"x":359.9201,"y":269.9956,"z":0.0169}},"376ef8":{"lock":false,"pos":{"x":-17.12,"y":1.6065,"z":3.86},"rot":{"x":0.0169,"y":180.0002,"z":0.0799}},"4541f6":{"lock":false,"pos":{"x":-17.12,"y":1.6771,"z":-0.03},"rot":{"x":359.9201,"y":269.9964,"z":0.0169}},"45f91d":{"lock":false,"pos":{"x":-17.1201,"y":1.6748,"z":-7.7},"rot":{"x":359.9201,"y":269.9976,"z":0.0169}},"70df0b":{"lock":false,"pos":{"x":-3.956,"y":1.6557,"z":-10.4411},"rot":{"x":359.9204,"y":269.9768,"z":0.0183}},"7234af":{"lock":false,"pos":{"x":-20.5754,"y":1.6101,"z":-0.4063},"rot":{"x":359.9201,"y":269.9938,"z":0.0169}},"72b0c4":{"lock":false,"pos":{"x":-2.6886,"y":1.655,"z":-5.0771},"rot":{"x":0.0168,"y":179.9919,"z":0.0803}},"85af77":{"lock":false,"pos":{"x":-20.6223,"y":1.6124,"z":7.1175},"rot":{"x":359.9201,"y":269.9939,"z":0.0169}},"a71c47":{"lock":false,"pos":{"x":1.6965,"y":1.5583,"z":14.2789},"rot":{"x":359.9551,"y":224.998,"z":0.0687}},"a74352":{"lock":false,"pos":{"x":-3.9601,"y":1.5828,"z":-14.3534},"rot":{"x":359.9197,"y":270.0457,"z":0.0168}},"aa50e4":{"lock":false,"pos":{"x":-5.5597,"y":1.7999,"z":-10.4861},"rot":{"x":5.1508,"y":270.0186,"z":0.0126}},"b680b5":{"lock":false,"pos":{"x":-17.12,"y":1.6042,"z":-3.83},"rot":{"x":0.0169,"y":179.9997,"z":0.0799}},"b8bae0":{"lock":false,"pos":{"x":-20.5298,"y":1.6112,"z":3.6223},"rot":{"x":0.0684,"y":135,"z":0.0446}},"b90f89":{"lock":false,"pos":{"x":-2.7243,"y":1.6566,"z":0.3558},"rot":{"x":0.0169,"y":179.9864,"z":0.0803}},"c33d1f":{"lock":false,"pos":{"x":-23.6766,"y":1.6885,"z":7.57},"rot":{"x":359.9201,"y":269.9961,"z":0.0169}},"db7433":{"lock":false,"pos":{"x":-12.2512,"y":1.6729,"z":8.8943},"rot":{"x":359.9201,"y":269.9963,"z":0.0169}},"dd38a5":{"lock":false,"pos":{"x":-12.178,"y":1.6721,"z":6.3546},"rot":{"x":359.9201,"y":269.9961,"z":0.0169}},"e7dfe0":{"lock":false,"pos":{"x":-23.6766,"y":1.684,"z":-7.7},"rot":{"x":359.9201,"y":269.9897,"z":0.0169}}}}' +MaterialIndex: -1 +MeshIndex: -1 +Name: Custom_Model_Bag +Nickname: '1a: Extracurricular Activity' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 12.2521 + posY: 1.473506 + posZ: 30.8264046 + rotX: 359.920135 + rotY: 270.004547 + rotZ: 0.0168672744 + scaleX: 2.21 + scaleY: 0.46 + scaleZ: 2.42 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 1a Extracurricular Activity d33f7e/Card Administration Building e7dfe0.yaml b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 1a Extracurricular Activity d33f7e/Card Administration Building e7dfe0.yaml new file mode 100644 index 000000000..149004626 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 1a Extracurricular Activity d33f7e/Card Administration Building e7dfe0.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 233506 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2335': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999385819522537/207CCD9C85ECB70A339C09170ABB42E139924AA0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780748790926468191/C3163A90948FC777DC7D95D05CB35D2DA32CBD9C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Miskatonic. +GMNotes: '' +GUID: e7dfe0 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Administration Building +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -23.6766 + posY: 1.683962 + posZ: -7.700001 + rotX: 359.9201 + rotY: 269.989746 + rotZ: 0.0168905985 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 1a Extracurricular Activity d33f7e/Card Humanities Building c33d1f.yaml b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 1a Extracurricular Activity d33f7e/Card Humanities Building c33d1f.yaml new file mode 100644 index 000000000..67ae4759c --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 1a Extracurricular Activity d33f7e/Card Humanities Building c33d1f.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 233502 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2335': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999385819522537/207CCD9C85ECB70A339C09170ABB42E139924AA0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780748790926468191/C3163A90948FC777DC7D95D05CB35D2DA32CBD9C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Miskatonic. +GMNotes: '' +GUID: c33d1f +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Humanities Building +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -23.6766 + posY: 1.68845844 + posZ: 7.569999 + rotX: 359.9201 + rotY: 269.996063 + rotZ: 0.0168817248 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 1a Extracurricular Activity d33f7e/Card Miskatonic Quad 4541f6.yaml b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 1a Extracurricular Activity d33f7e/Card Miskatonic Quad 4541f6.yaml new file mode 100644 index 000000000..e2a639e64 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 1a Extracurricular Activity d33f7e/Card Miskatonic Quad 4541f6.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 233501 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2335': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999385819522537/207CCD9C85ECB70A339C09170ABB42E139924AA0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780748790926468191/C3163A90948FC777DC7D95D05CB35D2DA32CBD9C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Miskatonic. +GMNotes: '' +GUID: 4541f6 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Miskatonic Quad +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -17.12 + posY: 1.67707777 + posZ: -0.0300002 + rotX: 359.9201 + rotY: 269.996368 + rotZ: 0.0168813784 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 1a Extracurricular Activity d33f7e/Card Orne Library db7433.yaml b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 1a Extracurricular Activity d33f7e/Card Orne Library db7433.yaml new file mode 100644 index 000000000..e426ee8e0 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 1a Extracurricular Activity d33f7e/Card Orne Library db7433.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 233503 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2335': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999385819522537/207CCD9C85ECB70A339C09170ABB42E139924AA0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780748790926468191/C3163A90948FC777DC7D95D05CB35D2DA32CBD9C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Miskatonic. +GMNotes: '' +GUID: db7433 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Orne Library +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -12.2512 + posY: 1.67291641 + posZ: 8.89429951 + rotX: 359.9201 + rotY: 269.996277 + rotZ: 0.0168817416 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 1a Extracurricular Activity d33f7e/Card Scenario 70df0b.yaml b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 1a Extracurricular Activity d33f7e/Card Scenario 70df0b.yaml new file mode 100644 index 000000000..3fa45faeb --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 1a Extracurricular Activity d33f7e/Card Scenario 70df0b.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 233511 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2335': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999385819522537/207CCD9C85ECB70A339C09170ABB42E139924AA0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780748790926468191/C3163A90948FC777DC7D95D05CB35D2DA32CBD9C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Extracurricular Activity +GMNotes: '' +GUID: 70df0b +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Scenario +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.95599532 + posY: 1.65569472 + posZ: -10.4411116 + rotX: 359.92038 + rotY: 269.9769 + rotZ: 0.0182092674 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 1a Extracurricular Activity d33f7e/Card Science Building 45f91d.yaml b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 1a Extracurricular Activity d33f7e/Card Science Building 45f91d.yaml new file mode 100644 index 000000000..e8828a9ab --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 1a Extracurricular Activity d33f7e/Card Science Building 45f91d.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 233509 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2335': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999385819522537/207CCD9C85ECB70A339C09170ABB42E139924AA0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780748790926468191/C3163A90948FC777DC7D95D05CB35D2DA32CBD9C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Miskatonic. +GMNotes: '' +GUID: 45f91d +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Science Building +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -17.1201 + posY: 1.67481935 + posZ: -7.700001 + rotX: 359.9201 + rotY: 269.997528 + rotZ: 0.01687956 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 1a Extracurricular Activity d33f7e/Card Setup aa50e4.yaml b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 1a Extracurricular Activity d33f7e/Card Setup aa50e4.yaml new file mode 100644 index 000000000..835b105c3 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 1a Extracurricular Activity d33f7e/Card Setup aa50e4.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 233629 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2336': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296074747/742F5083E0E10E3DD22E671C78F35E6143C744FF/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296074238/FB73285A9ED0D784210E50C6EA17EBC25648D800/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Return to Extracurricular Activities +GMNotes: '' +GUID: aa50e4 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Setup +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -5.559705 + posY: 1.79995084 + posZ: -10.486105 + rotX: 5.15102 + rotY: 270.0185 + rotZ: 0.0127500929 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 1a Extracurricular Activity d33f7e/Card Student Union 2503af.yaml b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 1a Extracurricular Activity d33f7e/Card Student Union 2503af.yaml new file mode 100644 index 000000000..ff362fe3f --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 1a Extracurricular Activity d33f7e/Card Student Union 2503af.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 233504 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2335': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999385819522537/207CCD9C85ECB70A339C09170ABB42E139924AA0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780748790926468191/C3163A90948FC777DC7D95D05CB35D2DA32CBD9C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Miskatonic. +GMNotes: '' +GUID: 2503af +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Student Union +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -23.6765 + posY: 1.68622029 + posZ: -0.0300003346 + rotX: 359.9201 + rotY: 269.995575 + rotZ: 0.01688248 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 1a Extracurricular Activity d33f7e/Card Warren Observatory dd38a5.yaml b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 1a Extracurricular Activity d33f7e/Card Warren Observatory dd38a5.yaml new file mode 100644 index 000000000..bc3cbcda1 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 1a Extracurricular Activity d33f7e/Card Warren Observatory dd38a5.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 233630 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2336': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296074747/742F5083E0E10E3DD22E671C78F35E6143C744FF/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296074238/FB73285A9ED0D784210E50C6EA17EBC25648D800/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: "\tMiskatonic." +GMNotes: '' +GUID: dd38a5 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Warren Observatory +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -12.1779995 + posY: 1.67206657 + posZ: 6.35460043 + rotX: 359.9201 + rotY: 269.9961 + rotZ: 0.0168811 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 1a Extracurricular Activity d33f7e/Custom_Model_Bag Set-aside a71c47.yaml b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 1a Extracurricular Activity d33f7e/Custom_Model_Bag Set-aside a71c47.yaml new file mode 100644 index 000000000..ca6beb529 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 1a Extracurricular Activity d33f7e/Custom_Model_Bag Set-aside a71c47.yaml @@ -0,0 +1,63 @@ +Autoraise: true +ColorDiffuse: + b: 0.02148666 + g: 0.00100758043 + r: 0.02148666 +ContainedObjects: +- !include 'Custom_Model_Bag Set-aside a71c47/Card Dr. Henry Armitage 66197b.yaml' +- !include 'Custom_Model_Bag Set-aside a71c47/Card Alchemy Labs 685c14.yaml' +- !include 'Custom_Model_Bag Set-aside a71c47/Card Dormitories bd02ba.yaml' +- !include 'Custom_Model_Bag Set-aside a71c47/Card Professor Warren Rice 42806b.yaml' +- !include 'Custom_Model_Bag Set-aside a71c47/Card The Experiment 9c7371.yaml' +- !include 'Custom_Model_Bag Set-aside a71c47/Card Alchemical Concoction 85d21d.yaml' +- !include "Custom_Model_Bag Set-aside a71c47/Card \u201CJazz\u201D Mulligan 379ac4.yaml" +- !include 'Custom_Model_Bag Set-aside a71c47/Deck Faculty Offices 8daa0e.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: Extracurricular Activity +GMNotes: '' +GUID: a71c47 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +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.69650114 + posY: 1.55831659 + posZ: 14.278903 + rotX: 359.955139 + rotY: 224.997986 + rotZ: 0.0686716437 + scaleX: 2.0 + scaleY: 2.0 + scaleZ: 2.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 1a Extracurricular Activity d33f7e/Custom_Model_Bag Set-aside a71c47/Card Alchemical Concoction 85d21d.yaml b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 1a Extracurricular Activity d33f7e/Custom_Model_Bag Set-aside a71c47/Card Alchemical Concoction 85d21d.yaml new file mode 100644 index 000000000..203e9957d --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 1a Extracurricular Activity d33f7e/Custom_Model_Bag Set-aside a71c47/Card Alchemical Concoction 85d21d.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 234002 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2340': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: Item. Science. +GMNotes: '' +GUID: 85d21d +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Alchemical Concoction +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -21.0182037 + posY: 3.64502716 + posZ: 14.0903568 + rotX: 359.920074 + rotY: 269.999878 + rotZ: 0.0169003382 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 1a Extracurricular Activity d33f7e/Custom_Model_Bag Set-aside a71c47/Card Alchemy Labs 685c14.yaml b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 1a Extracurricular Activity d33f7e/Custom_Model_Bag Set-aside a71c47/Card Alchemy Labs 685c14.yaml new file mode 100644 index 000000000..724d48611 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 1a Extracurricular Activity d33f7e/Custom_Model_Bag Set-aside a71c47/Card Alchemy Labs 685c14.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 233510 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2335': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999385819522537/207CCD9C85ECB70A339C09170ABB42E139924AA0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780748790926468191/C3163A90948FC777DC7D95D05CB35D2DA32CBD9C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Miskatonic. +GMNotes: '' +GUID: 685c14 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Alchemy Labs +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -21.3820248 + posY: 3.645296 + posZ: 13.4324322 + rotX: 359.920074 + rotY: 270.000031 + rotZ: 0.01687519 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 1a Extracurricular Activity d33f7e/Custom_Model_Bag Set-aside a71c47/Card Dormitories bd02ba.yaml b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 1a Extracurricular Activity d33f7e/Custom_Model_Bag Set-aside a71c47/Card Dormitories bd02ba.yaml new file mode 100644 index 000000000..393a1efa0 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 1a Extracurricular Activity d33f7e/Custom_Model_Bag Set-aside a71c47/Card Dormitories bd02ba.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 233505 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2335': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999385819522537/207CCD9C85ECB70A339C09170ABB42E139924AA0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780748790926468191/C3163A90948FC777DC7D95D05CB35D2DA32CBD9C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Miskatonic. +GMNotes: '' +GUID: bd02ba +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Dormitories +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -21.1841335 + posY: 3.64531279 + posZ: 14.3697863 + rotX: 359.920074 + rotY: 270.0005 + rotZ: 0.0168992225 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 1a Extracurricular Activity d33f7e/Custom_Model_Bag Set-aside a71c47/Card Dr. Henry Armitage 66197b.yaml b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 1a Extracurricular Activity d33f7e/Custom_Model_Bag Set-aside a71c47/Card Dr. Henry Armitage 66197b.yaml new file mode 100644 index 000000000..1c958e19b --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 1a Extracurricular Activity d33f7e/Custom_Model_Bag Set-aside a71c47/Card Dr. Henry Armitage 66197b.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: The Head Librarian +GMNotes: '' +GUID: 66197b +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Dr. Henry Armitage +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -19.44345 + posY: 3.64372253 + posZ: 16.4294357 + rotX: 359.92 + rotY: 269.999878 + rotZ: 0.0168873556 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 1a Extracurricular Activity d33f7e/Custom_Model_Bag Set-aside a71c47/Card Professor Warren Rice 42806b.yaml b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 1a Extracurricular Activity d33f7e/Custom_Model_Bag Set-aside a71c47/Card Professor Warren Rice 42806b.yaml new file mode 100644 index 000000000..e67a1764e --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 1a Extracurricular Activity d33f7e/Custom_Model_Bag Set-aside a71c47/Card Professor Warren Rice 42806b.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Professor of Languages +GMNotes: '' +GUID: 42806b +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Professor Warren Rice +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -21.0922565 + posY: 3.64578152 + posZ: 14.1939335 + rotX: 359.936432 + rotY: 270.0 + rotZ: 0.007948471 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 1a Extracurricular Activity d33f7e/Custom_Model_Bag Set-aside a71c47/Card The Experiment 9c7371.yaml b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 1a Extracurricular Activity d33f7e/Custom_Model_Bag Set-aside a71c47/Card The Experiment 9c7371.yaml new file mode 100644 index 000000000..81c44be7f --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 1a Extracurricular Activity d33f7e/Custom_Model_Bag Set-aside a71c47/Card The Experiment 9c7371.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 232801 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: Something Went Terribly Wrong +GMNotes: '' +GUID: 9c7371 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: The Experiment +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -21.5735264 + posY: 3.647795 + posZ: 15.4216166 + rotX: 359.920044 + rotY: 270.002258 + rotZ: 0.01690044 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 1a Extracurricular Activity d33f7e/Custom_Model_Bag Set-aside a71c47/Card “Jazz” Mulligan 379ac4.yaml b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 1a Extracurricular Activity d33f7e/Custom_Model_Bag Set-aside a71c47/Card “Jazz” Mulligan 379ac4.yaml new file mode 100644 index 000000000..060460776 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 1a Extracurricular Activity d33f7e/Custom_Model_Bag Set-aside a71c47/Card “Jazz” Mulligan 379ac4.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 234103 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2341': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: The Head Janitor +GMNotes: '' +GUID: 379ac4 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: "\u201CJazz\u201D Mulligan" +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -20.5117645 + posY: 3.645717 + posZ: 14.7618542 + rotX: 359.920044 + rotY: 269.999725 + rotZ: 0.01685311 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 1a Extracurricular Activity d33f7e/Custom_Model_Bag Set-aside a71c47/Deck Faculty Offices 8daa0e.yaml b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 1a Extracurricular Activity d33f7e/Custom_Model_Bag Set-aside a71c47/Deck Faculty Offices 8daa0e.yaml new file mode 100644 index 000000000..c4a9720ab --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 1a Extracurricular Activity d33f7e/Custom_Model_Bag Set-aside a71c47/Deck Faculty Offices 8daa0e.yaml @@ -0,0 +1,129 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 233508 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2335': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999385819522537/207CCD9C85ECB70A339C09170ABB42E139924AA0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780748790926468191/C3163A90948FC777DC7D95D05CB35D2DA32CBD9C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: The Hour is Late + GMNotes: '' + GUID: 1c567d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Faculty Offices + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -17.6986084 + posY: 1.58042979 + posZ: 8.591015 + rotX: 359.9201 + rotY: 270.004822 + rotZ: 0.01667115 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233507 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2335': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999385819522537/207CCD9C85ECB70A339C09170ABB42E139924AA0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780748790926468191/C3163A90948FC777DC7D95D05CB35D2DA32CBD9C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: The Night is Still Young + GMNotes: '' + GUID: 9fda8e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Faculty Offices + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -17.7845383 + posY: 1.80883527 + posZ: 8.52343 + rotX: 359.920227 + rotY: 269.997559 + rotZ: 355.85257 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2335': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999385819522537/207CCD9C85ECB70A339C09170ABB42E139924AA0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780748790926468191/C3163A90948FC777DC7D95D05CB35D2DA32CBD9C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 233508 +- 233507 +Description: '' +GMNotes: '' +GUID: 8daa0e +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Faculty Offices +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -21.5180836 + posY: 3.65298581 + posZ: 15.5103292 + rotX: 359.920044 + rotY: 270.004761 + rotZ: 0.0168935712 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 1a Extracurricular Activity d33f7e/Custom_Tile 09f0d9.yaml b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 1a Extracurricular Activity d33f7e/Custom_Tile 09f0d9.yaml new file mode 100644 index 000000000..575326149 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 1a Extracurricular Activity d33f7e/Custom_Tile 09f0d9.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 09f0d9 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.6211 + posY: 1.60912621 + posZ: -3.8333 + rotX: 359.97467 + rotY: 209.999939 + rotZ: 0.07762827 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 1a Extracurricular Activity d33f7e/Custom_Tile 376ef8.yaml b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 1a Extracurricular Activity d33f7e/Custom_Tile 376ef8.yaml new file mode 100644 index 000000000..e1f417ea7 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 1a Extracurricular Activity d33f7e/Custom_Tile 376ef8.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 376ef8 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.1199989 + posY: 1.60650945 + posZ: 3.86000037 + rotX: 0.016871497 + rotY: 180.000259 + rotZ: 0.07994693 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 1a Extracurricular Activity d33f7e/Custom_Tile 7234af.yaml b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 1a Extracurricular Activity d33f7e/Custom_Tile 7234af.yaml new file mode 100644 index 000000000..d3bd78aec --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 1a Extracurricular Activity d33f7e/Custom_Tile 7234af.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 7234af +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.5753975 + posY: 1.61007166 + posZ: -0.4063005 + rotX: 359.9201 + rotY: 269.993683 + rotZ: 0.0169104226 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 1a Extracurricular Activity d33f7e/Custom_Tile 85af77.yaml b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 1a Extracurricular Activity d33f7e/Custom_Tile 85af77.yaml new file mode 100644 index 000000000..e1cb6bb42 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 1a Extracurricular Activity d33f7e/Custom_Tile 85af77.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 85af77 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.6223 + posY: 1.61235249 + posZ: 7.1175 + rotX: 359.9201 + rotY: 269.993835 + rotZ: 0.0169107486 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 1a Extracurricular Activity d33f7e/Custom_Tile b680b5.yaml b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 1a Extracurricular Activity d33f7e/Custom_Tile b680b5.yaml new file mode 100644 index 000000000..44bdfeff1 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 1a Extracurricular Activity d33f7e/Custom_Tile b680b5.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: b680b5 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.1199989 + posY: 1.60424519 + posZ: -3.83 + rotX: 0.0168724228 + rotY: 179.999634 + rotZ: 0.07994483 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 1a Extracurricular Activity d33f7e/Custom_Tile b8bae0.yaml b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 1a Extracurricular Activity d33f7e/Custom_Tile b8bae0.yaml new file mode 100644 index 000000000..e620bce58 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 1a Extracurricular Activity d33f7e/Custom_Tile b8bae0.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: b8bae0 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.5298 + posY: 1.61119461 + posZ: 3.62230015 + rotX: 0.06843104 + rotY: 135.000031 + rotZ: 0.0445620455 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 1a Extracurricular Activity d33f7e/Custom_Tile The Dunwich Legacy a74352.ttslua b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 1a Extracurricular Activity d33f7e/Custom_Tile The Dunwich Legacy a74352.ttslua new file mode 100644 index 000000000..cfa110e20 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 1a Extracurricular Activity d33f7e/Custom_Tile The Dunwich Legacy a74352.ttslua @@ -0,0 +1,21 @@ +name = 'The Dunwich Legacy' + +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 Return to The Dunwich Legacy ce9130/Custom_Model_Bag 1a Extracurricular Activity d33f7e/Custom_Tile The Dunwich Legacy a74352.yaml b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 1a Extracurricular Activity d33f7e/Custom_Tile The Dunwich Legacy a74352.yaml new file mode 100644 index 000000000..d053e4700 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 1a Extracurricular Activity d33f7e/Custom_Tile The Dunwich Legacy a74352.yaml @@ -0,0 +1,42 @@ +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 +GMNotes: '' +GUID: a74352 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Tile The Dunwich Legacy a74352.ttslua' +LuaScriptState: '' +Name: Custom_Tile +Nickname: The Dunwich Legacy +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.96010041 + posY: 1.58279073 + posZ: -14.3534031 + rotX: 359.919739 + rotY: 270.045654 + rotZ: 0.0167738255 + scaleX: 2.2 + scaleY: 1.0 + scaleZ: 2.2 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 1a Extracurricular Activity d33f7e/Deck Act Deck 72b0c4.yaml b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 1a Extracurricular Activity d33f7e/Deck Act Deck 72b0c4.yaml new file mode 100644 index 000000000..276492a03 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 1a Extracurricular Activity d33f7e/Deck Act Deck 72b0c4.yaml @@ -0,0 +1,172 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 233305 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2333': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296027643/326876D4B46DF777AA1293989DEEE6A810ED027B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999385819527677/3AD8DFFFBFF54DB098AD3E00BB7E75DA0590FE8B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 3 + GMNotes: '' + GUID: ae9906 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Campus Safety + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -1.64602768 + posY: 1.56066656 + posZ: 17.4862957 + rotX: 0.0181607176 + rotY: 179.073578 + rotZ: 0.07959821 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233304 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2333': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296027643/326876D4B46DF777AA1293989DEEE6A810ED027B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999385819527677/3AD8DFFFBFF54DB098AD3E00BB7E75DA0590FE8B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 2 + GMNotes: '' + GUID: a7ee8a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Rice's Whereabouts + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -1.58353448 + posY: 1.70975876 + posZ: 17.5698586 + rotX: -0.00185124076 + rotY: 179.489853 + rotZ: 0.06697722 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233303 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2333': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296027643/326876D4B46DF777AA1293989DEEE6A810ED027B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999385819527677/3AD8DFFFBFF54DB098AD3E00BB7E75DA0590FE8B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 1 + GMNotes: '' + GUID: 1b5f59 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: After Hours + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -1.16530478 + posY: 1.72620416 + posZ: 16.7691345 + rotX: -0.00150619529 + rotY: 179.105072 + rotZ: 0.0670599639 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2333': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296027643/326876D4B46DF777AA1293989DEEE6A810ED027B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999385819527677/3AD8DFFFBFF54DB098AD3E00BB7E75DA0590FE8B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 233305 +- 233304 +- 233303 +Description: '' +GMNotes: '' +GUID: 72b0c4 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Act Deck +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.6886 + posY: 1.654989 + posZ: -5.0771 + rotX: 0.0168464668 + rotY: 179.9919 + rotZ: 0.08025535 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 1a Extracurricular Activity d33f7e/Deck Agenda Deck b90f89.yaml b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 1a Extracurricular Activity d33f7e/Deck Agenda Deck b90f89.yaml new file mode 100644 index 000000000..0aca794c2 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 1a Extracurricular Activity d33f7e/Deck Agenda Deck b90f89.yaml @@ -0,0 +1,172 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 233302 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2333': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296027643/326876D4B46DF777AA1293989DEEE6A810ED027B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999385819527677/3AD8DFFFBFF54DB098AD3E00BB7E75DA0590FE8B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 3 + GMNotes: '' + GUID: 0fac5d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Beast Unleashed + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.5693868 + posY: 1.56113374 + posZ: 29.5610828 + rotX: 0.0169099849 + rotY: 179.972336 + rotZ: 0.07987117 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233301 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2333': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296027643/326876D4B46DF777AA1293989DEEE6A810ED027B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999385819527677/3AD8DFFFBFF54DB098AD3E00BB7E75DA0590FE8B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 2 + GMNotes: '' + GUID: d1cd6b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dead of Night + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.497630835 + posY: 1.717704 + posZ: 29.9365711 + rotX: 0.01690922 + rotY: 179.9979 + rotZ: 0.07987122 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233300 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2333': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296027643/326876D4B46DF777AA1293989DEEE6A810ED027B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999385819527677/3AD8DFFFBFF54DB098AD3E00BB7E75DA0590FE8B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 1 + GMNotes: '' + GUID: 1b5f59 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Quiet Halls + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.8960717 + posY: 1.72670257 + posZ: 29.51945 + rotX: 0.0145111373 + rotY: 179.991653 + rotZ: 0.06872605 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2333': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296027643/326876D4B46DF777AA1293989DEEE6A810ED027B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999385819527677/3AD8DFFFBFF54DB098AD3E00BB7E75DA0590FE8B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 233302 +- 233301 +- 233300 +Description: '' +GMNotes: '' +GUID: b90f89 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Agenda Deck +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.72429967 + posY: 1.6566354 + posZ: 0.35580042 + rotX: 0.0168541446 + rotY: 179.98642 + rotZ: 0.0802536458 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 1a Extracurricular Activity d33f7e/Deck Encounter Deck 02daa0.yaml b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 1a Extracurricular Activity d33f7e/Deck Encounter Deck 02daa0.yaml new file mode 100644 index 000000000..d55b5d373 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 1a Extracurricular Activity d33f7e/Deck Encounter Deck 02daa0.yaml @@ -0,0 +1,1512 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 233043 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: a97e94 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Infinite Doorway + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -1.95458162 + posY: 1.9572587 + posZ: 4.583197 + rotX: 0.07983827 + rotY: 270.002 + rotZ: 181.447418 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233043 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: 64803b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Infinite Doorway + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 4.32584858 + posY: 1.70545149 + posZ: 7.526225 + rotX: 359.920135 + rotY: 269.999542 + rotZ: 0.0168783125 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233042 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: ff3b62 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: A Baleful Welcome + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.86596346 + posY: 1.55085039 + posZ: 10.3858719 + rotX: 359.920563 + rotY: 269.999939 + rotZ: 0.0141112823 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233042 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: 91d7bc + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: A Baleful Welcome + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 4.27264 + posY: 1.70741928 + posZ: 10.3873577 + rotX: 359.940582 + rotY: 270.0 + rotZ: 0.0103841284 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233041 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: e3fba9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Haunting Recollections + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.9066577 + posY: 1.5516181 + posZ: 13.0453758 + rotX: 359.920135 + rotY: 269.999664 + rotZ: 0.0168763362 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233041 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: 4edfe1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Haunting Recollections + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 4.186173 + posY: 1.70772672 + posZ: 13.2151175 + rotX: 359.920135 + rotY: 269.999664 + rotZ: 0.0168762747 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233045 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Obstacle. + GMNotes: '' + GUID: e3fba9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Secret Door + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 8.506233 + posY: 1.54346478 + posZ: 7.13301754 + rotX: 359.920135 + rotY: 269.999634 + rotZ: 0.0168786049 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233045 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Obstacle. + GMNotes: '' + GUID: '662570' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Secret Door + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 8.375493 + posY: 1.69850159 + posZ: 7.25795174 + rotX: 359.920135 + rotY: 269.999573 + rotZ: 0.0168786459 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233044 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: e3fba9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Resurgent Evils + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 8.283834 + posY: 1.54401064 + posZ: 7.933346 + rotX: 359.920135 + rotY: 269.999664 + rotZ: 0.0168762654 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233044 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: e6d9b2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Resurgent Evils + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 8.055629 + posY: 1.699255 + posZ: 7.93120241 + rotX: 359.920135 + rotY: 269.999664 + rotZ: 0.0168761984 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233044 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: e3fba9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Resurgent Evils + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 8.055629 + posY: 1.71649992 + posZ: 7.93120241 + rotX: 359.9212 + rotY: 269.999664 + rotZ: 0.01656634 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233052 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Pact. + GMNotes: '' + GUID: e3fba9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Eldritch Accord + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 4.809599 + posY: 1.548922 + posZ: 8.164636 + rotX: 359.920135 + rotY: 269.997925 + rotZ: 0.0168780368 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233052 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Pact. + GMNotes: '' + GUID: 7c4d15 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Eldritch Accord + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 4.68952465 + posY: 1.70496368 + posZ: 8.046578 + rotX: 359.920135 + rotY: 269.997925 + rotZ: 0.0168780237 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233051 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Abomination. + GMNotes: '' + GUID: b01c1a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Vassal of the Lurker + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 4.13109636 + posY: 1.55071533 + posZ: 11.0782423 + rotX: 359.920227 + rotY: 270.0001 + rotZ: 0.0161855575 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233051 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Abomination. + GMNotes: '' + GUID: a9e3e2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Vassal of the Lurker + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 4.01203728 + posY: 1.70712113 + posZ: 11.1905966 + rotX: 359.918457 + rotY: 269.999542 + rotZ: 0.0152380522 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233023 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Abomination. + GMNotes: '' + GUID: a2aa77 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Enthralled Security Guard + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -1.34896719 + posY: 1.92282009 + posZ: 4.025048 + rotX: 359.952026 + rotY: 269.999878 + rotZ: 180.02121 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233023 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Abomination. + GMNotes: '' + GUID: e3fba9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Enthralled Security Guard + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -1.23597968 + posY: 1.91322839 + posZ: 4.62956429 + rotX: 359.952026 + rotY: 269.999756 + rotZ: 180.023 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232811 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: d56ff7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Beyond the Veil + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.917338 + posY: 1.55012894 + posZ: 8.039298 + rotX: 359.920135 + rotY: 269.999969 + rotZ: 0.01687837 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232811 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: 9cb0b3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Beyond the Veil + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.89250565 + posY: 1.70636082 + posZ: 8.19774 + rotX: 359.920135 + rotY: 269.999969 + rotZ: 0.01687832 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232811 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: d56ff7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Beyond the Veil + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.89250565 + posY: 1.72360778 + posZ: 8.19774 + rotX: 359.920837 + rotY: 269.999969 + rotZ: 0.0158282 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232810 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: de3bd5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Visions of Futures Past + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.43124938 + posY: 1.55177522 + posZ: 11.3293571 + rotX: 359.920135 + rotY: 269.999969 + rotZ: 0.0168769564 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232810 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: 42d459 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Visions of Futures Past + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.15239716 + posY: 1.70869577 + posZ: 11.50471 + rotX: 359.920135 + rotY: 269.999969 + rotZ: 0.01687689 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232810 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: de3bd5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Visions of Futures Past + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.15239716 + posY: 1.72595167 + posZ: 11.50471 + rotX: 359.9199 + rotY: 269.999969 + rotZ: 0.0165576525 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232814 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Sorcerer. + GMNotes: '' + GUID: e44036 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Wizard of Yog-Sothoth + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.394843 + posY: 1.54970729 + posZ: 4.13393164 + rotX: 359.920135 + rotY: 269.999939 + rotZ: 0.0168757457 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232813 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Monster. Abomination. + GMNotes: '' + GUID: fbe20d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Thrall + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.15501428 + posY: 1.69501209 + posZ: 7.444842 + rotX: 359.935822 + rotY: 269.994781 + rotZ: 7.50431871 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232813 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Monster. Abomination. + GMNotes: '' + GUID: 9b9792 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Thrall + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.32377672 + posY: 1.55104816 + posZ: 8.903832 + rotX: 359.921722 + rotY: 269.997437 + rotZ: 0.008892595 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232813 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Monster. Abomination. + GMNotes: '' + GUID: 76139c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Thrall + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.76801586 + posY: 1.60063446 + posZ: 8.933262 + rotX: 359.9319 + rotY: 269.992828 + rotZ: 0.0655015 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232812 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: "\tPact. Power." + GMNotes: '' + GUID: de3bd5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Light of Aforgomon + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.103076 + posY: 1.5511409 + posZ: 7.621261 + rotX: 359.920135 + rotY: 269.999878 + rotZ: 0.0168763418 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232812 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: "\tPact. Power." + GMNotes: '' + GUID: 6c2f4a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Light of Aforgomon + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.12950444 + posY: 1.70759833 + posZ: 8.101044 + rotX: 359.920135 + rotY: 269.999878 + rotZ: 0.0168764461 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232818 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: 60ef9e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Eager for Death + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.646352 + posY: 1.548182 + posZ: 0.144670352 + rotX: 359.920135 + rotY: 269.999939 + rotZ: 0.0168772917 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232818 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: 40e9d0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Eager for Death + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.37573743 + posY: 1.7043395 + posZ: 0.209344044 + rotX: 359.920135 + rotY: 269.999939 + rotZ: 0.0168772619 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232817 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: "\tCreature." + GMNotes: '' + GUID: de3bd5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Whippoorwill + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.19784832 + posY: 1.54999852 + posZ: 4.190304 + rotX: 359.920135 + rotY: 269.9999 + rotZ: 0.0168776866 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232817 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: "\tCreature." + GMNotes: '' + GUID: 61c583 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Whippoorwill + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.24814034 + posY: 1.70613587 + posZ: 4.471411 + rotX: 359.920135 + rotY: 269.9999 + rotZ: 0.0168776922 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232817 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: "\tCreature." + GMNotes: '' + GUID: de3bd5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Whippoorwill + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.24814034 + posY: 1.72339261 + posZ: 4.471411 + rotX: 359.920441 + rotY: 269.9999 + rotZ: 0.0163779482 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 233043 +- 233043 +- 233042 +- 233042 +- 233041 +- 233041 +- 233045 +- 233045 +- 233044 +- 233044 +- 233044 +- 233052 +- 233052 +- 233051 +- 233051 +- 233023 +- 233023 +- 232811 +- 232811 +- 232811 +- 232810 +- 232810 +- 232810 +- 232814 +- 232813 +- 232813 +- 232813 +- 232812 +- 232812 +- 232818 +- 232818 +- 232817 +- 232817 +- 232817 +Description: '' +GMNotes: '' +GUID: 02daa0 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Encounter Deck +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.92730021 + posY: 1.79302716 + 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 Return to The Dunwich Legacy ce9130/Custom_Model_Bag 1b The House Always Wins f52082.ttslua b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 1b The House Always Wins f52082.ttslua new file mode 100644 index 000000000..54d591927 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 1b The House Always Wins f52082.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.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 Return to The Dunwich Legacy ce9130/Custom_Model_Bag 1b The House Always Wins f52082.yaml b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 1b The House Always Wins f52082.yaml new file mode 100644 index 000000000..e3768df65 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 1b The House Always Wins f52082.yaml @@ -0,0 +1,91 @@ +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 1b The House Always Wins f52082/Deck Act Deck 0f9069.yaml' +- !include 'Custom_Model_Bag 1b The House Always Wins f52082/Custom_Tile The Dunwich + Legacy 1d6227.yaml' +- !include 'Custom_Model_Bag 1b The House Always Wins f52082/Custom_Tile 1eb845.yaml' +- !include 'Custom_Model_Bag 1b The House Always Wins f52082/Card Clover Club Bar + 45341b.yaml' +- !include 'Custom_Model_Bag 1b The House Always Wins f52082/Card Clover Club Lounge + 4b1874.yaml' +- !include 'Custom_Model_Bag 1b The House Always Wins f52082/Deck Encounter Deck 50fc37.yaml' +- !include 'Custom_Model_Bag 1b The House Always Wins f52082/Custom_Model_Bag Set-aside + 53d666.yaml' +- !include 'Custom_Model_Bag 1b The House Always Wins f52082/Custom_Tile 549a3d.yaml' +- !include 'Custom_Model_Bag 1b The House Always Wins f52082/Card Scenario 70df0b.yaml' +- !include 'Custom_Model_Bag 1b The House Always Wins f52082/Custom_Tile 7234af.yaml' +- !include 'Custom_Model_Bag 1b The House Always Wins f52082/Card La Bella Luna 7faf81.yaml' +- !include 'Custom_Model_Bag 1b The House Always Wins f52082/Card Clover Club Cardroom + 9a3039.yaml' +- !include 'Custom_Model_Bag 1b The House Always Wins f52082/Card Setup aa50e4.yaml' +- !include 'Custom_Model_Bag 1b The House Always Wins f52082/Deck Agenda Deck acc7ef.yaml' +- !include 'Custom_Model_Bag 1b The House Always Wins f52082/Custom_Tile b45961.yaml' +- !include 'Custom_Model_Bag 1b The House Always Wins f52082/Card Clover Club Pit + Boss de3bd5.yaml' +- !include 'Custom_Model_Bag 1b The House Always Wins f52082/Card Clover Club Lounge + f6109e.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/829135118403787710/FC999166E7F706C5C9D45EE8AEC786E688481E15/ + MaterialIndex: 3 + MeshURL: https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj + NormalURL: '' + TypeIndex: 6 +Description: Return to the Dunwich Legacy +GMNotes: '' +GUID: f52082 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Model_Bag 1b The House Always Wins f52082.ttslua' +LuaScriptState: '{"ml":{"0f9069":{"lock":false,"pos":{"x":-2.6884,"y":1.6535,"z":-5.0485},"rot":{"x":0.0168,"y":180,"z":0.0803}},"1d6227":{"lock":false,"pos":{"x":-3.8342,"y":1.5825,"z":-14.6606},"rot":{"x":359.9197,"y":270.0013,"z":0.0168}},"1eb845":{"lock":false,"pos":{"x":-27.2868,"y":1.6185,"z":-3.5701},"rot":{"x":0.0684,"y":135.0001,"z":0.0446}},"45341b":{"lock":false,"pos":{"x":-23.6766,"y":1.684,"z":-7.7},"rot":{"x":359.9201,"y":269.9999,"z":0.0169}},"4b1874":{"lock":false,"pos":{"x":-23.6765,"y":1.6862,"z":-0.03},"rot":{"x":359.9201,"y":269.9995,"z":0.0169}},"50fc37":{"lock":false,"pos":{"x":-3.9274,"y":1.7344,"z":5.7572},"rot":{"x":359.9197,"y":269.9998,"z":180.0168}},"53d666":{"lock":false,"pos":{"x":1.6963,"y":1.5583,"z":14.2788},"rot":{"x":359.9551,"y":224.998,"z":0.0687}},"549a3d":{"lock":false,"pos":{"x":-23.6765,"y":1.6134,"z":-3.83},"rot":{"x":0.0169,"y":179.9999,"z":0.0799}},"70df0b":{"lock":false,"pos":{"x":-3.9558,"y":1.6557,"z":-10.4409},"rot":{"x":359.9196,"y":270.0025,"z":0.0178}},"7234af":{"lock":false,"pos":{"x":-20.6144,"y":1.6101,"z":-0.3314},"rot":{"x":359.9201,"y":270.0063,"z":0.0169}},"7faf81":{"lock":false,"pos":{"x":-17.12,"y":1.6771,"z":-0.03},"rot":{"x":359.9201,"y":269.9999,"z":0.0169}},"9a3039":{"lock":false,"pos":{"x":-30.2243,"y":1.6954,"z":-0.03},"rot":{"x":359.9201,"y":269.9997,"z":0.0169}},"aa50e4":{"lock":false,"pos":{"x":-5.6573,"y":1.792,"z":-10.5265},"rot":{"x":4.8498,"y":269.9606,"z":0.0119}},"acc7ef":{"lock":false,"pos":{"x":-2.7246,"y":1.6566,"z":0.3733},"rot":{"x":0.0168,"y":179.9999,"z":0.0803}},"b45961":{"lock":false,"pos":{"x":-26.6851,"y":1.6187,"z":-0.0751},"rot":{"x":359.9201,"y":270.0063,"z":0.0169}},"de3bd5":{"lock":false,"pos":{"x":-23.6764,"y":1.6885,"z":7.5699},"rot":{"x":359.9201,"y":269.999,"z":0.0169}},"f6109e":{"lock":false,"pos":{"x":-23.6765,"y":1.6874,"z":3.86},"rot":{"x":359.9201,"y":270,"z":0.0169}}}}' +MaterialIndex: -1 +MeshIndex: -1 +Name: Custom_Model_Bag +Nickname: '1b: The House Always Wins' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 12.2509022 + posY: 1.47093093 + posZ: 22.0768032 + rotX: 359.920135 + rotY: 270.000183 + rotZ: 0.0168736037 + scaleX: 2.21 + scaleY: 0.46 + scaleZ: 2.42 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 1b The House Always Wins f52082/Card Clover Club Bar 45341b.yaml b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 1b The House Always Wins f52082/Card Clover Club Bar 45341b.yaml new file mode 100644 index 000000000..5c59cbbde --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 1b The House Always Wins f52082/Card Clover Club Bar 45341b.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 233514 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2335': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999385819522537/207CCD9C85ECB70A339C09170ABB42E139924AA0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780748790926468191/C3163A90948FC777DC7D95D05CB35D2DA32CBD9C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Clover Club. +GMNotes: '' +GUID: 45341b +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Clover Club Bar +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -23.6766 + posY: 1.683962 + posZ: -7.70000029 + rotX: 359.9201 + rotY: 269.999878 + rotZ: 0.0168764479 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 1b The House Always Wins f52082/Card Clover Club Cardroom 9a3039.yaml b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 1b The House Always Wins f52082/Card Clover Club Cardroom 9a3039.yaml new file mode 100644 index 000000000..6a26159fc --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 1b The House Always Wins f52082/Card Clover Club Cardroom 9a3039.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 233515 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2335': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999385819522537/207CCD9C85ECB70A339C09170ABB42E139924AA0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780748790926468191/C3163A90948FC777DC7D95D05CB35D2DA32CBD9C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Clover Club. +GMNotes: '' +GUID: 9a3039 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Clover Club Cardroom +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -30.2243 + posY: 1.69535089 + posZ: -0.03000037 + rotX: 359.9201 + rotY: 269.999725 + rotZ: 0.0168766789 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 1b The House Always Wins f52082/Card Clover Club Lounge 4b1874.yaml b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 1b The House Always Wins f52082/Card Clover Club Lounge 4b1874.yaml new file mode 100644 index 000000000..604c27780 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 1b The House Always Wins f52082/Card Clover Club Lounge 4b1874.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 233513 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2335': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999385819522537/207CCD9C85ECB70A339C09170ABB42E139924AA0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780748790926468191/C3163A90948FC777DC7D95D05CB35D2DA32CBD9C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Clover Club. +GMNotes: '' +GUID: 4b1874 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Clover Club Lounge +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -23.6762943 + posY: 1.68622 + posZ: -0.0300695766 + rotX: 359.9201 + rotY: 269.9999 + rotZ: 0.0168762263 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 1b The House Always Wins f52082/Card Clover Club Lounge f6109e.yaml b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 1b The House Always Wins f52082/Card Clover Club Lounge f6109e.yaml new file mode 100644 index 000000000..4a12b2dba --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 1b The House Always Wins f52082/Card Clover Club Lounge f6109e.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 233632 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2336': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296074747/742F5083E0E10E3DD22E671C78F35E6143C744FF/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296074238/FB73285A9ED0D784210E50C6EA17EBC25648D800/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Clover Club. +GMNotes: '' +GUID: f6109e +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Clover Club Lounge +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -23.6762943 + posY: 1.68736553 + posZ: 3.85995746 + rotX: 359.9201 + rotY: 269.999939 + rotZ: 0.016875539 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 1b The House Always Wins f52082/Card Clover Club Pit Boss de3bd5.yaml b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 1b The House Always Wins f52082/Card Clover Club Pit Boss de3bd5.yaml new file mode 100644 index 000000000..6290d36e1 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 1b The House Always Wins f52082/Card Clover Club Pit Boss de3bd5.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 232805 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: Criminal. Elite. +GMNotes: '' +GUID: de3bd5 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Clover Club Pit Boss +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -23.6764 + posY: 1.68845809 + posZ: 7.569899 + rotX: 359.9201 + rotY: 269.998932 + rotZ: 0.0168778244 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 1b The House Always Wins f52082/Card La Bella Luna 7faf81.yaml b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 1b The House Always Wins f52082/Card La Bella Luna 7faf81.yaml new file mode 100644 index 000000000..b4bd8bf7e --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 1b The House Always Wins f52082/Card La Bella Luna 7faf81.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 233512 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2335': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999385819522537/207CCD9C85ECB70A339C09170ABB42E139924AA0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780748790926468191/C3163A90948FC777DC7D95D05CB35D2DA32CBD9C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Arkham. +GMNotes: '' +GUID: 7faf81 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: La Bella Luna +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -17.12 + posY: 1.67707777 + posZ: -0.0300003551 + rotX: 359.9201 + rotY: 269.999939 + rotZ: 0.0168764759 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 1b The House Always Wins f52082/Card Scenario 70df0b.yaml b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 1b The House Always Wins f52082/Card Scenario 70df0b.yaml new file mode 100644 index 000000000..16095d29d --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 1b The House Always Wins f52082/Card Scenario 70df0b.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 233500 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2335': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999385819522537/207CCD9C85ECB70A339C09170ABB42E139924AA0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780748790926468191/C3163A90948FC777DC7D95D05CB35D2DA32CBD9C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: The House Always Wins +GMNotes: '' +GUID: 70df0b +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Scenario +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.95579743 + posY: 1.655695 + posZ: -10.4409084 + rotX: 359.920349 + rotY: 270.002533 + rotZ: 0.0182779562 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 1b The House Always Wins f52082/Card Setup aa50e4.yaml b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 1b The House Always Wins f52082/Card Setup aa50e4.yaml new file mode 100644 index 000000000..3b81f1936 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 1b The House Always Wins f52082/Card Setup aa50e4.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 233631 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2336': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296074747/742F5083E0E10E3DD22E671C78F35E6143C744FF/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296074238/FB73285A9ED0D784210E50C6EA17EBC25648D800/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Return to The House Always Wins +GMNotes: '' +GUID: aa50e4 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Setup +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -5.657298 + posY: 1.79197311 + posZ: -10.5265 + rotX: 4.848576 + rotY: 269.9604 + rotZ: 0.009339552 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 1b The House Always Wins f52082/Custom_Model_Bag Set-aside 53d666.yaml b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 1b The House Always Wins f52082/Custom_Model_Bag Set-aside 53d666.yaml new file mode 100644 index 000000000..49faa1f27 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 1b The House Always Wins f52082/Custom_Model_Bag Set-aside 53d666.yaml @@ -0,0 +1,63 @@ +Autoraise: true +ColorDiffuse: + b: 0.02148666 + g: 0.00100758043 + r: 0.02148666 +ContainedObjects: +- !include 'Custom_Model_Bag Set-aside 53d666/Card Dr. Henry Armitage 66197b.yaml' +- !include 'Custom_Model_Bag Set-aside 53d666/Deck Back Hall Doorways 3c2863.yaml' +- !include 'Custom_Model_Bag Set-aside 53d666/Card Dr. Francis Morgan f03306.yaml' +- !include 'Custom_Model_Bag Set-aside 53d666/Card Peter Clover 8359a3.yaml' +- !include 'Custom_Model_Bag Set-aside 53d666/Card Darkened Hall 911f8c.yaml' +- !include 'Custom_Model_Bag Set-aside 53d666/Deck Erratic Fear 91db3f.yaml' +- !include 'Custom_Model_Bag Set-aside 53d666/Deck Hideous Abominations a70139.yaml' +- !include 'Custom_Model_Bag Set-aside 53d666/Card Clover Club Stage fcf6ea.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 House Always Wins +GMNotes: '' +GUID: 53d666 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +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.696301 + posY: 1.55831707 + posZ: 14.2788019 + rotX: 359.955139 + rotY: 224.997955 + rotZ: 0.06867246 + scaleX: 2.0 + scaleY: 2.0 + scaleZ: 2.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 1b The House Always Wins f52082/Custom_Model_Bag Set-aside 53d666/Card Clover Club Stage fcf6ea.yaml b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 1b The House Always Wins f52082/Custom_Model_Bag Set-aside 53d666/Card Clover Club Stage fcf6ea.yaml new file mode 100644 index 000000000..0fbfa7658 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 1b The House Always Wins f52082/Custom_Model_Bag Set-aside 53d666/Card Clover Club Stage fcf6ea.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 233633 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2336': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296074747/742F5083E0E10E3DD22E671C78F35E6143C744FF/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296074238/FB73285A9ED0D784210E50C6EA17EBC25648D800/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Clover Club. +GMNotes: '' +GUID: fcf6ea +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Clover Club Stage +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -12.666419 + posY: 1.58127284 + posZ: -12.0692472 + rotX: 359.9201 + rotY: 270.001648 + rotZ: 0.0168747939 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 1b The House Always Wins f52082/Custom_Model_Bag Set-aside 53d666/Card Darkened Hall 911f8c.yaml b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 1b The House Always Wins f52082/Custom_Model_Bag Set-aside 53d666/Card Darkened Hall 911f8c.yaml new file mode 100644 index 000000000..03a6c5106 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 1b The House Always Wins f52082/Custom_Model_Bag Set-aside 53d666/Card Darkened Hall 911f8c.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 233516 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2335': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999385819522537/207CCD9C85ECB70A339C09170ABB42E139924AA0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780748790926468191/C3163A90948FC777DC7D95D05CB35D2DA32CBD9C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Clover Club. +GMNotes: '' +GUID: 911f8c +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Darkened Hall +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -22.47617 + posY: 3.64895749 + posZ: 20.61091 + rotX: 359.9327 + rotY: 269.999725 + rotZ: 0.0142374244 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 1b The House Always Wins f52082/Custom_Model_Bag Set-aside 53d666/Card Dr. Francis Morgan f03306.yaml b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 1b The House Always Wins f52082/Custom_Model_Bag Set-aside 53d666/Card Dr. Francis Morgan f03306.yaml new file mode 100644 index 000000000..ddd98c6f4 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 1b The House Always Wins f52082/Custom_Model_Bag Set-aside 53d666/Card Dr. Francis Morgan f03306.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Professor of Archaeology +GMNotes: '' +GUID: f03306 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Dr. Francis Morgan +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -21.8569336 + posY: 3.65409374 + posZ: 21.708086 + rotX: 359.920135 + rotY: 269.999451 + rotZ: 0.0168820117 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 1b The House Always Wins f52082/Custom_Model_Bag Set-aside 53d666/Card Dr. Henry Armitage 66197b.yaml b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 1b The House Always Wins f52082/Custom_Model_Bag Set-aside 53d666/Card Dr. Henry Armitage 66197b.yaml new file mode 100644 index 000000000..9050f7dcd --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 1b The House Always Wins f52082/Custom_Model_Bag Set-aside 53d666/Card Dr. Henry Armitage 66197b.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: The Head Librarian +GMNotes: '' +GUID: 66197b +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Dr. Henry Armitage +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -21.2456284 + posY: 3.64818525 + posZ: 21.83682 + rotX: 359.920044 + rotY: 269.9981 + rotZ: 0.0168775246 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 1b The House Always Wins f52082/Custom_Model_Bag Set-aside 53d666/Card Peter Clover 8359a3.yaml b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 1b The House Always Wins f52082/Custom_Model_Bag Set-aside 53d666/Card Peter Clover 8359a3.yaml new file mode 100644 index 000000000..9f721c265 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 1b The House Always Wins f52082/Custom_Model_Bag Set-aside 53d666/Card Peter Clover 8359a3.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 234206 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2342': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: Holding All the Cards +GMNotes: '' +GUID: 8359a3 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Peter Clover +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -21.6830788 + posY: 3.64838815 + posZ: 21.87577 + rotX: 359.920074 + rotY: 269.999969 + rotZ: 0.0168686882 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 1b The House Always Wins f52082/Custom_Model_Bag Set-aside 53d666/Deck Back Hall Doorways 3c2863.yaml b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 1b The House Always Wins f52082/Custom_Model_Bag Set-aside 53d666/Deck Back Hall Doorways 3c2863.yaml new file mode 100644 index 000000000..ffa6efae1 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 1b The House Always Wins f52082/Custom_Model_Bag Set-aside 53d666/Deck Back Hall Doorways 3c2863.yaml @@ -0,0 +1,172 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 233519 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2335': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999385819522537/207CCD9C85ECB70A339C09170ABB42E139924AA0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780748790926468191/C3163A90948FC777DC7D95D05CB35D2DA32CBD9C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Clover Club. + GMNotes: '' + GUID: ce6ce6 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Back Hall Doorway + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -21.227375 + posY: 1.58556712 + posZ: 9.342328 + rotX: 359.920135 + rotY: 269.998932 + rotZ: 0.0168791767 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233518 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2335': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999385819522537/207CCD9C85ECB70A339C09170ABB42E139924AA0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780748790926468191/C3163A90948FC777DC7D95D05CB35D2DA32CBD9C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Clover Club. + GMNotes: '' + GUID: fc63df + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Back Hall Doorway + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -21.4910049 + posY: 1.74459851 + posZ: 9.057136 + rotX: 359.920135 + rotY: 269.99884 + rotZ: 0.0168774687 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233517 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2335': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999385819522537/207CCD9C85ECB70A339C09170ABB42E139924AA0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780748790926468191/C3163A90948FC777DC7D95D05CB35D2DA32CBD9C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Clover Club. + GMNotes: '' + GUID: 3cf7f9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Back Hall Doorway + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -21.0300236 + posY: 1.75582182 + posZ: 9.689247 + rotX: 359.920258 + rotY: 269.995636 + rotZ: 0.230649278 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2335': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999385819522537/207CCD9C85ECB70A339C09170ABB42E139924AA0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780748790926468191/C3163A90948FC777DC7D95D05CB35D2DA32CBD9C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 233519 +- 233518 +- 233517 +Description: '' +GMNotes: '' +GUID: 3c2863 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Back Hall Doorways +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -21.9918461 + posY: 3.64838886 + posZ: 21.0719 + rotX: 359.920074 + rotY: 269.998657 + rotZ: 0.0168636665 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 1b The House Always Wins f52082/Custom_Model_Bag Set-aside 53d666/Deck Erratic Fear 91db3f.yaml b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 1b The House Always Wins f52082/Custom_Model_Bag Set-aside 53d666/Deck Erratic Fear 91db3f.yaml new file mode 100644 index 000000000..d60f0ba9f --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 1b The House Always Wins f52082/Custom_Model_Bag Set-aside 53d666/Deck Erratic Fear 91db3f.yaml @@ -0,0 +1,344 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 233050 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: 7dd094 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Need for Knowledge + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 9.214496 + posY: 1.54113626 + posZ: 2.57877874 + rotX: 359.920135 + rotY: 269.999664 + rotZ: 0.0168800149 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233050 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: 9f855c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Need for Knowledge + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 9.015348 + posY: 1.695799 + posZ: 2.69127941 + rotX: 359.920135 + rotY: 269.999664 + rotZ: 0.0168801211 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233050 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: 7dd094 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Need for Knowledge + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 9.04972649 + posY: 1.71299982 + posZ: 2.68801451 + rotX: 359.919678 + rotY: 269.999664 + rotZ: 0.016476877 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233049 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: e3fba9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Idle Hands + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 9.170475 + posY: 1.54203224 + posZ: 5.413058 + rotX: 359.920135 + rotY: 269.999573 + rotZ: 0.01687807 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233049 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: ac1417 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Idle Hands + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 9.196331 + posY: 1.69662583 + posZ: 5.74743938 + rotX: 359.920135 + rotY: 269.999573 + rotZ: 0.0168674812 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233048 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: d8596b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Violent Commands + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 9.157638 + posY: 1.54277384 + posZ: 7.870572 + rotX: 359.920135 + rotY: 269.999573 + rotZ: 0.0168761183 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233048 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: 27658e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Violent Commands + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 9.356761 + posY: 1.69708729 + posZ: 7.57023 + rotX: 359.920135 + rotY: 269.999573 + rotZ: 0.0168761387 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 233050 +- 233050 +- 233050 +- 233049 +- 233049 +- 233048 +- 233048 +Description: '' +GMNotes: '' +GUID: 91db3f +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Erratic Fear +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -8.367586 + posY: 1.57265091 + posZ: -27.6858768 + rotX: 359.9201 + rotY: 270.011169 + rotZ: 0.0168614779 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 1b The House Always Wins f52082/Custom_Model_Bag Set-aside 53d666/Deck Hideous Abominations a70139.yaml b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 1b The House Always Wins f52082/Custom_Model_Bag Set-aside 53d666/Deck Hideous Abominations a70139.yaml new file mode 100644 index 000000000..2e579010a --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 1b The House Always Wins f52082/Custom_Model_Bag Set-aside 53d666/Deck Hideous Abominations a70139.yaml @@ -0,0 +1,172 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 232831 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Abomination. + GMNotes: '' + GUID: 919fa0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Servant of the Lurker + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.69560742 + posY: 1.54953551 + posZ: 4.974127 + rotX: 359.920135 + rotY: 269.999939 + rotZ: 0.0168759543 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232830 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Abomination. + GMNotes: '' + GUID: de3bd5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Conglomeration of Spheres + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.816169 + posY: 1.55043364 + posZ: 8.595026 + rotX: 359.920135 + rotY: 269.999878 + rotZ: 0.0168762449 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232830 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Abomination. + GMNotes: '' + GUID: 1b1dd5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Conglomeration of Spheres + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.72422314 + posY: 1.70678663 + posZ: 8.640354 + rotX: 359.920135 + rotY: 269.999878 + rotZ: 0.0168763362 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 232831 +- 232830 +- 232830 +Description: '' +GMNotes: '' +GUID: a70139 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Hideous Abominations +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -21.7579136 + posY: 3.66807055 + posZ: 21.73338 + rotX: 0.07986404 + rotY: 269.999542 + rotZ: 179.672668 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 1b The House Always Wins f52082/Custom_Tile 1eb845.yaml b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 1b The House Always Wins f52082/Custom_Tile 1eb845.yaml new file mode 100644 index 000000000..993df632d --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 1b The House Always Wins f52082/Custom_Tile 1eb845.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 1eb845 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.2868 + posY: 1.61849868 + posZ: -3.5701 + rotX: 0.06843111 + rotY: 135.000122 + rotZ: 0.04456242 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 1b The House Always Wins f52082/Custom_Tile 549a3d.yaml b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 1b The House Always Wins f52082/Custom_Tile 549a3d.yaml new file mode 100644 index 000000000..f026ec73c --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 1b The House Always Wins f52082/Custom_Tile 549a3d.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 549a3d +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.6765 + posY: 1.61338782 + posZ: -3.83000016 + rotX: 0.0168719646 + rotY: 179.999908 + rotZ: 0.079939276 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 1b The House Always Wins f52082/Custom_Tile 7234af.yaml b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 1b The House Always Wins f52082/Custom_Tile 7234af.yaml new file mode 100644 index 000000000..45c6c8447 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 1b The House Always Wins f52082/Custom_Tile 7234af.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 7234af +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.6144 + posY: 1.61014807 + posZ: -0.3314003 + rotX: 359.9201 + rotY: 270.0063 + rotZ: 0.016891066 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 1b The House Always Wins f52082/Custom_Tile b45961.yaml b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 1b The House Always Wins f52082/Custom_Tile b45961.yaml new file mode 100644 index 000000000..de5b8caaa --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 1b The House Always Wins f52082/Custom_Tile b45961.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: b45961 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.6851 + posY: 1.6186887 + posZ: -0.07510027 + rotX: 359.9201 + rotY: 270.0063 + rotZ: 0.01689133 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 1b The House Always Wins f52082/Custom_Tile The Dunwich Legacy 1d6227.ttslua b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 1b The House Always Wins f52082/Custom_Tile The Dunwich Legacy 1d6227.ttslua new file mode 100644 index 000000000..cfa110e20 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 1b The House Always Wins f52082/Custom_Tile The Dunwich Legacy 1d6227.ttslua @@ -0,0 +1,21 @@ +name = 'The Dunwich Legacy' + +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 Return to The Dunwich Legacy ce9130/Custom_Model_Bag 1b The House Always Wins f52082/Custom_Tile The Dunwich Legacy 1d6227.yaml b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 1b The House Always Wins f52082/Custom_Tile The Dunwich Legacy 1d6227.yaml new file mode 100644 index 000000000..cfc462842 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 1b The House Always Wins f52082/Custom_Tile The Dunwich Legacy 1d6227.yaml @@ -0,0 +1,42 @@ +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 +GMNotes: '' +GUID: 1d6227 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Tile The Dunwich Legacy 1d6227.ttslua' +LuaScriptState: '' +Name: Custom_Tile +Nickname: The Dunwich Legacy +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.83420014 + posY: 1.58252406 + posZ: -14.6606016 + rotX: 359.919739 + rotY: 270.001343 + rotZ: 0.0168359652 + scaleX: 2.2 + scaleY: 1.0 + scaleZ: 2.2 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 1b The House Always Wins f52082/Deck Act Deck 0f9069.yaml b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 1b The House Always Wins f52082/Deck Act Deck 0f9069.yaml new file mode 100644 index 000000000..9330f76c5 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 1b The House Always Wins f52082/Deck Act Deck 0f9069.yaml @@ -0,0 +1,215 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 233312 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2333': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296027643/326876D4B46DF777AA1293989DEEE6A810ED027B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999385819527677/3AD8DFFFBFF54DB098AD3E00BB7E75DA0590FE8B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 3 + GMNotes: '' + GUID: '145366' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Fold + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -12.0053425 + posY: 1.574654 + posZ: 15.7123489 + rotX: 0.01722809 + rotY: 180.001465 + rotZ: 0.08352321 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233311 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2333': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296027643/326876D4B46DF777AA1293989DEEE6A810ED027B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999385819527677/3AD8DFFFBFF54DB098AD3E00BB7E75DA0590FE8B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 3 + GMNotes: '' + GUID: fdc9d7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: All In + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -12.021328 + posY: 1.86045659 + posZ: 15.968605 + rotX: 4.6276927 + rotY: 180.01973 + rotZ: 0.0716553256 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233310 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2333': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296027643/326876D4B46DF777AA1293989DEEE6A810ED027B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999385819527677/3AD8DFFFBFF54DB098AD3E00BB7E75DA0590FE8B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 2 + GMNotes: '' + GUID: 7f8d84 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Skin Game + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -12.1734371 + posY: 1.843925 + posZ: 15.5026646 + rotX: 356.2014 + rotY: 179.999069 + rotZ: 0.07996937 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233309 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2333': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296027643/326876D4B46DF777AA1293989DEEE6A810ED027B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999385819527677/3AD8DFFFBFF54DB098AD3E00BB7E75DA0590FE8B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 1 + GMNotes: '' + GUID: 1b5f59 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Beginner's Luck + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -12.32052 + posY: 1.72727728 + posZ: 15.8954 + rotX: 0.0168742444 + rotY: 180.000061 + rotZ: 0.0798831657 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2333': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296027643/326876D4B46DF777AA1293989DEEE6A810ED027B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999385819527677/3AD8DFFFBFF54DB098AD3E00BB7E75DA0590FE8B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 233312 +- 233311 +- 233310 +- 233309 +Description: '' +GMNotes: '' +GUID: 0f9069 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Act Deck +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.68839979 + posY: 1.65349436 + posZ: -5.0485 + rotX: 0.0168350041 + rotY: 180.000015 + rotZ: 0.08025753 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 1b The House Always Wins f52082/Deck Agenda Deck acc7ef.yaml b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 1b The House Always Wins f52082/Deck Agenda Deck acc7ef.yaml new file mode 100644 index 000000000..5d4e9a569 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 1b The House Always Wins f52082/Deck Agenda Deck acc7ef.yaml @@ -0,0 +1,172 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 233308 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2333': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296027643/326876D4B46DF777AA1293989DEEE6A810ED027B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999385819527677/3AD8DFFFBFF54DB098AD3E00BB7E75DA0590FE8B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 3 + GMNotes: '' + GUID: 5d9d42 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Chaos in the Clover Club + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -11.2357025 + posY: 1.57601047 + posZ: 24.19253 + rotX: 0.0168714039 + rotY: 180.000031 + rotZ: 0.07987929 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233307 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2333': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296027643/326876D4B46DF777AA1293989DEEE6A810ED027B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999385819527677/3AD8DFFFBFF54DB098AD3E00BB7E75DA0590FE8B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 2 + GMNotes: '' + GUID: f53012 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Underground Muscle + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -11.2002144 + posY: 1.72502458 + posZ: 23.8849373 + rotX: -0.00128136319 + rotY: 178.8931 + rotZ: 0.0670245439 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233306 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2333': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296027643/326876D4B46DF777AA1293989DEEE6A810ED027B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999385819527677/3AD8DFFFBFF54DB098AD3E00BB7E75DA0590FE8B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 1 + GMNotes: '' + GUID: 1b5f59 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Clover Club + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -11.1360178 + posY: 1.74220145 + posZ: 23.88707 + rotX: -0.00170464371 + rotY: 179.276382 + rotZ: 0.06712235 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2333': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296027643/326876D4B46DF777AA1293989DEEE6A810ED027B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999385819527677/3AD8DFFFBFF54DB098AD3E00BB7E75DA0590FE8B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 233308 +- 233307 +- 233306 +Description: '' +GMNotes: '' +GUID: acc7ef +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Agenda Deck +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.72459984 + posY: 1.656641 + posZ: 0.373300284 + rotX: 0.0168351252 + rotY: 179.999908 + rotZ: 0.0802577958 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 1b The House Always Wins f52082/Deck Encounter Deck 50fc37.yaml b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 1b The House Always Wins f52082/Deck Encounter Deck 50fc37.yaml new file mode 100644 index 000000000..42d5fe727 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 1b The House Always Wins f52082/Deck Encounter Deck 50fc37.yaml @@ -0,0 +1,1046 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 233025 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Illicit. + GMNotes: '' + GUID: 57f732 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Raise the Stakes + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -27.0439072 + posY: 1.59204328 + posZ: 3.79773021 + rotX: 359.9201 + rotY: 270.0008 + rotZ: 0.0168763939 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233025 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Illicit. + GMNotes: '' + GUID: 9a8299 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Raise the Stakes + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -26.9545689 + posY: 1.77543986 + posZ: 3.89506936 + rotX: 359.95 + rotY: 270.000244 + rotZ: 1.78304386 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233024 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Illicit. + GMNotes: '' + GUID: e3fba9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Caught Cheating + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -26.7130718 + posY: 1.78189743 + posZ: 3.93169451 + rotX: -2.40123836e-06 + rotY: 270.0004 + rotZ: 1.01994264 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233024 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Illicit. + GMNotes: '' + GUID: 849ccd + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Caught Cheating + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -26.7386265 + posY: 1.744123 + posZ: 4.066535 + rotX: 359.9361 + rotY: 270.0 + rotZ: 0.008125369 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232820 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: a8cc8c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Twist of Fate + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.198071 + posY: 1.55145156 + posZ: 9.125637 + rotX: 359.920135 + rotY: 269.999939 + rotZ: 0.01687778 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232820 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: 9d6b4c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Twist of Fate + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.70683336 + posY: 1.70854175 + posZ: 9.092162 + rotX: 359.920135 + rotY: 269.999939 + rotZ: 0.01687769 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232820 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: a8cc8c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Twist of Fate + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.70645475 + posY: 1.72578371 + posZ: 9.100254 + rotX: 359.921539 + rotY: 269.999939 + rotZ: 0.0167463012 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232819 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: de3bd5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Cursed Luck + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.15651965 + posY: 1.55232441 + posZ: 11.89302 + rotX: 359.920135 + rotY: 269.999939 + rotZ: 0.0168776158 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232819 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: 64281b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Cursed Luck + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.19927931 + posY: 1.7088623 + posZ: 11.9196167 + rotX: 359.920135 + rotY: 269.999939 + rotZ: 0.0168775618 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232819 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: de3bd5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Cursed Luck + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.230147 + posY: 1.72610009 + posZ: 11.971447 + rotX: 359.92 + rotY: 269.999939 + rotZ: 0.0164669342 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232809 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: de3bd5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Arousing Suspicions + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.94530869 + posY: 1.55160308 + posZ: 13.1780157 + rotX: 359.920135 + rotY: 270.0 + rotZ: 0.0168776065 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232809 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: f3b1ad + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Arousing Suspicions + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.473675 + posY: 1.708686 + posZ: 13.1101532 + rotX: 359.920135 + rotY: 270.0 + rotZ: 0.01687759 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232808 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Poison. Illicit. + GMNotes: '' + GUID: de3bd5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Something in the Drinks + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 4.356045 + posY: 1.5514009 + posZ: 14.4359617 + rotX: 359.920135 + rotY: 269.999939 + rotZ: 0.0168756079 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232808 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Poison. Illicit. + GMNotes: '' + GUID: 41c162 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Something in the Drinks + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 4.11569738 + posY: 1.70826149 + posZ: 14.8454256 + rotX: 359.920135 + rotY: 269.999939 + rotZ: 0.0168757755 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232826 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Tactic. + GMNotes: '' + GUID: fb489f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Hunted Down + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.980493 + posY: 1.55055571 + posZ: 5.05313349 + rotX: 359.920135 + rotY: 269.999939 + rotZ: 0.016877586 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232826 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Tactic. + GMNotes: '' + GUID: 5da81c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Hunted Down + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.06432152 + posY: 1.70658684 + posZ: 4.754894 + rotX: 359.920135 + rotY: 269.999939 + rotZ: 0.01687765 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232825 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: "\tHuman. Criminal. Syndicate." + GMNotes: '' + GUID: 5b2e99 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Mobster + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.824686 + posY: 1.55165482 + posZ: 8.04818 + rotX: 359.920135 + rotY: 269.999939 + rotZ: 0.0168768317 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232825 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: "\tHuman. Criminal. Syndicate." + GMNotes: '' + GUID: a5bca1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Mobster + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.079666 + posY: 1.707689 + posZ: 7.82385826 + rotX: 359.920135 + rotY: 269.999939 + rotZ: 0.0168767981 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232824 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: "\tHuman. Criminal. Syndicate." + GMNotes: '' + GUID: de3bd5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: O'Bannion's Thug + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.137052 + posY: 1.700631 + posZ: 4.79863548 + rotX: 359.920135 + rotY: 269.999878 + rotZ: 0.016896477 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232824 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: "\tHuman. Criminal. Syndicate." + GMNotes: '' + GUID: de3bd5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: O'Bannion's Thug + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.09011388 + posY: 1.71127486 + posZ: 4.866368 + rotX: 359.9204 + rotY: 269.999878 + rotZ: 0.0165366847 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231712 + 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 + UniqueBack: false + Description: Creature. + GMNotes: '' + GUID: ab3719 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Swarm of Rats + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 15.456192 + posY: 1.53138053 + posZ: -0.8908986 + rotX: 359.92038 + rotY: 270.0 + rotZ: 0.0147123663 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231712 + 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 + UniqueBack: false + Description: Creature. + GMNotes: '' + GUID: a2cf85 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Swarm of Rats + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 15.4186563 + posY: 1.68472993 + posZ: -0.738109052 + rotX: 359.913422 + rotY: 270.000122 + rotZ: 0.0100070881 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231712 + 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 + UniqueBack: false + Description: Creature. + GMNotes: '' + GUID: ab3719 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Swarm of Rats + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 15.4186554 + posY: 1.69875109 + posZ: -0.738129 + rotX: 359.918427 + rotY: 270.0001 + rotZ: 0.0155182732 + 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 + UniqueBack: false + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 233025 +- 233025 +- 233024 +- 233024 +- 232820 +- 232820 +- 232820 +- 232819 +- 232819 +- 232819 +- 232809 +- 232809 +- 232808 +- 232808 +- 232826 +- 232826 +- 232825 +- 232825 +- 232824 +- 232824 +- 231712 +- 231712 +- 231712 +Description: '' +GMNotes: '' +GUID: 50fc37 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Encounter Deck +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.92740035 + posY: 1.73440325 + 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 Return to The Dunwich Legacy ce9130/Custom_Model_Bag 2 The Miskatonic Museum 87897a.ttslua b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 2 The Miskatonic Museum 87897a.ttslua new file mode 100644 index 000000000..54d591927 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 2 The Miskatonic Museum 87897a.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.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 Return to The Dunwich Legacy ce9130/Custom_Model_Bag 2 The Miskatonic Museum 87897a.yaml b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 2 The Miskatonic Museum 87897a.yaml new file mode 100644 index 000000000..3729d84a9 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 2 The Miskatonic Museum 87897a.yaml @@ -0,0 +1,90 @@ +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 2 The Miskatonic Museum 87897a/Deck Non-Restricted Exhibit + Halls b24a2a.yaml' +- !include 'Custom_Model_Bag 2 The Miskatonic Museum 87897a/Card Exhibit Hall 0b0c58.yaml' +- !include 'Custom_Model_Bag 2 The Miskatonic Museum 87897a/Deck Encounter Deck 62c028.yaml' +- !include 'Custom_Model_Bag 2 The Miskatonic Museum 87897a/Deck Agenda Deck dbdfa1.yaml' +- !include 'Custom_Model_Bag 2 The Miskatonic Museum 87897a/Deck Act Deck 6571a3.yaml' +- !include 'Custom_Model_Bag 2 The Miskatonic Museum 87897a/Card Scenario 70df0b.yaml' +- !include 'Custom_Model_Bag 2 The Miskatonic Museum 87897a/Card Setup 96f250.yaml' +- !include 'Custom_Model_Bag 2 The Miskatonic Museum 87897a/Custom_Tile The Miskatonic + Museum 4b5e17.yaml' +- !include 'Custom_Model_Bag 2 The Miskatonic Museum 87897a/Custom_Model_Bag Set-aside + ddbf36.yaml' +- !include 'Custom_Model_Bag 2 The Miskatonic Museum 87897a/Card Museum Entrance cf40fc.yaml' +- !include 'Custom_Model_Bag 2 The Miskatonic Museum 87897a/Custom_Tile 44b0c5.yaml' +- !include 'Custom_Model_Bag 2 The Miskatonic Museum 87897a/Card Museum Halls 633816.yaml' +- !include 'Custom_Model_Bag 2 The Miskatonic Museum 87897a/Custom_Tile 7dc46b.yaml' +- !include 'Custom_Model_Bag 2 The Miskatonic Museum 87897a/Card Administration Office + d2eb25.yaml' +- !include 'Custom_Model_Bag 2 The Miskatonic Museum 87897a/Card Administration Office + c3915f.yaml' +- !include 'Custom_Model_Bag 2 The Miskatonic Museum 87897a/Custom_Tile 1a4770.yaml' +- !include 'Custom_Model_Bag 2 The Miskatonic Museum 87897a/Card Security Office 2eb7a1.yaml' +- !include 'Custom_Model_Bag 2 The Miskatonic Museum 87897a/Card Security Office fcb3e4.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/829135118403751490/58E295C1174102527E7C307F19B0DBBB8431B750/ + MaterialIndex: 3 + MeshURL: https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj + NormalURL: '' + TypeIndex: 6 +Description: Return to the Dunwich Legacy +GMNotes: '' +GUID: 87897a +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Model_Bag 2 The Miskatonic Museum 87897a.ttslua' +LuaScriptState: '{"ml":{"0b0c58":{"lock":false,"pos":{"x":-5.7076,"y":1.6686,"z":15.8305},"rot":{"x":359.9197,"y":270.0001,"z":180.0168}},"1a4770":{"lock":false,"pos":{"x":-23.6765,"y":1.6134,"z":-3.83},"rot":{"x":0.0169,"y":179.9999,"z":0.0799}},"2eb7a1":{"lock":false,"pos":{"x":-22.1947,"y":1.734,"z":-7.7129},"rot":{"x":0.0847,"y":269.9983,"z":359.916}},"44b0c5":{"lock":false,"pos":{"x":-20.2168,"y":1.6096,"z":-0.2355},"rot":{"x":359.9201,"y":269.9937,"z":0.0169}},"4b5e17":{"lock":false,"pos":{"x":-3.4875,"y":1.5819,"z":-15.0699},"rot":{"x":359.9197,"y":269.9803,"z":0.0169}},"62c028":{"lock":false,"pos":{"x":-3.9274,"y":1.8143,"z":5.7571},"rot":{"x":359.9197,"y":269.9997,"z":180.0168}},"633816":{"lock":false,"pos":{"x":-23.6765,"y":1.6862,"z":-0.03},"rot":{"x":359.9201,"y":269.9998,"z":0.0169}},"6571a3":{"lock":false,"pos":{"x":-2.6885,"y":1.6535,"z":-5.0485},"rot":{"x":0.0168,"y":180,"z":0.0803}},"70df0b":{"lock":false,"pos":{"x":-3.956,"y":1.6556,"z":-10.4412},"rot":{"x":359.9198,"y":269.9976,"z":0.0165}},"7dc46b":{"lock":false,"pos":{"x":-23.6765,"y":1.6157,"z":3.86},"rot":{"x":359.9831,"y":0.0002,"z":359.9201}},"96f250":{"lock":false,"pos":{"x":-5.3381,"y":1.7061,"z":-10.5004},"rot":{"x":0.0425,"y":270.0231,"z":359.8714}},"b24a2a":{"lock":false,"pos":{"x":-2.2208,"y":1.6645,"z":15.8341},"rot":{"x":359.9197,"y":269.9999,"z":0.0168}},"c3915f":{"lock":false,"pos":{"x":-21.6123,"y":1.7961,"z":7.515},"rot":{"x":355.8572,"y":270.0008,"z":0.0174}},"cf40fc":{"lock":false,"pos":{"x":-17.12,"y":1.6771,"z":-0.03},"rot":{"x":359.9201,"y":270,"z":0.0169}},"d2eb25":{"lock":false,"pos":{"x":-23.6762,"y":1.6884,"z":7.5698},"rot":{"x":359.9182,"y":270.0044,"z":0.0156}},"dbdfa1":{"lock":false,"pos":{"x":-2.7248,"y":1.6566,"z":0.3731},"rot":{"x":0.0168,"y":180.0004,"z":0.0803}},"ddbf36":{"lock":false,"pos":{"x":1.6967,"y":1.5583,"z":14.2787},"rot":{"x":359.9551,"y":224.998,"z":0.0687}},"fcb3e4":{"lock":false,"pos":{"x":-23.6765,"y":1.684,"z":-7.6997},"rot":{"x":359.9201,"y":270.0032,"z":0.0167}}}}' +MaterialIndex: -1 +MeshIndex: -1 +Name: Custom_Model_Bag +Nickname: '2: The Miskatonic Museum' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 12.2505035 + posY: 1.4683876 + posZ: 13.4375 + rotX: 359.920135 + rotY: 269.9995 + rotZ: 0.0168751143 + scaleX: 2.21 + scaleY: 0.46 + scaleZ: 2.42 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 2 The Miskatonic Museum 87897a/Card Administration Office c3915f.yaml b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 2 The Miskatonic Museum 87897a/Card Administration Office c3915f.yaml new file mode 100644 index 000000000..a57b3307c --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 2 The Miskatonic Museum 87897a/Card Administration Office c3915f.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 233526 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2335': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999385819522537/207CCD9C85ECB70A339C09170ABB42E139924AA0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780748790926468191/C3163A90948FC777DC7D95D05CB35D2DA32CBD9C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: "\tMiskatonic." +GMNotes: '' +GUID: c3915f +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Administration Office +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -21.61226 + posY: 1.796091 + posZ: 7.51497126 + rotX: 355.8572 + rotY: 270.000824 + rotZ: 0.0173767935 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 2 The Miskatonic Museum 87897a/Card Administration Office d2eb25.yaml b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 2 The Miskatonic Museum 87897a/Card Administration Office d2eb25.yaml new file mode 100644 index 000000000..5103a0d96 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 2 The Miskatonic Museum 87897a/Card Administration Office d2eb25.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 233525 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2335': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999385819522537/207CCD9C85ECB70A339C09170ABB42E139924AA0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780748790926468191/C3163A90948FC777DC7D95D05CB35D2DA32CBD9C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: "\tMiskatonic." +GMNotes: '' +GUID: d2eb25 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Administration Office +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -23.676239 + posY: 1.68844438 + posZ: 7.569798 + rotX: 359.918243 + rotY: 270.004364 + rotZ: 0.0155773787 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 2 The Miskatonic Museum 87897a/Card Exhibit Hall 0b0c58.yaml b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 2 The Miskatonic Museum 87897a/Card Exhibit Hall 0b0c58.yaml new file mode 100644 index 000000000..6ea98a495 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 2 The Miskatonic Museum 87897a/Card Exhibit Hall 0b0c58.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 233532 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2335': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999385819522537/207CCD9C85ECB70A339C09170ABB42E139924AA0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780748790926468191/C3163A90948FC777DC7D95D05CB35D2DA32CBD9C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Miskatonic. Exhibit. +GMNotes: '' +GUID: 0b0c58 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Exhibit Hall +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -5.707596 + posY: 1.66864443 + posZ: 15.83052 + rotX: 359.919739 + rotY: 270.000061 + rotZ: 180.01683 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 2 The Miskatonic Museum 87897a/Card Museum Entrance cf40fc.yaml b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 2 The Miskatonic Museum 87897a/Card Museum Entrance cf40fc.yaml new file mode 100644 index 000000000..6e9b9f5ab --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 2 The Miskatonic Museum 87897a/Card Museum Entrance cf40fc.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 233521 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2335': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999385819522537/207CCD9C85ECB70A339C09170ABB42E139924AA0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780748790926468191/C3163A90948FC777DC7D95D05CB35D2DA32CBD9C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: "\tMiskatonic." +GMNotes: '' +GUID: cf40fc +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Museum Entrance +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -17.1199532 + posY: 1.67707777 + posZ: -0.0300105289 + rotX: 359.9201 + rotY: 270.0 + rotZ: 0.0168768559 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 2 The Miskatonic Museum 87897a/Card Museum Halls 633816.yaml b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 2 The Miskatonic Museum 87897a/Card Museum Halls 633816.yaml new file mode 100644 index 000000000..ce0bac3d9 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 2 The Miskatonic Museum 87897a/Card Museum Halls 633816.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 233522 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2335': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999385819522537/207CCD9C85ECB70A339C09170ABB42E139924AA0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780748790926468191/C3163A90948FC777DC7D95D05CB35D2DA32CBD9C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: "\tMiskatonic." +GMNotes: '' +GUID: '633816' +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Museum Halls +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -23.676548 + posY: 1.68622041 + posZ: -0.0299946088 + rotX: 359.9201 + rotY: 269.999847 + rotZ: 0.01687716 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 2 The Miskatonic Museum 87897a/Card Scenario 70df0b.yaml b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 2 The Miskatonic Museum 87897a/Card Scenario 70df0b.yaml new file mode 100644 index 000000000..973ff890a --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 2 The Miskatonic Museum 87897a/Card Scenario 70df0b.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 233520 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2335': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999385819522537/207CCD9C85ECB70A339C09170ABB42E139924AA0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780748790926468191/C3163A90948FC777DC7D95D05CB35D2DA32CBD9C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: The Miskatonic Museum +GMNotes: '' +GUID: 70df0b +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Scenario +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.95598435 + posY: 1.65564322 + posZ: -10.4411926 + rotX: 359.9198 + rotY: 269.99762 + rotZ: 0.0165239256 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 2 The Miskatonic Museum 87897a/Card Security Office 2eb7a1.yaml b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 2 The Miskatonic Museum 87897a/Card Security Office 2eb7a1.yaml new file mode 100644 index 000000000..bf6ad4c3a --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 2 The Miskatonic Museum 87897a/Card Security Office 2eb7a1.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 233524 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2335': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999385819522537/207CCD9C85ECB70A339C09170ABB42E139924AA0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780748790926468191/C3163A90948FC777DC7D95D05CB35D2DA32CBD9C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: "\tMiskatonic." +GMNotes: '' +GUID: 2eb7a1 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Security Office +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -22.1947346 + posY: 1.7340014 + posZ: -7.71285152 + rotX: 0.08473763 + rotY: 269.9983 + rotZ: 359.916016 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 2 The Miskatonic Museum 87897a/Card Security Office fcb3e4.yaml b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 2 The Miskatonic Museum 87897a/Card Security Office fcb3e4.yaml new file mode 100644 index 000000000..72edb36c5 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 2 The Miskatonic Museum 87897a/Card Security Office fcb3e4.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 233523 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2335': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999385819522537/207CCD9C85ECB70A339C09170ABB42E139924AA0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780748790926468191/C3163A90948FC777DC7D95D05CB35D2DA32CBD9C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: "\tMiskatonic." +GMNotes: '' +GUID: fcb3e4 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Security Office +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -23.6764755 + posY: 1.68396 + posZ: -7.69974756 + rotX: 359.920135 + rotY: 270.0032 + rotZ: 0.01673536 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 2 The Miskatonic Museum 87897a/Card Setup 96f250.yaml b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 2 The Miskatonic Museum 87897a/Card Setup 96f250.yaml new file mode 100644 index 000000000..5a2ceccd9 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 2 The Miskatonic Museum 87897a/Card Setup 96f250.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 233634 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2336': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296074747/742F5083E0E10E3DD22E671C78F35E6143C744FF/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296074238/FB73285A9ED0D784210E50C6EA17EBC25648D800/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Return to The Miskatonic Museum +GMNotes: '' +GUID: 96f250 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Setup +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -5.338065 + posY: 1.706125 + posZ: -10.5003767 + rotX: 0.042496834 + rotY: 270.023071 + rotZ: 359.8714 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 2 The Miskatonic Museum 87897a/Custom_Model_Bag Set-aside ddbf36.yaml b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 2 The Miskatonic Museum 87897a/Custom_Model_Bag Set-aside ddbf36.yaml new file mode 100644 index 000000000..18eb6b7dd --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 2 The Miskatonic Museum 87897a/Custom_Model_Bag Set-aside ddbf36.yaml @@ -0,0 +1,59 @@ +Autoraise: true +ColorDiffuse: + b: 0.02148666 + g: 0.00100758043 + r: 0.02148666 +ContainedObjects: +- !include 'Custom_Model_Bag Set-aside ddbf36/Card Shadow-spawned de3bd5.yaml' +- !include 'Custom_Model_Bag Set-aside ddbf36/Card The Necronomicon d45f10.yaml' +- !include 'Custom_Model_Bag Set-aside ddbf36/Card Adam Lynch 40c516.yaml' +- !include 'Custom_Model_Bag Set-aside ddbf36/Card Harold Walsted e88ba8.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 Miskatonic Museum +GMNotes: '' +GUID: ddbf36 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +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.69665611 + posY: 1.55831635 + posZ: 14.2787027 + rotX: 359.9551 + rotY: 224.997986 + rotZ: 0.0686762 + scaleX: 2.0 + scaleY: 2.0 + scaleZ: 2.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 2 The Miskatonic Museum 87897a/Custom_Model_Bag Set-aside ddbf36/Card Adam Lynch 40c516.yaml b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 2 The Miskatonic Museum 87897a/Custom_Model_Bag Set-aside ddbf36/Card Adam Lynch 40c516.yaml new file mode 100644 index 000000000..849c56e9c --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 2 The Miskatonic Museum 87897a/Custom_Model_Bag Set-aside ddbf36/Card Adam Lynch 40c516.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 233733 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2337': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: Museum Security +GMNotes: '' +GUID: 40c516 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Adam Lynch +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -12.0281973 + posY: 3.63454843 + posZ: 21.9249325 + rotX: 359.97287 + rotY: 269.999573 + rotZ: 0.0169146843 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 2 The Miskatonic Museum 87897a/Custom_Model_Bag Set-aside ddbf36/Card Harold Walsted e88ba8.yaml b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 2 The Miskatonic Museum 87897a/Custom_Model_Bag Set-aside ddbf36/Card Harold Walsted e88ba8.yaml new file mode 100644 index 000000000..af3b06f8f --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 2 The Miskatonic Museum 87897a/Custom_Model_Bag Set-aside ddbf36/Card Harold Walsted e88ba8.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 233732 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2337': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: Curator of the Museum +GMNotes: '' +GUID: e88ba8 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Harold Walsted +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -11.7163563 + posY: 3.634717 + posZ: 23.3817177 + rotX: 359.920044 + rotY: 269.999969 + rotZ: 0.0169034433 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 2 The Miskatonic Museum 87897a/Custom_Model_Bag Set-aside ddbf36/Card Shadow-spawned de3bd5.yaml b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 2 The Miskatonic Museum 87897a/Custom_Model_Bag Set-aside ddbf36/Card Shadow-spawned de3bd5.yaml new file mode 100644 index 000000000..ab6f88f78 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 2 The Miskatonic Museum 87897a/Custom_Model_Bag Set-aside ddbf36/Card Shadow-spawned de3bd5.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 232836 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: "\tPower." +GMNotes: '' +GUID: de3bd5 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Shadow-spawned +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -11.1775236 + posY: 3.63393068 + posZ: 22.9866619 + rotX: 359.920044 + rotY: 270.0 + rotZ: 0.0169075951 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 2 The Miskatonic Museum 87897a/Custom_Model_Bag Set-aside ddbf36/Card The Necronomicon d45f10.yaml b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 2 The Miskatonic Museum 87897a/Custom_Model_Bag Set-aside ddbf36/Card The Necronomicon d45f10.yaml new file mode 100644 index 000000000..e4192df58 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 2 The Miskatonic Museum 87897a/Custom_Model_Bag Set-aside ddbf36/Card The Necronomicon d45f10.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Olaus Wormius Translation +GMNotes: '' +GUID: d45f10 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: The Necronomicon +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -10.6168613 + posY: 3.63358521 + posZ: 24.2633457 + rotX: 359.920044 + rotY: 269.999939 + rotZ: 0.01686501 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 2 The Miskatonic Museum 87897a/Custom_Tile 1a4770.yaml b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 2 The Miskatonic Museum 87897a/Custom_Tile 1a4770.yaml new file mode 100644 index 000000000..67318a8a4 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 2 The Miskatonic Museum 87897a/Custom_Tile 1a4770.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 1a4770 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: fdd4f4 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Custom_Tile + Nickname: '' + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -23.6765 + posY: 1.61338782 + posZ: -3.83 + rotX: 0.0168694146 + rotY: 179.999847 + rotZ: 0.0799730346 + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.6765 + posY: 1.6133877 + posZ: -3.8300004 + rotX: 0.0168719534 + rotY: 179.999878 + rotZ: 0.0799390748 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 2 The Miskatonic Museum 87897a/Custom_Tile 44b0c5.yaml b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 2 The Miskatonic Museum 87897a/Custom_Tile 44b0c5.yaml new file mode 100644 index 000000000..c0ee57f07 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 2 The Miskatonic Museum 87897a/Custom_Tile 44b0c5.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 44b0c5 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Tile +Nickname: '' +Snap: true +States: + '1': + 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: '' + GMNotes: '' + GUID: 7234af + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Custom_Tile + Nickname: '' + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -20.2168 + posY: 1.60962164 + posZ: -0.2355 + rotX: 359.9201 + rotY: 269.993652 + rotZ: 0.016884936 + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.2168 + posY: 1.60962188 + posZ: -0.235500067 + rotX: 359.9201 + rotY: 269.9937 + rotZ: 0.0169069041 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 2 The Miskatonic Museum 87897a/Custom_Tile 7dc46b.yaml b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 2 The Miskatonic Museum 87897a/Custom_Tile 7dc46b.yaml new file mode 100644 index 000000000..b83ebec2c --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 2 The Miskatonic Museum 87897a/Custom_Tile 7dc46b.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 7dc46b +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Custom_Tile + Nickname: '' + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -23.6765 + posY: 1.6156522 + posZ: 3.86 + rotX: 359.983124 + rotY: 0.000124655489 + rotZ: 359.92 + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.6765 + posY: 1.61565244 + posZ: 3.86 + rotX: 359.983124 + rotY: 0.000199138682 + rotZ: 359.920074 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 2 The Miskatonic Museum 87897a/Custom_Tile The Miskatonic Museum 4b5e17.ttslua b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 2 The Miskatonic Museum 87897a/Custom_Tile The Miskatonic Museum 4b5e17.ttslua new file mode 100644 index 000000000..f92a55f33 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 2 The Miskatonic Museum 87897a/Custom_Tile The Miskatonic Museum 4b5e17.ttslua @@ -0,0 +1,25 @@ +name = 'The Miskatonic Museum' + +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 + +function standaloneClick() + Global.call('fillContainer', {object=self, key=name, mode='standalone'}) +end diff --git a/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 2 The Miskatonic Museum 87897a/Custom_Tile The Miskatonic Museum 4b5e17.yaml b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 2 The Miskatonic Museum 87897a/Custom_Tile The Miskatonic Museum 4b5e17.yaml new file mode 100644 index 000000000..778fd3f84 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 2 The Miskatonic Museum 87897a/Custom_Tile The Miskatonic Museum 4b5e17.yaml @@ -0,0 +1,42 @@ +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 +GMNotes: '' +GUID: 4b5e17 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Tile The Miskatonic Museum 4b5e17.ttslua' +LuaScriptState: '' +Name: Custom_Tile +Nickname: The Miskatonic Museum +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.48750067 + posY: 1.58191824 + posZ: -15.0699005 + rotX: 359.919739 + rotY: 269.980316 + rotZ: 0.0168654732 + scaleX: 2.2 + scaleY: 1.0 + scaleZ: 2.2 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 2 The Miskatonic Museum 87897a/Deck Act Deck 6571a3.yaml b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 2 The Miskatonic Museum 87897a/Deck Act Deck 6571a3.yaml new file mode 100644 index 000000000..42f86667d --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 2 The Miskatonic Museum 87897a/Deck Act Deck 6571a3.yaml @@ -0,0 +1,215 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 233319 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2333': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296027643/326876D4B46DF777AA1293989DEEE6A810ED027B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999385819527677/3AD8DFFFBFF54DB098AD3E00BB7E75DA0590FE8B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 3 + GMNotes: '' + GUID: aaceb4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Searching for the Tome + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.00132942 + posY: 1.55726683 + posZ: 23.2091579 + rotX: 0.0168708172 + rotY: 179.999969 + rotZ: 0.0798799247 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233318 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2333': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296027643/326876D4B46DF777AA1293989DEEE6A810ED027B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999385819527677/3AD8DFFFBFF54DB098AD3E00BB7E75DA0590FE8B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 2 + GMNotes: '' + GUID: 588bec + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Breaking and Entering + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 1.83312774 + posY: 1.70609045 + posZ: 23.0741425 + rotX: 0.016862236 + rotY: 179.999969 + rotZ: 0.07990043 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233317 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2333': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296027643/326876D4B46DF777AA1293989DEEE6A810ED027B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999385819527677/3AD8DFFFBFF54DB098AD3E00BB7E75DA0590FE8B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 2 + GMNotes: '' + GUID: 726ac2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Night at the Museum + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 1.9161948 + posY: 1.72337055 + posZ: 23.5133152 + rotX: 0.016878346 + rotY: 179.999969 + rotZ: 0.0798913762 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233316 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2333': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296027643/326876D4B46DF777AA1293989DEEE6A810ED027B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999385819527677/3AD8DFFFBFF54DB098AD3E00BB7E75DA0590FE8B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 1 + GMNotes: '' + GUID: 1b5f59 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Finding A Way Inside + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 1.7561748 + posY: 1.70979583 + posZ: 23.12506 + rotX: 0.0168586615 + rotY: 180.000031 + rotZ: 0.07990779 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2333': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296027643/326876D4B46DF777AA1293989DEEE6A810ED027B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999385819527677/3AD8DFFFBFF54DB098AD3E00BB7E75DA0590FE8B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 233319 +- 233318 +- 233317 +- 233316 +Description: '' +GMNotes: '' +GUID: 6571a3 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Act Deck +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.68847013 + posY: 1.65349436 + posZ: -5.04854536 + rotX: 0.0168351047 + rotY: 180.0 + rotZ: 0.0802575 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 2 The Miskatonic Museum 87897a/Deck Agenda Deck dbdfa1.yaml b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 2 The Miskatonic Museum 87897a/Deck Agenda Deck dbdfa1.yaml new file mode 100644 index 000000000..098aba53e --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 2 The Miskatonic Museum 87897a/Deck Agenda Deck dbdfa1.yaml @@ -0,0 +1,172 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 233315 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2333': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296027643/326876D4B46DF777AA1293989DEEE6A810ED027B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999385819527677/3AD8DFFFBFF54DB098AD3E00BB7E75DA0590FE8B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 3 + GMNotes: '' + GUID: 70a774 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: In Every Shadow + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.269540966 + posY: 1.56147158 + posZ: 29.2891312 + rotX: 0.0168715268 + rotY: 180.0 + rotZ: 0.07988031 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233314 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2333': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296027643/326876D4B46DF777AA1293989DEEE6A810ED027B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999385819527677/3AD8DFFFBFF54DB098AD3E00BB7E75DA0590FE8B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 2 + GMNotes: '' + GUID: 742cea + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Shadows Deepen + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.181895822 + posY: 1.71019447 + posZ: 29.1594772 + rotX: 0.0168631859 + rotY: 180.0 + rotZ: 0.07990086 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233313 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2333': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296027643/326876D4B46DF777AA1293989DEEE6A810ED027B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999385819527677/3AD8DFFFBFF54DB098AD3E00BB7E75DA0590FE8B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 1 + GMNotes: '' + GUID: 1b5f59 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Restricted Access + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.523786366 + posY: 1.72711086 + posZ: 29.4442425 + rotX: 0.0168590732 + rotY: 180.0 + rotZ: 0.07990649 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2333': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296027643/326876D4B46DF777AA1293989DEEE6A810ED027B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999385819527677/3AD8DFFFBFF54DB098AD3E00BB7E75DA0590FE8B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 233315 +- 233314 +- 233313 +Description: '' +GMNotes: '' +GUID: dbdfa1 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Agenda Deck +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.72475839 + posY: 1.65664113 + posZ: 0.373058826 + rotX: 0.0168365724 + rotY: 180.000381 + rotZ: 0.08026518 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 2 The Miskatonic Museum 87897a/Deck Encounter Deck 62c028.yaml b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 2 The Miskatonic Museum 87897a/Deck Encounter Deck 62c028.yaml new file mode 100644 index 000000000..36df03274 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 2 The Miskatonic Museum 87897a/Deck Encounter Deck 62c028.yaml @@ -0,0 +1,1684 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 233043 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: a97e94 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Infinite Doorway + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 4.197397 + posY: 1.54959261 + posZ: 7.54406452 + rotX: 359.920135 + rotY: 269.999542 + rotZ: 0.0168782528 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233043 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: 64803b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Infinite Doorway + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 4.32584858 + posY: 1.70545149 + posZ: 7.526225 + rotX: 359.920135 + rotY: 269.999542 + rotZ: 0.0168783125 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233042 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: ff3b62 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: A Baleful Welcome + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.86596346 + posY: 1.55085039 + posZ: 10.3858719 + rotX: 359.920563 + rotY: 269.999939 + rotZ: 0.0141112823 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233042 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: 91d7bc + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: A Baleful Welcome + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 4.27264 + posY: 1.70741928 + posZ: 10.3873577 + rotX: 359.940582 + rotY: 270.0 + rotZ: 0.0103841284 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233041 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: e3fba9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Haunting Recollections + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.9066577 + posY: 1.5516181 + posZ: 13.0453758 + rotX: 359.920135 + rotY: 269.999664 + rotZ: 0.0168763362 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233041 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: 4edfe1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Haunting Recollections + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 4.186173 + posY: 1.70772672 + posZ: 13.2151175 + rotX: 359.920135 + rotY: 269.999664 + rotZ: 0.0168762747 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233045 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Obstacle. + GMNotes: '' + GUID: e3fba9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Secret Door + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 8.506233 + posY: 1.54346478 + posZ: 7.13301754 + rotX: 359.920135 + rotY: 269.999634 + rotZ: 0.0168786049 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233045 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Obstacle. + GMNotes: '' + GUID: '662570' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Secret Door + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 8.375493 + posY: 1.69850159 + posZ: 7.25795174 + rotX: 359.920135 + rotY: 269.999573 + rotZ: 0.0168786459 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233047 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: 3e8e0b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Oppressive Mists + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 7.83998156 + posY: 1.54372144 + posZ: 4.850278 + rotX: 359.920135 + rotY: 269.999634 + rotZ: 0.0168781038 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233047 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: d8e5f7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Oppressive Mists + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 7.80314255 + posY: 1.69862533 + posZ: 4.79417324 + rotX: 359.920135 + rotY: 269.999573 + rotZ: 0.0168781523 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233046 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: e3fba9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Inexplicable Cold + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 7.666582 + posY: 1.54493606 + posZ: 8.19385 + rotX: 359.920258 + rotY: 270.000061 + rotZ: 0.01607858 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233046 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: 8fa82b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Inexplicable Cold + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 8.028719 + posY: 1.70623231 + posZ: 8.457989 + rotX: 359.9379 + rotY: 270.0 + rotZ: 0.009667996 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233027 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Power. + GMNotes: '' + GUID: 5c7e59 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Night Beyond Void + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -42.4382324 + posY: 1.615817 + posZ: 11.6507034 + rotX: 359.920135 + rotY: 269.9999 + rotZ: 0.016879322 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233027 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Power. + GMNotes: '' + GUID: 5babb2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Night Beyond Void + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -42.388176 + posY: 1.77432716 + posZ: 11.4631519 + rotX: 359.9362 + rotY: 269.997 + rotZ: 0.6624949 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233026 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Power. + GMNotes: '' + GUID: e3fba9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dark Bidding + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -42.4518242 + posY: 1.78189909 + posZ: 11.56533 + rotX: 359.936127 + rotY: 270.0 + rotZ: 0.009124189 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233026 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Power. + GMNotes: '' + GUID: 157a1f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dark Bidding + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -42.4191856 + posY: 1.77765024 + posZ: 11.2172461 + rotX: -2.801445e-07 + rotY: 270.0001 + rotZ: 0.413769037 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232840 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 6f4382 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Slithering Behind You + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.97063684 + posY: 1.54639256 + posZ: -4.39697742 + rotX: 359.920135 + rotY: 269.999878 + rotZ: 0.01687646 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232840 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: fe4557 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Slithering Behind You + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 4.2946353 + posY: 1.70134032 + posZ: -4.40994263 + rotX: 359.920135 + rotY: 269.999878 + rotZ: 0.0168765783 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232839 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: "\tTerror." + GMNotes: '' + GUID: bf889d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ephemeral Exhibits + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.01033258 + posY: 1.54856789 + posZ: -6.29038 + rotX: 359.920135 + rotY: 269.9998 + rotZ: 0.0168782137 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232839 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: "\tTerror." + GMNotes: '' + GUID: cd9bc9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ephemeral Exhibits + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 1.74272823 + posY: 1.70487881 + posZ: -5.95238543 + rotX: 359.920135 + rotY: 269.9998 + rotZ: 0.01687811 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232838 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: "\tPower." + GMNotes: '' + GUID: ee2862 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Passage into the Veil + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 1.23312879 + posY: 1.54997158 + posZ: -5.203305 + rotX: 359.920135 + rotY: 269.9999 + rotZ: 0.0168772787 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232838 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: "\tPower." + GMNotes: '' + GUID: 0e2895 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Passage into the Veil + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.927093 + posY: 1.70653141 + posZ: -5.155619 + rotX: 359.920135 + rotY: 269.9999 + rotZ: 0.0168773253 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232838 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: "\tPower." + GMNotes: '' + GUID: ee2862 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Passage into the Veil + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 1.18818259 + posY: 1.72341263 + posZ: -5.17442274 + rotX: 359.920776 + rotY: 269.9999 + rotZ: 0.0160576869 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232837 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Tactic. + GMNotes: '' + GUID: 2c35c1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: "Stalked in the Dark\t" + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.9444212 + posY: 1.55159914 + posZ: -1.04286885 + rotX: 359.920135 + rotY: 269.999939 + rotZ: 0.016876515 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232837 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Tactic. + GMNotes: '' + GUID: 969c50 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: "Stalked in the Dark\t" + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 1.43638945 + posY: 1.71371841 + posZ: -0.747907937 + rotX: 359.9361 + rotY: 270.0 + rotZ: 0.0135008711 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232835 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Spawned from the Void + GMNotes: '' + GUID: de3bd5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Hunting Horror + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 6.951333 + posY: 1.81293869 + posZ: 0.06049832 + rotX: 359.936066 + rotY: 270.000031 + rotZ: 180.013519 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232820 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: a8cc8c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Twist of Fate + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.198071 + posY: 1.55145156 + posZ: 9.125637 + rotX: 359.920135 + rotY: 269.999939 + rotZ: 0.01687778 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232820 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: 9d6b4c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Twist of Fate + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.70683336 + posY: 1.70854175 + posZ: 9.092162 + rotX: 359.920135 + rotY: 269.999939 + rotZ: 0.01687769 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232820 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: a8cc8c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Twist of Fate + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.70645475 + posY: 1.72578371 + posZ: 9.100254 + rotX: 359.921539 + rotY: 269.999939 + rotZ: 0.0167463012 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232819 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: de3bd5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Cursed Luck + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.15651965 + posY: 1.55232441 + posZ: 11.89302 + rotX: 359.920135 + rotY: 269.999939 + rotZ: 0.0168776158 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232819 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: 64281b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Cursed Luck + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.19927931 + posY: 1.7088623 + posZ: 11.9196167 + rotX: 359.920135 + rotY: 269.999939 + rotZ: 0.0168775618 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232819 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: de3bd5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Cursed Luck + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.230147 + posY: 1.72610009 + posZ: 11.971447 + rotX: 359.92 + rotY: 269.999939 + rotZ: 0.0164669342 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232811 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: d56ff7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Beyond the Veil + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.917338 + posY: 1.55012894 + posZ: 8.039298 + rotX: 359.920135 + rotY: 269.999969 + rotZ: 0.01687837 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232811 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: 9cb0b3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Beyond the Veil + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.89250565 + posY: 1.70636082 + posZ: 8.19774 + rotX: 359.920135 + rotY: 269.999969 + rotZ: 0.01687832 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232811 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: d56ff7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Beyond the Veil + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.89250565 + posY: 1.72360778 + posZ: 8.19774 + rotX: 359.920837 + rotY: 269.999969 + rotZ: 0.0158282 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232810 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: de3bd5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Visions of Futures Past + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.43124938 + posY: 1.55177522 + posZ: 11.3293571 + rotX: 359.920135 + rotY: 269.999969 + rotZ: 0.0168769564 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232810 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: 42d459 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Visions of Futures Past + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.15239716 + posY: 1.70869577 + posZ: 11.50471 + rotX: 359.920135 + rotY: 269.999969 + rotZ: 0.01687689 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232810 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: de3bd5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Visions of Futures Past + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.15239716 + posY: 1.72595167 + posZ: 11.50471 + rotX: 359.9199 + rotY: 269.999969 + rotZ: 0.0165576525 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 233043 +- 233043 +- 233042 +- 233042 +- 233041 +- 233041 +- 233045 +- 233045 +- 233047 +- 233047 +- 233046 +- 233046 +- 233027 +- 233027 +- 233026 +- 233026 +- 232840 +- 232840 +- 232839 +- 232839 +- 232838 +- 232838 +- 232838 +- 232837 +- 232837 +- 232835 +- 232820 +- 232820 +- 232820 +- 232819 +- 232819 +- 232819 +- 232811 +- 232811 +- 232811 +- 232810 +- 232810 +- 232810 +Description: '' +GMNotes: '' +GUID: 62c028 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Encounter Deck +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.9274168 + posY: 1.81434524 + posZ: 5.75708628 + rotX: 359.919739 + rotY: 269.999725 + rotZ: 180.016815 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 2 The Miskatonic Museum 87897a/Deck Non-Restricted Exhibit Halls b24a2a.yaml b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 2 The Miskatonic Museum 87897a/Deck Non-Restricted Exhibit Halls b24a2a.yaml new file mode 100644 index 000000000..6fd0f28fe --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 2 The Miskatonic Museum 87897a/Deck Non-Restricted Exhibit Halls b24a2a.yaml @@ -0,0 +1,351 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 233531 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2335': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999385819522537/207CCD9C85ECB70A339C09170ABB42E139924AA0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780748790926468191/C3163A90948FC777DC7D95D05CB35D2DA32CBD9C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Miskatonic. Exhibit. + GMNotes: '' + GUID: f3ffb6 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Exhibit Hall + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 1.59215164 + posY: 1.71200645 + posZ: 26.4632187 + rotX: 359.920135 + rotY: 270.006378 + rotZ: 180.016876 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233530 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2335': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999385819522537/207CCD9C85ECB70A339C09170ABB42E139924AA0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780748790926468191/C3163A90948FC777DC7D95D05CB35D2DA32CBD9C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Miskatonic. Exhibit. + GMNotes: '' + GUID: '563240' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Exhibit Hall + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 1.67837942 + posY: 1.71398473 + posZ: 26.7644 + rotX: 359.920135 + rotY: 269.9992 + rotZ: 180.016876 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233529 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2335': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999385819522537/207CCD9C85ECB70A339C09170ABB42E139924AA0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780748790926468191/C3163A90948FC777DC7D95D05CB35D2DA32CBD9C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Miskatonic. Exhibit. + GMNotes: '' + GUID: 63e894 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Exhibit Hall + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 1.44530463 + posY: 1.84790027 + posZ: 26.9633617 + rotX: 359.917847 + rotY: 269.98468 + rotZ: 186.670517 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233528 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2335': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999385819522537/207CCD9C85ECB70A339C09170ABB42E139924AA0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780748790926468191/C3163A90948FC777DC7D95D05CB35D2DA32CBD9C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Miskatonic. Exhibit. + GMNotes: '' + GUID: e872c5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Exhibit Hall + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 1.36934626 + posY: 1.72073627 + posZ: 26.8943939 + rotX: 0.07987741 + rotY: 270.000122 + rotZ: 179.983139 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233527 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2335': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999385819522537/207CCD9C85ECB70A339C09170ABB42E139924AA0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780748790926468191/C3163A90948FC777DC7D95D05CB35D2DA32CBD9C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Miskatonic. Exhibit. + GMNotes: '' + GUID: da02ea + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Exhibit Hall + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 1.3713969 + posY: 1.56209958 + posZ: 27.0516415 + rotX: 359.920135 + rotY: 269.997437 + rotZ: 180.016861 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233636 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2336': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296074747/742F5083E0E10E3DD22E671C78F35E6143C744FF/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296074238/FB73285A9ED0D784210E50C6EA17EBC25648D800/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Miskatonic. Exhibit. + GMNotes: '' + GUID: 2d87e6 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Exhibit Hall + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -31.6413479 + posY: 1.75365245 + posZ: 11.3300657 + rotX: 359.920135 + rotY: 269.99707 + rotZ: 0.0170876849 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233635 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2336': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296074747/742F5083E0E10E3DD22E671C78F35E6143C744FF/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296074238/FB73285A9ED0D784210E50C6EA17EBC25648D800/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Miskatonic. Exhibit. + GMNotes: '' + GUID: aa50e4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Exhibit Hall + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -32.0094833 + posY: 1.75911093 + posZ: 11.2100258 + rotX: 359.920135 + rotY: 269.997375 + rotZ: 0.0168957785 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2335': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999385819522537/207CCD9C85ECB70A339C09170ABB42E139924AA0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780748790926468191/C3163A90948FC777DC7D95D05CB35D2DA32CBD9C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + '2336': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296074747/742F5083E0E10E3DD22E671C78F35E6143C744FF/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296074238/FB73285A9ED0D784210E50C6EA17EBC25648D800/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 233531 +- 233530 +- 233529 +- 233528 +- 233527 +- 233636 +- 233635 +Description: '' +GMNotes: '' +GUID: b24a2a +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Non-Restricted Exhibit Halls +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.22083 + posY: 1.66446722 + posZ: 15.8340893 + rotX: 359.919739 + rotY: 269.999878 + rotZ: 0.0168416779 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 3 The Essex County Express d92b86.ttslua b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 3 The Essex County Express d92b86.ttslua new file mode 100644 index 000000000..54d591927 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 3 The Essex County Express d92b86.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.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 Return to The Dunwich Legacy ce9130/Custom_Model_Bag 3 The Essex County Express d92b86.yaml b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 3 The Essex County Express d92b86.yaml new file mode 100644 index 000000000..e09a986a5 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 3 The Essex County Express d92b86.yaml @@ -0,0 +1,87 @@ +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 3 The Essex County Express d92b86/Custom_Model_Bag Set-aside + 319e29.yaml' +- !include 'Custom_Model_Bag 3 The Essex County Express d92b86/Deck Encounter Deck + 116a78.yaml' +- !include 'Custom_Model_Bag 3 The Essex County Express d92b86/Deck Agenda Deck d30e98.yaml' +- !include 'Custom_Model_Bag 3 The Essex County Express d92b86/Deck Act Deck 9f9330.yaml' +- !include 'Custom_Model_Bag 3 The Essex County Express d92b86/Card Setup aa50e4.yaml' +- !include 'Custom_Model_Bag 3 The Essex County Express d92b86/Card Scenario 70df0b.yaml' +- !include 'Custom_Model_Bag 3 The Essex County Express d92b86/Custom_Tile The Essex + County Express 247967.yaml' +- !include 'Custom_Model_Bag 3 The Essex County Express d92b86/Bag New Chaos Token + 2439da.yaml' +- !include 'Custom_Model_Bag 3 The Essex County Express d92b86/Deck Engine Cars 52dd93.yaml' +- !include 'Custom_Model_Bag 3 The Essex County Express d92b86/Custom_Tile 44b0c5.yaml' +- !include 'Custom_Model_Bag 3 The Essex County Express d92b86/Custom_Tile 3db4d1.yaml' +- !include 'Custom_Model_Bag 3 The Essex County Express d92b86/Custom_Tile f236cc.yaml' +- !include 'Custom_Model_Bag 3 The Essex County Express d92b86/Custom_Tile 88cfd9.yaml' +- !include 'Custom_Model_Bag 3 The Essex County Express d92b86/Custom_Tile 482318.yaml' +- !include 'Custom_Model_Bag 3 The Essex County Express d92b86/Custom_Tile 42ab75.yaml' +- !include 'Custom_Model_Bag 3 The Essex County Express d92b86/Deck Train Cars 588354.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/829135118403754230/0142FE1AC59471A8F7E46F07E089A73F47D59AA5/ + MaterialIndex: 3 + MeshURL: https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj + NormalURL: '' + TypeIndex: 6 +Description: Return to the Dunwich Legacy +GMNotes: '' +GUID: d92b86 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Model_Bag 3 The Essex County Express d92b86.ttslua' +LuaScriptState: '{"ml":{"116a78":{"lock":false,"pos":{"x":-3.9273,"y":1.7984,"z":5.7572},"rot":{"x":359.9197,"y":269.9999,"z":180.0168}},"2439da":{"lock":false,"pos":{"x":-4.9066,"y":1.4987,"z":-13.9204},"rot":{"x":359.9929,"y":0.0003,"z":359.9314}},"247967":{"lock":false,"pos":{"x":-3.4005,"y":1.5819,"z":-14.5398},"rot":{"x":359.92,"y":270.0072,"z":0.0151}},"319e29":{"lock":false,"pos":{"x":1.696,"y":1.5583,"z":14.2787},"rot":{"x":359.9551,"y":224.998,"z":0.0687}},"3db4d1":{"lock":false,"pos":{"x":-17.12,"y":1.6042,"z":-3.83},"rot":{"x":0.0169,"y":179.9983,"z":0.0799}},"42ab75":{"lock":false,"pos":{"x":-26.9023,"y":1.6235,"z":15.2697},"rot":{"x":0.0799,"y":90.0032,"z":359.9831}},"44b0c5":{"lock":false,"pos":{"x":-17.1164,"y":1.602,"z":-11.51},"rot":{"x":0.0169,"y":179.9984,"z":0.0799}},"482318":{"lock":false,"pos":{"x":-20.3813,"y":1.6143,"z":15.0363},"rot":{"x":0.0799,"y":90.0115,"z":359.9831}},"52dd93":{"lock":false,"pos":{"x":-17.1201,"y":1.6706,"z":-15.28},"rot":{"x":359.9201,"y":269.9999,"z":0.0169}},"588354":{"lock":false,"pos":{"x":-30.2242,"y":1.6892,"z":11.46},"rot":{"x":359.9201,"y":269.9999,"z":0.0169}},"70df0b":{"lock":false,"pos":{"x":-3.9411,"y":1.6556,"z":-10.4404},"rot":{"x":359.9198,"y":269.9688,"z":0.0165}},"88cfd9":{"lock":false,"pos":{"x":-17.12,"y":1.6087,"z":11.46},"rot":{"x":0.0169,"y":179.9985,"z":0.0799}},"9f9330":{"lock":false,"pos":{"x":-2.6884,"y":1.6623,"z":-5.0485},"rot":{"x":0.0168,"y":180,"z":0.0803}},"aa50e4":{"lock":false,"pos":{"x":-5.3786,"y":1.706,"z":-10.4861},"rot":{"x":359.9208,"y":269.9654,"z":0.0164}},"d30e98":{"lock":false,"pos":{"x":-2.7246,"y":1.658,"z":0.3733},"rot":{"x":0.0168,"y":180,"z":0.0803}},"f236cc":{"lock":false,"pos":{"x":-17.12,"y":1.6065,"z":3.86},"rot":{"x":0.0169,"y":179.9984,"z":0.0799}}}}' +MaterialIndex: -1 +MeshIndex: -1 +Name: Custom_Model_Bag +Nickname: '3: The Essex County Express' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 12.2503023 + posY: 1.46581173 + posZ: 4.6877 + rotX: 359.920135 + rotY: 270.003235 + rotZ: 0.01686954 + scaleX: 2.21 + scaleY: 0.46 + scaleZ: 2.42 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 3 The Essex County Express d92b86/Bag New Chaos Token 2439da.yaml b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 3 The Essex County Express d92b86/Bag New Chaos Token 2439da.yaml new file mode 100644 index 000000000..f684a957c --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 3 The Essex County Express d92b86/Bag New Chaos Token 2439da.yaml @@ -0,0 +1,39 @@ +Autoraise: true +ColorDiffuse: + b: 0.07843702 + g: 0.07843702 + r: 0.3021677 +ContainedObjects: +- !include 'Bag New Chaos Token 2439da/Custom_Tile a2c8c3.yaml' +- !include 'Bag New Chaos Token 2439da/Custom_Tile 4fa839.yaml' +- !include 'Bag New Chaos Token 2439da/Custom_Tile de80ff.yaml' +- !include 'Bag New Chaos Token 2439da/Custom_Tile c6903e.yaml' +Description: The Essex County Express +GMNotes: '' +GUID: 2439da +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +MeshIndex: -1 +Name: Bag +Nickname: New Chaos Token +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -4.906627 + posY: 1.498677 + posZ: -13.9203863 + rotX: 359.992859 + rotY: 0.000308915973 + rotZ: 359.9314 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 3 The Essex County Express d92b86/Bag New Chaos Token 2439da/Custom_Tile 4fa839.yaml b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 3 The Essex County Express d92b86/Bag New Chaos Token 2439da/Custom_Tile 4fa839.yaml new file mode 100644 index 000000000..0ae79cf81 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 3 The Essex County Express d92b86/Bag New Chaos Token 2439da/Custom_Tile 4fa839.yaml @@ -0,0 +1,42 @@ +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: '' +GMNotes: '' +GUID: 4fa839 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Tile +Nickname: '' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 1.88004458 + posY: 3.55291462 + posZ: 11.0965281 + rotX: 0.1352803 + rotY: 270.0193 + rotZ: 0.3094559 + scaleX: 0.81 + scaleY: 1.0 + scaleZ: 0.81 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 3 The Essex County Express d92b86/Bag New Chaos Token 2439da/Custom_Tile a2c8c3.yaml b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 3 The Essex County Express d92b86/Bag New Chaos Token 2439da/Custom_Tile a2c8c3.yaml new file mode 100644 index 000000000..5bc367637 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 3 The Essex County Express d92b86/Bag New Chaos Token 2439da/Custom_Tile a2c8c3.yaml @@ -0,0 +1,42 @@ +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: '' +GMNotes: '' +GUID: a2c8c3 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Tile +Nickname: '' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 2.187679 + posY: 3.55485725 + posZ: 11.3031368 + rotX: 359.92395 + rotY: 269.9998 + rotZ: 0.307679236 + scaleX: 0.81 + scaleY: 1.0 + scaleZ: 0.81 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 3 The Essex County Express d92b86/Bag New Chaos Token 2439da/Custom_Tile c6903e.yaml b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 3 The Essex County Express d92b86/Bag New Chaos Token 2439da/Custom_Tile c6903e.yaml new file mode 100644 index 000000000..8642fb73c --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 3 The Essex County Express d92b86/Bag New Chaos Token 2439da/Custom_Tile c6903e.yaml @@ -0,0 +1,42 @@ +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: '' +GMNotes: '' +GUID: c6903e +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Tile +Nickname: '' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 2.429769 + posY: 3.55308 + posZ: 11.9095325 + rotX: 359.741638 + rotY: 270.0144 + rotZ: 359.724884 + scaleX: 0.81 + scaleY: 1.0 + scaleZ: 0.81 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 3 The Essex County Express d92b86/Bag New Chaos Token 2439da/Custom_Tile de80ff.yaml b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 3 The Essex County Express d92b86/Bag New Chaos Token 2439da/Custom_Tile de80ff.yaml new file mode 100644 index 000000000..4c0fbf3ca --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 3 The Essex County Express d92b86/Bag New Chaos Token 2439da/Custom_Tile de80ff.yaml @@ -0,0 +1,42 @@ +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: '' +GMNotes: '' +GUID: de80ff +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Tile +Nickname: '' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 2.80375814 + posY: 3.55203128 + posZ: 11.2058277 + rotX: 359.682556 + rotY: 270.014771 + rotZ: 0.137952551 + scaleX: 0.81 + scaleY: 1.0 + scaleZ: 0.81 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 3 The Essex County Express d92b86/Card Scenario 70df0b.yaml b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 3 The Essex County Express d92b86/Card Scenario 70df0b.yaml new file mode 100644 index 000000000..2b725034f --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 3 The Essex County Express d92b86/Card Scenario 70df0b.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 233533 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2335': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999385819522537/207CCD9C85ECB70A339C09170ABB42E139924AA0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780748790926468191/C3163A90948FC777DC7D95D05CB35D2DA32CBD9C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: The Essex County Express +GMNotes: '' +GUID: 70df0b +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Scenario +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.94113278 + posY: 1.65562212 + posZ: -10.44037 + rotX: 359.9198 + rotY: 269.968842 + rotZ: 0.0165270027 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 3 The Essex County Express d92b86/Card Setup aa50e4.yaml b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 3 The Essex County Express d92b86/Card Setup aa50e4.yaml new file mode 100644 index 000000000..1f509b83f --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 3 The Essex County Express d92b86/Card Setup aa50e4.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 233637 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2336': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296074747/742F5083E0E10E3DD22E671C78F35E6143C744FF/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296074238/FB73285A9ED0D784210E50C6EA17EBC25648D800/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Return to The Essex County Express +GMNotes: '' +GUID: aa50e4 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Setup +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -5.378563 + posY: 1.70603967 + posZ: -10.4861212 + rotX: 359.920837 + rotY: 269.965424 + rotZ: 0.0163841024 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 3 The Essex County Express d92b86/Custom_Model_Bag Set-aside 319e29.yaml b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 3 The Essex County Express d92b86/Custom_Model_Bag Set-aside 319e29.yaml new file mode 100644 index 000000000..ff6fb740a --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 3 The Essex County Express d92b86/Custom_Model_Bag Set-aside 319e29.yaml @@ -0,0 +1,57 @@ +Autoraise: true +ColorDiffuse: + b: 0.02148666 + g: 0.00100758043 + r: 0.02148666 +ContainedObjects: +- !include 'Custom_Model_Bag Set-aside 319e29/Deck Across Space and Time 22be0e.yaml' +- !include 'Custom_Model_Bag Set-aside 319e29/Card Engineer 21ca4f.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 Essex County Express +GMNotes: '' +GUID: 319e29 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +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.69601023 + posY: 1.55831742 + posZ: 14.2787361 + rotX: 359.955139 + rotY: 224.997986 + rotZ: 0.06867508 + scaleX: 2.0 + scaleY: 2.0 + scaleZ: 2.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 3 The Essex County Express d92b86/Custom_Model_Bag Set-aside 319e29/Card Engineer 21ca4f.yaml b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 3 The Essex County Express d92b86/Custom_Model_Bag Set-aside 319e29/Card Engineer 21ca4f.yaml new file mode 100644 index 000000000..0cbbdb492 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 3 The Essex County Express d92b86/Custom_Model_Bag Set-aside 319e29/Card Engineer 21ca4f.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 233928 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2339': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: Ally. Bystander. +GMNotes: '' +GUID: 21ca4f +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Engineer +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -11.7824993 + posY: 1.58164477 + posZ: -2.98363638 + rotX: 359.920135 + rotY: 269.999451 + rotZ: 0.0168768875 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 3 The Essex County Express d92b86/Custom_Model_Bag Set-aside 319e29/Deck Across Space and Time 22be0e.yaml b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 3 The Essex County Express d92b86/Custom_Model_Bag Set-aside 319e29/Deck Across Space and Time 22be0e.yaml new file mode 100644 index 000000000..09dda061e --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 3 The Essex County Express d92b86/Custom_Model_Bag Set-aside 319e29/Deck Across Space and Time 22be0e.yaml @@ -0,0 +1,215 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- 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 + UniqueBack: false + Description: Madness. + GMNotes: '' + GUID: 6e0707 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Across Space and Time + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -7.76403666 + posY: 1.56683362 + posZ: 9.464576 + rotX: 359.920135 + rotY: 269.999817 + rotZ: 0.0168772917 + 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 + UniqueBack: false + Description: Madness. + GMNotes: '' + GUID: 1d1810 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Across Space and Time + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -7.554871 + posY: 1.72604358 + posZ: 9.47872 + rotX: 0.08045415 + rotY: 270.001526 + rotZ: 359.982758 + 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 + UniqueBack: false + Description: Madness. + GMNotes: '' + GUID: fb943f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Across Space and Time + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -7.74089 + posY: 1.73283029 + posZ: 9.117858 + rotX: 359.932739 + rotY: 270.0 + rotZ: 0.0141524123 + 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 + UniqueBack: false + Description: Madness. + GMNotes: '' + GUID: 6e0707 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Across Space and Time + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -23.7258587 + posY: 1.742033 + posZ: 10.6012506 + rotX: 359.9361 + rotY: 270.000061 + rotZ: 0.0134261176 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2329': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 232941 +- 232941 +- 232941 +- 232941 +Description: '' +GMNotes: '' +GUID: 22be0e +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Across Space and Time +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -23.101202 + posY: 3.64695978 + posZ: 15.8001566 + rotX: 359.920044 + rotY: 269.999939 + rotZ: 0.01687149 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 3 The Essex County Express d92b86/Custom_Tile 3db4d1.yaml b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 3 The Essex County Express d92b86/Custom_Tile 3db4d1.yaml new file mode 100644 index 000000000..026df0c06 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 3 The Essex County Express d92b86/Custom_Tile 3db4d1.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 3db4d1 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.1199989 + posY: 1.60424507 + posZ: -3.83000016 + rotX: 0.01687421 + rotY: 179.9983 + rotZ: 0.0799455047 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 3 The Essex County Express d92b86/Custom_Tile 42ab75.yaml b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 3 The Essex County Express d92b86/Custom_Tile 42ab75.yaml new file mode 100644 index 000000000..e7537ee74 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 3 The Essex County Express d92b86/Custom_Tile 42ab75.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 42ab75 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.9023 + posY: 1.62351012 + posZ: 15.269701 + rotX: 0.07989531 + rotY: 90.0031738 + rotZ: 359.9831 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 3 The Essex County Express d92b86/Custom_Tile 44b0c5.yaml b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 3 The Essex County Express d92b86/Custom_Tile 44b0c5.yaml new file mode 100644 index 000000000..fe7268f20 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 3 The Essex County Express d92b86/Custom_Tile 44b0c5.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 44b0c5 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Tile +Nickname: '' +Snap: true +States: + '1': + 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: '' + GMNotes: '' + GUID: 7234af + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Custom_Tile + Nickname: '' + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -17.1164341 + posY: 1.60197866 + posZ: -11.5099945 + rotX: 0.01687201 + rotY: 179.9984 + rotZ: 0.08000128 + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.1164 + posY: 1.60197866 + posZ: -11.5100021 + rotX: 0.0168740544 + rotY: 179.998367 + rotZ: 0.07994047 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 3 The Essex County Express d92b86/Custom_Tile 482318.yaml b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 3 The Essex County Express d92b86/Custom_Tile 482318.yaml new file mode 100644 index 000000000..6b571c024 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 3 The Essex County Express d92b86/Custom_Tile 482318.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: '482318' +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.3813 + posY: 1.61434829 + posZ: 15.0363016 + rotX: 0.07989784 + rotY: 90.01151 + rotZ: 359.983124 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 3 The Essex County Express d92b86/Custom_Tile 88cfd9.yaml b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 3 The Essex County Express d92b86/Custom_Tile 88cfd9.yaml new file mode 100644 index 000000000..c3840e9e3 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 3 The Essex County Express d92b86/Custom_Tile 88cfd9.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 88cfd9 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.1199989 + posY: 1.60874736 + posZ: 11.46 + rotX: 0.0168740377 + rotY: 179.998459 + rotZ: 0.0799452662 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 3 The Essex County Express d92b86/Custom_Tile f236cc.yaml b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 3 The Essex County Express d92b86/Custom_Tile f236cc.yaml new file mode 100644 index 000000000..fe61f4f46 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 3 The Essex County Express d92b86/Custom_Tile f236cc.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: f236cc +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.60650945 + posZ: 3.86000037 + rotX: 0.0168741085 + rotY: 179.998383 + rotZ: 0.079939194 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 3 The Essex County Express d92b86/Custom_Tile The Essex County Express 247967.ttslua b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 3 The Essex County Express d92b86/Custom_Tile The Essex County Express 247967.ttslua new file mode 100644 index 000000000..8942d6ff8 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 3 The Essex County Express d92b86/Custom_Tile The Essex County Express 247967.ttslua @@ -0,0 +1,25 @@ +name = 'The Essex County Express' + +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 + +function standaloneClick() + Global.call('fillContainer', {object=self, key=name, mode='standalone'}) +end diff --git a/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 3 The Essex County Express d92b86/Custom_Tile The Essex County Express 247967.yaml b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 3 The Essex County Express d92b86/Custom_Tile The Essex County Express 247967.yaml new file mode 100644 index 000000000..6d685ab24 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 3 The Essex County Express d92b86/Custom_Tile The Essex County Express 247967.yaml @@ -0,0 +1,42 @@ +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 +GMNotes: '' +GUID: '247967' +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Tile The Essex County Express 247967.ttslua' +LuaScriptState: '' +Name: Custom_Tile +Nickname: The Essex County Express +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.400506 + posY: 1.5819149 + posZ: -14.5398064 + rotX: 359.92 + rotY: 270.0072 + rotZ: 0.0151003981 + scaleX: 2.2 + scaleY: 1.0 + scaleZ: 2.2 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 3 The Essex County Express d92b86/Deck Act Deck 9f9330.yaml b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 3 The Essex County Express d92b86/Deck Act Deck 9f9330.yaml new file mode 100644 index 000000000..9f27c7d77 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 3 The Essex County Express d92b86/Deck Act Deck 9f9330.yaml @@ -0,0 +1,129 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 233326 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2333': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296027643/326876D4B46DF777AA1293989DEEE6A810ED027B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999385819527677/3AD8DFFFBFF54DB098AD3E00BB7E75DA0590FE8B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: 'Act ' + GMNotes: '' + GUID: d207eb + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Get the Engine Running! + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -8.853591 + posY: 1.56982112 + posZ: 14.45142 + rotX: 0.0168703813 + rotY: 179.999985 + rotZ: 0.07988079 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233325 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2333': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296027643/326876D4B46DF777AA1293989DEEE6A810ED027B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999385819527677/3AD8DFFFBFF54DB098AD3E00BB7E75DA0590FE8B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: 'Act ' + GMNotes: '' + GUID: 1b5f59 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Run! + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -8.553985 + posY: 1.71807921 + posZ: 14.3572187 + rotX: 0.0168795 + rotY: 179.999969 + rotZ: 0.07988564 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2333': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296027643/326876D4B46DF777AA1293989DEEE6A810ED027B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999385819527677/3AD8DFFFBFF54DB098AD3E00BB7E75DA0590FE8B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 233326 +- 233325 +Description: '' +GMNotes: '' +GUID: 9f9330 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Act Deck +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.68840027 + posY: 1.66233337 + posZ: -5.048525 + rotX: 0.016839698 + rotY: 179.999954 + rotZ: 0.08025686 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 3 The Essex County Express d92b86/Deck Agenda Deck d30e98.yaml b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 3 The Essex County Express d92b86/Deck Agenda Deck d30e98.yaml new file mode 100644 index 000000000..6e776c3f6 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 3 The Essex County Express d92b86/Deck Agenda Deck d30e98.yaml @@ -0,0 +1,308 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 233324 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2333': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296027643/326876D4B46DF777AA1293989DEEE6A810ED027B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999385819527677/3AD8DFFFBFF54DB098AD3E00BB7E75DA0590FE8B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: 'Agenda ' + GMNotes: '' + GUID: ad8e9f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Out of Time + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -8.342812 + posY: 1.72570455 + posZ: 26.2127571 + rotX: 0.0135568166 + rotY: 180.000076 + rotZ: 180.059326 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233323 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2333': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296027643/326876D4B46DF777AA1293989DEEE6A810ED027B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999385819527677/3AD8DFFFBFF54DB098AD3E00BB7E75DA0590FE8B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: 'Agenda ' + GMNotes: '' + GUID: 22da82 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Drawn In + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -8.198917 + posY: 1.739427 + posZ: 26.4041538 + rotX: 0.0135404514 + rotY: 180.000519 + rotZ: 181.104736 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233322 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2333': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296027643/326876D4B46DF777AA1293989DEEE6A810ED027B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999385819527677/3AD8DFFFBFF54DB098AD3E00BB7E75DA0590FE8B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: 'Agenda ' + GMNotes: '' + GUID: 44ad52 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Rolling Backwards + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -8.499422 + posY: 1.75621092 + posZ: 26.4296722 + rotX: 0.0138843609 + rotY: 179.999817 + rotZ: 181.02388 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233321 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2333': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296027643/326876D4B46DF777AA1293989DEEE6A810ED027B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999385819527677/3AD8DFFFBFF54DB098AD3E00BB7E75DA0590FE8B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: 'Agenda ' + GMNotes: '' + GUID: 54c524 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Maw Widens + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -8.78 + posY: 1.75672138 + posZ: 25.8418617 + rotX: 0.0136625087 + rotY: 180.000259 + rotZ: 181.74408 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233353 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2333': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296027643/326876D4B46DF777AA1293989DEEE6A810ED027B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999385819527677/3AD8DFFFBFF54DB098AD3E00BB7E75DA0590FE8B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 1 + GMNotes: '' + GUID: 0d6e00 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: A Tear in Reality (v. II) + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -9.408516 + posY: 1.71792281 + posZ: 5.47974253 + rotX: 0.01808642 + rotY: 180.008041 + rotZ: 0.08051372 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233252 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2332': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296027643/326876D4B46DF777AA1293989DEEE6A810ED027B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999385819527677/3AD8DFFFBFF54DB098AD3E00BB7E75DA0590FE8B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 0 + GMNotes: '' + GUID: a6f731 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Where There's Smoke + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -9.582067 + posY: 1.72122335 + posZ: 5.81862164 + rotX: 0.017165482 + rotY: 180.01088 + rotZ: 0.0798339844 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2332': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296027643/326876D4B46DF777AA1293989DEEE6A810ED027B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999385819527677/3AD8DFFFBFF54DB098AD3E00BB7E75DA0590FE8B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + '2333': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296027643/326876D4B46DF777AA1293989DEEE6A810ED027B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999385819527677/3AD8DFFFBFF54DB098AD3E00BB7E75DA0590FE8B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 233324 +- 233323 +- 233322 +- 233321 +- 233353 +- 233252 +Description: '' +GMNotes: '' +GUID: d30e98 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Agenda Deck +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.72459173 + posY: 1.657966 + posZ: 0.3733304 + rotX: 0.0168349426 + rotY: 180.000046 + rotZ: 0.08025842 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 3 The Essex County Express d92b86/Deck Encounter Deck 116a78.yaml b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 3 The Essex County Express d92b86/Deck Encounter Deck 116a78.yaml new file mode 100644 index 000000000..835eeca9b --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 3 The Essex County Express d92b86/Deck Encounter Deck 116a78.yaml @@ -0,0 +1,1569 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 232846 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Abomination. + GMNotes: '' + GUID: '979865' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Emergent Monstrosity + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 4.56324863 + posY: 1.547649 + posZ: 2.6758585 + rotX: 359.920135 + rotY: 269.999939 + rotZ: 0.0168755446 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232846 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Abomination. + GMNotes: '' + GUID: 8f3a8e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Emergent Monstrosity + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 4.45231533 + posY: 1.70446432 + posZ: 2.54968047 + rotX: 359.9361 + rotY: 270.0 + rotZ: 0.0135003505 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232845 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Abomination. + GMNotes: '' + GUID: de3bd5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Grappling Horror + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 4.296824 + posY: 1.54920268 + posZ: 6.69029856 + rotX: 359.920135 + rotY: 269.9999 + rotZ: 0.01687894 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232845 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Abomination. + GMNotes: '' + GUID: c7a9ae + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Grappling Horror + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 4.05175161 + posY: 1.70558786 + posZ: 6.95578146 + rotX: 359.920135 + rotY: 269.9999 + rotZ: 0.0168790333 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232844 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: b21462 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Broken Rails + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.17323017 + posY: 1.54983246 + posZ: 3.509645 + rotX: 359.920135 + rotY: 269.999878 + rotZ: 0.016877776 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232844 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: 66a478 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Broken Rails + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.21957278 + posY: 1.70589614 + posZ: 3.63546753 + rotX: 359.920135 + rotY: 269.999878 + rotZ: 0.0168777388 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232844 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: b21462 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Broken Rails + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.84766388 + posY: 1.71542335 + posZ: 4.943244 + rotX: 359.920135 + rotY: 269.999939 + rotZ: 0.01688485 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232843 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Power. + GMNotes: '' + GUID: de3bd5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Claws of Steam + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.562016 + posY: 1.55059922 + posZ: 7.95429945 + rotX: 359.920135 + rotY: 269.9999 + rotZ: 0.0168772768 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232843 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Power. + GMNotes: '' + GUID: 761e27 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Claws of Steam + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.55231953 + posY: 1.65058267 + posZ: 7.93873835 + rotX: 359.920135 + rotY: 269.9999 + rotZ: 0.0168772824 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232843 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Power. + GMNotes: '' + GUID: 02547a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Claws of Steam + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.08161831 + posY: 1.79581642 + posZ: 7.448845 + rotX: 4.45820761 + rotY: 270.0072 + rotZ: 0.01645248 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233842 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2338': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Ally. Bystander. + GMNotes: '' + GUID: 49f43a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Helpless Passenger + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.73022318 + posY: 1.55090475 + posZ: 5.05359936 + rotX: 359.920135 + rotY: 269.999939 + rotZ: 0.0168759227 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233842 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2338': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Ally. Bystander. + GMNotes: '' + GUID: 8bc20d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Helpless Passenger + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.56772733 + posY: 1.7071954 + posZ: 5.398302 + rotX: 359.9361 + rotY: 270.0 + rotZ: 0.0135006122 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233842 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2338': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Ally. Bystander. + GMNotes: '' + GUID: 49f43a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Helpless Passenger + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.5806675 + posY: 1.72434509 + posZ: 5.36101627 + rotX: 359.9387 + rotY: 270.0 + rotZ: 0.009182569 + 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 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: d63054 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Mysterious Chanting + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -14.9937792 + posY: 1.57623422 + posZ: 7.191085 + rotX: 359.920227 + rotY: 270.005066 + rotZ: 0.01624975 + 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 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: b347d1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Mysterious Chanting + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -15.1765862 + posY: 1.7388649 + posZ: 7.12856245 + rotX: 359.9205 + rotY: 270.005066 + rotZ: 0.011837706 + 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 + UniqueBack: false + Description: Humanoid. Cultist. + GMNotes: '' + GUID: d36612 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Wizard of the Order + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -15.1335211 + posY: 1.7306242 + posZ: 15.1695614 + rotX: 359.933441 + rotY: 269.998932 + rotZ: 180.028931 + 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 + UniqueBack: false + Description: Humanoid. Cultist. + GMNotes: '' + GUID: 50fdc5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Acolyte + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -15.3295956 + posY: 1.62976587 + posZ: 15.9645061 + rotX: 0.0716057643 + rotY: 270.000061 + rotZ: 359.982727 + 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 + UniqueBack: false + Description: Humanoid. Cultist. + GMNotes: '' + GUID: 4911f2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Acolyte + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -15.3297215 + posY: 1.77588809 + posZ: 15.9645157 + rotX: 0.07387834 + rotY: 269.998474 + rotZ: 359.992645 + 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 + UniqueBack: false + Description: Humanoid. Cultist. + GMNotes: '' + GUID: ab3719 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Acolyte + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -15.9929094 + posY: 1.58014917 + posZ: 15.8832378 + rotX: 359.920624 + rotY: 270.0 + rotZ: 0.0137184272 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233044 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: e3fba9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Resurgent Evils + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 8.283834 + posY: 1.54401064 + posZ: 7.933346 + rotX: 359.920135 + rotY: 269.999664 + rotZ: 0.0168762654 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233044 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: e6d9b2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Resurgent Evils + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 8.055629 + posY: 1.699255 + posZ: 7.93120241 + rotX: 359.920135 + rotY: 269.999664 + rotZ: 0.0168761984 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233044 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: e3fba9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Resurgent Evils + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 8.055629 + posY: 1.71649992 + posZ: 7.93120241 + rotX: 359.9212 + rotY: 269.999664 + rotZ: 0.01656634 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233043 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: a97e94 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Infinite Doorway + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 4.197397 + posY: 1.54959261 + posZ: 7.54406452 + rotX: 359.920135 + rotY: 269.999542 + rotZ: 0.0168782528 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233043 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: 64803b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Infinite Doorway + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 4.32584858 + posY: 1.70545149 + posZ: 7.526225 + rotX: 359.920135 + rotY: 269.999542 + rotZ: 0.0168783125 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233042 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: ff3b62 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: A Baleful Welcome + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.86596346 + posY: 1.55085039 + posZ: 10.3858719 + rotX: 359.920563 + rotY: 269.999939 + rotZ: 0.0141112823 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233042 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: 91d7bc + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: A Baleful Welcome + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 4.27264 + posY: 1.70741928 + posZ: 10.3873577 + rotX: 359.940582 + rotY: 270.0 + rotZ: 0.0103841284 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233041 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: e3fba9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Haunting Recollections + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.9066577 + posY: 1.5516181 + posZ: 13.0453758 + rotX: 359.920135 + rotY: 269.999664 + rotZ: 0.0168763362 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233041 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: 4edfe1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Haunting Recollections + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 4.186173 + posY: 1.70772672 + posZ: 13.2151175 + rotX: 359.920135 + rotY: 269.999664 + rotZ: 0.0168762747 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233050 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: 7dd094 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Need for Knowledge + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 9.214496 + posY: 1.54113626 + posZ: 2.57877874 + rotX: 359.920135 + rotY: 269.999664 + rotZ: 0.0168800149 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233050 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: 9f855c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Need for Knowledge + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 9.015348 + posY: 1.695799 + posZ: 2.69127941 + rotX: 359.920135 + rotY: 269.999664 + rotZ: 0.0168801211 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233050 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: 7dd094 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Need for Knowledge + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 9.04972649 + posY: 1.71299982 + posZ: 2.68801451 + rotX: 359.919678 + rotY: 269.999664 + rotZ: 0.016476877 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233049 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: e3fba9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Idle Hands + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 9.170475 + posY: 1.54203224 + posZ: 5.413058 + rotX: 359.920135 + rotY: 269.999573 + rotZ: 0.01687807 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233049 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: ac1417 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Idle Hands + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 9.196331 + posY: 1.69662583 + posZ: 5.74743938 + rotX: 359.920135 + rotY: 269.999573 + rotZ: 0.0168674812 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233048 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: d8596b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Violent Commands + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 9.157638 + posY: 1.54277384 + posZ: 7.870572 + rotX: 359.920135 + rotY: 269.999573 + rotZ: 0.0168761183 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233048 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: 27658e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Violent Commands + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 9.356761 + posY: 1.69708729 + posZ: 7.57023 + rotX: 359.920135 + rotY: 269.999573 + rotZ: 0.0168761387 + 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 + UniqueBack: false + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '2338': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 232846 +- 232846 +- 232845 +- 232845 +- 232844 +- 232844 +- 232844 +- 232843 +- 232843 +- 232843 +- 233842 +- 233842 +- 233842 +- 231724 +- 231724 +- 231723 +- 231722 +- 231722 +- 231722 +- 233044 +- 233044 +- 233044 +- 233043 +- 233043 +- 233042 +- 233042 +- 233041 +- 233041 +- 233050 +- 233050 +- 233050 +- 233049 +- 233049 +- 233048 +- 233048 +Description: '' +GMNotes: '' +GUID: 116a78 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Encounter Deck +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.927333 + posY: 1.79835677 + posZ: 5.7571516 + rotX: 359.919739 + rotY: 269.999939 + rotZ: 180.016846 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 3 The Essex County Express d92b86/Deck Engine Cars 52dd93.yaml b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 3 The Essex County Express d92b86/Deck Engine Cars 52dd93.yaml new file mode 100644 index 000000000..fd840b033 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 3 The Essex County Express d92b86/Deck Engine Cars 52dd93.yaml @@ -0,0 +1,222 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 233544 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2335': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999385819522537/207CCD9C85ECB70A339C09170ABB42E139924AA0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780748790926468191/C3163A90948FC777DC7D95D05CB35D2DA32CBD9C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Train. + GMNotes: '' + GUID: 03d617 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Engine Car + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -10.9683676 + posY: 1.766143 + posZ: 15.6228018 + rotX: -1.92099083e-06 + rotY: 270.000122 + rotZ: 181.019974 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233543 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2335': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999385819522537/207CCD9C85ECB70A339C09170ABB42E139924AA0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780748790926468191/C3163A90948FC777DC7D95D05CB35D2DA32CBD9C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Train. + GMNotes: '' + GUID: d60b80 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Engine Car + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -11.4884787 + posY: 1.73835921 + posZ: 15.5901365 + rotX: 359.936035 + rotY: 269.9997 + rotZ: 180.663284 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233542 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2335': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999385819522537/207CCD9C85ECB70A339C09170ABB42E139924AA0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780748790926468191/C3163A90948FC777DC7D95D05CB35D2DA32CBD9C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Train. + GMNotes: '' + GUID: f4b757 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Engine Car + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -11.6047211 + posY: 1.82633412 + posZ: 15.1648312 + rotX: 359.377136 + rotY: 270.018372 + rotZ: 356.159332 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233638 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2336': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296074747/742F5083E0E10E3DD22E671C78F35E6143C744FF/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296074238/FB73285A9ED0D784210E50C6EA17EBC25648D800/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Train. + GMNotes: '' + GUID: 34abd4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Engine Car + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -15.7856359 + posY: 1.72945881 + posZ: 6.42517567 + rotX: 359.9201 + rotY: 269.999878 + rotZ: 0.01685882 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2335': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999385819522537/207CCD9C85ECB70A339C09170ABB42E139924AA0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780748790926468191/C3163A90948FC777DC7D95D05CB35D2DA32CBD9C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + '2336': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296074747/742F5083E0E10E3DD22E671C78F35E6143C744FF/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296074238/FB73285A9ED0D784210E50C6EA17EBC25648D800/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 233544 +- 233543 +- 233542 +- 233638 +Description: '' +GMNotes: '' +GUID: 52dd93 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Engine Cars +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -17.1201477 + posY: 1.67062449 + posZ: -15.2799959 + rotX: 359.9201 + rotY: 269.9999 + rotZ: 0.0168765225 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 3 The Essex County Express d92b86/Deck Train Cars 588354.yaml b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 3 The Essex County Express d92b86/Deck Train Cars 588354.yaml new file mode 100644 index 000000000..ab4ad6f9e --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 3 The Essex County Express d92b86/Deck Train Cars 588354.yaml @@ -0,0 +1,480 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 233541 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2335': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999385819522537/207CCD9C85ECB70A339C09170ABB42E139924AA0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780748790926468191/C3163A90948FC777DC7D95D05CB35D2DA32CBD9C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Train. + GMNotes: '' + GUID: 62eb90 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Train Car + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -10.2903318 + posY: 1.7744683 + posZ: 16.532814 + rotX: 359.951965 + rotY: 269.999878 + rotZ: 181.786285 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233540 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2335': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999385819522537/207CCD9C85ECB70A339C09170ABB42E139924AA0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780748790926468191/C3163A90948FC777DC7D95D05CB35D2DA32CBD9C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Train. + GMNotes: '' + GUID: '464528' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Train Car + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -10.2723455 + posY: 1.76846778 + posZ: 16.2143841 + rotX: 359.936035 + rotY: 269.999939 + rotZ: 181.901123 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233539 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2335': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999385819522537/207CCD9C85ECB70A339C09170ABB42E139924AA0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780748790926468191/C3163A90948FC777DC7D95D05CB35D2DA32CBD9C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Train. + GMNotes: '' + GUID: 3cfca4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Train Car + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -10.5924091 + posY: 1.76612675 + posZ: 15.63805 + rotX: 359.969543 + rotY: 269.995178 + rotZ: 182.182388 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233538 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2335': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999385819522537/207CCD9C85ECB70A339C09170ABB42E139924AA0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780748790926468191/C3163A90948FC777DC7D95D05CB35D2DA32CBD9C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Train. + GMNotes: '' + GUID: 0794a4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Train Car + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -10.5139036 + posY: 1.74962175 + posZ: 15.5190525 + rotX: 359.936218 + rotY: 269.998657 + rotZ: 181.663177 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233537 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2335': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999385819522537/207CCD9C85ECB70A339C09170ABB42E139924AA0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780748790926468191/C3163A90948FC777DC7D95D05CB35D2DA32CBD9C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Train. + GMNotes: '' + GUID: f3f902 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Train Car + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -10.5380306 + posY: 1.74939609 + posZ: 15.8527536 + rotX: -3.895342e-06 + rotY: 270.000366 + rotZ: 180.896469 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233536 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2335': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999385819522537/207CCD9C85ECB70A339C09170ABB42E139924AA0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780748790926468191/C3163A90948FC777DC7D95D05CB35D2DA32CBD9C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Train. + GMNotes: '' + GUID: a3a321 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Train Car + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -10.6127234 + posY: 1.74746227 + posZ: 15.5436687 + rotX: 359.9796 + rotY: 269.9998 + rotZ: 180.26152 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233535 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2335': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999385819522537/207CCD9C85ECB70A339C09170ABB42E139924AA0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780748790926468191/C3163A90948FC777DC7D95D05CB35D2DA32CBD9C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Train. + GMNotes: '' + GUID: 1c93d4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Train Car + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -10.3355656 + posY: 1.75895619 + posZ: 15.6570263 + rotX: 359.982025 + rotY: 270.000916 + rotZ: 181.958267 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233534 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2335': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999385819522537/207CCD9C85ECB70A339C09170ABB42E139924AA0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780748790926468191/C3163A90948FC777DC7D95D05CB35D2DA32CBD9C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Train. + GMNotes: '' + GUID: 0fb5f0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Train Car + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.395413 + posY: 1.718365 + posZ: 18.5239372 + rotX: 359.932739 + rotY: 270.000031 + rotZ: 0.014156823 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233640 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2336': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296074747/742F5083E0E10E3DD22E671C78F35E6143C744FF/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296074238/FB73285A9ED0D784210E50C6EA17EBC25648D800/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Train. + GMNotes: '' + GUID: 64ffb0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Train Car + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -15.5118971 + posY: 1.69943988 + posZ: 9.133373 + rotX: 359.932739 + rotY: 270.0 + rotZ: 0.0141701614 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233639 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2336': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296074747/742F5083E0E10E3DD22E671C78F35E6143C744FF/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296074238/FB73285A9ED0D784210E50C6EA17EBC25648D800/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Train. + GMNotes: '' + GUID: 905f69 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Train Car + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -15.1786861 + posY: 1.70878351 + posZ: 9.704938 + rotX: 359.9201 + rotY: 269.999847 + rotZ: 0.0168631729 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2335': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999385819522537/207CCD9C85ECB70A339C09170ABB42E139924AA0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780748790926468191/C3163A90948FC777DC7D95D05CB35D2DA32CBD9C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + '2336': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296074747/742F5083E0E10E3DD22E671C78F35E6143C744FF/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296074238/FB73285A9ED0D784210E50C6EA17EBC25648D800/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 233541 +- 233540 +- 233539 +- 233538 +- 233537 +- 233536 +- 233535 +- 233534 +- 233640 +- 233639 +Description: '' +GMNotes: '' +GUID: '588354' +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Train Cars +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -30.2241611 + posY: 1.68915439 + posZ: 11.4599771 + rotX: 359.9201 + rotY: 269.999939 + rotZ: 0.016875796 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 4 Blood on the Altar 1536e7.ttslua b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 4 Blood on the Altar 1536e7.ttslua new file mode 100644 index 000000000..54d591927 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 4 Blood on the Altar 1536e7.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.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 Return to The Dunwich Legacy ce9130/Custom_Model_Bag 4 Blood on the Altar 1536e7.yaml b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 4 Blood on the Altar 1536e7.yaml new file mode 100644 index 000000000..aacb5ad23 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 4 Blood on the Altar 1536e7.yaml @@ -0,0 +1,90 @@ +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 4 Blood on the Altar 1536e7/Deck Naomi''s Crew d9037e.yaml' +- !include 'Custom_Model_Bag 4 Blood on the Altar 1536e7/Deck Possible Potential Sacrifices + 0504b5.yaml' +- !include 'Custom_Model_Bag 4 Blood on the Altar 1536e7/Deck Encounter Deck 82f7d9.yaml' +- !include 'Custom_Model_Bag 4 Blood on the Altar 1536e7/Deck Agenda Deck 7b8844.yaml' +- !include 'Custom_Model_Bag 4 Blood on the Altar 1536e7/Deck Act Deck 073668.yaml' +- !include 'Custom_Model_Bag 4 Blood on the Altar 1536e7/Card Scenario 70df0b.yaml' +- !include 'Custom_Model_Bag 4 Blood on the Altar 1536e7/Card Setup aa50e4.yaml' +- !include 'Custom_Model_Bag 4 Blood on the Altar 1536e7/Custom_Tile Blood on the + Altar 92b54a.yaml' +- !include 'Custom_Model_Bag 4 Blood on the Altar 1536e7/Custom_Model_Bag Set-aside + ef6d1e.yaml' +- !include 'Custom_Model_Bag 4 Blood on the Altar 1536e7/Custom_Tile ff2560.yaml' +- !include 'Custom_Model_Bag 4 Blood on the Altar 1536e7/Custom_Tile abd306.yaml' +- !include 'Custom_Model_Bag 4 Blood on the Altar 1536e7/Custom_Tile 7234af.yaml' +- !include 'Custom_Model_Bag 4 Blood on the Altar 1536e7/Custom_Tile 2ca219.yaml' +- !include 'Custom_Model_Bag 4 Blood on the Altar 1536e7/Custom_Tile dfc54c.yaml' +- !include 'Custom_Model_Bag 4 Blood on the Altar 1536e7/Card Village Commons 733391.yaml' +- !include 'Custom_Model_Bag 4 Blood on the Altar 1536e7/Custom_Tile 39a81b.yaml' +- !include 'Custom_Model_Bag 4 Blood on the Altar 1536e7/Custom_Tile 15247d.yaml' +- !include 'Custom_Model_Bag 4 Blood on the Altar 1536e7/Bag Locations 55cac8.yaml' +- !include 'Custom_Model_Bag 4 Blood on the Altar 1536e7/Custom_Tile a4f179.yaml' +- !include 'Custom_Model_Bag 4 Blood on the Altar 1536e7/Custom_Tile 8711dd.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/829135118403755676/B4B5DEF8B5B23D09A19EFAD4AD41DA3E9F6B2BBC/ + MaterialIndex: 3 + MeshURL: https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj + NormalURL: '' + TypeIndex: 6 +Description: Return to the Dunwich Legacy +GMNotes: '' +GUID: 1536e7 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Model_Bag 4 Blood on the Altar 1536e7.ttslua' +LuaScriptState: '{"ml":{"0504b5":{"lock":false,"pos":{"x":-5.7307,"y":1.674,"z":15.7703},"rot":{"x":359.9197,"y":270.0001,"z":180.0168}},"073668":{"lock":false,"pos":{"x":-2.6884,"y":1.6623,"z":-5.0486},"rot":{"x":0.0168,"y":180,"z":0.0803}},"15247d":{"lock":false,"pos":{"x":-26.9643,"y":1.6179,"z":-3.9854},"rot":{"x":0.0684,"y":135.0062,"z":0.0446}},"2ca219":{"lock":false,"pos":{"x":-19.9089,"y":1.6093,"z":0.0965},"rot":{"x":0.0799,"y":89.9993,"z":359.9831}},"39a81b":{"lock":false,"pos":{"x":-26.8188,"y":1.6189,"z":0.059},"rot":{"x":0.0799,"y":89.9993,"z":359.9831}},"55cac8":{"lock":false,"pos":{"x":-12.8368,"y":1.4166,"z":7.5622},"rot":{"x":359.9831,"y":0.0002,"z":359.92}},"70df0b":{"lock":false,"pos":{"x":-3.9558,"y":1.6556,"z":-10.4412},"rot":{"x":359.9198,"y":269.9996,"z":0.0165}},"7234af":{"lock":false,"pos":{"x":-23.6765,"y":1.6157,"z":3.86},"rot":{"x":0.0169,"y":180.0039,"z":0.0799}},"733391":{"lock":false,"pos":{"x":-23.6765,"y":1.6862,"z":-0.03},"rot":{"x":359.9201,"y":269.9998,"z":0.0169}},"7b8844":{"lock":false,"pos":{"x":-2.7248,"y":1.6566,"z":0.3732},"rot":{"x":0.0168,"y":179.9999,"z":0.0803}},"82f7d9":{"lock":false,"pos":{"x":-3.9277,"y":1.7664,"z":5.7572},"rot":{"x":359.9197,"y":269.9998,"z":180.0168}},"8711dd":{"lock":false,"pos":{"x":-26.7835,"y":1.6211,"z":7.6217},"rot":{"x":0.0799,"y":89.9993,"z":359.9831}},"92b54a":{"lock":false,"pos":{"x":-3.8724,"y":1.5825,"z":-14.8303},"rot":{"x":359.9197,"y":270.0049,"z":0.0168}},"a4f179":{"lock":false,"pos":{"x":-30.2242,"y":1.6248,"z":3.86},"rot":{"x":0.0169,"y":180.0039,"z":0.0799}},"aa50e4":{"lock":false,"pos":{"x":-5.4234,"y":1.7059,"z":-10.4403},"rot":{"x":0.0613,"y":270.011,"z":359.9259}},"abd306":{"lock":false,"pos":{"x":-20.3284,"y":1.6121,"z":7.5836},"rot":{"x":0.0799,"y":89.9993,"z":359.9831}},"d9037e":{"lock":false,"pos":{"x":-2.2288,"y":1.6721,"z":15.7687},"rot":{"x":359.9197,"y":270.0002,"z":180.0168}},"dfc54c":{"lock":false,"pos":{"x":-20.0811,"y":1.6084,"z":-3.7421},"rot":{"x":359.9554,"y":224.9924,"z":0.0684}},"ef6d1e":{"lock":false,"pos":{"x":1.6964,"y":1.5583,"z":14.2788},"rot":{"x":359.9551,"y":224.998,"z":0.0687}},"ff2560":{"lock":false,"pos":{"x":-17.12,"y":1.6065,"z":3.86},"rot":{"x":0.0169,"y":180.0039,"z":0.0799}}}}' +MaterialIndex: -1 +MeshIndex: -1 +Name: Custom_Model_Bag +Nickname: '4: Blood on the Altar' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 12.2503033 + posY: 1.46327651 + posZ: -3.91990137 + rotX: 359.920135 + rotY: 269.997284 + rotZ: 0.01687835 + scaleX: 2.21 + scaleY: 0.46 + scaleZ: 2.42 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 4 Blood on the Altar 1536e7/Bag Locations 55cac8.yaml b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 4 Blood on the Altar 1536e7/Bag Locations 55cac8.yaml new file mode 100644 index 000000000..fe2dc0e6b --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 4 Blood on the Altar 1536e7/Bag Locations 55cac8.yaml @@ -0,0 +1,41 @@ +Autoraise: true +ColorDiffuse: + b: 0.0 + g: 0.366520882 + r: 0.7058823 +ContainedObjects: +- !include 'Bag Locations 55cac8/Deck Schoolhouse a77ad0.yaml' +- !include 'Bag Locations 55cac8/Deck House in the Reeds 2bd1c2.yaml' +- !include 'Bag Locations 55cac8/Deck Congregational Church 6b71a9.yaml' +- !include 'Bag Locations 55cac8/Deck Osborn''s General Store 391682.yaml' +- !include 'Bag Locations 55cac8/Deck Burned Ruins 99671c.yaml' +- !include 'Bag Locations 55cac8/Deck Bishop''s Brook 7ce9ed.yaml' +Description: Shuffle and Remove One +GMNotes: '' +GUID: 55cac8 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +MeshIndex: -1 +Name: Bag +Nickname: Locations +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -12.8368187 + posY: 1.41659307 + posZ: 7.562181 + rotX: 359.983124 + rotY: 0.000154782174 + rotZ: 359.920044 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 4 Blood on the Altar 1536e7/Bag Locations 55cac8/Deck Bishop's Brook 7ce9ed.yaml b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 4 Blood on the Altar 1536e7/Bag Locations 55cac8/Deck Bishop's Brook 7ce9ed.yaml new file mode 100644 index 000000000..f7a5c9b33 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 4 Blood on the Altar 1536e7/Bag Locations 55cac8/Deck Bishop's Brook 7ce9ed.yaml @@ -0,0 +1,179 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 233548 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2335': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999385819522537/207CCD9C85ECB70A339C09170ABB42E139924AA0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780748790926468191/C3163A90948FC777DC7D95D05CB35D2DA32CBD9C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Dunwich. + GMNotes: '' + GUID: 0f3193 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Bishop's Brook + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -20.8507729 + posY: 1.58827293 + posZ: 20.3137169 + rotX: 359.920135 + rotY: 269.9997 + rotZ: 0.0168770961 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233547 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2335': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999385819522537/207CCD9C85ECB70A339C09170ABB42E139924AA0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780748790926468191/C3163A90948FC777DC7D95D05CB35D2DA32CBD9C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Dunwich. + GMNotes: '' + GUID: '333962' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Bishop's Brook + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -20.626873 + posY: 1.7367574 + posZ: 20.3739929 + rotX: 359.9201 + rotY: 269.999725 + rotZ: 0.0168571118 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233643 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2336': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296074747/742F5083E0E10E3DD22E671C78F35E6143C744FF/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296074238/FB73285A9ED0D784210E50C6EA17EBC25648D800/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Dunwich. + GMNotes: '' + GUID: 15cd93 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Bishop's Brook + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -18.0385189 + posY: 1.74896526 + posZ: 15.20489 + rotX: 359.9328 + rotY: 269.999939 + rotZ: 0.0142214065 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2335': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999385819522537/207CCD9C85ECB70A339C09170ABB42E139924AA0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780748790926468191/C3163A90948FC777DC7D95D05CB35D2DA32CBD9C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + '2336': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296074747/742F5083E0E10E3DD22E671C78F35E6143C744FF/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296074238/FB73285A9ED0D784210E50C6EA17EBC25648D800/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 233548 +- 233547 +- 233643 +Description: '' +GMNotes: '' +GUID: 7ce9ed +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Bishop's Brook +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -13.7898426 + posY: 3.64859581 + posZ: 9.597976 + rotX: 359.9779 + rotY: 270.000366 + rotZ: 0.0566479824 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 4 Blood on the Altar 1536e7/Bag Locations 55cac8/Deck Burned Ruins 99671c.yaml b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 4 Blood on the Altar 1536e7/Bag Locations 55cac8/Deck Burned Ruins 99671c.yaml new file mode 100644 index 000000000..47711a27c --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 4 Blood on the Altar 1536e7/Bag Locations 55cac8/Deck Burned Ruins 99671c.yaml @@ -0,0 +1,179 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 233549 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2335': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999385819522537/207CCD9C85ECB70A339C09170ABB42E139924AA0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780748790926468191/C3163A90948FC777DC7D95D05CB35D2DA32CBD9C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Dunwich. + GMNotes: '' + GUID: 19ce2b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Burned Ruins + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -19.22478 + posY: 1.5862937 + posZ: 21.4498463 + rotX: 359.920471 + rotY: 269.996155 + rotZ: 0.0163596757 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233550 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2335': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999385819522537/207CCD9C85ECB70A339C09170ABB42E139924AA0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780748790926468191/C3163A90948FC777DC7D95D05CB35D2DA32CBD9C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Dunwich. + GMNotes: '' + GUID: 2559b7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Burned Ruins + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -19.2822 + posY: 1.78322816 + posZ: 20.9599247 + rotX: 359.921143 + rotY: 269.9848 + rotZ: 4.41422272 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233644 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2336': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296074747/742F5083E0E10E3DD22E671C78F35E6143C744FF/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296074238/FB73285A9ED0D784210E50C6EA17EBC25648D800/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Dunwich. + GMNotes: '' + GUID: ac7ca2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Burned Ruins + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -22.59937 + posY: 1.75460291 + posZ: 12.7367907 + rotX: 359.932739 + rotY: 270.0 + rotZ: 0.0141603779 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2335': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999385819522537/207CCD9C85ECB70A339C09170ABB42E139924AA0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780748790926468191/C3163A90948FC777DC7D95D05CB35D2DA32CBD9C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + '2336': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296074747/742F5083E0E10E3DD22E671C78F35E6143C744FF/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296074238/FB73285A9ED0D784210E50C6EA17EBC25648D800/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 233549 +- 233550 +- 233644 +Description: '' +GMNotes: '' +GUID: 99671c +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Burned Ruins +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -14.512888 + posY: 3.6448245 + posZ: 10.7275286 + rotX: 359.9932 + rotY: 269.987457 + rotZ: 359.940918 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 4 Blood on the Altar 1536e7/Bag Locations 55cac8/Deck Congregational Church 6b71a9.yaml b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 4 Blood on the Altar 1536e7/Bag Locations 55cac8/Deck Congregational Church 6b71a9.yaml new file mode 100644 index 000000000..8fbd41cf8 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 4 Blood on the Altar 1536e7/Bag Locations 55cac8/Deck Congregational Church 6b71a9.yaml @@ -0,0 +1,179 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 233553 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2335': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999385819522537/207CCD9C85ECB70A339C09170ABB42E139924AA0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780748790926468191/C3163A90948FC777DC7D95D05CB35D2DA32CBD9C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Dunwich. + GMNotes: '' + GUID: 084254 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Congregational Church + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -19.1755486 + posY: 1.5845437 + posZ: 15.5809374 + rotX: 359.920135 + rotY: 269.999756 + rotZ: 0.0168754123 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233554 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2335': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999385819522537/207CCD9C85ECB70A339C09170ABB42E139924AA0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780748790926468191/C3163A90948FC777DC7D95D05CB35D2DA32CBD9C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Dunwich. + GMNotes: '' + GUID: 8579aa + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Congregational Church + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -19.4904137 + posY: 1.807359 + posZ: 15.1253633 + rotX: 2.8888154 + rotY: 270.005737 + rotZ: 0.0173339956 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233646 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2336': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296074747/742F5083E0E10E3DD22E671C78F35E6143C744FF/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296074238/FB73285A9ED0D784210E50C6EA17EBC25648D800/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Dunwich. + GMNotes: '' + GUID: 018fc4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Congregational Church + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -19.6818523 + posY: 1.74797761 + posZ: 4.055892 + rotX: 359.9328 + rotY: 270.000031 + rotZ: 0.0141603947 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2335': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999385819522537/207CCD9C85ECB70A339C09170ABB42E139924AA0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780748790926468191/C3163A90948FC777DC7D95D05CB35D2DA32CBD9C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + '2336': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296074747/742F5083E0E10E3DD22E671C78F35E6143C744FF/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296074238/FB73285A9ED0D784210E50C6EA17EBC25648D800/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 233553 +- 233554 +- 233646 +Description: '' +GMNotes: '' +GUID: 6b71a9 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Congregational Church +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -12.9929447 + posY: 3.64878941 + posZ: 9.494809 + rotX: 359.923035 + rotY: 269.999573 + rotZ: 0.0394375846 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 4 Blood on the Altar 1536e7/Bag Locations 55cac8/Deck House in the Reeds 2bd1c2.yaml b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 4 Blood on the Altar 1536e7/Bag Locations 55cac8/Deck House in the Reeds 2bd1c2.yaml new file mode 100644 index 000000000..07ae7455b --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 4 Blood on the Altar 1536e7/Bag Locations 55cac8/Deck House in the Reeds 2bd1c2.yaml @@ -0,0 +1,179 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 233555 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2335': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999385819522537/207CCD9C85ECB70A339C09170ABB42E139924AA0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780748790926468191/C3163A90948FC777DC7D95D05CB35D2DA32CBD9C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Dunwich. + GMNotes: '' + GUID: 7a909a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: House in the Reeds + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -19.0212479 + posY: 1.5833472 + posZ: 12.2482557 + rotX: 359.920135 + rotY: 269.999878 + rotZ: 0.0168769266 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233556 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2335': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999385819522537/207CCD9C85ECB70A339C09170ABB42E139924AA0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780748790926468191/C3163A90948FC777DC7D95D05CB35D2DA32CBD9C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Dunwich. + GMNotes: '' + GUID: '159555' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: House in the Reeds + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -19.12008 + posY: 1.73212945 + posZ: 11.9027328 + rotX: 359.920135 + rotY: 269.9998 + rotZ: 0.0168595519 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233647 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2336': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296074747/742F5083E0E10E3DD22E671C78F35E6143C744FF/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296074238/FB73285A9ED0D784210E50C6EA17EBC25648D800/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Dunwich. + GMNotes: '' + GUID: 2abe4e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: House in the Reeds + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -23.7857876 + posY: 1.75382972 + posZ: 4.49703646 + rotX: 359.932739 + rotY: 269.9999 + rotZ: 0.0142342029 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2335': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999385819522537/207CCD9C85ECB70A339C09170ABB42E139924AA0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780748790926468191/C3163A90948FC777DC7D95D05CB35D2DA32CBD9C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + '2336': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296074747/742F5083E0E10E3DD22E671C78F35E6143C744FF/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296074238/FB73285A9ED0D784210E50C6EA17EBC25648D800/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 233555 +- 233556 +- 233647 +Description: '' +GMNotes: '' +GUID: 2bd1c2 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: House in the Reeds +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -12.7510633 + posY: 3.64504933 + posZ: 8.976701 + rotX: 359.909027 + rotY: 269.99884 + rotZ: 0.175603136 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 4 Blood on the Altar 1536e7/Bag Locations 55cac8/Deck Osborn's General Store 391682.yaml b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 4 Blood on the Altar 1536e7/Bag Locations 55cac8/Deck Osborn's General Store 391682.yaml new file mode 100644 index 000000000..bbd8ff145 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 4 Blood on the Altar 1536e7/Bag Locations 55cac8/Deck Osborn's General Store 391682.yaml @@ -0,0 +1,179 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 233551 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2335': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999385819522537/207CCD9C85ECB70A339C09170ABB42E139924AA0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780748790926468191/C3163A90948FC777DC7D95D05CB35D2DA32CBD9C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Dunwich. + GMNotes: '' + GUID: 2c4849 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Osborn's General Store + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -19.46666 + posY: 1.58580983 + posZ: 18.5023212 + rotX: 359.920135 + rotY: 270.000061 + rotZ: 0.0168762021 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233552 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2335': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999385819522537/207CCD9C85ECB70A339C09170ABB42E139924AA0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780748790926468191/C3163A90948FC777DC7D95D05CB35D2DA32CBD9C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Dunwich. + GMNotes: '' + GUID: 943aea + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Osborn's General Store + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -19.6688614 + posY: 1.81828165 + posZ: 18.3914871 + rotX: 359.922424 + rotY: 269.995 + rotZ: 4.54455853 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233645 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2336': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296074747/742F5083E0E10E3DD22E671C78F35E6143C744FF/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296074238/FB73285A9ED0D784210E50C6EA17EBC25648D800/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Dunwich. + GMNotes: '' + GUID: 01ce7b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Osborn's General Store + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -21.108448 + posY: 1.75095248 + posZ: 7.42171335 + rotX: 359.9328 + rotY: 269.999939 + rotZ: 0.014231408 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2335': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999385819522537/207CCD9C85ECB70A339C09170ABB42E139924AA0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780748790926468191/C3163A90948FC777DC7D95D05CB35D2DA32CBD9C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + '2336': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296074747/742F5083E0E10E3DD22E671C78F35E6143C744FF/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296074238/FB73285A9ED0D784210E50C6EA17EBC25648D800/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 233551 +- 233552 +- 233645 +Description: '' +GMNotes: '' +GUID: '391682' +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Osborn's General Store +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -13.50231 + posY: 3.6472404 + posZ: 9.562744 + rotX: 0.0134296324 + rotY: 270.001526 + rotZ: 0.121191971 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 4 Blood on the Altar 1536e7/Bag Locations 55cac8/Deck Schoolhouse a77ad0.yaml b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 4 Blood on the Altar 1536e7/Bag Locations 55cac8/Deck Schoolhouse a77ad0.yaml new file mode 100644 index 000000000..a9f87ca59 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 4 Blood on the Altar 1536e7/Bag Locations 55cac8/Deck Schoolhouse a77ad0.yaml @@ -0,0 +1,179 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 233557 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2335': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999385819522537/207CCD9C85ECB70A339C09170ABB42E139924AA0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780748790926468191/C3163A90948FC777DC7D95D05CB35D2DA32CBD9C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Dunwich. + GMNotes: '' + GUID: 6e0f3d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Schoolhouse + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -19.5798874 + posY: 1.5832876 + posZ: 9.40095 + rotX: 359.920135 + rotY: 269.999847 + rotZ: 0.0168761984 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233558 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2335': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999385819522537/207CCD9C85ECB70A339C09170ABB42E139924AA0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780748790926468191/C3163A90948FC777DC7D95D05CB35D2DA32CBD9C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Dunwich. + GMNotes: '' + GUID: ce3bcc + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Schoolhouse + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -19.64412 + posY: 1.73201632 + posZ: 9.018622 + rotX: 359.920135 + rotY: 269.999878 + rotZ: 0.0168746226 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233648 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2336': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296074747/742F5083E0E10E3DD22E671C78F35E6143C744FF/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296074238/FB73285A9ED0D784210E50C6EA17EBC25648D800/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Dunwich. + GMNotes: '' + GUID: f24e67 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Schoolhouse + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -24.249382 + posY: 1.91152394 + posZ: 9.01497 + rotX: 0.09131723 + rotY: 269.999847 + rotZ: 0.0130699091 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2335': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999385819522537/207CCD9C85ECB70A339C09170ABB42E139924AA0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780748790926468191/C3163A90948FC777DC7D95D05CB35D2DA32CBD9C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + '2336': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296074747/742F5083E0E10E3DD22E671C78F35E6143C744FF/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296074238/FB73285A9ED0D784210E50C6EA17EBC25648D800/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 233557 +- 233558 +- 233648 +Description: '' +GMNotes: '' +GUID: a77ad0 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Schoolhouse +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -13.6476555 + posY: 3.60851574 + posZ: 9.812959 + rotX: 3.21093965 + rotY: 269.9786 + rotZ: 0.1093304 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 4 Blood on the Altar 1536e7/Card Scenario 70df0b.yaml b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 4 Blood on the Altar 1536e7/Card Scenario 70df0b.yaml new file mode 100644 index 000000000..2f675bf85 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 4 Blood on the Altar 1536e7/Card Scenario 70df0b.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 233545 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2335': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999385819522537/207CCD9C85ECB70A339C09170ABB42E139924AA0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780748790926468191/C3163A90948FC777DC7D95D05CB35D2DA32CBD9C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Blood on the Altar +GMNotes: '' +GUID: 70df0b +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Scenario +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.95584273 + posY: 1.65564239 + posZ: -10.4412413 + rotX: 359.9198 + rotY: 269.9996 + rotZ: 0.01647552 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 4 Blood on the Altar 1536e7/Card Setup aa50e4.yaml b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 4 Blood on the Altar 1536e7/Card Setup aa50e4.yaml new file mode 100644 index 000000000..75e059d4a --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 4 Blood on the Altar 1536e7/Card Setup aa50e4.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 233641 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2336': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296074747/742F5083E0E10E3DD22E671C78F35E6143C744FF/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296074238/FB73285A9ED0D784210E50C6EA17EBC25648D800/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Return to Blood on the Altar +GMNotes: '' +GUID: aa50e4 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Setup +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -5.423366 + posY: 1.70585072 + posZ: -10.4402914 + rotX: 0.0612628348 + rotY: 270.011017 + rotZ: 359.9259 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 4 Blood on the Altar 1536e7/Card Village Commons 733391.yaml b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 4 Blood on the Altar 1536e7/Card Village Commons 733391.yaml new file mode 100644 index 000000000..fa0bf9d33 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 4 Blood on the Altar 1536e7/Card Village Commons 733391.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 233642 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2336': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296074747/742F5083E0E10E3DD22E671C78F35E6143C744FF/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296074238/FB73285A9ED0D784210E50C6EA17EBC25648D800/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Silent Decay +GMNotes: '' +GUID: '733391' +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Village Commons +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -23.676548 + posY: 1.68622041 + posZ: -0.029994674 + rotX: 359.9201 + rotY: 269.9998 + rotZ: 0.0168783423 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 4 Blood on the Altar 1536e7/Custom_Model_Bag Set-aside ef6d1e.yaml b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 4 Blood on the Altar 1536e7/Custom_Model_Bag Set-aside ef6d1e.yaml new file mode 100644 index 000000000..273335003 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 4 Blood on the Altar 1536e7/Custom_Model_Bag Set-aside ef6d1e.yaml @@ -0,0 +1,60 @@ +Autoraise: true +ColorDiffuse: + b: 0.02148666 + g: 0.00100758043 + r: 0.02148666 +ContainedObjects: +- !include 'Custom_Model_Bag Set-aside ef6d1e/Card Powder of Ibn-Ghazi f96ed0.yaml' +- !include 'Custom_Model_Bag Set-aside ef6d1e/Card Key to the Chamber 49f43a.yaml' +- !include 'Custom_Model_Bag Set-aside ef6d1e/Card The Hidden Chamber cb0272.yaml' +- !include 'Custom_Model_Bag Set-aside ef6d1e/Card Silas Bishop de3bd5.yaml' +- !include 'Custom_Model_Bag Set-aside ef6d1e/Deck Hired Guns c131d5.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: Blood on the Altar +GMNotes: '' +GUID: ef6d1e +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +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.69641757 + posY: 1.558317 + posZ: 14.2787638 + rotX: 359.9551 + rotY: 224.997986 + rotZ: 0.06867942 + scaleX: 2.0 + scaleY: 2.0 + scaleZ: 2.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 4 Blood on the Altar 1536e7/Custom_Model_Bag Set-aside ef6d1e/Card Key to the Chamber 49f43a.yaml b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 4 Blood on the Altar 1536e7/Custom_Model_Bag Set-aside ef6d1e/Card Key to the Chamber 49f43a.yaml new file mode 100644 index 000000000..0e9d4f0ba --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 4 Blood on the Altar 1536e7/Custom_Model_Bag Set-aside ef6d1e/Card Key to the Chamber 49f43a.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 233847 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2338': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: Item. Key. +GMNotes: '' +GUID: 49f43a +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Key to the Chamber +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -8.119753 + posY: 1.57518816 + posZ: -8.53619 + rotX: 359.920135 + rotY: 269.999939 + rotZ: 0.0168762188 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 4 Blood on the Altar 1536e7/Custom_Model_Bag Set-aside ef6d1e/Card Powder of Ibn-Ghazi f96ed0.yaml b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 4 Blood on the Altar 1536e7/Custom_Model_Bag Set-aside ef6d1e/Card Powder of Ibn-Ghazi f96ed0.yaml new file mode 100644 index 000000000..ee2b31ecc --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 4 Blood on the Altar 1536e7/Custom_Model_Bag Set-aside ef6d1e/Card Powder of Ibn-Ghazi f96ed0.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Seeing Things Unseen +GMNotes: '' +GUID: f96ed0 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Powder of Ibn-Ghazi +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -9.769892 + posY: 3.62756467 + posZ: 5.47835255 + rotX: 359.920074 + rotY: 269.999939 + rotZ: 0.01687699 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 4 Blood on the Altar 1536e7/Custom_Model_Bag Set-aside ef6d1e/Card Silas Bishop de3bd5.yaml b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 4 Blood on the Altar 1536e7/Custom_Model_Bag Set-aside ef6d1e/Card Silas Bishop de3bd5.yaml new file mode 100644 index 000000000..59b5a7aef --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 4 Blood on the Altar 1536e7/Custom_Model_Bag Set-aside ef6d1e/Card Silas Bishop de3bd5.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 232848 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: Infused With Evil +GMNotes: '' +GUID: de3bd5 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Silas Bishop +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -9.408284 + posY: 3.626911 + posZ: 6.754977 + rotX: 359.920044 + rotY: 269.998169 + rotZ: 0.016867822 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 4 Blood on the Altar 1536e7/Custom_Model_Bag Set-aside ef6d1e/Card The Hidden Chamber cb0272.yaml b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 4 Blood on the Altar 1536e7/Custom_Model_Bag Set-aside ef6d1e/Card The Hidden Chamber cb0272.yaml new file mode 100644 index 000000000..523e41f11 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 4 Blood on the Altar 1536e7/Custom_Model_Bag Set-aside ef6d1e/Card The Hidden Chamber cb0272.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 233559 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2335': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999385819522537/207CCD9C85ECB70A339C09170ABB42E139924AA0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780748790926468191/C3163A90948FC777DC7D95D05CB35D2DA32CBD9C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Prison of the Beast +GMNotes: '' +GUID: cb0272 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: The Hidden Chamber +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -7.828171 + posY: 1.57579017 + posZ: -4.78744841 + rotX: 359.920135 + rotY: 270.0002 + rotZ: 0.0168771353 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 4 Blood on the Altar 1536e7/Custom_Model_Bag Set-aside ef6d1e/Deck Hired Guns c131d5.yaml b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 4 Blood on the Altar 1536e7/Custom_Model_Bag Set-aside ef6d1e/Deck Hired Guns c131d5.yaml new file mode 100644 index 000000000..4eb00b9d1 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 4 Blood on the Altar 1536e7/Custom_Model_Bag Set-aside ef6d1e/Deck Hired Guns c131d5.yaml @@ -0,0 +1,129 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 233029 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Criminal. Syndicate. + GMNotes: '' + GUID: f80a44 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Hired Gun + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -18.6050777 + posY: 1.580811 + posZ: 5.605576 + rotX: 359.920135 + rotY: 269.999939 + rotZ: 0.0168748982 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233029 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Criminal. Syndicate. + GMNotes: '' + GUID: 5f2757 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Hired Gun + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -18.3955936 + posY: 1.72917175 + posZ: 5.1252203 + rotX: 359.920135 + rotY: 270.0 + rotZ: 0.0168839227 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 233029 +- 233029 +Description: '' +GMNotes: '' +GUID: c131d5 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Hired Guns +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -13.9666395 + posY: 3.63971758 + posZ: 3.946268 + rotX: 359.920044 + rotY: 269.9999 + rotZ: 0.0168646611 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 4 Blood on the Altar 1536e7/Custom_Tile 15247d.yaml b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 4 Blood on the Altar 1536e7/Custom_Tile 15247d.yaml new file mode 100644 index 000000000..6e2ad92ce --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 4 Blood on the Altar 1536e7/Custom_Tile 15247d.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 15247d +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Custom_Tile + Nickname: '' + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -26.9642925 + posY: 1.6179266 + posZ: -3.98538065 + rotX: 0.06841904 + rotY: 135.006241 + rotZ: 0.0445467532 + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.9643 + posY: 1.6179266 + posZ: -3.9854002 + rotX: 0.06842619 + rotY: 135.006226 + rotZ: 0.044570066 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 4 Blood on the Altar 1536e7/Custom_Tile 2ca219.yaml b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 4 Blood on the Altar 1536e7/Custom_Tile 2ca219.yaml new file mode 100644 index 000000000..8a61e7127 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 4 Blood on the Altar 1536e7/Custom_Tile 2ca219.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 2ca219 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: -19.9089 + posY: 1.6092906 + posZ: 0.09649976 + rotX: 0.07989414 + rotY: 89.9992752 + rotZ: 359.9831 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 4 Blood on the Altar 1536e7/Custom_Tile 39a81b.yaml b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 4 Blood on the Altar 1536e7/Custom_Tile 39a81b.yaml new file mode 100644 index 000000000..f98eba8c2 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 4 Blood on the Altar 1536e7/Custom_Tile 39a81b.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 39a81b +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.8188 + posY: 1.61891472 + posZ: 0.05899975 + rotX: 0.07989419 + rotY: 89.9992752 + rotZ: 359.9831 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 4 Blood on the Altar 1536e7/Custom_Tile 7234af.yaml b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 4 Blood on the Altar 1536e7/Custom_Tile 7234af.yaml new file mode 100644 index 000000000..3cf6ed625 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 4 Blood on the Altar 1536e7/Custom_Tile 7234af.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 7234af +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.6765 + posY: 1.61565208 + posZ: 3.86000013 + rotX: 0.0168664474 + rotY: 180.00386 + rotZ: 0.07994108 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 4 Blood on the Altar 1536e7/Custom_Tile 8711dd.yaml b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 4 Blood on the Altar 1536e7/Custom_Tile 8711dd.yaml new file mode 100644 index 000000000..1a7f66dc0 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 4 Blood on the Altar 1536e7/Custom_Tile 8711dd.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 8711dd +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.7835 + posY: 1.62109244 + posZ: 7.62169933 + rotX: 0.07989415 + rotY: 89.99927 + rotZ: 359.9831 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 4 Blood on the Altar 1536e7/Custom_Tile a4f179.yaml b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 4 Blood on the Altar 1536e7/Custom_Tile a4f179.yaml new file mode 100644 index 000000000..ab2a9c13a --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 4 Blood on the Altar 1536e7/Custom_Tile a4f179.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: a4f179 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.62478244 + posZ: 3.86000013 + rotX: 0.01686642 + rotY: 180.003891 + rotZ: 0.0799402148 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 4 Blood on the Altar 1536e7/Custom_Tile abd306.yaml b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 4 Blood on the Altar 1536e7/Custom_Tile abd306.yaml new file mode 100644 index 000000000..785efb3ce --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 4 Blood on the Altar 1536e7/Custom_Tile abd306.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: abd306 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.3283978 + posY: 1.61208 + posZ: 7.58359957 + rotX: 0.07989431 + rotY: 89.99934 + rotZ: 359.9831 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 4 Blood on the Altar 1536e7/Custom_Tile dfc54c.yaml b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 4 Blood on the Altar 1536e7/Custom_Tile dfc54c.yaml new file mode 100644 index 000000000..958af59e1 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 4 Blood on the Altar 1536e7/Custom_Tile dfc54c.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: dfc54c +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.0811 + posY: 1.60840011 + posZ: -3.74210048 + rotX: 359.955444 + rotY: 224.992447 + rotZ: 0.0684116557 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 4 Blood on the Altar 1536e7/Custom_Tile ff2560.yaml b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 4 Blood on the Altar 1536e7/Custom_Tile ff2560.yaml new file mode 100644 index 000000000..c3f05151d --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 4 Blood on the Altar 1536e7/Custom_Tile ff2560.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: ff2560 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.60650945 + posZ: 3.86000013 + rotX: 0.01686633 + rotY: 180.0039 + rotZ: 0.07994636 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 4 Blood on the Altar 1536e7/Custom_Tile Blood on the Altar 92b54a.ttslua b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 4 Blood on the Altar 1536e7/Custom_Tile Blood on the Altar 92b54a.ttslua new file mode 100644 index 000000000..35359436c --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 4 Blood on the Altar 1536e7/Custom_Tile Blood on the Altar 92b54a.ttslua @@ -0,0 +1,25 @@ +name = 'Blood on the Altar' + +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 + +function standaloneClick() + Global.call('fillContainer', {object=self, key=name, mode='standalone'}) +end diff --git a/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 4 Blood on the Altar 1536e7/Custom_Tile Blood on the Altar 92b54a.yaml b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 4 Blood on the Altar 1536e7/Custom_Tile Blood on the Altar 92b54a.yaml new file mode 100644 index 000000000..269552895 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 4 Blood on the Altar 1536e7/Custom_Tile Blood on the Altar 92b54a.yaml @@ -0,0 +1,42 @@ +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 +GMNotes: '' +GUID: 92b54a +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Tile Blood on the Altar 92b54a.ttslua' +LuaScriptState: '' +Name: Custom_Tile +Nickname: Blood on the Altar +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.87240028 + posY: 1.58252776 + posZ: -14.8303032 + rotX: 359.919739 + rotY: 270.004944 + rotZ: 0.0168309938 + scaleX: 2.2 + scaleY: 1.0 + scaleZ: 2.2 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 4 Blood on the Altar 1536e7/Deck Act Deck 073668.yaml b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 4 Blood on the Altar 1536e7/Deck Act Deck 073668.yaml new file mode 100644 index 000000000..bd94d2d70 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 4 Blood on the Altar 1536e7/Deck Act Deck 073668.yaml @@ -0,0 +1,129 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 233331 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2333': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296027643/326876D4B46DF777AA1293989DEEE6A810ED027B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999385819527677/3AD8DFFFBFF54DB098AD3E00BB7E75DA0590FE8B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 2 + GMNotes: '' + GUID: 960a29 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Chamber of the Beast + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -22.5529 + posY: 1.5907743 + posZ: 20.7507458 + rotX: 0.0168697555 + rotY: 180.000061 + rotZ: 0.07987861 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233330 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2333': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296027643/326876D4B46DF777AA1293989DEEE6A810ED027B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999385819527677/3AD8DFFFBFF54DB098AD3E00BB7E75DA0590FE8B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 1 + GMNotes: '' + GUID: 1b5f59 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Searching for Answers + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -22.573616 + posY: 1.74765623 + posZ: 20.5637589 + rotX: 0.0168702248 + rotY: 180.000076 + rotZ: 0.07987797 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2333': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296027643/326876D4B46DF777AA1293989DEEE6A810ED027B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999385819527677/3AD8DFFFBFF54DB098AD3E00BB7E75DA0590FE8B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 233331 +- 233330 +Description: '' +GMNotes: '' +GUID: 073668 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Act Deck +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.688435 + posY: 1.66233337 + posZ: -5.048553 + rotX: 0.01683455 + rotY: 180.000046 + rotZ: 0.08025866 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 4 Blood on the Altar 1536e7/Deck Agenda Deck 7b8844.yaml b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 4 Blood on the Altar 1536e7/Deck Agenda Deck 7b8844.yaml new file mode 100644 index 000000000..809f4ccb5 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 4 Blood on the Altar 1536e7/Deck Agenda Deck 7b8844.yaml @@ -0,0 +1,172 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 233329 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2333': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296027643/326876D4B46DF777AA1293989DEEE6A810ED027B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999385819527677/3AD8DFFFBFF54DB098AD3E00BB7E75DA0590FE8B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 3 + GMNotes: '' + GUID: 6286f9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Feed the Beast + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -21.3669167 + posY: 1.5892148 + posZ: 21.0694656 + rotX: 0.0168705061 + rotY: 180.0 + rotZ: 0.0798787549 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233328 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2333': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296027643/326876D4B46DF777AA1293989DEEE6A810ED027B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999385819527677/3AD8DFFFBFF54DB098AD3E00BB7E75DA0590FE8B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 2 + GMNotes: '' + GUID: 8f5a49 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Old Ones Hunger + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -21.4617977 + posY: 1.745777 + posZ: 21.2267323 + rotX: 0.0168710984 + rotY: 180.000015 + rotZ: 0.07988045 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233327 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2333': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296027643/326876D4B46DF777AA1293989DEEE6A810ED027B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999385819527677/3AD8DFFFBFF54DB098AD3E00BB7E75DA0590FE8B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 1 + GMNotes: '' + GUID: abf877 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Strange Disappearances + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -21.4648762 + posY: 1.75506532 + posZ: 20.3543186 + rotX: 0.0168660525 + rotY: 180.000046 + rotZ: 0.07988553 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2333': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296027643/326876D4B46DF777AA1293989DEEE6A810ED027B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999385819527677/3AD8DFFFBFF54DB098AD3E00BB7E75DA0590FE8B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 233329 +- 233328 +- 233327 +Description: '' +GMNotes: '' +GUID: 7b8844 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Agenda Deck +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.724754 + posY: 1.65664124 + posZ: 0.373176932 + rotX: 0.016837066 + rotY: 179.999924 + rotZ: 0.08025287 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 4 Blood on the Altar 1536e7/Deck Encounter Deck 82f7d9.yaml b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 4 Blood on the Altar 1536e7/Deck Encounter Deck 82f7d9.yaml new file mode 100644 index 000000000..2f056c328 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 4 Blood on the Altar 1536e7/Deck Encounter Deck 82f7d9.yaml @@ -0,0 +1,1304 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 233044 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: e3fba9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Resurgent Evils + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 8.283834 + posY: 1.54401064 + posZ: 7.933346 + rotX: 359.920135 + rotY: 269.999664 + rotZ: 0.0168762654 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233044 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: e6d9b2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Resurgent Evils + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 8.055629 + posY: 1.699255 + posZ: 7.93120241 + rotX: 359.920135 + rotY: 269.999664 + rotZ: 0.0168761984 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233044 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: e3fba9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Resurgent Evils + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 8.055629 + posY: 1.71649992 + posZ: 7.93120241 + rotX: 359.9212 + rotY: 269.999664 + rotZ: 0.01656634 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232816 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: 36342a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Sordid and Silent + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 4.15036964 + posY: 1.54897928 + posZ: 5.238284 + rotX: 359.920135 + rotY: 269.999878 + rotZ: 0.016877193 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232816 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: ebb8db + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Sordid and Silent + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.98407245 + posY: 1.705162 + posZ: 5.341168 + rotX: 359.920135 + rotY: 269.999878 + rotZ: 0.0168772284 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232815 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: de3bd5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Unhallowed Country + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 4.32745171 + posY: 1.71471429 + posZ: 5.03506565 + rotX: 359.919861 + rotY: 269.999969 + rotZ: 0.0168688018 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232815 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: de3bd5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Unhallowed Country + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 4.00495052 + posY: 1.70878184 + posZ: 5.306538 + rotX: 359.920135 + rotY: 269.999969 + rotZ: 0.01687902 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232856 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. + GMNotes: '' + GUID: '830622' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Servant of Many Mouths + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.96014857 + posY: 1.55161953 + posZ: 8.569974 + rotX: 359.920135 + rotY: 269.999878 + rotZ: 0.0168777164 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232856 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. + GMNotes: '' + GUID: 4c9b2a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Servant of Many Mouths + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.959432 + posY: 1.70811665 + posZ: 8.731121 + rotX: 359.920135 + rotY: 269.999878 + rotZ: 0.0168776065 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232856 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. + GMNotes: '' + GUID: '830622' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Servant of Many Mouths + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.959432 + posY: 1.72536492 + posZ: 8.731121 + rotX: 359.920776 + rotY: 269.999878 + rotZ: 0.0158768017 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232855 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: "\tTerror." + GMNotes: '' + GUID: dfd751 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Rotting Remains + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.74654031 + posY: 1.54991353 + posZ: 6.49890852 + rotX: 359.920135 + rotY: 269.999939 + rotZ: 0.0168761481 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232855 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: "\tTerror." + GMNotes: '' + GUID: 26556a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Rotting Remains + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.54368424 + posY: 1.706326 + posZ: 6.574124 + rotX: 359.920135 + rotY: 269.999939 + rotZ: 0.0168759748 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232855 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: "\tTerror." + GMNotes: '' + GUID: dfd751 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Rotting Remains + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.54368424 + posY: 1.7235961 + posZ: 6.574124 + rotX: 359.920135 + rotY: 269.999939 + rotZ: 0.0168760289 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232854 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: "\tOmen." + GMNotes: '' + GUID: 56e0f1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Strange Signs + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.175488 + posY: 1.55028129 + posZ: 5.04462242 + rotX: 359.920135 + rotY: 269.999939 + rotZ: 0.0168766249 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232854 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: "\tOmen." + GMNotes: '' + GUID: 6b8170 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Strange Signs + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.983425 + posY: 1.70778143 + posZ: 5.07155752 + rotX: 359.9361 + rotY: 270.0 + rotZ: 0.013501252 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232853 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: "\tOmen." + GMNotes: '' + GUID: de3bd5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Psychopomp's Song + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.93528557 + posY: 1.55154455 + posZ: 8.19747 + rotX: 359.920135 + rotY: 269.999847 + rotZ: 0.01687629 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232853 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: "\tOmen." + GMNotes: '' + GUID: 3e13f3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Psychopomp's Song + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.73155141 + posY: 1.70817387 + posZ: 7.897554 + rotX: 359.920135 + rotY: 269.999817 + rotZ: 0.0168764144 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232852 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: de3bd5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Kidnapped! + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.101256 + posY: 1.5511688 + posZ: 7.707222 + rotX: 359.920135 + rotY: 269.999878 + rotZ: 0.0168776121 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232852 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 95f4d1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Kidnapped! + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.82772326 + posY: 1.70790935 + posZ: 7.70930338 + rotX: 359.920135 + rotY: 269.999878 + rotZ: 0.0168775991 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232852 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: de3bd5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Kidnapped! + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.82772326 + posY: 1.7251606 + posZ: 7.70930338 + rotX: 359.919739 + rotY: 269.999878 + rotZ: 0.0166410487 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232818 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: 60ef9e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Eager for Death + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.646352 + posY: 1.548182 + posZ: 0.144670352 + rotX: 359.920135 + rotY: 269.999939 + rotZ: 0.0168772917 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232818 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: 40e9d0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Eager for Death + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.37573743 + posY: 1.7043395 + posZ: 0.209344044 + rotX: 359.920135 + rotY: 269.999939 + rotZ: 0.0168772619 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232817 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: "\tCreature." + GMNotes: '' + GUID: de3bd5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Whippoorwill + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.19784832 + posY: 1.54999852 + posZ: 4.190304 + rotX: 359.920135 + rotY: 269.9999 + rotZ: 0.0168776866 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232817 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: "\tCreature." + GMNotes: '' + GUID: 61c583 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Whippoorwill + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.24814034 + posY: 1.70613587 + posZ: 4.471411 + rotX: 359.920135 + rotY: 269.9999 + rotZ: 0.0168776922 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232817 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: "\tCreature." + GMNotes: '' + GUID: de3bd5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Whippoorwill + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.24814034 + posY: 1.72339261 + posZ: 4.471411 + rotX: 359.920441 + rotY: 269.9999 + rotZ: 0.0163779482 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231726 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 1e04da + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: On Wings of Darkness + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -13.4282417 + posY: 1.70155811 + posZ: 13.7778349 + rotX: 359.535278 + rotY: 269.9516 + rotZ: 181.449341 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231726 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 1d0c1c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: On Wings of Darkness + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -15.7923059 + posY: 1.73901558 + posZ: 4.52112341 + rotX: 359.919861 + rotY: 269.999969 + rotZ: 0.0123590212 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231725 + 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 + UniqueBack: false + Description: Monster. Nightgaunt. + GMNotes: '' + GUID: ab3719 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Hunting Nightgaunt + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -16.52605 + posY: 1.57874775 + posZ: 8.559591 + rotX: 359.920471 + rotY: 270.0019 + rotZ: 0.0145635763 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231725 + 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 + UniqueBack: false + Description: Monster. Nightgaunt. + GMNotes: '' + GUID: b75b70 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Hunting Nightgaunt + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -13.47085 + posY: 1.72509861 + posZ: 13.60628 + rotX: 359.9252 + rotY: 269.9989 + rotZ: 0.0176846832 + 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 + UniqueBack: false + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 233044 +- 233044 +- 233044 +- 232816 +- 232816 +- 232815 +- 232815 +- 232856 +- 232856 +- 232856 +- 232855 +- 232855 +- 232855 +- 232854 +- 232854 +- 232853 +- 232853 +- 232852 +- 232852 +- 232852 +- 232818 +- 232818 +- 232817 +- 232817 +- 232817 +- 231726 +- 231726 +- 231725 +- 231725 +Description: '' +GMNotes: '' +GUID: 82f7d9 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Encounter Deck +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.92773533 + posY: 1.76638055 + posZ: 5.757153 + 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 Return to The Dunwich Legacy ce9130/Custom_Model_Bag 4 Blood on the Altar 1536e7/Deck Naomi's Crew d9037e.yaml b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 4 Blood on the Altar 1536e7/Deck Naomi's Crew d9037e.yaml new file mode 100644 index 000000000..6e956051e --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 4 Blood on the Altar 1536e7/Deck Naomi's Crew d9037e.yaml @@ -0,0 +1,301 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 232826 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Tactic. + GMNotes: '' + GUID: fb489f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Hunted Down + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.980493 + posY: 1.55055571 + posZ: 5.05313349 + rotX: 359.920135 + rotY: 269.999939 + rotZ: 0.016877586 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232826 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Tactic. + GMNotes: '' + GUID: 5da81c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Hunted Down + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.06432152 + posY: 1.70658684 + posZ: 4.754894 + rotX: 359.920135 + rotY: 269.999939 + rotZ: 0.01687765 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232825 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: "\tHuman. Criminal. Syndicate." + GMNotes: '' + GUID: 5b2e99 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Mobster + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.824686 + posY: 1.55165482 + posZ: 8.04818 + rotX: 359.920135 + rotY: 269.999939 + rotZ: 0.0168768317 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232825 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: "\tHuman. Criminal. Syndicate." + GMNotes: '' + GUID: a5bca1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Mobster + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.079666 + posY: 1.707689 + posZ: 7.82385826 + rotX: 359.920135 + rotY: 269.999939 + rotZ: 0.0168767981 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232824 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: "\tHuman. Criminal. Syndicate." + GMNotes: '' + GUID: de3bd5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: O'Bannion's Thug + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.137052 + posY: 1.700631 + posZ: 4.79863548 + rotX: 359.920135 + rotY: 269.999878 + rotZ: 0.016896477 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232824 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: "\tHuman. Criminal. Syndicate." + GMNotes: '' + GUID: de3bd5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: O'Bannion's Thug + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.09011388 + posY: 1.71127486 + posZ: 4.866368 + rotX: 359.9204 + rotY: 269.999878 + rotZ: 0.0165366847 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 232826 +- 232826 +- 232825 +- 232825 +- 232824 +- 232824 +Description: '' +GMNotes: '' +GUID: d9037e +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: "\tNaomi's Crew" +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.228834 + posY: 1.672132 + posZ: 15.7687159 + rotX: 359.919739 + rotY: 270.000183 + rotZ: 180.01683 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 4 Blood on the Altar 1536e7/Deck Possible Potential Sacrifices 0504b5.yaml b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 4 Blood on the Altar 1536e7/Deck Possible Potential Sacrifices 0504b5.yaml new file mode 100644 index 000000000..4651885a5 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 4 Blood on the Altar 1536e7/Deck Possible Potential Sacrifices 0504b5.yaml @@ -0,0 +1,258 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- 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 + UniqueBack: false + Description: Recalling Ancient Things + GMNotes: '' + GUID: 6714b2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Zebulon Whateley + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -19.3908253 + posY: 1.579903 + posZ: -1.19811845 + rotX: 359.920135 + rotY: 270.000061 + rotZ: 0.01687859 + 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 + UniqueBack: false + Description: Smarter Than He Lets On + GMNotes: '' + GUID: f14dce + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Earl Sawyer + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -19.436945 + posY: 1.72874486 + posZ: -1.06834185 + rotX: 359.920135 + rotY: 269.9999 + rotZ: 0.0168947689 + 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 + UniqueBack: false + Description: Professor of Archaeology + GMNotes: '' + GUID: f03306 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dr. Francis Morgan + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -19.1315784 + posY: 1.7459451 + posZ: -0.9969317 + rotX: 359.920135 + rotY: 269.999878 + rotZ: 0.016867945 + 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 + UniqueBack: false + Description: Professor of Languages + GMNotes: '' + GUID: 42806b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Professor Warren Rice + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -19.3789425 + posY: 1.73235059 + posZ: -0.794230759 + rotX: 359.9201 + rotY: 269.9999 + rotZ: 0.0168699138 + 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 + UniqueBack: false + Description: The Head Librarian + GMNotes: '' + GUID: 66197b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dr. Henry Armitage + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -19.3524914 + posY: 1.7301228 + posZ: -1.46711588 + rotX: 359.920135 + rotY: 269.999878 + rotZ: 0.0168978833 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2329': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 232949 +- 232950 +- 232907 +- 232904 +- 232900 +Description: '' +GMNotes: '' +GUID: 0504b5 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Possible Potential Sacrifices +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -5.73072767 + posY: 1.67404139 + posZ: 15.7703161 + rotX: 359.919739 + rotY: 270.000061 + rotZ: 180.01683 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 5 Undimensioned and Unseen a82dde.ttslua b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 5 Undimensioned and Unseen a82dde.ttslua new file mode 100644 index 000000000..54d591927 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 5 Undimensioned and Unseen a82dde.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.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 Return to The Dunwich Legacy ce9130/Custom_Model_Bag 5 Undimensioned and Unseen a82dde.yaml b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 5 Undimensioned and Unseen a82dde.yaml new file mode 100644 index 000000000..d3a454a50 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 5 Undimensioned and Unseen a82dde.yaml @@ -0,0 +1,111 @@ +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 5 Undimensioned and Unseen a82dde/Custom_Model_Bag Set-aside + fb8d6d.yaml' +- !include 'Custom_Model_Bag 5 Undimensioned and Unseen a82dde/Deck Broods of Yog-Sothoth + f22251.yaml' +- !include 'Custom_Model_Bag 5 Undimensioned and Unseen a82dde/Deck Encounter Deck + 2ee2b1.yaml' +- !include 'Custom_Model_Bag 5 Undimensioned and Unseen a82dde/Deck Agenda Deck 584b1a.yaml' +- !include 'Custom_Model_Bag 5 Undimensioned and Unseen a82dde/Deck Act Deck 2ee4bd.yaml' +- !include 'Custom_Model_Bag 5 Undimensioned and Unseen a82dde/Card Scenario aa50e4.yaml' +- !include 'Custom_Model_Bag 5 Undimensioned and Unseen a82dde/Card Setup 269f5a.yaml' +- !include 'Custom_Model_Bag 5 Undimensioned and Unseen a82dde/Custom_Tile Undimensioned + and Unseen 393c71.yaml' +- !include 'Custom_Model_Bag 5 Undimensioned and Unseen a82dde/Card Devil''s Hop Yard + 7310f8.yaml' +- !include 'Custom_Model_Bag 5 Undimensioned and Unseen a82dde/Card Devil''s Hop Yard + f7dd31.yaml' +- !include 'Custom_Model_Bag 5 Undimensioned and Unseen a82dde/Custom_Tile 7234af.yaml' +- !include 'Custom_Model_Bag 5 Undimensioned and Unseen a82dde/Card Blasted Heath + cda035.yaml' +- !include 'Custom_Model_Bag 5 Undimensioned and Unseen a82dde/Card Blasted Heath + 995fe7.yaml' +- !include 'Custom_Model_Bag 5 Undimensioned and Unseen a82dde/Custom_Tile 2eb425.yaml' +- !include 'Custom_Model_Bag 5 Undimensioned and Unseen a82dde/Card Whateley Ruins + 42e1b7.yaml' +- !include 'Custom_Model_Bag 5 Undimensioned and Unseen a82dde/Card Whateley Ruins + b1e332.yaml' +- !include 'Custom_Model_Bag 5 Undimensioned and Unseen a82dde/Custom_Tile 2a4634.yaml' +- !include 'Custom_Model_Bag 5 Undimensioned and Unseen a82dde/Card Ten-Acre Meadow + 04861e.yaml' +- !include 'Custom_Model_Bag 5 Undimensioned and Unseen a82dde/Card Ten-Acre Meadow + 05b0dd.yaml' +- !include 'Custom_Model_Bag 5 Undimensioned and Unseen a82dde/Custom_Tile 7216fc.yaml' +- !include 'Custom_Model_Bag 5 Undimensioned and Unseen a82dde/Custom_Tile 542581.yaml' +- !include 'Custom_Model_Bag 5 Undimensioned and Unseen a82dde/Card Dunwich Village + ac4427.yaml' +- !include 'Custom_Model_Bag 5 Undimensioned and Unseen a82dde/Card Dunwich Village + cf4a62.yaml' +- !include 'Custom_Model_Bag 5 Undimensioned and Unseen a82dde/Custom_Tile 2de1a2.yaml' +- !include 'Custom_Model_Bag 5 Undimensioned and Unseen a82dde/Custom_Tile 82b2b8.yaml' +- !include 'Custom_Model_Bag 5 Undimensioned and Unseen a82dde/Custom_Tile 18c876.yaml' +- !include 'Custom_Model_Bag 5 Undimensioned and Unseen a82dde/Card Cold Spring Glen + c50379.yaml' +- !include 'Custom_Model_Bag 5 Undimensioned and Unseen a82dde/Card Cold Spring Glen + e58475.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/829135118403756878/0A3FE0A5BAC24197D5F19A6314365EDF3E80DC6F/ + MaterialIndex: 3 + MeshURL: https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj + NormalURL: '' + TypeIndex: 6 +Description: Return to the Dunwich Legacy +GMNotes: '' +GUID: a82dde +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Model_Bag 5 Undimensioned and Unseen a82dde.ttslua' +LuaScriptState: '{"ml":{"04861e":{"lock":false,"pos":{"x":-23.6765,"y":1.6862,"z":-0.03},"rot":{"x":359.9203,"y":269.9999,"z":0.0159}},"05b0dd":{"lock":false,"pos":{"x":-22.1435,"y":1.83,"z":-0.0594},"rot":{"x":359.8859,"y":269.9973,"z":0.0123}},"18c876":{"lock":false,"pos":{"x":-27.5018,"y":1.6185,"z":-4.7524},"rot":{"x":0.0684,"y":135.0001,"z":0.0446}},"269f5a":{"lock":false,"pos":{"x":-5.3675,"y":1.706,"z":-10.4445},"rot":{"x":359.9207,"y":270.0058,"z":0.0163}},"2a4634":{"lock":false,"pos":{"x":-23.6765,"y":1.6134,"z":-3.83},"rot":{"x":0.0169,"y":179.9938,"z":0.0799}},"2de1a2":{"lock":false,"pos":{"x":-28.2805,"y":1.6221,"z":3.8323},"rot":{"x":0.0446,"y":45.0001,"z":359.9316}},"2eb425":{"lock":false,"pos":{"x":-20.4398,"y":1.6077,"z":-7.812},"rot":{"x":0.0799,"y":90.0002,"z":359.9831}},"2ee2b1":{"lock":false,"pos":{"x":-3.9277,"y":1.7984,"z":5.7572},"rot":{"x":359.9197,"y":270.0001,"z":180.0168}},"2ee4bd":{"lock":false,"pos":{"x":-2.6886,"y":1.6623,"z":-5.0485},"rot":{"x":0.0168,"y":180.0001,"z":0.0803}},"393c71":{"lock":false,"pos":{"x":-3.7896,"y":1.5824,"z":-14.7634},"rot":{"x":359.9197,"y":270.0057,"z":0.0168}},"42e1b7":{"lock":false,"pos":{"x":-22.1515,"y":1.8278,"z":-7.6655},"rot":{"x":359.888,"y":270.0129,"z":0.0184}},"542581":{"lock":false,"pos":{"x":-23.6765,"y":1.6157,"z":3.86},"rot":{"x":0.0169,"y":179.9938,"z":0.0799}},"584b1a":{"lock":false,"pos":{"x":-2.7248,"y":1.6566,"z":0.3733},"rot":{"x":0.0168,"y":180.0001,"z":0.0803}},"7216fc":{"lock":false,"pos":{"x":-19.8355,"y":1.6103,"z":3.7241},"rot":{"x":0.0684,"y":135.0004,"z":0.0446}},"7234af":{"lock":false,"pos":{"x":-17.12,"y":1.6042,"z":-3.83},"rot":{"x":0.0169,"y":179.9938,"z":0.0799}},"7310f8":{"lock":false,"pos":{"x":-15.5907,"y":1.8203,"z":-7.7117},"rot":{"x":357.1161,"y":269.9965,"z":0.0159}},"82b2b8":{"lock":false,"pos":{"x":-26.9436,"y":1.619,"z":-0.1945},"rot":{"x":0.0797,"y":89.9999,"z":359.9865}},"995fe7":{"lock":false,"pos":{"x":-17.1198,"y":1.6771,"z":-0.03},"rot":{"x":359.9202,"y":270.0024,"z":0.0156}},"aa50e4":{"lock":false,"pos":{"x":-3.9558,"y":1.6556,"z":-10.4409},"rot":{"x":359.9198,"y":270.0033,"z":0.0165}},"ac4427":{"lock":false,"pos":{"x":-23.6765,"y":1.6884,"z":7.57},"rot":{"x":359.9202,"y":270.0002,"z":0.0156}},"b1e332":{"lock":false,"pos":{"x":-23.6765,"y":1.6839,"z":-7.7001},"rot":{"x":359.9203,"y":269.9998,"z":0.016}},"c50379":{"lock":false,"pos":{"x":-30.2241,"y":1.6953,"z":-0.03},"rot":{"x":359.9205,"y":269.9999,"z":0.0149}},"cda035":{"lock":false,"pos":{"x":-15.5825,"y":1.8227,"z":-0.0067},"rot":{"x":355.9369,"y":270.0086,"z":0.0131}},"cf4a62":{"lock":false,"pos":{"x":-22.1432,"y":1.8342,"z":7.5834},"rot":{"x":356.2621,"y":270.0009,"z":0.0137}},"e58475":{"lock":false,"pos":{"x":-28.6584,"y":1.8388,"z":-0.0326},"rot":{"x":358.2489,"y":270.0025,"z":0.0152}},"f22251":{"lock":false,"pos":{"x":-4.071,"y":1.6715,"z":15.034},"rot":{"x":359.9197,"y":269.9994,"z":180.0168}},"f7dd31":{"lock":false,"pos":{"x":-17.1199,"y":1.6748,"z":-7.7},"rot":{"x":359.9203,"y":269.9997,"z":0.0154}},"fb8d6d":{"lock":false,"pos":{"x":1.6964,"y":1.5583,"z":14.2788},"rot":{"x":359.9551,"y":224.998,"z":0.0687}}}}' +MaterialIndex: -1 +MeshIndex: -1 +Name: Custom_Model_Bag +Nickname: '5: Undimensioned and Unseen' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 12.2503023 + posY: 1.46070135 + posZ: -12.6661015 + rotX: 359.920135 + rotY: 270.0075 + rotZ: 0.0168635231 + scaleX: 2.21 + scaleY: 0.46 + scaleZ: 2.42 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 5 Undimensioned and Unseen a82dde/Card Blasted Heath 995fe7.yaml b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 5 Undimensioned and Unseen a82dde/Card Blasted Heath 995fe7.yaml new file mode 100644 index 000000000..47a9eebd5 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 5 Undimensioned and Unseen a82dde/Card Blasted Heath 995fe7.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 233608 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2336': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296074747/742F5083E0E10E3DD22E671C78F35E6143C744FF/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296074238/FB73285A9ED0D784210E50C6EA17EBC25648D800/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Dunwich. +GMNotes: '' +GUID: 995fe7 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Blasted Heath +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -17.119833 + posY: 1.67705965 + posZ: -0.0300459936 + rotX: 359.920227 + rotY: 270.0024 + rotZ: 0.0155844009 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 5 Undimensioned and Unseen a82dde/Card Blasted Heath cda035.yaml b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 5 Undimensioned and Unseen a82dde/Card Blasted Heath cda035.yaml new file mode 100644 index 000000000..3cbf9202e --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 5 Undimensioned and Unseen a82dde/Card Blasted Heath cda035.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 233607 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2336': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296074747/742F5083E0E10E3DD22E671C78F35E6143C744FF/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296074238/FB73285A9ED0D784210E50C6EA17EBC25648D800/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Dunwich. +GMNotes: '' +GUID: cda035 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Blasted Heath +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -15.5824871 + posY: 1.82269239 + posZ: -0.006737443 + rotX: 355.93692 + rotY: 270.0086 + rotZ: 0.0130753219 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 5 Undimensioned and Unseen a82dde/Card Cold Spring Glen c50379.yaml b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 5 Undimensioned and Unseen a82dde/Card Cold Spring Glen c50379.yaml new file mode 100644 index 000000000..6224399f6 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 5 Undimensioned and Unseen a82dde/Card Cold Spring Glen c50379.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 233604 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2336': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296074747/742F5083E0E10E3DD22E671C78F35E6143C744FF/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296074238/FB73285A9ED0D784210E50C6EA17EBC25648D800/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Dunwich. +GMNotes: '' +GUID: c50379 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Cold Spring Glen +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -30.2240734 + posY: 1.69532132 + posZ: -0.0300125051 + rotX: 359.920471 + rotY: 269.999939 + rotZ: 0.0148521829 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 5 Undimensioned and Unseen a82dde/Card Cold Spring Glen e58475.yaml b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 5 Undimensioned and Unseen a82dde/Card Cold Spring Glen e58475.yaml new file mode 100644 index 000000000..ea4d38b89 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 5 Undimensioned and Unseen a82dde/Card Cold Spring Glen e58475.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 233603 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2336': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296074747/742F5083E0E10E3DD22E671C78F35E6143C744FF/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296074238/FB73285A9ED0D784210E50C6EA17EBC25648D800/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Dunwich. +GMNotes: '' +GUID: e58475 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Cold Spring Glen +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -28.6583633 + posY: 1.83882678 + posZ: -0.0325733349 + rotX: 358.248871 + rotY: 270.002472 + rotZ: 0.0151640186 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 5 Undimensioned and Unseen a82dde/Card Devil's Hop Yard 7310f8.yaml b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 5 Undimensioned and Unseen a82dde/Card Devil's Hop Yard 7310f8.yaml new file mode 100644 index 000000000..082b99e9b --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 5 Undimensioned and Unseen a82dde/Card Devil's Hop Yard 7310f8.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 233612 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2336': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296074747/742F5083E0E10E3DD22E671C78F35E6143C744FF/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296074238/FB73285A9ED0D784210E50C6EA17EBC25648D800/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Dunwich. +GMNotes: '' +GUID: 7310f8 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Devil's Hop Yard +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -15.5907183 + posY: 1.82025874 + posZ: -7.71167469 + rotX: 357.1161 + rotY: 269.99646 + rotZ: 0.0159487315 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 5 Undimensioned and Unseen a82dde/Card Devil's Hop Yard f7dd31.yaml b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 5 Undimensioned and Unseen a82dde/Card Devil's Hop Yard f7dd31.yaml new file mode 100644 index 000000000..300330daf --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 5 Undimensioned and Unseen a82dde/Card Devil's Hop Yard f7dd31.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 233611 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2336': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296074747/742F5083E0E10E3DD22E671C78F35E6143C744FF/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296074238/FB73285A9ED0D784210E50C6EA17EBC25648D800/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Dunwich. +GMNotes: '' +GUID: f7dd31 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Devil's Hop Yard +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -17.1199 + posY: 1.67479873 + posZ: -7.700044 + rotX: 359.920258 + rotY: 269.999664 + rotZ: 0.0154139111 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 5 Undimensioned and Unseen a82dde/Card Dunwich Village ac4427.yaml b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 5 Undimensioned and Unseen a82dde/Card Dunwich Village ac4427.yaml new file mode 100644 index 000000000..c5415560d --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 5 Undimensioned and Unseen a82dde/Card Dunwich Village ac4427.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 233602 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2336': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296074747/742F5083E0E10E3DD22E671C78F35E6143C744FF/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296074238/FB73285A9ED0D784210E50C6EA17EBC25648D800/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Dunwich. +GMNotes: '' +GUID: ac4427 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Dunwich Village +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -23.67648 + posY: 1.68843973 + posZ: 7.56997728 + rotX: 359.920227 + rotY: 270.000153 + rotZ: 0.0156119512 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 5 Undimensioned and Unseen a82dde/Card Dunwich Village cf4a62.yaml b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 5 Undimensioned and Unseen a82dde/Card Dunwich Village cf4a62.yaml new file mode 100644 index 000000000..622edc6ae --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 5 Undimensioned and Unseen a82dde/Card Dunwich Village cf4a62.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 233601 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2336': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296074747/742F5083E0E10E3DD22E671C78F35E6143C744FF/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296074238/FB73285A9ED0D784210E50C6EA17EBC25648D800/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Dunwich. +GMNotes: '' +GUID: cf4a62 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Dunwich Village +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -22.1431866 + posY: 1.83417332 + posZ: 7.58343267 + rotX: 356.262146 + rotY: 270.000916 + rotZ: 0.0136708887 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 5 Undimensioned and Unseen a82dde/Card Scenario aa50e4.yaml b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 5 Undimensioned and Unseen a82dde/Card Scenario aa50e4.yaml new file mode 100644 index 000000000..3af62e7d2 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 5 Undimensioned and Unseen a82dde/Card Scenario aa50e4.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 233600 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2336': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296074747/742F5083E0E10E3DD22E671C78F35E6143C744FF/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296074238/FB73285A9ED0D784210E50C6EA17EBC25648D800/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Undimensioned and Unseen +GMNotes: '' +GUID: aa50e4 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Scenario +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.95578933 + posY: 1.655643 + posZ: -10.4409142 + rotX: 359.9198 + rotY: 270.003265 + rotZ: 0.0165114757 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 5 Undimensioned and Unseen a82dde/Card Setup 269f5a.yaml b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 5 Undimensioned and Unseen a82dde/Card Setup 269f5a.yaml new file mode 100644 index 000000000..94014934e --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 5 Undimensioned and Unseen a82dde/Card Setup 269f5a.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 233649 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2336': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296074747/742F5083E0E10E3DD22E671C78F35E6143C744FF/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296074238/FB73285A9ED0D784210E50C6EA17EBC25648D800/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Return to Undimensioned and Unseen +GMNotes: '' +GUID: 269f5a +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Setup +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -5.36752844 + posY: 1.70597482 + posZ: -10.4444857 + rotX: 359.920746 + rotY: 270.005768 + rotZ: 0.016321158 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 5 Undimensioned and Unseen a82dde/Card Ten-Acre Meadow 04861e.yaml b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 5 Undimensioned and Unseen a82dde/Card Ten-Acre Meadow 04861e.yaml new file mode 100644 index 000000000..525ed86da --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 5 Undimensioned and Unseen a82dde/Card Ten-Acre Meadow 04861e.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 233606 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2336': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296074747/742F5083E0E10E3DD22E671C78F35E6143C744FF/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296074238/FB73285A9ED0D784210E50C6EA17EBC25648D800/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Dunwich. +GMNotes: '' +GUID: 04861e +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Ten-Acre Meadow +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -23.6764641 + posY: 1.68620729 + posZ: -0.0300125759 + rotX: 359.920258 + rotY: 269.999939 + rotZ: 0.0159306414 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 5 Undimensioned and Unseen a82dde/Card Ten-Acre Meadow 05b0dd.yaml b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 5 Undimensioned and Unseen a82dde/Card Ten-Acre Meadow 05b0dd.yaml new file mode 100644 index 000000000..a39d35cf4 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 5 Undimensioned and Unseen a82dde/Card Ten-Acre Meadow 05b0dd.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 233605 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2336': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296074747/742F5083E0E10E3DD22E671C78F35E6143C744FF/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296074238/FB73285A9ED0D784210E50C6EA17EBC25648D800/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Dunwich. +GMNotes: '' +GUID: 05b0dd +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Ten-Acre Meadow +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -22.1434574 + posY: 1.8299911 + posZ: -0.0593545027 + rotX: 359.885864 + rotY: 269.997345 + rotZ: 0.01232228 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 5 Undimensioned and Unseen a82dde/Card Whateley Ruins 42e1b7.yaml b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 5 Undimensioned and Unseen a82dde/Card Whateley Ruins 42e1b7.yaml new file mode 100644 index 000000000..d78448119 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 5 Undimensioned and Unseen a82dde/Card Whateley Ruins 42e1b7.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 233609 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2336': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296074747/742F5083E0E10E3DD22E671C78F35E6143C744FF/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296074238/FB73285A9ED0D784210E50C6EA17EBC25648D800/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Dunwich. +GMNotes: '' +GUID: 42e1b7 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Whateley Ruins +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -22.1514816 + posY: 1.827777 + posZ: -7.665545 + rotX: 359.888031 + rotY: 270.012878 + rotZ: 0.0183665864 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 5 Undimensioned and Unseen a82dde/Card Whateley Ruins b1e332.yaml b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 5 Undimensioned and Unseen a82dde/Card Whateley Ruins b1e332.yaml new file mode 100644 index 000000000..981a33f2f --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 5 Undimensioned and Unseen a82dde/Card Whateley Ruins b1e332.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 233610 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2336': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296074747/742F5083E0E10E3DD22E671C78F35E6143C744FF/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296074238/FB73285A9ED0D784210E50C6EA17EBC25648D800/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Dunwich. +GMNotes: '' +GUID: b1e332 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Whateley Ruins +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -23.6764889 + posY: 1.68394971 + posZ: -7.700056 + rotX: 359.920258 + rotY: 269.9998 + rotZ: 0.01600569 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 5 Undimensioned and Unseen a82dde/Custom_Model_Bag Set-aside fb8d6d.yaml b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 5 Undimensioned and Unseen a82dde/Custom_Model_Bag Set-aside fb8d6d.yaml new file mode 100644 index 000000000..85f6be223 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 5 Undimensioned and Unseen a82dde/Custom_Model_Bag Set-aside fb8d6d.yaml @@ -0,0 +1,270 @@ +Autoraise: true +ColorDiffuse: + b: 0.02148666 + g: 0.00100758043 + r: 0.02148666 +ContainedObjects: +- Autoraise: true + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: + - Autoraise: true + CardID: 233900 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2339': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 66919a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Esoteric Formula + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -19.98892 + posY: 1.76822674 + posZ: 26.2549248 + rotX: -5.92305469e-06 + rotY: 270.0003 + rotZ: 181.019958 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' + - Autoraise: true + CardID: 233900 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2339': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: be5eb9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Esoteric Formula + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -19.9640522 + posY: 1.79586434 + posZ: 25.9157066 + rotX: 359.936157 + rotY: 270.0004 + rotZ: 182.022324 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' + - Autoraise: true + CardID: 233900 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2339': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 331c18 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Esoteric Formula + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -19.8718071 + posY: 1.77312744 + posZ: 25.7923889 + rotX: -9.178067e-06 + rotY: 270.0004 + rotZ: 181.574249 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' + - Autoraise: true + CardID: 233900 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2339': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 66919a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Esoteric Formula + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -20.4663315 + posY: 1.74163508 + posZ: 25.6329327 + rotX: 359.9201 + rotY: 269.999878 + rotZ: 0.0168590639 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' + CustomDeck: + '2339': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + DeckIDs: + - 233900 + - 233900 + - 233900 + - 233900 + Description: '' + GMNotes: '' + GUID: fc070b + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Deck + Nickname: Esoteric Formulas + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -11.6434965 + posY: 3.62999129 + posZ: 12.4862146 + rotX: 359.920044 + rotY: 270.0 + rotZ: 0.0168691687 + 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: Undimensioned and Unseen +GMNotes: '' +GUID: fb8d6d +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +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.69641972 + posY: 1.55831671 + posZ: 14.2787523 + rotX: 359.955139 + rotY: 224.997986 + rotZ: 0.06867601 + scaleX: 2.0 + scaleY: 2.0 + scaleZ: 2.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 5 Undimensioned and Unseen a82dde/Custom_Tile 18c876.yaml b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 5 Undimensioned and Unseen a82dde/Custom_Tile 18c876.yaml new file mode 100644 index 000000000..3f9921e34 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 5 Undimensioned and Unseen a82dde/Custom_Tile 18c876.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 18c876 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.5018 + posY: 1.61845028 + posZ: -4.7524004 + rotX: 0.06843113 + rotY: 135.000137 + rotZ: 0.0445619449 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 5 Undimensioned and Unseen a82dde/Custom_Tile 2a4634.yaml b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 5 Undimensioned and Unseen a82dde/Custom_Tile 2a4634.yaml new file mode 100644 index 000000000..d98219493 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 5 Undimensioned and Unseen a82dde/Custom_Tile 2a4634.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 2a4634 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.6765 + posY: 1.6133877 + posZ: -3.83000016 + rotX: 0.0168804768 + rotY: 179.99382 + rotZ: 0.0799382851 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 5 Undimensioned and Unseen a82dde/Custom_Tile 2de1a2.yaml b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 5 Undimensioned and Unseen a82dde/Custom_Tile 2de1a2.yaml new file mode 100644 index 000000000..d82a48bbb --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 5 Undimensioned and Unseen a82dde/Custom_Tile 2de1a2.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 2de1a2 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: -28.2805 + posY: 1.62206411 + posZ: 3.83230114 + rotX: 0.04456554 + rotY: 45.00006 + rotZ: 359.9316 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 5 Undimensioned and Unseen a82dde/Custom_Tile 2eb425.yaml b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 5 Undimensioned and Unseen a82dde/Custom_Tile 2eb425.yaml new file mode 100644 index 000000000..ac1a65bd9 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 5 Undimensioned and Unseen a82dde/Custom_Tile 2eb425.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 2eb425 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.4398 + posY: 1.607702 + posZ: -7.812003 + rotX: 0.07989479 + rotY: 90.00024 + rotZ: 359.9831 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 5 Undimensioned and Unseen a82dde/Custom_Tile 542581.yaml b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 5 Undimensioned and Unseen a82dde/Custom_Tile 542581.yaml new file mode 100644 index 000000000..1c4ab5da9 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 5 Undimensioned and Unseen a82dde/Custom_Tile 542581.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: '542581' +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.61565208 + posZ: 3.86 + rotX: 0.0168805551 + rotY: 179.9938 + rotZ: 0.0799451 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 5 Undimensioned and Unseen a82dde/Custom_Tile 7216fc.yaml b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 5 Undimensioned and Unseen a82dde/Custom_Tile 7216fc.yaml new file mode 100644 index 000000000..577e60a59 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 5 Undimensioned and Unseen a82dde/Custom_Tile 7216fc.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 7216fc +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: -19.8355 + posY: 1.61025608 + posZ: 3.72409964 + rotX: 0.06843248 + rotY: 135.000351 + rotZ: 0.04456426 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 5 Undimensioned and Unseen a82dde/Custom_Tile 7234af.yaml b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 5 Undimensioned and Unseen a82dde/Custom_Tile 7234af.yaml new file mode 100644 index 000000000..89ca6a68c --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 5 Undimensioned and Unseen a82dde/Custom_Tile 7234af.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 7234af +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.1199989 + posY: 1.60424507 + posZ: -3.8300004 + rotX: 0.01688054 + rotY: 179.993835 + rotZ: 0.07994401 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 5 Undimensioned and Unseen a82dde/Custom_Tile 82b2b8.yaml b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 5 Undimensioned and Unseen a82dde/Custom_Tile 82b2b8.yaml new file mode 100644 index 000000000..ba6ca3274 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 5 Undimensioned and Unseen a82dde/Custom_Tile 82b2b8.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 82b2b8 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.9436 + posY: 1.61902773 + posZ: -0.1945001 + rotX: 0.07967836 + rotY: 89.9999161 + rotZ: 359.986542 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 5 Undimensioned and Unseen a82dde/Custom_Tile Undimensioned and Unseen 393c71.ttslua b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 5 Undimensioned and Unseen a82dde/Custom_Tile Undimensioned and Unseen 393c71.ttslua new file mode 100644 index 000000000..796c0adfa --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 5 Undimensioned and Unseen a82dde/Custom_Tile Undimensioned and Unseen 393c71.ttslua @@ -0,0 +1,25 @@ +name = 'Undimensioned and Unseen' + +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 + +function standaloneClick() + Global.call('fillContainer', {object=self, key=name, mode='standalone'}) +end diff --git a/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 5 Undimensioned and Unseen a82dde/Custom_Tile Undimensioned and Unseen 393c71.yaml b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 5 Undimensioned and Unseen a82dde/Custom_Tile Undimensioned and Unseen 393c71.yaml new file mode 100644 index 000000000..aefd4b322 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 5 Undimensioned and Unseen a82dde/Custom_Tile Undimensioned and Unseen 393c71.yaml @@ -0,0 +1,42 @@ +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 +GMNotes: '' +GUID: 393c71 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Tile Undimensioned and Unseen 393c71.ttslua' +LuaScriptState: '' +Name: Custom_Tile +Nickname: Undimensioned and Unseen +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.78960085 + posY: 1.58243144 + posZ: -14.7634058 + rotX: 359.919739 + rotY: 270.0057 + rotZ: 0.0168298278 + scaleX: 2.2 + scaleY: 1.0 + scaleZ: 2.2 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 5 Undimensioned and Unseen a82dde/Deck Act Deck 2ee4bd.yaml b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 5 Undimensioned and Unseen a82dde/Deck Act Deck 2ee4bd.yaml new file mode 100644 index 000000000..1fabfbc27 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 5 Undimensioned and Unseen a82dde/Deck Act Deck 2ee4bd.yaml @@ -0,0 +1,129 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 233336 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2333': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296027643/326876D4B46DF777AA1293989DEEE6A810ED027B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999385819527677/3AD8DFFFBFF54DB098AD3E00BB7E75DA0590FE8B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 2 + GMNotes: '' + GUID: ccc8ee + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: They Must Be Destroyed! + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -17.8684769 + posY: 1.58474779 + posZ: 22.4623928 + rotX: 0.0168692376 + rotY: 180.0 + rotZ: 0.07987881 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233335 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2333': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296027643/326876D4B46DF777AA1293989DEEE6A810ED027B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999385819527677/3AD8DFFFBFF54DB098AD3E00BB7E75DA0590FE8B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 1 + GMNotes: '' + GUID: 1b5f59 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Saracenic Script + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -17.9583073 + posY: 1.73354256 + posZ: 22.60505 + rotX: 0.0168751068 + rotY: 180.000046 + rotZ: 0.0798814744 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2333': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296027643/326876D4B46DF777AA1293989DEEE6A810ED027B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999385819527677/3AD8DFFFBFF54DB098AD3E00BB7E75DA0590FE8B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 233336 +- 233335 +Description: '' +GMNotes: '' +GUID: 2ee4bd +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Act Deck +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.68857121 + posY: 1.66233361 + posZ: -5.04852438 + rotX: 0.0168345682 + rotY: 180.000092 + rotZ: 0.08025884 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 5 Undimensioned and Unseen a82dde/Deck Agenda Deck 584b1a.yaml b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 5 Undimensioned and Unseen a82dde/Deck Agenda Deck 584b1a.yaml new file mode 100644 index 000000000..5fe7a6058 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 5 Undimensioned and Unseen a82dde/Deck Agenda Deck 584b1a.yaml @@ -0,0 +1,172 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 233334 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2333': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296027643/326876D4B46DF777AA1293989DEEE6A810ED027B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999385819527677/3AD8DFFFBFF54DB098AD3E00BB7E75DA0590FE8B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 3 + GMNotes: '' + GUID: e27853 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Horrors Unleashed + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -18.13127 + posY: 1.5848223 + posZ: 21.4708862 + rotX: 0.0168713517 + rotY: 180.0 + rotZ: 0.07987988 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233333 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2333': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296027643/326876D4B46DF777AA1293989DEEE6A810ED027B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999385819527677/3AD8DFFFBFF54DB098AD3E00BB7E75DA0590FE8B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 2 + GMNotes: '' + GUID: 9fed4b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Biding Its Time + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -18.1365929 + posY: 1.8037976 + posZ: 21.7945652 + rotX: 0.0172547922 + rotY: 179.977066 + rotZ: 3.7901485 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233332 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2333': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296027643/326876D4B46DF777AA1293989DEEE6A810ED027B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999385819527677/3AD8DFFFBFF54DB098AD3E00BB7E75DA0590FE8B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 1 + GMNotes: '' + GUID: 1b5f59 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Rampaging Creatures + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -18.3836536 + posY: 1.75106955 + posZ: 21.5196075 + rotX: 0.0168791767 + rotY: 180.000046 + rotZ: 0.0799039751 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2333': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296027643/326876D4B46DF777AA1293989DEEE6A810ED027B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999385819527677/3AD8DFFFBFF54DB098AD3E00BB7E75DA0590FE8B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 233334 +- 233333 +- 233332 +Description: '' +GMNotes: '' +GUID: 584b1a +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Agenda Deck +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.724753 + posY: 1.65664124 + posZ: 0.373330683 + rotX: 0.01683469 + rotY: 180.0001 + rotZ: 0.08025869 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 5 Undimensioned and Unseen a82dde/Deck Broods of Yog-Sothoth f22251.yaml b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 5 Undimensioned and Unseen a82dde/Deck Broods of Yog-Sothoth f22251.yaml new file mode 100644 index 000000000..630a39fc2 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 5 Undimensioned and Unseen a82dde/Deck Broods of Yog-Sothoth f22251.yaml @@ -0,0 +1,258 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 233030 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Charging Beast + GMNotes: '' + GUID: b8825e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Brood of Yog-Sothoth + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.15231657 + posY: 1.70291877 + posZ: 3.78806329 + rotX: 359.920135 + rotY: 269.999939 + rotZ: 180.016861 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233001 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Abomination. + GMNotes: '' + GUID: 092c6d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Brood of Yog-Sothoth + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -17.18975 + posY: 1.7300216 + posZ: 8.191382 + rotX: 359.920135 + rotY: 269.999664 + rotZ: 0.0168645028 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233032 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Thrashing Spawn + GMNotes: '' + GUID: 6c2292 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Brood of Yog-Sothoth + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.32616 + posY: 1.70636189 + posZ: 4.09144258 + rotX: 359.9361 + rotY: 269.999878 + rotZ: 180.013519 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233031 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Swelling Devourer + GMNotes: '' + GUID: fab08a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Brood of Yog-Sothoth + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 1.97498167 + posY: 1.72043252 + posZ: 3.99961615 + rotX: 359.936066 + rotY: 270.0 + rotZ: 180.013428 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233033 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Amorphous Terror + GMNotes: '' + GUID: 5a8dac + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Brood of Yog-Sothoth + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -17.33131 + posY: 1.75939691 + posZ: 8.345945 + rotX: 359.936279 + rotY: 270.002838 + rotZ: 178.243713 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 233030 +- 233001 +- 233032 +- 233031 +- 233033 +Description: '' +GMNotes: '' +GUID: f22251 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Broods of Yog-Sothoth +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -4.071031 + posY: 1.67150033 + posZ: 15.0339823 + rotX: 359.919739 + rotY: 269.999359 + rotZ: 180.01683 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 5 Undimensioned and Unseen a82dde/Deck Encounter Deck 2ee2b1.yaml b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 5 Undimensioned and Unseen a82dde/Deck Encounter Deck 2ee2b1.yaml new file mode 100644 index 000000000..a4ead5156 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 5 Undimensioned and Unseen a82dde/Deck Encounter Deck 2ee2b1.yaml @@ -0,0 +1,1555 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 233034 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Power. + GMNotes: '' + GUID: 0fd2b9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Imperceptible Creature + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -17.70309 + posY: 1.58160639 + posZ: 12.5769167 + rotX: 359.920135 + rotY: 270.001556 + rotZ: 0.01687425 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233034 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Power. + GMNotes: '' + GUID: 6a1f34 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Imperceptible Creature + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -17.5270176 + posY: 1.73613548 + posZ: 12.5041418 + rotX: 359.9707 + rotY: 269.9997 + rotZ: 0.244840279 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233050 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: 7dd094 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Need for Knowledge + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 9.214496 + posY: 1.54113626 + posZ: 2.57877874 + rotX: 359.920135 + rotY: 269.999664 + rotZ: 0.0168800149 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233050 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: 9f855c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Need for Knowledge + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 9.015348 + posY: 1.695799 + posZ: 2.69127941 + rotX: 359.920135 + rotY: 269.999664 + rotZ: 0.0168801211 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233050 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: 7dd094 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Need for Knowledge + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 9.04972649 + posY: 1.71299982 + posZ: 2.68801451 + rotX: 359.919678 + rotY: 269.999664 + rotZ: 0.016476877 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233049 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: e3fba9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Idle Hands + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 9.170475 + posY: 1.54203224 + posZ: 5.413058 + rotX: 359.920135 + rotY: 269.999573 + rotZ: 0.01687807 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233049 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: ac1417 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Idle Hands + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 9.196331 + posY: 1.69662583 + posZ: 5.74743938 + rotX: 359.920135 + rotY: 269.999573 + rotZ: 0.0168674812 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233048 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: d8596b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Violent Commands + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 9.157638 + posY: 1.54277384 + posZ: 7.870572 + rotX: 359.920135 + rotY: 269.999573 + rotZ: 0.0168761183 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233048 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: 27658e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Violent Commands + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 9.356761 + posY: 1.69708729 + posZ: 7.57023 + rotX: 359.920135 + rotY: 269.999573 + rotZ: 0.0168761387 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233005 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: "\tTerror." + GMNotes: '' + GUID: e3fba9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Creatures' Tracks + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.88808823 + posY: 1.55125427 + posZ: 11.7224455 + rotX: 359.920135 + rotY: 269.999878 + rotZ: 0.0168773085 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233005 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: "\tTerror." + GMNotes: '' + GUID: 653ad0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Creatures' Tracks + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.741823 + posY: 1.70781016 + posZ: 11.6423111 + rotX: 359.920135 + rotY: 269.999878 + rotZ: 0.0168773327 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233004 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: e3fba9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Attracting Attention + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.327984 + posY: 1.55243385 + posZ: 13.0768051 + rotX: 359.920135 + rotY: 269.999847 + rotZ: 0.0168775655 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233004 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 174be7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Attracting Attention + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.48922515 + posY: 1.70885026 + posZ: 13.17753 + rotX: 359.920135 + rotY: 269.999817 + rotZ: 0.0168775711 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233003 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: e3fba9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ruin and Destruction + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.362863 + posY: 1.55207872 + posZ: 12.0355148 + rotX: 359.920135 + rotY: 269.999878 + rotZ: 0.016877003 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233003 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: 36006f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ruin and Destruction + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.64314628 + posY: 1.708238 + posZ: 12.0681181 + rotX: 359.920135 + rotY: 269.999878 + rotZ: 0.0168769155 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233003 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: e3fba9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ruin and Destruction + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.64314628 + posY: 1.72549736 + posZ: 12.0681181 + rotX: 359.91983 + rotY: 269.999878 + rotZ: 0.016224321 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233002 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: e3fba9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Towering Beasts + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.09761453 + posY: 1.55223215 + posZ: 11.3007021 + rotX: 359.920135 + rotY: 269.999847 + rotZ: 0.01687738 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233002 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 97a21e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Towering Beasts + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.1789422 + posY: 1.70879066 + posZ: 11.6423969 + rotX: 359.920135 + rotY: 269.999817 + rotZ: 0.01687739 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233002 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: e3fba9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Towering Beasts + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.1789422 + posY: 1.72606051 + posZ: 11.6423969 + rotX: 359.920135 + rotY: 269.999817 + rotZ: 0.0168777984 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233002 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: e3fba9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Towering Beasts + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.1789422 + posY: 1.71238315 + posZ: 11.6423969 + rotX: 359.919922 + rotY: 269.999817 + rotZ: 0.0164486859 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232823 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: "\tPower." + GMNotes: '' + GUID: ef7cab + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Altered Beast + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.55222464 + posY: 1.5502063 + posZ: 6.573337 + rotX: 359.920135 + rotY: 269.999939 + rotZ: 0.0168764647 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232823 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: "\tPower." + GMNotes: '' + GUID: 651a9e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Altered Beast + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.6760025 + posY: 1.70618832 + posZ: 6.53470135 + rotX: 359.920135 + rotY: 269.999939 + rotZ: 0.0168764852 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232822 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Creature. Monster. Abomination. + GMNotes: '' + GUID: c53c4a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Lupine Thrall + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.29770446 + posY: 1.55148566 + posZ: 9.71324348 + rotX: 359.920135 + rotY: 269.999939 + rotZ: 0.0168772563 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232822 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Creature. Monster. Abomination. + GMNotes: '' + GUID: 077019 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Lupine Thrall + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.20197439 + posY: 1.70810318 + posZ: 9.924229 + rotX: 359.920135 + rotY: 269.999939 + rotZ: 0.0168772489 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232821 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Creature. Monster. Abomination. + GMNotes: '' + GUID: de3bd5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Avian Thrall + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.17520547 + posY: 1.55259466 + posZ: 12.8993664 + rotX: 359.920135 + rotY: 269.999939 + rotZ: 0.0168785825 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232821 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Creature. Monster. Abomination. + GMNotes: '' + GUID: 0e80a5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Avian Thrall + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.29272318 + posY: 1.70912266 + posZ: 13.0629282 + rotX: 359.920135 + rotY: 269.999939 + rotZ: 0.0168786459 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232818 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: 60ef9e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Eager for Death + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.646352 + posY: 1.548182 + posZ: 0.144670352 + rotX: 359.920135 + rotY: 269.999939 + rotZ: 0.0168772917 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232818 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: 40e9d0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Eager for Death + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.37573743 + posY: 1.7043395 + posZ: 0.209344044 + rotX: 359.920135 + rotY: 269.999939 + rotZ: 0.0168772619 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232817 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: "\tCreature." + GMNotes: '' + GUID: de3bd5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Whippoorwill + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.19784832 + posY: 1.54999852 + posZ: 4.190304 + rotX: 359.920135 + rotY: 269.9999 + rotZ: 0.0168776866 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232817 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: "\tCreature." + GMNotes: '' + GUID: 61c583 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Whippoorwill + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.24814034 + posY: 1.70613587 + posZ: 4.471411 + rotX: 359.920135 + rotY: 269.9999 + rotZ: 0.0168776922 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232817 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: "\tCreature." + GMNotes: '' + GUID: de3bd5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Whippoorwill + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.24814034 + posY: 1.72339261 + posZ: 4.471411 + rotX: 359.920441 + rotY: 269.9999 + rotZ: 0.0163779482 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232816 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: 36342a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Sordid and Silent + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 4.15036964 + posY: 1.54897928 + posZ: 5.238284 + rotX: 359.920135 + rotY: 269.999878 + rotZ: 0.016877193 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232816 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: ebb8db + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Sordid and Silent + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.98407245 + posY: 1.705162 + posZ: 5.341168 + rotX: 359.920135 + rotY: 269.999878 + rotZ: 0.0168772284 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232815 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: de3bd5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Unhallowed Country + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 4.32745171 + posY: 1.71471429 + posZ: 5.03506565 + rotX: 359.919861 + rotY: 269.999969 + rotZ: 0.0168688018 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232815 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: de3bd5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Unhallowed Country + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 4.00495052 + posY: 1.70878184 + posZ: 5.306538 + rotX: 359.920135 + rotY: 269.999969 + rotZ: 0.01687902 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 233034 +- 233034 +- 233050 +- 233050 +- 233050 +- 233049 +- 233049 +- 233048 +- 233048 +- 233005 +- 233005 +- 233004 +- 233004 +- 233003 +- 233003 +- 233003 +- 233002 +- 233002 +- 233002 +- 233002 +- 232823 +- 232823 +- 232822 +- 232822 +- 232821 +- 232821 +- 232818 +- 232818 +- 232817 +- 232817 +- 232817 +- 232816 +- 232816 +- 232815 +- 232815 +Description: '' +GMNotes: '' +GUID: 2ee2b1 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Encounter Deck +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.92773366 + posY: 1.79835713 + posZ: 5.757153 + rotX: 359.919739 + rotY: 270.000061 + rotZ: 180.016815 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 6 Where Doom Awaits 175a29.ttslua b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 6 Where Doom Awaits 175a29.ttslua new file mode 100644 index 000000000..54d591927 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 6 Where Doom Awaits 175a29.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.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 Return to The Dunwich Legacy ce9130/Custom_Model_Bag 6 Where Doom Awaits 175a29.yaml b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 6 Where Doom Awaits 175a29.yaml new file mode 100644 index 000000000..45c880534 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 6 Where Doom Awaits 175a29.yaml @@ -0,0 +1,86 @@ +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 6 Where Doom Awaits 175a29/Custom_Model_Bag Set-aside + 9c4595.yaml' +- !include 'Custom_Model_Bag 6 Where Doom Awaits 175a29/Deck Encounter Deck 1d3069.yaml' +- !include 'Custom_Model_Bag 6 Where Doom Awaits 175a29/Deck Hideous Abominations + b858d0.yaml' +- !include 'Custom_Model_Bag 6 Where Doom Awaits 175a29/Deck Agenda Deck 27d0df.yaml' +- !include 'Custom_Model_Bag 6 Where Doom Awaits 175a29/Deck Act Deck b47b11.yaml' +- !include 'Custom_Model_Bag 6 Where Doom Awaits 175a29/Card Scenario aa50e4.yaml' +- !include 'Custom_Model_Bag 6 Where Doom Awaits 175a29/Card Setup 64e623.yaml' +- !include 'Custom_Model_Bag 6 Where Doom Awaits 175a29/Custom_Tile Where Doom Awaits + a621ae.yaml' +- !include 'Custom_Model_Bag 6 Where Doom Awaits 175a29/Bag New Chaos Token 1be9d7.yaml' +- !include 'Custom_Model_Bag 6 Where Doom Awaits 175a29/Card Sentinel Peak d5b919.yaml' +- !include 'Custom_Model_Bag 6 Where Doom Awaits 175a29/Custom_Tile f2a05a.yaml' +- !include 'Custom_Model_Bag 6 Where Doom Awaits 175a29/Card Ascending Path b1bd40.yaml' +- !include 'Custom_Model_Bag 6 Where Doom Awaits 175a29/Deck Altered Paths 0f29d2.yaml' +- !include 'Custom_Model_Bag 6 Where Doom Awaits 175a29/Custom_Tile 7234af.yaml' +- !include 'Custom_Model_Bag 6 Where Doom Awaits 175a29/Card Base of the Hill caeb2f.yaml' +- !include 'Custom_Model_Bag 6 Where Doom Awaits 175a29/Deck Diverging Paths 768494.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/829135118403757711/409D144AFA76534B28160AECCE67B4AC7F519469/ + MaterialIndex: 3 + MeshURL: https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj + NormalURL: '' + TypeIndex: 6 +Description: Return to the Dunwich Legacy +GMNotes: '' +GUID: 175a29 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Model_Bag 6 Where Doom Awaits 175a29.ttslua' +LuaScriptState: '{"ml":{"0f29d2":{"lock":false,"pos":{"x":-23.6766,"y":1.6873,"z":7.57},"rot":{"x":359.9201,"y":269.9998,"z":0.0169}},"1be9d7":{"lock":false,"pos":{"x":-5.7503,"y":1.4997,"z":-14.6691},"rot":{"x":359.9689,"y":0.0049,"z":359.9749}},"1d3069":{"lock":false,"pos":{"x":-3.9277,"y":1.8463,"z":5.7572},"rot":{"x":359.9197,"y":270,"z":180.0168}},"27d0df":{"lock":false,"pos":{"x":-2.7248,"y":1.664,"z":0.3732},"rot":{"x":0.0168,"y":179.9991,"z":0.0803}},"64e623":{"lock":false,"pos":{"x":-5.6754,"y":1.7906,"z":-10.4487},"rot":{"x":4.7978,"y":269.9975,"z":0.0126}},"7234af":{"lock":false,"pos":{"x":-27.505,"y":1.6199,"z":-0.0138},"rot":{"x":359.9201,"y":269.9939,"z":0.0169}},"768494":{"lock":false,"pos":{"x":-30.2243,"y":1.6965,"z":7.57},"rot":{"x":359.9201,"y":269.9999,"z":0.0169}},"9c4595":{"lock":false,"pos":{"x":1.6965,"y":1.5583,"z":14.2787},"rot":{"x":359.9551,"y":224.9981,"z":0.0687}},"a621ae":{"lock":false,"pos":{"x":-3.7028,"y":1.5825,"z":-14.5775},"rot":{"x":359.9212,"y":270.0076,"z":0.0204}},"aa50e4":{"lock":false,"pos":{"x":-3.956,"y":1.6557,"z":-10.4402},"rot":{"x":359.9203,"y":269.9988,"z":0.0179}},"b1bd40":{"lock":false,"pos":{"x":-23.6764,"y":1.6862,"z":-0.03},"rot":{"x":359.9201,"y":269.9998,"z":0.0169}},"b47b11":{"lock":false,"pos":{"x":-2.6886,"y":1.6543,"z":-5.0485},"rot":{"x":0.0168,"y":180.0001,"z":0.0803}},"b858d0":{"lock":false,"pos":{"x":-3.7559,"y":1.6624,"z":15.0672},"rot":{"x":359.9197,"y":269.9999,"z":0.0168}},"caeb2f":{"lock":false,"pos":{"x":-30.2243,"y":1.6954,"z":-0.03},"rot":{"x":359.9201,"y":269.9999,"z":0.0169}},"d5b919":{"lock":false,"pos":{"x":-17.1199,"y":1.6771,"z":-0.03},"rot":{"x":359.9201,"y":269.9998,"z":0.0169}},"f2a05a":{"lock":false,"pos":{"x":-20.1527,"y":1.6096,"z":-0.1231},"rot":{"x":359.9201,"y":269.9825,"z":0.0169}}}}' +MaterialIndex: -1 +MeshIndex: -1 +Name: Custom_Model_Bag +Nickname: '6: Where Doom Awaits' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 12.2504015 + posY: 1.45815718 + posZ: -21.3053017 + rotX: 359.9201 + rotY: 270.016876 + rotZ: 0.016850505 + scaleX: 2.21 + scaleY: 0.46 + scaleZ: 2.42 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 6 Where Doom Awaits 175a29/Bag New Chaos Token 1be9d7.yaml b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 6 Where Doom Awaits 175a29/Bag New Chaos Token 1be9d7.yaml new file mode 100644 index 000000000..236339fbe --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 6 Where Doom Awaits 175a29/Bag New Chaos Token 1be9d7.yaml @@ -0,0 +1,39 @@ +Autoraise: true +ColorDiffuse: + b: 0.07843702 + g: 0.07843702 + r: 0.3021677 +ContainedObjects: +- !include 'Bag New Chaos Token 1be9d7/Custom_Tile dedbb0.yaml' +- !include 'Bag New Chaos Token 1be9d7/Custom_Tile 53c7c5.yaml' +- !include 'Bag New Chaos Token 1be9d7/Custom_Tile e5100b.yaml' +- !include 'Bag New Chaos Token 1be9d7/Custom_Tile 4ce53d.yaml' +Description: Where Doom Awaits +GMNotes: '' +GUID: 1be9d7 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +MeshIndex: -1 +Name: Bag +Nickname: New Chaos Token +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -5.750319 + posY: 1.49974346 + posZ: -14.6690865 + rotX: 359.968933 + rotY: 0.004900234 + rotZ: 359.9749 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 6 Where Doom Awaits 175a29/Bag New Chaos Token 1be9d7/Custom_Tile 4ce53d.yaml b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 6 Where Doom Awaits 175a29/Bag New Chaos Token 1be9d7/Custom_Tile 4ce53d.yaml new file mode 100644 index 000000000..b0a464704 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 6 Where Doom Awaits 175a29/Bag New Chaos Token 1be9d7/Custom_Tile 4ce53d.yaml @@ -0,0 +1,42 @@ +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: '' +GMNotes: '' +GUID: 4ce53d +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Tile +Nickname: '' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 46.8308945 + posY: 3.261239 + posZ: 82.6912155 + rotX: 0.020803038 + rotY: 270.013245 + rotZ: 0.0167862736 + scaleX: 0.81 + scaleY: 1.0 + scaleZ: 0.81 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 6 Where Doom Awaits 175a29/Bag New Chaos Token 1be9d7/Custom_Tile 53c7c5.yaml b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 6 Where Doom Awaits 175a29/Bag New Chaos Token 1be9d7/Custom_Tile 53c7c5.yaml new file mode 100644 index 000000000..822c09998 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 6 Where Doom Awaits 175a29/Bag New Chaos Token 1be9d7/Custom_Tile 53c7c5.yaml @@ -0,0 +1,42 @@ +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: '' +GMNotes: '' +GUID: 53c7c5 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Tile +Nickname: '' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 50.3722649 + posY: 3.26283813 + posZ: 83.7616959 + rotX: 0.0208138321 + rotY: 269.982941 + rotZ: 0.0167736672 + scaleX: 0.81 + scaleY: 1.0 + scaleZ: 0.81 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 6 Where Doom Awaits 175a29/Bag New Chaos Token 1be9d7/Custom_Tile dedbb0.yaml b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 6 Where Doom Awaits 175a29/Bag New Chaos Token 1be9d7/Custom_Tile dedbb0.yaml new file mode 100644 index 000000000..651cc0e0e --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 6 Where Doom Awaits 175a29/Bag New Chaos Token 1be9d7/Custom_Tile dedbb0.yaml @@ -0,0 +1,42 @@ +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: '' +GMNotes: '' +GUID: dedbb0 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Tile +Nickname: '' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 49.17601 + posY: 3.31929779 + posZ: 80.14772 + rotX: 5.31856346 + rotY: 270.201874 + rotZ: 4.04114676 + scaleX: 0.81 + scaleY: 1.0 + scaleZ: 0.81 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 6 Where Doom Awaits 175a29/Bag New Chaos Token 1be9d7/Custom_Tile e5100b.yaml b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 6 Where Doom Awaits 175a29/Bag New Chaos Token 1be9d7/Custom_Tile e5100b.yaml new file mode 100644 index 000000000..82f42e2c2 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 6 Where Doom Awaits 175a29/Bag New Chaos Token 1be9d7/Custom_Tile e5100b.yaml @@ -0,0 +1,42 @@ +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/4WRD42n.png + WidthScale: 0.0 +Description: '' +GMNotes: '' +GUID: e5100b +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Tile +Nickname: '' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.83168 + posY: 3.25946546 + posZ: 79.11306 + rotX: 0.0207804646 + rotY: 270.0264 + rotZ: 0.016819315 + scaleX: 0.81 + scaleY: 1.0 + scaleZ: 0.81 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 6 Where Doom Awaits 175a29/Card Ascending Path b1bd40.yaml b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 6 Where Doom Awaits 175a29/Card Ascending Path b1bd40.yaml new file mode 100644 index 000000000..d481ef9ec --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 6 Where Doom Awaits 175a29/Card Ascending Path b1bd40.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 233652 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2336': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296074747/742F5083E0E10E3DD22E671C78F35E6143C744FF/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296074238/FB73285A9ED0D784210E50C6EA17EBC25648D800/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Warped and Twisted +GMNotes: '' +GUID: b1bd40 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Ascending Path +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -23.6764412 + posY: 1.68622029 + posZ: -0.030026108 + rotX: 359.9201 + rotY: 269.9998 + rotZ: 0.0168762319 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 6 Where Doom Awaits 175a29/Card Base of the Hill caeb2f.yaml b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 6 Where Doom Awaits 175a29/Card Base of the Hill caeb2f.yaml new file mode 100644 index 000000000..a40e399da --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 6 Where Doom Awaits 175a29/Card Base of the Hill caeb2f.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 233651 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2336': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296074747/742F5083E0E10E3DD22E671C78F35E6143C744FF/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296074238/FB73285A9ED0D784210E50C6EA17EBC25648D800/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Warped and Twisted +GMNotes: '' +GUID: caeb2f +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Base of the Hill +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -30.2242641 + posY: 1.69535077 + posZ: -0.02999423 + rotX: 359.9201 + rotY: 269.999939 + rotZ: 0.0168764349 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 6 Where Doom Awaits 175a29/Card Scenario aa50e4.yaml b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 6 Where Doom Awaits 175a29/Card Scenario aa50e4.yaml new file mode 100644 index 000000000..bf577c85a --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 6 Where Doom Awaits 175a29/Card Scenario aa50e4.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 233613 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2336': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296074747/742F5083E0E10E3DD22E671C78F35E6143C744FF/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296074238/FB73285A9ED0D784210E50C6EA17EBC25648D800/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Where Doom Awaits +GMNotes: '' +GUID: aa50e4 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Scenario +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.95598555 + posY: 1.65568745 + posZ: -10.440217 + rotX: 359.920258 + rotY: 269.998779 + rotZ: 0.0178781841 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 6 Where Doom Awaits 175a29/Card Sentinel Peak d5b919.yaml b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 6 Where Doom Awaits 175a29/Card Sentinel Peak d5b919.yaml new file mode 100644 index 000000000..67b3ef949 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 6 Where Doom Awaits 175a29/Card Sentinel Peak d5b919.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 233616 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2336': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296074747/742F5083E0E10E3DD22E671C78F35E6143C744FF/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296074238/FB73285A9ED0D784210E50C6EA17EBC25648D800/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: "\tDunwich. Sentinel Hill." +GMNotes: '' +GUID: d5b919 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Sentinel Peak +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -17.11995 + posY: 1.67707765 + posZ: -0.03001154 + rotX: 359.9201 + rotY: 269.999847 + rotZ: 0.0168782957 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 6 Where Doom Awaits 175a29/Card Setup 64e623.yaml b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 6 Where Doom Awaits 175a29/Card Setup 64e623.yaml new file mode 100644 index 000000000..5977136d9 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 6 Where Doom Awaits 175a29/Card Setup 64e623.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 233650 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2336': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296074747/742F5083E0E10E3DD22E671C78F35E6143C744FF/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296074238/FB73285A9ED0D784210E50C6EA17EBC25648D800/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Return to Where Doom Awaits +GMNotes: '' +GUID: 64e623 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Setup +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -5.6754384 + posY: 1.79059088 + posZ: -10.4486713 + rotX: 4.79781246 + rotY: 269.9975 + rotZ: 0.012625875 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 6 Where Doom Awaits 175a29/Custom_Model_Bag Set-aside 9c4595.yaml b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 6 Where Doom Awaits 175a29/Custom_Model_Bag Set-aside 9c4595.yaml new file mode 100644 index 000000000..f27431eff --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 6 Where Doom Awaits 175a29/Custom_Model_Bag Set-aside 9c4595.yaml @@ -0,0 +1,57 @@ +Autoraise: true +ColorDiffuse: + b: 0.02148666 + g: 0.00100758043 + r: 0.02148666 +ContainedObjects: +- !include 'Custom_Model_Bag Set-aside 9c4595/Card Seth Bishop e3fba9.yaml' +- !include 'Custom_Model_Bag Set-aside 9c4595/Card Naomi O''Bannion 7f7ecc.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: Where Doom Awaits +GMNotes: '' +GUID: 9c4595 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +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.69650459 + posY: 1.55831623 + posZ: 14.2787189 + rotX: 359.955139 + rotY: 224.9981 + rotZ: 0.06867802 + scaleX: 2.0 + scaleY: 2.0 + scaleZ: 2.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 6 Where Doom Awaits 175a29/Custom_Model_Bag Set-aside 9c4595/Card Naomi O'Bannion 7f7ecc.yaml b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 6 Where Doom Awaits 175a29/Custom_Model_Bag Set-aside 9c4595/Card Naomi O'Bannion 7f7ecc.yaml new file mode 100644 index 000000000..9055443cd --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 6 Where Doom Awaits 175a29/Custom_Model_Bag Set-aside 9c4595/Card Naomi O'Bannion 7f7ecc.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Ruthless Tactician +GMNotes: '' +GUID: 7f7ecc +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Naomi O'Bannion +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -13.4817677 + posY: 3.631381 + posZ: -1.27883935 + rotX: 359.920135 + rotY: 269.999969 + rotZ: 0.0168771017 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 6 Where Doom Awaits 175a29/Custom_Model_Bag Set-aside 9c4595/Card Seth Bishop e3fba9.yaml b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 6 Where Doom Awaits 175a29/Custom_Model_Bag Set-aside 9c4595/Card Seth Bishop e3fba9.yaml new file mode 100644 index 000000000..c94c6d0d3 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 6 Where Doom Awaits 175a29/Custom_Model_Bag Set-aside 9c4595/Card Seth Bishop e3fba9.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 233006 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: Sorcerer of Dunwich +GMNotes: '' +GUID: e3fba9 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Seth Bishop +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -13.1000538 + posY: 3.62923765 + posZ: -1.61541319 + rotX: 359.9327 + rotY: 269.999939 + rotZ: 0.0141488118 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 6 Where Doom Awaits 175a29/Custom_Tile 7234af.yaml b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 6 Where Doom Awaits 175a29/Custom_Tile 7234af.yaml new file mode 100644 index 000000000..83c4e5d3b --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 6 Where Doom Awaits 175a29/Custom_Tile 7234af.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 7234af +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.505 + posY: 1.61985 + posZ: -0.0138001805 + rotX: 359.9201 + rotY: 269.993927 + rotZ: 0.0169088989 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 6 Where Doom Awaits 175a29/Custom_Tile f2a05a.yaml b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 6 Where Doom Awaits 175a29/Custom_Tile f2a05a.yaml new file mode 100644 index 000000000..551b984f2 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 6 Where Doom Awaits 175a29/Custom_Tile f2a05a.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: f2a05a +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.1527 + posY: 1.60956562 + posZ: -0.1231003 + rotX: 359.9201 + rotY: 269.982452 + rotZ: 0.0169246439 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 6 Where Doom Awaits 175a29/Custom_Tile Where Doom Awaits a621ae.ttslua b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 6 Where Doom Awaits 175a29/Custom_Tile Where Doom Awaits a621ae.ttslua new file mode 100644 index 000000000..c8658d789 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 6 Where Doom Awaits 175a29/Custom_Tile Where Doom Awaits a621ae.ttslua @@ -0,0 +1,25 @@ +name = 'Where Doom Awaits' + +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 + +function standaloneClick() + Global.call('fillContainer', {object=self, key=name, mode='standalone'}) +end diff --git a/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 6 Where Doom Awaits 175a29/Custom_Tile Where Doom Awaits a621ae.yaml b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 6 Where Doom Awaits 175a29/Custom_Tile Where Doom Awaits a621ae.yaml new file mode 100644 index 000000000..6872554f7 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 6 Where Doom Awaits 175a29/Custom_Tile Where Doom Awaits a621ae.yaml @@ -0,0 +1,42 @@ +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 +GMNotes: '' +GUID: a621ae +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Tile Where Doom Awaits a621ae.ttslua' +LuaScriptState: '' +Name: Custom_Tile +Nickname: Where Doom Awaits +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.70281053 + posY: 1.58251989 + posZ: -14.5775127 + rotX: 359.921234 + rotY: 270.007629 + rotZ: 0.0204495154 + scaleX: 2.2 + scaleY: 1.0 + scaleZ: 2.2 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 6 Where Doom Awaits 175a29/Deck Act Deck b47b11.yaml b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 6 Where Doom Awaits 175a29/Deck Act Deck b47b11.yaml new file mode 100644 index 000000000..d250ed611 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 6 Where Doom Awaits 175a29/Deck Act Deck b47b11.yaml @@ -0,0 +1,258 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 233343 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2333': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296027643/326876D4B46DF777AA1293989DEEE6A810ED027B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999385819527677/3AD8DFFFBFF54DB098AD3E00BB7E75DA0590FE8B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 3 + GMNotes: '' + GUID: 881e29 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Gate Opens + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -27.3774738 + posY: 1.78854251 + posZ: 43.1239624 + rotX: 0.0135873752 + rotY: 180.000488 + rotZ: 181.692474 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233342 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2333': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296027643/326876D4B46DF777AA1293989DEEE6A810ED027B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999385819527677/3AD8DFFFBFF54DB098AD3E00BB7E75DA0590FE8B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 2 + GMNotes: '' + GUID: 905f01 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ascending the Hill (v. III) + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -27.4631977 + posY: 1.76120043 + posZ: 43.0888176 + rotX: 0.0135886762 + rotY: 180.000092 + rotZ: 180.148453 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233341 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2333': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296027643/326876D4B46DF777AA1293989DEEE6A810ED027B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999385819527677/3AD8DFFFBFF54DB098AD3E00BB7E75DA0590FE8B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 2 + GMNotes: '' + GUID: 65d096 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ascending the Hill (v. II) + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -27.5594749 + posY: 1.79456151 + posZ: 43.1377563 + rotX: 1.572223e-06 + rotY: 179.999924 + rotZ: 181.019775 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233340 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2333': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296027643/326876D4B46DF777AA1293989DEEE6A810ED027B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999385819527677/3AD8DFFFBFF54DB098AD3E00BB7E75DA0590FE8B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 2 + GMNotes: '' + GUID: 950fcf + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ascending the Hill (v. I) + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -27.3859882 + posY: 1.75592554 + posZ: 42.9080963 + rotX: 0.01352023 + rotY: 180.000031 + rotZ: 180.085648 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233339 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2333': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296027643/326876D4B46DF777AA1293989DEEE6A810ED027B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999385819527677/3AD8DFFFBFF54DB098AD3E00BB7E75DA0590FE8B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: 'Act ' + GMNotes: '' + GUID: 1b5f59 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Path to the Hill + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -27.3926125 + posY: 1.60695291 + posZ: 43.1931953 + rotX: 0.016861584 + rotY: 180.003433 + rotZ: 180.07988 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2333': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296027643/326876D4B46DF777AA1293989DEEE6A810ED027B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999385819527677/3AD8DFFFBFF54DB098AD3E00BB7E75DA0590FE8B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 233343 +- 233342 +- 233341 +- 233340 +- 233339 +Description: '' +GMNotes: '' +GUID: b47b11 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Act Deck +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.688573 + posY: 1.65432513 + posZ: -5.04852438 + rotX: 0.0168346167 + rotY: 180.000122 + rotZ: 0.08025884 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 6 Where Doom Awaits 175a29/Deck Agenda Deck 27d0df.yaml b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 6 Where Doom Awaits 175a29/Deck Agenda Deck 27d0df.yaml new file mode 100644 index 000000000..a2dc6b7d2 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 6 Where Doom Awaits 175a29/Deck Agenda Deck 27d0df.yaml @@ -0,0 +1,129 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 233338 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2333': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296027643/326876D4B46DF777AA1293989DEEE6A810ED027B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999385819527677/3AD8DFFFBFF54DB098AD3E00BB7E75DA0590FE8B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 2 + GMNotes: '' + GUID: a5d928 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Beckoning for Power + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -25.30077 + posY: 1.60064018 + posZ: 41.2452 + rotX: 0.01689639 + rotY: 179.982056 + rotZ: 0.0798743144 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233337 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2333': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296027643/326876D4B46DF777AA1293989DEEE6A810ED027B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999385819527677/3AD8DFFFBFF54DB098AD3E00BB7E75DA0590FE8B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 1 + GMNotes: '' + GUID: 1b5f59 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Calling Forth the Old Ones + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -25.3137226 + posY: 1.75710738 + posZ: 41.10981 + rotX: 0.0168955568 + rotY: 180.0 + rotZ: 0.07987287 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2333': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296027643/326876D4B46DF777AA1293989DEEE6A810ED027B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999385819527677/3AD8DFFFBFF54DB098AD3E00BB7E75DA0590FE8B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 233338 +- 233337 +Description: '' +GMNotes: '' +GUID: 27d0df +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Agenda Deck +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.724755 + posY: 1.6639775 + posZ: 0.373173833 + rotX: 0.0168385431 + rotY: 179.999054 + rotZ: 0.08026591 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 6 Where Doom Awaits 175a29/Deck Altered Paths 0f29d2.yaml b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 6 Where Doom Awaits 175a29/Deck Altered Paths 0f29d2.yaml new file mode 100644 index 000000000..391834e4f --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 6 Where Doom Awaits 175a29/Deck Altered Paths 0f29d2.yaml @@ -0,0 +1,258 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 233624 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2336': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296074747/742F5083E0E10E3DD22E671C78F35E6143C744FF/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296074238/FB73285A9ED0D784210E50C6EA17EBC25648D800/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Dunwich. Woods. Altered. + GMNotes: '' + GUID: becc3c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Altered Path + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -27.1510525 + posY: 1.79020023 + posZ: 42.8097763 + rotX: -1.06721707e-07 + rotY: 270.0002 + rotZ: 181.430527 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233623 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2336': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296074747/742F5083E0E10E3DD22E671C78F35E6143C744FF/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296074238/FB73285A9ED0D784210E50C6EA17EBC25648D800/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Dunwich. Woods. Altered. + GMNotes: '' + GUID: 66af3c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Altered Path + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -27.33898 + posY: 1.80739772 + posZ: 42.8507462 + rotX: 359.950684 + rotY: 269.999878 + rotZ: 181.778351 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233622 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2336': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296074747/742F5083E0E10E3DD22E671C78F35E6143C744FF/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296074238/FB73285A9ED0D784210E50C6EA17EBC25648D800/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Dunwich. Woods. Altered. + GMNotes: '' + GUID: '493726' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Altered Path + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -26.9016228 + posY: 1.78424227 + posZ: 43.0133553 + rotX: -6.40330256e-07 + rotY: 270.000183 + rotZ: 181.28862 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233621 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2336': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296074747/742F5083E0E10E3DD22E671C78F35E6143C744FF/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296074238/FB73285A9ED0D784210E50C6EA17EBC25648D800/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Dunwich. Woods. Altered. + GMNotes: '' + GUID: 8d2043 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Altered Path + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -27.2113228 + posY: 1.60655725 + posZ: 42.7079773 + rotX: 359.920135 + rotY: 270.0 + rotZ: 180.016861 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233654 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2336': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296074747/742F5083E0E10E3DD22E671C78F35E6143C744FF/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296074238/FB73285A9ED0D784210E50C6EA17EBC25648D800/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Dunwich. Woods. Altered. + GMNotes: '' + GUID: a06a3b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Altered Path + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -13.1855 + posY: 1.72283137 + posZ: 2.9952116 + rotX: 359.920135 + rotY: 270.0004 + rotZ: 0.0168751553 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2336': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296074747/742F5083E0E10E3DD22E671C78F35E6143C744FF/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296074238/FB73285A9ED0D784210E50C6EA17EBC25648D800/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 233624 +- 233623 +- 233622 +- 233621 +- 233654 +Description: '' +GMNotes: '' +GUID: 0f29d2 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Altered Paths +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -23.6765671 + posY: 1.68732607 + posZ: 7.570006 + rotX: 359.9201 + rotY: 269.999847 + rotZ: 0.0168771725 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 6 Where Doom Awaits 175a29/Deck Diverging Paths 768494.yaml b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 6 Where Doom Awaits 175a29/Deck Diverging Paths 768494.yaml new file mode 100644 index 000000000..653f5eb3a --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 6 Where Doom Awaits 175a29/Deck Diverging Paths 768494.yaml @@ -0,0 +1,258 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 233620 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2336': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296074747/742F5083E0E10E3DD22E671C78F35E6143C744FF/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296074238/FB73285A9ED0D784210E50C6EA17EBC25648D800/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: "Dunwich. Woods.\t" + GMNotes: '' + GUID: 49a3cd + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Diverging Path + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -27.9237118 + posY: 1.79540813 + posZ: 42.2325325 + rotX: 359.9362 + rotY: 269.999756 + rotZ: 181.8691 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233619 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2336': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296074747/742F5083E0E10E3DD22E671C78F35E6143C744FF/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296074238/FB73285A9ED0D784210E50C6EA17EBC25648D800/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: "Dunwich. Woods.\t" + GMNotes: '' + GUID: 7239aa + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Diverging Path + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -27.9382229 + posY: 1.81096864 + posZ: 41.9187546 + rotX: 359.936127 + rotY: 270.0 + rotZ: 182.005844 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233618 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2336': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296074747/742F5083E0E10E3DD22E671C78F35E6143C744FF/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296074238/FB73285A9ED0D784210E50C6EA17EBC25648D800/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: "Dunwich. Woods.\t" + GMNotes: '' + GUID: d05756 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Diverging Path + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -27.8813381 + posY: 1.7869817 + posZ: 41.78565 + rotX: 359.9364 + rotY: 269.997253 + rotZ: 181.78627 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233617 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2336': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296074747/742F5083E0E10E3DD22E671C78F35E6143C744FF/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296074238/FB73285A9ED0D784210E50C6EA17EBC25648D800/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: "Dunwich. Woods.\t" + GMNotes: '' + GUID: 6bd637 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Diverging Path + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -28.0487843 + posY: 1.607476 + posZ: 41.8630753 + rotX: 359.920135 + rotY: 270.0 + rotZ: 180.016861 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233653 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2336': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296074747/742F5083E0E10E3DD22E671C78F35E6143C744FF/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296074238/FB73285A9ED0D784210E50C6EA17EBC25648D800/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: "Dunwich. Woods.\t" + GMNotes: '' + GUID: e5dd0e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Diverging Path + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -13.8255529 + posY: 1.724975 + posZ: 6.97335434 + rotX: 359.9328 + rotY: 270.000061 + rotZ: 0.0142102186 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2336': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296074747/742F5083E0E10E3DD22E671C78F35E6143C744FF/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296074238/FB73285A9ED0D784210E50C6EA17EBC25648D800/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 233620 +- 233619 +- 233618 +- 233617 +- 233653 +Description: '' +GMNotes: '' +GUID: '768494' +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Diverging Paths +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -30.2242851 + posY: 1.69645643 + posZ: 7.57000542 + rotX: 359.9201 + rotY: 269.999939 + rotZ: 0.0168767832 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 6 Where Doom Awaits 175a29/Deck Encounter Deck 1d3069.yaml b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 6 Where Doom Awaits 175a29/Deck Encounter Deck 1d3069.yaml new file mode 100644 index 000000000..cbc378c22 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 6 Where Doom Awaits 175a29/Deck Encounter Deck 1d3069.yaml @@ -0,0 +1,1942 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 233044 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: e3fba9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Resurgent Evils + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 8.283834 + posY: 1.54401064 + posZ: 7.933346 + rotX: 359.920135 + rotY: 269.999664 + rotZ: 0.0168762654 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233044 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: e6d9b2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Resurgent Evils + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 8.055629 + posY: 1.699255 + posZ: 7.93120241 + rotX: 359.920135 + rotY: 269.999664 + rotZ: 0.0168761984 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233044 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: e3fba9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Resurgent Evils + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 8.055629 + posY: 1.71649992 + posZ: 7.93120241 + rotX: 359.9212 + rotY: 269.999664 + rotZ: 0.01656634 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233050 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: 7dd094 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Need for Knowledge + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 9.214496 + posY: 1.54113626 + posZ: 2.57877874 + rotX: 359.920135 + rotY: 269.999664 + rotZ: 0.0168800149 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233050 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: 9f855c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Need for Knowledge + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 9.015348 + posY: 1.695799 + posZ: 2.69127941 + rotX: 359.920135 + rotY: 269.999664 + rotZ: 0.0168801211 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233050 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: 7dd094 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Need for Knowledge + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 9.04972649 + posY: 1.71299982 + posZ: 2.68801451 + rotX: 359.919678 + rotY: 269.999664 + rotZ: 0.016476877 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233049 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: e3fba9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Idle Hands + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 9.170475 + posY: 1.54203224 + posZ: 5.413058 + rotX: 359.920135 + rotY: 269.999573 + rotZ: 0.01687807 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233049 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: ac1417 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Idle Hands + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 9.196331 + posY: 1.69662583 + posZ: 5.74743938 + rotX: 359.920135 + rotY: 269.999573 + rotZ: 0.0168674812 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233048 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: d8596b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Violent Commands + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 9.157638 + posY: 1.54277384 + posZ: 7.870572 + rotX: 359.920135 + rotY: 269.999573 + rotZ: 0.0168761183 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233048 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: 27658e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Violent Commands + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 9.356761 + posY: 1.69708729 + posZ: 7.57023 + rotX: 359.920135 + rotY: 269.999573 + rotZ: 0.0168761387 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233047 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: 3e8e0b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Oppressive Mists + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 7.83998156 + posY: 1.54372144 + posZ: 4.850278 + rotX: 359.920135 + rotY: 269.999634 + rotZ: 0.0168781038 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233047 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: d8e5f7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Oppressive Mists + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 7.80314255 + posY: 1.69862533 + posZ: 4.79417324 + rotX: 359.920135 + rotY: 269.999573 + rotZ: 0.0168781523 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233046 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: e3fba9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Inexplicable Cold + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 7.666582 + posY: 1.54493606 + posZ: 8.19385 + rotX: 359.920258 + rotY: 270.000061 + rotZ: 0.01607858 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233046 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: 8fa82b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Inexplicable Cold + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 8.028719 + posY: 1.70623231 + posZ: 8.457989 + rotX: 359.9379 + rotY: 270.0 + rotZ: 0.009667996 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232823 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: "\tPower." + GMNotes: '' + GUID: ef7cab + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Altered Beast + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.55222464 + posY: 1.5502063 + posZ: 6.573337 + rotX: 359.920135 + rotY: 269.999939 + rotZ: 0.0168764647 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232823 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: "\tPower." + GMNotes: '' + GUID: 651a9e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Altered Beast + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.6760025 + posY: 1.70618832 + posZ: 6.53470135 + rotX: 359.920135 + rotY: 269.999939 + rotZ: 0.0168764852 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232822 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Creature. Monster. Abomination. + GMNotes: '' + GUID: c53c4a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Lupine Thrall + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.29770446 + posY: 1.55148566 + posZ: 9.71324348 + rotX: 359.920135 + rotY: 269.999939 + rotZ: 0.0168772563 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232822 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Creature. Monster. Abomination. + GMNotes: '' + GUID: 077019 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Lupine Thrall + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.20197439 + posY: 1.70810318 + posZ: 9.924229 + rotX: 359.920135 + rotY: 269.999939 + rotZ: 0.0168772489 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232821 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Creature. Monster. Abomination. + GMNotes: '' + GUID: de3bd5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Avian Thrall + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.17520547 + posY: 1.55259466 + posZ: 12.8993664 + rotX: 359.920135 + rotY: 269.999939 + rotZ: 0.0168785825 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232821 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Creature. Monster. Abomination. + GMNotes: '' + GUID: 0e80a5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Avian Thrall + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.29272318 + posY: 1.70912266 + posZ: 13.0629282 + rotX: 359.920135 + rotY: 269.999939 + rotZ: 0.0168786459 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232811 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: d56ff7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Beyond the Veil + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.917338 + posY: 1.55012894 + posZ: 8.039298 + rotX: 359.920135 + rotY: 269.999969 + rotZ: 0.01687837 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232811 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: 9cb0b3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Beyond the Veil + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.89250565 + posY: 1.70636082 + posZ: 8.19774 + rotX: 359.920135 + rotY: 269.999969 + rotZ: 0.01687832 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232811 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: d56ff7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Beyond the Veil + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.89250565 + posY: 1.72360778 + posZ: 8.19774 + rotX: 359.920837 + rotY: 269.999969 + rotZ: 0.0158282 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232810 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: de3bd5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Visions of Futures Past + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.43124938 + posY: 1.55177522 + posZ: 11.3293571 + rotX: 359.920135 + rotY: 269.999969 + rotZ: 0.0168769564 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232810 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: 42d459 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Visions of Futures Past + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.15239716 + posY: 1.70869577 + posZ: 11.50471 + rotX: 359.920135 + rotY: 269.999969 + rotZ: 0.01687689 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232810 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: de3bd5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Visions of Futures Past + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.15239716 + posY: 1.72595167 + posZ: 11.50471 + rotX: 359.9199 + rotY: 269.999969 + rotZ: 0.0165576525 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233011 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: "\tHex. Hazard." + GMNotes: '' + GUID: b3e2e4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Vortex of Time + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.61408854 + posY: 1.55063963 + posZ: 3.60348773 + rotX: 359.920135 + rotY: 269.999756 + rotZ: 0.016877573 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233011 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: "\tHex. Hazard." + GMNotes: '' + GUID: 2b6ae2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Vortex of Time + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.61183763 + posY: 1.70675254 + posZ: 3.11805844 + rotX: 359.920135 + rotY: 269.999756 + rotZ: 0.0168777537 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233011 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: "\tHex. Hazard." + GMNotes: '' + GUID: b3e2e4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Vortex of Time + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.706807 + posY: 1.72394443 + posZ: 3.33633471 + rotX: 359.920441 + rotY: 269.999756 + rotZ: 0.0165251251 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233010 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: "\tHex. Hazard." + GMNotes: '' + GUID: e3fba9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Spaces Between + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.347013 + posY: 1.55179513 + posZ: 6.26302242 + rotX: 359.920135 + rotY: 269.999756 + rotZ: 0.0168774389 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233010 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: "\tHex. Hazard." + GMNotes: '' + GUID: 52824c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Spaces Between + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.271914 + posY: 1.70847929 + posZ: 6.58807135 + rotX: 359.920135 + rotY: 269.999756 + rotZ: 0.016877519 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233010 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: "\tHex. Hazard." + GMNotes: '' + GUID: e3fba9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Spaces Between + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.33510113 + posY: 1.850574 + posZ: 11.0064564 + rotX: 359.936066 + rotY: 270.0 + rotZ: 180.005859 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233009 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: "\tHex." + GMNotes: '' + GUID: e3fba9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Rites Howled + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 4.53535938 + posY: 1.5488261 + posZ: 6.54055071 + rotX: 359.920135 + rotY: 269.999817 + rotZ: 0.016878156 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233009 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: "\tHex." + GMNotes: '' + GUID: 4ec8cc + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Rites Howled + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 4.25622129 + posY: 1.705148 + posZ: 6.68588257 + rotX: 359.920135 + rotY: 269.999817 + rotZ: 0.0168782175 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233009 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: "\tHex." + GMNotes: '' + GUID: e3fba9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Rites Howled + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 4.262464 + posY: 1.72240973 + posZ: 6.686818 + rotX: 359.920135 + rotY: 269.999817 + rotZ: 0.0168776587 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233008 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Shoggoth. + GMNotes: '' + GUID: e3fba9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Crazed Shoggoth + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.33122134 + posY: 1.81162786 + posZ: 10.9882507 + rotX: 359.9361 + rotY: 270.000031 + rotZ: 180.013489 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233007 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Sorcerer. + GMNotes: '' + GUID: e3fba9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Devotee of the Key + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 1.68052936 + posY: 1.55288851 + posZ: 6.82079935 + rotX: 359.920135 + rotY: 269.999817 + rotZ: 0.01687835 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233007 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Sorcerer. + GMNotes: '' + GUID: 0f3d39 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Devotee of the Key + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 1.20080113 + posY: 1.71036971 + posZ: 7.1936903 + rotX: 359.920135 + rotY: 269.999817 + rotZ: 0.0168783423 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232814 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Sorcerer. + GMNotes: '' + GUID: e44036 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Wizard of Yog-Sothoth + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.394843 + posY: 1.54970729 + posZ: 4.13393164 + rotX: 359.920135 + rotY: 269.999939 + rotZ: 0.0168757457 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232813 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Monster. Abomination. + GMNotes: '' + GUID: fbe20d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Thrall + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.15501428 + posY: 1.69501209 + posZ: 7.444842 + rotX: 359.935822 + rotY: 269.994781 + rotZ: 7.50431871 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232813 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Monster. Abomination. + GMNotes: '' + GUID: 9b9792 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Thrall + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.32377672 + posY: 1.55104816 + posZ: 8.903832 + rotX: 359.921722 + rotY: 269.997437 + rotZ: 0.008892595 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232813 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Monster. Abomination. + GMNotes: '' + GUID: 76139c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Thrall + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.76801586 + posY: 1.60063446 + posZ: 8.933262 + rotX: 359.9319 + rotY: 269.992828 + rotZ: 0.0655015 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232812 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: "\tPact. Power." + GMNotes: '' + GUID: de3bd5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Light of Aforgomon + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.103076 + posY: 1.5511409 + posZ: 7.621261 + rotX: 359.920135 + rotY: 269.999878 + rotZ: 0.0168763418 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232812 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: "\tPact. Power." + GMNotes: '' + GUID: 6c2f4a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Light of Aforgomon + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.12950444 + posY: 1.70759833 + posZ: 8.101044 + rotX: 359.920135 + rotY: 269.999878 + rotZ: 0.0168764461 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 233044 +- 233044 +- 233044 +- 233050 +- 233050 +- 233050 +- 233049 +- 233049 +- 233048 +- 233048 +- 233047 +- 233047 +- 233046 +- 233046 +- 232823 +- 232823 +- 232822 +- 232822 +- 232821 +- 232821 +- 232811 +- 232811 +- 232811 +- 232810 +- 232810 +- 232810 +- 233011 +- 233011 +- 233011 +- 233010 +- 233010 +- 233010 +- 233009 +- 233009 +- 233009 +- 233008 +- 233007 +- 233007 +- 232814 +- 232813 +- 232813 +- 232813 +- 232812 +- 232812 +Description: '' +GMNotes: '' +GUID: 1d3069 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Encounter Deck +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.92773438 + posY: 1.84632242 + posZ: 5.757153 + rotX: 359.919739 + rotY: 270.0 + rotZ: 180.016815 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 6 Where Doom Awaits 175a29/Deck Hideous Abominations b858d0.yaml b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 6 Where Doom Awaits 175a29/Deck Hideous Abominations b858d0.yaml new file mode 100644 index 000000000..53313d4ec --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 6 Where Doom Awaits 175a29/Deck Hideous Abominations b858d0.yaml @@ -0,0 +1,172 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 232831 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Abomination. + GMNotes: '' + GUID: 919fa0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Servant of the Lurker + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.69560742 + posY: 1.54953551 + posZ: 4.974127 + rotX: 359.920135 + rotY: 269.999939 + rotZ: 0.0168759543 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232830 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Abomination. + GMNotes: '' + GUID: de3bd5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Conglomeration of Spheres + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.816169 + posY: 1.55043364 + posZ: 8.595026 + rotX: 359.920135 + rotY: 269.999878 + rotZ: 0.0168762449 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232830 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Abomination. + GMNotes: '' + GUID: 1b1dd5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Conglomeration of Spheres + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.72422314 + posY: 1.70678663 + posZ: 8.640354 + rotX: 359.920135 + rotY: 269.999878 + rotZ: 0.0168763362 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 232831 +- 232830 +- 232830 +Description: '' +GMNotes: '' +GUID: b858d0 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Hideous Abominations +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.75594354 + posY: 1.66240346 + posZ: 15.0672274 + rotX: 359.919739 + rotY: 269.999939 + rotZ: 0.0168411564 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 7 Lost in Time and Space 1fca6b.ttslua b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 7 Lost in Time and Space 1fca6b.ttslua new file mode 100644 index 000000000..54d591927 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 7 Lost in Time and Space 1fca6b.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.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 Return to The Dunwich Legacy ce9130/Custom_Model_Bag 7 Lost in Time and Space 1fca6b.yaml b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 7 Lost in Time and Space 1fca6b.yaml new file mode 100644 index 000000000..270eb0f64 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 7 Lost in Time and Space 1fca6b.yaml @@ -0,0 +1,80 @@ +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 7 Lost in Time and Space 1fca6b/Card Yog-Sothoth 448edd.yaml' +- !include 'Custom_Model_Bag 7 Lost in Time and Space 1fca6b/Card Realms Beyond e3fba9.yaml' +- !include 'Custom_Model_Bag 7 Lost in Time and Space 1fca6b/Card Another Dimension + 8662fa.yaml' +- !include 'Custom_Model_Bag 7 Lost in Time and Space 1fca6b/Card Setup 9a5705.yaml' +- !include 'Custom_Model_Bag 7 Lost in Time and Space 1fca6b/Card Scenario aa50e4.yaml' +- !include 'Custom_Model_Bag 7 Lost in Time and Space 1fca6b/Custom_Tile Lost in Time + and Space 64a607.yaml' +- !include 'Custom_Model_Bag 7 Lost in Time and Space 1fca6b/Bag Act Decks 729b5b.yaml' +- !include 'Custom_Model_Bag 7 Lost in Time and Space 1fca6b/Deck Agenda Deck a01672.yaml' +- !include 'Custom_Model_Bag 7 Lost in Time and Space 1fca6b/Deck Encounter Deck 726813.yaml' +- !include 'Custom_Model_Bag 7 Lost in Time and Space 1fca6b/Custom_Model_Bag Set-aside + da24ef.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/829135118403758335/596601A40E86B6A360B58E645E976023DBAD4D85/ + MaterialIndex: 3 + MeshURL: https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj + NormalURL: '' + TypeIndex: 6 +Description: Return to the Dunwich Legacy +GMNotes: '' +GUID: 1fca6b +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Model_Bag 7 Lost in Time and Space 1fca6b.ttslua' +LuaScriptState: '{"ml":{"448edd":{"lock":false,"pos":{"x":-17.12,"y":1.6805,"z":11.46},"rot":{"x":359.9201,"y":269.9988,"z":0.0169}},"64a607":{"lock":false,"pos":{"x":-3.731,"y":1.5824,"z":-14.6733},"rot":{"x":359.9197,"y":269.9706,"z":0.0169}},"726813":{"lock":false,"pos":{"x":-3.9277,"y":1.8517,"z":5.7572},"rot":{"x":359.9197,"y":269.9998,"z":180.0168}},"729b5b":{"lock":false,"pos":{"x":-2.6888,"y":1.3987,"z":-5.0485},"rot":{"x":359.9832,"y":0.0003,"z":359.9197}},"8662fa":{"lock":false,"pos":{"x":-30.2243,"y":1.6954,"z":-0.03},"rot":{"x":359.9201,"y":269.9998,"z":0.0169}},"9a5705":{"lock":false,"pos":{"x":-5.4165,"y":1.7062,"z":-10.478},"rot":{"x":0.0373,"y":270.059,"z":359.8585}},"a01672":{"lock":false,"pos":{"x":-2.7247,"y":1.6551,"z":0.3732},"rot":{"x":0.0165,"y":180.2081,"z":0.0803}},"aa50e4":{"lock":false,"pos":{"x":-3.956,"y":1.6556,"z":-10.4412},"rot":{"x":359.9198,"y":269.9982,"z":0.0165}},"da24ef":{"lock":false,"pos":{"x":1.6965,"y":1.5583,"z":14.2787},"rot":{"x":359.9551,"y":224.998,"z":0.0687}},"e3fba9":{"lock":false,"pos":{"x":-17.12,"y":1.6793,"z":7.57},"rot":{"x":359.9201,"y":270,"z":0.0169}}}}' +MaterialIndex: -1 +MeshIndex: -1 +Name: Custom_Model_Bag +Nickname: '7: Lost in Time and Space' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 12.2504015 + posY: 1.455581 + posZ: -30.054903 + rotX: 359.9201 + rotY: 270.025055 + rotZ: 0.0168389622 + scaleX: 2.21 + scaleY: 0.46 + scaleZ: 2.42 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 7 Lost in Time and Space 1fca6b/Bag Act Decks 729b5b.yaml b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 7 Lost in Time and Space 1fca6b/Bag Act Decks 729b5b.yaml new file mode 100644 index 000000000..c93af0b2a --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 7 Lost in Time and Space 1fca6b/Bag Act Decks 729b5b.yaml @@ -0,0 +1,37 @@ +Autoraise: true +ColorDiffuse: + b: 0.0 + g: 0.366520882 + r: 0.7058823 +ContainedObjects: +- !include 'Bag Act Decks 729b5b/Bag Default Act Deck 5dbdce.yaml' +- !include 'Bag Act Decks 729b5b/Bag If The Ritual was completed 3f5a08.yaml' +Description: Choose based on campaign log +GMNotes: '' +GUID: 729b5b +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +MeshIndex: -1 +Name: Bag +Nickname: Act Decks +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.688774 + posY: 1.39871025 + posZ: -5.04848146 + rotX: 359.983154 + rotY: 0.000291373173 + rotZ: 359.919678 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 7 Lost in Time and Space 1fca6b/Bag Act Decks 729b5b/Bag Default Act Deck 5dbdce.yaml b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 7 Lost in Time and Space 1fca6b/Bag Act Decks 729b5b/Bag Default Act Deck 5dbdce.yaml new file mode 100644 index 000000000..6e1cbe6c8 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 7 Lost in Time and Space 1fca6b/Bag Act Decks 729b5b/Bag Default Act Deck 5dbdce.yaml @@ -0,0 +1,250 @@ +Autoraise: true +ColorDiffuse: + b: 0.0 + g: 0.366520882 + r: 0.7058823 +ContainedObjects: +- Autoraise: true + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: + - Autoraise: true + CardID: 233351 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2333': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296027643/326876D4B46DF777AA1293989DEEE6A810ED027B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999385819527677/3AD8DFFFBFF54DB098AD3E00BB7E75DA0590FE8B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 4 + GMNotes: '' + GUID: 36ab3e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Finding a New Way + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -18.0889053 + posY: 1.58298731 + posZ: 15.4595613 + rotX: 0.0169329587 + rotY: 179.999817 + rotZ: 0.0795364752 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' + - Autoraise: true + CardID: 233350 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2333': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296027643/326876D4B46DF777AA1293989DEEE6A810ED027B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999385819527677/3AD8DFFFBFF54DB098AD3E00BB7E75DA0590FE8B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 3 + GMNotes: '' + GUID: 4ff26a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Close the Rift + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -18.13166 + posY: 1.73168981 + posZ: 15.5389347 + rotX: 0.0178304166 + rotY: 180.000137 + rotZ: 0.07938473 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' + - Autoraise: true + CardID: 233349 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2333': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296027643/326876D4B46DF777AA1293989DEEE6A810ED027B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999385819527677/3AD8DFFFBFF54DB098AD3E00BB7E75DA0590FE8B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 2 + GMNotes: '' + GUID: 85ddfb + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Into the Beyond + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -17.8573818 + posY: 1.7488178 + posZ: 16.2058125 + rotX: 0.0168605056 + rotY: 180.000183 + rotZ: 0.07988454 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' + - Autoraise: true + CardID: 233348 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2333': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296027643/326876D4B46DF777AA1293989DEEE6A810ED027B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999385819527677/3AD8DFFFBFF54DB098AD3E00BB7E75DA0590FE8B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 1 + GMNotes: '' + GUID: 1b5f59 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Out of this World + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -18.2920742 + posY: 1.735714 + posZ: 15.9656506 + rotX: 0.0168787241 + rotY: 180.000137 + rotZ: 0.07989076 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' + CustomDeck: + '2333': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296027643/326876D4B46DF777AA1293989DEEE6A810ED027B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999385819527677/3AD8DFFFBFF54DB098AD3E00BB7E75DA0590FE8B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + DeckIDs: + - 233351 + - 233350 + - 233349 + - 233348 + Description: '' + GMNotes: '' + GUID: 680d25 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Deck + Nickname: Act Deck + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -12.14627 + posY: 3.64435983 + posZ: 13.5453558 + rotX: 0.126867026 + rotY: 180.001266 + rotZ: 0.165264055 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +Description: '' +GMNotes: '' +GUID: 5dbdce +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +MeshIndex: -1 +Name: Bag +Nickname: Default Act Deck +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.66276646 + posY: 3.37339544 + posZ: 4.22047234 + rotX: 359.857971 + rotY: 0.000844087161 + rotZ: 359.9446 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 7 Lost in Time and Space 1fca6b/Bag Act Decks 729b5b/Bag If The Ritual was completed 3f5a08.yaml b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 7 Lost in Time and Space 1fca6b/Bag Act Decks 729b5b/Bag If The Ritual was completed 3f5a08.yaml new file mode 100644 index 000000000..c6f3b00a3 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 7 Lost in Time and Space 1fca6b/Bag Act Decks 729b5b/Bag If The Ritual was completed 3f5a08.yaml @@ -0,0 +1,250 @@ +Autoraise: true +ColorDiffuse: + b: 0.0 + g: 0.366520882 + r: 0.7058823 +ContainedObjects: +- Autoraise: true + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: + - Autoraise: true + CardID: 233351 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2333': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296027643/326876D4B46DF777AA1293989DEEE6A810ED027B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999385819527677/3AD8DFFFBFF54DB098AD3E00BB7E75DA0590FE8B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 4 + GMNotes: '' + GUID: 36ab3e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Finding a New Way + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -18.0889053 + posY: 1.58298731 + posZ: 15.4595613 + rotX: 0.0169329587 + rotY: 179.999817 + rotZ: 0.0795364752 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' + - Autoraise: true + CardID: 233350 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2333': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296027643/326876D4B46DF777AA1293989DEEE6A810ED027B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999385819527677/3AD8DFFFBFF54DB098AD3E00BB7E75DA0590FE8B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 3 + GMNotes: '' + GUID: 4ff26a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Close the Rift + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -18.13166 + posY: 1.73168981 + posZ: 15.5389347 + rotX: 0.0178304166 + rotY: 180.000137 + rotZ: 0.07938473 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' + - Autoraise: true + CardID: 233355 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2333': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296027643/326876D4B46DF777AA1293989DEEE6A810ED027B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999385819527677/3AD8DFFFBFF54DB098AD3E00BB7E75DA0590FE8B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 2 + GMNotes: '' + GUID: 0686cc + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Into the Beyond (v. II) + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -24.8778839 + posY: 1.75899768 + posZ: 17.5421429 + rotX: 0.0168602653 + rotY: 180.011063 + rotZ: 0.0798857 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' + - Autoraise: true + CardID: 233348 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2333': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296027643/326876D4B46DF777AA1293989DEEE6A810ED027B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999385819527677/3AD8DFFFBFF54DB098AD3E00BB7E75DA0590FE8B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 1 + GMNotes: '' + GUID: 1b5f59 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Out of this World + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -24.3979549 + posY: 1.74475443 + posZ: 17.4286537 + rotX: 0.0146882972 + rotY: 180.000137 + rotZ: 0.06961201 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' + CustomDeck: + '2333': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296027643/326876D4B46DF777AA1293989DEEE6A810ED027B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999385819527677/3AD8DFFFBFF54DB098AD3E00BB7E75DA0590FE8B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + DeckIDs: + - 233351 + - 233350 + - 233355 + - 233348 + Description: '' + GMNotes: '' + GUID: 8d881c + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Deck + Nickname: Act Deck + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -16.8497257 + posY: 3.65076566 + posZ: 17.5775051 + rotX: 0.03852854 + rotY: 179.99942 + rotZ: 359.843475 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +Description: '' +GMNotes: '' +GUID: 3f5a08 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +MeshIndex: -1 +Name: Bag +Nickname: If "The Ritual was completed" +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -1.65069461 + posY: 3.37261319 + posZ: 5.626143 + rotX: 0.0426129922 + rotY: -0.005155662 + rotZ: 359.847443 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 7 Lost in Time and Space 1fca6b/Card Another Dimension 8662fa.yaml b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 7 Lost in Time and Space 1fca6b/Card Another Dimension 8662fa.yaml new file mode 100644 index 000000000..c9ed5442f --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 7 Lost in Time and Space 1fca6b/Card Another Dimension 8662fa.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 233626 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2336': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296074747/742F5083E0E10E3DD22E671C78F35E6143C744FF/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296074238/FB73285A9ED0D784210E50C6EA17EBC25648D800/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Unfettered by Reality +GMNotes: '' +GUID: 8662fa +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Another Dimension +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -30.2242641 + posY: 1.69535077 + posZ: -0.02999427 + rotX: 359.9201 + rotY: 269.9998 + rotZ: 0.0168771166 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 7 Lost in Time and Space 1fca6b/Card Realms Beyond e3fba9.yaml b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 7 Lost in Time and Space 1fca6b/Card Realms Beyond e3fba9.yaml new file mode 100644 index 000000000..748b84e49 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 7 Lost in Time and Space 1fca6b/Card Realms Beyond e3fba9.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 233037 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: All-In-One +GMNotes: '' +GUID: e3fba9 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Realms Beyond +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -17.1200447 + posY: 1.67931569 + posZ: 7.570006 + rotX: 359.9201 + rotY: 269.999969 + rotZ: 0.0168782528 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 7 Lost in Time and Space 1fca6b/Card Scenario aa50e4.yaml b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 7 Lost in Time and Space 1fca6b/Card Scenario aa50e4.yaml new file mode 100644 index 000000000..4c1a4d78e --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 7 Lost in Time and Space 1fca6b/Card Scenario aa50e4.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 233625 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2336': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296074747/742F5083E0E10E3DD22E671C78F35E6143C744FF/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296074238/FB73285A9ED0D784210E50C6EA17EBC25648D800/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Lost in Time and Space +GMNotes: '' +GUID: aa50e4 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Scenario +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.95604563 + posY: 1.65564251 + posZ: -10.4411993 + rotX: 359.9198 + rotY: 269.998169 + rotZ: 0.0164707918 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 7 Lost in Time and Space 1fca6b/Card Setup 9a5705.yaml b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 7 Lost in Time and Space 1fca6b/Card Setup 9a5705.yaml new file mode 100644 index 000000000..742fd10ac --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 7 Lost in Time and Space 1fca6b/Card Setup 9a5705.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 233655 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2336': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296074747/742F5083E0E10E3DD22E671C78F35E6143C744FF/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296074238/FB73285A9ED0D784210E50C6EA17EBC25648D800/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Return to Lost in Time and Space +GMNotes: '' +GUID: 9a5705 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Setup +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -5.416524 + posY: 1.70619321 + posZ: -10.4780006 + rotX: 0.0373161174 + rotY: 270.059021 + rotZ: 359.858459 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 7 Lost in Time and Space 1fca6b/Card Yog-Sothoth 448edd.yaml b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 7 Lost in Time and Space 1fca6b/Card Yog-Sothoth 448edd.yaml new file mode 100644 index 000000000..b22e321bb --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 7 Lost in Time and Space 1fca6b/Card Yog-Sothoth 448edd.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 233012 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: The Lurker Beyond the Threshold +GMNotes: '' +GUID: 448edd +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Yog-Sothoth +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -17.1200314 + posY: 1.68046117 + posZ: 11.4600067 + rotX: 359.9201 + rotY: 269.998779 + rotZ: 0.0168800615 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 7 Lost in Time and Space 1fca6b/Custom_Model_Bag Set-aside da24ef.yaml b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 7 Lost in Time and Space 1fca6b/Custom_Model_Bag Set-aside da24ef.yaml new file mode 100644 index 000000000..539b89b10 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 7 Lost in Time and Space 1fca6b/Custom_Model_Bag Set-aside da24ef.yaml @@ -0,0 +1,58 @@ +Autoraise: true +ColorDiffuse: + b: 0.02148666 + g: 0.00100758043 + r: 0.02148666 +ContainedObjects: +- !include 'Custom_Model_Bag Set-aside da24ef/Card Tear Through Time b8985b.yaml' +- !include 'Custom_Model_Bag Set-aside da24ef/Card The Edge of the Universe 3bcbc5.yaml' +- !include 'Custom_Model_Bag Set-aside da24ef/Card Seth Bishop d3ddcd.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: Lost in Time and Space +GMNotes: '' +GUID: da24ef +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +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.696538 + posY: 1.55831575 + posZ: 14.2787142 + rotX: 359.9551 + rotY: 224.998032 + rotZ: 0.0686873049 + scaleX: 2.0 + scaleY: 2.0 + scaleZ: 2.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 7 Lost in Time and Space 1fca6b/Custom_Model_Bag Set-aside da24ef/Card Seth Bishop d3ddcd.yaml b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 7 Lost in Time and Space 1fca6b/Custom_Model_Bag Set-aside da24ef/Card Seth Bishop d3ddcd.yaml new file mode 100644 index 000000000..c98c3794d --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 7 Lost in Time and Space 1fca6b/Custom_Model_Bag Set-aside da24ef/Card Seth Bishop d3ddcd.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 233036 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: Thrall of Yog-Sothoth +GMNotes: '' +GUID: d3ddcd +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Seth Bishop +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -7.7807107 + posY: 3.62369871 + posZ: 4.999185 + rotX: 359.936066 + rotY: 269.999878 + rotZ: 0.0196346138 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 7 Lost in Time and Space 1fca6b/Custom_Model_Bag Set-aside da24ef/Card Tear Through Time b8985b.yaml b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 7 Lost in Time and Space 1fca6b/Custom_Model_Bag Set-aside da24ef/Card Tear Through Time b8985b.yaml new file mode 100644 index 000000000..d4ab96177 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 7 Lost in Time and Space 1fca6b/Custom_Model_Bag Set-aside da24ef/Card Tear Through Time b8985b.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 233628 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2336': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296074747/742F5083E0E10E3DD22E671C78F35E6143C744FF/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296074238/FB73285A9ED0D784210E50C6EA17EBC25648D800/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: "\tOtherworld." +GMNotes: '' +GUID: b8985b +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Tear Through Time +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -10.0045061 + posY: 3.63045621 + posZ: 16.5341167 + rotX: 359.936066 + rotY: 270.0 + rotZ: 0.0135753928 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 7 Lost in Time and Space 1fca6b/Custom_Model_Bag Set-aside da24ef/Card The Edge of the Universe 3bcbc5.yaml b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 7 Lost in Time and Space 1fca6b/Custom_Model_Bag Set-aside da24ef/Card The Edge of the Universe 3bcbc5.yaml new file mode 100644 index 000000000..0c740622e --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 7 Lost in Time and Space 1fca6b/Custom_Model_Bag Set-aside da24ef/Card The Edge of the Universe 3bcbc5.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 233627 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2336': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296074747/742F5083E0E10E3DD22E671C78F35E6143C744FF/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296074238/FB73285A9ED0D784210E50C6EA17EBC25648D800/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: "\tOtherworld." +GMNotes: '' +GUID: 3bcbc5 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: The Edge of the Universe +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -9.735253 + posY: 3.63051939 + posZ: 17.692297 + rotX: 359.920074 + rotY: 270.000031 + rotZ: 0.0168588348 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 7 Lost in Time and Space 1fca6b/Custom_Tile Lost in Time and Space 64a607.ttslua b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 7 Lost in Time and Space 1fca6b/Custom_Tile Lost in Time and Space 64a607.ttslua new file mode 100644 index 000000000..a649f8c03 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 7 Lost in Time and Space 1fca6b/Custom_Tile Lost in Time and Space 64a607.ttslua @@ -0,0 +1,25 @@ +name = 'Lost in Time and Space' + +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 + +function standaloneClick() + Global.call('fillContainer', {object=self, key=name, mode='standalone'}) +end diff --git a/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 7 Lost in Time and Space 1fca6b/Custom_Tile Lost in Time and Space 64a607.yaml b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 7 Lost in Time and Space 1fca6b/Custom_Tile Lost in Time and Space 64a607.yaml new file mode 100644 index 000000000..d413e762f --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 7 Lost in Time and Space 1fca6b/Custom_Tile Lost in Time and Space 64a607.yaml @@ -0,0 +1,42 @@ +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 +GMNotes: '' +GUID: 64a607 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Tile Lost in Time and Space 64a607.ttslua' +LuaScriptState: '' +Name: Custom_Tile +Nickname: Lost in Time and Space +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.73100042 + posY: 1.582376 + posZ: -14.6733027 + rotX: 359.919739 + rotY: 269.970581 + rotZ: 0.01687908 + scaleX: 2.2 + scaleY: 1.0 + scaleZ: 2.2 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 7 Lost in Time and Space 1fca6b/Deck Agenda Deck a01672.yaml b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 7 Lost in Time and Space 1fca6b/Deck Agenda Deck a01672.yaml new file mode 100644 index 000000000..31b261ff2 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 7 Lost in Time and Space 1fca6b/Deck Agenda Deck a01672.yaml @@ -0,0 +1,215 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 233347 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2333': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296027643/326876D4B46DF777AA1293989DEEE6A810ED027B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999385819527677/3AD8DFFFBFF54DB098AD3E00BB7E75DA0590FE8B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 4 + GMNotes: '' + GUID: c3bf03 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The End of All Things + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.06163359 + posY: 1.55913341 + posZ: 10.3165817 + rotX: 0.016646117 + rotY: 180.000427 + rotZ: 0.07985632 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233354 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2333': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296027643/326876D4B46DF777AA1293989DEEE6A810ED027B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999385819527677/3AD8DFFFBFF54DB098AD3E00BB7E75DA0590FE8B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 3 + GMNotes: '' + GUID: ed6504 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Breaking Through (v. II) + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -1.95962715 + posY: 1.74469829 + posZ: 10.2792044 + rotX: 358.6408 + rotY: 180.0013 + rotZ: 0.08075041 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233345 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2333': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296027643/326876D4B46DF777AA1293989DEEE6A810ED027B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999385819527677/3AD8DFFFBFF54DB098AD3E00BB7E75DA0590FE8B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 2 + GMNotes: '' + GUID: 19793c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Past, Present and Future + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.31903028 + posY: 1.82240188 + posZ: 9.556734 + rotX: 356.4441 + rotY: 180.006058 + rotZ: 0.07956728 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233344 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2333': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296027643/326876D4B46DF777AA1293989DEEE6A810ED027B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999385819527677/3AD8DFFFBFF54DB098AD3E00BB7E75DA0590FE8B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 1 + GMNotes: '' + GUID: 1b5f59 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: All is One + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -1.99172509 + posY: 1.71126366 + posZ: 10.2184753 + rotX: 0.0168771166 + rotY: 180.000046 + rotZ: 0.07988492 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2333': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296027643/326876D4B46DF777AA1293989DEEE6A810ED027B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999385819527677/3AD8DFFFBFF54DB098AD3E00BB7E75DA0590FE8B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 233347 +- 233354 +- 233345 +- 233344 +Description: '' +GMNotes: '' +GUID: a01672 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Agenda Deck +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.72467661 + posY: 1.65513825 + posZ: 0.373215824 + rotX: 0.0165432524 + rotY: 180.20813 + rotZ: 0.0803184658 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 7 Lost in Time and Space 1fca6b/Deck Encounter Deck 726813.yaml b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 7 Lost in Time and Space 1fca6b/Deck Encounter Deck 726813.yaml new file mode 100644 index 000000000..5ce5e50f9 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Model_Bag 7 Lost in Time and Space 1fca6b/Deck Encounter Deck 726813.yaml @@ -0,0 +1,1985 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 233040 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Otherworld. Extradimensional. + GMNotes: '' + GUID: e3fba9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Unstable Vortex + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -11.0896225 + posY: 1.57235682 + posZ: 12.4760914 + rotX: 359.920135 + rotY: 270.0007 + rotZ: 0.0168741941 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233039 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Otherworld. Extradimensional. + GMNotes: '' + GUID: 10b92f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Towering Luminosity + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -11.1057863 + posY: 1.72144639 + posZ: 12.6892538 + rotX: 359.936066 + rotY: 269.999969 + rotZ: 0.0173259731 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233038 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Otherworld. Extradimensional. + GMNotes: '' + GUID: e3fba9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Indecipherable Stairs + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -11.0342436 + posY: 1.73843741 + posZ: 12.4699306 + rotX: 359.936066 + rotY: 270.0002 + rotZ: 0.00603645667 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233052 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Pact. + GMNotes: '' + GUID: e3fba9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Eldritch Accord + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 4.809599 + posY: 1.548922 + posZ: 8.164636 + rotX: 359.920135 + rotY: 269.997925 + rotZ: 0.0168780368 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233052 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Pact. + GMNotes: '' + GUID: 7c4d15 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Eldritch Accord + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 4.68952465 + posY: 1.70496368 + posZ: 8.046578 + rotX: 359.920135 + rotY: 269.997925 + rotZ: 0.0168780237 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233051 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Abomination. + GMNotes: '' + GUID: b01c1a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Vassal of the Lurker + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 4.13109636 + posY: 1.55071533 + posZ: 11.0782423 + rotX: 359.920227 + rotY: 270.0001 + rotZ: 0.0161855575 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233051 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Abomination. + GMNotes: '' + GUID: a9e3e2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Vassal of the Lurker + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 4.01203728 + posY: 1.70712113 + posZ: 11.1905966 + rotX: 359.918457 + rotY: 269.999542 + rotZ: 0.0152380522 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233043 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: a97e94 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Infinite Doorway + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 4.197397 + posY: 1.54959261 + posZ: 7.54406452 + rotX: 359.920135 + rotY: 269.999542 + rotZ: 0.0168782528 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233043 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: 64803b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Infinite Doorway + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 4.32584858 + posY: 1.70545149 + posZ: 7.526225 + rotX: 359.920135 + rotY: 269.999542 + rotZ: 0.0168783125 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233042 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: ff3b62 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: A Baleful Welcome + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.86596346 + posY: 1.55085039 + posZ: 10.3858719 + rotX: 359.920563 + rotY: 269.999939 + rotZ: 0.0141112823 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233042 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: 91d7bc + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: A Baleful Welcome + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 4.27264 + posY: 1.70741928 + posZ: 10.3873577 + rotX: 359.940582 + rotY: 270.0 + rotZ: 0.0103841284 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233041 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: e3fba9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Haunting Recollections + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.9066577 + posY: 1.5516181 + posZ: 13.0453758 + rotX: 359.920135 + rotY: 269.999664 + rotZ: 0.0168763362 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233041 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: 4edfe1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Haunting Recollections + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 4.186173 + posY: 1.70772672 + posZ: 13.2151175 + rotX: 359.920135 + rotY: 269.999664 + rotZ: 0.0168762747 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233022 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: b8e111 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Vast Expanse + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.59488988 + posY: 1.54800773 + posZ: -0.6910548 + rotX: 359.920135 + rotY: 269.999756 + rotZ: 0.0168770663 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233022 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: 9bf115 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Vast Expanse + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.615601 + posY: 1.703763 + posZ: -0.494694948 + rotX: 359.920135 + rotY: 269.999756 + rotZ: 0.0168771055 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233022 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: b8e111 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Vast Expanse + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.6155982 + posY: 1.72101808 + posZ: -0.4947077 + rotX: 359.920563 + rotY: 269.999756 + rotZ: 0.0163997822 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233021 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: bed20e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Wormhole + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.2897706 + posY: 1.54934132 + posZ: 2.39365745 + rotX: 359.920135 + rotY: 269.999756 + rotZ: 0.0168782622 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233021 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: d22809 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Wormhole + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.30081034 + posY: 1.70532167 + posZ: 2.402783 + rotX: 359.920135 + rotY: 269.999756 + rotZ: 0.0168786459 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233020 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: e3fba9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Collapsing Reality + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.35379457 + posY: 1.550382 + posZ: 6.230603 + rotX: 359.920135 + rotY: 269.999664 + rotZ: 0.01687754 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233020 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: ab9229 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Collapsing Reality + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.398031 + posY: 1.70642865 + posZ: 5.915227 + rotX: 359.920135 + rotY: 269.999664 + rotZ: 0.01687751 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233020 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: e3fba9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Collapsing Reality + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.408769 + posY: 1.72366679 + posZ: 5.94847965 + rotX: 359.919556 + rotY: 269.999664 + rotZ: 0.0169323478 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233019 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Yithian. + GMNotes: '' + GUID: 04fae6 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Yithian Starseeker + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.650229 + posY: 1.54849708 + posZ: 1.23274589 + rotX: 359.920135 + rotY: 269.999756 + rotZ: 0.0168776624 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233019 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Yithian. + GMNotes: '' + GUID: 8f9f0a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Yithian Starseeker + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.6179266 + posY: 1.70442426 + posZ: 1.42972481 + rotX: 359.920135 + rotY: 269.999756 + rotZ: 0.01687762 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233018 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Yithian. + GMNotes: '' + GUID: e3fba9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Interstellar Traveler + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.95726347 + posY: 1.71822262 + posZ: 5.151437 + rotX: 359.9361 + rotY: 269.999939 + rotZ: 180.013535 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233018 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Yithian. + GMNotes: '' + GUID: 224e79 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Interstellar Traveler + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.64720035 + posY: 1.64947951 + posZ: 5.562858 + rotX: 359.920135 + rotY: 269.9998 + rotZ: 0.0168766547 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233018 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Yithian. + GMNotes: '' + GUID: 816c6e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Interstellar Traveler + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.142872 + posY: 1.5994879 + posZ: 5.485885 + rotX: 359.920135 + rotY: 269.9998 + rotZ: 0.0168766584 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233017 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Otherworld. Extradimensional. + GMNotes: '' + GUID: a817e8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dimensional Doorway + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.13925815 + posY: 1.81145775 + posZ: 9.44118 + rotX: 359.9361 + rotY: 270.000031 + rotZ: 180.013474 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233016 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Otherworld. Extradimensional. + GMNotes: '' + GUID: c704c2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Steps of Y'hagharl + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.19242978 + posY: 1.80190122 + posZ: 9.970057 + rotX: 359.920135 + rotY: 270.0 + rotZ: 180.016876 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233015 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Otherworld. Extradimensional. + GMNotes: '' + GUID: 9c0430 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Endless Bridge + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.856183 + posY: 1.54751182 + posZ: -1.137705 + rotX: 359.920135 + rotY: 269.999847 + rotZ: 0.016876556 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233015 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Otherworld. Extradimensional. + GMNotes: '' + GUID: 5ccf98 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Endless Bridge + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 4.019457 + posY: 1.7029196 + posZ: -1.10944748 + rotX: 359.920135 + rotY: 269.999817 + rotZ: 0.0168766081 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233014 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Otherworld. Extradimensional. + GMNotes: '' + GUID: 8100cf + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Prismatic Cascade + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.731143 + posY: 1.54877687 + posZ: 2.566369 + rotX: 359.920135 + rotY: 269.999939 + rotZ: 0.0168759022 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233014 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Otherworld. Extradimensional. + GMNotes: '' + GUID: 1b1dac + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Prismatic Cascade + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.92325735 + posY: 1.70436108 + posZ: 2.47072983 + rotX: 359.920135 + rotY: 269.999939 + rotZ: 0.0168758314 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233013 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Otherworld. Extradimensional. + GMNotes: '' + GUID: e3fba9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Tear Through Space + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.61346817 + posY: 1.550228 + posZ: 6.937173 + rotX: 359.920135 + rotY: 269.999939 + rotZ: 0.0168756321 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233013 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Otherworld. Extradimensional. + GMNotes: '' + GUID: 788a8c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Tear Through Space + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.85034347 + posY: 1.70612967 + posZ: 7.146141 + rotX: 359.920135 + rotY: 269.999939 + rotZ: 0.0168754943 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233013 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Otherworld. Extradimensional. + GMNotes: '' + GUID: e3fba9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Tear Through Space + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.85034347 + posY: 1.72339964 + posZ: 7.146141 + rotX: 359.920135 + rotY: 269.999939 + rotZ: 0.0168756321 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233013 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Otherworld. Extradimensional. + GMNotes: '' + GUID: e3fba9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Tear Through Space + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.85034347 + posY: 1.70971835 + posZ: 7.146141 + rotX: 359.919861 + rotY: 269.999939 + rotZ: 0.0163024459 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232811 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: d56ff7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Beyond the Veil + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.917338 + posY: 1.55012894 + posZ: 8.039298 + rotX: 359.920135 + rotY: 269.999969 + rotZ: 0.01687837 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232811 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: 9cb0b3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Beyond the Veil + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.89250565 + posY: 1.70636082 + posZ: 8.19774 + rotX: 359.920135 + rotY: 269.999969 + rotZ: 0.01687832 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232811 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: d56ff7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Beyond the Veil + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.89250565 + posY: 1.72360778 + posZ: 8.19774 + rotX: 359.920837 + rotY: 269.999969 + rotZ: 0.0158282 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232810 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: de3bd5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Visions of Futures Past + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.43124938 + posY: 1.55177522 + posZ: 11.3293571 + rotX: 359.920135 + rotY: 269.999969 + rotZ: 0.0168769564 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232810 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: 42d459 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Visions of Futures Past + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.15239716 + posY: 1.70869577 + posZ: 11.50471 + rotX: 359.920135 + rotY: 269.999969 + rotZ: 0.01687689 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232810 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: de3bd5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Visions of Futures Past + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.15239716 + posY: 1.72595167 + posZ: 11.50471 + rotX: 359.9199 + rotY: 269.999969 + rotZ: 0.0165576525 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232831 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Abomination. + GMNotes: '' + GUID: 919fa0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Servant of the Lurker + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.69560742 + posY: 1.54953551 + posZ: 4.974127 + rotX: 359.920135 + rotY: 269.999939 + rotZ: 0.0168759543 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232830 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Abomination. + GMNotes: '' + GUID: de3bd5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Conglomeration of Spheres + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.816169 + posY: 1.55043364 + posZ: 8.595026 + rotX: 359.920135 + rotY: 269.999878 + rotZ: 0.0168762449 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232830 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Abomination. + GMNotes: '' + GUID: 1b1dd5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Conglomeration of Spheres + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.72422314 + posY: 1.70678663 + posZ: 8.640354 + rotX: 359.920135 + rotY: 269.999878 + rotZ: 0.0168763362 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 233040 +- 233039 +- 233038 +- 233052 +- 233052 +- 233051 +- 233051 +- 233043 +- 233043 +- 233042 +- 233042 +- 233041 +- 233041 +- 233022 +- 233022 +- 233022 +- 233021 +- 233021 +- 233020 +- 233020 +- 233020 +- 233019 +- 233019 +- 233018 +- 233018 +- 233018 +- 233017 +- 233016 +- 233015 +- 233015 +- 233014 +- 233014 +- 233013 +- 233013 +- 233013 +- 233013 +- 232811 +- 232811 +- 232811 +- 232810 +- 232810 +- 232810 +- 232831 +- 232830 +- 232830 +Description: '' +GMNotes: '' +GUID: '726813' +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Encounter Deck +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.92773438 + posY: 1.85165179 + posZ: 5.75715351 + rotX: 359.919739 + rotY: 269.999756 + rotZ: 180.016815 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Tile Dunwich Legacy Campaign Log b713e7.ttslua b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Tile Dunwich Legacy Campaign Log b713e7.ttslua new file mode 100644 index 000000000..360c1c28e --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Tile Dunwich Legacy Campaign Log b713e7.ttslua @@ -0,0 +1,527 @@ +--[[ Character Sheet Template by: MrStump + +You can set up your own character sheet if you follow these steps. + +Step 1) Change the character sheet image + -Right click on the character sheet, click Custom + -Replace the image URL with one for your character sheet + -Click import, make sure your sheet loads + -SAVE THE GAME (the table setup) + -LOAD FROM THAT SAVE YOU JUST MADE + +Step 2) Edit script to fit your character sheet + -Below you will see some general options, and then the big data table + -The data table is what determines how many of which buttons are made + -Checkboxes + -Counters + -Textboxes + -By default, there are 3 of each. You can add more or remove entries + -If you intend to add/remove, be sure only to add/remove ENTRIES + -This is what an entry looks like: + { + pos = {-0.977,0.1,-0.589}, + size = 800, + state = false + }, + -Deleting the whole thing would remove that specific item on the sheet + -Copy and pasting it after another entry would create another + -Each entry type has unique data points (pos, size, state, etc) + -Do not try to add in your own data points or remove them individually + -There is a summary of what each point does at the top of its category + +Step 3) Save and check script changes + -Hit Save & Apply in the script window to save your code + -You can edit your code as needed and Save+Apply as often as needed + -When you are finished, make disableSave = false below then Save+apply + -This enables saving, so your sheet will remember whats on it. + +Bonus) Finding/Editing Positions for elements + I have included a tool to get positions for buttons in {x,y,z} form + Place it where you want the center of your element to be + Then copy the table from the notes (lower right of screen) + You can highlight it and CTRL+C + Paste it into the data table where needed (pos=) + If you want to manually tweek the values: + {0,0,0} is the center of the character sheet + {1,0,0} is right, {-1,0,0} is left + {0,0,-1} is up, {0,0,1} is down + 0.1 for Y is the height off of the page. + If it was 0, it would be down inside the model of the sheet + +Begin editing below: ]] + +--Set this to true while editing and false when you have finished +disableSave = false +--Remember to set this to false once you are done making changes +--Then, after you save & apply it, save your game too + +--Color information for button text (r,g,b, values of 0-1) +buttonFontColor = {0,0,0} +--Color information for button background +buttonColor = {1,1,1} +--Change scale of button (Avoid changing if possible) +buttonScale = {0.1,0.1,0.1} + +--This is the button placement information +defaultButtonData = { + --Add checkboxes + checkbox = { + --[[ + pos = the position (pasted from the helper tool) + size = height/width/font_size for checkbox + state = default starting value for checkbox (true=checked, false=not) + ]] + --First checkbox +-- { +-- pos = {-0.62,0.1,0.056}, +-- size = 400, +-- state = false +-- }, + --Second checkbox +-- { +-- pos = {-0.629,0.1,0.199}, +-- size = 400, +-- state = false +-- }, + --Third checkbox +-- { +-- pos = {-0.594,0.1,0.355}, +-- size = 400, +-- state = false +-- }, + --End of checkboxes + }, + --Add counters that have a + and - button + counter = { + --[[ + pos = the position (pasted from the helper tool) + size = height/width/font_size for counter + value = default starting value for counter + hideBG = if background of counter is hidden (true=hidden, false=not) + ]] + --Slot one counter 1 + { + pos = {-0.7,0.1,-0.45}, + size = 400, + value = 0, + hideBG = true + }, + --Slot one counter 2 + { + pos = {-0.52,0.1,-0.45}, + size = 400, + value = 0, + hideBG = true + }, + --Slot one xp 1 + { + pos = {-0.517,0.1,-0.55}, + size = 300, + value = 0, + hideBG = true + }, + --Slot two counter 1 + { + pos = {-0.274,0.1,-0.445}, + size = 400, + value = 0, + hideBG = true + }, + --Slot two counter 2 + { + pos = {-0.074,0.1,-0.445}, + size = 400, + value = 0, + hideBG = true + }, + --Slot two xp 1 + { + pos = {-0.061,0.1,-0.54}, + size = 300, + value = 0, + hideBG = true + }, + --Slot three counter 1 + { + pos = {0.153,0.1,-0.44}, + size = 400, + value = 0, + hideBG = true + }, + --Slot three counter 2 + { + pos = {0.379,0.1,-0.44}, + size = 400, + value = 0, + hideBG = true + }, + --Slot three xp 1 + { + pos = {0.38,0.1,-0.54}, + size = 300, + value = 0, + hideBG = true + }, + --Slot four counter 1 + { + pos = {0.614,0.1,-0.44}, + size = 400, + value = 0, + hideBG = true + }, + --Slot four counter 2 + { + pos = {0.82,0.1,-0.44}, + size = 400, + value = 0, + hideBG = true + }, + --Slot four xp 1 + { + pos = {0.827,0.1,-0.54}, + size = 300, + value = 0, + hideBG = true + }, + --End of counters + }, + --Add editable text boxes + textbox = { + --[[ + pos = the position (pasted from the helper tool) + rows = how many lines of text you want for this box + width = how wide the text box is + font_size = size of text. This and "rows" effect overall height + label = what is shown when there is no text. "" = nothing + value = text entered into box. "" = nothing + alignment = Number to indicate how you want text aligned + (1=Automatic, 2=Left, 3=Center, 4=Right, 5=Justified) + ]] + --Slot one player + { + pos = {-0.637,0.1,-0.70}, + rows = 1, + width = 2000, + font_size = 150, + label = "Click to type", + value = "", + alignment = 2 + }, + --Slot one investigator + { + pos = {-0.637,0.1,-0.625}, + rows = 1, + width = 2000, + font_size = 150, + label = "Click to type", + value = "", + alignment = 2 + }, + --Slot one story + { + pos = {-0.637,0.1,-0.25}, + rows = 7, + width = 2000, + font_size = 150, + label = "Click to type", + value = "", + alignment = 2 + }, + --Slot two player + { + pos = {-0.2,0.1,-0.70}, + rows = 1, + width = 2000, + font_size = 150, + label = "Click to type", + value = "", + alignment = 2 + }, + --Slot two investigator + { + pos = {-0.2,0.1,-0.625}, + rows = 1, + width = 2000, + font_size = 150, + label = "Click to type", + value = "", + alignment = 2 + }, + --Slot two story + { + pos = {-0.2,0.1,-0.25}, + rows = 7, + width = 2000, + font_size = 150, + label = "Click to type", + value = "", + alignment = 2 + }, + --Slot three player + { + pos = {0.241,0.1,-0.70}, + rows = 1, + width = 2000, + font_size = 150, + label = "Click to type", + value = "", + alignment = 2 + }, + --Slot three investigator + { + pos = {0.237,0.1,-0.625}, + rows = 1, + width = 2000, + font_size = 150, + label = "Click to type", + value = "", + alignment = 2 + }, + --Slot three story + { + pos = {0.24,0.1,-0.25}, + rows = 7, + width = 2000, + font_size = 150, + label = "Click to type", + value = "", + alignment = 2 + }, + --Slot four player + { + pos = {0.671,0.1,-0.70}, + rows = 1, + width = 2000, + font_size = 150, + label = "Click to type", + value = "", + alignment = 2 + }, + --Slot four investigator + { + pos = {0.671,0.1,-0.625}, + rows = 1, + width = 2000, + font_size = 150, + label = "Click to type", + value = "", + alignment = 2 + }, + --Slot four story + { + pos = {0.671,0.1,-0.25}, + rows = 7, + width = 2000, + font_size = 150, + label = "Click to type", + value = "", + alignment = 2 + }, + --Campaign Notes + { + pos = {-0.45,0.1,0.55}, + rows =18, + width = 3500, + font_size = 200, + label = "Click to type", + value = "", + alignment = 2 + }, + --Campaign Notes 2 + { + pos = {0.384,0.1,0.228}, + rows = 8, + width = 3500, + font_size = 200, + label = "Click to type", + value = "", + alignment = 2 + }, + --Cultists interrogated + { + pos = {0.384,0.1,0.69}, + rows = 8, + width = 3500, + font_size = 200, + label = "Click to type", + value = "", + alignment = 2 + }, + --End of textboxes + } +} + + + +--Lua beyond this point, I recommend doing something more fun with your life + + + +--Save function +function updateSave() + saved_data = JSON.encode(ref_buttonData) + if disableSave==true then saved_data="" end + self.script_state = saved_data +end + +--Startup procedure +function onload(saved_data) + if disableSave==true then saved_data="" end + if saved_data ~= "" then + local loaded_data = JSON.decode(saved_data) + ref_buttonData = loaded_data + else + ref_buttonData = defaultButtonData + end + + spawnedButtonCount = 0 + createCheckbox() + createCounter() + createTextbox() +end + + + +--Click functions for buttons + + + +--Checks or unchecks the given box +function click_checkbox(tableIndex, buttonIndex) + if ref_buttonData.checkbox[tableIndex].state == true then + ref_buttonData.checkbox[tableIndex].state = false + self.editButton({index=buttonIndex, label=""}) + else + ref_buttonData.checkbox[tableIndex].state = true + self.editButton({index=buttonIndex, label=string.char(10008)}) + end + updateSave() +end + +--Applies value to given counter display +function click_counter(tableIndex, buttonIndex, amount) + ref_buttonData.counter[tableIndex].value = ref_buttonData.counter[tableIndex].value + amount + self.editButton({index=buttonIndex, label=ref_buttonData.counter[tableIndex].value}) + updateSave() +end + +--Updates saved value for given text box +function click_textbox(i, value, selected) + if selected == false then + ref_buttonData.textbox[i].value = value + updateSave() + end +end + +--Dud function for if you have a background on a counter +function click_none() end + + + +--Button creation + + + +--Makes checkboxes +function createCheckbox() + for i, data in ipairs(ref_buttonData.checkbox) do + --Sets up reference function + local buttonNumber = spawnedButtonCount + local funcName = "checkbox"..i + local func = function() click_checkbox(i, buttonNumber) end + self.setVar(funcName, func) + --Sets up label + local label = "" + if data.state==true then label=string.char(10008) end + --Creates button and counts it + self.createButton({ + label=label, click_function=funcName, function_owner=self, + position=data.pos, height=data.size, width=data.size, + font_size=data.size, scale=buttonScale, + color=buttonColor, font_color=buttonFontColor + }) + spawnedButtonCount = spawnedButtonCount + 1 + end +end + +--Makes counters +function createCounter() + for i, data in ipairs(ref_buttonData.counter) do + --Sets up display + local displayNumber = spawnedButtonCount + --Sets up label + local label = data.value + --Sets height/width for display + local size = data.size + if data.hideBG == true then size = 0 end + --Creates button and counts it + self.createButton({ + label=label, click_function="click_none", function_owner=self, + position=data.pos, height=size, width=size, + font_size=data.size, scale=buttonScale, + color=buttonColor, font_color=buttonFontColor + }) + spawnedButtonCount = spawnedButtonCount + 1 + + --Sets up add 1 + local funcName = "counterAdd"..i + local func = function() click_counter(i, displayNumber, 1) end + self.setVar(funcName, func) + --Sets up label + local label = "+" + --Sets up position + local offsetDistance = (data.size/2 + data.size/4) * (buttonScale[1] * 0.002) + local pos = {data.pos[1] + offsetDistance, data.pos[2], data.pos[3]} + --Sets up size + local size = data.size / 2 + --Creates button and counts it + self.createButton({ + label=label, click_function=funcName, function_owner=self, + position=pos, height=size, width=size, + font_size=size, scale=buttonScale, + color=buttonColor, font_color=buttonFontColor + }) + spawnedButtonCount = spawnedButtonCount + 1 + + --Sets up subtract 1 + local funcName = "counterSub"..i + local func = function() click_counter(i, displayNumber, -1) end + self.setVar(funcName, func) + --Sets up label + local label = "-" + --Set up position + local pos = {data.pos[1] - offsetDistance, data.pos[2], data.pos[3]} + --Creates button and counts it + self.createButton({ + label=label, click_function=funcName, function_owner=self, + position=pos, height=size, width=size, + font_size=size, scale=buttonScale, + color=buttonColor, font_color=buttonFontColor + }) + spawnedButtonCount = spawnedButtonCount + 1 + end +end + +function createTextbox() + for i, data in ipairs(ref_buttonData.textbox) do + --Sets up reference function + local funcName = "textbox"..i + local func = function(_,_,val,sel) click_textbox(i,val,sel) end + self.setVar(funcName, func) + + self.createInput({ + input_function = funcName, + function_owner = self, + label = data.label, + alignment = data.alignment, + position = data.pos, + scale = buttonScale, + width = data.width, + height = (data.font_size*data.rows)+24, + font_size = data.font_size, + color = buttonColor, + font_color = buttonFontColor, + value = data.value, + }) + end +end diff --git a/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Tile Dunwich Legacy Campaign Log b713e7.yaml b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Tile Dunwich Legacy Campaign Log b713e7.yaml new file mode 100644 index 000000000..577d0928b --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Dunwich Legacy ce9130/Custom_Tile Dunwich Legacy Campaign Log b713e7.yaml @@ -0,0 +1,266 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.1 + Type: 0 + ImageScalar: 1.0 + ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/959719855118672935/146C19B01EA067D56DF32B9F9B23D0C15C69C323/ + ImageURL: http://cloud-3.steamusercontent.com/ugc/952965089460805886/ED3351E07CA39E86E0ACFA75E23BF8B946DA2EF6/ + WidthScale: 0.0 +Description: '' +GMNotes: '' +GUID: b713e7 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Tile Dunwich Legacy Campaign Log b713e7.ttslua' +LuaScriptState: '{"checkbox":[],"counter":[{"hideBG":true,"pos":[-0.7,0.1,-0.45],"size":400,"value":0},{"hideBG":true,"pos":[-0.52,0.1,-0.45],"size":400,"value":0},{"hideBG":true,"pos":[-0.517,0.1,-0.55],"size":300,"value":0},{"hideBG":true,"pos":[-0.274,0.1,-0.445],"size":400,"value":0},{"hideBG":true,"pos":[-0.074,0.1,-0.445],"size":400,"value":0},{"hideBG":true,"pos":[-0.061,0.1,-0.54],"size":300,"value":0},{"hideBG":true,"pos":[0.153,0.1,-0.44],"size":400,"value":0},{"hideBG":true,"pos":[0.379,0.1,-0.44],"size":400,"value":0},{"hideBG":true,"pos":[0.38,0.1,-0.54],"size":300,"value":0},{"hideBG":true,"pos":[0.614,0.1,-0.44],"size":400,"value":0},{"hideBG":true,"pos":[0.82,0.1,-0.44],"size":400,"value":0},{"hideBG":true,"pos":[0.827,0.1,-0.54],"size":300,"value":0}],"textbox":[{"alignment":2,"font_size":150,"label":"Click + to type","pos":[-0.637,0.1,-0.7],"rows":1,"value":"","width":2000},{"alignment":2,"font_size":150,"label":"Click + to type","pos":[-0.637,0.1,-0.625],"rows":1,"value":"","width":2000},{"alignment":2,"font_size":150,"label":"Click + to type","pos":[-0.637,0.1,-0.25],"rows":7,"value":"","width":2000},{"alignment":2,"font_size":150,"label":"Click + to type","pos":[-0.2,0.1,-0.7],"rows":1,"value":"","width":2000},{"alignment":2,"font_size":150,"label":"Click + to type","pos":[-0.2,0.1,-0.625],"rows":1,"value":"","width":2000},{"alignment":2,"font_size":150,"label":"Click + to type","pos":[-0.2,0.1,-0.25],"rows":7,"value":"","width":2000},{"alignment":2,"font_size":150,"label":"Click + to type","pos":[0.241,0.1,-0.7],"rows":1,"value":"","width":2000},{"alignment":2,"font_size":150,"label":"Click + to type","pos":[0.237,0.1,-0.625],"rows":1,"value":"","width":2000},{"alignment":2,"font_size":150,"label":"Click + to type","pos":[0.24,0.1,-0.25],"rows":7,"value":"","width":2000},{"alignment":2,"font_size":150,"label":"Click + to type","pos":[0.671,0.1,-0.7],"rows":1,"value":"","width":2000},{"alignment":2,"font_size":150,"label":"Click + to type","pos":[0.671,0.1,-0.625],"rows":1,"value":"","width":2000},{"alignment":2,"font_size":150,"label":"Click + to type","pos":[0.671,0.1,-0.25],"rows":7,"value":"","width":2000},{"alignment":2,"font_size":200,"label":"Click + to type","pos":[-0.45,0.1,0.55],"rows":18,"value":"","width":3500},{"alignment":2,"font_size":200,"label":"Click + to type","pos":[0.384,0.1,0.228],"rows":8,"value":"","width":3500},{"alignment":2,"font_size":200,"label":"Click + to type","pos":[0.384,0.1,0.69],"rows":8,"value":"","width":3500}]}' +Name: Custom_Tile +Nickname: Dunwich Legacy Campaign Log +Snap: true +States: + '2': + Autoraise: true + ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 + CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.1 + Type: 0 + ImageScalar: 1.0 + ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/959719855118672935/146C19B01EA067D56DF32B9F9B23D0C15C69C323/ + ImageURL: http://cloud-3.steamusercontent.com/ugc/952965089460806270/411287859209F7707FA87FCFA301C9E855141305/ + WidthScale: 0.0 + Description: '' + GMNotes: '' + GUID: 72c448 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: "--[[ Character Sheet Template by: MrStump\r\n\r\nYou can set\ + \ up your own character sheet if you follow these steps.\r\n\r\nStep 1) Change\ + \ the character sheet image\r\n -Right click on the character sheet, click\ + \ Custom\r\n -Replace the image URL with one for your character sheet\r\n\ + \ -Click import, make sure your sheet loads\r\n -SAVE THE GAME (the table\ + \ setup)\r\n -LOAD FROM THAT SAVE YOU JUST MADE\r\n\r\nStep 2) Edit script\ + \ to fit your character sheet\r\n -Below you will see some general options,\ + \ and then the big data table\r\n -The data table is what determines how\ + \ many of which buttons are made\r\n -Checkboxes\r\n -Counters\r\ + \n -Textboxes\r\n -By default, there are 3 of each. You can add more\ + \ or remove entries\r\n -If you intend to add/remove, be sure only to add/remove\ + \ ENTRIES\r\n -This is what an entry looks like:\r\n {\r\n\ + \ pos = {-0.977,0.1,-0.589},\r\n size = 800,\r\ + \n state = false\r\n },\r\n -Deleting the whole\ + \ thing would remove that specific item on the sheet\r\n -Copy and pasting\ + \ it after another entry would create another\r\n -Each entry type has unique\ + \ data points (pos, size, state, etc)\r\n -Do not try to add in your\ + \ own data points or remove them individually\r\n -There is a summary\ + \ of what each point does at the top of its category\r\n\r\nStep 3) Save and\ + \ check script changes\r\n -Hit Save & Apply in the script window to save\ + \ your code\r\n -You can edit your code as needed and Save+Apply as often\ + \ as needed\r\n -When you are finished, make disableSave = false below then\ + \ Save+apply\r\n -This enables saving, so your sheet will remember whats\ + \ on it.\r\n\r\nBonus) Finding/Editing Positions for elements\r\n I have\ + \ included a tool to get positions for buttons in {x,y,z} form\r\n Place\ + \ it where you want the center of your element to be\r\n Then copy the table\ + \ from the notes (lower right of screen)\r\n You can highlight it and\ + \ CTRL+C\r\n Paste it into the data table where needed (pos=)\r\n If you\ + \ want to manually tweek the values:\r\n {0,0,0} is the center of the\ + \ character sheet\r\n {1,0,0} is right, {-1,0,0} is left\r\n {0,0,-1}\ + \ is up, {0,0,1} is down\r\n 0.1 for Y is the height off of the page.\r\ + \n If it was 0, it would be down inside the model of the sheet\r\n\ + \r\nBegin editing below: ]]\r\n\r\n--Set this to true while editing and false\ + \ when you have finished\r\ndisableSave = false\r\n--Remember to set this to\ + \ false once you are done making changes\r\n--Then, after you save & apply it,\ + \ save your game too\r\n\r\n--Color information for button text (r,g,b, values\ + \ of 0-1)\r\nbuttonFontColor = {0,0,0}\r\n--Color information for button background\r\ + \nbuttonColor = {1,1,1}\r\n--Change scale of button (Avoid changing if possible)\r\ + \nbuttonScale = {0.1,0.1,0.1}\r\n\r\n--This is the button placement information\r\ + \ndefaultButtonData = {\r\n --Add checkboxes\r\n checkbox = {\r\n \ + \ --[[\r\n pos = the position (pasted from the helper tool)\r\n\ + \ size = height/width/font_size for checkbox\r\n state = default\ + \ starting value for checkbox (true=checked, false=not)\r\n ]]\r\n \ + \ --1 checkbox\r\n {\r\n pos = {-0.847,0.1,-0.649},\r\ + \n size = 250,\r\n state = false\r\n },\r\n \ + \ --2 checkbox\r\n {\r\n pos = {-0.514,0.1,-0.733},\r\ + \n size = 250,\r\n state = false\r\n },\r\n \ + \ --3 checkbox\r\n {\r\n pos = {-0.512,0.1,-0.612},\r\ + \n size = 250,\r\n state = false\r\n },\r\n \ + \ --4 checkbox\r\n {\r\n pos = {0.175,0.1,-0.708},\r\ + \n size = 250,\r\n state = false\r\n },\r\n \ + \ --5 checkbox\r\n {\r\n pos = {0.174,0.1,-0.574},\r\ + \n size = 250,\r\n state = false\r\n },\r\n \ + \ --6 checkbox\r\n {\r\n pos = {-0.035,0.1,-0.408},\r\ + \n size = 250,\r\n state = false\r\n },\r\n \ + \ --7 checkbox\r\n {\r\n pos = {-0.818,0.1,-0.373},\r\ + \n size = 250,\r\n state = false\r\n },\r\n \ + \ --8 checkbox\r\n {\r\n pos = {-0.361,0.1,-0.235},\r\ + \n size = 250,\r\n state = false\r\n },\r\n \ + \ --9 checkbox\r\n {\r\n pos = {0.323,0.1,-0.091},\r\ + \n size = 250,\r\n state = false\r\n },\r\n \ + \ --10 checkbox\r\n {\r\n pos = {-0.099,0.1,0.027},\r\ + \n size = 250,\r\n state = false\r\n },\r\n \ + \ --11 checkbox\r\n {\r\n pos = {-0.778,0.1,0.126},\r\ + \n size = 250,\r\n state = false\r\n },\r\n \ + \ --12 checkbox\r\n {\r\n pos = {-0.256,0.1,0.296},\r\ + \n size = 250,\r\n state = false\r\n },\r\n \ + \ --13 checkbox\r\n {\r\n pos = {0.179,0.1,0.461},\r\ + \n size = 250,\r\n state = false\r\n },\r\n \ + \ --14 checkbox\r\n {\r\n pos = {0.289,0.1,0.726},\r\ + \n size = 250,\r\n state = false\r\n },\r\n \ + \ --End of checkboxes\r\n },\r\n --Add counters that have a + and\ + \ - button\r\n counter = {\r\n --[[\r\n pos = the position\ + \ (pasted from the helper tool)\r\n size = height/width/font_size for\ + \ counter\r\n value = default starting value for counter\r\n \ + \ hideBG = if background of counter is hidden (true=hidden, false=not)\r\n \ + \ ]]\r\n --Slot one counter 1\r\n\r\n --End of counters\r\ + \n },\r\n --Add editable text boxes\r\n textbox = {\r\n --[[\r\ + \n pos = the position (pasted from the helper tool)\r\n \ + \ rows = how many lines of text you want for this box\r\n width\ + \ = how wide the text box is\r\n font_size = size of text. This and\ + \ \"rows\" effect overall height\r\n label = what is shown when there\ + \ is no text. \"\" = nothing\r\n value = text entered into box. \"\ + \" = nothing\r\n alignment = Number to indicate how you want text aligned\r\ + \n (1=Automatic, 2=Left, 3=Center, 4=Right, 5=Justified)\r\ + \n ]]\r\n\r\n --Campaign Notes\r\n {\r\n pos\ + \ = {-0.4,0.1,0.652},\r\n rows =6,\r\n width\ + \ = 3500,\r\n font_size = 200,\r\n label = \"\ + Click to type\",\r\n value = \"\",\r\n alignment =\ + \ 2\r\n },\r\n --End of textboxes\r\n }\r\n}\r\n\r\n\r\n\r\n\ + --Lua beyond this point, I recommend doing something more fun with your life\r\ + \n\r\n\r\n\r\n--Save function\r\nfunction updateSave()\r\n saved_data = JSON.encode(ref_buttonData)\r\ + \n if disableSave==true then saved_data=\"\" end\r\n self.script_state\ + \ = saved_data\r\nend\r\n\r\n--Startup procedure\r\nfunction onload(saved_data)\r\ + \n if disableSave==true then saved_data=\"\" end\r\n if saved_data ~=\ + \ \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n \ + \ ref_buttonData = loaded_data\r\n else\r\n ref_buttonData = defaultButtonData\r\ + \n end\r\n\r\n spawnedButtonCount = 0\r\n createCheckbox()\r\n createCounter()\r\ + \n createTextbox()\r\nend\r\n\r\n\r\n\r\n--Click functions for buttons\r\n\ + \r\n\r\n\r\n--Checks or unchecks the given box\r\nfunction click_checkbox(tableIndex,\ + \ buttonIndex)\r\n if ref_buttonData.checkbox[tableIndex].state == true then\r\ + \n ref_buttonData.checkbox[tableIndex].state = false\r\n self.editButton({index=buttonIndex,\ + \ label=\"\"})\r\n else\r\n ref_buttonData.checkbox[tableIndex].state\ + \ = true\r\n self.editButton({index=buttonIndex, label=string.char(10008)})\r\ + \n end\r\n updateSave()\r\nend\r\n\r\n--Applies value to given counter\ + \ display\r\nfunction click_counter(tableIndex, buttonIndex, amount)\r\n \ + \ ref_buttonData.counter[tableIndex].value = ref_buttonData.counter[tableIndex].value\ + \ + amount\r\n self.editButton({index=buttonIndex, label=ref_buttonData.counter[tableIndex].value})\r\ + \n updateSave()\r\nend\r\n\r\n--Updates saved value for given text box\r\n\ + function click_textbox(i, value, selected)\r\n if selected == false then\r\ + \n ref_buttonData.textbox[i].value = value\r\n updateSave()\r\n\ + \ end\r\nend\r\n\r\n--Dud function for if you have a background on a counter\r\ + \nfunction click_none() end\r\n\r\n\r\n\r\n--Button creation\r\n\r\n\r\n\r\n\ + --Makes checkboxes\r\nfunction createCheckbox()\r\n for i, data in ipairs(ref_buttonData.checkbox)\ + \ do\r\n --Sets up reference function\r\n local buttonNumber =\ + \ spawnedButtonCount\r\n local funcName = \"checkbox\"..i\r\n \ + \ local func = function() click_checkbox(i, buttonNumber) end\r\n self.setVar(funcName,\ + \ func)\r\n --Sets up label\r\n local label = \"\"\r\n \ + \ if data.state==true then label=string.char(10008) end\r\n --Creates\ + \ button and counts it\r\n self.createButton({\r\n label=label,\ + \ click_function=funcName, function_owner=self,\r\n position=data.pos,\ + \ height=data.size, width=data.size,\r\n font_size=data.size, scale=buttonScale,\r\ + \n color=buttonColor, font_color=buttonFontColor\r\n })\r\n\ + \ spawnedButtonCount = spawnedButtonCount + 1\r\n end\r\nend\r\n\r\ + \n--Makes counters\r\nfunction createCounter()\r\n for i, data in ipairs(ref_buttonData.counter)\ + \ do\r\n --Sets up display\r\n local displayNumber = spawnedButtonCount\r\ + \n --Sets up label\r\n local label = data.value\r\n --Sets\ + \ height/width for display\r\n local size = data.size\r\n if data.hideBG\ + \ == true then size = 0 end\r\n --Creates button and counts it\r\n \ + \ self.createButton({\r\n label=label, click_function=\"click_none\"\ + , function_owner=self,\r\n position=data.pos, height=size, width=size,\r\ + \n font_size=data.size, scale=buttonScale,\r\n color=buttonColor,\ + \ font_color=buttonFontColor\r\n })\r\n spawnedButtonCount = spawnedButtonCount\ + \ + 1\r\n\r\n --Sets up add 1\r\n local funcName = \"counterAdd\"\ + ..i\r\n local func = function() click_counter(i, displayNumber, 1) end\r\ + \n self.setVar(funcName, func)\r\n --Sets up label\r\n \ + \ local label = \"+\"\r\n --Sets up position\r\n local offsetDistance\ + \ = (data.size/2 + data.size/4) * (buttonScale[1] * 0.002)\r\n local\ + \ pos = {data.pos[1] + offsetDistance, data.pos[2], data.pos[3]}\r\n \ + \ --Sets up size\r\n local size = data.size / 2\r\n --Creates\ + \ button and counts it\r\n self.createButton({\r\n label=label,\ + \ click_function=funcName, function_owner=self,\r\n position=pos,\ + \ height=size, width=size,\r\n font_size=size, scale=buttonScale,\r\ + \n color=buttonColor, font_color=buttonFontColor\r\n })\r\n\ + \ spawnedButtonCount = spawnedButtonCount + 1\r\n\r\n --Sets up\ + \ subtract 1\r\n local funcName = \"counterSub\"..i\r\n local\ + \ func = function() click_counter(i, displayNumber, -1) end\r\n self.setVar(funcName,\ + \ func)\r\n --Sets up label\r\n local label = \"-\"\r\n \ + \ --Set up position\r\n local pos = {data.pos[1] - offsetDistance, data.pos[2],\ + \ data.pos[3]}\r\n --Creates button and counts it\r\n self.createButton({\r\ + \n label=label, click_function=funcName, function_owner=self,\r\n\ + \ position=pos, height=size, width=size,\r\n font_size=size,\ + \ scale=buttonScale,\r\n color=buttonColor, font_color=buttonFontColor\r\ + \n })\r\n spawnedButtonCount = spawnedButtonCount + 1\r\n end\r\ + \nend\r\n\r\nfunction createTextbox()\r\n for i, data in ipairs(ref_buttonData.textbox)\ + \ do\r\n --Sets up reference function\r\n local funcName = \"\ + textbox\"..i\r\n local func = function(_,_,val,sel) click_textbox(i,val,sel)\ + \ end\r\n self.setVar(funcName, func)\r\n\r\n self.createInput({\r\ + \n input_function = funcName,\r\n function_owner = self,\r\ + \n label = data.label,\r\n alignment = data.alignment,\r\ + \n position = data.pos,\r\n scale = buttonScale,\r\ + \n width = data.width,\r\n height = (data.font_size*data.rows)+24,\r\ + \n font_size = data.font_size,\r\n color \ + \ = buttonColor,\r\n font_color = buttonFontColor,\r\n \ + \ value = data.value,\r\n })\r\n end\r\nend\r\n" + LuaScriptState: '{"checkbox":[{"pos":[-0.847,0.1,-0.649],"size":250,"state":false},{"pos":[-0.514,0.1,-0.733],"size":250,"state":false},{"pos":[-0.512,0.1,-0.612],"size":250,"state":false},{"pos":[0.175,0.1,-0.708],"size":250,"state":false},{"pos":[0.174,0.1,-0.574],"size":250,"state":false},{"pos":[-0.035,0.1,-0.408],"size":250,"state":false},{"pos":[-0.818,0.1,-0.373],"size":250,"state":false},{"pos":[-0.361,0.1,-0.235],"size":250,"state":false},{"pos":[0.323,0.1,-0.091],"size":250,"state":false},{"pos":[-0.099,0.1,0.027],"size":250,"state":false},{"pos":[-0.778,0.1,0.126],"size":250,"state":false},{"pos":[-0.256,0.1,0.296],"size":250,"state":false},{"pos":[0.179,0.1,0.461],"size":250,"state":false},{"pos":[0.289,0.1,0.726],"size":250,"state":false}],"counter":[],"textbox":[{"alignment":2,"font_size":200,"label":"Click + to type","pos":[-0.4,0.1,0.652],"rows":6,"value":"","width":3500}]}' + Name: Custom_Tile + Nickname: Dunwich Legacy Campaign Log + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 7.70183563 + posY: 1.27466965 + posZ: 75.16926 + rotX: 0.0208044965 + rotY: 270.014923 + rotZ: 0.0167765152 + scaleX: 6.5 + scaleY: 1.0 + scaleZ: 6.5 + XmlUI: '' +Sticky: true +Tooltip: true +Transform: + posX: -1.3494 + posY: 1.47542429 + posZ: -27.0534039 + rotX: 359.920135 + rotY: 270.000549 + rotZ: 0.0168708153 + scaleX: 6.5 + scaleY: 1.0 + scaleZ: 6.5 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a.ttslua b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a.ttslua new file mode 100644 index 000000000..6f03e2324 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a.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,5,-2}, rotation={0,0,0}, height=250, width=600, + font_size=150, 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={1.5,5,2}, rotation={0,0,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={-1.2,5,2}, rotation={0,0,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={-3.5,5,2}, rotation={0,0,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.7,1,-2}, rotation={0,0,0}, height=280, width=600, + font_size=200, color={0,0,0}, font_color={1,1,1} + }) + self.createButton({ + label="Recall", click_function="buttonClick_recall", function_owner=self, + position={-0.7,1,-2}, rotation={0,0,0}, height=280, width=650, + font_size=200, color={0,0,0}, font_color={1,1,1} + }) +-- self.createButton({ +-- label="Setup", click_function="buttonClick_setup", function_owner=self, +-- position={-6,1,0}, rotation={0,90,0}, height=500, width=1200, +-- font_size=350, 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 \ No newline at end of file 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 new file mode 100644 index 000000000..ba4920a32 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a.yaml @@ -0,0 +1,70 @@ +Autoraise: true +ColorDiffuse: + b: 0.9999998 + g: 0.992168248 + r: 0.9999998 +ContainedObjects: +- !include 'Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag + 3 Echoes of the Past 42d2dc.yaml' +- !include 'Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag + 2 The Last King 6730a1.yaml' +- !include 'Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag + 1 Curtain Call 83ccd4.yaml' +- !include 'Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Tile Carcosa + Campaign Log ae8317.yaml' +- !include 'Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag + 5 A Phantom of Truth bd4167.yaml' +- !include 'Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag + 8 Dim Carcosa ce5d30.yaml' +- !include 'Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag + 7 Black Stars Rise dd8b0d.yaml' +- !include 'Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag + 4 The Unspeakable Oath e7efa6.yaml' +- !include 'Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag + 6 The Pallid Mask eb48ff.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/762723517667556656/9638E8CE7F209B50634B202C9EF4B0BDB4993BBB/ + MaterialIndex: 3 + MeshURL: http://pastebin.com/raw.php?i=uWAmuNZ2 + NormalURL: '' + TypeIndex: 6 +Description: '' +GMNotes: '' +GUID: e9889a +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Model_Bag Return to The Path to Carcosa e9889a.ttslua' +LuaScriptState: '{"ml":{"42d2dc":{"lock":false,"pos":{"x":12.2501,"y":1.4684,"z":13.4383},"rot":{"x":359.9201,"y":270.0131,"z":0.0169}},"6730a1":{"lock":false,"pos":{"x":12.2501,"y":1.4709,"z":22.0786},"rot":{"x":359.9201,"y":270.0187,"z":0.0168}},"83ccd4":{"lock":false,"pos":{"x":12.2509,"y":1.4735,"z":30.8285},"rot":{"x":359.9201,"y":270.0611,"z":0.0168}},"ae8317":{"lock":false,"pos":{"x":-1.4655,"y":1.4756,"z":-26.9304},"rot":{"x":359.9201,"y":270.0018,"z":0.0169}},"bd4167":{"lock":false,"pos":{"x":12.2493,"y":1.4633,"z":-3.9185},"rot":{"x":359.9201,"y":270.0456,"z":0.0168}},"ce5d30":{"lock":false,"pos":{"x":12.2502,"y":1.4556,"z":-30.055},"rot":{"x":359.9201,"y":269.9915,"z":0.0169}},"dd8b0d":{"lock":false,"pos":{"x":12.2508,"y":1.4582,"z":-21.3056},"rot":{"x":359.9201,"y":270.0539,"z":0.0168}},"e7efa6":{"lock":false,"pos":{"x":12.2482,"y":1.4658,"z":4.6903},"rot":{"x":359.9201,"y":270.0817,"z":0.0168}},"eb48ff":{"lock":false,"pos":{"x":12.2491,"y":1.4607,"z":-12.6652},"rot":{"x":359.9201,"y":270.0427,"z":0.0168}}}}' +MaterialIndex: -1 +MeshIndex: -1 +Name: Custom_Model_Bag +Nickname: Return to The Path to Carcosa +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 63.0267868 + posY: 1.76423073 + posZ: 0.140356988 + rotX: 359.9201 + rotY: 270.0025 + rotZ: 0.0168692078 + scaleX: 2.00002885 + scaleY: 0.10587021 + scaleZ: 1.69295752 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 1 Curtain Call 83ccd4.ttslua b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 1 Curtain Call 83ccd4.ttslua new file mode 100644 index 000000000..46067f58e --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 1 Curtain Call 83ccd4.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.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.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 Return to The Path to Carcosa e9889a/Custom_Model_Bag 1 Curtain Call 83ccd4.yaml b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 1 Curtain Call 83ccd4.yaml new file mode 100644 index 000000000..4938487f3 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 1 Curtain Call 83ccd4.yaml @@ -0,0 +1,83 @@ +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 1 Curtain Call 83ccd4/Custom_Tile The Path to Carcosa + 16562e.yaml' +- !include 'Custom_Model_Bag 1 Curtain Call 83ccd4/Deck Encounter Deck 1c1bc8.yaml' +- !include 'Custom_Model_Bag 1 Curtain Call 83ccd4/Card Backstage 37e3f9.yaml' +- !include 'Custom_Model_Bag 1 Curtain Call 83ccd4/Card Balcony 3e4d11.yaml' +- !include 'Custom_Model_Bag 1 Curtain Call 83ccd4/Custom_Tile 44b0c5.yaml' +- !include 'Custom_Model_Bag 1 Curtain Call 83ccd4/Custom_Tile 4906e9.yaml' +- !include 'Custom_Model_Bag 1 Curtain Call 83ccd4/Custom_Tile 57f68a.yaml' +- !include 'Custom_Model_Bag 1 Curtain Call 83ccd4/Card Theatre 592384.yaml' +- !include 'Custom_Model_Bag 1 Curtain Call 83ccd4/Card Lobby 67a96b.yaml' +- !include 'Custom_Model_Bag 1 Curtain Call 83ccd4/Card Setup 93a42f.yaml' +- !include 'Custom_Model_Bag 1 Curtain Call 83ccd4/Custom_Tile 9b59f2.yaml' +- !include 'Custom_Model_Bag 1 Curtain Call 83ccd4/Deck Agenda Deck 9e67da.yaml' +- !include 'Custom_Model_Bag 1 Curtain Call 83ccd4/Card Scenario aa08d4.yaml' +- !include 'Custom_Model_Bag 1 Curtain Call 83ccd4/Custom_Model_Bag Set-aside ab4d4e.yaml' +- !include 'Custom_Model_Bag 1 Curtain Call 83ccd4/Deck Act Deck f28046.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/762723517662106566/083CDEF3D1F585532F1F72EECC4F81AE8E391B6D/ + MaterialIndex: 3 + MeshURL: https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj + NormalURL: '' + TypeIndex: 6 +Description: '' +GMNotes: '' +GUID: 83ccd4 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Model_Bag 1 Curtain Call 83ccd4.ttslua' +LuaScriptState: '{"ml":{"16562e":{"lock":false,"pos":{"x":-3.8355,"y":1.5823,"z":-15.4104},"rot":{"x":359.9197,"y":269.9812,"z":0.0169}},"1c1bc8":{"lock":false,"pos":{"x":-3.9277,"y":1.7877,"z":5.7572},"rot":{"x":359.9197,"y":270,"z":180.0168}},"37e3f9":{"lock":false,"pos":{"x":-23.6766,"y":1.684,"z":-7.7},"rot":{"x":359.9201,"y":269.9998,"z":0.0169}},"3e4d11":{"lock":false,"pos":{"x":-17.1199,"y":1.6771,"z":-0.0301},"rot":{"x":359.9201,"y":269.9998,"z":0.0169}},"44b0c5":{"lock":false,"pos":{"x":-20.5401,"y":1.6102,"z":0.1872},"rot":{"x":0.0799,"y":90.0061,"z":359.9831}},"4906e9":{"lock":false,"pos":{"x":-23.6765,"y":1.6134,"z":-3.83},"rot":{"x":359.9831,"y":0.0004,"z":359.9201}},"57f68a":{"lock":false,"pos":{"x":-23.6765,"y":1.6157,"z":3.86},"rot":{"x":359.9831,"y":0.0003,"z":359.92}},"592384":{"lock":false,"pos":{"x":-23.6765,"y":1.6862,"z":-0.03},"rot":{"x":359.9201,"y":269.9999,"z":0.0169}},"67a96b":{"lock":false,"pos":{"x":-23.6766,"y":1.6885,"z":7.57},"rot":{"x":359.9201,"y":270,"z":0.0169}},"93a42f":{"lock":false,"pos":{"x":-0.2009,"y":1.6504,"z":-10.4757},"rot":{"x":359.9197,"y":270.0246,"z":0.0168}},"9b59f2":{"lock":false,"pos":{"x":-20.3102,"y":1.6109,"z":3.7456},"rot":{"x":359.9316,"y":315,"z":359.9554}},"9e67da":{"lock":false,"pos":{"x":-2.7248,"y":1.664,"z":0.3733},"rot":{"x":0.0168,"y":180.0411,"z":0.0803}},"aa08d4":{"lock":false,"pos":{"x":-3.9557,"y":1.6556,"z":-10.4412},"rot":{"x":359.9197,"y":270.0086,"z":0.0168}},"ab4d4e":{"lock":false,"pos":{"x":1.696,"y":1.5583,"z":14.2787},"rot":{"x":359.9551,"y":224.99,"z":0.0687}},"f28046":{"lock":false,"pos":{"x":-2.6886,"y":1.6372,"z":-5.0485},"rot":{"x":0.0168,"y":180,"z":0.0803}}}}' +MaterialIndex: -1 +MeshIndex: -1 +Name: Custom_Model_Bag +Nickname: '1: Curtain Call' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 12.2509012 + posY: 1.47350788 + posZ: 30.8285065 + rotX: 359.9201 + rotY: 270.06134 + rotZ: 0.016788356 + scaleX: 2.21 + scaleY: 0.46 + scaleZ: 2.42 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 1 Curtain Call 83ccd4/Card Backstage 37e3f9.yaml b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 1 Curtain Call 83ccd4/Card Backstage 37e3f9.yaml new file mode 100644 index 000000000..44ad4e481 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 1 Curtain Call 83ccd4/Card Backstage 37e3f9.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 232004 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378685352/22FD056BAF1966FE2D1AC46FC1BF90C1A03A1404/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378686413/C1688C1A909FDC7357EB3EEFADAB1FBD5818BD3E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 37e3f9 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Backstage +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -23.6766 + posY: 1.683962 + posZ: -7.70000029 + rotX: 359.9201 + rotY: 269.999725 + rotZ: 0.0168765113 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 1 Curtain Call 83ccd4/Card Balcony 3e4d11.yaml b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 1 Curtain Call 83ccd4/Card Balcony 3e4d11.yaml new file mode 100644 index 000000000..feada4623 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 1 Curtain Call 83ccd4/Card Balcony 3e4d11.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 232003 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378685352/22FD056BAF1966FE2D1AC46FC1BF90C1A03A1404/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378686413/C1688C1A909FDC7357EB3EEFADAB1FBD5818BD3E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 3e4d11 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Balcony +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -17.1199 + posY: 1.67707765 + posZ: -0.0301004611 + rotX: 359.9201 + rotY: 269.999756 + rotZ: 0.0168765746 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 1 Curtain Call 83ccd4/Card Lobby 67a96b.yaml b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 1 Curtain Call 83ccd4/Card Lobby 67a96b.yaml new file mode 100644 index 000000000..b31548f12 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 1 Curtain Call 83ccd4/Card Lobby 67a96b.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 232002 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378685352/22FD056BAF1966FE2D1AC46FC1BF90C1A03A1404/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378686413/C1688C1A909FDC7357EB3EEFADAB1FBD5818BD3E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 67a96b +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Lobby +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -23.6766 + posY: 1.68845844 + posZ: 7.569999 + rotX: 359.9201 + rotY: 269.999817 + rotZ: 0.0168762989 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 1 Curtain Call 83ccd4/Card Scenario aa08d4.yaml b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 1 Curtain Call 83ccd4/Card Scenario aa08d4.yaml new file mode 100644 index 000000000..70c7c6ee5 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 1 Curtain Call 83ccd4/Card Scenario aa08d4.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 232011 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378685352/22FD056BAF1966FE2D1AC46FC1BF90C1A03A1404/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378686413/C1688C1A909FDC7357EB3EEFADAB1FBD5818BD3E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Curtain Call +GMNotes: '' +GUID: aa08d4 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Scenario +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.95570016 + posY: 1.65564775 + posZ: -10.4412012 + rotX: 359.919739 + rotY: 270.0086 + rotZ: 0.016828822 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 1 Curtain Call 83ccd4/Card Setup 93a42f.yaml b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 1 Curtain Call 83ccd4/Card Setup 93a42f.yaml new file mode 100644 index 000000000..78ee4ce75 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 1 Curtain Call 83ccd4/Card Setup 93a42f.yaml @@ -0,0 +1,42 @@ +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/762723517659499792/63775A11C2A49441C268121108C8EBFCF512E2A9/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723517659500387/BFF1AFFD515364F0BFD336A6CE9970BE1DD04B13/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Return to Curtain Call +GMNotes: '' +GUID: 93a42f +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Setup +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -0.20089981 + posY: 1.65037823 + posZ: -10.4757023 + rotX: 359.919739 + rotY: 270.0246 + rotZ: 0.0168064684 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 1 Curtain Call 83ccd4/Card Theatre 592384.yaml b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 1 Curtain Call 83ccd4/Card Theatre 592384.yaml new file mode 100644 index 000000000..914b473f3 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 1 Curtain Call 83ccd4/Card Theatre 592384.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 232001 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378685352/22FD056BAF1966FE2D1AC46FC1BF90C1A03A1404/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378686413/C1688C1A909FDC7357EB3EEFADAB1FBD5818BD3E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: '592384' +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Theatre +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -23.6765 + posY: 1.68622041 + posZ: -0.0300002862 + rotX: 359.9201 + rotY: 269.999939 + rotZ: 0.0168761425 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 1 Curtain Call 83ccd4/Custom_Model_Bag Set-aside ab4d4e.yaml b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 1 Curtain Call 83ccd4/Custom_Model_Bag Set-aside ab4d4e.yaml new file mode 100644 index 000000000..88cf69f67 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 1 Curtain Call 83ccd4/Custom_Model_Bag Set-aside ab4d4e.yaml @@ -0,0 +1,59 @@ +Autoraise: true +ColorDiffuse: + b: 0.02148666 + g: 0.00100758043 + r: 0.02148666 +ContainedObjects: +- !include 'Custom_Model_Bag Set-aside ab4d4e/Deck Backstage Doorway 7865e0.yaml' +- !include 'Custom_Model_Bag Set-aside ab4d4e/Deck Lobby Doorway d1d7e7.yaml' +- !include 'Custom_Model_Bag Set-aside ab4d4e/Card Royal Emissary 58a463.yaml' +- !include 'Custom_Model_Bag Set-aside ab4d4e/Card The Man in the Pallid Mask 6720ef.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: Curtain Call +GMNotes: '' +GUID: ab4d4e +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +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.69600117 + posY: 1.55831742 + posZ: 14.2787018 + rotX: 359.955139 + rotY: 224.990051 + rotZ: 0.06867882 + scaleX: 2.0 + scaleY: 2.0 + scaleZ: 2.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 1 Curtain Call 83ccd4/Custom_Model_Bag Set-aside ab4d4e/Card Royal Emissary 58a463.yaml b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 1 Curtain Call 83ccd4/Custom_Model_Bag Set-aside ab4d4e/Card Royal Emissary 58a463.yaml new file mode 100644 index 000000000..92d7f74ca --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 1 Curtain Call 83ccd4/Custom_Model_Bag Set-aside ab4d4e/Card Royal Emissary 58a463.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 232201 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: Messenger from Aldebaran +GMNotes: '' +GUID: 58a463 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Royal Emissary +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -25.44079 + posY: 3.62842774 + posZ: -53.2503166 + rotX: 359.9219 + rotY: 270.0002 + rotZ: 0.0172869526 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 1 Curtain Call 83ccd4/Custom_Model_Bag Set-aside ab4d4e/Card The Man in the Pallid Mask 6720ef.yaml b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 1 Curtain Call 83ccd4/Custom_Model_Bag Set-aside ab4d4e/Card The Man in the Pallid Mask 6720ef.yaml new file mode 100644 index 000000000..b58a34b0b --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 1 Curtain Call 83ccd4/Custom_Model_Bag Set-aside ab4d4e/Card The Man in the Pallid Mask 6720ef.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Humanoid. Elite. +GMNotes: '' +GUID: 6720ef +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: The Man in the Pallid Mask +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -25.1465759 + posY: 3.6281867 + posZ: -51.9149551 + rotX: 359.9336 + rotY: 270.0005 + rotZ: 0.0169208422 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 1 Curtain Call 83ccd4/Custom_Model_Bag Set-aside ab4d4e/Deck Backstage Doorway 7865e0.yaml b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 1 Curtain Call 83ccd4/Custom_Model_Bag Set-aside ab4d4e/Deck Backstage Doorway 7865e0.yaml new file mode 100644 index 000000000..efc2fe2da --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 1 Curtain Call 83ccd4/Custom_Model_Bag Set-aside ab4d4e/Deck Backstage Doorway 7865e0.yaml @@ -0,0 +1,222 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 232008 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378685352/22FD056BAF1966FE2D1AC46FC1BF90C1A03A1404/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378686413/C1688C1A909FDC7357EB3EEFADAB1FBD5818BD3E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Private. + GMNotes: '' + GUID: 0797a9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Backstage Doorway + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -68.9427643 + posY: 1.82297826 + posZ: -16.6185379 + rotX: 359.920715 + rotY: 270.0002 + rotZ: 0.01611315 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232905 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2329': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/762723517659499792/63775A11C2A49441C268121108C8EBFCF512E2A9/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723517659500387/BFF1AFFD515364F0BFD336A6CE9970BE1DD04B13/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Private. + GMNotes: '' + GUID: bece69 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Backstage Doorway + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -9.483305 + posY: 1.72477973 + posZ: 31.37634 + rotX: 359.94046 + rotY: 269.999023 + rotZ: 0.0173245538 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232010 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378685352/22FD056BAF1966FE2D1AC46FC1BF90C1A03A1404/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378686413/C1688C1A909FDC7357EB3EEFADAB1FBD5818BD3E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Private. + GMNotes: '' + GUID: e83ec9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Backstage Doorway + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -9.380555 + posY: 1.72745633 + posZ: 31.24766 + rotX: 359.9205 + rotY: 270.047882 + rotZ: 179.994141 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232009 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378685352/22FD056BAF1966FE2D1AC46FC1BF90C1A03A1404/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378686413/C1688C1A909FDC7357EB3EEFADAB1FBD5818BD3E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Private. + GMNotes: '' + GUID: b75450 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Backstage Doorway + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -9.435295 + posY: 1.74107111 + posZ: 31.0950775 + rotX: 359.937317 + rotY: 270.017029 + rotZ: 180.016113 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378685352/22FD056BAF1966FE2D1AC46FC1BF90C1A03A1404/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378686413/C1688C1A909FDC7357EB3EEFADAB1FBD5818BD3E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + '2329': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/762723517659499792/63775A11C2A49441C268121108C8EBFCF512E2A9/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723517659500387/BFF1AFFD515364F0BFD336A6CE9970BE1DD04B13/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 232008 +- 232905 +- 232010 +- 232009 +Description: '' +GMNotes: '' +GUID: 7865e0 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Backstage Doorway +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -5.389052 + posY: 2.57703018 + posZ: 19.06181 + rotX: 359.920135 + rotY: 270.000122 + rotZ: 0.0168782771 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 1 Curtain Call 83ccd4/Custom_Model_Bag Set-aside ab4d4e/Deck Lobby Doorway d1d7e7.yaml b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 1 Curtain Call 83ccd4/Custom_Model_Bag Set-aside ab4d4e/Deck Lobby Doorway d1d7e7.yaml new file mode 100644 index 000000000..73693af1f --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 1 Curtain Call 83ccd4/Custom_Model_Bag Set-aside ab4d4e/Deck Lobby Doorway d1d7e7.yaml @@ -0,0 +1,222 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 232007 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378685352/22FD056BAF1966FE2D1AC46FC1BF90C1A03A1404/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378686413/C1688C1A909FDC7357EB3EEFADAB1FBD5818BD3E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Private. + GMNotes: '' + GUID: 5134e0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Lobby Doorway + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -64.46025 + posY: 1.63455057 + posZ: -30.92889 + rotX: 359.898315 + rotY: 270.042236 + rotZ: 359.9904 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232006 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378685352/22FD056BAF1966FE2D1AC46FC1BF90C1A03A1404/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378686413/C1688C1A909FDC7357EB3EEFADAB1FBD5818BD3E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Private. + GMNotes: '' + GUID: 7605cf + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Lobby Doorway + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -64.0923 + posY: 1.87486124 + posZ: -30.6986828 + rotX: 359.91153 + rotY: 270.0594 + rotZ: 353.10556 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232005 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378685352/22FD056BAF1966FE2D1AC46FC1BF90C1A03A1404/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378686413/C1688C1A909FDC7357EB3EEFADAB1FBD5818BD3E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Private. + GMNotes: '' + GUID: 5c1254 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Lobby Doorway + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -64.23145 + posY: 1.82666051 + posZ: -30.41579 + rotX: 359.9109 + rotY: 269.991516 + rotZ: 357.803558 + 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: http://cloud-3.steamusercontent.com/ugc/762723517659499792/63775A11C2A49441C268121108C8EBFCF512E2A9/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723517659500387/BFF1AFFD515364F0BFD336A6CE9970BE1DD04B13/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Private. + GMNotes: '' + GUID: 92a167 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Lobby Doorway + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -30.0653515 + posY: 1.72745931 + posZ: -57.0059052 + rotX: 359.9377 + rotY: 269.9895 + rotZ: 0.0151489032 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378685352/22FD056BAF1966FE2D1AC46FC1BF90C1A03A1404/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378686413/C1688C1A909FDC7357EB3EEFADAB1FBD5818BD3E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + '2329': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/762723517659499792/63775A11C2A49441C268121108C8EBFCF512E2A9/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723517659500387/BFF1AFFD515364F0BFD336A6CE9970BE1DD04B13/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 232007 +- 232006 +- 232005 +- 232904 +Description: '' +GMNotes: '' +GUID: d1d7e7 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Lobby Doorway +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -25.4119148 + posY: 3.626163 + posZ: -53.6763344 + rotX: 359.923218 + rotY: 269.993164 + rotZ: 0.0175259151 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 1 Curtain Call 83ccd4/Custom_Tile 44b0c5.yaml b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 1 Curtain Call 83ccd4/Custom_Tile 44b0c5.yaml new file mode 100644 index 000000000..7307b1f70 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 1 Curtain Call 83ccd4/Custom_Tile 44b0c5.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 44b0c5 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Tile +Nickname: '' +Snap: true +States: + '1': + 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: '' + GMNotes: '' + GUID: 7234af + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Custom_Tile + Nickname: '' + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -20.4630013 + posY: 1.61011219 + posZ: 0.263299972 + rotX: 359.9201 + rotY: 269.994446 + rotZ: 0.0169059914 + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.5401 + posY: 1.61019731 + posZ: 0.187199712 + rotX: 0.0798962042 + rotY: 90.00617 + rotZ: 359.983124 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 1 Curtain Call 83ccd4/Custom_Tile 4906e9.yaml b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 1 Curtain Call 83ccd4/Custom_Tile 4906e9.yaml new file mode 100644 index 000000000..a85a5f828 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 1 Curtain Call 83ccd4/Custom_Tile 4906e9.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 4906e9 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.6765 + posY: 1.61338806 + posZ: -3.83 + rotX: 359.983124 + rotY: 0.0004568948 + rotZ: 359.920074 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 1 Curtain Call 83ccd4/Custom_Tile 57f68a.yaml b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 1 Curtain Call 83ccd4/Custom_Tile 57f68a.yaml new file mode 100644 index 000000000..156ab2cbc --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 1 Curtain Call 83ccd4/Custom_Tile 57f68a.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 57f68a +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.6765 + posY: 1.61565244 + posZ: 3.86000013 + rotX: 359.983124 + rotY: 0.0002962577 + rotZ: 359.920074 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 1 Curtain Call 83ccd4/Custom_Tile 9b59f2.yaml b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 1 Curtain Call 83ccd4/Custom_Tile 9b59f2.yaml new file mode 100644 index 000000000..3b85975b1 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 1 Curtain Call 83ccd4/Custom_Tile 9b59f2.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 9b59f2 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.3102 + posY: 1.6109246 + posZ: 3.74560046 + rotX: 359.93158 + rotY: 315.0 + rotZ: 359.955444 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 1 Curtain Call 83ccd4/Custom_Tile The Path to Carcosa 16562e.ttslua b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 1 Curtain Call 83ccd4/Custom_Tile The Path to Carcosa 16562e.ttslua new file mode 100644 index 000000000..978a9d2b5 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 1 Curtain Call 83ccd4/Custom_Tile The Path to Carcosa 16562e.ttslua @@ -0,0 +1,21 @@ +name = 'The Path to Carcosa' + +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 Return to The Path to Carcosa e9889a/Custom_Model_Bag 1 Curtain Call 83ccd4/Custom_Tile The Path to Carcosa 16562e.yaml b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 1 Curtain Call 83ccd4/Custom_Tile The Path to Carcosa 16562e.yaml new file mode 100644 index 000000000..152c3ea4d --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 1 Curtain Call 83ccd4/Custom_Tile The Path to Carcosa 16562e.yaml @@ -0,0 +1,42 @@ +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 +GMNotes: '' +GUID: 16562e +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Tile The Path to Carcosa 16562e.ttslua' +LuaScriptState: '' +Name: Custom_Tile +Nickname: The Path to Carcosa +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.83550024 + posY: 1.58230567 + posZ: -15.4104023 + rotX: 359.919739 + rotY: 269.9812 + rotZ: 0.0168642458 + scaleX: 2.2 + scaleY: 1.0 + scaleZ: 2.2 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 1 Curtain Call 83ccd4/Deck Act Deck f28046.yaml b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 1 Curtain Call 83ccd4/Deck Act Deck f28046.yaml new file mode 100644 index 000000000..eb5a7b12d --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 1 Curtain Call 83ccd4/Deck Act Deck f28046.yaml @@ -0,0 +1,394 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 274206 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2317': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378732934/F41E84FCDC0AB52634348C439A6D1A725CEB8115/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378736378/628E179D5305E95AFC25D86526320A24F8B27391/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 3 + GMNotes: '' + GUID: 5c5a28 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Curtain Call + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -35.2176323 + posY: 1.58410883 + posZ: -61.6510353 + rotX: 0.0173725989 + rotY: 180.000214 + rotZ: 0.0761102 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233003 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/762723517659499792/63775A11C2A49441C268121108C8EBFCF512E2A9/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723517659500387/BFF1AFFD515364F0BFD336A6CE9970BE1DD04B13/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 2 + GMNotes: '' + GUID: 788b0d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Stranger + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -35.1429863 + posY: 1.72939086 + posZ: -61.3530464 + rotX: 0.0205664113 + rotY: 180.00087 + rotZ: 0.051494766 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233002 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/762723517659499792/63775A11C2A49441C268121108C8EBFCF512E2A9/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723517659500387/BFF1AFFD515364F0BFD336A6CE9970BE1DD04B13/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 2 + GMNotes: '' + GUID: 51aa68 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Stranger + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -35.17285 + posY: 1.76827025 + posZ: -61.7068634 + rotX: 0.821925342 + rotY: 179.9497 + rotZ: 0.0833576 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233001 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/762723517659499792/63775A11C2A49441C268121108C8EBFCF512E2A9/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723517659500387/BFF1AFFD515364F0BFD336A6CE9970BE1DD04B13/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 2 + GMNotes: '' + GUID: 36921c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Stranger + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -34.87817 + posY: 1.73279774 + posZ: -61.55715 + rotX: 0.0138795786 + rotY: 180.0 + rotZ: 0.08106855 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274205 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2317': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378732934/F41E84FCDC0AB52634348C439A6D1A725CEB8115/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378736378/628E179D5305E95AFC25D86526320A24F8B27391/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 2 + GMNotes: '' + GUID: a4f850 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Stranger + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -34.75942 + posY: 1.74642038 + posZ: -61.182827 + rotX: 0.01571169 + rotY: 180.0 + rotZ: 0.0803883746 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274204 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2317': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378732934/F41E84FCDC0AB52634348C439A6D1A725CEB8115/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378736378/628E179D5305E95AFC25D86526320A24F8B27391/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 2 + GMNotes: '' + GUID: 2e25bf + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Stranger + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -35.1990433 + posY: 1.749566 + posZ: -61.56616 + rotX: 0.0174119975 + rotY: 180.000046 + rotZ: 0.079197675 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274203 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2317': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378732934/F41E84FCDC0AB52634348C439A6D1A725CEB8115/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378736378/628E179D5305E95AFC25D86526320A24F8B27391/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 2 + GMNotes: '' + GUID: 94060e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Stranger + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -34.8835373 + posY: 1.75420976 + posZ: -61.3701172 + rotX: 0.0170835666 + rotY: 180.0 + rotZ: 0.07960712 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274202 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2317': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378732934/F41E84FCDC0AB52634348C439A6D1A725CEB8115/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378736378/628E179D5305E95AFC25D86526320A24F8B27391/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 1 + GMNotes: '' + GUID: eeaa39 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Awakening + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -35.22696 + posY: 1.76095545 + posZ: -61.4550362 + rotX: 0.0166527722 + rotY: 180.0001 + rotZ: 0.07930168 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2330': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/762723517659499792/63775A11C2A49441C268121108C8EBFCF512E2A9/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723517659500387/BFF1AFFD515364F0BFD336A6CE9970BE1DD04B13/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + '2742': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378732934/F41E84FCDC0AB52634348C439A6D1A725CEB8115/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378736378/628E179D5305E95AFC25D86526320A24F8B27391/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 274206 +- 233003 +- 233002 +- 233001 +- 274205 +- 274204 +- 274203 +- 274202 +Description: '' +GMNotes: '' +GUID: f28046 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Act Deck +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.68859982 + posY: 1.63721681 + posZ: -5.0485 + rotX: 0.0168353 + rotY: 179.999969 + rotZ: 0.08025697 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 1 Curtain Call 83ccd4/Deck Agenda Deck 9e67da.yaml b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 1 Curtain Call 83ccd4/Deck Agenda Deck 9e67da.yaml new file mode 100644 index 000000000..6ab6f8357 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 1 Curtain Call 83ccd4/Deck Agenda Deck 9e67da.yaml @@ -0,0 +1,129 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 274101 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2317': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378732934/F41E84FCDC0AB52634348C439A6D1A725CEB8115/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378736378/628E179D5305E95AFC25D86526320A24F8B27391/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 2 + GMNotes: '' + GUID: 62cc79 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Encore + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.6231956 + posY: 1.64404368 + posZ: 7.325429 + rotX: 0.0159791522 + rotY: 180.965317 + rotZ: 0.07806935 + 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: + '2317': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378732934/F41E84FCDC0AB52634348C439A6D1A725CEB8115/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378736378/628E179D5305E95AFC25D86526320A24F8B27391/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 1 + GMNotes: '' + GUID: d122dd + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Third Act + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.6134148 + posY: 1.78935122 + posZ: 7.064174 + rotX: 0.0200005248 + rotY: 180.0098 + rotZ: 0.06410008 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2741': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378732934/F41E84FCDC0AB52634348C439A6D1A725CEB8115/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378736378/628E179D5305E95AFC25D86526320A24F8B27391/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 274101 +- 274100 +Description: '' +GMNotes: '' +GUID: 9e67da +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Agenda Deck +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.72479987 + posY: 1.66397762 + posZ: 0.373300463 + rotX: 0.01677739 + rotY: 180.041077 + rotZ: 0.08027002 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 1 Curtain Call 83ccd4/Deck Encounter Deck 1c1bc8.yaml b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 1 Curtain Call 83ccd4/Deck Encounter Deck 1c1bc8.yaml new file mode 100644 index 000000000..814a1bfe1 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 1 Curtain Call 83ccd4/Deck Encounter Deck 1c1bc8.yaml @@ -0,0 +1,1476 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 232214 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: 3330e9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Black Stars Rise + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -12.5511122 + posY: 1.74284911 + posZ: 27.4618454 + rotX: 359.917023 + rotY: 270.0001 + rotZ: 180.0249 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232214 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: 0afc45 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Black Stars Rise + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -12.739007 + posY: 1.58203125 + posZ: 27.91379 + rotX: 359.920074 + rotY: 270.000275 + rotZ: 180.0165 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232800 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723517659500931/4B5458A518FDAF55C44CD8423EC12304E3266A6C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Subverter of Plans + GMNotes: '' + GUID: 5987af + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: La Comtesse + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -24.3188515 + posY: 1.9417913 + posZ: -48.7187958 + rotX: 359.919861 + rotY: 270.000031 + rotZ: 180.017258 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232823 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723517659500931/4B5458A518FDAF55C44CD8423EC12304E3266A6C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: 3effb8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Maddening Delusions + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -20.1577435 + posY: 1.57207835 + posZ: -31.3182583 + rotX: 359.92038 + rotY: 269.999878 + rotZ: 0.0152459564 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232823 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723517659500931/4B5458A518FDAF55C44CD8423EC12304E3266A6C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: dd93e2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Maddening Delusions + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -20.4406471 + posY: 1.73394608 + posZ: -31.18953 + rotX: 359.9276 + rotY: 269.999939 + rotZ: 0.007684529 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232822 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723517659500931/4B5458A518FDAF55C44CD8423EC12304E3266A6C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: a92ef8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Visions in Your Mind (Hatred) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -19.8424263 + posY: 1.73465288 + posZ: -31.0785656 + rotX: 359.919647 + rotY: 270.0066 + rotZ: 0.0226448 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232821 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723517659500931/4B5458A518FDAF55C44CD8423EC12304E3266A6C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: '613256' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Visions in Your Mind (Death) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -20.2634449 + posY: 1.7214551 + posZ: -31.20634 + rotX: 359.922943 + rotY: 269.996216 + rotZ: 0.0142507013 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232820 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723517659500931/4B5458A518FDAF55C44CD8423EC12304E3266A6C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: ca4b6d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Visions in Your Mind (Failure) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -19.837471 + posY: 1.71898663 + posZ: -31.096756 + rotX: 359.918335 + rotY: 269.998779 + rotZ: 0.0132667217 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232819 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723517659500931/4B5458A518FDAF55C44CD8423EC12304E3266A6C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: 5987af + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Visions in Your Mind (Horrors) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -20.4759254 + posY: 1.72235584 + posZ: -30.9665585 + rotX: 359.925446 + rotY: 270.004181 + rotZ: 0.00763365347 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232826 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723517659500931/4B5458A518FDAF55C44CD8423EC12304E3266A6C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: '947597' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Painful Reflection + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -18.6558971 + posY: 1.57049608 + posZ: -29.4339848 + rotX: 359.920837 + rotY: 269.999969 + rotZ: 0.0124607878 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232826 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723517659500931/4B5458A518FDAF55C44CD8423EC12304E3266A6C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: 6cb3f1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Painful Reflection + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -18.8719749 + posY: 1.724139 + posZ: -29.3834038 + rotX: 359.954041 + rotY: 269.999542 + rotZ: 359.993164 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232825 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723517659500931/4B5458A518FDAF55C44CD8423EC12304E3266A6C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: 8e7b73 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Melancholy + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -19.17409 + posY: 1.57282412 + posZ: -24.1210079 + rotX: 359.9204 + rotY: 269.999878 + rotZ: 0.0150721716 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232825 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723517659500931/4B5458A518FDAF55C44CD8423EC12304E3266A6C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: 8d3af5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Melancholy + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -19.190136 + posY: 1.728339 + posZ: -23.9574223 + rotX: 359.928223 + rotY: 269.999939 + rotZ: 0.00379046449 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232824 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723517659500931/4B5458A518FDAF55C44CD8423EC12304E3266A6C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: 5987af + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: "Voice of Tru\u2019nembra" + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -19.00153 + posY: 1.57379735 + posZ: -20.0205536 + rotX: 359.920319 + rotY: 270.000061 + rotZ: 0.0155211845 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232824 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723517659500931/4B5458A518FDAF55C44CD8423EC12304E3266A6C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: 0a0545 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: "Voice of Tru\u2019nembra" + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -18.9889278 + posY: 1.735667 + posZ: -19.9021416 + rotX: 359.924225 + rotY: 270.000031 + rotZ: 0.01324474 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232824 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723517659500931/4B5458A518FDAF55C44CD8423EC12304E3266A6C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: 040fdc + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: "Voice of Tru\u2019nembra" + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -18.9889069 + posY: 1.74957764 + posZ: -19.9021454 + rotX: 359.921265 + rotY: 270.000031 + rotZ: 0.0159616545 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232216 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Pact. + GMNotes: '' + GUID: 7a6d8c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Twisted to His Will + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -40.06019 + posY: 1.60829687 + posZ: -2.629929 + rotX: 359.920044 + rotY: 270.0098 + rotZ: 0.01704826 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232216 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Pact. + GMNotes: '' + GUID: a6af6b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Twisted to His Will + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -40.14995 + posY: 1.78357077 + posZ: -2.83012843 + rotX: 0.5782123 + rotY: 270.002 + rotZ: 0.0179315973 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232215 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: a0d34f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Spires of Carcosa + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -39.56787 + posY: 1.7705667 + posZ: -2.61933255 + rotX: 359.921173 + rotY: 270.003662 + rotZ: 0.0159180127 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232215 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: a0d34f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Spires of Carcosa + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -40.2772331 + posY: 1.7794143 + posZ: -2.527565 + rotX: 359.919922 + rotY: 270.003967 + rotZ: 0.01670667 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232218 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Curse. Geist. + GMNotes: '' + GUID: 2d32e4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Spirit's Torment + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -31.05811 + posY: 1.5943135 + posZ: -7.30223 + rotX: 359.920715 + rotY: 269.999756 + rotZ: 0.013130011 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232218 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Curse. Geist. + GMNotes: '' + GUID: 9349fd + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Spirit's Torment + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -31.1989822 + posY: 1.74595857 + posZ: -7.23980331 + rotX: 359.950958 + rotY: 269.999573 + rotZ: -0.00464719161 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232217 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Geist. + GMNotes: '' + GUID: 1ae587 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Poltergeist + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -30.9912872 + posY: 1.5951972 + posZ: -3.82445621 + rotX: 359.9241 + rotY: 269.9814 + rotZ: 0.0137564549 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232217 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Geist. + GMNotes: '' + GUID: 459f5a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Poltergeist + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -30.9757233 + posY: 1.74052989 + posZ: -3.8652792 + rotX: 359.957245 + rotY: 269.972046 + rotZ: 0.00526940031 + 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: + '2317': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Creature. + GMNotes: '' + GUID: ab3719 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Swarm of Rats + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 15.456192 + posY: 1.53138053 + posZ: -0.8908986 + rotX: 359.92038 + rotY: 270.0 + rotZ: 0.0147123663 + 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: + '2317': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Creature. + GMNotes: '' + GUID: a2cf85 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Swarm of Rats + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 15.4186563 + posY: 1.68472993 + posZ: -0.738109052 + rotX: 359.913422 + rotY: 270.000122 + rotZ: 0.0100070881 + 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: + '2317': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Creature. + GMNotes: '' + GUID: ab3719 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Swarm of Rats + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 15.4186554 + posY: 1.69875109 + posZ: -0.738129 + rotX: 359.918427 + rotY: 270.0001 + rotZ: 0.0155182732 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232224 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Pact. + GMNotes: '' + GUID: e20141 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The King's Edict + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -45.28207 + posY: 1.61571622 + posZ: -1.99931252 + rotX: 359.920471 + rotY: 269.999542 + rotZ: 0.0138937524 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232224 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Pact. + GMNotes: '' + GUID: '522968' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The King's Edict + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -45.3332253 + posY: 1.76760066 + posZ: -1.86887467 + rotX: 359.932678 + rotY: 269.9998 + rotZ: -0.00222653663 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232223 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Cultist. + GMNotes: '' + GUID: 0bf1f8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Agent of the King + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -45.31658 + posY: 1.77869308 + posZ: -1.76723373 + rotX: 359.925659 + rotY: 270.030243 + rotZ: 359.9921 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232222 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Cultist. + GMNotes: '' + GUID: 8ada81 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Fanatic + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -46.03409 + posY: 1.61745238 + posZ: 0.648399532 + rotX: 359.9214 + rotY: 269.999054 + rotZ: 0.00768406037 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232222 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Cultist. + GMNotes: '' + GUID: dcaaad + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Fanatic + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -45.8543549 + posY: 1.76917815 + posZ: 0.300536335 + rotX: 359.907532 + rotY: 269.998657 + rotZ: 0.0211735331 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232222 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Cultist. + GMNotes: '' + GUID: 8ada81 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Fanatic + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -45.8543625 + posY: 1.80176485 + posZ: 0.3005505 + rotX: 359.920227 + rotY: 269.998779 + rotZ: 0.0167158749 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723517659500931/4B5458A518FDAF55C44CD8423EC12304E3266A6C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '2664': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 232214 +- 232214 +- 232800 +- 232823 +- 232823 +- 232822 +- 232821 +- 232820 +- 232819 +- 232826 +- 232826 +- 232825 +- 232825 +- 232824 +- 232824 +- 232824 +- 232216 +- 232216 +- 232215 +- 232215 +- 232218 +- 232218 +- 232217 +- 232217 +- 266412 +- 266412 +- 266412 +- 232224 +- 232224 +- 232223 +- 232222 +- 232222 +- 232222 +Description: '' +GMNotes: '' +GUID: 1c1bc8 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Encounter Deck +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.92772865 + posY: 1.78769851 + posZ: 5.75721836 + rotX: 359.919739 + rotY: 269.999634 + rotZ: 180.016815 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 2 The Last King 6730a1.ttslua b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 2 The Last King 6730a1.ttslua new file mode 100644 index 000000000..46067f58e --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 2 The Last King 6730a1.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.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.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 Return to The Path to Carcosa e9889a/Custom_Model_Bag 2 The Last King 6730a1.yaml b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 2 The Last King 6730a1.yaml new file mode 100644 index 000000000..c28385e0f --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 2 The Last King 6730a1.yaml @@ -0,0 +1,92 @@ +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 2 The Last King 6730a1/Custom_Model_Bag Set-aside af5282.yaml' +- !include 'Custom_Model_Bag 2 The Last King 6730a1/Deck Encounter Deck 9869cb.yaml' +- !include 'Custom_Model_Bag 2 The Last King 6730a1/Deck Agenda Deck 041cfc.yaml' +- !include 'Custom_Model_Bag 2 The Last King 6730a1/Card Discovering the Truth 985957.yaml' +- !include 'Custom_Model_Bag 2 The Last King 6730a1/Card Scenario dd2d33.yaml' +- !include 'Custom_Model_Bag 2 The Last King 6730a1/Deck Sickening Reality 59504e.yaml' +- !include 'Custom_Model_Bag 2 The Last King 6730a1/Card Setup 93a42f.yaml' +- !include 'Custom_Model_Bag 2 The Last King 6730a1/Custom_Tile The Last King 857d0d.yaml' +- !include 'Custom_Model_Bag 2 The Last King 6730a1/Notecard Errata f66b3b.yaml' +- !include 'Custom_Model_Bag 2 The Last King 6730a1/Card Foyer 4b6478.yaml' +- !include 'Custom_Model_Bag 2 The Last King 6730a1/Card Courtyard 981fa3.yaml' +- !include 'Custom_Model_Bag 2 The Last King 6730a1/Card Ballroom c605d3.yaml' +- !include 'Custom_Model_Bag 2 The Last King 6730a1/Card Living Room b3c25b.yaml' +- !include 'Custom_Model_Bag 2 The Last King 6730a1/Card Gallery cce10d.yaml' +- !include 'Custom_Model_Bag 2 The Last King 6730a1/Card Dining Room aa08d4.yaml' +- !include 'Custom_Model_Bag 2 The Last King 6730a1/Custom_Tile dfdabe.yaml' +- !include 'Custom_Model_Bag 2 The Last King 6730a1/Custom_Tile 01b9fa.yaml' +- !include 'Custom_Model_Bag 2 The Last King 6730a1/Custom_Tile 7234af.yaml' +- !include 'Custom_Model_Bag 2 The Last King 6730a1/Custom_Tile d4d0a1.yaml' +- !include 'Custom_Model_Bag 2 The Last King 6730a1/Custom_Tile 472b87.yaml' +- !include 'Custom_Model_Bag 2 The Last King 6730a1/Custom_Tile b25fa2.yaml' +- !include 'Custom_Model_Bag 2 The Last King 6730a1/Custom_Tile 657fc6.yaml' +- !include 'Custom_Model_Bag 2 The Last King 6730a1/Custom_Tile 170d3d.yaml' +- !include 'Custom_Model_Bag 2 The Last King 6730a1/Custom_Tile f935dd.yaml' +- !include 'Custom_Model_Bag 2 The Last King 6730a1/Deck Bystanders dc02e3.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/762723517662106868/4908D6CD63BAFBFB4D79059ABBE22F01BE2C8537/ + MaterialIndex: 3 + MeshURL: https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj + NormalURL: '' + TypeIndex: 6 +Description: '' +GMNotes: '' +GUID: 6730a1 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Model_Bag 2 The Last King 6730a1.ttslua' +LuaScriptState: '{"ml":{"01b9fa":{"lock":false,"pos":{"x":-23.6765,"y":1.6134,"z":-3.83},"rot":{"x":359.9831,"y":0.0003,"z":359.9201}},"041cfc":{"lock":false,"pos":{"x":-2.7248,"y":1.664,"z":0.3733},"rot":{"x":0.0168,"y":179.9995,"z":0.0803}},"170d3d":{"lock":false,"pos":{"x":-20.0997,"y":1.6105,"z":3.2408},"rot":{"x":359.9554,"y":224.9999,"z":0.0684}},"472b87":{"lock":false,"pos":{"x":-27.4076,"y":1.6185,"z":-3.9855},"rot":{"x":359.9316,"y":315,"z":359.9554}},"4b6478":{"lock":false,"pos":{"x":-30.2243,"y":1.6954,"z":-0.03},"rot":{"x":359.9201,"y":270,"z":0.0169}},"59504e":{"lock":false,"pos":{"x":-3.956,"y":1.6497,"z":-10.4412},"rot":{"x":359.9198,"y":270.0002,"z":180.017}},"657fc6":{"lock":false,"pos":{"x":-20.5635,"y":1.6124,"z":7.5489},"rot":{"x":359.9201,"y":269.9947,"z":0.0169}},"7234af":{"lock":false,"pos":{"x":-26.7542,"y":1.6189,"z":0.1696},"rot":{"x":359.9201,"y":269.9948,"z":0.0169}},"857d0d":{"lock":false,"pos":{"x":-4.2848,"y":1.5829,"z":-15.6022},"rot":{"x":359.9197,"y":269.9991,"z":0.0168}},"93a42f":{"lock":false,"pos":{"x":-0.425,"y":1.6507,"z":-10.4281},"rot":{"x":359.9197,"y":269.9999,"z":0.0168}},"981fa3":{"lock":false,"pos":{"x":-23.6765,"y":1.6862,"z":-0.03},"rot":{"x":359.9201,"y":269.9999,"z":0.0169}},"985957":{"lock":false,"pos":{"x":-2.6886,"y":1.6555,"z":-5.0485},"rot":{"x":0.0168,"y":179.9999,"z":0.0803}},"9869cb":{"lock":false,"pos":{"x":-3.9277,"y":1.7397,"z":5.7572},"rot":{"x":359.9197,"y":270.0002,"z":180.0168}},"aa08d4":{"lock":false,"pos":{"x":-17.12,"y":1.6793,"z":7.57},"rot":{"x":359.9201,"y":270,"z":0.0169}},"af5282":{"lock":false,"pos":{"x":1.6964,"y":1.5583,"z":14.2788},"rot":{"x":359.9551,"y":224.998,"z":0.0687}},"b25fa2":{"lock":false,"pos":{"x":-20.004,"y":1.6083,"z":-3.8134},"rot":{"x":359.9316,"y":315,"z":359.9554}},"b3c25b":{"lock":false,"pos":{"x":-23.6766,"y":1.684,"z":-7.7},"rot":{"x":359.9201,"y":269.9999,"z":0.0169}},"c605d3":{"lock":false,"pos":{"x":-23.6765,"y":1.6885,"z":7.57},"rot":{"x":359.9201,"y":269.9998,"z":0.0169}},"cce10d":{"lock":false,"pos":{"x":-17.1201,"y":1.6748,"z":-7.7},"rot":{"x":359.9201,"y":269.9998,"z":0.0169}},"d4d0a1":{"lock":false,"pos":{"x":-27.2821,"y":1.6207,"z":3.8853},"rot":{"x":359.9554,"y":224.9999,"z":0.0684}},"dc02e3":{"lock":false,"pos":{"x":-17.1201,"y":1.6804,"z":15.19},"rot":{"x":359.9201,"y":270.0005,"z":0.0169}},"dd2d33":{"lock":false,"pos":{"x":-4.4431,"y":1.7756,"z":-10.4201},"rot":{"x":359.9202,"y":270.0326,"z":0.0169}},"dfdabe":{"lock":false,"pos":{"x":-23.6765,"y":1.6157,"z":3.86},"rot":{"x":359.9831,"y":0.0002,"z":359.9201}},"f66b3b":{"lock":false,"pos":{"x":-11.3753,"y":1.5603,"z":-23.9306},"rot":{"x":0.0799,"y":89.9999,"z":359.9831}},"f935dd":{"lock":false,"pos":{"x":-20.4019,"y":1.6078,"z":-7.3231},"rot":{"x":359.9201,"y":269.9874,"z":0.0169}}}}' +MaterialIndex: -1 +MeshIndex: -1 +Name: Custom_Model_Bag +Nickname: '2: The Last King' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 12.250102 + posY: 1.4709326 + posZ: 22.0786037 + rotX: 359.9201 + rotY: 270.018738 + rotZ: 0.0168471746 + scaleX: 2.21 + scaleY: 0.46 + scaleZ: 2.42 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 2 The Last King 6730a1/Card Ballroom c605d3.yaml b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 2 The Last King 6730a1/Card Ballroom c605d3.yaml new file mode 100644 index 000000000..bcb4cf3a5 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 2 The Last King 6730a1/Card Ballroom c605d3.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 232013 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378685352/22FD056BAF1966FE2D1AC46FC1BF90C1A03A1404/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378686413/C1688C1A909FDC7357EB3EEFADAB1FBD5818BD3E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: c605d3 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Ballroom +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -23.6765 + posY: 1.68845832 + posZ: 7.56999874 + rotX: 359.9201 + rotY: 269.999756 + rotZ: 0.0168767665 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 2 The Last King 6730a1/Card Courtyard 981fa3.yaml b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 2 The Last King 6730a1/Card Courtyard 981fa3.yaml new file mode 100644 index 000000000..3193d22ab --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 2 The Last King 6730a1/Card Courtyard 981fa3.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 232016 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378685352/22FD056BAF1966FE2D1AC46FC1BF90C1A03A1404/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378686413/C1688C1A909FDC7357EB3EEFADAB1FBD5818BD3E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 981fa3 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Courtyard +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -23.6765 + posY: 1.68622041 + posZ: -0.03000029 + rotX: 359.9201 + rotY: 269.999939 + rotZ: 0.0168761611 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 2 The Last King 6730a1/Card Dining Room aa08d4.yaml b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 2 The Last King 6730a1/Card Dining Room aa08d4.yaml new file mode 100644 index 000000000..b09568174 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 2 The Last King 6730a1/Card Dining Room aa08d4.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 232017 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378685352/22FD056BAF1966FE2D1AC46FC1BF90C1A03A1404/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378686413/C1688C1A909FDC7357EB3EEFADAB1FBD5818BD3E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: aa08d4 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Dining Room +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -17.12 + posY: 1.67931569 + posZ: 7.56999969 + rotX: 359.9201 + rotY: 270.000031 + rotZ: 0.0168769434 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 2 The Last King 6730a1/Card Discovering the Truth 985957.yaml b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 2 The Last King 6730a1/Card Discovering the Truth 985957.yaml new file mode 100644 index 000000000..3f30e4ee4 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 2 The Last King 6730a1/Card Discovering the Truth 985957.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 231709 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2317': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378732934/F41E84FCDC0AB52634348C439A6D1A725CEB8115/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378736378/628E179D5305E95AFC25D86526320A24F8B27391/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Act 1 +GMNotes: '' +GUID: '985957' +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Discovering the Truth +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.68857145 + posY: 1.6554575 + posZ: -5.048524 + rotX: 0.0168351252 + rotY: 179.999908 + rotZ: 0.08025844 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 2 The Last King 6730a1/Card Foyer 4b6478.yaml b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 2 The Last King 6730a1/Card Foyer 4b6478.yaml new file mode 100644 index 000000000..100c49924 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 2 The Last King 6730a1/Card Foyer 4b6478.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 232012 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378685352/22FD056BAF1966FE2D1AC46FC1BF90C1A03A1404/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378686413/C1688C1A909FDC7357EB3EEFADAB1FBD5818BD3E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 4b6478 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Foyer +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -30.2243 + posY: 1.69535077 + posZ: -0.0300004929 + rotX: 359.9201 + rotY: 270.0 + rotZ: 0.016876379 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 2 The Last King 6730a1/Card Gallery cce10d.yaml b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 2 The Last King 6730a1/Card Gallery cce10d.yaml new file mode 100644 index 000000000..1edfefc99 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 2 The Last King 6730a1/Card Gallery cce10d.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 232015 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378685352/22FD056BAF1966FE2D1AC46FC1BF90C1A03A1404/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378686413/C1688C1A909FDC7357EB3EEFADAB1FBD5818BD3E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: cce10d +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Gallery +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -17.1201 + posY: 1.67481935 + posZ: -7.70000029 + rotX: 359.9201 + rotY: 269.9998 + rotZ: 0.01687637 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 2 The Last King 6730a1/Card Living Room b3c25b.yaml b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 2 The Last King 6730a1/Card Living Room b3c25b.yaml new file mode 100644 index 000000000..ff9ec49d1 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 2 The Last King 6730a1/Card Living Room b3c25b.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 232014 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378685352/22FD056BAF1966FE2D1AC46FC1BF90C1A03A1404/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378686413/C1688C1A909FDC7357EB3EEFADAB1FBD5818BD3E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: b3c25b +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Living Room +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -23.6766 + posY: 1.683962 + posZ: -7.70000029 + rotX: 359.9201 + rotY: 269.999878 + rotZ: 0.0168765 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 2 The Last King 6730a1/Card Scenario dd2d33.yaml b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 2 The Last King 6730a1/Card Scenario dd2d33.yaml new file mode 100644 index 000000000..cd360e52e --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 2 The Last King 6730a1/Card Scenario dd2d33.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 232000 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378685352/22FD056BAF1966FE2D1AC46FC1BF90C1A03A1404/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378686413/C1688C1A909FDC7357EB3EEFADAB1FBD5818BD3E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: The Last King +GMNotes: '' +GUID: dd2d33 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Scenario +SidewaysCard: false +Snap: false +Sticky: true +Tooltip: true +Transform: + posX: -4.443118 + posY: 1.77560592 + posZ: -10.4200916 + rotX: 359.920227 + rotY: 270.0326 + rotZ: 0.0168567728 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 2 The Last King 6730a1/Card Setup 93a42f.yaml b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 2 The Last King 6730a1/Card Setup 93a42f.yaml new file mode 100644 index 000000000..26e88b043 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 2 The Last King 6730a1/Card Setup 93a42f.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 232906 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2329': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/762723517659499792/63775A11C2A49441C268121108C8EBFCF512E2A9/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723517659500387/BFF1AFFD515364F0BFD336A6CE9970BE1DD04B13/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Return to The Last King +GMNotes: '' +GUID: 93a42f +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Setup +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -0.425008059 + posY: 1.65070617 + posZ: -10.4280643 + rotX: 359.919739 + rotY: 269.999939 + rotZ: 0.0168409348 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 2 The Last King 6730a1/Custom_Model_Bag Set-aside af5282.yaml b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 2 The Last King 6730a1/Custom_Model_Bag Set-aside af5282.yaml new file mode 100644 index 000000000..41e0443c9 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 2 The Last King 6730a1/Custom_Model_Bag Set-aside af5282.yaml @@ -0,0 +1,57 @@ +Autoraise: true +ColorDiffuse: + b: 0.02148666 + g: 0.00100758043 + r: 0.02148666 +ContainedObjects: +- !include 'Custom_Model_Bag Set-aside af5282/Card Shocking Display 9c4a8d.yaml' +- !include 'Custom_Model_Bag Set-aside af5282/Card Dianne Devine 51f4e4.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 Last King +GMNotes: '' +GUID: af5282 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +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.69637883 + posY: 1.5583173 + posZ: 14.2788467 + rotX: 359.955139 + rotY: 224.997986 + rotZ: 0.06867712 + scaleX: 2.0 + scaleY: 2.0 + scaleZ: 2.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 2 The Last King 6730a1/Custom_Model_Bag Set-aside af5282/Card Dianne Devine 51f4e4.yaml b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 2 The Last King 6730a1/Custom_Model_Bag Set-aside af5282/Card Dianne Devine 51f4e4.yaml new file mode 100644 index 000000000..6a9138c38 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 2 The Last King 6730a1/Custom_Model_Bag Set-aside af5282/Card Dianne Devine 51f4e4.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 233101 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2331': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723517659500931/4B5458A518FDAF55C44CD8423EC12304E3266A6C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: Hiding an Oath Unspoken +GMNotes: '' +GUID: 51f4e4 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Dianne Devine +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -15.9771547 + posY: 3.61145067 + posZ: -64.48813 + rotX: 359.944672 + rotY: 269.999878 + rotZ: 0.012324105 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 2 The Last King 6730a1/Custom_Model_Bag Set-aside af5282/Card Shocking Display 9c4a8d.yaml b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 2 The Last King 6730a1/Custom_Model_Bag Set-aside af5282/Card Shocking Display 9c4a8d.yaml new file mode 100644 index 000000000..f3b3ae16d --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 2 The Last King 6730a1/Custom_Model_Bag Set-aside af5282/Card Shocking Display 9c4a8d.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 232803 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723517659500931/4B5458A518FDAF55C44CD8423EC12304E3266A6C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: Terror. +GMNotes: '' +GUID: 9c4a8d +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Shocking Display +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -15.47227 + posY: 4.62486124 + posZ: -62.4458733 + rotX: 359.920135 + rotY: 270.007751 + rotZ: 0.0168690123 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 2 The Last King 6730a1/Custom_Tile 01b9fa.yaml b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 2 The Last King 6730a1/Custom_Tile 01b9fa.yaml new file mode 100644 index 000000000..cbb7731fd --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 2 The Last King 6730a1/Custom_Tile 01b9fa.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 01b9fa +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.6765 + posY: 1.613388 + posZ: -3.83000064 + rotX: 359.983124 + rotY: 0.0003097275 + rotZ: 359.920074 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 2 The Last King 6730a1/Custom_Tile 170d3d.yaml b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 2 The Last King 6730a1/Custom_Tile 170d3d.yaml new file mode 100644 index 000000000..38bcfd598 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 2 The Last King 6730a1/Custom_Tile 170d3d.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 170d3d +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.099699 + posY: 1.61048234 + posZ: 3.24080014 + rotX: 359.955444 + rotY: 224.999908 + rotZ: 0.0684042349 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 2 The Last King 6730a1/Custom_Tile 472b87.yaml b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 2 The Last King 6730a1/Custom_Tile 472b87.yaml new file mode 100644 index 000000000..a32d3da0f --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 2 The Last King 6730a1/Custom_Tile 472b87.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 472b87 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.4076 + posY: 1.61854494 + posZ: -3.9855 + rotX: 359.93158 + rotY: 315.0 + rotZ: 359.955444 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 2 The Last King 6730a1/Custom_Tile 657fc6.yaml b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 2 The Last King 6730a1/Custom_Tile 657fc6.yaml new file mode 100644 index 000000000..62c324f1b --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 2 The Last King 6730a1/Custom_Tile 657fc6.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 657fc6 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.5634975 + posY: 1.61239755 + posZ: 7.54889965 + rotX: 359.9201 + rotY: 269.99472 + rotZ: 0.0169087388 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 2 The Last King 6730a1/Custom_Tile 7234af.yaml b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 2 The Last King 6730a1/Custom_Tile 7234af.yaml new file mode 100644 index 000000000..9ac789166 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 2 The Last King 6730a1/Custom_Tile 7234af.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 7234af +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.7542 + posY: 1.61885715 + posZ: 0.169599771 + rotX: 359.9201 + rotY: 269.9948 + rotZ: 0.0169080943 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 2 The Last King 6730a1/Custom_Tile b25fa2.yaml b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 2 The Last King 6730a1/Custom_Tile b25fa2.yaml new file mode 100644 index 000000000..93a77e094 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 2 The Last King 6730a1/Custom_Tile b25fa2.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: b25fa2 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.004 + posY: 1.60827172 + posZ: -3.8134 + rotX: 359.93158 + rotY: 314.999969 + rotZ: 359.955444 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 2 The Last King 6730a1/Custom_Tile d4d0a1.yaml b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 2 The Last King 6730a1/Custom_Tile d4d0a1.yaml new file mode 100644 index 000000000..084b2db86 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 2 The Last King 6730a1/Custom_Tile d4d0a1.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: d4d0a1 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.2821 + posY: 1.62068737 + posZ: 3.8853004 + rotX: 359.955444 + rotY: 224.9999 + rotZ: 0.06840136 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 2 The Last King 6730a1/Custom_Tile dfdabe.yaml b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 2 The Last King 6730a1/Custom_Tile dfdabe.yaml new file mode 100644 index 000000000..b9430ab31 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 2 The Last King 6730a1/Custom_Tile dfdabe.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: dfdabe +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.6765 + posY: 1.61565232 + posZ: 3.86 + rotX: 359.983124 + rotY: 0.000220974747 + rotZ: 359.920074 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 2 The Last King 6730a1/Custom_Tile f935dd.yaml b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 2 The Last King 6730a1/Custom_Tile f935dd.yaml new file mode 100644 index 000000000..b10d2dc0a --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 2 The Last King 6730a1/Custom_Tile f935dd.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: f935dd +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.4019 + posY: 1.607793 + posZ: -7.32310057 + rotX: 359.9201 + rotY: 269.987427 + rotZ: 0.0169171523 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 2 The Last King 6730a1/Custom_Tile The Last King 857d0d.ttslua b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 2 The Last King 6730a1/Custom_Tile The Last King 857d0d.ttslua new file mode 100644 index 000000000..c9acd00d0 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 2 The Last King 6730a1/Custom_Tile The Last King 857d0d.ttslua @@ -0,0 +1,25 @@ +name = 'The Last King' + +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 + +function standaloneClick() + Global.call('fillContainer', {object=self, key=name, mode='standalone'}) +end \ No newline at end of file diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 2 The Last King 6730a1/Custom_Tile The Last King 857d0d.yaml b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 2 The Last King 6730a1/Custom_Tile The Last King 857d0d.yaml new file mode 100644 index 000000000..8a936aa75 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 2 The Last King 6730a1/Custom_Tile The Last King 857d0d.yaml @@ -0,0 +1,42 @@ +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 +GMNotes: '' +GUID: 857d0d +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Tile The Last King 857d0d.ttslua' +LuaScriptState: '' +Name: Custom_Tile +Nickname: The Last King +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -4.284815 + posY: 1.58287871 + posZ: -15.6021786 + rotX: 359.919739 + rotY: 269.999084 + rotZ: 0.0168389957 + scaleX: 2.2 + scaleY: 1.0 + scaleZ: 2.2 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 2 The Last King 6730a1/Deck Agenda Deck 041cfc.yaml b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 2 The Last King 6730a1/Deck Agenda Deck 041cfc.yaml new file mode 100644 index 000000000..2ff2ca152 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 2 The Last King 6730a1/Deck Agenda Deck 041cfc.yaml @@ -0,0 +1,136 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 231708 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2317': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378732934/F41E84FCDC0AB52634348C439A6D1A725CEB8115/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378736378/628E179D5305E95AFC25D86526320A24F8B27391/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 2 + GMNotes: '' + GUID: '798037' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Terrifying Truth + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -17.3922386 + posY: 1.56695545 + posZ: -35.35964 + rotX: 0.0179665852 + rotY: 179.997009 + rotZ: 0.07337458 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233007 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/762723517659499792/63775A11C2A49441C268121108C8EBFCF512E2A9/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723517659500387/BFF1AFFD515364F0BFD336A6CE9970BE1DD04B13/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 1 + GMNotes: '' + GUID: 3456b6 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Better Never Than Late + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -17.3930817 + posY: 1.70582068 + posZ: -35.41745 + rotX: 0.00286371377 + rotY: 179.9998 + rotZ: 0.07252677 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2317': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378732934/F41E84FCDC0AB52634348C439A6D1A725CEB8115/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378736378/628E179D5305E95AFC25D86526320A24F8B27391/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + '2330': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/762723517659499792/63775A11C2A49441C268121108C8EBFCF512E2A9/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723517659500387/BFF1AFFD515364F0BFD336A6CE9970BE1DD04B13/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 231708 +- 233007 +Description: '' +GMNotes: '' +GUID: 041cfc +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Agenda Deck +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.724753 + posY: 1.6639775 + posZ: 0.373330742 + rotX: 0.0168357454 + rotY: 179.999481 + rotZ: 0.08025774 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 2 The Last King 6730a1/Deck Bystanders dc02e3.yaml b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 2 The Last King 6730a1/Deck Bystanders dc02e3.yaml new file mode 100644 index 000000000..5de5b401e --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 2 The Last King 6730a1/Deck Bystanders dc02e3.yaml @@ -0,0 +1,258 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 232052 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378685352/22FD056BAF1966FE2D1AC46FC1BF90C1A03A1404/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378686413/C1688C1A909FDC7357EB3EEFADAB1FBD5818BD3E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Talented Entertainer + GMNotes: '' + GUID: 560b08 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ashleigh Clarke + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -24.9959469 + posY: 1.58886766 + posZ: 2.733978 + rotX: 359.9202 + rotY: 269.9997 + rotZ: 0.01637834 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232051 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378685352/22FD056BAF1966FE2D1AC46FC1BF90C1A03A1404/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378686413/C1688C1A909FDC7357EB3EEFADAB1FBD5818BD3E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Impassioned Producer + GMNotes: '' + GUID: a6a957 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Sebastien Moreau + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -24.889698 + posY: 1.74999762 + posZ: 2.996538 + rotX: 359.921875 + rotY: 269.999725 + rotZ: 0.0139834387 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232050 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378685352/22FD056BAF1966FE2D1AC46FC1BF90C1A03A1404/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378686413/C1688C1A909FDC7357EB3EEFADAB1FBD5818BD3E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Costume Designer + GMNotes: '' + GUID: ce986e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ishimaru Haruko + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -24.3762417 + posY: 1.76662624 + posZ: 2.888781 + rotX: 359.918823 + rotY: 269.999725 + rotZ: 0.0149787869 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232049 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378685352/22FD056BAF1966FE2D1AC46FC1BF90C1A03A1404/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378686413/C1688C1A909FDC7357EB3EEFADAB1FBD5818BD3E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Dignified Financier + GMNotes: '' + GUID: a1145d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Jordan Perry + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -24.66908 + posY: 1.75318277 + posZ: 2.24145 + rotX: 359.920319 + rotY: 269.9997 + rotZ: 0.01660872 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232048 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378685352/22FD056BAF1966FE2D1AC46FC1BF90C1A03A1404/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378686413/C1688C1A909FDC7357EB3EEFADAB1FBD5818BD3E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Sociable Hostess + GMNotes: '' + GUID: 5d7527 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Constance Dumaine + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -12.0926571 + posY: 1.82048714 + posZ: 10.89424 + rotX: 359.938171 + rotY: 269.999878 + rotZ: 0.016948238 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378685352/22FD056BAF1966FE2D1AC46FC1BF90C1A03A1404/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378686413/C1688C1A909FDC7357EB3EEFADAB1FBD5818BD3E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 232052 +- 232051 +- 232050 +- 232049 +- 232048 +Description: '' +GMNotes: '' +GUID: dc02e3 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Bystanders +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -17.12008 + posY: 1.68042731 + posZ: 15.1900072 + rotX: 359.9201 + rotY: 270.000549 + rotZ: 0.0168760549 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 2 The Last King 6730a1/Deck Encounter Deck 9869cb.yaml b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 2 The Last King 6730a1/Deck Encounter Deck 9869cb.yaml new file mode 100644 index 000000000..0455bd5fc --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 2 The Last King 6730a1/Deck Encounter Deck 9869cb.yaml @@ -0,0 +1,1089 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 233102 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2331': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723517659500931/4B5458A518FDAF55C44CD8423EC12304E3266A6C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: bd9f85 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Party Guest + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -15.4887867 + posY: 1.82565308 + posZ: -51.85309 + rotX: 359.940552 + rotY: 269.9995 + rotZ: 180.006348 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233102 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2331': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723517659500931/4B5458A518FDAF55C44CD8423EC12304E3266A6C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: ea2400 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Party Guest + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -14.9030342 + posY: 1.81500351 + posZ: -52.30121 + rotX: 359.910339 + rotY: 270.0019 + rotZ: 180.014618 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232816 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723517659500931/4B5458A518FDAF55C44CD8423EC12304E3266A6C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Creature. + GMNotes: '' + GUID: 2789ff + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Maggot Swarm + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -19.2407017 + posY: 1.57227457 + posZ: -26.3014812 + rotX: 359.9204 + rotY: 269.999939 + rotZ: 0.0150428768 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232816 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723517659500931/4B5458A518FDAF55C44CD8423EC12304E3266A6C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Creature. + GMNotes: '' + GUID: e2d075 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Maggot Swarm + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -19.2230339 + posY: 1.73377633 + posZ: -26.3048229 + rotX: 359.915741 + rotY: 270.0 + rotZ: 0.0147493454 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232815 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723517659500931/4B5458A518FDAF55C44CD8423EC12304E3266A6C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: d6340b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Fragile Thoughts + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -18.39599 + posY: 1.57247078 + posZ: -21.6435146 + rotX: 359.92038 + rotY: 269.999847 + rotZ: 0.0152562214 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232815 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723517659500931/4B5458A518FDAF55C44CD8423EC12304E3266A6C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: b4bbb4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Fragile Thoughts + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -18.5655079 + posY: 1.732873 + posZ: -21.3264027 + rotX: 359.948151 + rotY: 270.0 + rotZ: 359.992157 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232814 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723517659500931/4B5458A518FDAF55C44CD8423EC12304E3266A6C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: 5987af + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Bleeding Walls + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -17.9469852 + posY: 1.5728128 + posZ: -18.3870125 + rotX: 359.9203 + rotY: 269.999573 + rotZ: 0.01579755 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232814 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723517659500931/4B5458A518FDAF55C44CD8423EC12304E3266A6C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: a9d501 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Bleeding Walls + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -18.0130978 + posY: 1.72845662 + posZ: -18.5875816 + rotX: 359.9193 + rotY: 269.999573 + rotZ: 0.00951310247 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232813 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723517659500931/4B5458A518FDAF55C44CD8423EC12304E3266A6C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Curse. + GMNotes: '' + GUID: 5987af + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Delusory Evils + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -41.95185 + posY: 1.60736048 + posZ: -14.73475 + rotX: 359.920166 + rotY: 269.999664 + rotZ: 0.016287826 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232813 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723517659500931/4B5458A518FDAF55C44CD8423EC12304E3266A6C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Curse. + GMNotes: '' + GUID: bc41a5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Delusory Evils + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -42.0116158 + posY: 1.75763893 + posZ: -14.298007 + rotX: 359.914978 + rotY: 270.0003 + rotZ: -0.00206749188 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232813 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723517659500931/4B5458A518FDAF55C44CD8423EC12304E3266A6C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Curse. + GMNotes: '' + GUID: 5987af + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Delusory Evils + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -42.01161 + posY: 1.79005313 + posZ: -14.29804 + rotX: 359.919922 + rotY: 269.999878 + rotZ: 0.016129639 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232204 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: 62736c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Tough Crowd + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -19.2509537 + posY: 1.82136452 + posZ: 10.4195251 + rotX: 359.943665 + rotY: 269.999664 + rotZ: 180.022064 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232204 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: de32ec + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Tough Crowd + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 17.4420319 + posY: 1.68660319 + posZ: 14.0227976 + rotX: 359.9281 + rotY: 269.997772 + rotZ: 0.0118490057 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232203 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: f89d68 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Fine Dining + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.80756 + posY: 1.5353328 + posZ: 18.971468 + rotX: 359.9206 + rotY: 269.992676 + rotZ: 0.0138819059 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232203 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: d7ccce + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Fine Dining + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.9983463 + posY: 1.6891315 + posZ: 18.7847252 + rotX: 359.925781 + rotY: 269.992676 + rotZ: 0.009532106 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232221 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Pact. + GMNotes: '' + GUID: c189a5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dance of the Yellow King + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -33.0721054 + posY: 1.59816492 + posZ: -3.9468503 + rotX: 359.920135 + rotY: 270.00177 + rotZ: 0.0167396571 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232221 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Pact. + GMNotes: '' + GUID: 74b258 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dance of the Yellow King + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -32.95977 + posY: 1.76483011 + posZ: -3.889132 + rotX: 359.9195 + rotY: 270.001862 + rotZ: 0.0146204839 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232220 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Lunatic. + GMNotes: '' + GUID: bce7b8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Young Psychopath + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -32.2588272 + posY: 1.596186 + posZ: -6.7895093 + rotX: 359.920227 + rotY: 269.9985 + rotZ: 0.0162243973 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232220 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Lunatic. + GMNotes: '' + GUID: 40c629 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Young Psychopath + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -32.21109 + posY: 1.762528 + posZ: -6.736423 + rotX: 359.9219 + rotY: 269.998535 + rotZ: 0.0156734586 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232219 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Lunatic. + GMNotes: '' + GUID: 006497 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Maniac + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -33.0786972 + posY: 1.5994426 + posZ: 0.4528645 + rotX: 359.920441 + rotY: 269.9931 + rotZ: 0.0150249889 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232219 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Lunatic. + GMNotes: '' + GUID: 068703 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Maniac + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -33.03474 + posY: 1.73884428 + posZ: 0.8094432 + rotX: 359.959045 + rotY: 270.001862 + rotZ: -0.00308930734 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232229 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Omen. Pact. + GMNotes: '' + GUID: 70009a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Pale Mask Beckons + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -28.2434616 + posY: 1.5971483 + posZ: 15.4716158 + rotX: 359.920166 + rotY: 270.021973 + rotZ: 0.01652023 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232228 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Pact. + GMNotes: '' + GUID: c023fe + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Marked by the Sign + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -28.2468338 + posY: 1.76336575 + posZ: 15.2574654 + rotX: 359.9197 + rotY: 270.021973 + rotZ: 0.0146484794 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232228 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Pact. + GMNotes: '' + GUID: 8c321d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Marked by the Sign + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -28.2435665 + posY: 1.77552032 + posZ: 15.0727062 + rotX: 359.91925 + rotY: 270.021973 + rotZ: 0.0173290391 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723517659500931/4B5458A518FDAF55C44CD8423EC12304E3266A6C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '2331': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723517659500931/4B5458A518FDAF55C44CD8423EC12304E3266A6C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 233102 +- 233102 +- 232816 +- 232816 +- 232815 +- 232815 +- 232814 +- 232814 +- 232813 +- 232813 +- 232813 +- 232204 +- 232204 +- 232203 +- 232203 +- 232221 +- 232221 +- 232220 +- 232220 +- 232219 +- 232219 +- 232229 +- 232228 +- 232228 +Description: '' +GMNotes: '' +GUID: 9869cb +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Encounter Deck +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.92773533 + posY: 1.73973322 + posZ: 5.75715351 + rotX: 359.919739 + rotY: 270.000183 + rotZ: 180.016815 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 2 The Last King 6730a1/Deck Sickening Reality 59504e.yaml b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 2 The Last King 6730a1/Deck Sickening Reality 59504e.yaml new file mode 100644 index 000000000..a65b7a195 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 2 The Last King 6730a1/Deck Sickening Reality 59504e.yaml @@ -0,0 +1,394 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 232909 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2329': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/762723517659499792/63775A11C2A49441C268121108C8EBFCF512E2A9/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723517659500387/BFF1AFFD515364F0BFD336A6CE9970BE1DD04B13/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Humanoid. Monster. Lunatic. + GMNotes: '' + GUID: b13af3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Crazed Guest + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -12.3055878 + posY: 1.83868408 + posZ: 14.8300962 + rotX: 359.939972 + rotY: 269.9889 + rotZ: 180.02565 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232909 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2329': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/762723517659499792/63775A11C2A49441C268121108C8EBFCF512E2A9/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723517659500387/BFF1AFFD515364F0BFD336A6CE9970BE1DD04B13/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Humanoid. Monster. Lunatic. + GMNotes: '' + GUID: 2135bf + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Crazed Guest + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -14.7000017 + posY: 1.71380734 + posZ: -59.8981361 + rotX: 359.920776 + rotY: 269.9995 + rotZ: 180.0179 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232908 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2329': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/762723517659499792/63775A11C2A49441C268121108C8EBFCF512E2A9/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723517659500387/BFF1AFFD515364F0BFD336A6CE9970BE1DD04B13/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Knows What You're Up To + GMNotes: '' + GUID: e88a40 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dianne Devine + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -14.8559093 + posY: 1.72493887 + posZ: -59.9391861 + rotX: 359.919922 + rotY: 270.0048 + rotZ: 180.015472 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232053 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378685352/22FD056BAF1966FE2D1AC46FC1BF90C1A03A1404/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378686413/C1688C1A909FDC7357EB3EEFADAB1FBD5818BD3E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: A Little Too Sociable + GMNotes: '' + GUID: 4ecefb + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Constance Dumaine + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -15.0629282 + posY: 1.70646524 + posZ: -60.28835 + rotX: 359.939056 + rotY: 270.000122 + rotZ: 180.0144 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232054 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378685352/22FD056BAF1966FE2D1AC46FC1BF90C1A03A1404/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378686413/C1688C1A909FDC7357EB3EEFADAB1FBD5818BD3E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: An Imposing Presence + GMNotes: '' + GUID: 1b6382 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Jordan Perry + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -24.9744949 + posY: 1.75588524 + posZ: 0.442909718 + rotX: 359.9204 + rotY: 270.000244 + rotZ: 180.017181 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232055 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378685352/22FD056BAF1966FE2D1AC46FC1BF90C1A03A1404/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378686413/C1688C1A909FDC7357EB3EEFADAB1FBD5818BD3E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Just Skin and Bones + GMNotes: '' + GUID: 5f2034 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ishimaru Haruko + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -24.9985275 + posY: 1.769759 + posZ: 1.3053416 + rotX: 359.919739 + rotY: 270.0004 + rotZ: 180.013733 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232056 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378685352/22FD056BAF1966FE2D1AC46FC1BF90C1A03A1404/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378686413/C1688C1A909FDC7357EB3EEFADAB1FBD5818BD3E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Savage Hysteria + GMNotes: '' + GUID: 4fd6d0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Sebastien Moreau + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 14.431983 + posY: 2.53729653 + posZ: -29.0373116 + rotX: 0.0 + rotY: 270.0 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232057 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378685352/22FD056BAF1966FE2D1AC46FC1BF90C1A03A1404/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378686413/C1688C1A909FDC7357EB3EEFADAB1FBD5818BD3E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Songs Die Unheard + GMNotes: '' + GUID: f003bd + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ashleigh Clarke + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -25.21192 + posY: 1.59111929 + posZ: 0.6037171 + rotX: 359.921967 + rotY: 270.024384 + rotZ: 180.0209 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378685352/22FD056BAF1966FE2D1AC46FC1BF90C1A03A1404/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378686413/C1688C1A909FDC7357EB3EEFADAB1FBD5818BD3E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + '2329': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/762723517659499792/63775A11C2A49441C268121108C8EBFCF512E2A9/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723517659500387/BFF1AFFD515364F0BFD336A6CE9970BE1DD04B13/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 232909 +- 232909 +- 232908 +- 232053 +- 232054 +- 232055 +- 232056 +- 232057 +Description: '' +GMNotes: '' +GUID: 59504e +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Sickening Reality +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.95599413 + posY: 1.6497395 + posZ: -10.4411678 + rotX: 359.919769 + rotY: 270.000244 + rotZ: 180.016968 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 2 The Last King 6730a1/Notecard Errata f66b3b.yaml b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 2 The Last King 6730a1/Notecard Errata f66b3b.yaml new file mode 100644 index 000000000..c3194aee8 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 2 The Last King 6730a1/Notecard Errata f66b3b.yaml @@ -0,0 +1,34 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +Description: "Corrosion (102)\r\nThis card\u2019s [b]Revelation[/b] ability should\ + \ read: \u201CDiscard [b][i]Item[/b][/i] assets from your\r play area and/or from\ + \ your hand\u2026\u201D" +GMNotes: '' +GUID: f66b3b +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Notecard +Nickname: Errata +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -11.375349 + posY: 1.56032109 + posZ: -23.9305973 + rotX: 0.07987749 + rotY: 89.99995 + rotZ: 359.983124 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 3 Echoes of the Past 42d2dc.ttslua b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 3 Echoes of the Past 42d2dc.ttslua new file mode 100644 index 000000000..46067f58e --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 3 Echoes of the Past 42d2dc.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.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.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 Return to The Path to Carcosa e9889a/Custom_Model_Bag 3 Echoes of the Past 42d2dc.yaml b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 3 Echoes of the Past 42d2dc.yaml new file mode 100644 index 000000000..9e4075ab6 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 3 Echoes of the Past 42d2dc.yaml @@ -0,0 +1,96 @@ +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 3 Echoes of the Past 42d2dc/Card Quiet Halls 0973f5.yaml' +- !include 'Custom_Model_Bag 3 Echoes of the Past 42d2dc/Custom_Tile 106e0f.yaml' +- !include 'Custom_Model_Bag 3 Echoes of the Past 42d2dc/Custom_Tile 339e43.yaml' +- !include 'Custom_Model_Bag 3 Echoes of the Past 42d2dc/Custom_Model_Bag Set-aside + 3ba3ee.yaml' +- !include 'Custom_Model_Bag 3 Echoes of the Past 42d2dc/Custom_Tile Echoes of the + Past 452210.yaml' +- !include 'Custom_Model_Bag 3 Echoes of the Past 42d2dc/Custom_Tile 467c53.yaml' +- !include 'Custom_Model_Bag 3 Echoes of the Past 42d2dc/Card Quiet Halls 4e601e.yaml' +- !include 'Custom_Model_Bag 3 Echoes of the Past 42d2dc/Notecard Errata 1 5909ed.yaml' +- !include 'Custom_Model_Bag 3 Echoes of the Past 42d2dc/Custom_Tile 68f53e.yaml' +- !include 'Custom_Model_Bag 3 Echoes of the Past 42d2dc/Custom_Tile 7234af.yaml' +- !include 'Custom_Model_Bag 3 Echoes of the Past 42d2dc/Custom_Tile 740ce6.yaml' +- !include 'Custom_Model_Bag 3 Echoes of the Past 42d2dc/Custom_Tile 763978.yaml' +- !include 'Custom_Model_Bag 3 Echoes of the Past 42d2dc/Card Setup 93a42f.yaml' +- !include 'Custom_Model_Bag 3 Echoes of the Past 42d2dc/Deck Agenda Deck 93a774.yaml' +- !include 'Custom_Model_Bag 3 Echoes of the Past 42d2dc/Card Quiet Halls 93aee3.yaml' +- !include 'Custom_Model_Bag 3 Echoes of the Past 42d2dc/Card Entry Hall 9be8fd.yaml' +- !include 'Custom_Model_Bag 3 Echoes of the Past 42d2dc/Card Scenario aa08d4.yaml' +- !include 'Custom_Model_Bag 3 Echoes of the Past 42d2dc/Deck Basement ca92fb.yaml' +- !include 'Custom_Model_Bag 3 Echoes of the Past 42d2dc/Custom_Tile cb4537.yaml' +- !include 'Custom_Model_Bag 3 Echoes of the Past 42d2dc/Custom_Tile cc6904.yaml' +- !include 'Custom_Model_Bag 3 Echoes of the Past 42d2dc/Deck Second Floor dfaa5b.yaml' +- !include 'Custom_Model_Bag 3 Echoes of the Past 42d2dc/Custom_Tile e295b9.yaml' +- !include 'Custom_Model_Bag 3 Echoes of the Past 42d2dc/Deck Ground Floor e9eec7.yaml' +- !include 'Custom_Model_Bag 3 Echoes of the Past 42d2dc/Deck Act Deck f782b4.yaml' +- !include 'Custom_Model_Bag 3 Echoes of the Past 42d2dc/Deck Third Floor f989e2.yaml' +- !include 'Custom_Model_Bag 3 Echoes of the Past 42d2dc/Deck Encounter Deck fb4859.yaml' +- !include 'Custom_Model_Bag 3 Echoes of the Past 42d2dc/Custom_Tile fe7779.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/762723517662107116/BA75A5B78EC88E0D2BE6E4E952D7DB55491B9375/ + MaterialIndex: 3 + MeshURL: https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj + NormalURL: '' + TypeIndex: 6 +Description: '' +GMNotes: '' +GUID: 42d2dc +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Model_Bag 3 Echoes of the Past 42d2dc.ttslua' +LuaScriptState: '{"ml":{"0973f5":{"lock":false,"pos":{"x":-36.7736,"y":1.7045,"z":-0.03},"rot":{"x":359.9201,"y":270,"z":0.0169}},"106e0f":{"lock":false,"pos":{"x":-20.5475,"y":1.6102,"z":0.004},"rot":{"x":359.9201,"y":269.9952,"z":0.0169}},"339e43":{"lock":false,"pos":{"x":-17.12,"y":1.6065,"z":3.86},"rot":{"x":359.9831,"y":0.0002,"z":359.92}},"3ba3ee":{"lock":false,"pos":{"x":1.6967,"y":1.5583,"z":14.2787},"rot":{"x":359.9551,"y":224.998,"z":0.0687}},"452210":{"lock":false,"pos":{"x":-4.0608,"y":1.5826,"z":-15.3593},"rot":{"x":359.9197,"y":269.9995,"z":0.0168}},"467c53":{"lock":false,"pos":{"x":-36.7731,"y":1.6317,"z":-3.83},"rot":{"x":359.9831,"y":0.0003,"z":359.92}},"4e601e":{"lock":false,"pos":{"x":-23.6765,"y":1.6862,"z":-0.03},"rot":{"x":359.9201,"y":269.9984,"z":0.0169}},"5909ed":{"lock":false,"pos":{"x":-11.1541,"y":1.56,"z":-23.9453},"rot":{"x":0.0799,"y":89.9963,"z":359.9831}},"68f53e":{"lock":false,"pos":{"x":-30.2242,"y":1.6225,"z":-3.83},"rot":{"x":359.9831,"y":0.0002,"z":359.9201}},"7234af":{"lock":false,"pos":{"x":-27.0268,"y":1.6192,"z":-0.0469},"rot":{"x":359.9201,"y":269.9951,"z":0.0169}},"740ce6":{"lock":false,"pos":{"x":-30.2243,"y":1.6248,"z":3.86},"rot":{"x":359.9831,"y":0.0003,"z":359.92}},"763978":{"lock":false,"pos":{"x":-23.6765,"y":1.6134,"z":-3.83},"rot":{"x":359.9831,"y":0.0001,"z":359.92}},"93a42f":{"lock":false,"pos":{"x":-0.359,"y":1.6506,"z":-10.4405},"rot":{"x":359.9197,"y":270.0001,"z":0.0168}},"93a774":{"lock":false,"pos":{"x":-2.7248,"y":1.6566,"z":0.3733},"rot":{"x":0.0168,"y":179.9998,"z":0.0803}},"93aee3":{"lock":false,"pos":{"x":-17.12,"y":1.6771,"z":-0.03},"rot":{"x":359.9201,"y":269.9999,"z":0.0169}},"9be8fd":{"lock":false,"pos":{"x":-30.2243,"y":1.6954,"z":-0.03},"rot":{"x":359.9201,"y":269.9993,"z":0.0169}},"aa08d4":{"lock":false,"pos":{"x":-3.956,"y":1.6556,"z":-10.4412},"rot":{"x":359.9197,"y":269.9999,"z":0.0168}},"ca92fb":{"lock":false,"pos":{"x":-36.7735,"y":1.7085,"z":15.1903},"rot":{"x":359.9201,"y":270.0001,"z":0.0169}},"cb4537":{"lock":false,"pos":{"x":-17.12,"y":1.6042,"z":-3.83},"rot":{"x":359.9831,"y":0.0001,"z":359.9201}},"cc6904":{"lock":false,"pos":{"x":-33.4597,"y":1.6281,"z":-0.0516},"rot":{"x":359.9201,"y":269.9951,"z":0.0169}},"dfaa5b":{"lock":false,"pos":{"x":-23.6765,"y":1.6902,"z":15.19},"rot":{"x":359.9201,"y":269.9999,"z":0.0169}},"e295b9":{"lock":false,"pos":{"x":-36.7731,"y":1.6339,"z":3.86},"rot":{"x":359.9831,"y":0.0003,"z":359.92}},"e9eec7":{"lock":false,"pos":{"x":-30.2243,"y":1.6994,"z":15.19},"rot":{"x":359.9201,"y":270,"z":0.0169}},"f782b4":{"lock":false,"pos":{"x":-2.6886,"y":1.655,"z":-5.0485},"rot":{"x":0.0168,"y":179.9999,"z":0.0803}},"f989e2":{"lock":false,"pos":{"x":-17.1201,"y":1.6811,"z":15.19},"rot":{"x":359.9201,"y":269.9999,"z":0.0169}},"fb4859":{"lock":false,"pos":{"x":-3.9277,"y":1.7877,"z":5.7572},"rot":{"x":359.9197,"y":270,"z":180.0168}},"fe7779":{"lock":false,"pos":{"x":-23.6765,"y":1.6157,"z":3.86},"rot":{"x":359.9831,"y":0.0001,"z":359.9201}}}}' +MaterialIndex: -1 +MeshIndex: -1 +Name: Custom_Model_Bag +Nickname: '3: Echoes of the Past' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 12.25011 + posY: 1.468388 + posZ: 13.4383 + rotX: 359.9201 + rotY: 270.013062 + rotZ: 0.0168556869 + scaleX: 2.21 + scaleY: 0.46 + scaleZ: 2.42 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 3 Echoes of the Past 42d2dc/Card Entry Hall 9be8fd.yaml b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 3 Echoes of the Past 42d2dc/Card Entry Hall 9be8fd.yaml new file mode 100644 index 000000000..039b8884b --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 3 Echoes of the Past 42d2dc/Card Entry Hall 9be8fd.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 232019 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378685352/22FD056BAF1966FE2D1AC46FC1BF90C1A03A1404/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378686413/C1688C1A909FDC7357EB3EEFADAB1FBD5818BD3E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Ground Floor. +GMNotes: '' +GUID: 9be8fd +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Entry Hall +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -30.2243 + posY: 1.69535077 + posZ: -0.0300003476 + rotX: 359.9201 + rotY: 269.999268 + rotZ: 0.0168774128 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 3 Echoes of the Past 42d2dc/Card Quiet Halls 0973f5.yaml b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 3 Echoes of the Past 42d2dc/Card Quiet Halls 0973f5.yaml new file mode 100644 index 000000000..759d07a2a --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 3 Echoes of the Past 42d2dc/Card Quiet Halls 0973f5.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 232912 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2329': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/762723517659499792/63775A11C2A49441C268121108C8EBFCF512E2A9/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723517659500387/BFF1AFFD515364F0BFD336A6CE9970BE1DD04B13/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Basement. +GMNotes: '' +GUID: 0973f5 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Quiet Halls +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -36.7736 + posY: 1.70448339 + posZ: -0.0300004315 + rotX: 359.9201 + rotY: 270.0 + rotZ: 0.0168761723 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 3 Echoes of the Past 42d2dc/Card Quiet Halls 4e601e.yaml b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 3 Echoes of the Past 42d2dc/Card Quiet Halls 4e601e.yaml new file mode 100644 index 000000000..aaa8b830e --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 3 Echoes of the Past 42d2dc/Card Quiet Halls 4e601e.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 232023 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378685352/22FD056BAF1966FE2D1AC46FC1BF90C1A03A1404/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378686413/C1688C1A909FDC7357EB3EEFADAB1FBD5818BD3E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Second Floor. +GMNotes: '' +GUID: 4e601e +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Quiet Halls +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -23.6765 + posY: 1.68622029 + posZ: -0.0300005041 + rotX: 359.9201 + rotY: 269.9984 + rotZ: 0.0168784559 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 3 Echoes of the Past 42d2dc/Card Quiet Halls 93aee3.yaml b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 3 Echoes of the Past 42d2dc/Card Quiet Halls 93aee3.yaml new file mode 100644 index 000000000..a5449b230 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 3 Echoes of the Past 42d2dc/Card Quiet Halls 93aee3.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 232027 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378685352/22FD056BAF1966FE2D1AC46FC1BF90C1A03A1404/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378686413/C1688C1A909FDC7357EB3EEFADAB1FBD5818BD3E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Third Floor. +GMNotes: '' +GUID: 93aee3 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Quiet Halls +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -17.12 + posY: 1.67707777 + posZ: -0.03000032 + rotX: 359.9201 + rotY: 269.999878 + rotZ: 0.0168762784 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 3 Echoes of the Past 42d2dc/Card Scenario aa08d4.yaml b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 3 Echoes of the Past 42d2dc/Card Scenario aa08d4.yaml new file mode 100644 index 000000000..54d872745 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 3 Echoes of the Past 42d2dc/Card Scenario aa08d4.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 232018 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378685352/22FD056BAF1966FE2D1AC46FC1BF90C1A03A1404/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378686413/C1688C1A909FDC7357EB3EEFADAB1FBD5818BD3E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Echoes of the Past +GMNotes: '' +GUID: aa08d4 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Scenario +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.95600057 + posY: 1.65564823 + posZ: -10.4412012 + rotX: 359.919739 + rotY: 269.999939 + rotZ: 0.0168412868 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 3 Echoes of the Past 42d2dc/Card Setup 93a42f.yaml b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 3 Echoes of the Past 42d2dc/Card Setup 93a42f.yaml new file mode 100644 index 000000000..8704c939d --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 3 Echoes of the Past 42d2dc/Card Setup 93a42f.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 232911 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2329': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/762723517659499792/63775A11C2A49441C268121108C8EBFCF512E2A9/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723517659500387/BFF1AFFD515364F0BFD336A6CE9970BE1DD04B13/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Return to Echoes of the Past +GMNotes: '' +GUID: 93a42f +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Setup +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -0.3589999 + posY: 1.65061 + posZ: -10.4405022 + rotX: 359.919739 + rotY: 270.0 + rotZ: 0.0168408379 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 3 Echoes of the Past 42d2dc/Custom_Model_Bag Set-aside 3ba3ee.yaml b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 3 Echoes of the Past 42d2dc/Custom_Model_Bag Set-aside 3ba3ee.yaml new file mode 100644 index 000000000..bad701332 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 3 Echoes of the Past 42d2dc/Custom_Model_Bag Set-aside 3ba3ee.yaml @@ -0,0 +1,62 @@ +Autoraise: true +ColorDiffuse: + b: 0.02148666 + g: 0.00100758043 + r: 0.02148666 +ContainedObjects: +- !include 'Custom_Model_Bag Set-aside 3ba3ee/Card Sebastien Moreau 4fd6d0.yaml' +- !include 'Custom_Model_Bag Set-aside 3ba3ee/Deck Keeper of the Oath 57f4bf.yaml' +- !include 'Custom_Model_Bag Set-aside 3ba3ee/Card Clasp of Black Onyx f295d9.yaml' +- !include 'Custom_Model_Bag Set-aside 3ba3ee/Card The Tattered Cloak 5d30a1.yaml' +- !include 'Custom_Model_Bag Set-aside 3ba3ee/Card Mr. Peabody 46185e.yaml' +- !include 'Custom_Model_Bag Set-aside 3ba3ee/Card Possessed Oathspeaker eb8243.yaml' +- !include 'Custom_Model_Bag Set-aside 3ba3ee/Card Hidden Library d81228.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: Echoes of the Past +GMNotes: '' +GUID: 3ba3ee +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +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.69670069 + posY: 1.55831647 + posZ: 14.2787018 + rotX: 359.955139 + rotY: 224.997986 + rotZ: 0.06867339 + scaleX: 2.0 + scaleY: 2.0 + scaleZ: 2.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 3 Echoes of the Past 42d2dc/Custom_Model_Bag Set-aside 3ba3ee/Card Clasp of Black Onyx f295d9.yaml b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 3 Echoes of the Past 42d2dc/Custom_Model_Bag Set-aside 3ba3ee/Card Clasp of Black Onyx f295d9.yaml new file mode 100644 index 000000000..1b2783773 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 3 Echoes of the Past 42d2dc/Custom_Model_Bag Set-aside 3ba3ee/Card Clasp of Black Onyx f295d9.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: A Gift Unlooked For +GMNotes: '' +GUID: f295d9 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Clasp of Black Onyx +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -22.74931 + posY: 3.64553 + posZ: 17.6093483 + rotX: 359.902618 + rotY: 269.988129 + rotZ: 0.0211803261 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 3 Echoes of the Past 42d2dc/Custom_Model_Bag Set-aside 3ba3ee/Card Hidden Library d81228.yaml b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 3 Echoes of the Past 42d2dc/Custom_Model_Bag Set-aside 3ba3ee/Card Hidden Library d81228.yaml new file mode 100644 index 000000000..cbf92cf6d --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 3 Echoes of the Past 42d2dc/Custom_Model_Bag Set-aside 3ba3ee/Card Hidden Library d81228.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 232031 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378685352/22FD056BAF1966FE2D1AC46FC1BF90C1A03A1404/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378686413/C1688C1A909FDC7357EB3EEFADAB1FBD5818BD3E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: d81228 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Hidden Library +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -22.2405872 + posY: 3.64545417 + posZ: 20.19603 + rotX: 359.9195 + rotY: 270.000031 + rotZ: 0.01694967 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 3 Echoes of the Past 42d2dc/Custom_Model_Bag Set-aside 3ba3ee/Card Mr. Peabody 46185e.yaml b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 3 Echoes of the Past 42d2dc/Custom_Model_Bag Set-aside 3ba3ee/Card Mr. Peabody 46185e.yaml new file mode 100644 index 000000000..65072cbb9 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 3 Echoes of the Past 42d2dc/Custom_Model_Bag Set-aside 3ba3ee/Card Mr. Peabody 46185e.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 232431 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2324': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: Historical Society Curator +GMNotes: '' +GUID: 46185e +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Mr. Peabody +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -22.24006 + posY: 3.64489174 + posZ: 18.1510487 + rotX: 359.9194 + rotY: 269.999176 + rotZ: 0.016954096 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 3 Echoes of the Past 42d2dc/Custom_Model_Bag Set-aside 3ba3ee/Card Possessed Oathspeaker eb8243.yaml b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 3 Echoes of the Past 42d2dc/Custom_Model_Bag Set-aside 3ba3ee/Card Possessed Oathspeaker eb8243.yaml new file mode 100644 index 000000000..ae9432be0 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 3 Echoes of the Past 42d2dc/Custom_Model_Bag Set-aside 3ba3ee/Card Possessed Oathspeaker eb8243.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 232230 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: A Damnable Fate +GMNotes: '' +GUID: eb8243 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Possessed Oathspeaker +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -22.0849075 + posY: 3.64505625 + posZ: 19.67156 + rotX: 359.920624 + rotY: 269.999756 + rotZ: 0.0165995378 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 3 Echoes of the Past 42d2dc/Custom_Model_Bag Set-aside 3ba3ee/Card Sebastien Moreau 4fd6d0.yaml b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 3 Echoes of the Past 42d2dc/Custom_Model_Bag Set-aside 3ba3ee/Card Sebastien Moreau 4fd6d0.yaml new file mode 100644 index 000000000..b68e3908c --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 3 Echoes of the Past 42d2dc/Custom_Model_Bag Set-aside 3ba3ee/Card Sebastien Moreau 4fd6d0.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 232056 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378685352/22FD056BAF1966FE2D1AC46FC1BF90C1A03A1404/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378686413/C1688C1A909FDC7357EB3EEFADAB1FBD5818BD3E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Savage Hysteria +GMNotes: '' +GUID: 4fd6d0 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Sebastien Moreau +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -27.4014854 + posY: 2.587479 + posZ: -48.7957268 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 3 Echoes of the Past 42d2dc/Custom_Model_Bag Set-aside 3ba3ee/Card The Tattered Cloak 5d30a1.yaml b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 3 Echoes of the Past 42d2dc/Custom_Model_Bag Set-aside 3ba3ee/Card The Tattered Cloak 5d30a1.yaml new file mode 100644 index 000000000..b6b7e2105 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 3 Echoes of the Past 42d2dc/Custom_Model_Bag Set-aside 3ba3ee/Card The Tattered Cloak 5d30a1.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Regalia Dementia +GMNotes: '' +GUID: 5d30a1 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: The Tattered Cloak +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -22.5694981 + posY: 3.645511 + posZ: 18.9319611 + rotX: 359.919525 + rotY: 270.007324 + rotZ: 0.0169393681 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 3 Echoes of the Past 42d2dc/Custom_Model_Bag Set-aside 3ba3ee/Deck Keeper of the Oath 57f4bf.yaml b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 3 Echoes of the Past 42d2dc/Custom_Model_Bag Set-aside 3ba3ee/Deck Keeper of the Oath 57f4bf.yaml new file mode 100644 index 000000000..8114d05b0 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 3 Echoes of the Past 42d2dc/Custom_Model_Bag Set-aside 3ba3ee/Deck Keeper of the Oath 57f4bf.yaml @@ -0,0 +1,129 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 232804 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723517659500931/4B5458A518FDAF55C44CD8423EC12304E3266A6C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Cultist. + GMNotes: '' + GUID: 75df15 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Keeper of the Oath + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -30.8914013 + posY: 1.58654368 + posZ: -32.9231567 + rotX: 359.922882 + rotY: 269.944733 + rotZ: 0.009413059 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232804 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723517659500931/4B5458A518FDAF55C44CD8423EC12304E3266A6C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Cultist. + GMNotes: '' + GUID: 5987af + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Keeper of the Oath + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -30.5716076 + posY: 1.73157883 + posZ: -33.14961 + rotX: 359.9341 + rotY: 269.9945 + rotZ: -0.00141388341 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723517659500931/4B5458A518FDAF55C44CD8423EC12304E3266A6C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 232804 +- 232804 +Description: '' +GMNotes: '' +GUID: 57f4bf +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Keeper of the Oath +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -20.2770157 + posY: 2.94478583 + posZ: -58.83381 + rotX: 359.920135 + rotY: 269.980164 + rotZ: 0.0169541556 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 3 Echoes of the Past 42d2dc/Custom_Tile 106e0f.yaml b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 3 Echoes of the Past 42d2dc/Custom_Tile 106e0f.yaml new file mode 100644 index 000000000..da40ab7dc --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 3 Echoes of the Past 42d2dc/Custom_Tile 106e0f.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 106e0f +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.5475 + posY: 1.61015356 + posZ: 0.0039999634 + rotX: 359.9201 + rotY: 269.995178 + rotZ: 0.0169055946 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 3 Echoes of the Past 42d2dc/Custom_Tile 339e43.yaml b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 3 Echoes of the Past 42d2dc/Custom_Tile 339e43.yaml new file mode 100644 index 000000000..f6c7a13cf --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 3 Echoes of the Past 42d2dc/Custom_Tile 339e43.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 339e43 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.1199989 + posY: 1.6065098 + posZ: 3.86 + rotX: 359.983124 + rotY: 0.0003756611 + rotZ: 359.920044 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 3 Echoes of the Past 42d2dc/Custom_Tile 467c53.yaml b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 3 Echoes of the Past 42d2dc/Custom_Tile 467c53.yaml new file mode 100644 index 000000000..19ab15723 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 3 Echoes of the Past 42d2dc/Custom_Tile 467c53.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 467c53 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.8300004 + rotX: 359.983124 + rotY: 0.0004793743 + rotZ: 359.920074 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 3 Echoes of the Past 42d2dc/Custom_Tile 68f53e.yaml b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 3 Echoes of the Past 42d2dc/Custom_Tile 68f53e.yaml new file mode 100644 index 000000000..5fd41b5bc --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 3 Echoes of the Past 42d2dc/Custom_Tile 68f53e.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 68f53e +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.2241974 + posY: 1.6225183 + posZ: -3.82999969 + rotX: 359.983124 + rotY: 0.000193138811 + rotZ: 359.920074 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 3 Echoes of the Past 42d2dc/Custom_Tile 7234af.yaml b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 3 Echoes of the Past 42d2dc/Custom_Tile 7234af.yaml new file mode 100644 index 000000000..4b7e3c8ef --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 3 Echoes of the Past 42d2dc/Custom_Tile 7234af.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 7234af +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.0268 + posY: 1.61917353 + posZ: -0.04690026 + rotX: 359.9201 + rotY: 269.995056 + rotZ: 0.0169071071 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 3 Echoes of the Past 42d2dc/Custom_Tile 740ce6.yaml b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 3 Echoes of the Past 42d2dc/Custom_Tile 740ce6.yaml new file mode 100644 index 000000000..4549ade67 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 3 Echoes of the Past 42d2dc/Custom_Tile 740ce6.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 740ce6 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.6247828 + posZ: 3.86000037 + rotX: 359.983124 + rotY: 0.000325185421 + rotZ: 359.920074 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 3 Echoes of the Past 42d2dc/Custom_Tile 763978.yaml b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 3 Echoes of the Past 42d2dc/Custom_Tile 763978.yaml new file mode 100644 index 000000000..b6749fb8a --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 3 Echoes of the Past 42d2dc/Custom_Tile 763978.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: '763978' +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.6765 + posY: 1.613388 + posZ: -3.83000016 + rotX: 359.983124 + rotY: 0.000204681317 + rotZ: 359.920074 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 3 Echoes of the Past 42d2dc/Custom_Tile cb4537.yaml b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 3 Echoes of the Past 42d2dc/Custom_Tile cb4537.yaml new file mode 100644 index 000000000..e9d5dc684 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 3 Echoes of the Past 42d2dc/Custom_Tile cb4537.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: cb4537 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.60424554 + posZ: -3.83 + rotX: 359.983124 + rotY: 0.000237304528 + rotZ: 359.920074 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 3 Echoes of the Past 42d2dc/Custom_Tile cc6904.yaml b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 3 Echoes of the Past 42d2dc/Custom_Tile cc6904.yaml new file mode 100644 index 000000000..4e8c1795a --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 3 Echoes of the Past 42d2dc/Custom_Tile cc6904.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: cc6904 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.4597 + posY: 1.62814236 + posZ: -0.0516002849 + rotX: 359.9201 + rotY: 269.995056 + rotZ: 0.01690647 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 3 Echoes of the Past 42d2dc/Custom_Tile e295b9.yaml b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 3 Echoes of the Past 42d2dc/Custom_Tile e295b9.yaml new file mode 100644 index 000000000..55545ab59 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 3 Echoes of the Past 42d2dc/Custom_Tile e295b9.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: e295b9 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.63391471 + posZ: 3.86000037 + rotX: 359.983124 + rotY: 0.000429636129 + rotZ: 359.920044 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 3 Echoes of the Past 42d2dc/Custom_Tile fe7779.yaml b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 3 Echoes of the Past 42d2dc/Custom_Tile fe7779.yaml new file mode 100644 index 000000000..9d657dec7 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 3 Echoes of the Past 42d2dc/Custom_Tile fe7779.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: fe7779 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.6765 + posY: 1.61565232 + posZ: 3.86000013 + rotX: 359.983124 + rotY: 0.000180205781 + rotZ: 359.920074 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 3 Echoes of the Past 42d2dc/Custom_Tile Echoes of the Past 452210.ttslua b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 3 Echoes of the Past 42d2dc/Custom_Tile Echoes of the Past 452210.ttslua new file mode 100644 index 000000000..9852aeb27 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 3 Echoes of the Past 42d2dc/Custom_Tile Echoes of the Past 452210.ttslua @@ -0,0 +1,25 @@ +name = 'Echoes of the Past' + +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 + +function standaloneClick() + Global.call('fillContainer', {object=self, key=name, mode='standalone'}) +end diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 3 Echoes of the Past 42d2dc/Custom_Tile Echoes of the Past 452210.yaml b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 3 Echoes of the Past 42d2dc/Custom_Tile Echoes of the Past 452210.yaml new file mode 100644 index 000000000..c090e139c --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 3 Echoes of the Past 42d2dc/Custom_Tile Echoes of the Past 452210.yaml @@ -0,0 +1,42 @@ +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 +GMNotes: '' +GUID: '452210' +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Tile Echoes of the Past 452210.ttslua' +LuaScriptState: '' +Name: Custom_Tile +Nickname: Echoes of the Past +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -4.0608 + posY: 1.58263612 + posZ: -15.3593016 + rotX: 359.919739 + rotY: 269.9995 + rotZ: 0.0168385226 + scaleX: 2.2 + scaleY: 1.0 + scaleZ: 2.2 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 3 Echoes of the Past 42d2dc/Deck Act Deck f782b4.yaml b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 3 Echoes of the Past 42d2dc/Deck Act Deck f782b4.yaml new file mode 100644 index 000000000..779477ed4 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 3 Echoes of the Past 42d2dc/Deck Act Deck f782b4.yaml @@ -0,0 +1,172 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 231715 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2317': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378732934/F41E84FCDC0AB52634348C439A6D1A725CEB8115/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378736378/628E179D5305E95AFC25D86526320A24F8B27391/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 3 + GMNotes: '' + GUID: 3d6b80 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Oath + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -53.2045174 + posY: 1.6290406 + posZ: 5.590996 + rotX: 0.0252042729 + rotY: 174.0672 + rotZ: 0.0778793 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231714 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2317': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378732934/F41E84FCDC0AB52634348C439A6D1A725CEB8115/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378736378/628E179D5305E95AFC25D86526320A24F8B27391/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 2 + GMNotes: '' + GUID: 452df1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Mistakes of the Past + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -53.3106346 + posY: 1.77511835 + posZ: 5.47950554 + rotX: -0.004284563 + rotY: 180.849213 + rotZ: 0.0517339781 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231713 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2317': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378732934/F41E84FCDC0AB52634348C439A6D1A725CEB8115/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378736378/628E179D5305E95AFC25D86526320A24F8B27391/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 1 + GMNotes: '' + GUID: 3da436 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Race for Answers + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -53.257782 + posY: 1.79245424 + posZ: 5.53867865 + rotX: -0.003062586 + rotY: 180.178726 + rotZ: 0.0659932643 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2317': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378732934/F41E84FCDC0AB52634348C439A6D1A725CEB8115/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378736378/628E179D5305E95AFC25D86526320A24F8B27391/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 231715 +- 231714 +- 231713 +Description: '' +GMNotes: '' +GUID: f782b4 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Act Deck +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.68859982 + posY: 1.65499735 + posZ: -5.0485 + rotX: 0.0168350674 + rotY: 179.999878 + rotZ: 0.08025753 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 3 Echoes of the Past 42d2dc/Deck Agenda Deck 93a774.yaml b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 3 Echoes of the Past 42d2dc/Deck Agenda Deck 93a774.yaml new file mode 100644 index 000000000..ad4534e2e --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 3 Echoes of the Past 42d2dc/Deck Agenda Deck 93a774.yaml @@ -0,0 +1,172 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 231712 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2317': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378732934/F41E84FCDC0AB52634348C439A6D1A725CEB8115/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378736378/628E179D5305E95AFC25D86526320A24F8B27391/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 3 + GMNotes: '' + GUID: ae6790 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Secrets Better Left Hidden + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -57.3113937 + posY: 1.63446677 + posZ: 4.80537176 + rotX: 0.0167405345 + rotY: 180.0065 + rotZ: 0.07151149 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231711 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2317': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378732934/F41E84FCDC0AB52634348C439A6D1A725CEB8115/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378736378/628E179D5305E95AFC25D86526320A24F8B27391/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 2 + GMNotes: '' + GUID: 25a10f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ransacking the Manor + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -57.1309547 + posY: 1.77995825 + posZ: 4.98149061 + rotX: 359.981323 + rotY: 180.048416 + rotZ: 0.05862128 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231710 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2317': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378732934/F41E84FCDC0AB52634348C439A6D1A725CEB8115/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378736378/628E179D5305E95AFC25D86526320A24F8B27391/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 1 + GMNotes: '' + GUID: 3da436 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Truth is Hidden + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -57.2520866 + posY: 1.79770637 + posZ: 4.529267 + rotX: -0.00182255078 + rotY: 179.422211 + rotZ: 0.06521147 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2317': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378732934/F41E84FCDC0AB52634348C439A6D1A725CEB8115/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378736378/628E179D5305E95AFC25D86526320A24F8B27391/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 231712 +- 231711 +- 231710 +Description: '' +GMNotes: '' +GUID: 93a774 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Agenda Deck +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.7248 + posY: 1.65664136 + posZ: 0.373300284 + rotX: 0.0168353077 + rotY: 179.999832 + rotZ: 0.0802574158 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 3 Echoes of the Past 42d2dc/Deck Basement ca92fb.yaml b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 3 Echoes of the Past 42d2dc/Deck Basement ca92fb.yaml new file mode 100644 index 000000000..3f8604b78 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 3 Echoes of the Past 42d2dc/Deck Basement ca92fb.yaml @@ -0,0 +1,172 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 232915 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2329': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/762723517659499792/63775A11C2A49441C268121108C8EBFCF512E2A9/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723517659500387/BFF1AFFD515364F0BFD336A6CE9970BE1DD04B13/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Basement. + GMNotes: '' + GUID: 20fcda + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Historical Society + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -29.9389629 + posY: 1.58294392 + posZ: -40.1822739 + rotX: 359.9218 + rotY: 269.990082 + rotZ: 0.005417809 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232914 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2329': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/762723517659499792/63775A11C2A49441C268121108C8EBFCF512E2A9/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723517659500387/BFF1AFFD515364F0BFD336A6CE9970BE1DD04B13/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Basement. + GMNotes: '' + GUID: abc0cb + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Historical Society + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -30.0271225 + posY: 1.72815347 + posZ: -40.5059662 + rotX: 359.93927 + rotY: 269.987518 + rotZ: 0.0198336411 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232913 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2329': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/762723517659499792/63775A11C2A49441C268121108C8EBFCF512E2A9/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723517659500387/BFF1AFFD515364F0BFD336A6CE9970BE1DD04B13/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Basement. + GMNotes: '' + GUID: f7da2f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Historical Society + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -36.7723045 + posY: 1.87110722 + posZ: 15.1912384 + rotX: 359.1331 + rotY: 269.9953 + rotZ: 359.101837 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2329': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/762723517659499792/63775A11C2A49441C268121108C8EBFCF512E2A9/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723517659500387/BFF1AFFD515364F0BFD336A6CE9970BE1DD04B13/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 232915 +- 232914 +- 232913 +Description: '' +GMNotes: '' +GUID: ca92fb +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Basement +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -36.7735 + posY: 1.70850492 + posZ: 15.1903009 + rotX: 359.9201 + rotY: 270.000031 + rotZ: 0.0168759748 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 3 Echoes of the Past 42d2dc/Deck Encounter Deck fb4859.yaml b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 3 Echoes of the Past 42d2dc/Deck Encounter Deck fb4859.yaml new file mode 100644 index 000000000..aaec8377d --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 3 Echoes of the Past 42d2dc/Deck Encounter Deck fb4859.yaml @@ -0,0 +1,1490 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 232823 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723517659500931/4B5458A518FDAF55C44CD8423EC12304E3266A6C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: 3effb8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Maddening Delusions + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -20.1577435 + posY: 1.57207835 + posZ: -31.3182583 + rotX: 359.92038 + rotY: 269.999878 + rotZ: 0.0152459564 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232823 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723517659500931/4B5458A518FDAF55C44CD8423EC12304E3266A6C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: dd93e2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Maddening Delusions + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -20.4406471 + posY: 1.73394608 + posZ: -31.18953 + rotX: 359.9276 + rotY: 269.999939 + rotZ: 0.007684529 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232822 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723517659500931/4B5458A518FDAF55C44CD8423EC12304E3266A6C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: a92ef8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Visions in Your Mind (Hatred) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -19.8424263 + posY: 1.73465288 + posZ: -31.0785656 + rotX: 359.919647 + rotY: 270.0066 + rotZ: 0.0226448 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232821 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723517659500931/4B5458A518FDAF55C44CD8423EC12304E3266A6C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: '613256' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Visions in Your Mind (Death) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -20.2634449 + posY: 1.7214551 + posZ: -31.20634 + rotX: 359.922943 + rotY: 269.996216 + rotZ: 0.0142507013 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232820 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723517659500931/4B5458A518FDAF55C44CD8423EC12304E3266A6C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: ca4b6d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Visions in Your Mind (Failure) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -19.837471 + posY: 1.71898663 + posZ: -31.096756 + rotX: 359.918335 + rotY: 269.998779 + rotZ: 0.0132667217 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232819 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723517659500931/4B5458A518FDAF55C44CD8423EC12304E3266A6C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: 5987af + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Visions in Your Mind (Horrors) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -20.4759254 + posY: 1.72235584 + posZ: -30.9665585 + rotX: 359.925446 + rotY: 270.004181 + rotZ: 0.00763365347 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232236 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Scheme. + GMNotes: '' + GUID: bec6ce + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Cult's Search + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -14.6870451 + posY: 1.92823112 + posZ: 5.285528 + rotX: 359.9532 + rotY: 269.994019 + rotZ: 179.973236 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232236 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Scheme. + GMNotes: '' + GUID: '829090' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Cult's Search + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -0.276322931 + posY: 1.72082257 + posZ: -2.44649863 + rotX: 359.943573 + rotY: 270.0 + rotZ: 0.01258099 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232235 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Scheme. + GMNotes: '' + GUID: 77144e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Led Astray + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.79898667 + posY: 1.54987514 + posZ: 1.89306128 + rotX: 359.9202 + rotY: 269.999939 + rotZ: 0.0166225228 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232235 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Scheme. + GMNotes: '' + GUID: 42def5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Led Astray + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.07061386 + posY: 1.71259284 + posZ: 2.361349 + rotX: 359.937317 + rotY: 270.0 + rotZ: 0.005581428 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232235 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Scheme. + GMNotes: '' + GUID: 77144e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Led Astray + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.070633 + posY: 1.7265588 + posZ: 2.36134481 + rotX: 359.9364 + rotY: 270.0 + rotZ: 0.0118426653 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232234 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Cultist. + GMNotes: '' + GUID: 7d4b6a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Seeker of Carcosa + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -0.325364053 + posY: 1.55484188 + posZ: 4.13476 + rotX: 359.920624 + rotY: 269.998962 + rotZ: 0.0134161934 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232234 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Cultist. + GMNotes: '' + GUID: 596a2f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Seeker of Carcosa + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -0.538002253 + posY: 1.713114 + posZ: 4.117489 + rotX: 359.930542 + rotY: 269.998962 + rotZ: 0.0134416306 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232234 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Cultist. + GMNotes: '' + GUID: 7d4b6a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Seeker of Carcosa + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -0.389602721 + posY: 1.71785784 + posZ: 4.305204 + rotX: 359.9395 + rotY: 270.000916 + rotZ: 0.007991079 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232224 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Pact. + GMNotes: '' + GUID: e20141 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The King's Edict + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -45.28207 + posY: 1.61571622 + posZ: -1.99931252 + rotX: 359.920471 + rotY: 269.999542 + rotZ: 0.0138937524 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232224 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Pact. + GMNotes: '' + GUID: '522968' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The King's Edict + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -45.3332253 + posY: 1.76760066 + posZ: -1.86887467 + rotX: 359.932678 + rotY: 269.9998 + rotZ: -0.00222653663 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232223 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Cultist. + GMNotes: '' + GUID: 0bf1f8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Agent of the King + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -45.31658 + posY: 1.77869308 + posZ: -1.76723373 + rotX: 359.925659 + rotY: 270.030243 + rotZ: 359.9921 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232222 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Cultist. + GMNotes: '' + GUID: 8ada81 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Fanatic + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -46.03409 + posY: 1.61745238 + posZ: 0.648399532 + rotX: 359.9214 + rotY: 269.999054 + rotZ: 0.00768406037 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232222 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Cultist. + GMNotes: '' + GUID: dcaaad + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Fanatic + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -45.8543549 + posY: 1.76917815 + posZ: 0.300536335 + rotX: 359.907532 + rotY: 269.998657 + rotZ: 0.0211735331 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232222 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Cultist. + GMNotes: '' + GUID: 8ada81 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Fanatic + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -45.8543625 + posY: 1.80176485 + posZ: 0.3005505 + rotX: 359.920227 + rotY: 269.998779 + rotZ: 0.0167158749 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233304 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2333': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 057d5f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: False Lead + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -53.54308 + posY: 1.62451649 + posZ: -11.2746916 + rotX: 359.920532 + rotY: 269.9984 + rotZ: 0.014669626 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233303 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2333': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Curse. + GMNotes: '' + GUID: ab3719 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Hunting Shadow + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -52.364975 + posY: 1.6682601 + posZ: -11.7168121 + rotX: 359.41153 + rotY: 269.984528 + rotZ: 0.0011950793 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233304 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2333': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 2ceae2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: False Lead + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -53.0138245 + posY: 1.65927637 + posZ: -11.4785194 + rotX: 359.593231 + rotY: 269.994843 + rotZ: 0.220773071 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233303 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2333': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Curse. + GMNotes: '' + GUID: ea8fcf + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Hunting Shadow + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -52.1424561 + posY: 1.859812 + posZ: -11.6784887 + rotX: 359.687439 + rotY: 269.995239 + rotZ: 0.227207974 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233303 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2333': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Curse. + GMNotes: '' + GUID: 14bfaf + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Hunting Shadow + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -52.0490036 + posY: 2.00849 + posZ: -11.7814016 + rotX: 359.721832 + rotY: 269.999054 + rotZ: 0.220546484 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232727 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2327': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Obstacle. + GMNotes: '' + GUID: ab3719 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Locked Door + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -28.08896 + posY: 1.58746386 + posZ: -16.0177059 + rotX: 359.922 + rotY: 270.000977 + rotZ: 0.003688245 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232727 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2327': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Obstacle. + GMNotes: '' + GUID: 4904d0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Locked Door + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -28.3078022 + posY: 1.73284411 + posZ: -16.36894 + rotX: 359.955627 + rotY: 269.999725 + rotZ: 0.0165289789 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233624 + 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 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: d63054 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Mysterious Chanting + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -14.9937792 + posY: 1.57623422 + posZ: 7.191085 + rotX: 359.920227 + rotY: 270.005066 + rotZ: 0.01624975 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233624 + 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 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: b347d1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Mysterious Chanting + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -15.1765862 + posY: 1.7388649 + posZ: 7.12856245 + rotX: 359.9205 + rotY: 270.005066 + rotZ: 0.011837706 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233623 + 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 + UniqueBack: false + Description: Humanoid. Cultist. + GMNotes: '' + GUID: d36612 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Wizard of the Order + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -15.1335211 + posY: 1.7306242 + posZ: 15.1695614 + rotX: 359.933441 + rotY: 269.998932 + rotZ: 180.028931 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233622 + 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 + UniqueBack: false + Description: Humanoid. Cultist. + GMNotes: '' + GUID: 50fdc5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Acolyte + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -15.3295956 + posY: 1.62976587 + posZ: 15.9645061 + rotX: 0.0716057643 + rotY: 270.000061 + rotZ: 359.982727 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233622 + 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 + UniqueBack: false + Description: Humanoid. Cultist. + GMNotes: '' + GUID: 4911f2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Acolyte + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -15.3297215 + posY: 1.77588809 + posZ: 15.9645157 + rotX: 0.07387834 + rotY: 269.998474 + rotZ: 359.992645 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233622 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2336': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Cultist. + GMNotes: '' + GUID: ab3719 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Acolyte + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -14.0641346 + posY: 1.57524788 + posZ: 4.4694705 + rotX: 359.936523 + rotY: 270.025024 + rotZ: 180.114365 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '2327': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723517659500931/4B5458A518FDAF55C44CD8423EC12304E3266A6C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '2333': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '2336': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 232823 +- 232823 +- 232822 +- 232821 +- 232820 +- 232819 +- 232236 +- 232236 +- 232235 +- 232235 +- 232235 +- 232234 +- 232234 +- 232234 +- 232224 +- 232224 +- 232223 +- 232222 +- 232222 +- 232222 +- 233304 +- 233303 +- 233304 +- 233303 +- 233303 +- 232727 +- 232727 +- 233624 +- 233624 +- 233623 +- 233622 +- 233622 +- 233622 +Description: '' +GMNotes: '' +GUID: fb4859 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Encounter Deck +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.9277 + posY: 1.78769827 + posZ: 5.75720072 + rotX: 359.919739 + rotY: 270.0 + rotZ: 180.016815 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 3 Echoes of the Past 42d2dc/Deck Ground Floor e9eec7.yaml b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 3 Echoes of the Past 42d2dc/Deck Ground Floor e9eec7.yaml new file mode 100644 index 000000000..076b3b919 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 3 Echoes of the Past 42d2dc/Deck Ground Floor e9eec7.yaml @@ -0,0 +1,172 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 232022 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378685352/22FD056BAF1966FE2D1AC46FC1BF90C1A03A1404/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378686413/C1688C1A909FDC7357EB3EEFADAB1FBD5818BD3E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Ground Floor. + GMNotes: '' + GUID: c7a098 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Historical Society + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -58.06227 + posY: 1.63409388 + posZ: -0.204048946 + rotX: 359.920349 + rotY: 269.995575 + rotZ: 0.0217136 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232021 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378685352/22FD056BAF1966FE2D1AC46FC1BF90C1A03A1404/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378686413/C1688C1A909FDC7357EB3EEFADAB1FBD5818BD3E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Ground Floor. + GMNotes: '' + GUID: ffd0fb + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Historical Society + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -57.9735222 + posY: 1.77315891 + posZ: 0.229370639 + rotX: 359.907166 + rotY: 270.011627 + rotZ: 359.987274 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232020 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378685352/22FD056BAF1966FE2D1AC46FC1BF90C1A03A1404/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378686413/C1688C1A909FDC7357EB3EEFADAB1FBD5818BD3E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Ground Floor. + GMNotes: '' + GUID: aa08d4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Historical Society + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -57.4723434 + posY: 1.79620588 + posZ: -0.320317358 + rotX: 359.920837 + rotY: 270.0035 + rotZ: 0.0156368613 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378685352/22FD056BAF1966FE2D1AC46FC1BF90C1A03A1404/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378686413/C1688C1A909FDC7357EB3EEFADAB1FBD5818BD3E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 232022 +- 232021 +- 232020 +Description: '' +GMNotes: '' +GUID: e9eec7 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Ground Floor +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -30.2243 + posY: 1.69937241 + posZ: 15.1900005 + rotX: 359.9201 + rotY: 269.999939 + rotZ: 0.0168754533 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 3 Echoes of the Past 42d2dc/Deck Second Floor dfaa5b.yaml b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 3 Echoes of the Past 42d2dc/Deck Second Floor dfaa5b.yaml new file mode 100644 index 000000000..18968e843 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 3 Echoes of the Past 42d2dc/Deck Second Floor dfaa5b.yaml @@ -0,0 +1,172 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 232026 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378685352/22FD056BAF1966FE2D1AC46FC1BF90C1A03A1404/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378686413/C1688C1A909FDC7357EB3EEFADAB1FBD5818BD3E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Second Floor. + GMNotes: '' + GUID: ab6a72 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Historical Society + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -58.9967537 + posY: 1.6357621 + posZ: 1.00545037 + rotX: 359.920959 + rotY: 270.004761 + rotZ: 0.0160553828 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232025 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378685352/22FD056BAF1966FE2D1AC46FC1BF90C1A03A1404/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378686413/C1688C1A909FDC7357EB3EEFADAB1FBD5818BD3E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Second Floor. + GMNotes: '' + GUID: 40f79d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Historical Society + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -58.8852272 + posY: 1.78114378 + posZ: 1.147304 + rotX: 359.917084 + rotY: 270.000519 + rotZ: -0.00145125971 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232024 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378685352/22FD056BAF1966FE2D1AC46FC1BF90C1A03A1404/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378686413/C1688C1A909FDC7357EB3EEFADAB1FBD5818BD3E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Second Floor. + GMNotes: '' + GUID: aa08d4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Historical Society + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -58.4277763 + posY: 1.79799128 + posZ: 1.17521942 + rotX: 359.9215 + rotY: 270.0065 + rotZ: 0.0133985858 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378685352/22FD056BAF1966FE2D1AC46FC1BF90C1A03A1404/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378686413/C1688C1A909FDC7357EB3EEFADAB1FBD5818BD3E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 232026 +- 232025 +- 232024 +Description: '' +GMNotes: '' +GUID: dfaa5b +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Second Floor +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -23.6765 + posY: 1.69024193 + posZ: 15.1900015 + rotX: 359.9201 + rotY: 269.9998 + rotZ: 0.0168769062 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 3 Echoes of the Past 42d2dc/Deck Third Floor f989e2.yaml b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 3 Echoes of the Past 42d2dc/Deck Third Floor f989e2.yaml new file mode 100644 index 000000000..7d515bb91 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 3 Echoes of the Past 42d2dc/Deck Third Floor f989e2.yaml @@ -0,0 +1,172 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 232030 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378685352/22FD056BAF1966FE2D1AC46FC1BF90C1A03A1404/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378686413/C1688C1A909FDC7357EB3EEFADAB1FBD5818BD3E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Third Floor. + GMNotes: '' + GUID: 55844c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Historical Society + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -59.42817 + posY: 1.636429 + posZ: 1.32442439 + rotX: 359.920166 + rotY: 270.017029 + rotZ: 0.0150468722 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232029 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378685352/22FD056BAF1966FE2D1AC46FC1BF90C1A03A1404/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378686413/C1688C1A909FDC7357EB3EEFADAB1FBD5818BD3E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Third Floor. + GMNotes: '' + GUID: b352f8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Historical Society + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -59.6435165 + posY: 1.781832 + posZ: 1.2527982 + rotX: 359.920471 + rotY: 270.014923 + rotZ: 0.00181702862 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232028 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378685352/22FD056BAF1966FE2D1AC46FC1BF90C1A03A1404/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378686413/C1688C1A909FDC7357EB3EEFADAB1FBD5818BD3E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Third Floor. + GMNotes: '' + GUID: 0cf5d5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Historical Society + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -59.5653725 + posY: 1.79953706 + posZ: 1.286078 + rotX: 359.926819 + rotY: 270.0386 + rotZ: -0.00136351085 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378685352/22FD056BAF1966FE2D1AC46FC1BF90C1A03A1404/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378686413/C1688C1A909FDC7357EB3EEFADAB1FBD5818BD3E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 232030 +- 232029 +- 232028 +Description: '' +GMNotes: '' +GUID: f989e2 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Third Floor +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -17.1201 + posY: 1.68109953 + posZ: 15.1900005 + rotX: 359.9201 + rotY: 269.999939 + rotZ: 0.0168766454 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 3 Echoes of the Past 42d2dc/Notecard Errata 1 5909ed.yaml b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 3 Echoes of the Past 42d2dc/Notecard Errata 1 5909ed.yaml new file mode 100644 index 000000000..1cdb31401 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 3 Echoes of the Past 42d2dc/Notecard Errata 1 5909ed.yaml @@ -0,0 +1,105 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +Description: "Agenda 1a\u2014The Truth is Hidden (121)\r\nAgenda 2a\u2014Ransacking\ + \ the Manor (122)\r\nAgenda 3a\u2014Secrets Better Left Hidden (123)\r\nThe first\ + \ ability on each of these agendas should read: \u201CSkip the \u2018Place\r 1 doom\ + \ on the current agenda\u2019 step of the Mythos phase.\u201D" +GMNotes: '' +GUID: 5909ed +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Notecard +Nickname: Errata 1 +Snap: true +States: + '2': + Autoraise: true + ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 + Description: "Historical Society ([i]Historical Museum[/i]) (130 & 132)\r\nThis\ + \ location\u2019s ability should read: \u201CWhile investigating this location,\ + \ your intellect\uF252\r cannot be increased." + GMNotes: '' + GUID: c7fbc9 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Notecard + Nickname: Errata 2 + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -45.76462 + posY: 1.61939013 + posZ: 13.8555393 + rotX: 0.07987877 + rotY: 90.00009 + rotZ: 359.983124 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' + '3': + Autoraise: true + ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 + Description: "The final bullet point in Resolution 2 should read:\n\u201CThen,\ + \ add 2 Elder Thing\uF25E tokens\nto\r the chaos bag.\u201D" + GMNotes: '' + GUID: 523ef3 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Notecard + Nickname: Errata 3 + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -45.76461 + posY: 1.61939 + posZ: 13.8555365 + rotX: 0.0798784345 + rotY: 90.00013 + rotZ: 359.983124 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +Sticky: true +Tooltip: true +Transform: + posX: -11.1541014 + posY: 1.56000829 + posZ: -23.945303 + rotX: 0.07987806 + rotY: 89.996254 + rotZ: 359.983124 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 4 The Unspeakable Oath e7efa6.ttslua b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 4 The Unspeakable Oath e7efa6.ttslua new file mode 100644 index 000000000..46067f58e --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 4 The Unspeakable Oath e7efa6.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.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.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 Return to The Path to Carcosa e9889a/Custom_Model_Bag 4 The Unspeakable Oath e7efa6.yaml b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 4 The Unspeakable Oath e7efa6.yaml new file mode 100644 index 000000000..47c93c98b --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 4 The Unspeakable Oath e7efa6.yaml @@ -0,0 +1,100 @@ +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 4 The Unspeakable Oath e7efa6/Custom_Model_Bag Set-aside + c7eddd.yaml' +- !include 'Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Deck Lunatic Pile d69fed.yaml' +- !include 'Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Deck Monster Pile cbf2f5.yaml' +- !include 'Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Deck Encounter Deck 79b81e.yaml' +- !include 'Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Deck Agenda Deck a8f821.yaml' +- !include 'Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Bag More Doubt than Conviction + bc166c.yaml' +- !include 'Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Bag More (or equal) Conviction + than Doubt 7de62e.yaml' +- !include 'Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Card Scenario aa08d4.yaml' +- !include 'Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Card Setup 93a42f.yaml' +- !include 'Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Tile The Unspeakable + Oath 87f45e.yaml' +- !include 'Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Bag New Chaos Token 00873d.yaml' +- !include 'Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Notecard Errata 1 c962b2.yaml' +- !include 'Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Card Garden c9897f.yaml' +- !include 'Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Tile 1811ea.yaml' +- !include 'Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Card Yard b37d1d.yaml' +- !include 'Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Tile bec080.yaml' +- !include 'Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Card Asylum Halls dcc1bf.yaml' +- !include 'Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Tile 02d2b1.yaml' +- !include 'Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Card Mess Hall e35136.yaml' +- !include 'Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Tile 7b12e0.yaml' +- !include 'Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Card Kitchen e6a875.yaml' +- !include 'Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Tile f33a5f.yaml' +- !include 'Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Card Asylum Halls 189f42.yaml' +- !include 'Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Card Asylum Halls 576595.yaml' +- !include 'Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Tile 7234af.yaml' +- !include 'Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Card Basement Hall 589ff6.yaml' +- !include 'Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Tile 3efbe9.yaml' +- !include 'Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Card Infirmary 416548.yaml' +- !include 'Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Card Asylum Halls f99530.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/762723517662107373/C7CDDF74FF1E280B7690FD699FBCAE68BD9E9379/ + MaterialIndex: 3 + MeshURL: https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj + NormalURL: '' + TypeIndex: 6 +Description: '' +GMNotes: '' +GUID: e7efa6 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Model_Bag 4 The Unspeakable Oath e7efa6.ttslua' +LuaScriptState: '{"ml":{"00873d":{"lock":false,"pos":{"x":-5.3258,"y":1.4991,"z":-14.7341},"rot":{"x":359.9755,"y":0.0049,"z":359.9708}},"02d2b1":{"lock":false,"pos":{"x":-30.2242,"y":1.6248,"z":3.86},"rot":{"x":0.0169,"y":179.9999,"z":0.0799}},"1811ea":{"lock":false,"pos":{"x":-20.2365,"y":1.6098,"z":0.1355},"rot":{"x":359.9201,"y":269.9745,"z":0.0169}},"189f42":{"lock":false,"pos":{"x":-31.7541,"y":1.8411,"z":-7.6825},"rot":{"x":359.9572,"y":269.9969,"z":0.0169}},"3efbe9":{"lock":false,"pos":{"x":-30.2242,"y":1.6203,"z":-11.51},"rot":{"x":0.0169,"y":180,"z":0.0799}},"416548":{"lock":false,"pos":{"x":-30.2243,"y":1.6909,"z":-15.28},"rot":{"x":359.9201,"y":269.9998,"z":0.0169}},"576595":{"lock":false,"pos":{"x":-30.2243,"y":1.6931,"z":-7.7},"rot":{"x":359.9211,"y":269.9999,"z":0.0182}},"589ff6":{"lock":false,"pos":{"x":-36.7733,"y":1.7022,"z":-7.7},"rot":{"x":359.9201,"y":269.9998,"z":0.0169}},"7234af":{"lock":false,"pos":{"x":-33.5176,"y":1.626,"z":-7.5064},"rot":{"x":359.9201,"y":270.0873,"z":0.0168}},"79b81e":{"lock":false,"pos":{"x":-3.9276,"y":1.7397,"z":5.7571},"rot":{"x":359.9197,"y":270.0003,"z":180.0168}},"7b12e0":{"lock":false,"pos":{"x":-30.2242,"y":1.627,"z":11.46},"rot":{"x":0.0169,"y":180.0001,"z":0.0799}},"7de62e":{"lock":false,"pos":{"x":1.2636,"y":1.3951,"z":1.6094},"rot":{"x":359.9196,"y":270.0022,"z":0.0169}},"87f45e":{"lock":false,"pos":{"x":-3.2772,"y":1.5818,"z":-14.9074},"rot":{"x":359.921,"y":270.0004,"z":0.0198}},"93a42f":{"lock":false,"pos":{"x":-0.3725,"y":1.6506,"z":-10.4902},"rot":{"x":359.9197,"y":270.0001,"z":0.0168}},"a8f821":{"lock":false,"pos":{"x":-2.7248,"y":1.6566,"z":0.3733},"rot":{"x":0.0168,"y":180,"z":0.0803}},"aa08d4":{"lock":false,"pos":{"x":-3.9559,"y":1.6556,"z":-10.4413},"rot":{"x":359.9197,"y":269.9995,"z":0.0168}},"b37d1d":{"lock":false,"pos":{"x":-23.6765,"y":1.6862,"z":-0.03},"rot":{"x":359.9201,"y":270,"z":0.0169}},"bc166c":{"lock":false,"pos":{"x":1.2667,"y":1.3942,"z":-1.4688},"rot":{"x":359.9196,"y":270.0009,"z":0.0169}},"bec080":{"lock":false,"pos":{"x":-26.8343,"y":1.6189,"z":0.0207},"rot":{"x":359.9201,"y":269.8999,"z":0.017}},"c7eddd":{"lock":false,"pos":{"x":1.6966,"y":1.5583,"z":14.2787},"rot":{"x":359.9551,"y":224.998,"z":0.0687}},"c962b2":{"lock":false,"pos":{"x":-11.154,"y":1.56,"z":-23.9454},"rot":{"x":0.0799,"y":89.9999,"z":359.9831}},"c9897f":{"lock":false,"pos":{"x":-17.12,"y":1.6771,"z":-0.03},"rot":{"x":359.9201,"y":269.9999,"z":0.0169}},"cbf2f5":{"lock":false,"pos":{"x":-5.7302,"y":1.6806,"z":15.3024},"rot":{"x":359.9197,"y":270.0001,"z":180.0168}},"d69fed":{"lock":false,"pos":{"x":-2.3788,"y":1.6759,"z":15.316},"rot":{"x":359.9197,"y":270,"z":180.0168}},"dcc1bf":{"lock":false,"pos":{"x":-31.8093,"y":1.8413,"z":-0.0414},"rot":{"x":5.2058,"y":269.9728,"z":0.0053}},"e35136":{"lock":false,"pos":{"x":-30.2243,"y":1.6976,"z":7.57},"rot":{"x":359.9201,"y":269.9999,"z":0.0169}},"e6a875":{"lock":false,"pos":{"x":-30.2243,"y":1.6998,"z":15.19},"rot":{"x":359.9201,"y":269.9999,"z":0.0169}},"f33a5f":{"lock":false,"pos":{"x":-30.2242,"y":1.6225,"z":-3.83},"rot":{"x":0.0169,"y":180,"z":0.0799}},"f99530":{"lock":false,"pos":{"x":-30.2242,"y":1.6954,"z":-0.0302},"rot":{"x":359.9207,"y":270.0015,"z":0.018}}}}' +MaterialIndex: -1 +MeshIndex: -1 +Name: Custom_Model_Bag +Nickname: '4: The Unspeakable Oath' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 12.2482033 + posY: 1.46581483 + posZ: 4.69029951 + rotX: 359.9201 + rotY: 270.081635 + rotZ: 0.0167605188 + scaleX: 2.21 + scaleY: 0.46 + scaleZ: 2.42 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Bag More (or equal) Conviction than Doubt 7de62e.yaml b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Bag More (or equal) Conviction than Doubt 7de62e.yaml new file mode 100644 index 000000000..8781994cd --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Bag More (or equal) Conviction than Doubt 7de62e.yaml @@ -0,0 +1,257 @@ +Autoraise: true +ColorDiffuse: + b: 0.0 + g: 0.0 + r: 0.0 +ContainedObjects: +- Autoraise: true + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: + - Autoraise: true + CardID: 231723 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2317': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378732934/F41E84FCDC0AB52634348C439A6D1A725CEB8115/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378736378/628E179D5305E95AFC25D86526320A24F8B27391/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 4 + GMNotes: '' + GUID: b42f4b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: No Asylum + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -56.40788 + posY: 1.638262 + posZ: 21.75536 + rotX: 0.0178973246 + rotY: 180.915833 + rotZ: 0.07635428 + 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: http://cloud-3.steamusercontent.com/ugc/775107058378732934/F41E84FCDC0AB52634348C439A6D1A725CEB8115/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378736378/628E179D5305E95AFC25D86526320A24F8B27391/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 3 + GMNotes: '' + GUID: 08b672 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Planning the Escape + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -56.24748 + posY: 1.78397787 + posZ: 21.7169037 + rotX: -0.000468099228 + rotY: 180.9055 + rotZ: 0.04363663 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' + - Autoraise: true + CardID: 233017 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/762723517659499792/63775A11C2A49441C268121108C8EBFCF512E2A9/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723517659500387/BFF1AFFD515364F0BFD336A6CE9970BE1DD04B13/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 2 + GMNotes: '' + GUID: a6bc1a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: "\u201CThe Really Bad Ones\u201D (v. III)" + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 1.909987 + posY: 1.81204462 + posZ: -4.240877 + rotX: 0.01825489 + rotY: 180.005035 + rotZ: 0.0748626739 + 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: http://cloud-3.steamusercontent.com/ugc/775107058378732934/F41E84FCDC0AB52634348C439A6D1A725CEB8115/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378736378/628E179D5305E95AFC25D86526320A24F8B27391/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 1 + GMNotes: '' + GUID: 38bfee + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Arkham Asylum + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 1.84206748 + posY: 1.79861414 + posZ: -3.81974816 + rotX: 0.0202070586 + rotY: 179.9963 + rotZ: 0.07813654 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' + CustomDeck: + '2317': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378732934/F41E84FCDC0AB52634348C439A6D1A725CEB8115/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378736378/628E179D5305E95AFC25D86526320A24F8B27391/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + '2330': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/762723517659499792/63775A11C2A49441C268121108C8EBFCF512E2A9/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723517659500387/BFF1AFFD515364F0BFD336A6CE9970BE1DD04B13/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + DeckIDs: + - 231723 + - 231722 + - 233017 + - 231719 + Description: '' + GMNotes: '' + GUID: e6793f + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Deck + Nickname: Act Deck + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.8974623 + posY: 3.71686053 + posZ: 0.4958654 + rotX: 359.621 + rotY: 180.011337 + rotZ: 358.489319 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +Description: '' +GMNotes: '' +GUID: 7de62e +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +MeshIndex: -1 +Name: Bag +Nickname: More (or equal) Conviction than Doubt +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 1.26356721 + posY: 1.39513063 + posZ: 1.609393 + rotX: 359.919647 + rotY: 270.002167 + rotZ: 0.0168727171 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Bag More Doubt than Conviction bc166c.yaml b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Bag More Doubt than Conviction bc166c.yaml new file mode 100644 index 000000000..72c9ae97b --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Bag More Doubt than Conviction bc166c.yaml @@ -0,0 +1,257 @@ +Autoraise: true +ColorDiffuse: + b: 0.0 + g: 0.0 + r: 0.0 +ContainedObjects: +- Autoraise: true + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: + - Autoraise: true + CardID: 231723 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2317': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378732934/F41E84FCDC0AB52634348C439A6D1A725CEB8115/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378736378/628E179D5305E95AFC25D86526320A24F8B27391/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 4 + GMNotes: '' + GUID: b42f4b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: No Asylum + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -56.40788 + posY: 1.638262 + posZ: 21.75536 + rotX: 0.0178973246 + rotY: 180.915833 + rotZ: 0.07635428 + 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: http://cloud-3.steamusercontent.com/ugc/775107058378732934/F41E84FCDC0AB52634348C439A6D1A725CEB8115/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378736378/628E179D5305E95AFC25D86526320A24F8B27391/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 3 + GMNotes: '' + GUID: 08b672 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Planning the Escape + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -56.24748 + posY: 1.78397787 + posZ: 21.7169037 + rotX: -0.000468099228 + rotY: 180.9055 + rotZ: 0.04363663 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' + - Autoraise: true + CardID: 233018 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/762723517659499792/63775A11C2A49441C268121108C8EBFCF512E2A9/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723517659500387/BFF1AFFD515364F0BFD336A6CE9970BE1DD04B13/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 2 + GMNotes: '' + GUID: df05b4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: "\u201CThe Really Bad Ones\u201D (v. IV)" + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.8154965 + posY: 1.81376553 + posZ: -3.85189533 + rotX: 0.01911369 + rotY: 179.999466 + rotZ: 0.06515651 + 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: http://cloud-3.steamusercontent.com/ugc/775107058378732934/F41E84FCDC0AB52634348C439A6D1A725CEB8115/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378736378/628E179D5305E95AFC25D86526320A24F8B27391/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 1 + GMNotes: '' + GUID: 38bfee + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Arkham Asylum + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 1.0077492 + posY: 1.79978466 + posZ: -3.737764 + rotX: 0.0208622646 + rotY: 180.007568 + rotZ: 0.07412005 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' + CustomDeck: + '2317': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378732934/F41E84FCDC0AB52634348C439A6D1A725CEB8115/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378736378/628E179D5305E95AFC25D86526320A24F8B27391/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + '2330': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/762723517659499792/63775A11C2A49441C268121108C8EBFCF512E2A9/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723517659500387/BFF1AFFD515364F0BFD336A6CE9970BE1DD04B13/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + DeckIDs: + - 231723 + - 231722 + - 233018 + - 231719 + Description: '' + GMNotes: '' + GUID: f311b3 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Deck + Nickname: Act Deck + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.753659546 + posY: 3.736979 + posZ: 5.06242943 + rotX: 0.3249828 + rotY: 180.002975 + rotZ: 359.991852 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +Description: '' +GMNotes: '' +GUID: bc166c +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +MeshIndex: -1 +Name: Bag +Nickname: More Doubt than Conviction +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 1.2666924 + posY: 1.39422154 + posZ: -1.46875429 + rotX: 359.919647 + rotY: 270.0009 + rotZ: 0.0168749411 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Bag New Chaos Token 00873d.yaml b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Bag New Chaos Token 00873d.yaml new file mode 100644 index 000000000..fdd8c1016 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Bag New Chaos Token 00873d.yaml @@ -0,0 +1,39 @@ +Autoraise: true +ColorDiffuse: + b: 0.07843689 + g: 0.07843689 + r: 0.3021676 +ContainedObjects: +- !include 'Bag New Chaos Token 00873d/Custom_Tile 1df0a5.yaml' +- !include 'Bag New Chaos Token 00873d/Custom_Tile 984eec.yaml' +- !include 'Bag New Chaos Token 00873d/Custom_Tile a7a9cb.yaml' +- !include 'Bag New Chaos Token 00873d/Custom_Tile 8af600.yaml' +Description: The Unspeakable Oath +GMNotes: '' +GUID: 00873d +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +MeshIndex: -1 +Name: Bag +Nickname: New Chaos Token +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -5.32582951 + posY: 1.4990567 + posZ: -14.7340832 + rotX: 359.9755 + rotY: 0.004870069 + rotZ: 359.970764 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Bag New Chaos Token 00873d/Custom_Tile 1df0a5.yaml b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Bag New Chaos Token 00873d/Custom_Tile 1df0a5.yaml new file mode 100644 index 000000000..654ffdc97 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Bag New Chaos Token 00873d/Custom_Tile 1df0a5.yaml @@ -0,0 +1,42 @@ +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: '' +GMNotes: '' +GUID: 1df0a5 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Tile +Nickname: '' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -62.96481 + posY: 3.47066259 + posZ: 14.1127386 + rotX: 0.341532826 + rotY: 270.030334 + rotZ: 4.300973 + scaleX: 0.81 + scaleY: 1.0 + scaleZ: 0.81 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Bag New Chaos Token 00873d/Custom_Tile 8af600.yaml b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Bag New Chaos Token 00873d/Custom_Tile 8af600.yaml new file mode 100644 index 000000000..63bbffd28 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Bag New Chaos Token 00873d/Custom_Tile 8af600.yaml @@ -0,0 +1,42 @@ +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: '' +GMNotes: '' +GUID: 8af600 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Tile +Nickname: '' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 17.1395283 + posY: 3.456952 + posZ: -1.43054438 + rotX: 355.226349 + rotY: 269.8188 + rotZ: 4.68344069 + scaleX: 0.81 + scaleY: 1.0 + scaleZ: 0.81 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Bag New Chaos Token 00873d/Custom_Tile 984eec.yaml b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Bag New Chaos Token 00873d/Custom_Tile 984eec.yaml new file mode 100644 index 000000000..a42f1f857 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Bag New Chaos Token 00873d/Custom_Tile 984eec.yaml @@ -0,0 +1,42 @@ +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: '' +GMNotes: '' +GUID: 984eec +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Tile +Nickname: '' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 12.8530817 + posY: 3.428565 + posZ: -3.38562751 + rotX: 359.9201 + rotY: 270.0238 + rotZ: 0.016849542 + scaleX: 0.81 + scaleY: 1.0 + scaleZ: 0.81 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Bag New Chaos Token 00873d/Custom_Tile a7a9cb.yaml b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Bag New Chaos Token 00873d/Custom_Tile a7a9cb.yaml new file mode 100644 index 000000000..71c665e47 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Bag New Chaos Token 00873d/Custom_Tile a7a9cb.yaml @@ -0,0 +1,42 @@ +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: '' +GMNotes: '' +GUID: a7a9cb +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Tile +Nickname: '' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 14.4742517 + posY: 3.42676187 + posZ: -1.83419693 + rotX: 359.920135 + rotY: 270.015076 + rotZ: 0.0168510415 + scaleX: 0.81 + scaleY: 1.0 + scaleZ: 0.81 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Card Asylum Halls 189f42.yaml b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Card Asylum Halls 189f42.yaml new file mode 100644 index 000000000..6126ceb9f --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Card Asylum Halls 189f42.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 232037 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378685352/22FD056BAF1966FE2D1AC46FC1BF90C1A03A1404/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378686413/C1688C1A909FDC7357EB3EEFADAB1FBD5818BD3E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Eastern Patient Wing +GMNotes: '' +GUID: 189f42 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Asylum Halls +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -31.7541161 + posY: 1.84106469 + posZ: -7.6824975 + rotX: 359.9572 + rotY: 269.996918 + rotZ: 0.0168713946 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Card Asylum Halls 576595.yaml b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Card Asylum Halls 576595.yaml new file mode 100644 index 000000000..d94092846 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Card Asylum Halls 576595.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 232036 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378685352/22FD056BAF1966FE2D1AC46FC1BF90C1A03A1404/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378686413/C1688C1A909FDC7357EB3EEFADAB1FBD5818BD3E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Eastern Patient Wing +GMNotes: '' +GUID: '576595' +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Asylum Halls +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -30.2243 + posY: 1.693143 + posZ: -7.70000124 + rotX: 359.921051 + rotY: 269.999939 + rotZ: 0.0181899387 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Card Asylum Halls dcc1bf.yaml b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Card Asylum Halls dcc1bf.yaml new file mode 100644 index 000000000..84c16494f --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Card Asylum Halls dcc1bf.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 232035 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378685352/22FD056BAF1966FE2D1AC46FC1BF90C1A03A1404/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378686413/C1688C1A909FDC7357EB3EEFADAB1FBD5818BD3E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Western Patient Wing +GMNotes: '' +GUID: dcc1bf +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Asylum Halls +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -31.8093357 + posY: 1.84126854 + posZ: -0.041383855 + rotX: 5.20576143 + rotY: 269.972839 + rotZ: 0.005300318 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Card Asylum Halls f99530.yaml b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Card Asylum Halls f99530.yaml new file mode 100644 index 000000000..e283a3cdc --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Card Asylum Halls f99530.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 232034 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378685352/22FD056BAF1966FE2D1AC46FC1BF90C1A03A1404/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378686413/C1688C1A909FDC7357EB3EEFADAB1FBD5818BD3E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Western Patient Wing +GMNotes: '' +GUID: f99530 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Asylum Halls +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -30.2241936 + posY: 1.69539332 + posZ: -0.0302067976 + rotX: 359.920715 + rotY: 270.001465 + rotZ: 0.0180399343 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Card Basement Hall 589ff6.yaml b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Card Basement Hall 589ff6.yaml new file mode 100644 index 000000000..30df648bb --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Card Basement Hall 589ff6.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 232043 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378685352/22FD056BAF1966FE2D1AC46FC1BF90C1A03A1404/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378686413/C1688C1A909FDC7357EB3EEFADAB1FBD5818BD3E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Arkham Asylum. +GMNotes: '' +GUID: 589ff6 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Basement Hall +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -36.7733 + posY: 1.70222449 + posZ: -7.70000029 + rotX: 359.9201 + rotY: 269.999756 + rotZ: 0.0168764349 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Card Garden c9897f.yaml b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Card Garden c9897f.yaml new file mode 100644 index 000000000..8399bcd7c --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Card Garden c9897f.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 232042 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378685352/22FD056BAF1966FE2D1AC46FC1BF90C1A03A1404/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378686413/C1688C1A909FDC7357EB3EEFADAB1FBD5818BD3E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Arkham Asylum. +GMNotes: '' +GUID: c9897f +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Garden +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -17.12 + posY: 1.67707777 + posZ: -0.0300003551 + rotX: 359.9201 + rotY: 269.999939 + rotZ: 0.0168763958 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Card Infirmary 416548.yaml b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Card Infirmary 416548.yaml new file mode 100644 index 000000000..d9e2f7f0e --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Card Infirmary 416548.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 232040 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378685352/22FD056BAF1966FE2D1AC46FC1BF90C1A03A1404/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378686413/C1688C1A909FDC7357EB3EEFADAB1FBD5818BD3E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Arkham Asylum. +GMNotes: '' +GUID: '416548' +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Infirmary +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -30.2243 + posY: 1.69086027 + posZ: -15.28 + rotX: 359.9201 + rotY: 269.999756 + rotZ: 0.0168766584 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Card Kitchen e6a875.yaml b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Card Kitchen e6a875.yaml new file mode 100644 index 000000000..fa9afbf3c --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Card Kitchen e6a875.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 232038 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378685352/22FD056BAF1966FE2D1AC46FC1BF90C1A03A1404/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378686413/C1688C1A909FDC7357EB3EEFADAB1FBD5818BD3E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Arkham Asylum. +GMNotes: '' +GUID: e6a875 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Kitchen +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -30.2243 + posY: 1.69983256 + posZ: 15.19 + rotX: 359.9201 + rotY: 269.999939 + rotZ: 0.0168755986 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Card Mess Hall e35136.yaml b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Card Mess Hall e35136.yaml new file mode 100644 index 000000000..266bdf0ef --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Card Mess Hall e35136.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 232039 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378685352/22FD056BAF1966FE2D1AC46FC1BF90C1A03A1404/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378686413/C1688C1A909FDC7357EB3EEFADAB1FBD5818BD3E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Arkham Asylum. +GMNotes: '' +GUID: e35136 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Mess Hall +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -30.2243 + posY: 1.6975888 + posZ: 7.57000065 + rotX: 359.9201 + rotY: 269.999939 + rotZ: 0.0168762263 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Card Scenario aa08d4.yaml b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Card Scenario aa08d4.yaml new file mode 100644 index 000000000..e2c293e5e --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Card Scenario aa08d4.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 232032 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378685352/22FD056BAF1966FE2D1AC46FC1BF90C1A03A1404/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378686413/C1688C1A909FDC7357EB3EEFADAB1FBD5818BD3E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: The Unspeakable Oath +GMNotes: '' +GUID: aa08d4 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Scenario +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.9559 + posY: 1.655648 + posZ: -10.4413013 + rotX: 359.919739 + rotY: 269.999542 + rotZ: 0.0168415811 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Card Setup 93a42f.yaml b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Card Setup 93a42f.yaml new file mode 100644 index 000000000..a6d4e350f --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Card Setup 93a42f.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 232916 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2329': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/762723517659499792/63775A11C2A49441C268121108C8EBFCF512E2A9/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723517659500387/BFF1AFFD515364F0BFD336A6CE9970BE1DD04B13/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Return to The Unspeakable Oath +GMNotes: '' +GUID: 93a42f +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Setup +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -0.372538 + posY: 1.65061438 + posZ: -10.4901609 + rotX: 359.919739 + rotY: 270.0001 + rotZ: 0.0168408 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Card Yard b37d1d.yaml b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Card Yard b37d1d.yaml new file mode 100644 index 000000000..78c003f0d --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Card Yard b37d1d.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 232041 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378685352/22FD056BAF1966FE2D1AC46FC1BF90C1A03A1404/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378686413/C1688C1A909FDC7357EB3EEFADAB1FBD5818BD3E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Arkham Asylum. +GMNotes: '' +GUID: b37d1d +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Yard +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -23.6765 + posY: 1.68622029 + posZ: -0.0300003514 + rotX: 359.9201 + rotY: 270.0 + rotZ: 0.0168762952 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Model_Bag Set-aside c7eddd.yaml b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Model_Bag Set-aside c7eddd.yaml new file mode 100644 index 000000000..0e78b1cb7 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Model_Bag Set-aside c7eddd.yaml @@ -0,0 +1,60 @@ +Autoraise: true +ColorDiffuse: + b: 0.02148666 + g: 0.00100758043 + r: 0.02148666 +ContainedObjects: +- !include 'Custom_Model_Bag Set-aside c7eddd/Card Constance Dumaine 4ecefb.yaml' +- !include 'Custom_Model_Bag Set-aside c7eddd/Card Radical Treatment c3e267.yaml' +- !include 'Custom_Model_Bag Set-aside c7eddd/Card Host of Insanity 5987af.yaml' +- !include 'Custom_Model_Bag Set-aside c7eddd/Deck Patient Confinement a3c5c5.yaml' +- !include 'Custom_Model_Bag Set-aside c7eddd/Card Daniel Chesterfield a71dcd.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 Unspeakable Oath +GMNotes: '' +GUID: c7eddd +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +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.69661486 + posY: 1.55831671 + posZ: 14.2787027 + rotX: 359.955139 + rotY: 224.997971 + rotZ: 0.06867787 + scaleX: 2.0 + scaleY: 2.0 + scaleZ: 2.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Model_Bag Set-aside c7eddd/Card Constance Dumaine 4ecefb.yaml b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Model_Bag Set-aside c7eddd/Card Constance Dumaine 4ecefb.yaml new file mode 100644 index 000000000..b7a367226 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Model_Bag Set-aside c7eddd/Card Constance Dumaine 4ecefb.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 232053 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378685352/22FD056BAF1966FE2D1AC46FC1BF90C1A03A1404/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378686413/C1688C1A909FDC7357EB3EEFADAB1FBD5818BD3E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: A Little Too Sociable +GMNotes: '' +GUID: 4ecefb +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Constance Dumaine +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 20.7960072 + posY: 2.51765561 + posZ: -56.7921753 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Model_Bag Set-aside c7eddd/Card Daniel Chesterfield a71dcd.yaml b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Model_Bag Set-aside c7eddd/Card Daniel Chesterfield a71dcd.yaml new file mode 100644 index 000000000..024cc83a4 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Model_Bag Set-aside c7eddd/Card Daniel Chesterfield a71dcd.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 232033 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378685352/22FD056BAF1966FE2D1AC46FC1BF90C1A03A1404/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378686413/C1688C1A909FDC7357EB3EEFADAB1FBD5818BD3E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: a71dcd +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Daniel Chesterfield +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -16.4356937 + posY: 3.63402057 + posZ: 8.965443 + rotX: 359.92 + rotY: 269.999847 + rotZ: 0.0167166758 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Model_Bag Set-aside c7eddd/Card Host of Insanity 5987af.yaml b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Model_Bag Set-aside c7eddd/Card Host of Insanity 5987af.yaml new file mode 100644 index 000000000..bf1702f28 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Model_Bag Set-aside c7eddd/Card Host of Insanity 5987af.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 232805 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723517659500931/4B5458A518FDAF55C44CD8423EC12304E3266A6C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: Avatar. Elite. +GMNotes: '' +GUID: 5987af +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Host of Insanity +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -6.50583553 + posY: 2.045346 + posZ: -80.15678 + rotX: 359.9201 + rotY: 270.0027 + rotZ: 0.016871376 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Model_Bag Set-aside c7eddd/Card Radical Treatment c3e267.yaml b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Model_Bag Set-aside c7eddd/Card Radical Treatment c3e267.yaml new file mode 100644 index 000000000..eec45ce9d --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Model_Bag Set-aside c7eddd/Card Radical Treatment c3e267.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 232806 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723517659500931/4B5458A518FDAF55C44CD8423EC12304E3266A6C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: c3e267 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Radical Treatment +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -6.14493942 + posY: 2.04534626 + posZ: -82.12851 + rotX: 359.920135 + rotY: 270.00705 + rotZ: 0.0168669373 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Model_Bag Set-aside c7eddd/Deck Patient Confinement a3c5c5.yaml b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Model_Bag Set-aside c7eddd/Deck Patient Confinement a3c5c5.yaml new file mode 100644 index 000000000..ca6e80b66 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Model_Bag Set-aside c7eddd/Deck Patient Confinement a3c5c5.yaml @@ -0,0 +1,215 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 232047 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378685352/22FD056BAF1966FE2D1AC46FC1BF90C1A03A1404/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378686413/C1688C1A909FDC7357EB3EEFADAB1FBD5818BD3E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Arkham Asylum. + GMNotes: '' + GUID: 4bab65 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Patient Confinement + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -62.029686 + posY: 1.6411705 + posZ: 5.16846943 + rotX: 359.920563 + rotY: 269.996521 + rotZ: 0.0135507425 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232046 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378685352/22FD056BAF1966FE2D1AC46FC1BF90C1A03A1404/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378686413/C1688C1A909FDC7357EB3EEFADAB1FBD5818BD3E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Arkham Asylum. + GMNotes: '' + GUID: 1acf71 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Patient Confinement + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -61.6057358 + posY: 1.790447 + posZ: 4.994902 + rotX: 359.923553 + rotY: 269.99646 + rotZ: 0.009098181 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232044 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378685352/22FD056BAF1966FE2D1AC46FC1BF90C1A03A1404/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378686413/C1688C1A909FDC7357EB3EEFADAB1FBD5818BD3E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Arkham Asylum. + GMNotes: '' + GUID: 728ae0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Patient Confinement + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -61.8114777 + posY: 1.80829954 + posZ: 5.23499727 + rotX: 359.919037 + rotY: 269.996735 + rotZ: 0.0148136932 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232045 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378685352/22FD056BAF1966FE2D1AC46FC1BF90C1A03A1404/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378686413/C1688C1A909FDC7357EB3EEFADAB1FBD5818BD3E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Arkham Asylum. + GMNotes: '' + GUID: 8dcf73 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Patient Confinement + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -62.11177 + posY: 1.79498875 + posZ: 5.652425 + rotX: 359.925018 + rotY: 269.996643 + rotZ: 0.006248708 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378685352/22FD056BAF1966FE2D1AC46FC1BF90C1A03A1404/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378686413/C1688C1A909FDC7357EB3EEFADAB1FBD5818BD3E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 232047 +- 232046 +- 232044 +- 232045 +Description: '' +GMNotes: '' +GUID: a3c5c5 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Patient Confinement +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -16.5260448 + posY: 3.632531 + posZ: 9.303376 + rotX: 359.9197 + rotY: 270.000519 + rotZ: 0.0174281672 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Tile 02d2b1.yaml b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Tile 02d2b1.yaml new file mode 100644 index 000000000..af920737c --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Tile 02d2b1.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 02d2b1 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.62478232 + posZ: 3.86000061 + rotX: 0.0168719627 + rotY: 179.999924 + rotZ: 0.07993602 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Tile 1811ea.yaml b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Tile 1811ea.yaml new file mode 100644 index 000000000..f71d97777 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Tile 1811ea.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 1811ea +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.2365 + posY: 1.60975862 + posZ: 0.135499924 + rotX: 359.9201 + rotY: 269.9745 + rotZ: 0.016934257 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Tile 3efbe9.yaml b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Tile 3efbe9.yaml new file mode 100644 index 000000000..cc6963693 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Tile 3efbe9.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 3efbe9 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.62025642 + posZ: -11.5100012 + rotX: 0.0168717783 + rotY: 180.0 + rotZ: 0.0799398944 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Tile 7234af.yaml b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Tile 7234af.yaml new file mode 100644 index 000000000..036eda5c3 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Tile 7234af.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 7234af +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.5176 + posY: 1.626028 + posZ: -7.506401 + rotX: 359.920074 + rotY: 270.087341 + rotZ: 0.01677794 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Tile 7b12e0.yaml b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Tile 7b12e0.yaml new file mode 100644 index 000000000..d822026f1 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Tile 7b12e0.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 7b12e0 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.62702036 + posZ: 11.4600029 + rotX: 0.0168717485 + rotY: 180.000061 + rotZ: 0.0799343 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Tile bec080.yaml b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Tile bec080.yaml new file mode 100644 index 000000000..ba0afc74e --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Tile bec080.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: bec080 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.8343 + posY: 1.618925 + posZ: 0.020699745 + rotX: 359.920135 + rotY: 269.899933 + rotZ: 0.01703943 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Tile f33a5f.yaml b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Tile f33a5f.yaml new file mode 100644 index 000000000..3060332da --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Tile f33a5f.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: f33a5f +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.622518 + posZ: -3.83000016 + rotX: 0.016871836 + rotY: 179.999969 + rotZ: 0.0799386054 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Tile The Unspeakable Oath 87f45e.ttslua b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Tile The Unspeakable Oath 87f45e.ttslua new file mode 100644 index 000000000..f7109dddb --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Tile The Unspeakable Oath 87f45e.ttslua @@ -0,0 +1,25 @@ +name = 'The Unspeakable Oath' + +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 + +function standaloneClick() + Global.call('fillContainer', {object=self, key=name, mode='standalone'}) +end diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Tile The Unspeakable Oath 87f45e.yaml b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Tile The Unspeakable Oath 87f45e.yaml new file mode 100644 index 000000000..45fae859f --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Tile The Unspeakable Oath 87f45e.yaml @@ -0,0 +1,42 @@ +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 +GMNotes: '' +GUID: 87f45e +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Tile The Unspeakable Oath 87f45e.ttslua' +LuaScriptState: '' +Name: Custom_Tile +Nickname: The Unspeakable Oath +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.277202 + posY: 1.5818013 + posZ: -14.9074268 + rotX: 359.921021 + rotY: 270.000427 + rotZ: 0.019831907 + scaleX: 2.2 + scaleY: 1.0 + scaleZ: 2.2 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Deck Agenda Deck a8f821.yaml b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Deck Agenda Deck a8f821.yaml new file mode 100644 index 000000000..49c4c8859 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Deck Agenda Deck a8f821.yaml @@ -0,0 +1,172 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 231718 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2317': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378732934/F41E84FCDC0AB52634348C439A6D1A725CEB8115/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378736378/628E179D5305E95AFC25D86526320A24F8B27391/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 3 + GMNotes: '' + GUID: 3da436 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: His Domain + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -52.6241646 + posY: 1.631147 + posZ: 15.7456436 + rotX: 0.0188051127 + rotY: 179.420029 + rotZ: 0.0749951154 + 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: http://cloud-3.steamusercontent.com/ugc/775107058378732934/F41E84FCDC0AB52634348C439A6D1A725CEB8115/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378736378/628E179D5305E95AFC25D86526320A24F8B27391/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 2 + GMNotes: '' + GUID: 87b92e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Torturous Descent + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -52.59952 + posY: 1.7766974 + posZ: 15.44898 + rotX: 359.991516 + rotY: 180.812073 + rotZ: 0.0514248535 + 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: http://cloud-3.steamusercontent.com/ugc/775107058378732934/F41E84FCDC0AB52634348C439A6D1A725CEB8115/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378736378/628E179D5305E95AFC25D86526320A24F8B27391/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 1 + GMNotes: '' + GUID: 3a6817 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Locked Inside + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -52.63774 + posY: 1.79435837 + posZ: 15.3395376 + rotX: -0.00479935063 + rotY: 180.857269 + rotZ: 0.0636481047 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2317': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378732934/F41E84FCDC0AB52634348C439A6D1A725CEB8115/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378736378/628E179D5305E95AFC25D86526320A24F8B27391/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 231718 +- 231717 +- 231716 +Description: '' +GMNotes: '' +GUID: a8f821 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Agenda Deck +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.724753 + posY: 1.65664136 + posZ: 0.373330742 + rotX: 0.01683492 + rotY: 180.000031 + rotZ: 0.08025738 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Deck Encounter Deck 79b81e.yaml b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Deck Encounter Deck 79b81e.yaml new file mode 100644 index 000000000..74b55a26c --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Deck Encounter Deck 79b81e.yaml @@ -0,0 +1,1082 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 232807 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723517659500931/4B5458A518FDAF55C44CD8423EC12304E3266A6C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: 2e4685 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Clouded Memory + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -13.0544357 + posY: 1.83922231 + posZ: -66.64284 + rotX: 359.952057 + rotY: 270.0 + rotZ: 180.3993 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232823 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723517659500931/4B5458A518FDAF55C44CD8423EC12304E3266A6C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: 3effb8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Maddening Delusions + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -20.1577435 + posY: 1.57207835 + posZ: -31.3182583 + rotX: 359.92038 + rotY: 269.999878 + rotZ: 0.0152459564 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232823 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723517659500931/4B5458A518FDAF55C44CD8423EC12304E3266A6C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: dd93e2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Maddening Delusions + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -20.4406471 + posY: 1.73394608 + posZ: -31.18953 + rotX: 359.9276 + rotY: 269.999939 + rotZ: 0.007684529 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232822 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723517659500931/4B5458A518FDAF55C44CD8423EC12304E3266A6C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: a92ef8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Visions in Your Mind (Hatred) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -19.8424263 + posY: 1.73465288 + posZ: -31.0785656 + rotX: 359.919647 + rotY: 270.0066 + rotZ: 0.0226448 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232821 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723517659500931/4B5458A518FDAF55C44CD8423EC12304E3266A6C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: '613256' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Visions in Your Mind (Death) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -20.2634449 + posY: 1.7214551 + posZ: -31.20634 + rotX: 359.922943 + rotY: 269.996216 + rotZ: 0.0142507013 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232820 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723517659500931/4B5458A518FDAF55C44CD8423EC12304E3266A6C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: ca4b6d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Visions in Your Mind (Failure) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -19.837471 + posY: 1.71898663 + posZ: -31.096756 + rotX: 359.918335 + rotY: 269.998779 + rotZ: 0.0132667217 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232819 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723517659500931/4B5458A518FDAF55C44CD8423EC12304E3266A6C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: 5987af + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Visions in Your Mind (Horrors) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -20.4759254 + posY: 1.72235584 + posZ: -30.9665585 + rotX: 359.925446 + rotY: 270.004181 + rotZ: 0.00763365347 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232816 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723517659500931/4B5458A518FDAF55C44CD8423EC12304E3266A6C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Creature. + GMNotes: '' + GUID: 2789ff + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Maggot Swarm + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -19.2407017 + posY: 1.57227457 + posZ: -26.3014812 + rotX: 359.9204 + rotY: 269.999939 + rotZ: 0.0150428768 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232816 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723517659500931/4B5458A518FDAF55C44CD8423EC12304E3266A6C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Creature. + GMNotes: '' + GUID: e2d075 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Maggot Swarm + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -19.2230339 + posY: 1.73377633 + posZ: -26.3048229 + rotX: 359.915741 + rotY: 270.0 + rotZ: 0.0147493454 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232815 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723517659500931/4B5458A518FDAF55C44CD8423EC12304E3266A6C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: d6340b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Fragile Thoughts + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -18.39599 + posY: 1.57247078 + posZ: -21.6435146 + rotX: 359.92038 + rotY: 269.999847 + rotZ: 0.0152562214 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232815 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723517659500931/4B5458A518FDAF55C44CD8423EC12304E3266A6C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: b4bbb4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Fragile Thoughts + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -18.5655079 + posY: 1.732873 + posZ: -21.3264027 + rotX: 359.948151 + rotY: 270.0 + rotZ: 359.992157 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232814 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723517659500931/4B5458A518FDAF55C44CD8423EC12304E3266A6C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: 5987af + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Bleeding Walls + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -17.9469852 + posY: 1.5728128 + posZ: -18.3870125 + rotX: 359.9203 + rotY: 269.999573 + rotZ: 0.01579755 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232814 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723517659500931/4B5458A518FDAF55C44CD8423EC12304E3266A6C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: a9d501 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Bleeding Walls + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -18.0130978 + posY: 1.72845662 + posZ: -18.5875816 + rotX: 359.9193 + rotY: 269.999573 + rotZ: 0.00951310247 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232818 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723517659500931/4B5458A518FDAF55C44CD8423EC12304E3266A6C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Pact. Power. + GMNotes: '' + GUID: 48ff80 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Sign of Hastur + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -13.3913937 + posY: 1.8250612 + posZ: -66.7000961 + rotX: 359.952148 + rotY: 270.0 + rotZ: 180.0341 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232818 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723517659500931/4B5458A518FDAF55C44CD8423EC12304E3266A6C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Pact. Power. + GMNotes: '' + GUID: a3c0d0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Sign of Hastur + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -12.9163723 + posY: 1.81539214 + posZ: -66.7337952 + rotX: 359.952026 + rotY: 270.000336 + rotZ: 180.106033 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232242 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: b71468 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Walls Closing In + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.54436564 + posY: 1.55997086 + posZ: 6.254395 + rotX: 359.920471 + rotY: 269.999847 + rotZ: 0.0146010369 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232242 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: bf3597 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Walls Closing In + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.87291741 + posY: 1.723301 + posZ: 6.52010441 + rotX: 359.950134 + rotY: 270.0 + rotZ: 359.993256 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232242 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: 3dc93f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Walls Closing In + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.87291765 + posY: 1.73298216 + posZ: 6.52010441 + rotX: 359.941467 + rotY: 270.0 + rotZ: 0.00588421756 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232241 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: e0308c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Gift of Madness (Misery) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -11.3649063 + posY: 1.92373645 + posZ: 4.830825 + rotX: 359.93103 + rotY: 269.9936 + rotZ: 180.020752 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232240 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: 2a874d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Gift of Madness (Pity) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -11.5246515 + posY: 1.91444921 + posZ: 5.059258 + rotX: 359.936829 + rotY: 270.0005 + rotZ: 180.016266 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232239 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Item. Clothing. + GMNotes: '' + GUID: 33902b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Straitjacket + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -7.722154 + posY: 1.564322 + posZ: 1.57734609 + rotX: 359.921356 + rotY: 269.999817 + rotZ: 0.00828568 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232239 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Item. Clothing. + GMNotes: '' + GUID: ab6c60 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Straitjacket + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -7.87944937 + posY: 1.71659434 + posZ: 1.40013671 + rotX: 359.954651 + rotY: 269.999847 + rotZ: 0.009591736 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232221 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Pact. + GMNotes: '' + GUID: c189a5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dance of the Yellow King + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -33.0721054 + posY: 1.59816492 + posZ: -3.9468503 + rotX: 359.920135 + rotY: 270.00177 + rotZ: 0.0167396571 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232221 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Pact. + GMNotes: '' + GUID: 74b258 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dance of the Yellow King + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -32.95977 + posY: 1.76483011 + posZ: -3.889132 + rotX: 359.9195 + rotY: 270.001862 + rotZ: 0.0146204839 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723517659500931/4B5458A518FDAF55C44CD8423EC12304E3266A6C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 232807 +- 232823 +- 232823 +- 232822 +- 232821 +- 232820 +- 232819 +- 232816 +- 232816 +- 232815 +- 232815 +- 232814 +- 232814 +- 232818 +- 232818 +- 232242 +- 232242 +- 232242 +- 232241 +- 232240 +- 232239 +- 232239 +- 232221 +- 232221 +Description: '' +GMNotes: '' +GUID: 79b81e +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Encounter Deck +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.92762542 + posY: 1.739733 + posZ: 5.7571373 + rotX: 359.919739 + rotY: 270.000275 + rotZ: 180.016815 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Deck Lunatic Pile d69fed.yaml b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Deck Lunatic Pile d69fed.yaml new file mode 100644 index 000000000..d01c775e1 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Deck Lunatic Pile d69fed.yaml @@ -0,0 +1,344 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 232238 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Lunatic. + GMNotes: '' + GUID: f9cf86 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Mad Patient + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.9700546 + posY: 1.64379764 + posZ: 5.069023 + rotX: 359.920959 + rotY: 269.998444 + rotZ: 0.0104306182 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232238 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Lunatic. + GMNotes: '' + GUID: 6b7d78 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Mad Patient + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -64.38912 + posY: 1.794112 + posZ: 5.06262445 + rotX: 359.941956 + rotY: 269.9981 + rotZ: 0.01294072 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232238 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Lunatic. + GMNotes: '' + GUID: 9cc0d7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Mad Patient + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.662 + posY: 1.81080055 + posZ: 5.01623631 + rotX: 359.920959 + rotY: 269.998718 + rotZ: 0.01512498 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232220 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Lunatic. + GMNotes: '' + GUID: bce7b8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Young Psychopath + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -64.023 + posY: 1.79765129 + posZ: 5.178009 + rotX: 359.922241 + rotY: 270.0011 + rotZ: 0.0136726061 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232220 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Lunatic. + GMNotes: '' + GUID: 40c629 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Young Psychopath + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -64.0621262 + posY: 1.79571545 + posZ: 5.27301741 + rotX: 359.9225 + rotY: 270.0011 + rotZ: 0.0129900705 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232219 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Lunatic. + GMNotes: '' + GUID: 006497 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Maniac + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -64.1285 + posY: 1.79845762 + posZ: 5.192053 + rotX: 359.9223 + rotY: 270.00116 + rotZ: 0.0137170348 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232219 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Lunatic. + GMNotes: '' + GUID: 068703 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Maniac + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.5555267 + posY: 1.80274832 + posZ: 5.529881 + rotX: 359.9176 + rotY: 270.001343 + rotZ: 0.0127297053 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 232238 +- 232238 +- 232238 +- 232220 +- 232220 +- 232219 +- 232219 +Description: '' +GMNotes: '' +GUID: d69fed +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Lunatic Pile +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.37882257 + posY: 1.67587185 + posZ: 15.3160276 + rotX: 359.919739 + rotY: 270.0 + rotZ: 180.01683 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Deck Monster Pile cbf2f5.yaml b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Deck Monster Pile cbf2f5.yaml new file mode 100644 index 000000000..c01bac4d6 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Deck Monster Pile cbf2f5.yaml @@ -0,0 +1,351 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 232817 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723517659500931/4B5458A518FDAF55C44CD8423EC12304E3266A6C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Byakhee. + GMNotes: '' + GUID: 5987af + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Preying Byakhee + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -8.276293 + posY: 1.72131014 + posZ: -56.9128036 + rotX: 359.9201 + rotY: 269.999969 + rotZ: 180.017151 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232817 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723517659500931/4B5458A518FDAF55C44CD8423EC12304E3266A6C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Byakhee. + GMNotes: '' + GUID: 7161b9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Preying Byakhee + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -8.6539 + posY: 1.702444 + posZ: -56.90339 + rotX: 359.954224 + rotY: 269.9974 + rotZ: 180.148453 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232212 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Elite. + GMNotes: '' + GUID: 83c7c3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Beast of Aldebaran + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.69652 + posY: 1.80399883 + posZ: -1.99516463 + rotX: 359.9419 + rotY: 270.0011 + rotZ: -0.003694706 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232213 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. + GMNotes: '' + GUID: d46d72 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Spawn of Hali + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -61.51563 + posY: 1.77209353 + posZ: -2.87078738 + rotX: 355.0253 + rotY: 270.156067 + rotZ: 359.963623 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232213 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. + GMNotes: '' + GUID: e9dc22 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Spawn of Hali + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -61.97952 + posY: 1.80097163 + posZ: -3.47925 + rotX: 355.029083 + rotY: 270.009338 + rotZ: -0.00201351428 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232237 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Abomination. + GMNotes: '' + GUID: dd1c0a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Asylum Gorger + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.73442 + posY: 1.79567409 + posZ: -2.44873524 + rotX: 359.918884 + rotY: 269.99884 + rotZ: 0.0158655383 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232237 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Abomination. + GMNotes: '' + GUID: e66648 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Asylum Gorger + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.37584 + posY: 1.8001101 + posZ: -2.682107 + rotX: 359.9214 + rotY: 269.99884 + rotZ: 0.0151741663 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723517659500931/4B5458A518FDAF55C44CD8423EC12304E3266A6C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 232817 +- 232817 +- 232212 +- 232213 +- 232213 +- 232237 +- 232237 +Description: '' +GMNotes: '' +GUID: cbf2f5 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Monster Pile +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -5.730155 + posY: 1.68056214 + posZ: 15.3024483 + rotX: 359.919739 + rotY: 270.000061 + rotZ: 180.01683 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Notecard Errata 1 c962b2.yaml b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Notecard Errata 1 c962b2.yaml new file mode 100644 index 000000000..107d919fb --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Notecard Errata 1 c962b2.yaml @@ -0,0 +1,107 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +Description: "Corrosion (102)\r\nThis card\u2019s [b]Revelation[/b] ability should\ + \ read: \u201CDiscard [b][i]Item[/b][/i] assets from your\r play area and/or from\ + \ your hand\u2026\u201D" +GMNotes: '' +GUID: c962b2 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Notecard +Nickname: Errata 1 +Snap: true +States: + '2': + Autoraise: true + ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 + Description: "Patient Confinement (178-181)\r\nEach of these locations should\ + \ not have the \u201C[i][b]Arkham Asylum[/i][/b]\u201D trait." + GMNotes: '' + GUID: 350a26 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Notecard + Nickname: Errata 2 + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -45.1834373 + posY: 1.6157639 + posZ: 4.29240656 + rotX: 0.07987894 + rotY: 90.00033 + rotZ: 359.983124 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' + '3': + Autoraise: true + ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 + Description: "\rThe first part of the interlude should read:\r\n\u201CIf an investigator\ + \ resigned with the asset version of Daniel Chesterfield\r under his or her\ + \ control, proceed to [b]Daniel Survived.[/b]\r\nIf the enemy version of Daniel\ + \ Chesterfield was in play when the scenario\r ended, proceed to [b]Daniel Was\ + \ Possessed.[/b]\r\nIf neither of the above are true, proceed to [b]Daniel Did\ + \ Not Survive.\u201D[/b]" + GMNotes: '' + GUID: d7c7a8 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Notecard + Nickname: Errata 3 + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -45.1834373 + posY: 1.6157639 + posZ: 4.29240656 + rotX: 0.0798777938 + rotY: 90.0004044 + rotZ: 359.983124 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +Sticky: true +Tooltip: true +Transform: + posX: -11.1540318 + posY: 1.560008 + posZ: -23.9454365 + rotX: 0.07987722 + rotY: 89.9999161 + rotZ: 359.983124 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 5 A Phantom of Truth bd4167.ttslua b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 5 A Phantom of Truth bd4167.ttslua new file mode 100644 index 000000000..46067f58e --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 5 A Phantom of Truth bd4167.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.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.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 Return to The Path to Carcosa e9889a/Custom_Model_Bag 5 A Phantom of Truth bd4167.yaml b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 5 A Phantom of Truth bd4167.yaml new file mode 100644 index 000000000..9461d16ee --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 5 A Phantom of Truth bd4167.yaml @@ -0,0 +1,115 @@ +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 5 A Phantom of Truth bd4167/Custom_Model_Bag Set-aside + 1bfd5a.yaml' +- !include 'Custom_Model_Bag 5 A Phantom of Truth bd4167/Deck Encounter Deck 794295.yaml' +- !include 'Custom_Model_Bag 5 A Phantom of Truth bd4167/Deck Agenda Deck 72c268.yaml' +- !include 'Custom_Model_Bag 5 A Phantom of Truth bd4167/Bag Doubt or Equal e5006f.yaml' +- !include 'Custom_Model_Bag 5 A Phantom of Truth bd4167/Bag Conviction 94014b.yaml' +- !include 'Custom_Model_Bag 5 A Phantom of Truth bd4167/Card Scenario b52eaf.yaml' +- !include 'Custom_Model_Bag 5 A Phantom of Truth bd4167/Card Setup 93a42f.yaml' +- !include 'Custom_Model_Bag 5 A Phantom of Truth bd4167/Custom_Tile A Phantom of + Truth b20b8d.yaml' +- !include 'Custom_Model_Bag 5 A Phantom of Truth bd4167/Card Canal Saint-Martin 065c64.yaml' +- !include 'Custom_Model_Bag 5 A Phantom of Truth bd4167/Custom_Tile 0f0b44.yaml' +- !include "Custom_Model_Bag 5 A Phantom of Truth bd4167/Card P\xE8re Lachaise Cemetery\ + \ b85353.yaml" +- !include "Custom_Model_Bag 5 A Phantom of Truth bd4167/Card P\xE8re Lachaise Cemetery\ + \ 79ea7b.yaml" +- !include 'Custom_Model_Bag 5 A Phantom of Truth bd4167/Custom_Tile 240f42.yaml' +- !include 'Custom_Model_Bag 5 A Phantom of Truth bd4167/Custom_Tile 2ea277.yaml' +- !include 'Custom_Model_Bag 5 A Phantom of Truth bd4167/Card Canal Saint-Martin 290979.yaml' +- !include 'Custom_Model_Bag 5 A Phantom of Truth bd4167/Card Le Marais 8c21dc.yaml' +- !include 'Custom_Model_Bag 5 A Phantom of Truth bd4167/Card Le Marais 191fba.yaml' +- !include 'Custom_Model_Bag 5 A Phantom of Truth bd4167/Custom_Tile 09b690.yaml' +- !include 'Custom_Model_Bag 5 A Phantom of Truth bd4167/Card Notre-Dame 7b7fad.yaml' +- !include 'Custom_Model_Bag 5 A Phantom of Truth bd4167/Card Notre-Dame 37f17c.yaml' +- !include 'Custom_Model_Bag 5 A Phantom of Truth bd4167/Custom_Tile fb0cd1.yaml' +- !include 'Custom_Model_Bag 5 A Phantom of Truth bd4167/Custom_Tile f95052.yaml' +- !include 'Custom_Model_Bag 5 A Phantom of Truth bd4167/Custom_Tile 06f9fa.yaml' +- !include 'Custom_Model_Bag 5 A Phantom of Truth bd4167/Custom_Tile 4a4785.yaml' +- !include 'Custom_Model_Bag 5 A Phantom of Truth bd4167/Custom_Tile 7234af.yaml' +- !include 'Custom_Model_Bag 5 A Phantom of Truth bd4167/Card Montparnasse a7a582.yaml' +- !include 'Custom_Model_Bag 5 A Phantom of Truth bd4167/Card Montparnasse 432812.yaml' +- !include 'Custom_Model_Bag 5 A Phantom of Truth bd4167/Card Gardens of Luxembourg + fe8e0e.yaml' +- !include 'Custom_Model_Bag 5 A Phantom of Truth bd4167/Card Gardens of Luxembourg + 17ba38.yaml' +- !include 'Custom_Model_Bag 5 A Phantom of Truth bd4167/Custom_Tile e5b752.yaml' +- !include 'Custom_Model_Bag 5 A Phantom of Truth bd4167/Custom_Tile e3c737.yaml' +- !include 'Custom_Model_Bag 5 A Phantom of Truth bd4167/Card Gare d''Orsay 1af959.yaml' +- !include 'Custom_Model_Bag 5 A Phantom of Truth bd4167/Custom_Tile cc943e.yaml' +- !include "Custom_Model_Bag 5 A Phantom of Truth bd4167/Card Op\xE9ra Garnier 403e57.yaml" +- !include "Custom_Model_Bag 5 A Phantom of Truth bd4167/Card Op\xE9ra Garnier 78e730.yaml" +- !include 'Custom_Model_Bag 5 A Phantom of Truth bd4167/Custom_Tile 603ed0.yaml' +- !include 'Custom_Model_Bag 5 A Phantom of Truth bd4167/Card Grand Guignol 31bba7.yaml' +- !include 'Custom_Model_Bag 5 A Phantom of Truth bd4167/Card Montmartre bf452a.yaml' +- !include 'Custom_Model_Bag 5 A Phantom of Truth bd4167/Card Montmartre 49daa1.yaml' +- !include 'Custom_Model_Bag 5 A Phantom of Truth bd4167/Custom_Tile 197e00.yaml' +- !include 'Custom_Model_Bag 5 A Phantom of Truth bd4167/Custom_Tile 8612e0.yaml' +- !include 'Custom_Model_Bag 5 A Phantom of Truth bd4167/Card Grand Guignol 113e2a.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/762723517662107582/2AD4D83850B9252ED3E220DCD69F8B650B765694/ + MaterialIndex: 3 + MeshURL: https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj + NormalURL: '' + TypeIndex: 6 +Description: '' +GMNotes: '' +GUID: bd4167 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Model_Bag 5 A Phantom of Truth bd4167.ttslua' +LuaScriptState: '{"ml":{"065c64":{"lock":false,"pos":{"x":-17.1192,"y":1.695,"z":-7.6999},"rot":{"x":359.1801,"y":269.9987,"z":0.0171}},"06f9fa":{"lock":false,"pos":{"x":-19.8902,"y":1.6082,"z":-3.4866},"rot":{"x":0.0684,"y":135,"z":0.0446}},"09b690":{"lock":false,"pos":{"x":-27.0584,"y":1.617,"z":-7.5965},"rot":{"x":359.9194,"y":269.9936,"z":0.0172}},"0f0b44":{"lock":false,"pos":{"x":-17.12,"y":1.602,"z":-11.51},"rot":{"x":359.9831,"y":0.0004,"z":359.9201}},"113e2a":{"lock":false,"pos":{"x":-18.5263,"y":1.772,"z":7.5595},"rot":{"x":359.2347,"y":270.0065,"z":359.9013}},"17ba38":{"lock":false,"pos":{"x":-30.2238,"y":1.7173,"z":-0.0296},"rot":{"x":359.1181,"y":269.9886,"z":0.0175}},"191fba":{"lock":false,"pos":{"x":-25.073,"y":1.7773,"z":-7.7009},"rot":{"x":359.4177,"y":270.0203,"z":0.0181}},"197e00":{"lock":false,"pos":{"x":-19.8141,"y":1.6101,"z":3.4298},"rot":{"x":0.0446,"y":45.0002,"z":359.9316}},"1af959":{"lock":false,"pos":{"x":-30.2242,"y":1.6976,"z":7.5699},"rot":{"x":359.9201,"y":269.9969,"z":0.0169}},"1bfd5a":{"lock":false,"pos":{"x":1.6964,"y":1.5583,"z":14.2787},"rot":{"x":359.9551,"y":224.998,"z":0.0687}},"240f42":{"lock":false,"pos":{"x":-21.1406,"y":1.6076,"z":-11.3468},"rot":{"x":0.0684,"y":135.0005,"z":0.0446}},"290979":{"lock":false,"pos":{"x":-18.5293,"y":1.7636,"z":-7.7163},"rot":{"x":359.1742,"y":270.0032,"z":0.0179}},"2ea277":{"lock":false,"pos":{"x":-20.5441,"y":1.6079,"z":-7.5006},"rot":{"x":0.0807,"y":90.0192,"z":359.9823}},"31bba7":{"lock":false,"pos":{"x":-17.119,"y":1.7016,"z":7.5701},"rot":{"x":359.104,"y":269.9959,"z":0.0181}},"37f17c":{"lock":false,"pos":{"x":-31.6303,"y":1.7435,"z":-7.6871},"rot":{"x":359.9212,"y":270.0266,"z":0.0163}},"403e57":{"lock":false,"pos":{"x":-25.0893,"y":1.7824,"z":7.5694},"rot":{"x":359.3635,"y":269.984,"z":0.0165}},"432812":{"lock":false,"pos":{"x":-38.1415,"y":1.7548,"z":0.004},"rot":{"x":359.921,"y":270.0157,"z":0.0164}},"49daa1":{"lock":false,"pos":{"x":-25.1039,"y":1.7365,"z":0.0013},"rot":{"x":0.0517,"y":270.0374,"z":359.8193}},"4a4785":{"lock":false,"pos":{"x":-33.1186,"y":1.6264,"z":-4.4252},"rot":{"x":359.9316,"y":315.0001,"z":359.9554}},"603ed0":{"lock":false,"pos":{"x":-20.318,"y":1.612,"z":7.5175},"rot":{"x":0.0814,"y":90.013,"z":359.972}},"7234af":{"lock":false,"pos":{"x":-33.3511,"y":1.628,"z":-0.0849},"rot":{"x":359.9185,"y":269.9935,"z":0.0158}},"72c268":{"lock":false,"pos":{"x":-2.7248,"y":1.6566,"z":0.3734},"rot":{"x":0.0168,"y":179.9992,"z":0.0803}},"78e730":{"lock":false,"pos":{"x":-23.677,"y":1.7035,"z":7.5708},"rot":{"x":359.3687,"y":269.9734,"z":0.017}},"794295":{"lock":false,"pos":{"x":-3.9277,"y":1.7451,"z":5.7572},"rot":{"x":359.9197,"y":269.9998,"z":180.0168}},"79ea7b":{"lock":false,"pos":{"x":-17.1199,"y":1.6726,"z":-15.2801},"rot":{"x":359.9201,"y":270.0011,"z":0.0166}},"7b7fad":{"lock":false,"pos":{"x":-30.2242,"y":1.6931,"z":-7.7003},"rot":{"x":359.9201,"y":270.0012,"z":0.0166}},"8612e0":{"lock":false,"pos":{"x":-23.6765,"y":1.6157,"z":3.86},"rot":{"x":0.0169,"y":179.9967,"z":0.0799}},"8c21dc":{"lock":false,"pos":{"x":-23.6761,"y":1.6975,"z":-7.7},"rot":{"x":359.4226,"y":269.9935,"z":0.0169}},"93a42f":{"lock":false,"pos":{"x":-0.4656,"y":1.6507,"z":-10.566},"rot":{"x":359.9197,"y":270.0001,"z":0.0168}},"94014b":{"lock":false,"pos":{"x":0.9381,"y":1.3949,"z":-0.8756},"rot":{"x":359.9832,"y":0.0003,"z":359.9197}},"a7a582":{"lock":false,"pos":{"x":-36.773,"y":1.7045,"z":-0.0302},"rot":{"x":359.9201,"y":270.0002,"z":0.0166}},"b20b8d":{"lock":false,"pos":{"x":-4.3295,"y":1.5831,"z":-14.994},"rot":{"x":359.9197,"y":269.9786,"z":0.0169}},"b52eaf":{"lock":false,"pos":{"x":-3.956,"y":1.6556,"z":-10.4412},"rot":{"x":359.9197,"y":269.9999,"z":0.0168}},"b85353":{"lock":false,"pos":{"x":-18.5145,"y":1.723,"z":-15.2934},"rot":{"x":359.9211,"y":270.0133,"z":0.0164}},"bf452a":{"lock":false,"pos":{"x":-23.6765,"y":1.6862,"z":-0.0301},"rot":{"x":359.9201,"y":269.9981,"z":0.0166}},"cc943e":{"lock":false,"pos":{"x":-26.9121,"y":1.6212,"z":7.3868},"rot":{"x":359.919,"y":269.994,"z":0.017}},"e3c737":{"lock":false,"pos":{"x":-33.4568,"y":1.6293,"z":3.7544},"rot":{"x":359.9554,"y":224.9999,"z":0.0684}},"e5006f":{"lock":false,"pos":{"x":0.8001,"y":1.396,"z":2.1904},"rot":{"x":359.9832,"y":0.0001,"z":359.9197}},"e5b752":{"lock":false,"pos":{"x":-30.2242,"y":1.6248,"z":3.86},"rot":{"x":359.9831,"y":0.0002,"z":359.9201}},"f95052":{"lock":false,"pos":{"x":-23.6768,"y":1.6134,"z":-3.8319},"rot":{"x":0.0169,"y":179.9968,"z":0.0799}},"fb0cd1":{"lock":false,"pos":{"x":-30.2242,"y":1.6225,"z":-3.83},"rot":{"x":359.9831,"y":0.0003,"z":359.92}},"fe8e0e":{"lock":false,"pos":{"x":-31.6545,"y":1.7875,"z":-0.0107},"rot":{"x":359.1124,"y":269.988,"z":0.0168}}}}' +MaterialIndex: -1 +MeshIndex: -1 +Name: Custom_Model_Bag +Nickname: '5: A Phantom of Truth' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 12.2493038 + posY: 1.46327841 + posZ: -3.91850138 + rotX: 359.9201 + rotY: 270.045319 + rotZ: 0.0168107357 + scaleX: 2.21 + scaleY: 0.46 + scaleZ: 2.42 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 5 A Phantom of Truth bd4167/Bag Conviction 94014b.yaml b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 5 A Phantom of Truth bd4167/Bag Conviction 94014b.yaml new file mode 100644 index 000000000..625fccd21 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 5 A Phantom of Truth bd4167/Bag Conviction 94014b.yaml @@ -0,0 +1,38 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +ContainedObjects: +- !include 'Bag Conviction 94014b/Deck Act Deck 24ccf0.yaml' +- !include 'Bag Conviction 94014b/Deck Add to Encounter Deck ff44db.yaml' +Description: If Doubt is LESS than Conviction, use contents in this bag and discard + the Doubt Bag. +GMNotes: '' +GUID: 94014b +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +MeshIndex: -1 +Name: Bag +Nickname: Conviction +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 0.9381493 + posY: 1.394856 + posZ: -0.8755811 + rotX: 359.983154 + rotY: 0.0003463973 + rotZ: 359.919678 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 5 A Phantom of Truth bd4167/Bag Conviction 94014b/Deck Act Deck 24ccf0.yaml b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 5 A Phantom of Truth bd4167/Bag Conviction 94014b/Deck Act Deck 24ccf0.yaml new file mode 100644 index 000000000..424c34bc8 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 5 A Phantom of Truth bd4167/Bag Conviction 94014b/Deck Act Deck 24ccf0.yaml @@ -0,0 +1,129 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 231730 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2317': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378732934/F41E84FCDC0AB52634348C439A6D1A725CEB8115/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378736378/628E179D5305E95AFC25D86526320A24F8B27391/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 2 + GMNotes: '' + GUID: 09a07b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Stalked by Shadows + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -55.1437454 + posY: 1.632565 + posZ: 8.723942 + rotX: 0.0179829281 + rotY: 179.999237 + rotZ: 0.07318324 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231728 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2317': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378732934/F41E84FCDC0AB52634348C439A6D1A725CEB8115/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378736378/628E179D5305E95AFC25D86526320A24F8B27391/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 1 + GMNotes: '' + GUID: be1a27 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Parisian Conspiracy (v. II) + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -55.09867 + posY: 1.77147961 + posZ: 8.791027 + rotX: 0.00141109922 + rotY: 180.009415 + rotZ: 0.0744360238 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2317': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378732934/F41E84FCDC0AB52634348C439A6D1A725CEB8115/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378736378/628E179D5305E95AFC25D86526320A24F8B27391/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 231730 +- 231728 +Description: '' +GMNotes: '' +GUID: 24ccf0 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Act Deck +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -18.9077644 + posY: 3.63329339 + posZ: 50.4298248 + rotX: 0.303814739 + rotY: 179.98436 + rotZ: 356.3394 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 5 A Phantom of Truth bd4167/Bag Conviction 94014b/Deck Add to Encounter Deck ff44db.yaml b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 5 A Phantom of Truth bd4167/Bag Conviction 94014b/Deck Add to Encounter Deck ff44db.yaml new file mode 100644 index 000000000..4012b06af --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 5 A Phantom of Truth bd4167/Bag Conviction 94014b/Deck Add to Encounter Deck ff44db.yaml @@ -0,0 +1,265 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 232244 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: a37e3d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Twin Suns + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -55.23408 + posY: 1.63680243 + posZ: 22.5220261 + rotX: 359.9206 + rotY: 270.0359 + rotZ: 0.0131973652 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232244 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: 75bda2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Twin Suns + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -55.3894768 + posY: 1.78688729 + posZ: 22.5528183 + rotX: 359.913055 + rotY: 270.036 + rotZ: 0.0118823405 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233303 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2333': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Curse. + GMNotes: '' + GUID: 14bfaf + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Hunting Shadow + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -55.3906364 + posY: 1.7999748 + posZ: 22.4357738 + rotX: 359.935547 + rotY: 269.998047 + rotZ: 0.0137602035 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233303 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2333': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Curse. + GMNotes: '' + GUID: ea8fcf + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Hunting Shadow + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -54.9424629 + posY: 1.78586733 + posZ: 22.85021 + rotX: 359.933777 + rotY: 269.998047 + rotZ: 0.013384806 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233303 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2333': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Curse. + GMNotes: '' + GUID: ab3719 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Hunting Shadow + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -55.5731125 + posY: 1.80023932 + posZ: 23.0756874 + rotX: 359.920074 + rotY: 269.9969 + rotZ: 0.01577925 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '2333': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 232244 +- 232244 +- 233303 +- 233303 +- 233303 +Description: '' +GMNotes: '' +GUID: ff44db +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Add to Encounter Deck +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -18.581995 + posY: 3.62424254 + posZ: 51.1032448 + rotX: 0.742718637 + rotY: 269.962158 + rotZ: 356.438477 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 5 A Phantom of Truth bd4167/Bag Doubt or Equal e5006f.yaml b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 5 A Phantom of Truth bd4167/Bag Doubt or Equal e5006f.yaml new file mode 100644 index 000000000..9293e1588 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 5 A Phantom of Truth bd4167/Bag Doubt or Equal e5006f.yaml @@ -0,0 +1,38 @@ +Autoraise: true +ColorDiffuse: + b: 0.7439022 + g: 0.485998869 + r: 0.653287649 +ContainedObjects: +- !include 'Bag Doubt or Equal e5006f/Deck Act Deck 2152d3.yaml' +- !include 'Bag Doubt or Equal e5006f/Deck Add to Encounter Deck 90bef0.yaml' +Description: If Doubt is EQUAL or GREATER than Conviction, use contents in this bag + and discard the Conviction Bag. +GMNotes: '' +GUID: e5006f +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +MeshIndex: -1 +Name: Bag +Nickname: Doubt or Equal +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 0.8001435 + posY: 1.39595032 + posZ: 2.19040012 + rotX: 359.983154 + rotY: 7.150865e-05 + rotZ: 359.919678 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 5 A Phantom of Truth bd4167/Bag Doubt or Equal e5006f/Deck Act Deck 2152d3.yaml b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 5 A Phantom of Truth bd4167/Bag Doubt or Equal e5006f/Deck Act Deck 2152d3.yaml new file mode 100644 index 000000000..276f787e2 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 5 A Phantom of Truth bd4167/Bag Doubt or Equal e5006f/Deck Act Deck 2152d3.yaml @@ -0,0 +1,129 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 231729 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2317': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378732934/F41E84FCDC0AB52634348C439A6D1A725CEB8115/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378736378/628E179D5305E95AFC25D86526320A24F8B27391/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 2 + GMNotes: '' + GUID: '402117' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Pursuing Shadows + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -55.9649658 + posY: 1.63628089 + posZ: 17.2992916 + rotX: 0.0173009317 + rotY: 180.0032 + rotZ: 0.0761844143 + 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: http://cloud-3.steamusercontent.com/ugc/775107058378732934/F41E84FCDC0AB52634348C439A6D1A725CEB8115/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378736378/628E179D5305E95AFC25D86526320A24F8B27391/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 1 + GMNotes: '' + GUID: 136abe + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Parisian Conspiracy (v. I) + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -56.1029739 + posY: 1.78162134 + posZ: 17.0385456 + rotX: 0.01009753 + rotY: 179.995316 + rotZ: 0.0713474154 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2317': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378732934/F41E84FCDC0AB52634348C439A6D1A725CEB8115/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378736378/628E179D5305E95AFC25D86526320A24F8B27391/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 231729 +- 231727 +Description: '' +GMNotes: '' +GUID: 2152d3 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Act Deck +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -19.3044071 + posY: 3.63372445 + posZ: 54.2607079 + rotX: 0.427462816 + rotY: 179.979263 + rotZ: 356.337433 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 5 A Phantom of Truth bd4167/Bag Doubt or Equal e5006f/Deck Add to Encounter Deck 90bef0.yaml b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 5 A Phantom of Truth bd4167/Bag Doubt or Equal e5006f/Deck Add to Encounter Deck 90bef0.yaml new file mode 100644 index 000000000..fa9b4a19e --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 5 A Phantom of Truth bd4167/Bag Doubt or Equal e5006f/Deck Add to Encounter Deck 90bef0.yaml @@ -0,0 +1,222 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 232214 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: 0afc45 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Black Stars Rise + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -54.59636 + posY: 1.63750076 + posZ: 28.67429 + rotX: 359.922638 + rotY: 269.999939 + rotZ: 0.000312584831 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232214 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: f1bceb + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Black Stars Rise + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -54.9407959 + posY: 1.78279 + posZ: 28.244215 + rotX: 359.962463 + rotY: 269.99292 + rotZ: 0.0245836619 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233304 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2333': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 057d5f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: False Lead + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -54.21003 + posY: 1.90468991 + posZ: 28.7906151 + rotX: 1.40169573 + rotY: 269.901031 + rotZ: 357.5793 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233304 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2333': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 2ceae2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: False Lead + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -54.42537 + posY: 1.867599 + posZ: 29.50204 + rotX: 357.297 + rotY: 269.991028 + rotZ: 0.0185051076 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '2333': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 232214 +- 232214 +- 233304 +- 233304 +Description: '' +GMNotes: '' +GUID: 90bef0 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Add to Encounter Deck +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -18.8938389 + posY: 3.651049 + posZ: 54.64583 + rotX: 0.868308961 + rotY: 269.97403 + rotZ: 357.555969 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 5 A Phantom of Truth bd4167/Card Canal Saint-Martin 065c64.yaml b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 5 A Phantom of Truth bd4167/Card Canal Saint-Martin 065c64.yaml new file mode 100644 index 000000000..65faaed21 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 5 A Phantom of Truth bd4167/Card Canal Saint-Martin 065c64.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 231910 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378686851/006B65A59360F63826342C2B1A062C1AD727BD53/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378687267/945F8EF94DC605E0731E37C1BCD3FE65FCB86D02/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Paris. +GMNotes: '' +GUID: 065c64 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Canal Saint-Martin +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -17.1192245 + posY: 1.69499588 + posZ: -7.6999383 + rotX: 359.180145 + rotY: 269.998749 + rotZ: 0.0171462744 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 5 A Phantom of Truth bd4167/Card Canal Saint-Martin 290979.yaml b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 5 A Phantom of Truth bd4167/Card Canal Saint-Martin 290979.yaml new file mode 100644 index 000000000..eb04db3de --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 5 A Phantom of Truth bd4167/Card Canal Saint-Martin 290979.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 232923 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2329': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/762723517659499792/63775A11C2A49441C268121108C8EBFCF512E2A9/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723517659500387/BFF1AFFD515364F0BFD336A6CE9970BE1DD04B13/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Paris. +GMNotes: '' +GUID: '290979' +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Canal Saint-Martin +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -18.5292988 + posY: 1.76355457 + posZ: -7.71626425 + rotX: 359.174225 + rotY: 270.003235 + rotZ: 0.0179442372 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 5 A Phantom of Truth bd4167/Card Gardens of Luxembourg 17ba38.yaml b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 5 A Phantom of Truth bd4167/Card Gardens of Luxembourg 17ba38.yaml new file mode 100644 index 000000000..0942be0de --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 5 A Phantom of Truth bd4167/Card Gardens of Luxembourg 17ba38.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 231914 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378686851/006B65A59360F63826342C2B1A062C1AD727BD53/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378687267/945F8EF94DC605E0731E37C1BCD3FE65FCB86D02/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Paris. +GMNotes: '' +GUID: 17ba38 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Gardens of Luxembourg +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -30.22378 + posY: 1.71725237 + posZ: -0.0295748953 + rotX: 359.1181 + rotY: 269.988617 + rotZ: 0.0174515713 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 5 A Phantom of Truth bd4167/Card Gardens of Luxembourg fe8e0e.yaml b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 5 A Phantom of Truth bd4167/Card Gardens of Luxembourg fe8e0e.yaml new file mode 100644 index 000000000..6bb46a2ad --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 5 A Phantom of Truth bd4167/Card Gardens of Luxembourg fe8e0e.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 232925 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2329': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/762723517659499792/63775A11C2A49441C268121108C8EBFCF512E2A9/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723517659500387/BFF1AFFD515364F0BFD336A6CE9970BE1DD04B13/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Paris. +GMNotes: '' +GUID: fe8e0e +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Gardens of Luxembourg +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -31.6545143 + posY: 1.78754056 + posZ: -0.0107295606 + rotX: 359.1124 + rotY: 269.988 + rotZ: 0.01684724 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 5 A Phantom of Truth bd4167/Card Gare d'Orsay 1af959.yaml b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 5 A Phantom of Truth bd4167/Card Gare d'Orsay 1af959.yaml new file mode 100644 index 000000000..4b0cc387b --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 5 A Phantom of Truth bd4167/Card Gare d'Orsay 1af959.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 231908 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378686851/006B65A59360F63826342C2B1A062C1AD727BD53/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378687267/945F8EF94DC605E0731E37C1BCD3FE65FCB86D02/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Paris. Rail. +GMNotes: '' +GUID: 1af959 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Gare d'Orsay +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -30.22417 + posY: 1.69758856 + posZ: 7.56994 + rotX: 359.9201 + rotY: 269.996948 + rotZ: 0.01688038 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 5 A Phantom of Truth bd4167/Card Grand Guignol 113e2a.yaml b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 5 A Phantom of Truth bd4167/Card Grand Guignol 113e2a.yaml new file mode 100644 index 000000000..abec0e9c3 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 5 A Phantom of Truth bd4167/Card Grand Guignol 113e2a.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 232921 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2329': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/762723517659499792/63775A11C2A49441C268121108C8EBFCF512E2A9/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723517659500387/BFF1AFFD515364F0BFD336A6CE9970BE1DD04B13/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Theatre of the Great Puppet +GMNotes: '' +GUID: 113e2a +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Grand Guignol +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -18.5262775 + posY: 1.772014 + posZ: 7.559543 + rotX: 359.234741 + rotY: 270.006531 + rotZ: 359.901337 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 5 A Phantom of Truth bd4167/Card Grand Guignol 31bba7.yaml b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 5 A Phantom of Truth bd4167/Card Grand Guignol 31bba7.yaml new file mode 100644 index 000000000..b2b1b8a6c --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 5 A Phantom of Truth bd4167/Card Grand Guignol 31bba7.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 231905 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378686851/006B65A59360F63826342C2B1A062C1AD727BD53/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378687267/945F8EF94DC605E0731E37C1BCD3FE65FCB86D02/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Theatre of the Great Puppet +GMNotes: '' +GUID: 31bba7 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Grand Guignol +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -17.1190128 + posY: 1.7015897 + posZ: 7.57012558 + rotX: 359.103973 + rotY: 269.995941 + rotZ: 0.01807996 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 5 A Phantom of Truth bd4167/Card Le Marais 191fba.yaml b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 5 A Phantom of Truth bd4167/Card Le Marais 191fba.yaml new file mode 100644 index 000000000..25b98b437 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 5 A Phantom of Truth bd4167/Card Le Marais 191fba.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 231912 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378686851/006B65A59360F63826342C2B1A062C1AD727BD53/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378687267/945F8EF94DC605E0731E37C1BCD3FE65FCB86D02/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Paris. Rail. +GMNotes: '' +GUID: 191fba +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Le Marais +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -25.072998 + posY: 1.77726448 + posZ: -7.70086145 + rotX: 359.417664 + rotY: 270.020264 + rotZ: 0.0181284714 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 5 A Phantom of Truth bd4167/Card Le Marais 8c21dc.yaml b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 5 A Phantom of Truth bd4167/Card Le Marais 8c21dc.yaml new file mode 100644 index 000000000..36d731610 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 5 A Phantom of Truth bd4167/Card Le Marais 8c21dc.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 231911 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378686851/006B65A59360F63826342C2B1A062C1AD727BD53/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378687267/945F8EF94DC605E0731E37C1BCD3FE65FCB86D02/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Paris. Rail. +GMNotes: '' +GUID: 8c21dc +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Le Marais +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -23.6760921 + posY: 1.69754052 + posZ: -7.69998741 + rotX: 359.4226 + rotY: 269.993469 + rotZ: 0.0169091783 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 5 A Phantom of Truth bd4167/Card Montmartre 49daa1.yaml b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 5 A Phantom of Truth bd4167/Card Montmartre 49daa1.yaml new file mode 100644 index 000000000..cb0de7cd6 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 5 A Phantom of Truth bd4167/Card Montmartre 49daa1.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 231903 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378686851/006B65A59360F63826342C2B1A062C1AD727BD53/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378687267/945F8EF94DC605E0731E37C1BCD3FE65FCB86D02/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Paris. Rail. +GMNotes: '' +GUID: 49daa1 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Montmartre +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -25.1038666 + posY: 1.73648059 + posZ: 0.00134662958 + rotX: 0.0517032333 + rotY: 270.037354 + rotZ: 359.819336 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 5 A Phantom of Truth bd4167/Card Montmartre bf452a.yaml b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 5 A Phantom of Truth bd4167/Card Montmartre bf452a.yaml new file mode 100644 index 000000000..8bc5b011f --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 5 A Phantom of Truth bd4167/Card Montmartre bf452a.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 231904 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378686851/006B65A59360F63826342C2B1A062C1AD727BD53/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378687267/945F8EF94DC605E0731E37C1BCD3FE65FCB86D02/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Paris. Rail. +GMNotes: '' +GUID: bf452a +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Montmartre +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -23.6764889 + posY: 1.68621528 + posZ: -0.0301239956 + rotX: 359.920135 + rotY: 269.998138 + rotZ: 0.01655307 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 5 A Phantom of Truth bd4167/Card Montparnasse 432812.yaml b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 5 A Phantom of Truth bd4167/Card Montparnasse 432812.yaml new file mode 100644 index 000000000..b5151e2b0 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 5 A Phantom of Truth bd4167/Card Montparnasse 432812.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 232920 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2329': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/762723517659499792/63775A11C2A49441C268121108C8EBFCF512E2A9/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723517659500387/BFF1AFFD515364F0BFD336A6CE9970BE1DD04B13/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Paris. Rail. +GMNotes: '' +GUID: '432812' +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Montparnasse +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -38.1414642 + posY: 1.75477469 + posZ: 0.00403784774 + rotX: 359.921021 + rotY: 270.0157 + rotZ: 0.0163655244 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 5 A Phantom of Truth bd4167/Card Montparnasse a7a582.yaml b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 5 A Phantom of Truth bd4167/Card Montparnasse a7a582.yaml new file mode 100644 index 000000000..7cff5233f --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 5 A Phantom of Truth bd4167/Card Montparnasse a7a582.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 231902 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378686851/006B65A59360F63826342C2B1A062C1AD727BD53/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378687267/945F8EF94DC605E0731E37C1BCD3FE65FCB86D02/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Paris. Rail. +GMNotes: '' +GUID: a7a582 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Montparnasse +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -36.772953 + posY: 1.70447814 + posZ: -0.0301508214 + rotX: 359.920135 + rotY: 270.000183 + rotZ: 0.0165912043 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 5 A Phantom of Truth bd4167/Card Notre-Dame 37f17c.yaml b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 5 A Phantom of Truth bd4167/Card Notre-Dame 37f17c.yaml new file mode 100644 index 000000000..0a37a606f --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 5 A Phantom of Truth bd4167/Card Notre-Dame 37f17c.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 232924 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2329': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/762723517659499792/63775A11C2A49441C268121108C8EBFCF512E2A9/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723517659500387/BFF1AFFD515364F0BFD336A6CE9970BE1DD04B13/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Paris. Rail. +GMNotes: '' +GUID: 37f17c +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Notre-Dame +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -31.6302853 + posY: 1.743463 + posZ: -7.687121 + rotX: 359.921173 + rotY: 270.0266 + rotZ: 0.0163431112 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 5 A Phantom of Truth bd4167/Card Notre-Dame 7b7fad.yaml b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 5 A Phantom of Truth bd4167/Card Notre-Dame 7b7fad.yaml new file mode 100644 index 000000000..f15d99d3c --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 5 A Phantom of Truth bd4167/Card Notre-Dame 7b7fad.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 231913 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378686851/006B65A59360F63826342C2B1A062C1AD727BD53/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378687267/945F8EF94DC605E0731E37C1BCD3FE65FCB86D02/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Paris. Rail. +GMNotes: '' +GUID: 7b7fad +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Notre-Dame +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -30.2241859 + posY: 1.69308722 + posZ: -7.700336 + rotX: 359.920135 + rotY: 270.001221 + rotZ: 0.0165587012 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 5 A Phantom of Truth bd4167/Card Opéra Garnier 403e57.yaml b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 5 A Phantom of Truth bd4167/Card Opéra Garnier 403e57.yaml new file mode 100644 index 000000000..98f00cc09 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 5 A Phantom of Truth bd4167/Card Opéra Garnier 403e57.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 231906 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378686851/006B65A59360F63826342C2B1A062C1AD727BD53/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378687267/945F8EF94DC605E0731E37C1BCD3FE65FCB86D02/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Paris. Rail. +GMNotes: '' +GUID: 403e57 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: "Op\xE9ra Garnier" +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -25.0892773 + posY: 1.78242886 + posZ: 7.569375 + rotX: 359.363464 + rotY: 269.984 + rotZ: 0.0164961368 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 5 A Phantom of Truth bd4167/Card Opéra Garnier 78e730.yaml b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 5 A Phantom of Truth bd4167/Card Opéra Garnier 78e730.yaml new file mode 100644 index 000000000..d7ffde528 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 5 A Phantom of Truth bd4167/Card Opéra Garnier 78e730.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 231907 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378686851/006B65A59360F63826342C2B1A062C1AD727BD53/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378687267/945F8EF94DC605E0731E37C1BCD3FE65FCB86D02/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Paris. Rail. +GMNotes: '' +GUID: 78e730 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: "Op\xE9ra Garnier" +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -23.6770477 + posY: 1.70351768 + posZ: 7.570768 + rotX: 359.3687 + rotY: 269.973358 + rotZ: 0.01695868 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 5 A Phantom of Truth bd4167/Card Père Lachaise Cemetery 79ea7b.yaml b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 5 A Phantom of Truth bd4167/Card Père Lachaise Cemetery 79ea7b.yaml new file mode 100644 index 000000000..a5cbd2ed9 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 5 A Phantom of Truth bd4167/Card Père Lachaise Cemetery 79ea7b.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 231909 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378686851/006B65A59360F63826342C2B1A062C1AD727BD53/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378687267/945F8EF94DC605E0731E37C1BCD3FE65FCB86D02/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Paris. +GMNotes: '' +GUID: 79ea7b +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: "P\xE8re Lachaise Cemetery" +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -17.11994 + posY: 1.67258227 + posZ: -15.2801142 + rotX: 359.920135 + rotY: 270.0011 + rotZ: 0.0165581685 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 5 A Phantom of Truth bd4167/Card Père Lachaise Cemetery b85353.yaml b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 5 A Phantom of Truth bd4167/Card Père Lachaise Cemetery b85353.yaml new file mode 100644 index 000000000..2feacb905 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 5 A Phantom of Truth bd4167/Card Père Lachaise Cemetery b85353.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 232922 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2329': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/762723517659499792/63775A11C2A49441C268121108C8EBFCF512E2A9/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723517659500387/BFF1AFFD515364F0BFD336A6CE9970BE1DD04B13/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Paris. +GMNotes: '' +GUID: b85353 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: "P\xE8re Lachaise Cemetery" +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -18.5144558 + posY: 1.72303617 + posZ: -15.2933941 + rotX: 359.9211 + rotY: 270.013275 + rotZ: 0.0163795371 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 5 A Phantom of Truth bd4167/Card Scenario b52eaf.yaml b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 5 A Phantom of Truth bd4167/Card Scenario b52eaf.yaml new file mode 100644 index 000000000..3933c1a5b --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 5 A Phantom of Truth bd4167/Card Scenario b52eaf.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 231900 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378686851/006B65A59360F63826342C2B1A062C1AD727BD53/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378687267/945F8EF94DC605E0731E37C1BCD3FE65FCB86D02/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: A Phantom of Truth +GMNotes: '' +GUID: b52eaf +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Scenario +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.95600033 + posY: 1.65564811 + posZ: -10.4412022 + rotX: 359.919739 + rotY: 269.999878 + rotZ: 0.0168409534 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 5 A Phantom of Truth bd4167/Card Setup 93a42f.yaml b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 5 A Phantom of Truth bd4167/Card Setup 93a42f.yaml new file mode 100644 index 000000000..3193cf231 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 5 A Phantom of Truth bd4167/Card Setup 93a42f.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 232919 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2329': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/762723517659499792/63775A11C2A49441C268121108C8EBFCF512E2A9/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723517659500387/BFF1AFFD515364F0BFD336A6CE9970BE1DD04B13/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Return to A Phantom of Truth +GMNotes: '' +GUID: 93a42f +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Setup +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -0.465633035 + posY: 1.6507225 + posZ: -10.5660362 + rotX: 359.919739 + rotY: 270.000061 + rotZ: 0.0168420877 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 5 A Phantom of Truth bd4167/Custom_Model_Bag Set-aside 1bfd5a.yaml b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 5 A Phantom of Truth bd4167/Custom_Model_Bag Set-aside 1bfd5a.yaml new file mode 100644 index 000000000..eceeca91f --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 5 A Phantom of Truth bd4167/Custom_Model_Bag Set-aside 1bfd5a.yaml @@ -0,0 +1,59 @@ +Autoraise: true +ColorDiffuse: + b: 0.02148666 + g: 0.00100758043 + r: 0.02148666 +ContainedObjects: +- !include 'Custom_Model_Bag Set-aside 1bfd5a/Card Jordan Perry 1b6382.yaml' +- !include 'Custom_Model_Bag Set-aside 1bfd5a/Deck Figure in the Shadows f99ae7.yaml' +- !include 'Custom_Model_Bag Set-aside 1bfd5a/Card The Organist a0a6a4.yaml' +- !include 'Custom_Model_Bag Set-aside 1bfd5a/Deck Lost Soul e50068.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: A Phantom of Truth +GMNotes: '' +GUID: 1bfd5a +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +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.69643152 + posY: 1.5583173 + posZ: 14.2787142 + rotX: 359.9551 + rotY: 224.997971 + rotZ: 0.06867688 + scaleX: 2.0 + scaleY: 2.0 + scaleZ: 2.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 5 A Phantom of Truth bd4167/Custom_Model_Bag Set-aside 1bfd5a/Card Jordan Perry 1b6382.yaml b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 5 A Phantom of Truth bd4167/Custom_Model_Bag Set-aside 1bfd5a/Card Jordan Perry 1b6382.yaml new file mode 100644 index 000000000..e3324c651 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 5 A Phantom of Truth bd4167/Custom_Model_Bag Set-aside 1bfd5a/Card Jordan Perry 1b6382.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 232054 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378685352/22FD056BAF1966FE2D1AC46FC1BF90C1A03A1404/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378686413/C1688C1A909FDC7357EB3EEFADAB1FBD5818BD3E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: An Imposing Presence +GMNotes: '' +GUID: 1b6382 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Jordan Perry +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -26.5496941 + posY: 3.62550926 + posZ: -67.5040741 + rotX: 359.921722 + rotY: 269.999817 + rotZ: 0.0165707991 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 5 A Phantom of Truth bd4167/Custom_Model_Bag Set-aside 1bfd5a/Card The Organist a0a6a4.yaml b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 5 A Phantom of Truth bd4167/Custom_Model_Bag Set-aside 1bfd5a/Card The Organist a0a6a4.yaml new file mode 100644 index 000000000..bb3660895 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 5 A Phantom of Truth bd4167/Custom_Model_Bag Set-aside 1bfd5a/Card The Organist a0a6a4.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 231901 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378686851/006B65A59360F63826342C2B1A062C1AD727BD53/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378687267/945F8EF94DC605E0731E37C1BCD3FE65FCB86D02/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Humanoid. Avatar. Elite. +GMNotes: '' +GUID: a0a6a4 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: The Organist +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -26.6699028 + posY: 3.62605548 + posZ: -66.29568 + rotX: 359.92926 + rotY: 269.999359 + rotZ: 0.0167424716 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 5 A Phantom of Truth bd4167/Custom_Model_Bag Set-aside 1bfd5a/Deck Figure in the Shadows f99ae7.yaml b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 5 A Phantom of Truth bd4167/Custom_Model_Bag Set-aside 1bfd5a/Deck Figure in the Shadows f99ae7.yaml new file mode 100644 index 000000000..fa9c2a98f --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 5 A Phantom of Truth bd4167/Custom_Model_Bag Set-aside 1bfd5a/Deck Figure in the Shadows f99ae7.yaml @@ -0,0 +1,129 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 232808 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723517659500931/4B5458A518FDAF55C44CD8423EC12304E3266A6C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Scheme. + GMNotes: '' + GUID: f1f80b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Figure in the Shadows + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -25.120327 + posY: 1.57681 + posZ: -38.824028 + rotX: 359.920166 + rotY: 269.997864 + rotZ: 0.0167666022 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232808 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723517659500931/4B5458A518FDAF55C44CD8423EC12304E3266A6C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Scheme. + GMNotes: '' + GUID: 5987af + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Figure in the Shadows + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -24.7100658 + posY: 1.73752189 + posZ: -38.528717 + rotX: 359.9167 + rotY: 269.9867 + rotZ: 0.0103592826 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723517659500931/4B5458A518FDAF55C44CD8423EC12304E3266A6C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 232808 +- 232808 +Description: '' +GMNotes: '' +GUID: f99ae7 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Figure in the Shadows +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -27.6880722 + posY: 3.64051151 + posZ: -66.66808 + rotX: 0.5283834 + rotY: 269.998 + rotZ: 0.0167972427 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 5 A Phantom of Truth bd4167/Custom_Model_Bag Set-aside 1bfd5a/Deck Lost Soul e50068.yaml b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 5 A Phantom of Truth bd4167/Custom_Model_Bag Set-aside 1bfd5a/Deck Lost Soul e50068.yaml new file mode 100644 index 000000000..c574c50ef --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 5 A Phantom of Truth bd4167/Custom_Model_Bag Set-aside 1bfd5a/Deck Lost Soul e50068.yaml @@ -0,0 +1,215 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- 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 + UniqueBack: false + Description: Madness. Pact. + GMNotes: '' + GUID: febed7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Lost Soul + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -31.715395 + posY: 1.58042014 + posZ: -57.703846 + rotX: 359.9204 + rotY: 269.999939 + rotZ: 0.015114977 + 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 + UniqueBack: false + Description: Madness. Pact. + GMNotes: '' + GUID: 44bb66 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Lost Soul + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -31.4223785 + posY: 1.73920166 + posZ: -57.4752235 + rotX: 359.940552 + rotY: 270.0 + rotZ: 0.00620982237 + 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 + UniqueBack: false + Description: Madness. Pact. + GMNotes: '' + GUID: febed7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Lost Soul + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -31.42236 + posY: 1.75321162 + posZ: -57.4752274 + rotX: 359.937042 + rotY: 270.0 + rotZ: 0.0121888816 + 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 + UniqueBack: false + Description: Madness. Pact. + GMNotes: '' + GUID: febed7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Lost Soul + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -31.4223747 + posY: 1.74227989 + posZ: -57.4752235 + rotX: 359.93692 + rotY: 270.0 + rotZ: 0.0123915635 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2323': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 232348 +- 232348 +- 232348 +- 232348 +Description: '' +GMNotes: '' +GUID: e50068 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Lost Soul +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -26.3905716 + posY: 3.63895082 + posZ: -67.6207047 + rotX: 359.920258 + rotY: 269.999847 + rotZ: 0.0167926252 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 5 A Phantom of Truth bd4167/Custom_Tile 06f9fa.yaml b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 5 A Phantom of Truth bd4167/Custom_Tile 06f9fa.yaml new file mode 100644 index 000000000..9898cf22b --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 5 A Phantom of Truth bd4167/Custom_Tile 06f9fa.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 06f9fa +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: -19.8902 + posY: 1.60820913 + posZ: -3.4866004 + rotX: 0.06843105 + rotY: 134.999985 + rotZ: 0.0445622765 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 5 A Phantom of Truth bd4167/Custom_Tile 09b690.yaml b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 5 A Phantom of Truth bd4167/Custom_Tile 09b690.yaml new file mode 100644 index 000000000..508eb49fd --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 5 A Phantom of Truth bd4167/Custom_Tile 09b690.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 09b690 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.0583954 + posY: 1.61699283 + posZ: -7.59652662 + rotX: 359.9194 + rotY: 269.993561 + rotZ: 0.01718405 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 5 A Phantom of Truth bd4167/Custom_Tile 0f0b44.yaml b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 5 A Phantom of Truth bd4167/Custom_Tile 0f0b44.yaml new file mode 100644 index 000000000..65ed4dc79 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 5 A Phantom of Truth bd4167/Custom_Tile 0f0b44.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 0f0b44 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.6019839 + posZ: -11.51 + rotX: 359.983124 + rotY: 0.000388379 + rotZ: 359.920074 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 5 A Phantom of Truth bd4167/Custom_Tile 197e00.yaml b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 5 A Phantom of Truth bd4167/Custom_Tile 197e00.yaml new file mode 100644 index 000000000..dc5bed174 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 5 A Phantom of Truth bd4167/Custom_Tile 197e00.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 197e00 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: -19.8141 + posY: 1.61013985 + posZ: 3.42980027 + rotX: 0.04456625 + rotY: 45.0001831 + rotZ: 359.9316 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 5 A Phantom of Truth bd4167/Custom_Tile 240f42.yaml b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 5 A Phantom of Truth bd4167/Custom_Tile 240f42.yaml new file mode 100644 index 000000000..fc13945dd --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 5 A Phantom of Truth bd4167/Custom_Tile 240f42.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 240f42 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: -21.1406 + posY: 1.60763836 + posZ: -11.3468008 + rotX: 0.0684301 + rotY: 135.000458 + rotZ: 0.0445613638 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 5 A Phantom of Truth bd4167/Custom_Tile 2ea277.yaml b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 5 A Phantom of Truth bd4167/Custom_Tile 2ea277.yaml new file mode 100644 index 000000000..6a310e411 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 5 A Phantom of Truth bd4167/Custom_Tile 2ea277.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 2ea277 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.5440922 + posY: 1.60793447 + posZ: -7.50064039 + rotX: 0.08069834 + rotY: 90.0192 + rotZ: 359.982269 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 5 A Phantom of Truth bd4167/Custom_Tile 4a4785.yaml b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 5 A Phantom of Truth bd4167/Custom_Tile 4a4785.yaml new file mode 100644 index 000000000..873cc5886 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 5 A Phantom of Truth bd4167/Custom_Tile 4a4785.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 4a4785 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.1186 + posY: 1.62637913 + posZ: -4.42520046 + rotX: 359.93158 + rotY: 315.000122 + rotZ: 359.955444 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 5 A Phantom of Truth bd4167/Custom_Tile 603ed0.yaml b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 5 A Phantom of Truth bd4167/Custom_Tile 603ed0.yaml new file mode 100644 index 000000000..1aa2a4bcd --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 5 A Phantom of Truth bd4167/Custom_Tile 603ed0.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 603ed0 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.3179874 + posY: 1.61199832 + posZ: 7.517463 + rotX: 0.08143813 + rotY: 90.01301 + rotZ: 359.972015 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 5 A Phantom of Truth bd4167/Custom_Tile 7234af.yaml b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 5 A Phantom of Truth bd4167/Custom_Tile 7234af.yaml new file mode 100644 index 000000000..fc5694c25 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 5 A Phantom of Truth bd4167/Custom_Tile 7234af.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 7234af +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.35107 + posY: 1.62798345 + posZ: -0.08488936 + rotX: 359.918518 + rotY: 269.99353 + rotZ: 0.0158139579 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 5 A Phantom of Truth bd4167/Custom_Tile 8612e0.yaml b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 5 A Phantom of Truth bd4167/Custom_Tile 8612e0.yaml new file mode 100644 index 000000000..f37d42d2f --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 5 A Phantom of Truth bd4167/Custom_Tile 8612e0.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 8612e0 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.6765 + posY: 1.61565208 + posZ: 3.86000013 + rotX: 0.0168763455 + rotY: 179.9967 + rotZ: 0.0799389854 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 5 A Phantom of Truth bd4167/Custom_Tile cc943e.yaml b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 5 A Phantom of Truth bd4167/Custom_Tile cc943e.yaml new file mode 100644 index 000000000..56fd4f37b --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 5 A Phantom of Truth bd4167/Custom_Tile cc943e.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: cc943e +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.9120941 + posY: 1.62120306 + posZ: 7.38677 + rotX: 359.919 + rotY: 269.994 + rotZ: 0.0170052256 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 5 A Phantom of Truth bd4167/Custom_Tile e3c737.yaml b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 5 A Phantom of Truth bd4167/Custom_Tile e3c737.yaml new file mode 100644 index 000000000..c175cf51a --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 5 A Phantom of Truth bd4167/Custom_Tile e3c737.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: e3c737 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.4568 + posY: 1.62925911 + posZ: 3.75440025 + rotX: 359.955444 + rotY: 224.9999 + rotZ: 0.0684034154 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 5 A Phantom of Truth bd4167/Custom_Tile e5b752.yaml b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 5 A Phantom of Truth bd4167/Custom_Tile e5b752.yaml new file mode 100644 index 000000000..50dc76ca3 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 5 A Phantom of Truth bd4167/Custom_Tile e5b752.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: e5b752 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.2241974 + posY: 1.62478268 + posZ: 3.86000013 + rotX: 359.983124 + rotY: 0.00018779216 + rotZ: 359.920074 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 5 A Phantom of Truth bd4167/Custom_Tile f95052.yaml b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 5 A Phantom of Truth bd4167/Custom_Tile f95052.yaml new file mode 100644 index 000000000..2c3296901 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 5 A Phantom of Truth bd4167/Custom_Tile f95052.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: f95052 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.6768 + posY: 1.6133877 + posZ: -3.8319 + rotX: 0.0168762729 + rotY: 179.996811 + rotZ: 0.07993847 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 5 A Phantom of Truth bd4167/Custom_Tile fb0cd1.yaml b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 5 A Phantom of Truth bd4167/Custom_Tile fb0cd1.yaml new file mode 100644 index 000000000..1c12f8a32 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 5 A Phantom of Truth bd4167/Custom_Tile fb0cd1.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: fb0cd1 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.82999945 + rotX: 359.983124 + rotY: 0.0002811933 + rotZ: 359.920044 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 5 A Phantom of Truth bd4167/Custom_Tile A Phantom of Truth b20b8d.ttslua b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 5 A Phantom of Truth bd4167/Custom_Tile A Phantom of Truth b20b8d.ttslua new file mode 100644 index 000000000..e092a5769 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 5 A Phantom of Truth bd4167/Custom_Tile A Phantom of Truth b20b8d.ttslua @@ -0,0 +1,25 @@ +name = 'A Phantom of Truth' + +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 + +function standaloneClick() + Global.call('fillContainer', {object=self, key=name, mode='standalone'}) +end diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 5 A Phantom of Truth bd4167/Custom_Tile A Phantom of Truth b20b8d.yaml b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 5 A Phantom of Truth bd4167/Custom_Tile A Phantom of Truth b20b8d.yaml new file mode 100644 index 000000000..d9f252cfb --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 5 A Phantom of Truth bd4167/Custom_Tile A Phantom of Truth b20b8d.yaml @@ -0,0 +1,42 @@ +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 +GMNotes: '' +GUID: b20b8d +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Tile A Phantom of Truth b20b8d.ttslua' +LuaScriptState: '' +Name: Custom_Tile +Nickname: A Phantom of Truth +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -4.3295 + posY: 1.58311987 + posZ: -14.9940042 + rotX: 359.919739 + rotY: 269.978638 + rotZ: 0.0168679468 + scaleX: 2.2 + scaleY: 1.0 + scaleZ: 2.2 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 5 A Phantom of Truth bd4167/Deck Agenda Deck 72c268.yaml b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 5 A Phantom of Truth bd4167/Deck Agenda Deck 72c268.yaml new file mode 100644 index 000000000..7d691d061 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 5 A Phantom of Truth bd4167/Deck Agenda Deck 72c268.yaml @@ -0,0 +1,172 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 231726 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2317': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378732934/F41E84FCDC0AB52634348C439A6D1A725CEB8115/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378736378/628E179D5305E95AFC25D86526320A24F8B27391/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 3 + GMNotes: '' + GUID: 8bd569 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Third Night + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -52.93248 + posY: 1.63504767 + posZ: 27.7619553 + rotX: 0.0174761228 + rotY: 180.845184 + rotZ: 0.07052514 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231725 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2317': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378732934/F41E84FCDC0AB52634348C439A6D1A725CEB8115/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378736378/628E179D5305E95AFC25D86526320A24F8B27391/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 2 + GMNotes: '' + GUID: 90b52d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Second Night + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -52.8240852 + posY: 1.7801497 + posZ: 27.3637714 + rotX: 0.0473652668 + rotY: 179.935669 + rotZ: 0.0746366 + 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: http://cloud-3.steamusercontent.com/ugc/775107058378732934/F41E84FCDC0AB52634348C439A6D1A725CEB8115/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378736378/628E179D5305E95AFC25D86526320A24F8B27391/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 1 + GMNotes: '' + GUID: 3da436 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The First Night + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.72470069 + posY: 1.82315445 + posZ: 0.373212159 + rotX: 0.0778998 + rotY: 179.999985 + rotZ: 0.08559281 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2317': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378732934/F41E84FCDC0AB52634348C439A6D1A725CEB8115/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378736378/628E179D5305E95AFC25D86526320A24F8B27391/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 231726 +- 231725 +- 231724 +Description: '' +GMNotes: '' +GUID: 72c268 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Agenda Deck +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.72477436 + posY: 1.65664124 + posZ: 0.37335813 + rotX: 0.0168359131 + rotY: 179.999222 + rotZ: 0.08025756 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 5 A Phantom of Truth bd4167/Deck Encounter Deck 794295.yaml b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 5 A Phantom of Truth bd4167/Deck Encounter Deck 794295.yaml new file mode 100644 index 000000000..fdcd3ef0f --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 5 A Phantom of Truth bd4167/Deck Encounter Deck 794295.yaml @@ -0,0 +1,1125 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 232818 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723517659500931/4B5458A518FDAF55C44CD8423EC12304E3266A6C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Pact. Power. + GMNotes: '' + GUID: 48ff80 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Sign of Hastur + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -16.4193249 + posY: 1.56677032 + posZ: -31.2345848 + rotX: 359.921478 + rotY: 269.999939 + rotZ: 0.007362036 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232818 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723517659500931/4B5458A518FDAF55C44CD8423EC12304E3266A6C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Pact. Power. + GMNotes: '' + GUID: a3c0d0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Sign of Hastur + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -16.8502655 + posY: 1.7219522 + posZ: -31.3089123 + rotX: 359.9652 + rotY: 270.0 + rotZ: 0.009213697 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232817 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723517659500931/4B5458A518FDAF55C44CD8423EC12304E3266A6C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Byakhee. + GMNotes: '' + GUID: 5987af + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Preying Byakhee + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -17.1722336 + posY: 1.569242 + posZ: -26.9037 + rotX: 359.9201 + rotY: 269.999878 + rotZ: 0.0169682037 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232817 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723517659500931/4B5458A518FDAF55C44CD8423EC12304E3266A6C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Byakhee. + GMNotes: '' + GUID: 7161b9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Preying Byakhee + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -17.1106777 + posY: 1.73652244 + posZ: -26.5900784 + rotX: 359.9353 + rotY: 270.0 + rotZ: 0.0111068469 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232247 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: '573722' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Frozen in Fear + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -18.63075 + posY: 1.86392987 + posZ: 29.8533134 + rotX: 359.924561 + rotY: 270.009155 + rotZ: 179.970367 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232247 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: f719ae + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Frozen in Fear + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -10.890419 + posY: 1.95210981 + posZ: 42.11201 + rotX: 359.936066 + rotY: 270.000336 + rotZ: 179.794083 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232246 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hex. Terror. + GMNotes: '' + GUID: cf1ccc + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Torturous Chords + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -10.7287369 + posY: 1.92425835 + posZ: 42.0833359 + rotX: 359.936554 + rotY: 270.0015 + rotZ: 180.013855 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232246 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hex. Terror. + GMNotes: '' + GUID: e8845b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Torturous Chords + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -12.5341215 + posY: 1.7453233 + posZ: 37.98386 + rotX: 359.916473 + rotY: 269.998535 + rotZ: 0.00614299066 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232246 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hex. Terror. + GMNotes: '' + GUID: cf1ccc + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Torturous Chords + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -12.5341024 + posY: 1.75921464 + posZ: 37.9838562 + rotX: 359.9205 + rotY: 269.998535 + rotZ: 0.0148495669 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232245 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: '151647' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Deadly Fate + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -11.9223719 + posY: 1.5807929 + posZ: 37.24564 + rotX: 359.920319 + rotY: 269.999878 + rotZ: 0.0156376343 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232245 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: bba9fa + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Deadly Fate + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -12.11165 + posY: 1.7443186 + posZ: 37.3240128 + rotX: 359.925232 + rotY: 269.9989 + rotZ: 0.0106753586 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232245 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: '151647' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Deadly Fate + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -12.1116314 + posY: 1.75823164 + posZ: 37.32401 + rotX: 359.921722 + rotY: 269.9989 + rotZ: 0.0149486512 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232243 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Byakhee. + GMNotes: '' + GUID: 8bb7ff + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Stealthy Byakhee + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -13.2151089 + posY: 1.5825119 + posZ: 37.1510353 + rotX: 359.920868 + rotY: 269.999756 + rotZ: 0.0119971139 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232243 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Byakhee. + GMNotes: '' + GUID: 38cc9a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Stealthy Byakhee + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -12.8213625 + posY: 1.73223686 + posZ: 37.1293068 + rotX: 359.943817 + rotY: 269.999878 + rotZ: -0.004009538 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232216 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Pact. + GMNotes: '' + GUID: 7a6d8c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Twisted to His Will + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -40.06019 + posY: 1.60829687 + posZ: -2.629929 + rotX: 359.920044 + rotY: 270.0098 + rotZ: 0.01704826 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232216 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Pact. + GMNotes: '' + GUID: a6af6b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Twisted to His Will + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -40.14995 + posY: 1.78357077 + posZ: -2.83012843 + rotX: 0.5782123 + rotY: 270.002 + rotZ: 0.0179315973 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232215 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: a0d34f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Spires of Carcosa + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -39.56787 + posY: 1.7705667 + posZ: -2.61933255 + rotX: 359.921173 + rotY: 270.003662 + rotZ: 0.0159180127 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232215 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: a0d34f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Spires of Carcosa + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -40.2772331 + posY: 1.7794143 + posZ: -2.527565 + rotX: 359.919922 + rotY: 270.003967 + rotZ: 0.01670667 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232211 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Pact. + GMNotes: '' + GUID: 60d096 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Hunted by Byakhee + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -42.38965 + posY: 1.614579 + posZ: 7.717301 + rotX: 359.920258 + rotY: 269.999359 + rotZ: 0.01605293 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232211 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Pact. + GMNotes: '' + GUID: 5e7c00 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Hunted by Byakhee + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -42.4008026 + posY: 1.775796 + posZ: 7.818656 + rotX: 359.9184 + rotY: 269.9989 + rotZ: 0.0150963822 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232210 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Byakhee. + GMNotes: '' + GUID: b323c1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Swift Byakhee + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -42.0870323 + posY: 1.79262948 + posZ: 7.32864046 + rotX: 359.920349 + rotY: 269.997162 + rotZ: 0.01657234 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232210 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Byakhee. + GMNotes: '' + GUID: b323c1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Swift Byakhee + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -42.47628 + posY: 1.76898062 + posZ: 7.469135 + rotX: 359.919647 + rotY: 269.997253 + rotZ: 0.0159163754 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232229 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Omen. Pact. + GMNotes: '' + GUID: 70009a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Pale Mask Beckons + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -28.2434616 + posY: 1.5971483 + posZ: 15.4716158 + rotX: 359.920166 + rotY: 270.021973 + rotZ: 0.01652023 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232228 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Pact. + GMNotes: '' + GUID: c023fe + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Marked by the Sign + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -28.2468338 + posY: 1.76336575 + posZ: 15.2574654 + rotX: 359.9197 + rotY: 270.021973 + rotZ: 0.0146484794 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232228 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Pact. + GMNotes: '' + GUID: 8c321d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Marked by the Sign + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -28.2435665 + posY: 1.77552032 + posZ: 15.0727062 + rotX: 359.91925 + rotY: 270.021973 + rotZ: 0.0173290391 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723517659500931/4B5458A518FDAF55C44CD8423EC12304E3266A6C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 232818 +- 232818 +- 232817 +- 232817 +- 232247 +- 232247 +- 232246 +- 232246 +- 232246 +- 232245 +- 232245 +- 232245 +- 232243 +- 232243 +- 232216 +- 232216 +- 232215 +- 232215 +- 232211 +- 232211 +- 232210 +- 232210 +- 232229 +- 232228 +- 232228 +Description: '' +GMNotes: '' +GUID: '794295' +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Encounter Deck +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.92773438 + posY: 1.74506271 + posZ: 5.757153 + rotX: 359.919739 + rotY: 269.999756 + rotZ: 180.016815 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 6 The Pallid Mask eb48ff.ttslua b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 6 The Pallid Mask eb48ff.ttslua new file mode 100644 index 000000000..46067f58e --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 6 The Pallid Mask eb48ff.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.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.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 Return to The Path to Carcosa e9889a/Custom_Model_Bag 6 The Pallid Mask eb48ff.yaml b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 6 The Pallid Mask eb48ff.yaml new file mode 100644 index 000000000..9656fada9 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 6 The Pallid Mask eb48ff.yaml @@ -0,0 +1,79 @@ +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 6 The Pallid Mask eb48ff/Custom_Model_Bag Set-aside 47f95d.yaml' +- !include 'Custom_Model_Bag 6 The Pallid Mask eb48ff/Bag Tomb of Shadows and Blocked + Passage df01f6.yaml' +- !include 'Custom_Model_Bag 6 The Pallid Mask eb48ff/Deck Encounter Deck 77a069.yaml' +- !include 'Custom_Model_Bag 6 The Pallid Mask eb48ff/Deck Act Deck 8d2dcc.yaml' +- !include 'Custom_Model_Bag 6 The Pallid Mask eb48ff/Deck Agenda Deck fed701.yaml' +- !include 'Custom_Model_Bag 6 The Pallid Mask eb48ff/Card Scenario b52eaf.yaml' +- !include 'Custom_Model_Bag 6 The Pallid Mask eb48ff/Card Setup 93a42f.yaml' +- !include 'Custom_Model_Bag 6 The Pallid Mask eb48ff/Custom_Tile The Pallid Mask + bb070d.yaml' +- !include 'Custom_Model_Bag 6 The Pallid Mask eb48ff/Notecard Errata 1 1c4c31.yaml' +- !include 'Custom_Model_Bag 6 The Pallid Mask eb48ff/Deck Catacombs Deck ede114.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/762723517662107819/CD1BD855009533C5077883BA76016E901F77330C/ + MaterialIndex: 3 + MeshURL: https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj + NormalURL: '' + TypeIndex: 6 +Description: '' +GMNotes: '' +GUID: eb48ff +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Model_Bag 6 The Pallid Mask eb48ff.ttslua' +LuaScriptState: '{"ml":{"1c4c31":{"lock":false,"pos":{"x":-11.1541,"y":1.56,"z":-23.9454},"rot":{"x":0.0799,"y":89.9937,"z":359.9831}},"47f95d":{"lock":false,"pos":{"x":1.6967,"y":1.5583,"z":14.2787},"rot":{"x":359.9551,"y":224.998,"z":0.0687}},"77a069":{"lock":false,"pos":{"x":-3.9276,"y":1.777,"z":5.7571},"rot":{"x":359.9197,"y":270,"z":180.0168}},"8d2dcc":{"lock":false,"pos":{"x":-2.6885,"y":1.6535,"z":-5.0485},"rot":{"x":0.0168,"y":180,"z":0.0803}},"93a42f":{"lock":false,"pos":{"x":-0.3967,"y":1.6506,"z":-10.5348},"rot":{"x":359.9197,"y":270.0001,"z":0.0168}},"b52eaf":{"lock":false,"pos":{"x":-3.956,"y":1.6556,"z":-10.4412},"rot":{"x":359.9197,"y":270.0006,"z":0.0168}},"bb070d":{"lock":false,"pos":{"x":-4.3035,"y":1.5832,"z":-14.589},"rot":{"x":359.9197,"y":269.9802,"z":0.0169}},"df01f6":{"lock":false,"pos":{"x":-4.0004,"y":1.4065,"z":15.2206},"rot":{"x":359.9831,"y":-0.0005,"z":359.9196}},"ede114":{"lock":false,"pos":{"x":-17.1202,"y":1.6969,"z":11.4604},"rot":{"x":359.9201,"y":269.9998,"z":0.0169}},"fed701":{"lock":false,"pos":{"x":-2.7248,"y":1.664,"z":0.3733},"rot":{"x":0.0168,"y":180.0001,"z":0.0803}}}}' +MaterialIndex: -1 +MeshIndex: -1 +Name: Custom_Model_Bag +Nickname: '6: The Pallid Mask' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 12.2491016 + posY: 1.46070313 + posZ: -12.6652021 + rotX: 359.9201 + rotY: 270.042542 + rotZ: 0.0168148242 + scaleX: 2.21 + scaleY: 0.46 + scaleZ: 2.42 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 6 The Pallid Mask eb48ff/Bag Tomb of Shadows and Blocked Passage df01f6.yaml b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 6 The Pallid Mask eb48ff/Bag Tomb of Shadows and Blocked Passage df01f6.yaml new file mode 100644 index 000000000..73287a477 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 6 The Pallid Mask eb48ff/Bag Tomb of Shadows and Blocked Passage df01f6.yaml @@ -0,0 +1,37 @@ +Autoraise: true +ColorDiffuse: + b: 0.0 + g: 0.366520882 + r: 0.7058823 +ContainedObjects: +- !include 'Bag Tomb of Shadows and Blocked Passage df01f6/Card Catacombs 8bcab3.yaml' +- !include 'Bag Tomb of Shadows and Blocked Passage df01f6/Card Catacombs 405a46.yaml' +Description: '' +GMNotes: '' +GUID: df01f6 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +MeshIndex: -1 +Name: Bag +Nickname: Tomb of Shadows and Blocked Passage +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -4.0003705 + posY: 1.4065038 + posZ: 15.2206144 + rotX: 359.983124 + rotY: -0.0005098839 + rotZ: 359.919617 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 6 The Pallid Mask eb48ff/Bag Tomb of Shadows and Blocked Passage df01f6/Card Catacombs 405a46.yaml b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 6 The Pallid Mask eb48ff/Bag Tomb of Shadows and Blocked Passage df01f6/Card Catacombs 405a46.yaml new file mode 100644 index 000000000..c074b38c5 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 6 The Pallid Mask eb48ff/Bag Tomb of Shadows and Blocked Passage df01f6/Card Catacombs 405a46.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 231926 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378686851/006B65A59360F63826342C2B1A062C1AD727BD53/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378687267/945F8EF94DC605E0731E37C1BCD3FE65FCB86D02/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 405a46 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Catacombs +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -28.2470112 + posY: 3.62380266 + posZ: 32.0343781 + rotX: 2.43799162 + rotY: 269.951874 + rotZ: 358.40683 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 6 The Pallid Mask eb48ff/Bag Tomb of Shadows and Blocked Passage df01f6/Card Catacombs 8bcab3.yaml b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 6 The Pallid Mask eb48ff/Bag Tomb of Shadows and Blocked Passage df01f6/Card Catacombs 8bcab3.yaml new file mode 100644 index 000000000..6e1b6694b --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 6 The Pallid Mask eb48ff/Bag Tomb of Shadows and Blocked Passage df01f6/Card Catacombs 8bcab3.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 231925 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378686851/006B65A59360F63826342C2B1A062C1AD727BD53/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378687267/945F8EF94DC605E0731E37C1BCD3FE65FCB86D02/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 8bcab3 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Catacombs +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -28.7294884 + posY: 3.60639143 + posZ: 31.1715 + rotX: 1.9970541 + rotY: 270.042236 + rotZ: 1.6211772 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 6 The Pallid Mask eb48ff/Card Scenario b52eaf.yaml b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 6 The Pallid Mask eb48ff/Card Scenario b52eaf.yaml new file mode 100644 index 000000000..5d5347a47 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 6 The Pallid Mask eb48ff/Card Scenario b52eaf.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 231915 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378686851/006B65A59360F63826342C2B1A062C1AD727BD53/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378687267/945F8EF94DC605E0731E37C1BCD3FE65FCB86D02/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: The Pallid Mask +GMNotes: '' +GUID: b52eaf +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Scenario +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.956 + posY: 1.65564811 + posZ: -10.4412012 + rotX: 359.919739 + rotY: 270.0006 + rotZ: 0.01684026 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 6 The Pallid Mask eb48ff/Card Setup 93a42f.yaml b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 6 The Pallid Mask eb48ff/Card Setup 93a42f.yaml new file mode 100644 index 000000000..adb8995f6 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 6 The Pallid Mask eb48ff/Card Setup 93a42f.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 232926 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2329': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/762723517659499792/63775A11C2A49441C268121108C8EBFCF512E2A9/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723517659500387/BFF1AFFD515364F0BFD336A6CE9970BE1DD04B13/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Return to The Pallid Mask +GMNotes: '' +GUID: 93a42f +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Setup +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -0.396656245 + posY: 1.65063512 + posZ: -10.5347929 + rotX: 359.919739 + rotY: 270.000061 + rotZ: 0.01684186 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 6 The Pallid Mask eb48ff/Custom_Model_Bag Set-aside 47f95d.yaml b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 6 The Pallid Mask eb48ff/Custom_Model_Bag Set-aside 47f95d.yaml new file mode 100644 index 000000000..381821841 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 6 The Pallid Mask eb48ff/Custom_Model_Bag Set-aside 47f95d.yaml @@ -0,0 +1,97 @@ +Autoraise: true +ColorDiffuse: + b: 0.02148666 + g: 0.00100758043 + r: 0.02148666 +ContainedObjects: +- Autoraise: true + CardID: 232055 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378685352/22FD056BAF1966FE2D1AC46FC1BF90C1A03A1404/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378686413/C1688C1A909FDC7357EB3EEFADAB1FBD5818BD3E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Just Skin and Bones + GMNotes: '' + GUID: 5f2034 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ishimaru Haruko + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -26.83504 + posY: 3.65269661 + posZ: 23.9388142 + rotX: 359.936737 + rotY: 270.0001 + rotZ: 0.0134890685 + 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: '' +GMNotes: '' +GUID: 47f95d +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +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.69669664 + posY: 1.5583179 + posZ: 14.2787066 + rotX: 359.9551 + rotY: 224.997955 + rotZ: 0.0686775148 + scaleX: 2.0 + scaleY: 2.0 + scaleZ: 2.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 6 The Pallid Mask eb48ff/Custom_Tile The Pallid Mask bb070d.ttslua b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 6 The Pallid Mask eb48ff/Custom_Tile The Pallid Mask bb070d.ttslua new file mode 100644 index 000000000..9607689ac --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 6 The Pallid Mask eb48ff/Custom_Tile The Pallid Mask bb070d.ttslua @@ -0,0 +1,25 @@ +name = 'The Pallid Mask' + +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 + +function standaloneClick() + Global.call('fillContainer', {object=self, key=name, mode='standalone'}) +end diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 6 The Pallid Mask eb48ff/Custom_Tile The Pallid Mask bb070d.yaml b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 6 The Pallid Mask eb48ff/Custom_Tile The Pallid Mask bb070d.yaml new file mode 100644 index 000000000..29a3c40e7 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 6 The Pallid Mask eb48ff/Custom_Tile The Pallid Mask bb070d.yaml @@ -0,0 +1,42 @@ +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 +GMNotes: '' +GUID: bb070d +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Tile The Pallid Mask bb070d.ttslua' +LuaScriptState: '' +Name: Custom_Tile +Nickname: The Pallid Mask +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -4.30350065 + posY: 1.5832026 + posZ: -14.589 + rotX: 359.919739 + rotY: 269.980164 + rotZ: 0.0168655924 + scaleX: 2.2 + scaleY: 1.0 + scaleZ: 2.2 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 6 The Pallid Mask eb48ff/Deck Act Deck 8d2dcc.yaml b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 6 The Pallid Mask eb48ff/Deck Act Deck 8d2dcc.yaml new file mode 100644 index 000000000..e904f7db6 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 6 The Pallid Mask eb48ff/Deck Act Deck 8d2dcc.yaml @@ -0,0 +1,215 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 231736 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2317': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378732934/F41E84FCDC0AB52634348C439A6D1A725CEB8115/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378736378/628E179D5305E95AFC25D86526320A24F8B27391/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 3 + GMNotes: '' + GUID: 3da436 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Leading the Way + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.68850183 + posY: 1.81190407 + posZ: -5.048531 + rotX: 0.0150022041 + rotY: 180.0 + rotZ: 180.0744 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231735 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2317': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378732934/F41E84FCDC0AB52634348C439A6D1A725CEB8115/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378736378/628E179D5305E95AFC25D86526320A24F8B27391/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 3 + GMNotes: '' + GUID: 571edb + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Way Out + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.68835521 + posY: 1.82432723 + posZ: -5.04859447 + rotX: 0.03508582 + rotY: 180.000656 + rotZ: 180.171112 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231734 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2317': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378732934/F41E84FCDC0AB52634348C439A6D1A725CEB8115/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378736378/628E179D5305E95AFC25D86526320A24F8B27391/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 2 + GMNotes: '' + GUID: 850fd2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Path is Barred + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -47.7022438 + posY: 1.78678882 + posZ: 14.0187254 + rotX: 359.921051 + rotY: 270.001831 + rotZ: 0.0143777952 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231733 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2317': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378732934/F41E84FCDC0AB52634348C439A6D1A725CEB8115/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378736378/628E179D5305E95AFC25D86526320A24F8B27391/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 1 + GMNotes: '' + GUID: 78351c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Through the Catacombs + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -29.2305489 + posY: 1.75466788 + posZ: 39.26993 + rotX: 0.0181267411 + rotY: 179.994919 + rotZ: 0.061301142 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2317': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378732934/F41E84FCDC0AB52634348C439A6D1A725CEB8115/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378736378/628E179D5305E95AFC25D86526320A24F8B27391/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 231736 +- 231735 +- 231734 +- 231733 +Description: '' +GMNotes: '' +GUID: 8d2dcc +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Act Deck +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.688485 + posY: 1.65349448 + posZ: -5.048539 + rotX: 0.016835127 + rotY: 180.000046 + rotZ: 0.08025773 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 6 The Pallid Mask eb48ff/Deck Agenda Deck fed701.yaml b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 6 The Pallid Mask eb48ff/Deck Agenda Deck fed701.yaml new file mode 100644 index 000000000..6a18bee7f --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 6 The Pallid Mask eb48ff/Deck Agenda Deck fed701.yaml @@ -0,0 +1,136 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 231732 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2317': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378732934/F41E84FCDC0AB52634348C439A6D1A725CEB8115/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378736378/628E179D5305E95AFC25D86526320A24F8B27391/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 2 + GMNotes: '' + GUID: 0437b7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Empire of the Undead + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -56.2522125 + posY: 1.638733 + posZ: 24.4151363 + rotX: 0.01758345 + rotY: 180.0001 + rotZ: 0.07377631 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232531 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2325': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378732934/F41E84FCDC0AB52634348C439A6D1A725CEB8115/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378736378/628E179D5305E95AFC25D86526320A24F8B27391/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 1 + GMNotes: '' + GUID: 64d9ff + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Empire of the Dead + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -56.12177 + posY: 1.783801 + posZ: 24.46747 + rotX: 0.0048886463 + rotY: 179.999466 + rotZ: 0.07867141 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2317': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378732934/F41E84FCDC0AB52634348C439A6D1A725CEB8115/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378736378/628E179D5305E95AFC25D86526320A24F8B27391/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + '2325': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378732934/F41E84FCDC0AB52634348C439A6D1A725CEB8115/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378736378/628E179D5305E95AFC25D86526320A24F8B27391/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 231732 +- 232531 +Description: '' +GMNotes: '' +GUID: fed701 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Agenda Deck +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.7248 + posY: 1.6639775 + posZ: 0.3733004 + rotX: 0.01683469 + rotY: 180.000122 + rotZ: 0.08025802 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 6 The Pallid Mask eb48ff/Deck Catacombs Deck ede114.yaml b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 6 The Pallid Mask eb48ff/Deck Catacombs Deck ede114.yaml new file mode 100644 index 000000000..66e168b25 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 6 The Pallid Mask eb48ff/Deck Catacombs Deck ede114.yaml @@ -0,0 +1,738 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 232930 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2329': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/762723517659499792/63775A11C2A49441C268121108C8EBFCF512E2A9/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723517659500387/BFF1AFFD515364F0BFD336A6CE9970BE1DD04B13/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: c14c8b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Catacombs + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -26.9598961 + posY: 1.57863724 + posZ: -41.5058937 + rotX: 359.920074 + rotY: 270.0009 + rotZ: 0.016155282 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232929 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2329': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/762723517659499792/63775A11C2A49441C268121108C8EBFCF512E2A9/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723517659500387/BFF1AFFD515364F0BFD336A6CE9970BE1DD04B13/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: ea2a55 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Catacombs + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -26.7422161 + posY: 1.723695 + posZ: -41.09683 + rotX: 359.9087 + rotY: 269.985474 + rotZ: 359.9792 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232928 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2329': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/762723517659499792/63775A11C2A49441C268121108C8EBFCF512E2A9/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723517659500387/BFF1AFFD515364F0BFD336A6CE9970BE1DD04B13/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 81920c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Catacombs + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -26.8604469 + posY: 1.74133587 + posZ: -41.6015434 + rotX: 359.9218 + rotY: 269.994568 + rotZ: 0.0144572547 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232927 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2329': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/762723517659499792/63775A11C2A49441C268121108C8EBFCF512E2A9/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723517659500387/BFF1AFFD515364F0BFD336A6CE9970BE1DD04B13/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 14b1cb + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Catacombs + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -26.94931 + posY: 1.72774661 + posZ: -41.60537 + rotX: 359.917053 + rotY: 269.994659 + rotZ: 0.0152659127 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231924 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378686851/006B65A59360F63826342C2B1A062C1AD727BD53/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378687267/945F8EF94DC605E0731E37C1BCD3FE65FCB86D02/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: f1237c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Catacombs + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 11.0293474 + posY: 1.76226366 + posZ: 63.857502 + rotX: 359.936768 + rotY: 269.995453 + rotZ: 0.0161490813 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231923 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378686851/006B65A59360F63826342C2B1A062C1AD727BD53/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378687267/945F8EF94DC605E0731E37C1BCD3FE65FCB86D02/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: c3151e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Catacombs + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 10.6958141 + posY: 1.78758347 + posZ: 62.7899 + rotX: 359.921661 + rotY: 270.012268 + rotZ: 0.0213665068 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231922 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378686851/006B65A59360F63826342C2B1A062C1AD727BD53/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378687267/945F8EF94DC605E0731E37C1BCD3FE65FCB86D02/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 30c7a6 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Catacombs + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 10.44015 + posY: 1.79798508 + posZ: 63.9999542 + rotX: 359.920929 + rotY: 270.000122 + rotZ: 0.0157662053 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231922 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378686851/006B65A59360F63826342C2B1A062C1AD727BD53/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378687267/945F8EF94DC605E0731E37C1BCD3FE65FCB86D02/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 5efda5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Catacombs + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 10.5757217 + posY: 1.79163516 + posZ: 63.6631622 + rotX: 359.935669 + rotY: 269.944855 + rotZ: 0.0440920219 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231921 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378686851/006B65A59360F63826342C2B1A062C1AD727BD53/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378687267/945F8EF94DC605E0731E37C1BCD3FE65FCB86D02/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 0e3d00 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Catacombs + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 10.5668249 + posY: 1.81684554 + posZ: 62.8901443 + rotX: 359.9202 + rotY: 270.006317 + rotZ: 0.0229011271 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231921 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378686851/006B65A59360F63826342C2B1A062C1AD727BD53/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378687267/945F8EF94DC605E0731E37C1BCD3FE65FCB86D02/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 66b81f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Catacombs + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 10.43266 + posY: 1.82691252 + posZ: 63.670414 + rotX: 359.920227 + rotY: 269.9984 + rotZ: 0.01663173 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231920 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378686851/006B65A59360F63826342C2B1A062C1AD727BD53/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378687267/945F8EF94DC605E0731E37C1BCD3FE65FCB86D02/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 29170f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Catacombs + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 10.5162258 + posY: 1.83632493 + posZ: 63.1583023 + rotX: 359.920135 + rotY: 270.020752 + rotZ: 0.01646304 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231919 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378686851/006B65A59360F63826342C2B1A062C1AD727BD53/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378687267/945F8EF94DC605E0731E37C1BCD3FE65FCB86D02/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: b08255 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Catacombs + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 10.808157 + posY: 1.84557986 + posZ: 63.0735664 + rotX: 359.920258 + rotY: 270.013763 + rotZ: 0.0194874946 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231918 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378686851/006B65A59360F63826342C2B1A062C1AD727BD53/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378687267/945F8EF94DC605E0731E37C1BCD3FE65FCB86D02/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 3fb3fc + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Catacombs + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 10.5719376 + posY: 1.85575271 + posZ: 63.7792778 + rotX: 359.919861 + rotY: 270.023376 + rotZ: 0.0175360031 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231917 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378686851/006B65A59360F63826342C2B1A062C1AD727BD53/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378687267/945F8EF94DC605E0731E37C1BCD3FE65FCB86D02/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 7c7f4a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Catacombs + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 10.8657742 + posY: 1.87644315 + posZ: 63.6845551 + rotX: 359.952057 + rotY: 269.998749 + rotZ: 359.3564 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231917 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378686851/006B65A59360F63826342C2B1A062C1AD727BD53/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378687267/945F8EF94DC605E0731E37C1BCD3FE65FCB86D02/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 80cf41 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Catacombs + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 10.6051016 + posY: 2.082475 + posZ: 63.4215965 + rotX: 359.9359 + rotY: 269.996 + rotZ: 349.0041 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231916 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378686851/006B65A59360F63826342C2B1A062C1AD727BD53/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378687267/945F8EF94DC605E0731E37C1BCD3FE65FCB86D02/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: f5ce90 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Catacombs + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -17.1197853 + posY: 1.869971 + posZ: 11.4603834 + rotX: 359.7174 + rotY: 269.996826 + rotZ: 359.697266 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378686851/006B65A59360F63826342C2B1A062C1AD727BD53/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378687267/945F8EF94DC605E0731E37C1BCD3FE65FCB86D02/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + '2329': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/762723517659499792/63775A11C2A49441C268121108C8EBFCF512E2A9/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723517659500387/BFF1AFFD515364F0BFD336A6CE9970BE1DD04B13/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 232930 +- 232929 +- 232928 +- 232927 +- 231924 +- 231923 +- 231922 +- 231922 +- 231921 +- 231921 +- 231920 +- 231919 +- 231918 +- 231917 +- 231917 +- 231916 +Description: '' +GMNotes: '' +GUID: ede114 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Catacombs Deck +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -17.1202374 + posY: 1.69686532 + posZ: 11.4603615 + rotX: 359.9201 + rotY: 269.999817 + rotZ: 0.016878821 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 6 The Pallid Mask eb48ff/Deck Encounter Deck 77a069.yaml b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 6 The Pallid Mask eb48ff/Deck Encounter Deck 77a069.yaml new file mode 100644 index 000000000..b4199540a --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 6 The Pallid Mask eb48ff/Deck Encounter Deck 77a069.yaml @@ -0,0 +1,1397 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 232809 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723517659500931/4B5458A518FDAF55C44CD8423EC12304E3266A6C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. + GMNotes: '' + GUID: 5987af + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Malformed Skeleton + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -18.172287 + posY: 1.89908028 + posZ: -44.39213 + rotX: 359.9301 + rotY: 270.102173 + rotZ: 179.918747 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232253 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: bce5af + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Pit Below + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -26.6651039 + posY: 1.92338645 + posZ: 28.81555 + rotX: 359.942078 + rotY: 270.0069 + rotZ: 180.014771 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232253 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: 7485f9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Pit Below + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -48.25734 + posY: 1.77486193 + posZ: 15.3361855 + rotX: 359.923584 + rotY: 270.000549 + rotZ: 0.0109576834 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232253 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: c4f060 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Pit Below + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -48.85194 + posY: 1.793224 + posZ: 15.9210033 + rotX: 359.920746 + rotY: 270.0011 + rotZ: 0.006754283 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232252 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: '836888' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Shadow Behind You + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -49.24664 + posY: 1.7801038 + posZ: 15.6132717 + rotX: 359.919769 + rotY: 270.000824 + rotZ: 0.0140478471 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232252 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: 18dba0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Shadow Behind You + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -48.2603455 + posY: 1.7765677 + posZ: 15.0191879 + rotX: 359.9172 + rotY: 270.0005 + rotZ: 0.0170973819 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232252 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: ecffec + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Shadow Behind You + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -48.989624 + posY: 1.78041208 + posZ: 15.4959621 + rotX: 359.91922 + rotY: 270.000671 + rotZ: 0.0154045662 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232251 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: e6dd53 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Eyes in the Walls + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -48.771656 + posY: 1.8193301 + posZ: 15.4524479 + rotX: 359.9791 + rotY: 269.9861 + rotZ: 3.27984023 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232251 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: 69d084 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Eyes in the Walls + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -48.11059 + posY: 1.88440979 + posZ: 14.9442043 + rotX: 359.9208 + rotY: 270.006836 + rotZ: 355.686371 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232251 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: 6feaea + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Eyes in the Walls + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -48.6217155 + posY: 1.74860907 + posZ: 15.1442318 + rotX: 359.919739 + rotY: 270.0005 + rotZ: 0.0157718826 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232250 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. + GMNotes: '' + GUID: 9f4458 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Corpse Dweller + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -48.4790535 + posY: 1.75817943 + posZ: 15.6686058 + rotX: 359.920441 + rotY: 270.0004 + rotZ: 0.0141908955 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232250 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. + GMNotes: '' + GUID: be97e0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Corpse Dweller + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -48.54849 + posY: 1.76772237 + posZ: 14.9710321 + rotX: 359.922 + rotY: 269.999878 + rotZ: 0.0164778139 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232250 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. + GMNotes: '' + GUID: 0c3204 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Corpse Dweller + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -48.52884 + posY: 1.77721107 + posZ: 14.4849377 + rotX: 359.919922 + rotY: 269.999817 + rotZ: 0.0140857678 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232249 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Lunatic. + GMNotes: '' + GUID: b8c2bf + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Catacombs Docent + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -48.4759254 + posY: 1.78672206 + posZ: 14.6517134 + rotX: 359.9166 + rotY: 269.9999 + rotZ: 0.02004741 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232249 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Lunatic. + GMNotes: '' + GUID: ec9c97 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Catacombs Docent + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -48.623394 + posY: 1.797036 + posZ: 15.7104177 + rotX: 359.919556 + rotY: 270.000336 + rotZ: 0.01419024 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232249 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Lunatic. + GMNotes: '' + GUID: f99335 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Catacombs Docent + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -49.0414429 + posY: 1.80698717 + posZ: 14.6634 + rotX: 359.920532 + rotY: 269.999725 + rotZ: 0.0152241988 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 266815 + 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 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: ab3719 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Grasping Hands + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 12.0789223 + posY: 1.538257 + posZ: 6.558776 + rotX: 359.9207 + rotY: 270.0 + rotZ: 0.0130352853 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 266815 + 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 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: 272ea4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Grasping Hands + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 11.5948715 + posY: 1.6933527 + posZ: 6.733804 + rotX: 359.940033 + rotY: 270.0 + rotZ: 359.9941 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 266815 + 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 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: ab3719 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Grasping Hands + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 11.6057749 + posY: 1.707567 + posZ: 6.731648 + rotX: 359.9248 + rotY: 270.000153 + rotZ: 0.0111529948 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 266814 + 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 + UniqueBack: false + Description: Humanoid. Monster. Ghoul. + GMNotes: '' + GUID: 99efa0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ravenous Ghoul + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 11.9229918 + posY: 1.70898592 + posZ: 13.9219513 + rotX: 359.952728 + rotY: 269.999939 + rotZ: 179.966141 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 266813 + 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 + UniqueBack: false + Description: Humanoid. Monster. Ghoul. + GMNotes: '' + GUID: b87089 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ghoul Minion + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 12.0413847 + posY: 1.540466 + posZ: 13.7902546 + rotX: 359.920441 + rotY: 270.000244 + rotZ: 0.0148255695 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 266813 + 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 + UniqueBack: false + Description: Humanoid. Monster. Ghoul. + GMNotes: '' + GUID: 30bb55 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ghoul Minion + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 11.6936331 + posY: 1.696078 + posZ: 13.6986961 + rotX: 359.923462 + rotY: 270.000183 + rotZ: 0.006271487 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 266813 + 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 + UniqueBack: false + Description: Humanoid. Monster. Ghoul. + GMNotes: '' + GUID: b87089 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ghoul Minion + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 11.6935387 + posY: 1.70997131 + posZ: 13.6987247 + rotX: 359.923828 + rotY: 270.0 + rotZ: 0.0162566788 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232218 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Curse. Geist. + GMNotes: '' + GUID: 2d32e4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Spirit's Torment + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -31.05811 + posY: 1.5943135 + posZ: -7.30223 + rotX: 359.920715 + rotY: 269.999756 + rotZ: 0.013130011 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232218 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Curse. Geist. + GMNotes: '' + GUID: 9349fd + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Spirit's Torment + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -31.1989822 + posY: 1.74595857 + posZ: -7.23980331 + rotX: 359.950958 + rotY: 269.999573 + rotZ: -0.00464719161 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232217 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Geist. + GMNotes: '' + GUID: 1ae587 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Poltergeist + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -30.9912872 + posY: 1.5951972 + posZ: -3.82445621 + rotX: 359.9241 + rotY: 269.9814 + rotZ: 0.0137564549 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232217 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Geist. + GMNotes: '' + GUID: 459f5a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Poltergeist + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -30.9757233 + posY: 1.74052989 + posZ: -3.8652792 + rotX: 359.957245 + rotY: 269.972046 + rotZ: 0.00526940031 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 266921 + 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 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: 50e716 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 266921 + 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 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: c4ce76 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 266920 + 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 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: ab3719 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 266920 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2669': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: 16d6d6 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Crypt Chill + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -26.75599 + posY: 1.9206053 + posZ: 29.01444 + rotX: 359.936584 + rotY: 270.0 + rotZ: 0.0127795413 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723517659500931/4B5458A518FDAF55C44CD8423EC12304E3266A6C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '2668': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '2669': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 232809 +- 232253 +- 232253 +- 232253 +- 232252 +- 232252 +- 232252 +- 232251 +- 232251 +- 232251 +- 232250 +- 232250 +- 232250 +- 232249 +- 232249 +- 232249 +- 266815 +- 266815 +- 266815 +- 266814 +- 266813 +- 266813 +- 266813 +- 232218 +- 232218 +- 232217 +- 232217 +- 266921 +- 266921 +- 266920 +- 266920 +Description: '' +GMNotes: '' +GUID: 77a069 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Encounter Deck +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.92762566 + posY: 1.77703917 + posZ: 5.7571373 + rotX: 359.919739 + rotY: 270.000031 + rotZ: 180.016815 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 6 The Pallid Mask eb48ff/Notecard Errata 1 1c4c31.yaml b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 6 The Pallid Mask eb48ff/Notecard Errata 1 1c4c31.yaml new file mode 100644 index 000000000..7c0a1187d --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 6 The Pallid Mask eb48ff/Notecard Errata 1 1c4c31.yaml @@ -0,0 +1,110 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +Description: "Candlelit Tunnels (252)\r\nThis location\u2019s ability should read:\ + \ \u201C\u2026If you succeed, look at the revealed\r side of any Catacombs location\ + \ in play.\u201D\r" +GMNotes: '' +GUID: 1c4c31 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Notecard +Nickname: Errata 1 +Snap: true +States: + '2': + Autoraise: true + ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 + Description: "Catacombs Docent (258)\r\nThis enemy\u2019s ability should read:\ + \ \u201C\u2026If you succeed, look at the revealed side\r of any Catacombs location\ + \ in play.\u201D" + GMNotes: '' + GUID: 2009a2 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Notecard + Nickname: Errata 2 + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -18.0916538 + posY: 1.33408654 + posZ: 71.01729 + rotX: 359.9792 + rotY: 89.993454 + rotZ: 359.983246 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' + '3': + Autoraise: true + ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 + Description: 'If you do not start at The Gate To Hell, its possible you could + remove it from the game if its randomly shuffled with the other Catacomb locations + and removed during the "Return" setup. This would make Act 3a un-completable. + To avoid this, ensure you remove The Gate to Hell location first before shuffling + and removing cards, then shuffling it back into the Catacombs deck and continuing + setup. + + ' + GMNotes: '' + GUID: cf3f4b + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Notecard + Nickname: Possible game-breaking bug + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -18.0916538 + posY: 1.33408654 + posZ: 71.01729 + rotX: 359.9792 + rotY: 89.993454 + rotZ: 359.983246 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +Sticky: true +Tooltip: true +Transform: + posX: -11.1540909 + posY: 1.56000817 + posZ: -23.94541 + rotX: 0.07987656 + rotY: 89.99371 + rotZ: 359.983124 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 7 Black Stars Rise dd8b0d.ttslua b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 7 Black Stars Rise dd8b0d.ttslua new file mode 100644 index 000000000..46067f58e --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 7 Black Stars Rise dd8b0d.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.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.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 Return to The Path to Carcosa e9889a/Custom_Model_Bag 7 Black Stars Rise dd8b0d.yaml b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 7 Black Stars Rise dd8b0d.yaml new file mode 100644 index 000000000..fc8d32525 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 7 Black Stars Rise dd8b0d.yaml @@ -0,0 +1,95 @@ +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 7 Black Stars Rise dd8b0d/Card Outer Wall 014bd6.yaml' +- !include 'Custom_Model_Bag 7 Black Stars Rise dd8b0d/Custom_Tile 04d6e6.yaml' +- !include 'Custom_Model_Bag 7 Black Stars Rise dd8b0d/Card Abbey Church 106f19.yaml' +- !include 'Custom_Model_Bag 7 Black Stars Rise dd8b0d/Card Scenario 1163a0.yaml' +- !include 'Custom_Model_Bag 7 Black Stars Rise dd8b0d/Custom_Tile Black Stars Rise + 20c21d.yaml' +- !include 'Custom_Model_Bag 7 Black Stars Rise dd8b0d/Card Grand Rue 20de8b.yaml' +- !include 'Custom_Model_Bag 7 Black Stars Rise dd8b0d/Card Broken Steps 38d12d.yaml' +- !include 'Custom_Model_Bag 7 Black Stars Rise dd8b0d/Bag New Chaos Token 425d3a.yaml' +- !include 'Custom_Model_Bag 7 Black Stars Rise dd8b0d/Custom_Tile 5b38c6.yaml' +- !include 'Custom_Model_Bag 7 Black Stars Rise dd8b0d/Bag CloisterKnight''s Hall + Randomizer 5bd383.yaml' +- !include 'Custom_Model_Bag 7 Black Stars Rise dd8b0d/Custom_Tile 5bebe6.yaml' +- !include 'Custom_Model_Bag 7 Black Stars Rise dd8b0d/Card North Tower 69eae5.yaml' +- !include 'Custom_Model_Bag 7 Black Stars Rise dd8b0d/Custom_Tile 73720d.yaml' +- !include 'Custom_Model_Bag 7 Black Stars Rise dd8b0d/Bag Setup Randomizer 7c8232.yaml' +- !include 'Custom_Model_Bag 7 Black Stars Rise dd8b0d/Custom_Tile 8d134d.yaml' +- !include 'Custom_Model_Bag 7 Black Stars Rise dd8b0d/Card Setup 93a42f.yaml' +- !include 'Custom_Model_Bag 7 Black Stars Rise dd8b0d/Custom_Tile 93d8de.yaml' +- !include "Custom_Model_Bag 7 Black Stars Rise dd8b0d/Card Ch\u0153ur Gothique b52eaf.yaml" +- !include 'Custom_Model_Bag 7 Black Stars Rise dd8b0d/Card North Tower c0362a.yaml' +- !include 'Custom_Model_Bag 7 Black Stars Rise dd8b0d/Card Broken Steps c2651e.yaml' +- !include 'Custom_Model_Bag 7 Black Stars Rise dd8b0d/Deck Encounter Deck c380e4.yaml' +- !include "Custom_Model_Bag 7 Black Stars Rise dd8b0d/Card Porte de l'Avanc\xE9e\ + \ c647a3.yaml" +- !include "Custom_Model_Bag 7 Black Stars Rise dd8b0d/Card Ch\u0153ur Gothique c7ee02.yaml" +- !include 'Custom_Model_Bag 7 Black Stars Rise dd8b0d/Custom_Tile d4528c.yaml' +- !include 'Custom_Model_Bag 7 Black Stars Rise dd8b0d/Card Outer Wall db972a.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/762723517662108012/4E4E422FB4E7BBB75C2814E813D3FC3912B5A47C/ + MaterialIndex: 3 + MeshURL: https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj + NormalURL: '' + TypeIndex: 6 +Description: '' +GMNotes: '' +GUID: dd8b0d +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Model_Bag 7 Black Stars Rise dd8b0d.ttslua' +LuaScriptState: '{"ml":{"014bd6":{"lock":false,"pos":{"x":-25.1036,"y":1.7321,"z":-15.3068},"rot":{"x":359.9212,"y":270.0045,"z":0.0164}},"04d6e6":{"lock":false,"pos":{"x":-23.6765,"y":1.6157,"z":3.86},"rot":{"x":0.0169,"y":179.9999,"z":0.0799}},"106f19":{"lock":false,"pos":{"x":-23.6766,"y":1.6885,"z":7.57},"rot":{"x":359.9201,"y":269.9999,"z":0.0169}},"1163a0":{"lock":false,"pos":{"x":-3.956,"y":1.6556,"z":-10.4412},"rot":{"x":359.9197,"y":269.9999,"z":0.0168}},"20c21d":{"lock":false,"pos":{"x":-3.6194,"y":1.582,"z":-15.7683},"rot":{"x":359.9209,"y":269.9998,"z":0.0193}},"20de8b":{"lock":false,"pos":{"x":-30.2243,"y":1.6931,"z":-7.7},"rot":{"x":359.9201,"y":269.9999,"z":0.0169}},"38d12d":{"lock":false,"pos":{"x":-23.6762,"y":1.6862,"z":-0.0302},"rot":{"x":359.9201,"y":270.0016,"z":0.0166}},"425d3a":{"lock":false,"pos":{"x":-5.9079,"y":1.4895,"z":-15.8996},"rot":{"x":359.9821,"y":0.0112,"z":5.6744}},"5b38c6":{"lock":false,"pos":{"x":-23.6766,"y":1.6122,"z":-7.7},"rot":{"x":359.9551,"y":225.2476,"z":0.0682}},"5bd383":{"lock":false,"pos":{"x":0.8537,"y":1.3938,"z":-4.7761},"rot":{"x":359.9832,"y":0,"z":359.9197}},"5bebe6":{"lock":false,"pos":{"x":-23.6765,"y":1.6134,"z":-3.83},"rot":{"x":0.0169,"y":179.9998,"z":0.0799}},"69eae5":{"lock":false,"pos":{"x":-18.5802,"y":1.7604,"z":-7.6925},"rot":{"x":358.7954,"y":269.9853,"z":0.0269}},"73720d":{"lock":false,"pos":{"x":-26.9588,"y":1.6168,"z":-7.6633},"rot":{"x":359.9201,"y":270.0027,"z":0.0169}},"7c8232":{"lock":false,"pos":{"x":1.0476,"y":1.3951,"z":0.5264},"rot":{"x":359.9196,"y":269.9843,"z":0.0169}},"8d134d":{"lock":false,"pos":{"x":-33.6312,"y":1.6262,"z":-7.6001},"rot":{"x":0.0799,"y":90,"z":359.9831}},"93a42f":{"lock":false,"pos":{"x":-0.3529,"y":1.6506,"z":-10.4336},"rot":{"x":359.9197,"y":269.999,"z":0.0168}},"93d8de":{"lock":false,"pos":{"x":-23.6765,"y":1.6111,"z":-11.51},"rot":{"x":0.0169,"y":179.9999,"z":0.0799}},"b52eaf":{"lock":false,"pos":{"x":-2.8742,"y":1.6617,"z":15.2703},"rot":{"x":359.9198,"y":269.9969,"z":0.0165}},"c0362a":{"lock":false,"pos":{"x":-17.1168,"y":1.6879,"z":-7.6998},"rot":{"x":359.4389,"y":269.994,"z":0.0168}},"c2651e":{"lock":false,"pos":{"x":-25.09,"y":1.7365,"z":-0.014},"rot":{"x":359.9211,"y":270.0295,"z":0.0163}},"c380e4":{"lock":false,"pos":{"x":-3.9277,"y":1.7717,"z":5.7572},"rot":{"x":359.9197,"y":269.9998,"z":180.0168}},"c647a3":{"lock":false,"pos":{"x":-36.7733,"y":1.7022,"z":-7.7},"rot":{"x":359.9201,"y":269.9999,"z":0.0169}},"c7ee02":{"lock":false,"pos":{"x":-4.3056,"y":1.712,"z":15.2833},"rot":{"x":0.0516,"y":270.0387,"z":359.8142}},"d4528c":{"lock":false,"pos":{"x":-20.4212,"y":1.6077,"z":-7.6621},"rot":{"x":359.9198,"y":270.0008,"z":0.0158}},"db972a":{"lock":false,"pos":{"x":-23.6765,"y":1.6817,"z":-15.2798},"rot":{"x":359.9201,"y":270.0013,"z":0.0165}}}}' +MaterialIndex: -1 +MeshIndex: -1 +Name: Custom_Model_Bag +Nickname: '7: Black Stars Rise' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 12.250802 + posY: 1.45815635 + posZ: -21.3056011 + rotX: 359.9201 + rotY: 270.053619 + rotZ: 0.0167988315 + scaleX: 2.21 + scaleY: 0.46 + scaleZ: 2.42 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Bag CloisterKnight's Hall Randomizer 5bd383.yaml b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Bag CloisterKnight's Hall Randomizer 5bd383.yaml new file mode 100644 index 000000000..e5435f67d --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Bag CloisterKnight's Hall Randomizer 5bd383.yaml @@ -0,0 +1,39 @@ +Autoraise: true +ColorDiffuse: + b: 0.5792406 + g: 0.6313726 + r: 0.04705876 +ContainedObjects: +- !include 'Bag CloisterKnight''s Hall Randomizer 5bd383/Deck CloisterKnight''s Hall + b2a2df.yaml' +- !include 'Bag CloisterKnight''s Hall Randomizer 5bd383/Deck CloisterKnight''s Hall + 34a83e.yaml' +Description: Shuffle the bag, draw one of the two piles. +GMNotes: '' +GUID: 5bd383 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +MeshIndex: -1 +Name: Bag +Nickname: Cloister/Knight's Hall Randomizer +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 0.8537014 + posY: 1.39382887 + posZ: -4.776099 + rotX: 359.983154 + rotY: 3.7126294e-05 + rotZ: 359.919678 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Bag CloisterKnight's Hall Randomizer 5bd383/Deck CloisterKnight's Hall 34a83e.yaml b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Bag CloisterKnight's Hall Randomizer 5bd383/Deck CloisterKnight's Hall 34a83e.yaml new file mode 100644 index 000000000..0478c8c06 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Bag CloisterKnight's Hall Randomizer 5bd383/Deck CloisterKnight's Hall 34a83e.yaml @@ -0,0 +1,129 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 231940 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378686851/006B65A59360F63826342C2B1A062C1AD727BD53/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378687267/945F8EF94DC605E0731E37C1BCD3FE65FCB86D02/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 0a231c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Knight's Hall + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -13.4294071 + posY: 1.5582782 + posZ: -46.24851 + rotX: 359.920654 + rotY: 269.999176 + rotZ: 0.0141418884 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231939 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378686851/006B65A59360F63826342C2B1A062C1AD727BD53/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378687267/945F8EF94DC605E0731E37C1BCD3FE65FCB86D02/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: b52eaf + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Cloister + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -13.1629534 + posY: 1.70403361 + posZ: -46.11415 + rotX: 359.959137 + rotY: 269.998322 + rotZ: 0.06420732 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378686851/006B65A59360F63826342C2B1A062C1AD727BD53/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378687267/945F8EF94DC605E0731E37C1BCD3FE65FCB86D02/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 231940 +- 231939 +Description: '' +GMNotes: '' +GUID: 34a83e +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Cloister/Knight's Hall +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -11.8660212 + posY: 3.63864636 + posZ: -34.27587 + rotX: 0.170135945 + rotY: 270.000519 + rotZ: 0.606432438 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Bag CloisterKnight's Hall Randomizer 5bd383/Deck CloisterKnight's Hall b2a2df.yaml b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Bag CloisterKnight's Hall Randomizer 5bd383/Deck CloisterKnight's Hall b2a2df.yaml new file mode 100644 index 000000000..5533763fd --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Bag CloisterKnight's Hall Randomizer 5bd383/Deck CloisterKnight's Hall b2a2df.yaml @@ -0,0 +1,129 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 232933 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2329': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/762723517659499792/63775A11C2A49441C268121108C8EBFCF512E2A9/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723517659500387/BFF1AFFD515364F0BFD336A6CE9970BE1DD04B13/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 81f025 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Knight's Hall + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -17.8937016 + posY: 1.56393933 + posZ: -48.14558 + rotX: 359.920441 + rotY: 270.000824 + rotZ: 0.013102741 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232932 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2329': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/762723517659499792/63775A11C2A49441C268121108C8EBFCF512E2A9/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723517659500387/BFF1AFFD515364F0BFD336A6CE9970BE1DD04B13/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: e9be74 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Cloister + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -17.597887 + posY: 1.70895171 + posZ: -48.1942558 + rotX: 359.926971 + rotY: 270.001434 + rotZ: 0.00295541622 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2329': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/762723517659499792/63775A11C2A49441C268121108C8EBFCF512E2A9/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723517659500387/BFF1AFFD515364F0BFD336A6CE9970BE1DD04B13/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 232933 +- 232932 +Description: '' +GMNotes: '' +GUID: b2a2df +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Cloister/Knight's Hall +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -10.8682013 + posY: 3.65196228 + posZ: -33.1649323 + rotX: 359.7956 + rotY: 270.0011 + rotZ: 359.841431 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Bag New Chaos Token 425d3a.yaml b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Bag New Chaos Token 425d3a.yaml new file mode 100644 index 000000000..31510d5e2 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Bag New Chaos Token 425d3a.yaml @@ -0,0 +1,39 @@ +Autoraise: true +ColorDiffuse: + b: 0.07843689 + g: 0.07843689 + r: 0.3021676 +ContainedObjects: +- !include 'Bag New Chaos Token 425d3a/Custom_Tile 81a1d7.yaml' +- !include 'Bag New Chaos Token 425d3a/Custom_Tile 2460df.yaml' +- !include 'Bag New Chaos Token 425d3a/Custom_Tile 1df0a5.yaml' +- !include 'Bag New Chaos Token 425d3a/Custom_Tile a7a9cb.yaml' +Description: Black Stars Rise +GMNotes: '' +GUID: 425d3a +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +MeshIndex: -1 +Name: Bag +Nickname: New Chaos Token +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -5.90789366 + posY: 1.489501 + posZ: -15.8996115 + rotX: 359.9821 + rotY: 0.0113191539 + rotZ: 5.67677069 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Bag New Chaos Token 425d3a/Custom_Tile 1df0a5.yaml b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Bag New Chaos Token 425d3a/Custom_Tile 1df0a5.yaml new file mode 100644 index 000000000..317c3dc56 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Bag New Chaos Token 425d3a/Custom_Tile 1df0a5.yaml @@ -0,0 +1,42 @@ +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: '' +GMNotes: '' +GUID: 1df0a5 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Tile +Nickname: '' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 30.839592 + posY: 3.403213 + posZ: -14.5263281 + rotX: 359.9201 + rotY: 270.021667 + rotZ: 0.0168507081 + scaleX: 0.81 + scaleY: 1.0 + scaleZ: 0.81 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Bag New Chaos Token 425d3a/Custom_Tile 2460df.yaml b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Bag New Chaos Token 425d3a/Custom_Tile 2460df.yaml new file mode 100644 index 000000000..99ff089cd --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Bag New Chaos Token 425d3a/Custom_Tile 2460df.yaml @@ -0,0 +1,42 @@ +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: '' +GMNotes: '' +GUID: 2460df +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Tile +Nickname: '' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 30.5323277 + posY: 3.40431118 + posZ: -12.2516136 + rotX: 359.920135 + rotY: 269.985352 + rotZ: 0.0169038028 + scaleX: 0.81 + scaleY: 1.0 + scaleZ: 0.81 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Bag New Chaos Token 425d3a/Custom_Tile 81a1d7.yaml b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Bag New Chaos Token 425d3a/Custom_Tile 81a1d7.yaml new file mode 100644 index 000000000..8a97c7b12 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Bag New Chaos Token 425d3a/Custom_Tile 81a1d7.yaml @@ -0,0 +1,42 @@ +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/4WRD42n.png + WidthScale: 0.0 +Description: '' +GMNotes: '' +GUID: 81a1d7 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Tile +Nickname: '' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 33.16232 + posY: 3.40100765 + posZ: -11.0178375 + rotX: 359.920135 + rotY: 270.0178 + rotZ: 0.0168543924 + scaleX: 0.81 + scaleY: 1.0 + scaleZ: 0.81 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Bag New Chaos Token 425d3a/Custom_Tile a7a9cb.yaml b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Bag New Chaos Token 425d3a/Custom_Tile a7a9cb.yaml new file mode 100644 index 000000000..51e389e8c --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Bag New Chaos Token 425d3a/Custom_Tile a7a9cb.yaml @@ -0,0 +1,42 @@ +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: '' +GMNotes: '' +GUID: a7a9cb +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Tile +Nickname: '' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 32.76118 + posY: 3.48943424 + posZ: -13.8503752 + rotX: 0.050603386 + rotY: 270.0141 + rotZ: 356.085236 + scaleX: 0.81 + scaleY: 1.0 + scaleZ: 0.81 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Bag Setup Randomizer 7c8232.yaml b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Bag Setup Randomizer 7c8232.yaml new file mode 100644 index 000000000..b54455c25 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Bag Setup Randomizer 7c8232.yaml @@ -0,0 +1,38 @@ +Autoraise: true +ColorDiffuse: + b: 0.0509800762 + g: 0.6313726 + r: 0.169647127 +ContainedObjects: +- !include 'Bag Setup Randomizer 7c8232/Bag Setup Bag b29b71.yaml' +- !include 'Bag Setup Randomizer 7c8232/Bag Setup Bag d14543.yaml' +Description: Shuffle the bag, draw one of the two bags, and auto-place. Discard the + other chest. DO NOT FLIP AGENDA CARDS UNLESS INSTRUCTED. +GMNotes: '' +GUID: 7c8232 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +MeshIndex: -1 +Name: Bag +Nickname: Setup Randomizer +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 1.04760087 + posY: 1.39511442 + posZ: 0.5263993 + rotX: 359.919647 + rotY: 269.9836 + rotZ: 0.0168975759 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Bag Setup Randomizer 7c8232/Bag Setup Bag b29b71.ttslua b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Bag Setup Randomizer 7c8232/Bag Setup Bag b29b71.ttslua new file mode 100644 index 000000000..4d4017455 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Bag Setup Randomizer 7c8232/Bag Setup Bag b29b71.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 Return to The Path to Carcosa e9889a/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Bag Setup Randomizer 7c8232/Bag Setup Bag b29b71.yaml b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Bag Setup Randomizer 7c8232/Bag Setup Bag b29b71.yaml new file mode 100644 index 000000000..a94d66b20 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Bag Setup Randomizer 7c8232/Bag Setup Bag b29b71.yaml @@ -0,0 +1,38 @@ +Autoraise: true +ColorDiffuse: + b: 0.0 + g: 0.0 + r: 0.0 +ContainedObjects: +- !include 'Bag Setup Bag b29b71/Deck Agenda Deck ''a'' 59cd0a.yaml' +- !include 'Bag Setup Bag b29b71/Custom_Model_Bag Set-aside bb455a.yaml' +- !include 'Bag Setup Bag b29b71/Deck Agenda Deck ''c'' c01144.yaml' +Description: '' +GMNotes: '' +GUID: b29b71 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Bag Setup Bag b29b71.ttslua' +LuaScriptState: '{"ml":{"59cd0a":{"lock":false,"pos":{"x":-2.7247,"y":1.6566,"z":0.3733},"rot":{"x":0.0168,"y":179.9996,"z":0.0803}},"bb455a":{"lock":false,"pos":{"x":1.6962,"y":1.5583,"z":14.2786},"rot":{"x":359.9551,"y":225.0057,"z":0.0687}},"c01144":{"lock":false,"pos":{"x":-2.6885,"y":1.655,"z":-5.0485},"rot":{"x":0.0168,"y":179.9971,"z":0.0803}}}}' +MaterialIndex: -1 +MeshIndex: -1 +Name: Bag +Nickname: Setup Bag +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 1.147644 + posY: 3.44380713 + posZ: 0.9565011 + rotX: 0.468153059 + rotY: 90.00176 + rotZ: 2.20737624 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Bag Setup Randomizer 7c8232/Bag Setup Bag b29b71/Custom_Model_Bag Set-aside bb455a.yaml b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Bag Setup Randomizer 7c8232/Bag Setup Bag b29b71/Custom_Model_Bag Set-aside bb455a.yaml new file mode 100644 index 000000000..dc23fa724 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Bag Setup Randomizer 7c8232/Bag Setup Bag b29b71/Custom_Model_Bag Set-aside bb455a.yaml @@ -0,0 +1,63 @@ +Autoraise: true +ColorDiffuse: + b: 0.02148666 + g: 0.00100758043 + r: 0.02148666 +ContainedObjects: +- !include 'Custom_Model_Bag Set-aside bb455a/Card Ashleigh Clarke 27b476.yaml' +- !include 'Custom_Model_Bag Set-aside bb455a/Card Chapel of St. Aubert e75ba8.yaml' +- !include 'Custom_Model_Bag Set-aside bb455a/Card Abbey Tower b52eaf.yaml' +- !include 'Custom_Model_Bag Set-aside bb455a/Deck Rift Seeker 8a6fbf.yaml' +- !include 'Custom_Model_Bag Set-aside bb455a/Deck Tidal Terror ee8a4c.yaml' +- !include 'Custom_Model_Bag Set-aside bb455a/Card Beast of Aldebaran 83c7c3.yaml' +- !include 'Custom_Model_Bag Set-aside bb455a/Card Open The Path Above 8df522.yaml' +- !include 'Custom_Model_Bag Set-aside bb455a/Card Open The Path Below 975cbd.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: Black Stars Rise +GMNotes: '' +GUID: bb455a +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +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.69620132 + posY: 1.5583179 + posZ: 14.2786064 + rotX: 359.955139 + rotY: 225.005783 + rotZ: 0.06866474 + scaleX: 2.0 + scaleY: 2.0 + scaleZ: 2.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Bag Setup Randomizer 7c8232/Bag Setup Bag b29b71/Custom_Model_Bag Set-aside bb455a/Card Abbey Tower b52eaf.yaml b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Bag Setup Randomizer 7c8232/Bag Setup Bag b29b71/Custom_Model_Bag Set-aside bb455a/Card Abbey Tower b52eaf.yaml new file mode 100644 index 000000000..1a5d13bcd --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Bag Setup Randomizer 7c8232/Bag Setup Bag b29b71/Custom_Model_Bag Set-aside bb455a/Card Abbey Tower b52eaf.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 231944 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378686851/006B65A59360F63826342C2B1A062C1AD727BD53/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378687267/945F8EF94DC605E0731E37C1BCD3FE65FCB86D02/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: b52eaf +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Abbey Tower +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -37.7420578 + posY: 2.7760334 + posZ: 6.55100727 + rotX: 359.920135 + rotY: 269.996338 + rotZ: 0.0168615989 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Bag Setup Randomizer 7c8232/Bag Setup Bag b29b71/Custom_Model_Bag Set-aside bb455a/Card Ashleigh Clarke 27b476.yaml b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Bag Setup Randomizer 7c8232/Bag Setup Bag b29b71/Custom_Model_Bag Set-aside bb455a/Card Ashleigh Clarke 27b476.yaml new file mode 100644 index 000000000..fbc3ada53 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Bag Setup Randomizer 7c8232/Bag Setup Bag b29b71/Custom_Model_Bag Set-aside bb455a/Card Ashleigh Clarke 27b476.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 232057 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378685352/22FD056BAF1966FE2D1AC46FC1BF90C1A03A1404/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378686413/C1688C1A909FDC7357EB3EEFADAB1FBD5818BD3E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Songs Die Unheard +GMNotes: '' +GUID: 27b476 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Ashleigh Clarke +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -28.8715858 + posY: 2.60826683 + posZ: 7.79729748 + rotX: 359.920135 + rotY: 270.0062 + rotZ: 0.0168674588 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Bag Setup Randomizer 7c8232/Bag Setup Bag b29b71/Custom_Model_Bag Set-aside bb455a/Card Beast of Aldebaran 83c7c3.yaml b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Bag Setup Randomizer 7c8232/Bag Setup Bag b29b71/Custom_Model_Bag Set-aside bb455a/Card Beast of Aldebaran 83c7c3.yaml new file mode 100644 index 000000000..28fd00fb3 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Bag Setup Randomizer 7c8232/Bag Setup Bag b29b71/Custom_Model_Bag Set-aside bb455a/Card Beast of Aldebaran 83c7c3.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 232212 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: Monster. Elite. +GMNotes: '' +GUID: 83c7c3 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Beast of Aldebaran +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -41.08759 + posY: 3.6914804 + posZ: 42.7638969 + rotX: 359.932617 + rotY: 270.000275 + rotZ: 0.014240928 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Bag Setup Randomizer 7c8232/Bag Setup Bag b29b71/Custom_Model_Bag Set-aside bb455a/Card Chapel of St. Aubert e75ba8.yaml b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Bag Setup Randomizer 7c8232/Bag Setup Bag b29b71/Custom_Model_Bag Set-aside bb455a/Card Chapel of St. Aubert e75ba8.yaml new file mode 100644 index 000000000..cad78b3bb --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Bag Setup Randomizer 7c8232/Bag Setup Bag b29b71/Custom_Model_Bag Set-aside bb455a/Card Chapel of St. Aubert e75ba8.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 231941 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378686851/006B65A59360F63826342C2B1A062C1AD727BD53/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378687267/945F8EF94DC605E0731E37C1BCD3FE65FCB86D02/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: e75ba8 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Chapel of St. Aubert +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -43.458416 + posY: 2.62946081 + posZ: 15.33103 + rotX: 359.920135 + rotY: 270.001465 + rotZ: 0.0168730244 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Bag Setup Randomizer 7c8232/Bag Setup Bag b29b71/Custom_Model_Bag Set-aside bb455a/Card Open The Path Above 8df522.yaml b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Bag Setup Randomizer 7c8232/Bag Setup Bag b29b71/Custom_Model_Bag Set-aside bb455a/Card Open The Path Above 8df522.yaml new file mode 100644 index 000000000..8014d2505 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Bag Setup Randomizer 7c8232/Bag Setup Bag b29b71/Custom_Model_Bag Set-aside bb455a/Card Open The Path Above 8df522.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 231746 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2317': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378732934/F41E84FCDC0AB52634348C439A6D1A725CEB8115/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378736378/628E179D5305E95AFC25D86526320A24F8B27391/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Act 3c +GMNotes: '' +GUID: 8df522 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Open The Path Above +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -41.8936 + posY: 3.67922831 + posZ: 41.9221535 + rotX: 0.0202098917 + rotY: 180.002319 + rotZ: 0.09243081 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Bag Setup Randomizer 7c8232/Bag Setup Bag b29b71/Custom_Model_Bag Set-aside bb455a/Card Open The Path Below 975cbd.yaml b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Bag Setup Randomizer 7c8232/Bag Setup Bag b29b71/Custom_Model_Bag Set-aside bb455a/Card Open The Path Below 975cbd.yaml new file mode 100644 index 000000000..3b7e4b49a --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Bag Setup Randomizer 7c8232/Bag Setup Bag b29b71/Custom_Model_Bag Set-aside bb455a/Card Open The Path Below 975cbd.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 231745 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2317': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378732934/F41E84FCDC0AB52634348C439A6D1A725CEB8115/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378736378/628E179D5305E95AFC25D86526320A24F8B27391/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Act 3a +GMNotes: '' +GUID: 975cbd +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Open The Path Below +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -42.2071762 + posY: 3.67962313 + posZ: 42.04427 + rotX: 0.0140484674 + rotY: 179.995468 + rotZ: 0.0861102641 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Bag Setup Randomizer 7c8232/Bag Setup Bag b29b71/Custom_Model_Bag Set-aside bb455a/Deck Rift Seeker 8a6fbf.yaml b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Bag Setup Randomizer 7c8232/Bag Setup Bag b29b71/Custom_Model_Bag Set-aside bb455a/Deck Rift Seeker 8a6fbf.yaml new file mode 100644 index 000000000..534d39064 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Bag Setup Randomizer 7c8232/Bag Setup Bag b29b71/Custom_Model_Bag Set-aside bb455a/Deck Rift Seeker 8a6fbf.yaml @@ -0,0 +1,129 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 232255 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Byakhee. Cultist. + GMNotes: '' + GUID: bce5af + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Rift Seeker + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -46.7024 + posY: 1.62950861 + posZ: 38.0417137 + rotX: 359.92038 + rotY: 269.990875 + rotZ: 0.0152692748 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232255 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Byakhee. Cultist. + GMNotes: '' + GUID: 2e6d15 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Rift Seeker + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -47.0491676 + posY: 1.78549123 + posZ: 37.973793 + rotX: 359.9229 + rotY: 269.9911 + rotZ: 0.008166183 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 232255 +- 232255 +Description: '' +GMNotes: '' +GUID: 8a6fbf +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Rift Seeker +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -44.938343 + posY: 2.80085921 + posZ: -0.134649679 + rotX: 359.920135 + rotY: 269.991 + rotZ: 0.0168905631 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Bag Setup Randomizer 7c8232/Bag Setup Bag b29b71/Custom_Model_Bag Set-aside bb455a/Deck Tidal Terror ee8a4c.yaml b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Bag Setup Randomizer 7c8232/Bag Setup Bag b29b71/Custom_Model_Bag Set-aside bb455a/Deck Tidal Terror ee8a4c.yaml new file mode 100644 index 000000000..3a7639873 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Bag Setup Randomizer 7c8232/Bag Setup Bag b29b71/Custom_Model_Bag Set-aside bb455a/Deck Tidal Terror ee8a4c.yaml @@ -0,0 +1,129 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 232254 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. + GMNotes: '' + GUID: bce5af + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Tidal Terror + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -46.57753 + posY: 1.62922227 + posZ: 37.6414337 + rotX: 359.920319 + rotY: 269.9862 + rotZ: 0.01562833 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232254 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. + GMNotes: '' + GUID: '617504' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Tidal Terror + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -46.40976 + posY: 1.78506875 + posZ: 37.83598 + rotX: 359.9558 + rotY: 269.9981 + rotZ: 0.00534029258 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 232254 +- 232254 +Description: '' +GMNotes: '' +GUID: ee8a4c +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Tidal Terror +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -38.1936836 + posY: 2.6280756 + posZ: 6.172742 + rotX: 359.920135 + rotY: 269.9864 + rotZ: 0.0168951042 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Bag Setup Randomizer 7c8232/Bag Setup Bag b29b71/Deck Agenda Deck 'a' 59cd0a.yaml b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Bag Setup Randomizer 7c8232/Bag Setup Bag b29b71/Deck Agenda Deck 'a' 59cd0a.yaml new file mode 100644 index 000000000..d0677dfb4 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Bag Setup Randomizer 7c8232/Bag Setup Bag b29b71/Deck Agenda Deck 'a' 59cd0a.yaml @@ -0,0 +1,172 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 231740 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2317': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378732934/F41E84FCDC0AB52634348C439A6D1A725CEB8115/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378736378/628E179D5305E95AFC25D86526320A24F8B27391/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 3a + GMNotes: '' + GUID: f9d5b6 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The City Floods + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -37.2869263 + posY: 1.618127 + posZ: 44.020752 + rotX: 0.0171997454 + rotY: 179.999985 + rotZ: 0.0770106539 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231739 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2317': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378732934/F41E84FCDC0AB52634348C439A6D1A725CEB8115/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378736378/628E179D5305E95AFC25D86526320A24F8B27391/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 2a + GMNotes: '' + GUID: 374aae + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Let The Storm Rage + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -37.2554321 + posY: 1.76348293 + posZ: 43.68916 + rotX: 0.0195151046 + rotY: 179.999451 + rotZ: 0.0525940172 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231737 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2317': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378732934/F41E84FCDC0AB52634348C439A6D1A725CEB8115/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378736378/628E179D5305E95AFC25D86526320A24F8B27391/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 1a + GMNotes: '' + GUID: 06b34f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Tide Rises + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -37.3933868 + posY: 1.79661691 + posZ: 43.69701 + rotX: 0.01795653 + rotY: 179.999771 + rotZ: 0.0786588043 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2317': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378732934/F41E84FCDC0AB52634348C439A6D1A725CEB8115/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378736378/628E179D5305E95AFC25D86526320A24F8B27391/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 231740 +- 231739 +- 231737 +Description: '' +GMNotes: '' +GUID: 59cd0a +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Agenda Deck 'a' +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.7247 + posY: 1.65664113 + posZ: 0.373300463 + rotX: 0.0168356076 + rotY: 179.999649 + rotZ: 0.08025737 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Bag Setup Randomizer 7c8232/Bag Setup Bag b29b71/Deck Agenda Deck 'c' c01144.yaml b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Bag Setup Randomizer 7c8232/Bag Setup Bag b29b71/Deck Agenda Deck 'c' c01144.yaml new file mode 100644 index 000000000..cb95f36d7 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Bag Setup Randomizer 7c8232/Bag Setup Bag b29b71/Deck Agenda Deck 'c' c01144.yaml @@ -0,0 +1,172 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 231744 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2317': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378732934/F41E84FCDC0AB52634348C439A6D1A725CEB8115/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378736378/628E179D5305E95AFC25D86526320A24F8B27391/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 3c + GMNotes: '' + GUID: 76a442 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Swallowed Sky + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -37.7221527 + posY: 1.61715519 + posZ: 38.7808266 + rotX: 0.017452959 + rotY: 179.997147 + rotZ: 0.07527307 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231742 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2317': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378732934/F41E84FCDC0AB52634348C439A6D1A725CEB8115/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378736378/628E179D5305E95AFC25D86526320A24F8B27391/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 2c + GMNotes: '' + GUID: 60178d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Entity Above + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -37.42563 + posY: 1.76232934 + posZ: 39.0847855 + rotX: 0.020126259 + rotY: 179.9992 + rotZ: 0.06266748 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231741 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2317': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378732934/F41E84FCDC0AB52634348C439A6D1A725CEB8115/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378736378/628E179D5305E95AFC25D86526320A24F8B27391/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 1c + GMNotes: '' + GUID: c25af7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Ritual Begins + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -37.854744 + posY: 1.79568648 + posZ: 38.33475 + rotX: 0.0166016426 + rotY: 179.999161 + rotZ: 0.07943133 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2317': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378732934/F41E84FCDC0AB52634348C439A6D1A725CEB8115/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378736378/628E179D5305E95AFC25D86526320A24F8B27391/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 231744 +- 231742 +- 231741 +Description: '' +GMNotes: '' +GUID: c01144 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Agenda Deck 'c' +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.6885 + posY: 1.65499723 + posZ: -5.0485 + rotX: 0.01683913 + rotY: 179.997116 + rotZ: 0.08025696 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Bag Setup Randomizer 7c8232/Bag Setup Bag d14543.ttslua b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Bag Setup Randomizer 7c8232/Bag Setup Bag d14543.ttslua new file mode 100644 index 000000000..4d4017455 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Bag Setup Randomizer 7c8232/Bag Setup Bag d14543.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 Return to The Path to Carcosa e9889a/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Bag Setup Randomizer 7c8232/Bag Setup Bag d14543.yaml b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Bag Setup Randomizer 7c8232/Bag Setup Bag d14543.yaml new file mode 100644 index 000000000..dc9d76423 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Bag Setup Randomizer 7c8232/Bag Setup Bag d14543.yaml @@ -0,0 +1,38 @@ +Autoraise: true +ColorDiffuse: + b: 0.0 + g: 0.0 + r: 0.0 +ContainedObjects: +- !include 'Bag Setup Bag d14543/Deck Agenda Deck ''a'' 29532d.yaml' +- !include 'Bag Setup Bag d14543/Custom_Model_Bag Set-aside 62a4f3.yaml' +- !include 'Bag Setup Bag d14543/Deck Agenda Deck ''c'' f812d6.yaml' +Description: '' +GMNotes: '' +GUID: d14543 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Bag Setup Bag d14543.ttslua' +LuaScriptState: '{"ml":{"29532d":{"lock":false,"pos":{"x":-2.7247,"y":1.6566,"z":0.3733},"rot":{"x":0.0168,"y":180.0005,"z":0.0803}},"62a4f3":{"lock":false,"pos":{"x":1.6963,"y":1.5583,"z":14.2784},"rot":{"x":359.9551,"y":224.998,"z":0.0687}},"f812d6":{"lock":false,"pos":{"x":-2.6885,"y":1.655,"z":-5.0485},"rot":{"x":0.0168,"y":179.9996,"z":0.0803}}}}' +MaterialIndex: -1 +MeshIndex: -1 +Name: Bag +Nickname: Setup Bag +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 0.710858762 + posY: 3.45089126 + posZ: 0.525158167 + rotX: 357.9456 + rotY: 90.02782 + rotZ: 359.9423 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Bag Setup Randomizer 7c8232/Bag Setup Bag d14543/Custom_Model_Bag Set-aside 62a4f3.yaml b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Bag Setup Randomizer 7c8232/Bag Setup Bag d14543/Custom_Model_Bag Set-aside 62a4f3.yaml new file mode 100644 index 000000000..124019a79 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Bag Setup Randomizer 7c8232/Bag Setup Bag d14543/Custom_Model_Bag Set-aside 62a4f3.yaml @@ -0,0 +1,63 @@ +Autoraise: true +ColorDiffuse: + b: 0.02148666 + g: 0.00100758043 + r: 0.02148666 +ContainedObjects: +- !include 'Custom_Model_Bag Set-aside 62a4f3/Card Ashleigh Clarke f003bd.yaml' +- !include 'Custom_Model_Bag Set-aside 62a4f3/Card Chapel of St. Aubert 79421c.yaml' +- !include 'Custom_Model_Bag Set-aside 62a4f3/Card Abbey Tower 2f3d21.yaml' +- !include 'Custom_Model_Bag Set-aside 62a4f3/Deck Rift Seeker 050765.yaml' +- !include 'Custom_Model_Bag Set-aside 62a4f3/Deck Tidal Terror 79e245.yaml' +- !include 'Custom_Model_Bag Set-aside 62a4f3/Card Beast of Aldebaran 83c7c3.yaml' +- !include 'Custom_Model_Bag Set-aside 62a4f3/Card Open The Path Above e572ec.yaml' +- !include 'Custom_Model_Bag Set-aside 62a4f3/Card Open The Path Below 3da436.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: Black Stars Rise +GMNotes: '' +GUID: 62a4f3 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +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.69630158 + posY: 1.558316 + posZ: 14.2784052 + rotX: 359.955139 + rotY: 224.997986 + rotZ: 0.06867307 + scaleX: 2.0 + scaleY: 2.0 + scaleZ: 2.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Bag Setup Randomizer 7c8232/Bag Setup Bag d14543/Custom_Model_Bag Set-aside 62a4f3/Card Abbey Tower 2f3d21.yaml b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Bag Setup Randomizer 7c8232/Bag Setup Bag d14543/Custom_Model_Bag Set-aside 62a4f3/Card Abbey Tower 2f3d21.yaml new file mode 100644 index 000000000..fd95d8c8b --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Bag Setup Randomizer 7c8232/Bag Setup Bag d14543/Custom_Model_Bag Set-aside 62a4f3/Card Abbey Tower 2f3d21.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 231943 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378686851/006B65A59360F63826342C2B1A062C1AD727BD53/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378687267/945F8EF94DC605E0731E37C1BCD3FE65FCB86D02/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 2f3d21 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Abbey Tower +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -42.3307724 + posY: 2.625956 + posZ: 6.30763674 + rotX: 359.920135 + rotY: 269.9996 + rotZ: 0.0168621372 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Bag Setup Randomizer 7c8232/Bag Setup Bag d14543/Custom_Model_Bag Set-aside 62a4f3/Card Ashleigh Clarke f003bd.yaml b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Bag Setup Randomizer 7c8232/Bag Setup Bag d14543/Custom_Model_Bag Set-aside 62a4f3/Card Ashleigh Clarke f003bd.yaml new file mode 100644 index 000000000..22fcf8eb5 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Bag Setup Randomizer 7c8232/Bag Setup Bag d14543/Custom_Model_Bag Set-aside 62a4f3/Card Ashleigh Clarke f003bd.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 232057 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378685352/22FD056BAF1966FE2D1AC46FC1BF90C1A03A1404/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378686413/C1688C1A909FDC7357EB3EEFADAB1FBD5818BD3E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Songs Die Unheard +GMNotes: '' +GUID: f003bd +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Ashleigh Clarke +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -31.0557957 + posY: 2.76851726 + posZ: 6.830996 + rotX: 359.9201 + rotY: 270.006226 + rotZ: 0.0168683939 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Bag Setup Randomizer 7c8232/Bag Setup Bag d14543/Custom_Model_Bag Set-aside 62a4f3/Card Beast of Aldebaran 83c7c3.yaml b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Bag Setup Randomizer 7c8232/Bag Setup Bag d14543/Custom_Model_Bag Set-aside 62a4f3/Card Beast of Aldebaran 83c7c3.yaml new file mode 100644 index 000000000..8239050a5 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Bag Setup Randomizer 7c8232/Bag Setup Bag d14543/Custom_Model_Bag Set-aside 62a4f3/Card Beast of Aldebaran 83c7c3.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 232212 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: Monster. Elite. +GMNotes: '' +GUID: 83c7c3 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Beast of Aldebaran +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -43.4053726 + posY: 3.67668629 + posZ: 26.0377789 + rotX: 359.919434 + rotY: 270.000336 + rotZ: 0.01691208 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Bag Setup Randomizer 7c8232/Bag Setup Bag d14543/Custom_Model_Bag Set-aside 62a4f3/Card Chapel of St. Aubert 79421c.yaml b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Bag Setup Randomizer 7c8232/Bag Setup Bag d14543/Custom_Model_Bag Set-aside 62a4f3/Card Chapel of St. Aubert 79421c.yaml new file mode 100644 index 000000000..55d696619 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Bag Setup Randomizer 7c8232/Bag Setup Bag d14543/Custom_Model_Bag Set-aside 62a4f3/Card Chapel of St. Aubert 79421c.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 231942 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378686851/006B65A59360F63826342C2B1A062C1AD727BD53/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378687267/945F8EF94DC605E0731E37C1BCD3FE65FCB86D02/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 79421c +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Chapel of St. Aubert +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -45.7281723 + posY: 2.630664 + posZ: 11.6448479 + rotX: 359.920135 + rotY: 269.999573 + rotZ: 0.01687661 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Bag Setup Randomizer 7c8232/Bag Setup Bag d14543/Custom_Model_Bag Set-aside 62a4f3/Card Open The Path Above e572ec.yaml b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Bag Setup Randomizer 7c8232/Bag Setup Bag d14543/Custom_Model_Bag Set-aside 62a4f3/Card Open The Path Above e572ec.yaml new file mode 100644 index 000000000..fb6737791 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Bag Setup Randomizer 7c8232/Bag Setup Bag d14543/Custom_Model_Bag Set-aside 62a4f3/Card Open The Path Above e572ec.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 231746 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2317': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378732934/F41E84FCDC0AB52634348C439A6D1A725CEB8115/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378736378/628E179D5305E95AFC25D86526320A24F8B27391/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Act 3c +GMNotes: '' +GUID: e572ec +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Open The Path Above +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -43.3147545 + posY: 3.69180274 + posZ: 25.1093674 + rotX: 0.0168995224 + rotY: 179.996872 + rotZ: 0.0800601244 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Bag Setup Randomizer 7c8232/Bag Setup Bag d14543/Custom_Model_Bag Set-aside 62a4f3/Card Open The Path Below 3da436.yaml b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Bag Setup Randomizer 7c8232/Bag Setup Bag d14543/Custom_Model_Bag Set-aside 62a4f3/Card Open The Path Below 3da436.yaml new file mode 100644 index 000000000..5fabd2895 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Bag Setup Randomizer 7c8232/Bag Setup Bag d14543/Custom_Model_Bag Set-aside 62a4f3/Card Open The Path Below 3da436.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 231745 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2317': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378732934/F41E84FCDC0AB52634348C439A6D1A725CEB8115/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378736378/628E179D5305E95AFC25D86526320A24F8B27391/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Act 3a +GMNotes: '' +GUID: 3da436 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Open The Path Below +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -43.80164 + posY: 3.69263 + posZ: 25.9713154 + rotX: 0.0169084538 + rotY: 180.0002 + rotZ: 0.08001749 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Bag Setup Randomizer 7c8232/Bag Setup Bag d14543/Custom_Model_Bag Set-aside 62a4f3/Deck Rift Seeker 050765.yaml b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Bag Setup Randomizer 7c8232/Bag Setup Bag d14543/Custom_Model_Bag Set-aside 62a4f3/Deck Rift Seeker 050765.yaml new file mode 100644 index 000000000..882286734 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Bag Setup Randomizer 7c8232/Bag Setup Bag d14543/Custom_Model_Bag Set-aside 62a4f3/Deck Rift Seeker 050765.yaml @@ -0,0 +1,129 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 232255 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Byakhee. Cultist. + GMNotes: '' + GUID: bce5af + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Rift Seeker + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -48.72014 + posY: 1.62640011 + posZ: 18.477726 + rotX: 359.921173 + rotY: 269.9741 + rotZ: 0.0181691013 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232255 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Byakhee. Cultist. + GMNotes: '' + GUID: 2e6d15 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Rift Seeker + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -48.5824242 + posY: 1.80049467 + posZ: 18.8632278 + rotX: 359.913239 + rotY: 270.0101 + rotZ: 1.52548885 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 232255 +- 232255 +Description: '' +GMNotes: '' +GUID: '050765' +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Rift Seeker +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -39.123024 + posY: 2.626025 + posZ: -3.327134 + rotX: 359.920135 + rotY: 269.97406 + rotZ: 0.0169115327 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Bag Setup Randomizer 7c8232/Bag Setup Bag d14543/Custom_Model_Bag Set-aside 62a4f3/Deck Tidal Terror 79e245.yaml b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Bag Setup Randomizer 7c8232/Bag Setup Bag d14543/Custom_Model_Bag Set-aside 62a4f3/Deck Tidal Terror 79e245.yaml new file mode 100644 index 000000000..e89731005 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Bag Setup Randomizer 7c8232/Bag Setup Bag d14543/Custom_Model_Bag Set-aside 62a4f3/Deck Tidal Terror 79e245.yaml @@ -0,0 +1,129 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 232254 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. + GMNotes: '' + GUID: bce5af + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Tidal Terror + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -48.270546 + posY: 1.62647545 + posZ: 20.67408 + rotX: 359.921265 + rotY: 269.987549 + rotZ: 0.008430139 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232254 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. + GMNotes: '' + GUID: '617504' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Tidal Terror + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -48.63482 + posY: 1.77213728 + posZ: 20.5973949 + rotX: 359.944763 + rotY: 270.000183 + rotZ: 0.0122908484 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 232254 +- 232254 +Description: '' +GMNotes: '' +GUID: 79e245 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Tidal Terror +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -38.8907852 + posY: 2.62723613 + posZ: 4.74787951 + rotX: 359.920135 + rotY: 269.987518 + rotZ: 0.0168920364 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Bag Setup Randomizer 7c8232/Bag Setup Bag d14543/Deck Agenda Deck 'a' 29532d.yaml b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Bag Setup Randomizer 7c8232/Bag Setup Bag d14543/Deck Agenda Deck 'a' 29532d.yaml new file mode 100644 index 000000000..172973a4a --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Bag Setup Randomizer 7c8232/Bag Setup Bag d14543/Deck Agenda Deck 'a' 29532d.yaml @@ -0,0 +1,172 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 231740 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2317': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378732934/F41E84FCDC0AB52634348C439A6D1A725CEB8115/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378736378/628E179D5305E95AFC25D86526320A24F8B27391/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 3a + GMNotes: '' + GUID: 317b57 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The City Floods + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -38.3885 + posY: 1.61532688 + posZ: 29.35475 + rotX: 0.0174146947 + rotY: 180.001465 + rotZ: 0.07364686 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231738 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2317': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378732934/F41E84FCDC0AB52634348C439A6D1A725CEB8115/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378736378/628E179D5305E95AFC25D86526320A24F8B27391/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 2a + GMNotes: '' + GUID: 92b2ed + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Let The Storm Rage + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -38.40302 + posY: 1.7606318 + posZ: 29.1550312 + rotX: 0.00535119465 + rotY: 179.9988 + rotZ: 0.0580718778 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231737 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2317': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378732934/F41E84FCDC0AB52634348C439A6D1A725CEB8115/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378736378/628E179D5305E95AFC25D86526320A24F8B27391/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 1a + GMNotes: '' + GUID: '108932' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Tide Rises + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -38.32237 + posY: 1.79377937 + posZ: 29.5801926 + rotX: 0.0172863621 + rotY: 180.003265 + rotZ: 0.0793241 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2317': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378732934/F41E84FCDC0AB52634348C439A6D1A725CEB8115/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378736378/628E179D5305E95AFC25D86526320A24F8B27391/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 231740 +- 231738 +- 231737 +Description: '' +GMNotes: '' +GUID: 29532d +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Agenda Deck 'a' +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.72469974 + posY: 1.65664113 + posZ: 0.373300374 + rotX: 0.01683444 + rotY: 180.000473 + rotZ: 0.0802579448 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Bag Setup Randomizer 7c8232/Bag Setup Bag d14543/Deck Agenda Deck 'c' f812d6.yaml b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Bag Setup Randomizer 7c8232/Bag Setup Bag d14543/Deck Agenda Deck 'c' f812d6.yaml new file mode 100644 index 000000000..195b19609 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Bag Setup Randomizer 7c8232/Bag Setup Bag d14543/Deck Agenda Deck 'c' f812d6.yaml @@ -0,0 +1,172 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 231744 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2317': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378732934/F41E84FCDC0AB52634348C439A6D1A725CEB8115/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378736378/628E179D5305E95AFC25D86526320A24F8B27391/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 3c + GMNotes: '' + GUID: 9ea66d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Swallowed Sky + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -38.8236275 + posY: 1.6143955 + posZ: 24.1147652 + rotX: 0.01726846 + rotY: 179.998856 + rotZ: 0.07521419 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231743 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2317': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378732934/F41E84FCDC0AB52634348C439A6D1A725CEB8115/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378736378/628E179D5305E95AFC25D86526320A24F8B27391/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 2c + GMNotes: '' + GUID: 8228d2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Entity Above + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -38.7080269 + posY: 1.75972593 + posZ: 24.2387352 + rotX: 0.0238773953 + rotY: 180.001541 + rotZ: 0.0547805019 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231741 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2317': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378732934/F41E84FCDC0AB52634348C439A6D1A725CEB8115/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378736378/628E179D5305E95AFC25D86526320A24F8B27391/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 1c + GMNotes: '' + GUID: 97bb2d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Ritual Begins + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -38.668602 + posY: 1.79270935 + posZ: 24.0473614 + rotX: 0.0176480673 + rotY: 180.001266 + rotZ: 0.07967886 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2317': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378732934/F41E84FCDC0AB52634348C439A6D1A725CEB8115/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378736378/628E179D5305E95AFC25D86526320A24F8B27391/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 231744 +- 231743 +- 231741 +Description: '' +GMNotes: '' +GUID: f812d6 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Agenda Deck 'c' +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.6885 + posY: 1.65499723 + posZ: -5.0485 + rotX: 0.0168357622 + rotY: 179.999573 + rotZ: 0.08025763 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Card Abbey Church 106f19.yaml b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Card Abbey Church 106f19.yaml new file mode 100644 index 000000000..61238e832 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Card Abbey Church 106f19.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 231936 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378686851/006B65A59360F63826342C2B1A062C1AD727BD53/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378687267/945F8EF94DC605E0731E37C1BCD3FE65FCB86D02/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 106f19 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Abbey Church +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -23.6766 + posY: 1.68845832 + posZ: 7.569999 + rotX: 359.9201 + rotY: 269.999817 + rotZ: 0.0168765057 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Card Broken Steps 38d12d.yaml b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Card Broken Steps 38d12d.yaml new file mode 100644 index 000000000..7b69f7ba6 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Card Broken Steps 38d12d.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 231935 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378686851/006B65A59360F63826342C2B1A062C1AD727BD53/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378687267/945F8EF94DC605E0731E37C1BCD3FE65FCB86D02/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 38d12d +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Broken Steps +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -23.6761818 + posY: 1.686215 + posZ: -0.0302234255 + rotX: 359.920135 + rotY: 270.0019 + rotZ: 0.0165525563 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Card Broken Steps c2651e.yaml b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Card Broken Steps c2651e.yaml new file mode 100644 index 000000000..9488a1101 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Card Broken Steps c2651e.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 231934 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378686851/006B65A59360F63826342C2B1A062C1AD727BD53/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378687267/945F8EF94DC605E0731E37C1BCD3FE65FCB86D02/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: c2651e +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Broken Steps +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -25.0902367 + posY: 1.73649013 + posZ: -0.0139887761 + rotX: 359.921173 + rotY: 270.034546 + rotZ: 0.0163289532 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Card Chœur Gothique b52eaf.yaml b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Card Chœur Gothique b52eaf.yaml new file mode 100644 index 000000000..fab230b47 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Card Chœur Gothique b52eaf.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 231938 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378686851/006B65A59360F63826342C2B1A062C1AD727BD53/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378687267/945F8EF94DC605E0731E37C1BCD3FE65FCB86D02/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: b52eaf +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: "Ch\u0153ur Gothique" +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.8741796 + posY: 1.66168308 + posZ: 15.2702723 + rotX: 359.9198 + rotY: 269.9973 + rotZ: 0.0165095255 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Card Chœur Gothique c7ee02.yaml b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Card Chœur Gothique c7ee02.yaml new file mode 100644 index 000000000..cef33b1aa --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Card Chœur Gothique c7ee02.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 231937 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378686851/006B65A59360F63826342C2B1A062C1AD727BD53/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378687267/945F8EF94DC605E0731E37C1BCD3FE65FCB86D02/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: c7ee02 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: "Ch\u0153ur Gothique" +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -4.305907 + posY: 1.71197712 + posZ: 15.28338 + rotX: 0.0519257076 + rotY: 270.043549 + rotZ: 359.8164 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Card Grand Rue 20de8b.yaml b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Card Grand Rue 20de8b.yaml new file mode 100644 index 000000000..0af25ef96 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Card Grand Rue 20de8b.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 231929 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378686851/006B65A59360F63826342C2B1A062C1AD727BD53/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378687267/945F8EF94DC605E0731E37C1BCD3FE65FCB86D02/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 20de8b +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Grand Rue +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -30.2243 + posY: 1.69309235 + posZ: -7.700001 + rotX: 359.9201 + rotY: 269.999939 + rotZ: 0.0168760084 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Card North Tower 69eae5.yaml b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Card North Tower 69eae5.yaml new file mode 100644 index 000000000..b8c6370f1 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Card North Tower 69eae5.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 231932 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378686851/006B65A59360F63826342C2B1A062C1AD727BD53/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378687267/945F8EF94DC605E0731E37C1BCD3FE65FCB86D02/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 69eae5 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: North Tower +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -18.5800247 + posY: 1.76729929 + posZ: -7.692704 + rotX: 359.268616 + rotY: 269.982117 + rotZ: 0.0179483965 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Card North Tower c0362a.yaml b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Card North Tower c0362a.yaml new file mode 100644 index 000000000..10764bfa5 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Card North Tower c0362a.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 231933 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378686851/006B65A59360F63826342C2B1A062C1AD727BD53/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378687267/945F8EF94DC605E0731E37C1BCD3FE65FCB86D02/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: c0362a +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: North Tower +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -17.1165867 + posY: 1.6924572 + posZ: -7.69975471 + rotX: 359.27417 + rotY: 269.9906 + rotZ: 0.0170390066 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Card Outer Wall 014bd6.yaml b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Card Outer Wall 014bd6.yaml new file mode 100644 index 000000000..4d96a17c0 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Card Outer Wall 014bd6.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 231930 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378686851/006B65A59360F63826342C2B1A062C1AD727BD53/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378687267/945F8EF94DC605E0731E37C1BCD3FE65FCB86D02/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 014bd6 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Outer Wall +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -25.103878 + posY: 1.73210061 + posZ: -15.3066759 + rotX: 359.921173 + rotY: 270.007416 + rotZ: 0.0163587276 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Card Outer Wall db972a.yaml b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Card Outer Wall db972a.yaml new file mode 100644 index 000000000..c72362ef8 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Card Outer Wall db972a.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 231931 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378686851/006B65A59360F63826342C2B1A062C1AD727BD53/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378687267/945F8EF94DC605E0731E37C1BCD3FE65FCB86D02/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: db972a +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Outer Wall +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -23.67648 + posY: 1.68172467 + posZ: -15.2798262 + rotX: 359.920135 + rotY: 270.001648 + rotZ: 0.0165282618 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Card Porte de l'Avancée c647a3.yaml b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Card Porte de l'Avancée c647a3.yaml new file mode 100644 index 000000000..1e425d3cb --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Card Porte de l'Avancée c647a3.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 231928 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378686851/006B65A59360F63826342C2B1A062C1AD727BD53/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378687267/945F8EF94DC605E0731E37C1BCD3FE65FCB86D02/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: c647a3 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: "Porte de l'Avanc\xE9e" +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -36.7733 + posY: 1.70222449 + posZ: -7.700001 + rotX: 359.9201 + rotY: 269.999939 + rotZ: 0.0168761723 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Card Scenario 1163a0.yaml b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Card Scenario 1163a0.yaml new file mode 100644 index 000000000..9ff173913 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Card Scenario 1163a0.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 231927 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378686851/006B65A59360F63826342C2B1A062C1AD727BD53/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378687267/945F8EF94DC605E0731E37C1BCD3FE65FCB86D02/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Black Stars Rise +GMNotes: '' +GUID: 1163a0 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Scenario +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.956 + posY: 1.65564823 + posZ: -10.4412012 + rotX: 359.919739 + rotY: 269.999939 + rotZ: 0.0168411639 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Card Setup 93a42f.yaml b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Card Setup 93a42f.yaml new file mode 100644 index 000000000..eac388464 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Card Setup 93a42f.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 232931 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2329': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/762723517659499792/63775A11C2A49441C268121108C8EBFCF512E2A9/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723517659500387/BFF1AFFD515364F0BFD336A6CE9970BE1DD04B13/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Return to Black Stars Rise +GMNotes: '' +GUID: 93a42f +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Setup +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -0.3526091 + posY: 1.65060282 + posZ: -10.4343786 + rotX: 359.919739 + rotY: 269.999939 + rotZ: 0.01684038 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Custom_Tile 04d6e6.yaml b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Custom_Tile 04d6e6.yaml new file mode 100644 index 000000000..cec548e50 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Custom_Tile 04d6e6.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 04d6e6 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.6765 + posY: 1.61565208 + posZ: 3.86000013 + rotX: 0.0168719236 + rotY: 179.999878 + rotZ: 0.0799401253 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Custom_Tile 5b38c6.yaml b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Custom_Tile 5b38c6.yaml new file mode 100644 index 000000000..072637d62 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Custom_Tile 5b38c6.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 5b38c6 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Tile +Nickname: '' +Snap: false +States: + '1': + 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: '' + GMNotes: '' + GUID: 010936 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Custom_Tile + Nickname: '' + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -23.6765461 + posY: 1.6122483 + posZ: -7.70003462 + rotX: 359.9201 + rotY: 270.0275 + rotZ: 0.0168342367 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' + '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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Custom_Tile + Nickname: '' + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -23.6765461 + posY: 1.6122483 + posZ: -7.700035 + rotX: 359.9201 + rotY: 270.027466 + rotZ: 0.01682319 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +Sticky: true +Tooltip: true +Transform: + posX: -23.6766 + posY: 1.61224842 + posZ: -7.70000029 + rotX: 359.955139 + rotY: 225.2476 + rotZ: 0.06823029 + scaleX: 0.8 + scaleY: 1.0 + scaleZ: 0.8 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Custom_Tile 5bebe6.yaml b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Custom_Tile 5bebe6.yaml new file mode 100644 index 000000000..96f6b8cc3 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Custom_Tile 5bebe6.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 5bebe6 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.6765 + posY: 1.6133877 + posZ: -3.83000016 + rotX: 0.0168719832 + rotY: 179.9998 + rotZ: 0.07993981 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Custom_Tile 73720d.yaml b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Custom_Tile 73720d.yaml new file mode 100644 index 000000000..016f6ea1c --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Custom_Tile 73720d.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 73720d +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.9588 + posY: 1.61683607 + posZ: -7.66330051 + rotX: 359.9201 + rotY: 270.0027 + rotZ: 0.0168959033 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Custom_Tile 8d134d.yaml b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Custom_Tile 8d134d.yaml new file mode 100644 index 000000000..c3e453a24 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Custom_Tile 8d134d.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 8d134d +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.6312 + posY: 1.626159 + posZ: -7.600101 + rotX: 0.0798944 + rotY: 90.0 + rotZ: 359.9831 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Custom_Tile 93d8de.yaml b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Custom_Tile 93d8de.yaml new file mode 100644 index 000000000..cfc67986c --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Custom_Tile 93d8de.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 93d8de +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.6765 + posY: 1.61112618 + posZ: -11.5100021 + rotX: 0.0168719534 + rotY: 179.999908 + rotZ: 0.0799396858 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Custom_Tile d4528c.yaml b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Custom_Tile d4528c.yaml new file mode 100644 index 000000000..08229e01a --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Custom_Tile d4528c.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: d4528c +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.4211922 + posY: 1.60772014 + posZ: -7.66213655 + rotX: 359.918762 + rotY: 270.000183 + rotZ: 0.0168095753 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Custom_Tile Black Stars Rise 20c21d.ttslua b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Custom_Tile Black Stars Rise 20c21d.ttslua new file mode 100644 index 000000000..78350373e --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Custom_Tile Black Stars Rise 20c21d.ttslua @@ -0,0 +1,25 @@ +name = 'Black Stars Rise' + +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 + +function standaloneClick() + Global.call('fillContainer', {object=self, key=name, mode='standalone'}) +end diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Custom_Tile Black Stars Rise 20c21d.yaml b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Custom_Tile Black Stars Rise 20c21d.yaml new file mode 100644 index 000000000..78866da2d --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Custom_Tile Black Stars Rise 20c21d.yaml @@ -0,0 +1,42 @@ +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 +GMNotes: '' +GUID: 20c21d +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Tile Black Stars Rise 20c21d.ttslua' +LuaScriptState: '' +Name: Custom_Tile +Nickname: Black Stars Rise +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.61939049 + posY: 1.58200765 + posZ: -15.7683115 + rotX: 359.9208 + rotY: 269.999939 + rotZ: 0.0192164537 + scaleX: 2.2 + scaleY: 1.0 + scaleZ: 2.2 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Deck Encounter Deck c380e4.yaml b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Deck Encounter Deck c380e4.yaml new file mode 100644 index 000000000..207cad408 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Deck Encounter Deck c380e4.yaml @@ -0,0 +1,1433 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 232213 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. + GMNotes: '' + GUID: e9dc22 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Spawn of Hali + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -41.0218 + posY: 1.61205661 + posZ: 5.752819 + rotX: 359.920532 + rotY: 270.00177 + rotZ: 0.013646706 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233622 + 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 + UniqueBack: false + Description: Humanoid. Cultist. + GMNotes: '' + GUID: 50fdc5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Acolyte + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -15.3295956 + posY: 1.62976587 + posZ: 15.9645061 + rotX: 0.0716057643 + rotY: 270.000061 + rotZ: 359.982727 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232228 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Pact. + GMNotes: '' + GUID: c023fe + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Marked by the Sign + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -28.2468338 + posY: 1.76336575 + posZ: 15.2574654 + rotX: 359.9197 + rotY: 270.021973 + rotZ: 0.0146484794 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233623 + 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 + UniqueBack: false + Description: Humanoid. Cultist. + GMNotes: '' + GUID: d36612 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Wizard of the Order + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -15.1335211 + posY: 1.7306242 + posZ: 15.1695614 + rotX: 359.933441 + rotY: 269.998932 + rotZ: 180.028931 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232228 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Pact. + GMNotes: '' + GUID: 8c321d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Marked by the Sign + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -28.2435665 + posY: 1.77552032 + posZ: 15.0727062 + rotX: 359.91925 + rotY: 270.021973 + rotZ: 0.0173290391 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232257 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: bce5af + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Worlds Merge + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -11.9503422 + posY: 1.89901769 + posZ: 16.4559956 + rotX: 359.937775 + rotY: 269.9995 + rotZ: 180.015778 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232216 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Pact. + GMNotes: '' + GUID: 7a6d8c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Twisted to His Will + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -40.06019 + posY: 1.60829687 + posZ: -2.629929 + rotX: 359.920044 + rotY: 270.0098 + rotZ: 0.01704826 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232215 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: a0d34f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Spires of Carcosa + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -39.56787 + posY: 1.7705667 + posZ: -2.61933255 + rotX: 359.921173 + rotY: 270.003662 + rotZ: 0.0159180127 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232215 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: a0d34f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Spires of Carcosa + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -40.2772331 + posY: 1.7794143 + posZ: -2.527565 + rotX: 359.919922 + rotY: 270.003967 + rotZ: 0.01670667 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232216 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Pact. + GMNotes: '' + GUID: a6af6b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Twisted to His Will + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -40.14995 + posY: 1.78357077 + posZ: -2.83012843 + rotX: 0.5782123 + rotY: 270.002 + rotZ: 0.0179315973 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232211 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Pact. + GMNotes: '' + GUID: 5e7c00 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Hunted by Byakhee + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -42.4008026 + posY: 1.775796 + posZ: 7.818656 + rotX: 359.9184 + rotY: 269.9989 + rotZ: 0.0150963822 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232211 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Pact. + GMNotes: '' + GUID: 60d096 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Hunted by Byakhee + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -42.38965 + posY: 1.614579 + posZ: 7.717301 + rotX: 359.920258 + rotY: 269.999359 + rotZ: 0.01605293 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232214 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: 0afc45 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Black Stars Rise + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -39.95644 + posY: 1.771017 + posZ: -2.60974526 + rotX: 359.919952 + rotY: 270.027344 + rotZ: 0.0162861571 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232813 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723517659500931/4B5458A518FDAF55C44CD8423EC12304E3266A6C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Curse. + GMNotes: '' + GUID: 2e68d0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Delusory Evils + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.49616456 + posY: 2.55439043 + posZ: -18.8404522 + rotX: 359.986328 + rotY: 270.0055 + rotZ: 0.00288525224 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233624 + 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 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: b347d1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Mysterious Chanting + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -15.1765862 + posY: 1.7388649 + posZ: 7.12856245 + rotX: 359.9205 + rotY: 270.005066 + rotZ: 0.011837706 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232210 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Byakhee. + GMNotes: '' + GUID: b323c1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Swift Byakhee + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -42.47628 + posY: 1.76898062 + posZ: 7.469135 + rotX: 359.919647 + rotY: 269.997253 + rotZ: 0.0159163754 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232213 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. + GMNotes: '' + GUID: d46d72 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Spawn of Hali + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -40.7112732 + posY: 1.76276219 + posZ: 5.71570444 + rotX: 359.92627 + rotY: 270.001953 + rotZ: 0.00491145067 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233624 + 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 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: d63054 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Mysterious Chanting + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -14.9937792 + posY: 1.57623422 + posZ: 7.191085 + rotX: 359.920227 + rotY: 270.005066 + rotZ: 0.01624975 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232810 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723517659500931/4B5458A518FDAF55C44CD8423EC12304E3266A6C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Power. + GMNotes: '' + GUID: f9c769 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: "Hastur\u2019s Gaze" + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.9257884 + posY: 1.98478651 + posZ: 5.75885725 + rotX: 358.551025 + rotY: 270.018219 + rotZ: 178.7637 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232256 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: bce5af + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Crashing Floods + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -7.26025867 + posY: 1.74993169 + posZ: 36.6064873 + rotX: 359.918884 + rotY: 269.9991 + rotZ: 0.0164478477 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232813 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723517659500931/4B5458A518FDAF55C44CD8423EC12304E3266A6C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Curse. + GMNotes: '' + GUID: bc41a5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Delusory Evils + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.05380082 + posY: 3.43207812 + posZ: -16.9372787 + rotX: 359.9863 + rotY: 270.0055 + rotZ: 0.002888889 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233622 + 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 + UniqueBack: false + Description: Humanoid. Cultist. + GMNotes: '' + GUID: 4911f2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Acolyte + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -15.3297215 + posY: 1.77588809 + posZ: 15.9645157 + rotX: 0.07387834 + rotY: 269.998474 + rotZ: 359.992645 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232256 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: bce5af + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Crashing Floods + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -7.29582834 + posY: 1.57416618 + posZ: 36.66085 + rotX: 359.920349 + rotY: 269.999939 + rotZ: 0.0153257009 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232210 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Byakhee. + GMNotes: '' + GUID: b323c1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Swift Byakhee + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -42.0870323 + posY: 1.79262948 + posZ: 7.32864046 + rotX: 359.920349 + rotY: 269.997162 + rotZ: 0.01657234 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232811 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723517659500931/4B5458A518FDAF55C44CD8423EC12304E3266A6C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Power. + GMNotes: '' + GUID: a7362d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Hastur's Grasp + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.92771 + posY: 2.00841832 + posZ: 5.757133 + rotX: 359.91922 + rotY: 269.9999 + rotZ: 180.017624 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232214 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: 0afc45 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Black Stars Rise + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -40.21685 + posY: 1.76258183 + posZ: -3.051078 + rotX: 359.919678 + rotY: 270.027161 + rotZ: 0.0155659933 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232257 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: f0fa86 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Worlds Merge + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -8.183512 + posY: 1.73751938 + posZ: 36.8471451 + rotX: 359.927124 + rotY: 269.999146 + rotZ: 0.0183420554 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232256 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: f76046 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Crashing Floods + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -7.260278 + posY: 1.73602772 + posZ: 36.60649 + rotX: 359.924561 + rotY: 269.9991 + rotZ: 0.0114589455 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233622 + 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 + UniqueBack: false + Description: Humanoid. Cultist. + GMNotes: '' + GUID: ab3719 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Acolyte + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -15.9929094 + posY: 1.58014917 + posZ: 15.8832378 + rotX: 359.920624 + rotY: 270.0 + rotZ: 0.0137184272 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232229 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Omen. Pact. + GMNotes: '' + GUID: 70009a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Pale Mask Beckons + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -28.2434616 + posY: 1.5971483 + posZ: 15.4716158 + rotX: 359.920166 + rotY: 270.021973 + rotZ: 0.01652023 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232257 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: bce5af + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Worlds Merge + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -8.116457 + posY: 1.75397313 + posZ: 37.0509529 + rotX: 359.936 + rotY: 270.0 + rotZ: 0.0131659834 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232813 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723517659500931/4B5458A518FDAF55C44CD8423EC12304E3266A6C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Curse. + GMNotes: '' + GUID: 5987af + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Delusory Evils + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 5.044172 + posY: 2.6540134 + posZ: -21.0702152 + rotX: 359.9201 + rotY: 270.031982 + rotZ: 0.0168308113 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723517659500931/4B5458A518FDAF55C44CD8423EC12304E3266A6C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '2336': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 232213 +- 233622 +- 232228 +- 233623 +- 232228 +- 232257 +- 232216 +- 232215 +- 232215 +- 232216 +- 232211 +- 232211 +- 232214 +- 232813 +- 233624 +- 232210 +- 232213 +- 233624 +- 232810 +- 232256 +- 232813 +- 233622 +- 232256 +- 232210 +- 232811 +- 232214 +- 232257 +- 232256 +- 233622 +- 232229 +- 232257 +- 232813 +Description: '' +GMNotes: '' +GUID: c380e4 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Encounter Deck +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.92777133 + posY: 1.782369 + posZ: 5.75696468 + rotX: 359.919739 + rotY: 269.994263 + rotZ: 180.01683 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 8 Dim Carcosa ce5d30.ttslua b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 8 Dim Carcosa ce5d30.ttslua new file mode 100644 index 000000000..46067f58e --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 8 Dim Carcosa ce5d30.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.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.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 Return to The Path to Carcosa e9889a/Custom_Model_Bag 8 Dim Carcosa ce5d30.yaml b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 8 Dim Carcosa ce5d30.yaml new file mode 100644 index 000000000..e866a3811 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 8 Dim Carcosa ce5d30.yaml @@ -0,0 +1,85 @@ +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 8 Dim Carcosa ce5d30/Custom_Model_Bag Set-aside 90d138.yaml' +- !include 'Custom_Model_Bag 8 Dim Carcosa ce5d30/Deck Locations 0cde73.yaml' +- !include 'Custom_Model_Bag 8 Dim Carcosa ce5d30/Deck Agenda Deck d60026.yaml' +- !include 'Custom_Model_Bag 8 Dim Carcosa ce5d30/Deck Encounter Deck 9cc690.yaml' +- !include 'Custom_Model_Bag 8 Dim Carcosa ce5d30/Card Scenario b52eaf.yaml' +- !include 'Custom_Model_Bag 8 Dim Carcosa ce5d30/Bag Act Decks 023b49.yaml' +- !include 'Custom_Model_Bag 8 Dim Carcosa ce5d30/Custom_Tile Dim Carcosa 9afdfd.yaml' +- !include 'Custom_Model_Bag 8 Dim Carcosa ce5d30/Card Setup 93a42f.yaml' +- !include 'Custom_Model_Bag 8 Dim Carcosa ce5d30/Notecard Errata 1 ffd354.yaml' +- !include 'Custom_Model_Bag 8 Dim Carcosa ce5d30/Bag Starting Locations 85e306.yaml' +- !include 'Custom_Model_Bag 8 Dim Carcosa ce5d30/Custom_Tile 868a4d.yaml' +- !include 'Custom_Model_Bag 8 Dim Carcosa ce5d30/Custom_Tile add354.yaml' +- !include 'Custom_Model_Bag 8 Dim Carcosa ce5d30/Custom_Tile d6e210.yaml' +- !include 'Custom_Model_Bag 8 Dim Carcosa ce5d30/Custom_Tile e96c38.yaml' +- !include 'Custom_Model_Bag 8 Dim Carcosa ce5d30/Custom_Tile 258731.yaml' +- !include 'Custom_Model_Bag 8 Dim Carcosa ce5d30/Custom_Tile c8ff2d.yaml' +- !include 'Custom_Model_Bag 8 Dim Carcosa ce5d30/Custom_Tile 691fe9.yaml' +- !include 'Custom_Model_Bag 8 Dim Carcosa ce5d30/Custom_Tile 739c55.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/762723517662108275/237503A2629B39A75B85DACC4841020B49874802/ + MaterialIndex: 3 + MeshURL: https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj + NormalURL: '' + TypeIndex: 6 +Description: '' +GMNotes: '' +GUID: ce5d30 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Model_Bag 8 Dim Carcosa ce5d30.ttslua' +LuaScriptState: '{"ml":{"023b49":{"lock":false,"pos":{"x":-2.6887,"y":1.3987,"z":-5.0485},"rot":{"x":359.9832,"y":0.0008,"z":359.9197}},"0cde73":{"lock":false,"pos":{"x":1.5685,"y":1.6512,"z":2.3111},"rot":{"x":359.9197,"y":269.9999,"z":0.0168}},"258731":{"lock":false,"pos":{"x":-30.2242,"y":1.6248,"z":3.86},"rot":{"x":0.0169,"y":179.9773,"z":0.0799}},"691fe9":{"lock":false,"pos":{"x":-33.3428,"y":1.6291,"z":3.818},"rot":{"x":359.9554,"y":225.0048,"z":0.0684}},"739c55":{"lock":false,"pos":{"x":-39.985,"y":1.6372,"z":-0.0256},"rot":{"x":0.0799,"y":90.0027,"z":359.9831}},"85e306":{"lock":false,"pos":{"x":1.2838,"y":1.3944,"z":-0.7698},"rot":{"x":359.9196,"y":269.9993,"z":0.0169}},"868a4d":{"lock":false,"pos":{"x":-20.1755,"y":1.6096,"z":-0.0593},"rot":{"x":0.0799,"y":90.0026,"z":359.9831}},"90d138":{"lock":false,"pos":{"x":1.6963,"y":1.5583,"z":14.2787},"rot":{"x":359.9551,"y":224.998,"z":0.0687}},"93a42f":{"lock":false,"pos":{"x":-0.2919,"y":1.6505,"z":-10.5281},"rot":{"x":359.9197,"y":270.0001,"z":0.0168}},"9afdfd":{"lock":false,"pos":{"x":-3.7313,"y":1.5823,"z":-14.7936},"rot":{"x":359.9197,"y":269.9989,"z":0.0168}},"9cc690":{"lock":false,"pos":{"x":-3.9277,"y":1.809,"z":5.7572},"rot":{"x":359.9197,"y":270.006,"z":180.0168}},"add354":{"lock":false,"pos":{"x":-27.0048,"y":1.6202,"z":3.6609},"rot":{"x":0.0684,"y":134.9998,"z":0.0446}},"b52eaf":{"lock":false,"pos":{"x":-3.956,"y":1.6556,"z":-10.4412},"rot":{"x":359.9197,"y":269.9998,"z":0.0168}},"c8ff2d":{"lock":false,"pos":{"x":-33.276,"y":1.6267,"z":-3.9922},"rot":{"x":0.0683,"y":135.1401,"z":0.0447}},"d60026":{"lock":false,"pos":{"x":-2.7246,"y":1.6566,"z":0.3733},"rot":{"x":0.0168,"y":179.9996,"z":0.0803}},"d6e210":{"lock":false,"pos":{"x":-26.4601,"y":1.6173,"z":-3.7355},"rot":{"x":359.9554,"y":224.9996,"z":0.0684}},"e96c38":{"lock":false,"pos":{"x":-30.2243,"y":1.6225,"z":-3.8299},"rot":{"x":0.0169,"y":179.9773,"z":0.0799}},"ffd354":{"lock":false,"pos":{"x":-11.154,"y":1.56,"z":-23.9454},"rot":{"x":0.0799,"y":89.9999,"z":359.9831}}}}' +MaterialIndex: -1 +MeshIndex: -1 +Name: Custom_Model_Bag +Nickname: '8: Dim Carcosa' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 12.2502031 + posY: 1.45558071 + posZ: -30.0550041 + rotX: 359.920135 + rotY: 269.991516 + rotZ: 0.0168849472 + scaleX: 2.21 + scaleY: 0.46 + scaleZ: 2.42 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 8 Dim Carcosa ce5d30/Bag Act Decks 023b49.yaml b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 8 Dim Carcosa ce5d30/Bag Act Decks 023b49.yaml new file mode 100644 index 000000000..19a275910 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 8 Dim Carcosa ce5d30/Bag Act Decks 023b49.yaml @@ -0,0 +1,39 @@ +Autoraise: true +ColorDiffuse: + b: 0.0 + g: 0.366520882 + r: 0.7058823 +ContainedObjects: +- !include 'Bag Act Decks 023b49/Bag Equal Doubt and Conviction, min. 6 total f22eb2.yaml' +- !include 'Bag Act Decks 023b49/Deck Act Deck (v. III) e95232.yaml' +- !include 'Bag Act Decks 023b49/Deck Act Deck (v. II) 80dc14.yaml' +- !include 'Bag Act Decks 023b49/Deck Act Deck (v. I) cab03e.yaml' +Description: Use whichever one matches your doubt and conviction +GMNotes: '' +GUID: 023b49 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +MeshIndex: -1 +Name: Bag +Nickname: Act Decks +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.68871975 + posY: 1.39871 + posZ: -5.04849243 + rotX: 359.983154 + rotY: 0.0007994975 + rotZ: 359.919678 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 8 Dim Carcosa ce5d30/Bag Act Decks 023b49/Bag Equal Doubt and Conviction, min. 6 total f22eb2.yaml b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 8 Dim Carcosa ce5d30/Bag Act Decks 023b49/Bag Equal Doubt and Conviction, min. 6 total f22eb2.yaml new file mode 100644 index 000000000..41a722658 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 8 Dim Carcosa ce5d30/Bag Act Decks 023b49/Bag Equal Doubt and Conviction, min. 6 total f22eb2.yaml @@ -0,0 +1,39 @@ +Autoraise: true +ColorDiffuse: + b: 0.0 + g: 0.366520882 + r: 0.7058823 +ContainedObjects: +- !include 'Bag Equal Doubt and Conviction, min. 6 total f22eb2/Deck Act Deck (v. + III) 56fab9.yaml' +- !include 'Bag Equal Doubt and Conviction, min. 6 total f22eb2/Deck Act Deck (v. + II) 94d969.yaml' +Description: Pick whichever one you want! +GMNotes: '' +GUID: f22eb2 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +MeshIndex: -1 +Name: Bag +Nickname: 'Equal Doubt and Conviction, min. 6 total:' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -18.22005 + posY: 3.23727846 + posZ: 39.0300255 + rotX: 357.2658 + rotY: 0.119692065 + rotZ: 0.8103297 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 8 Dim Carcosa ce5d30/Bag Act Decks 023b49/Bag Equal Doubt and Conviction, min. 6 total f22eb2/Deck Act Deck (v. II) 94d969.yaml b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 8 Dim Carcosa ce5d30/Bag Act Decks 023b49/Bag Equal Doubt and Conviction, min. 6 total f22eb2/Deck Act Deck (v. II) 94d969.yaml new file mode 100644 index 000000000..46160b990 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 8 Dim Carcosa ce5d30/Bag Act Decks 023b49/Bag Equal Doubt and Conviction, min. 6 total f22eb2/Deck Act Deck (v. II) 94d969.yaml @@ -0,0 +1,172 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 231754 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2317': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378732934/F41E84FCDC0AB52634348C439A6D1A725CEB8115/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378736378/628E179D5305E95AFC25D86526320A24F8B27391/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 3 + GMNotes: '' + GUID: '629941' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The King in Tatters + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -51.425663 + posY: 1.62678182 + posZ: 6.261938 + rotX: 0.016233895 + rotY: 179.982056 + rotZ: 0.07539939 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231752 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2317': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378732934/F41E84FCDC0AB52634348C439A6D1A725CEB8115/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378736378/628E179D5305E95AFC25D86526320A24F8B27391/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 2 + GMNotes: '' + GUID: 649b4f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Search For the Stranger (v. II) + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -51.3585472 + posY: 1.7720803 + posZ: 6.23349237 + rotX: 0.008392779 + rotY: 179.986313 + rotZ: 0.035238307 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231750 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2317': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378732934/F41E84FCDC0AB52634348C439A6D1A725CEB8115/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378736378/628E179D5305E95AFC25D86526320A24F8B27391/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 1 + GMNotes: '' + GUID: 99d2b8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: In Lost Carcosa + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -51.4867935 + posY: 1.78953612 + posZ: 5.99776 + rotX: 0.0165161956 + rotY: 179.994919 + rotZ: 0.07832204 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2317': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378732934/F41E84FCDC0AB52634348C439A6D1A725CEB8115/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378736378/628E179D5305E95AFC25D86526320A24F8B27391/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 231754 +- 231752 +- 231750 +Description: 6+ total, more Doubt than Conviction +GMNotes: '' +GUID: 94d969 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Act Deck (v. II) +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -62.1845474 + posY: 3.703895 + posZ: 6.646026 + rotX: 359.628052 + rotY: 179.969421 + rotZ: 1.41081536 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 8 Dim Carcosa ce5d30/Bag Act Decks 023b49/Bag Equal Doubt and Conviction, min. 6 total f22eb2/Deck Act Deck (v. III) 56fab9.yaml b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 8 Dim Carcosa ce5d30/Bag Act Decks 023b49/Bag Equal Doubt and Conviction, min. 6 total f22eb2/Deck Act Deck (v. III) 56fab9.yaml new file mode 100644 index 000000000..be3886e2c --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 8 Dim Carcosa ce5d30/Bag Act Decks 023b49/Bag Equal Doubt and Conviction, min. 6 total f22eb2/Deck Act Deck (v. III) 56fab9.yaml @@ -0,0 +1,172 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 231754 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2317': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378732934/F41E84FCDC0AB52634348C439A6D1A725CEB8115/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378736378/628E179D5305E95AFC25D86526320A24F8B27391/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 3 + GMNotes: '' + GUID: '629941' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The King in Tatters + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -50.4310875 + posY: 1.62355936 + posZ: 0.156143531 + rotX: 0.0170595013 + rotY: 179.973053 + rotZ: 0.078828 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231753 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2317': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378732934/F41E84FCDC0AB52634348C439A6D1A725CEB8115/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378736378/628E179D5305E95AFC25D86526320A24F8B27391/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 2 + GMNotes: '' + GUID: e90cf9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Search For the Stranger (v. III) + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -50.1188354 + posY: 1.78419518 + posZ: -0.198043808 + rotX: 0.0175960977 + rotY: 179.995438 + rotZ: 0.07639478 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231750 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2317': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378732934/F41E84FCDC0AB52634348C439A6D1A725CEB8115/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378736378/628E179D5305E95AFC25D86526320A24F8B27391/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 1 + GMNotes: '' + GUID: 99d2b8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: In Lost Carcosa + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -50.2528076 + posY: 1.78613138 + posZ: 0.07602682 + rotX: 0.0190153774 + rotY: 179.998825 + rotZ: 0.09153093 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2317': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378732934/F41E84FCDC0AB52634348C439A6D1A725CEB8115/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378736378/628E179D5305E95AFC25D86526320A24F8B27391/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 231754 +- 231753 +- 231750 +Description: 6+ Total, more Conviction than Doubt +GMNotes: '' +GUID: 56fab9 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Act Deck (v. III) +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -62.72531 + posY: 3.72763038 + posZ: 6.278695 + rotX: 0.0332518779 + rotY: 179.973068 + rotZ: 0.05889239 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 8 Dim Carcosa ce5d30/Bag Act Decks 023b49/Deck Act Deck (v. I) cab03e.yaml b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 8 Dim Carcosa ce5d30/Bag Act Decks 023b49/Deck Act Deck (v. I) cab03e.yaml new file mode 100644 index 000000000..c12c23a75 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 8 Dim Carcosa ce5d30/Bag Act Decks 023b49/Deck Act Deck (v. I) cab03e.yaml @@ -0,0 +1,179 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 231754 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2317': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378732934/F41E84FCDC0AB52634348C439A6D1A725CEB8115/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378736378/628E179D5305E95AFC25D86526320A24F8B27391/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 3 + GMNotes: '' + GUID: '629941' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The King in Tatters + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -52.2852135 + posY: 1.629431 + posZ: 11.4131088 + rotX: 0.0183685571 + rotY: 179.97403 + rotZ: 0.07457866 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232651 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2326': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378732934/F41E84FCDC0AB52634348C439A6D1A725CEB8115/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378736378/628E179D5305E95AFC25D86526320A24F8B27391/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 2 + GMNotes: '' + GUID: 09f32d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Search For the Stranger (v. I) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -52.13235 + posY: 1.77463567 + posZ: 11.6877031 + rotX: 0.0230847634 + rotY: 179.992 + rotZ: 0.046987325 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231750 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2317': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378732934/F41E84FCDC0AB52634348C439A6D1A725CEB8115/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378736378/628E179D5305E95AFC25D86526320A24F8B27391/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 1 + GMNotes: '' + GUID: 99d2b8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: In Lost Carcosa + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -51.9490433 + posY: 1.79173779 + posZ: 11.3203526 + rotX: 0.0213156 + rotY: 179.9918 + rotZ: 0.08036492 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2317': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378732934/F41E84FCDC0AB52634348C439A6D1A725CEB8115/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378736378/628E179D5305E95AFC25D86526320A24F8B27391/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + '2326': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378732934/F41E84FCDC0AB52634348C439A6D1A725CEB8115/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378736378/628E179D5305E95AFC25D86526320A24F8B27391/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 231754 +- 232651 +- 231750 +Description: 5 or less total Doubt and Conviction +GMNotes: '' +GUID: cab03e +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Act Deck (v. I) +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -18.127409 + posY: 3.60962367 + posZ: 41.56709 + rotX: 357.547363 + rotY: 180.014847 + rotZ: 359.3577 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 8 Dim Carcosa ce5d30/Bag Act Decks 023b49/Deck Act Deck (v. II) 80dc14.yaml b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 8 Dim Carcosa ce5d30/Bag Act Decks 023b49/Deck Act Deck (v. II) 80dc14.yaml new file mode 100644 index 000000000..2b840009c --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 8 Dim Carcosa ce5d30/Bag Act Decks 023b49/Deck Act Deck (v. II) 80dc14.yaml @@ -0,0 +1,172 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 231754 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2317': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378732934/F41E84FCDC0AB52634348C439A6D1A725CEB8115/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378736378/628E179D5305E95AFC25D86526320A24F8B27391/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 3 + GMNotes: '' + GUID: '629941' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The King in Tatters + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -51.425663 + posY: 1.62678182 + posZ: 6.261938 + rotX: 0.016233895 + rotY: 179.982056 + rotZ: 0.07539939 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231752 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2317': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378732934/F41E84FCDC0AB52634348C439A6D1A725CEB8115/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378736378/628E179D5305E95AFC25D86526320A24F8B27391/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 2 + GMNotes: '' + GUID: 649b4f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Search For the Stranger (v. II) + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -51.3585472 + posY: 1.7720803 + posZ: 6.23349237 + rotX: 0.008392779 + rotY: 179.986313 + rotZ: 0.035238307 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231750 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2317': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378732934/F41E84FCDC0AB52634348C439A6D1A725CEB8115/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378736378/628E179D5305E95AFC25D86526320A24F8B27391/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 1 + GMNotes: '' + GUID: 99d2b8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: In Lost Carcosa + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -51.4867935 + posY: 1.78953612 + posZ: 5.99776 + rotX: 0.0165161956 + rotY: 179.994919 + rotZ: 0.07832204 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2317': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378732934/F41E84FCDC0AB52634348C439A6D1A725CEB8115/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378736378/628E179D5305E95AFC25D86526320A24F8B27391/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 231754 +- 231752 +- 231750 +Description: 6+ total, more Doubt than Conviction +GMNotes: '' +GUID: 80dc14 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Act Deck (v. II) +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -19.0826321 + posY: 3.599072 + posZ: 40.70335 + rotX: 359.58783 + rotY: 180.02121 + rotZ: 356.893524 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 8 Dim Carcosa ce5d30/Bag Act Decks 023b49/Deck Act Deck (v. III) e95232.yaml b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 8 Dim Carcosa ce5d30/Bag Act Decks 023b49/Deck Act Deck (v. III) e95232.yaml new file mode 100644 index 000000000..419abda67 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 8 Dim Carcosa ce5d30/Bag Act Decks 023b49/Deck Act Deck (v. III) e95232.yaml @@ -0,0 +1,172 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 231754 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2317': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378732934/F41E84FCDC0AB52634348C439A6D1A725CEB8115/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378736378/628E179D5305E95AFC25D86526320A24F8B27391/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 3 + GMNotes: '' + GUID: '629941' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The King in Tatters + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -50.4310875 + posY: 1.62355936 + posZ: 0.156143531 + rotX: 0.0170595013 + rotY: 179.973053 + rotZ: 0.078828 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231753 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2317': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378732934/F41E84FCDC0AB52634348C439A6D1A725CEB8115/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378736378/628E179D5305E95AFC25D86526320A24F8B27391/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 2 + GMNotes: '' + GUID: e90cf9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Search For the Stranger (v. III) + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -50.1188354 + posY: 1.78419518 + posZ: -0.198043808 + rotX: 0.0175960977 + rotY: 179.995438 + rotZ: 0.07639478 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231750 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2317': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378732934/F41E84FCDC0AB52634348C439A6D1A725CEB8115/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378736378/628E179D5305E95AFC25D86526320A24F8B27391/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 1 + GMNotes: '' + GUID: 99d2b8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: In Lost Carcosa + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -50.2528076 + posY: 1.78613138 + posZ: 0.07602682 + rotX: 0.0190153774 + rotY: 179.998825 + rotZ: 0.09153093 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2317': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378732934/F41E84FCDC0AB52634348C439A6D1A725CEB8115/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378736378/628E179D5305E95AFC25D86526320A24F8B27391/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 231754 +- 231753 +- 231750 +Description: 6+ Total, more Conviction than Doubt +GMNotes: '' +GUID: e95232 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Act Deck (v. III) +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -18.2156963 + posY: 3.64713454 + posZ: 40.22149 + rotX: 0.909755468 + rotY: 179.967789 + rotZ: 357.556976 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 8 Dim Carcosa ce5d30/Bag Starting Locations 85e306.yaml b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 8 Dim Carcosa ce5d30/Bag Starting Locations 85e306.yaml new file mode 100644 index 000000000..5f2c09a0d --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 8 Dim Carcosa ce5d30/Bag Starting Locations 85e306.yaml @@ -0,0 +1,40 @@ +Autoraise: true +ColorDiffuse: + b: 0.0 + g: 0.0 + r: 0.0 +ContainedObjects: +- !include 'Bag Starting Locations 85e306/Deck Depths of Demhe 8a5aff.yaml' +- !include 'Bag Starting Locations 85e306/Deck Ruins of Carcosa e5cbf3.yaml' +- !include 'Bag Starting Locations 85e306/Deck Dim Streets bbeee2.yaml' +- !include 'Bag Starting Locations 85e306/Deck Bleak Plains 7ff02d.yaml' +Description: Shuffle each of the four location piles and randomly put one into play, + and set the remaining copies aside out of play. +GMNotes: '' +GUID: 85e306 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +MeshIndex: -1 +Name: Bag +Nickname: Starting Locations +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 1.2838006 + posY: 1.394403 + posZ: -0.7698009 + rotX: 359.919647 + rotY: 269.999329 + rotZ: 0.01687456 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 8 Dim Carcosa ce5d30/Bag Starting Locations 85e306/Deck Bleak Plains 7ff02d.yaml b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 8 Dim Carcosa ce5d30/Bag Starting Locations 85e306/Deck Bleak Plains 7ff02d.yaml new file mode 100644 index 000000000..ff024fa71 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 8 Dim Carcosa ce5d30/Bag Starting Locations 85e306/Deck Bleak Plains 7ff02d.yaml @@ -0,0 +1,129 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 231947 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378686851/006B65A59360F63826342C2B1A062C1AD727BD53/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378687267/945F8EF94DC605E0731E37C1BCD3FE65FCB86D02/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Otherworld. + GMNotes: '' + GUID: 468c5f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Bleak Plains + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -23.6974163 + posY: 1.59583151 + posZ: 32.5184135 + rotX: 359.922577 + rotY: 270.0007 + rotZ: 0.01467829 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231948 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378686851/006B65A59360F63826342C2B1A062C1AD727BD53/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378687267/945F8EF94DC605E0731E37C1BCD3FE65FCB86D02/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Otherworld. + GMNotes: '' + GUID: ccd8f5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Bleak Plains + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -23.3781872 + posY: 1.70958352 + posZ: 32.30068 + rotX: 358.16745 + rotY: 269.980774 + rotZ: 0.8031423 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378686851/006B65A59360F63826342C2B1A062C1AD727BD53/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378687267/945F8EF94DC605E0731E37C1BCD3FE65FCB86D02/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 231947 +- 231948 +Description: '' +GMNotes: '' +GUID: 7ff02d +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Bleak Plains +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 3.340487 + posY: 4.607142 + posZ: 7.843753 + rotX: 359.920135 + rotY: 269.999939 + rotZ: 0.0168769788 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 8 Dim Carcosa ce5d30/Bag Starting Locations 85e306/Deck Depths of Demhe 8a5aff.yaml b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 8 Dim Carcosa ce5d30/Bag Starting Locations 85e306/Deck Depths of Demhe 8a5aff.yaml new file mode 100644 index 000000000..62914ff2e --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 8 Dim Carcosa ce5d30/Bag Starting Locations 85e306/Deck Depths of Demhe 8a5aff.yaml @@ -0,0 +1,129 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 231955 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378686851/006B65A59360F63826342C2B1A062C1AD727BD53/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378687267/945F8EF94DC605E0731E37C1BCD3FE65FCB86D02/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Otherworld. + GMNotes: '' + GUID: 01030c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Depths of Demhe + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -21.5778542 + posY: 1.59401619 + posZ: 36.431263 + rotX: 359.920227 + rotY: 269.999939 + rotZ: 0.0158797055 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231956 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378686851/006B65A59360F63826342C2B1A062C1AD727BD53/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378687267/945F8EF94DC605E0731E37C1BCD3FE65FCB86D02/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Otherworld. + GMNotes: '' + GUID: a53069 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Depths of Demhe + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -21.50017 + posY: 1.73942137 + posZ: 36.47755 + rotX: 359.915649 + rotY: 270.0006 + rotZ: 0.000135550043 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378686851/006B65A59360F63826342C2B1A062C1AD727BD53/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378687267/945F8EF94DC605E0731E37C1BCD3FE65FCB86D02/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 231955 +- 231956 +Description: '' +GMNotes: '' +GUID: 8a5aff +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Depths of Demhe +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 9.213481 + posY: 4.59895468 + posZ: 7.84406567 + rotX: 359.920135 + rotY: 270.0 + rotZ: 0.016876705 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 8 Dim Carcosa ce5d30/Bag Starting Locations 85e306/Deck Dim Streets bbeee2.yaml b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 8 Dim Carcosa ce5d30/Bag Starting Locations 85e306/Deck Dim Streets bbeee2.yaml new file mode 100644 index 000000000..9fc3c93ea --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 8 Dim Carcosa ce5d30/Bag Starting Locations 85e306/Deck Dim Streets bbeee2.yaml @@ -0,0 +1,172 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 231954 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378686851/006B65A59360F63826342C2B1A062C1AD727BD53/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378687267/945F8EF94DC605E0731E37C1BCD3FE65FCB86D02/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Otherworld. + GMNotes: '' + GUID: 309dcd + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dim Streets + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -23.8258553 + posY: 1.59490311 + posZ: 28.7426643 + rotX: 359.920135 + rotY: 269.998657 + rotZ: 0.016910553 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231952 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378686851/006B65A59360F63826342C2B1A062C1AD727BD53/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378687267/945F8EF94DC605E0731E37C1BCD3FE65FCB86D02/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Otherworld. + GMNotes: '' + GUID: f897e5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dim Streets + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -23.8107414 + posY: 1.75615716 + posZ: 28.934536 + rotX: 359.919 + rotY: 269.998657 + rotZ: 0.0125541575 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231953 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378686851/006B65A59360F63826342C2B1A062C1AD727BD53/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378687267/945F8EF94DC605E0731E37C1BCD3FE65FCB86D02/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Otherworld. + GMNotes: '' + GUID: a36819 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dim Streets + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -11.1060133 + posY: 1.71610379 + posZ: -52.1906967 + rotX: 359.925323 + rotY: 270.000244 + rotZ: 0.010735047 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378686851/006B65A59360F63826342C2B1A062C1AD727BD53/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378687267/945F8EF94DC605E0731E37C1BCD3FE65FCB86D02/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 231954 +- 231952 +- 231953 +Description: '' +GMNotes: '' +GUID: bbeee2 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Dim Streets +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 3.34052563 + posY: 4.59837151 + posZ: 2.97210217 + rotX: 359.920135 + rotY: 269.999939 + rotZ: 0.0168772526 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 8 Dim Carcosa ce5d30/Bag Starting Locations 85e306/Deck Ruins of Carcosa e5cbf3.yaml b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 8 Dim Carcosa ce5d30/Bag Starting Locations 85e306/Deck Ruins of Carcosa e5cbf3.yaml new file mode 100644 index 000000000..d190f9503 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 8 Dim Carcosa ce5d30/Bag Starting Locations 85e306/Deck Ruins of Carcosa e5cbf3.yaml @@ -0,0 +1,172 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 231951 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378686851/006B65A59360F63826342C2B1A062C1AD727BD53/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378687267/945F8EF94DC605E0731E37C1BCD3FE65FCB86D02/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Otherworld. + GMNotes: '' + GUID: ea3b91 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ruins of Carcosa + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -22.92964 + posY: 1.5937041 + posZ: 28.9959183 + rotX: 359.920349 + rotY: 269.9998 + rotZ: 0.0153476419 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231949 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378686851/006B65A59360F63826342C2B1A062C1AD727BD53/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378687267/945F8EF94DC605E0731E37C1BCD3FE65FCB86D02/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Otherworld. + GMNotes: '' + GUID: aa7e10 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ruins of Carcosa + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -23.1247711 + posY: 1.755088 + posZ: 28.9446888 + rotX: 359.9404 + rotY: 270.0 + rotZ: 0.0121237421 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231950 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378686851/006B65A59360F63826342C2B1A062C1AD727BD53/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378687267/945F8EF94DC605E0731E37C1BCD3FE65FCB86D02/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Otherworld. + GMNotes: '' + GUID: 79295e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ruins of Carcosa + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -22.71415 + posY: 1.79024816 + posZ: 29.0114841 + rotX: 359.952057 + rotY: 270.0013 + rotZ: 0.993370652 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378686851/006B65A59360F63826342C2B1A062C1AD727BD53/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378687267/945F8EF94DC605E0731E37C1BCD3FE65FCB86D02/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 231951 +- 231949 +- 231950 +Description: '' +GMNotes: '' +GUID: e5cbf3 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Ruins of Carcosa +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 3.34045267 + posY: 4.596965 + posZ: -1.80604279 + rotX: 359.920135 + rotY: 269.9999 + rotZ: 0.0168786123 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 8 Dim Carcosa ce5d30/Card Scenario b52eaf.yaml b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 8 Dim Carcosa ce5d30/Card Scenario b52eaf.yaml new file mode 100644 index 000000000..cc9c8f96b --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 8 Dim Carcosa ce5d30/Card Scenario b52eaf.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 231945 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378686851/006B65A59360F63826342C2B1A062C1AD727BD53/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378687267/945F8EF94DC605E0731E37C1BCD3FE65FCB86D02/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Dim Carcosa +GMNotes: '' +GUID: b52eaf +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Scenario +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.95600033 + posY: 1.65564823 + posZ: -10.4412022 + rotX: 359.919739 + rotY: 269.999817 + rotZ: 0.0168412048 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 8 Dim Carcosa ce5d30/Card Setup 93a42f.yaml b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 8 Dim Carcosa ce5d30/Card Setup 93a42f.yaml new file mode 100644 index 000000000..fe661545d --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 8 Dim Carcosa ce5d30/Card Setup 93a42f.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 232934 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2329': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/762723517659499792/63775A11C2A49441C268121108C8EBFCF512E2A9/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723517659500387/BFF1AFFD515364F0BFD336A6CE9970BE1DD04B13/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Return to Dim Carcosa +GMNotes: '' +GUID: 93a42f +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Setup +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -0.291938454 + posY: 1.6504904 + posZ: -10.5281172 + rotX: 359.919739 + rotY: 270.000061 + rotZ: 0.01684201 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 8 Dim Carcosa ce5d30/Custom_Model_Bag Set-aside 90d138.yaml b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 8 Dim Carcosa ce5d30/Custom_Model_Bag Set-aside 90d138.yaml new file mode 100644 index 000000000..21d31a894 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 8 Dim Carcosa ce5d30/Custom_Model_Bag Set-aside 90d138.yaml @@ -0,0 +1,62 @@ +Autoraise: true +ColorDiffuse: + b: 0.02148666 + g: 0.00100758043 + r: 0.02148666 +ContainedObjects: +- !include 'Custom_Model_Bag Set-aside 90d138/Card Stage of the Ward Theatre 5fbb4e.yaml' +- !include 'Custom_Model_Bag Set-aside 90d138/Card The Throne Room a6582c.yaml' +- !include 'Custom_Model_Bag Set-aside 90d138/Card Recesses of Your Own Mind c7e36d.yaml' +- !include 'Custom_Model_Bag Set-aside 90d138/Bag The Tattered King 6358c5.yaml' +- !include 'Custom_Model_Bag Set-aside 90d138/Bag Lord of Carcosa 7df9a1.yaml' +- !include 'Custom_Model_Bag Set-aside 90d138/Bag The King in Yellow 3baf0e.yaml' +- !include 'Custom_Model_Bag Set-aside 90d138/Card Beast of Aldebaran 83c7c3.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: Dim Carcosa +GMNotes: '' +GUID: 90d138 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +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.69632781 + posY: 1.558317 + posZ: 14.2787066 + rotX: 359.9551 + rotY: 224.997986 + rotZ: 0.06867396 + scaleX: 2.0 + scaleY: 2.0 + scaleZ: 2.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 8 Dim Carcosa ce5d30/Custom_Model_Bag Set-aside 90d138/Bag Lord of Carcosa 7df9a1.yaml b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 8 Dim Carcosa ce5d30/Custom_Model_Bag Set-aside 90d138/Bag Lord of Carcosa 7df9a1.yaml new file mode 100644 index 000000000..11f5342fa --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 8 Dim Carcosa ce5d30/Custom_Model_Bag Set-aside 90d138/Bag Lord of Carcosa 7df9a1.yaml @@ -0,0 +1,77 @@ +Autoraise: true +ColorDiffuse: + b: 0.2560976 + g: 0.9920437 + r: 1.0 +ContainedObjects: +- Autoraise: true + CardID: 232259 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Lord of Carcosa + GMNotes: '' + GUID: 5276ed + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Hastur + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -28.84366 + posY: 3.64523244 + posZ: 23.7113132 + rotX: 358.7962 + rotY: 269.989624 + rotZ: 3.08997846 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +Description: '' +GMNotes: '' +GUID: 7df9a1 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +MeshIndex: -1 +Name: Bag +Nickname: Lord of Carcosa +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -22.5792942 + posY: 3.38823223 + posZ: 25.80425 + rotX: 359.975 + rotY: 359.993866 + rotZ: 359.9368 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 8 Dim Carcosa ce5d30/Custom_Model_Bag Set-aside 90d138/Bag The King in Yellow 3baf0e.yaml b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 8 Dim Carcosa ce5d30/Custom_Model_Bag Set-aside 90d138/Bag The King in Yellow 3baf0e.yaml new file mode 100644 index 000000000..1cd0021f5 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 8 Dim Carcosa ce5d30/Custom_Model_Bag Set-aside 90d138/Bag The King in Yellow 3baf0e.yaml @@ -0,0 +1,77 @@ +Autoraise: true +ColorDiffuse: + b: 0.256097645 + g: 0.9920437 + r: 1.0 +ContainedObjects: +- Autoraise: true + CardID: 232258 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: The King in Yellow + GMNotes: '' + GUID: bce5af + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Hastur + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -65.14686 + posY: 3.6819582 + posZ: 16.2590427 + rotX: 357.814362 + rotY: 269.9367 + rotZ: 2.209997 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +Description: '' +GMNotes: '' +GUID: 3baf0e +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +MeshIndex: -1 +Name: Bag +Nickname: The King in Yellow +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -22.6787586 + posY: 3.38920474 + posZ: 26.48397 + rotX: 359.938049 + rotY: 359.984467 + rotZ: 359.840332 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 8 Dim Carcosa ce5d30/Custom_Model_Bag Set-aside 90d138/Bag The Tattered King 6358c5.yaml b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 8 Dim Carcosa ce5d30/Custom_Model_Bag Set-aside 90d138/Bag The Tattered King 6358c5.yaml new file mode 100644 index 000000000..13ce87381 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 8 Dim Carcosa ce5d30/Custom_Model_Bag Set-aside 90d138/Bag The Tattered King 6358c5.yaml @@ -0,0 +1,77 @@ +Autoraise: true +ColorDiffuse: + b: 0.2560976 + g: 0.9920437 + r: 1.0 +ContainedObjects: +- Autoraise: true + CardID: 232260 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: The Tattered King + GMNotes: '' + GUID: 4475b1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Hastur + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -26.1907215 + posY: 3.628876 + posZ: 21.339592 + rotX: 358.461182 + rotY: 269.937134 + rotZ: 3.128103 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +Description: '' +GMNotes: '' +GUID: 6358c5 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +MeshIndex: -1 +Name: Bag +Nickname: The Tattered King +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -23.1777153 + posY: 3.38121772 + posZ: 26.1751213 + rotX: 359.864868 + rotY: 0.0592801943 + rotZ: 0.994646966 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 8 Dim Carcosa ce5d30/Custom_Model_Bag Set-aside 90d138/Card Beast of Aldebaran 83c7c3.yaml b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 8 Dim Carcosa ce5d30/Custom_Model_Bag Set-aside 90d138/Card Beast of Aldebaran 83c7c3.yaml new file mode 100644 index 000000000..faa6bdf5e --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 8 Dim Carcosa ce5d30/Custom_Model_Bag Set-aside 90d138/Card Beast of Aldebaran 83c7c3.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 232212 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: Monster. Elite. +GMNotes: '' +GUID: 83c7c3 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Beast of Aldebaran +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -22.4469948 + posY: 3.64769769 + posZ: 26.9269524 + rotX: 359.919525 + rotY: 270.000183 + rotZ: 0.0170160644 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 8 Dim Carcosa ce5d30/Custom_Model_Bag Set-aside 90d138/Card Recesses of Your Own Mind c7e36d.yaml b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 8 Dim Carcosa ce5d30/Custom_Model_Bag Set-aside 90d138/Card Recesses of Your Own Mind c7e36d.yaml new file mode 100644 index 000000000..a3ad1b29a --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 8 Dim Carcosa ce5d30/Custom_Model_Bag Set-aside 90d138/Card Recesses of Your Own Mind c7e36d.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 232936 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2329': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/762723517659499792/63775A11C2A49441C268121108C8EBFCF512E2A9/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723517659500387/BFF1AFFD515364F0BFD336A6CE9970BE1DD04B13/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: ???. +GMNotes: '' +GUID: c7e36d +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Recesses of Your Own Mind +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -15.5754652 + posY: 2.5702672 + posZ: -66.14272 + rotX: 359.920135 + rotY: 269.995544 + rotZ: 0.0168820843 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 8 Dim Carcosa ce5d30/Custom_Model_Bag Set-aside 90d138/Card Stage of the Ward Theatre 5fbb4e.yaml b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 8 Dim Carcosa ce5d30/Custom_Model_Bag Set-aside 90d138/Card Stage of the Ward Theatre 5fbb4e.yaml new file mode 100644 index 000000000..49295560d --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 8 Dim Carcosa ce5d30/Custom_Model_Bag Set-aside 90d138/Card Stage of the Ward Theatre 5fbb4e.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 232938 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2329': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/762723517659499792/63775A11C2A49441C268121108C8EBFCF512E2A9/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723517659500387/BFF1AFFD515364F0BFD336A6CE9970BE1DD04B13/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 5fbb4e +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Stage of the Ward Theatre +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -13.3002071 + posY: 2.5842092 + posZ: -75.04361 + rotX: 359.920135 + rotY: 269.999939 + rotZ: 0.0168755259 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 8 Dim Carcosa ce5d30/Custom_Model_Bag Set-aside 90d138/Card The Throne Room a6582c.yaml b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 8 Dim Carcosa ce5d30/Custom_Model_Bag Set-aside 90d138/Card The Throne Room a6582c.yaml new file mode 100644 index 000000000..ea7d8a62f --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 8 Dim Carcosa ce5d30/Custom_Model_Bag Set-aside 90d138/Card The Throne Room a6582c.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 232937 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2329': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/762723517659499792/63775A11C2A49441C268121108C8EBFCF512E2A9/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723517659500387/BFF1AFFD515364F0BFD336A6CE9970BE1DD04B13/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Otherworld. +GMNotes: '' +GUID: a6582c +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: The Throne Room +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -14.934474 + posY: 2.56593132 + posZ: -68.60205 + rotX: 359.920135 + rotY: 269.999939 + rotZ: 0.0168764144 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 8 Dim Carcosa ce5d30/Custom_Tile 258731.yaml b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 8 Dim Carcosa ce5d30/Custom_Tile 258731.yaml new file mode 100644 index 000000000..2147f3719 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 8 Dim Carcosa ce5d30/Custom_Tile 258731.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: '258731' +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.62478244 + posZ: 3.86000061 + rotX: 0.0169034153 + rotY: 179.977325 + rotZ: 0.07993313 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 8 Dim Carcosa ce5d30/Custom_Tile 691fe9.yaml b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 8 Dim Carcosa ce5d30/Custom_Tile 691fe9.yaml new file mode 100644 index 000000000..edfeed87b --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 8 Dim Carcosa ce5d30/Custom_Tile 691fe9.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 691fe9 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.3428 + posY: 1.62911892 + posZ: 3.81800032 + rotX: 359.9554 + rotY: 225.004837 + rotZ: 0.0684001446 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 8 Dim Carcosa ce5d30/Custom_Tile 739c55.yaml b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 8 Dim Carcosa ce5d30/Custom_Tile 739c55.yaml new file mode 100644 index 000000000..c5a66e720 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 8 Dim Carcosa ce5d30/Custom_Tile 739c55.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 739c55 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: -39.985 + posY: 1.63724923 + posZ: -0.0256002788 + rotX: 0.0798952058 + rotY: 90.00268 + rotZ: 359.9831 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 8 Dim Carcosa ce5d30/Custom_Tile 868a4d.yaml b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 8 Dim Carcosa ce5d30/Custom_Tile 868a4d.yaml new file mode 100644 index 000000000..862caef93 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 8 Dim Carcosa ce5d30/Custom_Tile 868a4d.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 868a4d +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.1755 + posY: 1.6096164 + posZ: -0.05930026 + rotX: 0.0798951 + rotY: 90.00264 + rotZ: 359.9831 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 8 Dim Carcosa ce5d30/Custom_Tile add354.yaml b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 8 Dim Carcosa ce5d30/Custom_Tile add354.yaml new file mode 100644 index 000000000..f7c54233d --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 8 Dim Carcosa ce5d30/Custom_Tile add354.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: add354 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.0048 + posY: 1.62023473 + posZ: 3.6609 + rotX: 0.06843123 + rotY: 134.999756 + rotZ: 0.0445615947 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 8 Dim Carcosa ce5d30/Custom_Tile c8ff2d.yaml b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 8 Dim Carcosa ce5d30/Custom_Tile c8ff2d.yaml new file mode 100644 index 000000000..9967bb57f --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 8 Dim Carcosa ce5d30/Custom_Tile c8ff2d.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: c8ff2d +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.276 + posY: 1.62672579 + posZ: -3.9922 + rotX: 0.0683219 + rotY: 135.140121 + rotZ: 0.0447296575 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 8 Dim Carcosa ce5d30/Custom_Tile d6e210.yaml b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 8 Dim Carcosa ce5d30/Custom_Tile d6e210.yaml new file mode 100644 index 000000000..dd0e5a5c8 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 8 Dim Carcosa ce5d30/Custom_Tile d6e210.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: d6e210 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.4601 + posY: 1.61729717 + posZ: -3.7355 + rotX: 359.955444 + rotY: 224.999588 + rotZ: 0.0684028938 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 8 Dim Carcosa ce5d30/Custom_Tile e96c38.yaml b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 8 Dim Carcosa ce5d30/Custom_Tile e96c38.yaml new file mode 100644 index 000000000..9f75c6c7e --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 8 Dim Carcosa ce5d30/Custom_Tile e96c38.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: e96c38 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.62251818 + posZ: -3.82989979 + rotX: 0.0169034414 + rotY: 179.977264 + rotZ: 0.079932645 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 8 Dim Carcosa ce5d30/Custom_Tile Dim Carcosa 9afdfd.ttslua b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 8 Dim Carcosa ce5d30/Custom_Tile Dim Carcosa 9afdfd.ttslua new file mode 100644 index 000000000..710b4a84e --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 8 Dim Carcosa ce5d30/Custom_Tile Dim Carcosa 9afdfd.ttslua @@ -0,0 +1,25 @@ +name = 'Dim Carcosa' + +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 + +function standaloneClick() + Global.call('fillContainer', {object=self, key=name, mode='standalone'}) +end diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 8 Dim Carcosa ce5d30/Custom_Tile Dim Carcosa 9afdfd.yaml b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 8 Dim Carcosa ce5d30/Custom_Tile Dim Carcosa 9afdfd.yaml new file mode 100644 index 000000000..951d60856 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 8 Dim Carcosa ce5d30/Custom_Tile Dim Carcosa 9afdfd.yaml @@ -0,0 +1,42 @@ +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 +GMNotes: '' +GUID: 9afdfd +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Tile Dim Carcosa 9afdfd.ttslua' +LuaScriptState: '' +Name: Custom_Tile +Nickname: Dim Carcosa +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.73130035 + posY: 1.58234084 + posZ: -14.7936029 + rotX: 359.919739 + rotY: 269.9989 + rotZ: 0.0168395136 + scaleX: 2.2 + scaleY: 1.0 + scaleZ: 2.2 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 8 Dim Carcosa ce5d30/Deck Agenda Deck d60026.yaml b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 8 Dim Carcosa ce5d30/Deck Agenda Deck d60026.yaml new file mode 100644 index 000000000..7502e42e8 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 8 Dim Carcosa ce5d30/Deck Agenda Deck d60026.yaml @@ -0,0 +1,172 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 231749 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2317': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378732934/F41E84FCDC0AB52634348C439A6D1A725CEB8115/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378736378/628E179D5305E95AFC25D86526320A24F8B27391/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: 'Agenda ' + GMNotes: '' + GUID: c1397c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Madness Dies + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -48.19565 + posY: 1.62247419 + posZ: 7.251039 + rotX: 0.0169690885 + rotY: 180.920578 + rotZ: 0.07551854 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231748 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2317': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378732934/F41E84FCDC0AB52634348C439A6D1A725CEB8115/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378736378/628E179D5305E95AFC25D86526320A24F8B27391/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 2 + GMNotes: '' + GUID: 09a5e0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Madness Drowns + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -48.22564 + posY: 1.76786089 + posZ: 7.382757 + rotX: 0.0304357037 + rotY: 180.023148 + rotZ: 0.07329072 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231747 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2317': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378732934/F41E84FCDC0AB52634348C439A6D1A725CEB8115/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378736378/628E179D5305E95AFC25D86526320A24F8B27391/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 1 + GMNotes: '' + GUID: 3da436 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Madness Coils + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -48.3123741 + posY: 1.785375 + posZ: 6.84433 + rotX: 0.01081464 + rotY: 180.006546 + rotZ: 0.07941174 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2317': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378732934/F41E84FCDC0AB52634348C439A6D1A725CEB8115/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378736378/628E179D5305E95AFC25D86526320A24F8B27391/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 231749 +- 231748 +- 231747 +Description: '' +GMNotes: '' +GUID: d60026 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Agenda Deck +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.72463846 + posY: 1.65664113 + posZ: 0.373315841 + rotX: 0.0168357 + rotY: 179.999619 + rotZ: 0.0802571252 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 8 Dim Carcosa ce5d30/Deck Encounter Deck 9cc690.yaml b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 8 Dim Carcosa ce5d30/Deck Encounter Deck 9cc690.yaml new file mode 100644 index 000000000..565569bb1 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 8 Dim Carcosa ce5d30/Deck Encounter Deck 9cc690.yaml @@ -0,0 +1,1641 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 232824 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723517659500931/4B5458A518FDAF55C44CD8423EC12304E3266A6C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: 5987af + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: "Voice of Tru\u2019nembra" + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.271961838 + posY: 1.941958 + posZ: 28.77508 + rotX: 358.479156 + rotY: 269.9843 + rotZ: 181.263763 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232819 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723517659500931/4B5458A518FDAF55C44CD8423EC12304E3266A6C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: 5987af + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Visions in Your Mind (Horrors) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -20.4759254 + posY: 1.72235584 + posZ: -30.9665585 + rotX: 359.925446 + rotY: 270.004181 + rotZ: 0.00763365347 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232213 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. + GMNotes: '' + GUID: e9dc22 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Spawn of Hali + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -41.0218 + posY: 1.61205661 + posZ: 5.752819 + rotX: 359.920532 + rotY: 270.00177 + rotZ: 0.013646706 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232812 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723517659500931/4B5458A518FDAF55C44CD8423EC12304E3266A6C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Cultist. Elite. + GMNotes: '' + GUID: 5987af + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: High Priest of Hastur + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -8.786948 + posY: 1.955869 + posZ: -64.99275 + rotX: 359.945923 + rotY: 270.000732 + rotZ: 180.181015 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232268 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hex. Terror. + GMNotes: '' + GUID: b1fe02 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Possession (Murderous) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.2899819 + posY: 1.98361123 + posZ: 37.732872 + rotX: 359.95343 + rotY: 269.998962 + rotZ: 181.528839 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232826 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723517659500931/4B5458A518FDAF55C44CD8423EC12304E3266A6C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: 6cb3f1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Painful Reflection + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -18.8719749 + posY: 1.724139 + posZ: -29.3834038 + rotX: 359.954041 + rotY: 269.999542 + rotZ: 359.993164 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232817 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723517659500931/4B5458A518FDAF55C44CD8423EC12304E3266A6C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Byakhee. + GMNotes: '' + GUID: 7161b9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Preying Byakhee + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -17.1106777 + posY: 1.73652244 + posZ: -26.5900784 + rotX: 359.9353 + rotY: 270.0 + rotZ: 0.0111068469 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232824 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723517659500931/4B5458A518FDAF55C44CD8423EC12304E3266A6C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: 0a0545 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: "Voice of Tru\u2019nembra" + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -18.9889278 + posY: 1.735667 + posZ: -19.9021416 + rotX: 359.924225 + rotY: 270.000031 + rotZ: 0.01324474 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232223 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Cultist. + GMNotes: '' + GUID: 0bf1f8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Agent of the King + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -45.31658 + posY: 1.77869308 + posZ: -1.76723373 + rotX: 359.925659 + rotY: 270.030243 + rotZ: 359.9921 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232264 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: bce5af + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Realm of Madness + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -4.18937874 + posY: 1.56797123 + posZ: 30.3007717 + rotX: 359.920258 + rotY: 269.998749 + rotZ: 0.0159036145 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232224 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Pact. + GMNotes: '' + GUID: e20141 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The King's Edict + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -45.28207 + posY: 1.61571622 + posZ: -1.99931252 + rotX: 359.920471 + rotY: 269.999542 + rotZ: 0.0138937524 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232823 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723517659500931/4B5458A518FDAF55C44CD8423EC12304E3266A6C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: 3effb8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Maddening Delusions + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -20.1577435 + posY: 1.57207835 + posZ: -31.3182583 + rotX: 359.92038 + rotY: 269.999878 + rotZ: 0.0152459564 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232824 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723517659500931/4B5458A518FDAF55C44CD8423EC12304E3266A6C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: 040fdc + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: "Voice of Tru\u2019nembra" + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -18.9889069 + posY: 1.74957764 + posZ: -19.9021454 + rotX: 359.921265 + rotY: 270.000031 + rotZ: 0.0159616545 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232825 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723517659500931/4B5458A518FDAF55C44CD8423EC12304E3266A6C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: 8e7b73 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Melancholy + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -19.17409 + posY: 1.57282412 + posZ: -24.1210079 + rotX: 359.9204 + rotY: 269.999878 + rotZ: 0.0150721716 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232222 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Cultist. + GMNotes: '' + GUID: dcaaad + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Fanatic + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -45.8543549 + posY: 1.76917815 + posZ: 0.300536335 + rotX: 359.907532 + rotY: 269.998657 + rotZ: 0.0211735331 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232264 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: 8fcde7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Realm of Madness + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -4.130993 + posY: 1.72906506 + posZ: 30.25037 + rotX: 359.938873 + rotY: 270.0 + rotZ: 0.0100132488 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232261 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. + GMNotes: '' + GUID: bce5af + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Creature Out of Demhe + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.995727062 + posY: 1.84892666 + posZ: 38.1687965 + rotX: 359.9324 + rotY: 270.00946 + rotZ: 180.021774 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232267 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hex. Terror. + GMNotes: '' + GUID: f5c5c4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Possession (Torturous) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.5915995 + posY: 1.93822253 + posZ: 38.52549 + rotX: 359.955963 + rotY: 269.915771 + rotZ: 180.22345 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232263 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Curse. Terror. + GMNotes: '' + GUID: bce5af + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dismal Curse + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -4.948645 + posY: 1.74341035 + posZ: 29.5864925 + rotX: 359.9231 + rotY: 269.9987 + rotZ: 0.01338054 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232825 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723517659500931/4B5458A518FDAF55C44CD8423EC12304E3266A6C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: 8d3af5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Melancholy + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -19.190136 + posY: 1.728339 + posZ: -23.9574223 + rotX: 359.928223 + rotY: 269.999939 + rotZ: 0.00379046449 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232265 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: bce5af + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Final Act + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.222007483 + posY: 1.91862786 + posZ: 38.675518 + rotX: 359.955017 + rotY: 269.99295 + rotZ: 180.007324 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232822 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723517659500931/4B5458A518FDAF55C44CD8423EC12304E3266A6C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: a92ef8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Visions in Your Mind (Hatred) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -19.8424263 + posY: 1.73465288 + posZ: -31.0785656 + rotX: 359.919647 + rotY: 270.0066 + rotZ: 0.0226448 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232263 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Curse. Terror. + GMNotes: '' + GUID: bce5af + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dismal Curse + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -4.53505564 + posY: 1.56818 + posZ: 29.43088 + rotX: 359.920441 + rotY: 269.999939 + rotZ: 0.0147806508 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232222 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Cultist. + GMNotes: '' + GUID: 8ada81 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Fanatic + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -46.03409 + posY: 1.61745238 + posZ: 0.648399532 + rotX: 359.9214 + rotY: 269.999054 + rotZ: 0.00768406037 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232817 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723517659500931/4B5458A518FDAF55C44CD8423EC12304E3266A6C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Byakhee. + GMNotes: '' + GUID: 5987af + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Preying Byakhee + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -17.1722336 + posY: 1.569242 + posZ: -26.9037 + rotX: 359.9201 + rotY: 269.999878 + rotZ: 0.0169682037 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232224 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Pact. + GMNotes: '' + GUID: '522968' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The King's Edict + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -45.3332253 + posY: 1.76760066 + posZ: -1.86887467 + rotX: 359.932678 + rotY: 269.9998 + rotZ: -0.00222653663 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232818 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723517659500931/4B5458A518FDAF55C44CD8423EC12304E3266A6C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Pact. Power. + GMNotes: '' + GUID: a3c0d0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Sign of Hastur + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -16.8502655 + posY: 1.7219522 + posZ: -31.3089123 + rotX: 359.9652 + rotY: 270.0 + rotZ: 0.009213697 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232263 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Curse. Terror. + GMNotes: '' + GUID: 8bf800 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dismal Curse + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -4.95459 + posY: 1.72939789 + posZ: 29.5860748 + rotX: 359.930542 + rotY: 269.9987 + rotZ: 0.00481055444 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232213 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. + GMNotes: '' + GUID: d46d72 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Spawn of Hali + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -40.7112732 + posY: 1.76276219 + posZ: 5.71570444 + rotX: 359.92627 + rotY: 270.001953 + rotZ: 0.00491145067 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232826 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723517659500931/4B5458A518FDAF55C44CD8423EC12304E3266A6C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: '947597' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Painful Reflection + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -18.6558971 + posY: 1.57049608 + posZ: -29.4339848 + rotX: 359.920837 + rotY: 269.999969 + rotZ: 0.0124607878 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232818 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723517659500931/4B5458A518FDAF55C44CD8423EC12304E3266A6C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Pact. Power. + GMNotes: '' + GUID: 48ff80 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Sign of Hastur + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -16.4193249 + posY: 1.56677032 + posZ: -31.2345848 + rotX: 359.921478 + rotY: 269.999939 + rotZ: 0.007362036 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232823 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723517659500931/4B5458A518FDAF55C44CD8423EC12304E3266A6C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: dd93e2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Maddening Delusions + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -20.4406471 + posY: 1.73394608 + posZ: -31.18953 + rotX: 359.9276 + rotY: 269.999939 + rotZ: 0.007684529 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232821 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723517659500931/4B5458A518FDAF55C44CD8423EC12304E3266A6C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: '613256' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Visions in Your Mind (Death) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -20.2634449 + posY: 1.7214551 + posZ: -31.20634 + rotX: 359.922943 + rotY: 269.996216 + rotZ: 0.0142507013 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232266 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hex. Terror. + GMNotes: '' + GUID: bce5af + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Possession (Traitorous) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.5400688 + posY: 1.90004408 + posZ: 38.18977 + rotX: 359.452545 + rotY: 270.032623 + rotZ: 178.640411 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232222 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Cultist. + GMNotes: '' + GUID: 8ada81 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Fanatic + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -45.8543625 + posY: 1.80176485 + posZ: 0.3005505 + rotX: 359.920227 + rotY: 269.998779 + rotZ: 0.0167158749 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232820 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723517659500931/4B5458A518FDAF55C44CD8423EC12304E3266A6C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: ca4b6d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Visions in Your Mind (Failure) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -19.837471 + posY: 1.71898663 + posZ: -31.096756 + rotX: 359.918335 + rotY: 269.998779 + rotZ: 0.0132667217 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232262 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Byakhee. + GMNotes: '' + GUID: bce5af + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Winged One + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.400121242 + posY: 1.85907924 + posZ: 37.5909958 + rotX: 359.935974 + rotY: 270.0 + rotZ: 180.015518 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723517659500931/4B5458A518FDAF55C44CD8423EC12304E3266A6C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 232824 +- 232819 +- 232213 +- 232812 +- 232268 +- 232826 +- 232817 +- 232824 +- 232223 +- 232264 +- 232224 +- 232823 +- 232824 +- 232825 +- 232222 +- 232264 +- 232261 +- 232267 +- 232263 +- 232825 +- 232265 +- 232822 +- 232263 +- 232222 +- 232817 +- 232224 +- 232818 +- 232263 +- 232213 +- 232826 +- 232818 +- 232823 +- 232821 +- 232266 +- 232222 +- 232820 +- 232262 +Description: '' +GMNotes: '' +GUID: 9cc690 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Encounter Deck +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.92773414 + posY: 1.80901623 + posZ: 5.75715351 + rotX: 359.919739 + rotY: 270.005981 + rotZ: 180.016815 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 8 Dim Carcosa ce5d30/Deck Locations 0cde73.yaml b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 8 Dim Carcosa ce5d30/Deck Locations 0cde73.yaml new file mode 100644 index 000000000..0c2f0ade3 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 8 Dim Carcosa ce5d30/Deck Locations 0cde73.yaml @@ -0,0 +1,179 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 232935 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2329': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/762723517659499792/63775A11C2A49441C268121108C8EBFCF512E2A9/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723517659500387/BFF1AFFD515364F0BFD336A6CE9970BE1DD04B13/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Hastur's Domain + GMNotes: '' + GUID: 60d758 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Palace of the King + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -11.5034084 + posY: 1.74260116 + posZ: 25.7536316 + rotX: 359.9391 + rotY: 269.97998 + rotZ: 180.0342 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231957 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378686851/006B65A59360F63826342C2B1A062C1AD727BD53/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378687267/945F8EF94DC605E0731E37C1BCD3FE65FCB86D02/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Otherworld. + GMNotes: '' + GUID: 1622d3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dark Spires + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -16.4692364 + posY: 1.74573135 + posZ: 28.4192219 + rotX: 359.921875 + rotY: 269.999939 + rotZ: 0.0138689764 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231946 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378686851/006B65A59360F63826342C2B1A062C1AD727BD53/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378687267/945F8EF94DC605E0731E37C1BCD3FE65FCB86D02/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Otherworld. + GMNotes: '' + GUID: 82360a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Shores of Hali + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -11.4544725 + posY: 1.73972428 + posZ: 25.64388 + rotX: 359.9341 + rotY: 269.985229 + rotZ: 0.0217933822 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378686851/006B65A59360F63826342C2B1A062C1AD727BD53/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378687267/945F8EF94DC605E0731E37C1BCD3FE65FCB86D02/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + '2329': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/762723517659499792/63775A11C2A49441C268121108C8EBFCF512E2A9/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723517659500387/BFF1AFFD515364F0BFD336A6CE9970BE1DD04B13/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 232935 +- 231957 +- 231946 +Description: '' +GMNotes: '' +GUID: 0cde73 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Locations +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 1.5685147 + posY: 1.65119708 + posZ: 2.31109643 + rotX: 359.919739 + rotY: 269.999878 + rotZ: 0.0168412067 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 8 Dim Carcosa ce5d30/Notecard Errata 1 ffd354.yaml b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 8 Dim Carcosa ce5d30/Notecard Errata 1 ffd354.yaml new file mode 100644 index 000000000..84458cb0a --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Model_Bag 8 Dim Carcosa ce5d30/Notecard Errata 1 ffd354.yaml @@ -0,0 +1,70 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +Description: "Madness Dies (319)\r\nThis act\u2019s second ability should read: \u201C\ + Hastur cannot be defeated unless an\r\ninvestigator \u2018knows the secret.\u2019\ + \u201D\r" +GMNotes: '' +GUID: ffd354 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Notecard +Nickname: Errata 1 +Snap: true +States: + '2': + Autoraise: true + ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 + Description: "Realm of Madness (338)\r\nThis card\u2019s [b][i]Revelation[/b][/i]\ + \ ability should read: \u201CDiscard cards from your play\r area and/or from\ + \ your hand\u2026\u201D" + GMNotes: '' + GUID: eb3493 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Notecard + Nickname: Errata 2 + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -48.2198257 + posY: 1.61588192 + posZ: -9.68225 + rotX: 0.07987787 + rotY: 89.9996262 + rotZ: 359.983124 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +Sticky: true +Tooltip: true +Transform: + posX: -11.1540031 + posY: 1.56000817 + posZ: -23.9453526 + rotX: 0.0798779652 + rotY: 89.99994 + rotZ: 359.983124 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Tile Carcosa Campaign Log ae8317.ttslua b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Tile Carcosa Campaign Log ae8317.ttslua new file mode 100644 index 000000000..493fdf517 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Tile Carcosa Campaign Log ae8317.ttslua @@ -0,0 +1,613 @@ +--[[ Character Sheet Template by: MrStump + +You can set up your own character sheet if you follow these steps. + +Step 1) Change the character sheet image + -Right click on the character sheet, click Custom + -Replace the image URL with one for your character sheet + -Click import, make sure your sheet loads + -SAVE THE GAME (the table setup) + -LOAD FROM THAT SAVE YOU JUST MADE + +Step 2) Edit script to fit your character sheet + -Below you will see some general options, and then the big data table + -The data table is what determines how many of which buttons are made + -Checkboxes + -Counters + -Textboxes + -By default, there are 3 of each. You can add more or remove entries + -If you intend to add/remove, be sure only to add/remove ENTRIES + -This is what an entry looks like: + { + pos = {-0.977,0.1,-0.589}, + size = 800, + state = false + }, + -Deleting the whole thing would remove that specific item on the sheet + -Copy and pasting it after another entry would create another + -Each entry type has unique data points (pos, size, state, etc) + -Do not try to add in your own data points or remove them individually + -There is a summary of what each point does at the top of its category + +Step 3) Save and check script changes + -Hit Save & Apply in the script window to save your code + -You can edit your code as needed and Save+Apply as often as needed + -When you are finished, make disableSave = false below then Save+apply + -This enables saving, so your sheet will remember whats on it. + +Bonus) Finding/Editing Positions for elements + I have included a tool to get positions for buttons in {x,y,z} form + Place it where you want the center of your element to be + Then copy the table from the notes (lower right of screen) + You can highlight it and CTRL+C + Paste it into the data table where needed (pos=) + If you want to manually tweek the values: + {0,0,0} is the center of the character sheet + {1,0,0} is right, {-1,0,0} is left + {0,0,-1} is up, {0,0,1} is down + 0.1 for Y is the height off of the page. + If it was 0, it would be down inside the model of the sheet + +Begin editing below: ]] + +--Set this to true while editing and false when you have finished +disableSave = false +--Remember to set this to false once you are done making changes +--Then, after you save & apply it, save your game too + +--Color information for button text (r,g,b, values of 0-1) +buttonFontColor = {0,0,0} +--Color information for button background +buttonColor = {1,1,1} +--Change scale of button (Avoid changing if possible) +buttonScale = {0.1,0.1,0.1} + +--This is the button placement information +defaultButtonData = { + --Add checkboxes + checkbox = { + --[[ + pos = the position (pasted from the helper tool) + size = height/width/font_size for checkbox + state = default starting value for checkbox (true=checked, false=not) + ]] + --Doubt 1 + { + pos = {-0.482,0.1,0.776}, + size = 200, + state = false + }, + --Doubt 2 + { + pos = {-0.43,0.1,0.776}, + size = 200, + state = false + }, + --Doubt 3 + { + pos = {-0.38,0.1,0.775}, + size = 200, + state = false + }, + --Doubt 4 + { + pos = {-0.325,0.1,0.778}, + size = 200, + state = false + }, + --Doubt 5 + { + pos = {-0.27,0.1,0.779}, + size = 200, + state = false + }, + --Doubt 6 + { + pos = {-0.219,0.1,0.778}, + size = 200, + state = false + }, + --Doubt 7 + { + pos = {-0.168,0.1,0.782}, + size = 200, + state = false + }, + --Doubt 8 + { + pos = {-0.111,0.1,0.783}, + size = 200, + state = false + }, + --Conviction 1 + { + pos = {-0.736,0.1,0.868}, + size = 200, + state = false + }, + --Conviction 2 + { + pos = {-0.68,0.1,0.869}, + size = 200, + state = false + }, + --Conviction 3 + { + pos = {-0.626,0.1,0.869}, + size = 200, + state = false + }, + --Conviction 4 + { + pos = {-0.574,0.1,0.874}, + size = 200, + state = false + }, + --Conviction 5 + { + pos = {-0.519,0.1,0.874}, + size = 200, + state = false + }, + --Conviction 6 + { + pos = {-0.467,0.1,0.879}, + size = 200, + state = false + }, + --Conviction 7 + { + pos = {-0.416,0.1,0.876}, + size = 200, + state = false + }, + --Conviction 8 + { + pos = {-0.357,0.1,0.879}, + size = 200, + state = false + }, + --End of checkboxes + }, + --Add counters that have a + and - button + counter = { + --[[ + pos = the position (pasted from the helper tool) + size = height/width/font_size for counter + value = default starting value for counter + hideBG = if background of counter is hidden (true=hidden, false=not) + ]] + --Slot one counter 1 + { + pos = {-0.7,0.1,-0.45}, + size = 400, + value = 0, + hideBG = true + }, + --Slot one counter 2 + { + pos = {-0.52,0.1,-0.45}, + size = 400, + value = 0, + hideBG = true + }, + --Slot one xp 1 + { + pos = {-0.517,0.1,-0.55}, + size = 300, + value = 0, + hideBG = true + }, + --Slot two counter 1 + { + pos = {-0.274,0.1,-0.445}, + size = 400, + value = 0, + hideBG = true + }, + --Slot two counter 2 + { + pos = {-0.074,0.1,-0.445}, + size = 400, + value = 0, + hideBG = true + }, + --Slot two xp 1 + { + pos = {-0.061,0.1,-0.54}, + size = 300, + value = 0, + hideBG = true + }, + --Slot three counter 1 + { + pos = {0.153,0.1,-0.44}, + size = 400, + value = 0, + hideBG = true + }, + --Slot three counter 2 + { + pos = {0.379,0.1,-0.44}, + size = 400, + value = 0, + hideBG = true + }, + --Slot three xp 1 + { + pos = {0.38,0.1,-0.54}, + size = 300, + value = 0, + hideBG = true + }, + --Slot four counter 1 + { + pos = {0.614,0.1,-0.44}, + size = 400, + value = 0, + hideBG = true + }, + --Slot four counter 2 + { + pos = {0.82,0.1,-0.44}, + size = 400, + value = 0, + hideBG = true + }, + --Slot four xp 1 + { + pos = {0.827,0.1,-0.54}, + size = 300, + value = 0, + hideBG = true + }, + --Chasing The Stranger + { + pos = {0.414,0.1,0.106}, + size = 500, + value = 0, + hideBG = true + }, + + --End of counters + }, + --Add editable text boxes + textbox = { + --[[ + pos = the position (pasted from the helper tool) + rows = how many lines of text you want for this box + width = how wide the text box is + font_size = size of text. This and "rows" effect overall height + label = what is shown when there is no text. "" = nothing + value = text entered into box. "" = nothing + alignment = Number to indicate how you want text aligned + (1=Automatic, 2=Left, 3=Center, 4=Right, 5=Justified) + ]] + --Slot one player + { + pos = {-0.637,0.1,-0.70}, + rows = 1, + width = 2000, + font_size = 150, + label = "Click to type", + value = "", + alignment = 2 + }, + --Slot one investigator + { + pos = {-0.637,0.1,-0.625}, + rows = 1, + width = 2000, + font_size = 150, + label = "Click to type", + value = "", + alignment = 2 + }, + --Slot one story + { + pos = {-0.637,0.1,-0.32}, + rows = 5, + width = 2000, + font_size = 100, + label = "Click to type", + value = "", + alignment = 2 + }, + --Slot two player + { + pos = {-0.2,0.1,-0.70}, + rows = 1, + width = 2000, + font_size = 150, + label = "Click to type", + value = "", + alignment = 2 + }, + --Slot two investigator + { + pos = {-0.2,0.1,-0.625}, + rows = 1, + width = 2000, + font_size = 150, + label = "Click to type", + value = "", + alignment = 2 + }, + --Slot two story + { + pos = {-0.2,0.1,-0.32}, + rows = 5, + width = 2000, + font_size = 100, + label = "Click to type", + value = "", + alignment = 2 + }, + --Slot three player + { + pos = {0.241,0.1,-0.70}, + rows = 1, + width = 2000, + font_size = 150, + label = "Click to type", + value = "", + alignment = 2 + }, + --Slot three investigator + { + pos = {0.237,0.1,-0.625}, + rows = 1, + width = 2000, + font_size = 150, + label = "Click to type", + value = "", + alignment = 2 + }, + --Slot three story + { + pos = {0.24,0.1,-0.32}, + rows = 5, + width = 2000, + font_size = 100, + label = "Click to type", + value = "", + alignment = 2 + }, + --Slot four player + { + pos = {0.671,0.1,-0.70}, + rows = 1, + width = 2000, + font_size = 150, + label = "Click to type", + value = "", + alignment = 2 + }, + --Slot four investigator + { + pos = {0.671,0.1,-0.625}, + rows = 1, + width = 2000, + font_size = 150, + label = "Click to type", + value = "", + alignment = 2 + }, + --Slot four story + { + pos = {0.671,0.1,-0.32}, + rows = 5, + width = 2000, + font_size = 100, + label = "Click to type", + value = "", + alignment = 2 + }, + --Campaign Notes + { + pos = {-0.38,0.1,0.339}, + rows =16, + width = 3200, + font_size = 200, + label = "Click to type", + value = "", + alignment = 2 + }, + --VIPs Interviewed + { + pos = {0.43,0.1,0.338}, + rows = 6, + width = 3500, + font_size = 150, + label = "Click to type", + value = "", + alignment = 2 + }, + --VIPs Slain + { + pos = {0.43,0.1,0.643}, + rows = 6, + width = 3500, + font_size = 150, + label = "Click to type", + value = "", + alignment = 2 + }, + --End of textboxes + } +} + + + +--Lua beyond this point, I recommend doing something more fun with your life + + + +--Save function +function updateSave() + saved_data = JSON.encode(ref_buttonData) + if disableSave==true then saved_data="" end + self.script_state = saved_data +end + +--Startup procedure +function onload(saved_data) + if disableSave==true then saved_data="" end + if saved_data ~= "" then + local loaded_data = JSON.decode(saved_data) + ref_buttonData = loaded_data + else + ref_buttonData = defaultButtonData + end + + spawnedButtonCount = 0 + createCheckbox() + createCounter() + createTextbox() +end + + + +--Click functions for buttons + + + +--Checks or unchecks the given box +function click_checkbox(tableIndex, buttonIndex) + if ref_buttonData.checkbox[tableIndex].state == true then + ref_buttonData.checkbox[tableIndex].state = false + self.editButton({index=buttonIndex, label=""}) + else + ref_buttonData.checkbox[tableIndex].state = true + self.editButton({index=buttonIndex, label=string.char(10008)}) + end + updateSave() +end + +--Applies value to given counter display +function click_counter(tableIndex, buttonIndex, amount) + ref_buttonData.counter[tableIndex].value = ref_buttonData.counter[tableIndex].value + amount + self.editButton({index=buttonIndex, label=ref_buttonData.counter[tableIndex].value}) + updateSave() +end + +--Updates saved value for given text box +function click_textbox(i, value, selected) + if selected == false then + ref_buttonData.textbox[i].value = value + updateSave() + end +end + +--Dud function for if you have a background on a counter +function click_none() end + + + +--Button creation + + + +--Makes checkboxes +function createCheckbox() + for i, data in ipairs(ref_buttonData.checkbox) do + --Sets up reference function + local buttonNumber = spawnedButtonCount + local funcName = "checkbox"..i + local func = function() click_checkbox(i, buttonNumber) end + self.setVar(funcName, func) + --Sets up label + local label = "" + if data.state==true then label=string.char(10008) end + --Creates button and counts it + self.createButton({ + label=label, click_function=funcName, function_owner=self, + position=data.pos, height=data.size, width=data.size, + font_size=data.size, scale=buttonScale, + color=buttonColor, font_color=buttonFontColor + }) + spawnedButtonCount = spawnedButtonCount + 1 + end +end + +--Makes counters +function createCounter() + for i, data in ipairs(ref_buttonData.counter) do + --Sets up display + local displayNumber = spawnedButtonCount + --Sets up label + local label = data.value + --Sets height/width for display + local size = data.size + if data.hideBG == true then size = 0 end + --Creates button and counts it + self.createButton({ + label=label, click_function="click_none", function_owner=self, + position=data.pos, height=size, width=size, + font_size=data.size, scale=buttonScale, + color=buttonColor, font_color=buttonFontColor + }) + spawnedButtonCount = spawnedButtonCount + 1 + + --Sets up add 1 + local funcName = "counterAdd"..i + local func = function() click_counter(i, displayNumber, 1) end + self.setVar(funcName, func) + --Sets up label + local label = "+" + --Sets up position + local offsetDistance = (data.size/2 + data.size/4) * (buttonScale[1] * 0.002) + local pos = {data.pos[1] + offsetDistance, data.pos[2], data.pos[3]} + --Sets up size + local size = data.size / 2 + --Creates button and counts it + self.createButton({ + label=label, click_function=funcName, function_owner=self, + position=pos, height=size, width=size, + font_size=size, scale=buttonScale, + color=buttonColor, font_color=buttonFontColor + }) + spawnedButtonCount = spawnedButtonCount + 1 + + --Sets up subtract 1 + local funcName = "counterSub"..i + local func = function() click_counter(i, displayNumber, -1) end + self.setVar(funcName, func) + --Sets up label + local label = "-" + --Set up position + local pos = {data.pos[1] - offsetDistance, data.pos[2], data.pos[3]} + --Creates button and counts it + self.createButton({ + label=label, click_function=funcName, function_owner=self, + position=pos, height=size, width=size, + font_size=size, scale=buttonScale, + color=buttonColor, font_color=buttonFontColor + }) + spawnedButtonCount = spawnedButtonCount + 1 + end +end + +function createTextbox() + for i, data in ipairs(ref_buttonData.textbox) do + --Sets up reference function + local funcName = "textbox"..i + local func = function(_,_,val,sel) click_textbox(i,val,sel) end + self.setVar(funcName, func) + + self.createInput({ + input_function = funcName, + function_owner = self, + label = data.label, + alignment = data.alignment, + position = data.pos, + scale = buttonScale, + width = data.width, + height = (data.font_size*data.rows)+24, + font_size = data.font_size, + color = buttonColor, + font_color = buttonFontColor, + value = data.value, + }) + end +end diff --git a/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Tile Carcosa Campaign Log ae8317.yaml b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Tile Carcosa Campaign Log ae8317.yaml new file mode 100644 index 000000000..224b94e5f --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to The Path to Carcosa e9889a/Custom_Tile Carcosa Campaign Log ae8317.yaml @@ -0,0 +1,254 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.1 + Type: 0 + ImageScalar: 1.0 + ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/959719855119681662/AE2992DEADE3B91D3B4EF7CCFAFE2C8C546C778C/ + ImageURL: http://cloud-3.steamusercontent.com/ugc/952965089460818573/DCD92CF4945E80C9C8AF03B39B5DAE7576EAF2FC/ + WidthScale: 0.0 +Description: '' +GMNotes: '' +GUID: ae8317 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Tile Carcosa Campaign Log ae8317.ttslua' +LuaScriptState: '{"checkbox":[{"pos":[-0.482,0.1,0.776],"size":200,"state":false},{"pos":[-0.43,0.1,0.776],"size":200,"state":false},{"pos":[-0.38,0.1,0.775],"size":200,"state":false},{"pos":[-0.325,0.1,0.778],"size":200,"state":false},{"pos":[-0.27,0.1,0.779],"size":200,"state":false},{"pos":[-0.219,0.1,0.778],"size":200,"state":false},{"pos":[-0.168,0.1,0.782],"size":200,"state":false},{"pos":[-0.111,0.1,0.783],"size":200,"state":false},{"pos":[-0.736,0.1,0.868],"size":200,"state":false},{"pos":[-0.68,0.1,0.869],"size":200,"state":false},{"pos":[-0.626,0.1,0.869],"size":200,"state":false},{"pos":[-0.574,0.1,0.874],"size":200,"state":false},{"pos":[-0.519,0.1,0.874],"size":200,"state":false},{"pos":[-0.467,0.1,0.879],"size":200,"state":false},{"pos":[-0.416,0.1,0.876],"size":200,"state":false},{"pos":[-0.357,0.1,0.879],"size":200,"state":false}],"counter":[{"hideBG":true,"pos":[-0.7,0.1,-0.45],"size":400,"value":0},{"hideBG":true,"pos":[-0.52,0.1,-0.45],"size":400,"value":0},{"hideBG":true,"pos":[-0.517,0.1,-0.55],"size":300,"value":0},{"hideBG":true,"pos":[-0.274,0.1,-0.445],"size":400,"value":0},{"hideBG":true,"pos":[-0.074,0.1,-0.445],"size":400,"value":0},{"hideBG":true,"pos":[-0.061,0.1,-0.54],"size":300,"value":0},{"hideBG":true,"pos":[0.153,0.1,-0.44],"size":400,"value":0},{"hideBG":true,"pos":[0.379,0.1,-0.44],"size":400,"value":0},{"hideBG":true,"pos":[0.38,0.1,-0.54],"size":300,"value":0},{"hideBG":true,"pos":[0.614,0.1,-0.44],"size":400,"value":0},{"hideBG":true,"pos":[0.82,0.1,-0.44],"size":400,"value":0},{"hideBG":true,"pos":[0.827,0.1,-0.54],"size":300,"value":0},{"hideBG":true,"pos":[0.414,0.1,0.106],"size":500,"value":0}],"textbox":[{"alignment":2,"font_size":150,"label":"Click + to type","pos":[-0.637,0.1,-0.7],"rows":1,"value":"","width":2000},{"alignment":2,"font_size":150,"label":"Click + to type","pos":[-0.637,0.1,-0.625],"rows":1,"value":"","width":2000},{"alignment":2,"font_size":100,"label":"Click + to type","pos":[-0.637,0.1,-0.32],"rows":5,"value":"","width":2000},{"alignment":2,"font_size":150,"label":"Click + to type","pos":[-0.2,0.1,-0.7],"rows":1,"value":"","width":2000},{"alignment":2,"font_size":150,"label":"Click + to type","pos":[-0.2,0.1,-0.625],"rows":1,"value":"","width":2000},{"alignment":2,"font_size":100,"label":"Click + to type","pos":[-0.2,0.1,-0.32],"rows":5,"value":"","width":2000},{"alignment":2,"font_size":150,"label":"Click + to type","pos":[0.241,0.1,-0.7],"rows":1,"value":"","width":2000},{"alignment":2,"font_size":150,"label":"Click + to type","pos":[0.237,0.1,-0.625],"rows":1,"value":"","width":2000},{"alignment":2,"font_size":100,"label":"Click + to type","pos":[0.24,0.1,-0.32],"rows":5,"value":"","width":2000},{"alignment":2,"font_size":150,"label":"Click + to type","pos":[0.671,0.1,-0.7],"rows":1,"value":"","width":2000},{"alignment":2,"font_size":150,"label":"Click + to type","pos":[0.671,0.1,-0.625],"rows":1,"value":"","width":2000},{"alignment":2,"font_size":100,"label":"Click + to type","pos":[0.671,0.1,-0.32],"rows":5,"value":"","width":2000},{"alignment":2,"font_size":200,"label":"Click + to type","pos":[-0.38,0.1,0.339],"rows":16,"value":"","width":3200},{"alignment":2,"font_size":150,"label":"Click + to type","pos":[0.43,0.1,0.338],"rows":6,"value":"","width":3500},{"alignment":2,"font_size":150,"label":"Click + to type","pos":[0.43,0.1,0.643],"rows":6,"value":"","width":3500}]}' +Name: Custom_Tile +Nickname: Carcosa Campaign Log +Snap: true +States: + '2': + Autoraise: true + ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 + CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.1 + Type: 0 + ImageScalar: 1.0 + ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/959719855119681662/AE2992DEADE3B91D3B4EF7CCFAFE2C8C546C778C/ + ImageURL: http://cloud-3.steamusercontent.com/ugc/952965089460818908/B6D16CCAB2915F634AA4B04AB4A72A20D2EF38AD/ + WidthScale: 0.0 + Description: '' + GMNotes: '' + GUID: 3ebd39 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: "--[[ Character Sheet Template by: MrStump\r\n\r\nYou can set\ + \ up your own character sheet if you follow these steps.\r\n\r\nStep 1) Change\ + \ the character sheet image\r\n -Right click on the character sheet, click\ + \ Custom\r\n -Replace the image URL with one for your character sheet\r\n\ + \ -Click import, make sure your sheet loads\r\n -SAVE THE GAME (the table\ + \ setup)\r\n -LOAD FROM THAT SAVE YOU JUST MADE\r\n\r\nStep 2) Edit script\ + \ to fit your character sheet\r\n -Below you will see some general options,\ + \ and then the big data table\r\n -The data table is what determines how\ + \ many of which buttons are made\r\n -Checkboxes\r\n -Counters\r\ + \n -Textboxes\r\n -By default, there are 3 of each. You can add more\ + \ or remove entries\r\n -If you intend to add/remove, be sure only to add/remove\ + \ ENTRIES\r\n -This is what an entry looks like:\r\n {\r\n\ + \ pos = {-0.977,0.1,-0.589},\r\n size = 800,\r\ + \n state = false\r\n },\r\n -Deleting the whole\ + \ thing would remove that specific item on the sheet\r\n -Copy and pasting\ + \ it after another entry would create another\r\n -Each entry type has unique\ + \ data points (pos, size, state, etc)\r\n -Do not try to add in your\ + \ own data points or remove them individually\r\n -There is a summary\ + \ of what each point does at the top of its category\r\n\r\nStep 3) Save and\ + \ check script changes\r\n -Hit Save & Apply in the script window to save\ + \ your code\r\n -You can edit your code as needed and Save+Apply as often\ + \ as needed\r\n -When you are finished, make disableSave = false below then\ + \ Save+apply\r\n -This enables saving, so your sheet will remember whats\ + \ on it.\r\n\r\nBonus) Finding/Editing Positions for elements\r\n I have\ + \ included a tool to get positions for buttons in {x,y,z} form\r\n Place\ + \ it where you want the center of your element to be\r\n Then copy the table\ + \ from the notes (lower right of screen)\r\n You can highlight it and\ + \ CTRL+C\r\n Paste it into the data table where needed (pos=)\r\n If you\ + \ want to manually tweek the values:\r\n {0,0,0} is the center of the\ + \ character sheet\r\n {1,0,0} is right, {-1,0,0} is left\r\n {0,0,-1}\ + \ is up, {0,0,1} is down\r\n 0.1 for Y is the height off of the page.\r\ + \n If it was 0, it would be down inside the model of the sheet\r\n\ + \r\nBegin editing below: ]]\r\n\r\n--Set this to true while editing and false\ + \ when you have finished\r\ndisableSave = false\r\n--Remember to set this to\ + \ false once you are done making changes\r\n--Then, after you save & apply it,\ + \ save your game too\r\n\r\n--Color information for button text (r,g,b, values\ + \ of 0-1)\r\nbuttonFontColor = {0,0,0}\r\n--Color information for button background\r\ + \nbuttonColor = {1,1,1}\r\n--Change scale of button (Avoid changing if possible)\r\ + \nbuttonScale = {0.1,0.1,0.1}\r\n\r\n--This is the button placement information\r\ + \ndefaultButtonData = {\r\n --Add checkboxes\r\n checkbox = {\r\n \ + \ --[[\r\n pos = the position (pasted from the helper tool)\r\n\ + \ size = height/width/font_size for checkbox\r\n state = default\ + \ starting value for checkbox (true=checked, false=not)\r\n ]]\r\n \ + \ --1 checkbox\r\n {\r\n pos = {-0.678,0.1,-0.147},\r\ + \n size = 250,\r\n state = false\r\n },\r\n \ + \ --2 checkbox\r\n {\r\n pos = {-0.656,0.1,-0.049},\r\ + \n size = 250,\r\n state = false\r\n },\r\n \ + \ --3 checkbox\r\n {\r\n pos = {-0.629,0.1,0.148},\r\ + \n size = 250,\r\n state = false\r\n },\r\n \ + \ --4 checkbox\r\n {\r\n pos = {-0.615,0.1,0.248},\r\ + \n size = 250,\r\n state = false\r\n },\r\n \ + \ --5 checkbox\r\n {\r\n pos = {-0.588,0.1,0.44},\r\ + \n size = 250,\r\n state = false\r\n },\r\n \ + \ --6 checkbox\r\n {\r\n pos = {-0.573,0.1,0.54},\r\ + \n size = 250,\r\n state = false\r\n },\r\n \ + \ --7 checkbox\r\n {\r\n pos = {-0.561,0.1,0.624},\r\ + \n size = 250,\r\n state = false\r\n },\r\n \ + \ --8 checkbox\r\n {\r\n pos = {-0.546,0.1,0.723},\r\ + \n size = 250,\r\n state = false\r\n },\r\n\r\n\ + \ --End of checkboxes\r\n },\r\n --Add counters that have a + and\ + \ - button\r\n counter = {\r\n --[[\r\n pos = the position\ + \ (pasted from the helper tool)\r\n size = height/width/font_size for\ + \ counter\r\n value = default starting value for counter\r\n \ + \ hideBG = if background of counter is hidden (true=hidden, false=not)\r\n \ + \ ]]\r\n --Slot one counter 1\r\n\r\n --End of counters\r\ + \n },\r\n --Add editable text boxes\r\n textbox = {\r\n --[[\r\ + \n pos = the position (pasted from the helper tool)\r\n \ + \ rows = how many lines of text you want for this box\r\n width\ + \ = how wide the text box is\r\n font_size = size of text. This and\ + \ \"rows\" effect overall height\r\n label = what is shown when there\ + \ is no text. \"\" = nothing\r\n value = text entered into box. \"\ + \" = nothing\r\n alignment = Number to indicate how you want text aligned\r\ + \n (1=Automatic, 2=Left, 3=Center, 4=Right, 5=Justified)\r\ + \n ]]\r\n\r\n --Campaign Notes\r\n {\r\n pos\ + \ = {0.5,0.1,-0.637},\r\n rows =6,\r\n width\ + \ = 3500,\r\n font_size = 200,\r\n label = \"\ + Click to type\",\r\n value = \"\",\r\n alignment =\ + \ 2\r\n },\r\n --End of textboxes\r\n }\r\n}\r\n\r\n\r\n\r\n\ + --Lua beyond this point, I recommend doing something more fun with your life\r\ + \n\r\n\r\n\r\n--Save function\r\nfunction updateSave()\r\n saved_data = JSON.encode(ref_buttonData)\r\ + \n if disableSave==true then saved_data=\"\" end\r\n self.script_state\ + \ = saved_data\r\nend\r\n\r\n--Startup procedure\r\nfunction onload(saved_data)\r\ + \n if disableSave==true then saved_data=\"\" end\r\n if saved_data ~=\ + \ \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n \ + \ ref_buttonData = loaded_data\r\n else\r\n ref_buttonData = defaultButtonData\r\ + \n end\r\n\r\n spawnedButtonCount = 0\r\n createCheckbox()\r\n createCounter()\r\ + \n createTextbox()\r\nend\r\n\r\n\r\n\r\n--Click functions for buttons\r\n\ + \r\n\r\n\r\n--Checks or unchecks the given box\r\nfunction click_checkbox(tableIndex,\ + \ buttonIndex)\r\n if ref_buttonData.checkbox[tableIndex].state == true then\r\ + \n ref_buttonData.checkbox[tableIndex].state = false\r\n self.editButton({index=buttonIndex,\ + \ label=\"\"})\r\n else\r\n ref_buttonData.checkbox[tableIndex].state\ + \ = true\r\n self.editButton({index=buttonIndex, label=string.char(10008)})\r\ + \n end\r\n updateSave()\r\nend\r\n\r\n--Applies value to given counter\ + \ display\r\nfunction click_counter(tableIndex, buttonIndex, amount)\r\n \ + \ ref_buttonData.counter[tableIndex].value = ref_buttonData.counter[tableIndex].value\ + \ + amount\r\n self.editButton({index=buttonIndex, label=ref_buttonData.counter[tableIndex].value})\r\ + \n updateSave()\r\nend\r\n\r\n--Updates saved value for given text box\r\n\ + function click_textbox(i, value, selected)\r\n if selected == false then\r\ + \n ref_buttonData.textbox[i].value = value\r\n updateSave()\r\n\ + \ end\r\nend\r\n\r\n--Dud function for if you have a background on a counter\r\ + \nfunction click_none() end\r\n\r\n\r\n\r\n--Button creation\r\n\r\n\r\n\r\n\ + --Makes checkboxes\r\nfunction createCheckbox()\r\n for i, data in ipairs(ref_buttonData.checkbox)\ + \ do\r\n --Sets up reference function\r\n local buttonNumber =\ + \ spawnedButtonCount\r\n local funcName = \"checkbox\"..i\r\n \ + \ local func = function() click_checkbox(i, buttonNumber) end\r\n self.setVar(funcName,\ + \ func)\r\n --Sets up label\r\n local label = \"\"\r\n \ + \ if data.state==true then label=string.char(10008) end\r\n --Creates\ + \ button and counts it\r\n self.createButton({\r\n label=label,\ + \ click_function=funcName, function_owner=self,\r\n position=data.pos,\ + \ height=data.size, width=data.size,\r\n font_size=data.size, scale=buttonScale,\r\ + \n color=buttonColor, font_color=buttonFontColor\r\n })\r\n\ + \ spawnedButtonCount = spawnedButtonCount + 1\r\n end\r\nend\r\n\r\ + \n--Makes counters\r\nfunction createCounter()\r\n for i, data in ipairs(ref_buttonData.counter)\ + \ do\r\n --Sets up display\r\n local displayNumber = spawnedButtonCount\r\ + \n --Sets up label\r\n local label = data.value\r\n --Sets\ + \ height/width for display\r\n local size = data.size\r\n if data.hideBG\ + \ == true then size = 0 end\r\n --Creates button and counts it\r\n \ + \ self.createButton({\r\n label=label, click_function=\"click_none\"\ + , function_owner=self,\r\n position=data.pos, height=size, width=size,\r\ + \n font_size=data.size, scale=buttonScale,\r\n color=buttonColor,\ + \ font_color=buttonFontColor\r\n })\r\n spawnedButtonCount = spawnedButtonCount\ + \ + 1\r\n\r\n --Sets up add 1\r\n local funcName = \"counterAdd\"\ + ..i\r\n local func = function() click_counter(i, displayNumber, 1) end\r\ + \n self.setVar(funcName, func)\r\n --Sets up label\r\n \ + \ local label = \"+\"\r\n --Sets up position\r\n local offsetDistance\ + \ = (data.size/2 + data.size/4) * (buttonScale[1] * 0.002)\r\n local\ + \ pos = {data.pos[1] + offsetDistance, data.pos[2], data.pos[3]}\r\n \ + \ --Sets up size\r\n local size = data.size / 2\r\n --Creates\ + \ button and counts it\r\n self.createButton({\r\n label=label,\ + \ click_function=funcName, function_owner=self,\r\n position=pos,\ + \ height=size, width=size,\r\n font_size=size, scale=buttonScale,\r\ + \n color=buttonColor, font_color=buttonFontColor\r\n })\r\n\ + \ spawnedButtonCount = spawnedButtonCount + 1\r\n\r\n --Sets up\ + \ subtract 1\r\n local funcName = \"counterSub\"..i\r\n local\ + \ func = function() click_counter(i, displayNumber, -1) end\r\n self.setVar(funcName,\ + \ func)\r\n --Sets up label\r\n local label = \"-\"\r\n \ + \ --Set up position\r\n local pos = {data.pos[1] - offsetDistance, data.pos[2],\ + \ data.pos[3]}\r\n --Creates button and counts it\r\n self.createButton({\r\ + \n label=label, click_function=funcName, function_owner=self,\r\n\ + \ position=pos, height=size, width=size,\r\n font_size=size,\ + \ scale=buttonScale,\r\n color=buttonColor, font_color=buttonFontColor\r\ + \n })\r\n spawnedButtonCount = spawnedButtonCount + 1\r\n end\r\ + \nend\r\n\r\nfunction createTextbox()\r\n for i, data in ipairs(ref_buttonData.textbox)\ + \ do\r\n --Sets up reference function\r\n local funcName = \"\ + textbox\"..i\r\n local func = function(_,_,val,sel) click_textbox(i,val,sel)\ + \ end\r\n self.setVar(funcName, func)\r\n\r\n self.createInput({\r\ + \n input_function = funcName,\r\n function_owner = self,\r\ + \n label = data.label,\r\n alignment = data.alignment,\r\ + \n position = data.pos,\r\n scale = buttonScale,\r\ + \n width = data.width,\r\n height = (data.font_size*data.rows)+24,\r\ + \n font_size = data.font_size,\r\n color \ + \ = buttonColor,\r\n font_color = buttonFontColor,\r\n \ + \ value = data.value,\r\n })\r\n end\r\nend\r\n" + LuaScriptState: '{"checkbox":[{"pos":[-0.678,0.1,-0.147],"size":250,"state":false},{"pos":[-0.656,0.1,-0.049],"size":250,"state":false},{"pos":[-0.629,0.1,0.148],"size":250,"state":false},{"pos":[-0.615,0.1,0.248],"size":250,"state":false},{"pos":[-0.588,0.1,0.44],"size":250,"state":false},{"pos":[-0.573,0.1,0.54],"size":250,"state":false},{"pos":[-0.561,0.1,0.624],"size":250,"state":false},{"pos":[-0.546,0.1,0.723],"size":250,"state":false}],"counter":[],"textbox":[{"alignment":2,"font_size":200,"label":"Click + to type","pos":[0.5,0.1,-0.637],"rows":6,"value":"","width":3500}]}' + Name: Custom_Tile + Nickname: Carcosa Campaign Log + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -12.8512821 + posY: 1.26532757 + posZ: 68.75398 + rotX: 0.0208080783 + rotY: 270.001282 + rotZ: 0.0167726446 + scaleX: 6.5 + scaleY: 1.0 + scaleZ: 6.5 + XmlUI: '' +Sticky: true +Tooltip: true +Transform: + posX: -1.46550214 + posY: 1.47562253 + posZ: -26.9304028 + rotX: 359.920135 + rotY: 270.002869 + rotZ: 0.0168676376 + scaleX: 6.5 + scaleY: 1.0 + scaleZ: 6.5 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to the Night of the Zealot 56270d.ttslua b/unpacked/Custom_Model_Bag Return to the Night of the Zealot 56270d.ttslua new file mode 100644 index 000000000..6f03e2324 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to the Night of the Zealot 56270d.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,5,-2}, rotation={0,0,0}, height=250, width=600, + font_size=150, 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={1.5,5,2}, rotation={0,0,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={-1.2,5,2}, rotation={0,0,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={-3.5,5,2}, rotation={0,0,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.7,1,-2}, rotation={0,0,0}, height=280, width=600, + font_size=200, color={0,0,0}, font_color={1,1,1} + }) + self.createButton({ + label="Recall", click_function="buttonClick_recall", function_owner=self, + position={-0.7,1,-2}, rotation={0,0,0}, height=280, width=650, + font_size=200, color={0,0,0}, font_color={1,1,1} + }) +-- self.createButton({ +-- label="Setup", click_function="buttonClick_setup", function_owner=self, +-- position={-6,1,0}, rotation={0,90,0}, height=500, width=1200, +-- font_size=350, 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 \ No newline at end of file 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 new file mode 100644 index 000000000..4f7a00f32 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to the Night of the Zealot 56270d.yaml @@ -0,0 +1,60 @@ +Autoraise: true +ColorDiffuse: + b: 0.9999998 + g: 0.992168248 + r: 0.9999998 +ContainedObjects: +- !include 'Custom_Model_Bag Return to the Night of the Zealot 56270d/Custom_Model_Bag + 1 Return to The Gathering 41ebd8.yaml' +- !include 'Custom_Model_Bag Return to the Night of the Zealot 56270d/Custom_Model_Bag + 3 Return to The Devourer Below 604753.yaml' +- !include 'Custom_Model_Bag Return to the Night of the Zealot 56270d/Custom_Model_Bag + 2 Return to The Midnight Masks bcc86c.yaml' +- !include 'Custom_Model_Bag Return to the Night of the Zealot 56270d/Custom_Tile + Night of the Zealot Campaign Log e0c3e7.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/762723517667598054/18C06F0F20D9D4651E6736FB609E2D41F4D1964E/ + MaterialIndex: 3 + MeshURL: http://pastebin.com/raw.php?i=uWAmuNZ2 + NormalURL: '' + TypeIndex: 6 +Description: '' +GMNotes: '' +GUID: 56270d +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Model_Bag Return to the Night of the Zealot 56270d.ttslua' +LuaScriptState: '{"ml":{"41ebd8":{"lock":false,"pos":{"x":12.0499,"y":1.4669,"z":7.3087},"rot":{"x":359.9201,"y":270.0003,"z":0.0169}},"604753":{"lock":false,"pos":{"x":12.0501,"y":1.4625,"z":-7.5963},"rot":{"x":359.9201,"y":270.0043,"z":0.0169}},"bcc86c":{"lock":false,"pos":{"x":12.0499,"y":1.4647,"z":0.0026},"rot":{"x":359.9201,"y":270.0319,"z":0.0168}},"e0c3e7":{"lock":false,"pos":{"x":-1.4655,"y":1.4756,"z":-26.9308},"rot":{"x":359.9201,"y":270.0076,"z":0.0169}}}}' +MaterialIndex: -1 +MeshIndex: -1 +Name: Custom_Model_Bag +Nickname: Return to the Night of the Zealot +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 63.02729 + posY: 1.77258992 + posZ: 28.5308475 + rotX: 359.9201 + rotY: 269.997833 + rotZ: 0.01687578 + scaleX: 2.00002885 + scaleY: 0.10587021 + scaleZ: 1.69295752 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to the Night of the Zealot 56270d/Custom_Model_Bag 1 Return to The Gathering 41ebd8.ttslua b/unpacked/Custom_Model_Bag Return to the Night of the Zealot 56270d/Custom_Model_Bag 1 Return to The Gathering 41ebd8.ttslua new file mode 100644 index 000000000..46067f58e --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to the Night of the Zealot 56270d/Custom_Model_Bag 1 Return to The Gathering 41ebd8.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.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.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 Return to the Night of the Zealot 56270d/Custom_Model_Bag 1 Return to The Gathering 41ebd8.yaml b/unpacked/Custom_Model_Bag Return to the Night of the Zealot 56270d/Custom_Model_Bag 1 Return to The Gathering 41ebd8.yaml new file mode 100644 index 000000000..6059b9e12 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to the Night of the Zealot 56270d/Custom_Model_Bag 1 Return to The Gathering 41ebd8.yaml @@ -0,0 +1,89 @@ +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 1 Return to The Gathering 41ebd8/Card Scenario 254c1f.yaml' +- !include 'Custom_Model_Bag 1 Return to The Gathering 41ebd8/Card Bedroom 2c2e26.yaml' +- !include 'Custom_Model_Bag 1 Return to The Gathering 41ebd8/Card Attic 377b20.yaml' +- !include 'Custom_Model_Bag 1 Return to The Gathering 41ebd8/Custom_Tile 37ba8d.yaml' +- !include 'Custom_Model_Bag 1 Return to The Gathering 41ebd8/Card Setup 5229a9.yaml' +- !include 'Custom_Model_Bag 1 Return to The Gathering 41ebd8/Custom_Tile Core Difficulty + 527f29.yaml' +- !include 'Custom_Model_Bag 1 Return to The Gathering 41ebd8/Card Cellar 5d3bcc.yaml' +- !include 'Custom_Model_Bag 1 Return to The Gathering 41ebd8/Card Study 670914.yaml' +- !include 'Custom_Model_Bag 1 Return to The Gathering 41ebd8/Custom_Tile 6ec50e.yaml' +- !include 'Custom_Model_Bag 1 Return to The Gathering 41ebd8/Custom_Tile 7234af.yaml' +- !include 'Custom_Model_Bag 1 Return to The Gathering 41ebd8/Custom_Model_Bag Set-aside + 7a167a.yaml' +- !include 'Custom_Model_Bag 1 Return to The Gathering 41ebd8/Custom_Tile 7f8292.yaml' +- !include 'Custom_Model_Bag 1 Return to The Gathering 41ebd8/Deck Agenda Deck 9af3a1.yaml' +- !include 'Custom_Model_Bag 1 Return to The Gathering 41ebd8/Deck Act Deck b053dc.yaml' +- !include 'Custom_Model_Bag 1 Return to The Gathering 41ebd8/Card Cellar b3ccaf.yaml' +- !include 'Custom_Model_Bag 1 Return to The Gathering 41ebd8/Card Guest Hall c1f7de.yaml' +- !include 'Custom_Model_Bag 1 Return to The Gathering 41ebd8/Card Attic cfcb21.yaml' +- !include 'Custom_Model_Bag 1 Return to The Gathering 41ebd8/Card Bathroom f28a24.yaml' +- !include 'Custom_Model_Bag 1 Return to The Gathering 41ebd8/Deck Encounter Deck + f98bcc.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/829135118401843935/5E922675A618CAE8EA8B94D72EE8D35837043AB8/ + MaterialIndex: 3 + MeshURL: https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj + NormalURL: '' + TypeIndex: 6 +Description: Return to the Night of the Zealot +GMNotes: '' +GUID: 41ebd8 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Model_Bag 1 Return to The Gathering 41ebd8.ttslua' +LuaScriptState: '{"ml":{"254c1f":{"lock":false,"pos":{"x":-3.956,"y":1.6556,"z":-10.4412},"rot":{"x":359.9197,"y":269.9999,"z":0.0168}},"2c2e26":{"lock":false,"pos":{"x":-30.2243,"y":1.6976,"z":7.57},"rot":{"x":359.9201,"y":270.002,"z":0.0169}},"377b20":{"lock":false,"pos":{"x":-17.1199,"y":1.6749,"z":-7.6999},"rot":{"x":359.9206,"y":270.0247,"z":0.018}},"37ba8d":{"lock":false,"pos":{"x":-26.7344,"y":1.6198,"z":3.3625},"rot":{"x":0.0684,"y":134.9986,"z":0.0446}},"5229a9":{"lock":false,"pos":{"x":-0.2945,"y":1.6505,"z":-10.4523},"rot":{"x":359.9197,"y":269.9999,"z":0.0168}},"527f29":{"lock":false,"pos":{"x":-4.0721,"y":1.583,"z":-14.3202},"rot":{"x":359.9197,"y":270.0043,"z":0.0168}},"5d3bcc":{"lock":false,"pos":{"x":-30.2071,"y":1.693,"z":-7.6951},"rot":{"x":359.9211,"y":268.7832,"z":0.0156}},"670914":{"lock":false,"pos":{"x":-17.12,"y":1.6793,"z":7.57},"rot":{"x":359.9201,"y":269.9998,"z":0.0169}},"6ec50e":{"lock":false,"pos":{"x":-23.6765,"y":1.6157,"z":3.86},"rot":{"x":0.0169,"y":179.9999,"z":0.08}},"7234af":{"lock":false,"pos":{"x":-20.5608,"y":1.6112,"z":3.4492},"rot":{"x":359.9554,"y":224.9951,"z":0.0684}},"7a167a":{"lock":false,"pos":{"x":1.696,"y":1.5583,"z":14.2788},"rot":{"x":359.9551,"y":224.9981,"z":0.0687}},"7f8292":{"lock":false,"pos":{"x":-23.6764,"y":1.6134,"z":-3.83},"rot":{"x":0.0169,"y":179.9998,"z":0.08}},"9af3a1":{"lock":false,"pos":{"x":-2.7248,"y":1.6566,"z":0.3733},"rot":{"x":0.0168,"y":180.0006,"z":0.0803}},"b053dc":{"lock":false,"pos":{"x":-2.689,"y":1.655,"z":-5.0488},"rot":{"x":0.0168,"y":180.0131,"z":0.0803}},"b3ccaf":{"lock":false,"pos":{"x":-31.9435,"y":1.8269,"z":-7.7342},"rot":{"x":4.6861,"y":270.0046,"z":0.119}},"c1f7de":{"lock":false,"pos":{"x":-23.6765,"y":1.6862,"z":-0.03},"rot":{"x":359.9201,"y":270.0075,"z":0.0169}},"cfcb21":{"lock":false,"pos":{"x":-18.8609,"y":1.8082,"z":-7.7211},"rot":{"x":4.7376,"y":270.007,"z":0.0117}},"f28a24":{"lock":false,"pos":{"x":-23.6766,"y":1.6885,"z":7.57},"rot":{"x":359.9201,"y":269.9953,"z":0.0169}},"f98bcc":{"lock":false,"pos":{"x":-3.9275,"y":1.7717,"z":5.7571},"rot":{"x":359.9197,"y":270,"z":180.0168}}}}' +MaterialIndex: -1 +MeshIndex: -1 +Name: Custom_Model_Bag +Nickname: '1: Return to The Gathering' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 12.0499029 + posY: 1.4668628 + posZ: 7.308701 + rotX: 359.920135 + rotY: 269.999969 + rotZ: 0.0168737937 + scaleX: 2.21 + scaleY: 0.46 + scaleZ: 2.42 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to the Night of the Zealot 56270d/Custom_Model_Bag 1 Return to The Gathering 41ebd8/Card Attic 377b20.yaml b/unpacked/Custom_Model_Bag Return to the Night of the Zealot 56270d/Custom_Model_Bag 1 Return to The Gathering 41ebd8/Card Attic 377b20.yaml new file mode 100644 index 000000000..4db980756 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to the Night of the Zealot 56270d/Custom_Model_Bag 1 Return to The Gathering 41ebd8/Card Attic 377b20.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 232329 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2323': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775106514377430450/FDA37585F019D453CF383D975CF1AB631ECF64B7/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377431393/4752E394498B81694A370AA6BB05BC5A4E55FD30/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 377b20 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Attic +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -17.1198978 + posY: 1.67485976 + posZ: -7.699907 + rotX: 359.920654 + rotY: 270.02475 + rotZ: 0.0180578884 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to the Night of the Zealot 56270d/Custom_Model_Bag 1 Return to The Gathering 41ebd8/Card Attic cfcb21.yaml b/unpacked/Custom_Model_Bag Return to the Night of the Zealot 56270d/Custom_Model_Bag 1 Return to The Gathering 41ebd8/Card Attic cfcb21.yaml new file mode 100644 index 000000000..c71718fa8 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to the Night of the Zealot 56270d/Custom_Model_Bag 1 Return to The Gathering 41ebd8/Card Attic cfcb21.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 232302 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2323': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775106514377430450/FDA37585F019D453CF383D975CF1AB631ECF64B7/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377431393/4752E394498B81694A370AA6BB05BC5A4E55FD30/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: cfcb21 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Attic +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -18.8609028 + posY: 1.80815172 + posZ: -7.721103 + rotX: 4.73752737 + rotY: 270.006958 + rotZ: 0.01164149 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to the Night of the Zealot 56270d/Custom_Model_Bag 1 Return to The Gathering 41ebd8/Card Bathroom f28a24.yaml b/unpacked/Custom_Model_Bag Return to the Night of the Zealot 56270d/Custom_Model_Bag 1 Return to The Gathering 41ebd8/Card Bathroom f28a24.yaml new file mode 100644 index 000000000..ae740e246 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to the Night of the Zealot 56270d/Custom_Model_Bag 1 Return to The Gathering 41ebd8/Card Bathroom f28a24.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 232327 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2323': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775106514377430450/FDA37585F019D453CF383D975CF1AB631ECF64B7/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377431393/4752E394498B81694A370AA6BB05BC5A4E55FD30/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: f28a24 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Bathroom +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -23.6766 + posY: 1.68845844 + posZ: 7.569999 + rotX: 359.9201 + rotY: 269.9953 + rotZ: 0.0168827865 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to the Night of the Zealot 56270d/Custom_Model_Bag 1 Return to The Gathering 41ebd8/Card Bedroom 2c2e26.yaml b/unpacked/Custom_Model_Bag Return to the Night of the Zealot 56270d/Custom_Model_Bag 1 Return to The Gathering 41ebd8/Card Bedroom 2c2e26.yaml new file mode 100644 index 000000000..8d47afc3b --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to the Night of the Zealot 56270d/Custom_Model_Bag 1 Return to The Gathering 41ebd8/Card Bedroom 2c2e26.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 232326 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2323': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775106514377430450/FDA37585F019D453CF383D975CF1AB631ECF64B7/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377431393/4752E394498B81694A370AA6BB05BC5A4E55FD30/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 2c2e26 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Bedroom +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -30.2243 + posY: 1.69758868 + posZ: 7.56999969 + rotX: 359.9201 + rotY: 270.0019 + rotZ: 0.0168738347 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to the Night of the Zealot 56270d/Custom_Model_Bag 1 Return to The Gathering 41ebd8/Card Cellar 5d3bcc.yaml b/unpacked/Custom_Model_Bag Return to the Night of the Zealot 56270d/Custom_Model_Bag 1 Return to The Gathering 41ebd8/Card Cellar 5d3bcc.yaml new file mode 100644 index 000000000..e05a3b537 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to the Night of the Zealot 56270d/Custom_Model_Bag 1 Return to The Gathering 41ebd8/Card Cellar 5d3bcc.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 232331 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2323': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775106514377430450/FDA37585F019D453CF383D975CF1AB631ECF64B7/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377431393/4752E394498B81694A370AA6BB05BC5A4E55FD30/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 5d3bcc +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Cellar +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -30.207098 + posY: 1.69302416 + posZ: -7.69510365 + rotX: 359.920837 + rotY: 268.783173 + rotZ: 0.0155813405 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to the Night of the Zealot 56270d/Custom_Model_Bag 1 Return to The Gathering 41ebd8/Card Cellar b3ccaf.yaml b/unpacked/Custom_Model_Bag Return to the Night of the Zealot 56270d/Custom_Model_Bag 1 Return to The Gathering 41ebd8/Card Cellar b3ccaf.yaml new file mode 100644 index 000000000..99414063f --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to the Night of the Zealot 56270d/Custom_Model_Bag 1 Return to The Gathering 41ebd8/Card Cellar b3ccaf.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 232303 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2323': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775106514377430450/FDA37585F019D453CF383D975CF1AB631ECF64B7/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377431393/4752E394498B81694A370AA6BB05BC5A4E55FD30/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: b3ccaf +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Cellar +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -31.9435043 + posY: 1.82686293 + posZ: -7.73420334 + rotX: 4.686989 + rotY: 270.004456 + rotZ: 0.118876427 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to the Night of the Zealot 56270d/Custom_Model_Bag 1 Return to The Gathering 41ebd8/Card Guest Hall c1f7de.yaml b/unpacked/Custom_Model_Bag Return to the Night of the Zealot 56270d/Custom_Model_Bag 1 Return to The Gathering 41ebd8/Card Guest Hall c1f7de.yaml new file mode 100644 index 000000000..4601c7379 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to the Night of the Zealot 56270d/Custom_Model_Bag 1 Return to The Gathering 41ebd8/Card Guest Hall c1f7de.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 232325 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2323': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775106514377430450/FDA37585F019D453CF383D975CF1AB631ECF64B7/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377431393/4752E394498B81694A370AA6BB05BC5A4E55FD30/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: c1f7de +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Guest Hall +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -23.6765 + posY: 1.68622029 + posZ: -0.03000052 + rotX: 359.9201 + rotY: 270.0075 + rotZ: 0.0168656763 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to the Night of the Zealot 56270d/Custom_Model_Bag 1 Return to The Gathering 41ebd8/Card Scenario 254c1f.yaml b/unpacked/Custom_Model_Bag Return to the Night of the Zealot 56270d/Custom_Model_Bag 1 Return to The Gathering 41ebd8/Card Scenario 254c1f.yaml new file mode 100644 index 000000000..ad6a55e0a --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to the Night of the Zealot 56270d/Custom_Model_Bag 1 Return to The Gathering 41ebd8/Card Scenario 254c1f.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 232100 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2321': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775106514377428854/F01972D15C2B4CFCB8CA72006B7E00D243683AFA/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377429266/856DF4A8D87D7B6CB71572D20908D35F4182AC45/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: The Gathering +GMNotes: '' +GUID: 254c1f +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Scenario +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.956 + posY: 1.65564811 + posZ: -10.4412012 + rotX: 359.919739 + rotY: 269.999939 + rotZ: 0.0168412235 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to the Night of the Zealot 56270d/Custom_Model_Bag 1 Return to The Gathering 41ebd8/Card Setup 5229a9.yaml b/unpacked/Custom_Model_Bag Return to the Night of the Zealot 56270d/Custom_Model_Bag 1 Return to The Gathering 41ebd8/Card Setup 5229a9.yaml new file mode 100644 index 000000000..ccd361d7c --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to the Night of the Zealot 56270d/Custom_Model_Bag 1 Return to The Gathering 41ebd8/Card Setup 5229a9.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 232118 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2321': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775106514377428854/F01972D15C2B4CFCB8CA72006B7E00D243683AFA/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377429266/856DF4A8D87D7B6CB71572D20908D35F4182AC45/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Return to The Gathering +GMNotes: '' +GUID: 5229a9 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Setup +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -0.294500083 + posY: 1.65051627 + posZ: -10.452302 + rotX: 359.919739 + rotY: 269.999939 + rotZ: 0.0168414786 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to the Night of the Zealot 56270d/Custom_Model_Bag 1 Return to The Gathering 41ebd8/Card Study 670914.yaml b/unpacked/Custom_Model_Bag Return to the Night of the Zealot 56270d/Custom_Model_Bag 1 Return to The Gathering 41ebd8/Card Study 670914.yaml new file mode 100644 index 000000000..f8a2aba81 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to the Night of the Zealot 56270d/Custom_Model_Bag 1 Return to The Gathering 41ebd8/Card Study 670914.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 232324 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2323': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775106514377430450/FDA37585F019D453CF383D975CF1AB631ECF64B7/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377431393/4752E394498B81694A370AA6BB05BC5A4E55FD30/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Aberrant Gateway +GMNotes: '' +GUID: '670914' +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Study +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -17.12 + posY: 1.67931569 + posZ: 7.56999969 + rotX: 359.9201 + rotY: 269.999817 + rotZ: 0.0168766957 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to the Night of the Zealot 56270d/Custom_Model_Bag 1 Return to The Gathering 41ebd8/Custom_Model_Bag Set-aside 7a167a.yaml b/unpacked/Custom_Model_Bag Return to the Night of the Zealot 56270d/Custom_Model_Bag 1 Return to The Gathering 41ebd8/Custom_Model_Bag Set-aside 7a167a.yaml new file mode 100644 index 000000000..f244916c7 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to the Night of the Zealot 56270d/Custom_Model_Bag 1 Return to The Gathering 41ebd8/Custom_Model_Bag Set-aside 7a167a.yaml @@ -0,0 +1,61 @@ +Autoraise: true +ColorDiffuse: + b: 0.02148666 + g: 0.00100758043 + r: 0.02148666 +ContainedObjects: +- !include 'Custom_Model_Bag Set-aside 7a167a/Card Lita Chantler af188b.yaml' +- !include 'Custom_Model_Bag Set-aside 7a167a/Card Ghoul Priest ab3719.yaml' +- !include 'Custom_Model_Bag Set-aside 7a167a/Card Parlor 377b20.yaml' +- !include 'Custom_Model_Bag Set-aside 7a167a/Card Deep Below Your House 377b20.yaml' +- !include 'Custom_Model_Bag Set-aside 7a167a/Card Far Above Your House 377b20.yaml' +- !include 'Custom_Model_Bag Set-aside 7a167a/Card Hole in the Wall c5fc31.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: '' +GMNotes: '' +GUID: 7a167a +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +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.69600081 + posY: 1.5583179 + posZ: 14.2788019 + rotX: 359.955139 + rotY: 224.998077 + rotZ: 0.06867338 + scaleX: 2.0 + scaleY: 2.0 + scaleZ: 2.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to the Night of the Zealot 56270d/Custom_Model_Bag 1 Return to The Gathering 41ebd8/Custom_Model_Bag Set-aside 7a167a/Card Deep Below Your House 377b20.yaml b/unpacked/Custom_Model_Bag Return to the Night of the Zealot 56270d/Custom_Model_Bag 1 Return to The Gathering 41ebd8/Custom_Model_Bag Set-aside 7a167a/Card Deep Below Your House 377b20.yaml new file mode 100644 index 000000000..500ffb3e0 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to the Night of the Zealot 56270d/Custom_Model_Bag 1 Return to The Gathering 41ebd8/Custom_Model_Bag Set-aside 7a167a/Card Deep Below Your House 377b20.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 232340 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2323': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775106514377430450/FDA37585F019D453CF383D975CF1AB631ECF64B7/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377431393/4752E394498B81694A370AA6BB05BC5A4E55FD30/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 377b20 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Deep Below Your House +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 34.788578 + posY: 2.50427771 + posZ: -37.25269 + rotX: 359.983276 + rotY: 269.999451 + rotZ: 0.00353678875 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to the Night of the Zealot 56270d/Custom_Model_Bag 1 Return to The Gathering 41ebd8/Custom_Model_Bag Set-aside 7a167a/Card Far Above Your House 377b20.yaml b/unpacked/Custom_Model_Bag Return to the Night of the Zealot 56270d/Custom_Model_Bag 1 Return to The Gathering 41ebd8/Custom_Model_Bag Set-aside 7a167a/Card Far Above Your House 377b20.yaml new file mode 100644 index 000000000..391d101ff --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to the Night of the Zealot 56270d/Custom_Model_Bag 1 Return to The Gathering 41ebd8/Custom_Model_Bag Set-aside 7a167a/Card Far Above Your House 377b20.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 232330 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2323': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775106514377430450/FDA37585F019D453CF383D975CF1AB631ECF64B7/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377431393/4752E394498B81694A370AA6BB05BC5A4E55FD30/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 377b20 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Far Above Your House +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.2233067 + posY: 2.53132367 + posZ: -19.0974445 + rotX: 359.983246 + rotY: 269.999664 + rotZ: 0.003538302 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to the Night of the Zealot 56270d/Custom_Model_Bag 1 Return to The Gathering 41ebd8/Custom_Model_Bag Set-aside 7a167a/Card Ghoul Priest ab3719.yaml b/unpacked/Custom_Model_Bag Return to the Night of the Zealot 56270d/Custom_Model_Bag 1 Return to The Gathering 41ebd8/Custom_Model_Bag Set-aside 7a167a/Card Ghoul Priest ab3719.yaml new file mode 100644 index 000000000..b42ade58b --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to the Night of the Zealot 56270d/Custom_Model_Bag 1 Return to The Gathering 41ebd8/Custom_Model_Bag Set-aside 7a167a/Card Ghoul Priest ab3719.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 231700 +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 + UniqueBack: false +Description: Humanoid. Monster. Ghoul. Elite. +GMNotes: '' +GUID: ab3719 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Ghoul Priest +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 7.79273129 + posY: 3.60550761 + posZ: 26.71949 + rotX: 359.9191 + rotY: 269.999725 + rotZ: 0.0170720164 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to the Night of the Zealot 56270d/Custom_Model_Bag 1 Return to The Gathering 41ebd8/Custom_Model_Bag Set-aside 7a167a/Card Hole in the Wall c5fc31.yaml b/unpacked/Custom_Model_Bag Return to the Night of the Zealot 56270d/Custom_Model_Bag 1 Return to The Gathering 41ebd8/Custom_Model_Bag Set-aside 7a167a/Card Hole in the Wall c5fc31.yaml new file mode 100644 index 000000000..c367be6b7 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to the Night of the Zealot 56270d/Custom_Model_Bag 1 Return to The Gathering 41ebd8/Custom_Model_Bag Set-aside 7a167a/Card Hole in the Wall c5fc31.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 232328 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2323': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775106514377430450/FDA37585F019D453CF383D975CF1AB631ECF64B7/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377431393/4752E394498B81694A370AA6BB05BC5A4E55FD30/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: c5fc31 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Hole in the Wall +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 1.69642222 + posY: 3.72846365 + posZ: 14.2788372 + rotX: 359.94812 + rotY: 224.998062 + rotZ: 0.0583304428 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to the Night of the Zealot 56270d/Custom_Model_Bag 1 Return to The Gathering 41ebd8/Custom_Model_Bag Set-aside 7a167a/Card Lita Chantler af188b.yaml b/unpacked/Custom_Model_Bag Return to the Night of the Zealot 56270d/Custom_Model_Bag 1 Return to The Gathering 41ebd8/Custom_Model_Bag Set-aside 7a167a/Card Lita Chantler af188b.yaml new file mode 100644 index 000000000..cfcac7e1d --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to the Night of the Zealot 56270d/Custom_Model_Bag 1 Return to The Gathering 41ebd8/Custom_Model_Bag Set-aside 7a167a/Card Lita Chantler af188b.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 231850 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: The Zealot +GMNotes: '' +GUID: af188b +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Lita Chantler +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 7.45915365 + posY: 3.60572672 + posZ: 26.2033443 + rotX: 359.93222 + rotY: 269.992767 + rotZ: 0.0270068236 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to the Night of the Zealot 56270d/Custom_Model_Bag 1 Return to The Gathering 41ebd8/Custom_Model_Bag Set-aside 7a167a/Card Parlor 377b20.yaml b/unpacked/Custom_Model_Bag Return to the Night of the Zealot 56270d/Custom_Model_Bag 1 Return to The Gathering 41ebd8/Custom_Model_Bag Set-aside 7a167a/Card Parlor 377b20.yaml new file mode 100644 index 000000000..882300a79 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to the Night of the Zealot 56270d/Custom_Model_Bag 1 Return to The Gathering 41ebd8/Custom_Model_Bag Set-aside 7a167a/Card Parlor 377b20.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 232304 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2323': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775106514377430450/FDA37585F019D453CF383D975CF1AB631ECF64B7/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377431393/4752E394498B81694A370AA6BB05BC5A4E55FD30/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 377b20 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Parlor +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 8.794919 + posY: 3.60436845 + posZ: 26.1716137 + rotX: 359.9196 + rotY: 270.001678 + rotZ: 0.01614667 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to the Night of the Zealot 56270d/Custom_Model_Bag 1 Return to The Gathering 41ebd8/Custom_Tile 37ba8d.yaml b/unpacked/Custom_Model_Bag Return to the Night of the Zealot 56270d/Custom_Model_Bag 1 Return to The Gathering 41ebd8/Custom_Tile 37ba8d.yaml new file mode 100644 index 000000000..cfb5f2dd7 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to the Night of the Zealot 56270d/Custom_Model_Bag 1 Return to The Gathering 41ebd8/Custom_Tile 37ba8d.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 37ba8d +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.7344 + posY: 1.61976969 + posZ: 3.36249971 + rotX: 0.06843231 + rotY: 134.998642 + rotZ: 0.04456049 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to the Night of the Zealot 56270d/Custom_Model_Bag 1 Return to The Gathering 41ebd8/Custom_Tile 6ec50e.yaml b/unpacked/Custom_Model_Bag Return to the Night of the Zealot 56270d/Custom_Model_Bag 1 Return to The Gathering 41ebd8/Custom_Tile 6ec50e.yaml new file mode 100644 index 000000000..fd6da20df --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to the Night of the Zealot 56270d/Custom_Model_Bag 1 Return to The Gathering 41ebd8/Custom_Tile 6ec50e.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 6ec50e +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.6765 + posY: 1.61565208 + posZ: 3.86 + rotX: 0.01687188 + rotY: 179.999924 + rotZ: 0.0799362361 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to the Night of the Zealot 56270d/Custom_Model_Bag 1 Return to The Gathering 41ebd8/Custom_Tile 7234af.yaml b/unpacked/Custom_Model_Bag Return to the Night of the Zealot 56270d/Custom_Model_Bag 1 Return to The Gathering 41ebd8/Custom_Tile 7234af.yaml new file mode 100644 index 000000000..cf8e286b2 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to the Night of the Zealot 56270d/Custom_Model_Bag 1 Return to The Gathering 41ebd8/Custom_Tile 7234af.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 7234af +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.5608 + posY: 1.61118639 + posZ: 3.44920015 + rotX: 359.955444 + rotY: 224.99501 + rotZ: 0.06841179 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to the Night of the Zealot 56270d/Custom_Model_Bag 1 Return to The Gathering 41ebd8/Custom_Tile 7f8292.yaml b/unpacked/Custom_Model_Bag Return to the Night of the Zealot 56270d/Custom_Model_Bag 1 Return to The Gathering 41ebd8/Custom_Tile 7f8292.yaml new file mode 100644 index 000000000..23081cc4b --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to the Night of the Zealot 56270d/Custom_Model_Bag 1 Return to The Gathering 41ebd8/Custom_Tile 7f8292.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 7f8292 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.6764 + posY: 1.6133877 + posZ: -3.83 + rotX: 0.016872149 + rotY: 179.999771 + rotZ: 0.0799398646 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to the Night of the Zealot 56270d/Custom_Model_Bag 1 Return to The Gathering 41ebd8/Custom_Tile Core Difficulty 527f29.ttslua b/unpacked/Custom_Model_Bag Return to the Night of the Zealot 56270d/Custom_Model_Bag 1 Return to The Gathering 41ebd8/Custom_Tile Core Difficulty 527f29.ttslua new file mode 100644 index 000000000..c7ea585c8 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to the Night of the Zealot 56270d/Custom_Model_Bag 1 Return to The Gathering 41ebd8/Custom_Tile Core Difficulty 527f29.ttslua @@ -0,0 +1,21 @@ +name = 'Core Set' + +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 Return to the Night of the Zealot 56270d/Custom_Model_Bag 1 Return to The Gathering 41ebd8/Custom_Tile Core Difficulty 527f29.yaml b/unpacked/Custom_Model_Bag Return to the Night of the Zealot 56270d/Custom_Model_Bag 1 Return to The Gathering 41ebd8/Custom_Tile Core Difficulty 527f29.yaml new file mode 100644 index 000000000..d0d1277c3 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to the Night of the Zealot 56270d/Custom_Model_Bag 1 Return to The Gathering 41ebd8/Custom_Tile Core Difficulty 527f29.yaml @@ -0,0 +1,42 @@ +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 +GMNotes: '' +GUID: 527f29 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Tile Core Difficulty 527f29.ttslua' +LuaScriptState: '' +Name: Custom_Tile +Nickname: Core Difficulty +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -4.0721 + posY: 1.58295751 + posZ: -14.3202019 + rotX: 359.919739 + rotY: 270.004272 + rotZ: 0.01683186 + scaleX: 2.2 + scaleY: 1.0 + scaleZ: 2.2 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to the Night of the Zealot 56270d/Custom_Model_Bag 1 Return to The Gathering 41ebd8/Deck Act Deck b053dc.yaml b/unpacked/Custom_Model_Bag Return to the Night of the Zealot 56270d/Custom_Model_Bag 1 Return to The Gathering 41ebd8/Deck Act Deck b053dc.yaml new file mode 100644 index 000000000..dac4479f3 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to the Night of the Zealot 56270d/Custom_Model_Bag 1 Return to The Gathering 41ebd8/Deck Act Deck b053dc.yaml @@ -0,0 +1,172 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 232406 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2324': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775106514377428854/F01972D15C2B4CFCB8CA72006B7E00D243683AFA/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377429266/856DF4A8D87D7B6CB71572D20908D35F4182AC45/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 3 + GMNotes: '' + GUID: '633954' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: What Have You Done? + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.0536842 + posY: 1.54011273 + posZ: 31.34863 + rotX: 0.0105464933 + rotY: 180.030472 + rotZ: 0.0720803 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232405 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2324': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775106514377428854/F01972D15C2B4CFCB8CA72006B7E00D243683AFA/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377429266/856DF4A8D87D7B6CB71572D20908D35F4182AC45/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 2 + GMNotes: '' + GUID: 3ea05e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Barrier + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.2235432 + posY: 1.68532252 + posZ: 31.0495453 + rotX: -0.00531547936 + rotY: 180.0322 + rotZ: 0.0185572281 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232419 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2324': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775106514377428854/F01972D15C2B4CFCB8CA72006B7E00D243683AFA/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377429266/856DF4A8D87D7B6CB71572D20908D35F4182AC45/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 1 + GMNotes: '' + GUID: fba792 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Mysterious Gateway + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.68852329 + posY: 1.82238781 + posZ: -5.0485816 + rotX: 0.0360360667 + rotY: 179.999908 + rotZ: 0.0682327747 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2324': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775106514377428854/F01972D15C2B4CFCB8CA72006B7E00D243683AFA/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377429266/856DF4A8D87D7B6CB71572D20908D35F4182AC45/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 232406 +- 232405 +- 232419 +Description: '' +GMNotes: '' +GUID: b053dc +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Act Deck +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.689 + posY: 1.654998 + posZ: -5.04880047 + rotX: 0.0168165863 + rotY: 180.013138 + rotZ: 0.08026124 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to the Night of the Zealot 56270d/Custom_Model_Bag 1 Return to The Gathering 41ebd8/Deck Agenda Deck 9af3a1.yaml b/unpacked/Custom_Model_Bag Return to the Night of the Zealot 56270d/Custom_Model_Bag 1 Return to The Gathering 41ebd8/Deck Agenda Deck 9af3a1.yaml new file mode 100644 index 000000000..13735b9c1 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to the Night of the Zealot 56270d/Custom_Model_Bag 1 Return to The Gathering 41ebd8/Deck Agenda Deck 9af3a1.yaml @@ -0,0 +1,172 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 232403 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2324': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775106514377428854/F01972D15C2B4CFCB8CA72006B7E00D243683AFA/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377429266/856DF4A8D87D7B6CB71572D20908D35F4182AC45/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 3 + GMNotes: '' + GUID: 3c8849 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: They're Getting Out! + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 10.750123 + posY: 1.69330168 + posZ: 34.5822639 + rotX: 358.0147 + rotY: 180.207428 + rotZ: 355.322632 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232402 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2324': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775106514377428854/F01972D15C2B4CFCB8CA72006B7E00D243683AFA/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377429266/856DF4A8D87D7B6CB71572D20908D35F4182AC45/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 2 + GMNotes: '' + GUID: c593b7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Rise of the Ghouls + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 10.6825838 + posY: 1.893647 + posZ: 34.7332954 + rotX: 359.8063 + rotY: 180.017151 + rotZ: 355.3215 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232401 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2324': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775106514377428854/F01972D15C2B4CFCB8CA72006B7E00D243683AFA/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377429266/856DF4A8D87D7B6CB71572D20908D35F4182AC45/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 1 + GMNotes: '' + GUID: '633954' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: What's Going On?! + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 10.5238991 + posY: 1.72700119 + posZ: 34.16916 + rotX: 0.0166657362 + rotY: 179.994751 + rotZ: 0.07937047 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2324': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775106514377428854/F01972D15C2B4CFCB8CA72006B7E00D243683AFA/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377429266/856DF4A8D87D7B6CB71572D20908D35F4182AC45/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 232403 +- 232402 +- 232401 +Description: '' +GMNotes: '' +GUID: 9af3a1 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Agenda Deck +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.72479987 + posY: 1.65664124 + posZ: 0.373300284 + rotX: 0.01683416 + rotY: 180.000626 + rotZ: 0.0802579 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to the Night of the Zealot 56270d/Custom_Model_Bag 1 Return to The Gathering 41ebd8/Deck Encounter Deck f98bcc.yaml b/unpacked/Custom_Model_Bag Return to the Night of the Zealot 56270d/Custom_Model_Bag 1 Return to The Gathering 41ebd8/Deck Encounter Deck f98bcc.yaml new file mode 100644 index 000000000..f35eee27a --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to the Night of the Zealot 56270d/Custom_Model_Bag 1 Return to The Gathering 41ebd8/Deck Encounter Deck f98bcc.yaml @@ -0,0 +1,1333 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 231739 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 5b4ef3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Chill from Below + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -25.5324268 + posY: 1.59864092 + posZ: 33.35978 + rotX: 359.920135 + rotY: 269.999817 + rotZ: 0.0168426409 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231739 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: fa916a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Chill from Below + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -25.095953 + posY: 1.76498652 + posZ: 33.6871719 + rotX: 359.9181 + rotY: 269.999878 + rotZ: 0.0131390868 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231739 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 5b4ef3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Chill from Below + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -25.0959339 + posY: 1.77885532 + posZ: 33.68717 + rotX: 359.920319 + rotY: 269.999878 + rotZ: 0.0163987149 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231738 + 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 + UniqueBack: false + Description: Humanoid. Monster. Ghoul. + GMNotes: '' + GUID: cadd49 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: "Acolyte of Um\xF4rdhoth" + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -25.8445168 + posY: 1.59990489 + posZ: 36.2778969 + rotX: 359.920441 + rotY: 269.995728 + rotZ: 0.01474889 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231737 + 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 + UniqueBack: false + Description: Humanoid. Monster. Ghoul. + GMNotes: '' + GUID: ab3719 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Grave-Eater + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -25.9238586 + posY: 1.60099757 + posZ: 39.56222 + rotX: 359.9203 + rotY: 270.005859 + rotZ: 0.0158384759 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231737 + 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 + UniqueBack: false + Description: Humanoid. Monster. Ghoul. + GMNotes: '' + GUID: 4d726b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Grave-Eater + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -26.18154 + posY: 1.76863384 + posZ: 39.29493 + rotX: 359.92218 + rotY: 270.005859 + rotZ: 0.0167646986 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231737 + 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 + UniqueBack: false + Description: Humanoid. Monster. Ghoul. + GMNotes: '' + GUID: ab3719 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Grave-Eater + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -26.055315 + posY: 1.78233588 + posZ: 39.3050423 + rotX: 359.920074 + rotY: 270.005859 + rotZ: 0.0165559836 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231749 + 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 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: 891dd5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Zealot's Seal + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -24.9986839 + posY: 1.76613092 + posZ: 29.5493069 + rotX: 359.922241 + rotY: 270.000183 + rotZ: 180.01796 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231749 + 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 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: ab3719 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Zealot's Seal + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -25.0776443 + posY: 1.59972811 + posZ: 29.644537 + rotX: 359.9202 + rotY: 270.000244 + rotZ: 180.0174 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231748 + 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 + UniqueBack: false + Description: Humanoid. Monster. Ghoul. + GMNotes: '' + GUID: b29f35 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ghoul from the Depths + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -26.28309 + posY: 1.76587307 + posZ: 37.53138 + rotX: 359.937531 + rotY: 269.999878 + rotZ: 180.015259 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231747 + 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 + UniqueBack: false + Description: Humanoid. Monster. Ghoul. + GMNotes: '' + GUID: 832d7e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Corpse-Hungry Ghoul + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -26.24879 + posY: 1.76663435 + posZ: 36.66365 + rotX: 359.935333 + rotY: 270.0 + rotZ: 180.018082 + 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 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: 50e716 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: c4ce76 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: ab3719 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: 16d6d6 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: 6e7cb8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: 8af879 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: 6e7cb8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: f5c831 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: 97416f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: 0f4202 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: c70601 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: ab3719 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: 435a47 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: ab3719 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 231712 + 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 + UniqueBack: false + Description: Creature. + GMNotes: '' + GUID: ab3719 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Swarm of Rats + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 15.456192 + posY: 1.53138053 + posZ: -0.8908986 + rotX: 359.92038 + rotY: 270.0 + rotZ: 0.0147123663 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231712 + 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 + UniqueBack: false + Description: Creature. + GMNotes: '' + GUID: a2cf85 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Swarm of Rats + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 15.4186563 + posY: 1.68472993 + posZ: -0.738109052 + rotX: 359.913422 + rotY: 270.000122 + rotZ: 0.0100070881 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231712 + 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 + UniqueBack: false + Description: Creature. + GMNotes: '' + GUID: ab3719 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Swarm of Rats + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 15.4186554 + posY: 1.69875109 + posZ: -0.738129 + rotX: 359.918427 + rotY: 270.0001 + rotZ: 0.0155182732 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231702 + 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 + UniqueBack: false + Description: Humanoid. Monster. Ghoul. + GMNotes: '' + GUID: ab3719 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Icy Ghoul + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 12.6636543 + posY: 1.54657423 + posZ: 37.5398254 + rotX: 359.920532 + rotY: 269.9993 + rotZ: 0.0137309171 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231701 + 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 + UniqueBack: false + Description: Humanoid. Monster. Ghoul. + GMNotes: '' + GUID: cab587 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Flesh-Eater + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 13.0099249 + posY: 1.69600558 + posZ: 37.5811234 + rotX: 359.925934 + rotY: 269.999084 + rotZ: 0.0123997116 + 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 + UniqueBack: false +DeckIDs: +- 231739 +- 231739 +- 231739 +- 231738 +- 231737 +- 231737 +- 231737 +- 231749 +- 231749 +- 231748 +- 231747 +- 231721 +- 231721 +- 231720 +- 231720 +- 231719 +- 231719 +- 231719 +- 231718 +- 231718 +- 231717 +- 231717 +- 231716 +- 231716 +- 231716 +- 231712 +- 231712 +- 231712 +- 231702 +- 231701 +Description: '' +GMNotes: '' +GUID: f98bcc +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Encounter Deck +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.9275 + posY: 1.77170968 + posZ: 5.757101 + rotX: 359.919739 + rotY: 270.0 + rotZ: 180.016815 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to the Night of the Zealot 56270d/Custom_Model_Bag 2 Return to The Midnight Masks bcc86c.ttslua b/unpacked/Custom_Model_Bag Return to the Night of the Zealot 56270d/Custom_Model_Bag 2 Return to The Midnight Masks bcc86c.ttslua new file mode 100644 index 000000000..34e9ba52b --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to the Night of the Zealot 56270d/Custom_Model_Bag 2 Return to The Midnight Masks bcc86c.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.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.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 Return to the Night of the Zealot 56270d/Custom_Model_Bag 2 Return to The Midnight Masks bcc86c.yaml b/unpacked/Custom_Model_Bag Return to the Night of the Zealot 56270d/Custom_Model_Bag 2 Return to The Midnight Masks bcc86c.yaml new file mode 100644 index 000000000..c532d1474 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to the Night of the Zealot 56270d/Custom_Model_Bag 2 Return to The Midnight Masks bcc86c.yaml @@ -0,0 +1,117 @@ +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 2 Return to The Midnight Masks bcc86c/Deck Encounter + Deck 28e161.yaml' +- !include 'Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Bag Agenda decks + pick 1 b99f05.yaml' +- !include 'Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Card Uncovering + the Conspiracy f859a4.yaml' +- !include 'Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Card Scenario a22908.yaml' +- !include 'Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Card Setup 250d52.yaml' +- !include 'Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Custom_Tile Core + Difficulty 47f3de.yaml' +- !include 'Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Custom_Tile 2432ab.yaml' +- !include 'Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Card Downtown 1aa7cb.yaml' +- !include 'Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Card Downtown 08e13b.yaml' +- !include 'Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Custom_Tile 261175.yaml' +- !include 'Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Card Easttown 88245c.yaml' +- !include 'Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Card Easttown e9bb0a.yaml' +- !include 'Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Custom_Tile 453ebf.yaml' +- !include 'Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Card Northside + 8aa8fd.yaml' +- !include 'Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Card Northside + 86faac.yaml' +- !include 'Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Custom_Tile 814638.yaml' +- !include 'Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Card Miskatonic + University cedb0a.yaml' +- !include 'Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Card Miskatonic + University e0962c.yaml' +- !include 'Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Custom_Tile 9afc26.yaml' +- !include 'Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Card Rivertown + 86b480.yaml' +- !include 'Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Custom_Tile 5eee6e.yaml' +- !include 'Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Card Graveyard + e1b8fc.yaml' +- !include 'Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Card Rivertown + da0b77.yaml' +- !include 'Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Custom_Tile b42670.yaml' +- !include 'Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Custom_Tile 40c3a4.yaml' +- !include 'Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Custom_Tile e26fc3.yaml' +- !include 'Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Custom_Tile 81d86f.yaml' +- !include 'Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Card St. Mary''s + Hospital fac63b.yaml' +- !include 'Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Custom_Tile 711ec9.yaml' +- !include 'Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Card Southside + 076b61.yaml' +- !include 'Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Card Southside + 377b20.yaml' +- !include 'Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Card Your House + b28633.yaml' +- !include 'Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Custom_Tile 7234af.yaml' +- !include 'Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Custom_Model_Bag + Set-aside e4821e.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/829135118401844462/DB9EB90FAED569A6844CB68AC0A60F99BE1AC2A1/ + MaterialIndex: 3 + MeshURL: https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj + NormalURL: '' + TypeIndex: 6 +Description: Return to the Night of the Zealot +GMNotes: '' +GUID: bcc86c +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Model_Bag 2 Return to The Midnight Masks bcc86c.ttslua' +LuaScriptState: '{"ml":{"076b61":{"lock":false,"pos":{"x":-30.2241,"y":1.6954,"z":-0.0301},"rot":{"x":359.9206,"y":270.0014,"z":0.0178}},"08e13b":{"lock":false,"pos":{"x":-17.1199,"y":1.6771,"z":-0.03},"rot":{"x":359.9202,"y":270.0006,"z":0.0158}},"1aa7cb":{"lock":false,"pos":{"x":-15.4693,"y":1.8129,"z":-0.0417},"rot":{"x":354.8367,"y":269.9908,"z":0.0106}},"2432ab":{"lock":false,"pos":{"x":0.2826,"y":1.5763,"z":-16.3088},"rot":{"x":359.9197,"y":270.0284,"z":0.0168}},"250d52":{"lock":false,"pos":{"x":-6.1919,"y":1.7607,"z":-10.4684},"rot":{"x":3.6714,"y":270.0193,"z":0.0169}},"261175":{"lock":false,"pos":{"x":-17.12,"y":1.6042,"z":-3.83},"rot":{"x":0.0169,"y":179.9965,"z":0.0799}},"28e161":{"lock":false,"pos":{"x":-3.9274,"y":1.7344,"z":5.7571},"rot":{"x":359.9197,"y":270,"z":180.0168}},"377b20":{"lock":false,"pos":{"x":-31.8945,"y":1.8341,"z":-0.002},"rot":{"x":4.9354,"y":269.9871,"z":0.0037}},"40c3a4":{"lock":false,"pos":{"x":-26.9844,"y":1.618,"z":-3.9073},"rot":{"x":0.0446,"y":45.0001,"z":359.9316}},"453ebf":{"lock":false,"pos":{"x":-17.1202,"y":1.6065,"z":3.8581},"rot":{"x":0.0169,"y":179.9971,"z":0.08}},"47f3de":{"lock":false,"pos":{"x":-3.3583,"y":1.5815,"z":-15.9833},"rot":{"x":359.9197,"y":270.0041,"z":0.0168}},"5eee6e":{"lock":false,"pos":{"x":-23.6765,"y":1.6134,"z":-3.83},"rot":{"x":0.0169,"y":179.9967,"z":0.0799}},"711ec9":{"lock":false,"pos":{"x":-30.2241,"y":1.6248,"z":3.86},"rot":{"x":0.0169,"y":179.9971,"z":0.08}},"7234af":{"lock":false,"pos":{"x":-26.7605,"y":1.6188,"z":-0.014},"rot":{"x":359.9201,"y":269.9854,"z":0.0169}},"814638":{"lock":false,"pos":{"x":-20.2732,"y":1.612,"z":7.649},"rot":{"x":0.0793,"y":89.9995,"z":359.9828}},"81d86f":{"lock":false,"pos":{"x":-26.9036,"y":1.6213,"z":7.6326},"rot":{"x":0.0799,"y":89.9999,"z":359.9831}},"86b480":{"lock":false,"pos":{"x":-23.6782,"y":1.6862,"z":-0.0298},"rot":{"x":359.9204,"y":270.0104,"z":0.0153}},"86faac":{"lock":false,"pos":{"x":-15.7349,"y":1.7293,"z":7.6008},"rot":{"x":0.0856,"y":269.9966,"z":359.9038}},"88245c":{"lock":false,"pos":{"x":-17.12,"y":1.6748,"z":-7.7},"rot":{"x":359.9203,"y":269.9999,"z":0.0163}},"8aa8fd":{"lock":false,"pos":{"x":-17.12,"y":1.6793,"z":7.57},"rot":{"x":359.9201,"y":270.0015,"z":0.0168}},"9afc26":{"lock":false,"pos":{"x":-23.6765,"y":1.6157,"z":3.86},"rot":{"x":0.0169,"y":179.9967,"z":0.0799}},"a22908":{"lock":false,"pos":{"x":-3.9558,"y":1.6556,"z":-10.4414},"rot":{"x":359.92,"y":270.0122,"z":0.0165}},"b28633":{"lock":false,"pos":{"x":-30.2243,"y":1.6931,"z":-7.7002},"rot":{"x":359.9201,"y":269.9995,"z":0.0169}},"b42670":{"lock":false,"pos":{"x":-20.2002,"y":1.6087,"z":-3.4434},"rot":{"x":0.0684,"y":135,"z":0.0446}},"b99f05":{"lock":false,"pos":{"x":-2.7249,"y":1.4004,"z":0.3734},"rot":{"x":359.9832,"y":0,"z":359.9197}},"cedb0a":{"lock":false,"pos":{"x":-22.2407,"y":1.7806,"z":7.636},"rot":{"x":0.2648,"y":269.9677,"z":0.0162}},"da0b77":{"lock":false,"pos":{"x":-21.9405,"y":1.815,"z":-0.0836},"rot":{"x":355.0872,"y":270.0024,"z":0.0167}},"e0962c":{"lock":false,"pos":{"x":-23.6772,"y":1.6977,"z":7.5697},"rot":{"x":0.2603,"y":269.9915,"z":0.017}},"e1b8fc":{"lock":false,"pos":{"x":-23.6766,"y":1.684,"z":-7.7},"rot":{"x":359.9201,"y":269.9984,"z":0.0169}},"e26fc3":{"lock":false,"pos":{"x":-26.3742,"y":1.6195,"z":4.2633},"rot":{"x":0.0446,"y":45,"z":359.9316}},"e4821e":{"lock":false,"pos":{"x":1.696,"y":1.5583,"z":14.2787},"rot":{"x":359.9551,"y":224.998,"z":0.0687}},"e9bb0a":{"lock":false,"pos":{"x":-15.488,"y":1.8123,"z":-7.6626},"rot":{"x":354.7821,"y":269.9984,"z":0.0046}},"f859a4":{"lock":false,"pos":{"x":-2.6886,"y":1.6555,"z":-5.0485},"rot":{"x":0.0168,"y":180.002,"z":0.0803}},"fac63b":{"lock":false,"pos":{"x":-30.2242,"y":1.6976,"z":7.57},"rot":{"x":359.9201,"y":269.9997,"z":0.0169}}}}' +MaterialIndex: -1 +MeshIndex: -1 +Name: Custom_Model_Bag +Nickname: '2: Return to The Midnight Masks' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 12.0499 + posY: 1.46471119 + posZ: 0.00259979954 + rotX: 359.9201 + rotY: 270.032166 + rotZ: 0.0168277677 + scaleX: 2.21 + scaleY: 0.46 + scaleZ: 2.42 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to the Night of the Zealot 56270d/Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Bag Agenda decks pick 1 b99f05.yaml b/unpacked/Custom_Model_Bag Return to the Night of the Zealot 56270d/Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Bag Agenda decks pick 1 b99f05.yaml new file mode 100644 index 000000000..240d9679e --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to the Night of the Zealot 56270d/Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Bag Agenda decks pick 1 b99f05.yaml @@ -0,0 +1,37 @@ +Autoraise: true +ColorDiffuse: + b: 0.249999851 + g: 0.249999851 + r: 0.249999851 +ContainedObjects: +- !include 'Bag Agenda decks pick 1 b99f05/Deck Agenda Deck 22482b.yaml' +- !include 'Bag Agenda decks pick 1 b99f05/Deck Agenda Deck d6c0a2.yaml' +Description: '' +GMNotes: '' +GUID: b99f05 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +MeshIndex: -1 +Name: Bag +Nickname: Agenda decks pick 1 +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.72489953 + posY: 1.400355 + posZ: 0.3734013 + rotX: 359.983154 + rotY: -1.38875412e-05 + rotZ: 359.919678 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to the Night of the Zealot 56270d/Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Bag Agenda decks pick 1 b99f05/Deck Agenda Deck 22482b.yaml b/unpacked/Custom_Model_Bag Return to the Night of the Zealot 56270d/Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Bag Agenda decks pick 1 b99f05/Deck Agenda Deck 22482b.yaml new file mode 100644 index 000000000..d146a31d8 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to the Night of the Zealot 56270d/Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Bag Agenda decks pick 1 b99f05/Deck Agenda Deck 22482b.yaml @@ -0,0 +1,136 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 232409 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2324': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775106514377428854/F01972D15C2B4CFCB8CA72006B7E00D243683AFA/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377429266/856DF4A8D87D7B6CB71572D20908D35F4182AC45/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 2 + GMNotes: '' + GUID: '633954' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Time is Running Short + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 10.9444427 + posY: 1.54599309 + posZ: 27.2540646 + rotX: 0.0168595426 + rotY: 180.000336 + rotZ: 0.0800404847 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232108 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2321': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775106514377428854/F01972D15C2B4CFCB8CA72006B7E00D243683AFA/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377429266/856DF4A8D87D7B6CB71572D20908D35F4182AC45/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 1 + GMNotes: '' + GUID: 1c19e2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Predator or Prey? + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 10.6250229 + posY: 1.70773172 + posZ: 27.3578815 + rotX: 0.0151049038 + rotY: 180.000015 + rotZ: 0.06792285 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2321': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775106514377428854/F01972D15C2B4CFCB8CA72006B7E00D243683AFA/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377429266/856DF4A8D87D7B6CB71572D20908D35F4182AC45/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + '2324': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775106514377428854/F01972D15C2B4CFCB8CA72006B7E00D243683AFA/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377429266/856DF4A8D87D7B6CB71572D20908D35F4182AC45/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 232409 +- 232108 +Description: '' +GMNotes: '' +GUID: 22482b +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Agenda Deck +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 9.417931 + posY: 3.62742257 + posZ: 20.2837448 + rotX: 359.567841 + rotY: 180.001862 + rotZ: 359.483948 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to the Night of the Zealot 56270d/Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Bag Agenda decks pick 1 b99f05/Deck Agenda Deck d6c0a2.yaml b/unpacked/Custom_Model_Bag Return to the Night of the Zealot 56270d/Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Bag Agenda decks pick 1 b99f05/Deck Agenda Deck d6c0a2.yaml new file mode 100644 index 000000000..760e72e1f --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to the Night of the Zealot 56270d/Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Bag Agenda decks pick 1 b99f05/Deck Agenda Deck d6c0a2.yaml @@ -0,0 +1,136 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 232409 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2324': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775106514377428854/F01972D15C2B4CFCB8CA72006B7E00D243683AFA/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377429266/856DF4A8D87D7B6CB71572D20908D35F4182AC45/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 2 + GMNotes: '' + GUID: 62f2fe + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Time is Running Short + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 13.8283167 + posY: 1.54321682 + posZ: 31.5596867 + rotX: 0.0170884542 + rotY: 179.992371 + rotZ: 0.07847351 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232122 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2321': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775106514377428854/F01972D15C2B4CFCB8CA72006B7E00D243683AFA/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377429266/856DF4A8D87D7B6CB71572D20908D35F4182AC45/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 1 + GMNotes: '' + GUID: f364ec + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Predator or Prey? + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 13.75223 + posY: 1.70390022 + posZ: 31.1540852 + rotX: 0.0235319715 + rotY: 180.006 + rotZ: 0.07413736 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2321': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775106514377428854/F01972D15C2B4CFCB8CA72006B7E00D243683AFA/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377429266/856DF4A8D87D7B6CB71572D20908D35F4182AC45/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + '2324': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775106514377428854/F01972D15C2B4CFCB8CA72006B7E00D243683AFA/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377429266/856DF4A8D87D7B6CB71572D20908D35F4182AC45/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 232409 +- 232122 +Description: '' +GMNotes: '' +GUID: d6c0a2 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Agenda Deck +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 9.430542 + posY: 3.62111044 + posZ: 24.5329437 + rotX: 0.0168795958 + rotY: 180.000015 + rotZ: 0.04602737 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to the Night of the Zealot 56270d/Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Card Downtown 08e13b.yaml b/unpacked/Custom_Model_Bag Return to the Night of the Zealot 56270d/Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Card Downtown 08e13b.yaml new file mode 100644 index 000000000..61de9b4dc --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to the Night of the Zealot 56270d/Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Card Downtown 08e13b.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 232311 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2323': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775106514377430450/FDA37585F019D453CF383D975CF1AB631ECF64B7/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377431393/4752E394498B81694A370AA6BB05BC5A4E55FD30/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Arkham. +GMNotes: '' +GUID: 08e13b +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Downtown +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -17.1198921 + posY: 1.67706323 + posZ: -0.0299998354 + rotX: 359.9202 + rotY: 270.00058 + rotZ: 0.0157701857 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to the Night of the Zealot 56270d/Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Card Downtown 1aa7cb.yaml b/unpacked/Custom_Model_Bag Return to the Night of the Zealot 56270d/Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Card Downtown 1aa7cb.yaml new file mode 100644 index 000000000..b65cac5fa --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to the Night of the Zealot 56270d/Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Card Downtown 1aa7cb.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 232312 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2323': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775106514377430450/FDA37585F019D453CF383D975CF1AB631ECF64B7/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377431393/4752E394498B81694A370AA6BB05BC5A4E55FD30/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Arkham. +GMNotes: '' +GUID: 1aa7cb +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Downtown +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -15.4692593 + posY: 1.81291211 + posZ: -0.0416697077 + rotX: 354.8367 + rotY: 269.990845 + rotZ: 0.010572277 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to the Night of the Zealot 56270d/Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Card Easttown 88245c.yaml b/unpacked/Custom_Model_Bag Return to the Night of the Zealot 56270d/Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Card Easttown 88245c.yaml new file mode 100644 index 000000000..9f83a8046 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to the Night of the Zealot 56270d/Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Card Easttown 88245c.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 232332 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2323': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775106514377430450/FDA37585F019D453CF383D975CF1AB631ECF64B7/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377431393/4752E394498B81694A370AA6BB05BC5A4E55FD30/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Arkham. +GMNotes: '' +GUID: 88245c +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Easttown +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -17.1200047 + posY: 1.67481148 + posZ: -7.69999456 + rotX: 359.920349 + rotY: 269.999878 + rotZ: 0.0162953716 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to the Night of the Zealot 56270d/Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Card Easttown e9bb0a.yaml b/unpacked/Custom_Model_Bag Return to the Night of the Zealot 56270d/Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Card Easttown e9bb0a.yaml new file mode 100644 index 000000000..bf4670103 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to the Night of the Zealot 56270d/Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Card Easttown e9bb0a.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 232313 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2323': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775106514377430450/FDA37585F019D453CF383D975CF1AB631ECF64B7/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377431393/4752E394498B81694A370AA6BB05BC5A4E55FD30/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Arkham. +GMNotes: '' +GUID: e9bb0a +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Easttown +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -15.4879971 + posY: 1.81226218 + posZ: -7.662592 + rotX: 354.782074 + rotY: 269.9984 + rotZ: 0.00458069472 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to the Night of the Zealot 56270d/Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Card Graveyard e1b8fc.yaml b/unpacked/Custom_Model_Bag Return to the Night of the Zealot 56270d/Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Card Graveyard e1b8fc.yaml new file mode 100644 index 000000000..d41fd2aef --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to the Night of the Zealot 56270d/Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Card Graveyard e1b8fc.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 232314 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2323': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775106514377430450/FDA37585F019D453CF383D975CF1AB631ECF64B7/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377431393/4752E394498B81694A370AA6BB05BC5A4E55FD30/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Arkham. +GMNotes: '' +GUID: e1b8fc +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Graveyard +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -23.6766 + posY: 1.683962 + posZ: -7.700001 + rotX: 359.9201 + rotY: 269.998444 + rotZ: 0.0168783944 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to the Night of the Zealot 56270d/Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Card Miskatonic University cedb0a.yaml b/unpacked/Custom_Model_Bag Return to the Night of the Zealot 56270d/Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Card Miskatonic University cedb0a.yaml new file mode 100644 index 000000000..1c5ffcfbb --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to the Night of the Zealot 56270d/Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Card Miskatonic University cedb0a.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 232334 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2323': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775106514377430450/FDA37585F019D453CF383D975CF1AB631ECF64B7/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377431393/4752E394498B81694A370AA6BB05BC5A4E55FD30/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Arkham. +GMNotes: '' +GUID: cedb0a +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Miskatonic University +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -22.2406769 + posY: 1.78064692 + posZ: 7.635985 + rotX: 0.2648361 + rotY: 269.967682 + rotZ: 0.01617439 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to the Night of the Zealot 56270d/Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Card Miskatonic University e0962c.yaml b/unpacked/Custom_Model_Bag Return to the Night of the Zealot 56270d/Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Card Miskatonic University e0962c.yaml new file mode 100644 index 000000000..349db4ef3 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to the Night of the Zealot 56270d/Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Card Miskatonic University e0962c.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 232310 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2323': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775106514377430450/FDA37585F019D453CF383D975CF1AB631ECF64B7/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377431393/4752E394498B81694A370AA6BB05BC5A4E55FD30/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Arkham. +GMNotes: '' +GUID: e0962c +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Miskatonic University +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -23.677206 + posY: 1.69774675 + posZ: 7.5697403 + rotX: 0.2603029 + rotY: 269.991455 + rotZ: 0.0170012619 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to the Night of the Zealot 56270d/Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Card Northside 86faac.yaml b/unpacked/Custom_Model_Bag Return to the Night of the Zealot 56270d/Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Card Northside 86faac.yaml new file mode 100644 index 000000000..c549a560c --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to the Night of the Zealot 56270d/Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Card Northside 86faac.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 232333 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2323': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775106514377430450/FDA37585F019D453CF383D975CF1AB631ECF64B7/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377431393/4752E394498B81694A370AA6BB05BC5A4E55FD30/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Arkham. +GMNotes: '' +GUID: 86faac +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Northside +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -15.7348814 + posY: 1.7293359 + posZ: 7.600838 + rotX: 0.08558028 + rotY: 269.996582 + rotZ: 359.903839 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to the Night of the Zealot 56270d/Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Card Northside 8aa8fd.yaml b/unpacked/Custom_Model_Bag Return to the Night of the Zealot 56270d/Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Card Northside 8aa8fd.yaml new file mode 100644 index 000000000..c1695346a --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to the Night of the Zealot 56270d/Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Card Northside 8aa8fd.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 232315 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2323': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775106514377430450/FDA37585F019D453CF383D975CF1AB631ECF64B7/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377431393/4752E394498B81694A370AA6BB05BC5A4E55FD30/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Arkham. +GMNotes: '' +GUID: 8aa8fd +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Northside +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -17.1199951 + posY: 1.67931426 + posZ: 7.57000875 + rotX: 359.9201 + rotY: 270.001465 + rotZ: 0.0167735144 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to the Night of the Zealot 56270d/Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Card Rivertown 86b480.yaml b/unpacked/Custom_Model_Bag Return to the Night of the Zealot 56270d/Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Card Rivertown 86b480.yaml new file mode 100644 index 000000000..ab682722e --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to the Night of the Zealot 56270d/Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Card Rivertown 86b480.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 232335 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2323': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775106514377430450/FDA37585F019D453CF383D975CF1AB631ECF64B7/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377431393/4752E394498B81694A370AA6BB05BC5A4E55FD30/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Arkham. Central. +GMNotes: '' +GUID: 86b480 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Rivertown +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -23.6782036 + posY: 1.68619919 + posZ: -0.0297967382 + rotX: 359.920441 + rotY: 270.0104 + rotZ: 0.0152659817 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to the Night of the Zealot 56270d/Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Card Rivertown da0b77.yaml b/unpacked/Custom_Model_Bag Return to the Night of the Zealot 56270d/Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Card Rivertown da0b77.yaml new file mode 100644 index 000000000..10740f50a --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to the Night of the Zealot 56270d/Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Card Rivertown da0b77.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 232306 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2323': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775106514377430450/FDA37585F019D453CF383D975CF1AB631ECF64B7/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377431393/4752E394498B81694A370AA6BB05BC5A4E55FD30/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Arkham. Central. +GMNotes: '' +GUID: da0b77 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Rivertown +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -21.9404984 + posY: 1.81500876 + posZ: -0.083600305 + rotX: 355.08725 + rotY: 270.0024 + rotZ: 0.0167393256 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to the Night of the Zealot 56270d/Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Card Scenario a22908.yaml b/unpacked/Custom_Model_Bag Return to the Night of the Zealot 56270d/Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Card Scenario a22908.yaml new file mode 100644 index 000000000..752bf00ed --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to the Night of the Zealot 56270d/Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Card Scenario a22908.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 232107 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2321': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775106514377428854/F01972D15C2B4CFCB8CA72006B7E00D243683AFA/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377429266/856DF4A8D87D7B6CB71572D20908D35F4182AC45/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: The Midnight Masks +GMNotes: '' +GUID: a22908 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Scenario +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.95579934 + posY: 1.65564764 + posZ: -10.4414034 + rotX: 359.919952 + rotY: 270.0122 + rotZ: 0.0164599251 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to the Night of the Zealot 56270d/Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Card Setup 250d52.yaml b/unpacked/Custom_Model_Bag Return to the Night of the Zealot 56270d/Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Card Setup 250d52.yaml new file mode 100644 index 000000000..bd1e2df97 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to the Night of the Zealot 56270d/Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Card Setup 250d52.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 232120 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2321': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775106514377428854/F01972D15C2B4CFCB8CA72006B7E00D243683AFA/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377429266/856DF4A8D87D7B6CB71572D20908D35F4182AC45/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Return to The Midnight Masks +GMNotes: '' +GUID: 250d52 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Setup +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -6.19190264 + posY: 1.76073468 + posZ: -10.4684029 + rotX: 3.67136884 + rotY: 270.019257 + rotZ: 0.0168736074 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to the Night of the Zealot 56270d/Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Card Southside 076b61.yaml b/unpacked/Custom_Model_Bag Return to the Night of the Zealot 56270d/Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Card Southside 076b61.yaml new file mode 100644 index 000000000..052f7637d --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to the Night of the Zealot 56270d/Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Card Southside 076b61.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 232308 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2323': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775106514377430450/FDA37585F019D453CF383D975CF1AB631ECF64B7/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377431393/4752E394498B81694A370AA6BB05BC5A4E55FD30/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Arkham. +GMNotes: '' +GUID: 076b61 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Southside +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -30.2240963 + posY: 1.695384 + posZ: -0.0301109068 + rotX: 359.920563 + rotY: 270.001434 + rotZ: 0.0178425182 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to the Night of the Zealot 56270d/Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Card Southside 377b20.yaml b/unpacked/Custom_Model_Bag Return to the Night of the Zealot 56270d/Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Card Southside 377b20.yaml new file mode 100644 index 000000000..161013e88 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to the Night of the Zealot 56270d/Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Card Southside 377b20.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 232307 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2323': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775106514377430450/FDA37585F019D453CF383D975CF1AB631ECF64B7/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377431393/4752E394498B81694A370AA6BB05BC5A4E55FD30/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Arkham. +GMNotes: '' +GUID: 377b20 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Southside +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -31.8945026 + posY: 1.8340975 + posZ: -0.00200192141 + rotX: 4.935387 + rotY: 269.987061 + rotZ: 0.00374380383 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to the Night of the Zealot 56270d/Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Card St. Mary's Hospital fac63b.yaml b/unpacked/Custom_Model_Bag Return to the Night of the Zealot 56270d/Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Card St. Mary's Hospital fac63b.yaml new file mode 100644 index 000000000..4f807e294 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to the Night of the Zealot 56270d/Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Card St. Mary's Hospital fac63b.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 232309 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2323': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775106514377430450/FDA37585F019D453CF383D975CF1AB631ECF64B7/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377431393/4752E394498B81694A370AA6BB05BC5A4E55FD30/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Arkham. +GMNotes: '' +GUID: fac63b +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: St. Mary's Hospital +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -30.2242 + posY: 1.69758844 + posZ: 7.56999969 + rotX: 359.9201 + rotY: 269.999725 + rotZ: 0.0168767832 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to the Night of the Zealot 56270d/Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Card Uncovering the Conspiracy f859a4.yaml b/unpacked/Custom_Model_Bag Return to the Night of the Zealot 56270d/Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Card Uncovering the Conspiracy f859a4.yaml new file mode 100644 index 000000000..49545a423 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to the Night of the Zealot 56270d/Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Card Uncovering the Conspiracy f859a4.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 232410 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2324': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775106514377428854/F01972D15C2B4CFCB8CA72006B7E00D243683AFA/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377429266/856DF4A8D87D7B6CB71572D20908D35F4182AC45/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Act 1 +GMNotes: '' +GUID: f859a4 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Uncovering the Conspiracy +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.6886 + posY: 1.6554575 + posZ: -5.04850054 + rotX: 0.0168322772 + rotY: 180.002029 + rotZ: 0.08025814 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to the Night of the Zealot 56270d/Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Card Your House b28633.yaml b/unpacked/Custom_Model_Bag Return to the Night of the Zealot 56270d/Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Card Your House b28633.yaml new file mode 100644 index 000000000..9509f1718 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to the Night of the Zealot 56270d/Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Card Your House b28633.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 232305 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2323': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775106514377430450/FDA37585F019D453CF383D975CF1AB631ECF64B7/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377431393/4752E394498B81694A370AA6BB05BC5A4E55FD30/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Arkham. +GMNotes: '' +GUID: b28633 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Your House +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -30.2243 + posY: 1.69309223 + posZ: -7.70020151 + rotX: 359.9201 + rotY: 269.9995 + rotZ: 0.0168769527 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to the Night of the Zealot 56270d/Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Custom_Model_Bag Set-aside e4821e.yaml b/unpacked/Custom_Model_Bag Return to the Night of the Zealot 56270d/Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Custom_Model_Bag Set-aside e4821e.yaml new file mode 100644 index 000000000..8dcb4cc16 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to the Night of the Zealot 56270d/Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Custom_Model_Bag Set-aside e4821e.yaml @@ -0,0 +1,57 @@ +Autoraise: true +ColorDiffuse: + b: 0.02148666 + g: 0.00100758043 + r: 0.02148666 +ContainedObjects: +- !include 'Custom_Model_Bag Set-aside e4821e/Deck Cultist Deck 69032d.yaml' +- !include 'Custom_Model_Bag Set-aside e4821e/Card Ghoul Priest ab3719.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: '' +GMNotes: '' +GUID: e4821e +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +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.69600081 + posY: 1.55831718 + posZ: 14.2787018 + rotX: 359.955139 + rotY: 224.997955 + rotZ: 0.06867309 + scaleX: 2.0 + scaleY: 2.0 + scaleZ: 2.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to the Night of the Zealot 56270d/Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Custom_Model_Bag Set-aside e4821e/Card Ghoul Priest ab3719.yaml b/unpacked/Custom_Model_Bag Return to the Night of the Zealot 56270d/Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Custom_Model_Bag Set-aside e4821e/Card Ghoul Priest ab3719.yaml new file mode 100644 index 000000000..5d8203736 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to the Night of the Zealot 56270d/Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Custom_Model_Bag Set-aside e4821e/Card Ghoul Priest ab3719.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 231700 +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 + UniqueBack: false +Description: Humanoid. Monster. Ghoul. Elite. +GMNotes: '' +GUID: ab3719 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Ghoul Priest +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.5442963 + posY: 2.54775 + posZ: -17.93338 + rotX: 359.920135 + rotY: 270.002869 + rotZ: 0.016871985 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to the Night of the Zealot 56270d/Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Custom_Model_Bag Set-aside e4821e/Deck Cultist Deck 69032d.yaml b/unpacked/Custom_Model_Bag Return to the Night of the Zealot 56270d/Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Custom_Model_Bag Set-aside e4821e/Deck Cultist Deck 69032d.yaml new file mode 100644 index 000000000..6a9025b11 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to the Night of the Zealot 56270d/Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Custom_Model_Bag Set-aside e4821e/Deck Cultist Deck 69032d.yaml @@ -0,0 +1,387 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 231745 + 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 + UniqueBack: false + Description: The Inquisitive Historian + GMNotes: '' + GUID: 2f6d5c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Alma Hill + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -26.8877316 + posY: 1.60149372 + posZ: 36.9405861 + rotX: 359.9215 + rotY: 269.9995 + rotZ: 0.0105527695 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231744 + 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 + UniqueBack: false + Description: The Crooked Cop + GMNotes: '' + GUID: 33870a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Billy Cooper + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -26.5962849 + posY: 1.74649262 + posZ: 36.55487 + rotX: 359.927429 + rotY: 270.000427 + rotZ: 0.009708078 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231743 + 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 + UniqueBack: false + Description: Your Next-Door Neighbor + GMNotes: '' + GUID: ab3719 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Jeremiah Pierce + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -26.8742352 + posY: 1.76448214 + posZ: 37.0487061 + rotX: 359.9221 + rotY: 269.999573 + rotZ: 0.015274873 + 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/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: The Mortician + GMNotes: '' + GUID: ab3719 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ruth Turner + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -6.18538 + posY: 1.72525084 + posZ: -7.613346 + rotX: 359.936371 + rotY: 270.0 + rotZ: 180.013824 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231708 + 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 + UniqueBack: false + Description: The Collector + GMNotes: '' + GUID: ec86a2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Victoria Devereux + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -6.151805 + posY: 1.71143651 + posZ: -8.111477 + rotX: 359.944366 + rotY: 270.016357 + rotZ: 180.000565 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231707 + 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 + UniqueBack: false + Description: The Occult Professor + GMNotes: '' + GUID: ad2df0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Peter Warren + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -6.05293274 + posY: 1.72509432 + posZ: -7.78916073 + rotX: 359.937225 + rotY: 269.999817 + rotZ: 180.015381 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231706 + 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 + UniqueBack: false + Description: The Undertaker + GMNotes: '' + GUID: a12fd2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Herman Collins + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -5.95645571 + posY: 1.70735312 + posZ: -8.194746 + rotX: 359.924164 + rotY: 269.999878 + rotZ: 180.026428 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231705 + 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 + UniqueBack: false + Description: The Cannibal + GMNotes: '' + GUID: ab3719 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '"Wolf-Man" Drew' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -6.351678 + posY: 1.56253266 + posZ: -7.93774748 + rotX: 359.92038 + rotY: 269.999969 + rotZ: 180.018967 + 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 + UniqueBack: false +DeckIDs: +- 231745 +- 231744 +- 231743 +- 231709 +- 231708 +- 231707 +- 231706 +- 231705 +Description: '' +GMNotes: '' +GUID: 69032d +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Cultist Deck +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 20.41708 + posY: 2.50763583 + posZ: -25.3189049 + rotX: 359.920135 + rotY: 269.999634 + rotZ: 0.0168782417 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to the Night of the Zealot 56270d/Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Custom_Tile 2432ab.yaml b/unpacked/Custom_Model_Bag Return to the Night of the Zealot 56270d/Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Custom_Tile 2432ab.yaml new file mode 100644 index 000000000..14d4ccc5b --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to the Night of the Zealot 56270d/Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Custom_Tile 2432ab.yaml @@ -0,0 +1,42 @@ +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: '' +GMNotes: '' +GUID: 2432ab +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Tile +Nickname: '' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 0.2825998 + posY: 1.5762732 + posZ: -16.3088 + rotX: 359.919739 + rotY: 270.028442 + rotZ: 0.0167991165 + scaleX: 0.81 + scaleY: 1.0 + scaleZ: 0.81 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to the Night of the Zealot 56270d/Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Custom_Tile 261175.yaml b/unpacked/Custom_Model_Bag Return to the Night of the Zealot 56270d/Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Custom_Tile 261175.yaml new file mode 100644 index 000000000..104a475f6 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to the Night of the Zealot 56270d/Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Custom_Tile 261175.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: '261175' +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.1199989 + posY: 1.60424519 + posZ: -3.83000016 + rotX: 0.0168766864 + rotY: 179.996521 + rotZ: 0.07994788 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to the Night of the Zealot 56270d/Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Custom_Tile 40c3a4.yaml b/unpacked/Custom_Model_Bag Return to the Night of the Zealot 56270d/Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Custom_Tile 40c3a4.yaml new file mode 100644 index 000000000..43ecdcd82 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to the Night of the Zealot 56270d/Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Custom_Tile 40c3a4.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 40c3a4 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.9844 + posY: 1.61797786 + posZ: -3.9073 + rotX: 0.04456558 + rotY: 45.00014 + rotZ: 359.93158 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to the Night of the Zealot 56270d/Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Custom_Tile 453ebf.yaml b/unpacked/Custom_Model_Bag Return to the Night of the Zealot 56270d/Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Custom_Tile 453ebf.yaml new file mode 100644 index 000000000..cc77041d8 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to the Night of the Zealot 56270d/Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Custom_Tile 453ebf.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 453ebf +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.1201935 + posY: 1.60650933 + posZ: 3.85809946 + rotX: 0.0168760661 + rotY: 179.997055 + rotZ: 0.079950884 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to the Night of the Zealot 56270d/Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Custom_Tile 5eee6e.yaml b/unpacked/Custom_Model_Bag Return to the Night of the Zealot 56270d/Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Custom_Tile 5eee6e.yaml new file mode 100644 index 000000000..f0cb10df0 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to the Night of the Zealot 56270d/Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Custom_Tile 5eee6e.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 5eee6e +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.6765 + posY: 1.6133877 + posZ: -3.83000016 + rotX: 0.0168763641 + rotY: 179.99675 + rotZ: 0.0799389 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to the Night of the Zealot 56270d/Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Custom_Tile 711ec9.yaml b/unpacked/Custom_Model_Bag Return to the Night of the Zealot 56270d/Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Custom_Tile 711ec9.yaml new file mode 100644 index 000000000..9f5542392 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to the Night of the Zealot 56270d/Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Custom_Tile 711ec9.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 711ec9 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.2241364 + posY: 1.62478209 + posZ: 3.85997963 + rotX: 0.0168761443 + rotY: 179.9971 + rotZ: 0.07996438 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to the Night of the Zealot 56270d/Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Custom_Tile 7234af.yaml b/unpacked/Custom_Model_Bag Return to the Night of the Zealot 56270d/Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Custom_Tile 7234af.yaml new file mode 100644 index 000000000..0df61fae7 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to the Night of the Zealot 56270d/Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Custom_Tile 7234af.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 7234af +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.7605 + posY: 1.61881185 + posZ: -0.0140002491 + rotX: 359.9201 + rotY: 269.9854 + rotZ: 0.0169204175 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to the Night of the Zealot 56270d/Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Custom_Tile 814638.yaml b/unpacked/Custom_Model_Bag Return to the Night of the Zealot 56270d/Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Custom_Tile 814638.yaml new file mode 100644 index 000000000..fe924e635 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to the Night of the Zealot 56270d/Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Custom_Tile 814638.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: '814638' +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.273201 + posY: 1.612022 + posZ: 7.649015 + rotX: 0.07931659 + rotY: 89.99945 + rotZ: 359.982758 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to the Night of the Zealot 56270d/Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Custom_Tile 81d86f.yaml b/unpacked/Custom_Model_Bag Return to the Night of the Zealot 56270d/Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Custom_Tile 81d86f.yaml new file mode 100644 index 000000000..6c0a5b45b --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to the Night of the Zealot 56270d/Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Custom_Tile 81d86f.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 81d86f +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.9036 + posY: 1.62126327 + posZ: 7.6326 + rotX: 0.07989453 + rotY: 89.99988 + rotZ: 359.9831 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to the Night of the Zealot 56270d/Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Custom_Tile 9afc26.yaml b/unpacked/Custom_Model_Bag Return to the Night of the Zealot 56270d/Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Custom_Tile 9afc26.yaml new file mode 100644 index 000000000..bbd6bddad --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to the Night of the Zealot 56270d/Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Custom_Tile 9afc26.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 9afc26 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.6765 + posY: 1.61565208 + posZ: 3.86000013 + rotX: 0.0168764144 + rotY: 179.996719 + rotZ: 0.07993908 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to the Night of the Zealot 56270d/Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Custom_Tile b42670.yaml b/unpacked/Custom_Model_Bag Return to the Night of the Zealot 56270d/Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Custom_Tile b42670.yaml new file mode 100644 index 000000000..46a922392 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to the Night of the Zealot 56270d/Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Custom_Tile b42670.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: b42670 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.2002 + posY: 1.60865414 + posZ: -3.44340014 + rotX: 0.06843115 + rotY: 135.000015 + rotZ: 0.04456218 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to the Night of the Zealot 56270d/Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Custom_Tile e26fc3.yaml b/unpacked/Custom_Model_Bag Return to the Night of the Zealot 56270d/Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Custom_Tile e26fc3.yaml new file mode 100644 index 000000000..15a9695a6 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to the Night of the Zealot 56270d/Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Custom_Tile e26fc3.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: e26fc3 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.3742 + posY: 1.61953282 + posZ: 4.26330042 + rotX: 0.0445654765 + rotY: 45.00001 + rotZ: 359.9316 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to the Night of the Zealot 56270d/Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Custom_Tile Core Difficulty 47f3de.ttslua b/unpacked/Custom_Model_Bag Return to the Night of the Zealot 56270d/Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Custom_Tile Core Difficulty 47f3de.ttslua new file mode 100644 index 000000000..c7ea585c8 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to the Night of the Zealot 56270d/Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Custom_Tile Core Difficulty 47f3de.ttslua @@ -0,0 +1,21 @@ +name = 'Core Set' + +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 Return to the Night of the Zealot 56270d/Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Custom_Tile Core Difficulty 47f3de.yaml b/unpacked/Custom_Model_Bag Return to the Night of the Zealot 56270d/Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Custom_Tile Core Difficulty 47f3de.yaml new file mode 100644 index 000000000..88e6c7822 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to the Night of the Zealot 56270d/Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Custom_Tile Core Difficulty 47f3de.yaml @@ -0,0 +1,42 @@ +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 +GMNotes: '' +GUID: 47f3de +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Tile Core Difficulty 47f3de.ttslua' +LuaScriptState: '' +Name: Custom_Tile +Nickname: Core Difficulty +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.35830045 + posY: 1.58146882 + posZ: -15.9833031 + rotX: 359.919739 + rotY: 270.0041 + rotZ: 0.0168320257 + scaleX: 2.2 + scaleY: 1.0 + scaleZ: 2.2 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to the Night of the Zealot 56270d/Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Deck Encounter Deck 28e161.yaml b/unpacked/Custom_Model_Bag Return to the Night of the Zealot 56270d/Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Deck Encounter Deck 28e161.yaml new file mode 100644 index 000000000..79960ea74 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to the Night of the Zealot 56270d/Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Deck Encounter Deck 28e161.yaml @@ -0,0 +1,1032 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 231742 + 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 + UniqueBack: false + Description: Item. Mask. + GMNotes: '' + GUID: 7b7c88 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: "Mask of Um\xF4rdhoth" + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -27.3313046 + posY: 1.60303676 + posZ: 40.0525627 + rotX: 359.919617 + rotY: 269.972717 + rotZ: 0.0103522725 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231742 + 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 + UniqueBack: false + Description: Item. Mask. + GMNotes: '' + GUID: 62b6cd + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: "Mask of Um\xF4rdhoth" + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -27.2997189 + posY: 1.748332 + posZ: 39.7179947 + rotX: 359.942841 + rotY: 270.004272 + rotZ: 0.00302965054 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231741 + 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 + UniqueBack: false + Description: Monster. Servitor. Cultist. + GMNotes: '' + GUID: 53b9cb + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Corpse-Taker + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -27.2525177 + posY: 1.76590574 + posZ: 39.58632 + rotX: 359.924469 + rotY: 270.042847 + rotZ: 359.986053 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231740 + 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 + UniqueBack: false + Description: Humanoid. Cultist. + GMNotes: '' + GUID: ab3719 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Disciple of the Devourer + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -26.841526 + posY: 1.60154414 + posZ: 37.0518341 + rotX: 359.9202 + rotY: 270.005066 + rotZ: 0.0162651874 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231740 + 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 + UniqueBack: false + Description: Humanoid. Cultist. + GMNotes: '' + GUID: 0abaca + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Disciple of the Devourer + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -27.3358841 + posY: 1.76970363 + posZ: 37.12298 + rotX: 359.9229 + rotY: 270.005157 + rotZ: 0.0140643651 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231740 + 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 + UniqueBack: false + Description: Humanoid. Cultist. + GMNotes: '' + GUID: ab3719 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Disciple of the Devourer + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -27.0939522 + posY: 1.78332663 + posZ: 37.4462624 + rotX: 359.919922 + rotY: 270.005157 + rotZ: 0.01614685 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231746 + 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 + UniqueBack: false + Description: Power. Scheme. + GMNotes: '' + GUID: ef3cf9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Masked Horrors + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 13.2175608 + posY: 1.532942 + posZ: -6.174621 + rotX: 359.920319 + rotY: 270.018463 + rotZ: 0.00230178959 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231746 + 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 + UniqueBack: false + Description: Power. Scheme. + GMNotes: '' + GUID: 912e54 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Masked Horrors + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 13.2623234 + posY: 1.67859507 + posZ: -6.394501 + rotX: 359.92392 + rotY: 269.982178 + rotZ: 0.0657594 + 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 + UniqueBack: false + Description: Obstacle. + GMNotes: '' + GUID: ab3719 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Locked Door + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -17.60739 + posY: 1.58022821 + posZ: 8.422101 + rotX: 359.920349 + rotY: 269.999756 + rotZ: 0.0154577158 + 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 + UniqueBack: false + Description: Obstacle. + GMNotes: '' + GUID: 4904d0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Locked Door + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -18.06458 + posY: 1.74395728 + posZ: 8.675678 + rotX: 359.928467 + rotY: 269.9997 + rotZ: 0.006147271 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231726 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 1e04da + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: On Wings of Darkness + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -13.4282417 + posY: 1.70155811 + posZ: 13.7778349 + rotX: 359.535278 + rotY: 269.9516 + rotZ: 181.449341 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231726 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 1d0c1c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: On Wings of Darkness + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -15.7923059 + posY: 1.73901558 + posZ: 4.52112341 + rotX: 359.919861 + rotY: 269.999969 + rotZ: 0.0123590212 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231725 + 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 + UniqueBack: false + Description: Monster. Nightgaunt. + GMNotes: '' + GUID: ab3719 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Hunting Nightgaunt + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -16.52605 + posY: 1.57874775 + posZ: 8.559591 + rotX: 359.920471 + rotY: 270.0019 + rotZ: 0.0145635763 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231725 + 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 + UniqueBack: false + Description: Monster. Nightgaunt. + GMNotes: '' + GUID: b75b70 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Hunting Nightgaunt + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -13.47085 + posY: 1.72509861 + posZ: 13.60628 + rotX: 359.9252 + rotY: 269.9989 + rotZ: 0.0176846832 + 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 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: 50e716 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: c4ce76 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: ab3719 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: 16d6d6 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 231704 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 057d5f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: False Lead + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 25.12937 + posY: 1.52805436 + posZ: 33.6414566 + rotX: 359.920532 + rotY: 269.9922 + rotZ: 0.0141133359 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231704 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 2ceae2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: False Lead + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 25.1391239 + posY: 1.683543 + posZ: 33.4398346 + rotX: 359.926178 + rotY: 269.992523 + rotZ: 0.011026796 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231703 + 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 + UniqueBack: false + Description: Curse. + GMNotes: '' + GUID: ea8fcf + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Hunting Shadow + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 25.5329266 + posY: 1.694792 + posZ: 33.29811 + rotX: 359.920532 + rotY: 269.992462 + rotZ: 0.0159023385 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231703 + 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 + UniqueBack: false + Description: Curse. + GMNotes: '' + GUID: ab3719 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Hunting Shadow + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 19.12706 + posY: 1.70121276 + posZ: 36.15682 + rotX: 359.937378 + rotY: 270.0 + rotZ: 180.0152 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231703 + 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 + UniqueBack: false + Description: Curse. + GMNotes: '' + GUID: 14bfaf + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Hunting Shadow + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 18.6906662 + posY: 1.54066241 + posZ: 36.2848244 + rotX: 359.920227 + rotY: 270.000275 + rotZ: 180.017624 + 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 + UniqueBack: false +DeckIDs: +- 231742 +- 231742 +- 231741 +- 231740 +- 231740 +- 231740 +- 231746 +- 231746 +- 231727 +- 231727 +- 231726 +- 231726 +- 231725 +- 231725 +- 231721 +- 231721 +- 231720 +- 231720 +- 231704 +- 231704 +- 231703 +- 231703 +- 231703 +Description: '' +GMNotes: '' +GUID: 28e161 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Encounter Deck +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.9274 + posY: 1.73440325 + posZ: 5.757101 + rotX: 359.919739 + rotY: 270.000031 + rotZ: 180.016815 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to the Night of the Zealot 56270d/Custom_Model_Bag 3 Return to The Devourer Below 604753.ttslua b/unpacked/Custom_Model_Bag Return to the Night of the Zealot 56270d/Custom_Model_Bag 3 Return to The Devourer Below 604753.ttslua new file mode 100644 index 000000000..46067f58e --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to the Night of the Zealot 56270d/Custom_Model_Bag 3 Return to The Devourer Below 604753.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.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.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 Return to the Night of the Zealot 56270d/Custom_Model_Bag 3 Return to The Devourer Below 604753.yaml b/unpacked/Custom_Model_Bag Return to the Night of the Zealot 56270d/Custom_Model_Bag 3 Return to The Devourer Below 604753.yaml new file mode 100644 index 000000000..a4178639a --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to the Night of the Zealot 56270d/Custom_Model_Bag 3 Return to The Devourer Below 604753.yaml @@ -0,0 +1,83 @@ +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 3 Return to The Devourer Below 604753/Custom_Model_Bag + Set-aside 5ac698.yaml' +- !include 'Custom_Model_Bag 3 Return to The Devourer Below 604753/Bag Agents of Ancient + One ef1c11.yaml' +- !include 'Custom_Model_Bag 3 Return to The Devourer Below 604753/Deck Encounter + Deck d85823.yaml' +- !include 'Custom_Model_Bag 3 Return to The Devourer Below 604753/Deck Agenda Deck + 50ad79.yaml' +- !include 'Custom_Model_Bag 3 Return to The Devourer Below 604753/Deck Act Deck 91957f.yaml' +- !include 'Custom_Model_Bag 3 Return to The Devourer Below 604753/Card Scenario a22908.yaml' +- !include 'Custom_Model_Bag 3 Return to The Devourer Below 604753/Card Setup c15c8a.yaml' +- !include 'Custom_Model_Bag 3 Return to The Devourer Below 604753/Custom_Tile 7234af.yaml' +- !include 'Custom_Model_Bag 3 Return to The Devourer Below 604753/Card Main Path + 377b20.yaml' +- !include 'Custom_Model_Bag 3 Return to The Devourer Below 604753/Deck Arkham Woods + 54354d.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/829135118401847694/6E6FD225FB0DCACE788294D03CBC8C6A0A0B4237/ + MaterialIndex: 3 + MeshURL: https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj + NormalURL: '' + TypeIndex: 6 +Description: Return to the Night of the Zealot +GMNotes: '' +GUID: '604753' +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Model_Bag 3 Return to The Devourer Below 604753.ttslua' +LuaScriptState: '{"ml":{"377b20":{"lock":false,"pos":{"x":-17.1199,"y":1.6771,"z":-0.03},"rot":{"x":359.9201,"y":269.9999,"z":0.0169}},"50ad79":{"lock":false,"pos":{"x":-2.7246,"y":1.6566,"z":0.3733},"rot":{"x":0.0168,"y":180.0031,"z":0.0803}},"54354d":{"lock":false,"pos":{"x":-12.5201,"y":1.6633,"z":7.6527},"rot":{"x":359.9201,"y":269.9995,"z":0.0169}},"5ac698":{"lock":false,"pos":{"x":1.696,"y":1.5583,"z":14.2788},"rot":{"x":359.9551,"y":224.9959,"z":0.0687}},"7234af":{"lock":false,"pos":{"x":-20.4446,"y":1.61,"z":0.0781},"rot":{"x":359.9201,"y":270.0113,"z":0.0169}},"91957f":{"lock":false,"pos":{"x":-2.6884,"y":1.655,"z":-5.0485},"rot":{"x":0.0168,"y":180.0046,"z":0.0803}},"a22908":{"lock":false,"pos":{"x":-3.956,"y":1.6556,"z":-10.4412},"rot":{"x":359.9197,"y":270.0125,"z":0.0168}},"c15c8a":{"lock":false,"pos":{"x":-3.9682,"y":1.6545,"z":-14.4314},"rot":{"x":359.9197,"y":270.0123,"z":0.0168}},"d85823":{"lock":false,"pos":{"x":-3.9274,"y":1.7557,"z":5.7572},"rot":{"x":359.9197,"y":269.9996,"z":180.0168}},"ef1c11":{"lock":false,"pos":{"x":-4.3657,"y":1.4071,"z":15.3672},"rot":{"x":359.9832,"y":0.0005,"z":359.9196}}}}' +MaterialIndex: -1 +MeshIndex: -1 +Name: Custom_Model_Bag +Nickname: '3: Return to The Devourer Below' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 12.0501022 + posY: 1.46247351 + posZ: -7.59630156 + rotX: 359.920135 + rotY: 270.004242 + rotZ: 0.0168680437 + scaleX: 2.21 + scaleY: 0.46 + scaleZ: 2.42 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to the Night of the Zealot 56270d/Custom_Model_Bag 3 Return to The Devourer Below 604753/Bag Agents of Ancient One ef1c11.yaml b/unpacked/Custom_Model_Bag Return to the Night of the Zealot 56270d/Custom_Model_Bag 3 Return to The Devourer Below 604753/Bag Agents of Ancient One ef1c11.yaml new file mode 100644 index 000000000..45ee74625 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to the Night of the Zealot 56270d/Custom_Model_Bag 3 Return to The Devourer Below 604753/Bag Agents of Ancient One ef1c11.yaml @@ -0,0 +1,39 @@ +Autoraise: true +ColorDiffuse: + b: 0.0 + g: 0.0 + r: 0.0 +ContainedObjects: +- !include 'Bag Agents of Ancient One ef1c11/Deck Agents of Ancient One 351d7e.yaml' +- !include 'Bag Agents of Ancient One ef1c11/Deck Agents of Ancient One cb8d71.yaml' +- !include 'Bag Agents of Ancient One ef1c11/Deck Agents of Ancient One 83c2b8.yaml' +- !include 'Bag Agents of Ancient One ef1c11/Deck Agents of Ancient One 849ae4.yaml' +Description: '' +GMNotes: '' +GUID: ef1c11 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +MeshIndex: -1 +Name: Bag +Nickname: Agents of Ancient One +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -4.36567068 + posY: 1.40705907 + posZ: 15.3671865 + rotX: 359.983154 + rotY: 0.0004894023 + rotZ: 359.9196 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to the Night of the Zealot 56270d/Custom_Model_Bag 3 Return to The Devourer Below 604753/Bag Agents of Ancient One ef1c11/Deck Agents of Ancient One 351d7e.yaml b/unpacked/Custom_Model_Bag Return to the Night of the Zealot 56270d/Custom_Model_Bag 3 Return to The Devourer Below 604753/Bag Agents of Ancient One ef1c11/Deck Agents of Ancient One 351d7e.yaml new file mode 100644 index 000000000..9b52ae938 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to the Night of the Zealot 56270d/Custom_Model_Bag 3 Return to The Devourer Below 604753/Bag Agents of Ancient One ef1c11/Deck Agents of Ancient One 351d7e.yaml @@ -0,0 +1,215 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 231729 + 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 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: 4cf636 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Yellow Sign + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -18.2012749 + posY: 1.58148372 + posZ: 10.016777 + rotX: 359.920746 + rotY: 269.996552 + rotZ: 0.0126871429 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231729 + 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 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: 74a845 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Yellow Sign + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -18.39433 + posY: 1.745 + posZ: 9.752235 + rotX: 359.928131 + rotY: 269.996552 + rotZ: 0.0164207779 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231728 + 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 + UniqueBack: false + Description: Monster. Byakhee. + GMNotes: '' + GUID: ab3719 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Screeching Byakhee + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -18.9733372 + posY: 1.58185852 + posZ: 7.530837 + rotX: 359.920441 + rotY: 269.999878 + rotZ: 0.0146859353 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231728 + 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 + UniqueBack: false + Description: Monster. Byakhee. + GMNotes: '' + GUID: 6fc5fa + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Screeching Byakhee + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -18.7373314 + posY: 1.73706949 + posZ: 7.34839153 + rotX: 359.923981 + rotY: 269.9999 + rotZ: 0.0115116611 + 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 + UniqueBack: false +DeckIDs: +- 231729 +- 231729 +- 231728 +- 231728 +Description: '' +GMNotes: '' +GUID: 351d7e +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Agents of Ancient One +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -8.133555 + posY: 2.58095217 + posZ: -12.283349 + rotX: 359.920135 + rotY: 270.000031 + rotZ: 180.016861 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to the Night of the Zealot 56270d/Custom_Model_Bag 3 Return to The Devourer Below 604753/Bag Agents of Ancient One ef1c11/Deck Agents of Ancient One 83c2b8.yaml b/unpacked/Custom_Model_Bag Return to the Night of the Zealot 56270d/Custom_Model_Bag 3 Return to The Devourer Below 604753/Bag Agents of Ancient One ef1c11/Deck Agents of Ancient One 83c2b8.yaml new file mode 100644 index 000000000..e33f20fa2 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to the Night of the Zealot 56270d/Custom_Model_Bag 3 Return to The Devourer Below 604753/Bag Agents of Ancient One ef1c11/Deck Agents of Ancient One 83c2b8.yaml @@ -0,0 +1,215 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 231733 + 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 + UniqueBack: false + Description: Humanoid. Monster. + GMNotes: '' + GUID: e4ae63 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Goat Spawn + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -21.0514832 + posY: 1.58367968 + posZ: 3.80302978 + rotX: 359.920227 + rotY: 269.995728 + rotZ: 0.0161432624 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231733 + 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 + UniqueBack: false + Description: Humanoid. Monster. + GMNotes: '' + GUID: 3f2e83 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Goat Spawn + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -21.3775539 + posY: 1.74800014 + posZ: 3.76909566 + rotX: 359.921448 + rotY: 269.9958 + rotZ: 0.01241914 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231733 + 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 + UniqueBack: false + Description: Humanoid. Monster. + GMNotes: '' + GUID: e4ae63 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Goat Spawn + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -21.3775349 + posY: 1.76184154 + posZ: 3.76909184 + rotX: 359.92215 + rotY: 269.9958 + rotZ: 0.0164589938 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231732 + 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 + UniqueBack: false + Description: Monster. Dark Young. + GMNotes: '' + GUID: ab3719 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Relentless Dark Young + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -21.1681347 + posY: 1.73308969 + posZ: 3.68174171 + rotX: 359.919647 + rotY: 269.996674 + rotZ: 0.0130278058 + 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 + UniqueBack: false +DeckIDs: +- 231733 +- 231733 +- 231733 +- 231732 +Description: '' +GMNotes: '' +GUID: 83c2b8 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Agents of Ancient One +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -6.860561 + posY: 2.57702565 + posZ: -13.2692394 + 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 Return to the Night of the Zealot 56270d/Custom_Model_Bag 3 Return to The Devourer Below 604753/Bag Agents of Ancient One ef1c11/Deck Agents of Ancient One 849ae4.yaml b/unpacked/Custom_Model_Bag Return to the Night of the Zealot 56270d/Custom_Model_Bag 3 Return to The Devourer Below 604753/Bag Agents of Ancient One ef1c11/Deck Agents of Ancient One 849ae4.yaml new file mode 100644 index 000000000..16641b3fd --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to the Night of the Zealot 56270d/Custom_Model_Bag 3 Return to The Devourer Below 604753/Bag Agents of Ancient One ef1c11/Deck Agents of Ancient One 849ae4.yaml @@ -0,0 +1,215 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 231731 + 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 + UniqueBack: false + Description: Pact. + GMNotes: '' + GUID: ad01d5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Offer of Power + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -20.624012 + posY: 1.58353865 + posZ: 5.391288 + rotX: 359.92038 + rotY: 270.0011 + rotZ: 0.0152683891 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231731 + 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 + UniqueBack: false + Description: Pact. + GMNotes: '' + GUID: 1e4b6f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Offer of Power + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -21.1143684 + posY: 1.74799216 + posZ: 5.51088 + rotX: 359.927856 + rotY: 270.00116 + rotZ: 0.008664682 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231730 + 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 + UniqueBack: false + Description: Monster. Yithian. + GMNotes: '' + GUID: ab3719 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Yithian Observer + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -20.7980976 + posY: 1.58471787 + posZ: 8.655001 + rotX: 359.9206 + rotY: 270.001221 + rotZ: 0.0136531973 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231730 + 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 + UniqueBack: false + Description: Monster. Yithian. + GMNotes: '' + GUID: 4c04b5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Yithian Observer + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -21.04713 + posY: 1.74898231 + posZ: 8.319516 + rotX: 359.925964 + rotY: 270.001221 + rotZ: 0.0171930045 + 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 + UniqueBack: false +DeckIDs: +- 231731 +- 231731 +- 231730 +- 231730 +Description: '' +GMNotes: '' +GUID: 849ae4 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Agents of Ancient One +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 4.036606 + posY: 3.551612 + posZ: 10.6196184 + rotX: 357.724274 + rotY: 269.9851 + rotZ: 180.517136 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to the Night of the Zealot 56270d/Custom_Model_Bag 3 Return to The Devourer Below 604753/Bag Agents of Ancient One ef1c11/Deck Agents of Ancient One cb8d71.yaml b/unpacked/Custom_Model_Bag Return to the Night of the Zealot 56270d/Custom_Model_Bag 3 Return to The Devourer Below 604753/Bag Agents of Ancient One ef1c11/Deck Agents of Ancient One cb8d71.yaml new file mode 100644 index 000000000..3679c214c --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to the Night of the Zealot 56270d/Custom_Model_Bag 3 Return to The Devourer Below 604753/Bag Agents of Ancient One ef1c11/Deck Agents of Ancient One cb8d71.yaml @@ -0,0 +1,215 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 231735 + 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 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: 796db7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dreams of R'lyeh + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -21.18895 + posY: 1.5854075 + posZ: 8.96069 + rotX: 359.920074 + rotY: 270.000061 + rotZ: 0.0172643047 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231735 + 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 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: 47ed9e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dreams of R'lyeh + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -21.0872536 + posY: 1.74957943 + posZ: 9.398701 + rotX: 359.9174 + rotY: 270.000061 + rotZ: 0.009243452 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231734 + 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 + UniqueBack: false + Description: Humanoid. Monster. Deep One. + GMNotes: '' + GUID: ab3719 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Young Deep One + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -21.4079018 + posY: 1.5847317 + posZ: 5.77563953 + rotX: 359.9205 + rotY: 269.997864 + rotZ: 0.0144211389 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231734 + 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 + UniqueBack: false + Description: Humanoid. Monster. Deep One. + GMNotes: '' + GUID: cfd69a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Young Deep One + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -21.3780651 + posY: 1.740191 + posZ: 5.657522 + rotX: 359.926422 + rotY: 269.997955 + rotZ: 0.009787786 + 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 + UniqueBack: false +DeckIDs: +- 231735 +- 231735 +- 231734 +- 231734 +Description: '' +GMNotes: '' +GUID: cb8d71 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Agents of Ancient One +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -11.2853947 + posY: 2.583707 + posZ: -12.9683313 + 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 Return to the Night of the Zealot 56270d/Custom_Model_Bag 3 Return to The Devourer Below 604753/Card Main Path 377b20.yaml b/unpacked/Custom_Model_Bag Return to the Night of the Zealot 56270d/Custom_Model_Bag 3 Return to The Devourer Below 604753/Card Main Path 377b20.yaml new file mode 100644 index 000000000..23df28fbb --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to the Night of the Zealot 56270d/Custom_Model_Bag 3 Return to The Devourer Below 604753/Card Main Path 377b20.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 232316 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2323': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775106514377430450/FDA37585F019D453CF383D975CF1AB631ECF64B7/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377431393/4752E394498B81694A370AA6BB05BC5A4E55FD30/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Woods. +GMNotes: '' +GUID: 377b20 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Main Path +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -17.1199474 + posY: 1.67707765 + posZ: -0.0300339889 + rotX: 359.9201 + rotY: 269.999939 + rotZ: 0.0168780554 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to the Night of the Zealot 56270d/Custom_Model_Bag 3 Return to The Devourer Below 604753/Card Scenario a22908.yaml b/unpacked/Custom_Model_Bag Return to the Night of the Zealot 56270d/Custom_Model_Bag 3 Return to The Devourer Below 604753/Card Scenario a22908.yaml new file mode 100644 index 000000000..c408acc5d --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to the Night of the Zealot 56270d/Custom_Model_Bag 3 Return to The Devourer Below 604753/Card Scenario a22908.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 232111 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2321': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775106514377428854/F01972D15C2B4CFCB8CA72006B7E00D243683AFA/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377429266/856DF4A8D87D7B6CB71572D20908D35F4182AC45/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: The Devourer Below +GMNotes: '' +GUID: a22908 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Scenario +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.955992 + posY: 1.65564823 + posZ: -10.4411545 + rotX: 359.919739 + rotY: 270.012451 + rotZ: 0.0168239921 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to the Night of the Zealot 56270d/Custom_Model_Bag 3 Return to The Devourer Below 604753/Card Setup c15c8a.yaml b/unpacked/Custom_Model_Bag Return to the Night of the Zealot 56270d/Custom_Model_Bag 3 Return to The Devourer Below 604753/Card Setup c15c8a.yaml new file mode 100644 index 000000000..7be3cc347 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to the Night of the Zealot 56270d/Custom_Model_Bag 3 Return to The Devourer Below 604753/Card Setup c15c8a.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 232121 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2321': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775106514377428854/F01972D15C2B4CFCB8CA72006B7E00D243683AFA/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377429266/856DF4A8D87D7B6CB71572D20908D35F4182AC45/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Return to The Devourer Below +GMNotes: '' +GUID: c15c8a +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Setup +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.96820474 + posY: 1.65449274 + posZ: -14.4314489 + rotX: 359.919739 + rotY: 270.012329 + rotZ: 0.0168235954 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to the Night of the Zealot 56270d/Custom_Model_Bag 3 Return to The Devourer Below 604753/Custom_Model_Bag Set-aside 5ac698.yaml b/unpacked/Custom_Model_Bag Return to the Night of the Zealot 56270d/Custom_Model_Bag 3 Return to The Devourer Below 604753/Custom_Model_Bag Set-aside 5ac698.yaml new file mode 100644 index 000000000..6cedd79f9 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to the Night of the Zealot 56270d/Custom_Model_Bag 3 Return to The Devourer Below 604753/Custom_Model_Bag Set-aside 5ac698.yaml @@ -0,0 +1,60 @@ +Autoraise: true +ColorDiffuse: + b: 0.02148666 + g: 0.00100758043 + r: 0.02148666 +ContainedObjects: +- !include 'Custom_Model_Bag Set-aside 5ac698/Deck Cultist Deck 69032d.yaml' +- !include 'Custom_Model_Bag Set-aside 5ac698/Card Ghoul Priest ab3719.yaml' +- !include 'Custom_Model_Bag Set-aside 5ac698/Custom_Tile d3d96a.yaml' +- !include "Custom_Model_Bag Set-aside 5ac698/Card Um\xF4rdhoth ab3719.yaml" +- !include 'Custom_Model_Bag Set-aside 5ac698/Card Ritual Site 372a95.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 Devourer Below +GMNotes: '' +GUID: 5ac698 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +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.695961 + posY: 1.558317 + posZ: 14.2788153 + rotX: 359.955139 + rotY: 224.995865 + rotZ: 0.0686640143 + scaleX: 2.0 + scaleY: 2.0 + scaleZ: 2.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to the Night of the Zealot 56270d/Custom_Model_Bag 3 Return to The Devourer Below 604753/Custom_Model_Bag Set-aside 5ac698/Card Ghoul Priest ab3719.yaml b/unpacked/Custom_Model_Bag Return to the Night of the Zealot 56270d/Custom_Model_Bag 3 Return to The Devourer Below 604753/Custom_Model_Bag Set-aside 5ac698/Card Ghoul Priest ab3719.yaml new file mode 100644 index 000000000..9d5854f46 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to the Night of the Zealot 56270d/Custom_Model_Bag 3 Return to The Devourer Below 604753/Custom_Model_Bag Set-aside 5ac698/Card Ghoul Priest ab3719.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 231700 +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 + UniqueBack: false +Description: Humanoid. Monster. Ghoul. Elite. +GMNotes: '' +GUID: ab3719 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Ghoul Priest +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 25.92075 + posY: 2.52716279 + posZ: -6.25442076 + rotX: 359.920135 + rotY: 270.000549 + rotZ: 0.0168754272 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to the Night of the Zealot 56270d/Custom_Model_Bag 3 Return to The Devourer Below 604753/Custom_Model_Bag Set-aside 5ac698/Card Ritual Site 372a95.yaml b/unpacked/Custom_Model_Bag Return to the Night of the Zealot 56270d/Custom_Model_Bag 3 Return to The Devourer Below 604753/Custom_Model_Bag Set-aside 5ac698/Card Ritual Site 372a95.yaml new file mode 100644 index 000000000..4d8f52aca --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to the Night of the Zealot 56270d/Custom_Model_Bag 3 Return to The Devourer Below 604753/Custom_Model_Bag Set-aside 5ac698/Card Ritual Site 372a95.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 232323 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2323': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775106514377430450/FDA37585F019D453CF383D975CF1AB631ECF64B7/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377431393/4752E394498B81694A370AA6BB05BC5A4E55FD30/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Cave. +GMNotes: '' +GUID: 372a95 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Ritual Site +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 4.51596546 + posY: 2.55959082 + posZ: 1.2734561 + rotX: 359.920135 + rotY: 269.999939 + rotZ: 0.0168754812 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to the Night of the Zealot 56270d/Custom_Model_Bag 3 Return to The Devourer Below 604753/Custom_Model_Bag Set-aside 5ac698/Card Umôrdhoth ab3719.yaml b/unpacked/Custom_Model_Bag Return to the Night of the Zealot 56270d/Custom_Model_Bag 3 Return to The Devourer Below 604753/Custom_Model_Bag Set-aside 5ac698/Card Umôrdhoth ab3719.yaml new file mode 100644 index 000000000..1b3fc7313 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to the Night of the Zealot 56270d/Custom_Model_Bag 3 Return to The Devourer Below 604753/Custom_Model_Bag Set-aside 5ac698/Card Umôrdhoth ab3719.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 231710 +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 + UniqueBack: false +Description: The Devourer Below +GMNotes: '' +GUID: ab3719 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: "Um\xF4rdhoth" +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 5.17139053 + posY: 2.558072 + posZ: -0.131576151 + rotX: 359.920135 + rotY: 269.999939 + rotZ: 0.016877763 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to the Night of the Zealot 56270d/Custom_Model_Bag 3 Return to The Devourer Below 604753/Custom_Model_Bag Set-aside 5ac698/Custom_Tile d3d96a.yaml b/unpacked/Custom_Model_Bag Return to the Night of the Zealot 56270d/Custom_Model_Bag 3 Return to The Devourer Below 604753/Custom_Model_Bag Set-aside 5ac698/Custom_Tile d3d96a.yaml new file mode 100644 index 000000000..afec147f4 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to the Night of the Zealot 56270d/Custom_Model_Bag 3 Return to The Devourer Below 604753/Custom_Model_Bag Set-aside 5ac698/Custom_Tile d3d96a.yaml @@ -0,0 +1,42 @@ +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: '' +GMNotes: '' +GUID: d3d96a +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Tile +Nickname: '' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 34.3944855 + posY: 2.42904544 + posZ: -50.2571068 + rotX: 359.983246 + rotY: 270.004364 + rotZ: 0.00354169821 + scaleX: 0.81 + scaleY: 1.0 + scaleZ: 0.81 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to the Night of the Zealot 56270d/Custom_Model_Bag 3 Return to The Devourer Below 604753/Custom_Model_Bag Set-aside 5ac698/Deck Cultist Deck 69032d.yaml b/unpacked/Custom_Model_Bag Return to the Night of the Zealot 56270d/Custom_Model_Bag 3 Return to The Devourer Below 604753/Custom_Model_Bag Set-aside 5ac698/Deck Cultist Deck 69032d.yaml new file mode 100644 index 000000000..5c8c268b8 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to the Night of the Zealot 56270d/Custom_Model_Bag 3 Return to The Devourer Below 604753/Custom_Model_Bag Set-aside 5ac698/Deck Cultist Deck 69032d.yaml @@ -0,0 +1,387 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 231745 + 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 + UniqueBack: false + Description: The Inquisitive Historian + GMNotes: '' + GUID: 2f6d5c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Alma Hill + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -26.8877316 + posY: 1.60149372 + posZ: 36.9405861 + rotX: 359.9215 + rotY: 269.9995 + rotZ: 0.0105527695 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231744 + 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 + UniqueBack: false + Description: The Crooked Cop + GMNotes: '' + GUID: 33870a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Billy Cooper + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -26.5962849 + posY: 1.74649262 + posZ: 36.55487 + rotX: 359.927429 + rotY: 270.000427 + rotZ: 0.009708078 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231743 + 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 + UniqueBack: false + Description: Your Next-Door Neighbor + GMNotes: '' + GUID: ab3719 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Jeremiah Pierce + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -26.8742352 + posY: 1.76448214 + posZ: 37.0487061 + rotX: 359.9221 + rotY: 269.999573 + rotZ: 0.015274873 + 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/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: The Mortician + GMNotes: '' + GUID: ab3719 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ruth Turner + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -6.18538 + posY: 1.72525084 + posZ: -7.613346 + rotX: 359.936371 + rotY: 270.0 + rotZ: 180.013824 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231708 + 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 + UniqueBack: false + Description: The Collector + GMNotes: '' + GUID: ec86a2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Victoria Devereux + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -6.151805 + posY: 1.71143651 + posZ: -8.111477 + rotX: 359.944366 + rotY: 270.016357 + rotZ: 180.000565 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231707 + 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 + UniqueBack: false + Description: The Occult Professor + GMNotes: '' + GUID: ad2df0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Peter Warren + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -6.05293274 + posY: 1.72509432 + posZ: -7.78916073 + rotX: 359.937225 + rotY: 269.999817 + rotZ: 180.015381 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231706 + 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 + UniqueBack: false + Description: The Undertaker + GMNotes: '' + GUID: a12fd2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Herman Collins + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -5.95645571 + posY: 1.70735312 + posZ: -8.194746 + rotX: 359.924164 + rotY: 269.999878 + rotZ: 180.026428 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231705 + 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 + UniqueBack: false + Description: The Cannibal + GMNotes: '' + GUID: ab3719 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '"Wolf-Man" Drew' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -6.351678 + posY: 1.56253266 + posZ: -7.93774748 + rotX: 359.92038 + rotY: 269.999969 + rotZ: 180.018967 + 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 + UniqueBack: false +DeckIDs: +- 231745 +- 231744 +- 231743 +- 231709 +- 231708 +- 231707 +- 231706 +- 231705 +Description: '' +GMNotes: '' +GUID: 69032d +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Cultist Deck +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 30.472044 + posY: 2.50542974 + posZ: -39.4694023 + rotX: 359.920135 + rotY: 270.000061 + rotZ: 180.016876 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to the Night of the Zealot 56270d/Custom_Model_Bag 3 Return to The Devourer Below 604753/Custom_Tile 7234af.yaml b/unpacked/Custom_Model_Bag Return to the Night of the Zealot 56270d/Custom_Model_Bag 3 Return to The Devourer Below 604753/Custom_Tile 7234af.yaml new file mode 100644 index 000000000..83a39f67f --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to the Night of the Zealot 56270d/Custom_Model_Bag 3 Return to The Devourer Below 604753/Custom_Tile 7234af.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 7234af +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.4445877 + posY: 1.610032 + posZ: 0.0781343952 + rotX: 359.9201 + rotY: 270.011261 + rotZ: 0.0168887191 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to the Night of the Zealot 56270d/Custom_Model_Bag 3 Return to The Devourer Below 604753/Deck Act Deck 91957f.yaml b/unpacked/Custom_Model_Bag Return to the Night of the Zealot 56270d/Custom_Model_Bag 3 Return to The Devourer Below 604753/Deck Act Deck 91957f.yaml new file mode 100644 index 000000000..871079750 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to the Night of the Zealot 56270d/Custom_Model_Bag 3 Return to The Devourer Below 604753/Deck Act Deck 91957f.yaml @@ -0,0 +1,172 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 232417 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2324': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775106514377428854/F01972D15C2B4CFCB8CA72006B7E00D243683AFA/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377429266/856DF4A8D87D7B6CB71572D20908D35F4182AC45/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 3 + GMNotes: '' + GUID: ac3a7b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Disrupting the Ritual + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -7.38715839 + posY: 1.56597877 + posZ: 8.551979 + rotX: 0.02151022 + rotY: 178.889252 + rotZ: 0.07365705 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232416 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2324': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775106514377428854/F01972D15C2B4CFCB8CA72006B7E00D243683AFA/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377429266/856DF4A8D87D7B6CB71572D20908D35F4182AC45/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 2 + GMNotes: '' + GUID: ed5537 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Into the Darkness + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -7.432128 + posY: 1.711301 + posZ: 8.2228775 + rotX: 0.008659951 + rotY: 180.019943 + rotZ: 0.045334097 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232415 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2324': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775106514377428854/F01972D15C2B4CFCB8CA72006B7E00D243683AFA/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377429266/856DF4A8D87D7B6CB71572D20908D35F4182AC45/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 1 + GMNotes: '' + GUID: a57395 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Investigating the Trail + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 19.8371429 + posY: 1.75696 + posZ: -1.15134358 + rotX: 0.438978523 + rotY: 180.135269 + rotZ: 3.82684779 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2324': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775106514377428854/F01972D15C2B4CFCB8CA72006B7E00D243683AFA/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377429266/856DF4A8D87D7B6CB71572D20908D35F4182AC45/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 232417 +- 232416 +- 232415 +Description: '' +GMNotes: '' +GUID: 91957f +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Act Deck +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.688446 + posY: 1.65499723 + posZ: -5.04852533 + rotX: 0.0168327689 + rotY: 180.004562 + rotZ: 0.08025794 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to the Night of the Zealot 56270d/Custom_Model_Bag 3 Return to The Devourer Below 604753/Deck Agenda Deck 50ad79.yaml b/unpacked/Custom_Model_Bag Return to the Night of the Zealot 56270d/Custom_Model_Bag 3 Return to The Devourer Below 604753/Deck Agenda Deck 50ad79.yaml new file mode 100644 index 000000000..a61237639 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to the Night of the Zealot 56270d/Custom_Model_Bag 3 Return to The Devourer Below 604753/Deck Agenda Deck 50ad79.yaml @@ -0,0 +1,172 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 232414 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2324': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775106514377428854/F01972D15C2B4CFCB8CA72006B7E00D243683AFA/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377429266/856DF4A8D87D7B6CB71572D20908D35F4182AC45/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 3 + GMNotes: '' + GUID: 76e312 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Vengeance Awaits + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 20.66079 + posY: 1.52502251 + posZ: 1.90557754 + rotX: 0.02110748 + rotY: 180.009445 + rotZ: 0.0922442451 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232413 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2324': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775106514377428854/F01972D15C2B4CFCB8CA72006B7E00D243683AFA/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377429266/856DF4A8D87D7B6CB71572D20908D35F4182AC45/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 2 + GMNotes: '' + GUID: '633954' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Ritual Begins + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 20.7079182 + posY: 1.71940839 + posZ: 1.96059358 + rotX: 0.0514613651 + rotY: 179.907211 + rotZ: 2.541614 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232412 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2324': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775106514377428854/F01972D15C2B4CFCB8CA72006B7E00D243683AFA/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377429266/856DF4A8D87D7B6CB71572D20908D35F4182AC45/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 1 + GMNotes: '' + GUID: e352ec + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Arkham Woods + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 20.4413776 + posY: 1.68517923 + posZ: 1.66561949 + rotX: 0.034845572 + rotY: 180.017029 + rotZ: 0.0206294861 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2324': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775106514377428854/F01972D15C2B4CFCB8CA72006B7E00D243683AFA/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377429266/856DF4A8D87D7B6CB71572D20908D35F4182AC45/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 232414 +- 232413 +- 232412 +Description: '' +GMNotes: '' +GUID: 50ad79 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Agenda Deck +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.72462678 + posY: 1.65664113 + posZ: 0.373330057 + rotX: 0.0168305822 + rotY: 180.003143 + rotZ: 0.08025865 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to the Night of the Zealot 56270d/Custom_Model_Bag 3 Return to The Devourer Below 604753/Deck Arkham Woods 54354d.yaml b/unpacked/Custom_Model_Bag Return to the Night of the Zealot 56270d/Custom_Model_Bag 3 Return to The Devourer Below 604753/Deck Arkham Woods 54354d.yaml new file mode 100644 index 000000000..c89b953a6 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to the Night of the Zealot 56270d/Custom_Model_Bag 3 Return to The Devourer Below 604753/Deck Arkham Woods 54354d.yaml @@ -0,0 +1,473 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 232336 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2323': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775106514377430450/FDA37585F019D453CF383D975CF1AB631ECF64B7/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377431393/4752E394498B81694A370AA6BB05BC5A4E55FD30/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Woods. + GMNotes: '' + GUID: 0223a4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Arkham Woods + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 20.3253345 + posY: 1.6775713 + posZ: -7.779838 + rotX: 359.933868 + rotY: 269.9998 + rotZ: 0.01202929 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232317 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2323': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775106514377430450/FDA37585F019D453CF383D975CF1AB631ECF64B7/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377431393/4752E394498B81694A370AA6BB05BC5A4E55FD30/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Woods. + GMNotes: '' + GUID: 377b20 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Arkham Woods + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.5050683 + posY: 1.7248472 + posZ: 4.32418728 + rotX: 359.920959 + rotY: 269.999756 + rotZ: 0.0166171156 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232319 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2323': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775106514377430450/FDA37585F019D453CF383D975CF1AB631ECF64B7/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377431393/4752E394498B81694A370AA6BB05BC5A4E55FD30/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Woods. + GMNotes: '' + GUID: 861e20 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Arkham Woods + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.18749642 + posY: 1.71257639 + posZ: 4.24046946 + rotX: 359.9181 + rotY: 269.999756 + rotZ: 0.0164953228 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232318 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2323': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775106514377430450/FDA37585F019D453CF383D975CF1AB631ECF64B7/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377431393/4752E394498B81694A370AA6BB05BC5A4E55FD30/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Woods. + GMNotes: '' + GUID: e90029 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Arkham Woods + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.3233912 + posY: 1.71052253 + posZ: 3.8609674 + rotX: 359.924652 + rotY: 269.999451 + rotZ: 0.0189638846 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232320 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2323': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775106514377430450/FDA37585F019D453CF383D975CF1AB631ECF64B7/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377431393/4752E394498B81694A370AA6BB05BC5A4E55FD30/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Woods. + GMNotes: '' + GUID: 47ac26 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Arkham Woods + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.23962975 + posY: 1.737456 + posZ: 3.95132041 + rotX: 359.936462 + rotY: 270.0 + rotZ: 0.0131655913 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232338 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2323': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775106514377430450/FDA37585F019D453CF383D975CF1AB631ECF64B7/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377431393/4752E394498B81694A370AA6BB05BC5A4E55FD30/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Woods. + GMNotes: '' + GUID: 9b6b06 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Arkham Woods + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 20.2156944 + posY: 1.641592 + posZ: -7.53725433 + rotX: 359.933563 + rotY: 269.999634 + rotZ: 0.0131343585 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232337 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2323': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775106514377430450/FDA37585F019D453CF383D975CF1AB631ECF64B7/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377431393/4752E394498B81694A370AA6BB05BC5A4E55FD30/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Woods. + GMNotes: '' + GUID: 9fa651 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Arkham Woods + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 19.4226818 + posY: 1.68495536 + posZ: -7.68281937 + rotX: 359.950562 + rotY: 269.9726 + rotZ: 0.0111246416 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232321 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2323': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775106514377430450/FDA37585F019D453CF383D975CF1AB631ECF64B7/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377431393/4752E394498B81694A370AA6BB05BC5A4E55FD30/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Woods. + GMNotes: '' + GUID: 09c961 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Arkham Woods + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.245046 + posY: 1.7145108 + posZ: 4.29936457 + rotX: 359.926575 + rotY: 270.000031 + rotZ: 0.008637794 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232339 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2323': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775106514377430450/FDA37585F019D453CF383D975CF1AB631ECF64B7/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377431393/4752E394498B81694A370AA6BB05BC5A4E55FD30/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Woods. + GMNotes: '' + GUID: 3b4a5f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Arkham Woods + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 20.1740131 + posY: 1.6513586 + posZ: -7.2367835 + rotX: 359.9368 + rotY: 269.992676 + rotZ: 0.0120900655 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232322 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2323': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775106514377430450/FDA37585F019D453CF383D975CF1AB631ECF64B7/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377431393/4752E394498B81694A370AA6BB05BC5A4E55FD30/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Woods. + GMNotes: '' + GUID: e8e04b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Arkham Woods + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.30518246 + posY: 1.55907571 + posZ: 4.34235573 + rotX: 359.920471 + rotY: 269.9999 + rotZ: 0.01462554 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2323': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775106514377430450/FDA37585F019D453CF383D975CF1AB631ECF64B7/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377431393/4752E394498B81694A370AA6BB05BC5A4E55FD30/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 232336 +- 232317 +- 232319 +- 232318 +- 232320 +- 232338 +- 232337 +- 232321 +- 232339 +- 232322 +Description: '' +GMNotes: '' +GUID: 54354d +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Arkham Woods +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -12.5200968 + posY: 1.663346 + posZ: 7.652702 + rotX: 359.9201 + rotY: 269.999451 + rotZ: 0.0168760847 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Return to the Night of the Zealot 56270d/Custom_Model_Bag 3 Return to The Devourer Below 604753/Deck Encounter Deck d85823.yaml b/unpacked/Custom_Model_Bag Return to the Night of the Zealot 56270d/Custom_Model_Bag 3 Return to The Devourer Below 604753/Deck Encounter Deck d85823.yaml new file mode 100644 index 000000000..38e5b41f8 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to the Night of the Zealot 56270d/Custom_Model_Bag 3 Return to The Devourer Below 604753/Deck Encounter Deck d85823.yaml @@ -0,0 +1,1204 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 231742 + 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 + UniqueBack: false + Description: Item. Mask. + GMNotes: '' + GUID: 7b7c88 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: "Mask of Um\xF4rdhoth" + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -27.3313046 + posY: 1.60303676 + posZ: 40.0525627 + rotX: 359.919617 + rotY: 269.972717 + rotZ: 0.0103522725 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231742 + 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 + UniqueBack: false + Description: Item. Mask. + GMNotes: '' + GUID: 62b6cd + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: "Mask of Um\xF4rdhoth" + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -27.2997189 + posY: 1.748332 + posZ: 39.7179947 + rotX: 359.942841 + rotY: 270.004272 + rotZ: 0.00302965054 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231741 + 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 + UniqueBack: false + Description: Monster. Servitor. Cultist. + GMNotes: '' + GUID: 53b9cb + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Corpse-Taker + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -27.2525177 + posY: 1.76590574 + posZ: 39.58632 + rotX: 359.924469 + rotY: 270.042847 + rotZ: 359.986053 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231740 + 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 + UniqueBack: false + Description: Humanoid. Cultist. + GMNotes: '' + GUID: ab3719 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Disciple of the Devourer + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -26.841526 + posY: 1.60154414 + posZ: 37.0518341 + rotX: 359.9202 + rotY: 270.005066 + rotZ: 0.0162651874 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231740 + 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 + UniqueBack: false + Description: Humanoid. Cultist. + GMNotes: '' + GUID: 0abaca + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Disciple of the Devourer + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -27.3358841 + posY: 1.76970363 + posZ: 37.12298 + rotX: 359.9229 + rotY: 270.005157 + rotZ: 0.0140643651 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231740 + 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 + UniqueBack: false + Description: Humanoid. Cultist. + GMNotes: '' + GUID: ab3719 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Disciple of the Devourer + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -27.0939522 + posY: 1.78332663 + posZ: 37.4462624 + rotX: 359.919922 + rotY: 270.005157 + rotZ: 0.01614685 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231739 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 5b4ef3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Chill from Below + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -25.5324268 + posY: 1.59864092 + posZ: 33.35978 + rotX: 359.920135 + rotY: 269.999817 + rotZ: 0.0168426409 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231739 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: fa916a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Chill from Below + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -25.095953 + posY: 1.76498652 + posZ: 33.6871719 + rotX: 359.9181 + rotY: 269.999878 + rotZ: 0.0131390868 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231739 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 5b4ef3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Chill from Below + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -25.0959339 + posY: 1.77885532 + posZ: 33.68717 + rotX: 359.920319 + rotY: 269.999878 + rotZ: 0.0163987149 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231738 + 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 + UniqueBack: false + Description: Humanoid. Monster. Ghoul. + GMNotes: '' + GUID: cadd49 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: "Acolyte of Um\xF4rdhoth" + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -25.8445168 + posY: 1.59990489 + posZ: 36.2778969 + rotX: 359.920441 + rotY: 269.995728 + rotZ: 0.01474889 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231737 + 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 + UniqueBack: false + Description: Humanoid. Monster. Ghoul. + GMNotes: '' + GUID: ab3719 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Grave-Eater + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -25.9238586 + posY: 1.60099757 + posZ: 39.56222 + rotX: 359.9203 + rotY: 270.005859 + rotZ: 0.0158384759 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231737 + 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 + UniqueBack: false + Description: Humanoid. Monster. Ghoul. + GMNotes: '' + GUID: 4d726b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Grave-Eater + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -26.18154 + posY: 1.76863384 + posZ: 39.29493 + rotX: 359.92218 + rotY: 270.005859 + rotZ: 0.0167646986 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231737 + 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 + UniqueBack: false + Description: Humanoid. Monster. Ghoul. + GMNotes: '' + GUID: ab3719 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Grave-Eater + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -26.055315 + posY: 1.78233588 + posZ: 39.3050423 + rotX: 359.920074 + rotY: 270.005859 + rotZ: 0.0165559836 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231736 + 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 + UniqueBack: false + Description: Power. + GMNotes: '' + GUID: ab3719 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: "Um\xF4rdhoth's Hunger" + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -26.140295 + posY: 1.5992924 + posZ: 32.7183762 + rotX: 359.9202 + rotY: 269.999939 + rotZ: 0.01639921 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231736 + 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 + UniqueBack: false + Description: Power. + GMNotes: '' + GUID: 98c183 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: "Um\xF4rdhoth's Hunger" + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -26.29436 + posY: 1.76654232 + posZ: 32.8062363 + rotX: 359.9221 + rotY: 269.999939 + rotZ: 0.01437897 + 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 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: f5c831 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: 97416f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: 0f4202 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: c70601 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: ab3719 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: 435a47 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: ab3719 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: 6e7cb8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: 8af879 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: 6e7cb8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 231711 + 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 + UniqueBack: false + Description: Curse. + GMNotes: '' + GUID: 085cc8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: "Um\xF4rdhoth's Wrath" + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -5.9362 + posY: 1.563267 + posZ: 6.041544 + rotX: 359.920166 + rotY: 269.999725 + rotZ: 0.0161988959 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231711 + 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 + UniqueBack: false + Description: Curse. + GMNotes: '' + GUID: 48e472 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: "Um\xF4rdhoth's Wrath" + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -5.86767 + posY: 1.71316624 + posZ: 6.10242033 + rotX: 359.9167 + rotY: 270.000183 + rotZ: 0.003921997 + 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 + UniqueBack: false +DeckIDs: +- 231742 +- 231742 +- 231741 +- 231740 +- 231740 +- 231740 +- 231739 +- 231739 +- 231739 +- 231738 +- 231737 +- 231737 +- 231737 +- 231736 +- 231736 +- 231718 +- 231718 +- 231717 +- 231717 +- 231716 +- 231716 +- 231716 +- 231719 +- 231719 +- 231719 +- 231711 +- 231711 +Description: '' +GMNotes: '' +GUID: d85823 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Encounter Deck +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.92743945 + posY: 1.75572121 + posZ: 5.757152 + 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 Return to the Night of the Zealot 56270d/Custom_Tile Night of the Zealot Campaign Log e0c3e7.ttslua b/unpacked/Custom_Model_Bag Return to the Night of the Zealot 56270d/Custom_Tile Night of the Zealot Campaign Log e0c3e7.ttslua new file mode 100644 index 000000000..49d7c7b96 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to the Night of the Zealot 56270d/Custom_Tile Night of the Zealot Campaign Log e0c3e7.ttslua @@ -0,0 +1,537 @@ +--[[ Character Sheet Template by: MrStump + +You can set up your own character sheet if you follow these steps. + +Step 1) Change the character sheet image + -Right click on the character sheet, click Custom + -Replace the image URL with one for your character sheet + -Click import, make sure your sheet loads + -SAVE THE GAME (the table setup) + -LOAD FROM THAT SAVE YOU JUST MADE + +Step 2) Edit script to fit your character sheet + -Below you will see some general options, and then the big data table + -The data table is what determines how many of which buttons are made + -Checkboxes + -Counters + -Textboxes + -By default, there are 3 of each. You can add more or remove entries + -If you intend to add/remove, be sure only to add/remove ENTRIES + -This is what an entry looks like: + { + pos = {-0.977,0.1,-0.589}, + size = 800, + state = false + }, + -Deleting the whole thing would remove that specific item on the sheet + -Copy and pasting it after another entry would create another + -Each entry type has unique data points (pos, size, state, etc) + -Do not try to add in your own data points or remove them individually + -There is a summary of what each point does at the top of its category + +Step 3) Save and check script changes + -Hit Save & Apply in the script window to save your code + -You can edit your code as needed and Save+Apply as often as needed + -When you are finished, make disableSave = false below then Save+apply + -This enables saving, so your sheet will remember whats on it. + +Bonus) Finding/Editing Positions for elements + I have included a tool to get positions for buttons in {x,y,z} form + Place it where you want the center of your element to be + Then copy the table from the notes (lower right of screen) + You can highlight it and CTRL+C + Paste it into the data table where needed (pos=) + If you want to manually tweek the values: + {0,0,0} is the center of the character sheet + {1,0,0} is right, {-1,0,0} is left + {0,0,-1} is up, {0,0,1} is down + 0.1 for Y is the height off of the page. + If it was 0, it would be down inside the model of the sheet + +Begin editing below: ]] + +--Set this to true while editing and false when you have finished +disableSave = false +--Remember to set this to false once you are done making changes +--Then, after you save & apply it, save your game too + +--Color information for button text (r,g,b, values of 0-1) +buttonFontColor = {0,0,0} +--Color information for button background +buttonColor = {1,1,1} +--Change scale of button (Avoid changing if possible) +buttonScale = {0.1,0.1,0.1} + +--This is the button placement information +defaultButtonData = { + --Add checkboxes + checkbox = { + --[[ + pos = the position (pasted from the helper tool) + size = height/width/font_size for checkbox + state = default starting value for checkbox (true=checked, false=not) + ]] + --First checkbox + { + pos = {-0.62,0.1,0.056}, + size = 400, + state = false + }, + --Second checkbox + { + pos = {-0.629,0.1,0.199}, + size = 400, + state = false + }, + --Third checkbox + { + pos = {-0.594,0.1,0.355}, + size = 400, + state = false + }, + --End of checkboxes + }, + --Add counters that have a + and - button + counter = { + --[[ + pos = the position (pasted from the helper tool) + size = height/width/font_size for counter + value = default starting value for counter + hideBG = if background of counter is hidden (true=hidden, false=not) + ]] + --Slot one counter 1 + { + pos = {-0.7,0.1,-0.4}, + size = 400, + value = 0, + hideBG = true + }, + --Slot one counter 2 + { + pos = {-0.52,0.1,-0.4}, + size = 400, + value = 0, + hideBG = true + }, + --Slot one xp 1 + { + pos = {-0.517,0.1,-0.5}, + size = 300, + value = 0, + hideBG = true + }, + --Slot two counter 1 + { + pos = {-0.274,0.1,-0.4}, + size = 400, + value = 0, + hideBG = true + }, + --Slot two counter 2 + { + pos = {-0.074,0.1,-0.4}, + size = 400, + value = 0, + hideBG = true + }, + --Slot two xp 1 + { + pos = {-0.061,0.1,-0.5}, + size = 300, + value = 0, + hideBG = true + }, + --Slot three counter 1 + { + pos = {0.153,0.1,-0.4}, + size = 400, + value = 0, + hideBG = true + }, + --Slot three counter 2 + { + pos = {0.379,0.1,-0.4}, + size = 400, + value = 0, + hideBG = true + }, + --Slot three xp 1 + { + pos = {0.38,0.1,-0.5}, + size = 300, + value = 0, + hideBG = true + }, + --Slot four counter 1 + { + pos = {0.614,0.1,-0.4}, + size = 400, + value = 0, + hideBG = true + }, + --Slot four counter 2 + { + pos = {0.82,0.1,-0.4}, + size = 400, + value = 0, + hideBG = true + }, + --Slot four xp 1 + { + pos = {0.827,0.1,-0.5}, + size = 300, + value = 0, + hideBG = true + }, + --End of counters + }, + --Add editable text boxes + textbox = { + --[[ + pos = the position (pasted from the helper tool) + rows = how many lines of text you want for this box + width = how wide the text box is + font_size = size of text. This and "rows" effect overall height + label = what is shown when there is no text. "" = nothing + value = text entered into box. "" = nothing + alignment = Number to indicate how you want text aligned + (1=Automatic, 2=Left, 3=Center, 4=Right, 5=Justified) + ]] + --Slot one player + { + pos = {-0.637,0.1,-0.66}, + rows = 1, + width = 2000, + font_size = 150, + label = "Click to type", + value = "", + alignment = 2 + }, + --Slot one investigator + { + pos = {-0.637,0.1,-0.58}, + rows = 1, + width = 2000, + font_size = 150, + label = "Click to type", + value = "", + alignment = 2 + }, + --Slot one story + { + pos = {-0.637,0.1,-0.28}, + rows = 3, + width = 2000, + font_size = 150, + label = "Click to type", + value = "", + alignment = 2 + }, + --Slot two player + { + pos = {-0.2,0.1,-0.66}, + rows = 1, + width = 2000, + font_size = 150, + label = "Click to type", + value = "", + alignment = 2 + }, + --Slot two investigator + { + pos = {-0.2,0.1,-0.58}, + rows = 1, + width = 2000, + font_size = 150, + label = "Click to type", + value = "", + alignment = 2 + }, + --Slot two story + { + pos = {-0.2,0.1,-0.28}, + rows = 3, + width = 2000, + font_size = 150, + label = "Click to type", + value = "", + alignment = 2 + }, + --Slot three player + { + pos = {0.241,0.1,-0.66}, + rows = 1, + width = 2000, + font_size = 150, + label = "Click to type", + value = "", + alignment = 2 + }, + --Slot three investigator + { + pos = {0.237,0.1,-0.58}, + rows = 1, + width = 2000, + font_size = 150, + label = "Click to type", + value = "", + alignment = 2 + }, + --Slot three story + { + pos = {0.24,0.1,-0.28}, + rows = 3, + width = 2000, + font_size = 150, + label = "Click to type", + value = "", + alignment = 2 + }, + --Slot four player + { + pos = {0.671,0.1,-0.66}, + rows = 1, + width = 2000, + font_size = 150, + label = "Click to type", + value = "", + alignment = 2 + }, + --Slot four investigator + { + pos = {0.671,0.1,-0.58}, + rows = 1, + width = 2000, + font_size = 150, + label = "Click to type", + value = "", + alignment = 2 + }, + --Slot four story + { + pos = {0.671,0.1,-0.28}, + rows = 3, + width = 2000, + font_size = 150, + label = "Click to type", + value = "", + alignment = 2 + }, + --Killed Textbox + { + pos = {-0.4,0.1,0.68}, + rows = 8, + width = 3800, + font_size = 200, + label = "Click to type", + value = "", + alignment = 2 + }, + --Campaign Notes + { + pos = {0.507,0.1,0.15}, + rows = 8, + width = 3500, + font_size = 200, + label = "Click to type", + value = "", + alignment = 2 + }, + --Cultists interrogated + { + pos = {0.507,0.1,0.509}, + rows = 4, + width = 3500, + font_size = 200, + label = "Click to type", + value = "", + alignment = 2 + }, + --Cultists got away + { + pos = {0.507,0.1,0.771}, + rows = 4, + width = 3500, + font_size = 200, + label = "Click to type", + value = "", + alignment = 2 + }, + --End of textboxes + } +} + + + +--Lua beyond this point, I recommend doing something more fun with your life + + + +--Save function +function updateSave() + saved_data = JSON.encode(ref_buttonData) + if disableSave==true then saved_data="" end + self.script_state = saved_data +end + +--Startup procedure +function onload(saved_data) + if disableSave==true then saved_data="" end + if saved_data ~= "" then + local loaded_data = JSON.decode(saved_data) + ref_buttonData = loaded_data + else + ref_buttonData = defaultButtonData + end + + spawnedButtonCount = 0 + createCheckbox() + createCounter() + createTextbox() +end + + + +--Click functions for buttons + + + +--Checks or unchecks the given box +function click_checkbox(tableIndex, buttonIndex) + if ref_buttonData.checkbox[tableIndex].state == true then + ref_buttonData.checkbox[tableIndex].state = false + self.editButton({index=buttonIndex, label=""}) + else + ref_buttonData.checkbox[tableIndex].state = true + self.editButton({index=buttonIndex, label=string.char(10008)}) + end + updateSave() +end + +--Applies value to given counter display +function click_counter(tableIndex, buttonIndex, amount) + ref_buttonData.counter[tableIndex].value = ref_buttonData.counter[tableIndex].value + amount + self.editButton({index=buttonIndex, label=ref_buttonData.counter[tableIndex].value}) + updateSave() +end + +--Updates saved value for given text box +function click_textbox(i, value, selected) + if selected == false then + ref_buttonData.textbox[i].value = value + updateSave() + end +end + +--Dud function for if you have a background on a counter +function click_none() end + + + +--Button creation + + + +--Makes checkboxes +function createCheckbox() + for i, data in ipairs(ref_buttonData.checkbox) do + --Sets up reference function + local buttonNumber = spawnedButtonCount + local funcName = "checkbox"..i + local func = function() click_checkbox(i, buttonNumber) end + self.setVar(funcName, func) + --Sets up label + local label = "" + if data.state==true then label=string.char(10008) end + --Creates button and counts it + self.createButton({ + label=label, click_function=funcName, function_owner=self, + position=data.pos, height=data.size, width=data.size, + font_size=data.size, scale=buttonScale, + color=buttonColor, font_color=buttonFontColor + }) + spawnedButtonCount = spawnedButtonCount + 1 + end +end + +--Makes counters +function createCounter() + for i, data in ipairs(ref_buttonData.counter) do + --Sets up display + local displayNumber = spawnedButtonCount + --Sets up label + local label = data.value + --Sets height/width for display + local size = data.size + if data.hideBG == true then size = 0 end + --Creates button and counts it + self.createButton({ + label=label, click_function="click_none", function_owner=self, + position=data.pos, height=size, width=size, + font_size=data.size, scale=buttonScale, + color=buttonColor, font_color=buttonFontColor + }) + spawnedButtonCount = spawnedButtonCount + 1 + + --Sets up add 1 + local funcName = "counterAdd"..i + local func = function() click_counter(i, displayNumber, 1) end + self.setVar(funcName, func) + --Sets up label + local label = "+" + --Sets up position + local offsetDistance = (data.size/2 + data.size/4) * (buttonScale[1] * 0.002) + local pos = {data.pos[1] + offsetDistance, data.pos[2], data.pos[3]} + --Sets up size + local size = data.size / 2 + --Creates button and counts it + self.createButton({ + label=label, click_function=funcName, function_owner=self, + position=pos, height=size, width=size, + font_size=size, scale=buttonScale, + color=buttonColor, font_color=buttonFontColor + }) + spawnedButtonCount = spawnedButtonCount + 1 + + --Sets up subtract 1 + local funcName = "counterSub"..i + local func = function() click_counter(i, displayNumber, -1) end + self.setVar(funcName, func) + --Sets up label + local label = "-" + --Set up position + local pos = {data.pos[1] - offsetDistance, data.pos[2], data.pos[3]} + --Creates button and counts it + self.createButton({ + label=label, click_function=funcName, function_owner=self, + position=pos, height=size, width=size, + font_size=size, scale=buttonScale, + color=buttonColor, font_color=buttonFontColor + }) + spawnedButtonCount = spawnedButtonCount + 1 + end +end + +function createTextbox() + for i, data in ipairs(ref_buttonData.textbox) do + --Sets up reference function + local funcName = "textbox"..i + local func = function(_,_,val,sel) click_textbox(i,val,sel) end + self.setVar(funcName, func) + + self.createInput({ + input_function = funcName, + function_owner = self, + label = data.label, + alignment = data.alignment, + position = data.pos, + scale = buttonScale, + width = data.width, + height = (data.font_size*data.rows)+24, + font_size = data.font_size, + color = buttonColor, + font_color = buttonFontColor, + value = data.value, + }) + end +end \ No newline at end of file diff --git a/unpacked/Custom_Model_Bag Return to the Night of the Zealot 56270d/Custom_Tile Night of the Zealot Campaign Log e0c3e7.yaml b/unpacked/Custom_Model_Bag Return to the Night of the Zealot 56270d/Custom_Tile Night of the Zealot Campaign Log e0c3e7.yaml new file mode 100644 index 000000000..8d6a9ab61 --- /dev/null +++ b/unpacked/Custom_Model_Bag Return to the Night of the Zealot 56270d/Custom_Tile Night of the Zealot Campaign Log e0c3e7.yaml @@ -0,0 +1,58 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.1 + Type: 0 + ImageScalar: 1.0 + ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/959719855122482281/AD834A2E74B4568409BA1C9F166E696A69717D68/ + ImageURL: http://cloud-3.steamusercontent.com/ugc/952965089464985485/B0C1F18E3FA4F2863ABE0AE01A226C03693818C9/ + WidthScale: 0.0 +Description: '' +GMNotes: '' +GUID: e0c3e7 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Tile Night of the Zealot Campaign Log e0c3e7.ttslua' +LuaScriptState: '{"checkbox":[{"pos":[-0.62,0.1,0.056],"size":400,"state":false},{"pos":[-0.629,0.1,0.199],"size":400,"state":false},{"pos":[-0.594,0.1,0.355],"size":400,"state":false}],"counter":[{"hideBG":true,"pos":[-0.7,0.1,-0.4],"size":400,"value":0},{"hideBG":true,"pos":[-0.52,0.1,-0.4],"size":400,"value":0},{"hideBG":true,"pos":[-0.517,0.1,-0.5],"size":300,"value":0},{"hideBG":true,"pos":[-0.274,0.1,-0.4],"size":400,"value":0},{"hideBG":true,"pos":[-0.074,0.1,-0.4],"size":400,"value":0},{"hideBG":true,"pos":[-0.061,0.1,-0.5],"size":300,"value":0},{"hideBG":true,"pos":[0.153,0.1,-0.4],"size":400,"value":0},{"hideBG":true,"pos":[0.379,0.1,-0.4],"size":400,"value":0},{"hideBG":true,"pos":[0.38,0.1,-0.5],"size":300,"value":0},{"hideBG":true,"pos":[0.614,0.1,-0.4],"size":400,"value":0},{"hideBG":true,"pos":[0.82,0.1,-0.4],"size":400,"value":0},{"hideBG":true,"pos":[0.827,0.1,-0.5],"size":300,"value":0}],"textbox":[{"alignment":2,"font_size":150,"label":"Click + to type","pos":[-0.637,0.1,-0.66],"rows":1,"value":"","width":2000},{"alignment":2,"font_size":150,"label":"Click + to type","pos":[-0.637,0.1,-0.58],"rows":1,"value":"","width":2000},{"alignment":2,"font_size":150,"label":"Click + to type","pos":[-0.637,0.1,-0.28],"rows":3,"value":"","width":2000},{"alignment":2,"font_size":150,"label":"Click + to type","pos":[-0.2,0.1,-0.66],"rows":1,"value":"","width":2000},{"alignment":2,"font_size":150,"label":"Click + to type","pos":[-0.2,0.1,-0.58],"rows":1,"value":"","width":2000},{"alignment":2,"font_size":150,"label":"Click + to type","pos":[-0.2,0.1,-0.28],"rows":3,"value":"","width":2000},{"alignment":2,"font_size":150,"label":"Click + to type","pos":[0.241,0.1,-0.66],"rows":1,"value":"","width":2000},{"alignment":2,"font_size":150,"label":"Click + to type","pos":[0.237,0.1,-0.58],"rows":1,"value":"","width":2000},{"alignment":2,"font_size":150,"label":"Click + to type","pos":[0.24,0.1,-0.28],"rows":3,"value":"","width":2000},{"alignment":2,"font_size":150,"label":"Click + to type","pos":[0.671,0.1,-0.66],"rows":1,"value":"","width":2000},{"alignment":2,"font_size":150,"label":"Click + to type","pos":[0.671,0.1,-0.58],"rows":1,"value":"","width":2000},{"alignment":2,"font_size":150,"label":"Click + to type","pos":[0.671,0.1,-0.28],"rows":3,"value":"","width":2000},{"alignment":2,"font_size":200,"label":"Click + to type","pos":[-0.4,0.1,0.68],"rows":8,"value":"","width":3800},{"alignment":2,"font_size":200,"label":"Click + to type","pos":[0.507,0.1,0.15],"rows":8,"value":"","width":3500},{"alignment":2,"font_size":200,"label":"Click + to type","pos":[0.507,0.1,0.509],"rows":4,"value":"","width":3500},{"alignment":2,"font_size":200,"label":"Click + to type","pos":[0.507,0.1,0.771],"rows":4,"value":"","width":3500}]}' +Name: Custom_Tile +Nickname: Night of the Zealot Campaign Log +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -1.46550119 + posY: 1.4756223 + posZ: -26.9308033 + rotX: 359.920135 + rotY: 270.0078 + rotZ: 0.0168609433 + scaleX: 6.5 + scaleY: 1.0 + scaleZ: 6.5 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue 0038cb.ttslua b/unpacked/Custom_Model_Bag Rogue 0038cb.ttslua new file mode 100644 index 000000000..857093fb8 --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue 0038cb.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,0,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 + 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=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,0,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,0,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,0,0}, height=350, width=750, + 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}, rotation={0,0,0}, height=350, width=800, + font_size=250, color={0,0,0}, font_color={1,1,1} + }) +-- self.createButton({ +-- label="Setup", click_function="buttonClick_setup", function_owner=self, +-- position={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.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 \ No newline at end of file diff --git a/unpacked/Custom_Model_Bag Rogue 0038cb.yaml b/unpacked/Custom_Model_Bag Rogue 0038cb.yaml new file mode 100644 index 000000000..319c42adf --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue 0038cb.yaml @@ -0,0 +1,105 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +ContainedObjects: +- !include 'Custom_Model_Bag Rogue 0038cb/Card Momentum (1) be2769.yaml' +- !include 'Custom_Model_Bag Rogue 0038cb/Card Three Aces (1) 5e7956.yaml' +- !include 'Custom_Model_Bag Rogue 0038cb/Card Daredevil (2) e67679.yaml' +- !include 'Custom_Model_Bag Rogue 0038cb/Card Opportunist (2) 56b997.yaml' +- !include 'Custom_Model_Bag Rogue 0038cb/Card All In (5) a8d27f.yaml' +- !include 'Custom_Model_Bag Rogue 0038cb/Card Contraband (2) 34638f.yaml' +- !include 'Custom_Model_Bag Rogue 0038cb/Card Sneak Attack (2) ed9fda.yaml' +- !include 'Custom_Model_Bag Rogue 0038cb/Card Think on Your Feet (2) 8740c7.yaml' +- !include 'Custom_Model_Bag Rogue 0038cb/Card Pay Day (1) f4ae60.yaml' +- !include 'Custom_Model_Bag Rogue 0038cb/Card Easy Mark (1) 374087.yaml' +- !include 'Custom_Model_Bag Rogue 0038cb/Card Swift Reload (2) cfb732.yaml' +- !include 'Custom_Model_Bag Rogue 0038cb/Card Hot Streak (2) cad517.yaml' +- !include 'Custom_Model_Bag Rogue 0038cb/Card Ace in the Hole (3) b4020a.yaml' +- !include 'Custom_Model_Bag Rogue 0038cb/Card Sure Gamble (3) 1a0270.yaml' +- !include 'Custom_Model_Bag Rogue 0038cb/Card Hot Streak (4) dfd22b.yaml' +- !include 'Custom_Model_Bag Rogue 0038cb/Card Cheat Death (5) 8ef34f.yaml' +- !include 'Custom_Model_Bag Rogue 0038cb/Card Adaptable (1) 1b415c.yaml' +- !include 'Custom_Model_Bag Rogue 0038cb/Card The Skeleton Key (2) 6b11de.yaml' +- !include 'Custom_Model_Bag Rogue 0038cb/Card Another Day, Another Dollar (3) 65c636.yaml' +- !include 'Custom_Model_Bag Rogue 0038cb/Card Charon''s Obol (1) fea5e5.yaml' +- !include 'Custom_Model_Bag Rogue 0038cb/Card Hired Muscle (1) 16c33c.yaml' +- !include 'Custom_Model_Bag Rogue 0038cb/Card Streetwise (3) 1ef9a6.yaml' +- !include 'Custom_Model_Bag Rogue 0038cb/Card Borrowed Time (3) 7f3e22.yaml' +- !include 'Custom_Model_Bag Rogue 0038cb/Card Moxie (1) a5f12b.yaml' +- !include 'Custom_Model_Bag Rogue 0038cb/Card Treasure Hunter (1) fd526e.yaml' +- !include 'Custom_Model_Bag Rogue 0038cb/Card Joey The Rat Vigil (3) e5dc9a.yaml' +- !include 'Custom_Model_Bag Rogue 0038cb/Card Stealth (3) 04a3bf.yaml' +- !include 'Custom_Model_Bag Rogue 0038cb/Card Fence (1) bdc57c.yaml' +- !include 'Custom_Model_Bag Rogue 0038cb/Card Lockpicks (1) 4bd181.yaml' +- !include 'Custom_Model_Bag Rogue 0038cb/Card Delilah O''Rourke (3) a31738.yaml' +- !include 'Custom_Model_Bag Rogue 0038cb/Card Lola Santiago (3) 03d1a0.yaml' +- !include 'Custom_Model_Bag Rogue 0038cb/Card Suggestion (1) fd1152.yaml' +- !include "Custom_Model_Bag Rogue 0038cb/Card The Moon \u2022 XVIII (1) ce6e0f.yaml" +- !include 'Custom_Model_Bag Rogue 0038cb/Card Lupara (3) 36fea3.yaml' +- !include 'Custom_Model_Bag Rogue 0038cb/Card Tennessee Sour Mash (3) 990ff4.yaml' +- !include 'Custom_Model_Bag Rogue 0038cb/Card Cat Burglar (1) 15fec2.yaml' +- !include 'Custom_Model_Bag Rogue 0038cb/Card Leo de Luca (1) f389f8.yaml' +- !include 'Custom_Model_Bag Rogue 0038cb/Card .45 Thompson (3) b4738b.yaml' +- !include 'Custom_Model_Bag Rogue 0038cb/Card The Gold Pocket Watch (4) 8429dd.yaml' +- !include 'Custom_Model_Bag Rogue 0038cb/Card Hard Knocks (2) eea23f.yaml' +- !include 'Custom_Model_Bag Rogue 0038cb/Card Burglary (2) 4f6da8.yaml' +- !include 'Custom_Model_Bag Rogue 0038cb/Card Suggestion (4) 9357ea.yaml' +- !include 'Custom_Model_Bag Rogue 0038cb/Card Double, Double (4) 99f433.yaml' +- !include 'Custom_Model_Bag Rogue 0038cb/Card Switchblade (2) ef4857.yaml' +- !include 'Custom_Model_Bag Rogue 0038cb/Card Garrote Wire (2) 877d2f.yaml' +- !include 'Custom_Model_Bag Rogue 0038cb/Card Chicago Typewriter (4) dd1134.yaml' +- !include 'Custom_Model_Bag Rogue 0038cb/Card Sawed-Off Shotgun (5) 5e46e6.yaml' +- !include 'Custom_Model_Bag Rogue 0038cb/Card High Roller (2) 21a718.yaml' +- !include 'Custom_Model_Bag Rogue 0038cb/Card Lucky Dice (2) d8c266.yaml' +- !include 'Custom_Model_Bag Rogue 0038cb/Card Pickpocketing (2) e6db57.yaml' +- !include 'Custom_Model_Bag Rogue 0038cb/Card .41 Derringer (2) b56c07.yaml' +- !include 'Custom_Model_Bag Rogue 0038cb/Card Haste (2) 402e5f.yaml' +- !include 'Custom_Model_Bag Rogue 0038cb/Custom_Model_Bag Rogue a34bc8.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/952965722515898740/E92441671B056D4CDF99DF9E6C88BE6598AAB50F/ + MaterialIndex: 3 + MeshURL: https://pastebin.com/raw/ALrYhQGb + NormalURL: '' + TypeIndex: 6 +Description: '' +GMNotes: '' +GUID: 0038cb +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: true +LuaScript: !include 'Custom_Model_Bag Rogue 0038cb.ttslua' +LuaScriptState: '{"ml":{"03d1a0":{"lock":false,"pos":{"x":7.0765,"y":1.3816,"z":-63.4605},"rot":{"x":0.0208,"y":269.9994,"z":0.0168}},"04a3bf":{"lock":false,"pos":{"x":7.0766,"y":1.3829,"z":-58.8605},"rot":{"x":0.0208,"y":269.9995,"z":0.0168}},"15fec2":{"lock":false,"pos":{"x":10.6297,"y":1.3815,"z":-68.0481},"rot":{"x":0.0208,"y":269.9995,"z":0.0168}},"16c33c":{"lock":false,"pos":{"x":10.6297,"y":1.3862,"z":-51.9484},"rot":{"x":0.0208,"y":269.9995,"z":0.0168}},"1a0270":{"lock":false,"pos":{"x":19.3437,"y":1.3499,"z":-65.7675},"rot":{"x":0.0208,"y":269.9995,"z":0.0168}},"1b415c":{"lock":false,"pos":{"x":10.6297,"y":1.3876,"z":-47.3484},"rot":{"x":0.0208,"y":269.9995,"z":0.0168}},"1ef9a6":{"lock":false,"pos":{"x":7.0766,"y":1.3849,"z":-51.9605},"rot":{"x":0.0208,"y":269.9995,"z":0.0168}},"21a718":{"lock":false,"pos":{"x":10.6317,"y":1.3775,"z":-81.8482},"rot":{"x":0.0208,"y":270.0045,"z":0.0168}},"34638f":{"lock":false,"pos":{"x":19.3437,"y":1.3526,"z":-56.5679},"rot":{"x":0.0208,"y":269.9995,"z":0.0168}},"36fea3":{"lock":false,"pos":{"x":7.0766,"y":1.3809,"z":-65.7601},"rot":{"x":0.0208,"y":269.9994,"z":0.0168}},"374087":{"lock":false,"pos":{"x":19.2958,"y":1.3553,"z":-47.3736},"rot":{"x":0.0208,"y":269.9995,"z":0.0168}},"402e5f":{"lock":false,"pos":{"x":10.6137,"y":1.3748,"z":-91.04},"rot":{"x":0.0208,"y":270.0233,"z":0.0168}},"4bd181":{"lock":false,"pos":{"x":10.6297,"y":1.3835,"z":-61.1484},"rot":{"x":0.0208,"y":269.9995,"z":0.0168}},"4f6da8":{"lock":false,"pos":{"x":10.6296,"y":1.3795,"z":-74.9481},"rot":{"x":0.0208,"y":270.0228,"z":0.0168}},"56b997":{"lock":false,"pos":{"x":24.5004,"y":1.3552,"z":-54.3186},"rot":{"x":0.0208,"y":269.9934,"z":0.0168}},"5e46e6":{"lock":false,"pos":{"x":7.0798,"y":1.3762,"z":-81.8602},"rot":{"x":0.0208,"y":270.0138,"z":0.0168}},"5e7956":{"lock":false,"pos":{"x":24.5003,"y":1.3565,"z":-49.7185},"rot":{"x":0.0208,"y":270.0227,"z":0.0168}},"65c636":{"lock":false,"pos":{"x":7.0766,"y":1.3856,"z":-49.6605},"rot":{"x":0.0208,"y":269.9995,"z":0.0168}},"6b11de":{"lock":false,"pos":{"x":7.0766,"y":1.3863,"z":-47.3605},"rot":{"x":0.0208,"y":269.9998,"z":0.0168}},"7f3e22":{"lock":false,"pos":{"x":7.0766,"y":1.3843,"z":-54.2605},"rot":{"x":0.0208,"y":269.9995,"z":0.0168}},"8429dd":{"lock":false,"pos":{"x":7.0765,"y":1.3789,"z":-72.6601},"rot":{"x":0.0208,"y":269.9995,"z":0.0168}},"8740c7":{"lock":false,"pos":{"x":19.3437,"y":1.354,"z":-51.9679},"rot":{"x":0.0208,"y":269.9995,"z":0.0168}},"877d2f":{"lock":false,"pos":{"x":10.6297,"y":1.3781,"z":-79.548},"rot":{"x":0.0208,"y":270.0003,"z":0.0168}},"8ef34f":{"lock":false,"pos":{"x":19.3437,"y":1.3486,"z":-70.3675},"rot":{"x":0.0208,"y":269.9995,"z":0.0168}},"9357ea":{"lock":false,"pos":{"x":7.0765,"y":1.3782,"z":-74.9601},"rot":{"x":0.0208,"y":269.9995,"z":0.0168}},"990ff4":{"lock":false,"pos":{"x":7.0766,"y":1.3802,"z":-68.0601},"rot":{"x":0.0208,"y":269.9995,"z":0.0168}},"99f433":{"lock":false,"pos":{"x":7.0765,"y":1.3775,"z":-77.26},"rot":{"x":0.0208,"y":269.9995,"z":0.0168}},"a31738":{"lock":false,"pos":{"x":7.0765,"y":1.3822,"z":-61.1605},"rot":{"x":0.0208,"y":270.027,"z":0.0168}},"a5f12b":{"lock":false,"pos":{"x":10.6297,"y":1.3855,"z":-54.2484},"rot":{"x":0.0208,"y":269.9995,"z":0.0168}},"a8d27f":{"lock":false,"pos":{"x":24.5004,"y":1.3545,"z":-56.6186},"rot":{"x":0.0208,"y":269.9995,"z":0.0168}},"b4020a":{"lock":false,"pos":{"x":19.3437,"y":1.3506,"z":-63.4679},"rot":{"x":0.0208,"y":269.9995,"z":0.0168}},"b4738b":{"lock":false,"pos":{"x":7.0765,"y":1.3795,"z":-70.3601},"rot":{"x":0.0208,"y":269.9995,"z":0.0168}},"b56c07":{"lock":false,"pos":{"x":10.6139,"y":1.3754,"z":-88.74},"rot":{"x":0.0208,"y":269.9995,"z":0.0168}},"bdc57c":{"lock":false,"pos":{"x":10.6297,"y":1.3842,"z":-58.8484},"rot":{"x":0.0208,"y":269.9994,"z":0.0168}},"be2769":{"lock":false,"pos":{"x":24.5003,"y":1.3572,"z":-47.4186},"rot":{"x":0.0208,"y":269.9947,"z":0.0168}},"cad517":{"lock":false,"pos":{"x":19.3437,"y":1.3513,"z":-61.1679},"rot":{"x":0.0208,"y":269.9995,"z":0.0168}},"ce6e0f":{"lock":false,"pos":{"x":10.6296,"y":1.3822,"z":-65.7481},"rot":{"x":0.0208,"y":269.9996,"z":0.0168}},"cfb732":{"lock":false,"pos":{"x":19.3437,"y":1.352,"z":-58.8679},"rot":{"x":0.0208,"y":270.0009,"z":0.0168}},"d8c266":{"lock":false,"pos":{"x":10.6296,"y":1.3768,"z":-84.148},"rot":{"x":0.0208,"y":269.9996,"z":0.0168}},"dd1134":{"lock":false,"pos":{"x":7.0767,"y":1.3768,"z":-79.56},"rot":{"x":0.0208,"y":269.9993,"z":0.0168}},"dfd22b":{"lock":false,"pos":{"x":19.3437,"y":1.3493,"z":-68.0675},"rot":{"x":0.0208,"y":269.9996,"z":0.0168}},"e5dc9a":{"lock":false,"pos":{"x":7.0766,"y":1.3836,"z":-56.5605},"rot":{"x":0.0208,"y":270.0104,"z":0.0168}},"e67679":{"lock":false,"pos":{"x":24.5003,"y":1.3558,"z":-52.0186},"rot":{"x":0.0208,"y":270.0227,"z":0.0168}},"e6db57":{"lock":false,"pos":{"x":10.6297,"y":1.3761,"z":-86.448},"rot":{"x":0.0208,"y":269.9997,"z":0.0168}},"ed9fda":{"lock":false,"pos":{"x":19.3437,"y":1.3533,"z":-54.2679},"rot":{"x":0.0208,"y":269.9995,"z":0.0168}},"eea23f":{"lock":false,"pos":{"x":10.6296,"y":1.3802,"z":-72.6481},"rot":{"x":0.0208,"y":269.9995,"z":0.0168}},"ef4857":{"lock":false,"pos":{"x":10.6297,"y":1.3788,"z":-77.248},"rot":{"x":0.0208,"y":269.9995,"z":0.0168}},"f389f8":{"lock":false,"pos":{"x":10.6296,"y":1.3808,"z":-70.3481},"rot":{"x":0.0208,"y":269.9995,"z":0.0168}},"f4ae60":{"lock":false,"pos":{"x":19.3437,"y":1.3546,"z":-49.6679},"rot":{"x":0.0208,"y":269.9995,"z":0.0168}},"fd1152":{"lock":false,"pos":{"x":10.6296,"y":1.3829,"z":-63.4484},"rot":{"x":0.0208,"y":269.9996,"z":0.0168}},"fd526e":{"lock":false,"pos":{"x":10.6297,"y":1.3849,"z":-56.5484},"rot":{"x":0.0208,"y":269.9995,"z":0.0168}},"fea5e5":{"lock":false,"pos":{"x":10.6297,"y":1.3869,"z":-49.6484},"rot":{"x":0.0208,"y":269.9995,"z":0.0168}}}}' +MaterialIndex: -1 +MeshIndex: -1 +Name: Custom_Model_Bag +Nickname: Rogue +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 32.719532 + posY: 1.40043652 + posZ: -74.79064 + rotX: 0.020807391 + rotY: 270.0105 + rotZ: 0.0167740416 + scaleX: 1.2 + scaleY: 1.2 + scaleZ: 1.2 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue 0038cb/Card .41 Derringer (2) b56c07.yaml b/unpacked/Custom_Model_Bag Rogue 0038cb/Card .41 Derringer (2) b56c07.yaml new file mode 100644 index 000000000..288965bb3 --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue 0038cb/Card .41 Derringer (2) b56c07.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 443748 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '4437': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: b56c07 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: .41 Derringer (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.6138687 + posY: 1.37544274 + posZ: -88.74 + rotX: 0.0208075941 + rotY: 269.9995 + rotZ: 0.0167688951 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue 0038cb/Card .45 Thompson (3) b4738b.yaml b/unpacked/Custom_Model_Bag Rogue 0038cb/Card .45 Thompson (3) b4738b.yaml new file mode 100644 index 000000000..3c591a997 --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue 0038cb/Card .45 Thompson (3) b4738b.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Rogue +GMNotes: '' +GUID: b4738b +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: .45 Thompson (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 7.07654524 + posY: 1.37953794 + posZ: -70.36011 + rotX: 0.02080782 + rotY: 269.999542 + rotZ: 0.0167682972 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue 0038cb/Card Ace in the Hole (3) b4020a.yaml b/unpacked/Custom_Model_Bag Rogue 0038cb/Card Ace in the Hole (3) b4020a.yaml new file mode 100644 index 000000000..ed64fcd4a --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue 0038cb/Card Ace in the Hole (3) b4020a.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 443752 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '4437': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: b4020a +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Ace in the Hole (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.3436565 + posY: 1.35060656 + posZ: -63.4678955 + rotX: 0.0208085217 + rotY: 269.999481 + rotZ: 0.0167700127 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue 0038cb/Card Adaptable (1) 1b415c.yaml b/unpacked/Custom_Model_Bag Rogue 0038cb/Card Adaptable (1) 1b415c.yaml new file mode 100644 index 000000000..8cd68e916 --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue 0038cb/Card Adaptable (1) 1b415c.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 443732 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '4437': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 1b415c +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Adaptable (1) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.6296606 + posY: 1.38756418 + posZ: -47.3484459 + rotX: 0.0208099615 + rotY: 269.999481 + rotZ: 0.0167702865 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue 0038cb/Card All In (5) a8d27f.yaml b/unpacked/Custom_Model_Bag Rogue 0038cb/Card All In (5) a8d27f.yaml new file mode 100644 index 000000000..bd97aa9d7 --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue 0038cb/Card All In (5) a8d27f.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: a8d27f +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: All In (5) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 24.5003548 + posY: 1.3544842 + posZ: -56.618557 + rotX: 0.02080846 + rotY: 269.999451 + rotZ: 0.016769411 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue 0038cb/Card Another Day, Another Dollar (3) 65c636.yaml b/unpacked/Custom_Model_Bag Rogue 0038cb/Card Another Day, Another Dollar (3) 65c636.yaml new file mode 100644 index 000000000..d9d02f71e --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue 0038cb/Card Another Day, Another Dollar (3) 65c636.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 65c636 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Another Day, Another Dollar (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 7.076559 + posY: 1.38559711 + posZ: -49.6604652 + rotX: 0.020809751 + rotY: 269.999451 + rotZ: 0.01677129 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue 0038cb/Card Borrowed Time (3) 7f3e22.yaml b/unpacked/Custom_Model_Bag Rogue 0038cb/Card Borrowed Time (3) 7f3e22.yaml new file mode 100644 index 000000000..ed668e96d --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue 0038cb/Card Borrowed Time (3) 7f3e22.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 443753 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '4437': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 7f3e22 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Borrowed Time (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 7.076563 + posY: 1.38425064 + posZ: -54.26048 + rotX: 0.0208094083 + rotY: 269.9995 + rotZ: 0.0167708918 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue 0038cb/Card Burglary (2) 4f6da8.yaml b/unpacked/Custom_Model_Bag Rogue 0038cb/Card Burglary (2) 4f6da8.yaml new file mode 100644 index 000000000..796085465 --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue 0038cb/Card Burglary (2) 4f6da8.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Talent. Illicit. +GMNotes: '' +GUID: 4f6da8 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Burglary (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.6296444 + posY: 1.37948549 + posZ: -74.94812 + rotX: 0.0208007284 + rotY: 270.022766 + rotZ: 0.0167769641 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue 0038cb/Card Cat Burglar (1) 15fec2.yaml b/unpacked/Custom_Model_Bag Rogue 0038cb/Card Cat Burglar (1) 15fec2.yaml new file mode 100644 index 000000000..87868aa8b --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue 0038cb/Card Cat Burglar (1) 15fec2.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 443739 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '4437': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 15fec2 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Cat Burglar (1) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.6296577 + posY: 1.38150525 + posZ: -68.0480652 + rotX: 0.0208072457 + rotY: 269.9995 + rotZ: 0.0167685 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue 0038cb/Card Charon's Obol (1) fea5e5.yaml b/unpacked/Custom_Model_Bag Rogue 0038cb/Card Charon's Obol (1) fea5e5.yaml new file mode 100644 index 000000000..192ed5334 --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue 0038cb/Card Charon's Obol (1) fea5e5.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 443733 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '4437': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: The Ferryman's Pay +GMNotes: '' +GUID: fea5e5 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Charon's Obol (1) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.6296511 + posY: 1.386891 + posZ: -49.6484337 + rotX: 0.020810103 + rotY: 269.999481 + rotZ: 0.016770184 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue 0038cb/Card Cheat Death (5) 8ef34f.yaml b/unpacked/Custom_Model_Bag Rogue 0038cb/Card Cheat Death (5) 8ef34f.yaml new file mode 100644 index 000000000..dfa54fcee --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue 0038cb/Card Cheat Death (5) 8ef34f.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 443761 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '4437': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 8ef34f +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Cheat Death (5) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.3436661 + posY: 1.34858692 + posZ: -70.36754 + rotX: 0.020809453 + rotY: 269.999542 + rotZ: 0.01677069 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue 0038cb/Card Chicago Typewriter (4) dd1134.yaml b/unpacked/Custom_Model_Bag Rogue 0038cb/Card Chicago Typewriter (4) dd1134.yaml new file mode 100644 index 000000000..7dc3f084c --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue 0038cb/Card Chicago Typewriter (4) dd1134.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 443760 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '4437': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: dd1134 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Chicago Typewriter (4) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 7.076665 + posY: 1.37684512 + posZ: -79.56001 + rotX: 0.0208079088 + rotY: 269.999329 + rotZ: 0.0167681631 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue 0038cb/Card Contraband (2) 34638f.yaml b/unpacked/Custom_Model_Bag Rogue 0038cb/Card Contraband (2) 34638f.yaml new file mode 100644 index 000000000..4525f55db --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue 0038cb/Card Contraband (2) 34638f.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 292404 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2924': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025944587/520448D0E9C22F102C7DDF64322EAD6FC221ECC8/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 34638f +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Contraband (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.343668 + posY: 1.3526262 + posZ: -56.5679054 + rotX: 0.02080853 + rotY: 269.9995 + rotZ: 0.0167692881 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue 0038cb/Card Daredevil (2) e67679.yaml b/unpacked/Custom_Model_Bag Rogue 0038cb/Card Daredevil (2) e67679.yaml new file mode 100644 index 000000000..199965f8e --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue 0038cb/Card Daredevil (2) e67679.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Fortune. Practiced. +GMNotes: '' +GUID: e67679 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Daredevil (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 24.5003471 + posY: 1.35583067 + posZ: -52.01855 + rotX: 0.0208016317 + rotY: 270.0227 + rotZ: 0.01677815 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue 0038cb/Card Delilah O'Rourke (3) a31738.yaml b/unpacked/Custom_Model_Bag Rogue 0038cb/Card Delilah O'Rourke (3) a31738.yaml new file mode 100644 index 000000000..de55bc4b4 --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue 0038cb/Card Delilah O'Rourke (3) a31738.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Syndicate Assassin +GMNotes: '' +GUID: a31738 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Delilah O'Rourke (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 7.076546 + posY: 1.38223088 + posZ: -61.16049 + rotX: 0.0208014417 + rotY: 270.027 + rotZ: 0.0167811327 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue 0038cb/Card Double, Double (4) 99f433.yaml b/unpacked/Custom_Model_Bag Rogue 0038cb/Card Double, Double (4) 99f433.yaml new file mode 100644 index 000000000..a2ef7cec3 --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue 0038cb/Card Double, Double (4) 99f433.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 99f433 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Double, Double (4) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 7.07653141 + posY: 1.3775183 + posZ: -77.26004 + rotX: 0.0208079088 + rotY: 269.999542 + rotZ: 0.0167684536 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue 0038cb/Card Easy Mark (1) 374087.yaml b/unpacked/Custom_Model_Bag Rogue 0038cb/Card Easy Mark (1) 374087.yaml new file mode 100644 index 000000000..2fdb9f0cd --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue 0038cb/Card Easy Mark (1) 374087.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: '374087' +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Easy Mark (1) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.2957535 + posY: 1.35530019 + posZ: -47.37356 + rotX: 0.020809615 + rotY: 269.9995 + rotZ: 0.0167692937 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue 0038cb/Card Fence (1) bdc57c.yaml b/unpacked/Custom_Model_Bag Rogue 0038cb/Card Fence (1) bdc57c.yaml new file mode 100644 index 000000000..cbec12725 --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue 0038cb/Card Fence (1) bdc57c.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 443738 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '4437': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: bdc57c +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Fence (1) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.6296635 + posY: 1.38419807 + posZ: -58.8484459 + rotX: 0.02080958 + rotY: 269.99942 + rotZ: 0.0167712029 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue 0038cb/Card Garrote Wire (2) 877d2f.yaml b/unpacked/Custom_Model_Bag Rogue 0038cb/Card Garrote Wire (2) 877d2f.yaml new file mode 100644 index 000000000..1a7e65b39 --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue 0038cb/Card Garrote Wire (2) 877d2f.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Item. Weapon. +GMNotes: '' +GUID: 877d2f +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Garrote Wire (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.629653 + posY: 1.378139 + posZ: -79.54802 + rotX: 0.0208074152 + rotY: 270.0003 + rotZ: 0.0167692 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue 0038cb/Card Hard Knocks (2) eea23f.yaml b/unpacked/Custom_Model_Bag Rogue 0038cb/Card Hard Knocks (2) eea23f.yaml new file mode 100644 index 000000000..3f00c3f37 --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue 0038cb/Card Hard Knocks (2) eea23f.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 443742 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '4437': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: eea23f +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Hard Knocks (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.6296463 + posY: 1.38015866 + posZ: -72.6481 + rotX: 0.0208075 + rotY: 269.9995 + rotZ: 0.01676835 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue 0038cb/Card Haste (2) 402e5f.yaml b/unpacked/Custom_Model_Bag Rogue 0038cb/Card Haste (2) 402e5f.yaml new file mode 100644 index 000000000..11a83734c --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue 0038cb/Card Haste (2) 402e5f.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Ritual. +GMNotes: '' +GUID: 402e5f +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Haste (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.6137171 + posY: 1.37476933 + posZ: -91.04 + rotX: 0.0208005477 + rotY: 270.023315 + rotZ: 0.0167771485 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue 0038cb/Card High Roller (2) 21a718.yaml b/unpacked/Custom_Model_Bag Rogue 0038cb/Card High Roller (2) 21a718.yaml new file mode 100644 index 000000000..c0c21cb60 --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue 0038cb/Card High Roller (2) 21a718.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 443747 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '4437': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 21a718 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: High Roller (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.631691 + posY: 1.37746644 + posZ: -81.8482361 + rotX: 0.020805968 + rotY: 270.004517 + rotZ: 0.0167703032 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue 0038cb/Card Hired Muscle (1) 16c33c.yaml b/unpacked/Custom_Model_Bag Rogue 0038cb/Card Hired Muscle (1) 16c33c.yaml new file mode 100644 index 000000000..40f23ce89 --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue 0038cb/Card Hired Muscle (1) 16c33c.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 443734 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '4437': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 16c33c +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Hired Muscle (1) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.629653 + posY: 1.38621771 + posZ: -51.9484329 + rotX: 0.0208097957 + rotY: 269.9995 + rotZ: 0.01677022 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue 0038cb/Card Hot Streak (2) cad517.yaml b/unpacked/Custom_Model_Bag Rogue 0038cb/Card Hot Streak (2) cad517.yaml new file mode 100644 index 000000000..297234d42 --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue 0038cb/Card Hot Streak (2) cad517.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 443750 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '4437': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: cad517 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Hot Streak (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.3436527 + posY: 1.35127974 + posZ: -61.1679153 + rotX: 0.0208092947 + rotY: 269.999542 + rotZ: 0.0167696457 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue 0038cb/Card Hot Streak (4) dfd22b.yaml b/unpacked/Custom_Model_Bag Rogue 0038cb/Card Hot Streak (4) dfd22b.yaml new file mode 100644 index 000000000..9c452c0f9 --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue 0038cb/Card Hot Streak (4) dfd22b.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 443758 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '4437': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: dfd22b +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Hot Streak (4) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.3436623 + posY: 1.34926009 + posZ: -68.06754 + rotX: 0.020808246 + rotY: 269.9996 + rotZ: 0.0167692918 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue 0038cb/Card Joey The Rat Vigil (3) e5dc9a.yaml b/unpacked/Custom_Model_Bag Rogue 0038cb/Card Joey The Rat Vigil (3) e5dc9a.yaml new file mode 100644 index 000000000..8d85b31ee --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue 0038cb/Card Joey The Rat Vigil (3) e5dc9a.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: 'Lookin'' Out For #1' +GMNotes: '' +GUID: e5dc9a +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Joey "The Rat" Vigil (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 7.076562 + posY: 1.38357735 + posZ: -56.560482 + rotX: 0.0208064225 + rotY: 270.010376 + rotZ: 0.0167742241 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue 0038cb/Card Leo de Luca (1) f389f8.yaml b/unpacked/Custom_Model_Bag Rogue 0038cb/Card Leo de Luca (1) f389f8.yaml new file mode 100644 index 000000000..85647411c --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue 0038cb/Card Leo de Luca (1) f389f8.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 443740 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '4437': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: The Louisiana Lion +GMNotes: '' +GUID: f389f8 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Leo de Luca (1) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.6296492 + posY: 1.380832 + posZ: -70.34807 + rotX: 0.0208076388 + rotY: 269.9995 + rotZ: 0.016769113 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue 0038cb/Card Lockpicks (1) 4bd181.yaml b/unpacked/Custom_Model_Bag Rogue 0038cb/Card Lockpicks (1) 4bd181.yaml new file mode 100644 index 000000000..74f83ef97 --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue 0038cb/Card Lockpicks (1) 4bd181.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 443737 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '4437': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 4bd181 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Lockpicks (1) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.6296558 + posY: 1.38352478 + posZ: -61.14845 + rotX: 0.0208098125 + rotY: 269.999481 + rotZ: 0.0167702176 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue 0038cb/Card Lola Santiago (3) 03d1a0.yaml b/unpacked/Custom_Model_Bag Rogue 0038cb/Card Lola Santiago (3) 03d1a0.yaml new file mode 100644 index 000000000..5d74afe56 --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue 0038cb/Card Lola Santiago (3) 03d1a0.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 443756 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '4437': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: No-Nonsense Archaeologist +GMNotes: '' +GUID: 03d1a0 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Lola Santiago (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 7.07654953 + posY: 1.3815577 + posZ: -63.4604759 + rotX: 0.0208085831 + rotY: 269.9994 + rotZ: 0.0167688578 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue 0038cb/Card Lucky Dice (2) d8c266.yaml b/unpacked/Custom_Model_Bag Rogue 0038cb/Card Lucky Dice (2) d8c266.yaml new file mode 100644 index 000000000..921a74892 --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue 0038cb/Card Lucky Dice (2) d8c266.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 443744 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '4437': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '... Or Are They?' +GMNotes: '' +GUID: d8c266 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Lucky Dice (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.6295624 + posY: 1.37679243 + posZ: -84.14801 + rotX: 0.02080754 + rotY: 269.999573 + rotZ: 0.0167687889 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue 0038cb/Card Lupara (3) 36fea3.yaml b/unpacked/Custom_Model_Bag Rogue 0038cb/Card Lupara (3) 36fea3.yaml new file mode 100644 index 000000000..c06aaeeee --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue 0038cb/Card Lupara (3) 36fea3.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 443755 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '4437': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 36fea3 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Lupara (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 7.076554 + posY: 1.38088453 + posZ: -65.7601 + rotX: 0.0208078027 + rotY: 269.99942 + rotZ: 0.0167688858 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue 0038cb/Card Momentum (1) be2769.yaml b/unpacked/Custom_Model_Bag Rogue 0038cb/Card Momentum (1) be2769.yaml new file mode 100644 index 000000000..02fc00941 --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue 0038cb/Card Momentum (1) be2769.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: be2769 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Momentum (1) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 24.5003471 + posY: 1.35717726 + posZ: -47.41856 + rotX: 0.02080988 + rotY: 269.99472 + rotZ: 0.0167677812 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue 0038cb/Card Moxie (1) a5f12b.yaml b/unpacked/Custom_Model_Bag Rogue 0038cb/Card Moxie (1) a5f12b.yaml new file mode 100644 index 000000000..6f0c43439 --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue 0038cb/Card Moxie (1) a5f12b.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 443735 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '4437': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: a5f12b +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Moxie (1) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.6296635 + posY: 1.38554454 + posZ: -54.24844 + rotX: 0.0208098181 + rotY: 269.9995 + rotZ: 0.01677031 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue 0038cb/Card Opportunist (2) 56b997.yaml b/unpacked/Custom_Model_Bag Rogue 0038cb/Card Opportunist (2) 56b997.yaml new file mode 100644 index 000000000..99499138f --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue 0038cb/Card Opportunist (2) 56b997.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 443741 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '4437': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 56b997 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Opportunist (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 24.5003548 + posY: 1.35515749 + posZ: -54.3185539 + rotX: 0.0208102 + rotY: 269.9934 + rotZ: 0.01676703 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue 0038cb/Card Pay Day (1) f4ae60.yaml b/unpacked/Custom_Model_Bag Rogue 0038cb/Card Pay Day (1) f4ae60.yaml new file mode 100644 index 000000000..eace997e1 --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue 0038cb/Card Pay Day (1) f4ae60.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 443762 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '4437': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: f4ae60 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Pay Day (1) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.3436661 + posY: 1.354646 + posZ: -49.6678963 + rotX: 0.02080839 + rotY: 269.999481 + rotZ: 0.01676955 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue 0038cb/Card Pickpocketing (2) e6db57.yaml b/unpacked/Custom_Model_Bag Rogue 0038cb/Card Pickpocketing (2) e6db57.yaml new file mode 100644 index 000000000..e5643d1e1 --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue 0038cb/Card Pickpocketing (2) e6db57.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 443746 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '4437': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: e6db57 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Pickpocketing (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.62969 + posY: 1.37611926 + posZ: -86.44803 + rotX: 0.0208076984 + rotY: 269.999664 + rotZ: 0.0167684536 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue 0038cb/Card Sawed-Off Shotgun (5) 5e46e6.yaml b/unpacked/Custom_Model_Bag Rogue 0038cb/Card Sawed-Off Shotgun (5) 5e46e6.yaml new file mode 100644 index 000000000..42ed7fd88 --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue 0038cb/Card Sawed-Off Shotgun (5) 5e46e6.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Item. Weapon. Firearm. Illicit. +GMNotes: '' +GUID: 5e46e6 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Sawed-Off Shotgun (5) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 7.079771 + posY: 1.3761729 + posZ: -81.86023 + rotX: 0.020803526 + rotY: 270.013824 + rotZ: 0.0167732127 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue 0038cb/Card Sneak Attack (2) ed9fda.yaml b/unpacked/Custom_Model_Bag Rogue 0038cb/Card Sneak Attack (2) ed9fda.yaml new file mode 100644 index 000000000..c9b034303 --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue 0038cb/Card Sneak Attack (2) ed9fda.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 443745 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '4437': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: ed9fda +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Sneak Attack (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.343668 + posY: 1.3532995 + posZ: -54.2679024 + rotX: 0.02080856 + rotY: 269.999481 + rotZ: 0.0167692173 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue 0038cb/Card Stealth (3) 04a3bf.yaml b/unpacked/Custom_Model_Bag Rogue 0038cb/Card Stealth (3) 04a3bf.yaml new file mode 100644 index 000000000..6f10941ec --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue 0038cb/Card Stealth (3) 04a3bf.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 04a3bf +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Stealth (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 7.07655525 + posY: 1.38290417 + posZ: -58.8604851 + rotX: 0.0208096988 + rotY: 269.999451 + rotZ: 0.0167717412 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue 0038cb/Card Streetwise (3) 1ef9a6.yaml b/unpacked/Custom_Model_Bag Rogue 0038cb/Card Streetwise (3) 1ef9a6.yaml new file mode 100644 index 000000000..e78ee0f30 --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue 0038cb/Card Streetwise (3) 1ef9a6.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 443751 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '4437': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 1ef9a6 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Streetwise (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 7.07655573 + posY: 1.38492382 + posZ: -51.96047 + rotX: 0.0208096076 + rotY: 269.9995 + rotZ: 0.01677104 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue 0038cb/Card Suggestion (1) fd1152.yaml b/unpacked/Custom_Model_Bag Rogue 0038cb/Card Suggestion (1) fd1152.yaml new file mode 100644 index 000000000..b28042267 --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue 0038cb/Card Suggestion (1) fd1152.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 440721 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: fd1152 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Suggestion (1) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.6296463 + posY: 1.38285148 + posZ: -63.4484329 + rotX: 0.02081023 + rotY: 269.999573 + rotZ: 0.0167714991 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue 0038cb/Card Suggestion (4) 9357ea.yaml b/unpacked/Custom_Model_Bag Rogue 0038cb/Card Suggestion (4) 9357ea.yaml new file mode 100644 index 000000000..c39204c7c --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue 0038cb/Card Suggestion (4) 9357ea.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 443759 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '4437': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 9357ea +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Suggestion (4) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 7.076524 + posY: 1.37819159 + posZ: -74.960144 + rotX: 0.0208082534 + rotY: 269.999542 + rotZ: 0.016767323 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue 0038cb/Card Sure Gamble (3) 1a0270.yaml b/unpacked/Custom_Model_Bag Rogue 0038cb/Card Sure Gamble (3) 1a0270.yaml new file mode 100644 index 000000000..2dad2453d --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue 0038cb/Card Sure Gamble (3) 1a0270.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 443754 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '4437': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 1a0270 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Sure Gamble (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.3436642 + posY: 1.34993339 + posZ: -65.76754 + rotX: 0.02080845 + rotY: 269.999481 + rotZ: 0.016769683 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue 0038cb/Card Swift Reload (2) cfb732.yaml b/unpacked/Custom_Model_Bag Rogue 0038cb/Card Swift Reload (2) cfb732.yaml new file mode 100644 index 000000000..0d1cdcf96 --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue 0038cb/Card Swift Reload (2) cfb732.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: cfb732 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Swift Reload (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.343668 + posY: 1.351953 + posZ: -58.86791 + rotX: 0.02080775 + rotY: 270.0009 + rotZ: 0.0167702232 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue 0038cb/Card Switchblade (2) ef4857.yaml b/unpacked/Custom_Model_Bag Rogue 0038cb/Card Switchblade (2) ef4857.yaml new file mode 100644 index 000000000..6fcf69e20 --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue 0038cb/Card Switchblade (2) ef4857.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 443743 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '4437': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: ef4857 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Switchblade (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.62965 + posY: 1.37881219 + posZ: -77.24802 + rotX: 0.0208077077 + rotY: 269.9995 + rotZ: 0.0167682637 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue 0038cb/Card Tennessee Sour Mash (3) 990ff4.yaml b/unpacked/Custom_Model_Bag Rogue 0038cb/Card Tennessee Sour Mash (3) 990ff4.yaml new file mode 100644 index 000000000..2c6e63cfc --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue 0038cb/Card Tennessee Sour Mash (3) 990ff4.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Rogue +GMNotes: '' +GUID: 990ff4 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Tennessee Sour Mash (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 7.07655573 + posY: 1.38021135 + posZ: -68.0601044 + rotX: 0.0208076723 + rotY: 269.9995 + rotZ: 0.0167687964 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue 0038cb/Card The Gold Pocket Watch (4) 8429dd.yaml b/unpacked/Custom_Model_Bag Rogue 0038cb/Card The Gold Pocket Watch (4) 8429dd.yaml new file mode 100644 index 000000000..ff72c65c2 --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue 0038cb/Card The Gold Pocket Watch (4) 8429dd.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 443757 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '4437': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: Stealing Time +GMNotes: '' +GUID: 8429dd +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: The Gold Pocket Watch (4) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 7.076545 + posY: 1.37886488 + posZ: -72.66011 + rotX: 0.0208078846 + rotY: 269.9995 + rotZ: 0.0167684071 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue 0038cb/Card The Moon • XVIII (1) ce6e0f.yaml b/unpacked/Custom_Model_Bag Rogue 0038cb/Card The Moon • XVIII (1) ce6e0f.yaml new file mode 100644 index 000000000..42c05194b --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue 0038cb/Card The Moon • XVIII (1) ce6e0f.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 274205 +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 + UniqueBack: false +Description: Message from Your Inner Self +GMNotes: '' +GUID: ce6e0f +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: "The Moon \u2022 XVIII (1)" +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.6296463 + posY: 1.38217843 + posZ: -65.74806 + rotX: 0.0208077431 + rotY: 269.999573 + rotZ: 0.0167684518 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue 0038cb/Card The Skeleton Key (2) 6b11de.yaml b/unpacked/Custom_Model_Bag Rogue 0038cb/Card The Skeleton Key (2) 6b11de.yaml new file mode 100644 index 000000000..ca79c3009 --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue 0038cb/Card The Skeleton Key (2) 6b11de.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 443749 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '4437': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 6b11de +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: The Skeleton Key (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 7.076565 + posY: 1.3862704 + posZ: -47.3604774 + rotX: 0.0208097566 + rotY: 269.999756 + rotZ: 0.01677162 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue 0038cb/Card Think on Your Feet (2) 8740c7.yaml b/unpacked/Custom_Model_Bag Rogue 0038cb/Card Think on Your Feet (2) 8740c7.yaml new file mode 100644 index 000000000..16440d780 --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue 0038cb/Card Think on Your Feet (2) 8740c7.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 292403 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2924': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025944587/520448D0E9C22F102C7DDF64322EAD6FC221ECC8/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 8740c7 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Think on Your Feet (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.3436623 + posY: 1.35397279 + posZ: -51.9679 + rotX: 0.0208085645 + rotY: 269.999481 + rotZ: 0.01676923 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue 0038cb/Card Three Aces (1) 5e7956.yaml b/unpacked/Custom_Model_Bag Rogue 0038cb/Card Three Aces (1) 5e7956.yaml new file mode 100644 index 000000000..825545d1e --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue 0038cb/Card Three Aces (1) 5e7956.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Fortune. Practiced. +GMNotes: '' +GUID: 5e7956 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Three Aces (1) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 24.5003471 + posY: 1.356504 + posZ: -49.7185478 + rotX: 0.0208015237 + rotY: 270.0227 + rotZ: 0.0167781 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue 0038cb/Card Treasure Hunter (1) fd526e.yaml b/unpacked/Custom_Model_Bag Rogue 0038cb/Card Treasure Hunter (1) fd526e.yaml new file mode 100644 index 000000000..7d9a7d97c --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue 0038cb/Card Treasure Hunter (1) fd526e.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 443736 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '4437': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: fd526e +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Treasure Hunter (1) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.62966 + posY: 1.38487124 + posZ: -56.5484428 + rotX: 0.0208098739 + rotY: 269.9995 + rotZ: 0.01677037 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue 0038cb/Custom_Model_Bag Rogue a34bc8.ttslua b/unpacked/Custom_Model_Bag Rogue 0038cb/Custom_Model_Bag Rogue a34bc8.ttslua new file mode 100644 index 000000000..f882a7f09 --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue 0038cb/Custom_Model_Bag Rogue a34bc8.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,0,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 + 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=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,0,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,0,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,0,0}, height=350, width=750, + 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}, rotation={0,0,0}, height=350, width=800, + font_size=250, color={0,0,0}, font_color={1,1,1} + }) +-- self.createButton({ +-- label="Setup", click_function="buttonClick_setup", function_owner=self, +-- position={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.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 Rogue 0038cb/Custom_Model_Bag Rogue a34bc8.yaml b/unpacked/Custom_Model_Bag Rogue 0038cb/Custom_Model_Bag Rogue a34bc8.yaml new file mode 100644 index 000000000..ffa8926fd --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue 0038cb/Custom_Model_Bag Rogue a34bc8.yaml @@ -0,0 +1,104 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +ContainedObjects: +- !include 'Custom_Model_Bag Rogue a34bc8/Card Momentum (1) be2769.yaml' +- !include 'Custom_Model_Bag Rogue a34bc8/Card Three Aces (1) 5e7956.yaml' +- !include 'Custom_Model_Bag Rogue a34bc8/Card Daredevil (2) e67679.yaml' +- !include 'Custom_Model_Bag Rogue a34bc8/Card Opportunist (2) 56b997.yaml' +- !include 'Custom_Model_Bag Rogue a34bc8/Card All In (5) a8d27f.yaml' +- !include 'Custom_Model_Bag Rogue a34bc8/Card Contraband (2) 34638f.yaml' +- !include 'Custom_Model_Bag Rogue a34bc8/Card Sneak Attack (2) ed9fda.yaml' +- !include 'Custom_Model_Bag Rogue a34bc8/Card Think on Your Feet (2) 8740c7.yaml' +- !include 'Custom_Model_Bag Rogue a34bc8/Card Pay Day (1) f4ae60.yaml' +- !include 'Custom_Model_Bag Rogue a34bc8/Card Easy Mark (1) 374087.yaml' +- !include 'Custom_Model_Bag Rogue a34bc8/Card Swift Reload (2) cfb732.yaml' +- !include 'Custom_Model_Bag Rogue a34bc8/Card Hot Streak (2) cad517.yaml' +- !include 'Custom_Model_Bag Rogue a34bc8/Card Ace in the Hole (3) b4020a.yaml' +- !include 'Custom_Model_Bag Rogue a34bc8/Card Sure Gamble (3) 1a0270.yaml' +- !include 'Custom_Model_Bag Rogue a34bc8/Card Hot Streak (4) dfd22b.yaml' +- !include 'Custom_Model_Bag Rogue a34bc8/Card Cheat Death (5) 8ef34f.yaml' +- !include 'Custom_Model_Bag Rogue a34bc8/Card Adaptable (1) 1b415c.yaml' +- !include 'Custom_Model_Bag Rogue a34bc8/Card The Skeleton Key (2) 6b11de.yaml' +- !include 'Custom_Model_Bag Rogue a34bc8/Card Another Day, Another Dollar (3) 65c636.yaml' +- !include 'Custom_Model_Bag Rogue a34bc8/Card Charon''s Obol (1) fea5e5.yaml' +- !include 'Custom_Model_Bag Rogue a34bc8/Card Hired Muscle (1) 16c33c.yaml' +- !include 'Custom_Model_Bag Rogue a34bc8/Card Streetwise (3) 1ef9a6.yaml' +- !include 'Custom_Model_Bag Rogue a34bc8/Card Borrowed Time (3) 7f3e22.yaml' +- !include 'Custom_Model_Bag Rogue a34bc8/Card Moxie (1) a5f12b.yaml' +- !include 'Custom_Model_Bag Rogue a34bc8/Card Treasure Hunter (1) fd526e.yaml' +- !include 'Custom_Model_Bag Rogue a34bc8/Card Joey The Rat Vigil (3) e5dc9a.yaml' +- !include 'Custom_Model_Bag Rogue a34bc8/Card Stealth (3) 04a3bf.yaml' +- !include 'Custom_Model_Bag Rogue a34bc8/Card Fence (1) bdc57c.yaml' +- !include 'Custom_Model_Bag Rogue a34bc8/Card Lockpicks (1) 4bd181.yaml' +- !include 'Custom_Model_Bag Rogue a34bc8/Card Delilah O''Rourke (3) a31738.yaml' +- !include 'Custom_Model_Bag Rogue a34bc8/Card Lola Santiago (3) 03d1a0.yaml' +- !include 'Custom_Model_Bag Rogue a34bc8/Card Suggestion (1) fd1152.yaml' +- !include "Custom_Model_Bag Rogue a34bc8/Card The Moon \u2022 XVIII (1) ce6e0f.yaml" +- !include 'Custom_Model_Bag Rogue a34bc8/Card Lupara (3) 36fea3.yaml' +- !include 'Custom_Model_Bag Rogue a34bc8/Card Tennessee Sour Mash (3) 990ff4.yaml' +- !include 'Custom_Model_Bag Rogue a34bc8/Card Cat Burglar (1) 15fec2.yaml' +- !include 'Custom_Model_Bag Rogue a34bc8/Card Leo de Luca (1) f389f8.yaml' +- !include 'Custom_Model_Bag Rogue a34bc8/Card .45 Thompson (3) b4738b.yaml' +- !include 'Custom_Model_Bag Rogue a34bc8/Card The Gold Pocket Watch (4) 8429dd.yaml' +- !include 'Custom_Model_Bag Rogue a34bc8/Card Hard Knocks (2) eea23f.yaml' +- !include 'Custom_Model_Bag Rogue a34bc8/Card Burglary (2) 4f6da8.yaml' +- !include 'Custom_Model_Bag Rogue a34bc8/Card Suggestion (4) 9357ea.yaml' +- !include 'Custom_Model_Bag Rogue a34bc8/Card Double, Double (4) 99f433.yaml' +- !include 'Custom_Model_Bag Rogue a34bc8/Card Switchblade (2) ef4857.yaml' +- !include 'Custom_Model_Bag Rogue a34bc8/Card Garrote Wire (2) 877d2f.yaml' +- !include 'Custom_Model_Bag Rogue a34bc8/Card Chicago Typewriter (4) dd1134.yaml' +- !include 'Custom_Model_Bag Rogue a34bc8/Card Sawed-Off Shotgun (5) 5e46e6.yaml' +- !include 'Custom_Model_Bag Rogue a34bc8/Card High Roller (2) 21a718.yaml' +- !include 'Custom_Model_Bag Rogue a34bc8/Card Lucky Dice (2) d8c266.yaml' +- !include 'Custom_Model_Bag Rogue a34bc8/Card Pickpocketing (2) e6db57.yaml' +- !include 'Custom_Model_Bag Rogue a34bc8/Card .41 Derringer (2) b56c07.yaml' +- !include 'Custom_Model_Bag Rogue a34bc8/Card Haste (2) 402e5f.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/952965722515898740/E92441671B056D4CDF99DF9E6C88BE6598AAB50F/ + MaterialIndex: 3 + MeshURL: https://pastebin.com/raw/ALrYhQGb + NormalURL: '' + TypeIndex: 6 +Description: '' +GMNotes: '' +GUID: a34bc8 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Model_Bag Rogue a34bc8.ttslua' +LuaScriptState: '{"ml":{"03d1a0":{"lock":false,"pos":{"x":7.0765,"y":1.3816,"z":-63.4605},"rot":{"x":0.0208,"y":269.9994,"z":0.0168}},"04a3bf":{"lock":false,"pos":{"x":7.0766,"y":1.3829,"z":-58.8605},"rot":{"x":0.0208,"y":269.9995,"z":0.0168}},"15fec2":{"lock":false,"pos":{"x":10.6297,"y":1.3815,"z":-68.0481},"rot":{"x":0.0208,"y":269.9995,"z":0.0168}},"16c33c":{"lock":false,"pos":{"x":10.6297,"y":1.3862,"z":-51.9484},"rot":{"x":0.0208,"y":269.9995,"z":0.0168}},"1a0270":{"lock":false,"pos":{"x":19.3437,"y":1.3499,"z":-65.7675},"rot":{"x":0.0208,"y":269.9995,"z":0.0168}},"1b415c":{"lock":false,"pos":{"x":10.6297,"y":1.3876,"z":-47.3484},"rot":{"x":0.0208,"y":269.9995,"z":0.0168}},"1ef9a6":{"lock":false,"pos":{"x":7.0766,"y":1.3849,"z":-51.9605},"rot":{"x":0.0208,"y":269.9995,"z":0.0168}},"21a718":{"lock":false,"pos":{"x":10.6317,"y":1.3775,"z":-81.8482},"rot":{"x":0.0208,"y":270.0045,"z":0.0168}},"34638f":{"lock":false,"pos":{"x":19.3437,"y":1.3526,"z":-56.5679},"rot":{"x":0.0208,"y":269.9995,"z":0.0168}},"36fea3":{"lock":false,"pos":{"x":7.0766,"y":1.3809,"z":-65.7601},"rot":{"x":0.0208,"y":269.9994,"z":0.0168}},"374087":{"lock":false,"pos":{"x":19.2958,"y":1.3553,"z":-47.3736},"rot":{"x":0.0208,"y":269.9995,"z":0.0168}},"402e5f":{"lock":false,"pos":{"x":10.6137,"y":1.3748,"z":-91.04},"rot":{"x":0.0208,"y":270.0233,"z":0.0168}},"4bd181":{"lock":false,"pos":{"x":10.6297,"y":1.3835,"z":-61.1484},"rot":{"x":0.0208,"y":269.9995,"z":0.0168}},"4f6da8":{"lock":false,"pos":{"x":10.6296,"y":1.3795,"z":-74.9481},"rot":{"x":0.0208,"y":270.0228,"z":0.0168}},"56b997":{"lock":false,"pos":{"x":24.5004,"y":1.3552,"z":-54.3186},"rot":{"x":0.0208,"y":269.9934,"z":0.0168}},"5e46e6":{"lock":false,"pos":{"x":7.0798,"y":1.3762,"z":-81.8602},"rot":{"x":0.0208,"y":270.0138,"z":0.0168}},"5e7956":{"lock":false,"pos":{"x":24.5003,"y":1.3565,"z":-49.7185},"rot":{"x":0.0208,"y":270.0227,"z":0.0168}},"65c636":{"lock":false,"pos":{"x":7.0766,"y":1.3856,"z":-49.6605},"rot":{"x":0.0208,"y":269.9995,"z":0.0168}},"6b11de":{"lock":false,"pos":{"x":7.0766,"y":1.3863,"z":-47.3605},"rot":{"x":0.0208,"y":269.9998,"z":0.0168}},"7f3e22":{"lock":false,"pos":{"x":7.0766,"y":1.3843,"z":-54.2605},"rot":{"x":0.0208,"y":269.9995,"z":0.0168}},"8429dd":{"lock":false,"pos":{"x":7.0765,"y":1.3789,"z":-72.6601},"rot":{"x":0.0208,"y":269.9995,"z":0.0168}},"8740c7":{"lock":false,"pos":{"x":19.3437,"y":1.354,"z":-51.9679},"rot":{"x":0.0208,"y":269.9995,"z":0.0168}},"877d2f":{"lock":false,"pos":{"x":10.6297,"y":1.3781,"z":-79.548},"rot":{"x":0.0208,"y":270.0003,"z":0.0168}},"8ef34f":{"lock":false,"pos":{"x":19.3437,"y":1.3486,"z":-70.3675},"rot":{"x":0.0208,"y":269.9995,"z":0.0168}},"9357ea":{"lock":false,"pos":{"x":7.0765,"y":1.3782,"z":-74.9601},"rot":{"x":0.0208,"y":269.9995,"z":0.0168}},"990ff4":{"lock":false,"pos":{"x":7.0766,"y":1.3802,"z":-68.0601},"rot":{"x":0.0208,"y":269.9995,"z":0.0168}},"99f433":{"lock":false,"pos":{"x":7.0765,"y":1.3775,"z":-77.26},"rot":{"x":0.0208,"y":269.9995,"z":0.0168}},"a31738":{"lock":false,"pos":{"x":7.0765,"y":1.3822,"z":-61.1605},"rot":{"x":0.0208,"y":270.027,"z":0.0168}},"a5f12b":{"lock":false,"pos":{"x":10.6297,"y":1.3855,"z":-54.2484},"rot":{"x":0.0208,"y":269.9995,"z":0.0168}},"a8d27f":{"lock":false,"pos":{"x":24.5004,"y":1.3545,"z":-56.6186},"rot":{"x":0.0208,"y":269.9995,"z":0.0168}},"b4020a":{"lock":false,"pos":{"x":19.3437,"y":1.3506,"z":-63.4679},"rot":{"x":0.0208,"y":269.9995,"z":0.0168}},"b4738b":{"lock":false,"pos":{"x":7.0765,"y":1.3795,"z":-70.3601},"rot":{"x":0.0208,"y":269.9995,"z":0.0168}},"b56c07":{"lock":false,"pos":{"x":10.6139,"y":1.3754,"z":-88.74},"rot":{"x":0.0208,"y":269.9995,"z":0.0168}},"bdc57c":{"lock":false,"pos":{"x":10.6297,"y":1.3842,"z":-58.8484},"rot":{"x":0.0208,"y":269.9994,"z":0.0168}},"be2769":{"lock":false,"pos":{"x":24.5003,"y":1.3572,"z":-47.4186},"rot":{"x":0.0208,"y":269.9947,"z":0.0168}},"cad517":{"lock":false,"pos":{"x":19.3437,"y":1.3513,"z":-61.1679},"rot":{"x":0.0208,"y":269.9995,"z":0.0168}},"ce6e0f":{"lock":false,"pos":{"x":10.6296,"y":1.3822,"z":-65.7481},"rot":{"x":0.0208,"y":269.9996,"z":0.0168}},"cfb732":{"lock":false,"pos":{"x":19.3437,"y":1.352,"z":-58.8679},"rot":{"x":0.0208,"y":270.0009,"z":0.0168}},"d8c266":{"lock":false,"pos":{"x":10.6296,"y":1.3768,"z":-84.148},"rot":{"x":0.0208,"y":269.9996,"z":0.0168}},"dd1134":{"lock":false,"pos":{"x":7.0767,"y":1.3768,"z":-79.56},"rot":{"x":0.0208,"y":269.9993,"z":0.0168}},"dfd22b":{"lock":false,"pos":{"x":19.3437,"y":1.3493,"z":-68.0675},"rot":{"x":0.0208,"y":269.9996,"z":0.0168}},"e5dc9a":{"lock":false,"pos":{"x":7.0766,"y":1.3836,"z":-56.5605},"rot":{"x":0.0208,"y":270.0104,"z":0.0168}},"e67679":{"lock":false,"pos":{"x":24.5003,"y":1.3558,"z":-52.0186},"rot":{"x":0.0208,"y":270.0227,"z":0.0168}},"e6db57":{"lock":false,"pos":{"x":10.6297,"y":1.3761,"z":-86.448},"rot":{"x":0.0208,"y":269.9997,"z":0.0168}},"ed9fda":{"lock":false,"pos":{"x":19.3437,"y":1.3533,"z":-54.2679},"rot":{"x":0.0208,"y":269.9995,"z":0.0168}},"eea23f":{"lock":false,"pos":{"x":10.6296,"y":1.3802,"z":-72.6481},"rot":{"x":0.0208,"y":269.9995,"z":0.0168}},"ef4857":{"lock":false,"pos":{"x":10.6297,"y":1.3788,"z":-77.248},"rot":{"x":0.0208,"y":269.9995,"z":0.0168}},"f389f8":{"lock":false,"pos":{"x":10.6296,"y":1.3808,"z":-70.3481},"rot":{"x":0.0208,"y":269.9995,"z":0.0168}},"f4ae60":{"lock":false,"pos":{"x":19.3437,"y":1.3546,"z":-49.6679},"rot":{"x":0.0208,"y":269.9995,"z":0.0168}},"fd1152":{"lock":false,"pos":{"x":10.6296,"y":1.3829,"z":-63.4484},"rot":{"x":0.0208,"y":269.9996,"z":0.0168}},"fd526e":{"lock":false,"pos":{"x":10.6297,"y":1.3849,"z":-56.5484},"rot":{"x":0.0208,"y":269.9995,"z":0.0168}},"fea5e5":{"lock":false,"pos":{"x":10.6297,"y":1.3869,"z":-49.6484},"rot":{"x":0.0208,"y":269.9995,"z":0.0168}}}}' +MaterialIndex: -1 +MeshIndex: -1 +Name: Custom_Model_Bag +Nickname: Rogue +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 32.715 + posY: 1.65495789 + posZ: -74.7900162 + rotX: 0.0313497856 + rotY: 270.0105 + rotZ: 0.00765705155 + scaleX: 1.2 + scaleY: 1.2 + scaleZ: 1.2 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue 0038cb/Custom_Model_Bag Rogue a34bc8/Card .41 Derringer (2) b56c07.yaml b/unpacked/Custom_Model_Bag Rogue 0038cb/Custom_Model_Bag Rogue a34bc8/Card .41 Derringer (2) b56c07.yaml new file mode 100644 index 000000000..288965bb3 --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue 0038cb/Custom_Model_Bag Rogue a34bc8/Card .41 Derringer (2) b56c07.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 443748 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '4437': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: b56c07 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: .41 Derringer (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.6138687 + posY: 1.37544274 + posZ: -88.74 + rotX: 0.0208075941 + rotY: 269.9995 + rotZ: 0.0167688951 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue 0038cb/Custom_Model_Bag Rogue a34bc8/Card .45 Thompson (3) b4738b.yaml b/unpacked/Custom_Model_Bag Rogue 0038cb/Custom_Model_Bag Rogue a34bc8/Card .45 Thompson (3) b4738b.yaml new file mode 100644 index 000000000..3c591a997 --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue 0038cb/Custom_Model_Bag Rogue a34bc8/Card .45 Thompson (3) b4738b.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Rogue +GMNotes: '' +GUID: b4738b +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: .45 Thompson (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 7.07654524 + posY: 1.37953794 + posZ: -70.36011 + rotX: 0.02080782 + rotY: 269.999542 + rotZ: 0.0167682972 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue 0038cb/Custom_Model_Bag Rogue a34bc8/Card Ace in the Hole (3) b4020a.yaml b/unpacked/Custom_Model_Bag Rogue 0038cb/Custom_Model_Bag Rogue a34bc8/Card Ace in the Hole (3) b4020a.yaml new file mode 100644 index 000000000..ed64fcd4a --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue 0038cb/Custom_Model_Bag Rogue a34bc8/Card Ace in the Hole (3) b4020a.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 443752 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '4437': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: b4020a +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Ace in the Hole (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.3436565 + posY: 1.35060656 + posZ: -63.4678955 + rotX: 0.0208085217 + rotY: 269.999481 + rotZ: 0.0167700127 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue 0038cb/Custom_Model_Bag Rogue a34bc8/Card Adaptable (1) 1b415c.yaml b/unpacked/Custom_Model_Bag Rogue 0038cb/Custom_Model_Bag Rogue a34bc8/Card Adaptable (1) 1b415c.yaml new file mode 100644 index 000000000..8cd68e916 --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue 0038cb/Custom_Model_Bag Rogue a34bc8/Card Adaptable (1) 1b415c.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 443732 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '4437': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 1b415c +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Adaptable (1) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.6296606 + posY: 1.38756418 + posZ: -47.3484459 + rotX: 0.0208099615 + rotY: 269.999481 + rotZ: 0.0167702865 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue 0038cb/Custom_Model_Bag Rogue a34bc8/Card All In (5) a8d27f.yaml b/unpacked/Custom_Model_Bag Rogue 0038cb/Custom_Model_Bag Rogue a34bc8/Card All In (5) a8d27f.yaml new file mode 100644 index 000000000..bd97aa9d7 --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue 0038cb/Custom_Model_Bag Rogue a34bc8/Card All In (5) a8d27f.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: a8d27f +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: All In (5) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 24.5003548 + posY: 1.3544842 + posZ: -56.618557 + rotX: 0.02080846 + rotY: 269.999451 + rotZ: 0.016769411 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue 0038cb/Custom_Model_Bag Rogue a34bc8/Card Another Day, Another Dollar (3) 65c636.yaml b/unpacked/Custom_Model_Bag Rogue 0038cb/Custom_Model_Bag Rogue a34bc8/Card Another Day, Another Dollar (3) 65c636.yaml new file mode 100644 index 000000000..d9d02f71e --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue 0038cb/Custom_Model_Bag Rogue a34bc8/Card Another Day, Another Dollar (3) 65c636.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 65c636 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Another Day, Another Dollar (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 7.076559 + posY: 1.38559711 + posZ: -49.6604652 + rotX: 0.020809751 + rotY: 269.999451 + rotZ: 0.01677129 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue 0038cb/Custom_Model_Bag Rogue a34bc8/Card Borrowed Time (3) 7f3e22.yaml b/unpacked/Custom_Model_Bag Rogue 0038cb/Custom_Model_Bag Rogue a34bc8/Card Borrowed Time (3) 7f3e22.yaml new file mode 100644 index 000000000..ed668e96d --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue 0038cb/Custom_Model_Bag Rogue a34bc8/Card Borrowed Time (3) 7f3e22.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 443753 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '4437': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 7f3e22 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Borrowed Time (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 7.076563 + posY: 1.38425064 + posZ: -54.26048 + rotX: 0.0208094083 + rotY: 269.9995 + rotZ: 0.0167708918 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue 0038cb/Custom_Model_Bag Rogue a34bc8/Card Burglary (2) 4f6da8.yaml b/unpacked/Custom_Model_Bag Rogue 0038cb/Custom_Model_Bag Rogue a34bc8/Card Burglary (2) 4f6da8.yaml new file mode 100644 index 000000000..796085465 --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue 0038cb/Custom_Model_Bag Rogue a34bc8/Card Burglary (2) 4f6da8.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Talent. Illicit. +GMNotes: '' +GUID: 4f6da8 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Burglary (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.6296444 + posY: 1.37948549 + posZ: -74.94812 + rotX: 0.0208007284 + rotY: 270.022766 + rotZ: 0.0167769641 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue 0038cb/Custom_Model_Bag Rogue a34bc8/Card Cat Burglar (1) 15fec2.yaml b/unpacked/Custom_Model_Bag Rogue 0038cb/Custom_Model_Bag Rogue a34bc8/Card Cat Burglar (1) 15fec2.yaml new file mode 100644 index 000000000..87868aa8b --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue 0038cb/Custom_Model_Bag Rogue a34bc8/Card Cat Burglar (1) 15fec2.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 443739 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '4437': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 15fec2 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Cat Burglar (1) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.6296577 + posY: 1.38150525 + posZ: -68.0480652 + rotX: 0.0208072457 + rotY: 269.9995 + rotZ: 0.0167685 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue 0038cb/Custom_Model_Bag Rogue a34bc8/Card Charon's Obol (1) fea5e5.yaml b/unpacked/Custom_Model_Bag Rogue 0038cb/Custom_Model_Bag Rogue a34bc8/Card Charon's Obol (1) fea5e5.yaml new file mode 100644 index 000000000..192ed5334 --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue 0038cb/Custom_Model_Bag Rogue a34bc8/Card Charon's Obol (1) fea5e5.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 443733 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '4437': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: The Ferryman's Pay +GMNotes: '' +GUID: fea5e5 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Charon's Obol (1) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.6296511 + posY: 1.386891 + posZ: -49.6484337 + rotX: 0.020810103 + rotY: 269.999481 + rotZ: 0.016770184 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue 0038cb/Custom_Model_Bag Rogue a34bc8/Card Cheat Death (5) 8ef34f.yaml b/unpacked/Custom_Model_Bag Rogue 0038cb/Custom_Model_Bag Rogue a34bc8/Card Cheat Death (5) 8ef34f.yaml new file mode 100644 index 000000000..dfa54fcee --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue 0038cb/Custom_Model_Bag Rogue a34bc8/Card Cheat Death (5) 8ef34f.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 443761 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '4437': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 8ef34f +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Cheat Death (5) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.3436661 + posY: 1.34858692 + posZ: -70.36754 + rotX: 0.020809453 + rotY: 269.999542 + rotZ: 0.01677069 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue 0038cb/Custom_Model_Bag Rogue a34bc8/Card Chicago Typewriter (4) dd1134.yaml b/unpacked/Custom_Model_Bag Rogue 0038cb/Custom_Model_Bag Rogue a34bc8/Card Chicago Typewriter (4) dd1134.yaml new file mode 100644 index 000000000..7dc3f084c --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue 0038cb/Custom_Model_Bag Rogue a34bc8/Card Chicago Typewriter (4) dd1134.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 443760 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '4437': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: dd1134 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Chicago Typewriter (4) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 7.076665 + posY: 1.37684512 + posZ: -79.56001 + rotX: 0.0208079088 + rotY: 269.999329 + rotZ: 0.0167681631 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue 0038cb/Custom_Model_Bag Rogue a34bc8/Card Contraband (2) 34638f.yaml b/unpacked/Custom_Model_Bag Rogue 0038cb/Custom_Model_Bag Rogue a34bc8/Card Contraband (2) 34638f.yaml new file mode 100644 index 000000000..4525f55db --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue 0038cb/Custom_Model_Bag Rogue a34bc8/Card Contraband (2) 34638f.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 292404 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2924': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025944587/520448D0E9C22F102C7DDF64322EAD6FC221ECC8/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 34638f +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Contraband (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.343668 + posY: 1.3526262 + posZ: -56.5679054 + rotX: 0.02080853 + rotY: 269.9995 + rotZ: 0.0167692881 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue 0038cb/Custom_Model_Bag Rogue a34bc8/Card Daredevil (2) e67679.yaml b/unpacked/Custom_Model_Bag Rogue 0038cb/Custom_Model_Bag Rogue a34bc8/Card Daredevil (2) e67679.yaml new file mode 100644 index 000000000..199965f8e --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue 0038cb/Custom_Model_Bag Rogue a34bc8/Card Daredevil (2) e67679.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Fortune. Practiced. +GMNotes: '' +GUID: e67679 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Daredevil (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 24.5003471 + posY: 1.35583067 + posZ: -52.01855 + rotX: 0.0208016317 + rotY: 270.0227 + rotZ: 0.01677815 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue 0038cb/Custom_Model_Bag Rogue a34bc8/Card Delilah O'Rourke (3) a31738.yaml b/unpacked/Custom_Model_Bag Rogue 0038cb/Custom_Model_Bag Rogue a34bc8/Card Delilah O'Rourke (3) a31738.yaml new file mode 100644 index 000000000..de55bc4b4 --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue 0038cb/Custom_Model_Bag Rogue a34bc8/Card Delilah O'Rourke (3) a31738.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Syndicate Assassin +GMNotes: '' +GUID: a31738 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Delilah O'Rourke (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 7.076546 + posY: 1.38223088 + posZ: -61.16049 + rotX: 0.0208014417 + rotY: 270.027 + rotZ: 0.0167811327 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue 0038cb/Custom_Model_Bag Rogue a34bc8/Card Double, Double (4) 99f433.yaml b/unpacked/Custom_Model_Bag Rogue 0038cb/Custom_Model_Bag Rogue a34bc8/Card Double, Double (4) 99f433.yaml new file mode 100644 index 000000000..a2ef7cec3 --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue 0038cb/Custom_Model_Bag Rogue a34bc8/Card Double, Double (4) 99f433.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 99f433 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Double, Double (4) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 7.07653141 + posY: 1.3775183 + posZ: -77.26004 + rotX: 0.0208079088 + rotY: 269.999542 + rotZ: 0.0167684536 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue 0038cb/Custom_Model_Bag Rogue a34bc8/Card Easy Mark (1) 374087.yaml b/unpacked/Custom_Model_Bag Rogue 0038cb/Custom_Model_Bag Rogue a34bc8/Card Easy Mark (1) 374087.yaml new file mode 100644 index 000000000..2fdb9f0cd --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue 0038cb/Custom_Model_Bag Rogue a34bc8/Card Easy Mark (1) 374087.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: '374087' +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Easy Mark (1) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.2957535 + posY: 1.35530019 + posZ: -47.37356 + rotX: 0.020809615 + rotY: 269.9995 + rotZ: 0.0167692937 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue 0038cb/Custom_Model_Bag Rogue a34bc8/Card Fence (1) bdc57c.yaml b/unpacked/Custom_Model_Bag Rogue 0038cb/Custom_Model_Bag Rogue a34bc8/Card Fence (1) bdc57c.yaml new file mode 100644 index 000000000..cbec12725 --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue 0038cb/Custom_Model_Bag Rogue a34bc8/Card Fence (1) bdc57c.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 443738 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '4437': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: bdc57c +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Fence (1) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.6296635 + posY: 1.38419807 + posZ: -58.8484459 + rotX: 0.02080958 + rotY: 269.99942 + rotZ: 0.0167712029 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue 0038cb/Custom_Model_Bag Rogue a34bc8/Card Garrote Wire (2) 877d2f.yaml b/unpacked/Custom_Model_Bag Rogue 0038cb/Custom_Model_Bag Rogue a34bc8/Card Garrote Wire (2) 877d2f.yaml new file mode 100644 index 000000000..1a7e65b39 --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue 0038cb/Custom_Model_Bag Rogue a34bc8/Card Garrote Wire (2) 877d2f.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Item. Weapon. +GMNotes: '' +GUID: 877d2f +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Garrote Wire (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.629653 + posY: 1.378139 + posZ: -79.54802 + rotX: 0.0208074152 + rotY: 270.0003 + rotZ: 0.0167692 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue 0038cb/Custom_Model_Bag Rogue a34bc8/Card Hard Knocks (2) eea23f.yaml b/unpacked/Custom_Model_Bag Rogue 0038cb/Custom_Model_Bag Rogue a34bc8/Card Hard Knocks (2) eea23f.yaml new file mode 100644 index 000000000..3f00c3f37 --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue 0038cb/Custom_Model_Bag Rogue a34bc8/Card Hard Knocks (2) eea23f.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 443742 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '4437': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: eea23f +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Hard Knocks (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.6296463 + posY: 1.38015866 + posZ: -72.6481 + rotX: 0.0208075 + rotY: 269.9995 + rotZ: 0.01676835 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue 0038cb/Custom_Model_Bag Rogue a34bc8/Card Haste (2) 402e5f.yaml b/unpacked/Custom_Model_Bag Rogue 0038cb/Custom_Model_Bag Rogue a34bc8/Card Haste (2) 402e5f.yaml new file mode 100644 index 000000000..11a83734c --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue 0038cb/Custom_Model_Bag Rogue a34bc8/Card Haste (2) 402e5f.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Ritual. +GMNotes: '' +GUID: 402e5f +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Haste (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.6137171 + posY: 1.37476933 + posZ: -91.04 + rotX: 0.0208005477 + rotY: 270.023315 + rotZ: 0.0167771485 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue 0038cb/Custom_Model_Bag Rogue a34bc8/Card High Roller (2) 21a718.yaml b/unpacked/Custom_Model_Bag Rogue 0038cb/Custom_Model_Bag Rogue a34bc8/Card High Roller (2) 21a718.yaml new file mode 100644 index 000000000..c0c21cb60 --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue 0038cb/Custom_Model_Bag Rogue a34bc8/Card High Roller (2) 21a718.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 443747 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '4437': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 21a718 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: High Roller (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.631691 + posY: 1.37746644 + posZ: -81.8482361 + rotX: 0.020805968 + rotY: 270.004517 + rotZ: 0.0167703032 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue 0038cb/Custom_Model_Bag Rogue a34bc8/Card Hired Muscle (1) 16c33c.yaml b/unpacked/Custom_Model_Bag Rogue 0038cb/Custom_Model_Bag Rogue a34bc8/Card Hired Muscle (1) 16c33c.yaml new file mode 100644 index 000000000..40f23ce89 --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue 0038cb/Custom_Model_Bag Rogue a34bc8/Card Hired Muscle (1) 16c33c.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 443734 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '4437': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 16c33c +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Hired Muscle (1) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.629653 + posY: 1.38621771 + posZ: -51.9484329 + rotX: 0.0208097957 + rotY: 269.9995 + rotZ: 0.01677022 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue 0038cb/Custom_Model_Bag Rogue a34bc8/Card Hot Streak (2) cad517.yaml b/unpacked/Custom_Model_Bag Rogue 0038cb/Custom_Model_Bag Rogue a34bc8/Card Hot Streak (2) cad517.yaml new file mode 100644 index 000000000..297234d42 --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue 0038cb/Custom_Model_Bag Rogue a34bc8/Card Hot Streak (2) cad517.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 443750 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '4437': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: cad517 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Hot Streak (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.3436527 + posY: 1.35127974 + posZ: -61.1679153 + rotX: 0.0208092947 + rotY: 269.999542 + rotZ: 0.0167696457 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue 0038cb/Custom_Model_Bag Rogue a34bc8/Card Hot Streak (4) dfd22b.yaml b/unpacked/Custom_Model_Bag Rogue 0038cb/Custom_Model_Bag Rogue a34bc8/Card Hot Streak (4) dfd22b.yaml new file mode 100644 index 000000000..9c452c0f9 --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue 0038cb/Custom_Model_Bag Rogue a34bc8/Card Hot Streak (4) dfd22b.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 443758 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '4437': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: dfd22b +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Hot Streak (4) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.3436623 + posY: 1.34926009 + posZ: -68.06754 + rotX: 0.020808246 + rotY: 269.9996 + rotZ: 0.0167692918 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue 0038cb/Custom_Model_Bag Rogue a34bc8/Card Joey The Rat Vigil (3) e5dc9a.yaml b/unpacked/Custom_Model_Bag Rogue 0038cb/Custom_Model_Bag Rogue a34bc8/Card Joey The Rat Vigil (3) e5dc9a.yaml new file mode 100644 index 000000000..8d85b31ee --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue 0038cb/Custom_Model_Bag Rogue a34bc8/Card Joey The Rat Vigil (3) e5dc9a.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: 'Lookin'' Out For #1' +GMNotes: '' +GUID: e5dc9a +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Joey "The Rat" Vigil (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 7.076562 + posY: 1.38357735 + posZ: -56.560482 + rotX: 0.0208064225 + rotY: 270.010376 + rotZ: 0.0167742241 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue 0038cb/Custom_Model_Bag Rogue a34bc8/Card Leo de Luca (1) f389f8.yaml b/unpacked/Custom_Model_Bag Rogue 0038cb/Custom_Model_Bag Rogue a34bc8/Card Leo de Luca (1) f389f8.yaml new file mode 100644 index 000000000..85647411c --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue 0038cb/Custom_Model_Bag Rogue a34bc8/Card Leo de Luca (1) f389f8.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 443740 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '4437': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: The Louisiana Lion +GMNotes: '' +GUID: f389f8 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Leo de Luca (1) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.6296492 + posY: 1.380832 + posZ: -70.34807 + rotX: 0.0208076388 + rotY: 269.9995 + rotZ: 0.016769113 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue 0038cb/Custom_Model_Bag Rogue a34bc8/Card Lockpicks (1) 4bd181.yaml b/unpacked/Custom_Model_Bag Rogue 0038cb/Custom_Model_Bag Rogue a34bc8/Card Lockpicks (1) 4bd181.yaml new file mode 100644 index 000000000..74f83ef97 --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue 0038cb/Custom_Model_Bag Rogue a34bc8/Card Lockpicks (1) 4bd181.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 443737 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '4437': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 4bd181 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Lockpicks (1) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.6296558 + posY: 1.38352478 + posZ: -61.14845 + rotX: 0.0208098125 + rotY: 269.999481 + rotZ: 0.0167702176 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue 0038cb/Custom_Model_Bag Rogue a34bc8/Card Lola Santiago (3) 03d1a0.yaml b/unpacked/Custom_Model_Bag Rogue 0038cb/Custom_Model_Bag Rogue a34bc8/Card Lola Santiago (3) 03d1a0.yaml new file mode 100644 index 000000000..5d74afe56 --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue 0038cb/Custom_Model_Bag Rogue a34bc8/Card Lola Santiago (3) 03d1a0.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 443756 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '4437': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: No-Nonsense Archaeologist +GMNotes: '' +GUID: 03d1a0 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Lola Santiago (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 7.07654953 + posY: 1.3815577 + posZ: -63.4604759 + rotX: 0.0208085831 + rotY: 269.9994 + rotZ: 0.0167688578 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue 0038cb/Custom_Model_Bag Rogue a34bc8/Card Lucky Dice (2) d8c266.yaml b/unpacked/Custom_Model_Bag Rogue 0038cb/Custom_Model_Bag Rogue a34bc8/Card Lucky Dice (2) d8c266.yaml new file mode 100644 index 000000000..921a74892 --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue 0038cb/Custom_Model_Bag Rogue a34bc8/Card Lucky Dice (2) d8c266.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 443744 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '4437': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '... Or Are They?' +GMNotes: '' +GUID: d8c266 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Lucky Dice (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.6295624 + posY: 1.37679243 + posZ: -84.14801 + rotX: 0.02080754 + rotY: 269.999573 + rotZ: 0.0167687889 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue 0038cb/Custom_Model_Bag Rogue a34bc8/Card Lupara (3) 36fea3.yaml b/unpacked/Custom_Model_Bag Rogue 0038cb/Custom_Model_Bag Rogue a34bc8/Card Lupara (3) 36fea3.yaml new file mode 100644 index 000000000..c06aaeeee --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue 0038cb/Custom_Model_Bag Rogue a34bc8/Card Lupara (3) 36fea3.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 443755 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '4437': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 36fea3 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Lupara (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 7.076554 + posY: 1.38088453 + posZ: -65.7601 + rotX: 0.0208078027 + rotY: 269.99942 + rotZ: 0.0167688858 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue 0038cb/Custom_Model_Bag Rogue a34bc8/Card Momentum (1) be2769.yaml b/unpacked/Custom_Model_Bag Rogue 0038cb/Custom_Model_Bag Rogue a34bc8/Card Momentum (1) be2769.yaml new file mode 100644 index 000000000..02fc00941 --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue 0038cb/Custom_Model_Bag Rogue a34bc8/Card Momentum (1) be2769.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: be2769 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Momentum (1) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 24.5003471 + posY: 1.35717726 + posZ: -47.41856 + rotX: 0.02080988 + rotY: 269.99472 + rotZ: 0.0167677812 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue 0038cb/Custom_Model_Bag Rogue a34bc8/Card Moxie (1) a5f12b.yaml b/unpacked/Custom_Model_Bag Rogue 0038cb/Custom_Model_Bag Rogue a34bc8/Card Moxie (1) a5f12b.yaml new file mode 100644 index 000000000..6f0c43439 --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue 0038cb/Custom_Model_Bag Rogue a34bc8/Card Moxie (1) a5f12b.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 443735 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '4437': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: a5f12b +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Moxie (1) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.6296635 + posY: 1.38554454 + posZ: -54.24844 + rotX: 0.0208098181 + rotY: 269.9995 + rotZ: 0.01677031 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue 0038cb/Custom_Model_Bag Rogue a34bc8/Card Opportunist (2) 56b997.yaml b/unpacked/Custom_Model_Bag Rogue 0038cb/Custom_Model_Bag Rogue a34bc8/Card Opportunist (2) 56b997.yaml new file mode 100644 index 000000000..99499138f --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue 0038cb/Custom_Model_Bag Rogue a34bc8/Card Opportunist (2) 56b997.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 443741 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '4437': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 56b997 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Opportunist (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 24.5003548 + posY: 1.35515749 + posZ: -54.3185539 + rotX: 0.0208102 + rotY: 269.9934 + rotZ: 0.01676703 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue 0038cb/Custom_Model_Bag Rogue a34bc8/Card Pay Day (1) f4ae60.yaml b/unpacked/Custom_Model_Bag Rogue 0038cb/Custom_Model_Bag Rogue a34bc8/Card Pay Day (1) f4ae60.yaml new file mode 100644 index 000000000..eace997e1 --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue 0038cb/Custom_Model_Bag Rogue a34bc8/Card Pay Day (1) f4ae60.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 443762 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '4437': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: f4ae60 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Pay Day (1) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.3436661 + posY: 1.354646 + posZ: -49.6678963 + rotX: 0.02080839 + rotY: 269.999481 + rotZ: 0.01676955 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue 0038cb/Custom_Model_Bag Rogue a34bc8/Card Pickpocketing (2) e6db57.yaml b/unpacked/Custom_Model_Bag Rogue 0038cb/Custom_Model_Bag Rogue a34bc8/Card Pickpocketing (2) e6db57.yaml new file mode 100644 index 000000000..e5643d1e1 --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue 0038cb/Custom_Model_Bag Rogue a34bc8/Card Pickpocketing (2) e6db57.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 443746 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '4437': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: e6db57 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Pickpocketing (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.62969 + posY: 1.37611926 + posZ: -86.44803 + rotX: 0.0208076984 + rotY: 269.999664 + rotZ: 0.0167684536 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue 0038cb/Custom_Model_Bag Rogue a34bc8/Card Sawed-Off Shotgun (5) 5e46e6.yaml b/unpacked/Custom_Model_Bag Rogue 0038cb/Custom_Model_Bag Rogue a34bc8/Card Sawed-Off Shotgun (5) 5e46e6.yaml new file mode 100644 index 000000000..42ed7fd88 --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue 0038cb/Custom_Model_Bag Rogue a34bc8/Card Sawed-Off Shotgun (5) 5e46e6.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Item. Weapon. Firearm. Illicit. +GMNotes: '' +GUID: 5e46e6 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Sawed-Off Shotgun (5) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 7.079771 + posY: 1.3761729 + posZ: -81.86023 + rotX: 0.020803526 + rotY: 270.013824 + rotZ: 0.0167732127 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue 0038cb/Custom_Model_Bag Rogue a34bc8/Card Sneak Attack (2) ed9fda.yaml b/unpacked/Custom_Model_Bag Rogue 0038cb/Custom_Model_Bag Rogue a34bc8/Card Sneak Attack (2) ed9fda.yaml new file mode 100644 index 000000000..c9b034303 --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue 0038cb/Custom_Model_Bag Rogue a34bc8/Card Sneak Attack (2) ed9fda.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 443745 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '4437': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: ed9fda +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Sneak Attack (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.343668 + posY: 1.3532995 + posZ: -54.2679024 + rotX: 0.02080856 + rotY: 269.999481 + rotZ: 0.0167692173 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue 0038cb/Custom_Model_Bag Rogue a34bc8/Card Stealth (3) 04a3bf.yaml b/unpacked/Custom_Model_Bag Rogue 0038cb/Custom_Model_Bag Rogue a34bc8/Card Stealth (3) 04a3bf.yaml new file mode 100644 index 000000000..6f10941ec --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue 0038cb/Custom_Model_Bag Rogue a34bc8/Card Stealth (3) 04a3bf.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 04a3bf +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Stealth (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 7.07655525 + posY: 1.38290417 + posZ: -58.8604851 + rotX: 0.0208096988 + rotY: 269.999451 + rotZ: 0.0167717412 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue 0038cb/Custom_Model_Bag Rogue a34bc8/Card Streetwise (3) 1ef9a6.yaml b/unpacked/Custom_Model_Bag Rogue 0038cb/Custom_Model_Bag Rogue a34bc8/Card Streetwise (3) 1ef9a6.yaml new file mode 100644 index 000000000..e78ee0f30 --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue 0038cb/Custom_Model_Bag Rogue a34bc8/Card Streetwise (3) 1ef9a6.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 443751 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '4437': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 1ef9a6 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Streetwise (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 7.07655573 + posY: 1.38492382 + posZ: -51.96047 + rotX: 0.0208096076 + rotY: 269.9995 + rotZ: 0.01677104 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue 0038cb/Custom_Model_Bag Rogue a34bc8/Card Suggestion (1) fd1152.yaml b/unpacked/Custom_Model_Bag Rogue 0038cb/Custom_Model_Bag Rogue a34bc8/Card Suggestion (1) fd1152.yaml new file mode 100644 index 000000000..b28042267 --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue 0038cb/Custom_Model_Bag Rogue a34bc8/Card Suggestion (1) fd1152.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 440721 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: fd1152 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Suggestion (1) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.6296463 + posY: 1.38285148 + posZ: -63.4484329 + rotX: 0.02081023 + rotY: 269.999573 + rotZ: 0.0167714991 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue 0038cb/Custom_Model_Bag Rogue a34bc8/Card Suggestion (4) 9357ea.yaml b/unpacked/Custom_Model_Bag Rogue 0038cb/Custom_Model_Bag Rogue a34bc8/Card Suggestion (4) 9357ea.yaml new file mode 100644 index 000000000..c39204c7c --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue 0038cb/Custom_Model_Bag Rogue a34bc8/Card Suggestion (4) 9357ea.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 443759 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '4437': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 9357ea +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Suggestion (4) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 7.076524 + posY: 1.37819159 + posZ: -74.960144 + rotX: 0.0208082534 + rotY: 269.999542 + rotZ: 0.016767323 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue 0038cb/Custom_Model_Bag Rogue a34bc8/Card Sure Gamble (3) 1a0270.yaml b/unpacked/Custom_Model_Bag Rogue 0038cb/Custom_Model_Bag Rogue a34bc8/Card Sure Gamble (3) 1a0270.yaml new file mode 100644 index 000000000..2dad2453d --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue 0038cb/Custom_Model_Bag Rogue a34bc8/Card Sure Gamble (3) 1a0270.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 443754 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '4437': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 1a0270 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Sure Gamble (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.3436642 + posY: 1.34993339 + posZ: -65.76754 + rotX: 0.02080845 + rotY: 269.999481 + rotZ: 0.016769683 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue 0038cb/Custom_Model_Bag Rogue a34bc8/Card Swift Reload (2) cfb732.yaml b/unpacked/Custom_Model_Bag Rogue 0038cb/Custom_Model_Bag Rogue a34bc8/Card Swift Reload (2) cfb732.yaml new file mode 100644 index 000000000..0d1cdcf96 --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue 0038cb/Custom_Model_Bag Rogue a34bc8/Card Swift Reload (2) cfb732.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: cfb732 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Swift Reload (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.343668 + posY: 1.351953 + posZ: -58.86791 + rotX: 0.02080775 + rotY: 270.0009 + rotZ: 0.0167702232 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue 0038cb/Custom_Model_Bag Rogue a34bc8/Card Switchblade (2) ef4857.yaml b/unpacked/Custom_Model_Bag Rogue 0038cb/Custom_Model_Bag Rogue a34bc8/Card Switchblade (2) ef4857.yaml new file mode 100644 index 000000000..6fcf69e20 --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue 0038cb/Custom_Model_Bag Rogue a34bc8/Card Switchblade (2) ef4857.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 443743 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '4437': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: ef4857 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Switchblade (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.62965 + posY: 1.37881219 + posZ: -77.24802 + rotX: 0.0208077077 + rotY: 269.9995 + rotZ: 0.0167682637 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue 0038cb/Custom_Model_Bag Rogue a34bc8/Card Tennessee Sour Mash (3) 990ff4.yaml b/unpacked/Custom_Model_Bag Rogue 0038cb/Custom_Model_Bag Rogue a34bc8/Card Tennessee Sour Mash (3) 990ff4.yaml new file mode 100644 index 000000000..2c6e63cfc --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue 0038cb/Custom_Model_Bag Rogue a34bc8/Card Tennessee Sour Mash (3) 990ff4.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Rogue +GMNotes: '' +GUID: 990ff4 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Tennessee Sour Mash (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 7.07655573 + posY: 1.38021135 + posZ: -68.0601044 + rotX: 0.0208076723 + rotY: 269.9995 + rotZ: 0.0167687964 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue 0038cb/Custom_Model_Bag Rogue a34bc8/Card The Gold Pocket Watch (4) 8429dd.yaml b/unpacked/Custom_Model_Bag Rogue 0038cb/Custom_Model_Bag Rogue a34bc8/Card The Gold Pocket Watch (4) 8429dd.yaml new file mode 100644 index 000000000..ff72c65c2 --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue 0038cb/Custom_Model_Bag Rogue a34bc8/Card The Gold Pocket Watch (4) 8429dd.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 443757 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '4437': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: Stealing Time +GMNotes: '' +GUID: 8429dd +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: The Gold Pocket Watch (4) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 7.076545 + posY: 1.37886488 + posZ: -72.66011 + rotX: 0.0208078846 + rotY: 269.9995 + rotZ: 0.0167684071 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue 0038cb/Custom_Model_Bag Rogue a34bc8/Card The Moon • XVIII (1) ce6e0f.yaml b/unpacked/Custom_Model_Bag Rogue 0038cb/Custom_Model_Bag Rogue a34bc8/Card The Moon • XVIII (1) ce6e0f.yaml new file mode 100644 index 000000000..42c05194b --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue 0038cb/Custom_Model_Bag Rogue a34bc8/Card The Moon • XVIII (1) ce6e0f.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 274205 +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 + UniqueBack: false +Description: Message from Your Inner Self +GMNotes: '' +GUID: ce6e0f +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: "The Moon \u2022 XVIII (1)" +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.6296463 + posY: 1.38217843 + posZ: -65.74806 + rotX: 0.0208077431 + rotY: 269.999573 + rotZ: 0.0167684518 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue 0038cb/Custom_Model_Bag Rogue a34bc8/Card The Skeleton Key (2) 6b11de.yaml b/unpacked/Custom_Model_Bag Rogue 0038cb/Custom_Model_Bag Rogue a34bc8/Card The Skeleton Key (2) 6b11de.yaml new file mode 100644 index 000000000..ca79c3009 --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue 0038cb/Custom_Model_Bag Rogue a34bc8/Card The Skeleton Key (2) 6b11de.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 443749 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '4437': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 6b11de +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: The Skeleton Key (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 7.076565 + posY: 1.3862704 + posZ: -47.3604774 + rotX: 0.0208097566 + rotY: 269.999756 + rotZ: 0.01677162 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue 0038cb/Custom_Model_Bag Rogue a34bc8/Card Think on Your Feet (2) 8740c7.yaml b/unpacked/Custom_Model_Bag Rogue 0038cb/Custom_Model_Bag Rogue a34bc8/Card Think on Your Feet (2) 8740c7.yaml new file mode 100644 index 000000000..16440d780 --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue 0038cb/Custom_Model_Bag Rogue a34bc8/Card Think on Your Feet (2) 8740c7.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 292403 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2924': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025944587/520448D0E9C22F102C7DDF64322EAD6FC221ECC8/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 8740c7 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Think on Your Feet (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.3436623 + posY: 1.35397279 + posZ: -51.9679 + rotX: 0.0208085645 + rotY: 269.999481 + rotZ: 0.01676923 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue 0038cb/Custom_Model_Bag Rogue a34bc8/Card Three Aces (1) 5e7956.yaml b/unpacked/Custom_Model_Bag Rogue 0038cb/Custom_Model_Bag Rogue a34bc8/Card Three Aces (1) 5e7956.yaml new file mode 100644 index 000000000..825545d1e --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue 0038cb/Custom_Model_Bag Rogue a34bc8/Card Three Aces (1) 5e7956.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Fortune. Practiced. +GMNotes: '' +GUID: 5e7956 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Three Aces (1) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 24.5003471 + posY: 1.356504 + posZ: -49.7185478 + rotX: 0.0208015237 + rotY: 270.0227 + rotZ: 0.0167781 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue 0038cb/Custom_Model_Bag Rogue a34bc8/Card Treasure Hunter (1) fd526e.yaml b/unpacked/Custom_Model_Bag Rogue 0038cb/Custom_Model_Bag Rogue a34bc8/Card Treasure Hunter (1) fd526e.yaml new file mode 100644 index 000000000..7d9a7d97c --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue 0038cb/Custom_Model_Bag Rogue a34bc8/Card Treasure Hunter (1) fd526e.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 443736 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '4437': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: fd526e +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Treasure Hunter (1) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.62966 + posY: 1.38487124 + posZ: -56.5484428 + rotX: 0.0208098739 + rotY: 269.9995 + rotZ: 0.01677037 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue d46fae.ttslua b/unpacked/Custom_Model_Bag Rogue d46fae.ttslua new file mode 100644 index 000000000..857093fb8 --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue d46fae.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,0,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 + 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=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,0,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,0,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,0,0}, height=350, width=750, + 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}, rotation={0,0,0}, height=350, width=800, + font_size=250, color={0,0,0}, font_color={1,1,1} + }) +-- self.createButton({ +-- label="Setup", click_function="buttonClick_setup", function_owner=self, +-- position={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.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 \ No newline at end of file diff --git a/unpacked/Custom_Model_Bag Rogue d46fae.yaml b/unpacked/Custom_Model_Bag Rogue d46fae.yaml new file mode 100644 index 000000000..7f62dc655 --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue d46fae.yaml @@ -0,0 +1,103 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +ContainedObjects: +- !include 'Custom_Model_Bag Rogue d46fae/Custom_Model_Bag Rogue ee10df.yaml' +- !include 'Custom_Model_Bag Rogue d46fae/Card .41 Derringer 006e1b.yaml' +- !include 'Custom_Model_Bag Rogue d46fae/Card Hard Knocks 0849ee.yaml' +- !include 'Custom_Model_Bag Rogue d46fae/Card Crystallizer of Dreams 0a5860.yaml' +- !include 'Custom_Model_Bag Rogue d46fae/Card Intel Report 146974.yaml' +- !include 'Custom_Model_Bag Rogue d46fae/Card Burglary 1b8a6b.yaml' +- !include 'Custom_Model_Bag Rogue d46fae/Card Quick Thinking 212f28.yaml' +- !include "Custom_Model_Bag Rogue d46fae/Card Coup de Gr\xE2ce 235f45.yaml" +- !include 'Custom_Model_Bag Rogue d46fae/Card Dario El-Amin 2e5546.yaml' +- !include 'Custom_Model_Bag Rogue d46fae/Card Pickpocketing 358f9c.yaml' +- !include 'Custom_Model_Bag Rogue d46fae/Card Switchblade 360de8.yaml' +- !include 'Custom_Model_Bag Rogue d46fae/Card You owe me one! 43dfcf.yaml' +- !include 'Custom_Model_Bag Rogue d46fae/Card Investments 468e26.yaml' +- !include 'Custom_Model_Bag Rogue d46fae/Card Leo de Luca 4747e4.yaml' +- !include 'Custom_Model_Bag Rogue d46fae/Card Stealth 47b877.yaml' +- !include 'Custom_Model_Bag Rogue d46fae/Card Money Talks 56d98e.yaml' +- !include 'Custom_Model_Bag Rogue d46fae/Card Sleight of Hand 598d2e.yaml' +- !include 'Custom_Model_Bag Rogue d46fae/Card Henry Wan 5f9f93.yaml' +- !include 'Custom_Model_Bag Rogue d46fae/Card Watch this! 65d8b5.yaml' +- !include 'Custom_Model_Bag Rogue d46fae/Card Eavesdrop 66f2d9.yaml' +- !include 'Custom_Model_Bag Rogue d46fae/Card Followed 686efe.yaml' +- !include 'Custom_Model_Bag Rogue d46fae/Card Opportunist 69126c.yaml' +- !include 'Custom_Model_Bag Rogue d46fae/Card Tennessee Sour Mash 69235b.yaml' +- !include 'Custom_Model_Bag Rogue d46fae/Card Liquid Courage 6b7353.yaml' +- !include 'Custom_Model_Bag Rogue d46fae/Card .45 Thompson 6f8362.yaml' +- !include 'Custom_Model_Bag Rogue d46fae/Card Think on Your Feet 77dee9.yaml' +- !include 'Custom_Model_Bag Rogue d46fae/Card Lucky Cigarette Case 801dc6.yaml' +- !include 'Custom_Model_Bag Rogue d46fae/Card Small Favor 81d925.yaml' +- !include 'Custom_Model_Bag Rogue d46fae/Card Lone Wolf 87192f.yaml' +- !include 'Custom_Model_Bag Rogue d46fae/Card Elusive 8efa6a.yaml' +- !include 'Custom_Model_Bag Rogue d46fae/Card Decorated Skull 8f538c.yaml' +- !include 'Custom_Model_Bag Rogue d46fae/Card Gregory Gry 943e1a.yaml' +- !include 'Custom_Model_Bag Rogue d46fae/Card Double or Nothing 9c658b.yaml' +- !include 'Custom_Model_Bag Rogue d46fae/Card Knuckleduster a66029.yaml' +- !include 'Custom_Model_Bag Rogue d46fae/Card Backstab a75783.yaml' +- !include 'Custom_Model_Bag Rogue d46fae/Card Let God sort them out... ac2664.yaml' +- !include 'Custom_Model_Bag Rogue d46fae/Card Slip Away bba64c.yaml' +- !include 'Custom_Model_Bag Rogue d46fae/Card You handle this one! bf8f60.yaml' +- !include 'Custom_Model_Bag Rogue d46fae/Card Daring Maneuver c46055.yaml' +- !include 'Custom_Model_Bag Rogue d46fae/Card Swift Reflexes d01513.yaml' +- !include 'Custom_Model_Bag Rogue d46fae/Card Well Connected d28df6.yaml' +- !include 'Custom_Model_Bag Rogue d46fae/Card Cunning d45541.yaml' +- !include 'Custom_Model_Bag Rogue d46fae/Card Cheap Shot d6ff6d.yaml' +- !include 'Custom_Model_Bag Rogue d46fae/Card Joey The Rat Vigil d82c89.yaml' +- !include 'Custom_Model_Bag Rogue d46fae/Card Decoy ddf171.yaml' +- !include 'Custom_Model_Bag Rogue d46fae/Card Hatchet Man e01349.yaml' +- !include 'Custom_Model_Bag Rogue d46fae/Card Sneak Attack e3aba4.yaml' +- !include 'Custom_Model_Bag Rogue d46fae/Card Narrow Escape e91c94.yaml' +- !include 'Custom_Model_Bag Rogue d46fae/Card Colt Vest Pocket ec0c4c.yaml' +- !include 'Custom_Model_Bag Rogue d46fae/Card Contraband f054f8.yaml' +- !include 'Custom_Model_Bag Rogue d46fae/Card I''m outta here! f89d55.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/952965722515898740/E92441671B056D4CDF99DF9E6C88BE6598AAB50F/ + MaterialIndex: 3 + MeshURL: https://pastebin.com/raw/ALrYhQGb + NormalURL: '' + TypeIndex: 6 +Description: '' +GMNotes: '' +GUID: d46fae +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: true +LuaScript: !include 'Custom_Model_Bag Rogue d46fae.ttslua' +LuaScriptState: '{"ml":{"006e1b":{"lock":false,"pos":{"x":10.5689,"y":1.3431,"z":60.2608},"rot":{"x":0.0208,"y":269.9883,"z":0.0168}},"0849ee":{"lock":false,"pos":{"x":10.5689,"y":1.3471,"z":74.0607},"rot":{"x":0.0208,"y":269.9885,"z":0.0168}},"0a5860":{"lock":false,"pos":{"x":10.5689,"y":1.3491,"z":80.9607},"rot":{"x":0.0208,"y":269.9886,"z":0.0168}},"146974":{"lock":false,"pos":{"x":19.2841,"y":1.3469,"z":62.5412},"rot":{"x":0.0208,"y":269.9765,"z":0.0168}},"1b8a6b":{"lock":false,"pos":{"x":10.5689,"y":1.3484,"z":78.6607},"rot":{"x":0.0208,"y":269.9884,"z":0.0168}},"212f28":{"lock":false,"pos":{"x":24.4394,"y":1.3548,"z":83.1904},"rot":{"x":0.0208,"y":269.9998,"z":0.0168}},"235f45":{"lock":false,"pos":{"x":19.2683,"y":1.3435,"z":51.0517},"rot":{"x":0.0208,"y":269.9951,"z":0.0168}},"2e5546":{"lock":false,"pos":{"x":10.5529,"y":1.3397,"z":48.764},"rot":{"x":0.0208,"y":269.9868,"z":0.0168}},"358f9c":{"lock":false,"pos":{"x":10.5689,"y":1.3458,"z":69.4607},"rot":{"x":0.0208,"y":269.9885,"z":0.0168}},"360de8":{"lock":false,"pos":{"x":10.5689,"y":1.3498,"z":83.2607},"rot":{"x":0.0208,"y":269.9885,"z":0.0168}},"43dfcf":{"lock":false,"pos":{"x":19.2841,"y":1.3536,"z":85.5412},"rot":{"x":0.0208,"y":269.9794,"z":0.0168}},"468e26":{"lock":false,"pos":{"x":10.5689,"y":1.3518,"z":90.1608},"rot":{"x":0.0208,"y":269.9886,"z":0.0168}},"4747e4":{"lock":false,"pos":{"x":7.0158,"y":1.3512,"z":92.4487},"rot":{"x":0.0208,"y":270.0204,"z":0.0168}},"47b877":{"lock":false,"pos":{"x":10.5689,"y":1.3451,"z":67.1607},"rot":{"x":0.0208,"y":269.9888,"z":0.0168}},"56d98e":{"lock":false,"pos":{"x":19.2841,"y":1.355,"z":90.1413},"rot":{"x":0.0208,"y":269.9763,"z":0.0168}},"598d2e":{"lock":false,"pos":{"x":19.2841,"y":1.3503,"z":74.0412},"rot":{"x":0.0208,"y":269.9758,"z":0.0168}},"5f9f93":{"lock":false,"pos":{"x":10.5688,"y":1.3417,"z":55.6608},"rot":{"x":0.0208,"y":269.9885,"z":0.0168}},"65d8b5":{"lock":false,"pos":{"x":24.4394,"y":1.3568,"z":90.0904},"rot":{"x":0.0208,"y":269.9998,"z":0.0168}},"66f2d9":{"lock":false,"pos":{"x":19.2841,"y":1.3496,"z":71.7412},"rot":{"x":0.0208,"y":269.9765,"z":0.0168}},"686efe":{"lock":false,"pos":{"x":19.2841,"y":1.3476,"z":64.8411},"rot":{"x":0.0208,"y":269.9972,"z":0.0168}},"69126c":{"lock":false,"pos":{"x":24.4394,"y":1.3555,"z":85.4904},"rot":{"x":0.0208,"y":269.9998,"z":0.0168}},"69235b":{"lock":false,"pos":{"x":10.5689,"y":1.341,"z":53.3608},"rot":{"x":0.0208,"y":270.0036,"z":0.0168}},"6b7353":{"lock":false,"pos":{"x":10.5689,"y":1.3505,"z":85.5608},"rot":{"x":0.0208,"y":269.9885,"z":0.0168}},"6f8362":{"lock":false,"pos":{"x":7.0158,"y":1.3505,"z":90.1487},"rot":{"x":0.0208,"y":269.9886,"z":0.0168}},"77dee9":{"lock":false,"pos":{"x":19.2841,"y":1.3509,"z":76.3412},"rot":{"x":0.0208,"y":269.9765,"z":0.0168}},"801dc6":{"lock":false,"pos":{"x":10.5689,"y":1.3464,"z":71.7607},"rot":{"x":0.0208,"y":269.9884,"z":0.0168}},"81d925":{"lock":false,"pos":{"x":19.2841,"y":1.3462,"z":60.2412},"rot":{"x":0.0208,"y":269.9765,"z":0.0168}},"87192f":{"lock":false,"pos":{"x":10.5689,"y":1.3511,"z":87.8608},"rot":{"x":0.0208,"y":269.9887,"z":0.0168}},"8efa6a":{"lock":false,"pos":{"x":19.2841,"y":1.3482,"z":67.1411},"rot":{"x":0.0208,"y":269.9765,"z":0.0168}},"8f538c":{"lock":false,"pos":{"x":10.5689,"y":1.3525,"z":92.4607},"rot":{"x":0.021,"y":269.4863,"z":0.0166}},"943e1a":{"lock":false,"pos":{"x":10.5709,"y":1.3424,"z":57.9606},"rot":{"x":0.0208,"y":270.0089,"z":0.0168}},"9c658b":{"lock":false,"pos":{"x":24.4394,"y":1.3562,"z":87.7904},"rot":{"x":0.0208,"y":269.9996,"z":0.0168}},"a66029":{"lock":false,"pos":{"x":10.5689,"y":1.3444,"z":64.8607},"rot":{"x":0.0208,"y":269.9885,"z":0.0168}},"a75783":{"lock":false,"pos":{"x":15.6184,"y":1.3543,"z":92.4528},"rot":{"x":0.0208,"y":269.9826,"z":0.0168}},"ac2664":{"lock":false,"pos":{"x":19.2841,"y":1.3556,"z":92.4412},"rot":{"x":0.0208,"y":270.0037,"z":0.0168}},"bba64c":{"lock":false,"pos":{"x":19.284,"y":1.3449,"z":55.6412},"rot":{"x":0.0208,"y":269.9763,"z":0.0168}},"bf8f60":{"lock":false,"pos":{"x":19.2841,"y":1.3543,"z":87.8412},"rot":{"x":0.0208,"y":269.9795,"z":0.0168}},"c46055":{"lock":false,"pos":{"x":19.2841,"y":1.353,"z":83.2412},"rot":{"x":0.0208,"y":269.9765,"z":0.0168}},"d01513":{"lock":false,"pos":{"x":19.2682,"y":1.3428,"z":48.7453},"rot":{"x":0.0208,"y":270.0087,"z":0.0168}},"d28df6":{"lock":false,"pos":{"x":10.5689,"y":1.3478,"z":76.3607},"rot":{"x":0.0208,"y":269.9885,"z":0.0168}},"d45541":{"lock":false,"pos":{"x":24.4394,"y":1.3575,"z":92.3904},"rot":{"x":0.0208,"y":269.9998,"z":0.0168}},"d6ff6d":{"lock":false,"pos":{"x":19.2842,"y":1.3442,"z":53.3412},"rot":{"x":0.0208,"y":269.9765,"z":0.0168}},"d82c89":{"lock":false,"pos":{"x":10.5531,"y":1.3404,"z":51.0713},"rot":{"x":0.0208,"y":269.9995,"z":0.0168}},"ddf171":{"lock":false,"pos":{"x":19.2841,"y":1.3489,"z":69.4412},"rot":{"x":0.0208,"y":269.9764,"z":0.0168}},"e01349":{"lock":false,"pos":{"x":24.4394,"y":1.3541,"z":80.8904},"rot":{"x":0.0208,"y":269.9998,"z":0.0168}},"e3aba4":{"lock":false,"pos":{"x":19.2861,"y":1.3455,"z":57.941},"rot":{"x":0.0208,"y":269.9794,"z":0.0168}},"e91c94":{"lock":false,"pos":{"x":19.2841,"y":1.3516,"z":78.6412},"rot":{"x":0.0208,"y":269.9764,"z":0.0168}},"ec0c4c":{"lock":false,"pos":{"x":10.5689,"y":1.3437,"z":62.5608},"rot":{"x":0.0208,"y":269.9885,"z":0.0168}},"f054f8":{"lock":false,"pos":{"x":15.6184,"y":1.3536,"z":90.1528},"rot":{"x":0.0208,"y":270.0084,"z":0.0168}},"f89d55":{"lock":false,"pos":{"x":19.2841,"y":1.3523,"z":80.9412},"rot":{"x":0.0208,"y":269.9758,"z":0.0168}}}}' +MaterialIndex: -1 +MeshIndex: -1 +Name: Custom_Model_Bag +Nickname: Rogue +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 32.9597435 + posY: 1.40104151 + posZ: 65.60106 + rotX: 0.0208073873 + rotY: 270.0116 + rotZ: 0.0167745817 + scaleX: 1.2 + scaleY: 1.2 + scaleZ: 1.2 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue d46fae/Card .41 Derringer 006e1b.yaml b/unpacked/Custom_Model_Bag Rogue d46fae/Card .41 Derringer 006e1b.yaml new file mode 100644 index 000000000..52f3e5f7c --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue d46fae/Card .41 Derringer 006e1b.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 006e1b +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: .41 Derringer +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.568902 + posY: 1.34306026 + posZ: 60.2608 + rotX: 0.0208127312 + rotY: 269.9883 + rotZ: 0.0167665482 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue d46fae/Card .45 Thompson 6f8362.yaml b/unpacked/Custom_Model_Bag Rogue d46fae/Card .45 Thompson 6f8362.yaml new file mode 100644 index 000000000..b5dc318bb --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue d46fae/Card .45 Thompson 6f8362.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 6f8362 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: .45 Thompson +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 7.015802 + posY: 1.35051847 + posZ: 90.1487 + rotX: 0.02081259 + rotY: 269.9886 + rotZ: 0.01676653 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue d46fae/Card Backstab a75783.yaml b/unpacked/Custom_Model_Bag Rogue d46fae/Card Backstab a75783.yaml new file mode 100644 index 000000000..7a3e5d6e4 --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue d46fae/Card Backstab a75783.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 261616 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: a75783 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Backstab +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 15.6184 + posY: 1.35431707 + posZ: 92.4528 + rotX: 0.0208145883 + rotY: 269.982574 + rotZ: 0.016764475 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue d46fae/Card Burglary 1b8a6b.yaml b/unpacked/Custom_Model_Bag Rogue d46fae/Card Burglary 1b8a6b.yaml new file mode 100644 index 000000000..f9c83f4a6 --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue d46fae/Card Burglary 1b8a6b.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 261522 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 1b8a6b +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Burglary +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.5688982 + posY: 1.34844613 + posZ: 78.6607 + rotX: 0.0208126046 + rotY: 269.9884 + rotZ: 0.0167664271 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue d46fae/Card Cheap Shot d6ff6d.yaml b/unpacked/Custom_Model_Bag Rogue d46fae/Card Cheap Shot d6ff6d.yaml new file mode 100644 index 000000000..a5fa22bd5 --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue d46fae/Card Cheap Shot d6ff6d.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 261615 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: d6ff6d +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Cheap Shot +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.2842 + posY: 1.34419978 + posZ: 53.3412 + rotX: 0.0208164118 + rotY: 269.9765 + rotZ: 0.0167620741 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue d46fae/Card Colt Vest Pocket ec0c4c.yaml b/unpacked/Custom_Model_Bag Rogue d46fae/Card Colt Vest Pocket ec0c4c.yaml new file mode 100644 index 000000000..0d0a2ea46 --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue d46fae/Card Colt Vest Pocket ec0c4c.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: ec0c4c +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Colt Vest Pocket +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.568902 + posY: 1.34373343 + posZ: 62.5608 + rotX: 0.02081236 + rotY: 269.988525 + rotZ: 0.0167663079 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue d46fae/Card Contraband f054f8.yaml b/unpacked/Custom_Model_Bag Rogue d46fae/Card Contraband f054f8.yaml new file mode 100644 index 000000000..cda568c85 --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue d46fae/Card Contraband f054f8.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 261617 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: f054f8 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Contraband +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 15.6184 + posY: 1.35364377 + posZ: 90.1528 + rotX: 0.0208067615 + rotY: 270.0084 + rotZ: 0.0167736355 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue d46fae/Card Coup de Grâce 235f45.yaml b/unpacked/Custom_Model_Bag Rogue d46fae/Card Coup de Grâce 235f45.yaml new file mode 100644 index 000000000..92391c161 --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue d46fae/Card Coup de Grâce 235f45.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 235f45 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: "Coup de Gr\xE2ce" +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.2683 + posY: 1.34352386 + posZ: 51.0517 + rotX: 0.0208104383 + rotY: 269.995056 + rotZ: 0.0167689323 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue d46fae/Card Crystallizer of Dreams 0a5860.yaml b/unpacked/Custom_Model_Bag Rogue d46fae/Card Crystallizer of Dreams 0a5860.yaml new file mode 100644 index 000000000..ae9de5bb0 --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue d46fae/Card Crystallizer of Dreams 0a5860.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 0a5860 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Crystallizer of Dreams +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.568902 + posY: 1.34911942 + posZ: 80.9607 + rotX: 0.020812219 + rotY: 269.988647 + rotZ: 0.0167666655 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue d46fae/Card Cunning d45541.yaml b/unpacked/Custom_Model_Bag Rogue d46fae/Card Cunning d45541.yaml new file mode 100644 index 000000000..5ca9f1ebc --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue d46fae/Card Cunning d45541.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 274206 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: d45541 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Cunning +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 24.4394 + posY: 1.35750234 + posZ: 92.3904 + rotX: 0.02080932 + rotY: 269.9998 + rotZ: 0.0167705845 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue d46fae/Card Daring Maneuver c46055.yaml b/unpacked/Custom_Model_Bag Rogue d46fae/Card Daring Maneuver c46055.yaml new file mode 100644 index 000000000..1b7106630 --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue d46fae/Card Daring Maneuver c46055.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 261606 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: c46055 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Daring Maneuver +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.2841 + posY: 1.352952 + posZ: 83.2412 + rotX: 0.0208159927 + rotY: 269.9765 + rotZ: 0.0167620927 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue d46fae/Card Dario El-Amin 2e5546.yaml b/unpacked/Custom_Model_Bag Rogue d46fae/Card Dario El-Amin 2e5546.yaml new file mode 100644 index 000000000..917b87b52 --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue d46fae/Card Dario El-Amin 2e5546.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 261530 +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 + UniqueBack: false +Description: Unscrupulous Investor +GMNotes: '' +GUID: 2e5546 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Dario El-Amin +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.5528984 + posY: 1.33968925 + posZ: 48.764 + rotX: 0.0208130535 + rotY: 269.986755 + rotZ: 0.0167660248 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue d46fae/Card Decorated Skull 8f538c.yaml b/unpacked/Custom_Model_Bag Rogue d46fae/Card Decorated Skull 8f538c.yaml new file mode 100644 index 000000000..de85a60cb --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue d46fae/Card Decorated Skull 8f538c.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 261518 +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 + UniqueBack: false +Description: Doom Begets Doom +GMNotes: '' +GUID: 8f538c +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Decorated Skull +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.568902 + posY: 1.35248566 + posZ: 92.4607 + rotX: 0.0209584329 + rotY: 269.486328 + rotZ: 0.0165833738 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue d46fae/Card Decoy ddf171.yaml b/unpacked/Custom_Model_Bag Rogue d46fae/Card Decoy ddf171.yaml new file mode 100644 index 000000000..bda3804a4 --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue d46fae/Card Decoy ddf171.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: ddf171 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Decoy +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.2841 + posY: 1.34891248 + posZ: 69.4412 + rotX: 0.0208160784 + rotY: 269.97644 + rotZ: 0.0167617965 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue d46fae/Card Double or Nothing 9c658b.yaml b/unpacked/Custom_Model_Bag Rogue d46fae/Card Double or Nothing 9c658b.yaml new file mode 100644 index 000000000..823ad993e --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue d46fae/Card Double or Nothing 9c658b.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 9c658b +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Double or Nothing +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 24.4394 + posY: 1.35615575 + posZ: 87.7904 + rotX: 0.0208096541 + rotY: 269.999573 + rotZ: 0.01677061 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue d46fae/Card Eavesdrop 66f2d9.yaml b/unpacked/Custom_Model_Bag Rogue d46fae/Card Eavesdrop 66f2d9.yaml new file mode 100644 index 000000000..7628d601f --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue d46fae/Card Eavesdrop 66f2d9.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 261611 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 66f2d9 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Eavesdrop +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.2841 + posY: 1.34958577 + posZ: 71.7412 + rotX: 0.0208160263 + rotY: 269.9765 + rotZ: 0.01676204 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue d46fae/Card Elusive 8efa6a.yaml b/unpacked/Custom_Model_Bag Rogue d46fae/Card Elusive 8efa6a.yaml new file mode 100644 index 000000000..61107d78b --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue d46fae/Card Elusive 8efa6a.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 261612 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 8efa6a +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Elusive +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.2841 + posY: 1.34823918 + posZ: 67.1411 + rotX: 0.0208159424 + rotY: 269.9765 + rotZ: 0.0167622 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue d46fae/Card Followed 686efe.yaml b/unpacked/Custom_Model_Bag Rogue d46fae/Card Followed 686efe.yaml new file mode 100644 index 000000000..2160d3652 --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue d46fae/Card Followed 686efe.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 380025 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 686efe +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Followed +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.2841 + posY: 1.347566 + posZ: 64.8411 + rotX: 0.0208100528 + rotY: 269.997223 + rotZ: 0.01676972 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue d46fae/Card Gregory Gry 943e1a.yaml b/unpacked/Custom_Model_Bag Rogue d46fae/Card Gregory Gry 943e1a.yaml new file mode 100644 index 000000000..566cec07e --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue d46fae/Card Gregory Gry 943e1a.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Muckraker +GMNotes: '' +GUID: 943e1a +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Gregory Gry +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.5708981 + posY: 1.34238768 + posZ: 57.9606 + rotX: 0.0208065845 + rotY: 270.008881 + rotZ: 0.0167738385 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue d46fae/Card Hard Knocks 0849ee.yaml b/unpacked/Custom_Model_Bag Rogue d46fae/Card Hard Knocks 0849ee.yaml new file mode 100644 index 000000000..ea70700dd --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue d46fae/Card Hard Knocks 0849ee.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 0849ee +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Hard Knocks +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.5688982 + posY: 1.34709978 + posZ: 74.0607 + rotX: 0.0208125729 + rotY: 269.9885 + rotZ: 0.0167666767 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue d46fae/Card Hatchet Man e01349.yaml b/unpacked/Custom_Model_Bag Rogue d46fae/Card Hatchet Man e01349.yaml new file mode 100644 index 000000000..92b703be9 --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue d46fae/Card Hatchet Man e01349.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: e01349 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Hatchet Man +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 24.4394 + posY: 1.35413611 + posZ: 80.8904 + rotX: 0.0208091959 + rotY: 269.9998 + rotZ: 0.0167707428 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue d46fae/Card Henry Wan 5f9f93.yaml b/unpacked/Custom_Model_Bag Rogue d46fae/Card Henry Wan 5f9f93.yaml new file mode 100644 index 000000000..859e55f01 --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue d46fae/Card Henry Wan 5f9f93.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Aspiring Actor +GMNotes: '' +GUID: 5f9f93 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Henry Wan +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.5688 + posY: 1.34171379 + posZ: 55.6608 + rotX: 0.02081266 + rotY: 269.988525 + rotZ: 0.0167665426 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue d46fae/Card I'm outta here! f89d55.yaml b/unpacked/Custom_Model_Bag Rogue d46fae/Card I'm outta here! f89d55.yaml new file mode 100644 index 000000000..5733fe6ad --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue d46fae/Card I'm outta here! f89d55.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 261607 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: f89d55 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '"I''m outta here!"' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.2841 + posY: 1.35227871 + posZ: 80.9412 + rotX: 0.0208162311 + rotY: 269.97583 + rotZ: 0.0167619176 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue d46fae/Card Intel Report 146974.yaml b/unpacked/Custom_Model_Bag Rogue d46fae/Card Intel Report 146974.yaml new file mode 100644 index 000000000..106b5fbe6 --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue d46fae/Card Intel Report 146974.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: '146974' +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Intel Report +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.2841 + posY: 1.34689271 + posZ: 62.5412 + rotX: 0.0208158158 + rotY: 269.976532 + rotZ: 0.0167622529 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue d46fae/Card Investments 468e26.yaml b/unpacked/Custom_Model_Bag Rogue d46fae/Card Investments 468e26.yaml new file mode 100644 index 000000000..9f5e2fe24 --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue d46fae/Card Investments 468e26.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 468e26 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Investments +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.5688982 + posY: 1.35181224 + posZ: 90.1608 + rotX: 0.0208127685 + rotY: 269.988556 + rotZ: 0.01676649 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue d46fae/Card Joey The Rat Vigil d82c89.yaml b/unpacked/Custom_Model_Bag Rogue d46fae/Card Joey The Rat Vigil d82c89.yaml new file mode 100644 index 000000000..e651e5ebb --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue d46fae/Card Joey The Rat Vigil d82c89.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 261529 +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 + UniqueBack: false +Description: 'Lookin'' Out For #1' +GMNotes: '' +GUID: d82c89 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Joey "The Rat" Vigil +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.5531015 + posY: 1.34036469 + posZ: 51.0713 + rotX: 0.02080931 + rotY: 269.9995 + rotZ: 0.0167704932 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue d46fae/Card Knuckleduster a66029.yaml b/unpacked/Custom_Model_Bag Rogue d46fae/Card Knuckleduster a66029.yaml new file mode 100644 index 000000000..b20e1a69d --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue d46fae/Card Knuckleduster a66029.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 261527 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: a66029 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Knuckleduster +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.5689 + posY: 1.34440684 + posZ: 64.8607 + rotX: 0.0208124388 + rotY: 269.988617 + rotZ: 0.0167669449 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue d46fae/Card Leo de Luca 4747e4.yaml b/unpacked/Custom_Model_Bag Rogue d46fae/Card Leo de Luca 4747e4.yaml new file mode 100644 index 000000000..fb442ceaa --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue d46fae/Card Leo de Luca 4747e4.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 261531 +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 + UniqueBack: false +Description: The Louisiana Lion +GMNotes: '' +GUID: 4747e4 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Leo de Luca +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 7.01579952 + posY: 1.35119188 + posZ: 92.4487 + rotX: 0.0208031833 + rotY: 270.020355 + rotZ: 0.0167781357 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue d46fae/Card Let God sort them out... ac2664.yaml b/unpacked/Custom_Model_Bag Rogue d46fae/Card Let God sort them out... ac2664.yaml new file mode 100644 index 000000000..4cbed896f --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue d46fae/Card Let God sort them out... ac2664.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: ac2664 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '"Let God sort them out..."' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.2841 + posY: 1.35564482 + posZ: 92.4412 + rotX: 0.0208081342 + rotY: 270.0037 + rotZ: 0.0167717189 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue d46fae/Card Liquid Courage 6b7353.yaml b/unpacked/Custom_Model_Bag Rogue d46fae/Card Liquid Courage 6b7353.yaml new file mode 100644 index 000000000..46be8ec3d --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue d46fae/Card Liquid Courage 6b7353.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 261520 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 6b7353 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Liquid Courage +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.5688982 + posY: 1.350466 + posZ: 85.5608 + rotX: 0.0208126381 + rotY: 269.988525 + rotZ: 0.016766604 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue d46fae/Card Lone Wolf 87192f.yaml b/unpacked/Custom_Model_Bag Rogue d46fae/Card Lone Wolf 87192f.yaml new file mode 100644 index 000000000..41dd36af7 --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue d46fae/Card Lone Wolf 87192f.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 261519 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 87192f +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Lone Wolf +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.5689 + posY: 1.35113919 + posZ: 87.8608 + rotX: 0.0208121557 + rotY: 269.988739 + rotZ: 0.0167664457 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue d46fae/Card Lucky Cigarette Case 801dc6.yaml b/unpacked/Custom_Model_Bag Rogue d46fae/Card Lucky Cigarette Case 801dc6.yaml new file mode 100644 index 000000000..f97973a2b --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue d46fae/Card Lucky Cigarette Case 801dc6.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 261524 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 801dc6 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Lucky Cigarette Case +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.568902 + posY: 1.34642649 + posZ: 71.7607 + rotX: 0.020812571 + rotY: 269.9884 + rotZ: 0.0167664532 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue d46fae/Card Money Talks 56d98e.yaml b/unpacked/Custom_Model_Bag Rogue d46fae/Card Money Talks 56d98e.yaml new file mode 100644 index 000000000..b16e20bf1 --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue d46fae/Card Money Talks 56d98e.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 274207 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 56d98e +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Money Talks +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.2841 + posY: 1.35497177 + posZ: 90.1413 + rotX: 0.0208163615 + rotY: 269.9763 + rotZ: 0.0167618711 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue d46fae/Card Narrow Escape e91c94.yaml b/unpacked/Custom_Model_Bag Rogue d46fae/Card Narrow Escape e91c94.yaml new file mode 100644 index 000000000..a963cae2b --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue d46fae/Card Narrow Escape e91c94.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 261608 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: e91c94 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Narrow Escape +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.2841 + posY: 1.35160542 + posZ: 78.6412 + rotX: 0.0208161734 + rotY: 269.97644 + rotZ: 0.0167616922 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue d46fae/Card Opportunist 69126c.yaml b/unpacked/Custom_Model_Bag Rogue d46fae/Card Opportunist 69126c.yaml new file mode 100644 index 000000000..b8d0c0d8e --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue d46fae/Card Opportunist 69126c.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 69126c +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Opportunist +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 24.4394 + posY: 1.3554827 + posZ: 85.4904 + rotX: 0.020809276 + rotY: 269.999847 + rotZ: 0.0167706031 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue d46fae/Card Pickpocketing 358f9c.yaml b/unpacked/Custom_Model_Bag Rogue d46fae/Card Pickpocketing 358f9c.yaml new file mode 100644 index 000000000..f1b856b8b --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue d46fae/Card Pickpocketing 358f9c.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 261525 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 358f9c +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Pickpocketing +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.5688982 + posY: 1.34575319 + posZ: 69.4607 + rotX: 0.0208125636 + rotY: 269.988525 + rotZ: 0.0167664215 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue d46fae/Card Quick Thinking 212f28.yaml b/unpacked/Custom_Model_Bag Rogue d46fae/Card Quick Thinking 212f28.yaml new file mode 100644 index 000000000..b25f6278c --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue d46fae/Card Quick Thinking 212f28.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 212f28 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Quick Thinking +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 24.4394 + posY: 1.35480928 + posZ: 83.1904 + rotX: 0.0208089519 + rotY: 269.9998 + rotZ: 0.0167704821 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue d46fae/Card Sleight of Hand 598d2e.yaml b/unpacked/Custom_Model_Bag Rogue d46fae/Card Sleight of Hand 598d2e.yaml new file mode 100644 index 000000000..9c29e2f24 --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue d46fae/Card Sleight of Hand 598d2e.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 261610 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 598d2e +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Sleight of Hand +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.2841 + posY: 1.350259 + posZ: 74.0412 + rotX: 0.020816179 + rotY: 269.9758 + rotZ: 0.01676212 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue d46fae/Card Slip Away bba64c.yaml b/unpacked/Custom_Model_Bag Rogue d46fae/Card Slip Away bba64c.yaml new file mode 100644 index 000000000..9fbd66365 --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue d46fae/Card Slip Away bba64c.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 261614 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: bba64c +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Slip Away +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.284 + posY: 1.344873 + posZ: 55.6412 + rotX: 0.0208161138 + rotY: 269.9763 + rotZ: 0.0167617463 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue d46fae/Card Small Favor 81d925.yaml b/unpacked/Custom_Model_Bag Rogue d46fae/Card Small Favor 81d925.yaml new file mode 100644 index 000000000..24f0d82bc --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue d46fae/Card Small Favor 81d925.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 378016 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 81d925 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Small Favor +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.2841 + posY: 1.34621954 + posZ: 60.2412 + rotX: 0.0208160486 + rotY: 269.976471 + rotZ: 0.0167622156 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue d46fae/Card Sneak Attack e3aba4.yaml b/unpacked/Custom_Model_Bag Rogue d46fae/Card Sneak Attack e3aba4.yaml new file mode 100644 index 000000000..f3f804a56 --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue d46fae/Card Sneak Attack e3aba4.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 261613 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: e3aba4 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Sneak Attack +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.2861 + posY: 1.345547 + posZ: 57.941 + rotX: 0.0208151359 + rotY: 269.979431 + rotZ: 0.0167632271 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue d46fae/Card Stealth 47b877.yaml b/unpacked/Custom_Model_Bag Rogue d46fae/Card Stealth 47b877.yaml new file mode 100644 index 000000000..8ff380b6e --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue d46fae/Card Stealth 47b877.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 261526 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 47b877 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Stealth +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.5689 + posY: 1.34508 + posZ: 67.1607 + rotX: 0.02081252 + rotY: 269.9888 + rotZ: 0.0167664886 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue d46fae/Card Swift Reflexes d01513.yaml b/unpacked/Custom_Model_Bag Rogue d46fae/Card Swift Reflexes d01513.yaml new file mode 100644 index 000000000..c5f056fb7 --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue d46fae/Card Swift Reflexes d01513.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: d01513 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Swift Reflexes +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.2682 + posY: 1.34284878 + posZ: 48.7453 + rotX: 0.0208066925 + rotY: 270.0087 + rotZ: 0.01677371 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue d46fae/Card Switchblade 360de8.yaml b/unpacked/Custom_Model_Bag Rogue d46fae/Card Switchblade 360de8.yaml new file mode 100644 index 000000000..0700ecb39 --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue d46fae/Card Switchblade 360de8.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 261521 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 360de8 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Switchblade +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.568902 + posY: 1.34979272 + posZ: 83.2607 + rotX: 0.0208127331 + rotY: 269.988525 + rotZ: 0.016766442 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue d46fae/Card Tennessee Sour Mash 69235b.yaml b/unpacked/Custom_Model_Bag Rogue d46fae/Card Tennessee Sour Mash 69235b.yaml new file mode 100644 index 000000000..164527b4f --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue d46fae/Card Tennessee Sour Mash 69235b.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 69235b +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Tennessee Sour Mash +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.5689 + posY: 1.34104061 + posZ: 53.3608 + rotX: 0.0208081622 + rotY: 270.0036 + rotZ: 0.0167721882 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue d46fae/Card Think on Your Feet 77dee9.yaml b/unpacked/Custom_Model_Bag Rogue d46fae/Card Think on Your Feet 77dee9.yaml new file mode 100644 index 000000000..35e17059e --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue d46fae/Card Think on Your Feet 77dee9.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 261609 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 77dee9 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Think on Your Feet +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.2841 + posY: 1.35093224 + posZ: 76.3412 + rotX: 0.020815827 + rotY: 269.976532 + rotZ: 0.0167619511 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue d46fae/Card Watch this! 65d8b5.yaml b/unpacked/Custom_Model_Bag Rogue d46fae/Card Watch this! 65d8b5.yaml new file mode 100644 index 000000000..6e7cc085c --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue d46fae/Card Watch this! 65d8b5.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 65d8b5 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '"Watch this!"' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 24.4394 + posY: 1.356829 + posZ: 90.0904 + rotX: 0.0208093654 + rotY: 269.999847 + rotZ: 0.0167706218 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue d46fae/Card Well Connected d28df6.yaml b/unpacked/Custom_Model_Bag Rogue d46fae/Card Well Connected d28df6.yaml new file mode 100644 index 000000000..a84a9c34c --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue d46fae/Card Well Connected d28df6.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 274208 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: d28df6 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Well Connected +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.5689 + posY: 1.347773 + posZ: 76.3607 + rotX: 0.0208126046 + rotY: 269.988617 + rotZ: 0.0167666636 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue d46fae/Card You handle this one! bf8f60.yaml b/unpacked/Custom_Model_Bag Rogue d46fae/Card You handle this one! bf8f60.yaml new file mode 100644 index 000000000..194df37cb --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue d46fae/Card You handle this one! bf8f60.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 261605 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: bf8f60 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '"You handle this one!"' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.2841 + posY: 1.35429847 + posZ: 87.8412 + rotX: 0.0208151788 + rotY: 269.979462 + rotZ: 0.0167633165 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue d46fae/Card You owe me one! 43dfcf.yaml b/unpacked/Custom_Model_Bag Rogue d46fae/Card You owe me one! 43dfcf.yaml new file mode 100644 index 000000000..e97420626 --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue d46fae/Card You owe me one! 43dfcf.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 43dfcf +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '"You owe me one!"' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.2841 + posY: 1.35362518 + posZ: 85.5412 + rotX: 0.0208151024 + rotY: 269.97937 + rotZ: 0.0167632941 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue d46fae/Custom_Model_Bag Rogue ee10df.ttslua b/unpacked/Custom_Model_Bag Rogue d46fae/Custom_Model_Bag Rogue ee10df.ttslua new file mode 100644 index 000000000..f882a7f09 --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue d46fae/Custom_Model_Bag Rogue ee10df.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,0,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 + 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=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,0,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,0,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,0,0}, height=350, width=750, + 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}, rotation={0,0,0}, height=350, width=800, + font_size=250, color={0,0,0}, font_color={1,1,1} + }) +-- self.createButton({ +-- label="Setup", click_function="buttonClick_setup", function_owner=self, +-- position={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.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 Rogue d46fae/Custom_Model_Bag Rogue ee10df.yaml b/unpacked/Custom_Model_Bag Rogue d46fae/Custom_Model_Bag Rogue ee10df.yaml new file mode 100644 index 000000000..714a8b1f8 --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue d46fae/Custom_Model_Bag Rogue ee10df.yaml @@ -0,0 +1,102 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +ContainedObjects: +- !include 'Custom_Model_Bag Rogue ee10df/Card Cunning d45541.yaml' +- !include 'Custom_Model_Bag Rogue ee10df/Card Watch this! 65d8b5.yaml' +- !include 'Custom_Model_Bag Rogue ee10df/Card Double or Nothing 9c658b.yaml' +- !include 'Custom_Model_Bag Rogue ee10df/Card Opportunist 69126c.yaml' +- !include 'Custom_Model_Bag Rogue ee10df/Card Quick Thinking 212f28.yaml' +- !include 'Custom_Model_Bag Rogue ee10df/Card Hatchet Man e01349.yaml' +- !include 'Custom_Model_Bag Rogue ee10df/Card I''m outta here! f89d55.yaml' +- !include 'Custom_Model_Bag Rogue ee10df/Card Daring Maneuver c46055.yaml' +- !include 'Custom_Model_Bag Rogue ee10df/Card You owe me one! 43dfcf.yaml' +- !include 'Custom_Model_Bag Rogue ee10df/Card Money Talks 56d98e.yaml' +- !include 'Custom_Model_Bag Rogue ee10df/Card You handle this one! bf8f60.yaml' +- !include 'Custom_Model_Bag Rogue ee10df/Card Let God sort them out... ac2664.yaml' +- !include 'Custom_Model_Bag Rogue ee10df/Card Backstab a75783.yaml' +- !include 'Custom_Model_Bag Rogue ee10df/Card Contraband f054f8.yaml' +- !include 'Custom_Model_Bag Rogue ee10df/Card Narrow Escape e91c94.yaml' +- !include 'Custom_Model_Bag Rogue ee10df/Card Think on Your Feet 77dee9.yaml' +- !include 'Custom_Model_Bag Rogue ee10df/Card Sleight of Hand 598d2e.yaml' +- !include 'Custom_Model_Bag Rogue ee10df/Card Eavesdrop 66f2d9.yaml' +- !include 'Custom_Model_Bag Rogue ee10df/Card Decoy ddf171.yaml' +- !include 'Custom_Model_Bag Rogue ee10df/Card Elusive 8efa6a.yaml' +- !include 'Custom_Model_Bag Rogue ee10df/Card Followed 686efe.yaml' +- !include 'Custom_Model_Bag Rogue ee10df/Card Intel Report 146974.yaml' +- !include 'Custom_Model_Bag Rogue ee10df/Card Small Favor 81d925.yaml' +- !include 'Custom_Model_Bag Rogue ee10df/Card Sneak Attack e3aba4.yaml' +- !include 'Custom_Model_Bag Rogue ee10df/Card Slip Away bba64c.yaml' +- !include 'Custom_Model_Bag Rogue ee10df/Card Cheap Shot d6ff6d.yaml' +- !include "Custom_Model_Bag Rogue ee10df/Card Coup de Gr\xE2ce 235f45.yaml" +- !include 'Custom_Model_Bag Rogue ee10df/Card Swift Reflexes d01513.yaml' +- !include 'Custom_Model_Bag Rogue ee10df/Card Dario El-Amin 2e5546.yaml' +- !include 'Custom_Model_Bag Rogue ee10df/Card Joey The Rat Vigil d82c89.yaml' +- !include 'Custom_Model_Bag Rogue ee10df/Card Tennessee Sour Mash 69235b.yaml' +- !include 'Custom_Model_Bag Rogue ee10df/Card Henry Wan 5f9f93.yaml' +- !include 'Custom_Model_Bag Rogue ee10df/Card Gregory Gry 943e1a.yaml' +- !include 'Custom_Model_Bag Rogue ee10df/Card .41 Derringer 006e1b.yaml' +- !include 'Custom_Model_Bag Rogue ee10df/Card Colt Vest Pocket ec0c4c.yaml' +- !include 'Custom_Model_Bag Rogue ee10df/Card Knuckleduster a66029.yaml' +- !include 'Custom_Model_Bag Rogue ee10df/Card Stealth 47b877.yaml' +- !include 'Custom_Model_Bag Rogue ee10df/Card Pickpocketing 358f9c.yaml' +- !include 'Custom_Model_Bag Rogue ee10df/Card Lucky Cigarette Case 801dc6.yaml' +- !include 'Custom_Model_Bag Rogue ee10df/Card Hard Knocks 0849ee.yaml' +- !include 'Custom_Model_Bag Rogue ee10df/Card Well Connected d28df6.yaml' +- !include 'Custom_Model_Bag Rogue ee10df/Card Burglary 1b8a6b.yaml' +- !include 'Custom_Model_Bag Rogue ee10df/Card Crystallizer of Dreams 0a5860.yaml' +- !include 'Custom_Model_Bag Rogue ee10df/Card Switchblade 360de8.yaml' +- !include 'Custom_Model_Bag Rogue ee10df/Card Liquid Courage 6b7353.yaml' +- !include 'Custom_Model_Bag Rogue ee10df/Card Lone Wolf 87192f.yaml' +- !include 'Custom_Model_Bag Rogue ee10df/Card Investments 468e26.yaml' +- !include 'Custom_Model_Bag Rogue ee10df/Card Decorated Skull 8f538c.yaml' +- !include 'Custom_Model_Bag Rogue ee10df/Card Leo de Luca 4747e4.yaml' +- !include 'Custom_Model_Bag Rogue ee10df/Card .45 Thompson 6f8362.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/952965722515898740/E92441671B056D4CDF99DF9E6C88BE6598AAB50F/ + MaterialIndex: 3 + MeshURL: https://pastebin.com/raw/ALrYhQGb + NormalURL: '' + TypeIndex: 6 +Description: '' +GMNotes: '' +GUID: ee10df +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Model_Bag Rogue ee10df.ttslua' +LuaScriptState: '{"ml":{"006e1b":{"lock":false,"pos":{"x":10.5689,"y":1.3431,"z":60.2608},"rot":{"x":0.0208,"y":269.9883,"z":0.0168}},"0849ee":{"lock":false,"pos":{"x":10.5689,"y":1.3471,"z":74.0607},"rot":{"x":0.0208,"y":269.9885,"z":0.0168}},"0a5860":{"lock":false,"pos":{"x":10.5689,"y":1.3491,"z":80.9607},"rot":{"x":0.0208,"y":269.9886,"z":0.0168}},"146974":{"lock":false,"pos":{"x":19.2841,"y":1.3469,"z":62.5412},"rot":{"x":0.0208,"y":269.9765,"z":0.0168}},"1b8a6b":{"lock":false,"pos":{"x":10.5689,"y":1.3484,"z":78.6607},"rot":{"x":0.0208,"y":269.9884,"z":0.0168}},"212f28":{"lock":false,"pos":{"x":24.4394,"y":1.3548,"z":83.1904},"rot":{"x":0.0208,"y":269.9998,"z":0.0168}},"235f45":{"lock":false,"pos":{"x":19.2683,"y":1.3435,"z":51.0517},"rot":{"x":0.0208,"y":269.9951,"z":0.0168}},"2e5546":{"lock":false,"pos":{"x":10.5529,"y":1.3397,"z":48.764},"rot":{"x":0.0208,"y":269.9868,"z":0.0168}},"358f9c":{"lock":false,"pos":{"x":10.5689,"y":1.3458,"z":69.4607},"rot":{"x":0.0208,"y":269.9885,"z":0.0168}},"360de8":{"lock":false,"pos":{"x":10.5689,"y":1.3498,"z":83.2607},"rot":{"x":0.0208,"y":269.9885,"z":0.0168}},"43dfcf":{"lock":false,"pos":{"x":19.2841,"y":1.3536,"z":85.5412},"rot":{"x":0.0208,"y":269.9794,"z":0.0168}},"468e26":{"lock":false,"pos":{"x":10.5689,"y":1.3518,"z":90.1608},"rot":{"x":0.0208,"y":269.9886,"z":0.0168}},"4747e4":{"lock":false,"pos":{"x":7.0158,"y":1.3512,"z":92.4487},"rot":{"x":0.0208,"y":270.0204,"z":0.0168}},"47b877":{"lock":false,"pos":{"x":10.5689,"y":1.3451,"z":67.1607},"rot":{"x":0.0208,"y":269.9888,"z":0.0168}},"56d98e":{"lock":false,"pos":{"x":19.2841,"y":1.355,"z":90.1413},"rot":{"x":0.0208,"y":269.9763,"z":0.0168}},"598d2e":{"lock":false,"pos":{"x":19.2841,"y":1.3503,"z":74.0412},"rot":{"x":0.0208,"y":269.9758,"z":0.0168}},"5f9f93":{"lock":false,"pos":{"x":10.5688,"y":1.3417,"z":55.6608},"rot":{"x":0.0208,"y":269.9885,"z":0.0168}},"65d8b5":{"lock":false,"pos":{"x":24.4394,"y":1.3568,"z":90.0904},"rot":{"x":0.0208,"y":269.9998,"z":0.0168}},"66f2d9":{"lock":false,"pos":{"x":19.2841,"y":1.3496,"z":71.7412},"rot":{"x":0.0208,"y":269.9765,"z":0.0168}},"686efe":{"lock":false,"pos":{"x":19.2841,"y":1.3476,"z":64.8411},"rot":{"x":0.0208,"y":269.9972,"z":0.0168}},"69126c":{"lock":false,"pos":{"x":24.4394,"y":1.3555,"z":85.4904},"rot":{"x":0.0208,"y":269.9998,"z":0.0168}},"69235b":{"lock":false,"pos":{"x":10.5689,"y":1.341,"z":53.3608},"rot":{"x":0.0208,"y":270.0036,"z":0.0168}},"6b7353":{"lock":false,"pos":{"x":10.5689,"y":1.3505,"z":85.5608},"rot":{"x":0.0208,"y":269.9885,"z":0.0168}},"6f8362":{"lock":false,"pos":{"x":7.0158,"y":1.3505,"z":90.1487},"rot":{"x":0.0208,"y":269.9886,"z":0.0168}},"77dee9":{"lock":false,"pos":{"x":19.2841,"y":1.3509,"z":76.3412},"rot":{"x":0.0208,"y":269.9765,"z":0.0168}},"801dc6":{"lock":false,"pos":{"x":10.5689,"y":1.3464,"z":71.7607},"rot":{"x":0.0208,"y":269.9884,"z":0.0168}},"81d925":{"lock":false,"pos":{"x":19.2841,"y":1.3462,"z":60.2412},"rot":{"x":0.0208,"y":269.9765,"z":0.0168}},"87192f":{"lock":false,"pos":{"x":10.5689,"y":1.3511,"z":87.8608},"rot":{"x":0.0208,"y":269.9887,"z":0.0168}},"8efa6a":{"lock":false,"pos":{"x":19.2841,"y":1.3482,"z":67.1411},"rot":{"x":0.0208,"y":269.9765,"z":0.0168}},"8f538c":{"lock":false,"pos":{"x":10.5689,"y":1.3525,"z":92.4607},"rot":{"x":0.021,"y":269.4863,"z":0.0166}},"943e1a":{"lock":false,"pos":{"x":10.5709,"y":1.3424,"z":57.9606},"rot":{"x":0.0208,"y":270.0089,"z":0.0168}},"9c658b":{"lock":false,"pos":{"x":24.4394,"y":1.3562,"z":87.7904},"rot":{"x":0.0208,"y":269.9996,"z":0.0168}},"a66029":{"lock":false,"pos":{"x":10.5689,"y":1.3444,"z":64.8607},"rot":{"x":0.0208,"y":269.9885,"z":0.0168}},"a75783":{"lock":false,"pos":{"x":15.6184,"y":1.3543,"z":92.4528},"rot":{"x":0.0208,"y":269.9826,"z":0.0168}},"ac2664":{"lock":false,"pos":{"x":19.2841,"y":1.3556,"z":92.4412},"rot":{"x":0.0208,"y":270.0037,"z":0.0168}},"bba64c":{"lock":false,"pos":{"x":19.284,"y":1.3449,"z":55.6412},"rot":{"x":0.0208,"y":269.9763,"z":0.0168}},"bf8f60":{"lock":false,"pos":{"x":19.2841,"y":1.3543,"z":87.8412},"rot":{"x":0.0208,"y":269.9795,"z":0.0168}},"c46055":{"lock":false,"pos":{"x":19.2841,"y":1.353,"z":83.2412},"rot":{"x":0.0208,"y":269.9765,"z":0.0168}},"d01513":{"lock":false,"pos":{"x":19.2682,"y":1.3428,"z":48.7453},"rot":{"x":0.0208,"y":270.0087,"z":0.0168}},"d28df6":{"lock":false,"pos":{"x":10.5689,"y":1.3478,"z":76.3607},"rot":{"x":0.0208,"y":269.9885,"z":0.0168}},"d45541":{"lock":false,"pos":{"x":24.4394,"y":1.3575,"z":92.3904},"rot":{"x":0.0208,"y":269.9998,"z":0.0168}},"d6ff6d":{"lock":false,"pos":{"x":19.2842,"y":1.3442,"z":53.3412},"rot":{"x":0.0208,"y":269.9765,"z":0.0168}},"d82c89":{"lock":false,"pos":{"x":10.5531,"y":1.3404,"z":51.0713},"rot":{"x":0.0208,"y":269.9995,"z":0.0168}},"ddf171":{"lock":false,"pos":{"x":19.2841,"y":1.3489,"z":69.4412},"rot":{"x":0.0208,"y":269.9764,"z":0.0168}},"e01349":{"lock":false,"pos":{"x":24.4394,"y":1.3541,"z":80.8904},"rot":{"x":0.0208,"y":269.9998,"z":0.0168}},"e3aba4":{"lock":false,"pos":{"x":19.2861,"y":1.3455,"z":57.941},"rot":{"x":0.0208,"y":269.9794,"z":0.0168}},"e91c94":{"lock":false,"pos":{"x":19.2841,"y":1.3516,"z":78.6412},"rot":{"x":0.0208,"y":269.9764,"z":0.0168}},"ec0c4c":{"lock":false,"pos":{"x":10.5689,"y":1.3437,"z":62.5608},"rot":{"x":0.0208,"y":269.9885,"z":0.0168}},"f054f8":{"lock":false,"pos":{"x":15.6184,"y":1.3536,"z":90.1528},"rot":{"x":0.0208,"y":270.0084,"z":0.0168}},"f89d55":{"lock":false,"pos":{"x":19.2841,"y":1.3523,"z":80.9412},"rot":{"x":0.0208,"y":269.9758,"z":0.0168}}}}' +MaterialIndex: -1 +MeshIndex: -1 +Name: Custom_Model_Bag +Nickname: Rogue +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 32.9639435 + posY: 1.65594792 + posZ: 65.6012039 + rotX: 0.0188104883 + rotY: 270.0116 + rotZ: 0.00799968652 + scaleX: 1.2 + scaleY: 1.2 + scaleZ: 1.2 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue d46fae/Custom_Model_Bag Rogue ee10df/Card .41 Derringer 006e1b.yaml b/unpacked/Custom_Model_Bag Rogue d46fae/Custom_Model_Bag Rogue ee10df/Card .41 Derringer 006e1b.yaml new file mode 100644 index 000000000..84445ebae --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue d46fae/Custom_Model_Bag Rogue ee10df/Card .41 Derringer 006e1b.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 006e1b +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: .41 Derringer +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.568862 + posY: 1.34306037 + posZ: 60.2607956 + rotX: 0.0208120048 + rotY: 269.9883 + rotZ: 0.01676583 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue d46fae/Custom_Model_Bag Rogue ee10df/Card .45 Thompson 6f8362.yaml b/unpacked/Custom_Model_Bag Rogue d46fae/Custom_Model_Bag Rogue ee10df/Card .45 Thompson 6f8362.yaml new file mode 100644 index 000000000..d577dd162 --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue d46fae/Custom_Model_Bag Rogue ee10df/Card .45 Thompson 6f8362.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 6f8362 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: .45 Thompson +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 7.015763 + posY: 1.35051847 + posZ: 90.14873 + rotX: 0.0208119489 + rotY: 269.9886 + rotZ: 0.0167652722 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue d46fae/Custom_Model_Bag Rogue ee10df/Card Backstab a75783.yaml b/unpacked/Custom_Model_Bag Rogue d46fae/Custom_Model_Bag Rogue ee10df/Card Backstab a75783.yaml new file mode 100644 index 000000000..bbcf9d64e --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue d46fae/Custom_Model_Bag Rogue ee10df/Card Backstab a75783.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 261616 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: a75783 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Backstab +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 15.6184 + posY: 1.35431707 + posZ: 92.4528046 + rotX: 0.02081354 + rotY: 269.982574 + rotZ: 0.01676341 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue d46fae/Custom_Model_Bag Rogue ee10df/Card Burglary 1b8a6b.yaml b/unpacked/Custom_Model_Bag Rogue d46fae/Custom_Model_Bag Rogue ee10df/Card Burglary 1b8a6b.yaml new file mode 100644 index 000000000..4790c2857 --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue d46fae/Custom_Model_Bag Rogue ee10df/Card Burglary 1b8a6b.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 261522 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 1b8a6b +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Burglary +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.5688572 + posY: 1.34844625 + posZ: 78.66074 + rotX: 0.0208119638 + rotY: 269.9884 + rotZ: 0.0167654548 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue d46fae/Custom_Model_Bag Rogue ee10df/Card Cheap Shot d6ff6d.yaml b/unpacked/Custom_Model_Bag Rogue d46fae/Custom_Model_Bag Rogue ee10df/Card Cheap Shot d6ff6d.yaml new file mode 100644 index 000000000..4804a382d --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue d46fae/Custom_Model_Bag Rogue ee10df/Card Cheap Shot d6ff6d.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 261615 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: d6ff6d +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Cheap Shot +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.2841511 + posY: 1.34419978 + posZ: 53.3411865 + rotX: 0.0208152216 + rotY: 269.9765 + rotZ: 0.0167610627 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue d46fae/Custom_Model_Bag Rogue ee10df/Card Colt Vest Pocket ec0c4c.yaml b/unpacked/Custom_Model_Bag Rogue d46fae/Custom_Model_Bag Rogue ee10df/Card Colt Vest Pocket ec0c4c.yaml new file mode 100644 index 000000000..666ee91bc --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue d46fae/Custom_Model_Bag Rogue ee10df/Card Colt Vest Pocket ec0c4c.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: ec0c4c +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Colt Vest Pocket +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.5688591 + posY: 1.34373355 + posZ: 62.5607948 + rotX: 0.0208120421 + rotY: 269.988525 + rotZ: 0.0167653281 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue d46fae/Custom_Model_Bag Rogue ee10df/Card Contraband f054f8.yaml b/unpacked/Custom_Model_Bag Rogue d46fae/Custom_Model_Bag Rogue ee10df/Card Contraband f054f8.yaml new file mode 100644 index 000000000..cd8974ad8 --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue d46fae/Custom_Model_Bag Rogue ee10df/Card Contraband f054f8.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 261617 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: f054f8 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Contraband +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 15.6184 + posY: 1.35364377 + posZ: 90.15278 + rotX: 0.0208063014 + rotY: 270.0084 + rotZ: 0.0167723522 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue d46fae/Custom_Model_Bag Rogue ee10df/Card Coup de Grâce 235f45.yaml b/unpacked/Custom_Model_Bag Rogue d46fae/Custom_Model_Bag Rogue ee10df/Card Coup de Grâce 235f45.yaml new file mode 100644 index 000000000..84e4dc757 --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue d46fae/Custom_Model_Bag Rogue ee10df/Card Coup de Grâce 235f45.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 235f45 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: "Coup de Gr\xE2ce" +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.26833 + posY: 1.343524 + posZ: 51.0517464 + rotX: 0.0208101217 + rotY: 269.995056 + rotZ: 0.0167681575 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue d46fae/Custom_Model_Bag Rogue ee10df/Card Crystallizer of Dreams 0a5860.yaml b/unpacked/Custom_Model_Bag Rogue d46fae/Custom_Model_Bag Rogue ee10df/Card Crystallizer of Dreams 0a5860.yaml new file mode 100644 index 000000000..a6d9eb70b --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue d46fae/Custom_Model_Bag Rogue ee10df/Card Crystallizer of Dreams 0a5860.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 0a5860 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Crystallizer of Dreams +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.5688686 + posY: 1.34911954 + posZ: 80.96075 + rotX: 0.02081165 + rotY: 269.988647 + rotZ: 0.0167660378 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue d46fae/Custom_Model_Bag Rogue ee10df/Card Cunning d45541.yaml b/unpacked/Custom_Model_Bag Rogue d46fae/Custom_Model_Bag Rogue ee10df/Card Cunning d45541.yaml new file mode 100644 index 000000000..1e3051978 --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue d46fae/Custom_Model_Bag Rogue ee10df/Card Cunning d45541.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 274206 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: d45541 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Cunning +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 24.439394 + posY: 1.35750234 + posZ: 92.39039 + rotX: 0.0208083112 + rotY: 269.9998 + rotZ: 0.01676935 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue d46fae/Custom_Model_Bag Rogue ee10df/Card Daring Maneuver c46055.yaml b/unpacked/Custom_Model_Bag Rogue d46fae/Custom_Model_Bag Rogue ee10df/Card Daring Maneuver c46055.yaml new file mode 100644 index 000000000..9ef2aba06 --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue d46fae/Custom_Model_Bag Rogue ee10df/Card Daring Maneuver c46055.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 261606 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: c46055 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Daring Maneuver +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.2841187 + posY: 1.352952 + posZ: 83.24124 + rotX: 0.0208155 + rotY: 269.9765 + rotZ: 0.0167612247 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue d46fae/Custom_Model_Bag Rogue ee10df/Card Dario El-Amin 2e5546.yaml b/unpacked/Custom_Model_Bag Rogue d46fae/Custom_Model_Bag Rogue ee10df/Card Dario El-Amin 2e5546.yaml new file mode 100644 index 000000000..bdc97dc42 --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue d46fae/Custom_Model_Bag Rogue ee10df/Card Dario El-Amin 2e5546.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 261530 +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 + UniqueBack: false +Description: Unscrupulous Investor +GMNotes: '' +GUID: 2e5546 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Dario El-Amin +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.552906 + posY: 1.33968937 + posZ: 48.76401 + rotX: 0.02081236 + rotY: 269.986755 + rotZ: 0.0167648159 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue d46fae/Custom_Model_Bag Rogue ee10df/Card Decorated Skull 8f538c.yaml b/unpacked/Custom_Model_Bag Rogue d46fae/Custom_Model_Bag Rogue ee10df/Card Decorated Skull 8f538c.yaml new file mode 100644 index 000000000..a9a989639 --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue d46fae/Custom_Model_Bag Rogue ee10df/Card Decorated Skull 8f538c.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 261518 +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 + UniqueBack: false +Description: Doom Begets Doom +GMNotes: '' +GUID: 8f538c +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Decorated Skull +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.5688677 + posY: 1.35248566 + posZ: 92.46075 + rotX: 0.0209579822 + rotY: 269.486328 + rotZ: 0.01658216 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue d46fae/Custom_Model_Bag Rogue ee10df/Card Decoy ddf171.yaml b/unpacked/Custom_Model_Bag Rogue d46fae/Custom_Model_Bag Rogue ee10df/Card Decoy ddf171.yaml new file mode 100644 index 000000000..43821a446 --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue d46fae/Custom_Model_Bag Rogue ee10df/Card Decoy ddf171.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: ddf171 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Decoy +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.28411 + posY: 1.3489126 + posZ: 69.44123 + rotX: 0.0208154488 + rotY: 269.97644 + rotZ: 0.0167612545 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue d46fae/Custom_Model_Bag Rogue ee10df/Card Double or Nothing 9c658b.yaml b/unpacked/Custom_Model_Bag Rogue d46fae/Custom_Model_Bag Rogue ee10df/Card Double or Nothing 9c658b.yaml new file mode 100644 index 000000000..fc851bde2 --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue d46fae/Custom_Model_Bag Rogue ee10df/Card Double or Nothing 9c658b.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 9c658b +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Double or Nothing +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 24.4394054 + posY: 1.35615587 + posZ: 87.7904 + rotX: 0.02080874 + rotY: 269.999573 + rotZ: 0.01676964 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue d46fae/Custom_Model_Bag Rogue ee10df/Card Eavesdrop 66f2d9.yaml b/unpacked/Custom_Model_Bag Rogue d46fae/Custom_Model_Bag Rogue ee10df/Card Eavesdrop 66f2d9.yaml new file mode 100644 index 000000000..b512d859a --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue d46fae/Custom_Model_Bag Rogue ee10df/Card Eavesdrop 66f2d9.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 261611 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 66f2d9 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Eavesdrop +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.284111 + posY: 1.34958577 + posZ: 71.7412338 + rotX: 0.02081543 + rotY: 269.9765 + rotZ: 0.0167608988 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue d46fae/Custom_Model_Bag Rogue ee10df/Card Elusive 8efa6a.yaml b/unpacked/Custom_Model_Bag Rogue d46fae/Custom_Model_Bag Rogue ee10df/Card Elusive 8efa6a.yaml new file mode 100644 index 000000000..35388cec2 --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue d46fae/Custom_Model_Bag Rogue ee10df/Card Elusive 8efa6a.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 261612 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 8efa6a +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Elusive +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.28411 + posY: 1.34823918 + posZ: 67.14111 + rotX: 0.02081531 + rotY: 269.9765 + rotZ: 0.0167611055 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue d46fae/Custom_Model_Bag Rogue ee10df/Card Followed 686efe.yaml b/unpacked/Custom_Model_Bag Rogue d46fae/Custom_Model_Bag Rogue ee10df/Card Followed 686efe.yaml new file mode 100644 index 000000000..3b06e81af --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue d46fae/Custom_Model_Bag Rogue ee10df/Card Followed 686efe.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 380025 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 686efe +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Followed +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.2841053 + posY: 1.347566 + posZ: 64.8411 + rotX: 0.0208094511 + rotY: 269.997223 + rotZ: 0.0167684257 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue d46fae/Custom_Model_Bag Rogue ee10df/Card Gregory Gry 943e1a.yaml b/unpacked/Custom_Model_Bag Rogue d46fae/Custom_Model_Bag Rogue ee10df/Card Gregory Gry 943e1a.yaml new file mode 100644 index 000000000..8440d340a --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue d46fae/Custom_Model_Bag Rogue ee10df/Card Gregory Gry 943e1a.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Muckraker +GMNotes: '' +GUID: 943e1a +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Gregory Gry +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.5708981 + posY: 1.34238768 + posZ: 57.9605751 + rotX: 0.02080592 + rotY: 270.008881 + rotZ: 0.0167725161 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue d46fae/Custom_Model_Bag Rogue ee10df/Card Hard Knocks 0849ee.yaml b/unpacked/Custom_Model_Bag Rogue d46fae/Custom_Model_Bag Rogue ee10df/Card Hard Knocks 0849ee.yaml new file mode 100644 index 000000000..d72eb37e3 --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue d46fae/Custom_Model_Bag Rogue ee10df/Card Hard Knocks 0849ee.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 0849ee +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Hard Knocks +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.5688667 + posY: 1.34709978 + posZ: 74.0607452 + rotX: 0.02081216 + rotY: 269.9885 + rotZ: 0.01676513 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue d46fae/Custom_Model_Bag Rogue ee10df/Card Hatchet Man e01349.yaml b/unpacked/Custom_Model_Bag Rogue d46fae/Custom_Model_Bag Rogue ee10df/Card Hatchet Man e01349.yaml new file mode 100644 index 000000000..893b03059 --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue d46fae/Custom_Model_Bag Rogue ee10df/Card Hatchet Man e01349.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: e01349 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Hatchet Man +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 24.4393864 + posY: 1.35413611 + posZ: 80.89037 + rotX: 0.0208088811 + rotY: 269.9998 + rotZ: 0.0167692564 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue d46fae/Custom_Model_Bag Rogue ee10df/Card Henry Wan 5f9f93.yaml b/unpacked/Custom_Model_Bag Rogue d46fae/Custom_Model_Bag Rogue ee10df/Card Henry Wan 5f9f93.yaml new file mode 100644 index 000000000..3e2bd9465 --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue d46fae/Custom_Model_Bag Rogue ee10df/Card Henry Wan 5f9f93.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Aspiring Actor +GMNotes: '' +GUID: 5f9f93 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Henry Wan +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.5687685 + posY: 1.34171379 + posZ: 55.6607971 + rotX: 0.0208117459 + rotY: 269.988525 + rotZ: 0.0167654566 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue d46fae/Custom_Model_Bag Rogue ee10df/Card I'm outta here! f89d55.yaml b/unpacked/Custom_Model_Bag Rogue d46fae/Custom_Model_Bag Rogue ee10df/Card I'm outta here! f89d55.yaml new file mode 100644 index 000000000..e3bcc3ff5 --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue d46fae/Custom_Model_Bag Rogue ee10df/Card I'm outta here! f89d55.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 261607 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: f89d55 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '"I''m outta here!"' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.2841148 + posY: 1.35227871 + posZ: 80.94124 + rotX: 0.0208158046 + rotY: 269.97583 + rotZ: 0.0167605765 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue d46fae/Custom_Model_Bag Rogue ee10df/Card Intel Report 146974.yaml b/unpacked/Custom_Model_Bag Rogue d46fae/Custom_Model_Bag Rogue ee10df/Card Intel Report 146974.yaml new file mode 100644 index 000000000..8a0123dea --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue d46fae/Custom_Model_Bag Rogue ee10df/Card Intel Report 146974.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: '146974' +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Intel Report +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.2841129 + posY: 1.34689271 + posZ: 62.5412025 + rotX: 0.0208154861 + rotY: 269.976532 + rotZ: 0.01676095 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue d46fae/Custom_Model_Bag Rogue ee10df/Card Investments 468e26.yaml b/unpacked/Custom_Model_Bag Rogue d46fae/Custom_Model_Bag Rogue ee10df/Card Investments 468e26.yaml new file mode 100644 index 000000000..3abac2ba5 --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue d46fae/Custom_Model_Bag Rogue ee10df/Card Investments 468e26.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 468e26 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Investments +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.5688639 + posY: 1.35181248 + posZ: 90.16076 + rotX: 0.0208119657 + rotY: 269.988556 + rotZ: 0.0167653 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue d46fae/Custom_Model_Bag Rogue ee10df/Card Joey The Rat Vigil d82c89.yaml b/unpacked/Custom_Model_Bag Rogue d46fae/Custom_Model_Bag Rogue ee10df/Card Joey The Rat Vigil d82c89.yaml new file mode 100644 index 000000000..3679aace8 --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue d46fae/Custom_Model_Bag Rogue ee10df/Card Joey The Rat Vigil d82c89.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 261529 +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 + UniqueBack: false +Description: 'Lookin'' Out For #1' +GMNotes: '' +GUID: d82c89 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Joey "The Rat" Vigil +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.5530777 + posY: 1.34036469 + posZ: 51.07134 + rotX: 0.02080876 + rotY: 269.9995 + rotZ: 0.0167695973 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue d46fae/Custom_Model_Bag Rogue ee10df/Card Knuckleduster a66029.yaml b/unpacked/Custom_Model_Bag Rogue d46fae/Custom_Model_Bag Rogue ee10df/Card Knuckleduster a66029.yaml new file mode 100644 index 000000000..79eb398f5 --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue d46fae/Custom_Model_Bag Rogue ee10df/Card Knuckleduster a66029.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 261527 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: a66029 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Knuckleduster +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.5688543 + posY: 1.34440684 + posZ: 64.8606949 + rotX: 0.0208119731 + rotY: 269.988525 + rotZ: 0.0167656112 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue d46fae/Custom_Model_Bag Rogue ee10df/Card Leo de Luca 4747e4.yaml b/unpacked/Custom_Model_Bag Rogue d46fae/Custom_Model_Bag Rogue ee10df/Card Leo de Luca 4747e4.yaml new file mode 100644 index 000000000..acccda194 --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue d46fae/Custom_Model_Bag Rogue ee10df/Card Leo de Luca 4747e4.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 261531 +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 + UniqueBack: false +Description: The Louisiana Lion +GMNotes: '' +GUID: 4747e4 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Leo de Luca +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 7.015772 + posY: 1.35119176 + posZ: 92.4487152 + rotX: 0.0208025258 + rotY: 270.020355 + rotZ: 0.0167769063 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue d46fae/Custom_Model_Bag Rogue ee10df/Card Let God sort them out... ac2664.yaml b/unpacked/Custom_Model_Bag Rogue d46fae/Custom_Model_Bag Rogue ee10df/Card Let God sort them out... ac2664.yaml new file mode 100644 index 000000000..051b60c79 --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue d46fae/Custom_Model_Bag Rogue ee10df/Card Let God sort them out... ac2664.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: ac2664 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '"Let God sort them out..."' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.2841225 + posY: 1.355645 + posZ: 92.441246 + rotX: 0.0208070818 + rotY: 270.0037 + rotZ: 0.0167697463 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue d46fae/Custom_Model_Bag Rogue ee10df/Card Liquid Courage 6b7353.yaml b/unpacked/Custom_Model_Bag Rogue d46fae/Custom_Model_Bag Rogue ee10df/Card Liquid Courage 6b7353.yaml new file mode 100644 index 000000000..322de001e --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue d46fae/Custom_Model_Bag Rogue ee10df/Card Liquid Courage 6b7353.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 261520 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 6b7353 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Liquid Courage +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.5688686 + posY: 1.35046589 + posZ: 85.56075 + rotX: 0.02081199 + rotY: 269.988525 + rotZ: 0.0167652853 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue d46fae/Custom_Model_Bag Rogue ee10df/Card Lone Wolf 87192f.yaml b/unpacked/Custom_Model_Bag Rogue d46fae/Custom_Model_Bag Rogue ee10df/Card Lone Wolf 87192f.yaml new file mode 100644 index 000000000..1efbef248 --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue d46fae/Custom_Model_Bag Rogue ee10df/Card Lone Wolf 87192f.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 261519 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 87192f +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Lone Wolf +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.5688667 + posY: 1.35113919 + posZ: 87.8607559 + rotX: 0.0208117235 + rotY: 269.988678 + rotZ: 0.01676523 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue d46fae/Custom_Model_Bag Rogue ee10df/Card Lucky Cigarette Case 801dc6.yaml b/unpacked/Custom_Model_Bag Rogue d46fae/Custom_Model_Bag Rogue ee10df/Card Lucky Cigarette Case 801dc6.yaml new file mode 100644 index 000000000..c7965e020 --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue d46fae/Custom_Model_Bag Rogue ee10df/Card Lucky Cigarette Case 801dc6.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 261524 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 801dc6 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Lucky Cigarette Case +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.5688686 + posY: 1.34642661 + posZ: 71.76074 + rotX: 0.0208119545 + rotY: 269.9884 + rotZ: 0.016765628 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue d46fae/Custom_Model_Bag Rogue ee10df/Card Money Talks 56d98e.yaml b/unpacked/Custom_Model_Bag Rogue d46fae/Custom_Model_Bag Rogue ee10df/Card Money Talks 56d98e.yaml new file mode 100644 index 000000000..393a1ae7b --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue d46fae/Custom_Model_Bag Rogue ee10df/Card Money Talks 56d98e.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 274207 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 56d98e +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Money Talks +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.2841187 + posY: 1.35497165 + posZ: 90.14125 + rotX: 0.0208154656 + rotY: 269.9763 + rotZ: 0.0167608131 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue d46fae/Custom_Model_Bag Rogue ee10df/Card Narrow Escape e91c94.yaml b/unpacked/Custom_Model_Bag Rogue d46fae/Custom_Model_Bag Rogue ee10df/Card Narrow Escape e91c94.yaml new file mode 100644 index 000000000..af13c5c74 --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue d46fae/Custom_Model_Bag Rogue ee10df/Card Narrow Escape e91c94.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 261608 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: e91c94 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Narrow Escape +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.2841148 + posY: 1.35160553 + posZ: 78.6412354 + rotX: 0.02081528 + rotY: 269.97644 + rotZ: 0.0167611819 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue d46fae/Custom_Model_Bag Rogue ee10df/Card Opportunist 69126c.yaml b/unpacked/Custom_Model_Bag Rogue d46fae/Custom_Model_Bag Rogue ee10df/Card Opportunist 69126c.yaml new file mode 100644 index 000000000..8d4104b87 --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue d46fae/Custom_Model_Bag Rogue ee10df/Card Opportunist 69126c.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 69126c +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Opportunist +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 24.4394016 + posY: 1.35548258 + posZ: 85.49039 + rotX: 0.020808626 + rotY: 269.999847 + rotZ: 0.0167696979 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue d46fae/Custom_Model_Bag Rogue ee10df/Card Pickpocketing 358f9c.yaml b/unpacked/Custom_Model_Bag Rogue d46fae/Custom_Model_Bag Rogue ee10df/Card Pickpocketing 358f9c.yaml new file mode 100644 index 000000000..406ca497e --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue d46fae/Custom_Model_Bag Rogue ee10df/Card Pickpocketing 358f9c.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 261525 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 358f9c +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Pickpocketing +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.5688629 + posY: 1.34575331 + posZ: 69.46074 + rotX: 0.0208119564 + rotY: 269.988525 + rotZ: 0.0167652145 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue d46fae/Custom_Model_Bag Rogue ee10df/Card Quick Thinking 212f28.yaml b/unpacked/Custom_Model_Bag Rogue d46fae/Custom_Model_Bag Rogue ee10df/Card Quick Thinking 212f28.yaml new file mode 100644 index 000000000..d6bd237ae --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue d46fae/Custom_Model_Bag Rogue ee10df/Card Quick Thinking 212f28.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 212f28 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Quick Thinking +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 24.4394169 + posY: 1.3548094 + posZ: 83.19039 + rotX: 0.020808585 + rotY: 269.9998 + rotZ: 0.0167692751 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue d46fae/Custom_Model_Bag Rogue ee10df/Card Sleight of Hand 598d2e.yaml b/unpacked/Custom_Model_Bag Rogue d46fae/Custom_Model_Bag Rogue ee10df/Card Sleight of Hand 598d2e.yaml new file mode 100644 index 000000000..54d7dafd0 --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue d46fae/Custom_Model_Bag Rogue ee10df/Card Sleight of Hand 598d2e.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 261610 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 598d2e +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Sleight of Hand +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.284111 + posY: 1.35025907 + posZ: 74.04124 + rotX: 0.0208154973 + rotY: 269.9758 + rotZ: 0.0167609435 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue d46fae/Custom_Model_Bag Rogue ee10df/Card Slip Away bba64c.yaml b/unpacked/Custom_Model_Bag Rogue d46fae/Custom_Model_Bag Rogue ee10df/Card Slip Away bba64c.yaml new file mode 100644 index 000000000..943bfc142 --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue d46fae/Custom_Model_Bag Rogue ee10df/Card Slip Away bba64c.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 261614 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: bba64c +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Slip Away +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.2840176 + posY: 1.344873 + posZ: 55.6412048 + rotX: 0.0208155159 + rotY: 269.9763 + rotZ: 0.0167607628 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue d46fae/Custom_Model_Bag Rogue ee10df/Card Small Favor 81d925.yaml b/unpacked/Custom_Model_Bag Rogue d46fae/Custom_Model_Bag Rogue ee10df/Card Small Favor 81d925.yaml new file mode 100644 index 000000000..ce38c8586 --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue d46fae/Custom_Model_Bag Rogue ee10df/Card Small Favor 81d925.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 378016 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 81d925 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Small Favor +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.284132 + posY: 1.34621954 + posZ: 60.24122 + rotX: 0.0208163559 + rotY: 269.976471 + rotZ: 0.0167618 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue d46fae/Custom_Model_Bag Rogue ee10df/Card Sneak Attack e3aba4.yaml b/unpacked/Custom_Model_Bag Rogue d46fae/Custom_Model_Bag Rogue ee10df/Card Sneak Attack e3aba4.yaml new file mode 100644 index 000000000..15a7c0287 --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue d46fae/Custom_Model_Bag Rogue ee10df/Card Sneak Attack e3aba4.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 261613 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: e3aba4 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Sneak Attack +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.2861462 + posY: 1.345547 + posZ: 57.9409828 + rotX: 0.02081459 + rotY: 269.979431 + rotZ: 0.0167620648 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue d46fae/Custom_Model_Bag Rogue ee10df/Card Stealth 47b877.yaml b/unpacked/Custom_Model_Bag Rogue d46fae/Custom_Model_Bag Rogue ee10df/Card Stealth 47b877.yaml new file mode 100644 index 000000000..6c9773377 --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue d46fae/Custom_Model_Bag Rogue ee10df/Card Stealth 47b877.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 261526 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 47b877 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Stealth +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.5688543 + posY: 1.34508 + posZ: 67.1607056 + rotX: 0.020811921 + rotY: 269.9888 + rotZ: 0.0167652573 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue d46fae/Custom_Model_Bag Rogue ee10df/Card Swift Reflexes d01513.yaml b/unpacked/Custom_Model_Bag Rogue d46fae/Custom_Model_Bag Rogue ee10df/Card Swift Reflexes d01513.yaml new file mode 100644 index 000000000..0298e83e7 --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue d46fae/Custom_Model_Bag Rogue ee10df/Card Swift Reflexes d01513.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: d01513 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Swift Reflexes +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.2681713 + posY: 1.34284878 + posZ: 48.7452965 + rotX: 0.020806117 + rotY: 270.0087 + rotZ: 0.0167725682 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue d46fae/Custom_Model_Bag Rogue ee10df/Card Switchblade 360de8.yaml b/unpacked/Custom_Model_Bag Rogue d46fae/Custom_Model_Bag Rogue ee10df/Card Switchblade 360de8.yaml new file mode 100644 index 000000000..de0f9900d --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue d46fae/Custom_Model_Bag Rogue ee10df/Card Switchblade 360de8.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 261521 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 360de8 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Switchblade +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.5688705 + posY: 1.34979272 + posZ: 83.26075 + rotX: 0.0208117571 + rotY: 269.988525 + rotZ: 0.01676559 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue d46fae/Custom_Model_Bag Rogue ee10df/Card Tennessee Sour Mash 69235b.yaml b/unpacked/Custom_Model_Bag Rogue d46fae/Custom_Model_Bag Rogue ee10df/Card Tennessee Sour Mash 69235b.yaml new file mode 100644 index 000000000..fb7f86cf6 --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue d46fae/Custom_Model_Bag Rogue ee10df/Card Tennessee Sour Mash 69235b.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 69235b +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Tennessee Sour Mash +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.568902 + posY: 1.34104061 + posZ: 53.36078 + rotX: 0.0208075549 + rotY: 270.0036 + rotZ: 0.016770931 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue d46fae/Custom_Model_Bag Rogue ee10df/Card Think on Your Feet 77dee9.yaml b/unpacked/Custom_Model_Bag Rogue d46fae/Custom_Model_Bag Rogue ee10df/Card Think on Your Feet 77dee9.yaml new file mode 100644 index 000000000..79be63760 --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue d46fae/Custom_Model_Bag Rogue ee10df/Card Think on Your Feet 77dee9.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 261609 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 77dee9 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Think on Your Feet +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.2841053 + posY: 1.35093224 + posZ: 76.34123 + rotX: 0.0208153483 + rotY: 269.976532 + rotZ: 0.0167609975 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue d46fae/Custom_Model_Bag Rogue ee10df/Card Watch this! 65d8b5.yaml b/unpacked/Custom_Model_Bag Rogue d46fae/Custom_Model_Bag Rogue ee10df/Card Watch this! 65d8b5.yaml new file mode 100644 index 000000000..d3ae54c2d --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue d46fae/Custom_Model_Bag Rogue ee10df/Card Watch this! 65d8b5.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 65d8b5 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '"Watch this!"' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 24.4394016 + posY: 1.35682917 + posZ: 90.09039 + rotX: 0.0208086465 + rotY: 269.999847 + rotZ: 0.0167698655 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue d46fae/Custom_Model_Bag Rogue ee10df/Card Well Connected d28df6.yaml b/unpacked/Custom_Model_Bag Rogue d46fae/Custom_Model_Bag Rogue ee10df/Card Well Connected d28df6.yaml new file mode 100644 index 000000000..d3667455f --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue d46fae/Custom_Model_Bag Rogue ee10df/Card Well Connected d28df6.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 274208 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: d28df6 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Well Connected +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.5688629 + posY: 1.34777308 + posZ: 76.36074 + rotX: 0.02081184 + rotY: 269.988525 + rotZ: 0.01676581 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue d46fae/Custom_Model_Bag Rogue ee10df/Card You handle this one! bf8f60.yaml b/unpacked/Custom_Model_Bag Rogue d46fae/Custom_Model_Bag Rogue ee10df/Card You handle this one! bf8f60.yaml new file mode 100644 index 000000000..4dcff4395 --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue d46fae/Custom_Model_Bag Rogue ee10df/Card You handle this one! bf8f60.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 261605 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: bf8f60 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '"You handle this one!"' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.2841072 + posY: 1.35429835 + posZ: 87.84124 + rotX: 0.0208167918 + rotY: 269.979462 + rotZ: 0.016766699 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue d46fae/Custom_Model_Bag Rogue ee10df/Card You owe me one! 43dfcf.yaml b/unpacked/Custom_Model_Bag Rogue d46fae/Custom_Model_Bag Rogue ee10df/Card You owe me one! 43dfcf.yaml new file mode 100644 index 000000000..535f4e790 --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue d46fae/Custom_Model_Bag Rogue ee10df/Card You owe me one! 43dfcf.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 43dfcf +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '"You owe me one!"' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.28412 + posY: 1.3536253 + posZ: 85.5412445 + rotX: 0.0208145883 + rotY: 269.97937 + rotZ: 0.0167623889 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue deaa6d.ttslua b/unpacked/Custom_Model_Bag Rogue deaa6d.ttslua new file mode 100644 index 000000000..857093fb8 --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue deaa6d.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,0,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 + 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=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,0,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,0,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,0,0}, height=350, width=750, + 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}, rotation={0,0,0}, height=350, width=800, + font_size=250, color={0,0,0}, font_color={1,1,1} + }) +-- self.createButton({ +-- label="Setup", click_function="buttonClick_setup", function_owner=self, +-- position={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.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 \ No newline at end of file diff --git a/unpacked/Custom_Model_Bag Rogue deaa6d.yaml b/unpacked/Custom_Model_Bag Rogue deaa6d.yaml new file mode 100644 index 000000000..b73815780 --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue deaa6d.yaml @@ -0,0 +1,105 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +ContainedObjects: +- !include 'Custom_Model_Bag Rogue deaa6d/Card Momentum (1) d753d7.yaml' +- !include 'Custom_Model_Bag Rogue deaa6d/Card Three Aces (1) 30062e.yaml' +- !include 'Custom_Model_Bag Rogue deaa6d/Card Daredevil (2) b3cad4.yaml' +- !include 'Custom_Model_Bag Rogue deaa6d/Card Opportunist (2) 63f145.yaml' +- !include 'Custom_Model_Bag Rogue deaa6d/Card All In (5) 7d3a27.yaml' +- !include 'Custom_Model_Bag Rogue deaa6d/Card Easy Mark (1) cdbb37.yaml' +- !include 'Custom_Model_Bag Rogue deaa6d/Card Pay Day (1) eaa415.yaml' +- !include 'Custom_Model_Bag Rogue deaa6d/Card Think on Your Feet (2) 3e0653.yaml' +- !include 'Custom_Model_Bag Rogue deaa6d/Card Sneak Attack (2) 5f19e0.yaml' +- !include 'Custom_Model_Bag Rogue deaa6d/Card Contraband (2) 620b6e.yaml' +- !include 'Custom_Model_Bag Rogue deaa6d/Card Swift Reload (2) 2cfa4f.yaml' +- !include 'Custom_Model_Bag Rogue deaa6d/Card Hot Streak (2) f2508d.yaml' +- !include 'Custom_Model_Bag Rogue deaa6d/Card Ace in the Hole (3) 074858.yaml' +- !include 'Custom_Model_Bag Rogue deaa6d/Card Sure Gamble (3) 308be1.yaml' +- !include 'Custom_Model_Bag Rogue deaa6d/Card Hot Streak (4) 4eb231.yaml' +- !include 'Custom_Model_Bag Rogue deaa6d/Card Cheat Death (5) 3add54.yaml' +- !include 'Custom_Model_Bag Rogue deaa6d/Card Adaptable (1) 731d2a.yaml' +- !include 'Custom_Model_Bag Rogue deaa6d/Card The Skeleton Key (2) f8dc01.yaml' +- !include 'Custom_Model_Bag Rogue deaa6d/Card Another Day, Another Dollar (3) 006d44.yaml' +- !include 'Custom_Model_Bag Rogue deaa6d/Card Charon''s Obol (1) 1dbc95.yaml' +- !include 'Custom_Model_Bag Rogue deaa6d/Card Hired Muscle (1) cdd6aa.yaml' +- !include 'Custom_Model_Bag Rogue deaa6d/Card Streetwise (3) d7dbac.yaml' +- !include 'Custom_Model_Bag Rogue deaa6d/Card Borrowed Time (3) 0db666.yaml' +- !include 'Custom_Model_Bag Rogue deaa6d/Card Moxie (1) 5fe780.yaml' +- !include 'Custom_Model_Bag Rogue deaa6d/Card Treasure Hunter (1) 18927e.yaml' +- !include 'Custom_Model_Bag Rogue deaa6d/Card Joey The Rat Vigil (3) 7b918b.yaml' +- !include 'Custom_Model_Bag Rogue deaa6d/Card Stealth (3) 26a3bf.yaml' +- !include 'Custom_Model_Bag Rogue deaa6d/Card Fence (1) 2423e7.yaml' +- !include 'Custom_Model_Bag Rogue deaa6d/Card Lockpicks (1) edd6c4.yaml' +- !include 'Custom_Model_Bag Rogue deaa6d/Card Delilah O''Rourke (3) b81c84.yaml' +- !include 'Custom_Model_Bag Rogue deaa6d/Card Lola Santiago (3) 8bec05.yaml' +- !include 'Custom_Model_Bag Rogue deaa6d/Card Suggestion (1) 0ec9bf.yaml' +- !include "Custom_Model_Bag Rogue deaa6d/Card The Moon \u2022 XVIII (1) e80bd8.yaml" +- !include 'Custom_Model_Bag Rogue deaa6d/Card Lupara (3) a6af13.yaml' +- !include 'Custom_Model_Bag Rogue deaa6d/Card Tennessee Sour Mash (3) b5e5f1.yaml' +- !include 'Custom_Model_Bag Rogue deaa6d/Card Cat Burglar (1) 2fe723.yaml' +- !include 'Custom_Model_Bag Rogue deaa6d/Card Leo de Luca (1) 27446e.yaml' +- !include 'Custom_Model_Bag Rogue deaa6d/Card .45 Thompson (3) d4dbc7.yaml' +- !include 'Custom_Model_Bag Rogue deaa6d/Card The Gold Pocket Watch (4) 62d930.yaml' +- !include 'Custom_Model_Bag Rogue deaa6d/Card Hard Knocks (2) 15643b.yaml' +- !include 'Custom_Model_Bag Rogue deaa6d/Card Burglary (2) 2aeb8a.yaml' +- !include 'Custom_Model_Bag Rogue deaa6d/Card Suggestion (4) e7f37b.yaml' +- !include 'Custom_Model_Bag Rogue deaa6d/Card Double, Double (4) 0e0530.yaml' +- !include 'Custom_Model_Bag Rogue deaa6d/Card Switchblade (2) 2fba3b.yaml' +- !include 'Custom_Model_Bag Rogue deaa6d/Card Garrote Wire (2) 117b7c.yaml' +- !include 'Custom_Model_Bag Rogue deaa6d/Card Chicago Typewriter (4) ecfa42.yaml' +- !include 'Custom_Model_Bag Rogue deaa6d/Card Sawed-Off Shotgun (5) e1c0f8.yaml' +- !include 'Custom_Model_Bag Rogue deaa6d/Card High Roller (2) ce1b89.yaml' +- !include 'Custom_Model_Bag Rogue deaa6d/Card Lucky Dice (2) 9dd911.yaml' +- !include 'Custom_Model_Bag Rogue deaa6d/Card Pickpocketing (2) 2f4db2.yaml' +- !include 'Custom_Model_Bag Rogue deaa6d/Card .41 Derringer (2) f57af7.yaml' +- !include 'Custom_Model_Bag Rogue deaa6d/Card Haste (2) 1bd139.yaml' +- !include 'Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue a4e1eb.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/952965722515898740/E92441671B056D4CDF99DF9E6C88BE6598AAB50F/ + MaterialIndex: 3 + MeshURL: https://pastebin.com/raw/ALrYhQGb + NormalURL: '' + TypeIndex: 6 +Description: '' +GMNotes: '' +GUID: deaa6d +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: true +LuaScript: !include 'Custom_Model_Bag Rogue deaa6d.ttslua' +LuaScriptState: '{"ml":{"006d44":{"lock":false,"pos":{"x":40.6759,"y":1.3624,"z":-49.7128},"rot":{"x":0.0208,"y":269.9995,"z":0.0168}},"074858":{"lock":false,"pos":{"x":52.9442,"y":1.3628,"z":-63.5203},"rot":{"x":0.0208,"y":269.9995,"z":0.0168}},"0db666":{"lock":false,"pos":{"x":40.6759,"y":1.361,"z":-54.3129},"rot":{"x":0.0208,"y":269.9995,"z":0.0168}},"0e0530":{"lock":false,"pos":{"x":40.6758,"y":1.3543,"z":-77.3127},"rot":{"x":0.0208,"y":269.9995,"z":0.0168}},"0ec9bf":{"lock":false,"pos":{"x":44.229,"y":1.3596,"z":-63.5008},"rot":{"x":0.0208,"y":269.9995,"z":0.0168}},"117b7c":{"lock":false,"pos":{"x":44.229,"y":1.3549,"z":-79.6006},"rot":{"x":0.0208,"y":270.0003,"z":0.0168}},"15643b":{"lock":false,"pos":{"x":44.229,"y":1.3569,"z":-72.7007},"rot":{"x":0.0208,"y":269.9995,"z":0.0168}},"18927e":{"lock":false,"pos":{"x":44.229,"y":1.3617,"z":-56.6008},"rot":{"x":0.0208,"y":269.9995,"z":0.0168}},"1bd139":{"lock":false,"pos":{"x":44.213,"y":1.3516,"z":-91.0974},"rot":{"x":0.0208,"y":270.0233,"z":0.0168}},"1dbc95":{"lock":false,"pos":{"x":44.3085,"y":1.3637,"z":-49.6927},"rot":{"x":0.0208,"y":269.9995,"z":0.0168}},"2423e7":{"lock":false,"pos":{"x":44.229,"y":1.361,"z":-58.9008},"rot":{"x":0.0208,"y":269.9995,"z":0.0168}},"26a3bf":{"lock":false,"pos":{"x":40.6759,"y":1.3597,"z":-58.9129},"rot":{"x":0.0208,"y":269.9994,"z":0.0168}},"27446e":{"lock":false,"pos":{"x":44.229,"y":1.3576,"z":-70.4007},"rot":{"x":0.0208,"y":269.9995,"z":0.0168}},"2aeb8a":{"lock":false,"pos":{"x":44.229,"y":1.3563,"z":-75.0007},"rot":{"x":0.0208,"y":270.0226,"z":0.0168}},"2cfa4f":{"lock":false,"pos":{"x":52.9442,"y":1.3641,"z":-58.9204},"rot":{"x":0.0208,"y":270.0009,"z":0.0168}},"2f4db2":{"lock":false,"pos":{"x":44.229,"y":1.3529,"z":-86.5006},"rot":{"x":0.0208,"y":269.9996,"z":0.0168}},"2fba3b":{"lock":false,"pos":{"x":44.229,"y":1.3556,"z":-77.3006},"rot":{"x":0.0208,"y":269.9995,"z":0.0168}},"2fe723":{"lock":false,"pos":{"x":44.229,"y":1.3583,"z":-68.1007},"rot":{"x":0.0208,"y":269.9995,"z":0.0168}},"30062e":{"lock":false,"pos":{"x":58.0997,"y":1.3687,"z":-49.771},"rot":{"x":0.0208,"y":270.0227,"z":0.0168}},"308be1":{"lock":false,"pos":{"x":52.9442,"y":1.3621,"z":-65.8202},"rot":{"x":0.0208,"y":269.9995,"z":0.0168}},"3add54":{"lock":false,"pos":{"x":52.9442,"y":1.3608,"z":-70.4202},"rot":{"x":0.0208,"y":269.9996,"z":0.0168}},"3e0653":{"lock":false,"pos":{"x":52.9442,"y":1.3662,"z":-52.0203},"rot":{"x":0.0208,"y":269.9995,"z":0.0168}},"4eb231":{"lock":false,"pos":{"x":52.9442,"y":1.3614,"z":-68.1202},"rot":{"x":0.0208,"y":269.9996,"z":0.0168}},"5f19e0":{"lock":false,"pos":{"x":52.9442,"y":1.3655,"z":-54.3203},"rot":{"x":0.0208,"y":269.9995,"z":0.0168}},"5fe780":{"lock":false,"pos":{"x":44.229,"y":1.3623,"z":-54.3008},"rot":{"x":0.0208,"y":269.9995,"z":0.0168}},"620b6e":{"lock":false,"pos":{"x":52.9442,"y":1.3648,"z":-56.6203},"rot":{"x":0.0208,"y":269.9995,"z":0.0168}},"62d930":{"lock":false,"pos":{"x":40.6759,"y":1.3556,"z":-72.7127},"rot":{"x":0.0208,"y":269.9995,"z":0.0168}},"63f145":{"lock":false,"pos":{"x":58.0997,"y":1.3673,"z":-54.371},"rot":{"x":0.0208,"y":269.9934,"z":0.0168}},"731d2a":{"lock":false,"pos":{"x":44.229,"y":1.3643,"z":-47.4008},"rot":{"x":0.0208,"y":269.9995,"z":0.0168}},"7b918b":{"lock":false,"pos":{"x":40.6483,"y":1.3604,"z":-56.6129},"rot":{"x":0.0208,"y":270.0103,"z":0.0168}},"7d3a27":{"lock":false,"pos":{"x":58.0997,"y":1.3667,"z":-56.671},"rot":{"x":0.0208,"y":269.9994,"z":0.0168}},"8bec05":{"lock":false,"pos":{"x":40.6759,"y":1.3583,"z":-63.5129},"rot":{"x":0.0208,"y":269.9994,"z":0.0168}},"9dd911":{"lock":false,"pos":{"x":44.2289,"y":1.3536,"z":-84.2006},"rot":{"x":0.0208,"y":269.9996,"z":0.0168}},"a6af13":{"lock":false,"pos":{"x":40.6759,"y":1.3577,"z":-65.8127},"rot":{"x":0.0208,"y":269.9995,"z":0.0168}},"b3cad4":{"lock":false,"pos":{"x":58.0997,"y":1.368,"z":-52.071},"rot":{"x":0.0208,"y":270.0227,"z":0.0168}},"b5e5f1":{"lock":false,"pos":{"x":40.6759,"y":1.357,"z":-68.1127},"rot":{"x":0.0208,"y":269.9995,"z":0.0168}},"b81c84":{"lock":false,"pos":{"x":40.6759,"y":1.359,"z":-61.2129},"rot":{"x":0.0208,"y":270.027,"z":0.0168}},"cdbb37":{"lock":false,"pos":{"x":52.9442,"y":1.3675,"z":-47.4203},"rot":{"x":0.0208,"y":269.9995,"z":0.0168}},"cdd6aa":{"lock":false,"pos":{"x":44.229,"y":1.363,"z":-52.0008},"rot":{"x":0.0208,"y":269.9995,"z":0.0168}},"ce1b89":{"lock":false,"pos":{"x":44.231,"y":1.3542,"z":-81.9009},"rot":{"x":0.0208,"y":270.0045,"z":0.0168}},"d4dbc7":{"lock":false,"pos":{"x":40.6759,"y":1.3563,"z":-70.4127},"rot":{"x":0.0208,"y":269.9995,"z":0.0168}},"d753d7":{"lock":false,"pos":{"x":58.0988,"y":1.3694,"z":-47.4598},"rot":{"x":0.0208,"y":269.9947,"z":0.0168}},"d7dbac":{"lock":false,"pos":{"x":40.6759,"y":1.3617,"z":-52.0128},"rot":{"x":0.0208,"y":269.9995,"z":0.0168}},"e1c0f8":{"lock":false,"pos":{"x":40.7066,"y":1.353,"z":-81.9126},"rot":{"x":0.0208,"y":270.0138,"z":0.0168}},"e7f37b":{"lock":false,"pos":{"x":40.6758,"y":1.355,"z":-75.0128},"rot":{"x":0.0208,"y":269.9994,"z":0.0168}},"e80bd8":{"lock":false,"pos":{"x":44.229,"y":1.359,"z":-65.8007},"rot":{"x":0.0208,"y":269.9996,"z":0.0168}},"eaa415":{"lock":false,"pos":{"x":52.9442,"y":1.3668,"z":-49.7203},"rot":{"x":0.0208,"y":269.9995,"z":0.0168}},"ecfa42":{"lock":false,"pos":{"x":40.676,"y":1.3536,"z":-79.6126},"rot":{"x":0.0208,"y":269.9993,"z":0.0168}},"edd6c4":{"lock":false,"pos":{"x":44.229,"y":1.3603,"z":-61.2008},"rot":{"x":0.0208,"y":269.9995,"z":0.0168}},"f2508d":{"lock":false,"pos":{"x":52.9442,"y":1.3635,"z":-61.2203},"rot":{"x":0.0208,"y":269.9996,"z":0.0168}},"f57af7":{"lock":false,"pos":{"x":44.2132,"y":1.3522,"z":-88.7901},"rot":{"x":0.0208,"y":269.9995,"z":0.0168}},"f8dc01":{"lock":false,"pos":{"x":40.6759,"y":1.3631,"z":-47.4129},"rot":{"x":0.0208,"y":269.9998,"z":0.0168}}}}' +MaterialIndex: -1 +MeshIndex: -1 +Name: Custom_Model_Bag +Nickname: Rogue +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 66.3257446 + posY: 1.41264033 + posZ: -74.79405 + rotX: 0.0208053458 + rotY: 270.017975 + rotZ: 0.0167766381 + scaleX: 1.2 + scaleY: 1.2 + scaleZ: 1.2 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue deaa6d/Card .41 Derringer (2) f57af7.yaml b/unpacked/Custom_Model_Bag Rogue deaa6d/Card .41 Derringer (2) f57af7.yaml new file mode 100644 index 000000000..d02a8f131 --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue deaa6d/Card .41 Derringer (2) f57af7.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 443748 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '4437': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: f57af7 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: .41 Derringer (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.2131958 + posY: 1.35222638 + posZ: -88.79009 + rotX: 0.0208093766 + rotY: 269.999481 + rotZ: 0.0167704578 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue deaa6d/Card .45 Thompson (3) d4dbc7.yaml b/unpacked/Custom_Model_Bag Rogue deaa6d/Card .45 Thompson (3) d4dbc7.yaml new file mode 100644 index 000000000..394164ea3 --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue deaa6d/Card .45 Thompson (3) d4dbc7.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Rogue +GMNotes: '' +GUID: d4dbc7 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: .45 Thompson (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 40.67587 + posY: 1.356321 + posZ: -70.41273 + rotX: 0.0208092052 + rotY: 269.999542 + rotZ: 0.016770564 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue deaa6d/Card Ace in the Hole (3) 074858.yaml b/unpacked/Custom_Model_Bag Rogue deaa6d/Card Ace in the Hole (3) 074858.yaml new file mode 100644 index 000000000..092131574 --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue deaa6d/Card Ace in the Hole (3) 074858.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 443752 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '4437': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 074858 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Ace in the Hole (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 52.9442 + posY: 1.362794 + posZ: -63.5203 + rotX: 0.0208093226 + rotY: 269.9995 + rotZ: 0.0167701151 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue deaa6d/Card Adaptable (1) 731d2a.yaml b/unpacked/Custom_Model_Bag Rogue deaa6d/Card Adaptable (1) 731d2a.yaml new file mode 100644 index 000000000..a2c369745 --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue deaa6d/Card Adaptable (1) 731d2a.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 443732 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '4437': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 731d2a +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Adaptable (1) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.229 + posY: 1.36434734 + posZ: -47.4008 + rotX: 0.0208093487 + rotY: 269.999481 + rotZ: 0.0167701952 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue deaa6d/Card All In (5) 7d3a27.yaml b/unpacked/Custom_Model_Bag Rogue deaa6d/Card All In (5) 7d3a27.yaml new file mode 100644 index 000000000..c688b63a4 --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue deaa6d/Card All In (5) 7d3a27.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 7d3a27 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: All In (5) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 58.0997 + posY: 1.36667132 + posZ: -56.671 + rotX: 0.0208094958 + rotY: 269.99942 + rotZ: 0.0167705938 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue deaa6d/Card Another Day, Another Dollar (3) 006d44.yaml b/unpacked/Custom_Model_Bag Rogue deaa6d/Card Another Day, Another Dollar (3) 006d44.yaml new file mode 100644 index 000000000..8364282d7 --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue deaa6d/Card Another Day, Another Dollar (3) 006d44.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 006d44 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Another Day, Another Dollar (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 40.67588 + posY: 1.36238015 + posZ: -49.71284 + rotX: 0.020809371 + rotY: 269.999451 + rotZ: 0.0167705957 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue deaa6d/Card Borrowed Time (3) 0db666.yaml b/unpacked/Custom_Model_Bag Rogue deaa6d/Card Borrowed Time (3) 0db666.yaml new file mode 100644 index 000000000..5a46ff12c --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue deaa6d/Card Borrowed Time (3) 0db666.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 443753 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '4437': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 0db666 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Borrowed Time (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 40.6758842 + posY: 1.36103356 + posZ: -54.3128548 + rotX: 0.020809304 + rotY: 269.999542 + rotZ: 0.0167703684 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue deaa6d/Card Burglary (2) 2aeb8a.yaml b/unpacked/Custom_Model_Bag Rogue deaa6d/Card Burglary (2) 2aeb8a.yaml new file mode 100644 index 000000000..1b2d4b134 --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue deaa6d/Card Burglary (2) 2aeb8a.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Talent. Illicit. +GMNotes: '' +GUID: 2aeb8a +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Burglary (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.229 + posY: 1.35626841 + posZ: -75.0007 + rotX: 0.020802537 + rotY: 270.022644 + rotZ: 0.016778959 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue deaa6d/Card Cat Burglar (1) 2fe723.yaml b/unpacked/Custom_Model_Bag Rogue deaa6d/Card Cat Burglar (1) 2fe723.yaml new file mode 100644 index 000000000..72ab4b69b --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue deaa6d/Card Cat Burglar (1) 2fe723.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 443739 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '4437': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 2fe723 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Cat Burglar (1) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.229 + posY: 1.35828817 + posZ: -68.1007 + rotX: 0.0208094288 + rotY: 269.999481 + rotZ: 0.0167703833 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue deaa6d/Card Charon's Obol (1) 1dbc95.yaml b/unpacked/Custom_Model_Bag Rogue deaa6d/Card Charon's Obol (1) 1dbc95.yaml new file mode 100644 index 000000000..12cb8631d --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue deaa6d/Card Charon's Obol (1) 1dbc95.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 443733 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '4437': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: The Ferryman's Pay +GMNotes: '' +GUID: 1dbc95 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Charon's Obol (1) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.3084755 + posY: 1.3637054 + posZ: -49.6926537 + rotX: 0.0208086856 + rotY: 269.999451 + rotZ: 0.0167698767 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue deaa6d/Card Cheat Death (5) 3add54.yaml b/unpacked/Custom_Model_Bag Rogue deaa6d/Card Cheat Death (5) 3add54.yaml new file mode 100644 index 000000000..111b4405d --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue deaa6d/Card Cheat Death (5) 3add54.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 443761 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '4437': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 3add54 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Cheat Death (5) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 52.9442 + posY: 1.36077428 + posZ: -70.4202 + rotX: 0.0208090823 + rotY: 269.999573 + rotZ: 0.0167704374 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue deaa6d/Card Chicago Typewriter (4) ecfa42.yaml b/unpacked/Custom_Model_Bag Rogue deaa6d/Card Chicago Typewriter (4) ecfa42.yaml new file mode 100644 index 000000000..aaba487e3 --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue deaa6d/Card Chicago Typewriter (4) ecfa42.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 443760 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '4437': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: ecfa42 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Chicago Typewriter (4) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 40.6759872 + posY: 1.353628 + posZ: -79.6126251 + rotX: 0.0208092388 + rotY: 269.999329 + rotZ: 0.0167703964 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue deaa6d/Card Contraband (2) 620b6e.yaml b/unpacked/Custom_Model_Bag Rogue deaa6d/Card Contraband (2) 620b6e.yaml new file mode 100644 index 000000000..6d4063f06 --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue deaa6d/Card Contraband (2) 620b6e.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 292404 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2924': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025944587/520448D0E9C22F102C7DDF64322EAD6FC221ECC8/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 620b6e +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Contraband (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 52.9442 + posY: 1.36481369 + posZ: -56.6203 + rotX: 0.02080929 + rotY: 269.999542 + rotZ: 0.0167706 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue deaa6d/Card Daredevil (2) b3cad4.yaml b/unpacked/Custom_Model_Bag Rogue deaa6d/Card Daredevil (2) b3cad4.yaml new file mode 100644 index 000000000..d7308e3d5 --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue deaa6d/Card Daredevil (2) b3cad4.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Fortune. Practiced. +GMNotes: '' +GUID: b3cad4 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Daredevil (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 58.0997 + posY: 1.36801767 + posZ: -52.071 + rotX: 0.0208028425 + rotY: 270.0227 + rotZ: 0.01677887 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue deaa6d/Card Delilah O'Rourke (3) b81c84.yaml b/unpacked/Custom_Model_Bag Rogue deaa6d/Card Delilah O'Rourke (3) b81c84.yaml new file mode 100644 index 000000000..77f6f41af --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue deaa6d/Card Delilah O'Rourke (3) b81c84.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Syndicate Assassin +GMNotes: '' +GUID: b81c84 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Delilah O'Rourke (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 40.6758728 + posY: 1.35901392 + posZ: -61.21287 + rotX: 0.0208013747 + rotY: 270.026978 + rotZ: 0.0167803429 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue deaa6d/Card Double, Double (4) 0e0530.yaml b/unpacked/Custom_Model_Bag Rogue deaa6d/Card Double, Double (4) 0e0530.yaml new file mode 100644 index 000000000..5dcc543c9 --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue deaa6d/Card Double, Double (4) 0e0530.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 0e0530 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Double, Double (4) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 40.67585 + posY: 1.35430121 + posZ: -77.31266 + rotX: 0.020809615 + rotY: 269.999542 + rotZ: 0.0167704839 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue deaa6d/Card Easy Mark (1) cdbb37.yaml b/unpacked/Custom_Model_Bag Rogue deaa6d/Card Easy Mark (1) cdbb37.yaml new file mode 100644 index 000000000..906d94eee --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue deaa6d/Card Easy Mark (1) cdbb37.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: cdbb37 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Easy Mark (1) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 52.9442 + posY: 1.36750674 + posZ: -47.4203 + rotX: 0.0208092239 + rotY: 269.999481 + rotZ: 0.0167703945 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue deaa6d/Card Fence (1) 2423e7.yaml b/unpacked/Custom_Model_Bag Rogue deaa6d/Card Fence (1) 2423e7.yaml new file mode 100644 index 000000000..3dd45b34e --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue deaa6d/Card Fence (1) 2423e7.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 443738 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '4437': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 2423e7 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Fence (1) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.229 + posY: 1.36098111 + posZ: -58.9008 + rotX: 0.0208093543 + rotY: 269.9995 + rotZ: 0.0167701319 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue deaa6d/Card Garrote Wire (2) 117b7c.yaml b/unpacked/Custom_Model_Bag Rogue deaa6d/Card Garrote Wire (2) 117b7c.yaml new file mode 100644 index 000000000..5201db706 --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue deaa6d/Card Garrote Wire (2) 117b7c.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Item. Weapon. +GMNotes: '' +GUID: 117b7c +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Garrote Wire (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.22897 + posY: 1.35492194 + posZ: -79.60065 + rotX: 0.02080907 + rotY: 270.0003 + rotZ: 0.0167707987 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue deaa6d/Card Hard Knocks (2) 15643b.yaml b/unpacked/Custom_Model_Bag Rogue deaa6d/Card Hard Knocks (2) 15643b.yaml new file mode 100644 index 000000000..f084b16b5 --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue deaa6d/Card Hard Knocks (2) 15643b.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 443742 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '4437': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 15643b +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Hard Knocks (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.229 + posY: 1.35694158 + posZ: -72.7007 + rotX: 0.0208094 + rotY: 269.9995 + rotZ: 0.0167700965 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue deaa6d/Card Haste (2) 1bd139.yaml b/unpacked/Custom_Model_Bag Rogue deaa6d/Card Haste (2) 1bd139.yaml new file mode 100644 index 000000000..ffece0bda --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue deaa6d/Card Haste (2) 1bd139.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Ritual. +GMNotes: '' +GUID: 1bd139 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Haste (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.2130241 + posY: 1.35155094 + posZ: -91.09742 + rotX: 0.0208025929 + rotY: 270.023315 + rotZ: 0.01677916 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue deaa6d/Card High Roller (2) ce1b89.yaml b/unpacked/Custom_Model_Bag Rogue deaa6d/Card High Roller (2) ce1b89.yaml new file mode 100644 index 000000000..55c7a1b76 --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue deaa6d/Card High Roller (2) ce1b89.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 443747 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '4437': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: ce1b89 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: High Roller (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.23101 + posY: 1.35424936 + posZ: -81.900856 + rotX: 0.0208077 + rotY: 270.004517 + rotZ: 0.0167721733 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue deaa6d/Card Hired Muscle (1) cdd6aa.yaml b/unpacked/Custom_Model_Bag Rogue deaa6d/Card Hired Muscle (1) cdd6aa.yaml new file mode 100644 index 000000000..fcd912fa4 --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue deaa6d/Card Hired Muscle (1) cdd6aa.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 443734 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '4437': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: cdd6aa +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Hired Muscle (1) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.229 + posY: 1.36300075 + posZ: -52.0008 + rotX: 0.02080919 + rotY: 269.9995 + rotZ: 0.0167705249 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue deaa6d/Card Hot Streak (2) f2508d.yaml b/unpacked/Custom_Model_Bag Rogue deaa6d/Card Hot Streak (2) f2508d.yaml new file mode 100644 index 000000000..f3c2ecb54 --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue deaa6d/Card Hot Streak (2) f2508d.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 443750 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '4437': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: f2508d +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Hot Streak (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 52.9442 + posY: 1.36346722 + posZ: -61.2203 + rotX: 0.02080928 + rotY: 269.999573 + rotZ: 0.0167706721 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue deaa6d/Card Hot Streak (4) 4eb231.yaml b/unpacked/Custom_Model_Bag Rogue deaa6d/Card Hot Streak (4) 4eb231.yaml new file mode 100644 index 000000000..a7f2f8183 --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue deaa6d/Card Hot Streak (4) 4eb231.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 443758 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '4437': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 4eb231 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Hot Streak (4) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 52.9442 + posY: 1.36144757 + posZ: -68.1202 + rotX: 0.02080908 + rotY: 269.9996 + rotZ: 0.0167705044 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue deaa6d/Card Joey The Rat Vigil (3) 7b918b.yaml b/unpacked/Custom_Model_Bag Rogue deaa6d/Card Joey The Rat Vigil (3) 7b918b.yaml new file mode 100644 index 000000000..9c5208d73 --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue deaa6d/Card Joey The Rat Vigil (3) 7b918b.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: 'Lookin'' Out For #1' +GMNotes: '' +GUID: 7b918b +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Joey "The Rat" Vigil (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 40.64833 + posY: 1.36035037 + posZ: -56.6129341 + rotX: 0.020806184 + rotY: 270.0103 + rotZ: 0.01677406 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue deaa6d/Card Leo de Luca (1) 27446e.yaml b/unpacked/Custom_Model_Bag Rogue deaa6d/Card Leo de Luca (1) 27446e.yaml new file mode 100644 index 000000000..1f16f4139 --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue deaa6d/Card Leo de Luca (1) 27446e.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 443740 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '4437': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: The Louisiana Lion +GMNotes: '' +GUID: 27446e +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Leo de Luca (1) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.229 + posY: 1.35761487 + posZ: -70.4007 + rotX: 0.0208093561 + rotY: 269.9995 + rotZ: 0.01677009 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue deaa6d/Card Lockpicks (1) edd6c4.yaml b/unpacked/Custom_Model_Bag Rogue deaa6d/Card Lockpicks (1) edd6c4.yaml new file mode 100644 index 000000000..a23ca9b84 --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue deaa6d/Card Lockpicks (1) edd6c4.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 443737 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '4437': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: edd6c4 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Lockpicks (1) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.229 + posY: 1.36030781 + posZ: -61.2008 + rotX: 0.0208093356 + rotY: 269.999481 + rotZ: 0.0167701356 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue deaa6d/Card Lola Santiago (3) 8bec05.yaml b/unpacked/Custom_Model_Bag Rogue deaa6d/Card Lola Santiago (3) 8bec05.yaml new file mode 100644 index 000000000..dee4f7e6f --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue deaa6d/Card Lola Santiago (3) 8bec05.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 443756 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '4437': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: No-Nonsense Archaeologist +GMNotes: '' +GUID: 8bec05 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Lola Santiago (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 40.6758728 + posY: 1.35834074 + posZ: -63.512867 + rotX: 0.0208094642 + rotY: 269.99942 + rotZ: 0.01677051 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue deaa6d/Card Lucky Dice (2) 9dd911.yaml b/unpacked/Custom_Model_Bag Rogue deaa6d/Card Lucky Dice (2) 9dd911.yaml new file mode 100644 index 000000000..0acab469d --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue deaa6d/Card Lucky Dice (2) 9dd911.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 443744 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '4437': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '... Or Are They?' +GMNotes: '' +GUID: 9dd911 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Lucky Dice (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.2288857 + posY: 1.35357547 + posZ: -84.20063 + rotX: 0.0208093636 + rotY: 269.999573 + rotZ: 0.0167701449 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue deaa6d/Card Lupara (3) a6af13.yaml b/unpacked/Custom_Model_Bag Rogue deaa6d/Card Lupara (3) a6af13.yaml new file mode 100644 index 000000000..20ade20d0 --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue deaa6d/Card Lupara (3) a6af13.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 443755 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '4437': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: a6af13 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Lupara (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 40.6758728 + posY: 1.35766745 + posZ: -65.81272 + rotX: 0.0208095983 + rotY: 269.999451 + rotZ: 0.0167703964 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue deaa6d/Card Momentum (1) d753d7.yaml b/unpacked/Custom_Model_Bag Rogue deaa6d/Card Momentum (1) d753d7.yaml new file mode 100644 index 000000000..c975c5431 --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue deaa6d/Card Momentum (1) d753d7.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: d753d7 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Momentum (1) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 58.0988 + posY: 1.36936724 + posZ: -47.4598 + rotX: 0.02081071 + rotY: 269.9947 + rotZ: 0.01676841 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue deaa6d/Card Moxie (1) 5fe780.yaml b/unpacked/Custom_Model_Bag Rogue deaa6d/Card Moxie (1) 5fe780.yaml new file mode 100644 index 000000000..497221d5e --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue deaa6d/Card Moxie (1) 5fe780.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 443735 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '4437': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 5fe780 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Moxie (1) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.229 + posY: 1.36232758 + posZ: -54.3008 + rotX: 0.0208092928 + rotY: 269.9995 + rotZ: 0.0167706273 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue deaa6d/Card Opportunist (2) 63f145.yaml b/unpacked/Custom_Model_Bag Rogue deaa6d/Card Opportunist (2) 63f145.yaml new file mode 100644 index 000000000..a689423cf --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue deaa6d/Card Opportunist (2) 63f145.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 443741 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '4437': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 63f145 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Opportunist (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 58.0997 + posY: 1.3673445 + posZ: -54.371 + rotX: 0.0208112337 + rotY: 269.9934 + rotZ: 0.0167684015 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue deaa6d/Card Pay Day (1) eaa415.yaml b/unpacked/Custom_Model_Bag Rogue deaa6d/Card Pay Day (1) eaa415.yaml new file mode 100644 index 000000000..9b4872861 --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue deaa6d/Card Pay Day (1) eaa415.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 443762 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '4437': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: eaa415 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Pay Day (1) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 52.9442 + posY: 1.36683345 + posZ: -49.7203 + rotX: 0.0208091419 + rotY: 269.9995 + rotZ: 0.01677034 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue deaa6d/Card Pickpocketing (2) 2f4db2.yaml b/unpacked/Custom_Model_Bag Rogue deaa6d/Card Pickpocketing (2) 2f4db2.yaml new file mode 100644 index 000000000..35e1755c4 --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue deaa6d/Card Pickpocketing (2) 2f4db2.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 443746 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '4437': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 2f4db2 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Pickpocketing (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.2290154 + posY: 1.35290217 + posZ: -86.50065 + rotX: 0.0208092649 + rotY: 269.999573 + rotZ: 0.0167705677 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue deaa6d/Card Sawed-Off Shotgun (5) e1c0f8.yaml b/unpacked/Custom_Model_Bag Rogue deaa6d/Card Sawed-Off Shotgun (5) e1c0f8.yaml new file mode 100644 index 000000000..9617de2f1 --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue deaa6d/Card Sawed-Off Shotgun (5) e1c0f8.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Item. Weapon. Firearm. Illicit. +GMNotes: '' +GUID: e1c0f8 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Sawed-Off Shotgun (5) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 40.70655 + posY: 1.352966 + posZ: -81.91261 + rotX: 0.02080536 + rotY: 270.013824 + rotZ: 0.0167756211 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue deaa6d/Card Sneak Attack (2) 5f19e0.yaml b/unpacked/Custom_Model_Bag Rogue deaa6d/Card Sneak Attack (2) 5f19e0.yaml new file mode 100644 index 000000000..b2bb45cb0 --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue deaa6d/Card Sneak Attack (2) 5f19e0.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 443745 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '4437': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 5f19e0 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Sneak Attack (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 52.9442 + posY: 1.365487 + posZ: -54.3203 + rotX: 0.0208093263 + rotY: 269.9995 + rotZ: 0.0167700965 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue deaa6d/Card Stealth (3) 26a3bf.yaml b/unpacked/Custom_Model_Bag Rogue deaa6d/Card Stealth (3) 26a3bf.yaml new file mode 100644 index 000000000..f7b765ca3 --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue deaa6d/Card Stealth (3) 26a3bf.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 26a3bf +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Stealth (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 40.6758728 + posY: 1.35968721 + posZ: -58.9128647 + rotX: 0.0208097361 + rotY: 269.99942 + rotZ: 0.01676953 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue deaa6d/Card Streetwise (3) d7dbac.yaml b/unpacked/Custom_Model_Bag Rogue deaa6d/Card Streetwise (3) d7dbac.yaml new file mode 100644 index 000000000..9d2e17f26 --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue deaa6d/Card Streetwise (3) d7dbac.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 443751 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '4437': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: d7dbac +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Streetwise (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 40.67588 + posY: 1.36170685 + posZ: -52.0128441 + rotX: 0.0208092947 + rotY: 269.999542 + rotZ: 0.0167701282 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue deaa6d/Card Suggestion (1) 0ec9bf.yaml b/unpacked/Custom_Model_Bag Rogue deaa6d/Card Suggestion (1) 0ec9bf.yaml new file mode 100644 index 000000000..f59c38dfe --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue deaa6d/Card Suggestion (1) 0ec9bf.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 440721 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 0ec9bf +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Suggestion (1) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.229 + posY: 1.35963452 + posZ: -63.5008 + rotX: 0.0208093543 + rotY: 269.999542 + rotZ: 0.016770605 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue deaa6d/Card Suggestion (4) e7f37b.yaml b/unpacked/Custom_Model_Bag Rogue deaa6d/Card Suggestion (4) e7f37b.yaml new file mode 100644 index 000000000..26be9a7da --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue deaa6d/Card Suggestion (4) e7f37b.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 443759 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '4437': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: e7f37b +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Suggestion (4) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 40.6758461 + posY: 1.35497451 + posZ: -75.01276 + rotX: 0.02080943 + rotY: 269.99942 + rotZ: 0.0167702958 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue deaa6d/Card Sure Gamble (3) 308be1.yaml b/unpacked/Custom_Model_Bag Rogue deaa6d/Card Sure Gamble (3) 308be1.yaml new file mode 100644 index 000000000..83639fb65 --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue deaa6d/Card Sure Gamble (3) 308be1.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 443754 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '4437': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 308be1 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Sure Gamble (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 52.9442 + posY: 1.36212075 + posZ: -65.8202 + rotX: 0.02080961 + rotY: 269.9995 + rotZ: 0.0167704355 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue deaa6d/Card Swift Reload (2) 2cfa4f.yaml b/unpacked/Custom_Model_Bag Rogue deaa6d/Card Swift Reload (2) 2cfa4f.yaml new file mode 100644 index 000000000..9f942832f --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue deaa6d/Card Swift Reload (2) 2cfa4f.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 2cfa4f +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Swift Reload (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 52.9442 + posY: 1.36414051 + posZ: -58.9204 + rotX: 0.0208091661 + rotY: 270.000916 + rotZ: 0.0167708453 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue deaa6d/Card Switchblade (2) 2fba3b.yaml b/unpacked/Custom_Model_Bag Rogue deaa6d/Card Switchblade (2) 2fba3b.yaml new file mode 100644 index 000000000..cd6377d78 --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue deaa6d/Card Switchblade (2) 2fba3b.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 443743 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '4437': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 2fba3b +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Switchblade (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.229 + posY: 1.35559511 + posZ: -77.3006 + rotX: 0.0208090767 + rotY: 269.9995 + rotZ: 0.0167704243 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue deaa6d/Card Tennessee Sour Mash (3) b5e5f1.yaml b/unpacked/Custom_Model_Bag Rogue deaa6d/Card Tennessee Sour Mash (3) b5e5f1.yaml new file mode 100644 index 000000000..595d01287 --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue deaa6d/Card Tennessee Sour Mash (3) b5e5f1.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Rogue +GMNotes: '' +GUID: b5e5f1 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Tennessee Sour Mash (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 40.6758766 + posY: 1.35699427 + posZ: -68.1127243 + rotX: 0.0208091568 + rotY: 269.999481 + rotZ: 0.0167703256 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue deaa6d/Card The Gold Pocket Watch (4) 62d930.yaml b/unpacked/Custom_Model_Bag Rogue deaa6d/Card The Gold Pocket Watch (4) 62d930.yaml new file mode 100644 index 000000000..3d939df09 --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue deaa6d/Card The Gold Pocket Watch (4) 62d930.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 443757 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '4437': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: Stealing Time +GMNotes: '' +GUID: 62d930 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: The Gold Pocket Watch (4) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 40.67587 + posY: 1.35564768 + posZ: -72.71273 + rotX: 0.0208090916 + rotY: 269.9995 + rotZ: 0.01677058 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue deaa6d/Card The Moon • XVIII (1) e80bd8.yaml b/unpacked/Custom_Model_Bag Rogue deaa6d/Card The Moon • XVIII (1) e80bd8.yaml new file mode 100644 index 000000000..c352c2664 --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue deaa6d/Card The Moon • XVIII (1) e80bd8.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 274205 +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 + UniqueBack: false +Description: Message from Your Inner Self +GMNotes: '' +GUID: e80bd8 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: "The Moon \u2022 XVIII (1)" +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.229 + posY: 1.35896134 + posZ: -65.8007 + rotX: 0.020809276 + rotY: 269.999573 + rotZ: 0.0167701282 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue deaa6d/Card The Skeleton Key (2) f8dc01.yaml b/unpacked/Custom_Model_Bag Rogue deaa6d/Card The Skeleton Key (2) f8dc01.yaml new file mode 100644 index 000000000..f76a9f2fc --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue deaa6d/Card The Skeleton Key (2) f8dc01.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 443749 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '4437': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: f8dc01 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: The Skeleton Key (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 40.67588 + posY: 1.36305344 + posZ: -47.4128571 + rotX: 0.020809222 + rotY: 269.999756 + rotZ: 0.01677018 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue deaa6d/Card Think on Your Feet (2) 3e0653.yaml b/unpacked/Custom_Model_Bag Rogue deaa6d/Card Think on Your Feet (2) 3e0653.yaml new file mode 100644 index 000000000..47436576f --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue deaa6d/Card Think on Your Feet (2) 3e0653.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 292403 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2924': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025944587/520448D0E9C22F102C7DDF64322EAD6FC221ECC8/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 3e0653 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Think on Your Feet (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 52.9442 + posY: 1.36616015 + posZ: -52.0203 + rotX: 0.0208093673 + rotY: 269.9995 + rotZ: 0.0167700648 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue deaa6d/Card Three Aces (1) 30062e.yaml b/unpacked/Custom_Model_Bag Rogue deaa6d/Card Three Aces (1) 30062e.yaml new file mode 100644 index 000000000..78ba19d7d --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue deaa6d/Card Three Aces (1) 30062e.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Fortune. Practiced. +GMNotes: '' +GUID: 30062e +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Three Aces (1) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 58.0997 + posY: 1.368691 + posZ: -49.771 + rotX: 0.0208025668 + rotY: 270.0227 + rotZ: 0.0167789962 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue deaa6d/Card Treasure Hunter (1) 18927e.yaml b/unpacked/Custom_Model_Bag Rogue deaa6d/Card Treasure Hunter (1) 18927e.yaml new file mode 100644 index 000000000..60038fd53 --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue deaa6d/Card Treasure Hunter (1) 18927e.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 443736 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '4437': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 18927e +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Treasure Hunter (1) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.229 + posY: 1.36165428 + posZ: -56.6008 + rotX: 0.02080942 + rotY: 269.9995 + rotZ: 0.0167704485 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue a4e1eb.ttslua b/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue a4e1eb.ttslua new file mode 100644 index 000000000..f882a7f09 --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue a4e1eb.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,0,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 + 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=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,0,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,0,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,0,0}, height=350, width=750, + 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}, rotation={0,0,0}, height=350, width=800, + font_size=250, color={0,0,0}, font_color={1,1,1} + }) +-- self.createButton({ +-- label="Setup", click_function="buttonClick_setup", function_owner=self, +-- position={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.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 Rogue deaa6d/Custom_Model_Bag Rogue a4e1eb.yaml b/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue a4e1eb.yaml new file mode 100644 index 000000000..d3e3dc403 --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue a4e1eb.yaml @@ -0,0 +1,104 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +ContainedObjects: +- !include 'Custom_Model_Bag Rogue a4e1eb/Card Momentum (1) d753d7.yaml' +- !include 'Custom_Model_Bag Rogue a4e1eb/Card Three Aces (1) 30062e.yaml' +- !include 'Custom_Model_Bag Rogue a4e1eb/Card Daredevil (2) b3cad4.yaml' +- !include 'Custom_Model_Bag Rogue a4e1eb/Card Opportunist (2) 63f145.yaml' +- !include 'Custom_Model_Bag Rogue a4e1eb/Card All In (5) 7d3a27.yaml' +- !include 'Custom_Model_Bag Rogue a4e1eb/Card Easy Mark (1) cdbb37.yaml' +- !include 'Custom_Model_Bag Rogue a4e1eb/Card Pay Day (1) eaa415.yaml' +- !include 'Custom_Model_Bag Rogue a4e1eb/Card Think on Your Feet (2) 3e0653.yaml' +- !include 'Custom_Model_Bag Rogue a4e1eb/Card Sneak Attack (2) 5f19e0.yaml' +- !include 'Custom_Model_Bag Rogue a4e1eb/Card Contraband (2) 620b6e.yaml' +- !include 'Custom_Model_Bag Rogue a4e1eb/Card Swift Reload (2) 2cfa4f.yaml' +- !include 'Custom_Model_Bag Rogue a4e1eb/Card Hot Streak (2) f2508d.yaml' +- !include 'Custom_Model_Bag Rogue a4e1eb/Card Ace in the Hole (3) 074858.yaml' +- !include 'Custom_Model_Bag Rogue a4e1eb/Card Sure Gamble (3) 308be1.yaml' +- !include 'Custom_Model_Bag Rogue a4e1eb/Card Hot Streak (4) 4eb231.yaml' +- !include 'Custom_Model_Bag Rogue a4e1eb/Card Cheat Death (5) 3add54.yaml' +- !include 'Custom_Model_Bag Rogue a4e1eb/Card Adaptable (1) 731d2a.yaml' +- !include 'Custom_Model_Bag Rogue a4e1eb/Card The Skeleton Key (2) f8dc01.yaml' +- !include 'Custom_Model_Bag Rogue a4e1eb/Card Another Day, Another Dollar (3) 006d44.yaml' +- !include 'Custom_Model_Bag Rogue a4e1eb/Card Charon''s Obol (1) 1dbc95.yaml' +- !include 'Custom_Model_Bag Rogue a4e1eb/Card Hired Muscle (1) cdd6aa.yaml' +- !include 'Custom_Model_Bag Rogue a4e1eb/Card Streetwise (3) d7dbac.yaml' +- !include 'Custom_Model_Bag Rogue a4e1eb/Card Borrowed Time (3) 0db666.yaml' +- !include 'Custom_Model_Bag Rogue a4e1eb/Card Moxie (1) 5fe780.yaml' +- !include 'Custom_Model_Bag Rogue a4e1eb/Card Treasure Hunter (1) 18927e.yaml' +- !include 'Custom_Model_Bag Rogue a4e1eb/Card Joey The Rat Vigil (3) 7b918b.yaml' +- !include 'Custom_Model_Bag Rogue a4e1eb/Card Stealth (3) 26a3bf.yaml' +- !include 'Custom_Model_Bag Rogue a4e1eb/Card Fence (1) 2423e7.yaml' +- !include 'Custom_Model_Bag Rogue a4e1eb/Card Lockpicks (1) edd6c4.yaml' +- !include 'Custom_Model_Bag Rogue a4e1eb/Card Delilah O''Rourke (3) b81c84.yaml' +- !include 'Custom_Model_Bag Rogue a4e1eb/Card Lola Santiago (3) 8bec05.yaml' +- !include 'Custom_Model_Bag Rogue a4e1eb/Card Suggestion (1) 0ec9bf.yaml' +- !include "Custom_Model_Bag Rogue a4e1eb/Card The Moon \u2022 XVIII (1) e80bd8.yaml" +- !include 'Custom_Model_Bag Rogue a4e1eb/Card Lupara (3) a6af13.yaml' +- !include 'Custom_Model_Bag Rogue a4e1eb/Card Tennessee Sour Mash (3) b5e5f1.yaml' +- !include 'Custom_Model_Bag Rogue a4e1eb/Card Cat Burglar (1) 2fe723.yaml' +- !include 'Custom_Model_Bag Rogue a4e1eb/Card Leo de Luca (1) 27446e.yaml' +- !include 'Custom_Model_Bag Rogue a4e1eb/Card .45 Thompson (3) d4dbc7.yaml' +- !include 'Custom_Model_Bag Rogue a4e1eb/Card The Gold Pocket Watch (4) 62d930.yaml' +- !include 'Custom_Model_Bag Rogue a4e1eb/Card Hard Knocks (2) 15643b.yaml' +- !include 'Custom_Model_Bag Rogue a4e1eb/Card Burglary (2) 2aeb8a.yaml' +- !include 'Custom_Model_Bag Rogue a4e1eb/Card Suggestion (4) e7f37b.yaml' +- !include 'Custom_Model_Bag Rogue a4e1eb/Card Double, Double (4) 0e0530.yaml' +- !include 'Custom_Model_Bag Rogue a4e1eb/Card Switchblade (2) 2fba3b.yaml' +- !include 'Custom_Model_Bag Rogue a4e1eb/Card Garrote Wire (2) 117b7c.yaml' +- !include 'Custom_Model_Bag Rogue a4e1eb/Card Chicago Typewriter (4) ecfa42.yaml' +- !include 'Custom_Model_Bag Rogue a4e1eb/Card Sawed-Off Shotgun (5) e1c0f8.yaml' +- !include 'Custom_Model_Bag Rogue a4e1eb/Card High Roller (2) ce1b89.yaml' +- !include 'Custom_Model_Bag Rogue a4e1eb/Card Lucky Dice (2) 9dd911.yaml' +- !include 'Custom_Model_Bag Rogue a4e1eb/Card Pickpocketing (2) 2f4db2.yaml' +- !include 'Custom_Model_Bag Rogue a4e1eb/Card .41 Derringer (2) f57af7.yaml' +- !include 'Custom_Model_Bag Rogue a4e1eb/Card Haste (2) 1bd139.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/952965722515898740/E92441671B056D4CDF99DF9E6C88BE6598AAB50F/ + MaterialIndex: 3 + MeshURL: https://pastebin.com/raw/ALrYhQGb + NormalURL: '' + TypeIndex: 6 +Description: '' +GMNotes: '' +GUID: a4e1eb +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Model_Bag Rogue a4e1eb.ttslua' +LuaScriptState: '{"ml":{"006d44":{"lock":false,"pos":{"x":40.6759,"y":1.3624,"z":-49.7128},"rot":{"x":0.0208,"y":269.9995,"z":0.0168}},"074858":{"lock":false,"pos":{"x":52.9442,"y":1.3628,"z":-63.5203},"rot":{"x":0.0208,"y":269.9995,"z":0.0168}},"0db666":{"lock":false,"pos":{"x":40.6759,"y":1.361,"z":-54.3129},"rot":{"x":0.0208,"y":269.9995,"z":0.0168}},"0e0530":{"lock":false,"pos":{"x":40.6758,"y":1.3543,"z":-77.3127},"rot":{"x":0.0208,"y":269.9995,"z":0.0168}},"0ec9bf":{"lock":false,"pos":{"x":44.229,"y":1.3596,"z":-63.5008},"rot":{"x":0.0208,"y":269.9995,"z":0.0168}},"117b7c":{"lock":false,"pos":{"x":44.229,"y":1.3549,"z":-79.6006},"rot":{"x":0.0208,"y":270.0003,"z":0.0168}},"15643b":{"lock":false,"pos":{"x":44.229,"y":1.3569,"z":-72.7007},"rot":{"x":0.0208,"y":269.9995,"z":0.0168}},"18927e":{"lock":false,"pos":{"x":44.229,"y":1.3617,"z":-56.6008},"rot":{"x":0.0208,"y":269.9995,"z":0.0168}},"1bd139":{"lock":false,"pos":{"x":44.213,"y":1.3516,"z":-91.0974},"rot":{"x":0.0208,"y":270.0233,"z":0.0168}},"1dbc95":{"lock":false,"pos":{"x":44.3085,"y":1.3637,"z":-49.6927},"rot":{"x":0.0208,"y":269.9995,"z":0.0168}},"2423e7":{"lock":false,"pos":{"x":44.229,"y":1.361,"z":-58.9008},"rot":{"x":0.0208,"y":269.9995,"z":0.0168}},"26a3bf":{"lock":false,"pos":{"x":40.6759,"y":1.3597,"z":-58.9129},"rot":{"x":0.0208,"y":269.9994,"z":0.0168}},"27446e":{"lock":false,"pos":{"x":44.229,"y":1.3576,"z":-70.4007},"rot":{"x":0.0208,"y":269.9995,"z":0.0168}},"2aeb8a":{"lock":false,"pos":{"x":44.229,"y":1.3563,"z":-75.0007},"rot":{"x":0.0208,"y":270.0226,"z":0.0168}},"2cfa4f":{"lock":false,"pos":{"x":52.9442,"y":1.3641,"z":-58.9204},"rot":{"x":0.0208,"y":270.0009,"z":0.0168}},"2f4db2":{"lock":false,"pos":{"x":44.229,"y":1.3529,"z":-86.5006},"rot":{"x":0.0208,"y":269.9996,"z":0.0168}},"2fba3b":{"lock":false,"pos":{"x":44.229,"y":1.3556,"z":-77.3006},"rot":{"x":0.0208,"y":269.9995,"z":0.0168}},"2fe723":{"lock":false,"pos":{"x":44.229,"y":1.3583,"z":-68.1007},"rot":{"x":0.0208,"y":269.9995,"z":0.0168}},"30062e":{"lock":false,"pos":{"x":58.0997,"y":1.3687,"z":-49.771},"rot":{"x":0.0208,"y":270.0227,"z":0.0168}},"308be1":{"lock":false,"pos":{"x":52.9442,"y":1.3621,"z":-65.8202},"rot":{"x":0.0208,"y":269.9995,"z":0.0168}},"3add54":{"lock":false,"pos":{"x":52.9442,"y":1.3608,"z":-70.4202},"rot":{"x":0.0208,"y":269.9996,"z":0.0168}},"3e0653":{"lock":false,"pos":{"x":52.9442,"y":1.3662,"z":-52.0203},"rot":{"x":0.0208,"y":269.9995,"z":0.0168}},"4eb231":{"lock":false,"pos":{"x":52.9442,"y":1.3614,"z":-68.1202},"rot":{"x":0.0208,"y":269.9996,"z":0.0168}},"5f19e0":{"lock":false,"pos":{"x":52.9442,"y":1.3655,"z":-54.3203},"rot":{"x":0.0208,"y":269.9995,"z":0.0168}},"5fe780":{"lock":false,"pos":{"x":44.229,"y":1.3623,"z":-54.3008},"rot":{"x":0.0208,"y":269.9995,"z":0.0168}},"620b6e":{"lock":false,"pos":{"x":52.9442,"y":1.3648,"z":-56.6203},"rot":{"x":0.0208,"y":269.9995,"z":0.0168}},"62d930":{"lock":false,"pos":{"x":40.6759,"y":1.3556,"z":-72.7127},"rot":{"x":0.0208,"y":269.9995,"z":0.0168}},"63f145":{"lock":false,"pos":{"x":58.0997,"y":1.3673,"z":-54.371},"rot":{"x":0.0208,"y":269.9934,"z":0.0168}},"731d2a":{"lock":false,"pos":{"x":44.229,"y":1.3643,"z":-47.4008},"rot":{"x":0.0208,"y":269.9995,"z":0.0168}},"7b918b":{"lock":false,"pos":{"x":40.6483,"y":1.3604,"z":-56.6129},"rot":{"x":0.0208,"y":270.0103,"z":0.0168}},"7d3a27":{"lock":false,"pos":{"x":58.0997,"y":1.3667,"z":-56.671},"rot":{"x":0.0208,"y":269.9994,"z":0.0168}},"8bec05":{"lock":false,"pos":{"x":40.6759,"y":1.3583,"z":-63.5129},"rot":{"x":0.0208,"y":269.9994,"z":0.0168}},"9dd911":{"lock":false,"pos":{"x":44.2289,"y":1.3536,"z":-84.2006},"rot":{"x":0.0208,"y":269.9996,"z":0.0168}},"a6af13":{"lock":false,"pos":{"x":40.6759,"y":1.3577,"z":-65.8127},"rot":{"x":0.0208,"y":269.9995,"z":0.0168}},"b3cad4":{"lock":false,"pos":{"x":58.0997,"y":1.368,"z":-52.071},"rot":{"x":0.0208,"y":270.0227,"z":0.0168}},"b5e5f1":{"lock":false,"pos":{"x":40.6759,"y":1.357,"z":-68.1127},"rot":{"x":0.0208,"y":269.9995,"z":0.0168}},"b81c84":{"lock":false,"pos":{"x":40.6759,"y":1.359,"z":-61.2129},"rot":{"x":0.0208,"y":270.027,"z":0.0168}},"cdbb37":{"lock":false,"pos":{"x":52.9442,"y":1.3675,"z":-47.4203},"rot":{"x":0.0208,"y":269.9995,"z":0.0168}},"cdd6aa":{"lock":false,"pos":{"x":44.229,"y":1.363,"z":-52.0008},"rot":{"x":0.0208,"y":269.9995,"z":0.0168}},"ce1b89":{"lock":false,"pos":{"x":44.231,"y":1.3542,"z":-81.9009},"rot":{"x":0.0208,"y":270.0045,"z":0.0168}},"d4dbc7":{"lock":false,"pos":{"x":40.6759,"y":1.3563,"z":-70.4127},"rot":{"x":0.0208,"y":269.9995,"z":0.0168}},"d753d7":{"lock":false,"pos":{"x":58.0988,"y":1.3694,"z":-47.4598},"rot":{"x":0.0208,"y":269.9947,"z":0.0168}},"d7dbac":{"lock":false,"pos":{"x":40.6759,"y":1.3617,"z":-52.0128},"rot":{"x":0.0208,"y":269.9995,"z":0.0168}},"e1c0f8":{"lock":false,"pos":{"x":40.7066,"y":1.353,"z":-81.9126},"rot":{"x":0.0208,"y":270.0138,"z":0.0168}},"e7f37b":{"lock":false,"pos":{"x":40.6758,"y":1.355,"z":-75.0128},"rot":{"x":0.0208,"y":269.9994,"z":0.0168}},"e80bd8":{"lock":false,"pos":{"x":44.229,"y":1.359,"z":-65.8007},"rot":{"x":0.0208,"y":269.9996,"z":0.0168}},"eaa415":{"lock":false,"pos":{"x":52.9442,"y":1.3668,"z":-49.7203},"rot":{"x":0.0208,"y":269.9995,"z":0.0168}},"ecfa42":{"lock":false,"pos":{"x":40.676,"y":1.3536,"z":-79.6126},"rot":{"x":0.0208,"y":269.9993,"z":0.0168}},"edd6c4":{"lock":false,"pos":{"x":44.229,"y":1.3603,"z":-61.2008},"rot":{"x":0.0208,"y":269.9995,"z":0.0168}},"f2508d":{"lock":false,"pos":{"x":52.9442,"y":1.3635,"z":-61.2203},"rot":{"x":0.0208,"y":269.9996,"z":0.0168}},"f57af7":{"lock":false,"pos":{"x":44.2132,"y":1.3522,"z":-88.7901},"rot":{"x":0.0208,"y":269.9995,"z":0.0168}},"f8dc01":{"lock":false,"pos":{"x":40.6759,"y":1.3631,"z":-47.4129},"rot":{"x":0.0208,"y":269.9998,"z":0.0168}}}}' +MaterialIndex: -1 +MeshIndex: -1 +Name: Custom_Model_Bag +Nickname: Rogue +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 66.31434 + posY: 1.669746 + posZ: -74.7896957 + rotX: 0.0141843241 + rotY: 270.018 + rotZ: 0.01434979 + scaleX: 1.2 + scaleY: 1.2 + scaleZ: 1.2 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue a4e1eb/Card .41 Derringer (2) f57af7.yaml b/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue a4e1eb/Card .41 Derringer (2) f57af7.yaml new file mode 100644 index 000000000..d02a8f131 --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue a4e1eb/Card .41 Derringer (2) f57af7.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 443748 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '4437': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: f57af7 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: .41 Derringer (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.2131958 + posY: 1.35222638 + posZ: -88.79009 + rotX: 0.0208093766 + rotY: 269.999481 + rotZ: 0.0167704578 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue a4e1eb/Card .45 Thompson (3) d4dbc7.yaml b/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue a4e1eb/Card .45 Thompson (3) d4dbc7.yaml new file mode 100644 index 000000000..394164ea3 --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue a4e1eb/Card .45 Thompson (3) d4dbc7.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Rogue +GMNotes: '' +GUID: d4dbc7 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: .45 Thompson (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 40.67587 + posY: 1.356321 + posZ: -70.41273 + rotX: 0.0208092052 + rotY: 269.999542 + rotZ: 0.016770564 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue a4e1eb/Card Ace in the Hole (3) 074858.yaml b/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue a4e1eb/Card Ace in the Hole (3) 074858.yaml new file mode 100644 index 000000000..092131574 --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue a4e1eb/Card Ace in the Hole (3) 074858.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 443752 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '4437': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 074858 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Ace in the Hole (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 52.9442 + posY: 1.362794 + posZ: -63.5203 + rotX: 0.0208093226 + rotY: 269.9995 + rotZ: 0.0167701151 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue a4e1eb/Card Adaptable (1) 731d2a.yaml b/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue a4e1eb/Card Adaptable (1) 731d2a.yaml new file mode 100644 index 000000000..a2c369745 --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue a4e1eb/Card Adaptable (1) 731d2a.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 443732 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '4437': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 731d2a +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Adaptable (1) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.229 + posY: 1.36434734 + posZ: -47.4008 + rotX: 0.0208093487 + rotY: 269.999481 + rotZ: 0.0167701952 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue a4e1eb/Card All In (5) 7d3a27.yaml b/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue a4e1eb/Card All In (5) 7d3a27.yaml new file mode 100644 index 000000000..c688b63a4 --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue a4e1eb/Card All In (5) 7d3a27.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 7d3a27 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: All In (5) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 58.0997 + posY: 1.36667132 + posZ: -56.671 + rotX: 0.0208094958 + rotY: 269.99942 + rotZ: 0.0167705938 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue a4e1eb/Card Another Day, Another Dollar (3) 006d44.yaml b/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue a4e1eb/Card Another Day, Another Dollar (3) 006d44.yaml new file mode 100644 index 000000000..8364282d7 --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue a4e1eb/Card Another Day, Another Dollar (3) 006d44.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 006d44 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Another Day, Another Dollar (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 40.67588 + posY: 1.36238015 + posZ: -49.71284 + rotX: 0.020809371 + rotY: 269.999451 + rotZ: 0.0167705957 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue a4e1eb/Card Borrowed Time (3) 0db666.yaml b/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue a4e1eb/Card Borrowed Time (3) 0db666.yaml new file mode 100644 index 000000000..5a46ff12c --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue a4e1eb/Card Borrowed Time (3) 0db666.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 443753 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '4437': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 0db666 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Borrowed Time (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 40.6758842 + posY: 1.36103356 + posZ: -54.3128548 + rotX: 0.020809304 + rotY: 269.999542 + rotZ: 0.0167703684 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue a4e1eb/Card Burglary (2) 2aeb8a.yaml b/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue a4e1eb/Card Burglary (2) 2aeb8a.yaml new file mode 100644 index 000000000..1b2d4b134 --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue a4e1eb/Card Burglary (2) 2aeb8a.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Talent. Illicit. +GMNotes: '' +GUID: 2aeb8a +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Burglary (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.229 + posY: 1.35626841 + posZ: -75.0007 + rotX: 0.020802537 + rotY: 270.022644 + rotZ: 0.016778959 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue a4e1eb/Card Cat Burglar (1) 2fe723.yaml b/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue a4e1eb/Card Cat Burglar (1) 2fe723.yaml new file mode 100644 index 000000000..72ab4b69b --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue a4e1eb/Card Cat Burglar (1) 2fe723.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 443739 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '4437': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 2fe723 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Cat Burglar (1) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.229 + posY: 1.35828817 + posZ: -68.1007 + rotX: 0.0208094288 + rotY: 269.999481 + rotZ: 0.0167703833 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue a4e1eb/Card Charon's Obol (1) 1dbc95.yaml b/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue a4e1eb/Card Charon's Obol (1) 1dbc95.yaml new file mode 100644 index 000000000..12cb8631d --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue a4e1eb/Card Charon's Obol (1) 1dbc95.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 443733 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '4437': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: The Ferryman's Pay +GMNotes: '' +GUID: 1dbc95 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Charon's Obol (1) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.3084755 + posY: 1.3637054 + posZ: -49.6926537 + rotX: 0.0208086856 + rotY: 269.999451 + rotZ: 0.0167698767 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue a4e1eb/Card Cheat Death (5) 3add54.yaml b/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue a4e1eb/Card Cheat Death (5) 3add54.yaml new file mode 100644 index 000000000..111b4405d --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue a4e1eb/Card Cheat Death (5) 3add54.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 443761 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '4437': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 3add54 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Cheat Death (5) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 52.9442 + posY: 1.36077428 + posZ: -70.4202 + rotX: 0.0208090823 + rotY: 269.999573 + rotZ: 0.0167704374 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue a4e1eb/Card Chicago Typewriter (4) ecfa42.yaml b/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue a4e1eb/Card Chicago Typewriter (4) ecfa42.yaml new file mode 100644 index 000000000..aaba487e3 --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue a4e1eb/Card Chicago Typewriter (4) ecfa42.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 443760 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '4437': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: ecfa42 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Chicago Typewriter (4) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 40.6759872 + posY: 1.353628 + posZ: -79.6126251 + rotX: 0.0208092388 + rotY: 269.999329 + rotZ: 0.0167703964 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue a4e1eb/Card Contraband (2) 620b6e.yaml b/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue a4e1eb/Card Contraband (2) 620b6e.yaml new file mode 100644 index 000000000..6d4063f06 --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue a4e1eb/Card Contraband (2) 620b6e.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 292404 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2924': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025944587/520448D0E9C22F102C7DDF64322EAD6FC221ECC8/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 620b6e +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Contraband (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 52.9442 + posY: 1.36481369 + posZ: -56.6203 + rotX: 0.02080929 + rotY: 269.999542 + rotZ: 0.0167706 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue a4e1eb/Card Daredevil (2) b3cad4.yaml b/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue a4e1eb/Card Daredevil (2) b3cad4.yaml new file mode 100644 index 000000000..d7308e3d5 --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue a4e1eb/Card Daredevil (2) b3cad4.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Fortune. Practiced. +GMNotes: '' +GUID: b3cad4 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Daredevil (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 58.0997 + posY: 1.36801767 + posZ: -52.071 + rotX: 0.0208028425 + rotY: 270.0227 + rotZ: 0.01677887 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue a4e1eb/Card Delilah O'Rourke (3) b81c84.yaml b/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue a4e1eb/Card Delilah O'Rourke (3) b81c84.yaml new file mode 100644 index 000000000..77f6f41af --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue a4e1eb/Card Delilah O'Rourke (3) b81c84.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Syndicate Assassin +GMNotes: '' +GUID: b81c84 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Delilah O'Rourke (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 40.6758728 + posY: 1.35901392 + posZ: -61.21287 + rotX: 0.0208013747 + rotY: 270.026978 + rotZ: 0.0167803429 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue a4e1eb/Card Double, Double (4) 0e0530.yaml b/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue a4e1eb/Card Double, Double (4) 0e0530.yaml new file mode 100644 index 000000000..5dcc543c9 --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue a4e1eb/Card Double, Double (4) 0e0530.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 0e0530 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Double, Double (4) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 40.67585 + posY: 1.35430121 + posZ: -77.31266 + rotX: 0.020809615 + rotY: 269.999542 + rotZ: 0.0167704839 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue a4e1eb/Card Easy Mark (1) cdbb37.yaml b/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue a4e1eb/Card Easy Mark (1) cdbb37.yaml new file mode 100644 index 000000000..906d94eee --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue a4e1eb/Card Easy Mark (1) cdbb37.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: cdbb37 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Easy Mark (1) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 52.9442 + posY: 1.36750674 + posZ: -47.4203 + rotX: 0.0208092239 + rotY: 269.999481 + rotZ: 0.0167703945 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue a4e1eb/Card Fence (1) 2423e7.yaml b/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue a4e1eb/Card Fence (1) 2423e7.yaml new file mode 100644 index 000000000..3dd45b34e --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue a4e1eb/Card Fence (1) 2423e7.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 443738 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '4437': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 2423e7 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Fence (1) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.229 + posY: 1.36098111 + posZ: -58.9008 + rotX: 0.0208093543 + rotY: 269.9995 + rotZ: 0.0167701319 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue a4e1eb/Card Garrote Wire (2) 117b7c.yaml b/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue a4e1eb/Card Garrote Wire (2) 117b7c.yaml new file mode 100644 index 000000000..5201db706 --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue a4e1eb/Card Garrote Wire (2) 117b7c.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Item. Weapon. +GMNotes: '' +GUID: 117b7c +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Garrote Wire (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.22897 + posY: 1.35492194 + posZ: -79.60065 + rotX: 0.02080907 + rotY: 270.0003 + rotZ: 0.0167707987 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue a4e1eb/Card Hard Knocks (2) 15643b.yaml b/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue a4e1eb/Card Hard Knocks (2) 15643b.yaml new file mode 100644 index 000000000..f084b16b5 --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue a4e1eb/Card Hard Knocks (2) 15643b.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 443742 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '4437': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 15643b +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Hard Knocks (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.229 + posY: 1.35694158 + posZ: -72.7007 + rotX: 0.0208094 + rotY: 269.9995 + rotZ: 0.0167700965 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue a4e1eb/Card Haste (2) 1bd139.yaml b/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue a4e1eb/Card Haste (2) 1bd139.yaml new file mode 100644 index 000000000..ffece0bda --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue a4e1eb/Card Haste (2) 1bd139.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Ritual. +GMNotes: '' +GUID: 1bd139 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Haste (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.2130241 + posY: 1.35155094 + posZ: -91.09742 + rotX: 0.0208025929 + rotY: 270.023315 + rotZ: 0.01677916 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue a4e1eb/Card High Roller (2) ce1b89.yaml b/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue a4e1eb/Card High Roller (2) ce1b89.yaml new file mode 100644 index 000000000..55c7a1b76 --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue a4e1eb/Card High Roller (2) ce1b89.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 443747 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '4437': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: ce1b89 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: High Roller (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.23101 + posY: 1.35424936 + posZ: -81.900856 + rotX: 0.0208077 + rotY: 270.004517 + rotZ: 0.0167721733 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue a4e1eb/Card Hired Muscle (1) cdd6aa.yaml b/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue a4e1eb/Card Hired Muscle (1) cdd6aa.yaml new file mode 100644 index 000000000..fcd912fa4 --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue a4e1eb/Card Hired Muscle (1) cdd6aa.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 443734 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '4437': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: cdd6aa +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Hired Muscle (1) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.229 + posY: 1.36300075 + posZ: -52.0008 + rotX: 0.02080919 + rotY: 269.9995 + rotZ: 0.0167705249 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue a4e1eb/Card Hot Streak (2) f2508d.yaml b/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue a4e1eb/Card Hot Streak (2) f2508d.yaml new file mode 100644 index 000000000..f3c2ecb54 --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue a4e1eb/Card Hot Streak (2) f2508d.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 443750 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '4437': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: f2508d +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Hot Streak (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 52.9442 + posY: 1.36346722 + posZ: -61.2203 + rotX: 0.02080928 + rotY: 269.999573 + rotZ: 0.0167706721 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue a4e1eb/Card Hot Streak (4) 4eb231.yaml b/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue a4e1eb/Card Hot Streak (4) 4eb231.yaml new file mode 100644 index 000000000..a7f2f8183 --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue a4e1eb/Card Hot Streak (4) 4eb231.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 443758 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '4437': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 4eb231 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Hot Streak (4) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 52.9442 + posY: 1.36144757 + posZ: -68.1202 + rotX: 0.02080908 + rotY: 269.9996 + rotZ: 0.0167705044 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue a4e1eb/Card Joey The Rat Vigil (3) 7b918b.yaml b/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue a4e1eb/Card Joey The Rat Vigil (3) 7b918b.yaml new file mode 100644 index 000000000..9c5208d73 --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue a4e1eb/Card Joey The Rat Vigil (3) 7b918b.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: 'Lookin'' Out For #1' +GMNotes: '' +GUID: 7b918b +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Joey "The Rat" Vigil (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 40.64833 + posY: 1.36035037 + posZ: -56.6129341 + rotX: 0.020806184 + rotY: 270.0103 + rotZ: 0.01677406 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue a4e1eb/Card Leo de Luca (1) 27446e.yaml b/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue a4e1eb/Card Leo de Luca (1) 27446e.yaml new file mode 100644 index 000000000..1f16f4139 --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue a4e1eb/Card Leo de Luca (1) 27446e.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 443740 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '4437': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: The Louisiana Lion +GMNotes: '' +GUID: 27446e +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Leo de Luca (1) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.229 + posY: 1.35761487 + posZ: -70.4007 + rotX: 0.0208093561 + rotY: 269.9995 + rotZ: 0.01677009 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue a4e1eb/Card Lockpicks (1) edd6c4.yaml b/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue a4e1eb/Card Lockpicks (1) edd6c4.yaml new file mode 100644 index 000000000..a23ca9b84 --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue a4e1eb/Card Lockpicks (1) edd6c4.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 443737 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '4437': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: edd6c4 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Lockpicks (1) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.229 + posY: 1.36030781 + posZ: -61.2008 + rotX: 0.0208093356 + rotY: 269.999481 + rotZ: 0.0167701356 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue a4e1eb/Card Lola Santiago (3) 8bec05.yaml b/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue a4e1eb/Card Lola Santiago (3) 8bec05.yaml new file mode 100644 index 000000000..dee4f7e6f --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue a4e1eb/Card Lola Santiago (3) 8bec05.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 443756 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '4437': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: No-Nonsense Archaeologist +GMNotes: '' +GUID: 8bec05 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Lola Santiago (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 40.6758728 + posY: 1.35834074 + posZ: -63.512867 + rotX: 0.0208094642 + rotY: 269.99942 + rotZ: 0.01677051 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue a4e1eb/Card Lucky Dice (2) 9dd911.yaml b/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue a4e1eb/Card Lucky Dice (2) 9dd911.yaml new file mode 100644 index 000000000..0acab469d --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue a4e1eb/Card Lucky Dice (2) 9dd911.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 443744 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '4437': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '... Or Are They?' +GMNotes: '' +GUID: 9dd911 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Lucky Dice (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.2288857 + posY: 1.35357547 + posZ: -84.20063 + rotX: 0.0208093636 + rotY: 269.999573 + rotZ: 0.0167701449 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue a4e1eb/Card Lupara (3) a6af13.yaml b/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue a4e1eb/Card Lupara (3) a6af13.yaml new file mode 100644 index 000000000..20ade20d0 --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue a4e1eb/Card Lupara (3) a6af13.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 443755 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '4437': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: a6af13 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Lupara (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 40.6758728 + posY: 1.35766745 + posZ: -65.81272 + rotX: 0.0208095983 + rotY: 269.999451 + rotZ: 0.0167703964 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue a4e1eb/Card Momentum (1) d753d7.yaml b/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue a4e1eb/Card Momentum (1) d753d7.yaml new file mode 100644 index 000000000..c975c5431 --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue a4e1eb/Card Momentum (1) d753d7.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: d753d7 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Momentum (1) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 58.0988 + posY: 1.36936724 + posZ: -47.4598 + rotX: 0.02081071 + rotY: 269.9947 + rotZ: 0.01676841 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue a4e1eb/Card Moxie (1) 5fe780.yaml b/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue a4e1eb/Card Moxie (1) 5fe780.yaml new file mode 100644 index 000000000..497221d5e --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue a4e1eb/Card Moxie (1) 5fe780.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 443735 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '4437': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 5fe780 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Moxie (1) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.229 + posY: 1.36232758 + posZ: -54.3008 + rotX: 0.0208092928 + rotY: 269.9995 + rotZ: 0.0167706273 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue a4e1eb/Card Opportunist (2) 63f145.yaml b/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue a4e1eb/Card Opportunist (2) 63f145.yaml new file mode 100644 index 000000000..a689423cf --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue a4e1eb/Card Opportunist (2) 63f145.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 443741 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '4437': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 63f145 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Opportunist (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 58.0997 + posY: 1.3673445 + posZ: -54.371 + rotX: 0.0208112337 + rotY: 269.9934 + rotZ: 0.0167684015 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue a4e1eb/Card Pay Day (1) eaa415.yaml b/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue a4e1eb/Card Pay Day (1) eaa415.yaml new file mode 100644 index 000000000..9b4872861 --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue a4e1eb/Card Pay Day (1) eaa415.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 443762 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '4437': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: eaa415 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Pay Day (1) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 52.9442 + posY: 1.36683345 + posZ: -49.7203 + rotX: 0.0208091419 + rotY: 269.9995 + rotZ: 0.01677034 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue a4e1eb/Card Pickpocketing (2) 2f4db2.yaml b/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue a4e1eb/Card Pickpocketing (2) 2f4db2.yaml new file mode 100644 index 000000000..35e1755c4 --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue a4e1eb/Card Pickpocketing (2) 2f4db2.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 443746 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '4437': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 2f4db2 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Pickpocketing (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.2290154 + posY: 1.35290217 + posZ: -86.50065 + rotX: 0.0208092649 + rotY: 269.999573 + rotZ: 0.0167705677 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue a4e1eb/Card Sawed-Off Shotgun (5) e1c0f8.yaml b/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue a4e1eb/Card Sawed-Off Shotgun (5) e1c0f8.yaml new file mode 100644 index 000000000..9617de2f1 --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue a4e1eb/Card Sawed-Off Shotgun (5) e1c0f8.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Item. Weapon. Firearm. Illicit. +GMNotes: '' +GUID: e1c0f8 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Sawed-Off Shotgun (5) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 40.70655 + posY: 1.352966 + posZ: -81.91261 + rotX: 0.02080536 + rotY: 270.013824 + rotZ: 0.0167756211 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue a4e1eb/Card Sneak Attack (2) 5f19e0.yaml b/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue a4e1eb/Card Sneak Attack (2) 5f19e0.yaml new file mode 100644 index 000000000..b2bb45cb0 --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue a4e1eb/Card Sneak Attack (2) 5f19e0.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 443745 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '4437': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 5f19e0 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Sneak Attack (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 52.9442 + posY: 1.365487 + posZ: -54.3203 + rotX: 0.0208093263 + rotY: 269.9995 + rotZ: 0.0167700965 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue a4e1eb/Card Stealth (3) 26a3bf.yaml b/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue a4e1eb/Card Stealth (3) 26a3bf.yaml new file mode 100644 index 000000000..f7b765ca3 --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue a4e1eb/Card Stealth (3) 26a3bf.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 26a3bf +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Stealth (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 40.6758728 + posY: 1.35968721 + posZ: -58.9128647 + rotX: 0.0208097361 + rotY: 269.99942 + rotZ: 0.01676953 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue a4e1eb/Card Streetwise (3) d7dbac.yaml b/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue a4e1eb/Card Streetwise (3) d7dbac.yaml new file mode 100644 index 000000000..9d2e17f26 --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue a4e1eb/Card Streetwise (3) d7dbac.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 443751 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '4437': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: d7dbac +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Streetwise (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 40.67588 + posY: 1.36170685 + posZ: -52.0128441 + rotX: 0.0208092947 + rotY: 269.999542 + rotZ: 0.0167701282 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue a4e1eb/Card Suggestion (1) 0ec9bf.yaml b/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue a4e1eb/Card Suggestion (1) 0ec9bf.yaml new file mode 100644 index 000000000..f59c38dfe --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue a4e1eb/Card Suggestion (1) 0ec9bf.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 440721 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 0ec9bf +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Suggestion (1) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.229 + posY: 1.35963452 + posZ: -63.5008 + rotX: 0.0208093543 + rotY: 269.999542 + rotZ: 0.016770605 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue a4e1eb/Card Suggestion (4) e7f37b.yaml b/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue a4e1eb/Card Suggestion (4) e7f37b.yaml new file mode 100644 index 000000000..26be9a7da --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue a4e1eb/Card Suggestion (4) e7f37b.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 443759 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '4437': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: e7f37b +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Suggestion (4) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 40.6758461 + posY: 1.35497451 + posZ: -75.01276 + rotX: 0.02080943 + rotY: 269.99942 + rotZ: 0.0167702958 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue a4e1eb/Card Sure Gamble (3) 308be1.yaml b/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue a4e1eb/Card Sure Gamble (3) 308be1.yaml new file mode 100644 index 000000000..83639fb65 --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue a4e1eb/Card Sure Gamble (3) 308be1.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 443754 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '4437': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 308be1 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Sure Gamble (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 52.9442 + posY: 1.36212075 + posZ: -65.8202 + rotX: 0.02080961 + rotY: 269.9995 + rotZ: 0.0167704355 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue a4e1eb/Card Swift Reload (2) 2cfa4f.yaml b/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue a4e1eb/Card Swift Reload (2) 2cfa4f.yaml new file mode 100644 index 000000000..9f942832f --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue a4e1eb/Card Swift Reload (2) 2cfa4f.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 2cfa4f +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Swift Reload (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 52.9442 + posY: 1.36414051 + posZ: -58.9204 + rotX: 0.0208091661 + rotY: 270.000916 + rotZ: 0.0167708453 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue a4e1eb/Card Switchblade (2) 2fba3b.yaml b/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue a4e1eb/Card Switchblade (2) 2fba3b.yaml new file mode 100644 index 000000000..cd6377d78 --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue a4e1eb/Card Switchblade (2) 2fba3b.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 443743 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '4437': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 2fba3b +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Switchblade (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.229 + posY: 1.35559511 + posZ: -77.3006 + rotX: 0.0208090767 + rotY: 269.9995 + rotZ: 0.0167704243 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue a4e1eb/Card Tennessee Sour Mash (3) b5e5f1.yaml b/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue a4e1eb/Card Tennessee Sour Mash (3) b5e5f1.yaml new file mode 100644 index 000000000..595d01287 --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue a4e1eb/Card Tennessee Sour Mash (3) b5e5f1.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Rogue +GMNotes: '' +GUID: b5e5f1 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Tennessee Sour Mash (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 40.6758766 + posY: 1.35699427 + posZ: -68.1127243 + rotX: 0.0208091568 + rotY: 269.999481 + rotZ: 0.0167703256 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue a4e1eb/Card The Gold Pocket Watch (4) 62d930.yaml b/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue a4e1eb/Card The Gold Pocket Watch (4) 62d930.yaml new file mode 100644 index 000000000..3d939df09 --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue a4e1eb/Card The Gold Pocket Watch (4) 62d930.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 443757 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '4437': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: Stealing Time +GMNotes: '' +GUID: 62d930 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: The Gold Pocket Watch (4) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 40.67587 + posY: 1.35564768 + posZ: -72.71273 + rotX: 0.0208090916 + rotY: 269.9995 + rotZ: 0.01677058 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue a4e1eb/Card The Moon • XVIII (1) e80bd8.yaml b/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue a4e1eb/Card The Moon • XVIII (1) e80bd8.yaml new file mode 100644 index 000000000..c352c2664 --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue a4e1eb/Card The Moon • XVIII (1) e80bd8.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 274205 +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 + UniqueBack: false +Description: Message from Your Inner Self +GMNotes: '' +GUID: e80bd8 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: "The Moon \u2022 XVIII (1)" +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.229 + posY: 1.35896134 + posZ: -65.8007 + rotX: 0.020809276 + rotY: 269.999573 + rotZ: 0.0167701282 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue a4e1eb/Card The Skeleton Key (2) f8dc01.yaml b/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue a4e1eb/Card The Skeleton Key (2) f8dc01.yaml new file mode 100644 index 000000000..f76a9f2fc --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue a4e1eb/Card The Skeleton Key (2) f8dc01.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 443749 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '4437': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: f8dc01 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: The Skeleton Key (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 40.67588 + posY: 1.36305344 + posZ: -47.4128571 + rotX: 0.020809222 + rotY: 269.999756 + rotZ: 0.01677018 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue a4e1eb/Card Think on Your Feet (2) 3e0653.yaml b/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue a4e1eb/Card Think on Your Feet (2) 3e0653.yaml new file mode 100644 index 000000000..47436576f --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue a4e1eb/Card Think on Your Feet (2) 3e0653.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 292403 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2924': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025944587/520448D0E9C22F102C7DDF64322EAD6FC221ECC8/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 3e0653 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Think on Your Feet (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 52.9442 + posY: 1.36616015 + posZ: -52.0203 + rotX: 0.0208093673 + rotY: 269.9995 + rotZ: 0.0167700648 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue a4e1eb/Card Three Aces (1) 30062e.yaml b/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue a4e1eb/Card Three Aces (1) 30062e.yaml new file mode 100644 index 000000000..78ba19d7d --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue a4e1eb/Card Three Aces (1) 30062e.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Fortune. Practiced. +GMNotes: '' +GUID: 30062e +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Three Aces (1) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 58.0997 + posY: 1.368691 + posZ: -49.771 + rotX: 0.0208025668 + rotY: 270.0227 + rotZ: 0.0167789962 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue a4e1eb/Card Treasure Hunter (1) 18927e.yaml b/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue a4e1eb/Card Treasure Hunter (1) 18927e.yaml new file mode 100644 index 000000000..60038fd53 --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue deaa6d/Custom_Model_Bag Rogue a4e1eb/Card Treasure Hunter (1) 18927e.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 443736 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '4437': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 18927e +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Treasure Hunter (1) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.229 + posY: 1.36165428 + posZ: -56.6008 + rotX: 0.02080942 + rotY: 269.9995 + rotZ: 0.0167704485 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue eaf093.ttslua b/unpacked/Custom_Model_Bag Rogue eaf093.ttslua new file mode 100644 index 000000000..857093fb8 --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue eaf093.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,0,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 + 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=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,0,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,0,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,0,0}, height=350, width=750, + 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}, rotation={0,0,0}, height=350, width=800, + font_size=250, color={0,0,0}, font_color={1,1,1} + }) +-- self.createButton({ +-- label="Setup", click_function="buttonClick_setup", function_owner=self, +-- position={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.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 \ No newline at end of file diff --git a/unpacked/Custom_Model_Bag Rogue eaf093.yaml b/unpacked/Custom_Model_Bag Rogue eaf093.yaml new file mode 100644 index 000000000..f9381737a --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue eaf093.yaml @@ -0,0 +1,103 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +ContainedObjects: +- !include 'Custom_Model_Bag Rogue eaf093/Card Hatchet Man 7f446d.yaml' +- !include 'Custom_Model_Bag Rogue eaf093/Card Quick Thinking f8f561.yaml' +- !include 'Custom_Model_Bag Rogue eaf093/Card Opportunist 642a2a.yaml' +- !include 'Custom_Model_Bag Rogue eaf093/Card Double or Nothing a17f94.yaml' +- !include 'Custom_Model_Bag Rogue eaf093/Card Watch this! 7cd9a9.yaml' +- !include 'Custom_Model_Bag Rogue eaf093/Card Cunning 169764.yaml' +- !include 'Custom_Model_Bag Rogue eaf093/Card Let God sort them out... d3dcf1.yaml' +- !include 'Custom_Model_Bag Rogue eaf093/Card Money Talks f34341.yaml' +- !include 'Custom_Model_Bag Rogue eaf093/Card You handle this one! 823ad4.yaml' +- !include 'Custom_Model_Bag Rogue eaf093/Card You owe me one! 87875a.yaml' +- !include 'Custom_Model_Bag Rogue eaf093/Card Daring Maneuver 2323de.yaml' +- !include 'Custom_Model_Bag Rogue eaf093/Card I''m outta here! 49d857.yaml' +- !include 'Custom_Model_Bag Rogue eaf093/Card Think on Your Feet 189f99.yaml' +- !include 'Custom_Model_Bag Rogue eaf093/Card Narrow Escape 1176e7.yaml' +- !include 'Custom_Model_Bag Rogue eaf093/Card Sleight of Hand 43bfac.yaml' +- !include 'Custom_Model_Bag Rogue eaf093/Card Decoy b177dd.yaml' +- !include 'Custom_Model_Bag Rogue eaf093/Card Eavesdrop 04484f.yaml' +- !include 'Custom_Model_Bag Rogue eaf093/Card Elusive cad434.yaml' +- !include 'Custom_Model_Bag Rogue eaf093/Card Followed 0cc3e7.yaml' +- !include 'Custom_Model_Bag Rogue eaf093/Card Intel Report d14982.yaml' +- !include 'Custom_Model_Bag Rogue eaf093/Card Small Favor 754586.yaml' +- !include 'Custom_Model_Bag Rogue eaf093/Card Sneak Attack c937fb.yaml' +- !include 'Custom_Model_Bag Rogue eaf093/Card Slip Away 6f9dbd.yaml' +- !include 'Custom_Model_Bag Rogue eaf093/Card Cheap Shot 40ef49.yaml' +- !include "Custom_Model_Bag Rogue eaf093/Card Coup de Gr\xE2ce 5691d3.yaml" +- !include 'Custom_Model_Bag Rogue eaf093/Card Swift Reflexes 9b9cda.yaml' +- !include 'Custom_Model_Bag Rogue eaf093/Card Contraband 94b923.yaml' +- !include 'Custom_Model_Bag Rogue eaf093/Card Backstab 099c3e.yaml' +- !include 'Custom_Model_Bag Rogue eaf093/Card Decorated Skull d36630.yaml' +- !include 'Custom_Model_Bag Rogue eaf093/Card Leo de Luca f6361c.yaml' +- !include 'Custom_Model_Bag Rogue eaf093/Card .45 Thompson 34408e.yaml' +- !include 'Custom_Model_Bag Rogue eaf093/Card Investments 9ce3a6.yaml' +- !include 'Custom_Model_Bag Rogue eaf093/Card Lone Wolf 7d5924.yaml' +- !include 'Custom_Model_Bag Rogue eaf093/Card Liquid Courage b14c52.yaml' +- !include 'Custom_Model_Bag Rogue eaf093/Card Switchblade 3b03f4.yaml' +- !include 'Custom_Model_Bag Rogue eaf093/Card Crystallizer of Dreams 89d744.yaml' +- !include 'Custom_Model_Bag Rogue eaf093/Card Burglary 88c1c4.yaml' +- !include 'Custom_Model_Bag Rogue eaf093/Card Well Connected 8e63bb.yaml' +- !include 'Custom_Model_Bag Rogue eaf093/Card Hard Knocks 9ae60c.yaml' +- !include 'Custom_Model_Bag Rogue eaf093/Card Lucky Cigarette Case d83fdf.yaml' +- !include 'Custom_Model_Bag Rogue eaf093/Card Pickpocketing 9a1801.yaml' +- !include 'Custom_Model_Bag Rogue eaf093/Card Stealth 285e63.yaml' +- !include 'Custom_Model_Bag Rogue eaf093/Card Knuckleduster cfd4bd.yaml' +- !include 'Custom_Model_Bag Rogue eaf093/Card Colt Vest Pocket 6aced5.yaml' +- !include 'Custom_Model_Bag Rogue eaf093/Card .41 Derringer f0e28c.yaml' +- !include 'Custom_Model_Bag Rogue eaf093/Card Gregory Gry 90bf93.yaml' +- !include 'Custom_Model_Bag Rogue eaf093/Card Henry Wan ad4592.yaml' +- !include 'Custom_Model_Bag Rogue eaf093/Card Tennessee Sour Mash 3e205b.yaml' +- !include 'Custom_Model_Bag Rogue eaf093/Card Joey The Rat Vigil e4b538.yaml' +- !include 'Custom_Model_Bag Rogue eaf093/Card Dario El-Amin 3a5caa.yaml' +- !include 'Custom_Model_Bag Rogue eaf093/Custom_Model_Bag Rogue 0a9de6.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/952965722515898740/E92441671B056D4CDF99DF9E6C88BE6598AAB50F/ + MaterialIndex: 3 + MeshURL: https://pastebin.com/raw/ALrYhQGb + NormalURL: '' + TypeIndex: 6 +Description: '' +GMNotes: '' +GUID: eaf093 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: true +LuaScript: !include 'Custom_Model_Bag Rogue eaf093.ttslua' +LuaScriptState: '{"ml":{"04484f":{"lock":false,"pos":{"x":53.2286,"y":1.3619,"z":71.7412},"rot":{"x":0.0208,"y":269.9765,"z":0.0168}},"099c3e":{"lock":false,"pos":{"x":49.5629,"y":1.3666,"z":92.4528},"rot":{"x":0.0208,"y":269.9825,"z":0.0168}},"0cc3e7":{"lock":false,"pos":{"x":53.2286,"y":1.3599,"z":64.8411},"rot":{"x":0.0208,"y":269.9973,"z":0.0168}},"1176e7":{"lock":false,"pos":{"x":53.2286,"y":1.3639,"z":78.6412},"rot":{"x":0.0208,"y":269.9764,"z":0.0168}},"169764":{"lock":false,"pos":{"x":58.3839,"y":1.3698,"z":92.3904},"rot":{"x":0.0208,"y":269.9998,"z":0.0168}},"189f99":{"lock":false,"pos":{"x":53.2286,"y":1.3633,"z":76.3412},"rot":{"x":0.0208,"y":269.9766,"z":0.0168}},"2323de":{"lock":false,"pos":{"x":53.2286,"y":1.3653,"z":83.2412},"rot":{"x":0.0208,"y":269.9765,"z":0.0168}},"285e63":{"lock":false,"pos":{"x":44.5133,"y":1.3574,"z":67.1607},"rot":{"x":0.0208,"y":269.9888,"z":0.0168}},"34408e":{"lock":false,"pos":{"x":40.9602,"y":1.3628,"z":90.1487},"rot":{"x":0.0208,"y":269.9886,"z":0.0168}},"3a5caa":{"lock":false,"pos":{"x":44.4974,"y":1.352,"z":48.764},"rot":{"x":0.0208,"y":269.9867,"z":0.0168}},"3b03f4":{"lock":false,"pos":{"x":44.5133,"y":1.3621,"z":83.2607},"rot":{"x":0.0208,"y":269.9885,"z":0.0168}},"3e205b":{"lock":false,"pos":{"x":44.5134,"y":1.3534,"z":53.3608},"rot":{"x":0.0208,"y":270.0037,"z":0.0168}},"40ef49":{"lock":false,"pos":{"x":53.2286,"y":1.3565,"z":53.3412},"rot":{"x":0.0208,"y":269.9765,"z":0.0168}},"43bfac":{"lock":false,"pos":{"x":53.2028,"y":1.3626,"z":74.0422},"rot":{"x":0.0208,"y":269.9757,"z":0.0168}},"49d857":{"lock":false,"pos":{"x":53.2286,"y":1.3646,"z":80.9412},"rot":{"x":0.0208,"y":269.9759,"z":0.0168}},"5691d3":{"lock":false,"pos":{"x":53.2128,"y":1.3559,"z":51.0517},"rot":{"x":0.0208,"y":269.9951,"z":0.0168}},"642a2a":{"lock":false,"pos":{"x":58.3839,"y":1.3678,"z":85.4904},"rot":{"x":0.0208,"y":269.9999,"z":0.0168}},"6aced5":{"lock":false,"pos":{"x":44.5133,"y":1.3561,"z":62.5608},"rot":{"x":0.0208,"y":269.9885,"z":0.0168}},"6f9dbd":{"lock":false,"pos":{"x":53.2285,"y":1.3572,"z":55.6412},"rot":{"x":0.0208,"y":269.9763,"z":0.0168}},"754586":{"lock":false,"pos":{"x":53.2286,"y":1.3585,"z":60.2412},"rot":{"x":0.0208,"y":269.9765,"z":0.0168}},"7cd9a9":{"lock":false,"pos":{"x":58.3839,"y":1.3692,"z":90.0904},"rot":{"x":0.0208,"y":269.9999,"z":0.0168}},"7d5924":{"lock":false,"pos":{"x":44.5133,"y":1.3635,"z":87.8608},"rot":{"x":0.0208,"y":269.9886,"z":0.0168}},"7f446d":{"lock":false,"pos":{"x":58.3839,"y":1.3665,"z":80.8904},"rot":{"x":0.0208,"y":269.9998,"z":0.0168}},"823ad4":{"lock":false,"pos":{"x":53.2286,"y":1.3666,"z":87.8412},"rot":{"x":0.0208,"y":269.9795,"z":0.0168}},"87875a":{"lock":false,"pos":{"x":53.2286,"y":1.366,"z":85.5412},"rot":{"x":0.0208,"y":269.9794,"z":0.0168}},"88c1c4":{"lock":false,"pos":{"x":44.5133,"y":1.3608,"z":78.6608},"rot":{"x":0.0208,"y":269.9885,"z":0.0168}},"89d744":{"lock":false,"pos":{"x":44.5133,"y":1.3614,"z":80.9607},"rot":{"x":0.0208,"y":269.9886,"z":0.0168}},"8e63bb":{"lock":false,"pos":{"x":44.5133,"y":1.3601,"z":76.3607},"rot":{"x":0.0208,"y":269.9885,"z":0.0168}},"90bf93":{"lock":false,"pos":{"x":44.5153,"y":1.3547,"z":57.9605},"rot":{"x":0.0208,"y":270.0089,"z":0.0168}},"94b923":{"lock":false,"pos":{"x":49.5629,"y":1.366,"z":90.1528},"rot":{"x":0.0208,"y":270.0084,"z":0.0168}},"9a1801":{"lock":false,"pos":{"x":44.5133,"y":1.3581,"z":69.4607},"rot":{"x":0.0208,"y":269.9886,"z":0.0168}},"9ae60c":{"lock":false,"pos":{"x":44.5133,"y":1.3594,"z":74.0607},"rot":{"x":0.0208,"y":269.9885,"z":0.0168}},"9b9cda":{"lock":false,"pos":{"x":53.2126,"y":1.3552,"z":48.7453},"rot":{"x":0.0208,"y":270.0087,"z":0.0168}},"9ce3a6":{"lock":false,"pos":{"x":44.5133,"y":1.3641,"z":90.1608},"rot":{"x":0.0208,"y":269.9886,"z":0.0168}},"a17f94":{"lock":false,"pos":{"x":58.3839,"y":1.3685,"z":87.7904},"rot":{"x":0.0208,"y":269.9996,"z":0.0168}},"ad4592":{"lock":false,"pos":{"x":44.5132,"y":1.354,"z":55.6608},"rot":{"x":0.0208,"y":269.9885,"z":0.0168}},"b14c52":{"lock":false,"pos":{"x":44.5133,"y":1.3628,"z":85.5608},"rot":{"x":0.0208,"y":269.9885,"z":0.0168}},"b177dd":{"lock":false,"pos":{"x":53.2286,"y":1.3612,"z":69.4412},"rot":{"x":0.0208,"y":269.9764,"z":0.0168}},"c937fb":{"lock":false,"pos":{"x":53.2306,"y":1.3579,"z":57.941},"rot":{"x":0.0208,"y":269.9795,"z":0.0168}},"cad434":{"lock":false,"pos":{"x":53.2286,"y":1.3606,"z":67.1411},"rot":{"x":0.0208,"y":269.9765,"z":0.0168}},"cfd4bd":{"lock":false,"pos":{"x":44.5133,"y":1.3567,"z":64.8607},"rot":{"x":0.0208,"y":269.9885,"z":0.0168}},"d14982":{"lock":false,"pos":{"x":53.2286,"y":1.3592,"z":62.5412},"rot":{"x":0.0208,"y":269.9766,"z":0.0168}},"d36630":{"lock":false,"pos":{"x":44.4684,"y":1.3648,"z":92.4579},"rot":{"x":0.021,"y":269.4863,"z":0.0166}},"d3dcf1":{"lock":false,"pos":{"x":53.2286,"y":1.368,"z":92.4412},"rot":{"x":0.0208,"y":270.0037,"z":0.0168}},"d83fdf":{"lock":false,"pos":{"x":44.5133,"y":1.3588,"z":71.7607},"rot":{"x":0.0208,"y":269.9885,"z":0.0168}},"e4b538":{"lock":false,"pos":{"x":44.4975,"y":1.3527,"z":51.0713},"rot":{"x":0.0208,"y":269.9995,"z":0.0168}},"f0e28c":{"lock":false,"pos":{"x":44.5133,"y":1.3554,"z":60.2608},"rot":{"x":0.0208,"y":269.9884,"z":0.0168}},"f34341":{"lock":false,"pos":{"x":53.2286,"y":1.3673,"z":90.1413},"rot":{"x":0.0208,"y":269.9763,"z":0.0168}},"f6361c":{"lock":false,"pos":{"x":40.9602,"y":1.3635,"z":92.4487},"rot":{"x":0.0208,"y":270.0204,"z":0.0168}},"f8f561":{"lock":false,"pos":{"x":58.3839,"y":1.3671,"z":83.1904},"rot":{"x":0.0208,"y":269.9998,"z":0.0168}}}}' +MaterialIndex: -1 +MeshIndex: -1 +Name: Custom_Model_Bag +Nickname: Rogue +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 66.58973 + posY: 1.41310084 + posZ: 65.07417 + rotX: 0.020806957 + rotY: 270.012238 + rotZ: 0.01677457 + scaleX: 1.2 + scaleY: 1.2 + scaleZ: 1.2 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue eaf093/Card .41 Derringer f0e28c.yaml b/unpacked/Custom_Model_Bag Rogue eaf093/Card .41 Derringer f0e28c.yaml new file mode 100644 index 000000000..822c1972a --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue eaf093/Card .41 Derringer f0e28c.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: f0e28c +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: .41 Derringer +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.5133 + posY: 1.35538781 + posZ: 60.2608 + rotX: 0.0208126511 + rotY: 269.988373 + rotZ: 0.0167661272 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue eaf093/Card .45 Thompson 34408e.yaml b/unpacked/Custom_Model_Bag Rogue eaf093/Card .45 Thompson 34408e.yaml new file mode 100644 index 000000000..9cda8ff39 --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue eaf093/Card .45 Thompson 34408e.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 34408e +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: .45 Thompson +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 40.96023 + posY: 1.36284614 + posZ: 90.14873 + rotX: 0.0208109561 + rotY: 269.9886 + rotZ: 0.0167659577 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue eaf093/Card Backstab 099c3e.yaml b/unpacked/Custom_Model_Bag Rogue eaf093/Card Backstab 099c3e.yaml new file mode 100644 index 000000000..d33217c15 --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue eaf093/Card Backstab 099c3e.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 261616 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 099c3e +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Backstab +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 49.5628624 + posY: 1.36664486 + posZ: 92.4528 + rotX: 0.0208126549 + rotY: 269.982544 + rotZ: 0.0167639982 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue eaf093/Card Burglary 88c1c4.yaml b/unpacked/Custom_Model_Bag Rogue eaf093/Card Burglary 88c1c4.yaml new file mode 100644 index 000000000..d6be53d35 --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue eaf093/Card Burglary 88c1c4.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 261522 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 88c1c4 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Burglary +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.5133 + posY: 1.3607738 + posZ: 78.6608 + rotX: 0.0208126158 + rotY: 269.988464 + rotZ: 0.0167667214 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue eaf093/Card Cheap Shot 40ef49.yaml b/unpacked/Custom_Model_Bag Rogue eaf093/Card Cheap Shot 40ef49.yaml new file mode 100644 index 000000000..b93d04799 --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue eaf093/Card Cheap Shot 40ef49.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 261615 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 40ef49 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Cheap Shot +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 53.22862 + posY: 1.35652757 + posZ: 53.3411865 + rotX: 0.0208160039 + rotY: 269.9765 + rotZ: 0.01676232 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue eaf093/Card Colt Vest Pocket 6aced5.yaml b/unpacked/Custom_Model_Bag Rogue eaf093/Card Colt Vest Pocket 6aced5.yaml new file mode 100644 index 000000000..c82257247 --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue eaf093/Card Colt Vest Pocket 6aced5.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 6aced5 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Colt Vest Pocket +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.5133 + posY: 1.3560611 + posZ: 62.5608 + rotX: 0.0208125263 + rotY: 269.988525 + rotZ: 0.0167662129 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue eaf093/Card Contraband 94b923.yaml b/unpacked/Custom_Model_Bag Rogue eaf093/Card Contraband 94b923.yaml new file mode 100644 index 000000000..69f79cdae --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue eaf093/Card Contraband 94b923.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 261617 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 94b923 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Contraband +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 49.5628662 + posY: 1.36597157 + posZ: 90.15278 + rotX: 0.0208051372 + rotY: 270.008362 + rotZ: 0.0167728551 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue eaf093/Card Coup de Grâce 5691d3.yaml b/unpacked/Custom_Model_Bag Rogue eaf093/Card Coup de Grâce 5691d3.yaml new file mode 100644 index 000000000..3e120d6e6 --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue eaf093/Card Coup de Grâce 5691d3.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 5691d3 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: "Coup de Gr\xE2ce" +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 53.2128 + posY: 1.35585165 + posZ: 51.0517464 + rotX: 0.0208102986 + rotY: 269.9951 + rotZ: 0.0167675354 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue eaf093/Card Crystallizer of Dreams 89d744.yaml b/unpacked/Custom_Model_Bag Rogue eaf093/Card Crystallizer of Dreams 89d744.yaml new file mode 100644 index 000000000..327abf6e3 --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue eaf093/Card Crystallizer of Dreams 89d744.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 89d744 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Crystallizer of Dreams +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.5133 + posY: 1.361447 + posZ: 80.9607 + rotX: 0.0208126251 + rotY: 269.988647 + rotZ: 0.01676621 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue eaf093/Card Cunning 169764.yaml b/unpacked/Custom_Model_Bag Rogue eaf093/Card Cunning 169764.yaml new file mode 100644 index 000000000..1220c8424 --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue eaf093/Card Cunning 169764.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 274206 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: '169764' +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Cunning +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 58.3839 + posY: 1.36983013 + posZ: 92.3904 + rotX: 0.0208092052 + rotY: 269.999817 + rotZ: 0.0167706273 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue eaf093/Card Daring Maneuver 2323de.yaml b/unpacked/Custom_Model_Bag Rogue eaf093/Card Daring Maneuver 2323de.yaml new file mode 100644 index 000000000..1bcce93a7 --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue eaf093/Card Daring Maneuver 2323de.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 261606 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 2323de +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Daring Maneuver +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 53.2285919 + posY: 1.36527967 + posZ: 83.24124 + rotX: 0.0208160132 + rotY: 269.9765 + rotZ: 0.0167622566 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue eaf093/Card Dario El-Amin 3a5caa.yaml b/unpacked/Custom_Model_Bag Rogue eaf093/Card Dario El-Amin 3a5caa.yaml new file mode 100644 index 000000000..74652e492 --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue eaf093/Card Dario El-Amin 3a5caa.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 261530 +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 + UniqueBack: false +Description: Unscrupulous Investor +GMNotes: '' +GUID: 3a5caa +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Dario El-Amin +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.4973755 + posY: 1.35201681 + posZ: 48.7640076 + rotX: 0.0208143555 + rotY: 269.986725 + rotZ: 0.0167680364 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue eaf093/Card Decorated Skull d36630.yaml b/unpacked/Custom_Model_Bag Rogue eaf093/Card Decorated Skull d36630.yaml new file mode 100644 index 000000000..8e2908432 --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue eaf093/Card Decorated Skull d36630.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 261518 +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 + UniqueBack: false +Description: Doom Begets Doom +GMNotes: '' +GUID: d36630 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Decorated Skull +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.4684 + posY: 1.36479616 + posZ: 92.4579 + rotX: 0.0209585987 + rotY: 269.486328 + rotZ: 0.0165835153 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue eaf093/Card Decoy b177dd.yaml b/unpacked/Custom_Model_Bag Rogue eaf093/Card Decoy b177dd.yaml new file mode 100644 index 000000000..e7d274cc6 --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue eaf093/Card Decoy b177dd.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: b177dd +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Decoy +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 53.2285767 + posY: 1.36124027 + posZ: 69.44123 + rotX: 0.0208144467 + rotY: 269.97644 + rotZ: 0.0167616252 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue eaf093/Card Double or Nothing a17f94.yaml b/unpacked/Custom_Model_Bag Rogue eaf093/Card Double or Nothing a17f94.yaml new file mode 100644 index 000000000..8ab9fb581 --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue eaf093/Card Double or Nothing a17f94.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: a17f94 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Double or Nothing +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 58.3839 + posY: 1.36848366 + posZ: 87.7904 + rotX: 0.0208091084 + rotY: 269.9996 + rotZ: 0.0167704169 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue eaf093/Card Eavesdrop 04484f.yaml b/unpacked/Custom_Model_Bag Rogue eaf093/Card Eavesdrop 04484f.yaml new file mode 100644 index 000000000..1ac1aabc8 --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue eaf093/Card Eavesdrop 04484f.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 261611 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 04484f +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Eavesdrop +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 53.22859 + posY: 1.36191356 + posZ: 71.74124 + rotX: 0.02081407 + rotY: 269.976532 + rotZ: 0.0167617463 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue eaf093/Card Elusive cad434.yaml b/unpacked/Custom_Model_Bag Rogue eaf093/Card Elusive cad434.yaml new file mode 100644 index 000000000..285c3a4db --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue eaf093/Card Elusive cad434.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 261612 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: cad434 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Elusive +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 53.2285728 + posY: 1.360567 + posZ: 67.14111 + rotX: 0.0208160244 + rotY: 269.9765 + rotZ: 0.01676175 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue eaf093/Card Followed 0cc3e7.yaml b/unpacked/Custom_Model_Bag Rogue eaf093/Card Followed 0cc3e7.yaml new file mode 100644 index 000000000..9b9a0f584 --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue eaf093/Card Followed 0cc3e7.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 380025 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 0cc3e7 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Followed +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 53.22856 + posY: 1.35989368 + posZ: 64.84109 + rotX: 0.02081004 + rotY: 269.997284 + rotZ: 0.0167697035 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue eaf093/Card Gregory Gry 90bf93.yaml b/unpacked/Custom_Model_Bag Rogue eaf093/Card Gregory Gry 90bf93.yaml new file mode 100644 index 000000000..65cef33b1 --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue eaf093/Card Gregory Gry 90bf93.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Muckraker +GMNotes: '' +GUID: 90bf93 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Gregory Gry +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.5153275 + posY: 1.35471535 + posZ: 57.96055 + rotX: 0.0208056364 + rotY: 270.00885 + rotZ: 0.0167738646 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue eaf093/Card Hard Knocks 9ae60c.yaml b/unpacked/Custom_Model_Bag Rogue eaf093/Card Hard Knocks 9ae60c.yaml new file mode 100644 index 000000000..3ac4747f6 --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue eaf093/Card Hard Knocks 9ae60c.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 9ae60c +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Hard Knocks +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.5133 + posY: 1.35942721 + posZ: 74.0607 + rotX: 0.0208125189 + rotY: 269.9885 + rotZ: 0.0167660527 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue eaf093/Card Hatchet Man 7f446d.yaml b/unpacked/Custom_Model_Bag Rogue eaf093/Card Hatchet Man 7f446d.yaml new file mode 100644 index 000000000..608819509 --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue eaf093/Card Hatchet Man 7f446d.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 7f446d +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Hatchet Man +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 58.3839 + posY: 1.3664639 + posZ: 80.8904 + rotX: 0.0208090749 + rotY: 269.999817 + rotZ: 0.016770564 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue eaf093/Card Henry Wan ad4592.yaml b/unpacked/Custom_Model_Bag Rogue eaf093/Card Henry Wan ad4592.yaml new file mode 100644 index 000000000..b6443acb5 --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue eaf093/Card Henry Wan ad4592.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Aspiring Actor +GMNotes: '' +GUID: ad4592 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Henry Wan +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.513237 + posY: 1.35404134 + posZ: 55.6607933 + rotX: 0.0208125524 + rotY: 269.988525 + rotZ: 0.0167661663 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue eaf093/Card I'm outta here! 49d857.yaml b/unpacked/Custom_Model_Bag Rogue eaf093/Card I'm outta here! 49d857.yaml new file mode 100644 index 000000000..9e1dfa2ff --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue eaf093/Card I'm outta here! 49d857.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 261607 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 49d857 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '"I''m outta here!"' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 53.22859 + posY: 1.3646065 + posZ: 80.94124 + rotX: 0.020816505 + rotY: 269.975861 + rotZ: 0.0167619325 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue eaf093/Card Intel Report d14982.yaml b/unpacked/Custom_Model_Bag Rogue eaf093/Card Intel Report d14982.yaml new file mode 100644 index 000000000..e8b4bdb16 --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue eaf093/Card Intel Report d14982.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: d14982 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Intel Report +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 53.2285767 + posY: 1.35922062 + posZ: 62.5412025 + rotX: 0.0208158679 + rotY: 269.976563 + rotZ: 0.0167622156 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue eaf093/Card Investments 9ce3a6.yaml b/unpacked/Custom_Model_Bag Rogue eaf093/Card Investments 9ce3a6.yaml new file mode 100644 index 000000000..90ea10f02 --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue eaf093/Card Investments 9ce3a6.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 9ce3a6 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Investments +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.5133 + posY: 1.36413991 + posZ: 90.1608 + rotX: 0.0208125561 + rotY: 269.988556 + rotZ: 0.01676661 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue eaf093/Card Joey The Rat Vigil e4b538.yaml b/unpacked/Custom_Model_Bag Rogue eaf093/Card Joey The Rat Vigil e4b538.yaml new file mode 100644 index 000000000..533a9cfd2 --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue eaf093/Card Joey The Rat Vigil e4b538.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 261529 +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 + UniqueBack: false +Description: 'Lookin'' Out For #1' +GMNotes: '' +GUID: e4b538 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Joey "The Rat" Vigil +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.4975471 + posY: 1.35269237 + posZ: 51.0713348 + rotX: 0.0208094586 + rotY: 269.999451 + rotZ: 0.0167705975 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue eaf093/Card Knuckleduster cfd4bd.yaml b/unpacked/Custom_Model_Bag Rogue eaf093/Card Knuckleduster cfd4bd.yaml new file mode 100644 index 000000000..43aad85bc --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue eaf093/Card Knuckleduster cfd4bd.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 261527 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: cfd4bd +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Knuckleduster +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.5133 + posY: 1.35673428 + posZ: 64.8607 + rotX: 0.02081248 + rotY: 269.9885 + rotZ: 0.016766075 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue eaf093/Card Leo de Luca f6361c.yaml b/unpacked/Custom_Model_Bag Rogue eaf093/Card Leo de Luca f6361c.yaml new file mode 100644 index 000000000..97cd2e366 --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue eaf093/Card Leo de Luca f6361c.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 261531 +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 + UniqueBack: false +Description: The Louisiana Lion +GMNotes: '' +GUID: f6361c +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Leo de Luca +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 40.96023 + posY: 1.36351931 + posZ: 92.4487152 + rotX: 0.0208015386 + rotY: 270.020355 + rotZ: 0.0167775266 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue eaf093/Card Let God sort them out... d3dcf1.yaml b/unpacked/Custom_Model_Bag Rogue eaf093/Card Let God sort them out... d3dcf1.yaml new file mode 100644 index 000000000..e359686c1 --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue eaf093/Card Let God sort them out... d3dcf1.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: d3dcf1 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '"Let God sort them out..."' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 53.2285767 + posY: 1.36797261 + posZ: 92.44123 + rotX: 0.0208081659 + rotY: 270.003723 + rotZ: 0.01677222 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue eaf093/Card Liquid Courage b14c52.yaml b/unpacked/Custom_Model_Bag Rogue eaf093/Card Liquid Courage b14c52.yaml new file mode 100644 index 000000000..0904a5ae0 --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue eaf093/Card Liquid Courage b14c52.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 261520 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: b14c52 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Liquid Courage +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.5133 + posY: 1.36279345 + posZ: 85.5608 + rotX: 0.02081259 + rotY: 269.9885 + rotZ: 0.0167661589 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue eaf093/Card Lone Wolf 7d5924.yaml b/unpacked/Custom_Model_Bag Rogue eaf093/Card Lone Wolf 7d5924.yaml new file mode 100644 index 000000000..3c449532a --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue eaf093/Card Lone Wolf 7d5924.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 261519 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 7d5924 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Lone Wolf +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.5133 + posY: 1.36346674 + posZ: 87.8608 + rotX: 0.02081266 + rotY: 269.9886 + rotZ: 0.016766591 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue eaf093/Card Lucky Cigarette Case d83fdf.yaml b/unpacked/Custom_Model_Bag Rogue eaf093/Card Lucky Cigarette Case d83fdf.yaml new file mode 100644 index 000000000..204c03b66 --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue eaf093/Card Lucky Cigarette Case d83fdf.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 261524 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: d83fdf +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Lucky Cigarette Case +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.5133 + posY: 1.358754 + posZ: 71.7607 + rotX: 0.0208122823 + rotY: 269.988464 + rotZ: 0.0167663228 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue eaf093/Card Money Talks f34341.yaml b/unpacked/Custom_Model_Bag Rogue eaf093/Card Money Talks f34341.yaml new file mode 100644 index 000000000..cc824e977 --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue eaf093/Card Money Talks f34341.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 274207 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: f34341 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Money Talks +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 53.22859 + posY: 1.36729944 + posZ: 90.14125 + rotX: 0.0208159871 + rotY: 269.976318 + rotZ: 0.0167621188 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue eaf093/Card Narrow Escape 1176e7.yaml b/unpacked/Custom_Model_Bag Rogue eaf093/Card Narrow Escape 1176e7.yaml new file mode 100644 index 000000000..c39f6396e --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue eaf093/Card Narrow Escape 1176e7.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 261608 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 1176e7 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Narrow Escape +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 53.22858 + posY: 1.36393321 + posZ: 78.6412354 + rotX: 0.0208160672 + rotY: 269.97644 + rotZ: 0.0167621057 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue eaf093/Card Opportunist 642a2a.yaml b/unpacked/Custom_Model_Bag Rogue eaf093/Card Opportunist 642a2a.yaml new file mode 100644 index 000000000..8a23d8702 --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue eaf093/Card Opportunist 642a2a.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 642a2a +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Opportunist +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 58.3839 + posY: 1.36781037 + posZ: 85.4904 + rotX: 0.0208093543 + rotY: 269.999878 + rotZ: 0.0167706851 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue eaf093/Card Pickpocketing 9a1801.yaml b/unpacked/Custom_Model_Bag Rogue eaf093/Card Pickpocketing 9a1801.yaml new file mode 100644 index 000000000..52ef3cb47 --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue eaf093/Card Pickpocketing 9a1801.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 261525 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 9a1801 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Pickpocketing +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.5133 + posY: 1.35808074 + posZ: 69.4607 + rotX: 0.0208125487 + rotY: 269.9886 + rotZ: 0.01676642 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue eaf093/Card Quick Thinking f8f561.yaml b/unpacked/Custom_Model_Bag Rogue eaf093/Card Quick Thinking f8f561.yaml new file mode 100644 index 000000000..7bbbd0573 --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue eaf093/Card Quick Thinking f8f561.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: f8f561 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Quick Thinking +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 58.3839 + posY: 1.36713719 + posZ: 83.1904 + rotX: 0.0208093356 + rotY: 269.999817 + rotZ: 0.0167706143 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue eaf093/Card Sleight of Hand 43bfac.yaml b/unpacked/Custom_Model_Bag Rogue eaf093/Card Sleight of Hand 43bfac.yaml new file mode 100644 index 000000000..a567b65b9 --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue eaf093/Card Sleight of Hand 43bfac.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 261610 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 43bfac +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Sleight of Hand +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 53.20279 + posY: 1.3625778 + posZ: 74.04223 + rotX: 0.0208145883 + rotY: 269.975739 + rotZ: 0.0167615488 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue eaf093/Card Slip Away 6f9dbd.yaml b/unpacked/Custom_Model_Bag Rogue eaf093/Card Slip Away 6f9dbd.yaml new file mode 100644 index 000000000..d3bd70817 --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue eaf093/Card Slip Away 6f9dbd.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 261614 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 6f9dbd +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Slip Away +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 53.22849 + posY: 1.35720074 + posZ: 55.6412048 + rotX: 0.0208160542 + rotY: 269.976318 + rotZ: 0.01676212 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue eaf093/Card Small Favor 754586.yaml b/unpacked/Custom_Model_Bag Rogue eaf093/Card Small Favor 754586.yaml new file mode 100644 index 000000000..56011ceee --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue eaf093/Card Small Favor 754586.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 378016 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: '754586' +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Small Favor +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 53.2285767 + posY: 1.35854721 + posZ: 60.2412033 + rotX: 0.0208161213 + rotY: 269.9765 + rotZ: 0.01676222 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue eaf093/Card Sneak Attack c937fb.yaml b/unpacked/Custom_Model_Bag Rogue eaf093/Card Sneak Attack c937fb.yaml new file mode 100644 index 000000000..857560d2c --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue eaf093/Card Sneak Attack c937fb.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 261613 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: c937fb +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Sneak Attack +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 53.2306137 + posY: 1.35787475 + posZ: 57.9409828 + rotX: 0.0208154712 + rotY: 269.979462 + rotZ: 0.0167630613 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue eaf093/Card Stealth 285e63.yaml b/unpacked/Custom_Model_Bag Rogue eaf093/Card Stealth 285e63.yaml new file mode 100644 index 000000000..8e85b3125 --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue eaf093/Card Stealth 285e63.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 261526 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 285e63 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Stealth +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.5133 + posY: 1.35740757 + posZ: 67.1607 + rotX: 0.0208125636 + rotY: 269.98877 + rotZ: 0.0167667288 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue eaf093/Card Swift Reflexes 9b9cda.yaml b/unpacked/Custom_Model_Bag Rogue eaf093/Card Swift Reflexes 9b9cda.yaml new file mode 100644 index 000000000..857bb20fe --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue eaf093/Card Swift Reflexes 9b9cda.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 9b9cda +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Swift Reflexes +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 53.21264 + posY: 1.35517657 + posZ: 48.7452965 + rotX: 0.020806659 + rotY: 270.008728 + rotZ: 0.0167740025 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue eaf093/Card Switchblade 3b03f4.yaml b/unpacked/Custom_Model_Bag Rogue eaf093/Card Switchblade 3b03f4.yaml new file mode 100644 index 000000000..0a9b3dd8e --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue eaf093/Card Switchblade 3b03f4.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 261521 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 3b03f4 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Switchblade +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.5133 + posY: 1.36212015 + posZ: 83.2607 + rotX: 0.0208123587 + rotY: 269.9885 + rotZ: 0.0167666432 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue eaf093/Card Tennessee Sour Mash 3e205b.yaml b/unpacked/Custom_Model_Bag Rogue eaf093/Card Tennessee Sour Mash 3e205b.yaml new file mode 100644 index 000000000..335359fb5 --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue eaf093/Card Tennessee Sour Mash 3e205b.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 3e205b +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Tennessee Sour Mash +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.5133667 + posY: 1.35336816 + posZ: 53.360775 + rotX: 0.02080811 + rotY: 270.003662 + rotZ: 0.0167720541 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue eaf093/Card Think on Your Feet 189f99.yaml b/unpacked/Custom_Model_Bag Rogue eaf093/Card Think on Your Feet 189f99.yaml new file mode 100644 index 000000000..3152ee3f3 --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue eaf093/Card Think on Your Feet 189f99.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 261609 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 189f99 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Think on Your Feet +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 53.22858 + posY: 1.36326 + posZ: 76.34123 + rotX: 0.02081608 + rotY: 269.976563 + rotZ: 0.0167623125 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue eaf093/Card Watch this! 7cd9a9.yaml b/unpacked/Custom_Model_Bag Rogue eaf093/Card Watch this! 7cd9a9.yaml new file mode 100644 index 000000000..38215e29c --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue eaf093/Card Watch this! 7cd9a9.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 7cd9a9 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '"Watch this!"' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 58.3839 + posY: 1.36915684 + posZ: 90.0904 + rotX: 0.0208092928 + rotY: 269.999878 + rotZ: 0.0167707466 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue eaf093/Card Well Connected 8e63bb.yaml b/unpacked/Custom_Model_Bag Rogue eaf093/Card Well Connected 8e63bb.yaml new file mode 100644 index 000000000..3a2ce4a61 --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue eaf093/Card Well Connected 8e63bb.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 274208 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 8e63bb +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Well Connected +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.5133 + posY: 1.36010051 + posZ: 76.3607 + rotX: 0.02081234 + rotY: 269.988525 + rotZ: 0.01676637 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue eaf093/Card You handle this one! 823ad4.yaml b/unpacked/Custom_Model_Bag Rogue eaf093/Card You handle this one! 823ad4.yaml new file mode 100644 index 000000000..1cca5e5bf --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue eaf093/Card You handle this one! 823ad4.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 261605 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 823ad4 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '"You handle this one!"' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 53.22859 + posY: 1.36662626 + posZ: 87.84125 + rotX: 0.0208149888 + rotY: 269.9795 + rotZ: 0.016763078 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue eaf093/Card You owe me one! 87875a.yaml b/unpacked/Custom_Model_Bag Rogue eaf093/Card You owe me one! 87875a.yaml new file mode 100644 index 000000000..f4acc2850 --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue eaf093/Card You owe me one! 87875a.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 87875a +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '"You owe me one!"' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 53.2285919 + posY: 1.365953 + posZ: 85.5412445 + rotX: 0.0208154861 + rotY: 269.9794 + rotZ: 0.01676323 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue eaf093/Custom_Model_Bag Rogue 0a9de6.ttslua b/unpacked/Custom_Model_Bag Rogue eaf093/Custom_Model_Bag Rogue 0a9de6.ttslua new file mode 100644 index 000000000..f882a7f09 --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue eaf093/Custom_Model_Bag Rogue 0a9de6.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,0,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 + 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=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,0,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,0,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,0,0}, height=350, width=750, + 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}, rotation={0,0,0}, height=350, width=800, + font_size=250, color={0,0,0}, font_color={1,1,1} + }) +-- self.createButton({ +-- label="Setup", click_function="buttonClick_setup", function_owner=self, +-- position={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.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 Rogue eaf093/Custom_Model_Bag Rogue 0a9de6.yaml b/unpacked/Custom_Model_Bag Rogue eaf093/Custom_Model_Bag Rogue 0a9de6.yaml new file mode 100644 index 000000000..c13f848a9 --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue eaf093/Custom_Model_Bag Rogue 0a9de6.yaml @@ -0,0 +1,102 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +ContainedObjects: +- !include 'Custom_Model_Bag Rogue 0a9de6/Card Hatchet Man 7f446d.yaml' +- !include 'Custom_Model_Bag Rogue 0a9de6/Card Quick Thinking f8f561.yaml' +- !include 'Custom_Model_Bag Rogue 0a9de6/Card Opportunist 642a2a.yaml' +- !include 'Custom_Model_Bag Rogue 0a9de6/Card Double or Nothing a17f94.yaml' +- !include 'Custom_Model_Bag Rogue 0a9de6/Card Watch this! 7cd9a9.yaml' +- !include 'Custom_Model_Bag Rogue 0a9de6/Card Cunning 169764.yaml' +- !include 'Custom_Model_Bag Rogue 0a9de6/Card Let God sort them out... d3dcf1.yaml' +- !include 'Custom_Model_Bag Rogue 0a9de6/Card Money Talks f34341.yaml' +- !include 'Custom_Model_Bag Rogue 0a9de6/Card You handle this one! 823ad4.yaml' +- !include 'Custom_Model_Bag Rogue 0a9de6/Card You owe me one! 87875a.yaml' +- !include 'Custom_Model_Bag Rogue 0a9de6/Card Daring Maneuver 2323de.yaml' +- !include 'Custom_Model_Bag Rogue 0a9de6/Card I''m outta here! 49d857.yaml' +- !include 'Custom_Model_Bag Rogue 0a9de6/Card Think on Your Feet 189f99.yaml' +- !include 'Custom_Model_Bag Rogue 0a9de6/Card Narrow Escape 1176e7.yaml' +- !include 'Custom_Model_Bag Rogue 0a9de6/Card Sleight of Hand 43bfac.yaml' +- !include 'Custom_Model_Bag Rogue 0a9de6/Card Decoy b177dd.yaml' +- !include 'Custom_Model_Bag Rogue 0a9de6/Card Eavesdrop 04484f.yaml' +- !include 'Custom_Model_Bag Rogue 0a9de6/Card Elusive cad434.yaml' +- !include 'Custom_Model_Bag Rogue 0a9de6/Card Followed 0cc3e7.yaml' +- !include 'Custom_Model_Bag Rogue 0a9de6/Card Intel Report d14982.yaml' +- !include 'Custom_Model_Bag Rogue 0a9de6/Card Small Favor 754586.yaml' +- !include 'Custom_Model_Bag Rogue 0a9de6/Card Sneak Attack c937fb.yaml' +- !include 'Custom_Model_Bag Rogue 0a9de6/Card Slip Away 6f9dbd.yaml' +- !include 'Custom_Model_Bag Rogue 0a9de6/Card Cheap Shot 40ef49.yaml' +- !include "Custom_Model_Bag Rogue 0a9de6/Card Coup de Gr\xE2ce 5691d3.yaml" +- !include 'Custom_Model_Bag Rogue 0a9de6/Card Swift Reflexes 9b9cda.yaml' +- !include 'Custom_Model_Bag Rogue 0a9de6/Card Contraband 94b923.yaml' +- !include 'Custom_Model_Bag Rogue 0a9de6/Card Backstab 099c3e.yaml' +- !include 'Custom_Model_Bag Rogue 0a9de6/Card Decorated Skull d36630.yaml' +- !include 'Custom_Model_Bag Rogue 0a9de6/Card Leo de Luca f6361c.yaml' +- !include 'Custom_Model_Bag Rogue 0a9de6/Card .45 Thompson 34408e.yaml' +- !include 'Custom_Model_Bag Rogue 0a9de6/Card Investments 9ce3a6.yaml' +- !include 'Custom_Model_Bag Rogue 0a9de6/Card Lone Wolf 7d5924.yaml' +- !include 'Custom_Model_Bag Rogue 0a9de6/Card Liquid Courage b14c52.yaml' +- !include 'Custom_Model_Bag Rogue 0a9de6/Card Switchblade 3b03f4.yaml' +- !include 'Custom_Model_Bag Rogue 0a9de6/Card Crystallizer of Dreams 89d744.yaml' +- !include 'Custom_Model_Bag Rogue 0a9de6/Card Burglary 88c1c4.yaml' +- !include 'Custom_Model_Bag Rogue 0a9de6/Card Well Connected 8e63bb.yaml' +- !include 'Custom_Model_Bag Rogue 0a9de6/Card Hard Knocks 9ae60c.yaml' +- !include 'Custom_Model_Bag Rogue 0a9de6/Card Lucky Cigarette Case d83fdf.yaml' +- !include 'Custom_Model_Bag Rogue 0a9de6/Card Pickpocketing 9a1801.yaml' +- !include 'Custom_Model_Bag Rogue 0a9de6/Card Stealth 285e63.yaml' +- !include 'Custom_Model_Bag Rogue 0a9de6/Card Knuckleduster cfd4bd.yaml' +- !include 'Custom_Model_Bag Rogue 0a9de6/Card Colt Vest Pocket 6aced5.yaml' +- !include 'Custom_Model_Bag Rogue 0a9de6/Card .41 Derringer f0e28c.yaml' +- !include 'Custom_Model_Bag Rogue 0a9de6/Card Gregory Gry 90bf93.yaml' +- !include 'Custom_Model_Bag Rogue 0a9de6/Card Henry Wan ad4592.yaml' +- !include 'Custom_Model_Bag Rogue 0a9de6/Card Tennessee Sour Mash 3e205b.yaml' +- !include 'Custom_Model_Bag Rogue 0a9de6/Card Joey The Rat Vigil e4b538.yaml' +- !include 'Custom_Model_Bag Rogue 0a9de6/Card Dario El-Amin 3a5caa.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/952965722515898740/E92441671B056D4CDF99DF9E6C88BE6598AAB50F/ + MaterialIndex: 3 + MeshURL: https://pastebin.com/raw/ALrYhQGb + NormalURL: '' + TypeIndex: 6 +Description: '' +GMNotes: '' +GUID: 0a9de6 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Model_Bag Rogue 0a9de6.ttslua' +LuaScriptState: '{"ml":{"04484f":{"lock":false,"pos":{"x":53.2286,"y":1.3619,"z":71.7412},"rot":{"x":0.0208,"y":269.9765,"z":0.0168}},"099c3e":{"lock":false,"pos":{"x":49.5629,"y":1.3666,"z":92.4528},"rot":{"x":0.0208,"y":269.9825,"z":0.0168}},"0cc3e7":{"lock":false,"pos":{"x":53.2286,"y":1.3599,"z":64.8411},"rot":{"x":0.0208,"y":269.9973,"z":0.0168}},"1176e7":{"lock":false,"pos":{"x":53.2286,"y":1.3639,"z":78.6412},"rot":{"x":0.0208,"y":269.9764,"z":0.0168}},"169764":{"lock":false,"pos":{"x":58.3839,"y":1.3698,"z":92.3904},"rot":{"x":0.0208,"y":269.9998,"z":0.0168}},"189f99":{"lock":false,"pos":{"x":53.2286,"y":1.3633,"z":76.3412},"rot":{"x":0.0208,"y":269.9766,"z":0.0168}},"2323de":{"lock":false,"pos":{"x":53.2286,"y":1.3653,"z":83.2412},"rot":{"x":0.0208,"y":269.9765,"z":0.0168}},"285e63":{"lock":false,"pos":{"x":44.5133,"y":1.3574,"z":67.1607},"rot":{"x":0.0208,"y":269.9888,"z":0.0168}},"34408e":{"lock":false,"pos":{"x":40.9602,"y":1.3628,"z":90.1487},"rot":{"x":0.0208,"y":269.9886,"z":0.0168}},"3a5caa":{"lock":false,"pos":{"x":44.4974,"y":1.352,"z":48.764},"rot":{"x":0.0208,"y":269.9867,"z":0.0168}},"3b03f4":{"lock":false,"pos":{"x":44.5133,"y":1.3621,"z":83.2607},"rot":{"x":0.0208,"y":269.9885,"z":0.0168}},"3e205b":{"lock":false,"pos":{"x":44.5134,"y":1.3534,"z":53.3608},"rot":{"x":0.0208,"y":270.0037,"z":0.0168}},"40ef49":{"lock":false,"pos":{"x":53.2286,"y":1.3565,"z":53.3412},"rot":{"x":0.0208,"y":269.9765,"z":0.0168}},"43bfac":{"lock":false,"pos":{"x":53.2028,"y":1.3626,"z":74.0422},"rot":{"x":0.0208,"y":269.9757,"z":0.0168}},"49d857":{"lock":false,"pos":{"x":53.2286,"y":1.3646,"z":80.9412},"rot":{"x":0.0208,"y":269.9759,"z":0.0168}},"5691d3":{"lock":false,"pos":{"x":53.2128,"y":1.3559,"z":51.0517},"rot":{"x":0.0208,"y":269.9951,"z":0.0168}},"642a2a":{"lock":false,"pos":{"x":58.3839,"y":1.3678,"z":85.4904},"rot":{"x":0.0208,"y":269.9999,"z":0.0168}},"6aced5":{"lock":false,"pos":{"x":44.5133,"y":1.3561,"z":62.5608},"rot":{"x":0.0208,"y":269.9885,"z":0.0168}},"6f9dbd":{"lock":false,"pos":{"x":53.2285,"y":1.3572,"z":55.6412},"rot":{"x":0.0208,"y":269.9763,"z":0.0168}},"754586":{"lock":false,"pos":{"x":53.2286,"y":1.3585,"z":60.2412},"rot":{"x":0.0208,"y":269.9765,"z":0.0168}},"7cd9a9":{"lock":false,"pos":{"x":58.3839,"y":1.3692,"z":90.0904},"rot":{"x":0.0208,"y":269.9999,"z":0.0168}},"7d5924":{"lock":false,"pos":{"x":44.5133,"y":1.3635,"z":87.8608},"rot":{"x":0.0208,"y":269.9886,"z":0.0168}},"7f446d":{"lock":false,"pos":{"x":58.3839,"y":1.3665,"z":80.8904},"rot":{"x":0.0208,"y":269.9998,"z":0.0168}},"823ad4":{"lock":false,"pos":{"x":53.2286,"y":1.3666,"z":87.8412},"rot":{"x":0.0208,"y":269.9795,"z":0.0168}},"87875a":{"lock":false,"pos":{"x":53.2286,"y":1.366,"z":85.5412},"rot":{"x":0.0208,"y":269.9794,"z":0.0168}},"88c1c4":{"lock":false,"pos":{"x":44.5133,"y":1.3608,"z":78.6608},"rot":{"x":0.0208,"y":269.9885,"z":0.0168}},"89d744":{"lock":false,"pos":{"x":44.5133,"y":1.3614,"z":80.9607},"rot":{"x":0.0208,"y":269.9886,"z":0.0168}},"8e63bb":{"lock":false,"pos":{"x":44.5133,"y":1.3601,"z":76.3607},"rot":{"x":0.0208,"y":269.9885,"z":0.0168}},"90bf93":{"lock":false,"pos":{"x":44.5153,"y":1.3547,"z":57.9605},"rot":{"x":0.0208,"y":270.0089,"z":0.0168}},"94b923":{"lock":false,"pos":{"x":49.5629,"y":1.366,"z":90.1528},"rot":{"x":0.0208,"y":270.0084,"z":0.0168}},"9a1801":{"lock":false,"pos":{"x":44.5133,"y":1.3581,"z":69.4607},"rot":{"x":0.0208,"y":269.9886,"z":0.0168}},"9ae60c":{"lock":false,"pos":{"x":44.5133,"y":1.3594,"z":74.0607},"rot":{"x":0.0208,"y":269.9885,"z":0.0168}},"9b9cda":{"lock":false,"pos":{"x":53.2126,"y":1.3552,"z":48.7453},"rot":{"x":0.0208,"y":270.0087,"z":0.0168}},"9ce3a6":{"lock":false,"pos":{"x":44.5133,"y":1.3641,"z":90.1608},"rot":{"x":0.0208,"y":269.9886,"z":0.0168}},"a17f94":{"lock":false,"pos":{"x":58.3839,"y":1.3685,"z":87.7904},"rot":{"x":0.0208,"y":269.9996,"z":0.0168}},"ad4592":{"lock":false,"pos":{"x":44.5132,"y":1.354,"z":55.6608},"rot":{"x":0.0208,"y":269.9885,"z":0.0168}},"b14c52":{"lock":false,"pos":{"x":44.5133,"y":1.3628,"z":85.5608},"rot":{"x":0.0208,"y":269.9885,"z":0.0168}},"b177dd":{"lock":false,"pos":{"x":53.2286,"y":1.3612,"z":69.4412},"rot":{"x":0.0208,"y":269.9764,"z":0.0168}},"c937fb":{"lock":false,"pos":{"x":53.2306,"y":1.3579,"z":57.941},"rot":{"x":0.0208,"y":269.9795,"z":0.0168}},"cad434":{"lock":false,"pos":{"x":53.2286,"y":1.3606,"z":67.1411},"rot":{"x":0.0208,"y":269.9765,"z":0.0168}},"cfd4bd":{"lock":false,"pos":{"x":44.5133,"y":1.3567,"z":64.8607},"rot":{"x":0.0208,"y":269.9885,"z":0.0168}},"d14982":{"lock":false,"pos":{"x":53.2286,"y":1.3592,"z":62.5412},"rot":{"x":0.0208,"y":269.9766,"z":0.0168}},"d36630":{"lock":false,"pos":{"x":44.4684,"y":1.3648,"z":92.4579},"rot":{"x":0.021,"y":269.4863,"z":0.0166}},"d3dcf1":{"lock":false,"pos":{"x":53.2286,"y":1.368,"z":92.4412},"rot":{"x":0.0208,"y":270.0037,"z":0.0168}},"d83fdf":{"lock":false,"pos":{"x":44.5133,"y":1.3588,"z":71.7607},"rot":{"x":0.0208,"y":269.9885,"z":0.0168}},"e4b538":{"lock":false,"pos":{"x":44.4975,"y":1.3527,"z":51.0713},"rot":{"x":0.0208,"y":269.9995,"z":0.0168}},"f0e28c":{"lock":false,"pos":{"x":44.5133,"y":1.3554,"z":60.2608},"rot":{"x":0.0208,"y":269.9884,"z":0.0168}},"f34341":{"lock":false,"pos":{"x":53.2286,"y":1.3673,"z":90.1413},"rot":{"x":0.0208,"y":269.9763,"z":0.0168}},"f6361c":{"lock":false,"pos":{"x":40.9602,"y":1.3635,"z":92.4487},"rot":{"x":0.0208,"y":270.0204,"z":0.0168}},"f8f561":{"lock":false,"pos":{"x":58.3839,"y":1.3671,"z":83.1904},"rot":{"x":0.0208,"y":269.9998,"z":0.0168}}}}' +MaterialIndex: -1 +MeshIndex: -1 +Name: Custom_Model_Bag +Nickname: Rogue +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 66.59372 + posY: 1.67021012 + posZ: 65.07521 + rotX: 0.02945916 + rotY: 270.0122 + rotZ: 0.0136993332 + scaleX: 1.2 + scaleY: 1.2 + scaleZ: 1.2 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue eaf093/Custom_Model_Bag Rogue 0a9de6/Card .41 Derringer f0e28c.yaml b/unpacked/Custom_Model_Bag Rogue eaf093/Custom_Model_Bag Rogue 0a9de6/Card .41 Derringer f0e28c.yaml new file mode 100644 index 000000000..822c1972a --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue eaf093/Custom_Model_Bag Rogue 0a9de6/Card .41 Derringer f0e28c.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: f0e28c +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: .41 Derringer +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.5133 + posY: 1.35538781 + posZ: 60.2608 + rotX: 0.0208126511 + rotY: 269.988373 + rotZ: 0.0167661272 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue eaf093/Custom_Model_Bag Rogue 0a9de6/Card .45 Thompson 34408e.yaml b/unpacked/Custom_Model_Bag Rogue eaf093/Custom_Model_Bag Rogue 0a9de6/Card .45 Thompson 34408e.yaml new file mode 100644 index 000000000..9cda8ff39 --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue eaf093/Custom_Model_Bag Rogue 0a9de6/Card .45 Thompson 34408e.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 34408e +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: .45 Thompson +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 40.96023 + posY: 1.36284614 + posZ: 90.14873 + rotX: 0.0208109561 + rotY: 269.9886 + rotZ: 0.0167659577 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue eaf093/Custom_Model_Bag Rogue 0a9de6/Card Backstab 099c3e.yaml b/unpacked/Custom_Model_Bag Rogue eaf093/Custom_Model_Bag Rogue 0a9de6/Card Backstab 099c3e.yaml new file mode 100644 index 000000000..d33217c15 --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue eaf093/Custom_Model_Bag Rogue 0a9de6/Card Backstab 099c3e.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 261616 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 099c3e +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Backstab +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 49.5628624 + posY: 1.36664486 + posZ: 92.4528 + rotX: 0.0208126549 + rotY: 269.982544 + rotZ: 0.0167639982 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue eaf093/Custom_Model_Bag Rogue 0a9de6/Card Burglary 88c1c4.yaml b/unpacked/Custom_Model_Bag Rogue eaf093/Custom_Model_Bag Rogue 0a9de6/Card Burglary 88c1c4.yaml new file mode 100644 index 000000000..d6be53d35 --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue eaf093/Custom_Model_Bag Rogue 0a9de6/Card Burglary 88c1c4.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 261522 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 88c1c4 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Burglary +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.5133 + posY: 1.3607738 + posZ: 78.6608 + rotX: 0.0208126158 + rotY: 269.988464 + rotZ: 0.0167667214 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue eaf093/Custom_Model_Bag Rogue 0a9de6/Card Cheap Shot 40ef49.yaml b/unpacked/Custom_Model_Bag Rogue eaf093/Custom_Model_Bag Rogue 0a9de6/Card Cheap Shot 40ef49.yaml new file mode 100644 index 000000000..b93d04799 --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue eaf093/Custom_Model_Bag Rogue 0a9de6/Card Cheap Shot 40ef49.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 261615 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 40ef49 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Cheap Shot +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 53.22862 + posY: 1.35652757 + posZ: 53.3411865 + rotX: 0.0208160039 + rotY: 269.9765 + rotZ: 0.01676232 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue eaf093/Custom_Model_Bag Rogue 0a9de6/Card Colt Vest Pocket 6aced5.yaml b/unpacked/Custom_Model_Bag Rogue eaf093/Custom_Model_Bag Rogue 0a9de6/Card Colt Vest Pocket 6aced5.yaml new file mode 100644 index 000000000..c82257247 --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue eaf093/Custom_Model_Bag Rogue 0a9de6/Card Colt Vest Pocket 6aced5.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 6aced5 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Colt Vest Pocket +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.5133 + posY: 1.3560611 + posZ: 62.5608 + rotX: 0.0208125263 + rotY: 269.988525 + rotZ: 0.0167662129 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue eaf093/Custom_Model_Bag Rogue 0a9de6/Card Contraband 94b923.yaml b/unpacked/Custom_Model_Bag Rogue eaf093/Custom_Model_Bag Rogue 0a9de6/Card Contraband 94b923.yaml new file mode 100644 index 000000000..69f79cdae --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue eaf093/Custom_Model_Bag Rogue 0a9de6/Card Contraband 94b923.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 261617 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 94b923 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Contraband +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 49.5628662 + posY: 1.36597157 + posZ: 90.15278 + rotX: 0.0208051372 + rotY: 270.008362 + rotZ: 0.0167728551 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue eaf093/Custom_Model_Bag Rogue 0a9de6/Card Coup de Grâce 5691d3.yaml b/unpacked/Custom_Model_Bag Rogue eaf093/Custom_Model_Bag Rogue 0a9de6/Card Coup de Grâce 5691d3.yaml new file mode 100644 index 000000000..3e120d6e6 --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue eaf093/Custom_Model_Bag Rogue 0a9de6/Card Coup de Grâce 5691d3.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 5691d3 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: "Coup de Gr\xE2ce" +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 53.2128 + posY: 1.35585165 + posZ: 51.0517464 + rotX: 0.0208102986 + rotY: 269.9951 + rotZ: 0.0167675354 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue eaf093/Custom_Model_Bag Rogue 0a9de6/Card Crystallizer of Dreams 89d744.yaml b/unpacked/Custom_Model_Bag Rogue eaf093/Custom_Model_Bag Rogue 0a9de6/Card Crystallizer of Dreams 89d744.yaml new file mode 100644 index 000000000..327abf6e3 --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue eaf093/Custom_Model_Bag Rogue 0a9de6/Card Crystallizer of Dreams 89d744.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 89d744 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Crystallizer of Dreams +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.5133 + posY: 1.361447 + posZ: 80.9607 + rotX: 0.0208126251 + rotY: 269.988647 + rotZ: 0.01676621 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue eaf093/Custom_Model_Bag Rogue 0a9de6/Card Cunning 169764.yaml b/unpacked/Custom_Model_Bag Rogue eaf093/Custom_Model_Bag Rogue 0a9de6/Card Cunning 169764.yaml new file mode 100644 index 000000000..1220c8424 --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue eaf093/Custom_Model_Bag Rogue 0a9de6/Card Cunning 169764.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 274206 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: '169764' +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Cunning +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 58.3839 + posY: 1.36983013 + posZ: 92.3904 + rotX: 0.0208092052 + rotY: 269.999817 + rotZ: 0.0167706273 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue eaf093/Custom_Model_Bag Rogue 0a9de6/Card Daring Maneuver 2323de.yaml b/unpacked/Custom_Model_Bag Rogue eaf093/Custom_Model_Bag Rogue 0a9de6/Card Daring Maneuver 2323de.yaml new file mode 100644 index 000000000..1bcce93a7 --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue eaf093/Custom_Model_Bag Rogue 0a9de6/Card Daring Maneuver 2323de.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 261606 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 2323de +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Daring Maneuver +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 53.2285919 + posY: 1.36527967 + posZ: 83.24124 + rotX: 0.0208160132 + rotY: 269.9765 + rotZ: 0.0167622566 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue eaf093/Custom_Model_Bag Rogue 0a9de6/Card Dario El-Amin 3a5caa.yaml b/unpacked/Custom_Model_Bag Rogue eaf093/Custom_Model_Bag Rogue 0a9de6/Card Dario El-Amin 3a5caa.yaml new file mode 100644 index 000000000..74652e492 --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue eaf093/Custom_Model_Bag Rogue 0a9de6/Card Dario El-Amin 3a5caa.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 261530 +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 + UniqueBack: false +Description: Unscrupulous Investor +GMNotes: '' +GUID: 3a5caa +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Dario El-Amin +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.4973755 + posY: 1.35201681 + posZ: 48.7640076 + rotX: 0.0208143555 + rotY: 269.986725 + rotZ: 0.0167680364 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue eaf093/Custom_Model_Bag Rogue 0a9de6/Card Decorated Skull d36630.yaml b/unpacked/Custom_Model_Bag Rogue eaf093/Custom_Model_Bag Rogue 0a9de6/Card Decorated Skull d36630.yaml new file mode 100644 index 000000000..8e2908432 --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue eaf093/Custom_Model_Bag Rogue 0a9de6/Card Decorated Skull d36630.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 261518 +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 + UniqueBack: false +Description: Doom Begets Doom +GMNotes: '' +GUID: d36630 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Decorated Skull +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.4684 + posY: 1.36479616 + posZ: 92.4579 + rotX: 0.0209585987 + rotY: 269.486328 + rotZ: 0.0165835153 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue eaf093/Custom_Model_Bag Rogue 0a9de6/Card Decoy b177dd.yaml b/unpacked/Custom_Model_Bag Rogue eaf093/Custom_Model_Bag Rogue 0a9de6/Card Decoy b177dd.yaml new file mode 100644 index 000000000..e7d274cc6 --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue eaf093/Custom_Model_Bag Rogue 0a9de6/Card Decoy b177dd.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: b177dd +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Decoy +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 53.2285767 + posY: 1.36124027 + posZ: 69.44123 + rotX: 0.0208144467 + rotY: 269.97644 + rotZ: 0.0167616252 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue eaf093/Custom_Model_Bag Rogue 0a9de6/Card Double or Nothing a17f94.yaml b/unpacked/Custom_Model_Bag Rogue eaf093/Custom_Model_Bag Rogue 0a9de6/Card Double or Nothing a17f94.yaml new file mode 100644 index 000000000..8ab9fb581 --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue eaf093/Custom_Model_Bag Rogue 0a9de6/Card Double or Nothing a17f94.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: a17f94 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Double or Nothing +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 58.3839 + posY: 1.36848366 + posZ: 87.7904 + rotX: 0.0208091084 + rotY: 269.9996 + rotZ: 0.0167704169 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue eaf093/Custom_Model_Bag Rogue 0a9de6/Card Eavesdrop 04484f.yaml b/unpacked/Custom_Model_Bag Rogue eaf093/Custom_Model_Bag Rogue 0a9de6/Card Eavesdrop 04484f.yaml new file mode 100644 index 000000000..1ac1aabc8 --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue eaf093/Custom_Model_Bag Rogue 0a9de6/Card Eavesdrop 04484f.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 261611 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 04484f +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Eavesdrop +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 53.22859 + posY: 1.36191356 + posZ: 71.74124 + rotX: 0.02081407 + rotY: 269.976532 + rotZ: 0.0167617463 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue eaf093/Custom_Model_Bag Rogue 0a9de6/Card Elusive cad434.yaml b/unpacked/Custom_Model_Bag Rogue eaf093/Custom_Model_Bag Rogue 0a9de6/Card Elusive cad434.yaml new file mode 100644 index 000000000..285c3a4db --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue eaf093/Custom_Model_Bag Rogue 0a9de6/Card Elusive cad434.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 261612 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: cad434 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Elusive +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 53.2285728 + posY: 1.360567 + posZ: 67.14111 + rotX: 0.0208160244 + rotY: 269.9765 + rotZ: 0.01676175 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue eaf093/Custom_Model_Bag Rogue 0a9de6/Card Followed 0cc3e7.yaml b/unpacked/Custom_Model_Bag Rogue eaf093/Custom_Model_Bag Rogue 0a9de6/Card Followed 0cc3e7.yaml new file mode 100644 index 000000000..9b9a0f584 --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue eaf093/Custom_Model_Bag Rogue 0a9de6/Card Followed 0cc3e7.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 380025 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 0cc3e7 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Followed +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 53.22856 + posY: 1.35989368 + posZ: 64.84109 + rotX: 0.02081004 + rotY: 269.997284 + rotZ: 0.0167697035 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue eaf093/Custom_Model_Bag Rogue 0a9de6/Card Gregory Gry 90bf93.yaml b/unpacked/Custom_Model_Bag Rogue eaf093/Custom_Model_Bag Rogue 0a9de6/Card Gregory Gry 90bf93.yaml new file mode 100644 index 000000000..65cef33b1 --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue eaf093/Custom_Model_Bag Rogue 0a9de6/Card Gregory Gry 90bf93.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Muckraker +GMNotes: '' +GUID: 90bf93 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Gregory Gry +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.5153275 + posY: 1.35471535 + posZ: 57.96055 + rotX: 0.0208056364 + rotY: 270.00885 + rotZ: 0.0167738646 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue eaf093/Custom_Model_Bag Rogue 0a9de6/Card Hard Knocks 9ae60c.yaml b/unpacked/Custom_Model_Bag Rogue eaf093/Custom_Model_Bag Rogue 0a9de6/Card Hard Knocks 9ae60c.yaml new file mode 100644 index 000000000..3ac4747f6 --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue eaf093/Custom_Model_Bag Rogue 0a9de6/Card Hard Knocks 9ae60c.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 9ae60c +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Hard Knocks +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.5133 + posY: 1.35942721 + posZ: 74.0607 + rotX: 0.0208125189 + rotY: 269.9885 + rotZ: 0.0167660527 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue eaf093/Custom_Model_Bag Rogue 0a9de6/Card Hatchet Man 7f446d.yaml b/unpacked/Custom_Model_Bag Rogue eaf093/Custom_Model_Bag Rogue 0a9de6/Card Hatchet Man 7f446d.yaml new file mode 100644 index 000000000..608819509 --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue eaf093/Custom_Model_Bag Rogue 0a9de6/Card Hatchet Man 7f446d.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 7f446d +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Hatchet Man +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 58.3839 + posY: 1.3664639 + posZ: 80.8904 + rotX: 0.0208090749 + rotY: 269.999817 + rotZ: 0.016770564 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue eaf093/Custom_Model_Bag Rogue 0a9de6/Card Henry Wan ad4592.yaml b/unpacked/Custom_Model_Bag Rogue eaf093/Custom_Model_Bag Rogue 0a9de6/Card Henry Wan ad4592.yaml new file mode 100644 index 000000000..b6443acb5 --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue eaf093/Custom_Model_Bag Rogue 0a9de6/Card Henry Wan ad4592.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Aspiring Actor +GMNotes: '' +GUID: ad4592 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Henry Wan +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.513237 + posY: 1.35404134 + posZ: 55.6607933 + rotX: 0.0208125524 + rotY: 269.988525 + rotZ: 0.0167661663 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue eaf093/Custom_Model_Bag Rogue 0a9de6/Card I'm outta here! 49d857.yaml b/unpacked/Custom_Model_Bag Rogue eaf093/Custom_Model_Bag Rogue 0a9de6/Card I'm outta here! 49d857.yaml new file mode 100644 index 000000000..9e1dfa2ff --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue eaf093/Custom_Model_Bag Rogue 0a9de6/Card I'm outta here! 49d857.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 261607 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 49d857 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '"I''m outta here!"' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 53.22859 + posY: 1.3646065 + posZ: 80.94124 + rotX: 0.020816505 + rotY: 269.975861 + rotZ: 0.0167619325 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue eaf093/Custom_Model_Bag Rogue 0a9de6/Card Intel Report d14982.yaml b/unpacked/Custom_Model_Bag Rogue eaf093/Custom_Model_Bag Rogue 0a9de6/Card Intel Report d14982.yaml new file mode 100644 index 000000000..e8b4bdb16 --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue eaf093/Custom_Model_Bag Rogue 0a9de6/Card Intel Report d14982.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: d14982 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Intel Report +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 53.2285767 + posY: 1.35922062 + posZ: 62.5412025 + rotX: 0.0208158679 + rotY: 269.976563 + rotZ: 0.0167622156 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue eaf093/Custom_Model_Bag Rogue 0a9de6/Card Investments 9ce3a6.yaml b/unpacked/Custom_Model_Bag Rogue eaf093/Custom_Model_Bag Rogue 0a9de6/Card Investments 9ce3a6.yaml new file mode 100644 index 000000000..90ea10f02 --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue eaf093/Custom_Model_Bag Rogue 0a9de6/Card Investments 9ce3a6.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 9ce3a6 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Investments +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.5133 + posY: 1.36413991 + posZ: 90.1608 + rotX: 0.0208125561 + rotY: 269.988556 + rotZ: 0.01676661 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue eaf093/Custom_Model_Bag Rogue 0a9de6/Card Joey The Rat Vigil e4b538.yaml b/unpacked/Custom_Model_Bag Rogue eaf093/Custom_Model_Bag Rogue 0a9de6/Card Joey The Rat Vigil e4b538.yaml new file mode 100644 index 000000000..533a9cfd2 --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue eaf093/Custom_Model_Bag Rogue 0a9de6/Card Joey The Rat Vigil e4b538.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 261529 +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 + UniqueBack: false +Description: 'Lookin'' Out For #1' +GMNotes: '' +GUID: e4b538 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Joey "The Rat" Vigil +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.4975471 + posY: 1.35269237 + posZ: 51.0713348 + rotX: 0.0208094586 + rotY: 269.999451 + rotZ: 0.0167705975 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue eaf093/Custom_Model_Bag Rogue 0a9de6/Card Knuckleduster cfd4bd.yaml b/unpacked/Custom_Model_Bag Rogue eaf093/Custom_Model_Bag Rogue 0a9de6/Card Knuckleduster cfd4bd.yaml new file mode 100644 index 000000000..43aad85bc --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue eaf093/Custom_Model_Bag Rogue 0a9de6/Card Knuckleduster cfd4bd.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 261527 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: cfd4bd +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Knuckleduster +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.5133 + posY: 1.35673428 + posZ: 64.8607 + rotX: 0.02081248 + rotY: 269.9885 + rotZ: 0.016766075 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue eaf093/Custom_Model_Bag Rogue 0a9de6/Card Leo de Luca f6361c.yaml b/unpacked/Custom_Model_Bag Rogue eaf093/Custom_Model_Bag Rogue 0a9de6/Card Leo de Luca f6361c.yaml new file mode 100644 index 000000000..97cd2e366 --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue eaf093/Custom_Model_Bag Rogue 0a9de6/Card Leo de Luca f6361c.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 261531 +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 + UniqueBack: false +Description: The Louisiana Lion +GMNotes: '' +GUID: f6361c +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Leo de Luca +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 40.96023 + posY: 1.36351931 + posZ: 92.4487152 + rotX: 0.0208015386 + rotY: 270.020355 + rotZ: 0.0167775266 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue eaf093/Custom_Model_Bag Rogue 0a9de6/Card Let God sort them out... d3dcf1.yaml b/unpacked/Custom_Model_Bag Rogue eaf093/Custom_Model_Bag Rogue 0a9de6/Card Let God sort them out... d3dcf1.yaml new file mode 100644 index 000000000..e359686c1 --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue eaf093/Custom_Model_Bag Rogue 0a9de6/Card Let God sort them out... d3dcf1.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: d3dcf1 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '"Let God sort them out..."' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 53.2285767 + posY: 1.36797261 + posZ: 92.44123 + rotX: 0.0208081659 + rotY: 270.003723 + rotZ: 0.01677222 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue eaf093/Custom_Model_Bag Rogue 0a9de6/Card Liquid Courage b14c52.yaml b/unpacked/Custom_Model_Bag Rogue eaf093/Custom_Model_Bag Rogue 0a9de6/Card Liquid Courage b14c52.yaml new file mode 100644 index 000000000..0904a5ae0 --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue eaf093/Custom_Model_Bag Rogue 0a9de6/Card Liquid Courage b14c52.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 261520 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: b14c52 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Liquid Courage +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.5133 + posY: 1.36279345 + posZ: 85.5608 + rotX: 0.02081259 + rotY: 269.9885 + rotZ: 0.0167661589 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue eaf093/Custom_Model_Bag Rogue 0a9de6/Card Lone Wolf 7d5924.yaml b/unpacked/Custom_Model_Bag Rogue eaf093/Custom_Model_Bag Rogue 0a9de6/Card Lone Wolf 7d5924.yaml new file mode 100644 index 000000000..3c449532a --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue eaf093/Custom_Model_Bag Rogue 0a9de6/Card Lone Wolf 7d5924.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 261519 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 7d5924 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Lone Wolf +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.5133 + posY: 1.36346674 + posZ: 87.8608 + rotX: 0.02081266 + rotY: 269.9886 + rotZ: 0.016766591 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue eaf093/Custom_Model_Bag Rogue 0a9de6/Card Lucky Cigarette Case d83fdf.yaml b/unpacked/Custom_Model_Bag Rogue eaf093/Custom_Model_Bag Rogue 0a9de6/Card Lucky Cigarette Case d83fdf.yaml new file mode 100644 index 000000000..204c03b66 --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue eaf093/Custom_Model_Bag Rogue 0a9de6/Card Lucky Cigarette Case d83fdf.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 261524 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: d83fdf +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Lucky Cigarette Case +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.5133 + posY: 1.358754 + posZ: 71.7607 + rotX: 0.0208122823 + rotY: 269.988464 + rotZ: 0.0167663228 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue eaf093/Custom_Model_Bag Rogue 0a9de6/Card Money Talks f34341.yaml b/unpacked/Custom_Model_Bag Rogue eaf093/Custom_Model_Bag Rogue 0a9de6/Card Money Talks f34341.yaml new file mode 100644 index 000000000..cc824e977 --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue eaf093/Custom_Model_Bag Rogue 0a9de6/Card Money Talks f34341.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 274207 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: f34341 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Money Talks +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 53.22859 + posY: 1.36729944 + posZ: 90.14125 + rotX: 0.0208159871 + rotY: 269.976318 + rotZ: 0.0167621188 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue eaf093/Custom_Model_Bag Rogue 0a9de6/Card Narrow Escape 1176e7.yaml b/unpacked/Custom_Model_Bag Rogue eaf093/Custom_Model_Bag Rogue 0a9de6/Card Narrow Escape 1176e7.yaml new file mode 100644 index 000000000..c39f6396e --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue eaf093/Custom_Model_Bag Rogue 0a9de6/Card Narrow Escape 1176e7.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 261608 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 1176e7 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Narrow Escape +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 53.22858 + posY: 1.36393321 + posZ: 78.6412354 + rotX: 0.0208160672 + rotY: 269.97644 + rotZ: 0.0167621057 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue eaf093/Custom_Model_Bag Rogue 0a9de6/Card Opportunist 642a2a.yaml b/unpacked/Custom_Model_Bag Rogue eaf093/Custom_Model_Bag Rogue 0a9de6/Card Opportunist 642a2a.yaml new file mode 100644 index 000000000..8a23d8702 --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue eaf093/Custom_Model_Bag Rogue 0a9de6/Card Opportunist 642a2a.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 642a2a +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Opportunist +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 58.3839 + posY: 1.36781037 + posZ: 85.4904 + rotX: 0.0208093543 + rotY: 269.999878 + rotZ: 0.0167706851 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue eaf093/Custom_Model_Bag Rogue 0a9de6/Card Pickpocketing 9a1801.yaml b/unpacked/Custom_Model_Bag Rogue eaf093/Custom_Model_Bag Rogue 0a9de6/Card Pickpocketing 9a1801.yaml new file mode 100644 index 000000000..52ef3cb47 --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue eaf093/Custom_Model_Bag Rogue 0a9de6/Card Pickpocketing 9a1801.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 261525 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 9a1801 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Pickpocketing +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.5133 + posY: 1.35808074 + posZ: 69.4607 + rotX: 0.0208125487 + rotY: 269.9886 + rotZ: 0.01676642 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue eaf093/Custom_Model_Bag Rogue 0a9de6/Card Quick Thinking f8f561.yaml b/unpacked/Custom_Model_Bag Rogue eaf093/Custom_Model_Bag Rogue 0a9de6/Card Quick Thinking f8f561.yaml new file mode 100644 index 000000000..7bbbd0573 --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue eaf093/Custom_Model_Bag Rogue 0a9de6/Card Quick Thinking f8f561.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: f8f561 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Quick Thinking +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 58.3839 + posY: 1.36713719 + posZ: 83.1904 + rotX: 0.0208093356 + rotY: 269.999817 + rotZ: 0.0167706143 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue eaf093/Custom_Model_Bag Rogue 0a9de6/Card Sleight of Hand 43bfac.yaml b/unpacked/Custom_Model_Bag Rogue eaf093/Custom_Model_Bag Rogue 0a9de6/Card Sleight of Hand 43bfac.yaml new file mode 100644 index 000000000..a567b65b9 --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue eaf093/Custom_Model_Bag Rogue 0a9de6/Card Sleight of Hand 43bfac.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 261610 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 43bfac +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Sleight of Hand +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 53.20279 + posY: 1.3625778 + posZ: 74.04223 + rotX: 0.0208145883 + rotY: 269.975739 + rotZ: 0.0167615488 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue eaf093/Custom_Model_Bag Rogue 0a9de6/Card Slip Away 6f9dbd.yaml b/unpacked/Custom_Model_Bag Rogue eaf093/Custom_Model_Bag Rogue 0a9de6/Card Slip Away 6f9dbd.yaml new file mode 100644 index 000000000..d3bd70817 --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue eaf093/Custom_Model_Bag Rogue 0a9de6/Card Slip Away 6f9dbd.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 261614 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 6f9dbd +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Slip Away +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 53.22849 + posY: 1.35720074 + posZ: 55.6412048 + rotX: 0.0208160542 + rotY: 269.976318 + rotZ: 0.01676212 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue eaf093/Custom_Model_Bag Rogue 0a9de6/Card Small Favor 754586.yaml b/unpacked/Custom_Model_Bag Rogue eaf093/Custom_Model_Bag Rogue 0a9de6/Card Small Favor 754586.yaml new file mode 100644 index 000000000..56011ceee --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue eaf093/Custom_Model_Bag Rogue 0a9de6/Card Small Favor 754586.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 378016 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: '754586' +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Small Favor +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 53.2285767 + posY: 1.35854721 + posZ: 60.2412033 + rotX: 0.0208161213 + rotY: 269.9765 + rotZ: 0.01676222 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue eaf093/Custom_Model_Bag Rogue 0a9de6/Card Sneak Attack c937fb.yaml b/unpacked/Custom_Model_Bag Rogue eaf093/Custom_Model_Bag Rogue 0a9de6/Card Sneak Attack c937fb.yaml new file mode 100644 index 000000000..857560d2c --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue eaf093/Custom_Model_Bag Rogue 0a9de6/Card Sneak Attack c937fb.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 261613 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: c937fb +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Sneak Attack +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 53.2306137 + posY: 1.35787475 + posZ: 57.9409828 + rotX: 0.0208154712 + rotY: 269.979462 + rotZ: 0.0167630613 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue eaf093/Custom_Model_Bag Rogue 0a9de6/Card Stealth 285e63.yaml b/unpacked/Custom_Model_Bag Rogue eaf093/Custom_Model_Bag Rogue 0a9de6/Card Stealth 285e63.yaml new file mode 100644 index 000000000..8e85b3125 --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue eaf093/Custom_Model_Bag Rogue 0a9de6/Card Stealth 285e63.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 261526 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 285e63 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Stealth +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.5133 + posY: 1.35740757 + posZ: 67.1607 + rotX: 0.0208125636 + rotY: 269.98877 + rotZ: 0.0167667288 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue eaf093/Custom_Model_Bag Rogue 0a9de6/Card Swift Reflexes 9b9cda.yaml b/unpacked/Custom_Model_Bag Rogue eaf093/Custom_Model_Bag Rogue 0a9de6/Card Swift Reflexes 9b9cda.yaml new file mode 100644 index 000000000..857bb20fe --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue eaf093/Custom_Model_Bag Rogue 0a9de6/Card Swift Reflexes 9b9cda.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 9b9cda +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Swift Reflexes +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 53.21264 + posY: 1.35517657 + posZ: 48.7452965 + rotX: 0.020806659 + rotY: 270.008728 + rotZ: 0.0167740025 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue eaf093/Custom_Model_Bag Rogue 0a9de6/Card Switchblade 3b03f4.yaml b/unpacked/Custom_Model_Bag Rogue eaf093/Custom_Model_Bag Rogue 0a9de6/Card Switchblade 3b03f4.yaml new file mode 100644 index 000000000..0a9b3dd8e --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue eaf093/Custom_Model_Bag Rogue 0a9de6/Card Switchblade 3b03f4.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 261521 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 3b03f4 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Switchblade +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.5133 + posY: 1.36212015 + posZ: 83.2607 + rotX: 0.0208123587 + rotY: 269.9885 + rotZ: 0.0167666432 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue eaf093/Custom_Model_Bag Rogue 0a9de6/Card Tennessee Sour Mash 3e205b.yaml b/unpacked/Custom_Model_Bag Rogue eaf093/Custom_Model_Bag Rogue 0a9de6/Card Tennessee Sour Mash 3e205b.yaml new file mode 100644 index 000000000..335359fb5 --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue eaf093/Custom_Model_Bag Rogue 0a9de6/Card Tennessee Sour Mash 3e205b.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 3e205b +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Tennessee Sour Mash +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.5133667 + posY: 1.35336816 + posZ: 53.360775 + rotX: 0.02080811 + rotY: 270.003662 + rotZ: 0.0167720541 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue eaf093/Custom_Model_Bag Rogue 0a9de6/Card Think on Your Feet 189f99.yaml b/unpacked/Custom_Model_Bag Rogue eaf093/Custom_Model_Bag Rogue 0a9de6/Card Think on Your Feet 189f99.yaml new file mode 100644 index 000000000..3152ee3f3 --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue eaf093/Custom_Model_Bag Rogue 0a9de6/Card Think on Your Feet 189f99.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 261609 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 189f99 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Think on Your Feet +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 53.22858 + posY: 1.36326 + posZ: 76.34123 + rotX: 0.02081608 + rotY: 269.976563 + rotZ: 0.0167623125 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue eaf093/Custom_Model_Bag Rogue 0a9de6/Card Watch this! 7cd9a9.yaml b/unpacked/Custom_Model_Bag Rogue eaf093/Custom_Model_Bag Rogue 0a9de6/Card Watch this! 7cd9a9.yaml new file mode 100644 index 000000000..38215e29c --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue eaf093/Custom_Model_Bag Rogue 0a9de6/Card Watch this! 7cd9a9.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 7cd9a9 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '"Watch this!"' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 58.3839 + posY: 1.36915684 + posZ: 90.0904 + rotX: 0.0208092928 + rotY: 269.999878 + rotZ: 0.0167707466 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue eaf093/Custom_Model_Bag Rogue 0a9de6/Card Well Connected 8e63bb.yaml b/unpacked/Custom_Model_Bag Rogue eaf093/Custom_Model_Bag Rogue 0a9de6/Card Well Connected 8e63bb.yaml new file mode 100644 index 000000000..3a2ce4a61 --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue eaf093/Custom_Model_Bag Rogue 0a9de6/Card Well Connected 8e63bb.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 274208 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 8e63bb +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Well Connected +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.5133 + posY: 1.36010051 + posZ: 76.3607 + rotX: 0.02081234 + rotY: 269.988525 + rotZ: 0.01676637 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue eaf093/Custom_Model_Bag Rogue 0a9de6/Card You handle this one! 823ad4.yaml b/unpacked/Custom_Model_Bag Rogue eaf093/Custom_Model_Bag Rogue 0a9de6/Card You handle this one! 823ad4.yaml new file mode 100644 index 000000000..1cca5e5bf --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue eaf093/Custom_Model_Bag Rogue 0a9de6/Card You handle this one! 823ad4.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 261605 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 823ad4 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '"You handle this one!"' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 53.22859 + posY: 1.36662626 + posZ: 87.84125 + rotX: 0.0208149888 + rotY: 269.9795 + rotZ: 0.016763078 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rogue eaf093/Custom_Model_Bag Rogue 0a9de6/Card You owe me one! 87875a.yaml b/unpacked/Custom_Model_Bag Rogue eaf093/Custom_Model_Bag Rogue 0a9de6/Card You owe me one! 87875a.yaml new file mode 100644 index 000000000..f4acc2850 --- /dev/null +++ b/unpacked/Custom_Model_Bag Rogue eaf093/Custom_Model_Bag Rogue 0a9de6/Card You owe me one! 87875a.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 87875a +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '"You owe me one!"' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 53.2285919 + posY: 1.365953 + posZ: 85.5412445 + rotX: 0.0208154861 + rotY: 269.9794 + rotZ: 0.01676323 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rulebooks, Guides and Tablets 304ffc.yaml b/unpacked/Custom_Model_Bag Rulebooks, Guides and Tablets 304ffc.yaml new file mode 100644 index 000000000..45e3cb095 --- /dev/null +++ b/unpacked/Custom_Model_Bag Rulebooks, Guides and Tablets 304ffc.yaml @@ -0,0 +1,64 @@ +Autoraise: true +ColorDiffuse: + b: 0.9999998 + g: 0.9921635 + r: 0.9999998 +ContainedObjects: +- !include 'Custom_Model_Bag Rulebooks, Guides and Tablets 304ffc/Tablet Suggested + Ambient Tracks 5b268d.yaml' +- !include 'Custom_Model_Bag Rulebooks, Guides and Tablets 304ffc/Tablet In-depth + Arkham Horror TTS tutorial 51cb8d.yaml' +- !include 'Custom_Model_Bag Rulebooks, Guides and Tablets 304ffc/Tablet Official + Learn to Play Video 39ec3d.yaml' +- !include 'Custom_Model_Bag Rulebooks, Guides and Tablets 304ffc/Custom_PDF Starter + Decklists 9cd82a.yaml' +- !include 'Custom_Model_Bag Rulebooks, Guides and Tablets 304ffc/Custom_PDF Official + FAQ 7fc24e.yaml' +- !include 'Custom_Model_Bag Rulebooks, Guides and Tablets 304ffc/Custom_PDF Learn + to Play 49f237.yaml' +CustomMesh: + CastShadows: true + ColliderURL: '' + Convex: true + CustomShader: + FresnelStrength: 0.1 + SpecularColor: + b: 0.745098054 + g: 0.8117647 + r: 0.8745098 + SpecularIntensity: 0.05 + SpecularSharpness: 3.60000014 + DiffuseURL: http://cloud-3.steamusercontent.com/ugc/863978359495062918/777CFB72754EC943DF113C1EC1CA495B07FCB6C1/ + MaterialIndex: 1 + MeshURL: http://cloud-3.steamusercontent.com/ugc/863978359495064406/50966C05FB8C4D41BA069EB5E0E19E95BF3A9963/ + NormalURL: '' + TypeIndex: 6 +Description: Official Guides, FAQ, tutorial videos and more! +GMNotes: '' +GUID: 304ffc +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: true +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +MeshIndex: -1 +Name: Custom_Model_Bag +Nickname: Rulebooks, Guides and Tablets +Snap: true +Sticky: false +Tooltip: true +Transform: + posX: 36.7290764 + posY: 1.88627481 + posZ: -34.1777573 + rotX: 87.40022 + rotY: 315.60733 + rotZ: 178.94249 + scaleX: 3.0 + scaleY: 3.0 + scaleZ: 3.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rulebooks, Guides and Tablets 304ffc/Custom_PDF Learn to Play 49f237.yaml b/unpacked/Custom_Model_Bag Rulebooks, Guides and Tablets 304ffc/Custom_PDF Learn to Play 49f237.yaml new file mode 100644 index 000000000..efe3aaf50 --- /dev/null +++ b/unpacked/Custom_Model_Bag Rulebooks, Guides and Tablets 304ffc/Custom_PDF Learn to Play 49f237.yaml @@ -0,0 +1,37 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +CustomPDF: + PDFPage: 0 + PDFPageOffset: 0 + PDFPassword: '' + PDFUrl: https://images-cdn.fantasyflightgames.com/filer_public/88/53/88538d11-5274-4b4a-ac8c-e8d758f71132/ahc01_learn_to_play_web.pdf +Description: '' +GMNotes: '' +GUID: 49f237 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_PDF +Nickname: Learn to Play +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 20.4516544 + posY: 2.28749228 + posZ: -70.7185 + rotX: 359.96524 + rotY: 269.9936 + rotZ: 0.3083264 + scaleX: 2.5 + scaleY: 1.0 + scaleZ: 2.5 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rulebooks, Guides and Tablets 304ffc/Custom_PDF Official FAQ 7fc24e.yaml b/unpacked/Custom_Model_Bag Rulebooks, Guides and Tablets 304ffc/Custom_PDF Official FAQ 7fc24e.yaml new file mode 100644 index 000000000..073ba650b --- /dev/null +++ b/unpacked/Custom_Model_Bag Rulebooks, Guides and Tablets 304ffc/Custom_PDF Official FAQ 7fc24e.yaml @@ -0,0 +1,37 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +CustomPDF: + PDFPage: 0 + PDFPageOffset: 0 + PDFPassword: '' + PDFUrl: https://images-cdn.fantasyflightgames.com/filer_public/3a/f1/3af12e4b-68f2-4e63-981b-39ab5069d2dd/ahc_faq_v15.pdf +Description: '' +GMNotes: '' +GUID: 7fc24e +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: true +LuaScript: '' +LuaScriptState: '' +Name: Custom_PDF +Nickname: Official FAQ +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 7.771841 + posY: 0.535418153 + posZ: -34.95191 + rotX: 359.9218 + rotY: 269.993347 + rotZ: 0.0165262166 + scaleX: 2.5 + scaleY: 1.0 + scaleZ: 2.5 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rulebooks, Guides and Tablets 304ffc/Custom_PDF Starter Decklists 9cd82a.yaml b/unpacked/Custom_Model_Bag Rulebooks, Guides and Tablets 304ffc/Custom_PDF Starter Decklists 9cd82a.yaml new file mode 100644 index 000000000..eeea23c85 --- /dev/null +++ b/unpacked/Custom_Model_Bag Rulebooks, Guides and Tablets 304ffc/Custom_PDF Starter Decklists 9cd82a.yaml @@ -0,0 +1,37 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +CustomPDF: + PDFPage: 0 + PDFPageOffset: 0 + PDFPassword: '' + PDFUrl: https://images-cdn.fantasyflightgames.com/filer_public/3f/6e/3f6e6e3d-ed7e-4f69-94b3-a3900386c617/ahc_decklists_v6.pdf +Description: '' +GMNotes: '' +GUID: 9cd82a +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: true +LuaScript: '' +LuaScriptState: '' +Name: Custom_PDF +Nickname: Starter Decklists +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 7.771841 + posY: 0.535418153 + posZ: -34.95191 + rotX: 6.72785568 + rotY: 271.085632 + rotZ: 9.095105 + scaleX: 2.5 + scaleY: 1.0 + scaleZ: 2.5 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rulebooks, Guides and Tablets 304ffc/Tablet In-depth Arkham Horror TTS tutorial 51cb8d.yaml b/unpacked/Custom_Model_Bag Rulebooks, Guides and Tablets 304ffc/Tablet In-depth Arkham Horror TTS tutorial 51cb8d.yaml new file mode 100644 index 000000000..87a12ee00 --- /dev/null +++ b/unpacked/Custom_Model_Bag Rulebooks, Guides and Tablets 304ffc/Tablet In-depth Arkham Horror TTS tutorial 51cb8d.yaml @@ -0,0 +1,34 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +Description: YouTube +GMNotes: '' +GUID: 51cb8d +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Tablet +Nickname: In-depth Arkham Horror TTS tutorial +Snap: true +Sticky: true +Tablet: + PageURL: https://www.youtube.com/watch?v=5sCmJ3e4Uos +Tooltip: true +Transform: + posX: 11.3187313 + posY: 2.76656055 + posZ: 9.042761 + rotX: 359.920135 + rotY: 269.997437 + rotZ: 0.016877193 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rulebooks, Guides and Tablets 304ffc/Tablet Official Learn to Play Video 39ec3d.yaml b/unpacked/Custom_Model_Bag Rulebooks, Guides and Tablets 304ffc/Tablet Official Learn to Play Video 39ec3d.yaml new file mode 100644 index 000000000..d4a5b1a7b --- /dev/null +++ b/unpacked/Custom_Model_Bag Rulebooks, Guides and Tablets 304ffc/Tablet Official Learn to Play Video 39ec3d.yaml @@ -0,0 +1,34 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +Description: YouTube +GMNotes: '' +GUID: 39ec3d +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Tablet +Nickname: Official Learn to Play Video +Snap: true +Sticky: true +Tablet: + PageURL: https://www.youtube.com/watch?v=zzliu_-xNNQ +Tooltip: true +Transform: + posX: 14.8830585 + posY: 2.760245 + posZ: 3.64197063 + rotX: 359.920135 + rotY: 270.000244 + rotZ: 0.0168493912 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Rulebooks, Guides and Tablets 304ffc/Tablet Suggested Ambient Tracks 5b268d.yaml b/unpacked/Custom_Model_Bag Rulebooks, Guides and Tablets 304ffc/Tablet Suggested Ambient Tracks 5b268d.yaml new file mode 100644 index 000000000..e86a76790 --- /dev/null +++ b/unpacked/Custom_Model_Bag Rulebooks, Guides and Tablets 304ffc/Tablet Suggested Ambient Tracks 5b268d.yaml @@ -0,0 +1,34 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +Description: '' +GMNotes: '' +GUID: 5b268d +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Tablet +Nickname: Suggested Ambient Tracks +Snap: true +Sticky: true +Tablet: + PageURL: https://itswritingitself.wordpress.com/2020/01/28/ahlcg-arkham-horror-the-card-game-the-soundtrack/ +Tooltip: true +Transform: + posX: 20.093956 + posY: 6.51958036 + posZ: -16.1747456 + rotX: 359.9201 + rotY: 270.018 + rotZ: 0.0168568231 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 37a0cb.ttslua b/unpacked/Custom_Model_Bag Seeker 37a0cb.ttslua new file mode 100644 index 000000000..857093fb8 --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 37a0cb.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,0,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 + 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=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,0,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,0,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,0,0}, height=350, width=750, + 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}, rotation={0,0,0}, height=350, width=800, + font_size=250, color={0,0,0}, font_color={1,1,1} + }) +-- self.createButton({ +-- label="Setup", click_function="buttonClick_setup", function_owner=self, +-- position={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.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 \ No newline at end of file diff --git a/unpacked/Custom_Model_Bag Seeker 37a0cb.yaml b/unpacked/Custom_Model_Bag Seeker 37a0cb.yaml new file mode 100644 index 000000000..a8c3f86c3 --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 37a0cb.yaml @@ -0,0 +1,104 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +ContainedObjects: +- !include 'Custom_Model_Bag Seeker 37a0cb/Card Surprising Find (1) e2ec72.yaml' +- !include 'Custom_Model_Bag Seeker 37a0cb/Card Deduction (2) ec6c05.yaml' +- !include 'Custom_Model_Bag Seeker 37a0cb/Card The Eye of Truth (5) 7056b3.yaml' +- !include 'Custom_Model_Bag Seeker 37a0cb/Card Preposterous Sketches (2) 9ad0d0.yaml' +- !include 'Custom_Model_Bag Seeker 37a0cb/Card Forewarned (1) 5ee980.yaml' +- !include 'Custom_Model_Bag Seeker 37a0cb/Card Expose Weakness (1) 77fce5.yaml' +- !include 'Custom_Model_Bag Seeker 37a0cb/Card Shortcut (2) 4d7114.yaml' +- !include 'Custom_Model_Bag Seeker 37a0cb/Card Eidetic Memory (3) 7ce94b.yaml' +- !include 'Custom_Model_Bag Seeker 37a0cb/Card Expose Weakness (3) 31cebe.yaml' +- !include 'Custom_Model_Bag Seeker 37a0cb/Card Barricade (3) b65fe8.yaml' +- !include 'Custom_Model_Bag Seeker 37a0cb/Card Cryptic Research (4) 275caa.yaml' +- !include 'Custom_Model_Bag Seeker 37a0cb/Card Logical Reasoning (4) f10dfb.yaml' +- !include 'Custom_Model_Bag Seeker 37a0cb/Card No Stone Unturned (5) 83fe7a.yaml' +- !include 'Custom_Model_Bag Seeker 37a0cb/Card Deciphered Reality (5) 2e932d.yaml' +- !include 'Custom_Model_Bag Seeker 37a0cb/Card Glimpse the Unthinkable (5) ff31e9.yaml' +- !include 'Custom_Model_Bag Seeker 37a0cb/Card Extensive Research (1) 9dc10d.yaml' +- !include 'Custom_Model_Bag Seeker 37a0cb/Card Archaic Glyphs (3) 7358db.yaml' +- !include 'Custom_Model_Bag Seeker 37a0cb/Card Archaic Glyphs (3) 25d0c7.yaml' +- !include 'Custom_Model_Bag Seeker 37a0cb/Card Archaic Glyphs (3) 42e258.yaml' +- !include 'Custom_Model_Bag Seeker 37a0cb/Card Scroll of Secrets (3) ec299c.yaml' +- !include 'Custom_Model_Bag Seeker 37a0cb/Card Studious (3) 31f742.yaml' +- !include 'Custom_Model_Bag Seeker 37a0cb/Card Higher Education (3) 941d4e.yaml' +- !include 'Custom_Model_Bag Seeker 37a0cb/Card Pnakotic Manuscripts (5) 04f94b.yaml' +- !include 'Custom_Model_Bag Seeker 37a0cb/Card Arcane Insight (4) 80a935.yaml' +- !include 'Custom_Model_Bag Seeker 37a0cb/Card Otherworld Codex (2) c1b8cf.yaml' +- !include 'Custom_Model_Bag Seeker 37a0cb/Card Disc of Itzamna (2) 2a6577.yaml' +- !include 'Custom_Model_Bag Seeker 37a0cb/Card Ancient Stone (4) feaf98.yaml' +- !include 'Custom_Model_Bag Seeker 37a0cb/Card Ancient Stone (4) 2b3765.yaml' +- !include 'Custom_Model_Bag Seeker 37a0cb/Card Strange Solution (4) 480577.yaml' +- !include 'Custom_Model_Bag Seeker 37a0cb/Card Strange Solution (4) 2f833c.yaml' +- !include 'Custom_Model_Bag Seeker 37a0cb/Card Strange Solution (4) 760825.yaml' +- !include 'Custom_Model_Bag Seeker 37a0cb/Card Strange Solution (4) c11ecd.yaml' +- !include 'Custom_Model_Bag Seeker 37a0cb/Card Abigail Foreman (4) 2c40b6.yaml' +- !include 'Custom_Model_Bag Seeker 37a0cb/Card Grisly Totem (3) 34dc0e.yaml' +- !include 'Custom_Model_Bag Seeker 37a0cb/Card Segment of Onyx (1) 24e9e7.yaml' +- !include 'Custom_Model_Bag Seeker 37a0cb/Card Pathfinder (1) 31e766.yaml' +- !include 'Custom_Model_Bag Seeker 37a0cb/Card In the Know (1) bf7959.yaml' +- !include 'Custom_Model_Bag Seeker 37a0cb/Card Hyperawareness (2) 030179.yaml' +- !include 'Custom_Model_Bag Seeker 37a0cb/Card Encyclopedia (2) f79872.yaml' +- !include 'Custom_Model_Bag Seeker 37a0cb/Card Quick Study (2) 12b831.yaml' +- !include 'Custom_Model_Bag Seeker 37a0cb/Card Otherworldly Compass (2) 6b151e.yaml' +- !include 'Custom_Model_Bag Seeker 37a0cb/Card Ancient Stone (1) 8729dc.yaml' +- !include 'Custom_Model_Bag Seeker 37a0cb/Card Old Book of Lore (3) 9082dd.yaml' +- !include 'Custom_Model_Bag Seeker 37a0cb/Card Feed the Mind (3) 64f190.yaml' +- !include 'Custom_Model_Bag Seeker 37a0cb/Card Dream Diary (3) c6b53c.yaml' +- !include 'Custom_Model_Bag Seeker 37a0cb/Card Dream Diary (3) d74e2e.yaml' +- !include 'Custom_Model_Bag Seeker 37a0cb/Card Dream Diary (3) 63156b.yaml' +- !include "Custom_Model_Bag Seeker 37a0cb/Card Death \u2022 XIII (1) f5cdef.yaml" +- !include 'Custom_Model_Bag Seeker 37a0cb/Card Esoteric Atlas (1) 5c775c.yaml' +- !include 'Custom_Model_Bag Seeker 37a0cb/Card Magnifying Glass (1) feb59d.yaml' +- !include 'Custom_Model_Bag Seeker 37a0cb/Card Scientific Theory (1) 588be0.yaml' +- !include 'Custom_Model_Bag Seeker 37a0cb/Custom_Model_Bag Seeker da123b.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/952965722516265983/F50A6212D30C442429ED22B8CC8FD24D4CB76A2A/ + MaterialIndex: 3 + MeshURL: https://pastebin.com/raw/ALrYhQGb + NormalURL: '' + TypeIndex: 6 +Description: '' +GMNotes: '' +GUID: 37a0cb +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: true +LuaScript: !include 'Custom_Model_Bag Seeker 37a0cb.ttslua' +LuaScriptState: '{"ml":{"030179":{"lock":false,"pos":{"x":10.6297,"y":1.3822,"z":-65.7481},"rot":{"x":0.0208,"y":269.9998,"z":0.0168}},"04f94b":{"lock":false,"pos":{"x":7.0767,"y":1.3768,"z":-79.56},"rot":{"x":0.0208,"y":269.9998,"z":0.0168}},"12b831":{"lock":false,"pos":{"x":10.6297,"y":1.3815,"z":-68.0481},"rot":{"x":0.0208,"y":269.9997,"z":0.0168}},"24e9e7":{"lock":false,"pos":{"x":10.6297,"y":1.3842,"z":-58.8484},"rot":{"x":0.0208,"y":269.9998,"z":0.0168}},"25d0c7":{"lock":false,"pos":{"x":10.6139,"y":1.3754,"z":-88.74},"rot":{"x":0.0208,"y":270,"z":0.0168}},"275caa":{"lock":false,"pos":{"x":19.3437,"y":1.3506,"z":-63.4679},"rot":{"x":0.0208,"y":269.9999,"z":0.0168}},"2a6577":{"lock":false,"pos":{"x":10.6296,"y":1.3795,"z":-74.9481},"rot":{"x":0.0208,"y":269.9998,"z":0.0168}},"2b3765":{"lock":false,"pos":{"x":7.0765,"y":1.3789,"z":-72.6601},"rot":{"x":0.0208,"y":269.9998,"z":0.0168}},"2c40b6":{"lock":false,"pos":{"x":7.0765,"y":1.3822,"z":-61.1605},"rot":{"x":0.0208,"y":269.9997,"z":0.0168}},"2e932d":{"lock":false,"pos":{"x":19.3437,"y":1.3486,"z":-70.3675},"rot":{"x":0.0208,"y":269.9998,"z":0.0168}},"2f833c":{"lock":false,"pos":{"x":7.0766,"y":1.3802,"z":-68.0601},"rot":{"x":0.0208,"y":270,"z":0.0168}},"31cebe":{"lock":false,"pos":{"x":19.3437,"y":1.352,"z":-58.8679},"rot":{"x":0.0208,"y":269.9998,"z":0.0168}},"31e766":{"lock":false,"pos":{"x":10.6296,"y":1.3829,"z":-63.4484},"rot":{"x":0.0208,"y":269.9998,"z":0.0168}},"31f742":{"lock":false,"pos":{"x":10.6317,"y":1.3775,"z":-81.8482},"rot":{"x":0.0208,"y":269.9997,"z":0.0168}},"34dc0e":{"lock":false,"pos":{"x":7.0766,"y":1.3829,"z":-58.8605},"rot":{"x":0.0208,"y":269.9996,"z":0.0168}},"42e258":{"lock":false,"pos":{"x":10.6244,"y":1.3761,"z":-86.4276},"rot":{"x":0.0209,"y":269.6711,"z":0.0167}},"480577":{"lock":false,"pos":{"x":7.0765,"y":1.3795,"z":-70.3601},"rot":{"x":0.0208,"y":269.9997,"z":0.0168}},"4d7114":{"lock":false,"pos":{"x":19.3437,"y":1.3533,"z":-54.2679},"rot":{"x":0.0208,"y":270.0014,"z":0.0168}},"588be0":{"lock":false,"pos":{"x":10.6297,"y":1.3855,"z":-54.2484},"rot":{"x":0.0208,"y":269.9998,"z":0.0168}},"5c775c":{"lock":false,"pos":{"x":10.6296,"y":1.3869,"z":-49.6484},"rot":{"x":0.0208,"y":270.006,"z":0.0168}},"5ee980":{"lock":false,"pos":{"x":19.3437,"y":1.3546,"z":-49.6679},"rot":{"x":0.0208,"y":269.9998,"z":0.0168}},"63156b":{"lock":false,"pos":{"x":7.0766,"y":1.3863,"z":-47.3605},"rot":{"x":0.0208,"y":270.0005,"z":0.0168}},"64f190":{"lock":false,"pos":{"x":7.0766,"y":1.3843,"z":-54.2605},"rot":{"x":0.0208,"y":269.9998,"z":0.0168}},"6b151e":{"lock":false,"pos":{"x":10.6297,"y":1.3802,"z":-72.6481},"rot":{"x":0.0208,"y":269.9997,"z":0.0168}},"7056b3":{"lock":false,"pos":{"x":24.5003,"y":1.3558,"z":-52.0186},"rot":{"x":0.0208,"y":269.971,"z":0.0168}},"7358db":{"lock":false,"pos":{"x":10.6137,"y":1.3748,"z":-91.04},"rot":{"x":0.0208,"y":269.9998,"z":0.0168}},"760825":{"lock":false,"pos":{"x":7.0766,"y":1.3809,"z":-65.7601},"rot":{"x":0.0208,"y":269.9998,"z":0.0168}},"77fce5":{"lock":false,"pos":{"x":19.3437,"y":1.3553,"z":-47.3679},"rot":{"x":0.0208,"y":269.9998,"z":0.0168}},"7ce94b":{"lock":false,"pos":{"x":19.3437,"y":1.3526,"z":-56.5679},"rot":{"x":0.0208,"y":269.9998,"z":0.0168}},"80a935":{"lock":false,"pos":{"x":7.0765,"y":1.3775,"z":-77.26},"rot":{"x":0.0208,"y":269.9997,"z":0.0168}},"83fe7a":{"lock":false,"pos":{"x":19.3437,"y":1.3493,"z":-68.0675},"rot":{"x":0.0208,"y":269.9998,"z":0.0168}},"8729dc":{"lock":false,"pos":{"x":10.6297,"y":1.3849,"z":-56.5484},"rot":{"x":0.0208,"y":269.9998,"z":0.0168}},"9082dd":{"lock":false,"pos":{"x":7.0766,"y":1.3836,"z":-56.5605},"rot":{"x":0.0208,"y":269.9716,"z":0.0168}},"941d4e":{"lock":false,"pos":{"x":10.6297,"y":1.3781,"z":-79.548},"rot":{"x":0.0208,"y":269.9998,"z":0.0168}},"9ad0d0":{"lock":false,"pos":{"x":19.3437,"y":1.354,"z":-51.9679},"rot":{"x":0.0208,"y":270.0023,"z":0.0168}},"9dc10d":{"lock":false,"pos":{"x":19.3437,"y":1.3472,"z":-74.9677},"rot":{"x":0.0208,"y":270.0149,"z":0.0168}},"b65fe8":{"lock":false,"pos":{"x":19.3437,"y":1.3513,"z":-61.1679},"rot":{"x":0.0208,"y":269.9998,"z":0.0168}},"bf7959":{"lock":false,"pos":{"x":10.6296,"y":1.3835,"z":-61.1485},"rot":{"x":0.0208,"y":269.9998,"z":0.0168}},"c11ecd":{"lock":false,"pos":{"x":7.0765,"y":1.3816,"z":-63.4605},"rot":{"x":0.0208,"y":269.9997,"z":0.0168}},"c1b8cf":{"lock":false,"pos":{"x":10.6297,"y":1.3788,"z":-77.248},"rot":{"x":0.0208,"y":269.9976,"z":0.0168}},"c6b53c":{"lock":false,"pos":{"x":7.0766,"y":1.3849,"z":-51.9605},"rot":{"x":0.0208,"y":270.0006,"z":0.0168}},"d74e2e":{"lock":false,"pos":{"x":7.0766,"y":1.3856,"z":-49.6605},"rot":{"x":0.0208,"y":270.0005,"z":0.0168}},"e2ec72":{"lock":false,"pos":{"x":24.5003,"y":1.3572,"z":-47.4186},"rot":{"x":0.0208,"y":269.9956,"z":0.0168}},"ec299c":{"lock":false,"pos":{"x":10.6295,"y":1.3768,"z":-84.1523},"rot":{"x":0.0209,"y":269.7059,"z":0.0167}},"ec6c05":{"lock":false,"pos":{"x":24.5003,"y":1.3565,"z":-49.7185},"rot":{"x":0.0208,"y":269.9998,"z":0.0168}},"f10dfb":{"lock":false,"pos":{"x":19.3437,"y":1.3499,"z":-65.7675},"rot":{"x":0.0208,"y":269.9998,"z":0.0168}},"f5cdef":{"lock":false,"pos":{"x":10.6297,"y":1.3876,"z":-47.3484},"rot":{"x":0.0208,"y":269.9714,"z":0.0168}},"f79872":{"lock":false,"pos":{"x":10.6297,"y":1.3808,"z":-70.3481},"rot":{"x":0.0208,"y":269.9998,"z":0.0168}},"feaf98":{"lock":false,"pos":{"x":7.0765,"y":1.3782,"z":-74.9601},"rot":{"x":0.0208,"y":269.9995,"z":0.0168}},"feb59d":{"lock":false,"pos":{"x":10.6297,"y":1.3862,"z":-51.9484},"rot":{"x":0.0208,"y":269.9999,"z":0.0168}},"ff31e9":{"lock":false,"pos":{"x":19.3437,"y":1.3479,"z":-72.6677},"rot":{"x":0.0208,"y":269.9998,"z":0.0168}}}}' +MaterialIndex: -1 +MeshIndex: -1 +Name: Custom_Model_Bag +Nickname: Seeker +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 32.70491 + posY: 1.40202034 + posZ: -69.3611 + rotX: 0.0208051782 + rotY: 270.019775 + rotZ: 0.0167773571 + scaleX: 1.2 + scaleY: 1.2 + scaleZ: 1.2 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 37a0cb/Card Abigail Foreman (4) 2c40b6.yaml b/unpacked/Custom_Model_Bag Seeker 37a0cb/Card Abigail Foreman (4) 2c40b6.yaml new file mode 100644 index 000000000..d95cbfb7d --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 37a0cb/Card Abigail Foreman (4) 2c40b6.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Library Intern +GMNotes: '' +GUID: 2c40b6 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Abigail Foreman (4) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 7.07654858 + posY: 1.38223076 + posZ: -61.16049 + rotX: 0.0208098721 + rotY: 269.9997 + rotZ: 0.0167707484 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 37a0cb/Card Ancient Stone (1) 8729dc.yaml b/unpacked/Custom_Model_Bag Seeker 37a0cb/Card Ancient Stone (1) 8729dc.yaml new file mode 100644 index 000000000..2f9516d9d --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 37a0cb/Card Ancient Stone (1) 8729dc.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 291539 +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 + UniqueBack: false +Description: Unidentified +GMNotes: '' +GUID: 8729dc +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Ancient Stone (1) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.6296577 + posY: 1.38487124 + posZ: -56.5484428 + rotX: 0.0208099652 + rotY: 269.9998 + rotZ: 0.0167705845 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 37a0cb/Card Ancient Stone (4) 2b3765.yaml b/unpacked/Custom_Model_Bag Seeker 37a0cb/Card Ancient Stone (4) 2b3765.yaml new file mode 100644 index 000000000..2c12c4140 --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 37a0cb/Card Ancient Stone (4) 2b3765.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Minds in Harmony +GMNotes: '' +GUID: 2b3765 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Ancient Stone (4) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 7.076547 + posY: 1.37886477 + posZ: -72.66011 + rotX: 0.0208074581 + rotY: 269.999756 + rotZ: 0.0167683382 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 37a0cb/Card Ancient Stone (4) feaf98.yaml b/unpacked/Custom_Model_Bag Seeker 37a0cb/Card Ancient Stone (4) feaf98.yaml new file mode 100644 index 000000000..faa92278c --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 37a0cb/Card Ancient Stone (4) feaf98.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Knowledge of the Elders +GMNotes: '' +GUID: feaf98 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Ancient Stone (4) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 7.076524 + posY: 1.37819147 + posZ: -74.960144 + rotX: 0.0208073482 + rotY: 269.999451 + rotZ: 0.0167679433 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 37a0cb/Card Arcane Insight (4) 80a935.yaml b/unpacked/Custom_Model_Bag Seeker 37a0cb/Card Arcane Insight (4) 80a935.yaml new file mode 100644 index 000000000..553b40d28 --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 37a0cb/Card Arcane Insight (4) 80a935.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 291559 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 80a935 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Arcane Insight (4) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 7.07653236 + posY: 1.3775183 + posZ: -77.26004 + rotX: 0.02080761 + rotY: 269.9997 + rotZ: 0.0167677756 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 37a0cb/Card Archaic Glyphs (3) 25d0c7.yaml b/unpacked/Custom_Model_Bag Seeker 37a0cb/Card Archaic Glyphs (3) 25d0c7.yaml new file mode 100644 index 000000000..2cf548584 --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 37a0cb/Card Archaic Glyphs (3) 25d0c7.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Markings of Isis +GMNotes: '' +GUID: 25d0c7 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Archaic Glyphs (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.61387 + posY: 1.37544262 + posZ: -88.74 + rotX: 0.0208074879 + rotY: 270.0 + rotZ: 0.01676852 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 37a0cb/Card Archaic Glyphs (3) 42e258.yaml b/unpacked/Custom_Model_Bag Seeker 37a0cb/Card Archaic Glyphs (3) 42e258.yaml new file mode 100644 index 000000000..8aa74dca1 --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 37a0cb/Card Archaic Glyphs (3) 42e258.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 291552 +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 + UniqueBack: false +Description: Guiding Stones +GMNotes: '' +GUID: 42e258 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Archaic Glyphs (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.6244345 + posY: 1.37612331 + posZ: -86.42762 + rotX: 0.0209042653 + rotY: 269.671143 + rotZ: 0.0166502763 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 37a0cb/Card Archaic Glyphs (3) 7358db.yaml b/unpacked/Custom_Model_Bag Seeker 37a0cb/Card Archaic Glyphs (3) 7358db.yaml new file mode 100644 index 000000000..a4c133c60 --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 37a0cb/Card Archaic Glyphs (3) 7358db.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 291553 +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 + UniqueBack: false +Description: Prophecy Foretold +GMNotes: '' +GUID: 7358db +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Archaic Glyphs (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.6137171 + posY: 1.37476933 + posZ: -91.04 + rotX: 0.0208073389 + rotY: 269.9998 + rotZ: 0.0167684928 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 37a0cb/Card Barricade (3) b65fe8.yaml b/unpacked/Custom_Model_Bag Seeker 37a0cb/Card Barricade (3) b65fe8.yaml new file mode 100644 index 000000000..2d417e01e --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 37a0cb/Card Barricade (3) b65fe8.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 291551 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: b65fe8 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Barricade (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.34366 + posY: 1.35127985 + posZ: -61.16791 + rotX: 0.0208083317 + rotY: 269.999756 + rotZ: 0.0167689584 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 37a0cb/Card Cryptic Research (4) 275caa.yaml b/unpacked/Custom_Model_Bag Seeker 37a0cb/Card Cryptic Research (4) 275caa.yaml new file mode 100644 index 000000000..b5109d32f --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 37a0cb/Card Cryptic Research (4) 275caa.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 291557 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 275caa +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Cryptic Research (4) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.3436565 + posY: 1.35060656 + posZ: -63.4678955 + rotX: 0.0208083857 + rotY: 269.999939 + rotZ: 0.0167695321 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 37a0cb/Card Death • XIII (1) f5cdef.yaml b/unpacked/Custom_Model_Bag Seeker 37a0cb/Card Death • XIII (1) f5cdef.yaml new file mode 100644 index 000000000..9b83536f2 --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 37a0cb/Card Death • XIII (1) f5cdef.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Free from the Past +GMNotes: '' +GUID: f5cdef +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: "Death \u2022 XIII (1)" +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.6296606 + posY: 1.38756418 + posZ: -47.3484459 + rotX: 0.0208179653 + rotY: 269.971375 + rotZ: 0.01676079 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 37a0cb/Card Deciphered Reality (5) 2e932d.yaml b/unpacked/Custom_Model_Bag Seeker 37a0cb/Card Deciphered Reality (5) 2e932d.yaml new file mode 100644 index 000000000..2ce00f600 --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 37a0cb/Card Deciphered Reality (5) 2e932d.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 291560 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 2e932d +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Deciphered Reality (5) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.3436565 + posY: 1.34858692 + posZ: -70.3675461 + rotX: 0.0208084174 + rotY: 269.999756 + rotZ: 0.0167693552 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 37a0cb/Card Deduction (2) ec6c05.yaml b/unpacked/Custom_Model_Bag Seeker 37a0cb/Card Deduction (2) ec6c05.yaml new file mode 100644 index 000000000..422483ca9 --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 37a0cb/Card Deduction (2) ec6c05.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 291542 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: ec6c05 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Deduction (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 24.5003471 + posY: 1.356504 + posZ: -49.7185478 + rotX: 0.0208084825 + rotY: 269.999756 + rotZ: 0.0167694483 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 37a0cb/Card Disc of Itzamna (2) 2a6577.yaml b/unpacked/Custom_Model_Bag Seeker 37a0cb/Card Disc of Itzamna (2) 2a6577.yaml new file mode 100644 index 000000000..e68266873 --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 37a0cb/Card Disc of Itzamna (2) 2a6577.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 291548 +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 + UniqueBack: false +Description: Protective Amulet +GMNotes: '' +GUID: 2a6577 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Disc of Itzamna (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.6296444 + posY: 1.37948537 + posZ: -74.94812 + rotX: 0.0208075438 + rotY: 269.999817 + rotZ: 0.0167684387 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 37a0cb/Card Dream Diary (3) 63156b.yaml b/unpacked/Custom_Model_Bag Seeker 37a0cb/Card Dream Diary (3) 63156b.yaml new file mode 100644 index 000000000..6683ff236 --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 37a0cb/Card Dream Diary (3) 63156b.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Dreams of an Explorer +GMNotes: '' +GUID: 63156b +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Dream Diary (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 7.0765624 + posY: 1.38627028 + posZ: -47.3604774 + rotX: 0.0208097678 + rotY: 270.000458 + rotZ: 0.0167706348 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 37a0cb/Card Dream Diary (3) c6b53c.yaml b/unpacked/Custom_Model_Bag Seeker 37a0cb/Card Dream Diary (3) c6b53c.yaml new file mode 100644 index 000000000..9b1a02d9b --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 37a0cb/Card Dream Diary (3) c6b53c.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Dreams of a Child +GMNotes: '' +GUID: c6b53c +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Dream Diary (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 7.07655573 + posY: 1.38492382 + posZ: -51.96047 + rotX: 0.0208096765 + rotY: 270.000641 + rotZ: 0.0167707056 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 37a0cb/Card Dream Diary (3) d74e2e.yaml b/unpacked/Custom_Model_Bag Seeker 37a0cb/Card Dream Diary (3) d74e2e.yaml new file mode 100644 index 000000000..2eaadc638 --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 37a0cb/Card Dream Diary (3) d74e2e.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Dreams of a Madman +GMNotes: '' +GUID: d74e2e +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Dream Diary (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 7.0765624 + posY: 1.385597 + posZ: -49.6604652 + rotX: 0.0208095945 + rotY: 270.000519 + rotZ: 0.01677082 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 37a0cb/Card Eidetic Memory (3) 7ce94b.yaml b/unpacked/Custom_Model_Bag Seeker 37a0cb/Card Eidetic Memory (3) 7ce94b.yaml new file mode 100644 index 000000000..41921f596 --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 37a0cb/Card Eidetic Memory (3) 7ce94b.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 291550 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 7ce94b +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Eidetic Memory (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.343668 + posY: 1.35262632 + posZ: -56.5679054 + rotX: 0.0208084751 + rotY: 269.999756 + rotZ: 0.01676942 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 37a0cb/Card Encyclopedia (2) f79872.yaml b/unpacked/Custom_Model_Bag Seeker 37a0cb/Card Encyclopedia (2) f79872.yaml new file mode 100644 index 000000000..e79a9b421 --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 37a0cb/Card Encyclopedia (2) f79872.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 291546 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: f79872 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Encyclopedia (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.62965 + posY: 1.380832 + posZ: -70.34807 + rotX: 0.0208073687 + rotY: 269.9998 + rotZ: 0.0167685524 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 37a0cb/Card Esoteric Atlas (1) 5c775c.yaml b/unpacked/Custom_Model_Bag Seeker 37a0cb/Card Esoteric Atlas (1) 5c775c.yaml new file mode 100644 index 000000000..05d8ae75b --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 37a0cb/Card Esoteric Atlas (1) 5c775c.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 5c775c +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Esoteric Atlas (1) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.6296482 + posY: 1.386891 + posZ: -49.6484337 + rotX: 0.02080798 + rotY: 270.006042 + rotZ: 0.0167727824 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 37a0cb/Card Expose Weakness (1) 77fce5.yaml b/unpacked/Custom_Model_Bag Seeker 37a0cb/Card Expose Weakness (1) 77fce5.yaml new file mode 100644 index 000000000..2c8838bb9 --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 37a0cb/Card Expose Weakness (1) 77fce5.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 291535 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 77fce5 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Expose Weakness (1) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.3436642 + posY: 1.3553195 + posZ: -47.36791 + rotX: 0.0208084024 + rotY: 269.999756 + rotZ: 0.016769506 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 37a0cb/Card Expose Weakness (3) 31cebe.yaml b/unpacked/Custom_Model_Bag Seeker 37a0cb/Card Expose Weakness (3) 31cebe.yaml new file mode 100644 index 000000000..1eca2cc2b --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 37a0cb/Card Expose Weakness (3) 31cebe.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 31cebe +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Expose Weakness (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.343668 + posY: 1.351953 + posZ: -58.86791 + rotX: 0.0208084881 + rotY: 269.999756 + rotZ: 0.016769398 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 37a0cb/Card Extensive Research (1) 9dc10d.yaml b/unpacked/Custom_Model_Bag Seeker 37a0cb/Card Extensive Research (1) 9dc10d.yaml new file mode 100644 index 000000000..ab5d6d330 --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 37a0cb/Card Extensive Research (1) 9dc10d.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Insight. +GMNotes: '' +GUID: 9dc10d +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Extensive Research (1) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.3436565 + posY: 1.34724045 + posZ: -74.9676743 + rotX: 0.020804124 + rotY: 270.014862 + rotZ: 0.01677478 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 37a0cb/Card Feed the Mind (3) 64f190.yaml b/unpacked/Custom_Model_Bag Seeker 37a0cb/Card Feed the Mind (3) 64f190.yaml new file mode 100644 index 000000000..8bc6a6fa5 --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 37a0cb/Card Feed the Mind (3) 64f190.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 64f190 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Feed the Mind (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 7.07656 + posY: 1.38425064 + posZ: -54.26048 + rotX: 0.0208099168 + rotY: 269.999817 + rotZ: 0.0167713221 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 37a0cb/Card Forewarned (1) 5ee980.yaml b/unpacked/Custom_Model_Bag Seeker 37a0cb/Card Forewarned (1) 5ee980.yaml new file mode 100644 index 000000000..c3f1abd83 --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 37a0cb/Card Forewarned (1) 5ee980.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 291536 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 5ee980 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Forewarned (1) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.3436661 + posY: 1.354646 + posZ: -49.6678963 + rotX: 0.0208084378 + rotY: 269.999756 + rotZ: 0.0167696085 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 37a0cb/Card Glimpse the Unthinkable (5) ff31e9.yaml b/unpacked/Custom_Model_Bag Seeker 37a0cb/Card Glimpse the Unthinkable (5) ff31e9.yaml new file mode 100644 index 000000000..9b69e11a7 --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 37a0cb/Card Glimpse the Unthinkable (5) ff31e9.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: ff31e9 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Glimpse the Unthinkable (5) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.3436527 + posY: 1.34791362 + posZ: -72.6676559 + rotX: 0.020808503 + rotY: 269.999756 + rotZ: 0.0167693477 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 37a0cb/Card Grisly Totem (3) 34dc0e.yaml b/unpacked/Custom_Model_Bag Seeker 37a0cb/Card Grisly Totem (3) 34dc0e.yaml new file mode 100644 index 000000000..9591fc8e3 --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 37a0cb/Card Grisly Totem (3) 34dc0e.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Seeker +GMNotes: '' +GUID: 34dc0e +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Grisly Totem (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 7.076558 + posY: 1.382904 + posZ: -58.8604851 + rotX: 0.020809697 + rotY: 269.999634 + rotZ: 0.0167708453 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 37a0cb/Card Higher Education (3) 941d4e.yaml b/unpacked/Custom_Model_Bag Seeker 37a0cb/Card Higher Education (3) 941d4e.yaml new file mode 100644 index 000000000..d3b1172aa --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 37a0cb/Card Higher Education (3) 941d4e.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 291549 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 941d4e +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Higher Education (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.6296539 + posY: 1.378139 + posZ: -79.54802 + rotX: 0.0208073836 + rotY: 269.9998 + rotZ: 0.0167683922 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 37a0cb/Card Hyperawareness (2) 030179.yaml b/unpacked/Custom_Model_Bag Seeker 37a0cb/Card Hyperawareness (2) 030179.yaml new file mode 100644 index 000000000..4ae77725a --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 37a0cb/Card Hyperawareness (2) 030179.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 291544 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 030179 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Hyperawareness (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.62965 + posY: 1.38217843 + posZ: -65.74806 + rotX: 0.0208075587 + rotY: 269.9998 + rotZ: 0.0167686623 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 37a0cb/Card In the Know (1) bf7959.yaml b/unpacked/Custom_Model_Bag Seeker 37a0cb/Card In the Know (1) bf7959.yaml new file mode 100644 index 000000000..7356c9c12 --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 37a0cb/Card In the Know (1) bf7959.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 291540 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: bf7959 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: In the Know (1) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.6296463 + posY: 1.38352478 + posZ: -61.1484566 + rotX: 0.02080852 + rotY: 269.9998 + rotZ: 0.0167702567 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 37a0cb/Card Logical Reasoning (4) f10dfb.yaml b/unpacked/Custom_Model_Bag Seeker 37a0cb/Card Logical Reasoning (4) f10dfb.yaml new file mode 100644 index 000000000..6fb0229e4 --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 37a0cb/Card Logical Reasoning (4) f10dfb.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: f10dfb +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Logical Reasoning (4) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.3436642 + posY: 1.34993339 + posZ: -65.76754 + rotX: 0.0208084658 + rotY: 269.999756 + rotZ: 0.0167694762 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 37a0cb/Card Magnifying Glass (1) feb59d.yaml b/unpacked/Custom_Model_Bag Seeker 37a0cb/Card Magnifying Glass (1) feb59d.yaml new file mode 100644 index 000000000..ea5191da8 --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 37a0cb/Card Magnifying Glass (1) feb59d.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 291537 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: feb59d +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Magnifying Glass (1) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.629653 + posY: 1.38621771 + posZ: -51.9484329 + rotX: 0.02081008 + rotY: 269.999878 + rotZ: 0.0167713463 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 37a0cb/Card No Stone Unturned (5) 83fe7a.yaml b/unpacked/Custom_Model_Bag Seeker 37a0cb/Card No Stone Unturned (5) 83fe7a.yaml new file mode 100644 index 000000000..00389fae9 --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 37a0cb/Card No Stone Unturned (5) 83fe7a.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 291558 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 83fe7a +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: No Stone Unturned (5) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.3436623 + posY: 1.34926021 + posZ: -68.06754 + rotX: 0.0208084229 + rotY: 269.999817 + rotZ: 0.01676949 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 37a0cb/Card Old Book of Lore (3) 9082dd.yaml b/unpacked/Custom_Model_Bag Seeker 37a0cb/Card Old Book of Lore (3) 9082dd.yaml new file mode 100644 index 000000000..df5ec228d --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 37a0cb/Card Old Book of Lore (3) 9082dd.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Item. Tome. +GMNotes: '' +GUID: 9082dd +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Old Book of Lore (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 7.0765605 + posY: 1.38357735 + posZ: -56.560482 + rotX: 0.0208181646 + rotY: 269.9716 + rotZ: 0.01676024 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 37a0cb/Card Otherworld Codex (2) c1b8cf.yaml b/unpacked/Custom_Model_Bag Seeker 37a0cb/Card Otherworld Codex (2) c1b8cf.yaml new file mode 100644 index 000000000..f21c95871 --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 37a0cb/Card Otherworld Codex (2) c1b8cf.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: c1b8cf +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Otherworld Codex (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.62965 + posY: 1.37881219 + posZ: -77.24802 + rotX: 0.0208081 + rotY: 269.99762 + rotZ: 0.0167672373 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 37a0cb/Card Otherworldly Compass (2) 6b151e.yaml b/unpacked/Custom_Model_Bag Seeker 37a0cb/Card Otherworldly Compass (2) 6b151e.yaml new file mode 100644 index 000000000..7b8b0560a --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 37a0cb/Card Otherworldly Compass (2) 6b151e.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 291547 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 6b151e +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Otherworldly Compass (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.62965 + posY: 1.38015866 + posZ: -72.6481 + rotX: 0.0208075233 + rotY: 269.999725 + rotZ: 0.0167683437 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 37a0cb/Card Pathfinder (1) 31e766.yaml b/unpacked/Custom_Model_Bag Seeker 37a0cb/Card Pathfinder (1) 31e766.yaml new file mode 100644 index 000000000..b0cc03441 --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 37a0cb/Card Pathfinder (1) 31e766.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 291541 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 31e766 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Pathfinder (1) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.6296453 + posY: 1.38285148 + posZ: -63.4484329 + rotX: 0.0208108649 + rotY: 269.999817 + rotZ: 0.0167716444 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 37a0cb/Card Pnakotic Manuscripts (5) 04f94b.yaml b/unpacked/Custom_Model_Bag Seeker 37a0cb/Card Pnakotic Manuscripts (5) 04f94b.yaml new file mode 100644 index 000000000..ccb1d3913 --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 37a0cb/Card Pnakotic Manuscripts (5) 04f94b.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Mind-Expanding Ideas +GMNotes: '' +GUID: 04f94b +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Pnakotic Manuscripts (5) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 7.07666874 + posY: 1.37684512 + posZ: -79.56001 + rotX: 0.0208078418 + rotY: 269.999817 + rotZ: 0.0167681444 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 37a0cb/Card Preposterous Sketches (2) 9ad0d0.yaml b/unpacked/Custom_Model_Bag Seeker 37a0cb/Card Preposterous Sketches (2) 9ad0d0.yaml new file mode 100644 index 000000000..26ea4ebb8 --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 37a0cb/Card Preposterous Sketches (2) 9ad0d0.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 436906 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '4369': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025943833/DE98A03934DF8FF5B3CF6C53143B15BFC3ED7341/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 9ad0d0 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Preposterous Sketches (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.3436623 + posY: 1.35397279 + posZ: -51.9679 + rotX: 0.0208076425 + rotY: 270.00235 + rotZ: 0.0167706944 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 37a0cb/Card Quick Study (2) 12b831.yaml b/unpacked/Custom_Model_Bag Seeker 37a0cb/Card Quick Study (2) 12b831.yaml new file mode 100644 index 000000000..89860ffc8 --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 37a0cb/Card Quick Study (2) 12b831.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 291545 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 12b831 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Quick Study (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.6296577 + posY: 1.38150513 + posZ: -68.04806 + rotX: 0.02080818 + rotY: 269.999725 + rotZ: 0.0167680718 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 37a0cb/Card Scientific Theory (1) 588be0.yaml b/unpacked/Custom_Model_Bag Seeker 37a0cb/Card Scientific Theory (1) 588be0.yaml new file mode 100644 index 000000000..20a0d5cbb --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 37a0cb/Card Scientific Theory (1) 588be0.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 291538 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 588be0 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Scientific Theory (1) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.6296616 + posY: 1.38554454 + posZ: -54.24844 + rotX: 0.0208097026 + rotY: 269.999817 + rotZ: 0.0167705175 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 37a0cb/Card Scroll of Secrets (3) ec299c.yaml b/unpacked/Custom_Model_Bag Seeker 37a0cb/Card Scroll of Secrets (3) ec299c.yaml new file mode 100644 index 000000000..105a70d56 --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 37a0cb/Card Scroll of Secrets (3) ec299c.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Seeker +GMNotes: '' +GUID: ec299c +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Scroll of Secrets (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.6295118 + posY: 1.37679124 + posZ: -84.15234 + rotX: 0.0209030379 + rotY: 269.705933 + rotZ: 0.01665172 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 37a0cb/Card Segment of Onyx (1) 24e9e7.yaml b/unpacked/Custom_Model_Bag Seeker 37a0cb/Card Segment of Onyx (1) 24e9e7.yaml new file mode 100644 index 000000000..98956c348 --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 37a0cb/Card Segment of Onyx (1) 24e9e7.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 24e9e7 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Segment of Onyx (1) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.6296654 + posY: 1.38419807 + posZ: -58.8484459 + rotX: 0.0208096113 + rotY: 269.999817 + rotZ: 0.0167705286 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 37a0cb/Card Shortcut (2) 4d7114.yaml b/unpacked/Custom_Model_Bag Seeker 37a0cb/Card Shortcut (2) 4d7114.yaml new file mode 100644 index 000000000..1f0418bb6 --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 37a0cb/Card Shortcut (2) 4d7114.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 291543 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 4d7114 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Shortcut (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.343668 + posY: 1.3532995 + posZ: -54.2679024 + rotX: 0.0208077952 + rotY: 270.0014 + rotZ: 0.0167700332 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 37a0cb/Card Strange Solution (4) 2f833c.yaml b/unpacked/Custom_Model_Bag Seeker 37a0cb/Card Strange Solution (4) 2f833c.yaml new file mode 100644 index 000000000..4d0de2493 --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 37a0cb/Card Strange Solution (4) 2f833c.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 291556 +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 + UniqueBack: false +Description: Restorative Concoction +GMNotes: '' +GUID: 2f833c +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Strange Solution (4) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 7.07655334 + posY: 1.38021135 + posZ: -68.0601044 + rotX: 0.02080769 + rotY: 270.0 + rotZ: 0.0167689975 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 37a0cb/Card Strange Solution (4) 480577.yaml b/unpacked/Custom_Model_Bag Seeker 37a0cb/Card Strange Solution (4) 480577.yaml new file mode 100644 index 000000000..7be2f9aaa --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 37a0cb/Card Strange Solution (4) 480577.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 436905 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '4369': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025943833/DE98A03934DF8FF5B3CF6C53143B15BFC3ED7341/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: Empowering Elixir +GMNotes: '' +GUID: '480577' +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Strange Solution (4) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 7.076549 + posY: 1.37953794 + posZ: -70.36011 + rotX: 0.0208078772 + rotY: 269.999725 + rotZ: 0.0167677 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 37a0cb/Card Strange Solution (4) 760825.yaml b/unpacked/Custom_Model_Bag Seeker 37a0cb/Card Strange Solution (4) 760825.yaml new file mode 100644 index 000000000..ceaca85f8 --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 37a0cb/Card Strange Solution (4) 760825.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 291555 +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 + UniqueBack: false +Description: Acidic Ichor +GMNotes: '' +GUID: '760825' +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Strange Solution (4) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 7.07655525 + posY: 1.38088453 + posZ: -65.7601 + rotX: 0.0208077785 + rotY: 269.999756 + rotZ: 0.016767595 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 37a0cb/Card Strange Solution (4) c11ecd.yaml b/unpacked/Custom_Model_Bag Seeker 37a0cb/Card Strange Solution (4) c11ecd.yaml new file mode 100644 index 000000000..dddc919c0 --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 37a0cb/Card Strange Solution (4) c11ecd.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 291554 +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 + UniqueBack: false +Description: Freezing Variant +GMNotes: '' +GUID: c11ecd +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Strange Solution (4) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 7.07654953 + posY: 1.3815577 + posZ: -63.4604759 + rotX: 0.02080855 + rotY: 269.999725 + rotZ: 0.016768869 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 37a0cb/Card Studious (3) 31f742.yaml b/unpacked/Custom_Model_Bag Seeker 37a0cb/Card Studious (3) 31f742.yaml new file mode 100644 index 000000000..978e0e2fa --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 37a0cb/Card Studious (3) 31f742.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 31f742 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Studious (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.6316948 + posY: 1.37746644 + posZ: -81.8482361 + rotX: 0.0208073966 + rotY: 269.9997 + rotZ: 0.0167681128 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 37a0cb/Card Surprising Find (1) e2ec72.yaml b/unpacked/Custom_Model_Bag Seeker 37a0cb/Card Surprising Find (1) e2ec72.yaml new file mode 100644 index 000000000..e5a1d2205 --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 37a0cb/Card Surprising Find (1) e2ec72.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Fortune. Research. +GMNotes: '' +GUID: e2ec72 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Surprising Find (1) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 24.5003471 + posY: 1.35717726 + posZ: -47.41856 + rotX: 0.0208097417 + rotY: 269.9956 + rotZ: 0.0167682674 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 37a0cb/Card The Eye of Truth (5) 7056b3.yaml b/unpacked/Custom_Model_Bag Seeker 37a0cb/Card The Eye of Truth (5) 7056b3.yaml new file mode 100644 index 000000000..dcc8130a7 --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 37a0cb/Card The Eye of Truth (5) 7056b3.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Spell. Practiced. +GMNotes: '' +GUID: 7056b3 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: The Eye of Truth (5) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 24.5003471 + posY: 1.35583067 + posZ: -52.01855 + rotX: 0.0208169427 + rotY: 269.971 + rotZ: 0.0167589989 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 37a0cb/Custom_Model_Bag Seeker da123b.ttslua b/unpacked/Custom_Model_Bag Seeker 37a0cb/Custom_Model_Bag Seeker da123b.ttslua new file mode 100644 index 000000000..f882a7f09 --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 37a0cb/Custom_Model_Bag Seeker da123b.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,0,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 + 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=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,0,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,0,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,0,0}, height=350, width=750, + 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}, rotation={0,0,0}, height=350, width=800, + font_size=250, color={0,0,0}, font_color={1,1,1} + }) +-- self.createButton({ +-- label="Setup", click_function="buttonClick_setup", function_owner=self, +-- position={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.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 Seeker 37a0cb/Custom_Model_Bag Seeker da123b.yaml b/unpacked/Custom_Model_Bag Seeker 37a0cb/Custom_Model_Bag Seeker da123b.yaml new file mode 100644 index 000000000..8eb11da39 --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 37a0cb/Custom_Model_Bag Seeker da123b.yaml @@ -0,0 +1,103 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +ContainedObjects: +- !include 'Custom_Model_Bag Seeker da123b/Card Surprising Find (1) e2ec72.yaml' +- !include 'Custom_Model_Bag Seeker da123b/Card Deduction (2) ec6c05.yaml' +- !include 'Custom_Model_Bag Seeker da123b/Card The Eye of Truth (5) 7056b3.yaml' +- !include 'Custom_Model_Bag Seeker da123b/Card Preposterous Sketches (2) 9ad0d0.yaml' +- !include 'Custom_Model_Bag Seeker da123b/Card Forewarned (1) 5ee980.yaml' +- !include 'Custom_Model_Bag Seeker da123b/Card Expose Weakness (1) 77fce5.yaml' +- !include 'Custom_Model_Bag Seeker da123b/Card Shortcut (2) 4d7114.yaml' +- !include 'Custom_Model_Bag Seeker da123b/Card Eidetic Memory (3) 7ce94b.yaml' +- !include 'Custom_Model_Bag Seeker da123b/Card Expose Weakness (3) 31cebe.yaml' +- !include 'Custom_Model_Bag Seeker da123b/Card Barricade (3) b65fe8.yaml' +- !include 'Custom_Model_Bag Seeker da123b/Card Cryptic Research (4) 275caa.yaml' +- !include 'Custom_Model_Bag Seeker da123b/Card Logical Reasoning (4) f10dfb.yaml' +- !include 'Custom_Model_Bag Seeker da123b/Card No Stone Unturned (5) 83fe7a.yaml' +- !include 'Custom_Model_Bag Seeker da123b/Card Deciphered Reality (5) 2e932d.yaml' +- !include 'Custom_Model_Bag Seeker da123b/Card Glimpse the Unthinkable (5) ff31e9.yaml' +- !include 'Custom_Model_Bag Seeker da123b/Card Extensive Research (1) 9dc10d.yaml' +- !include 'Custom_Model_Bag Seeker da123b/Card Archaic Glyphs (3) 7358db.yaml' +- !include 'Custom_Model_Bag Seeker da123b/Card Archaic Glyphs (3) 25d0c7.yaml' +- !include 'Custom_Model_Bag Seeker da123b/Card Archaic Glyphs (3) 42e258.yaml' +- !include 'Custom_Model_Bag Seeker da123b/Card Scroll of Secrets (3) ec299c.yaml' +- !include 'Custom_Model_Bag Seeker da123b/Card Studious (3) 31f742.yaml' +- !include 'Custom_Model_Bag Seeker da123b/Card Higher Education (3) 941d4e.yaml' +- !include 'Custom_Model_Bag Seeker da123b/Card Pnakotic Manuscripts (5) 04f94b.yaml' +- !include 'Custom_Model_Bag Seeker da123b/Card Arcane Insight (4) 80a935.yaml' +- !include 'Custom_Model_Bag Seeker da123b/Card Otherworld Codex (2) c1b8cf.yaml' +- !include 'Custom_Model_Bag Seeker da123b/Card Disc of Itzamna (2) 2a6577.yaml' +- !include 'Custom_Model_Bag Seeker da123b/Card Ancient Stone (4) feaf98.yaml' +- !include 'Custom_Model_Bag Seeker da123b/Card Ancient Stone (4) 2b3765.yaml' +- !include 'Custom_Model_Bag Seeker da123b/Card Strange Solution (4) 480577.yaml' +- !include 'Custom_Model_Bag Seeker da123b/Card Strange Solution (4) 2f833c.yaml' +- !include 'Custom_Model_Bag Seeker da123b/Card Strange Solution (4) 760825.yaml' +- !include 'Custom_Model_Bag Seeker da123b/Card Strange Solution (4) c11ecd.yaml' +- !include 'Custom_Model_Bag Seeker da123b/Card Abigail Foreman (4) 2c40b6.yaml' +- !include 'Custom_Model_Bag Seeker da123b/Card Grisly Totem (3) 34dc0e.yaml' +- !include 'Custom_Model_Bag Seeker da123b/Card Segment of Onyx (1) 24e9e7.yaml' +- !include 'Custom_Model_Bag Seeker da123b/Card Pathfinder (1) 31e766.yaml' +- !include 'Custom_Model_Bag Seeker da123b/Card In the Know (1) bf7959.yaml' +- !include 'Custom_Model_Bag Seeker da123b/Card Hyperawareness (2) 030179.yaml' +- !include 'Custom_Model_Bag Seeker da123b/Card Encyclopedia (2) f79872.yaml' +- !include 'Custom_Model_Bag Seeker da123b/Card Quick Study (2) 12b831.yaml' +- !include 'Custom_Model_Bag Seeker da123b/Card Otherworldly Compass (2) 6b151e.yaml' +- !include 'Custom_Model_Bag Seeker da123b/Card Ancient Stone (1) 8729dc.yaml' +- !include 'Custom_Model_Bag Seeker da123b/Card Old Book of Lore (3) 9082dd.yaml' +- !include 'Custom_Model_Bag Seeker da123b/Card Feed the Mind (3) 64f190.yaml' +- !include 'Custom_Model_Bag Seeker da123b/Card Dream Diary (3) c6b53c.yaml' +- !include 'Custom_Model_Bag Seeker da123b/Card Dream Diary (3) d74e2e.yaml' +- !include 'Custom_Model_Bag Seeker da123b/Card Dream Diary (3) 63156b.yaml' +- !include "Custom_Model_Bag Seeker da123b/Card Death \u2022 XIII (1) f5cdef.yaml" +- !include 'Custom_Model_Bag Seeker da123b/Card Esoteric Atlas (1) 5c775c.yaml' +- !include 'Custom_Model_Bag Seeker da123b/Card Magnifying Glass (1) feb59d.yaml' +- !include 'Custom_Model_Bag Seeker da123b/Card Scientific Theory (1) 588be0.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/952965722516265983/F50A6212D30C442429ED22B8CC8FD24D4CB76A2A/ + MaterialIndex: 3 + MeshURL: https://pastebin.com/raw/ALrYhQGb + NormalURL: '' + TypeIndex: 6 +Description: '' +GMNotes: '' +GUID: da123b +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Model_Bag Seeker da123b.ttslua' +LuaScriptState: '{"ml":{"030179":{"lock":false,"pos":{"x":10.6297,"y":1.3822,"z":-65.7481},"rot":{"x":0.0208,"y":269.9998,"z":0.0168}},"04f94b":{"lock":false,"pos":{"x":7.0767,"y":1.3768,"z":-79.56},"rot":{"x":0.0208,"y":269.9998,"z":0.0168}},"12b831":{"lock":false,"pos":{"x":10.6297,"y":1.3815,"z":-68.0481},"rot":{"x":0.0208,"y":269.9997,"z":0.0168}},"24e9e7":{"lock":false,"pos":{"x":10.6297,"y":1.3842,"z":-58.8484},"rot":{"x":0.0208,"y":269.9998,"z":0.0168}},"25d0c7":{"lock":false,"pos":{"x":10.6139,"y":1.3754,"z":-88.74},"rot":{"x":0.0208,"y":270,"z":0.0168}},"275caa":{"lock":false,"pos":{"x":19.3437,"y":1.3506,"z":-63.4679},"rot":{"x":0.0208,"y":269.9999,"z":0.0168}},"2a6577":{"lock":false,"pos":{"x":10.6296,"y":1.3795,"z":-74.9481},"rot":{"x":0.0208,"y":269.9998,"z":0.0168}},"2b3765":{"lock":false,"pos":{"x":7.0765,"y":1.3789,"z":-72.6601},"rot":{"x":0.0208,"y":269.9998,"z":0.0168}},"2c40b6":{"lock":false,"pos":{"x":7.0765,"y":1.3822,"z":-61.1605},"rot":{"x":0.0208,"y":269.9997,"z":0.0168}},"2e932d":{"lock":false,"pos":{"x":19.3437,"y":1.3486,"z":-70.3675},"rot":{"x":0.0208,"y":269.9998,"z":0.0168}},"2f833c":{"lock":false,"pos":{"x":7.0766,"y":1.3802,"z":-68.0601},"rot":{"x":0.0208,"y":270,"z":0.0168}},"31cebe":{"lock":false,"pos":{"x":19.3437,"y":1.352,"z":-58.8679},"rot":{"x":0.0208,"y":269.9998,"z":0.0168}},"31e766":{"lock":false,"pos":{"x":10.6296,"y":1.3829,"z":-63.4484},"rot":{"x":0.0208,"y":269.9998,"z":0.0168}},"31f742":{"lock":false,"pos":{"x":10.6317,"y":1.3775,"z":-81.8482},"rot":{"x":0.0208,"y":269.9997,"z":0.0168}},"34dc0e":{"lock":false,"pos":{"x":7.0766,"y":1.3829,"z":-58.8605},"rot":{"x":0.0208,"y":269.9996,"z":0.0168}},"42e258":{"lock":false,"pos":{"x":10.6244,"y":1.3761,"z":-86.4276},"rot":{"x":0.0209,"y":269.6711,"z":0.0167}},"480577":{"lock":false,"pos":{"x":7.0765,"y":1.3795,"z":-70.3601},"rot":{"x":0.0208,"y":269.9997,"z":0.0168}},"4d7114":{"lock":false,"pos":{"x":19.3437,"y":1.3533,"z":-54.2679},"rot":{"x":0.0208,"y":270.0014,"z":0.0168}},"588be0":{"lock":false,"pos":{"x":10.6297,"y":1.3855,"z":-54.2484},"rot":{"x":0.0208,"y":269.9998,"z":0.0168}},"5c775c":{"lock":false,"pos":{"x":10.6296,"y":1.3869,"z":-49.6484},"rot":{"x":0.0208,"y":270.006,"z":0.0168}},"5ee980":{"lock":false,"pos":{"x":19.3437,"y":1.3546,"z":-49.6679},"rot":{"x":0.0208,"y":269.9998,"z":0.0168}},"63156b":{"lock":false,"pos":{"x":7.0766,"y":1.3863,"z":-47.3605},"rot":{"x":0.0208,"y":270.0005,"z":0.0168}},"64f190":{"lock":false,"pos":{"x":7.0766,"y":1.3843,"z":-54.2605},"rot":{"x":0.0208,"y":269.9998,"z":0.0168}},"6b151e":{"lock":false,"pos":{"x":10.6297,"y":1.3802,"z":-72.6481},"rot":{"x":0.0208,"y":269.9997,"z":0.0168}},"7056b3":{"lock":false,"pos":{"x":24.5003,"y":1.3558,"z":-52.0186},"rot":{"x":0.0208,"y":269.971,"z":0.0168}},"7358db":{"lock":false,"pos":{"x":10.6137,"y":1.3748,"z":-91.04},"rot":{"x":0.0208,"y":269.9998,"z":0.0168}},"760825":{"lock":false,"pos":{"x":7.0766,"y":1.3809,"z":-65.7601},"rot":{"x":0.0208,"y":269.9998,"z":0.0168}},"77fce5":{"lock":false,"pos":{"x":19.3437,"y":1.3553,"z":-47.3679},"rot":{"x":0.0208,"y":269.9998,"z":0.0168}},"7ce94b":{"lock":false,"pos":{"x":19.3437,"y":1.3526,"z":-56.5679},"rot":{"x":0.0208,"y":269.9998,"z":0.0168}},"80a935":{"lock":false,"pos":{"x":7.0765,"y":1.3775,"z":-77.26},"rot":{"x":0.0208,"y":269.9997,"z":0.0168}},"83fe7a":{"lock":false,"pos":{"x":19.3437,"y":1.3493,"z":-68.0675},"rot":{"x":0.0208,"y":269.9998,"z":0.0168}},"8729dc":{"lock":false,"pos":{"x":10.6297,"y":1.3849,"z":-56.5484},"rot":{"x":0.0208,"y":269.9998,"z":0.0168}},"9082dd":{"lock":false,"pos":{"x":7.0766,"y":1.3836,"z":-56.5605},"rot":{"x":0.0208,"y":269.9716,"z":0.0168}},"941d4e":{"lock":false,"pos":{"x":10.6297,"y":1.3781,"z":-79.548},"rot":{"x":0.0208,"y":269.9998,"z":0.0168}},"9ad0d0":{"lock":false,"pos":{"x":19.3437,"y":1.354,"z":-51.9679},"rot":{"x":0.0208,"y":270.0023,"z":0.0168}},"9dc10d":{"lock":false,"pos":{"x":19.3437,"y":1.3472,"z":-74.9677},"rot":{"x":0.0208,"y":270.0149,"z":0.0168}},"b65fe8":{"lock":false,"pos":{"x":19.3437,"y":1.3513,"z":-61.1679},"rot":{"x":0.0208,"y":269.9998,"z":0.0168}},"bf7959":{"lock":false,"pos":{"x":10.6296,"y":1.3835,"z":-61.1485},"rot":{"x":0.0208,"y":269.9998,"z":0.0168}},"c11ecd":{"lock":false,"pos":{"x":7.0765,"y":1.3816,"z":-63.4605},"rot":{"x":0.0208,"y":269.9997,"z":0.0168}},"c1b8cf":{"lock":false,"pos":{"x":10.6297,"y":1.3788,"z":-77.248},"rot":{"x":0.0208,"y":269.9976,"z":0.0168}},"c6b53c":{"lock":false,"pos":{"x":7.0766,"y":1.3849,"z":-51.9605},"rot":{"x":0.0208,"y":270.0006,"z":0.0168}},"d74e2e":{"lock":false,"pos":{"x":7.0766,"y":1.3856,"z":-49.6605},"rot":{"x":0.0208,"y":270.0005,"z":0.0168}},"e2ec72":{"lock":false,"pos":{"x":24.5003,"y":1.3572,"z":-47.4186},"rot":{"x":0.0208,"y":269.9956,"z":0.0168}},"ec299c":{"lock":false,"pos":{"x":10.6295,"y":1.3768,"z":-84.1523},"rot":{"x":0.0209,"y":269.7059,"z":0.0167}},"ec6c05":{"lock":false,"pos":{"x":24.5003,"y":1.3565,"z":-49.7185},"rot":{"x":0.0208,"y":269.9998,"z":0.0168}},"f10dfb":{"lock":false,"pos":{"x":19.3437,"y":1.3499,"z":-65.7675},"rot":{"x":0.0208,"y":269.9998,"z":0.0168}},"f5cdef":{"lock":false,"pos":{"x":10.6297,"y":1.3876,"z":-47.3484},"rot":{"x":0.0208,"y":269.9714,"z":0.0168}},"f79872":{"lock":false,"pos":{"x":10.6297,"y":1.3808,"z":-70.3481},"rot":{"x":0.0208,"y":269.9998,"z":0.0168}},"feaf98":{"lock":false,"pos":{"x":7.0765,"y":1.3782,"z":-74.9601},"rot":{"x":0.0208,"y":269.9995,"z":0.0168}},"feb59d":{"lock":false,"pos":{"x":10.6297,"y":1.3862,"z":-51.9484},"rot":{"x":0.0208,"y":269.9999,"z":0.0168}},"ff31e9":{"lock":false,"pos":{"x":19.3437,"y":1.3479,"z":-72.6677},"rot":{"x":0.0208,"y":269.9998,"z":0.0168}}}}' +MaterialIndex: -1 +MeshIndex: -1 +Name: Custom_Model_Bag +Nickname: Seeker +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 32.6998024 + posY: 1.65681839 + posZ: -69.3600159 + rotX: 0.0115706576 + rotY: 270.019745 + rotZ: 0.0129554272 + scaleX: 1.2 + scaleY: 1.2 + scaleZ: 1.2 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 37a0cb/Custom_Model_Bag Seeker da123b/Card Abigail Foreman (4) 2c40b6.yaml b/unpacked/Custom_Model_Bag Seeker 37a0cb/Custom_Model_Bag Seeker da123b/Card Abigail Foreman (4) 2c40b6.yaml new file mode 100644 index 000000000..d95cbfb7d --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 37a0cb/Custom_Model_Bag Seeker da123b/Card Abigail Foreman (4) 2c40b6.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Library Intern +GMNotes: '' +GUID: 2c40b6 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Abigail Foreman (4) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 7.07654858 + posY: 1.38223076 + posZ: -61.16049 + rotX: 0.0208098721 + rotY: 269.9997 + rotZ: 0.0167707484 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 37a0cb/Custom_Model_Bag Seeker da123b/Card Ancient Stone (1) 8729dc.yaml b/unpacked/Custom_Model_Bag Seeker 37a0cb/Custom_Model_Bag Seeker da123b/Card Ancient Stone (1) 8729dc.yaml new file mode 100644 index 000000000..2f9516d9d --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 37a0cb/Custom_Model_Bag Seeker da123b/Card Ancient Stone (1) 8729dc.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 291539 +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 + UniqueBack: false +Description: Unidentified +GMNotes: '' +GUID: 8729dc +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Ancient Stone (1) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.6296577 + posY: 1.38487124 + posZ: -56.5484428 + rotX: 0.0208099652 + rotY: 269.9998 + rotZ: 0.0167705845 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 37a0cb/Custom_Model_Bag Seeker da123b/Card Ancient Stone (4) 2b3765.yaml b/unpacked/Custom_Model_Bag Seeker 37a0cb/Custom_Model_Bag Seeker da123b/Card Ancient Stone (4) 2b3765.yaml new file mode 100644 index 000000000..2c12c4140 --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 37a0cb/Custom_Model_Bag Seeker da123b/Card Ancient Stone (4) 2b3765.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Minds in Harmony +GMNotes: '' +GUID: 2b3765 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Ancient Stone (4) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 7.076547 + posY: 1.37886477 + posZ: -72.66011 + rotX: 0.0208074581 + rotY: 269.999756 + rotZ: 0.0167683382 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 37a0cb/Custom_Model_Bag Seeker da123b/Card Ancient Stone (4) feaf98.yaml b/unpacked/Custom_Model_Bag Seeker 37a0cb/Custom_Model_Bag Seeker da123b/Card Ancient Stone (4) feaf98.yaml new file mode 100644 index 000000000..faa92278c --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 37a0cb/Custom_Model_Bag Seeker da123b/Card Ancient Stone (4) feaf98.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Knowledge of the Elders +GMNotes: '' +GUID: feaf98 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Ancient Stone (4) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 7.076524 + posY: 1.37819147 + posZ: -74.960144 + rotX: 0.0208073482 + rotY: 269.999451 + rotZ: 0.0167679433 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 37a0cb/Custom_Model_Bag Seeker da123b/Card Arcane Insight (4) 80a935.yaml b/unpacked/Custom_Model_Bag Seeker 37a0cb/Custom_Model_Bag Seeker da123b/Card Arcane Insight (4) 80a935.yaml new file mode 100644 index 000000000..553b40d28 --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 37a0cb/Custom_Model_Bag Seeker da123b/Card Arcane Insight (4) 80a935.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 291559 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 80a935 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Arcane Insight (4) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 7.07653236 + posY: 1.3775183 + posZ: -77.26004 + rotX: 0.02080761 + rotY: 269.9997 + rotZ: 0.0167677756 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 37a0cb/Custom_Model_Bag Seeker da123b/Card Archaic Glyphs (3) 25d0c7.yaml b/unpacked/Custom_Model_Bag Seeker 37a0cb/Custom_Model_Bag Seeker da123b/Card Archaic Glyphs (3) 25d0c7.yaml new file mode 100644 index 000000000..2cf548584 --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 37a0cb/Custom_Model_Bag Seeker da123b/Card Archaic Glyphs (3) 25d0c7.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Markings of Isis +GMNotes: '' +GUID: 25d0c7 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Archaic Glyphs (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.61387 + posY: 1.37544262 + posZ: -88.74 + rotX: 0.0208074879 + rotY: 270.0 + rotZ: 0.01676852 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 37a0cb/Custom_Model_Bag Seeker da123b/Card Archaic Glyphs (3) 42e258.yaml b/unpacked/Custom_Model_Bag Seeker 37a0cb/Custom_Model_Bag Seeker da123b/Card Archaic Glyphs (3) 42e258.yaml new file mode 100644 index 000000000..8aa74dca1 --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 37a0cb/Custom_Model_Bag Seeker da123b/Card Archaic Glyphs (3) 42e258.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 291552 +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 + UniqueBack: false +Description: Guiding Stones +GMNotes: '' +GUID: 42e258 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Archaic Glyphs (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.6244345 + posY: 1.37612331 + posZ: -86.42762 + rotX: 0.0209042653 + rotY: 269.671143 + rotZ: 0.0166502763 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 37a0cb/Custom_Model_Bag Seeker da123b/Card Archaic Glyphs (3) 7358db.yaml b/unpacked/Custom_Model_Bag Seeker 37a0cb/Custom_Model_Bag Seeker da123b/Card Archaic Glyphs (3) 7358db.yaml new file mode 100644 index 000000000..a4c133c60 --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 37a0cb/Custom_Model_Bag Seeker da123b/Card Archaic Glyphs (3) 7358db.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 291553 +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 + UniqueBack: false +Description: Prophecy Foretold +GMNotes: '' +GUID: 7358db +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Archaic Glyphs (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.6137171 + posY: 1.37476933 + posZ: -91.04 + rotX: 0.0208073389 + rotY: 269.9998 + rotZ: 0.0167684928 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 37a0cb/Custom_Model_Bag Seeker da123b/Card Barricade (3) b65fe8.yaml b/unpacked/Custom_Model_Bag Seeker 37a0cb/Custom_Model_Bag Seeker da123b/Card Barricade (3) b65fe8.yaml new file mode 100644 index 000000000..2d417e01e --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 37a0cb/Custom_Model_Bag Seeker da123b/Card Barricade (3) b65fe8.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 291551 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: b65fe8 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Barricade (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.34366 + posY: 1.35127985 + posZ: -61.16791 + rotX: 0.0208083317 + rotY: 269.999756 + rotZ: 0.0167689584 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 37a0cb/Custom_Model_Bag Seeker da123b/Card Cryptic Research (4) 275caa.yaml b/unpacked/Custom_Model_Bag Seeker 37a0cb/Custom_Model_Bag Seeker da123b/Card Cryptic Research (4) 275caa.yaml new file mode 100644 index 000000000..b5109d32f --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 37a0cb/Custom_Model_Bag Seeker da123b/Card Cryptic Research (4) 275caa.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 291557 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 275caa +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Cryptic Research (4) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.3436565 + posY: 1.35060656 + posZ: -63.4678955 + rotX: 0.0208083857 + rotY: 269.999939 + rotZ: 0.0167695321 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 37a0cb/Custom_Model_Bag Seeker da123b/Card Death • XIII (1) f5cdef.yaml b/unpacked/Custom_Model_Bag Seeker 37a0cb/Custom_Model_Bag Seeker da123b/Card Death • XIII (1) f5cdef.yaml new file mode 100644 index 000000000..9b83536f2 --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 37a0cb/Custom_Model_Bag Seeker da123b/Card Death • XIII (1) f5cdef.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Free from the Past +GMNotes: '' +GUID: f5cdef +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: "Death \u2022 XIII (1)" +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.6296606 + posY: 1.38756418 + posZ: -47.3484459 + rotX: 0.0208179653 + rotY: 269.971375 + rotZ: 0.01676079 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 37a0cb/Custom_Model_Bag Seeker da123b/Card Deciphered Reality (5) 2e932d.yaml b/unpacked/Custom_Model_Bag Seeker 37a0cb/Custom_Model_Bag Seeker da123b/Card Deciphered Reality (5) 2e932d.yaml new file mode 100644 index 000000000..2ce00f600 --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 37a0cb/Custom_Model_Bag Seeker da123b/Card Deciphered Reality (5) 2e932d.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 291560 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 2e932d +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Deciphered Reality (5) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.3436565 + posY: 1.34858692 + posZ: -70.3675461 + rotX: 0.0208084174 + rotY: 269.999756 + rotZ: 0.0167693552 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 37a0cb/Custom_Model_Bag Seeker da123b/Card Deduction (2) ec6c05.yaml b/unpacked/Custom_Model_Bag Seeker 37a0cb/Custom_Model_Bag Seeker da123b/Card Deduction (2) ec6c05.yaml new file mode 100644 index 000000000..422483ca9 --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 37a0cb/Custom_Model_Bag Seeker da123b/Card Deduction (2) ec6c05.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 291542 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: ec6c05 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Deduction (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 24.5003471 + posY: 1.356504 + posZ: -49.7185478 + rotX: 0.0208084825 + rotY: 269.999756 + rotZ: 0.0167694483 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 37a0cb/Custom_Model_Bag Seeker da123b/Card Disc of Itzamna (2) 2a6577.yaml b/unpacked/Custom_Model_Bag Seeker 37a0cb/Custom_Model_Bag Seeker da123b/Card Disc of Itzamna (2) 2a6577.yaml new file mode 100644 index 000000000..e68266873 --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 37a0cb/Custom_Model_Bag Seeker da123b/Card Disc of Itzamna (2) 2a6577.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 291548 +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 + UniqueBack: false +Description: Protective Amulet +GMNotes: '' +GUID: 2a6577 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Disc of Itzamna (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.6296444 + posY: 1.37948537 + posZ: -74.94812 + rotX: 0.0208075438 + rotY: 269.999817 + rotZ: 0.0167684387 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 37a0cb/Custom_Model_Bag Seeker da123b/Card Dream Diary (3) 63156b.yaml b/unpacked/Custom_Model_Bag Seeker 37a0cb/Custom_Model_Bag Seeker da123b/Card Dream Diary (3) 63156b.yaml new file mode 100644 index 000000000..6683ff236 --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 37a0cb/Custom_Model_Bag Seeker da123b/Card Dream Diary (3) 63156b.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Dreams of an Explorer +GMNotes: '' +GUID: 63156b +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Dream Diary (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 7.0765624 + posY: 1.38627028 + posZ: -47.3604774 + rotX: 0.0208097678 + rotY: 270.000458 + rotZ: 0.0167706348 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 37a0cb/Custom_Model_Bag Seeker da123b/Card Dream Diary (3) c6b53c.yaml b/unpacked/Custom_Model_Bag Seeker 37a0cb/Custom_Model_Bag Seeker da123b/Card Dream Diary (3) c6b53c.yaml new file mode 100644 index 000000000..9b1a02d9b --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 37a0cb/Custom_Model_Bag Seeker da123b/Card Dream Diary (3) c6b53c.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Dreams of a Child +GMNotes: '' +GUID: c6b53c +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Dream Diary (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 7.07655573 + posY: 1.38492382 + posZ: -51.96047 + rotX: 0.0208096765 + rotY: 270.000641 + rotZ: 0.0167707056 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 37a0cb/Custom_Model_Bag Seeker da123b/Card Dream Diary (3) d74e2e.yaml b/unpacked/Custom_Model_Bag Seeker 37a0cb/Custom_Model_Bag Seeker da123b/Card Dream Diary (3) d74e2e.yaml new file mode 100644 index 000000000..2eaadc638 --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 37a0cb/Custom_Model_Bag Seeker da123b/Card Dream Diary (3) d74e2e.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Dreams of a Madman +GMNotes: '' +GUID: d74e2e +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Dream Diary (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 7.0765624 + posY: 1.385597 + posZ: -49.6604652 + rotX: 0.0208095945 + rotY: 270.000519 + rotZ: 0.01677082 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 37a0cb/Custom_Model_Bag Seeker da123b/Card Eidetic Memory (3) 7ce94b.yaml b/unpacked/Custom_Model_Bag Seeker 37a0cb/Custom_Model_Bag Seeker da123b/Card Eidetic Memory (3) 7ce94b.yaml new file mode 100644 index 000000000..41921f596 --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 37a0cb/Custom_Model_Bag Seeker da123b/Card Eidetic Memory (3) 7ce94b.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 291550 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 7ce94b +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Eidetic Memory (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.343668 + posY: 1.35262632 + posZ: -56.5679054 + rotX: 0.0208084751 + rotY: 269.999756 + rotZ: 0.01676942 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 37a0cb/Custom_Model_Bag Seeker da123b/Card Encyclopedia (2) f79872.yaml b/unpacked/Custom_Model_Bag Seeker 37a0cb/Custom_Model_Bag Seeker da123b/Card Encyclopedia (2) f79872.yaml new file mode 100644 index 000000000..e79a9b421 --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 37a0cb/Custom_Model_Bag Seeker da123b/Card Encyclopedia (2) f79872.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 291546 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: f79872 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Encyclopedia (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.62965 + posY: 1.380832 + posZ: -70.34807 + rotX: 0.0208073687 + rotY: 269.9998 + rotZ: 0.0167685524 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 37a0cb/Custom_Model_Bag Seeker da123b/Card Esoteric Atlas (1) 5c775c.yaml b/unpacked/Custom_Model_Bag Seeker 37a0cb/Custom_Model_Bag Seeker da123b/Card Esoteric Atlas (1) 5c775c.yaml new file mode 100644 index 000000000..05d8ae75b --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 37a0cb/Custom_Model_Bag Seeker da123b/Card Esoteric Atlas (1) 5c775c.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 5c775c +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Esoteric Atlas (1) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.6296482 + posY: 1.386891 + posZ: -49.6484337 + rotX: 0.02080798 + rotY: 270.006042 + rotZ: 0.0167727824 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 37a0cb/Custom_Model_Bag Seeker da123b/Card Expose Weakness (1) 77fce5.yaml b/unpacked/Custom_Model_Bag Seeker 37a0cb/Custom_Model_Bag Seeker da123b/Card Expose Weakness (1) 77fce5.yaml new file mode 100644 index 000000000..2c8838bb9 --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 37a0cb/Custom_Model_Bag Seeker da123b/Card Expose Weakness (1) 77fce5.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 291535 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 77fce5 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Expose Weakness (1) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.3436642 + posY: 1.3553195 + posZ: -47.36791 + rotX: 0.0208084024 + rotY: 269.999756 + rotZ: 0.016769506 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 37a0cb/Custom_Model_Bag Seeker da123b/Card Expose Weakness (3) 31cebe.yaml b/unpacked/Custom_Model_Bag Seeker 37a0cb/Custom_Model_Bag Seeker da123b/Card Expose Weakness (3) 31cebe.yaml new file mode 100644 index 000000000..1eca2cc2b --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 37a0cb/Custom_Model_Bag Seeker da123b/Card Expose Weakness (3) 31cebe.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 31cebe +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Expose Weakness (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.343668 + posY: 1.351953 + posZ: -58.86791 + rotX: 0.0208084881 + rotY: 269.999756 + rotZ: 0.016769398 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 37a0cb/Custom_Model_Bag Seeker da123b/Card Extensive Research (1) 9dc10d.yaml b/unpacked/Custom_Model_Bag Seeker 37a0cb/Custom_Model_Bag Seeker da123b/Card Extensive Research (1) 9dc10d.yaml new file mode 100644 index 000000000..ab5d6d330 --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 37a0cb/Custom_Model_Bag Seeker da123b/Card Extensive Research (1) 9dc10d.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Insight. +GMNotes: '' +GUID: 9dc10d +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Extensive Research (1) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.3436565 + posY: 1.34724045 + posZ: -74.9676743 + rotX: 0.020804124 + rotY: 270.014862 + rotZ: 0.01677478 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 37a0cb/Custom_Model_Bag Seeker da123b/Card Feed the Mind (3) 64f190.yaml b/unpacked/Custom_Model_Bag Seeker 37a0cb/Custom_Model_Bag Seeker da123b/Card Feed the Mind (3) 64f190.yaml new file mode 100644 index 000000000..8bc6a6fa5 --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 37a0cb/Custom_Model_Bag Seeker da123b/Card Feed the Mind (3) 64f190.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 64f190 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Feed the Mind (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 7.07656 + posY: 1.38425064 + posZ: -54.26048 + rotX: 0.0208099168 + rotY: 269.999817 + rotZ: 0.0167713221 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 37a0cb/Custom_Model_Bag Seeker da123b/Card Forewarned (1) 5ee980.yaml b/unpacked/Custom_Model_Bag Seeker 37a0cb/Custom_Model_Bag Seeker da123b/Card Forewarned (1) 5ee980.yaml new file mode 100644 index 000000000..c3f1abd83 --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 37a0cb/Custom_Model_Bag Seeker da123b/Card Forewarned (1) 5ee980.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 291536 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 5ee980 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Forewarned (1) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.3436661 + posY: 1.354646 + posZ: -49.6678963 + rotX: 0.0208084378 + rotY: 269.999756 + rotZ: 0.0167696085 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 37a0cb/Custom_Model_Bag Seeker da123b/Card Glimpse the Unthinkable (5) ff31e9.yaml b/unpacked/Custom_Model_Bag Seeker 37a0cb/Custom_Model_Bag Seeker da123b/Card Glimpse the Unthinkable (5) ff31e9.yaml new file mode 100644 index 000000000..9b69e11a7 --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 37a0cb/Custom_Model_Bag Seeker da123b/Card Glimpse the Unthinkable (5) ff31e9.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: ff31e9 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Glimpse the Unthinkable (5) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.3436527 + posY: 1.34791362 + posZ: -72.6676559 + rotX: 0.020808503 + rotY: 269.999756 + rotZ: 0.0167693477 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 37a0cb/Custom_Model_Bag Seeker da123b/Card Grisly Totem (3) 34dc0e.yaml b/unpacked/Custom_Model_Bag Seeker 37a0cb/Custom_Model_Bag Seeker da123b/Card Grisly Totem (3) 34dc0e.yaml new file mode 100644 index 000000000..9591fc8e3 --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 37a0cb/Custom_Model_Bag Seeker da123b/Card Grisly Totem (3) 34dc0e.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Seeker +GMNotes: '' +GUID: 34dc0e +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Grisly Totem (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 7.076558 + posY: 1.382904 + posZ: -58.8604851 + rotX: 0.020809697 + rotY: 269.999634 + rotZ: 0.0167708453 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 37a0cb/Custom_Model_Bag Seeker da123b/Card Higher Education (3) 941d4e.yaml b/unpacked/Custom_Model_Bag Seeker 37a0cb/Custom_Model_Bag Seeker da123b/Card Higher Education (3) 941d4e.yaml new file mode 100644 index 000000000..d3b1172aa --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 37a0cb/Custom_Model_Bag Seeker da123b/Card Higher Education (3) 941d4e.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 291549 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 941d4e +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Higher Education (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.6296539 + posY: 1.378139 + posZ: -79.54802 + rotX: 0.0208073836 + rotY: 269.9998 + rotZ: 0.0167683922 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 37a0cb/Custom_Model_Bag Seeker da123b/Card Hyperawareness (2) 030179.yaml b/unpacked/Custom_Model_Bag Seeker 37a0cb/Custom_Model_Bag Seeker da123b/Card Hyperawareness (2) 030179.yaml new file mode 100644 index 000000000..4ae77725a --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 37a0cb/Custom_Model_Bag Seeker da123b/Card Hyperawareness (2) 030179.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 291544 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 030179 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Hyperawareness (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.62965 + posY: 1.38217843 + posZ: -65.74806 + rotX: 0.0208075587 + rotY: 269.9998 + rotZ: 0.0167686623 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 37a0cb/Custom_Model_Bag Seeker da123b/Card In the Know (1) bf7959.yaml b/unpacked/Custom_Model_Bag Seeker 37a0cb/Custom_Model_Bag Seeker da123b/Card In the Know (1) bf7959.yaml new file mode 100644 index 000000000..7356c9c12 --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 37a0cb/Custom_Model_Bag Seeker da123b/Card In the Know (1) bf7959.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 291540 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: bf7959 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: In the Know (1) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.6296463 + posY: 1.38352478 + posZ: -61.1484566 + rotX: 0.02080852 + rotY: 269.9998 + rotZ: 0.0167702567 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 37a0cb/Custom_Model_Bag Seeker da123b/Card Logical Reasoning (4) f10dfb.yaml b/unpacked/Custom_Model_Bag Seeker 37a0cb/Custom_Model_Bag Seeker da123b/Card Logical Reasoning (4) f10dfb.yaml new file mode 100644 index 000000000..6fb0229e4 --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 37a0cb/Custom_Model_Bag Seeker da123b/Card Logical Reasoning (4) f10dfb.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: f10dfb +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Logical Reasoning (4) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.3436642 + posY: 1.34993339 + posZ: -65.76754 + rotX: 0.0208084658 + rotY: 269.999756 + rotZ: 0.0167694762 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 37a0cb/Custom_Model_Bag Seeker da123b/Card Magnifying Glass (1) feb59d.yaml b/unpacked/Custom_Model_Bag Seeker 37a0cb/Custom_Model_Bag Seeker da123b/Card Magnifying Glass (1) feb59d.yaml new file mode 100644 index 000000000..ea5191da8 --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 37a0cb/Custom_Model_Bag Seeker da123b/Card Magnifying Glass (1) feb59d.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 291537 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: feb59d +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Magnifying Glass (1) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.629653 + posY: 1.38621771 + posZ: -51.9484329 + rotX: 0.02081008 + rotY: 269.999878 + rotZ: 0.0167713463 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 37a0cb/Custom_Model_Bag Seeker da123b/Card No Stone Unturned (5) 83fe7a.yaml b/unpacked/Custom_Model_Bag Seeker 37a0cb/Custom_Model_Bag Seeker da123b/Card No Stone Unturned (5) 83fe7a.yaml new file mode 100644 index 000000000..00389fae9 --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 37a0cb/Custom_Model_Bag Seeker da123b/Card No Stone Unturned (5) 83fe7a.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 291558 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 83fe7a +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: No Stone Unturned (5) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.3436623 + posY: 1.34926021 + posZ: -68.06754 + rotX: 0.0208084229 + rotY: 269.999817 + rotZ: 0.01676949 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 37a0cb/Custom_Model_Bag Seeker da123b/Card Old Book of Lore (3) 9082dd.yaml b/unpacked/Custom_Model_Bag Seeker 37a0cb/Custom_Model_Bag Seeker da123b/Card Old Book of Lore (3) 9082dd.yaml new file mode 100644 index 000000000..df5ec228d --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 37a0cb/Custom_Model_Bag Seeker da123b/Card Old Book of Lore (3) 9082dd.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Item. Tome. +GMNotes: '' +GUID: 9082dd +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Old Book of Lore (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 7.0765605 + posY: 1.38357735 + posZ: -56.560482 + rotX: 0.0208181646 + rotY: 269.9716 + rotZ: 0.01676024 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 37a0cb/Custom_Model_Bag Seeker da123b/Card Otherworld Codex (2) c1b8cf.yaml b/unpacked/Custom_Model_Bag Seeker 37a0cb/Custom_Model_Bag Seeker da123b/Card Otherworld Codex (2) c1b8cf.yaml new file mode 100644 index 000000000..f21c95871 --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 37a0cb/Custom_Model_Bag Seeker da123b/Card Otherworld Codex (2) c1b8cf.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: c1b8cf +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Otherworld Codex (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.62965 + posY: 1.37881219 + posZ: -77.24802 + rotX: 0.0208081 + rotY: 269.99762 + rotZ: 0.0167672373 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 37a0cb/Custom_Model_Bag Seeker da123b/Card Otherworldly Compass (2) 6b151e.yaml b/unpacked/Custom_Model_Bag Seeker 37a0cb/Custom_Model_Bag Seeker da123b/Card Otherworldly Compass (2) 6b151e.yaml new file mode 100644 index 000000000..7b8b0560a --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 37a0cb/Custom_Model_Bag Seeker da123b/Card Otherworldly Compass (2) 6b151e.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 291547 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 6b151e +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Otherworldly Compass (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.62965 + posY: 1.38015866 + posZ: -72.6481 + rotX: 0.0208075233 + rotY: 269.999725 + rotZ: 0.0167683437 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 37a0cb/Custom_Model_Bag Seeker da123b/Card Pathfinder (1) 31e766.yaml b/unpacked/Custom_Model_Bag Seeker 37a0cb/Custom_Model_Bag Seeker da123b/Card Pathfinder (1) 31e766.yaml new file mode 100644 index 000000000..b0cc03441 --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 37a0cb/Custom_Model_Bag Seeker da123b/Card Pathfinder (1) 31e766.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 291541 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 31e766 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Pathfinder (1) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.6296453 + posY: 1.38285148 + posZ: -63.4484329 + rotX: 0.0208108649 + rotY: 269.999817 + rotZ: 0.0167716444 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 37a0cb/Custom_Model_Bag Seeker da123b/Card Pnakotic Manuscripts (5) 04f94b.yaml b/unpacked/Custom_Model_Bag Seeker 37a0cb/Custom_Model_Bag Seeker da123b/Card Pnakotic Manuscripts (5) 04f94b.yaml new file mode 100644 index 000000000..ccb1d3913 --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 37a0cb/Custom_Model_Bag Seeker da123b/Card Pnakotic Manuscripts (5) 04f94b.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Mind-Expanding Ideas +GMNotes: '' +GUID: 04f94b +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Pnakotic Manuscripts (5) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 7.07666874 + posY: 1.37684512 + posZ: -79.56001 + rotX: 0.0208078418 + rotY: 269.999817 + rotZ: 0.0167681444 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 37a0cb/Custom_Model_Bag Seeker da123b/Card Preposterous Sketches (2) 9ad0d0.yaml b/unpacked/Custom_Model_Bag Seeker 37a0cb/Custom_Model_Bag Seeker da123b/Card Preposterous Sketches (2) 9ad0d0.yaml new file mode 100644 index 000000000..26ea4ebb8 --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 37a0cb/Custom_Model_Bag Seeker da123b/Card Preposterous Sketches (2) 9ad0d0.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 436906 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '4369': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025943833/DE98A03934DF8FF5B3CF6C53143B15BFC3ED7341/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 9ad0d0 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Preposterous Sketches (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.3436623 + posY: 1.35397279 + posZ: -51.9679 + rotX: 0.0208076425 + rotY: 270.00235 + rotZ: 0.0167706944 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 37a0cb/Custom_Model_Bag Seeker da123b/Card Quick Study (2) 12b831.yaml b/unpacked/Custom_Model_Bag Seeker 37a0cb/Custom_Model_Bag Seeker da123b/Card Quick Study (2) 12b831.yaml new file mode 100644 index 000000000..89860ffc8 --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 37a0cb/Custom_Model_Bag Seeker da123b/Card Quick Study (2) 12b831.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 291545 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 12b831 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Quick Study (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.6296577 + posY: 1.38150513 + posZ: -68.04806 + rotX: 0.02080818 + rotY: 269.999725 + rotZ: 0.0167680718 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 37a0cb/Custom_Model_Bag Seeker da123b/Card Scientific Theory (1) 588be0.yaml b/unpacked/Custom_Model_Bag Seeker 37a0cb/Custom_Model_Bag Seeker da123b/Card Scientific Theory (1) 588be0.yaml new file mode 100644 index 000000000..20a0d5cbb --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 37a0cb/Custom_Model_Bag Seeker da123b/Card Scientific Theory (1) 588be0.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 291538 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 588be0 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Scientific Theory (1) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.6296616 + posY: 1.38554454 + posZ: -54.24844 + rotX: 0.0208097026 + rotY: 269.999817 + rotZ: 0.0167705175 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 37a0cb/Custom_Model_Bag Seeker da123b/Card Scroll of Secrets (3) ec299c.yaml b/unpacked/Custom_Model_Bag Seeker 37a0cb/Custom_Model_Bag Seeker da123b/Card Scroll of Secrets (3) ec299c.yaml new file mode 100644 index 000000000..105a70d56 --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 37a0cb/Custom_Model_Bag Seeker da123b/Card Scroll of Secrets (3) ec299c.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Seeker +GMNotes: '' +GUID: ec299c +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Scroll of Secrets (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.6295118 + posY: 1.37679124 + posZ: -84.15234 + rotX: 0.0209030379 + rotY: 269.705933 + rotZ: 0.01665172 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 37a0cb/Custom_Model_Bag Seeker da123b/Card Segment of Onyx (1) 24e9e7.yaml b/unpacked/Custom_Model_Bag Seeker 37a0cb/Custom_Model_Bag Seeker da123b/Card Segment of Onyx (1) 24e9e7.yaml new file mode 100644 index 000000000..98956c348 --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 37a0cb/Custom_Model_Bag Seeker da123b/Card Segment of Onyx (1) 24e9e7.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 24e9e7 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Segment of Onyx (1) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.6296654 + posY: 1.38419807 + posZ: -58.8484459 + rotX: 0.0208096113 + rotY: 269.999817 + rotZ: 0.0167705286 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 37a0cb/Custom_Model_Bag Seeker da123b/Card Shortcut (2) 4d7114.yaml b/unpacked/Custom_Model_Bag Seeker 37a0cb/Custom_Model_Bag Seeker da123b/Card Shortcut (2) 4d7114.yaml new file mode 100644 index 000000000..1f0418bb6 --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 37a0cb/Custom_Model_Bag Seeker da123b/Card Shortcut (2) 4d7114.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 291543 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 4d7114 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Shortcut (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.343668 + posY: 1.3532995 + posZ: -54.2679024 + rotX: 0.0208077952 + rotY: 270.0014 + rotZ: 0.0167700332 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 37a0cb/Custom_Model_Bag Seeker da123b/Card Strange Solution (4) 2f833c.yaml b/unpacked/Custom_Model_Bag Seeker 37a0cb/Custom_Model_Bag Seeker da123b/Card Strange Solution (4) 2f833c.yaml new file mode 100644 index 000000000..4d0de2493 --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 37a0cb/Custom_Model_Bag Seeker da123b/Card Strange Solution (4) 2f833c.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 291556 +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 + UniqueBack: false +Description: Restorative Concoction +GMNotes: '' +GUID: 2f833c +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Strange Solution (4) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 7.07655334 + posY: 1.38021135 + posZ: -68.0601044 + rotX: 0.02080769 + rotY: 270.0 + rotZ: 0.0167689975 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 37a0cb/Custom_Model_Bag Seeker da123b/Card Strange Solution (4) 480577.yaml b/unpacked/Custom_Model_Bag Seeker 37a0cb/Custom_Model_Bag Seeker da123b/Card Strange Solution (4) 480577.yaml new file mode 100644 index 000000000..7be2f9aaa --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 37a0cb/Custom_Model_Bag Seeker da123b/Card Strange Solution (4) 480577.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 436905 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '4369': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025943833/DE98A03934DF8FF5B3CF6C53143B15BFC3ED7341/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: Empowering Elixir +GMNotes: '' +GUID: '480577' +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Strange Solution (4) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 7.076549 + posY: 1.37953794 + posZ: -70.36011 + rotX: 0.0208078772 + rotY: 269.999725 + rotZ: 0.0167677 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 37a0cb/Custom_Model_Bag Seeker da123b/Card Strange Solution (4) 760825.yaml b/unpacked/Custom_Model_Bag Seeker 37a0cb/Custom_Model_Bag Seeker da123b/Card Strange Solution (4) 760825.yaml new file mode 100644 index 000000000..ceaca85f8 --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 37a0cb/Custom_Model_Bag Seeker da123b/Card Strange Solution (4) 760825.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 291555 +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 + UniqueBack: false +Description: Acidic Ichor +GMNotes: '' +GUID: '760825' +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Strange Solution (4) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 7.07655525 + posY: 1.38088453 + posZ: -65.7601 + rotX: 0.0208077785 + rotY: 269.999756 + rotZ: 0.016767595 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 37a0cb/Custom_Model_Bag Seeker da123b/Card Strange Solution (4) c11ecd.yaml b/unpacked/Custom_Model_Bag Seeker 37a0cb/Custom_Model_Bag Seeker da123b/Card Strange Solution (4) c11ecd.yaml new file mode 100644 index 000000000..dddc919c0 --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 37a0cb/Custom_Model_Bag Seeker da123b/Card Strange Solution (4) c11ecd.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 291554 +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 + UniqueBack: false +Description: Freezing Variant +GMNotes: '' +GUID: c11ecd +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Strange Solution (4) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 7.07654953 + posY: 1.3815577 + posZ: -63.4604759 + rotX: 0.02080855 + rotY: 269.999725 + rotZ: 0.016768869 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 37a0cb/Custom_Model_Bag Seeker da123b/Card Studious (3) 31f742.yaml b/unpacked/Custom_Model_Bag Seeker 37a0cb/Custom_Model_Bag Seeker da123b/Card Studious (3) 31f742.yaml new file mode 100644 index 000000000..978e0e2fa --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 37a0cb/Custom_Model_Bag Seeker da123b/Card Studious (3) 31f742.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 31f742 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Studious (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.6316948 + posY: 1.37746644 + posZ: -81.8482361 + rotX: 0.0208073966 + rotY: 269.9997 + rotZ: 0.0167681128 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 37a0cb/Custom_Model_Bag Seeker da123b/Card Surprising Find (1) e2ec72.yaml b/unpacked/Custom_Model_Bag Seeker 37a0cb/Custom_Model_Bag Seeker da123b/Card Surprising Find (1) e2ec72.yaml new file mode 100644 index 000000000..e5a1d2205 --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 37a0cb/Custom_Model_Bag Seeker da123b/Card Surprising Find (1) e2ec72.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Fortune. Research. +GMNotes: '' +GUID: e2ec72 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Surprising Find (1) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 24.5003471 + posY: 1.35717726 + posZ: -47.41856 + rotX: 0.0208097417 + rotY: 269.9956 + rotZ: 0.0167682674 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 37a0cb/Custom_Model_Bag Seeker da123b/Card The Eye of Truth (5) 7056b3.yaml b/unpacked/Custom_Model_Bag Seeker 37a0cb/Custom_Model_Bag Seeker da123b/Card The Eye of Truth (5) 7056b3.yaml new file mode 100644 index 000000000..dcc8130a7 --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 37a0cb/Custom_Model_Bag Seeker da123b/Card The Eye of Truth (5) 7056b3.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Spell. Practiced. +GMNotes: '' +GUID: 7056b3 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: The Eye of Truth (5) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 24.5003471 + posY: 1.35583067 + posZ: -52.01855 + rotX: 0.0208169427 + rotY: 269.971 + rotZ: 0.0167589989 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 43a175.ttslua b/unpacked/Custom_Model_Bag Seeker 43a175.ttslua new file mode 100644 index 000000000..857093fb8 --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 43a175.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,0,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 + 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=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,0,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,0,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,0,0}, height=350, width=750, + 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}, rotation={0,0,0}, height=350, width=800, + font_size=250, color={0,0,0}, font_color={1,1,1} + }) +-- self.createButton({ +-- label="Setup", click_function="buttonClick_setup", function_owner=self, +-- position={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.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 \ No newline at end of file diff --git a/unpacked/Custom_Model_Bag Seeker 43a175.yaml b/unpacked/Custom_Model_Bag Seeker 43a175.yaml new file mode 100644 index 000000000..eecf05acd --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 43a175.yaml @@ -0,0 +1,103 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +ContainedObjects: +- !include 'Custom_Model_Bag Seeker 43a175/Card Curiosity fb48a9.yaml' +- !include 'Custom_Model_Bag Seeker 43a175/Card Eureka! 244e5d.yaml' +- !include 'Custom_Model_Bag Seeker 43a175/Card Inquiring Mind ba1c85.yaml' +- !include 'Custom_Model_Bag Seeker 43a175/Card Deduction e7f376.yaml' +- !include 'Custom_Model_Bag Seeker 43a175/Card True Understanding 03bb19.yaml' +- !include 'Custom_Model_Bag Seeker 43a175/Card Astounding Revelation 70406e.yaml' +- !include 'Custom_Model_Bag Seeker 43a175/Card Connect the Dots 94abd7.yaml' +- !include 'Custom_Model_Bag Seeker 43a175/Card Barricade 38217d.yaml' +- !include 'Custom_Model_Bag Seeker 43a175/Card Archaic Glyphs 560b32.yaml' +- !include 'Custom_Model_Bag Seeker 43a175/Card Shrewd Analysis d950d8.yaml' +- !include 'Custom_Model_Bag Seeker 43a175/Card Magnifying Glass 2239d4.yaml' +- !include 'Custom_Model_Bag Seeker 43a175/Card Dr. Milian Christopher 4ee663.yaml' +- !include 'Custom_Model_Bag Seeker 43a175/Card Tooth of Eztli 7d0ada.yaml' +- !include 'Custom_Model_Bag Seeker 43a175/Card Old Book of Lore e13107.yaml' +- !include 'Custom_Model_Bag Seeker 43a175/Card Fingerprint Kit b73951.yaml' +- !include 'Custom_Model_Bag Seeker 43a175/Card Strange Solution e5d521.yaml' +- !include 'Custom_Model_Bag Seeker 43a175/Card Dream Diary 52f66c.yaml' +- !include 'Custom_Model_Bag Seeker 43a175/Card Scroll of Secrets f475ca.yaml' +- !include 'Custom_Model_Bag Seeker 43a175/Card Ghastly Revelation bf4815.yaml' +- !include 'Custom_Model_Bag Seeker 43a175/Card Crack the Case d83a35.yaml' +- !include 'Custom_Model_Bag Seeker 43a175/Card Knowledge is Power 070246.yaml' +- !include 'Custom_Model_Bag Seeker 43a175/Card Shortcut 00ade1.yaml' +- !include 'Custom_Model_Bag Seeker 43a175/Card Guidance f8e2fb.yaml' +- !include 'Custom_Model_Bag Seeker 43a175/Card Anatomical Diagrams e957df.yaml' +- !include 'Custom_Model_Bag Seeker 43a175/Card Mind over Matter 6d5337.yaml' +- !include 'Custom_Model_Bag Seeker 43a175/Card Practice Makes Perfect 088c27.yaml' +- !include 'Custom_Model_Bag Seeker 43a175/Card Seeking Answers e4f8ba.yaml' +- !include 'Custom_Model_Bag Seeker 43a175/Card Unearth the Ancients bc0fb2.yaml' +- !include 'Custom_Model_Bag Seeker 43a175/Card Vantage Point c03b59.yaml' +- !include 'Custom_Model_Bag Seeker 43a175/Card Art Student 7dfe08.yaml' +- !include 'Custom_Model_Bag Seeker 43a175/Card Laboratory Assistant 889177.yaml' +- !include 'Custom_Model_Bag Seeker 43a175/Card Research Librarian 92890f.yaml' +- !include 'Custom_Model_Bag Seeker 43a175/Card Medical Texts 73172c.yaml' +- !include 'Custom_Model_Bag Seeker 43a175/Card Hyperawareness 9902a8.yaml' +- !include 'Custom_Model_Bag Seeker 43a175/Card Hawk-Eye Folding Camera 05125c.yaml' +- !include 'Custom_Model_Bag Seeker 43a175/Card Dr. William T. Maleson 5e0769.yaml' +- !include 'Custom_Model_Bag Seeker 43a175/Card Charles Ross, Esq. 176d57.yaml' +- !include 'Custom_Model_Bag Seeker 43a175/Card Fieldwork 922850.yaml' +- !include 'Custom_Model_Bag Seeker 43a175/Card Occult Lexicon 3d6f47.yaml' +- !include 'Custom_Model_Bag Seeker 43a175/Card Grisly Totem d5bad4.yaml' +- !include 'Custom_Model_Bag Seeker 43a175/Card Dr. Elli Horowitz 7973c0.yaml' +- !include 'Custom_Model_Bag Seeker 43a175/Card Mr. Rook b3debc.yaml' +- !include 'Custom_Model_Bag Seeker 43a175/Card Dream-Enhancing Serum 1c353d.yaml' +- !include 'Custom_Model_Bag Seeker 43a175/Card I''ve got a plan! 338973.yaml' +- !include 'Custom_Model_Bag Seeker 43a175/Card Working a Hunch 05660e.yaml' +- !include 'Custom_Model_Bag Seeker 43a175/Card Truth from Fiction b57f33.yaml' +- !include 'Custom_Model_Bag Seeker 43a175/Card Preposterous Sketches 65a64f.yaml' +- !include 'Custom_Model_Bag Seeker 43a175/Card Persuasion 7b6e14.yaml' +- !include 'Custom_Model_Bag Seeker 43a175/Card No Stone Unturned cc7761.yaml' +- !include 'Custom_Model_Bag Seeker 43a175/Card Logical Reasoning f6b017.yaml' +- !include 'Custom_Model_Bag Seeker 43a175/Custom_Model_Bag Seeker c7e271.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/952965722516265983/F50A6212D30C442429ED22B8CC8FD24D4CB76A2A/ + MaterialIndex: 3 + MeshURL: https://pastebin.com/raw/ALrYhQGb + NormalURL: '' + TypeIndex: 6 +Description: '' +GMNotes: '' +GUID: 43a175 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: true +LuaScript: !include 'Custom_Model_Bag Seeker 43a175.ttslua' +LuaScriptState: '{"ml":{"00ade1":{"lock":false,"pos":{"x":53.2286,"y":1.3646,"z":80.9412},"rot":{"x":0.0208,"y":269.9883,"z":0.0168}},"03bb19":{"lock":false,"pos":{"x":58.3839,"y":1.3671,"z":83.1904},"rot":{"x":0.0208,"y":269.9711,"z":0.0168}},"05125c":{"lock":false,"pos":{"x":44.5133,"y":1.3601,"z":76.3607},"rot":{"x":0.0208,"y":269.9787,"z":0.0168}},"05660e":{"lock":false,"pos":{"x":53.2128,"y":1.3559,"z":51.0517},"rot":{"x":0.0208,"y":269.9914,"z":0.0168}},"070246":{"lock":false,"pos":{"x":53.2286,"y":1.3653,"z":83.2412},"rot":{"x":0.0208,"y":269.9875,"z":0.0168}},"088c27":{"lock":false,"pos":{"x":53.2286,"y":1.3619,"z":71.7412},"rot":{"x":0.0208,"y":270.0107,"z":0.0168}},"176d57":{"lock":false,"pos":{"x":44.5133,"y":1.3561,"z":62.5608},"rot":{"x":0.0208,"y":269.98,"z":0.0168}},"1c353d":{"lock":false,"pos":{"x":44.4974,"y":1.352,"z":48.764},"rot":{"x":0.0208,"y":269.9771,"z":0.0168}},"2239d4":{"lock":false,"pos":{"x":44.5133,"y":1.3635,"z":87.8608},"rot":{"x":0.0208,"y":269.9784,"z":0.0168}},"244e5d":{"lock":false,"pos":{"x":58.3839,"y":1.3692,"z":90.0904},"rot":{"x":0.0208,"y":269.9683,"z":0.0168}},"338973":{"lock":false,"pos":{"x":53.2126,"y":1.3552,"z":48.7453},"rot":{"x":0.0208,"y":269.9877,"z":0.0168}},"38217d":{"lock":false,"pos":{"x":53.2286,"y":1.3673,"z":90.1413},"rot":{"x":0.0208,"y":269.9883,"z":0.0168}},"3d6f47":{"lock":false,"pos":{"x":44.5154,"y":1.3547,"z":57.9606},"rot":{"x":0.0208,"y":269.9789,"z":0.0168}},"4ee663":{"lock":false,"pos":{"x":40.9602,"y":1.3622,"z":87.8487},"rot":{"x":0.0208,"y":269.9846,"z":0.0168}},"52f66c":{"lock":false,"pos":{"x":44.5133,"y":1.3614,"z":80.9607},"rot":{"x":0.0208,"y":269.9904,"z":0.0168}},"560b32":{"lock":false,"pos":{"x":44.5133,"y":1.3641,"z":90.1608},"rot":{"x":0.0208,"y":269.9786,"z":0.0168}},"5e0769":{"lock":false,"pos":{"x":44.5133,"y":1.3608,"z":78.6607},"rot":{"x":0.0208,"y":269.9786,"z":0.0168}},"65a64f":{"lock":false,"pos":{"x":53.2285,"y":1.3572,"z":55.6412},"rot":{"x":0.0208,"y":269.9911,"z":0.0168}},"6d5337":{"lock":false,"pos":{"x":53.2286,"y":1.3626,"z":74.0412},"rot":{"x":0.0208,"y":269.9875,"z":0.0168}},"70406e":{"lock":false,"pos":{"x":53.2286,"y":1.368,"z":92.4412},"rot":{"x":0.0208,"y":269.9878,"z":0.0168}},"73172c":{"lock":false,"pos":{"x":44.5133,"y":1.3588,"z":71.7607},"rot":{"x":0.0208,"y":269.9787,"z":0.0168}},"7973c0":{"lock":false,"pos":{"x":44.5134,"y":1.3534,"z":53.3608},"rot":{"x":0.0208,"y":269.9846,"z":0.0168}},"7b6e14":{"lock":false,"pos":{"x":53.2306,"y":1.3579,"z":57.941},"rot":{"x":0.0208,"y":269.9882,"z":0.0168}},"7d0ada":{"lock":false,"pos":{"x":40.9602,"y":1.3628,"z":90.1487},"rot":{"x":0.0208,"y":269.9847,"z":0.0168}},"7dfe08":{"lock":false,"pos":{"x":44.5133,"y":1.3567,"z":64.8607},"rot":{"x":0.0208,"y":269.9881,"z":0.0168}},"889177":{"lock":false,"pos":{"x":44.5133,"y":1.3574,"z":67.1607},"rot":{"x":0.0208,"y":269.9787,"z":0.0168}},"922850":{"lock":false,"pos":{"x":44.5133,"y":1.3554,"z":60.2608},"rot":{"x":0.0208,"y":269.9786,"z":0.0168}},"92890f":{"lock":false,"pos":{"x":44.5133,"y":1.3581,"z":69.4607},"rot":{"x":0.0208,"y":269.9786,"z":0.0168}},"94abd7":{"lock":false,"pos":{"x":49.5629,"y":1.3666,"z":92.4528},"rot":{"x":0.0208,"y":269.9841,"z":0.0168}},"9902a8":{"lock":false,"pos":{"x":44.5133,"y":1.3594,"z":74.0607},"rot":{"x":0.0208,"y":269.9784,"z":0.0168}},"b3debc":{"lock":false,"pos":{"x":44.4975,"y":1.3527,"z":51.0713},"rot":{"x":0.0208,"y":269.9846,"z":0.0168}},"b57f33":{"lock":false,"pos":{"x":53.2286,"y":1.3565,"z":53.3412},"rot":{"x":0.0208,"y":269.9877,"z":0.0168}},"b73951":{"lock":false,"pos":{"x":40.9602,"y":1.3615,"z":85.5487},"rot":{"x":0.0208,"y":269.9684,"z":0.0168}},"ba1c85":{"lock":false,"pos":{"x":58.3839,"y":1.3685,"z":87.7904},"rot":{"x":0.0208,"y":269.9713,"z":0.0168}},"bc0fb2":{"lock":false,"pos":{"x":53.2286,"y":1.3606,"z":67.1411},"rot":{"x":0.0208,"y":269.9882,"z":0.0168}},"bf4815":{"lock":false,"pos":{"x":53.2286,"y":1.366,"z":85.5412},"rot":{"x":0.0208,"y":269.9877,"z":0.0168}},"c03b59":{"lock":false,"pos":{"x":53.2286,"y":1.3599,"z":64.8411},"rot":{"x":0.0208,"y":269.9883,"z":0.0168}},"cc7761":{"lock":false,"pos":{"x":53.2286,"y":1.3585,"z":60.2412},"rot":{"x":0.0208,"y":269.9807,"z":0.0168}},"d5bad4":{"lock":false,"pos":{"x":44.5132,"y":1.354,"z":55.6608},"rot":{"x":0.0208,"y":269.9846,"z":0.0168}},"d83a35":{"lock":false,"pos":{"x":53.2286,"y":1.3666,"z":87.8412},"rot":{"x":0.0208,"y":269.9883,"z":0.0168}},"d950d8":{"lock":false,"pos":{"x":44.5133,"y":1.3648,"z":92.4607},"rot":{"x":0.0208,"y":269.9785,"z":0.0168}},"e13107":{"lock":false,"pos":{"x":40.9602,"y":1.3635,"z":92.4487},"rot":{"x":0.0208,"y":269.9846,"z":0.0168}},"e4f8ba":{"lock":false,"pos":{"x":53.2286,"y":1.3612,"z":69.4412},"rot":{"x":0.0208,"y":269.9908,"z":0.0168}},"e5d521":{"lock":false,"pos":{"x":44.5133,"y":1.3621,"z":83.2607},"rot":{"x":0.0208,"y":269.9787,"z":0.0168}},"e7f376":{"lock":false,"pos":{"x":58.3839,"y":1.3678,"z":85.4904},"rot":{"x":0.0208,"y":269.9648,"z":0.0168}},"e957df":{"lock":false,"pos":{"x":53.2286,"y":1.3633,"z":76.3412},"rot":{"x":0.0208,"y":269.988,"z":0.0168}},"f475ca":{"lock":false,"pos":{"x":44.5133,"y":1.3628,"z":85.5607},"rot":{"x":0.0208,"y":269.9786,"z":0.0168}},"f6b017":{"lock":false,"pos":{"x":53.2286,"y":1.3592,"z":62.5412},"rot":{"x":0.0208,"y":269.981,"z":0.0168}},"f8e2fb":{"lock":false,"pos":{"x":53.2286,"y":1.3639,"z":78.6412},"rot":{"x":0.0208,"y":269.9909,"z":0.0168}},"fb48a9":{"lock":false,"pos":{"x":58.3839,"y":1.3698,"z":92.3904},"rot":{"x":0.0208,"y":269.9713,"z":0.0168}}}}' +MaterialIndex: -1 +MeshIndex: -1 +Name: Custom_Model_Bag +Nickname: Seeker +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 66.5765457 + posY: 1.4146862 + posZ: 70.50678 + rotX: 0.02080522 + rotY: 270.01947 + rotZ: 0.0167774651 + scaleX: 1.2 + scaleY: 1.2 + scaleZ: 1.2 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 43a175/Card Anatomical Diagrams e957df.yaml b/unpacked/Custom_Model_Bag Seeker 43a175/Card Anatomical Diagrams e957df.yaml new file mode 100644 index 000000000..890a67f73 --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 43a175/Card Anatomical Diagrams e957df.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 230409 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: e957df +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Anatomical Diagrams +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 53.2285728 + posY: 1.36326 + posZ: 76.34123 + rotX: 0.02081165 + rotY: 269.988 + rotZ: 0.0167653821 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 43a175/Card Archaic Glyphs 560b32.yaml b/unpacked/Custom_Model_Bag Seeker 43a175/Card Archaic Glyphs 560b32.yaml new file mode 100644 index 000000000..e68d5d7b2 --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 43a175/Card Archaic Glyphs 560b32.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 230420 +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 + UniqueBack: false +Description: Untranslated +GMNotes: '' +GUID: 560b32 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Archaic Glyphs +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.5133247 + posY: 1.36414 + posZ: 90.16076 + rotX: 0.0208145957 + rotY: 269.9786 + rotZ: 0.01676197 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 43a175/Card Art Student 7dfe08.yaml b/unpacked/Custom_Model_Bag Seeker 43a175/Card Art Student 7dfe08.yaml new file mode 100644 index 000000000..e8c37ec99 --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 43a175/Card Art Student 7dfe08.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 230428 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 7dfe08 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Art Student +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.5133171 + posY: 1.3567344 + posZ: 64.8606949 + rotX: 0.0208116118 + rotY: 269.988129 + rotZ: 0.01676533 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 43a175/Card Astounding Revelation 70406e.yaml b/unpacked/Custom_Model_Bag Seeker 43a175/Card Astounding Revelation 70406e.yaml new file mode 100644 index 000000000..6e5f8da30 --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 43a175/Card Astounding Revelation 70406e.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 447825 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 70406e +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Astounding Revelation +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 53.22858 + posY: 1.367973 + posZ: 92.44124 + rotX: 0.02081172 + rotY: 269.9878 + rotZ: 0.0167653821 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 43a175/Card Barricade 38217d.yaml b/unpacked/Custom_Model_Bag Seeker 43a175/Card Barricade 38217d.yaml new file mode 100644 index 000000000..00b198490 --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 43a175/Card Barricade 38217d.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 230404 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 38217d +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Barricade +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 53.22858 + posY: 1.36729944 + posZ: 90.14125 + rotX: 0.0208114125 + rotY: 269.988251 + rotZ: 0.0167656485 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 43a175/Card Charles Ross, Esq. 176d57.yaml b/unpacked/Custom_Model_Bag Seeker 43a175/Card Charles Ross, Esq. 176d57.yaml new file mode 100644 index 000000000..0b48e06eb --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 43a175/Card Charles Ross, Esq. 176d57.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 230430 +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 + UniqueBack: false +Description: Acquisitions and Solicitation +GMNotes: '' +GUID: 176d57 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Charles Ross, Esq. +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.51332 + posY: 1.356061 + posZ: 62.5607872 + rotX: 0.0208162013 + rotY: 269.98 + rotZ: 0.0167656112 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 43a175/Card Connect the Dots 94abd7.yaml b/unpacked/Custom_Model_Bag Seeker 43a175/Card Connect the Dots 94abd7.yaml new file mode 100644 index 000000000..c227c7500 --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 43a175/Card Connect the Dots 94abd7.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 279409 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2794': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025943833/DE98A03934DF8FF5B3CF6C53143B15BFC3ED7341/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 94abd7 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Connect the Dots +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 49.5628624 + posY: 1.36664486 + posZ: 92.4528046 + rotX: 0.02081262 + rotY: 269.9841 + rotZ: 0.0167638175 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 43a175/Card Crack the Case d83a35.yaml b/unpacked/Custom_Model_Bag Seeker 43a175/Card Crack the Case d83a35.yaml new file mode 100644 index 000000000..d2ef21aad --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 43a175/Card Crack the Case d83a35.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: d83a35 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Crack the Case +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 53.22858 + posY: 1.36662626 + posZ: 87.84125 + rotX: 0.0208114423 + rotY: 269.988251 + rotZ: 0.0167654455 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 43a175/Card Curiosity fb48a9.yaml b/unpacked/Custom_Model_Bag Seeker 43a175/Card Curiosity fb48a9.yaml new file mode 100644 index 000000000..fa175b8b0 --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 43a175/Card Curiosity fb48a9.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 279308 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2793': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025943833/DE98A03934DF8FF5B3CF6C53143B15BFC3ED7341/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: fb48a9 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Curiosity +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 58.3838539 + posY: 1.36983013 + posZ: 92.39038 + rotX: 0.0208164733 + rotY: 269.9713 + rotZ: 0.0167593155 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 43a175/Card Deduction e7f376.yaml b/unpacked/Custom_Model_Bag Seeker 43a175/Card Deduction e7f376.yaml new file mode 100644 index 000000000..5ad82c417 --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 43a175/Card Deduction e7f376.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: e7f376 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Deduction +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 58.38386 + posY: 1.36781037 + posZ: 85.49039 + rotX: 0.0208183639 + rotY: 269.964844 + rotZ: 0.0167570543 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 43a175/Card Dr. Elli Horowitz 7973c0.yaml b/unpacked/Custom_Model_Bag Seeker 43a175/Card Dr. Elli Horowitz 7973c0.yaml new file mode 100644 index 000000000..017d40b70 --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 43a175/Card Dr. Elli Horowitz 7973c0.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 230433 +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 + UniqueBack: false +Description: Assistant Curator +GMNotes: '' +GUID: 7973c0 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Dr. Elli Horowitz +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.5133629 + posY: 1.35336816 + posZ: 53.36077 + rotX: 0.0208146628 + rotY: 269.98465 + rotZ: 0.016767107 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 43a175/Card Dr. Milian Christopher 4ee663.yaml b/unpacked/Custom_Model_Bag Seeker 43a175/Card Dr. Milian Christopher 4ee663.yaml new file mode 100644 index 000000000..d51c40c7d --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 43a175/Card Dr. Milian Christopher 4ee663.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 230434 +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 + UniqueBack: false +Description: Professor of Entomology +GMNotes: '' +GUID: 4ee663 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Dr. Milian Christopher +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 40.960228 + posY: 1.36217284 + posZ: 87.8487244 + rotX: 0.020812694 + rotY: 269.984619 + rotZ: 0.0167641751 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 43a175/Card Dr. William T. Maleson 5e0769.yaml b/unpacked/Custom_Model_Bag Seeker 43a175/Card Dr. William T. Maleson 5e0769.yaml new file mode 100644 index 000000000..5b83e112a --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 43a175/Card Dr. William T. Maleson 5e0769.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 230423 +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 + UniqueBack: false +Description: Working on Something Big +GMNotes: '' +GUID: 5e0769 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Dr. William T. Maleson +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.51332 + posY: 1.3607738 + posZ: 78.66074 + rotX: 0.0208142 + rotY: 269.9786 + rotZ: 0.0167621076 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 43a175/Card Dream Diary 52f66c.yaml b/unpacked/Custom_Model_Bag Seeker 43a175/Card Dream Diary 52f66c.yaml new file mode 100644 index 000000000..15a83694d --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 43a175/Card Dream Diary 52f66c.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Untranslated +GMNotes: '' +GUID: 52f66c +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Dream Diary +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.51333 + posY: 1.3614471 + posZ: 80.96075 + rotX: 0.0208108854 + rotY: 269.990356 + rotZ: 0.0167662129 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 43a175/Card Dream-Enhancing Serum 1c353d.yaml b/unpacked/Custom_Model_Bag Seeker 43a175/Card Dream-Enhancing Serum 1c353d.yaml new file mode 100644 index 000000000..3410fdd6d --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 43a175/Card Dream-Enhancing Serum 1c353d.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 1c353d +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Dream-Enhancing Serum +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.49737 + posY: 1.352017 + posZ: 48.7640038 + rotX: 0.0208169557 + rotY: 269.977142 + rotZ: 0.0167645738 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 43a175/Card Eureka! 244e5d.yaml b/unpacked/Custom_Model_Bag Seeker 43a175/Card Eureka! 244e5d.yaml new file mode 100644 index 000000000..9efd2d426 --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 43a175/Card Eureka! 244e5d.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 230400 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 244e5d +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Eureka! +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 58.3838539 + posY: 1.36915684 + posZ: 90.09039 + rotX: 0.0208173525 + rotY: 269.968262 + rotZ: 0.0167581867 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 43a175/Card Fieldwork 922850.yaml b/unpacked/Custom_Model_Bag Seeker 43a175/Card Fieldwork 922850.yaml new file mode 100644 index 000000000..fe3824a14 --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 43a175/Card Fieldwork 922850.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 230429 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: '922850' +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Fieldwork +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.51332 + posY: 1.35538781 + posZ: 60.260788 + rotX: 0.0208164174 + rotY: 269.978577 + rotZ: 0.0167648327 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 43a175/Card Fingerprint Kit b73951.yaml b/unpacked/Custom_Model_Bag Seeker 43a175/Card Fingerprint Kit b73951.yaml new file mode 100644 index 000000000..042d0ed43 --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 43a175/Card Fingerprint Kit b73951.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: b73951 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Fingerprint Kit +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 40.96023 + posY: 1.36149967 + posZ: 85.54871 + rotX: 0.0208174326 + rotY: 269.968445 + rotZ: 0.0167584568 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 43a175/Card Ghastly Revelation bf4815.yaml b/unpacked/Custom_Model_Bag Seeker 43a175/Card Ghastly Revelation bf4815.yaml new file mode 100644 index 000000000..7e736a66b --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 43a175/Card Ghastly Revelation bf4815.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: bf4815 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Ghastly Revelation +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 53.2285843 + posY: 1.36595309 + posZ: 85.5412445 + rotX: 0.020811351 + rotY: 269.987671 + rotZ: 0.0167653468 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 43a175/Card Grisly Totem d5bad4.yaml b/unpacked/Custom_Model_Bag Seeker 43a175/Card Grisly Totem d5bad4.yaml new file mode 100644 index 000000000..29403b7e0 --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 43a175/Card Grisly Totem d5bad4.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: d5bad4 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Grisly Totem +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.5132332 + posY: 1.35404134 + posZ: 55.66079 + rotX: 0.0208147075 + rotY: 269.984619 + rotZ: 0.0167672411 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 43a175/Card Guidance f8e2fb.yaml b/unpacked/Custom_Model_Bag Seeker 43a175/Card Guidance f8e2fb.yaml new file mode 100644 index 000000000..49c9c91fd --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 43a175/Card Guidance f8e2fb.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 230406 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: f8e2fb +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Guidance +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 53.2285728 + posY: 1.36393321 + posZ: 78.6412354 + rotX: 0.0208106 + rotY: 269.990936 + rotZ: 0.0167663489 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 43a175/Card Hawk-Eye Folding Camera 05125c.yaml b/unpacked/Custom_Model_Bag Seeker 43a175/Card Hawk-Eye Folding Camera 05125c.yaml new file mode 100644 index 000000000..87626ff36 --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 43a175/Card Hawk-Eye Folding Camera 05125c.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 05125c +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Hawk-Eye Folding Camera +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.51332 + posY: 1.36010051 + posZ: 76.36074 + rotX: 0.0208142847 + rotY: 269.978668 + rotZ: 0.016762143 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 43a175/Card Hyperawareness 9902a8.yaml b/unpacked/Custom_Model_Bag Seeker 43a175/Card Hyperawareness 9902a8.yaml new file mode 100644 index 000000000..98cd5d816 --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 43a175/Card Hyperawareness 9902a8.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 9902a8 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Hyperawareness +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.51332 + posY: 1.35942733 + posZ: 74.0607452 + rotX: 0.0208144356 + rotY: 269.978424 + rotZ: 0.0167619959 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 43a175/Card I've got a plan! 338973.yaml b/unpacked/Custom_Model_Bag Seeker 43a175/Card I've got a plan! 338973.yaml new file mode 100644 index 000000000..01ed5ea07 --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 43a175/Card I've got a plan! 338973.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 230418 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: '338973' +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '"I''ve got a plan!"' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 53.212635 + posY: 1.35517645 + posZ: 48.74529 + rotX: 0.0208140239 + rotY: 269.987732 + rotZ: 0.0167681556 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 43a175/Card Inquiring Mind ba1c85.yaml b/unpacked/Custom_Model_Bag Seeker 43a175/Card Inquiring Mind ba1c85.yaml new file mode 100644 index 000000000..c0404d63b --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 43a175/Card Inquiring Mind ba1c85.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 230401 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: ba1c85 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Inquiring Mind +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 58.3838539 + posY: 1.36848366 + posZ: 87.79039 + rotX: 0.02081624 + rotY: 269.9713 + rotZ: 0.0167592261 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 43a175/Card Knowledge is Power 070246.yaml b/unpacked/Custom_Model_Bag Seeker 43a175/Card Knowledge is Power 070246.yaml new file mode 100644 index 000000000..21ef31cfd --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 43a175/Card Knowledge is Power 070246.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: '070246' +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Knowledge is Power +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 53.2285843 + posY: 1.36527979 + posZ: 83.24124 + rotX: 0.0208119955 + rotY: 269.987457 + rotZ: 0.0167651884 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 43a175/Card Laboratory Assistant 889177.yaml b/unpacked/Custom_Model_Bag Seeker 43a175/Card Laboratory Assistant 889177.yaml new file mode 100644 index 000000000..2dff5a409 --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 43a175/Card Laboratory Assistant 889177.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 230427 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: '889177' +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Laboratory Assistant +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.5133171 + posY: 1.35740757 + posZ: 67.1607056 + rotX: 0.0208144449 + rotY: 269.9787 + rotZ: 0.0167619642 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 43a175/Card Logical Reasoning f6b017.yaml b/unpacked/Custom_Model_Bag Seeker 43a175/Card Logical Reasoning f6b017.yaml new file mode 100644 index 000000000..3ae90ee56 --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 43a175/Card Logical Reasoning f6b017.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 230417 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: f6b017 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Logical Reasoning +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 53.2285728 + posY: 1.3592205 + posZ: 62.5411949 + rotX: 0.0208156873 + rotY: 269.981 + rotZ: 0.0167659968 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 43a175/Card Magnifying Glass 2239d4.yaml b/unpacked/Custom_Model_Bag Seeker 43a175/Card Magnifying Glass 2239d4.yaml new file mode 100644 index 000000000..7d026c1a9 --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 43a175/Card Magnifying Glass 2239d4.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 2239d4 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Magnifying Glass +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.51333 + posY: 1.36346674 + posZ: 87.8607559 + rotX: 0.020814199 + rotY: 269.978424 + rotZ: 0.0167618543 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 43a175/Card Medical Texts 73172c.yaml b/unpacked/Custom_Model_Bag Seeker 43a175/Card Medical Texts 73172c.yaml new file mode 100644 index 000000000..09a336998 --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 43a175/Card Medical Texts 73172c.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 230425 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 73172c +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Medical Texts +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.5133247 + posY: 1.358754 + posZ: 71.76074 + rotX: 0.0208140854 + rotY: 269.9787 + rotZ: 0.0167622454 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 43a175/Card Mind over Matter 6d5337.yaml b/unpacked/Custom_Model_Bag Seeker 43a175/Card Mind over Matter 6d5337.yaml new file mode 100644 index 000000000..e7cdb2db3 --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 43a175/Card Mind over Matter 6d5337.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 230408 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 6d5337 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Mind over Matter +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 53.2285767 + posY: 1.36258686 + posZ: 74.04124 + rotX: 0.0208117329 + rotY: 269.9875 + rotZ: 0.0167651474 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 43a175/Card Mr. Rook b3debc.yaml b/unpacked/Custom_Model_Bag Seeker 43a175/Card Mr. Rook b3debc.yaml new file mode 100644 index 000000000..6e85a5b74 --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 43a175/Card Mr. Rook b3debc.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: b3debc +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Mr. "Rook" +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.4975433 + posY: 1.35269225 + posZ: 51.07133 + rotX: 0.0208149031 + rotY: 269.98465 + rotZ: 0.0167671442 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 43a175/Card No Stone Unturned cc7761.yaml b/unpacked/Custom_Model_Bag Seeker 43a175/Card No Stone Unturned cc7761.yaml new file mode 100644 index 000000000..efbcafe87 --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 43a175/Card No Stone Unturned cc7761.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 230415 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: cc7761 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: No Stone Unturned +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 53.2285728 + posY: 1.35854721 + posZ: 60.2411957 + rotX: 0.02081579 + rotY: 269.9807 + rotZ: 0.0167656168 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 43a175/Card Occult Lexicon 3d6f47.yaml b/unpacked/Custom_Model_Bag Seeker 43a175/Card Occult Lexicon 3d6f47.yaml new file mode 100644 index 000000000..9e5d595d1 --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 43a175/Card Occult Lexicon 3d6f47.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 3d6f47 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Occult Lexicon +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.515358 + posY: 1.35471523 + posZ: 57.9605675 + rotX: 0.020816436 + rotY: 269.978882 + rotZ: 0.0167652331 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 43a175/Card Old Book of Lore e13107.yaml b/unpacked/Custom_Model_Bag Seeker 43a175/Card Old Book of Lore e13107.yaml new file mode 100644 index 000000000..ad4278372 --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 43a175/Card Old Book of Lore e13107.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 230431 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: e13107 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Old Book of Lore +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 40.960228 + posY: 1.36351931 + posZ: 92.4487152 + rotX: 0.0208126418 + rotY: 269.984619 + rotZ: 0.0167641118 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 43a175/Card Persuasion 7b6e14.yaml b/unpacked/Custom_Model_Bag Seeker 43a175/Card Persuasion 7b6e14.yaml new file mode 100644 index 000000000..2db2522e3 --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 43a175/Card Persuasion 7b6e14.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 7b6e14 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Persuasion +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 53.23061 + posY: 1.35787463 + posZ: 57.9409752 + rotX: 0.020813765 + rotY: 269.9882 + rotZ: 0.0167686176 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 43a175/Card Practice Makes Perfect 088c27.yaml b/unpacked/Custom_Model_Bag Seeker 43a175/Card Practice Makes Perfect 088c27.yaml new file mode 100644 index 000000000..e477152b1 --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 43a175/Card Practice Makes Perfect 088c27.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Gambit. Tactic. +GMNotes: '' +GUID: 088c27 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Practice Makes Perfect +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 53.2285767 + posY: 1.36191356 + posZ: 71.7412338 + rotX: 0.0208052211 + rotY: 270.010681 + rotZ: 0.0167736057 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 43a175/Card Preposterous Sketches 65a64f.yaml b/unpacked/Custom_Model_Bag Seeker 43a175/Card Preposterous Sketches 65a64f.yaml new file mode 100644 index 000000000..0528301bf --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 43a175/Card Preposterous Sketches 65a64f.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 230416 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 65a64f +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Preposterous Sketches +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 53.2284851 + posY: 1.35720074 + posZ: 55.6411972 + rotX: 0.020813128 + rotY: 269.99115 + rotZ: 0.0167694762 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 43a175/Card Research Librarian 92890f.yaml b/unpacked/Custom_Model_Bag Seeker 43a175/Card Research Librarian 92890f.yaml new file mode 100644 index 000000000..d391fbe0f --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 43a175/Card Research Librarian 92890f.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 230426 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 92890f +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Research Librarian +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.51332 + posY: 1.35808086 + posZ: 69.46074 + rotX: 0.0208142083 + rotY: 269.978638 + rotZ: 0.0167619139 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 43a175/Card Scroll of Secrets f475ca.yaml b/unpacked/Custom_Model_Bag Seeker 43a175/Card Scroll of Secrets f475ca.yaml new file mode 100644 index 000000000..01c4af02d --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 43a175/Card Scroll of Secrets f475ca.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: f475ca +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Scroll of Secrets +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.5133171 + posY: 1.36279345 + posZ: 85.56073 + rotX: 0.0208166428 + rotY: 269.978577 + rotZ: 0.0167652853 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 43a175/Card Seeking Answers e4f8ba.yaml b/unpacked/Custom_Model_Bag Seeker 43a175/Card Seeking Answers e4f8ba.yaml new file mode 100644 index 000000000..91d17e05d --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 43a175/Card Seeking Answers e4f8ba.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 230407 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: e4f8ba +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Seeking Answers +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 53.2285728 + posY: 1.36124027 + posZ: 69.44123 + rotX: 0.0208106544 + rotY: 269.990845 + rotZ: 0.016766496 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 43a175/Card Shortcut 00ade1.yaml b/unpacked/Custom_Model_Bag Seeker 43a175/Card Shortcut 00ade1.yaml new file mode 100644 index 000000000..2151b5a93 --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 43a175/Card Shortcut 00ade1.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 00ade1 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Shortcut +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 53.22858 + posY: 1.3646065 + posZ: 80.94124 + rotX: 0.02081165 + rotY: 269.988281 + rotZ: 0.016765492 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 43a175/Card Shrewd Analysis d950d8.yaml b/unpacked/Custom_Model_Bag Seeker 43a175/Card Shrewd Analysis d950d8.yaml new file mode 100644 index 000000000..b468cf444 --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 43a175/Card Shrewd Analysis d950d8.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 230419 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: d950d8 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Shrewd Analysis +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.51333 + posY: 1.36481321 + posZ: 92.46075 + rotX: 0.02081439 + rotY: 269.978516 + rotZ: 0.0167619251 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 43a175/Card Strange Solution e5d521.yaml b/unpacked/Custom_Model_Bag Seeker 43a175/Card Strange Solution e5d521.yaml new file mode 100644 index 000000000..9f969121a --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 43a175/Card Strange Solution e5d521.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 230422 +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 + UniqueBack: false +Description: Unidentified +GMNotes: '' +GUID: e5d521 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Strange Solution +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.5133324 + posY: 1.36212027 + posZ: 83.26075 + rotX: 0.0208144635 + rotY: 269.9787 + rotZ: 0.016762061 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 43a175/Card Tooth of Eztli 7d0ada.yaml b/unpacked/Custom_Model_Bag Seeker 43a175/Card Tooth of Eztli 7d0ada.yaml new file mode 100644 index 000000000..c3bd96217 --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 43a175/Card Tooth of Eztli 7d0ada.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 230432 +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 + UniqueBack: false +Description: Mortal Reminder +GMNotes: '' +GUID: 7d0ada +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Tooth of Eztli +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 40.960228 + posY: 1.36284614 + posZ: 90.14873 + rotX: 0.0208127741 + rotY: 269.98468 + rotZ: 0.0167641919 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 43a175/Card True Understanding 03bb19.yaml b/unpacked/Custom_Model_Bag Seeker 43a175/Card True Understanding 03bb19.yaml new file mode 100644 index 000000000..356560670 --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 43a175/Card True Understanding 03bb19.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 03bb19 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: True Understanding +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 58.38386 + posY: 1.36713707 + posZ: 83.1903839 + rotX: 0.0208165962 + rotY: 269.971069 + rotZ: 0.0167592224 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 43a175/Card Truth from Fiction b57f33.yaml b/unpacked/Custom_Model_Bag Seeker 43a175/Card Truth from Fiction b57f33.yaml new file mode 100644 index 000000000..aa8abaee0 --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 43a175/Card Truth from Fiction b57f33.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 230412 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: b57f33 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Truth from Fiction +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 53.2286148 + posY: 1.35652757 + posZ: 53.34118 + rotX: 0.0208137278 + rotY: 269.987732 + rotZ: 0.0167683735 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 43a175/Card Unearth the Ancients bc0fb2.yaml b/unpacked/Custom_Model_Bag Seeker 43a175/Card Unearth the Ancients bc0fb2.yaml new file mode 100644 index 000000000..a6e992750 --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 43a175/Card Unearth the Ancients bc0fb2.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 230410 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: bc0fb2 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Unearth the Ancients +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 53.22857 + posY: 1.360567 + posZ: 67.14111 + rotX: 0.0208114963 + rotY: 269.9882 + rotZ: 0.0167655014 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 43a175/Card Vantage Point c03b59.yaml b/unpacked/Custom_Model_Bag Seeker 43a175/Card Vantage Point c03b59.yaml new file mode 100644 index 000000000..e513bffb4 --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 43a175/Card Vantage Point c03b59.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 230411 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: c03b59 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Vantage Point +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 53.22857 + posY: 1.3598938 + posZ: 64.8411 + rotX: 0.0208114944 + rotY: 269.988251 + rotZ: 0.0167656168 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 43a175/Card Working a Hunch 05660e.yaml b/unpacked/Custom_Model_Bag Seeker 43a175/Card Working a Hunch 05660e.yaml new file mode 100644 index 000000000..93aad82c2 --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 43a175/Card Working a Hunch 05660e.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 230413 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 05660e +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Working a Hunch +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 53.2127953 + posY: 1.35585165 + posZ: 51.05174 + rotX: 0.02081259 + rotY: 269.9914 + rotZ: 0.0167695675 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 43a175/Custom_Model_Bag Seeker c7e271.ttslua b/unpacked/Custom_Model_Bag Seeker 43a175/Custom_Model_Bag Seeker c7e271.ttslua new file mode 100644 index 000000000..f882a7f09 --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 43a175/Custom_Model_Bag Seeker c7e271.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,0,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 + 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=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,0,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,0,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,0,0}, height=350, width=750, + 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}, rotation={0,0,0}, height=350, width=800, + font_size=250, color={0,0,0}, font_color={1,1,1} + }) +-- self.createButton({ +-- label="Setup", click_function="buttonClick_setup", function_owner=self, +-- position={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.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 Seeker 43a175/Custom_Model_Bag Seeker c7e271.yaml b/unpacked/Custom_Model_Bag Seeker 43a175/Custom_Model_Bag Seeker c7e271.yaml new file mode 100644 index 000000000..c8ec9e065 --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 43a175/Custom_Model_Bag Seeker c7e271.yaml @@ -0,0 +1,102 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +ContainedObjects: +- !include 'Custom_Model_Bag Seeker c7e271/Card Curiosity fb48a9.yaml' +- !include 'Custom_Model_Bag Seeker c7e271/Card Eureka! 244e5d.yaml' +- !include 'Custom_Model_Bag Seeker c7e271/Card Inquiring Mind ba1c85.yaml' +- !include 'Custom_Model_Bag Seeker c7e271/Card Deduction e7f376.yaml' +- !include 'Custom_Model_Bag Seeker c7e271/Card True Understanding 03bb19.yaml' +- !include 'Custom_Model_Bag Seeker c7e271/Card Astounding Revelation 70406e.yaml' +- !include 'Custom_Model_Bag Seeker c7e271/Card Connect the Dots 94abd7.yaml' +- !include 'Custom_Model_Bag Seeker c7e271/Card Barricade 38217d.yaml' +- !include 'Custom_Model_Bag Seeker c7e271/Card Archaic Glyphs 560b32.yaml' +- !include 'Custom_Model_Bag Seeker c7e271/Card Shrewd Analysis d950d8.yaml' +- !include 'Custom_Model_Bag Seeker c7e271/Card Magnifying Glass 2239d4.yaml' +- !include 'Custom_Model_Bag Seeker c7e271/Card Dr. Milian Christopher 4ee663.yaml' +- !include 'Custom_Model_Bag Seeker c7e271/Card Tooth of Eztli 7d0ada.yaml' +- !include 'Custom_Model_Bag Seeker c7e271/Card Old Book of Lore e13107.yaml' +- !include 'Custom_Model_Bag Seeker c7e271/Card Fingerprint Kit b73951.yaml' +- !include 'Custom_Model_Bag Seeker c7e271/Card Strange Solution e5d521.yaml' +- !include 'Custom_Model_Bag Seeker c7e271/Card Dream Diary 52f66c.yaml' +- !include 'Custom_Model_Bag Seeker c7e271/Card Scroll of Secrets f475ca.yaml' +- !include 'Custom_Model_Bag Seeker c7e271/Card Ghastly Revelation bf4815.yaml' +- !include 'Custom_Model_Bag Seeker c7e271/Card Crack the Case d83a35.yaml' +- !include 'Custom_Model_Bag Seeker c7e271/Card Knowledge is Power 070246.yaml' +- !include 'Custom_Model_Bag Seeker c7e271/Card Shortcut 00ade1.yaml' +- !include 'Custom_Model_Bag Seeker c7e271/Card Guidance f8e2fb.yaml' +- !include 'Custom_Model_Bag Seeker c7e271/Card Anatomical Diagrams e957df.yaml' +- !include 'Custom_Model_Bag Seeker c7e271/Card Mind over Matter 6d5337.yaml' +- !include 'Custom_Model_Bag Seeker c7e271/Card Practice Makes Perfect 088c27.yaml' +- !include 'Custom_Model_Bag Seeker c7e271/Card Seeking Answers e4f8ba.yaml' +- !include 'Custom_Model_Bag Seeker c7e271/Card Unearth the Ancients bc0fb2.yaml' +- !include 'Custom_Model_Bag Seeker c7e271/Card Vantage Point c03b59.yaml' +- !include 'Custom_Model_Bag Seeker c7e271/Card Art Student 7dfe08.yaml' +- !include 'Custom_Model_Bag Seeker c7e271/Card Laboratory Assistant 889177.yaml' +- !include 'Custom_Model_Bag Seeker c7e271/Card Research Librarian 92890f.yaml' +- !include 'Custom_Model_Bag Seeker c7e271/Card Medical Texts 73172c.yaml' +- !include 'Custom_Model_Bag Seeker c7e271/Card Hyperawareness 9902a8.yaml' +- !include 'Custom_Model_Bag Seeker c7e271/Card Hawk-Eye Folding Camera 05125c.yaml' +- !include 'Custom_Model_Bag Seeker c7e271/Card Dr. William T. Maleson 5e0769.yaml' +- !include 'Custom_Model_Bag Seeker c7e271/Card Charles Ross, Esq. 176d57.yaml' +- !include 'Custom_Model_Bag Seeker c7e271/Card Fieldwork 922850.yaml' +- !include 'Custom_Model_Bag Seeker c7e271/Card Occult Lexicon 3d6f47.yaml' +- !include 'Custom_Model_Bag Seeker c7e271/Card Grisly Totem d5bad4.yaml' +- !include 'Custom_Model_Bag Seeker c7e271/Card Dr. Elli Horowitz 7973c0.yaml' +- !include 'Custom_Model_Bag Seeker c7e271/Card Mr. Rook b3debc.yaml' +- !include 'Custom_Model_Bag Seeker c7e271/Card Dream-Enhancing Serum 1c353d.yaml' +- !include 'Custom_Model_Bag Seeker c7e271/Card I''ve got a plan! 338973.yaml' +- !include 'Custom_Model_Bag Seeker c7e271/Card Working a Hunch 05660e.yaml' +- !include 'Custom_Model_Bag Seeker c7e271/Card Truth from Fiction b57f33.yaml' +- !include 'Custom_Model_Bag Seeker c7e271/Card Preposterous Sketches 65a64f.yaml' +- !include 'Custom_Model_Bag Seeker c7e271/Card Persuasion 7b6e14.yaml' +- !include 'Custom_Model_Bag Seeker c7e271/Card No Stone Unturned cc7761.yaml' +- !include 'Custom_Model_Bag Seeker c7e271/Card Logical Reasoning f6b017.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/952965722516265983/F50A6212D30C442429ED22B8CC8FD24D4CB76A2A/ + MaterialIndex: 3 + MeshURL: https://pastebin.com/raw/ALrYhQGb + NormalURL: '' + TypeIndex: 6 +Description: '' +GMNotes: '' +GUID: c7e271 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Model_Bag Seeker c7e271.ttslua' +LuaScriptState: '{"ml":{"00ade1":{"lock":false,"pos":{"x":53.2286,"y":1.3646,"z":80.9412},"rot":{"x":0.0208,"y":269.9883,"z":0.0168}},"03bb19":{"lock":false,"pos":{"x":58.3839,"y":1.3671,"z":83.1904},"rot":{"x":0.0208,"y":269.9711,"z":0.0168}},"05125c":{"lock":false,"pos":{"x":44.5133,"y":1.3601,"z":76.3607},"rot":{"x":0.0208,"y":269.9787,"z":0.0168}},"05660e":{"lock":false,"pos":{"x":53.2128,"y":1.3559,"z":51.0517},"rot":{"x":0.0208,"y":269.9914,"z":0.0168}},"070246":{"lock":false,"pos":{"x":53.2286,"y":1.3653,"z":83.2412},"rot":{"x":0.0208,"y":269.9875,"z":0.0168}},"088c27":{"lock":false,"pos":{"x":53.2286,"y":1.3619,"z":71.7412},"rot":{"x":0.0208,"y":270.0107,"z":0.0168}},"176d57":{"lock":false,"pos":{"x":44.5133,"y":1.3561,"z":62.5608},"rot":{"x":0.0208,"y":269.98,"z":0.0168}},"1c353d":{"lock":false,"pos":{"x":44.4974,"y":1.352,"z":48.764},"rot":{"x":0.0208,"y":269.9771,"z":0.0168}},"2239d4":{"lock":false,"pos":{"x":44.5133,"y":1.3635,"z":87.8608},"rot":{"x":0.0208,"y":269.9784,"z":0.0168}},"244e5d":{"lock":false,"pos":{"x":58.3839,"y":1.3692,"z":90.0904},"rot":{"x":0.0208,"y":269.9683,"z":0.0168}},"338973":{"lock":false,"pos":{"x":53.2126,"y":1.3552,"z":48.7453},"rot":{"x":0.0208,"y":269.9877,"z":0.0168}},"38217d":{"lock":false,"pos":{"x":53.2286,"y":1.3673,"z":90.1413},"rot":{"x":0.0208,"y":269.9883,"z":0.0168}},"3d6f47":{"lock":false,"pos":{"x":44.5154,"y":1.3547,"z":57.9606},"rot":{"x":0.0208,"y":269.9789,"z":0.0168}},"4ee663":{"lock":false,"pos":{"x":40.9602,"y":1.3622,"z":87.8487},"rot":{"x":0.0208,"y":269.9846,"z":0.0168}},"52f66c":{"lock":false,"pos":{"x":44.5133,"y":1.3614,"z":80.9607},"rot":{"x":0.0208,"y":269.9904,"z":0.0168}},"560b32":{"lock":false,"pos":{"x":44.5133,"y":1.3641,"z":90.1608},"rot":{"x":0.0208,"y":269.9786,"z":0.0168}},"5e0769":{"lock":false,"pos":{"x":44.5133,"y":1.3608,"z":78.6607},"rot":{"x":0.0208,"y":269.9786,"z":0.0168}},"65a64f":{"lock":false,"pos":{"x":53.2285,"y":1.3572,"z":55.6412},"rot":{"x":0.0208,"y":269.9911,"z":0.0168}},"6d5337":{"lock":false,"pos":{"x":53.2286,"y":1.3626,"z":74.0412},"rot":{"x":0.0208,"y":269.9875,"z":0.0168}},"70406e":{"lock":false,"pos":{"x":53.2286,"y":1.368,"z":92.4412},"rot":{"x":0.0208,"y":269.9878,"z":0.0168}},"73172c":{"lock":false,"pos":{"x":44.5133,"y":1.3588,"z":71.7607},"rot":{"x":0.0208,"y":269.9787,"z":0.0168}},"7973c0":{"lock":false,"pos":{"x":44.5134,"y":1.3534,"z":53.3608},"rot":{"x":0.0208,"y":269.9846,"z":0.0168}},"7b6e14":{"lock":false,"pos":{"x":53.2306,"y":1.3579,"z":57.941},"rot":{"x":0.0208,"y":269.9882,"z":0.0168}},"7d0ada":{"lock":false,"pos":{"x":40.9602,"y":1.3628,"z":90.1487},"rot":{"x":0.0208,"y":269.9847,"z":0.0168}},"7dfe08":{"lock":false,"pos":{"x":44.5133,"y":1.3567,"z":64.8607},"rot":{"x":0.0208,"y":269.9881,"z":0.0168}},"889177":{"lock":false,"pos":{"x":44.5133,"y":1.3574,"z":67.1607},"rot":{"x":0.0208,"y":269.9787,"z":0.0168}},"922850":{"lock":false,"pos":{"x":44.5133,"y":1.3554,"z":60.2608},"rot":{"x":0.0208,"y":269.9786,"z":0.0168}},"92890f":{"lock":false,"pos":{"x":44.5133,"y":1.3581,"z":69.4607},"rot":{"x":0.0208,"y":269.9786,"z":0.0168}},"94abd7":{"lock":false,"pos":{"x":49.5629,"y":1.3666,"z":92.4528},"rot":{"x":0.0208,"y":269.9841,"z":0.0168}},"9902a8":{"lock":false,"pos":{"x":44.5133,"y":1.3594,"z":74.0607},"rot":{"x":0.0208,"y":269.9784,"z":0.0168}},"b3debc":{"lock":false,"pos":{"x":44.4975,"y":1.3527,"z":51.0713},"rot":{"x":0.0208,"y":269.9846,"z":0.0168}},"b57f33":{"lock":false,"pos":{"x":53.2286,"y":1.3565,"z":53.3412},"rot":{"x":0.0208,"y":269.9877,"z":0.0168}},"b73951":{"lock":false,"pos":{"x":40.9602,"y":1.3615,"z":85.5487},"rot":{"x":0.0208,"y":269.9684,"z":0.0168}},"ba1c85":{"lock":false,"pos":{"x":58.3839,"y":1.3685,"z":87.7904},"rot":{"x":0.0208,"y":269.9713,"z":0.0168}},"bc0fb2":{"lock":false,"pos":{"x":53.2286,"y":1.3606,"z":67.1411},"rot":{"x":0.0208,"y":269.9882,"z":0.0168}},"bf4815":{"lock":false,"pos":{"x":53.2286,"y":1.366,"z":85.5412},"rot":{"x":0.0208,"y":269.9877,"z":0.0168}},"c03b59":{"lock":false,"pos":{"x":53.2286,"y":1.3599,"z":64.8411},"rot":{"x":0.0208,"y":269.9883,"z":0.0168}},"cc7761":{"lock":false,"pos":{"x":53.2286,"y":1.3585,"z":60.2412},"rot":{"x":0.0208,"y":269.9807,"z":0.0168}},"d5bad4":{"lock":false,"pos":{"x":44.5132,"y":1.354,"z":55.6608},"rot":{"x":0.0208,"y":269.9846,"z":0.0168}},"d83a35":{"lock":false,"pos":{"x":53.2286,"y":1.3666,"z":87.8412},"rot":{"x":0.0208,"y":269.9883,"z":0.0168}},"d950d8":{"lock":false,"pos":{"x":44.5133,"y":1.3648,"z":92.4607},"rot":{"x":0.0208,"y":269.9785,"z":0.0168}},"e13107":{"lock":false,"pos":{"x":40.9602,"y":1.3635,"z":92.4487},"rot":{"x":0.0208,"y":269.9846,"z":0.0168}},"e4f8ba":{"lock":false,"pos":{"x":53.2286,"y":1.3612,"z":69.4412},"rot":{"x":0.0208,"y":269.9908,"z":0.0168}},"e5d521":{"lock":false,"pos":{"x":44.5133,"y":1.3621,"z":83.2607},"rot":{"x":0.0208,"y":269.9787,"z":0.0168}},"e7f376":{"lock":false,"pos":{"x":58.3839,"y":1.3678,"z":85.4904},"rot":{"x":0.0208,"y":269.9648,"z":0.0168}},"e957df":{"lock":false,"pos":{"x":53.2286,"y":1.3633,"z":76.3412},"rot":{"x":0.0208,"y":269.988,"z":0.0168}},"f475ca":{"lock":false,"pos":{"x":44.5133,"y":1.3628,"z":85.5607},"rot":{"x":0.0208,"y":269.9786,"z":0.0168}},"f6b017":{"lock":false,"pos":{"x":53.2286,"y":1.3592,"z":62.5412},"rot":{"x":0.0208,"y":269.981,"z":0.0168}},"f8e2fb":{"lock":false,"pos":{"x":53.2286,"y":1.3639,"z":78.6412},"rot":{"x":0.0208,"y":269.9909,"z":0.0168}},"fb48a9":{"lock":false,"pos":{"x":58.3839,"y":1.3698,"z":92.3904},"rot":{"x":0.0208,"y":269.9713,"z":0.0168}}}}' +MaterialIndex: -1 +MeshIndex: -1 +Name: Custom_Model_Bag +Nickname: Seeker +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 66.57799 + posY: 1.67242432 + posZ: 70.50753 + rotX: 0.0181120783 + rotY: 270.01944 + rotZ: 0.008901976 + scaleX: 1.2 + scaleY: 1.2 + scaleZ: 1.2 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 43a175/Custom_Model_Bag Seeker c7e271/Card Anatomical Diagrams e957df.yaml b/unpacked/Custom_Model_Bag Seeker 43a175/Custom_Model_Bag Seeker c7e271/Card Anatomical Diagrams e957df.yaml new file mode 100644 index 000000000..890a67f73 --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 43a175/Custom_Model_Bag Seeker c7e271/Card Anatomical Diagrams e957df.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 230409 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: e957df +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Anatomical Diagrams +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 53.2285728 + posY: 1.36326 + posZ: 76.34123 + rotX: 0.02081165 + rotY: 269.988 + rotZ: 0.0167653821 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 43a175/Custom_Model_Bag Seeker c7e271/Card Archaic Glyphs 560b32.yaml b/unpacked/Custom_Model_Bag Seeker 43a175/Custom_Model_Bag Seeker c7e271/Card Archaic Glyphs 560b32.yaml new file mode 100644 index 000000000..e68d5d7b2 --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 43a175/Custom_Model_Bag Seeker c7e271/Card Archaic Glyphs 560b32.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 230420 +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 + UniqueBack: false +Description: Untranslated +GMNotes: '' +GUID: 560b32 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Archaic Glyphs +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.5133247 + posY: 1.36414 + posZ: 90.16076 + rotX: 0.0208145957 + rotY: 269.9786 + rotZ: 0.01676197 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 43a175/Custom_Model_Bag Seeker c7e271/Card Art Student 7dfe08.yaml b/unpacked/Custom_Model_Bag Seeker 43a175/Custom_Model_Bag Seeker c7e271/Card Art Student 7dfe08.yaml new file mode 100644 index 000000000..e8c37ec99 --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 43a175/Custom_Model_Bag Seeker c7e271/Card Art Student 7dfe08.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 230428 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 7dfe08 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Art Student +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.5133171 + posY: 1.3567344 + posZ: 64.8606949 + rotX: 0.0208116118 + rotY: 269.988129 + rotZ: 0.01676533 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 43a175/Custom_Model_Bag Seeker c7e271/Card Astounding Revelation 70406e.yaml b/unpacked/Custom_Model_Bag Seeker 43a175/Custom_Model_Bag Seeker c7e271/Card Astounding Revelation 70406e.yaml new file mode 100644 index 000000000..6e5f8da30 --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 43a175/Custom_Model_Bag Seeker c7e271/Card Astounding Revelation 70406e.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 447825 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 70406e +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Astounding Revelation +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 53.22858 + posY: 1.367973 + posZ: 92.44124 + rotX: 0.02081172 + rotY: 269.9878 + rotZ: 0.0167653821 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 43a175/Custom_Model_Bag Seeker c7e271/Card Barricade 38217d.yaml b/unpacked/Custom_Model_Bag Seeker 43a175/Custom_Model_Bag Seeker c7e271/Card Barricade 38217d.yaml new file mode 100644 index 000000000..00b198490 --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 43a175/Custom_Model_Bag Seeker c7e271/Card Barricade 38217d.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 230404 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 38217d +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Barricade +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 53.22858 + posY: 1.36729944 + posZ: 90.14125 + rotX: 0.0208114125 + rotY: 269.988251 + rotZ: 0.0167656485 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 43a175/Custom_Model_Bag Seeker c7e271/Card Charles Ross, Esq. 176d57.yaml b/unpacked/Custom_Model_Bag Seeker 43a175/Custom_Model_Bag Seeker c7e271/Card Charles Ross, Esq. 176d57.yaml new file mode 100644 index 000000000..0b48e06eb --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 43a175/Custom_Model_Bag Seeker c7e271/Card Charles Ross, Esq. 176d57.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 230430 +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 + UniqueBack: false +Description: Acquisitions and Solicitation +GMNotes: '' +GUID: 176d57 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Charles Ross, Esq. +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.51332 + posY: 1.356061 + posZ: 62.5607872 + rotX: 0.0208162013 + rotY: 269.98 + rotZ: 0.0167656112 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 43a175/Custom_Model_Bag Seeker c7e271/Card Connect the Dots 94abd7.yaml b/unpacked/Custom_Model_Bag Seeker 43a175/Custom_Model_Bag Seeker c7e271/Card Connect the Dots 94abd7.yaml new file mode 100644 index 000000000..c227c7500 --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 43a175/Custom_Model_Bag Seeker c7e271/Card Connect the Dots 94abd7.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 279409 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2794': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025943833/DE98A03934DF8FF5B3CF6C53143B15BFC3ED7341/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 94abd7 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Connect the Dots +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 49.5628624 + posY: 1.36664486 + posZ: 92.4528046 + rotX: 0.02081262 + rotY: 269.9841 + rotZ: 0.0167638175 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 43a175/Custom_Model_Bag Seeker c7e271/Card Crack the Case d83a35.yaml b/unpacked/Custom_Model_Bag Seeker 43a175/Custom_Model_Bag Seeker c7e271/Card Crack the Case d83a35.yaml new file mode 100644 index 000000000..d2ef21aad --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 43a175/Custom_Model_Bag Seeker c7e271/Card Crack the Case d83a35.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: d83a35 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Crack the Case +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 53.22858 + posY: 1.36662626 + posZ: 87.84125 + rotX: 0.0208114423 + rotY: 269.988251 + rotZ: 0.0167654455 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 43a175/Custom_Model_Bag Seeker c7e271/Card Curiosity fb48a9.yaml b/unpacked/Custom_Model_Bag Seeker 43a175/Custom_Model_Bag Seeker c7e271/Card Curiosity fb48a9.yaml new file mode 100644 index 000000000..fa175b8b0 --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 43a175/Custom_Model_Bag Seeker c7e271/Card Curiosity fb48a9.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 279308 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2793': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025943833/DE98A03934DF8FF5B3CF6C53143B15BFC3ED7341/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: fb48a9 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Curiosity +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 58.3838539 + posY: 1.36983013 + posZ: 92.39038 + rotX: 0.0208164733 + rotY: 269.9713 + rotZ: 0.0167593155 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 43a175/Custom_Model_Bag Seeker c7e271/Card Deduction e7f376.yaml b/unpacked/Custom_Model_Bag Seeker 43a175/Custom_Model_Bag Seeker c7e271/Card Deduction e7f376.yaml new file mode 100644 index 000000000..5ad82c417 --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 43a175/Custom_Model_Bag Seeker c7e271/Card Deduction e7f376.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: e7f376 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Deduction +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 58.38386 + posY: 1.36781037 + posZ: 85.49039 + rotX: 0.0208183639 + rotY: 269.964844 + rotZ: 0.0167570543 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 43a175/Custom_Model_Bag Seeker c7e271/Card Dr. Elli Horowitz 7973c0.yaml b/unpacked/Custom_Model_Bag Seeker 43a175/Custom_Model_Bag Seeker c7e271/Card Dr. Elli Horowitz 7973c0.yaml new file mode 100644 index 000000000..017d40b70 --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 43a175/Custom_Model_Bag Seeker c7e271/Card Dr. Elli Horowitz 7973c0.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 230433 +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 + UniqueBack: false +Description: Assistant Curator +GMNotes: '' +GUID: 7973c0 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Dr. Elli Horowitz +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.5133629 + posY: 1.35336816 + posZ: 53.36077 + rotX: 0.0208146628 + rotY: 269.98465 + rotZ: 0.016767107 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 43a175/Custom_Model_Bag Seeker c7e271/Card Dr. Milian Christopher 4ee663.yaml b/unpacked/Custom_Model_Bag Seeker 43a175/Custom_Model_Bag Seeker c7e271/Card Dr. Milian Christopher 4ee663.yaml new file mode 100644 index 000000000..d51c40c7d --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 43a175/Custom_Model_Bag Seeker c7e271/Card Dr. Milian Christopher 4ee663.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 230434 +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 + UniqueBack: false +Description: Professor of Entomology +GMNotes: '' +GUID: 4ee663 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Dr. Milian Christopher +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 40.960228 + posY: 1.36217284 + posZ: 87.8487244 + rotX: 0.020812694 + rotY: 269.984619 + rotZ: 0.0167641751 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 43a175/Custom_Model_Bag Seeker c7e271/Card Dr. William T. Maleson 5e0769.yaml b/unpacked/Custom_Model_Bag Seeker 43a175/Custom_Model_Bag Seeker c7e271/Card Dr. William T. Maleson 5e0769.yaml new file mode 100644 index 000000000..5b83e112a --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 43a175/Custom_Model_Bag Seeker c7e271/Card Dr. William T. Maleson 5e0769.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 230423 +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 + UniqueBack: false +Description: Working on Something Big +GMNotes: '' +GUID: 5e0769 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Dr. William T. Maleson +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.51332 + posY: 1.3607738 + posZ: 78.66074 + rotX: 0.0208142 + rotY: 269.9786 + rotZ: 0.0167621076 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 43a175/Custom_Model_Bag Seeker c7e271/Card Dream Diary 52f66c.yaml b/unpacked/Custom_Model_Bag Seeker 43a175/Custom_Model_Bag Seeker c7e271/Card Dream Diary 52f66c.yaml new file mode 100644 index 000000000..15a83694d --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 43a175/Custom_Model_Bag Seeker c7e271/Card Dream Diary 52f66c.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Untranslated +GMNotes: '' +GUID: 52f66c +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Dream Diary +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.51333 + posY: 1.3614471 + posZ: 80.96075 + rotX: 0.0208108854 + rotY: 269.990356 + rotZ: 0.0167662129 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 43a175/Custom_Model_Bag Seeker c7e271/Card Dream-Enhancing Serum 1c353d.yaml b/unpacked/Custom_Model_Bag Seeker 43a175/Custom_Model_Bag Seeker c7e271/Card Dream-Enhancing Serum 1c353d.yaml new file mode 100644 index 000000000..3410fdd6d --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 43a175/Custom_Model_Bag Seeker c7e271/Card Dream-Enhancing Serum 1c353d.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 1c353d +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Dream-Enhancing Serum +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.49737 + posY: 1.352017 + posZ: 48.7640038 + rotX: 0.0208169557 + rotY: 269.977142 + rotZ: 0.0167645738 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 43a175/Custom_Model_Bag Seeker c7e271/Card Eureka! 244e5d.yaml b/unpacked/Custom_Model_Bag Seeker 43a175/Custom_Model_Bag Seeker c7e271/Card Eureka! 244e5d.yaml new file mode 100644 index 000000000..9efd2d426 --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 43a175/Custom_Model_Bag Seeker c7e271/Card Eureka! 244e5d.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 230400 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 244e5d +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Eureka! +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 58.3838539 + posY: 1.36915684 + posZ: 90.09039 + rotX: 0.0208173525 + rotY: 269.968262 + rotZ: 0.0167581867 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 43a175/Custom_Model_Bag Seeker c7e271/Card Fieldwork 922850.yaml b/unpacked/Custom_Model_Bag Seeker 43a175/Custom_Model_Bag Seeker c7e271/Card Fieldwork 922850.yaml new file mode 100644 index 000000000..fe3824a14 --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 43a175/Custom_Model_Bag Seeker c7e271/Card Fieldwork 922850.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 230429 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: '922850' +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Fieldwork +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.51332 + posY: 1.35538781 + posZ: 60.260788 + rotX: 0.0208164174 + rotY: 269.978577 + rotZ: 0.0167648327 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 43a175/Custom_Model_Bag Seeker c7e271/Card Fingerprint Kit b73951.yaml b/unpacked/Custom_Model_Bag Seeker 43a175/Custom_Model_Bag Seeker c7e271/Card Fingerprint Kit b73951.yaml new file mode 100644 index 000000000..042d0ed43 --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 43a175/Custom_Model_Bag Seeker c7e271/Card Fingerprint Kit b73951.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: b73951 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Fingerprint Kit +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 40.96023 + posY: 1.36149967 + posZ: 85.54871 + rotX: 0.0208174326 + rotY: 269.968445 + rotZ: 0.0167584568 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 43a175/Custom_Model_Bag Seeker c7e271/Card Ghastly Revelation bf4815.yaml b/unpacked/Custom_Model_Bag Seeker 43a175/Custom_Model_Bag Seeker c7e271/Card Ghastly Revelation bf4815.yaml new file mode 100644 index 000000000..7e736a66b --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 43a175/Custom_Model_Bag Seeker c7e271/Card Ghastly Revelation bf4815.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: bf4815 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Ghastly Revelation +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 53.2285843 + posY: 1.36595309 + posZ: 85.5412445 + rotX: 0.020811351 + rotY: 269.987671 + rotZ: 0.0167653468 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 43a175/Custom_Model_Bag Seeker c7e271/Card Grisly Totem d5bad4.yaml b/unpacked/Custom_Model_Bag Seeker 43a175/Custom_Model_Bag Seeker c7e271/Card Grisly Totem d5bad4.yaml new file mode 100644 index 000000000..29403b7e0 --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 43a175/Custom_Model_Bag Seeker c7e271/Card Grisly Totem d5bad4.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: d5bad4 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Grisly Totem +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.5132332 + posY: 1.35404134 + posZ: 55.66079 + rotX: 0.0208147075 + rotY: 269.984619 + rotZ: 0.0167672411 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 43a175/Custom_Model_Bag Seeker c7e271/Card Guidance f8e2fb.yaml b/unpacked/Custom_Model_Bag Seeker 43a175/Custom_Model_Bag Seeker c7e271/Card Guidance f8e2fb.yaml new file mode 100644 index 000000000..49c9c91fd --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 43a175/Custom_Model_Bag Seeker c7e271/Card Guidance f8e2fb.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 230406 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: f8e2fb +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Guidance +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 53.2285728 + posY: 1.36393321 + posZ: 78.6412354 + rotX: 0.0208106 + rotY: 269.990936 + rotZ: 0.0167663489 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 43a175/Custom_Model_Bag Seeker c7e271/Card Hawk-Eye Folding Camera 05125c.yaml b/unpacked/Custom_Model_Bag Seeker 43a175/Custom_Model_Bag Seeker c7e271/Card Hawk-Eye Folding Camera 05125c.yaml new file mode 100644 index 000000000..87626ff36 --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 43a175/Custom_Model_Bag Seeker c7e271/Card Hawk-Eye Folding Camera 05125c.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 05125c +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Hawk-Eye Folding Camera +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.51332 + posY: 1.36010051 + posZ: 76.36074 + rotX: 0.0208142847 + rotY: 269.978668 + rotZ: 0.016762143 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 43a175/Custom_Model_Bag Seeker c7e271/Card Hyperawareness 9902a8.yaml b/unpacked/Custom_Model_Bag Seeker 43a175/Custom_Model_Bag Seeker c7e271/Card Hyperawareness 9902a8.yaml new file mode 100644 index 000000000..98cd5d816 --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 43a175/Custom_Model_Bag Seeker c7e271/Card Hyperawareness 9902a8.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 9902a8 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Hyperawareness +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.51332 + posY: 1.35942733 + posZ: 74.0607452 + rotX: 0.0208144356 + rotY: 269.978424 + rotZ: 0.0167619959 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 43a175/Custom_Model_Bag Seeker c7e271/Card I've got a plan! 338973.yaml b/unpacked/Custom_Model_Bag Seeker 43a175/Custom_Model_Bag Seeker c7e271/Card I've got a plan! 338973.yaml new file mode 100644 index 000000000..01ed5ea07 --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 43a175/Custom_Model_Bag Seeker c7e271/Card I've got a plan! 338973.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 230418 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: '338973' +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '"I''ve got a plan!"' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 53.212635 + posY: 1.35517645 + posZ: 48.74529 + rotX: 0.0208140239 + rotY: 269.987732 + rotZ: 0.0167681556 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 43a175/Custom_Model_Bag Seeker c7e271/Card Inquiring Mind ba1c85.yaml b/unpacked/Custom_Model_Bag Seeker 43a175/Custom_Model_Bag Seeker c7e271/Card Inquiring Mind ba1c85.yaml new file mode 100644 index 000000000..c0404d63b --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 43a175/Custom_Model_Bag Seeker c7e271/Card Inquiring Mind ba1c85.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 230401 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: ba1c85 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Inquiring Mind +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 58.3838539 + posY: 1.36848366 + posZ: 87.79039 + rotX: 0.02081624 + rotY: 269.9713 + rotZ: 0.0167592261 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 43a175/Custom_Model_Bag Seeker c7e271/Card Knowledge is Power 070246.yaml b/unpacked/Custom_Model_Bag Seeker 43a175/Custom_Model_Bag Seeker c7e271/Card Knowledge is Power 070246.yaml new file mode 100644 index 000000000..21ef31cfd --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 43a175/Custom_Model_Bag Seeker c7e271/Card Knowledge is Power 070246.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: '070246' +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Knowledge is Power +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 53.2285843 + posY: 1.36527979 + posZ: 83.24124 + rotX: 0.0208119955 + rotY: 269.987457 + rotZ: 0.0167651884 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 43a175/Custom_Model_Bag Seeker c7e271/Card Laboratory Assistant 889177.yaml b/unpacked/Custom_Model_Bag Seeker 43a175/Custom_Model_Bag Seeker c7e271/Card Laboratory Assistant 889177.yaml new file mode 100644 index 000000000..2dff5a409 --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 43a175/Custom_Model_Bag Seeker c7e271/Card Laboratory Assistant 889177.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 230427 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: '889177' +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Laboratory Assistant +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.5133171 + posY: 1.35740757 + posZ: 67.1607056 + rotX: 0.0208144449 + rotY: 269.9787 + rotZ: 0.0167619642 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 43a175/Custom_Model_Bag Seeker c7e271/Card Logical Reasoning f6b017.yaml b/unpacked/Custom_Model_Bag Seeker 43a175/Custom_Model_Bag Seeker c7e271/Card Logical Reasoning f6b017.yaml new file mode 100644 index 000000000..3ae90ee56 --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 43a175/Custom_Model_Bag Seeker c7e271/Card Logical Reasoning f6b017.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 230417 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: f6b017 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Logical Reasoning +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 53.2285728 + posY: 1.3592205 + posZ: 62.5411949 + rotX: 0.0208156873 + rotY: 269.981 + rotZ: 0.0167659968 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 43a175/Custom_Model_Bag Seeker c7e271/Card Magnifying Glass 2239d4.yaml b/unpacked/Custom_Model_Bag Seeker 43a175/Custom_Model_Bag Seeker c7e271/Card Magnifying Glass 2239d4.yaml new file mode 100644 index 000000000..7d026c1a9 --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 43a175/Custom_Model_Bag Seeker c7e271/Card Magnifying Glass 2239d4.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 2239d4 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Magnifying Glass +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.51333 + posY: 1.36346674 + posZ: 87.8607559 + rotX: 0.020814199 + rotY: 269.978424 + rotZ: 0.0167618543 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 43a175/Custom_Model_Bag Seeker c7e271/Card Medical Texts 73172c.yaml b/unpacked/Custom_Model_Bag Seeker 43a175/Custom_Model_Bag Seeker c7e271/Card Medical Texts 73172c.yaml new file mode 100644 index 000000000..09a336998 --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 43a175/Custom_Model_Bag Seeker c7e271/Card Medical Texts 73172c.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 230425 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 73172c +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Medical Texts +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.5133247 + posY: 1.358754 + posZ: 71.76074 + rotX: 0.0208140854 + rotY: 269.9787 + rotZ: 0.0167622454 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 43a175/Custom_Model_Bag Seeker c7e271/Card Mind over Matter 6d5337.yaml b/unpacked/Custom_Model_Bag Seeker 43a175/Custom_Model_Bag Seeker c7e271/Card Mind over Matter 6d5337.yaml new file mode 100644 index 000000000..e7cdb2db3 --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 43a175/Custom_Model_Bag Seeker c7e271/Card Mind over Matter 6d5337.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 230408 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 6d5337 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Mind over Matter +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 53.2285767 + posY: 1.36258686 + posZ: 74.04124 + rotX: 0.0208117329 + rotY: 269.9875 + rotZ: 0.0167651474 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 43a175/Custom_Model_Bag Seeker c7e271/Card Mr. Rook b3debc.yaml b/unpacked/Custom_Model_Bag Seeker 43a175/Custom_Model_Bag Seeker c7e271/Card Mr. Rook b3debc.yaml new file mode 100644 index 000000000..6e85a5b74 --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 43a175/Custom_Model_Bag Seeker c7e271/Card Mr. Rook b3debc.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: b3debc +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Mr. "Rook" +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.4975433 + posY: 1.35269225 + posZ: 51.07133 + rotX: 0.0208149031 + rotY: 269.98465 + rotZ: 0.0167671442 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 43a175/Custom_Model_Bag Seeker c7e271/Card No Stone Unturned cc7761.yaml b/unpacked/Custom_Model_Bag Seeker 43a175/Custom_Model_Bag Seeker c7e271/Card No Stone Unturned cc7761.yaml new file mode 100644 index 000000000..efbcafe87 --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 43a175/Custom_Model_Bag Seeker c7e271/Card No Stone Unturned cc7761.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 230415 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: cc7761 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: No Stone Unturned +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 53.2285728 + posY: 1.35854721 + posZ: 60.2411957 + rotX: 0.02081579 + rotY: 269.9807 + rotZ: 0.0167656168 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 43a175/Custom_Model_Bag Seeker c7e271/Card Occult Lexicon 3d6f47.yaml b/unpacked/Custom_Model_Bag Seeker 43a175/Custom_Model_Bag Seeker c7e271/Card Occult Lexicon 3d6f47.yaml new file mode 100644 index 000000000..9e5d595d1 --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 43a175/Custom_Model_Bag Seeker c7e271/Card Occult Lexicon 3d6f47.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 3d6f47 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Occult Lexicon +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.515358 + posY: 1.35471523 + posZ: 57.9605675 + rotX: 0.020816436 + rotY: 269.978882 + rotZ: 0.0167652331 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 43a175/Custom_Model_Bag Seeker c7e271/Card Old Book of Lore e13107.yaml b/unpacked/Custom_Model_Bag Seeker 43a175/Custom_Model_Bag Seeker c7e271/Card Old Book of Lore e13107.yaml new file mode 100644 index 000000000..ad4278372 --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 43a175/Custom_Model_Bag Seeker c7e271/Card Old Book of Lore e13107.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 230431 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: e13107 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Old Book of Lore +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 40.960228 + posY: 1.36351931 + posZ: 92.4487152 + rotX: 0.0208126418 + rotY: 269.984619 + rotZ: 0.0167641118 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 43a175/Custom_Model_Bag Seeker c7e271/Card Persuasion 7b6e14.yaml b/unpacked/Custom_Model_Bag Seeker 43a175/Custom_Model_Bag Seeker c7e271/Card Persuasion 7b6e14.yaml new file mode 100644 index 000000000..2db2522e3 --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 43a175/Custom_Model_Bag Seeker c7e271/Card Persuasion 7b6e14.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 7b6e14 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Persuasion +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 53.23061 + posY: 1.35787463 + posZ: 57.9409752 + rotX: 0.020813765 + rotY: 269.9882 + rotZ: 0.0167686176 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 43a175/Custom_Model_Bag Seeker c7e271/Card Practice Makes Perfect 088c27.yaml b/unpacked/Custom_Model_Bag Seeker 43a175/Custom_Model_Bag Seeker c7e271/Card Practice Makes Perfect 088c27.yaml new file mode 100644 index 000000000..e477152b1 --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 43a175/Custom_Model_Bag Seeker c7e271/Card Practice Makes Perfect 088c27.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Gambit. Tactic. +GMNotes: '' +GUID: 088c27 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Practice Makes Perfect +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 53.2285767 + posY: 1.36191356 + posZ: 71.7412338 + rotX: 0.0208052211 + rotY: 270.010681 + rotZ: 0.0167736057 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 43a175/Custom_Model_Bag Seeker c7e271/Card Preposterous Sketches 65a64f.yaml b/unpacked/Custom_Model_Bag Seeker 43a175/Custom_Model_Bag Seeker c7e271/Card Preposterous Sketches 65a64f.yaml new file mode 100644 index 000000000..0528301bf --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 43a175/Custom_Model_Bag Seeker c7e271/Card Preposterous Sketches 65a64f.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 230416 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 65a64f +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Preposterous Sketches +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 53.2284851 + posY: 1.35720074 + posZ: 55.6411972 + rotX: 0.020813128 + rotY: 269.99115 + rotZ: 0.0167694762 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 43a175/Custom_Model_Bag Seeker c7e271/Card Research Librarian 92890f.yaml b/unpacked/Custom_Model_Bag Seeker 43a175/Custom_Model_Bag Seeker c7e271/Card Research Librarian 92890f.yaml new file mode 100644 index 000000000..d391fbe0f --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 43a175/Custom_Model_Bag Seeker c7e271/Card Research Librarian 92890f.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 230426 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 92890f +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Research Librarian +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.51332 + posY: 1.35808086 + posZ: 69.46074 + rotX: 0.0208142083 + rotY: 269.978638 + rotZ: 0.0167619139 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 43a175/Custom_Model_Bag Seeker c7e271/Card Scroll of Secrets f475ca.yaml b/unpacked/Custom_Model_Bag Seeker 43a175/Custom_Model_Bag Seeker c7e271/Card Scroll of Secrets f475ca.yaml new file mode 100644 index 000000000..01c4af02d --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 43a175/Custom_Model_Bag Seeker c7e271/Card Scroll of Secrets f475ca.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: f475ca +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Scroll of Secrets +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.5133171 + posY: 1.36279345 + posZ: 85.56073 + rotX: 0.0208166428 + rotY: 269.978577 + rotZ: 0.0167652853 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 43a175/Custom_Model_Bag Seeker c7e271/Card Seeking Answers e4f8ba.yaml b/unpacked/Custom_Model_Bag Seeker 43a175/Custom_Model_Bag Seeker c7e271/Card Seeking Answers e4f8ba.yaml new file mode 100644 index 000000000..91d17e05d --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 43a175/Custom_Model_Bag Seeker c7e271/Card Seeking Answers e4f8ba.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 230407 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: e4f8ba +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Seeking Answers +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 53.2285728 + posY: 1.36124027 + posZ: 69.44123 + rotX: 0.0208106544 + rotY: 269.990845 + rotZ: 0.016766496 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 43a175/Custom_Model_Bag Seeker c7e271/Card Shortcut 00ade1.yaml b/unpacked/Custom_Model_Bag Seeker 43a175/Custom_Model_Bag Seeker c7e271/Card Shortcut 00ade1.yaml new file mode 100644 index 000000000..2151b5a93 --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 43a175/Custom_Model_Bag Seeker c7e271/Card Shortcut 00ade1.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 00ade1 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Shortcut +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 53.22858 + posY: 1.3646065 + posZ: 80.94124 + rotX: 0.02081165 + rotY: 269.988281 + rotZ: 0.016765492 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 43a175/Custom_Model_Bag Seeker c7e271/Card Shrewd Analysis d950d8.yaml b/unpacked/Custom_Model_Bag Seeker 43a175/Custom_Model_Bag Seeker c7e271/Card Shrewd Analysis d950d8.yaml new file mode 100644 index 000000000..b468cf444 --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 43a175/Custom_Model_Bag Seeker c7e271/Card Shrewd Analysis d950d8.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 230419 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: d950d8 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Shrewd Analysis +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.51333 + posY: 1.36481321 + posZ: 92.46075 + rotX: 0.02081439 + rotY: 269.978516 + rotZ: 0.0167619251 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 43a175/Custom_Model_Bag Seeker c7e271/Card Strange Solution e5d521.yaml b/unpacked/Custom_Model_Bag Seeker 43a175/Custom_Model_Bag Seeker c7e271/Card Strange Solution e5d521.yaml new file mode 100644 index 000000000..9f969121a --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 43a175/Custom_Model_Bag Seeker c7e271/Card Strange Solution e5d521.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 230422 +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 + UniqueBack: false +Description: Unidentified +GMNotes: '' +GUID: e5d521 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Strange Solution +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.5133324 + posY: 1.36212027 + posZ: 83.26075 + rotX: 0.0208144635 + rotY: 269.9787 + rotZ: 0.016762061 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 43a175/Custom_Model_Bag Seeker c7e271/Card Tooth of Eztli 7d0ada.yaml b/unpacked/Custom_Model_Bag Seeker 43a175/Custom_Model_Bag Seeker c7e271/Card Tooth of Eztli 7d0ada.yaml new file mode 100644 index 000000000..c3bd96217 --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 43a175/Custom_Model_Bag Seeker c7e271/Card Tooth of Eztli 7d0ada.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 230432 +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 + UniqueBack: false +Description: Mortal Reminder +GMNotes: '' +GUID: 7d0ada +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Tooth of Eztli +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 40.960228 + posY: 1.36284614 + posZ: 90.14873 + rotX: 0.0208127741 + rotY: 269.98468 + rotZ: 0.0167641919 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 43a175/Custom_Model_Bag Seeker c7e271/Card True Understanding 03bb19.yaml b/unpacked/Custom_Model_Bag Seeker 43a175/Custom_Model_Bag Seeker c7e271/Card True Understanding 03bb19.yaml new file mode 100644 index 000000000..356560670 --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 43a175/Custom_Model_Bag Seeker c7e271/Card True Understanding 03bb19.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 03bb19 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: True Understanding +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 58.38386 + posY: 1.36713707 + posZ: 83.1903839 + rotX: 0.0208165962 + rotY: 269.971069 + rotZ: 0.0167592224 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 43a175/Custom_Model_Bag Seeker c7e271/Card Truth from Fiction b57f33.yaml b/unpacked/Custom_Model_Bag Seeker 43a175/Custom_Model_Bag Seeker c7e271/Card Truth from Fiction b57f33.yaml new file mode 100644 index 000000000..aa8abaee0 --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 43a175/Custom_Model_Bag Seeker c7e271/Card Truth from Fiction b57f33.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 230412 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: b57f33 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Truth from Fiction +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 53.2286148 + posY: 1.35652757 + posZ: 53.34118 + rotX: 0.0208137278 + rotY: 269.987732 + rotZ: 0.0167683735 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 43a175/Custom_Model_Bag Seeker c7e271/Card Unearth the Ancients bc0fb2.yaml b/unpacked/Custom_Model_Bag Seeker 43a175/Custom_Model_Bag Seeker c7e271/Card Unearth the Ancients bc0fb2.yaml new file mode 100644 index 000000000..a6e992750 --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 43a175/Custom_Model_Bag Seeker c7e271/Card Unearth the Ancients bc0fb2.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 230410 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: bc0fb2 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Unearth the Ancients +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 53.22857 + posY: 1.360567 + posZ: 67.14111 + rotX: 0.0208114963 + rotY: 269.9882 + rotZ: 0.0167655014 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 43a175/Custom_Model_Bag Seeker c7e271/Card Vantage Point c03b59.yaml b/unpacked/Custom_Model_Bag Seeker 43a175/Custom_Model_Bag Seeker c7e271/Card Vantage Point c03b59.yaml new file mode 100644 index 000000000..e513bffb4 --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 43a175/Custom_Model_Bag Seeker c7e271/Card Vantage Point c03b59.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 230411 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: c03b59 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Vantage Point +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 53.22857 + posY: 1.3598938 + posZ: 64.8411 + rotX: 0.0208114944 + rotY: 269.988251 + rotZ: 0.0167656168 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 43a175/Custom_Model_Bag Seeker c7e271/Card Working a Hunch 05660e.yaml b/unpacked/Custom_Model_Bag Seeker 43a175/Custom_Model_Bag Seeker c7e271/Card Working a Hunch 05660e.yaml new file mode 100644 index 000000000..93aad82c2 --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 43a175/Custom_Model_Bag Seeker c7e271/Card Working a Hunch 05660e.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 230413 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 05660e +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Working a Hunch +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 53.2127953 + posY: 1.35585165 + posZ: 51.05174 + rotX: 0.02081259 + rotY: 269.9914 + rotZ: 0.0167695675 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 75373e.ttslua b/unpacked/Custom_Model_Bag Seeker 75373e.ttslua new file mode 100644 index 000000000..857093fb8 --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 75373e.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,0,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 + 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=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,0,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,0,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,0,0}, height=350, width=750, + 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}, rotation={0,0,0}, height=350, width=800, + font_size=250, color={0,0,0}, font_color={1,1,1} + }) +-- self.createButton({ +-- label="Setup", click_function="buttonClick_setup", function_owner=self, +-- position={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.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 \ No newline at end of file diff --git a/unpacked/Custom_Model_Bag Seeker 75373e.yaml b/unpacked/Custom_Model_Bag Seeker 75373e.yaml new file mode 100644 index 000000000..9ef0c8a10 --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 75373e.yaml @@ -0,0 +1,103 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +ContainedObjects: +- !include 'Custom_Model_Bag Seeker 75373e/Card Curiosity 260032.yaml' +- !include 'Custom_Model_Bag Seeker 75373e/Card Eureka! 9923e4.yaml' +- !include 'Custom_Model_Bag Seeker 75373e/Card Inquiring Mind 6a63d1.yaml' +- !include 'Custom_Model_Bag Seeker 75373e/Card Deduction 7665ef.yaml' +- !include 'Custom_Model_Bag Seeker 75373e/Card True Understanding efb020.yaml' +- !include 'Custom_Model_Bag Seeker 75373e/Card Astounding Revelation e06830.yaml' +- !include 'Custom_Model_Bag Seeker 75373e/Card Connect the Dots 5fc646.yaml' +- !include 'Custom_Model_Bag Seeker 75373e/Card Barricade ebbf12.yaml' +- !include 'Custom_Model_Bag Seeker 75373e/Card Crack the Case d954bb.yaml' +- !include 'Custom_Model_Bag Seeker 75373e/Card Ghastly Revelation 740489.yaml' +- !include 'Custom_Model_Bag Seeker 75373e/Card Knowledge is Power d9605a.yaml' +- !include 'Custom_Model_Bag Seeker 75373e/Card Shortcut 8e3919.yaml' +- !include 'Custom_Model_Bag Seeker 75373e/Card Guidance fd5cfc.yaml' +- !include 'Custom_Model_Bag Seeker 75373e/Card Anatomical Diagrams 5caade.yaml' +- !include 'Custom_Model_Bag Seeker 75373e/Card Mind over Matter 7b666c.yaml' +- !include 'Custom_Model_Bag Seeker 75373e/Card Practice Makes Perfect 1ac667.yaml' +- !include 'Custom_Model_Bag Seeker 75373e/Card Seeking Answers 36f1d1.yaml' +- !include 'Custom_Model_Bag Seeker 75373e/Card Unearth the Ancients 51fe45.yaml' +- !include 'Custom_Model_Bag Seeker 75373e/Card Vantage Point 7fe931.yaml' +- !include 'Custom_Model_Bag Seeker 75373e/Card Logical Reasoning 1cda28.yaml' +- !include 'Custom_Model_Bag Seeker 75373e/Card No Stone Unturned 789e68.yaml' +- !include 'Custom_Model_Bag Seeker 75373e/Card Persuasion c7b43a.yaml' +- !include 'Custom_Model_Bag Seeker 75373e/Card Preposterous Sketches 969df2.yaml' +- !include 'Custom_Model_Bag Seeker 75373e/Card Truth from Fiction 58e7ca.yaml' +- !include 'Custom_Model_Bag Seeker 75373e/Card Working a Hunch e095ba.yaml' +- !include 'Custom_Model_Bag Seeker 75373e/Card I''ve got a plan! 546840.yaml' +- !include 'Custom_Model_Bag Seeker 75373e/Card Dream-Enhancing Serum 47b31a.yaml' +- !include 'Custom_Model_Bag Seeker 75373e/Card Mr. Rook 09c43a.yaml' +- !include 'Custom_Model_Bag Seeker 75373e/Card Dr. Elli Horowitz 41ae5f.yaml' +- !include 'Custom_Model_Bag Seeker 75373e/Card Grisly Totem 70c61b.yaml' +- !include 'Custom_Model_Bag Seeker 75373e/Card Occult Lexicon 0b358b.yaml' +- !include 'Custom_Model_Bag Seeker 75373e/Card Fieldwork ac9ed8.yaml' +- !include 'Custom_Model_Bag Seeker 75373e/Card Charles Ross, Esq. e4d33f.yaml' +- !include 'Custom_Model_Bag Seeker 75373e/Card Art Student acb267.yaml' +- !include 'Custom_Model_Bag Seeker 75373e/Card Laboratory Assistant 13c10e.yaml' +- !include 'Custom_Model_Bag Seeker 75373e/Card Research Librarian 3b40c2.yaml' +- !include 'Custom_Model_Bag Seeker 75373e/Card Medical Texts a13df3.yaml' +- !include 'Custom_Model_Bag Seeker 75373e/Card Hyperawareness 085253.yaml' +- !include 'Custom_Model_Bag Seeker 75373e/Card Hawk-Eye Folding Camera 4407a2.yaml' +- !include 'Custom_Model_Bag Seeker 75373e/Card Dr. William T. Maleson 4246e8.yaml' +- !include 'Custom_Model_Bag Seeker 75373e/Card Dream Diary e29c22.yaml' +- !include 'Custom_Model_Bag Seeker 75373e/Card Strange Solution e306f1.yaml' +- !include 'Custom_Model_Bag Seeker 75373e/Card Scroll of Secrets 77923a.yaml' +- !include 'Custom_Model_Bag Seeker 75373e/Card Archaic Glyphs 481e4f.yaml' +- !include 'Custom_Model_Bag Seeker 75373e/Card Magnifying Glass a7afe8.yaml' +- !include 'Custom_Model_Bag Seeker 75373e/Card Dr. Milian Christopher 4002c9.yaml' +- !include 'Custom_Model_Bag Seeker 75373e/Card Fingerprint Kit 6dc20a.yaml' +- !include 'Custom_Model_Bag Seeker 75373e/Card Tooth of Eztli 521086.yaml' +- !include 'Custom_Model_Bag Seeker 75373e/Card Old Book of Lore 75060e.yaml' +- !include 'Custom_Model_Bag Seeker 75373e/Card Shrewd Analysis 8c51fe.yaml' +- !include 'Custom_Model_Bag Seeker 75373e/Custom_Model_Bag Seeker 8ebc93.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/952965722516265983/F50A6212D30C442429ED22B8CC8FD24D4CB76A2A/ + MaterialIndex: 3 + MeshURL: https://pastebin.com/raw/ALrYhQGb + NormalURL: '' + TypeIndex: 6 +Description: '' +GMNotes: '' +GUID: 75373e +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: true +LuaScript: !include 'Custom_Model_Bag Seeker 75373e.ttslua' +LuaScriptState: '{"ml":{"085253":{"lock":false,"pos":{"x":10.5689,"y":1.3471,"z":74.0607},"rot":{"x":0.0208,"y":269.9784,"z":0.0168}},"09c43a":{"lock":false,"pos":{"x":10.5531,"y":1.3404,"z":51.0713},"rot":{"x":0.0208,"y":269.9847,"z":0.0168}},"0b358b":{"lock":false,"pos":{"x":10.5709,"y":1.3424,"z":57.9606},"rot":{"x":0.0208,"y":269.9789,"z":0.0168}},"13c10e":{"lock":false,"pos":{"x":10.5689,"y":1.3451,"z":67.1607},"rot":{"x":0.0208,"y":269.9787,"z":0.0168}},"1ac667":{"lock":false,"pos":{"x":19.2841,"y":1.3496,"z":71.7412},"rot":{"x":0.0208,"y":270.0107,"z":0.0168}},"1cda28":{"lock":false,"pos":{"x":19.2841,"y":1.3469,"z":62.5412},"rot":{"x":0.0208,"y":269.981,"z":0.0168}},"260032":{"lock":false,"pos":{"x":24.4394,"y":1.3575,"z":92.3904},"rot":{"x":0.0208,"y":269.9713,"z":0.0168}},"36f1d1":{"lock":false,"pos":{"x":19.2841,"y":1.3489,"z":69.4412},"rot":{"x":0.0208,"y":269.9908,"z":0.0168}},"3b40c2":{"lock":false,"pos":{"x":10.5689,"y":1.3458,"z":69.4607},"rot":{"x":0.0208,"y":269.9786,"z":0.0168}},"4002c9":{"lock":false,"pos":{"x":7.0158,"y":1.3498,"z":87.8487},"rot":{"x":0.0208,"y":269.9846,"z":0.0168}},"41ae5f":{"lock":false,"pos":{"x":10.5689,"y":1.341,"z":53.3608},"rot":{"x":0.0208,"y":269.9847,"z":0.0168}},"4246e8":{"lock":false,"pos":{"x":10.5689,"y":1.3484,"z":78.6607},"rot":{"x":0.0208,"y":269.9786,"z":0.0168}},"4407a2":{"lock":false,"pos":{"x":10.5689,"y":1.3478,"z":76.3607},"rot":{"x":0.0208,"y":269.9788,"z":0.0168}},"47b31a":{"lock":false,"pos":{"x":10.5529,"y":1.3397,"z":48.764},"rot":{"x":0.0208,"y":269.9772,"z":0.0168}},"481e4f":{"lock":false,"pos":{"x":10.5689,"y":1.3518,"z":90.1608},"rot":{"x":0.0208,"y":269.9786,"z":0.0168}},"51fe45":{"lock":false,"pos":{"x":19.2841,"y":1.3482,"z":67.1411},"rot":{"x":0.0208,"y":269.9882,"z":0.0168}},"521086":{"lock":false,"pos":{"x":7.0158,"y":1.3505,"z":90.1487},"rot":{"x":0.0208,"y":269.9847,"z":0.0168}},"546840":{"lock":false,"pos":{"x":19.2682,"y":1.3428,"z":48.7453},"rot":{"x":0.0208,"y":269.9877,"z":0.0168}},"58e7ca":{"lock":false,"pos":{"x":19.2841,"y":1.3442,"z":53.3412},"rot":{"x":0.0208,"y":269.9878,"z":0.0168}},"5caade":{"lock":false,"pos":{"x":19.2841,"y":1.3509,"z":76.3412},"rot":{"x":0.0208,"y":269.988,"z":0.0168}},"5fc646":{"lock":false,"pos":{"x":15.6184,"y":1.3543,"z":92.4528},"rot":{"x":0.0208,"y":269.9841,"z":0.0168}},"6a63d1":{"lock":false,"pos":{"x":24.4394,"y":1.3562,"z":87.7904},"rot":{"x":0.0208,"y":269.9713,"z":0.0168}},"6dc20a":{"lock":false,"pos":{"x":7.0158,"y":1.3492,"z":85.5487},"rot":{"x":0.0208,"y":269.9685,"z":0.0168}},"70c61b":{"lock":false,"pos":{"x":10.5688,"y":1.3417,"z":55.6608},"rot":{"x":0.0208,"y":269.9846,"z":0.0168}},"740489":{"lock":false,"pos":{"x":19.2841,"y":1.3536,"z":85.5412},"rot":{"x":0.0208,"y":269.9877,"z":0.0168}},"75060e":{"lock":false,"pos":{"x":7.0158,"y":1.3512,"z":92.4487},"rot":{"x":0.0208,"y":269.9846,"z":0.0168}},"7665ef":{"lock":false,"pos":{"x":24.4394,"y":1.3555,"z":85.4904},"rot":{"x":0.0208,"y":269.9649,"z":0.0168}},"77923a":{"lock":false,"pos":{"x":10.5689,"y":1.3505,"z":85.5608},"rot":{"x":0.0208,"y":269.9787,"z":0.0168}},"789e68":{"lock":false,"pos":{"x":19.284,"y":1.3462,"z":60.2517},"rot":{"x":0.0208,"y":269.9807,"z":0.0168}},"7b666c":{"lock":false,"pos":{"x":19.2841,"y":1.3503,"z":74.0412},"rot":{"x":0.0208,"y":269.9875,"z":0.0168}},"7fe931":{"lock":false,"pos":{"x":19.2841,"y":1.3476,"z":64.8411},"rot":{"x":0.0208,"y":269.9883,"z":0.0168}},"8c51fe":{"lock":false,"pos":{"x":10.5689,"y":1.3525,"z":92.4607},"rot":{"x":0.0208,"y":269.9785,"z":0.0168}},"8e3919":{"lock":false,"pos":{"x":19.2841,"y":1.3523,"z":80.9412},"rot":{"x":0.0208,"y":269.9883,"z":0.0168}},"969df2":{"lock":false,"pos":{"x":19.284,"y":1.3449,"z":55.6412},"rot":{"x":0.0208,"y":269.9911,"z":0.0168}},"9923e4":{"lock":false,"pos":{"x":24.4394,"y":1.3568,"z":90.0904},"rot":{"x":0.0208,"y":269.9683,"z":0.0168}},"a13df3":{"lock":false,"pos":{"x":10.5689,"y":1.3464,"z":71.7607},"rot":{"x":0.0208,"y":269.9787,"z":0.0168}},"a7afe8":{"lock":false,"pos":{"x":10.5689,"y":1.3511,"z":87.8608},"rot":{"x":0.0208,"y":269.9783,"z":0.0168}},"ac9ed8":{"lock":false,"pos":{"x":10.5689,"y":1.3431,"z":60.2608},"rot":{"x":0.0208,"y":269.9786,"z":0.0168}},"acb267":{"lock":false,"pos":{"x":10.5689,"y":1.3444,"z":64.8607},"rot":{"x":0.0208,"y":269.9882,"z":0.0168}},"c7b43a":{"lock":false,"pos":{"x":19.2861,"y":1.3455,"z":57.941},"rot":{"x":0.0208,"y":269.9882,"z":0.0168}},"d954bb":{"lock":false,"pos":{"x":19.2841,"y":1.3543,"z":87.8412},"rot":{"x":0.0208,"y":269.9883,"z":0.0168}},"d9605a":{"lock":false,"pos":{"x":19.2841,"y":1.353,"z":83.2412},"rot":{"x":0.0208,"y":269.9875,"z":0.0168}},"e06830":{"lock":false,"pos":{"x":19.2841,"y":1.3556,"z":92.4412},"rot":{"x":0.0208,"y":269.9878,"z":0.0168}},"e095ba":{"lock":false,"pos":{"x":19.2683,"y":1.3435,"z":51.0517},"rot":{"x":0.0208,"y":269.9914,"z":0.0168}},"e29c22":{"lock":false,"pos":{"x":10.5689,"y":1.3491,"z":80.9607},"rot":{"x":0.0208,"y":269.9904,"z":0.0168}},"e306f1":{"lock":false,"pos":{"x":10.5689,"y":1.3498,"z":83.2607},"rot":{"x":0.0208,"y":269.9787,"z":0.0168}},"e4d33f":{"lock":false,"pos":{"x":10.5689,"y":1.3437,"z":62.5608},"rot":{"x":0.0208,"y":269.98,"z":0.0168}},"ebbf12":{"lock":false,"pos":{"x":19.2841,"y":1.355,"z":90.1413},"rot":{"x":0.0208,"y":269.9883,"z":0.0168}},"efb020":{"lock":false,"pos":{"x":24.4394,"y":1.3548,"z":83.1904},"rot":{"x":0.0208,"y":269.9711,"z":0.0168}},"fd5cfc":{"lock":false,"pos":{"x":19.2841,"y":1.3516,"z":78.6412},"rot":{"x":0.0208,"y":269.9909,"z":0.0168}}}}' +MaterialIndex: -1 +MeshIndex: -1 +Name: Custom_Model_Bag +Nickname: Seeker +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 32.94473 + posY: 1.40262616 + posZ: 71.03324 + rotX: 0.0208051354 + rotY: 270.0183 + rotZ: 0.0167771652 + scaleX: 1.2 + scaleY: 1.2 + scaleZ: 1.2 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 75373e/Card Anatomical Diagrams 5caade.yaml b/unpacked/Custom_Model_Bag Seeker 75373e/Card Anatomical Diagrams 5caade.yaml new file mode 100644 index 000000000..75e198cb7 --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 75373e/Card Anatomical Diagrams 5caade.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 230409 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 5caade +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Anatomical Diagrams +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.2840977 + posY: 1.35093224 + posZ: 76.3412247 + rotX: 0.0208116323 + rotY: 269.988 + rotZ: 0.0167635381 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 75373e/Card Archaic Glyphs 481e4f.yaml b/unpacked/Custom_Model_Bag Seeker 75373e/Card Archaic Glyphs 481e4f.yaml new file mode 100644 index 000000000..ae8665d4a --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 75373e/Card Archaic Glyphs 481e4f.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 230420 +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 + UniqueBack: false +Description: Untranslated +GMNotes: '' +GUID: 481e4f +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Archaic Glyphs +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.568902 + posY: 1.35181236 + posZ: 90.1608 + rotX: 0.0208154 + rotY: 269.9786 + rotZ: 0.01676279 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 75373e/Card Art Student acb267.yaml b/unpacked/Custom_Model_Bag Seeker 75373e/Card Art Student acb267.yaml new file mode 100644 index 000000000..6d129d147 --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 75373e/Card Art Student acb267.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 230428 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: acb267 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Art Student +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.5689 + posY: 1.34440672 + posZ: 64.8607 + rotX: 0.02081154 + rotY: 269.988159 + rotZ: 0.016765004 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 75373e/Card Astounding Revelation e06830.yaml b/unpacked/Custom_Model_Bag Seeker 75373e/Card Astounding Revelation e06830.yaml new file mode 100644 index 000000000..b60c56746 --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 75373e/Card Astounding Revelation e06830.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 447825 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: e06830 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Astounding Revelation +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.2841 + posY: 1.35564482 + posZ: 92.4412 + rotX: 0.0208128169 + rotY: 269.9878 + rotZ: 0.016766211 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 75373e/Card Barricade ebbf12.yaml b/unpacked/Custom_Model_Bag Seeker 75373e/Card Barricade ebbf12.yaml new file mode 100644 index 000000000..7d5c89ec4 --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 75373e/Card Barricade ebbf12.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 230404 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: ebbf12 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Barricade +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.2841 + posY: 1.35497165 + posZ: 90.1413 + rotX: 0.0208125934 + rotY: 269.988251 + rotZ: 0.0167665742 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 75373e/Card Charles Ross, Esq. e4d33f.yaml b/unpacked/Custom_Model_Bag Seeker 75373e/Card Charles Ross, Esq. e4d33f.yaml new file mode 100644 index 000000000..22aa4cbef --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 75373e/Card Charles Ross, Esq. e4d33f.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 230430 +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 + UniqueBack: false +Description: Acquisitions and Solicitation +GMNotes: '' +GUID: e4d33f +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Charles Ross, Esq. +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.568902 + posY: 1.34373331 + posZ: 62.5608 + rotX: 0.0208149031 + rotY: 269.980042 + rotZ: 0.0167634338 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 75373e/Card Connect the Dots 5fc646.yaml b/unpacked/Custom_Model_Bag Seeker 75373e/Card Connect the Dots 5fc646.yaml new file mode 100644 index 000000000..c43c645c6 --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 75373e/Card Connect the Dots 5fc646.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 279409 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2794': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025943833/DE98A03934DF8FF5B3CF6C53143B15BFC3ED7341/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 5fc646 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Connect the Dots +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 15.6183987 + posY: 1.35431707 + posZ: 92.4528046 + rotX: 0.02081291 + rotY: 269.9841 + rotZ: 0.0167626236 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 75373e/Card Crack the Case d954bb.yaml b/unpacked/Custom_Model_Bag Seeker 75373e/Card Crack the Case d954bb.yaml new file mode 100644 index 000000000..b60b97d64 --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 75373e/Card Crack the Case d954bb.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: d954bb +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Crack the Case +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.2841 + posY: 1.35429835 + posZ: 87.8412 + rotX: 0.02081268 + rotY: 269.988251 + rotZ: 0.0167664662 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 75373e/Card Curiosity 260032.yaml b/unpacked/Custom_Model_Bag Seeker 75373e/Card Curiosity 260032.yaml new file mode 100644 index 000000000..eb1e2e390 --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 75373e/Card Curiosity 260032.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 279308 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2793': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025943833/DE98A03934DF8FF5B3CF6C53143B15BFC3ED7341/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: '260032' +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Curiosity +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 24.4394 + posY: 1.35750222 + posZ: 92.3904 + rotX: 0.0208175089 + rotY: 269.9713 + rotZ: 0.0167603642 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 75373e/Card Deduction 7665ef.yaml b/unpacked/Custom_Model_Bag Seeker 75373e/Card Deduction 7665ef.yaml new file mode 100644 index 000000000..57c9ec8d5 --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 75373e/Card Deduction 7665ef.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 7665ef +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Deduction +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 24.4394 + posY: 1.35548258 + posZ: 85.4904 + rotX: 0.0208192281 + rotY: 269.964874 + rotZ: 0.0167577378 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 75373e/Card Dr. Elli Horowitz 41ae5f.yaml b/unpacked/Custom_Model_Bag Seeker 75373e/Card Dr. Elli Horowitz 41ae5f.yaml new file mode 100644 index 000000000..9a3450b56 --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 75373e/Card Dr. Elli Horowitz 41ae5f.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 230433 +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 + UniqueBack: false +Description: Assistant Curator +GMNotes: '' +GUID: 41ae5f +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Dr. Elli Horowitz +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.5689 + posY: 1.34104049 + posZ: 53.3608 + rotX: 0.020813765 + rotY: 269.98468 + rotZ: 0.0167642888 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 75373e/Card Dr. Milian Christopher 4002c9.yaml b/unpacked/Custom_Model_Bag Seeker 75373e/Card Dr. Milian Christopher 4002c9.yaml new file mode 100644 index 000000000..cc97996f3 --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 75373e/Card Dr. Milian Christopher 4002c9.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 230434 +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 + UniqueBack: false +Description: Professor of Entomology +GMNotes: '' +GUID: 4002c9 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Dr. Milian Christopher +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 7.0158 + posY: 1.34984517 + posZ: 87.8487 + rotX: 0.0208135173 + rotY: 269.984619 + rotZ: 0.0167652722 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 75373e/Card Dr. William T. Maleson 4246e8.yaml b/unpacked/Custom_Model_Bag Seeker 75373e/Card Dr. William T. Maleson 4246e8.yaml new file mode 100644 index 000000000..84dd68019 --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 75373e/Card Dr. William T. Maleson 4246e8.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 230423 +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 + UniqueBack: false +Description: Working on Something Big +GMNotes: '' +GUID: 4246e8 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Dr. William T. Maleson +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.568902 + posY: 1.34844613 + posZ: 78.6607 + rotX: 0.0208155252 + rotY: 269.9786 + rotZ: 0.0167629234 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 75373e/Card Dream Diary e29c22.yaml b/unpacked/Custom_Model_Bag Seeker 75373e/Card Dream Diary e29c22.yaml new file mode 100644 index 000000000..2abe4fee0 --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 75373e/Card Dream Diary e29c22.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Untranslated +GMNotes: '' +GUID: e29c22 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Dream Diary +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.5689058 + posY: 1.34911954 + posZ: 80.9607 + rotX: 0.0208111089 + rotY: 269.990356 + rotZ: 0.0167645942 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 75373e/Card Dream-Enhancing Serum 47b31a.yaml b/unpacked/Custom_Model_Bag Seeker 75373e/Card Dream-Enhancing Serum 47b31a.yaml new file mode 100644 index 000000000..e25c8a72a --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 75373e/Card Dream-Enhancing Serum 47b31a.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 47b31a +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Dream-Enhancing Serum +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.5529022 + posY: 1.33968925 + posZ: 48.764 + rotX: 0.0208161771 + rotY: 269.977173 + rotZ: 0.0167623181 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 75373e/Card Eureka! 9923e4.yaml b/unpacked/Custom_Model_Bag Seeker 75373e/Card Eureka! 9923e4.yaml new file mode 100644 index 000000000..c57b5fcfe --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 75373e/Card Eureka! 9923e4.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 230400 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 9923e4 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Eureka! +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 24.4394 + posY: 1.356829 + posZ: 90.0904 + rotX: 0.0208185539 + rotY: 269.968262 + rotZ: 0.016759336 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 75373e/Card Fieldwork ac9ed8.yaml b/unpacked/Custom_Model_Bag Seeker 75373e/Card Fieldwork ac9ed8.yaml new file mode 100644 index 000000000..7fe75a640 --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 75373e/Card Fieldwork ac9ed8.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 230429 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: ac9ed8 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Fieldwork +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.5688982 + posY: 1.34306026 + posZ: 60.2608 + rotX: 0.0208155122 + rotY: 269.9786 + rotZ: 0.01676291 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 75373e/Card Fingerprint Kit 6dc20a.yaml b/unpacked/Custom_Model_Bag Seeker 75373e/Card Fingerprint Kit 6dc20a.yaml new file mode 100644 index 000000000..b06b96a7f --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 75373e/Card Fingerprint Kit 6dc20a.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 6dc20a +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Fingerprint Kit +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 7.015798 + posY: 1.349172 + posZ: 85.5487 + rotX: 0.0208181683 + rotY: 269.968475 + rotZ: 0.0167591088 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 75373e/Card Ghastly Revelation 740489.yaml b/unpacked/Custom_Model_Bag Seeker 75373e/Card Ghastly Revelation 740489.yaml new file mode 100644 index 000000000..bdab52162 --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 75373e/Card Ghastly Revelation 740489.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: '740489' +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Ghastly Revelation +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.2841 + posY: 1.3536253 + posZ: 85.5412 + rotX: 0.0208112169 + rotY: 269.987671 + rotZ: 0.0167639423 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 75373e/Card Grisly Totem 70c61b.yaml b/unpacked/Custom_Model_Bag Seeker 75373e/Card Grisly Totem 70c61b.yaml new file mode 100644 index 000000000..367624a05 --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 75373e/Card Grisly Totem 70c61b.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 70c61b +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Grisly Totem +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.5688019 + posY: 1.34171379 + posZ: 55.6608 + rotX: 0.0208136775 + rotY: 269.98465 + rotZ: 0.016765194 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 75373e/Card Guidance fd5cfc.yaml b/unpacked/Custom_Model_Bag Seeker 75373e/Card Guidance fd5cfc.yaml new file mode 100644 index 000000000..f0bb0ca49 --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 75373e/Card Guidance fd5cfc.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 230406 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: fd5cfc +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Guidance +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.2841 + posY: 1.35160542 + posZ: 78.6412 + rotX: 0.0208121445 + rotY: 269.990936 + rotZ: 0.016767364 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 75373e/Card Hawk-Eye Folding Camera 4407a2.yaml b/unpacked/Custom_Model_Bag Seeker 75373e/Card Hawk-Eye Folding Camera 4407a2.yaml new file mode 100644 index 000000000..dec0decc0 --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 75373e/Card Hawk-Eye Folding Camera 4407a2.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 4407a2 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Hawk-Eye Folding Camera +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.5688992 + posY: 1.347773 + posZ: 76.3607 + rotX: 0.0208140872 + rotY: 269.9788 + rotZ: 0.0167607218 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 75373e/Card Hyperawareness 085253.yaml b/unpacked/Custom_Model_Bag Seeker 75373e/Card Hyperawareness 085253.yaml new file mode 100644 index 000000000..688760f75 --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 75373e/Card Hyperawareness 085253.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 085253 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Hyperawareness +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.568902 + posY: 1.34709978 + posZ: 74.0607 + rotX: 0.0208156332 + rotY: 269.978424 + rotZ: 0.01676287 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 75373e/Card I've got a plan! 546840.yaml b/unpacked/Custom_Model_Bag Seeker 75373e/Card I've got a plan! 546840.yaml new file mode 100644 index 000000000..5107ebbfd --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 75373e/Card I've got a plan! 546840.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 230418 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: '546840' +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '"I''ve got a plan!"' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.2681713 + posY: 1.34284878 + posZ: 48.7452965 + rotX: 0.0208129864 + rotY: 269.987732 + rotZ: 0.0167642664 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 75373e/Card Inquiring Mind 6a63d1.yaml b/unpacked/Custom_Model_Bag Seeker 75373e/Card Inquiring Mind 6a63d1.yaml new file mode 100644 index 000000000..ba1a047bb --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 75373e/Card Inquiring Mind 6a63d1.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 230401 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 6a63d1 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Inquiring Mind +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 24.4394 + posY: 1.35615587 + posZ: 87.7904 + rotX: 0.0208174475 + rotY: 269.971344 + rotZ: 0.0167602636 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 75373e/Card Knowledge is Power d9605a.yaml b/unpacked/Custom_Model_Bag Seeker 75373e/Card Knowledge is Power d9605a.yaml new file mode 100644 index 000000000..a9d00b0cb --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 75373e/Card Knowledge is Power d9605a.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: d9605a +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Knowledge is Power +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.2841 + posY: 1.352952 + posZ: 83.2412 + rotX: 0.0208129715 + rotY: 269.987457 + rotZ: 0.016765995 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 75373e/Card Laboratory Assistant 13c10e.yaml b/unpacked/Custom_Model_Bag Seeker 75373e/Card Laboratory Assistant 13c10e.yaml new file mode 100644 index 000000000..f0d11d169 --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 75373e/Card Laboratory Assistant 13c10e.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 230427 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 13c10e +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Laboratory Assistant +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.5688982 + posY: 1.34508 + posZ: 67.1607 + rotX: 0.0208157413 + rotY: 269.9787 + rotZ: 0.0167627335 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 75373e/Card Logical Reasoning 1cda28.yaml b/unpacked/Custom_Model_Bag Seeker 75373e/Card Logical Reasoning 1cda28.yaml new file mode 100644 index 000000000..ec2838479 --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 75373e/Card Logical Reasoning 1cda28.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 230417 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 1cda28 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Logical Reasoning +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.2840977 + posY: 1.34689271 + posZ: 62.54119 + rotX: 0.0208148547 + rotY: 269.981018 + rotZ: 0.01676303 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 75373e/Card Magnifying Glass a7afe8.yaml b/unpacked/Custom_Model_Bag Seeker 75373e/Card Magnifying Glass a7afe8.yaml new file mode 100644 index 000000000..68cca5343 --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 75373e/Card Magnifying Glass a7afe8.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: a7afe8 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Magnifying Glass +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.5688934 + posY: 1.35113919 + posZ: 87.8607941 + rotX: 0.0208177976 + rotY: 269.9783 + rotZ: 0.0167644229 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 75373e/Card Medical Texts a13df3.yaml b/unpacked/Custom_Model_Bag Seeker 75373e/Card Medical Texts a13df3.yaml new file mode 100644 index 000000000..5515e62e6 --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 75373e/Card Medical Texts a13df3.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 230425 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: a13df3 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Medical Texts +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.5688982 + posY: 1.34642637 + posZ: 71.7607 + rotX: 0.0208152756 + rotY: 269.9787 + rotZ: 0.0167629011 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 75373e/Card Mind over Matter 7b666c.yaml b/unpacked/Custom_Model_Bag Seeker 75373e/Card Mind over Matter 7b666c.yaml new file mode 100644 index 000000000..6fffd799d --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 75373e/Card Mind over Matter 7b666c.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 230408 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 7b666c +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Mind over Matter +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.28411 + posY: 1.35025907 + posZ: 74.04124 + rotX: 0.0208121631 + rotY: 269.987518 + rotZ: 0.0167634673 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 75373e/Card Mr. Rook 09c43a.yaml b/unpacked/Custom_Model_Bag Seeker 75373e/Card Mr. Rook 09c43a.yaml new file mode 100644 index 000000000..e3e6f549f --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 75373e/Card Mr. Rook 09c43a.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 09c43a +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Mr. "Rook" +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.5530977 + posY: 1.34036458 + posZ: 51.0713 + rotX: 0.02081393 + rotY: 269.98468 + rotZ: 0.0167650115 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 75373e/Card No Stone Unturned 789e68.yaml b/unpacked/Custom_Model_Bag Seeker 75373e/Card No Stone Unturned 789e68.yaml new file mode 100644 index 000000000..05dfb7e0a --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 75373e/Card No Stone Unturned 789e68.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 230415 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 789e68 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: No Stone Unturned +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.28404 + posY: 1.34622264 + posZ: 60.25173 + rotX: 0.02081524 + rotY: 269.980743 + rotZ: 0.0167643353 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 75373e/Card Occult Lexicon 0b358b.yaml b/unpacked/Custom_Model_Bag Seeker 75373e/Card Occult Lexicon 0b358b.yaml new file mode 100644 index 000000000..fb13d5f00 --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 75373e/Card Occult Lexicon 0b358b.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 0b358b +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Occult Lexicon +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.5709019 + posY: 1.34238768 + posZ: 57.9606 + rotX: 0.0208156854 + rotY: 269.9789 + rotZ: 0.0167631153 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 75373e/Card Old Book of Lore 75060e.yaml b/unpacked/Custom_Model_Bag Seeker 75373e/Card Old Book of Lore 75060e.yaml new file mode 100644 index 000000000..cd8ba9f37 --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 75373e/Card Old Book of Lore 75060e.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 230431 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 75060e +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Old Book of Lore +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 7.015802 + posY: 1.35119176 + posZ: 92.4487 + rotX: 0.02081401 + rotY: 269.984619 + rotZ: 0.0167652 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 75373e/Card Persuasion c7b43a.yaml b/unpacked/Custom_Model_Bag Seeker 75373e/Card Persuasion c7b43a.yaml new file mode 100644 index 000000000..e7e0d3b19 --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 75373e/Card Persuasion c7b43a.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: c7b43a +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Persuasion +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.2861385 + posY: 1.34554684 + posZ: 57.94097 + rotX: 0.0208134037 + rotY: 269.9882 + rotZ: 0.0167667456 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 75373e/Card Practice Makes Perfect 1ac667.yaml b/unpacked/Custom_Model_Bag Seeker 75373e/Card Practice Makes Perfect 1ac667.yaml new file mode 100644 index 000000000..f8817fa0a --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 75373e/Card Practice Makes Perfect 1ac667.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Gambit. Tactic. +GMNotes: '' +GUID: 1ac667 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Practice Makes Perfect +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.2841053 + posY: 1.34958577 + posZ: 71.74123 + rotX: 0.0208062865 + rotY: 270.010681 + rotZ: 0.016775839 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 75373e/Card Preposterous Sketches 969df2.yaml b/unpacked/Custom_Model_Bag Seeker 75373e/Card Preposterous Sketches 969df2.yaml new file mode 100644 index 000000000..b7e5d0bac --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 75373e/Card Preposterous Sketches 969df2.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 230416 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 969df2 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Preposterous Sketches +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.28401 + posY: 1.344873 + posZ: 55.6411972 + rotX: 0.020812273 + rotY: 269.99115 + rotZ: 0.0167680476 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 75373e/Card Research Librarian 3b40c2.yaml b/unpacked/Custom_Model_Bag Seeker 75373e/Card Research Librarian 3b40c2.yaml new file mode 100644 index 000000000..f292f57d1 --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 75373e/Card Research Librarian 3b40c2.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 230426 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 3b40c2 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Research Librarian +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.568902 + posY: 1.34575319 + posZ: 69.4607 + rotX: 0.0208153762 + rotY: 269.978638 + rotZ: 0.01676253 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 75373e/Card Scroll of Secrets 77923a.yaml b/unpacked/Custom_Model_Bag Seeker 75373e/Card Scroll of Secrets 77923a.yaml new file mode 100644 index 000000000..db385a967 --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 75373e/Card Scroll of Secrets 77923a.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 77923a +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Scroll of Secrets +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.5688982 + posY: 1.350466 + posZ: 85.5608 + rotX: 0.0208156053 + rotY: 269.978668 + rotZ: 0.0167630985 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 75373e/Card Seeking Answers 36f1d1.yaml b/unpacked/Custom_Model_Bag Seeker 75373e/Card Seeking Answers 36f1d1.yaml new file mode 100644 index 000000000..8a1a55daf --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 75373e/Card Seeking Answers 36f1d1.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 230407 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 36f1d1 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Seeking Answers +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.2841015 + posY: 1.34891248 + posZ: 69.44122 + rotX: 0.0208116863 + rotY: 269.990845 + rotZ: 0.0167671312 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 75373e/Card Shortcut 8e3919.yaml b/unpacked/Custom_Model_Bag Seeker 75373e/Card Shortcut 8e3919.yaml new file mode 100644 index 000000000..13b31b805 --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 75373e/Card Shortcut 8e3919.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 8e3919 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Shortcut +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.2841 + posY: 1.35227859 + posZ: 80.9412 + rotX: 0.02081284 + rotY: 269.988281 + rotZ: 0.01676632 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 75373e/Card Shrewd Analysis 8c51fe.yaml b/unpacked/Custom_Model_Bag Seeker 75373e/Card Shrewd Analysis 8c51fe.yaml new file mode 100644 index 000000000..0fd9ce7fd --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 75373e/Card Shrewd Analysis 8c51fe.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 230419 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 8c51fe +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Shrewd Analysis +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.568902 + posY: 1.35248566 + posZ: 92.4607 + rotX: 0.020815257 + rotY: 269.978516 + rotZ: 0.01676283 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 75373e/Card Strange Solution e306f1.yaml b/unpacked/Custom_Model_Bag Seeker 75373e/Card Strange Solution e306f1.yaml new file mode 100644 index 000000000..c3c1a9d2c --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 75373e/Card Strange Solution e306f1.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 230422 +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 + UniqueBack: false +Description: Unidentified +GMNotes: '' +GUID: e306f1 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Strange Solution +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.568902 + posY: 1.34979272 + posZ: 83.2607 + rotX: 0.0208155457 + rotY: 269.9787 + rotZ: 0.0167630371 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 75373e/Card Tooth of Eztli 521086.yaml b/unpacked/Custom_Model_Bag Seeker 75373e/Card Tooth of Eztli 521086.yaml new file mode 100644 index 000000000..b35878f5d --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 75373e/Card Tooth of Eztli 521086.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 230432 +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 + UniqueBack: false +Description: Mortal Reminder +GMNotes: '' +GUID: '521086' +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Tooth of Eztli +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 7.015802 + posY: 1.35051847 + posZ: 90.1487 + rotX: 0.02081343 + rotY: 269.98468 + rotZ: 0.0167652611 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 75373e/Card True Understanding efb020.yaml b/unpacked/Custom_Model_Bag Seeker 75373e/Card True Understanding efb020.yaml new file mode 100644 index 000000000..4a086fbf9 --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 75373e/Card True Understanding efb020.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: efb020 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: True Understanding +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 24.4394 + posY: 1.35480928 + posZ: 83.1904 + rotX: 0.0208174344 + rotY: 269.9711 + rotZ: 0.0167603083 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 75373e/Card Truth from Fiction 58e7ca.yaml b/unpacked/Custom_Model_Bag Seeker 75373e/Card Truth from Fiction 58e7ca.yaml new file mode 100644 index 000000000..f12c3401f --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 75373e/Card Truth from Fiction 58e7ca.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 230412 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 58e7ca +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Truth from Fiction +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.28415 + posY: 1.34419978 + posZ: 53.3411827 + rotX: 0.02081418 + rotY: 269.987762 + rotZ: 0.0167664457 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 75373e/Card Unearth the Ancients 51fe45.yaml b/unpacked/Custom_Model_Bag Seeker 75373e/Card Unearth the Ancients 51fe45.yaml new file mode 100644 index 000000000..24c25d9dd --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 75373e/Card Unearth the Ancients 51fe45.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 230410 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 51fe45 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Unearth the Ancients +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.28411 + posY: 1.34823918 + posZ: 67.14111 + rotX: 0.0208128653 + rotY: 269.9882 + rotZ: 0.0167645868 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 75373e/Card Vantage Point 7fe931.yaml b/unpacked/Custom_Model_Bag Seeker 75373e/Card Vantage Point 7fe931.yaml new file mode 100644 index 000000000..be1fcc55e --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 75373e/Card Vantage Point 7fe931.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 230411 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 7fe931 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Vantage Point +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.2841053 + posY: 1.347566 + posZ: 64.8411 + rotX: 0.0208128057 + rotY: 269.988251 + rotZ: 0.0167643335 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 75373e/Card Working a Hunch e095ba.yaml b/unpacked/Custom_Model_Bag Seeker 75373e/Card Working a Hunch e095ba.yaml new file mode 100644 index 000000000..454ab2f45 --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 75373e/Card Working a Hunch e095ba.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 230413 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: e095ba +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Working a Hunch +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.2683277 + posY: 1.34352386 + posZ: 51.0517426 + rotX: 0.0208132789 + rotY: 269.9914 + rotZ: 0.01676774 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 75373e/Custom_Model_Bag Seeker 8ebc93.ttslua b/unpacked/Custom_Model_Bag Seeker 75373e/Custom_Model_Bag Seeker 8ebc93.ttslua new file mode 100644 index 000000000..f882a7f09 --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 75373e/Custom_Model_Bag Seeker 8ebc93.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,0,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 + 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=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,0,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,0,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,0,0}, height=350, width=750, + 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}, rotation={0,0,0}, height=350, width=800, + font_size=250, color={0,0,0}, font_color={1,1,1} + }) +-- self.createButton({ +-- label="Setup", click_function="buttonClick_setup", function_owner=self, +-- position={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.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 Seeker 75373e/Custom_Model_Bag Seeker 8ebc93.yaml b/unpacked/Custom_Model_Bag Seeker 75373e/Custom_Model_Bag Seeker 8ebc93.yaml new file mode 100644 index 000000000..8693ac4a4 --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 75373e/Custom_Model_Bag Seeker 8ebc93.yaml @@ -0,0 +1,102 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +ContainedObjects: +- !include 'Custom_Model_Bag Seeker 8ebc93/Card Curiosity 260032.yaml' +- !include 'Custom_Model_Bag Seeker 8ebc93/Card Eureka! 9923e4.yaml' +- !include 'Custom_Model_Bag Seeker 8ebc93/Card Inquiring Mind 6a63d1.yaml' +- !include 'Custom_Model_Bag Seeker 8ebc93/Card Deduction 7665ef.yaml' +- !include 'Custom_Model_Bag Seeker 8ebc93/Card True Understanding efb020.yaml' +- !include 'Custom_Model_Bag Seeker 8ebc93/Card Astounding Revelation e06830.yaml' +- !include 'Custom_Model_Bag Seeker 8ebc93/Card Connect the Dots 5fc646.yaml' +- !include 'Custom_Model_Bag Seeker 8ebc93/Card Barricade ebbf12.yaml' +- !include 'Custom_Model_Bag Seeker 8ebc93/Card Crack the Case d954bb.yaml' +- !include 'Custom_Model_Bag Seeker 8ebc93/Card Ghastly Revelation 740489.yaml' +- !include 'Custom_Model_Bag Seeker 8ebc93/Card Knowledge is Power d9605a.yaml' +- !include 'Custom_Model_Bag Seeker 8ebc93/Card Shortcut 8e3919.yaml' +- !include 'Custom_Model_Bag Seeker 8ebc93/Card Guidance fd5cfc.yaml' +- !include 'Custom_Model_Bag Seeker 8ebc93/Card Anatomical Diagrams 5caade.yaml' +- !include 'Custom_Model_Bag Seeker 8ebc93/Card Mind over Matter 7b666c.yaml' +- !include 'Custom_Model_Bag Seeker 8ebc93/Card Practice Makes Perfect 1ac667.yaml' +- !include 'Custom_Model_Bag Seeker 8ebc93/Card Seeking Answers 36f1d1.yaml' +- !include 'Custom_Model_Bag Seeker 8ebc93/Card Unearth the Ancients 51fe45.yaml' +- !include 'Custom_Model_Bag Seeker 8ebc93/Card Vantage Point 7fe931.yaml' +- !include 'Custom_Model_Bag Seeker 8ebc93/Card Logical Reasoning 1cda28.yaml' +- !include 'Custom_Model_Bag Seeker 8ebc93/Card No Stone Unturned 789e68.yaml' +- !include 'Custom_Model_Bag Seeker 8ebc93/Card Persuasion c7b43a.yaml' +- !include 'Custom_Model_Bag Seeker 8ebc93/Card Preposterous Sketches 969df2.yaml' +- !include 'Custom_Model_Bag Seeker 8ebc93/Card Truth from Fiction 58e7ca.yaml' +- !include 'Custom_Model_Bag Seeker 8ebc93/Card Working a Hunch e095ba.yaml' +- !include 'Custom_Model_Bag Seeker 8ebc93/Card I''ve got a plan! 546840.yaml' +- !include 'Custom_Model_Bag Seeker 8ebc93/Card Dream-Enhancing Serum 47b31a.yaml' +- !include 'Custom_Model_Bag Seeker 8ebc93/Card Mr. Rook 09c43a.yaml' +- !include 'Custom_Model_Bag Seeker 8ebc93/Card Dr. Elli Horowitz 41ae5f.yaml' +- !include 'Custom_Model_Bag Seeker 8ebc93/Card Grisly Totem 70c61b.yaml' +- !include 'Custom_Model_Bag Seeker 8ebc93/Card Occult Lexicon 0b358b.yaml' +- !include 'Custom_Model_Bag Seeker 8ebc93/Card Fieldwork ac9ed8.yaml' +- !include 'Custom_Model_Bag Seeker 8ebc93/Card Charles Ross, Esq. e4d33f.yaml' +- !include 'Custom_Model_Bag Seeker 8ebc93/Card Art Student acb267.yaml' +- !include 'Custom_Model_Bag Seeker 8ebc93/Card Laboratory Assistant 13c10e.yaml' +- !include 'Custom_Model_Bag Seeker 8ebc93/Card Research Librarian 3b40c2.yaml' +- !include 'Custom_Model_Bag Seeker 8ebc93/Card Medical Texts a13df3.yaml' +- !include 'Custom_Model_Bag Seeker 8ebc93/Card Hyperawareness 085253.yaml' +- !include 'Custom_Model_Bag Seeker 8ebc93/Card Hawk-Eye Folding Camera 4407a2.yaml' +- !include 'Custom_Model_Bag Seeker 8ebc93/Card Dr. William T. Maleson 4246e8.yaml' +- !include 'Custom_Model_Bag Seeker 8ebc93/Card Dream Diary e29c22.yaml' +- !include 'Custom_Model_Bag Seeker 8ebc93/Card Strange Solution e306f1.yaml' +- !include 'Custom_Model_Bag Seeker 8ebc93/Card Scroll of Secrets 77923a.yaml' +- !include 'Custom_Model_Bag Seeker 8ebc93/Card Archaic Glyphs 481e4f.yaml' +- !include 'Custom_Model_Bag Seeker 8ebc93/Card Magnifying Glass a7afe8.yaml' +- !include 'Custom_Model_Bag Seeker 8ebc93/Card Dr. Milian Christopher 4002c9.yaml' +- !include 'Custom_Model_Bag Seeker 8ebc93/Card Fingerprint Kit 6dc20a.yaml' +- !include 'Custom_Model_Bag Seeker 8ebc93/Card Tooth of Eztli 521086.yaml' +- !include 'Custom_Model_Bag Seeker 8ebc93/Card Old Book of Lore 75060e.yaml' +- !include 'Custom_Model_Bag Seeker 8ebc93/Card Shrewd Analysis 8c51fe.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/952965722516265983/F50A6212D30C442429ED22B8CC8FD24D4CB76A2A/ + MaterialIndex: 3 + MeshURL: https://pastebin.com/raw/ALrYhQGb + NormalURL: '' + TypeIndex: 6 +Description: '' +GMNotes: '' +GUID: 8ebc93 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Model_Bag Seeker 8ebc93.ttslua' +LuaScriptState: '{"ml":{"085253":{"lock":false,"pos":{"x":10.5689,"y":1.3471,"z":74.0607},"rot":{"x":0.0208,"y":269.9784,"z":0.0168}},"09c43a":{"lock":false,"pos":{"x":10.5531,"y":1.3404,"z":51.0713},"rot":{"x":0.0208,"y":269.9847,"z":0.0168}},"0b358b":{"lock":false,"pos":{"x":10.5709,"y":1.3424,"z":57.9606},"rot":{"x":0.0208,"y":269.9789,"z":0.0168}},"13c10e":{"lock":false,"pos":{"x":10.5689,"y":1.3451,"z":67.1607},"rot":{"x":0.0208,"y":269.9787,"z":0.0168}},"1ac667":{"lock":false,"pos":{"x":19.2841,"y":1.3496,"z":71.7412},"rot":{"x":0.0208,"y":270.0107,"z":0.0168}},"1cda28":{"lock":false,"pos":{"x":19.2841,"y":1.3469,"z":62.5412},"rot":{"x":0.0208,"y":269.981,"z":0.0168}},"260032":{"lock":false,"pos":{"x":24.4394,"y":1.3575,"z":92.3904},"rot":{"x":0.0208,"y":269.9713,"z":0.0168}},"36f1d1":{"lock":false,"pos":{"x":19.2841,"y":1.3489,"z":69.4412},"rot":{"x":0.0208,"y":269.9908,"z":0.0168}},"3b40c2":{"lock":false,"pos":{"x":10.5689,"y":1.3458,"z":69.4607},"rot":{"x":0.0208,"y":269.9786,"z":0.0168}},"4002c9":{"lock":false,"pos":{"x":7.0158,"y":1.3498,"z":87.8487},"rot":{"x":0.0208,"y":269.9846,"z":0.0168}},"41ae5f":{"lock":false,"pos":{"x":10.5689,"y":1.341,"z":53.3608},"rot":{"x":0.0208,"y":269.9847,"z":0.0168}},"4246e8":{"lock":false,"pos":{"x":10.5689,"y":1.3484,"z":78.6607},"rot":{"x":0.0208,"y":269.9786,"z":0.0168}},"4407a2":{"lock":false,"pos":{"x":10.5689,"y":1.3478,"z":76.3607},"rot":{"x":0.0208,"y":269.9788,"z":0.0168}},"47b31a":{"lock":false,"pos":{"x":10.5529,"y":1.3397,"z":48.764},"rot":{"x":0.0208,"y":269.9772,"z":0.0168}},"481e4f":{"lock":false,"pos":{"x":10.5689,"y":1.3518,"z":90.1608},"rot":{"x":0.0208,"y":269.9786,"z":0.0168}},"51fe45":{"lock":false,"pos":{"x":19.2841,"y":1.3482,"z":67.1411},"rot":{"x":0.0208,"y":269.9882,"z":0.0168}},"521086":{"lock":false,"pos":{"x":7.0158,"y":1.3505,"z":90.1487},"rot":{"x":0.0208,"y":269.9847,"z":0.0168}},"546840":{"lock":false,"pos":{"x":19.2682,"y":1.3428,"z":48.7453},"rot":{"x":0.0208,"y":269.9877,"z":0.0168}},"58e7ca":{"lock":false,"pos":{"x":19.2841,"y":1.3442,"z":53.3412},"rot":{"x":0.0208,"y":269.9878,"z":0.0168}},"5caade":{"lock":false,"pos":{"x":19.2841,"y":1.3509,"z":76.3412},"rot":{"x":0.0208,"y":269.988,"z":0.0168}},"5fc646":{"lock":false,"pos":{"x":15.6184,"y":1.3543,"z":92.4528},"rot":{"x":0.0208,"y":269.9841,"z":0.0168}},"6a63d1":{"lock":false,"pos":{"x":24.4394,"y":1.3562,"z":87.7904},"rot":{"x":0.0208,"y":269.9713,"z":0.0168}},"6dc20a":{"lock":false,"pos":{"x":7.0158,"y":1.3492,"z":85.5487},"rot":{"x":0.0208,"y":269.9685,"z":0.0168}},"70c61b":{"lock":false,"pos":{"x":10.5688,"y":1.3417,"z":55.6608},"rot":{"x":0.0208,"y":269.9846,"z":0.0168}},"740489":{"lock":false,"pos":{"x":19.2841,"y":1.3536,"z":85.5412},"rot":{"x":0.0208,"y":269.9877,"z":0.0168}},"75060e":{"lock":false,"pos":{"x":7.0158,"y":1.3512,"z":92.4487},"rot":{"x":0.0208,"y":269.9846,"z":0.0168}},"7665ef":{"lock":false,"pos":{"x":24.4394,"y":1.3555,"z":85.4904},"rot":{"x":0.0208,"y":269.9649,"z":0.0168}},"77923a":{"lock":false,"pos":{"x":10.5689,"y":1.3505,"z":85.5608},"rot":{"x":0.0208,"y":269.9787,"z":0.0168}},"789e68":{"lock":false,"pos":{"x":19.284,"y":1.3462,"z":60.2517},"rot":{"x":0.0208,"y":269.9807,"z":0.0168}},"7b666c":{"lock":false,"pos":{"x":19.2841,"y":1.3503,"z":74.0412},"rot":{"x":0.0208,"y":269.9875,"z":0.0168}},"7fe931":{"lock":false,"pos":{"x":19.2841,"y":1.3476,"z":64.8411},"rot":{"x":0.0208,"y":269.9883,"z":0.0168}},"8c51fe":{"lock":false,"pos":{"x":10.5689,"y":1.3525,"z":92.4607},"rot":{"x":0.0208,"y":269.9785,"z":0.0168}},"8e3919":{"lock":false,"pos":{"x":19.2841,"y":1.3523,"z":80.9412},"rot":{"x":0.0208,"y":269.9883,"z":0.0168}},"969df2":{"lock":false,"pos":{"x":19.284,"y":1.3449,"z":55.6412},"rot":{"x":0.0208,"y":269.9911,"z":0.0168}},"9923e4":{"lock":false,"pos":{"x":24.4394,"y":1.3568,"z":90.0904},"rot":{"x":0.0208,"y":269.9683,"z":0.0168}},"a13df3":{"lock":false,"pos":{"x":10.5689,"y":1.3464,"z":71.7607},"rot":{"x":0.0208,"y":269.9787,"z":0.0168}},"a7afe8":{"lock":false,"pos":{"x":10.5689,"y":1.3511,"z":87.8608},"rot":{"x":0.0208,"y":269.9783,"z":0.0168}},"ac9ed8":{"lock":false,"pos":{"x":10.5689,"y":1.3431,"z":60.2608},"rot":{"x":0.0208,"y":269.9786,"z":0.0168}},"acb267":{"lock":false,"pos":{"x":10.5689,"y":1.3444,"z":64.8607},"rot":{"x":0.0208,"y":269.9882,"z":0.0168}},"c7b43a":{"lock":false,"pos":{"x":19.2861,"y":1.3455,"z":57.941},"rot":{"x":0.0208,"y":269.9882,"z":0.0168}},"d954bb":{"lock":false,"pos":{"x":19.2841,"y":1.3543,"z":87.8412},"rot":{"x":0.0208,"y":269.9883,"z":0.0168}},"d9605a":{"lock":false,"pos":{"x":19.2841,"y":1.353,"z":83.2412},"rot":{"x":0.0208,"y":269.9875,"z":0.0168}},"e06830":{"lock":false,"pos":{"x":19.2841,"y":1.3556,"z":92.4412},"rot":{"x":0.0208,"y":269.9878,"z":0.0168}},"e095ba":{"lock":false,"pos":{"x":19.2683,"y":1.3435,"z":51.0517},"rot":{"x":0.0208,"y":269.9914,"z":0.0168}},"e29c22":{"lock":false,"pos":{"x":10.5689,"y":1.3491,"z":80.9607},"rot":{"x":0.0208,"y":269.9904,"z":0.0168}},"e306f1":{"lock":false,"pos":{"x":10.5689,"y":1.3498,"z":83.2607},"rot":{"x":0.0208,"y":269.9787,"z":0.0168}},"e4d33f":{"lock":false,"pos":{"x":10.5689,"y":1.3437,"z":62.5608},"rot":{"x":0.0208,"y":269.98,"z":0.0168}},"ebbf12":{"lock":false,"pos":{"x":19.2841,"y":1.355,"z":90.1413},"rot":{"x":0.0208,"y":269.9883,"z":0.0168}},"efb020":{"lock":false,"pos":{"x":24.4394,"y":1.3548,"z":83.1904},"rot":{"x":0.0208,"y":269.9711,"z":0.0168}},"fd5cfc":{"lock":false,"pos":{"x":19.2841,"y":1.3516,"z":78.6412},"rot":{"x":0.0208,"y":269.9909,"z":0.0168}}}}' +MaterialIndex: -1 +MeshIndex: -1 +Name: Custom_Model_Bag +Nickname: Seeker +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 32.94821 + posY: 1.65776467 + posZ: 71.03353 + rotX: 0.017717611 + rotY: 270.01825 + rotZ: 0.00724055432 + scaleX: 1.2 + scaleY: 1.2 + scaleZ: 1.2 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 75373e/Custom_Model_Bag Seeker 8ebc93/Card Anatomical Diagrams 5caade.yaml b/unpacked/Custom_Model_Bag Seeker 75373e/Custom_Model_Bag Seeker 8ebc93/Card Anatomical Diagrams 5caade.yaml new file mode 100644 index 000000000..75e198cb7 --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 75373e/Custom_Model_Bag Seeker 8ebc93/Card Anatomical Diagrams 5caade.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 230409 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 5caade +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Anatomical Diagrams +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.2840977 + posY: 1.35093224 + posZ: 76.3412247 + rotX: 0.0208116323 + rotY: 269.988 + rotZ: 0.0167635381 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 75373e/Custom_Model_Bag Seeker 8ebc93/Card Archaic Glyphs 481e4f.yaml b/unpacked/Custom_Model_Bag Seeker 75373e/Custom_Model_Bag Seeker 8ebc93/Card Archaic Glyphs 481e4f.yaml new file mode 100644 index 000000000..ae8665d4a --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 75373e/Custom_Model_Bag Seeker 8ebc93/Card Archaic Glyphs 481e4f.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 230420 +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 + UniqueBack: false +Description: Untranslated +GMNotes: '' +GUID: 481e4f +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Archaic Glyphs +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.568902 + posY: 1.35181236 + posZ: 90.1608 + rotX: 0.0208154 + rotY: 269.9786 + rotZ: 0.01676279 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 75373e/Custom_Model_Bag Seeker 8ebc93/Card Art Student acb267.yaml b/unpacked/Custom_Model_Bag Seeker 75373e/Custom_Model_Bag Seeker 8ebc93/Card Art Student acb267.yaml new file mode 100644 index 000000000..6d129d147 --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 75373e/Custom_Model_Bag Seeker 8ebc93/Card Art Student acb267.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 230428 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: acb267 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Art Student +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.5689 + posY: 1.34440672 + posZ: 64.8607 + rotX: 0.02081154 + rotY: 269.988159 + rotZ: 0.016765004 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 75373e/Custom_Model_Bag Seeker 8ebc93/Card Astounding Revelation e06830.yaml b/unpacked/Custom_Model_Bag Seeker 75373e/Custom_Model_Bag Seeker 8ebc93/Card Astounding Revelation e06830.yaml new file mode 100644 index 000000000..b60c56746 --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 75373e/Custom_Model_Bag Seeker 8ebc93/Card Astounding Revelation e06830.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 447825 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: e06830 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Astounding Revelation +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.2841 + posY: 1.35564482 + posZ: 92.4412 + rotX: 0.0208128169 + rotY: 269.9878 + rotZ: 0.016766211 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 75373e/Custom_Model_Bag Seeker 8ebc93/Card Barricade ebbf12.yaml b/unpacked/Custom_Model_Bag Seeker 75373e/Custom_Model_Bag Seeker 8ebc93/Card Barricade ebbf12.yaml new file mode 100644 index 000000000..7d5c89ec4 --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 75373e/Custom_Model_Bag Seeker 8ebc93/Card Barricade ebbf12.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 230404 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: ebbf12 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Barricade +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.2841 + posY: 1.35497165 + posZ: 90.1413 + rotX: 0.0208125934 + rotY: 269.988251 + rotZ: 0.0167665742 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 75373e/Custom_Model_Bag Seeker 8ebc93/Card Charles Ross, Esq. e4d33f.yaml b/unpacked/Custom_Model_Bag Seeker 75373e/Custom_Model_Bag Seeker 8ebc93/Card Charles Ross, Esq. e4d33f.yaml new file mode 100644 index 000000000..22aa4cbef --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 75373e/Custom_Model_Bag Seeker 8ebc93/Card Charles Ross, Esq. e4d33f.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 230430 +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 + UniqueBack: false +Description: Acquisitions and Solicitation +GMNotes: '' +GUID: e4d33f +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Charles Ross, Esq. +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.568902 + posY: 1.34373331 + posZ: 62.5608 + rotX: 0.0208149031 + rotY: 269.980042 + rotZ: 0.0167634338 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 75373e/Custom_Model_Bag Seeker 8ebc93/Card Connect the Dots 5fc646.yaml b/unpacked/Custom_Model_Bag Seeker 75373e/Custom_Model_Bag Seeker 8ebc93/Card Connect the Dots 5fc646.yaml new file mode 100644 index 000000000..c43c645c6 --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 75373e/Custom_Model_Bag Seeker 8ebc93/Card Connect the Dots 5fc646.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 279409 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2794': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025943833/DE98A03934DF8FF5B3CF6C53143B15BFC3ED7341/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 5fc646 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Connect the Dots +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 15.6183987 + posY: 1.35431707 + posZ: 92.4528046 + rotX: 0.02081291 + rotY: 269.9841 + rotZ: 0.0167626236 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 75373e/Custom_Model_Bag Seeker 8ebc93/Card Crack the Case d954bb.yaml b/unpacked/Custom_Model_Bag Seeker 75373e/Custom_Model_Bag Seeker 8ebc93/Card Crack the Case d954bb.yaml new file mode 100644 index 000000000..b60b97d64 --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 75373e/Custom_Model_Bag Seeker 8ebc93/Card Crack the Case d954bb.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: d954bb +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Crack the Case +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.2841 + posY: 1.35429835 + posZ: 87.8412 + rotX: 0.02081268 + rotY: 269.988251 + rotZ: 0.0167664662 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 75373e/Custom_Model_Bag Seeker 8ebc93/Card Curiosity 260032.yaml b/unpacked/Custom_Model_Bag Seeker 75373e/Custom_Model_Bag Seeker 8ebc93/Card Curiosity 260032.yaml new file mode 100644 index 000000000..eb1e2e390 --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 75373e/Custom_Model_Bag Seeker 8ebc93/Card Curiosity 260032.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 279308 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2793': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025943833/DE98A03934DF8FF5B3CF6C53143B15BFC3ED7341/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: '260032' +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Curiosity +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 24.4394 + posY: 1.35750222 + posZ: 92.3904 + rotX: 0.0208175089 + rotY: 269.9713 + rotZ: 0.0167603642 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 75373e/Custom_Model_Bag Seeker 8ebc93/Card Deduction 7665ef.yaml b/unpacked/Custom_Model_Bag Seeker 75373e/Custom_Model_Bag Seeker 8ebc93/Card Deduction 7665ef.yaml new file mode 100644 index 000000000..57c9ec8d5 --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 75373e/Custom_Model_Bag Seeker 8ebc93/Card Deduction 7665ef.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 7665ef +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Deduction +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 24.4394 + posY: 1.35548258 + posZ: 85.4904 + rotX: 0.0208192281 + rotY: 269.964874 + rotZ: 0.0167577378 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 75373e/Custom_Model_Bag Seeker 8ebc93/Card Dr. Elli Horowitz 41ae5f.yaml b/unpacked/Custom_Model_Bag Seeker 75373e/Custom_Model_Bag Seeker 8ebc93/Card Dr. Elli Horowitz 41ae5f.yaml new file mode 100644 index 000000000..9a3450b56 --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 75373e/Custom_Model_Bag Seeker 8ebc93/Card Dr. Elli Horowitz 41ae5f.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 230433 +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 + UniqueBack: false +Description: Assistant Curator +GMNotes: '' +GUID: 41ae5f +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Dr. Elli Horowitz +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.5689 + posY: 1.34104049 + posZ: 53.3608 + rotX: 0.020813765 + rotY: 269.98468 + rotZ: 0.0167642888 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 75373e/Custom_Model_Bag Seeker 8ebc93/Card Dr. Milian Christopher 4002c9.yaml b/unpacked/Custom_Model_Bag Seeker 75373e/Custom_Model_Bag Seeker 8ebc93/Card Dr. Milian Christopher 4002c9.yaml new file mode 100644 index 000000000..cc97996f3 --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 75373e/Custom_Model_Bag Seeker 8ebc93/Card Dr. Milian Christopher 4002c9.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 230434 +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 + UniqueBack: false +Description: Professor of Entomology +GMNotes: '' +GUID: 4002c9 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Dr. Milian Christopher +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 7.0158 + posY: 1.34984517 + posZ: 87.8487 + rotX: 0.0208135173 + rotY: 269.984619 + rotZ: 0.0167652722 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 75373e/Custom_Model_Bag Seeker 8ebc93/Card Dr. William T. Maleson 4246e8.yaml b/unpacked/Custom_Model_Bag Seeker 75373e/Custom_Model_Bag Seeker 8ebc93/Card Dr. William T. Maleson 4246e8.yaml new file mode 100644 index 000000000..84dd68019 --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 75373e/Custom_Model_Bag Seeker 8ebc93/Card Dr. William T. Maleson 4246e8.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 230423 +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 + UniqueBack: false +Description: Working on Something Big +GMNotes: '' +GUID: 4246e8 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Dr. William T. Maleson +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.568902 + posY: 1.34844613 + posZ: 78.6607 + rotX: 0.0208155252 + rotY: 269.9786 + rotZ: 0.0167629234 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 75373e/Custom_Model_Bag Seeker 8ebc93/Card Dream Diary e29c22.yaml b/unpacked/Custom_Model_Bag Seeker 75373e/Custom_Model_Bag Seeker 8ebc93/Card Dream Diary e29c22.yaml new file mode 100644 index 000000000..2abe4fee0 --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 75373e/Custom_Model_Bag Seeker 8ebc93/Card Dream Diary e29c22.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Untranslated +GMNotes: '' +GUID: e29c22 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Dream Diary +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.5689058 + posY: 1.34911954 + posZ: 80.9607 + rotX: 0.0208111089 + rotY: 269.990356 + rotZ: 0.0167645942 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 75373e/Custom_Model_Bag Seeker 8ebc93/Card Dream-Enhancing Serum 47b31a.yaml b/unpacked/Custom_Model_Bag Seeker 75373e/Custom_Model_Bag Seeker 8ebc93/Card Dream-Enhancing Serum 47b31a.yaml new file mode 100644 index 000000000..e25c8a72a --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 75373e/Custom_Model_Bag Seeker 8ebc93/Card Dream-Enhancing Serum 47b31a.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 47b31a +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Dream-Enhancing Serum +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.5529022 + posY: 1.33968925 + posZ: 48.764 + rotX: 0.0208161771 + rotY: 269.977173 + rotZ: 0.0167623181 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 75373e/Custom_Model_Bag Seeker 8ebc93/Card Eureka! 9923e4.yaml b/unpacked/Custom_Model_Bag Seeker 75373e/Custom_Model_Bag Seeker 8ebc93/Card Eureka! 9923e4.yaml new file mode 100644 index 000000000..c57b5fcfe --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 75373e/Custom_Model_Bag Seeker 8ebc93/Card Eureka! 9923e4.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 230400 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 9923e4 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Eureka! +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 24.4394 + posY: 1.356829 + posZ: 90.0904 + rotX: 0.0208185539 + rotY: 269.968262 + rotZ: 0.016759336 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 75373e/Custom_Model_Bag Seeker 8ebc93/Card Fieldwork ac9ed8.yaml b/unpacked/Custom_Model_Bag Seeker 75373e/Custom_Model_Bag Seeker 8ebc93/Card Fieldwork ac9ed8.yaml new file mode 100644 index 000000000..7fe75a640 --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 75373e/Custom_Model_Bag Seeker 8ebc93/Card Fieldwork ac9ed8.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 230429 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: ac9ed8 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Fieldwork +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.5688982 + posY: 1.34306026 + posZ: 60.2608 + rotX: 0.0208155122 + rotY: 269.9786 + rotZ: 0.01676291 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 75373e/Custom_Model_Bag Seeker 8ebc93/Card Fingerprint Kit 6dc20a.yaml b/unpacked/Custom_Model_Bag Seeker 75373e/Custom_Model_Bag Seeker 8ebc93/Card Fingerprint Kit 6dc20a.yaml new file mode 100644 index 000000000..b06b96a7f --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 75373e/Custom_Model_Bag Seeker 8ebc93/Card Fingerprint Kit 6dc20a.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 6dc20a +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Fingerprint Kit +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 7.015798 + posY: 1.349172 + posZ: 85.5487 + rotX: 0.0208181683 + rotY: 269.968475 + rotZ: 0.0167591088 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 75373e/Custom_Model_Bag Seeker 8ebc93/Card Ghastly Revelation 740489.yaml b/unpacked/Custom_Model_Bag Seeker 75373e/Custom_Model_Bag Seeker 8ebc93/Card Ghastly Revelation 740489.yaml new file mode 100644 index 000000000..bdab52162 --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 75373e/Custom_Model_Bag Seeker 8ebc93/Card Ghastly Revelation 740489.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: '740489' +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Ghastly Revelation +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.2841 + posY: 1.3536253 + posZ: 85.5412 + rotX: 0.0208112169 + rotY: 269.987671 + rotZ: 0.0167639423 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 75373e/Custom_Model_Bag Seeker 8ebc93/Card Grisly Totem 70c61b.yaml b/unpacked/Custom_Model_Bag Seeker 75373e/Custom_Model_Bag Seeker 8ebc93/Card Grisly Totem 70c61b.yaml new file mode 100644 index 000000000..367624a05 --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 75373e/Custom_Model_Bag Seeker 8ebc93/Card Grisly Totem 70c61b.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 70c61b +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Grisly Totem +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.5688019 + posY: 1.34171379 + posZ: 55.6608 + rotX: 0.0208136775 + rotY: 269.98465 + rotZ: 0.016765194 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 75373e/Custom_Model_Bag Seeker 8ebc93/Card Guidance fd5cfc.yaml b/unpacked/Custom_Model_Bag Seeker 75373e/Custom_Model_Bag Seeker 8ebc93/Card Guidance fd5cfc.yaml new file mode 100644 index 000000000..f0bb0ca49 --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 75373e/Custom_Model_Bag Seeker 8ebc93/Card Guidance fd5cfc.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 230406 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: fd5cfc +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Guidance +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.2841 + posY: 1.35160542 + posZ: 78.6412 + rotX: 0.0208121445 + rotY: 269.990936 + rotZ: 0.016767364 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 75373e/Custom_Model_Bag Seeker 8ebc93/Card Hawk-Eye Folding Camera 4407a2.yaml b/unpacked/Custom_Model_Bag Seeker 75373e/Custom_Model_Bag Seeker 8ebc93/Card Hawk-Eye Folding Camera 4407a2.yaml new file mode 100644 index 000000000..dec0decc0 --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 75373e/Custom_Model_Bag Seeker 8ebc93/Card Hawk-Eye Folding Camera 4407a2.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 4407a2 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Hawk-Eye Folding Camera +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.5688992 + posY: 1.347773 + posZ: 76.3607 + rotX: 0.0208140872 + rotY: 269.9788 + rotZ: 0.0167607218 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 75373e/Custom_Model_Bag Seeker 8ebc93/Card Hyperawareness 085253.yaml b/unpacked/Custom_Model_Bag Seeker 75373e/Custom_Model_Bag Seeker 8ebc93/Card Hyperawareness 085253.yaml new file mode 100644 index 000000000..688760f75 --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 75373e/Custom_Model_Bag Seeker 8ebc93/Card Hyperawareness 085253.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 085253 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Hyperawareness +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.568902 + posY: 1.34709978 + posZ: 74.0607 + rotX: 0.0208156332 + rotY: 269.978424 + rotZ: 0.01676287 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 75373e/Custom_Model_Bag Seeker 8ebc93/Card I've got a plan! 546840.yaml b/unpacked/Custom_Model_Bag Seeker 75373e/Custom_Model_Bag Seeker 8ebc93/Card I've got a plan! 546840.yaml new file mode 100644 index 000000000..5107ebbfd --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 75373e/Custom_Model_Bag Seeker 8ebc93/Card I've got a plan! 546840.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 230418 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: '546840' +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '"I''ve got a plan!"' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.2681713 + posY: 1.34284878 + posZ: 48.7452965 + rotX: 0.0208129864 + rotY: 269.987732 + rotZ: 0.0167642664 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 75373e/Custom_Model_Bag Seeker 8ebc93/Card Inquiring Mind 6a63d1.yaml b/unpacked/Custom_Model_Bag Seeker 75373e/Custom_Model_Bag Seeker 8ebc93/Card Inquiring Mind 6a63d1.yaml new file mode 100644 index 000000000..ba1a047bb --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 75373e/Custom_Model_Bag Seeker 8ebc93/Card Inquiring Mind 6a63d1.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 230401 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 6a63d1 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Inquiring Mind +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 24.4394 + posY: 1.35615587 + posZ: 87.7904 + rotX: 0.0208174475 + rotY: 269.971344 + rotZ: 0.0167602636 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 75373e/Custom_Model_Bag Seeker 8ebc93/Card Knowledge is Power d9605a.yaml b/unpacked/Custom_Model_Bag Seeker 75373e/Custom_Model_Bag Seeker 8ebc93/Card Knowledge is Power d9605a.yaml new file mode 100644 index 000000000..a9d00b0cb --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 75373e/Custom_Model_Bag Seeker 8ebc93/Card Knowledge is Power d9605a.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: d9605a +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Knowledge is Power +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.2841 + posY: 1.352952 + posZ: 83.2412 + rotX: 0.0208129715 + rotY: 269.987457 + rotZ: 0.016765995 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 75373e/Custom_Model_Bag Seeker 8ebc93/Card Laboratory Assistant 13c10e.yaml b/unpacked/Custom_Model_Bag Seeker 75373e/Custom_Model_Bag Seeker 8ebc93/Card Laboratory Assistant 13c10e.yaml new file mode 100644 index 000000000..f0d11d169 --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 75373e/Custom_Model_Bag Seeker 8ebc93/Card Laboratory Assistant 13c10e.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 230427 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 13c10e +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Laboratory Assistant +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.5688982 + posY: 1.34508 + posZ: 67.1607 + rotX: 0.0208157413 + rotY: 269.9787 + rotZ: 0.0167627335 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 75373e/Custom_Model_Bag Seeker 8ebc93/Card Logical Reasoning 1cda28.yaml b/unpacked/Custom_Model_Bag Seeker 75373e/Custom_Model_Bag Seeker 8ebc93/Card Logical Reasoning 1cda28.yaml new file mode 100644 index 000000000..ec2838479 --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 75373e/Custom_Model_Bag Seeker 8ebc93/Card Logical Reasoning 1cda28.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 230417 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 1cda28 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Logical Reasoning +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.2840977 + posY: 1.34689271 + posZ: 62.54119 + rotX: 0.0208148547 + rotY: 269.981018 + rotZ: 0.01676303 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 75373e/Custom_Model_Bag Seeker 8ebc93/Card Magnifying Glass a7afe8.yaml b/unpacked/Custom_Model_Bag Seeker 75373e/Custom_Model_Bag Seeker 8ebc93/Card Magnifying Glass a7afe8.yaml new file mode 100644 index 000000000..68cca5343 --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 75373e/Custom_Model_Bag Seeker 8ebc93/Card Magnifying Glass a7afe8.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: a7afe8 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Magnifying Glass +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.5688934 + posY: 1.35113919 + posZ: 87.8607941 + rotX: 0.0208177976 + rotY: 269.9783 + rotZ: 0.0167644229 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 75373e/Custom_Model_Bag Seeker 8ebc93/Card Medical Texts a13df3.yaml b/unpacked/Custom_Model_Bag Seeker 75373e/Custom_Model_Bag Seeker 8ebc93/Card Medical Texts a13df3.yaml new file mode 100644 index 000000000..5515e62e6 --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 75373e/Custom_Model_Bag Seeker 8ebc93/Card Medical Texts a13df3.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 230425 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: a13df3 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Medical Texts +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.5688982 + posY: 1.34642637 + posZ: 71.7607 + rotX: 0.0208152756 + rotY: 269.9787 + rotZ: 0.0167629011 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 75373e/Custom_Model_Bag Seeker 8ebc93/Card Mind over Matter 7b666c.yaml b/unpacked/Custom_Model_Bag Seeker 75373e/Custom_Model_Bag Seeker 8ebc93/Card Mind over Matter 7b666c.yaml new file mode 100644 index 000000000..6fffd799d --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 75373e/Custom_Model_Bag Seeker 8ebc93/Card Mind over Matter 7b666c.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 230408 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 7b666c +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Mind over Matter +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.28411 + posY: 1.35025907 + posZ: 74.04124 + rotX: 0.0208121631 + rotY: 269.987518 + rotZ: 0.0167634673 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 75373e/Custom_Model_Bag Seeker 8ebc93/Card Mr. Rook 09c43a.yaml b/unpacked/Custom_Model_Bag Seeker 75373e/Custom_Model_Bag Seeker 8ebc93/Card Mr. Rook 09c43a.yaml new file mode 100644 index 000000000..e3e6f549f --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 75373e/Custom_Model_Bag Seeker 8ebc93/Card Mr. Rook 09c43a.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 09c43a +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Mr. "Rook" +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.5530977 + posY: 1.34036458 + posZ: 51.0713 + rotX: 0.02081393 + rotY: 269.98468 + rotZ: 0.0167650115 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 75373e/Custom_Model_Bag Seeker 8ebc93/Card No Stone Unturned 789e68.yaml b/unpacked/Custom_Model_Bag Seeker 75373e/Custom_Model_Bag Seeker 8ebc93/Card No Stone Unturned 789e68.yaml new file mode 100644 index 000000000..05dfb7e0a --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 75373e/Custom_Model_Bag Seeker 8ebc93/Card No Stone Unturned 789e68.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 230415 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 789e68 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: No Stone Unturned +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.28404 + posY: 1.34622264 + posZ: 60.25173 + rotX: 0.02081524 + rotY: 269.980743 + rotZ: 0.0167643353 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 75373e/Custom_Model_Bag Seeker 8ebc93/Card Occult Lexicon 0b358b.yaml b/unpacked/Custom_Model_Bag Seeker 75373e/Custom_Model_Bag Seeker 8ebc93/Card Occult Lexicon 0b358b.yaml new file mode 100644 index 000000000..fb13d5f00 --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 75373e/Custom_Model_Bag Seeker 8ebc93/Card Occult Lexicon 0b358b.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 0b358b +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Occult Lexicon +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.5709019 + posY: 1.34238768 + posZ: 57.9606 + rotX: 0.0208156854 + rotY: 269.9789 + rotZ: 0.0167631153 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 75373e/Custom_Model_Bag Seeker 8ebc93/Card Old Book of Lore 75060e.yaml b/unpacked/Custom_Model_Bag Seeker 75373e/Custom_Model_Bag Seeker 8ebc93/Card Old Book of Lore 75060e.yaml new file mode 100644 index 000000000..cd8ba9f37 --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 75373e/Custom_Model_Bag Seeker 8ebc93/Card Old Book of Lore 75060e.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 230431 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 75060e +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Old Book of Lore +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 7.015802 + posY: 1.35119176 + posZ: 92.4487 + rotX: 0.02081401 + rotY: 269.984619 + rotZ: 0.0167652 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 75373e/Custom_Model_Bag Seeker 8ebc93/Card Persuasion c7b43a.yaml b/unpacked/Custom_Model_Bag Seeker 75373e/Custom_Model_Bag Seeker 8ebc93/Card Persuasion c7b43a.yaml new file mode 100644 index 000000000..e7e0d3b19 --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 75373e/Custom_Model_Bag Seeker 8ebc93/Card Persuasion c7b43a.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: c7b43a +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Persuasion +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.2861385 + posY: 1.34554684 + posZ: 57.94097 + rotX: 0.0208134037 + rotY: 269.9882 + rotZ: 0.0167667456 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 75373e/Custom_Model_Bag Seeker 8ebc93/Card Practice Makes Perfect 1ac667.yaml b/unpacked/Custom_Model_Bag Seeker 75373e/Custom_Model_Bag Seeker 8ebc93/Card Practice Makes Perfect 1ac667.yaml new file mode 100644 index 000000000..f8817fa0a --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 75373e/Custom_Model_Bag Seeker 8ebc93/Card Practice Makes Perfect 1ac667.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Gambit. Tactic. +GMNotes: '' +GUID: 1ac667 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Practice Makes Perfect +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.2841053 + posY: 1.34958577 + posZ: 71.74123 + rotX: 0.0208062865 + rotY: 270.010681 + rotZ: 0.016775839 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 75373e/Custom_Model_Bag Seeker 8ebc93/Card Preposterous Sketches 969df2.yaml b/unpacked/Custom_Model_Bag Seeker 75373e/Custom_Model_Bag Seeker 8ebc93/Card Preposterous Sketches 969df2.yaml new file mode 100644 index 000000000..b7e5d0bac --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 75373e/Custom_Model_Bag Seeker 8ebc93/Card Preposterous Sketches 969df2.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 230416 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 969df2 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Preposterous Sketches +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.28401 + posY: 1.344873 + posZ: 55.6411972 + rotX: 0.020812273 + rotY: 269.99115 + rotZ: 0.0167680476 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 75373e/Custom_Model_Bag Seeker 8ebc93/Card Research Librarian 3b40c2.yaml b/unpacked/Custom_Model_Bag Seeker 75373e/Custom_Model_Bag Seeker 8ebc93/Card Research Librarian 3b40c2.yaml new file mode 100644 index 000000000..f292f57d1 --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 75373e/Custom_Model_Bag Seeker 8ebc93/Card Research Librarian 3b40c2.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 230426 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 3b40c2 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Research Librarian +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.568902 + posY: 1.34575319 + posZ: 69.4607 + rotX: 0.0208153762 + rotY: 269.978638 + rotZ: 0.01676253 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 75373e/Custom_Model_Bag Seeker 8ebc93/Card Scroll of Secrets 77923a.yaml b/unpacked/Custom_Model_Bag Seeker 75373e/Custom_Model_Bag Seeker 8ebc93/Card Scroll of Secrets 77923a.yaml new file mode 100644 index 000000000..db385a967 --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 75373e/Custom_Model_Bag Seeker 8ebc93/Card Scroll of Secrets 77923a.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 77923a +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Scroll of Secrets +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.5688982 + posY: 1.350466 + posZ: 85.5608 + rotX: 0.0208156053 + rotY: 269.978668 + rotZ: 0.0167630985 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 75373e/Custom_Model_Bag Seeker 8ebc93/Card Seeking Answers 36f1d1.yaml b/unpacked/Custom_Model_Bag Seeker 75373e/Custom_Model_Bag Seeker 8ebc93/Card Seeking Answers 36f1d1.yaml new file mode 100644 index 000000000..8a1a55daf --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 75373e/Custom_Model_Bag Seeker 8ebc93/Card Seeking Answers 36f1d1.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 230407 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 36f1d1 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Seeking Answers +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.2841015 + posY: 1.34891248 + posZ: 69.44122 + rotX: 0.0208116863 + rotY: 269.990845 + rotZ: 0.0167671312 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 75373e/Custom_Model_Bag Seeker 8ebc93/Card Shortcut 8e3919.yaml b/unpacked/Custom_Model_Bag Seeker 75373e/Custom_Model_Bag Seeker 8ebc93/Card Shortcut 8e3919.yaml new file mode 100644 index 000000000..13b31b805 --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 75373e/Custom_Model_Bag Seeker 8ebc93/Card Shortcut 8e3919.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 8e3919 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Shortcut +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.2841 + posY: 1.35227859 + posZ: 80.9412 + rotX: 0.02081284 + rotY: 269.988281 + rotZ: 0.01676632 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 75373e/Custom_Model_Bag Seeker 8ebc93/Card Shrewd Analysis 8c51fe.yaml b/unpacked/Custom_Model_Bag Seeker 75373e/Custom_Model_Bag Seeker 8ebc93/Card Shrewd Analysis 8c51fe.yaml new file mode 100644 index 000000000..0fd9ce7fd --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 75373e/Custom_Model_Bag Seeker 8ebc93/Card Shrewd Analysis 8c51fe.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 230419 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 8c51fe +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Shrewd Analysis +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.568902 + posY: 1.35248566 + posZ: 92.4607 + rotX: 0.020815257 + rotY: 269.978516 + rotZ: 0.01676283 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 75373e/Custom_Model_Bag Seeker 8ebc93/Card Strange Solution e306f1.yaml b/unpacked/Custom_Model_Bag Seeker 75373e/Custom_Model_Bag Seeker 8ebc93/Card Strange Solution e306f1.yaml new file mode 100644 index 000000000..c3c1a9d2c --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 75373e/Custom_Model_Bag Seeker 8ebc93/Card Strange Solution e306f1.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 230422 +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 + UniqueBack: false +Description: Unidentified +GMNotes: '' +GUID: e306f1 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Strange Solution +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.568902 + posY: 1.34979272 + posZ: 83.2607 + rotX: 0.0208155457 + rotY: 269.9787 + rotZ: 0.0167630371 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 75373e/Custom_Model_Bag Seeker 8ebc93/Card Tooth of Eztli 521086.yaml b/unpacked/Custom_Model_Bag Seeker 75373e/Custom_Model_Bag Seeker 8ebc93/Card Tooth of Eztli 521086.yaml new file mode 100644 index 000000000..b35878f5d --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 75373e/Custom_Model_Bag Seeker 8ebc93/Card Tooth of Eztli 521086.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 230432 +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 + UniqueBack: false +Description: Mortal Reminder +GMNotes: '' +GUID: '521086' +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Tooth of Eztli +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 7.015802 + posY: 1.35051847 + posZ: 90.1487 + rotX: 0.02081343 + rotY: 269.98468 + rotZ: 0.0167652611 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 75373e/Custom_Model_Bag Seeker 8ebc93/Card True Understanding efb020.yaml b/unpacked/Custom_Model_Bag Seeker 75373e/Custom_Model_Bag Seeker 8ebc93/Card True Understanding efb020.yaml new file mode 100644 index 000000000..4a086fbf9 --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 75373e/Custom_Model_Bag Seeker 8ebc93/Card True Understanding efb020.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: efb020 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: True Understanding +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 24.4394 + posY: 1.35480928 + posZ: 83.1904 + rotX: 0.0208174344 + rotY: 269.9711 + rotZ: 0.0167603083 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 75373e/Custom_Model_Bag Seeker 8ebc93/Card Truth from Fiction 58e7ca.yaml b/unpacked/Custom_Model_Bag Seeker 75373e/Custom_Model_Bag Seeker 8ebc93/Card Truth from Fiction 58e7ca.yaml new file mode 100644 index 000000000..f12c3401f --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 75373e/Custom_Model_Bag Seeker 8ebc93/Card Truth from Fiction 58e7ca.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 230412 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 58e7ca +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Truth from Fiction +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.28415 + posY: 1.34419978 + posZ: 53.3411827 + rotX: 0.02081418 + rotY: 269.987762 + rotZ: 0.0167664457 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 75373e/Custom_Model_Bag Seeker 8ebc93/Card Unearth the Ancients 51fe45.yaml b/unpacked/Custom_Model_Bag Seeker 75373e/Custom_Model_Bag Seeker 8ebc93/Card Unearth the Ancients 51fe45.yaml new file mode 100644 index 000000000..24c25d9dd --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 75373e/Custom_Model_Bag Seeker 8ebc93/Card Unearth the Ancients 51fe45.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 230410 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 51fe45 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Unearth the Ancients +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.28411 + posY: 1.34823918 + posZ: 67.14111 + rotX: 0.0208128653 + rotY: 269.9882 + rotZ: 0.0167645868 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 75373e/Custom_Model_Bag Seeker 8ebc93/Card Vantage Point 7fe931.yaml b/unpacked/Custom_Model_Bag Seeker 75373e/Custom_Model_Bag Seeker 8ebc93/Card Vantage Point 7fe931.yaml new file mode 100644 index 000000000..be1fcc55e --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 75373e/Custom_Model_Bag Seeker 8ebc93/Card Vantage Point 7fe931.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 230411 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 7fe931 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Vantage Point +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.2841053 + posY: 1.347566 + posZ: 64.8411 + rotX: 0.0208128057 + rotY: 269.988251 + rotZ: 0.0167643335 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker 75373e/Custom_Model_Bag Seeker 8ebc93/Card Working a Hunch e095ba.yaml b/unpacked/Custom_Model_Bag Seeker 75373e/Custom_Model_Bag Seeker 8ebc93/Card Working a Hunch e095ba.yaml new file mode 100644 index 000000000..454ab2f45 --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker 75373e/Custom_Model_Bag Seeker 8ebc93/Card Working a Hunch e095ba.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 230413 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: e095ba +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Working a Hunch +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.2683277 + posY: 1.34352386 + posZ: 51.0517426 + rotX: 0.0208132789 + rotY: 269.9914 + rotZ: 0.01676774 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker cb4f32.ttslua b/unpacked/Custom_Model_Bag Seeker cb4f32.ttslua new file mode 100644 index 000000000..857093fb8 --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker cb4f32.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,0,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 + 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=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,0,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,0,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,0,0}, height=350, width=750, + 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}, rotation={0,0,0}, height=350, width=800, + font_size=250, color={0,0,0}, font_color={1,1,1} + }) +-- self.createButton({ +-- label="Setup", click_function="buttonClick_setup", function_owner=self, +-- position={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.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 \ No newline at end of file diff --git a/unpacked/Custom_Model_Bag Seeker cb4f32.yaml b/unpacked/Custom_Model_Bag Seeker cb4f32.yaml new file mode 100644 index 000000000..562e4b6dd --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker cb4f32.yaml @@ -0,0 +1,104 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +ContainedObjects: +- !include 'Custom_Model_Bag Seeker cb4f32/Card Surprising Find (1) 0d3d1a.yaml' +- !include 'Custom_Model_Bag Seeker cb4f32/Card Deduction (2) e0721f.yaml' +- !include 'Custom_Model_Bag Seeker cb4f32/Card The Eye of Truth (5) 552689.yaml' +- !include 'Custom_Model_Bag Seeker cb4f32/Card Preposterous Sketches (2) 15a1bb.yaml' +- !include 'Custom_Model_Bag Seeker cb4f32/Card Forewarned (1) f22453.yaml' +- !include 'Custom_Model_Bag Seeker cb4f32/Card Expose Weakness (1) 97ed44.yaml' +- !include 'Custom_Model_Bag Seeker cb4f32/Card Shortcut (2) 404410.yaml' +- !include 'Custom_Model_Bag Seeker cb4f32/Card Eidetic Memory (3) 423ea2.yaml' +- !include 'Custom_Model_Bag Seeker cb4f32/Card Expose Weakness (3) d391c7.yaml' +- !include 'Custom_Model_Bag Seeker cb4f32/Card Barricade (3) 3469e0.yaml' +- !include 'Custom_Model_Bag Seeker cb4f32/Card Cryptic Research (4) 791d5f.yaml' +- !include 'Custom_Model_Bag Seeker cb4f32/Card Logical Reasoning (4) 6f6976.yaml' +- !include 'Custom_Model_Bag Seeker cb4f32/Card No Stone Unturned (5) a641de.yaml' +- !include 'Custom_Model_Bag Seeker cb4f32/Card Deciphered Reality (5) b98ff6.yaml' +- !include 'Custom_Model_Bag Seeker cb4f32/Card Glimpse the Unthinkable (5) bdbca5.yaml' +- !include 'Custom_Model_Bag Seeker cb4f32/Card Extensive Research (1) e07aab.yaml' +- !include "Custom_Model_Bag Seeker cb4f32/Card Death \u2022 XIII (1) add7c9.yaml" +- !include 'Custom_Model_Bag Seeker cb4f32/Card Dream Diary (3) dde850.yaml' +- !include 'Custom_Model_Bag Seeker cb4f32/Card Dream Diary (3) e87c2d.yaml' +- !include 'Custom_Model_Bag Seeker cb4f32/Card Esoteric Atlas (1) e50ca0.yaml' +- !include 'Custom_Model_Bag Seeker cb4f32/Card Magnifying Glass (1) 8343e5.yaml' +- !include 'Custom_Model_Bag Seeker cb4f32/Card Dream Diary (3) f86ed0.yaml' +- !include 'Custom_Model_Bag Seeker cb4f32/Card Feed the Mind (3) 659f2d.yaml' +- !include 'Custom_Model_Bag Seeker cb4f32/Card Scientific Theory (1) 8cdfc7.yaml' +- !include 'Custom_Model_Bag Seeker cb4f32/Card Ancient Stone (1) 8b1863.yaml' +- !include 'Custom_Model_Bag Seeker cb4f32/Card Old Book of Lore (3) 0d88ac.yaml' +- !include 'Custom_Model_Bag Seeker cb4f32/Card Grisly Totem (3) b722cd.yaml' +- !include 'Custom_Model_Bag Seeker cb4f32/Card Segment of Onyx (1) bc498d.yaml' +- !include 'Custom_Model_Bag Seeker cb4f32/Card In the Know (1) 488fab.yaml' +- !include 'Custom_Model_Bag Seeker cb4f32/Card Abigail Foreman (4) b63277.yaml' +- !include 'Custom_Model_Bag Seeker cb4f32/Card Strange Solution (4) ebf4c0.yaml' +- !include 'Custom_Model_Bag Seeker cb4f32/Card Pathfinder (1) 683123.yaml' +- !include 'Custom_Model_Bag Seeker cb4f32/Card Hyperawareness (2) e4ceae.yaml' +- !include 'Custom_Model_Bag Seeker cb4f32/Card Strange Solution (4) 53eaa9.yaml' +- !include 'Custom_Model_Bag Seeker cb4f32/Card Strange Solution (4) 5bdc77.yaml' +- !include 'Custom_Model_Bag Seeker cb4f32/Card Quick Study (2) 26d70e.yaml' +- !include 'Custom_Model_Bag Seeker cb4f32/Card Encyclopedia (2) d86b0d.yaml' +- !include 'Custom_Model_Bag Seeker cb4f32/Card Strange Solution (4) c8716d.yaml' +- !include 'Custom_Model_Bag Seeker cb4f32/Card Ancient Stone (4) 96ec75.yaml' +- !include 'Custom_Model_Bag Seeker cb4f32/Card Otherworldly Compass (2) 562c05.yaml' +- !include 'Custom_Model_Bag Seeker cb4f32/Card Disc of Itzamna (2) 117137.yaml' +- !include 'Custom_Model_Bag Seeker cb4f32/Card Ancient Stone (4) bc868c.yaml' +- !include 'Custom_Model_Bag Seeker cb4f32/Card Arcane Insight (4) 6fab5a.yaml' +- !include 'Custom_Model_Bag Seeker cb4f32/Card Otherworld Codex (2) 5f8011.yaml' +- !include 'Custom_Model_Bag Seeker cb4f32/Card Higher Education (3) 0d3413.yaml' +- !include 'Custom_Model_Bag Seeker cb4f32/Card Pnakotic Manuscripts (5) 300569.yaml' +- !include 'Custom_Model_Bag Seeker cb4f32/Card Studious (3) 384258.yaml' +- !include 'Custom_Model_Bag Seeker cb4f32/Card Scroll of Secrets (3) cffeb0.yaml' +- !include 'Custom_Model_Bag Seeker cb4f32/Card Archaic Glyphs (3) ef2ecd.yaml' +- !include 'Custom_Model_Bag Seeker cb4f32/Card Archaic Glyphs (3) 3c0d81.yaml' +- !include 'Custom_Model_Bag Seeker cb4f32/Card Archaic Glyphs (3) fc5406.yaml' +- !include 'Custom_Model_Bag Seeker cb4f32/Custom_Model_Bag Seeker 3afb92.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/952965722516265983/F50A6212D30C442429ED22B8CC8FD24D4CB76A2A/ + MaterialIndex: 3 + MeshURL: https://pastebin.com/raw/ALrYhQGb + NormalURL: '' + TypeIndex: 6 +Description: '' +GMNotes: '' +GUID: cb4f32 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: true +LuaScript: !include 'Custom_Model_Bag Seeker cb4f32.ttslua' +LuaScriptState: '{"ml":{"0d3413":{"lock":false,"pos":{"x":44.229,"y":1.3549,"z":-79.6007},"rot":{"x":0.0208,"y":269.9998,"z":0.0168}},"0d3d1a":{"lock":false,"pos":{"x":58.0997,"y":1.3694,"z":-47.471},"rot":{"x":0.0208,"y":269.9956,"z":0.0168}},"0d88ac":{"lock":false,"pos":{"x":40.6909,"y":1.3604,"z":-56.613},"rot":{"x":0.0208,"y":269.9716,"z":0.0168}},"117137":{"lock":false,"pos":{"x":44.2289,"y":1.3563,"z":-75.0008},"rot":{"x":0.0208,"y":269.9997,"z":0.0168}},"15a1bb":{"lock":false,"pos":{"x":52.9442,"y":1.3662,"z":-52.0203},"rot":{"x":0.0208,"y":270.0024,"z":0.0168}},"26d70e":{"lock":false,"pos":{"x":44.229,"y":1.3583,"z":-68.1007},"rot":{"x":0.0208,"y":269.9997,"z":0.0168}},"300569":{"lock":false,"pos":{"x":40.676,"y":1.3536,"z":-79.6126},"rot":{"x":0.0208,"y":269.9998,"z":0.0168}},"3469e0":{"lock":false,"pos":{"x":52.9442,"y":1.3635,"z":-61.2203},"rot":{"x":0.0208,"y":269.9998,"z":0.0168}},"384258":{"lock":false,"pos":{"x":44.231,"y":1.3542,"z":-81.9009},"rot":{"x":0.0208,"y":269.9997,"z":0.0168}},"3c0d81":{"lock":false,"pos":{"x":44.2132,"y":1.3522,"z":-88.7901},"rot":{"x":0.0208,"y":270,"z":0.0168}},"404410":{"lock":false,"pos":{"x":52.9442,"y":1.3655,"z":-54.3203},"rot":{"x":0.0208,"y":270.0014,"z":0.0168}},"423ea2":{"lock":false,"pos":{"x":52.9442,"y":1.3648,"z":-56.6203},"rot":{"x":0.0208,"y":269.9998,"z":0.0168}},"488fab":{"lock":false,"pos":{"x":44.229,"y":1.3603,"z":-61.2008},"rot":{"x":0.0208,"y":269.9998,"z":0.0168}},"53eaa9":{"lock":false,"pos":{"x":40.6759,"y":1.3577,"z":-65.8127},"rot":{"x":0.0208,"y":269.9998,"z":0.0168}},"552689":{"lock":false,"pos":{"x":58.0997,"y":1.368,"z":-52.071},"rot":{"x":0.0208,"y":269.971,"z":0.0168}},"562c05":{"lock":false,"pos":{"x":44.2289,"y":1.3569,"z":-72.7007},"rot":{"x":0.0208,"y":269.9997,"z":0.0168}},"5bdc77":{"lock":false,"pos":{"x":40.6759,"y":1.357,"z":-68.1127},"rot":{"x":0.0208,"y":270,"z":0.0168}},"5f8011":{"lock":false,"pos":{"x":44.229,"y":1.3556,"z":-77.3007},"rot":{"x":0.0208,"y":269.9976,"z":0.0168}},"659f2d":{"lock":false,"pos":{"x":40.6759,"y":1.361,"z":-54.3129},"rot":{"x":0.0208,"y":269.9998,"z":0.0168}},"683123":{"lock":false,"pos":{"x":44.229,"y":1.3596,"z":-63.5009},"rot":{"x":0.0208,"y":269.9998,"z":0.0168}},"6f6976":{"lock":false,"pos":{"x":52.9442,"y":1.3621,"z":-65.8202},"rot":{"x":0.0208,"y":269.9998,"z":0.0168}},"6fab5a":{"lock":false,"pos":{"x":40.6758,"y":1.3543,"z":-77.3127},"rot":{"x":0.0208,"y":269.9997,"z":0.0168}},"791d5f":{"lock":false,"pos":{"x":52.9442,"y":1.3628,"z":-63.5203},"rot":{"x":0.0208,"y":269.9999,"z":0.0168}},"8343e5":{"lock":false,"pos":{"x":44.229,"y":1.363,"z":-52.0008},"rot":{"x":0.0208,"y":269.9998,"z":0.0168}},"8b1863":{"lock":false,"pos":{"x":44.229,"y":1.3617,"z":-56.6008},"rot":{"x":0.0208,"y":269.9998,"z":0.0168}},"8cdfc7":{"lock":false,"pos":{"x":44.229,"y":1.3623,"z":-54.3008},"rot":{"x":0.0208,"y":269.9998,"z":0.0168}},"96ec75":{"lock":false,"pos":{"x":40.6759,"y":1.3556,"z":-72.7127},"rot":{"x":0.0208,"y":269.9998,"z":0.0168}},"97ed44":{"lock":false,"pos":{"x":52.9442,"y":1.3675,"z":-47.4203},"rot":{"x":0.0208,"y":269.9998,"z":0.0168}},"a641de":{"lock":false,"pos":{"x":52.9442,"y":1.3614,"z":-68.1202},"rot":{"x":0.0208,"y":269.9998,"z":0.0168}},"add7c9":{"lock":false,"pos":{"x":44.229,"y":1.3643,"z":-47.4008},"rot":{"x":0.0208,"y":269.9714,"z":0.0168}},"b63277":{"lock":false,"pos":{"x":40.6992,"y":1.359,"z":-61.2127},"rot":{"x":0.0208,"y":269.9997,"z":0.0168}},"b722cd":{"lock":false,"pos":{"x":40.6759,"y":1.3597,"z":-58.9129},"rot":{"x":0.0208,"y":269.9996,"z":0.0168}},"b98ff6":{"lock":false,"pos":{"x":52.9442,"y":1.3608,"z":-70.4202},"rot":{"x":0.0208,"y":269.9998,"z":0.0168}},"bc498d":{"lock":false,"pos":{"x":44.229,"y":1.361,"z":-58.9008},"rot":{"x":0.0208,"y":269.9998,"z":0.0168}},"bc868c":{"lock":false,"pos":{"x":40.6758,"y":1.355,"z":-75.0128},"rot":{"x":0.0208,"y":269.9995,"z":0.0168}},"bdbca5":{"lock":false,"pos":{"x":52.9442,"y":1.3601,"z":-72.7203},"rot":{"x":0.0208,"y":269.9998,"z":0.0168}},"c8716d":{"lock":false,"pos":{"x":40.6759,"y":1.3563,"z":-70.4127},"rot":{"x":0.0208,"y":269.9997,"z":0.0168}},"cffeb0":{"lock":false,"pos":{"x":44.2289,"y":1.3536,"z":-84.2007},"rot":{"x":0.0208,"y":269.9998,"z":0.0168}},"d391c7":{"lock":false,"pos":{"x":52.9442,"y":1.3641,"z":-58.9203},"rot":{"x":0.0208,"y":269.9998,"z":0.0168}},"d86b0d":{"lock":false,"pos":{"x":44.229,"y":1.3576,"z":-70.4007},"rot":{"x":0.0208,"y":269.9998,"z":0.0168}},"dde850":{"lock":false,"pos":{"x":40.6759,"y":1.3631,"z":-47.4129},"rot":{"x":0.0208,"y":270.0004,"z":0.0168}},"e0721f":{"lock":false,"pos":{"x":58.0997,"y":1.3687,"z":-49.771},"rot":{"x":0.0208,"y":269.9998,"z":0.0168}},"e07aab":{"lock":false,"pos":{"x":52.9442,"y":1.3594,"z":-75.0203},"rot":{"x":0.0208,"y":270.0149,"z":0.0168}},"e4ceae":{"lock":false,"pos":{"x":44.229,"y":1.359,"z":-65.8007},"rot":{"x":0.0208,"y":269.9998,"z":0.0168}},"e50ca0":{"lock":false,"pos":{"x":44.229,"y":1.3637,"z":-49.7008},"rot":{"x":0.0208,"y":270.006,"z":0.0168}},"e87c2d":{"lock":false,"pos":{"x":40.6759,"y":1.3624,"z":-49.7128},"rot":{"x":0.0208,"y":270.0005,"z":0.0168}},"ebf4c0":{"lock":false,"pos":{"x":40.6759,"y":1.3583,"z":-63.5129},"rot":{"x":0.0208,"y":269.9998,"z":0.0168}},"ef2ecd":{"lock":false,"pos":{"x":44.229,"y":1.3529,"z":-86.5006},"rot":{"x":0.0208,"y":269.9999,"z":0.0168}},"f22453":{"lock":false,"pos":{"x":52.9442,"y":1.3668,"z":-49.7203},"rot":{"x":0.0208,"y":269.9998,"z":0.0168}},"f86ed0":{"lock":false,"pos":{"x":40.6759,"y":1.3617,"z":-52.0128},"rot":{"x":0.0208,"y":270.0005,"z":0.0168}},"fc5406":{"lock":false,"pos":{"x":44.213,"y":1.3516,"z":-91.0974},"rot":{"x":0.0208,"y":269.9998,"z":0.0168}}}}' +MaterialIndex: -1 +MeshIndex: -1 +Name: Custom_Model_Bag +Nickname: Seeker +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 66.2964249 + posY: 1.41422033 + posZ: -69.3599243 + rotX: 0.02080502 + rotY: 270.02063 + rotZ: 0.01677786 + scaleX: 1.2 + scaleY: 1.2 + scaleZ: 1.2 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker cb4f32/Card Abigail Foreman (4) b63277.yaml b/unpacked/Custom_Model_Bag Seeker cb4f32/Card Abigail Foreman (4) b63277.yaml new file mode 100644 index 000000000..a5c2a9710 --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker cb4f32/Card Abigail Foreman (4) b63277.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Library Intern +GMNotes: '' +GUID: b63277 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Abigail Foreman (4) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 40.69918 + posY: 1.35902238 + posZ: -61.2126923 + rotX: 0.0208095517 + rotY: 269.9997 + rotZ: 0.0167705938 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker cb4f32/Card Ancient Stone (1) 8b1863.yaml b/unpacked/Custom_Model_Bag Seeker cb4f32/Card Ancient Stone (1) 8b1863.yaml new file mode 100644 index 000000000..d31b7eca5 --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker cb4f32/Card Ancient Stone (1) 8b1863.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 291539 +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 + UniqueBack: false +Description: Unidentified +GMNotes: '' +GUID: 8b1863 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Ancient Stone (1) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.229 + posY: 1.36165428 + posZ: -56.6008 + rotX: 0.0208092611 + rotY: 269.9998 + rotZ: 0.016770646 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker cb4f32/Card Ancient Stone (4) 96ec75.yaml b/unpacked/Custom_Model_Bag Seeker cb4f32/Card Ancient Stone (4) 96ec75.yaml new file mode 100644 index 000000000..ffd5c1aa7 --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker cb4f32/Card Ancient Stone (4) 96ec75.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Minds in Harmony +GMNotes: '' +GUID: 96ec75 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Ancient Stone (4) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 40.67587 + posY: 1.3556478 + posZ: -72.71273 + rotX: 0.0208093431 + rotY: 269.999756 + rotZ: 0.016770592 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker cb4f32/Card Ancient Stone (4) bc868c.yaml b/unpacked/Custom_Model_Bag Seeker cb4f32/Card Ancient Stone (4) bc868c.yaml new file mode 100644 index 000000000..3b5fa7c61 --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker cb4f32/Card Ancient Stone (4) bc868c.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Knowledge of the Elders +GMNotes: '' +GUID: bc868c +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Ancient Stone (4) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 40.6758461 + posY: 1.35497451 + posZ: -75.01276 + rotX: 0.02080933 + rotY: 269.999542 + rotZ: 0.0167687479 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker cb4f32/Card Arcane Insight (4) 6fab5a.yaml b/unpacked/Custom_Model_Bag Seeker cb4f32/Card Arcane Insight (4) 6fab5a.yaml new file mode 100644 index 000000000..3da454fb7 --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker cb4f32/Card Arcane Insight (4) 6fab5a.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 291559 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 6fab5a +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Arcane Insight (4) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 40.67585 + posY: 1.35430133 + posZ: -77.31266 + rotX: 0.02080912 + rotY: 269.999664 + rotZ: 0.0167693142 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker cb4f32/Card Archaic Glyphs (3) 3c0d81.yaml b/unpacked/Custom_Model_Bag Seeker cb4f32/Card Archaic Glyphs (3) 3c0d81.yaml new file mode 100644 index 000000000..1a880fd2e --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker cb4f32/Card Archaic Glyphs (3) 3c0d81.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Markings of Isis +GMNotes: '' +GUID: 3c0d81 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Archaic Glyphs (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.213192 + posY: 1.35222638 + posZ: -88.79009 + rotX: 0.0208074674 + rotY: 270.0 + rotZ: 0.0167700667 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker cb4f32/Card Archaic Glyphs (3) ef2ecd.yaml b/unpacked/Custom_Model_Bag Seeker cb4f32/Card Archaic Glyphs (3) ef2ecd.yaml new file mode 100644 index 000000000..39e170744 --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker cb4f32/Card Archaic Glyphs (3) ef2ecd.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 291552 +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 + UniqueBack: false +Description: Guiding Stones +GMNotes: '' +GUID: ef2ecd +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Archaic Glyphs (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.22901 + posY: 1.35290229 + posZ: -86.50065 + rotX: 0.0208075941 + rotY: 269.999939 + rotZ: 0.0167702716 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker cb4f32/Card Archaic Glyphs (3) fc5406.yaml b/unpacked/Custom_Model_Bag Seeker cb4f32/Card Archaic Glyphs (3) fc5406.yaml new file mode 100644 index 000000000..88c706ed5 --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker cb4f32/Card Archaic Glyphs (3) fc5406.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 291553 +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 + UniqueBack: false +Description: Prophecy Foretold +GMNotes: '' +GUID: fc5406 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Archaic Glyphs (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.21302 + posY: 1.35155094 + posZ: -91.09742 + rotX: 0.0208076444 + rotY: 269.999756 + rotZ: 0.01677008 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker cb4f32/Card Barricade (3) 3469e0.yaml b/unpacked/Custom_Model_Bag Seeker cb4f32/Card Barricade (3) 3469e0.yaml new file mode 100644 index 000000000..8bc7dc426 --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker cb4f32/Card Barricade (3) 3469e0.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 291551 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 3469e0 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Barricade (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 52.9442 + posY: 1.36346734 + posZ: -61.2203 + rotX: 0.0208092034 + rotY: 269.999756 + rotZ: 0.0167704988 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker cb4f32/Card Cryptic Research (4) 791d5f.yaml b/unpacked/Custom_Model_Bag Seeker cb4f32/Card Cryptic Research (4) 791d5f.yaml new file mode 100644 index 000000000..710bd3e64 --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker cb4f32/Card Cryptic Research (4) 791d5f.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 291557 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 791d5f +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Cryptic Research (4) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 52.9442062 + posY: 1.362794 + posZ: -63.5202942 + rotX: 0.0208092257 + rotY: 269.999939 + rotZ: 0.0167707112 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker cb4f32/Card Death • XIII (1) add7c9.yaml b/unpacked/Custom_Model_Bag Seeker cb4f32/Card Death • XIII (1) add7c9.yaml new file mode 100644 index 000000000..7a67a9928 --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker cb4f32/Card Death • XIII (1) add7c9.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Free from the Past +GMNotes: '' +GUID: add7c9 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: "Death \u2022 XIII (1)" +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.229 + posY: 1.36434734 + posZ: -47.4008 + rotX: 0.02081765 + rotY: 269.971375 + rotZ: 0.01676029 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker cb4f32/Card Deciphered Reality (5) b98ff6.yaml b/unpacked/Custom_Model_Bag Seeker cb4f32/Card Deciphered Reality (5) b98ff6.yaml new file mode 100644 index 000000000..6d49535ac --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker cb4f32/Card Deciphered Reality (5) b98ff6.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 291560 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: b98ff6 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Deciphered Reality (5) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 52.9442 + posY: 1.3607744 + posZ: -70.4202 + rotX: 0.0208092183 + rotY: 269.999756 + rotZ: 0.016770646 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker cb4f32/Card Deduction (2) e0721f.yaml b/unpacked/Custom_Model_Bag Seeker cb4f32/Card Deduction (2) e0721f.yaml new file mode 100644 index 000000000..f3cfa8440 --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker cb4f32/Card Deduction (2) e0721f.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 291542 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: e0721f +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Deduction (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 58.09968 + posY: 1.36869109 + posZ: -49.77095 + rotX: 0.0208095964 + rotY: 269.999756 + rotZ: 0.01677293 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker cb4f32/Card Disc of Itzamna (2) 117137.yaml b/unpacked/Custom_Model_Bag Seeker cb4f32/Card Disc of Itzamna (2) 117137.yaml new file mode 100644 index 000000000..e26ef4bdc --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker cb4f32/Card Disc of Itzamna (2) 117137.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 291548 +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 + UniqueBack: false +Description: Protective Amulet +GMNotes: '' +GUID: '117137' +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Disc of Itzamna (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.2289 + posY: 1.35626841 + posZ: -75.0008 + rotX: 0.0208092853 + rotY: 269.999725 + rotZ: 0.0167705 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker cb4f32/Card Dream Diary (3) dde850.yaml b/unpacked/Custom_Model_Bag Seeker cb4f32/Card Dream Diary (3) dde850.yaml new file mode 100644 index 000000000..e7e19f799 --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker cb4f32/Card Dream Diary (3) dde850.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Dreams of an Explorer +GMNotes: '' +GUID: dde850 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Dream Diary (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 40.67588 + posY: 1.36305332 + posZ: -47.4128571 + rotX: 0.02080913 + rotY: 270.000427 + rotZ: 0.0167709645 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker cb4f32/Card Dream Diary (3) e87c2d.yaml b/unpacked/Custom_Model_Bag Seeker cb4f32/Card Dream Diary (3) e87c2d.yaml new file mode 100644 index 000000000..2ceaf56dd --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker cb4f32/Card Dream Diary (3) e87c2d.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Dreams of a Madman +GMNotes: '' +GUID: e87c2d +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Dream Diary (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 40.67588 + posY: 1.36238015 + posZ: -49.7128448 + rotX: 0.0208089836 + rotY: 270.000519 + rotZ: 0.0167705044 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker cb4f32/Card Dream Diary (3) f86ed0.yaml b/unpacked/Custom_Model_Bag Seeker cb4f32/Card Dream Diary (3) f86ed0.yaml new file mode 100644 index 000000000..3cfc0b3bd --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker cb4f32/Card Dream Diary (3) f86ed0.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Dreams of a Child +GMNotes: '' +GUID: f86ed0 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Dream Diary (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 40.67588 + posY: 1.36170685 + posZ: -52.0128479 + rotX: 0.0208092928 + rotY: 270.000549 + rotZ: 0.016770808 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker cb4f32/Card Eidetic Memory (3) 423ea2.yaml b/unpacked/Custom_Model_Bag Seeker cb4f32/Card Eidetic Memory (3) 423ea2.yaml new file mode 100644 index 000000000..e4199a1b0 --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker cb4f32/Card Eidetic Memory (3) 423ea2.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 291550 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 423ea2 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Eidetic Memory (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 52.9442 + posY: 1.3648138 + posZ: -56.6203 + rotX: 0.0208094586 + rotY: 269.999756 + rotZ: 0.0167709 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker cb4f32/Card Encyclopedia (2) d86b0d.yaml b/unpacked/Custom_Model_Bag Seeker cb4f32/Card Encyclopedia (2) d86b0d.yaml new file mode 100644 index 000000000..5ac3d8daf --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker cb4f32/Card Encyclopedia (2) d86b0d.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 291546 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: d86b0d +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Encyclopedia (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.229 + posY: 1.357615 + posZ: -70.4007 + rotX: 0.02080922 + rotY: 269.999756 + rotZ: 0.0167706851 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker cb4f32/Card Esoteric Atlas (1) e50ca0.yaml b/unpacked/Custom_Model_Bag Seeker cb4f32/Card Esoteric Atlas (1) e50ca0.yaml new file mode 100644 index 000000000..cfab72b41 --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker cb4f32/Card Esoteric Atlas (1) e50ca0.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: e50ca0 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Esoteric Atlas (1) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.229 + posY: 1.36367416 + posZ: -49.7008 + rotX: 0.0208075177 + rotY: 270.006 + rotZ: 0.0167730786 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker cb4f32/Card Expose Weakness (1) 97ed44.yaml b/unpacked/Custom_Model_Bag Seeker cb4f32/Card Expose Weakness (1) 97ed44.yaml new file mode 100644 index 000000000..54c8052ec --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker cb4f32/Card Expose Weakness (1) 97ed44.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 291535 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 97ed44 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Expose Weakness (1) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 52.9442 + posY: 1.36750674 + posZ: -47.4203 + rotX: 0.0208092332 + rotY: 269.999756 + rotZ: 0.01677052 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker cb4f32/Card Expose Weakness (3) d391c7.yaml b/unpacked/Custom_Model_Bag Seeker cb4f32/Card Expose Weakness (3) d391c7.yaml new file mode 100644 index 000000000..9782ecb37 --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker cb4f32/Card Expose Weakness (3) d391c7.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: d391c7 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Expose Weakness (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 52.9442 + posY: 1.36414063 + posZ: -58.9203 + rotX: 0.020809127 + rotY: 269.999756 + rotZ: 0.0167707875 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker cb4f32/Card Extensive Research (1) e07aab.yaml b/unpacked/Custom_Model_Bag Seeker cb4f32/Card Extensive Research (1) e07aab.yaml new file mode 100644 index 000000000..d2e1b453c --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker cb4f32/Card Extensive Research (1) e07aab.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Insight. +GMNotes: '' +GUID: e07aab +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Extensive Research (1) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 52.9442 + posY: 1.35942793 + posZ: -75.0203 + rotX: 0.0208050366 + rotY: 270.0149 + rotZ: 0.0167761 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker cb4f32/Card Feed the Mind (3) 659f2d.yaml b/unpacked/Custom_Model_Bag Seeker cb4f32/Card Feed the Mind (3) 659f2d.yaml new file mode 100644 index 000000000..38d140024 --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker cb4f32/Card Feed the Mind (3) 659f2d.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 659f2d +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Feed the Mind (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 40.6759 + posY: 1.36103368 + posZ: -54.3129 + rotX: 0.0208093245 + rotY: 269.9998 + rotZ: 0.0167705081 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker cb4f32/Card Forewarned (1) f22453.yaml b/unpacked/Custom_Model_Bag Seeker cb4f32/Card Forewarned (1) f22453.yaml new file mode 100644 index 000000000..4de299667 --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker cb4f32/Card Forewarned (1) f22453.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 291536 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: f22453 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Forewarned (1) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 52.9442 + posY: 1.36683357 + posZ: -49.7203 + rotX: 0.0208092723 + rotY: 269.999756 + rotZ: 0.0167705938 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker cb4f32/Card Glimpse the Unthinkable (5) bdbca5.yaml b/unpacked/Custom_Model_Bag Seeker cb4f32/Card Glimpse the Unthinkable (5) bdbca5.yaml new file mode 100644 index 000000000..101f65a9a --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker cb4f32/Card Glimpse the Unthinkable (5) bdbca5.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: bdbca5 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Glimpse the Unthinkable (5) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 52.9442 + posY: 1.3601011 + posZ: -72.7203 + rotX: 0.0208093766 + rotY: 269.999756 + rotZ: 0.0167706087 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker cb4f32/Card Grisly Totem (3) b722cd.yaml b/unpacked/Custom_Model_Bag Seeker cb4f32/Card Grisly Totem (3) b722cd.yaml new file mode 100644 index 000000000..656b88fd3 --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker cb4f32/Card Grisly Totem (3) b722cd.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Seeker +GMNotes: '' +GUID: b722cd +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Grisly Totem (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 40.67588 + posY: 1.35968709 + posZ: -58.9128647 + rotX: 0.02080939 + rotY: 269.999634 + rotZ: 0.016770117 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker cb4f32/Card Higher Education (3) 0d3413.yaml b/unpacked/Custom_Model_Bag Seeker cb4f32/Card Higher Education (3) 0d3413.yaml new file mode 100644 index 000000000..de5d18e9e --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker cb4f32/Card Higher Education (3) 0d3413.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 291549 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 0d3413 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Higher Education (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.229 + posY: 1.354922 + posZ: -79.6007 + rotX: 0.02080931 + rotY: 269.999756 + rotZ: 0.0167705584 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker cb4f32/Card Hyperawareness (2) e4ceae.yaml b/unpacked/Custom_Model_Bag Seeker cb4f32/Card Hyperawareness (2) e4ceae.yaml new file mode 100644 index 000000000..32e01e2fe --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker cb4f32/Card Hyperawareness (2) e4ceae.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 291544 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: e4ceae +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Hyperawareness (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.229 + posY: 1.35896146 + posZ: -65.8007 + rotX: 0.0208093654 + rotY: 269.999756 + rotZ: 0.016770497 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker cb4f32/Card In the Know (1) 488fab.yaml b/unpacked/Custom_Model_Bag Seeker cb4f32/Card In the Know (1) 488fab.yaml new file mode 100644 index 000000000..2fc384bb5 --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker cb4f32/Card In the Know (1) 488fab.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 291540 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 488fab +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: In the Know (1) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.229 + posY: 1.36030781 + posZ: -61.2008 + rotX: 0.0208092555 + rotY: 269.9998 + rotZ: 0.0167706776 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker cb4f32/Card Logical Reasoning (4) 6f6976.yaml b/unpacked/Custom_Model_Bag Seeker cb4f32/Card Logical Reasoning (4) 6f6976.yaml new file mode 100644 index 000000000..3c771002c --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker cb4f32/Card Logical Reasoning (4) 6f6976.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 6f6976 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Logical Reasoning (4) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 52.9442 + posY: 1.36212087 + posZ: -65.8202 + rotX: 0.0208093561 + rotY: 269.999756 + rotZ: 0.0167707913 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker cb4f32/Card Magnifying Glass (1) 8343e5.yaml b/unpacked/Custom_Model_Bag Seeker cb4f32/Card Magnifying Glass (1) 8343e5.yaml new file mode 100644 index 000000000..def1d6a6e --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker cb4f32/Card Magnifying Glass (1) 8343e5.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 291537 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 8343e5 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Magnifying Glass (1) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.229 + posY: 1.36300087 + posZ: -52.0008 + rotX: 0.0208093245 + rotY: 269.999847 + rotZ: 0.016770741 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker cb4f32/Card No Stone Unturned (5) a641de.yaml b/unpacked/Custom_Model_Bag Seeker cb4f32/Card No Stone Unturned (5) a641de.yaml new file mode 100644 index 000000000..95aaf02fc --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker cb4f32/Card No Stone Unturned (5) a641de.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 291558 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: a641de +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: No Stone Unturned (5) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 52.9441872 + posY: 1.36144757 + posZ: -68.12021 + rotX: 0.0208099671 + rotY: 269.999847 + rotZ: 0.0167733449 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker cb4f32/Card Old Book of Lore (3) 0d88ac.yaml b/unpacked/Custom_Model_Bag Seeker cb4f32/Card Old Book of Lore (3) 0d88ac.yaml new file mode 100644 index 000000000..354fb9160 --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker cb4f32/Card Old Book of Lore (3) 0d88ac.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Item. Tome. +GMNotes: '' +GUID: 0d88ac +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Old Book of Lore (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 40.6908722 + posY: 1.36036587 + posZ: -56.61296 + rotX: 0.0208174456 + rotY: 269.971558 + rotZ: 0.0167602785 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker cb4f32/Card Otherworld Codex (2) 5f8011.yaml b/unpacked/Custom_Model_Bag Seeker cb4f32/Card Otherworld Codex (2) 5f8011.yaml new file mode 100644 index 000000000..2fe1d6561 --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker cb4f32/Card Otherworld Codex (2) 5f8011.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 5f8011 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Otherworld Codex (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.229 + posY: 1.35559523 + posZ: -77.3007 + rotX: 0.020809995 + rotY: 269.9976 + rotZ: 0.0167697631 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker cb4f32/Card Otherworldly Compass (2) 562c05.yaml b/unpacked/Custom_Model_Bag Seeker cb4f32/Card Otherworldly Compass (2) 562c05.yaml new file mode 100644 index 000000000..1dc6c4b77 --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker cb4f32/Card Otherworldly Compass (2) 562c05.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 291547 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 562c05 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Otherworldly Compass (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.2289 + posY: 1.3569417 + posZ: -72.7007 + rotX: 0.0208093412 + rotY: 269.9997 + rotZ: 0.0167707466 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker cb4f32/Card Pathfinder (1) 683123.yaml b/unpacked/Custom_Model_Bag Seeker cb4f32/Card Pathfinder (1) 683123.yaml new file mode 100644 index 000000000..dab11cf9a --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker cb4f32/Card Pathfinder (1) 683123.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 291541 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: '683123' +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Pathfinder (1) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.229 + posY: 1.35963464 + posZ: -63.5009 + rotX: 0.0208092015 + rotY: 269.999756 + rotZ: 0.0167702325 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker cb4f32/Card Pnakotic Manuscripts (5) 300569.yaml b/unpacked/Custom_Model_Bag Seeker cb4f32/Card Pnakotic Manuscripts (5) 300569.yaml new file mode 100644 index 000000000..e56fa49c5 --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker cb4f32/Card Pnakotic Manuscripts (5) 300569.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Mind-Expanding Ideas +GMNotes: '' +GUID: '300569' +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Pnakotic Manuscripts (5) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 40.6759872 + posY: 1.35362816 + posZ: -79.6126251 + rotX: 0.0208090022 + rotY: 269.9998 + rotZ: 0.0167693626 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker cb4f32/Card Preposterous Sketches (2) 15a1bb.yaml b/unpacked/Custom_Model_Bag Seeker cb4f32/Card Preposterous Sketches (2) 15a1bb.yaml new file mode 100644 index 000000000..c1e66bfeb --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker cb4f32/Card Preposterous Sketches (2) 15a1bb.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 436906 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '4369': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025943833/DE98A03934DF8FF5B3CF6C53143B15BFC3ED7341/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 15a1bb +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Preposterous Sketches (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 52.9442 + posY: 1.36616027 + posZ: -52.0203 + rotX: 0.0208085757 + rotY: 270.00238 + rotZ: 0.0167714152 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker cb4f32/Card Quick Study (2) 26d70e.yaml b/unpacked/Custom_Model_Bag Seeker cb4f32/Card Quick Study (2) 26d70e.yaml new file mode 100644 index 000000000..c4d87ef8d --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker cb4f32/Card Quick Study (2) 26d70e.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 291545 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 26d70e +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Quick Study (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.229 + posY: 1.35828817 + posZ: -68.1007 + rotX: 0.0208092779 + rotY: 269.9997 + rotZ: 0.0167706758 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker cb4f32/Card Scientific Theory (1) 8cdfc7.yaml b/unpacked/Custom_Model_Bag Seeker cb4f32/Card Scientific Theory (1) 8cdfc7.yaml new file mode 100644 index 000000000..cdd62295a --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker cb4f32/Card Scientific Theory (1) 8cdfc7.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 291538 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 8cdfc7 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Scientific Theory (1) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.229 + posY: 1.36232769 + posZ: -54.3008 + rotX: 0.0208093 + rotY: 269.9998 + rotZ: 0.01677047 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker cb4f32/Card Scroll of Secrets (3) cffeb0.yaml b/unpacked/Custom_Model_Bag Seeker cb4f32/Card Scroll of Secrets (3) cffeb0.yaml new file mode 100644 index 000000000..e3ce5b845 --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker cb4f32/Card Scroll of Secrets (3) cffeb0.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Seeker +GMNotes: '' +GUID: cffeb0 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Scroll of Secrets (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.2289 + posY: 1.35357547 + posZ: -84.2007 + rotX: 0.0208092462 + rotY: 269.999756 + rotZ: 0.01677093 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker cb4f32/Card Segment of Onyx (1) bc498d.yaml b/unpacked/Custom_Model_Bag Seeker cb4f32/Card Segment of Onyx (1) bc498d.yaml new file mode 100644 index 000000000..3583ce639 --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker cb4f32/Card Segment of Onyx (1) bc498d.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: bc498d +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Segment of Onyx (1) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.229 + posY: 1.36098111 + posZ: -58.9008 + rotX: 0.020809399 + rotY: 269.999817 + rotZ: 0.0167705473 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker cb4f32/Card Shortcut (2) 404410.yaml b/unpacked/Custom_Model_Bag Seeker cb4f32/Card Shortcut (2) 404410.yaml new file mode 100644 index 000000000..abc2c6dad --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker cb4f32/Card Shortcut (2) 404410.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 291543 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: '404410' +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Shortcut (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 52.9442 + posY: 1.3654871 + posZ: -54.3203 + rotX: 0.0208087955 + rotY: 270.001373 + rotZ: 0.016771052 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker cb4f32/Card Strange Solution (4) 53eaa9.yaml b/unpacked/Custom_Model_Bag Seeker cb4f32/Card Strange Solution (4) 53eaa9.yaml new file mode 100644 index 000000000..69edb9ae3 --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker cb4f32/Card Strange Solution (4) 53eaa9.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 291555 +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 + UniqueBack: false +Description: Acidic Ichor +GMNotes: '' +GUID: 53eaa9 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Strange Solution (4) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 40.6758728 + posY: 1.35766757 + posZ: -65.81272 + rotX: 0.0208091214 + rotY: 269.999756 + rotZ: 0.0167693682 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker cb4f32/Card Strange Solution (4) 5bdc77.yaml b/unpacked/Custom_Model_Bag Seeker cb4f32/Card Strange Solution (4) 5bdc77.yaml new file mode 100644 index 000000000..1587dccde --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker cb4f32/Card Strange Solution (4) 5bdc77.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 291556 +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 + UniqueBack: false +Description: Restorative Concoction +GMNotes: '' +GUID: 5bdc77 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Strange Solution (4) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 40.6758766 + posY: 1.35699427 + posZ: -68.1127243 + rotX: 0.020809 + rotY: 270.0 + rotZ: 0.01676929 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker cb4f32/Card Strange Solution (4) c8716d.yaml b/unpacked/Custom_Model_Bag Seeker cb4f32/Card Strange Solution (4) c8716d.yaml new file mode 100644 index 000000000..d9ccb5685 --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker cb4f32/Card Strange Solution (4) c8716d.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 436905 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '4369': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025943833/DE98A03934DF8FF5B3CF6C53143B15BFC3ED7341/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: Empowering Elixir +GMNotes: '' +GUID: c8716d +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Strange Solution (4) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 40.67587 + posY: 1.356321 + posZ: -70.41273 + rotX: 0.0208093 + rotY: 269.9997 + rotZ: 0.0167702343 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker cb4f32/Card Strange Solution (4) ebf4c0.yaml b/unpacked/Custom_Model_Bag Seeker cb4f32/Card Strange Solution (4) ebf4c0.yaml new file mode 100644 index 000000000..cf4048c9c --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker cb4f32/Card Strange Solution (4) ebf4c0.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 291554 +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 + UniqueBack: false +Description: Freezing Variant +GMNotes: '' +GUID: ebf4c0 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Strange Solution (4) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 40.6758728 + posY: 1.35834074 + posZ: -63.512867 + rotX: 0.020809032 + rotY: 269.999756 + rotZ: 0.0167705975 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker cb4f32/Card Studious (3) 384258.yaml b/unpacked/Custom_Model_Bag Seeker cb4f32/Card Studious (3) 384258.yaml new file mode 100644 index 000000000..2c7d255fb --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker cb4f32/Card Studious (3) 384258.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: '384258' +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Studious (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.231 + posY: 1.35424936 + posZ: -81.9009 + rotX: 0.0208093785 + rotY: 269.999664 + rotZ: 0.016770497 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker cb4f32/Card Surprising Find (1) 0d3d1a.yaml b/unpacked/Custom_Model_Bag Seeker cb4f32/Card Surprising Find (1) 0d3d1a.yaml new file mode 100644 index 000000000..0d169133a --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker cb4f32/Card Surprising Find (1) 0d3d1a.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Fortune. Research. +GMNotes: '' +GUID: 0d3d1a +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Surprising Find (1) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 58.09968 + posY: 1.36936426 + posZ: -47.4709625 + rotX: 0.02081102 + rotY: 269.9956 + rotZ: 0.016771229 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker cb4f32/Card The Eye of Truth (5) 552689.yaml b/unpacked/Custom_Model_Bag Seeker cb4f32/Card The Eye of Truth (5) 552689.yaml new file mode 100644 index 000000000..95204bf8c --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker cb4f32/Card The Eye of Truth (5) 552689.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Spell. Practiced. +GMNotes: '' +GUID: '552689' +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: The Eye of Truth (5) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 58.09968 + posY: 1.36801779 + posZ: -52.0709534 + rotX: 0.0208177678 + rotY: 269.971 + rotZ: 0.0167619288 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker cb4f32/Custom_Model_Bag Seeker 3afb92.ttslua b/unpacked/Custom_Model_Bag Seeker cb4f32/Custom_Model_Bag Seeker 3afb92.ttslua new file mode 100644 index 000000000..f882a7f09 --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker cb4f32/Custom_Model_Bag Seeker 3afb92.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,0,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 + 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=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,0,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,0,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,0,0}, height=350, width=750, + 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}, rotation={0,0,0}, height=350, width=800, + font_size=250, color={0,0,0}, font_color={1,1,1} + }) +-- self.createButton({ +-- label="Setup", click_function="buttonClick_setup", function_owner=self, +-- position={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.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 Seeker cb4f32/Custom_Model_Bag Seeker 3afb92.yaml b/unpacked/Custom_Model_Bag Seeker cb4f32/Custom_Model_Bag Seeker 3afb92.yaml new file mode 100644 index 000000000..402906696 --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker cb4f32/Custom_Model_Bag Seeker 3afb92.yaml @@ -0,0 +1,103 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +ContainedObjects: +- !include 'Custom_Model_Bag Seeker 3afb92/Card Surprising Find (1) 0d3d1a.yaml' +- !include 'Custom_Model_Bag Seeker 3afb92/Card Deduction (2) e0721f.yaml' +- !include 'Custom_Model_Bag Seeker 3afb92/Card The Eye of Truth (5) 552689.yaml' +- !include 'Custom_Model_Bag Seeker 3afb92/Card Preposterous Sketches (2) 15a1bb.yaml' +- !include 'Custom_Model_Bag Seeker 3afb92/Card Forewarned (1) f22453.yaml' +- !include 'Custom_Model_Bag Seeker 3afb92/Card Expose Weakness (1) 97ed44.yaml' +- !include 'Custom_Model_Bag Seeker 3afb92/Card Shortcut (2) 404410.yaml' +- !include 'Custom_Model_Bag Seeker 3afb92/Card Eidetic Memory (3) 423ea2.yaml' +- !include 'Custom_Model_Bag Seeker 3afb92/Card Expose Weakness (3) d391c7.yaml' +- !include 'Custom_Model_Bag Seeker 3afb92/Card Barricade (3) 3469e0.yaml' +- !include 'Custom_Model_Bag Seeker 3afb92/Card Cryptic Research (4) 791d5f.yaml' +- !include 'Custom_Model_Bag Seeker 3afb92/Card Logical Reasoning (4) 6f6976.yaml' +- !include 'Custom_Model_Bag Seeker 3afb92/Card No Stone Unturned (5) a641de.yaml' +- !include 'Custom_Model_Bag Seeker 3afb92/Card Deciphered Reality (5) b98ff6.yaml' +- !include 'Custom_Model_Bag Seeker 3afb92/Card Glimpse the Unthinkable (5) bdbca5.yaml' +- !include 'Custom_Model_Bag Seeker 3afb92/Card Extensive Research (1) e07aab.yaml' +- !include "Custom_Model_Bag Seeker 3afb92/Card Death \u2022 XIII (1) add7c9.yaml" +- !include 'Custom_Model_Bag Seeker 3afb92/Card Dream Diary (3) dde850.yaml' +- !include 'Custom_Model_Bag Seeker 3afb92/Card Dream Diary (3) e87c2d.yaml' +- !include 'Custom_Model_Bag Seeker 3afb92/Card Esoteric Atlas (1) e50ca0.yaml' +- !include 'Custom_Model_Bag Seeker 3afb92/Card Magnifying Glass (1) 8343e5.yaml' +- !include 'Custom_Model_Bag Seeker 3afb92/Card Dream Diary (3) f86ed0.yaml' +- !include 'Custom_Model_Bag Seeker 3afb92/Card Feed the Mind (3) 659f2d.yaml' +- !include 'Custom_Model_Bag Seeker 3afb92/Card Scientific Theory (1) 8cdfc7.yaml' +- !include 'Custom_Model_Bag Seeker 3afb92/Card Ancient Stone (1) 8b1863.yaml' +- !include 'Custom_Model_Bag Seeker 3afb92/Card Old Book of Lore (3) 0d88ac.yaml' +- !include 'Custom_Model_Bag Seeker 3afb92/Card Grisly Totem (3) b722cd.yaml' +- !include 'Custom_Model_Bag Seeker 3afb92/Card Segment of Onyx (1) bc498d.yaml' +- !include 'Custom_Model_Bag Seeker 3afb92/Card In the Know (1) 488fab.yaml' +- !include 'Custom_Model_Bag Seeker 3afb92/Card Abigail Foreman (4) b63277.yaml' +- !include 'Custom_Model_Bag Seeker 3afb92/Card Strange Solution (4) ebf4c0.yaml' +- !include 'Custom_Model_Bag Seeker 3afb92/Card Pathfinder (1) 683123.yaml' +- !include 'Custom_Model_Bag Seeker 3afb92/Card Hyperawareness (2) e4ceae.yaml' +- !include 'Custom_Model_Bag Seeker 3afb92/Card Strange Solution (4) 53eaa9.yaml' +- !include 'Custom_Model_Bag Seeker 3afb92/Card Strange Solution (4) 5bdc77.yaml' +- !include 'Custom_Model_Bag Seeker 3afb92/Card Quick Study (2) 26d70e.yaml' +- !include 'Custom_Model_Bag Seeker 3afb92/Card Encyclopedia (2) d86b0d.yaml' +- !include 'Custom_Model_Bag Seeker 3afb92/Card Strange Solution (4) c8716d.yaml' +- !include 'Custom_Model_Bag Seeker 3afb92/Card Ancient Stone (4) 96ec75.yaml' +- !include 'Custom_Model_Bag Seeker 3afb92/Card Otherworldly Compass (2) 562c05.yaml' +- !include 'Custom_Model_Bag Seeker 3afb92/Card Disc of Itzamna (2) 117137.yaml' +- !include 'Custom_Model_Bag Seeker 3afb92/Card Ancient Stone (4) bc868c.yaml' +- !include 'Custom_Model_Bag Seeker 3afb92/Card Arcane Insight (4) 6fab5a.yaml' +- !include 'Custom_Model_Bag Seeker 3afb92/Card Otherworld Codex (2) 5f8011.yaml' +- !include 'Custom_Model_Bag Seeker 3afb92/Card Higher Education (3) 0d3413.yaml' +- !include 'Custom_Model_Bag Seeker 3afb92/Card Pnakotic Manuscripts (5) 300569.yaml' +- !include 'Custom_Model_Bag Seeker 3afb92/Card Studious (3) 384258.yaml' +- !include 'Custom_Model_Bag Seeker 3afb92/Card Scroll of Secrets (3) cffeb0.yaml' +- !include 'Custom_Model_Bag Seeker 3afb92/Card Archaic Glyphs (3) ef2ecd.yaml' +- !include 'Custom_Model_Bag Seeker 3afb92/Card Archaic Glyphs (3) 3c0d81.yaml' +- !include 'Custom_Model_Bag Seeker 3afb92/Card Archaic Glyphs (3) fc5406.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/952965722516265983/F50A6212D30C442429ED22B8CC8FD24D4CB76A2A/ + MaterialIndex: 3 + MeshURL: https://pastebin.com/raw/ALrYhQGb + NormalURL: '' + TypeIndex: 6 +Description: '' +GMNotes: '' +GUID: 3afb92 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Model_Bag Seeker 3afb92.ttslua' +LuaScriptState: '{"ml":{"0d3413":{"lock":false,"pos":{"x":44.229,"y":1.3549,"z":-79.6007},"rot":{"x":0.0208,"y":269.9998,"z":0.0168}},"0d3d1a":{"lock":false,"pos":{"x":58.0997,"y":1.3694,"z":-47.471},"rot":{"x":0.0208,"y":269.9956,"z":0.0168}},"0d88ac":{"lock":false,"pos":{"x":40.6909,"y":1.3604,"z":-56.613},"rot":{"x":0.0208,"y":269.9716,"z":0.0168}},"117137":{"lock":false,"pos":{"x":44.2289,"y":1.3563,"z":-75.0008},"rot":{"x":0.0208,"y":269.9997,"z":0.0168}},"15a1bb":{"lock":false,"pos":{"x":52.9442,"y":1.3662,"z":-52.0203},"rot":{"x":0.0208,"y":270.0024,"z":0.0168}},"26d70e":{"lock":false,"pos":{"x":44.229,"y":1.3583,"z":-68.1007},"rot":{"x":0.0208,"y":269.9997,"z":0.0168}},"300569":{"lock":false,"pos":{"x":40.676,"y":1.3536,"z":-79.6126},"rot":{"x":0.0208,"y":269.9998,"z":0.0168}},"3469e0":{"lock":false,"pos":{"x":52.9442,"y":1.3635,"z":-61.2203},"rot":{"x":0.0208,"y":269.9998,"z":0.0168}},"384258":{"lock":false,"pos":{"x":44.231,"y":1.3542,"z":-81.9009},"rot":{"x":0.0208,"y":269.9997,"z":0.0168}},"3c0d81":{"lock":false,"pos":{"x":44.2132,"y":1.3522,"z":-88.7901},"rot":{"x":0.0208,"y":270,"z":0.0168}},"404410":{"lock":false,"pos":{"x":52.9442,"y":1.3655,"z":-54.3203},"rot":{"x":0.0208,"y":270.0014,"z":0.0168}},"423ea2":{"lock":false,"pos":{"x":52.9442,"y":1.3648,"z":-56.6203},"rot":{"x":0.0208,"y":269.9998,"z":0.0168}},"488fab":{"lock":false,"pos":{"x":44.229,"y":1.3603,"z":-61.2008},"rot":{"x":0.0208,"y":269.9998,"z":0.0168}},"53eaa9":{"lock":false,"pos":{"x":40.6759,"y":1.3577,"z":-65.8127},"rot":{"x":0.0208,"y":269.9998,"z":0.0168}},"552689":{"lock":false,"pos":{"x":58.0997,"y":1.368,"z":-52.071},"rot":{"x":0.0208,"y":269.971,"z":0.0168}},"562c05":{"lock":false,"pos":{"x":44.2289,"y":1.3569,"z":-72.7007},"rot":{"x":0.0208,"y":269.9997,"z":0.0168}},"5bdc77":{"lock":false,"pos":{"x":40.6759,"y":1.357,"z":-68.1127},"rot":{"x":0.0208,"y":270,"z":0.0168}},"5f8011":{"lock":false,"pos":{"x":44.229,"y":1.3556,"z":-77.3007},"rot":{"x":0.0208,"y":269.9976,"z":0.0168}},"659f2d":{"lock":false,"pos":{"x":40.6759,"y":1.361,"z":-54.3129},"rot":{"x":0.0208,"y":269.9998,"z":0.0168}},"683123":{"lock":false,"pos":{"x":44.229,"y":1.3596,"z":-63.5009},"rot":{"x":0.0208,"y":269.9998,"z":0.0168}},"6f6976":{"lock":false,"pos":{"x":52.9442,"y":1.3621,"z":-65.8202},"rot":{"x":0.0208,"y":269.9998,"z":0.0168}},"6fab5a":{"lock":false,"pos":{"x":40.6758,"y":1.3543,"z":-77.3127},"rot":{"x":0.0208,"y":269.9997,"z":0.0168}},"791d5f":{"lock":false,"pos":{"x":52.9442,"y":1.3628,"z":-63.5203},"rot":{"x":0.0208,"y":269.9999,"z":0.0168}},"8343e5":{"lock":false,"pos":{"x":44.229,"y":1.363,"z":-52.0008},"rot":{"x":0.0208,"y":269.9998,"z":0.0168}},"8b1863":{"lock":false,"pos":{"x":44.229,"y":1.3617,"z":-56.6008},"rot":{"x":0.0208,"y":269.9998,"z":0.0168}},"8cdfc7":{"lock":false,"pos":{"x":44.229,"y":1.3623,"z":-54.3008},"rot":{"x":0.0208,"y":269.9998,"z":0.0168}},"96ec75":{"lock":false,"pos":{"x":40.6759,"y":1.3556,"z":-72.7127},"rot":{"x":0.0208,"y":269.9998,"z":0.0168}},"97ed44":{"lock":false,"pos":{"x":52.9442,"y":1.3675,"z":-47.4203},"rot":{"x":0.0208,"y":269.9998,"z":0.0168}},"a641de":{"lock":false,"pos":{"x":52.9442,"y":1.3614,"z":-68.1202},"rot":{"x":0.0208,"y":269.9998,"z":0.0168}},"add7c9":{"lock":false,"pos":{"x":44.229,"y":1.3643,"z":-47.4008},"rot":{"x":0.0208,"y":269.9714,"z":0.0168}},"b63277":{"lock":false,"pos":{"x":40.6992,"y":1.359,"z":-61.2127},"rot":{"x":0.0208,"y":269.9997,"z":0.0168}},"b722cd":{"lock":false,"pos":{"x":40.6759,"y":1.3597,"z":-58.9129},"rot":{"x":0.0208,"y":269.9996,"z":0.0168}},"b98ff6":{"lock":false,"pos":{"x":52.9442,"y":1.3608,"z":-70.4202},"rot":{"x":0.0208,"y":269.9998,"z":0.0168}},"bc498d":{"lock":false,"pos":{"x":44.229,"y":1.361,"z":-58.9008},"rot":{"x":0.0208,"y":269.9998,"z":0.0168}},"bc868c":{"lock":false,"pos":{"x":40.6758,"y":1.355,"z":-75.0128},"rot":{"x":0.0208,"y":269.9995,"z":0.0168}},"bdbca5":{"lock":false,"pos":{"x":52.9442,"y":1.3601,"z":-72.7203},"rot":{"x":0.0208,"y":269.9998,"z":0.0168}},"c8716d":{"lock":false,"pos":{"x":40.6759,"y":1.3563,"z":-70.4127},"rot":{"x":0.0208,"y":269.9997,"z":0.0168}},"cffeb0":{"lock":false,"pos":{"x":44.2289,"y":1.3536,"z":-84.2007},"rot":{"x":0.0208,"y":269.9998,"z":0.0168}},"d391c7":{"lock":false,"pos":{"x":52.9442,"y":1.3641,"z":-58.9203},"rot":{"x":0.0208,"y":269.9998,"z":0.0168}},"d86b0d":{"lock":false,"pos":{"x":44.229,"y":1.3576,"z":-70.4007},"rot":{"x":0.0208,"y":269.9998,"z":0.0168}},"dde850":{"lock":false,"pos":{"x":40.6759,"y":1.3631,"z":-47.4129},"rot":{"x":0.0208,"y":270.0004,"z":0.0168}},"e0721f":{"lock":false,"pos":{"x":58.0997,"y":1.3687,"z":-49.771},"rot":{"x":0.0208,"y":269.9998,"z":0.0168}},"e07aab":{"lock":false,"pos":{"x":52.9442,"y":1.3594,"z":-75.0203},"rot":{"x":0.0208,"y":270.0149,"z":0.0168}},"e4ceae":{"lock":false,"pos":{"x":44.229,"y":1.359,"z":-65.8007},"rot":{"x":0.0208,"y":269.9998,"z":0.0168}},"e50ca0":{"lock":false,"pos":{"x":44.229,"y":1.3637,"z":-49.7008},"rot":{"x":0.0208,"y":270.006,"z":0.0168}},"e87c2d":{"lock":false,"pos":{"x":40.6759,"y":1.3624,"z":-49.7128},"rot":{"x":0.0208,"y":270.0005,"z":0.0168}},"ebf4c0":{"lock":false,"pos":{"x":40.6759,"y":1.3583,"z":-63.5129},"rot":{"x":0.0208,"y":269.9998,"z":0.0168}},"ef2ecd":{"lock":false,"pos":{"x":44.229,"y":1.3529,"z":-86.5006},"rot":{"x":0.0208,"y":269.9999,"z":0.0168}},"f22453":{"lock":false,"pos":{"x":52.9442,"y":1.3668,"z":-49.7203},"rot":{"x":0.0208,"y":269.9998,"z":0.0168}},"f86ed0":{"lock":false,"pos":{"x":40.6759,"y":1.3617,"z":-52.0128},"rot":{"x":0.0208,"y":270.0005,"z":0.0168}},"fc5406":{"lock":false,"pos":{"x":44.213,"y":1.3516,"z":-91.0974},"rot":{"x":0.0208,"y":269.9998,"z":0.0168}}}}' +MaterialIndex: -1 +MeshIndex: -1 +Name: Custom_Model_Bag +Nickname: Seeker +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 66.29914 + posY: 1.671851 + posZ: -69.35671 + rotX: 0.0192137826 + rotY: 270.02063 + rotZ: 0.00975898 + scaleX: 1.2 + scaleY: 1.2 + scaleZ: 1.2 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker cb4f32/Custom_Model_Bag Seeker 3afb92/Card Abigail Foreman (4) b63277.yaml b/unpacked/Custom_Model_Bag Seeker cb4f32/Custom_Model_Bag Seeker 3afb92/Card Abigail Foreman (4) b63277.yaml new file mode 100644 index 000000000..a5c2a9710 --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker cb4f32/Custom_Model_Bag Seeker 3afb92/Card Abigail Foreman (4) b63277.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Library Intern +GMNotes: '' +GUID: b63277 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Abigail Foreman (4) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 40.69918 + posY: 1.35902238 + posZ: -61.2126923 + rotX: 0.0208095517 + rotY: 269.9997 + rotZ: 0.0167705938 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker cb4f32/Custom_Model_Bag Seeker 3afb92/Card Ancient Stone (1) 8b1863.yaml b/unpacked/Custom_Model_Bag Seeker cb4f32/Custom_Model_Bag Seeker 3afb92/Card Ancient Stone (1) 8b1863.yaml new file mode 100644 index 000000000..d31b7eca5 --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker cb4f32/Custom_Model_Bag Seeker 3afb92/Card Ancient Stone (1) 8b1863.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 291539 +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 + UniqueBack: false +Description: Unidentified +GMNotes: '' +GUID: 8b1863 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Ancient Stone (1) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.229 + posY: 1.36165428 + posZ: -56.6008 + rotX: 0.0208092611 + rotY: 269.9998 + rotZ: 0.016770646 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker cb4f32/Custom_Model_Bag Seeker 3afb92/Card Ancient Stone (4) 96ec75.yaml b/unpacked/Custom_Model_Bag Seeker cb4f32/Custom_Model_Bag Seeker 3afb92/Card Ancient Stone (4) 96ec75.yaml new file mode 100644 index 000000000..ffd5c1aa7 --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker cb4f32/Custom_Model_Bag Seeker 3afb92/Card Ancient Stone (4) 96ec75.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Minds in Harmony +GMNotes: '' +GUID: 96ec75 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Ancient Stone (4) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 40.67587 + posY: 1.3556478 + posZ: -72.71273 + rotX: 0.0208093431 + rotY: 269.999756 + rotZ: 0.016770592 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker cb4f32/Custom_Model_Bag Seeker 3afb92/Card Ancient Stone (4) bc868c.yaml b/unpacked/Custom_Model_Bag Seeker cb4f32/Custom_Model_Bag Seeker 3afb92/Card Ancient Stone (4) bc868c.yaml new file mode 100644 index 000000000..3b5fa7c61 --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker cb4f32/Custom_Model_Bag Seeker 3afb92/Card Ancient Stone (4) bc868c.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Knowledge of the Elders +GMNotes: '' +GUID: bc868c +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Ancient Stone (4) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 40.6758461 + posY: 1.35497451 + posZ: -75.01276 + rotX: 0.02080933 + rotY: 269.999542 + rotZ: 0.0167687479 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker cb4f32/Custom_Model_Bag Seeker 3afb92/Card Arcane Insight (4) 6fab5a.yaml b/unpacked/Custom_Model_Bag Seeker cb4f32/Custom_Model_Bag Seeker 3afb92/Card Arcane Insight (4) 6fab5a.yaml new file mode 100644 index 000000000..3da454fb7 --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker cb4f32/Custom_Model_Bag Seeker 3afb92/Card Arcane Insight (4) 6fab5a.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 291559 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 6fab5a +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Arcane Insight (4) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 40.67585 + posY: 1.35430133 + posZ: -77.31266 + rotX: 0.02080912 + rotY: 269.999664 + rotZ: 0.0167693142 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker cb4f32/Custom_Model_Bag Seeker 3afb92/Card Archaic Glyphs (3) 3c0d81.yaml b/unpacked/Custom_Model_Bag Seeker cb4f32/Custom_Model_Bag Seeker 3afb92/Card Archaic Glyphs (3) 3c0d81.yaml new file mode 100644 index 000000000..1a880fd2e --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker cb4f32/Custom_Model_Bag Seeker 3afb92/Card Archaic Glyphs (3) 3c0d81.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Markings of Isis +GMNotes: '' +GUID: 3c0d81 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Archaic Glyphs (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.213192 + posY: 1.35222638 + posZ: -88.79009 + rotX: 0.0208074674 + rotY: 270.0 + rotZ: 0.0167700667 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker cb4f32/Custom_Model_Bag Seeker 3afb92/Card Archaic Glyphs (3) ef2ecd.yaml b/unpacked/Custom_Model_Bag Seeker cb4f32/Custom_Model_Bag Seeker 3afb92/Card Archaic Glyphs (3) ef2ecd.yaml new file mode 100644 index 000000000..39e170744 --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker cb4f32/Custom_Model_Bag Seeker 3afb92/Card Archaic Glyphs (3) ef2ecd.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 291552 +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 + UniqueBack: false +Description: Guiding Stones +GMNotes: '' +GUID: ef2ecd +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Archaic Glyphs (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.22901 + posY: 1.35290229 + posZ: -86.50065 + rotX: 0.0208075941 + rotY: 269.999939 + rotZ: 0.0167702716 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker cb4f32/Custom_Model_Bag Seeker 3afb92/Card Archaic Glyphs (3) fc5406.yaml b/unpacked/Custom_Model_Bag Seeker cb4f32/Custom_Model_Bag Seeker 3afb92/Card Archaic Glyphs (3) fc5406.yaml new file mode 100644 index 000000000..88c706ed5 --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker cb4f32/Custom_Model_Bag Seeker 3afb92/Card Archaic Glyphs (3) fc5406.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 291553 +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 + UniqueBack: false +Description: Prophecy Foretold +GMNotes: '' +GUID: fc5406 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Archaic Glyphs (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.21302 + posY: 1.35155094 + posZ: -91.09742 + rotX: 0.0208076444 + rotY: 269.999756 + rotZ: 0.01677008 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker cb4f32/Custom_Model_Bag Seeker 3afb92/Card Barricade (3) 3469e0.yaml b/unpacked/Custom_Model_Bag Seeker cb4f32/Custom_Model_Bag Seeker 3afb92/Card Barricade (3) 3469e0.yaml new file mode 100644 index 000000000..8bc7dc426 --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker cb4f32/Custom_Model_Bag Seeker 3afb92/Card Barricade (3) 3469e0.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 291551 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 3469e0 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Barricade (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 52.9442 + posY: 1.36346734 + posZ: -61.2203 + rotX: 0.0208092034 + rotY: 269.999756 + rotZ: 0.0167704988 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker cb4f32/Custom_Model_Bag Seeker 3afb92/Card Cryptic Research (4) 791d5f.yaml b/unpacked/Custom_Model_Bag Seeker cb4f32/Custom_Model_Bag Seeker 3afb92/Card Cryptic Research (4) 791d5f.yaml new file mode 100644 index 000000000..710bd3e64 --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker cb4f32/Custom_Model_Bag Seeker 3afb92/Card Cryptic Research (4) 791d5f.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 291557 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 791d5f +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Cryptic Research (4) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 52.9442062 + posY: 1.362794 + posZ: -63.5202942 + rotX: 0.0208092257 + rotY: 269.999939 + rotZ: 0.0167707112 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker cb4f32/Custom_Model_Bag Seeker 3afb92/Card Death • XIII (1) add7c9.yaml b/unpacked/Custom_Model_Bag Seeker cb4f32/Custom_Model_Bag Seeker 3afb92/Card Death • XIII (1) add7c9.yaml new file mode 100644 index 000000000..7a67a9928 --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker cb4f32/Custom_Model_Bag Seeker 3afb92/Card Death • XIII (1) add7c9.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Free from the Past +GMNotes: '' +GUID: add7c9 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: "Death \u2022 XIII (1)" +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.229 + posY: 1.36434734 + posZ: -47.4008 + rotX: 0.02081765 + rotY: 269.971375 + rotZ: 0.01676029 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker cb4f32/Custom_Model_Bag Seeker 3afb92/Card Deciphered Reality (5) b98ff6.yaml b/unpacked/Custom_Model_Bag Seeker cb4f32/Custom_Model_Bag Seeker 3afb92/Card Deciphered Reality (5) b98ff6.yaml new file mode 100644 index 000000000..6d49535ac --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker cb4f32/Custom_Model_Bag Seeker 3afb92/Card Deciphered Reality (5) b98ff6.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 291560 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: b98ff6 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Deciphered Reality (5) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 52.9442 + posY: 1.3607744 + posZ: -70.4202 + rotX: 0.0208092183 + rotY: 269.999756 + rotZ: 0.016770646 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker cb4f32/Custom_Model_Bag Seeker 3afb92/Card Deduction (2) e0721f.yaml b/unpacked/Custom_Model_Bag Seeker cb4f32/Custom_Model_Bag Seeker 3afb92/Card Deduction (2) e0721f.yaml new file mode 100644 index 000000000..f3cfa8440 --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker cb4f32/Custom_Model_Bag Seeker 3afb92/Card Deduction (2) e0721f.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 291542 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: e0721f +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Deduction (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 58.09968 + posY: 1.36869109 + posZ: -49.77095 + rotX: 0.0208095964 + rotY: 269.999756 + rotZ: 0.01677293 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker cb4f32/Custom_Model_Bag Seeker 3afb92/Card Disc of Itzamna (2) 117137.yaml b/unpacked/Custom_Model_Bag Seeker cb4f32/Custom_Model_Bag Seeker 3afb92/Card Disc of Itzamna (2) 117137.yaml new file mode 100644 index 000000000..e26ef4bdc --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker cb4f32/Custom_Model_Bag Seeker 3afb92/Card Disc of Itzamna (2) 117137.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 291548 +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 + UniqueBack: false +Description: Protective Amulet +GMNotes: '' +GUID: '117137' +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Disc of Itzamna (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.2289 + posY: 1.35626841 + posZ: -75.0008 + rotX: 0.0208092853 + rotY: 269.999725 + rotZ: 0.0167705 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker cb4f32/Custom_Model_Bag Seeker 3afb92/Card Dream Diary (3) dde850.yaml b/unpacked/Custom_Model_Bag Seeker cb4f32/Custom_Model_Bag Seeker 3afb92/Card Dream Diary (3) dde850.yaml new file mode 100644 index 000000000..e7e19f799 --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker cb4f32/Custom_Model_Bag Seeker 3afb92/Card Dream Diary (3) dde850.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Dreams of an Explorer +GMNotes: '' +GUID: dde850 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Dream Diary (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 40.67588 + posY: 1.36305332 + posZ: -47.4128571 + rotX: 0.02080913 + rotY: 270.000427 + rotZ: 0.0167709645 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker cb4f32/Custom_Model_Bag Seeker 3afb92/Card Dream Diary (3) e87c2d.yaml b/unpacked/Custom_Model_Bag Seeker cb4f32/Custom_Model_Bag Seeker 3afb92/Card Dream Diary (3) e87c2d.yaml new file mode 100644 index 000000000..2ceaf56dd --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker cb4f32/Custom_Model_Bag Seeker 3afb92/Card Dream Diary (3) e87c2d.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Dreams of a Madman +GMNotes: '' +GUID: e87c2d +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Dream Diary (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 40.67588 + posY: 1.36238015 + posZ: -49.7128448 + rotX: 0.0208089836 + rotY: 270.000519 + rotZ: 0.0167705044 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker cb4f32/Custom_Model_Bag Seeker 3afb92/Card Dream Diary (3) f86ed0.yaml b/unpacked/Custom_Model_Bag Seeker cb4f32/Custom_Model_Bag Seeker 3afb92/Card Dream Diary (3) f86ed0.yaml new file mode 100644 index 000000000..3cfc0b3bd --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker cb4f32/Custom_Model_Bag Seeker 3afb92/Card Dream Diary (3) f86ed0.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Dreams of a Child +GMNotes: '' +GUID: f86ed0 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Dream Diary (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 40.67588 + posY: 1.36170685 + posZ: -52.0128479 + rotX: 0.0208092928 + rotY: 270.000549 + rotZ: 0.016770808 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker cb4f32/Custom_Model_Bag Seeker 3afb92/Card Eidetic Memory (3) 423ea2.yaml b/unpacked/Custom_Model_Bag Seeker cb4f32/Custom_Model_Bag Seeker 3afb92/Card Eidetic Memory (3) 423ea2.yaml new file mode 100644 index 000000000..e4199a1b0 --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker cb4f32/Custom_Model_Bag Seeker 3afb92/Card Eidetic Memory (3) 423ea2.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 291550 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 423ea2 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Eidetic Memory (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 52.9442 + posY: 1.3648138 + posZ: -56.6203 + rotX: 0.0208094586 + rotY: 269.999756 + rotZ: 0.0167709 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker cb4f32/Custom_Model_Bag Seeker 3afb92/Card Encyclopedia (2) d86b0d.yaml b/unpacked/Custom_Model_Bag Seeker cb4f32/Custom_Model_Bag Seeker 3afb92/Card Encyclopedia (2) d86b0d.yaml new file mode 100644 index 000000000..5ac3d8daf --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker cb4f32/Custom_Model_Bag Seeker 3afb92/Card Encyclopedia (2) d86b0d.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 291546 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: d86b0d +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Encyclopedia (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.229 + posY: 1.357615 + posZ: -70.4007 + rotX: 0.02080922 + rotY: 269.999756 + rotZ: 0.0167706851 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker cb4f32/Custom_Model_Bag Seeker 3afb92/Card Esoteric Atlas (1) e50ca0.yaml b/unpacked/Custom_Model_Bag Seeker cb4f32/Custom_Model_Bag Seeker 3afb92/Card Esoteric Atlas (1) e50ca0.yaml new file mode 100644 index 000000000..cfab72b41 --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker cb4f32/Custom_Model_Bag Seeker 3afb92/Card Esoteric Atlas (1) e50ca0.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: e50ca0 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Esoteric Atlas (1) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.229 + posY: 1.36367416 + posZ: -49.7008 + rotX: 0.0208075177 + rotY: 270.006 + rotZ: 0.0167730786 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker cb4f32/Custom_Model_Bag Seeker 3afb92/Card Expose Weakness (1) 97ed44.yaml b/unpacked/Custom_Model_Bag Seeker cb4f32/Custom_Model_Bag Seeker 3afb92/Card Expose Weakness (1) 97ed44.yaml new file mode 100644 index 000000000..54c8052ec --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker cb4f32/Custom_Model_Bag Seeker 3afb92/Card Expose Weakness (1) 97ed44.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 291535 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 97ed44 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Expose Weakness (1) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 52.9442 + posY: 1.36750674 + posZ: -47.4203 + rotX: 0.0208092332 + rotY: 269.999756 + rotZ: 0.01677052 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker cb4f32/Custom_Model_Bag Seeker 3afb92/Card Expose Weakness (3) d391c7.yaml b/unpacked/Custom_Model_Bag Seeker cb4f32/Custom_Model_Bag Seeker 3afb92/Card Expose Weakness (3) d391c7.yaml new file mode 100644 index 000000000..9782ecb37 --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker cb4f32/Custom_Model_Bag Seeker 3afb92/Card Expose Weakness (3) d391c7.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: d391c7 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Expose Weakness (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 52.9442 + posY: 1.36414063 + posZ: -58.9203 + rotX: 0.020809127 + rotY: 269.999756 + rotZ: 0.0167707875 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker cb4f32/Custom_Model_Bag Seeker 3afb92/Card Extensive Research (1) e07aab.yaml b/unpacked/Custom_Model_Bag Seeker cb4f32/Custom_Model_Bag Seeker 3afb92/Card Extensive Research (1) e07aab.yaml new file mode 100644 index 000000000..d2e1b453c --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker cb4f32/Custom_Model_Bag Seeker 3afb92/Card Extensive Research (1) e07aab.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Insight. +GMNotes: '' +GUID: e07aab +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Extensive Research (1) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 52.9442 + posY: 1.35942793 + posZ: -75.0203 + rotX: 0.0208050366 + rotY: 270.0149 + rotZ: 0.0167761 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker cb4f32/Custom_Model_Bag Seeker 3afb92/Card Feed the Mind (3) 659f2d.yaml b/unpacked/Custom_Model_Bag Seeker cb4f32/Custom_Model_Bag Seeker 3afb92/Card Feed the Mind (3) 659f2d.yaml new file mode 100644 index 000000000..38d140024 --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker cb4f32/Custom_Model_Bag Seeker 3afb92/Card Feed the Mind (3) 659f2d.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 659f2d +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Feed the Mind (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 40.6759 + posY: 1.36103368 + posZ: -54.3129 + rotX: 0.0208093245 + rotY: 269.9998 + rotZ: 0.0167705081 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker cb4f32/Custom_Model_Bag Seeker 3afb92/Card Forewarned (1) f22453.yaml b/unpacked/Custom_Model_Bag Seeker cb4f32/Custom_Model_Bag Seeker 3afb92/Card Forewarned (1) f22453.yaml new file mode 100644 index 000000000..4de299667 --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker cb4f32/Custom_Model_Bag Seeker 3afb92/Card Forewarned (1) f22453.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 291536 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: f22453 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Forewarned (1) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 52.9442 + posY: 1.36683357 + posZ: -49.7203 + rotX: 0.0208092723 + rotY: 269.999756 + rotZ: 0.0167705938 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker cb4f32/Custom_Model_Bag Seeker 3afb92/Card Glimpse the Unthinkable (5) bdbca5.yaml b/unpacked/Custom_Model_Bag Seeker cb4f32/Custom_Model_Bag Seeker 3afb92/Card Glimpse the Unthinkable (5) bdbca5.yaml new file mode 100644 index 000000000..101f65a9a --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker cb4f32/Custom_Model_Bag Seeker 3afb92/Card Glimpse the Unthinkable (5) bdbca5.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: bdbca5 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Glimpse the Unthinkable (5) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 52.9442 + posY: 1.3601011 + posZ: -72.7203 + rotX: 0.0208093766 + rotY: 269.999756 + rotZ: 0.0167706087 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker cb4f32/Custom_Model_Bag Seeker 3afb92/Card Grisly Totem (3) b722cd.yaml b/unpacked/Custom_Model_Bag Seeker cb4f32/Custom_Model_Bag Seeker 3afb92/Card Grisly Totem (3) b722cd.yaml new file mode 100644 index 000000000..656b88fd3 --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker cb4f32/Custom_Model_Bag Seeker 3afb92/Card Grisly Totem (3) b722cd.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Seeker +GMNotes: '' +GUID: b722cd +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Grisly Totem (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 40.67588 + posY: 1.35968709 + posZ: -58.9128647 + rotX: 0.02080939 + rotY: 269.999634 + rotZ: 0.016770117 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker cb4f32/Custom_Model_Bag Seeker 3afb92/Card Higher Education (3) 0d3413.yaml b/unpacked/Custom_Model_Bag Seeker cb4f32/Custom_Model_Bag Seeker 3afb92/Card Higher Education (3) 0d3413.yaml new file mode 100644 index 000000000..de5d18e9e --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker cb4f32/Custom_Model_Bag Seeker 3afb92/Card Higher Education (3) 0d3413.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 291549 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 0d3413 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Higher Education (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.229 + posY: 1.354922 + posZ: -79.6007 + rotX: 0.02080931 + rotY: 269.999756 + rotZ: 0.0167705584 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker cb4f32/Custom_Model_Bag Seeker 3afb92/Card Hyperawareness (2) e4ceae.yaml b/unpacked/Custom_Model_Bag Seeker cb4f32/Custom_Model_Bag Seeker 3afb92/Card Hyperawareness (2) e4ceae.yaml new file mode 100644 index 000000000..32e01e2fe --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker cb4f32/Custom_Model_Bag Seeker 3afb92/Card Hyperawareness (2) e4ceae.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 291544 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: e4ceae +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Hyperawareness (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.229 + posY: 1.35896146 + posZ: -65.8007 + rotX: 0.0208093654 + rotY: 269.999756 + rotZ: 0.016770497 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker cb4f32/Custom_Model_Bag Seeker 3afb92/Card In the Know (1) 488fab.yaml b/unpacked/Custom_Model_Bag Seeker cb4f32/Custom_Model_Bag Seeker 3afb92/Card In the Know (1) 488fab.yaml new file mode 100644 index 000000000..2fc384bb5 --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker cb4f32/Custom_Model_Bag Seeker 3afb92/Card In the Know (1) 488fab.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 291540 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 488fab +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: In the Know (1) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.229 + posY: 1.36030781 + posZ: -61.2008 + rotX: 0.0208092555 + rotY: 269.9998 + rotZ: 0.0167706776 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker cb4f32/Custom_Model_Bag Seeker 3afb92/Card Logical Reasoning (4) 6f6976.yaml b/unpacked/Custom_Model_Bag Seeker cb4f32/Custom_Model_Bag Seeker 3afb92/Card Logical Reasoning (4) 6f6976.yaml new file mode 100644 index 000000000..3c771002c --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker cb4f32/Custom_Model_Bag Seeker 3afb92/Card Logical Reasoning (4) 6f6976.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 6f6976 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Logical Reasoning (4) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 52.9442 + posY: 1.36212087 + posZ: -65.8202 + rotX: 0.0208093561 + rotY: 269.999756 + rotZ: 0.0167707913 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker cb4f32/Custom_Model_Bag Seeker 3afb92/Card Magnifying Glass (1) 8343e5.yaml b/unpacked/Custom_Model_Bag Seeker cb4f32/Custom_Model_Bag Seeker 3afb92/Card Magnifying Glass (1) 8343e5.yaml new file mode 100644 index 000000000..def1d6a6e --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker cb4f32/Custom_Model_Bag Seeker 3afb92/Card Magnifying Glass (1) 8343e5.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 291537 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 8343e5 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Magnifying Glass (1) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.229 + posY: 1.36300087 + posZ: -52.0008 + rotX: 0.0208093245 + rotY: 269.999847 + rotZ: 0.016770741 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker cb4f32/Custom_Model_Bag Seeker 3afb92/Card No Stone Unturned (5) a641de.yaml b/unpacked/Custom_Model_Bag Seeker cb4f32/Custom_Model_Bag Seeker 3afb92/Card No Stone Unturned (5) a641de.yaml new file mode 100644 index 000000000..95aaf02fc --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker cb4f32/Custom_Model_Bag Seeker 3afb92/Card No Stone Unturned (5) a641de.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 291558 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: a641de +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: No Stone Unturned (5) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 52.9441872 + posY: 1.36144757 + posZ: -68.12021 + rotX: 0.0208099671 + rotY: 269.999847 + rotZ: 0.0167733449 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker cb4f32/Custom_Model_Bag Seeker 3afb92/Card Old Book of Lore (3) 0d88ac.yaml b/unpacked/Custom_Model_Bag Seeker cb4f32/Custom_Model_Bag Seeker 3afb92/Card Old Book of Lore (3) 0d88ac.yaml new file mode 100644 index 000000000..354fb9160 --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker cb4f32/Custom_Model_Bag Seeker 3afb92/Card Old Book of Lore (3) 0d88ac.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Item. Tome. +GMNotes: '' +GUID: 0d88ac +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Old Book of Lore (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 40.6908722 + posY: 1.36036587 + posZ: -56.61296 + rotX: 0.0208174456 + rotY: 269.971558 + rotZ: 0.0167602785 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker cb4f32/Custom_Model_Bag Seeker 3afb92/Card Otherworld Codex (2) 5f8011.yaml b/unpacked/Custom_Model_Bag Seeker cb4f32/Custom_Model_Bag Seeker 3afb92/Card Otherworld Codex (2) 5f8011.yaml new file mode 100644 index 000000000..2fe1d6561 --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker cb4f32/Custom_Model_Bag Seeker 3afb92/Card Otherworld Codex (2) 5f8011.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 5f8011 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Otherworld Codex (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.229 + posY: 1.35559523 + posZ: -77.3007 + rotX: 0.020809995 + rotY: 269.9976 + rotZ: 0.0167697631 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker cb4f32/Custom_Model_Bag Seeker 3afb92/Card Otherworldly Compass (2) 562c05.yaml b/unpacked/Custom_Model_Bag Seeker cb4f32/Custom_Model_Bag Seeker 3afb92/Card Otherworldly Compass (2) 562c05.yaml new file mode 100644 index 000000000..1dc6c4b77 --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker cb4f32/Custom_Model_Bag Seeker 3afb92/Card Otherworldly Compass (2) 562c05.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 291547 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 562c05 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Otherworldly Compass (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.2289 + posY: 1.3569417 + posZ: -72.7007 + rotX: 0.0208093412 + rotY: 269.9997 + rotZ: 0.0167707466 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker cb4f32/Custom_Model_Bag Seeker 3afb92/Card Pathfinder (1) 683123.yaml b/unpacked/Custom_Model_Bag Seeker cb4f32/Custom_Model_Bag Seeker 3afb92/Card Pathfinder (1) 683123.yaml new file mode 100644 index 000000000..dab11cf9a --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker cb4f32/Custom_Model_Bag Seeker 3afb92/Card Pathfinder (1) 683123.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 291541 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: '683123' +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Pathfinder (1) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.229 + posY: 1.35963464 + posZ: -63.5009 + rotX: 0.0208092015 + rotY: 269.999756 + rotZ: 0.0167702325 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker cb4f32/Custom_Model_Bag Seeker 3afb92/Card Pnakotic Manuscripts (5) 300569.yaml b/unpacked/Custom_Model_Bag Seeker cb4f32/Custom_Model_Bag Seeker 3afb92/Card Pnakotic Manuscripts (5) 300569.yaml new file mode 100644 index 000000000..e56fa49c5 --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker cb4f32/Custom_Model_Bag Seeker 3afb92/Card Pnakotic Manuscripts (5) 300569.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Mind-Expanding Ideas +GMNotes: '' +GUID: '300569' +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Pnakotic Manuscripts (5) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 40.6759872 + posY: 1.35362816 + posZ: -79.6126251 + rotX: 0.0208090022 + rotY: 269.9998 + rotZ: 0.0167693626 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker cb4f32/Custom_Model_Bag Seeker 3afb92/Card Preposterous Sketches (2) 15a1bb.yaml b/unpacked/Custom_Model_Bag Seeker cb4f32/Custom_Model_Bag Seeker 3afb92/Card Preposterous Sketches (2) 15a1bb.yaml new file mode 100644 index 000000000..c1e66bfeb --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker cb4f32/Custom_Model_Bag Seeker 3afb92/Card Preposterous Sketches (2) 15a1bb.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 436906 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '4369': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025943833/DE98A03934DF8FF5B3CF6C53143B15BFC3ED7341/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 15a1bb +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Preposterous Sketches (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 52.9442 + posY: 1.36616027 + posZ: -52.0203 + rotX: 0.0208085757 + rotY: 270.00238 + rotZ: 0.0167714152 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker cb4f32/Custom_Model_Bag Seeker 3afb92/Card Quick Study (2) 26d70e.yaml b/unpacked/Custom_Model_Bag Seeker cb4f32/Custom_Model_Bag Seeker 3afb92/Card Quick Study (2) 26d70e.yaml new file mode 100644 index 000000000..c4d87ef8d --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker cb4f32/Custom_Model_Bag Seeker 3afb92/Card Quick Study (2) 26d70e.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 291545 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 26d70e +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Quick Study (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.229 + posY: 1.35828817 + posZ: -68.1007 + rotX: 0.0208092779 + rotY: 269.9997 + rotZ: 0.0167706758 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker cb4f32/Custom_Model_Bag Seeker 3afb92/Card Scientific Theory (1) 8cdfc7.yaml b/unpacked/Custom_Model_Bag Seeker cb4f32/Custom_Model_Bag Seeker 3afb92/Card Scientific Theory (1) 8cdfc7.yaml new file mode 100644 index 000000000..cdd62295a --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker cb4f32/Custom_Model_Bag Seeker 3afb92/Card Scientific Theory (1) 8cdfc7.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 291538 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 8cdfc7 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Scientific Theory (1) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.229 + posY: 1.36232769 + posZ: -54.3008 + rotX: 0.0208093 + rotY: 269.9998 + rotZ: 0.01677047 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker cb4f32/Custom_Model_Bag Seeker 3afb92/Card Scroll of Secrets (3) cffeb0.yaml b/unpacked/Custom_Model_Bag Seeker cb4f32/Custom_Model_Bag Seeker 3afb92/Card Scroll of Secrets (3) cffeb0.yaml new file mode 100644 index 000000000..e3ce5b845 --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker cb4f32/Custom_Model_Bag Seeker 3afb92/Card Scroll of Secrets (3) cffeb0.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Seeker +GMNotes: '' +GUID: cffeb0 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Scroll of Secrets (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.2289 + posY: 1.35357547 + posZ: -84.2007 + rotX: 0.0208092462 + rotY: 269.999756 + rotZ: 0.01677093 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker cb4f32/Custom_Model_Bag Seeker 3afb92/Card Segment of Onyx (1) bc498d.yaml b/unpacked/Custom_Model_Bag Seeker cb4f32/Custom_Model_Bag Seeker 3afb92/Card Segment of Onyx (1) bc498d.yaml new file mode 100644 index 000000000..3583ce639 --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker cb4f32/Custom_Model_Bag Seeker 3afb92/Card Segment of Onyx (1) bc498d.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: bc498d +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Segment of Onyx (1) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.229 + posY: 1.36098111 + posZ: -58.9008 + rotX: 0.020809399 + rotY: 269.999817 + rotZ: 0.0167705473 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker cb4f32/Custom_Model_Bag Seeker 3afb92/Card Shortcut (2) 404410.yaml b/unpacked/Custom_Model_Bag Seeker cb4f32/Custom_Model_Bag Seeker 3afb92/Card Shortcut (2) 404410.yaml new file mode 100644 index 000000000..abc2c6dad --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker cb4f32/Custom_Model_Bag Seeker 3afb92/Card Shortcut (2) 404410.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 291543 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: '404410' +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Shortcut (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 52.9442 + posY: 1.3654871 + posZ: -54.3203 + rotX: 0.0208087955 + rotY: 270.001373 + rotZ: 0.016771052 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker cb4f32/Custom_Model_Bag Seeker 3afb92/Card Strange Solution (4) 53eaa9.yaml b/unpacked/Custom_Model_Bag Seeker cb4f32/Custom_Model_Bag Seeker 3afb92/Card Strange Solution (4) 53eaa9.yaml new file mode 100644 index 000000000..69edb9ae3 --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker cb4f32/Custom_Model_Bag Seeker 3afb92/Card Strange Solution (4) 53eaa9.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 291555 +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 + UniqueBack: false +Description: Acidic Ichor +GMNotes: '' +GUID: 53eaa9 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Strange Solution (4) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 40.6758728 + posY: 1.35766757 + posZ: -65.81272 + rotX: 0.0208091214 + rotY: 269.999756 + rotZ: 0.0167693682 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker cb4f32/Custom_Model_Bag Seeker 3afb92/Card Strange Solution (4) 5bdc77.yaml b/unpacked/Custom_Model_Bag Seeker cb4f32/Custom_Model_Bag Seeker 3afb92/Card Strange Solution (4) 5bdc77.yaml new file mode 100644 index 000000000..1587dccde --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker cb4f32/Custom_Model_Bag Seeker 3afb92/Card Strange Solution (4) 5bdc77.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 291556 +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 + UniqueBack: false +Description: Restorative Concoction +GMNotes: '' +GUID: 5bdc77 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Strange Solution (4) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 40.6758766 + posY: 1.35699427 + posZ: -68.1127243 + rotX: 0.020809 + rotY: 270.0 + rotZ: 0.01676929 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker cb4f32/Custom_Model_Bag Seeker 3afb92/Card Strange Solution (4) c8716d.yaml b/unpacked/Custom_Model_Bag Seeker cb4f32/Custom_Model_Bag Seeker 3afb92/Card Strange Solution (4) c8716d.yaml new file mode 100644 index 000000000..d9ccb5685 --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker cb4f32/Custom_Model_Bag Seeker 3afb92/Card Strange Solution (4) c8716d.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 436905 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '4369': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025943833/DE98A03934DF8FF5B3CF6C53143B15BFC3ED7341/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: Empowering Elixir +GMNotes: '' +GUID: c8716d +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Strange Solution (4) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 40.67587 + posY: 1.356321 + posZ: -70.41273 + rotX: 0.0208093 + rotY: 269.9997 + rotZ: 0.0167702343 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker cb4f32/Custom_Model_Bag Seeker 3afb92/Card Strange Solution (4) ebf4c0.yaml b/unpacked/Custom_Model_Bag Seeker cb4f32/Custom_Model_Bag Seeker 3afb92/Card Strange Solution (4) ebf4c0.yaml new file mode 100644 index 000000000..cf4048c9c --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker cb4f32/Custom_Model_Bag Seeker 3afb92/Card Strange Solution (4) ebf4c0.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 291554 +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 + UniqueBack: false +Description: Freezing Variant +GMNotes: '' +GUID: ebf4c0 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Strange Solution (4) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 40.6758728 + posY: 1.35834074 + posZ: -63.512867 + rotX: 0.020809032 + rotY: 269.999756 + rotZ: 0.0167705975 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker cb4f32/Custom_Model_Bag Seeker 3afb92/Card Studious (3) 384258.yaml b/unpacked/Custom_Model_Bag Seeker cb4f32/Custom_Model_Bag Seeker 3afb92/Card Studious (3) 384258.yaml new file mode 100644 index 000000000..2c7d255fb --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker cb4f32/Custom_Model_Bag Seeker 3afb92/Card Studious (3) 384258.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: '384258' +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Studious (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.231 + posY: 1.35424936 + posZ: -81.9009 + rotX: 0.0208093785 + rotY: 269.999664 + rotZ: 0.016770497 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker cb4f32/Custom_Model_Bag Seeker 3afb92/Card Surprising Find (1) 0d3d1a.yaml b/unpacked/Custom_Model_Bag Seeker cb4f32/Custom_Model_Bag Seeker 3afb92/Card Surprising Find (1) 0d3d1a.yaml new file mode 100644 index 000000000..0d169133a --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker cb4f32/Custom_Model_Bag Seeker 3afb92/Card Surprising Find (1) 0d3d1a.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Fortune. Research. +GMNotes: '' +GUID: 0d3d1a +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Surprising Find (1) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 58.09968 + posY: 1.36936426 + posZ: -47.4709625 + rotX: 0.02081102 + rotY: 269.9956 + rotZ: 0.016771229 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Seeker cb4f32/Custom_Model_Bag Seeker 3afb92/Card The Eye of Truth (5) 552689.yaml b/unpacked/Custom_Model_Bag Seeker cb4f32/Custom_Model_Bag Seeker 3afb92/Card The Eye of Truth (5) 552689.yaml new file mode 100644 index 000000000..95204bf8c --- /dev/null +++ b/unpacked/Custom_Model_Bag Seeker cb4f32/Custom_Model_Bag Seeker 3afb92/Card The Eye of Truth (5) 552689.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Spell. Practiced. +GMNotes: '' +GUID: '552689' +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: The Eye of Truth (5) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 58.09968 + posY: 1.36801779 + posZ: -52.0709534 + rotX: 0.0208177678 + rotY: 269.971 + rotZ: 0.0167619288 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 068ba0.ttslua b/unpacked/Custom_Model_Bag Survivor 068ba0.ttslua new file mode 100644 index 000000000..857093fb8 --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 068ba0.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,0,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 + 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=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,0,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,0,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,0,0}, height=350, width=750, + 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}, rotation={0,0,0}, height=350, width=800, + font_size=250, color={0,0,0}, font_color={1,1,1} + }) +-- self.createButton({ +-- label="Setup", click_function="buttonClick_setup", function_owner=self, +-- position={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.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 \ No newline at end of file diff --git a/unpacked/Custom_Model_Bag Survivor 068ba0.yaml b/unpacked/Custom_Model_Bag Survivor 068ba0.yaml new file mode 100644 index 000000000..51e6eb920 --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 068ba0.yaml @@ -0,0 +1,103 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +ContainedObjects: +- !include 'Custom_Model_Bag Survivor 068ba0/Card Brute Force (1) 93d418.yaml' +- !include 'Custom_Model_Bag Survivor 068ba0/Card Expeditious Retreat (1) a8f780.yaml' +- !include 'Custom_Model_Bag Survivor 068ba0/Card Sharp Vision (1) d051b3.yaml' +- !include 'Custom_Model_Bag Survivor 068ba0/Card Survival Instinct (2) a8218c.yaml' +- !include 'Custom_Model_Bag Survivor 068ba0/Card Stroke of Luck (2) 3c635c.yaml' +- !include 'Custom_Model_Bag Survivor 068ba0/Card Rise to the Occasion (3) 77b6b2.yaml' +- !include 'Custom_Model_Bag Survivor 068ba0/Card Devil''s Luck (1) c2a019.yaml' +- !include 'Custom_Model_Bag Survivor 068ba0/Card Lure (1) ac7359.yaml' +- !include 'Custom_Model_Bag Survivor 068ba0/Card A Test of Will (1) b0cb8c.yaml' +- !include 'Custom_Model_Bag Survivor 068ba0/Card Flare (1) 353d4e.yaml' +- !include 'Custom_Model_Bag Survivor 068ba0/Card A Chance Encounter (2) 4f7817.yaml' +- !include 'Custom_Model_Bag Survivor 068ba0/Card Lucky! (2) 190831.yaml' +- !include 'Custom_Model_Bag Survivor 068ba0/Card Lure (2) 06e14d.yaml' +- !include 'Custom_Model_Bag Survivor 068ba0/Card Close Call (2) 1fabe7.yaml' +- !include 'Custom_Model_Bag Survivor 068ba0/Card Fortune or Fate (2) 6ef1de.yaml' +- !include 'Custom_Model_Bag Survivor 068ba0/Card Oops! (2) 4c0449.yaml' +- !include 'Custom_Model_Bag Survivor 068ba0/Card Snare Trap (2) e32c1b.yaml' +- !include 'Custom_Model_Bag Survivor 068ba0/Card Against All Odds (2) 73e595.yaml' +- !include 'Custom_Model_Bag Survivor 068ba0/Card Nothing Left to Lose (3) e4a963.yaml' +- !include 'Custom_Model_Bag Survivor 068ba0/Card Bait and Switch (3) 84a867.yaml' +- !include 'Custom_Model_Bag Survivor 068ba0/Card Alter Fate (3) 0012ed.yaml' +- !include 'Custom_Model_Bag Survivor 068ba0/Card Infighting (3) 7a9704.yaml' +- !include 'Custom_Model_Bag Survivor 068ba0/Card Eucatastrophe (3) 7d0c7e.yaml' +- !include 'Custom_Model_Bag Survivor 068ba0/Card True Survivor (3) b74c47.yaml' +- !include 'Custom_Model_Bag Survivor 068ba0/Card Will to Survive (3) a263e2.yaml' +- !include 'Custom_Model_Bag Survivor 068ba0/Card Try and Try Again (3) d60500.yaml' +- !include 'Custom_Model_Bag Survivor 068ba0/Card Rabbit''s Foot (3) 6a6f9a.yaml' +- !include 'Custom_Model_Bag Survivor 068ba0/Card Nightmare Bauble (3) 7881f2.yaml' +- !include 'Custom_Model_Bag Survivor 068ba0/Card Scrapper (3) e56f25.yaml' +- !include 'Custom_Model_Bag Survivor 068ba0/Card Peter Sylvestre (2) 038a3a.yaml' +- !include 'Custom_Model_Bag Survivor 068ba0/Card Cornered (2) 3c29ae.yaml' +- !include 'Custom_Model_Bag Survivor 068ba0/Card Scavenging (2) c1be23.yaml' +- !include 'Custom_Model_Bag Survivor 068ba0/Card Newspaper (2) c54fd2.yaml' +- !include 'Custom_Model_Bag Survivor 068ba0/Card Lantern (2) 9fcffb.yaml' +- !include 'Custom_Model_Bag Survivor 068ba0/Card Gravedigger''s Shovel (2) e24027.yaml' +- !include 'Custom_Model_Bag Survivor 068ba0/Card Dig Deep (2) 11aa2c.yaml' +- !include 'Custom_Model_Bag Survivor 068ba0/Card Aquinnah (1) 26d107.yaml' +- !include 'Custom_Model_Bag Survivor 068ba0/Card Yaotl (1) 608472.yaml' +- !include 'Custom_Model_Bag Survivor 068ba0/Card Miss Doyle (1) 928e1e.yaml' +- !include 'Custom_Model_Bag Survivor 068ba0/Card Jessica Hyde (1) a0c0ae.yaml' +- !include 'Custom_Model_Bag Survivor 068ba0/Card Five of Pentacles (1) 071c48.yaml' +- !include 'Custom_Model_Bag Survivor 068ba0/Card Fire Extinguisher (1) 2a8b6a.yaml' +- !include 'Custom_Model_Bag Survivor 068ba0/Card Try and Try Again (1) 49e21a.yaml' +- !include 'Custom_Model_Bag Survivor 068ba0/Card Guiding Spirit (1) 8ff7ba.yaml' +- !include 'Custom_Model_Bag Survivor 068ba0/Card Plucky (1) 01f114.yaml' +- !include 'Custom_Model_Bag Survivor 068ba0/Card On Your Own (3) 7ab8d7.yaml' +- !include 'Custom_Model_Bag Survivor 068ba0/Card Grisly Totem (3) c580f5.yaml' +- !include 'Custom_Model_Bag Survivor 068ba0/Card Tennessee Sour Mash (3) cb2302.yaml' +- !include 'Custom_Model_Bag Survivor 068ba0/Card Old Hunting Rifle (3) 4aebc0.yaml' +- !include 'Custom_Model_Bag Survivor 068ba0/Card Aquinnah (3) 74a9a7.yaml' +- !include 'Custom_Model_Bag Survivor 068ba0/Custom_Model_Bag Survivor 550be2.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/952965722515960460/F43F63452854B10B416FDF3BF9EF3068E6E68F26/ + MaterialIndex: 3 + MeshURL: https://pastebin.com/raw/ALrYhQGb + NormalURL: '' + TypeIndex: 6 +Description: '' +GMNotes: '' +GUID: 068ba0 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: true +LuaScript: !include 'Custom_Model_Bag Survivor 068ba0.ttslua' +LuaScriptState: '{"ml":{"0012ed":{"lock":false,"pos":{"x":19.3437,"y":1.3459,"z":-79.5676},"rot":{"x":0.0208,"y":269.9998,"z":0.0168}},"01f114":{"lock":false,"pos":{"x":10.6297,"y":1.3876,"z":-47.3484},"rot":{"x":0.0208,"y":269.9998,"z":0.0168}},"038a3a":{"lock":false,"pos":{"x":10.6317,"y":1.3775,"z":-81.8482},"rot":{"x":0.0208,"y":269.9997,"z":0.0168}},"06e14d":{"lock":false,"pos":{"x":19.3437,"y":1.3513,"z":-61.1679},"rot":{"x":0.0208,"y":269.9999,"z":0.0168}},"071c48":{"lock":false,"pos":{"x":10.6297,"y":1.3849,"z":-56.5484},"rot":{"x":0.0208,"y":269.9997,"z":0.0168}},"11aa2c":{"lock":false,"pos":{"x":10.6297,"y":1.3815,"z":-68.0481},"rot":{"x":0.0208,"y":270.0028,"z":0.0168}},"190831":{"lock":false,"pos":{"x":19.3437,"y":1.352,"z":-58.8679},"rot":{"x":0.0208,"y":269.9996,"z":0.0168}},"1fabe7":{"lock":false,"pos":{"x":19.3437,"y":1.3506,"z":-63.4679},"rot":{"x":0.0208,"y":269.9997,"z":0.0168}},"26d107":{"lock":false,"pos":{"x":10.6297,"y":1.3822,"z":-65.7481},"rot":{"x":0.0208,"y":269.9899,"z":0.0168}},"2a8b6a":{"lock":false,"pos":{"x":10.6297,"y":1.3855,"z":-54.2484},"rot":{"x":0.0208,"y":270.0038,"z":0.0168}},"353d4e":{"lock":false,"pos":{"x":19.3437,"y":1.3533,"z":-54.2679},"rot":{"x":0.0208,"y":269.9997,"z":0.0168}},"3c29ae":{"lock":false,"pos":{"x":10.6297,"y":1.3781,"z":-79.548},"rot":{"x":0.0208,"y":269.9997,"z":0.0168}},"3c635c":{"lock":false,"pos":{"x":24.5004,"y":1.3545,"z":-56.6186},"rot":{"x":0.0208,"y":269.9997,"z":0.0168}},"49e21a":{"lock":false,"pos":{"x":10.6297,"y":1.3862,"z":-51.9484},"rot":{"x":0.0208,"y":269.9889,"z":0.0168}},"4aebc0":{"lock":false,"pos":{"x":7.0766,"y":1.3843,"z":-54.2605},"rot":{"x":0.0208,"y":269.9997,"z":0.0168}},"4c0449":{"lock":false,"pos":{"x":19.3437,"y":1.3493,"z":-68.0675},"rot":{"x":0.0208,"y":269.9996,"z":0.0168}},"4f7817":{"lock":false,"pos":{"x":19.3437,"y":1.3526,"z":-56.5679},"rot":{"x":0.0208,"y":269.9997,"z":0.0168}},"608472":{"lock":false,"pos":{"x":10.6296,"y":1.3829,"z":-63.4484},"rot":{"x":0.0208,"y":269.9999,"z":0.0168}},"6a6f9a":{"lock":false,"pos":{"x":10.6139,"y":1.3754,"z":-88.74},"rot":{"x":0.0208,"y":269.9998,"z":0.0168}},"6ef1de":{"lock":false,"pos":{"x":19.3437,"y":1.3499,"z":-65.7675},"rot":{"x":0.0208,"y":269.9997,"z":0.0168}},"73e595":{"lock":false,"pos":{"x":19.3437,"y":1.3479,"z":-72.6677},"rot":{"x":0.0208,"y":269.9998,"z":0.0168}},"74a9a7":{"lock":false,"pos":{"x":7.0766,"y":1.3836,"z":-56.5605},"rot":{"x":0.0208,"y":269.9997,"z":0.0168}},"77b6b2":{"lock":false,"pos":{"x":24.5003,"y":1.3538,"z":-58.9186},"rot":{"x":0.0208,"y":269.9997,"z":0.0168}},"7881f2":{"lock":false,"pos":{"x":10.6297,"y":1.3761,"z":-86.448},"rot":{"x":0.0208,"y":269.9933,"z":0.0168}},"7a9704":{"lock":false,"pos":{"x":19.3457,"y":1.3452,"z":-81.8678},"rot":{"x":0.0208,"y":269.9998,"z":0.0168}},"7ab8d7":{"lock":false,"pos":{"x":7.0766,"y":1.3863,"z":-47.3605},"rot":{"x":0.0208,"y":269.9998,"z":0.0168}},"7d0c7e":{"lock":false,"pos":{"x":19.3435,"y":1.3445,"z":-84.1675},"rot":{"x":0.0208,"y":269.9998,"z":0.0168}},"84a867":{"lock":false,"pos":{"x":19.3436,"y":1.3466,"z":-77.2676},"rot":{"x":0.0208,"y":269.9997,"z":0.0168}},"8ff7ba":{"lock":false,"pos":{"x":10.6297,"y":1.3869,"z":-49.6484},"rot":{"x":0.0208,"y":269.9997,"z":0.0168}},"928e1e":{"lock":false,"pos":{"x":10.6297,"y":1.3835,"z":-61.1484},"rot":{"x":0.0208,"y":269.9996,"z":0.0168}},"93d418":{"lock":false,"pos":{"x":24.5003,"y":1.3572,"z":-47.4186},"rot":{"x":0.0208,"y":270.0088,"z":0.0168}},"9fcffb":{"lock":false,"pos":{"x":10.6297,"y":1.3802,"z":-72.6481},"rot":{"x":0.0208,"y":270.0006,"z":0.0168}},"a0c0ae":{"lock":false,"pos":{"x":10.6297,"y":1.3842,"z":-58.8484},"rot":{"x":0.0208,"y":270.0039,"z":0.0168}},"a263e2":{"lock":false,"pos":{"x":19.3279,"y":1.3432,"z":-88.757},"rot":{"x":0.0208,"y":269.9998,"z":0.0168}},"a8218c":{"lock":false,"pos":{"x":24.5004,"y":1.3552,"z":-54.3186},"rot":{"x":0.0208,"y":270.0042,"z":0.0168}},"a8f780":{"lock":false,"pos":{"x":24.5003,"y":1.3565,"z":-49.7185},"rot":{"x":0.0208,"y":270.0185,"z":0.0168}},"ac7359":{"lock":false,"pos":{"x":19.3437,"y":1.3546,"z":-49.6679},"rot":{"x":0.0208,"y":269.9997,"z":0.0168}},"b0cb8c":{"lock":false,"pos":{"x":19.3437,"y":1.354,"z":-51.9679},"rot":{"x":0.0208,"y":269.9997,"z":0.0168}},"b74c47":{"lock":false,"pos":{"x":19.3437,"y":1.3439,"z":-86.4676},"rot":{"x":0.0208,"y":269.9997,"z":0.0168}},"c1be23":{"lock":false,"pos":{"x":10.6297,"y":1.3788,"z":-77.248},"rot":{"x":0.0208,"y":269.9709,"z":0.0168}},"c2a019":{"lock":false,"pos":{"x":19.3437,"y":1.3553,"z":-47.3679},"rot":{"x":0.0208,"y":269.9997,"z":0.0168}},"c54fd2":{"lock":false,"pos":{"x":10.6296,"y":1.3795,"z":-74.9481},"rot":{"x":0.0208,"y":269.9998,"z":0.0168}},"c580f5":{"lock":false,"pos":{"x":7.0766,"y":1.3856,"z":-49.6605},"rot":{"x":0.0208,"y":269.9997,"z":0.0168}},"cb2302":{"lock":false,"pos":{"x":7.0766,"y":1.3849,"z":-51.9605},"rot":{"x":0.0208,"y":269.9999,"z":0.0168}},"d051b3":{"lock":false,"pos":{"x":24.5003,"y":1.3558,"z":-52.0186},"rot":{"x":0.0208,"y":270.0076,"z":0.0168}},"d60500":{"lock":false,"pos":{"x":10.6137,"y":1.3748,"z":-91.04},"rot":{"x":0.0208,"y":269.9996,"z":0.0168}},"e24027":{"lock":false,"pos":{"x":10.6297,"y":1.3808,"z":-70.3481},"rot":{"x":0.0208,"y":270.0005,"z":0.0168}},"e32c1b":{"lock":false,"pos":{"x":19.3437,"y":1.3486,"z":-70.3675},"rot":{"x":0.0208,"y":269.9998,"z":0.0168}},"e4a963":{"lock":false,"pos":{"x":19.3436,"y":1.3472,"z":-74.9677},"rot":{"x":0.0208,"y":269.9984,"z":0.0168}},"e56f25":{"lock":false,"pos":{"x":10.6296,"y":1.3768,"z":-84.148},"rot":{"x":0.0208,"y":269.9998,"z":0.0168}}}}' +MaterialIndex: -1 +MeshIndex: -1 +Name: Custom_Model_Bag +Nickname: Survivor +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 32.7031555 + posY: 1.39729285 + posZ: -85.51 + rotX: 0.0208045542 + rotY: 270.020081 + rotZ: 0.0167776346 + scaleX: 1.2 + scaleY: 1.2 + scaleZ: 1.2 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 068ba0/Card A Chance Encounter (2) 4f7817.yaml b/unpacked/Custom_Model_Bag Survivor 068ba0/Card A Chance Encounter (2) 4f7817.yaml new file mode 100644 index 000000000..bc30baa06 --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 068ba0/Card A Chance Encounter (2) 4f7817.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 209744 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 4f7817 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: A Chance Encounter (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.343668 + posY: 1.3526262 + posZ: -56.5679054 + rotX: 0.020808341 + rotY: 269.9997 + rotZ: 0.0167694464 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 068ba0/Card A Test of Will (1) b0cb8c.yaml b/unpacked/Custom_Model_Bag Survivor 068ba0/Card A Test of Will (1) b0cb8c.yaml new file mode 100644 index 000000000..8469deb7f --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 068ba0/Card A Test of Will (1) b0cb8c.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 209737 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: b0cb8c +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: A Test of Will (1) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.3436623 + posY: 1.35397279 + posZ: -51.9679 + rotX: 0.0208085086 + rotY: 269.999725 + rotZ: 0.0167692285 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 068ba0/Card Against All Odds (2) 73e595.yaml b/unpacked/Custom_Model_Bag Survivor 068ba0/Card Against All Odds (2) 73e595.yaml new file mode 100644 index 000000000..2ea830d8f --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 068ba0/Card Against All Odds (2) 73e595.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 209750 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 73e595 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Against All Odds (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.3436527 + posY: 1.34791362 + posZ: -72.6676559 + rotX: 0.0208084658 + rotY: 269.999756 + rotZ: 0.0167695377 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 068ba0/Card Alter Fate (3) 0012ed.yaml b/unpacked/Custom_Model_Bag Survivor 068ba0/Card Alter Fate (3) 0012ed.yaml new file mode 100644 index 000000000..8173deba2 --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 068ba0/Card Alter Fate (3) 0012ed.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 209756 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 0012ed +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Alter Fate (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.3436642 + posY: 1.345894 + posZ: -79.56757 + rotX: 0.0208084174 + rotY: 269.999817 + rotZ: 0.0167693812 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 068ba0/Card Aquinnah (1) 26d107.yaml b/unpacked/Custom_Model_Bag Survivor 068ba0/Card Aquinnah (1) 26d107.yaml new file mode 100644 index 000000000..385f45e00 --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 068ba0/Card Aquinnah (1) 26d107.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 209741 +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 + UniqueBack: false +Description: The Forgotten Daughter +GMNotes: '' +GUID: 26d107 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Aquinnah (1) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.62966 + posY: 1.38217831 + posZ: -65.7480545 + rotX: 0.0208122656 + rotY: 269.989868 + rotZ: 0.0167669822 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 068ba0/Card Aquinnah (3) 74a9a7.yaml b/unpacked/Custom_Model_Bag Survivor 068ba0/Card Aquinnah (3) 74a9a7.yaml new file mode 100644 index 000000000..cd0a6406f --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 068ba0/Card Aquinnah (3) 74a9a7.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 209761 +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 + UniqueBack: false +Description: The Forgotten Daughter +GMNotes: '' +GUID: 74a9a7 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Aquinnah (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 7.076564 + posY: 1.38357723 + posZ: -56.560482 + rotX: 0.020809317 + rotY: 269.9997 + rotZ: 0.0167712774 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 068ba0/Card Bait and Switch (3) 84a867.yaml b/unpacked/Custom_Model_Bag Survivor 068ba0/Card Bait and Switch (3) 84a867.yaml new file mode 100644 index 000000000..4e82cbb13 --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 068ba0/Card Bait and Switch (3) 84a867.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 84a867 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Bait and Switch (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.3436451 + posY: 1.346567 + posZ: -77.26758 + rotX: 0.0208104774 + rotY: 269.999664 + rotZ: 0.0167728774 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 068ba0/Card Brute Force (1) 93d418.yaml b/unpacked/Custom_Model_Bag Survivor 068ba0/Card Brute Force (1) 93d418.yaml new file mode 100644 index 000000000..e39433d83 --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 068ba0/Card Brute Force (1) 93d418.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 93d418 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Brute Force (1) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 24.5003471 + posY: 1.35717714 + posZ: -47.41856 + rotX: 0.0208058413 + rotY: 270.0088 + rotZ: 0.01677254 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 068ba0/Card Close Call (2) 1fabe7.yaml b/unpacked/Custom_Model_Bag Survivor 068ba0/Card Close Call (2) 1fabe7.yaml new file mode 100644 index 000000000..62bfdc36b --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 068ba0/Card Close Call (2) 1fabe7.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 209748 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 1fabe7 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Close Call (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.3436565 + posY: 1.35060656 + posZ: -63.4678955 + rotX: 0.0208083559 + rotY: 269.999664 + rotZ: 0.01676887 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 068ba0/Card Cornered (2) 3c29ae.yaml b/unpacked/Custom_Model_Bag Survivor 068ba0/Card Cornered (2) 3c29ae.yaml new file mode 100644 index 000000000..806f578cb --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 068ba0/Card Cornered (2) 3c29ae.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 209751 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 3c29ae +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Cornered (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.62965 + posY: 1.378139 + posZ: -79.54802 + rotX: 0.0208074581 + rotY: 269.9997 + rotZ: 0.0167684257 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 068ba0/Card Devil's Luck (1) c2a019.yaml b/unpacked/Custom_Model_Bag Survivor 068ba0/Card Devil's Luck (1) c2a019.yaml new file mode 100644 index 000000000..b6daa4247 --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 068ba0/Card Devil's Luck (1) c2a019.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 209735 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: c2a019 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Devil's Luck (1) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.3436642 + posY: 1.35531926 + posZ: -47.36791 + rotX: 0.0208085142 + rotY: 269.999664 + rotZ: 0.01676977 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 068ba0/Card Dig Deep (2) 11aa2c.yaml b/unpacked/Custom_Model_Bag Survivor 068ba0/Card Dig Deep (2) 11aa2c.yaml new file mode 100644 index 000000000..0ec30d499 --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 068ba0/Card Dig Deep (2) 11aa2c.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 209745 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 11aa2c +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Dig Deep (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.6296539 + posY: 1.38150525 + posZ: -68.0480652 + rotX: 0.0208068546 + rotY: 270.002838 + rotZ: 0.016769629 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 068ba0/Card Eucatastrophe (3) 7d0c7e.yaml b/unpacked/Custom_Model_Bag Survivor 068ba0/Card Eucatastrophe (3) 7d0c7e.yaml new file mode 100644 index 000000000..d09c699f2 --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 068ba0/Card Eucatastrophe (3) 7d0c7e.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 7d0c7e +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Eucatastrophe (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.34352 + posY: 1.34454739 + posZ: -84.16753 + rotX: 0.0208084825 + rotY: 269.999756 + rotZ: 0.0167699344 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 068ba0/Card Expeditious Retreat (1) a8f780.yaml b/unpacked/Custom_Model_Bag Survivor 068ba0/Card Expeditious Retreat (1) a8f780.yaml new file mode 100644 index 000000000..339f50d62 --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 068ba0/Card Expeditious Retreat (1) a8f780.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Innate. Developed. +GMNotes: '' +GUID: a8f780 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Expeditious Retreat (1) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 24.5003471 + posY: 1.356504 + posZ: -49.7185478 + rotX: 0.0208028425 + rotY: 270.0185 + rotZ: 0.0167766 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 068ba0/Card Fire Extinguisher (1) 2a8b6a.yaml b/unpacked/Custom_Model_Bag Survivor 068ba0/Card Fire Extinguisher (1) 2a8b6a.yaml new file mode 100644 index 000000000..4b80a7718 --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 068ba0/Card Fire Extinguisher (1) 2a8b6a.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 209738 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 2a8b6a +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Fire Extinguisher (1) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.6296606 + posY: 1.38554442 + posZ: -54.24844 + rotX: 0.020808531 + rotY: 270.003845 + rotZ: 0.0167726427 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 068ba0/Card Five of Pentacles (1) 071c48.yaml b/unpacked/Custom_Model_Bag Survivor 068ba0/Card Five of Pentacles (1) 071c48.yaml new file mode 100644 index 000000000..6a93d2460 --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 068ba0/Card Five of Pentacles (1) 071c48.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: From the Brink +GMNotes: '' +GUID: 071c48 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Five of Pentacles (1) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.6296568 + posY: 1.38487124 + posZ: -56.5484428 + rotX: 0.0208095759 + rotY: 269.9997 + rotZ: 0.0167711638 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 068ba0/Card Flare (1) 353d4e.yaml b/unpacked/Custom_Model_Bag Survivor 068ba0/Card Flare (1) 353d4e.yaml new file mode 100644 index 000000000..b5b5089b0 --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 068ba0/Card Flare (1) 353d4e.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 209739 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 353d4e +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Flare (1) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.343668 + posY: 1.3532995 + posZ: -54.2679024 + rotX: 0.02080852 + rotY: 269.9997 + rotZ: 0.0167694818 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 068ba0/Card Fortune or Fate (2) 6ef1de.yaml b/unpacked/Custom_Model_Bag Survivor 068ba0/Card Fortune or Fate (2) 6ef1de.yaml new file mode 100644 index 000000000..29602689d --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 068ba0/Card Fortune or Fate (2) 6ef1de.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 6ef1de +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Fortune or Fate (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.3436642 + posY: 1.34993339 + posZ: -65.76754 + rotX: 0.02080842 + rotY: 269.999664 + rotZ: 0.016769357 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 068ba0/Card Gravedigger's Shovel (2) e24027.yaml b/unpacked/Custom_Model_Bag Survivor 068ba0/Card Gravedigger's Shovel (2) e24027.yaml new file mode 100644 index 000000000..85e2818dd --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 068ba0/Card Gravedigger's Shovel (2) e24027.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: e24027 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Gravedigger's Shovel (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.62965 + posY: 1.380832 + posZ: -70.34807 + rotX: 0.0208072755 + rotY: 270.0005 + rotZ: 0.0167682432 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 068ba0/Card Grisly Totem (3) c580f5.yaml b/unpacked/Custom_Model_Bag Survivor 068ba0/Card Grisly Totem (3) c580f5.yaml new file mode 100644 index 000000000..10738d0f3 --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 068ba0/Card Grisly Totem (3) c580f5.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Survivor +GMNotes: '' +GUID: c580f5 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Grisly Totem (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 7.07655859 + posY: 1.385597 + posZ: -49.6604652 + rotX: 0.0208098069 + rotY: 269.999664 + rotZ: 0.0167704616 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 068ba0/Card Guiding Spirit (1) 8ff7ba.yaml b/unpacked/Custom_Model_Bag Survivor 068ba0/Card Guiding Spirit (1) 8ff7ba.yaml new file mode 100644 index 000000000..757bec03a --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 068ba0/Card Guiding Spirit (1) 8ff7ba.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 8ff7ba +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Guiding Spirit (1) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.6296511 + posY: 1.38689089 + posZ: -49.6484337 + rotX: 0.0208097044 + rotY: 269.999725 + rotZ: 0.0167711377 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 068ba0/Card Infighting (3) 7a9704.yaml b/unpacked/Custom_Model_Bag Survivor 068ba0/Card Infighting (3) 7a9704.yaml new file mode 100644 index 000000000..982a341bd --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 068ba0/Card Infighting (3) 7a9704.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 209754 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 7a9704 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Infighting (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.3456936 + posY: 1.3452214 + posZ: -81.86779 + rotX: 0.02080843 + rotY: 269.999817 + rotZ: 0.0167693961 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 068ba0/Card Jessica Hyde (1) a0c0ae.yaml b/unpacked/Custom_Model_Bag Survivor 068ba0/Card Jessica Hyde (1) a0c0ae.yaml new file mode 100644 index 000000000..9bf2dabbc --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 068ba0/Card Jessica Hyde (1) a0c0ae.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Wrong Place, Wrong Time +GMNotes: '' +GUID: a0c0ae +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Jessica Hyde (1) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.6296644 + posY: 1.38419807 + posZ: -58.8484459 + rotX: 0.0208084658 + rotY: 270.0039 + rotZ: 0.01677279 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 068ba0/Card Lantern (2) 9fcffb.yaml b/unpacked/Custom_Model_Bag Survivor 068ba0/Card Lantern (2) 9fcffb.yaml new file mode 100644 index 000000000..b74afc84d --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 068ba0/Card Lantern (2) 9fcffb.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 9fcffb +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Lantern (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.62965 + posY: 1.38015866 + posZ: -72.6481 + rotX: 0.02080715 + rotY: 270.000641 + rotZ: 0.0167688783 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 068ba0/Card Lucky! (2) 190831.yaml b/unpacked/Custom_Model_Bag Survivor 068ba0/Card Lucky! (2) 190831.yaml new file mode 100644 index 000000000..d7e766b49 --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 068ba0/Card Lucky! (2) 190831.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 209746 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: '190831' +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Lucky! (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.343668 + posY: 1.351953 + posZ: -58.86791 + rotX: 0.0208084043 + rotY: 269.999634 + rotZ: 0.01676909 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 068ba0/Card Lure (1) ac7359.yaml b/unpacked/Custom_Model_Bag Survivor 068ba0/Card Lure (1) ac7359.yaml new file mode 100644 index 000000000..8225e31ab --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 068ba0/Card Lure (1) ac7359.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 209736 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: ac7359 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Lure (1) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.3436661 + posY: 1.354646 + posZ: -49.6678963 + rotX: 0.0208083969 + rotY: 269.9997 + rotZ: 0.0167694073 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 068ba0/Card Lure (2) 06e14d.yaml b/unpacked/Custom_Model_Bag Survivor 068ba0/Card Lure (2) 06e14d.yaml new file mode 100644 index 000000000..4c6117131 --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 068ba0/Card Lure (2) 06e14d.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 06e14d +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Lure (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.34366 + posY: 1.35127985 + posZ: -61.16791 + rotX: 0.0208082758 + rotY: 269.999939 + rotZ: 0.0167696252 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 068ba0/Card Miss Doyle (1) 928e1e.yaml b/unpacked/Custom_Model_Bag Survivor 068ba0/Card Miss Doyle (1) 928e1e.yaml new file mode 100644 index 000000000..7fb740698 --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 068ba0/Card Miss Doyle (1) 928e1e.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Cat General of Ulthar +GMNotes: '' +GUID: 928e1e +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Miss Doyle (1) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.629653 + posY: 1.38352478 + posZ: -61.14845 + rotX: 0.0208096653 + rotY: 269.999634 + rotZ: 0.0167710632 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 068ba0/Card Newspaper (2) c54fd2.yaml b/unpacked/Custom_Model_Bag Survivor 068ba0/Card Newspaper (2) c54fd2.yaml new file mode 100644 index 000000000..d298923a5 --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 068ba0/Card Newspaper (2) c54fd2.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 209747 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: c54fd2 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Newspaper (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.6296444 + posY: 1.37948537 + posZ: -74.94812 + rotX: 0.0208073687 + rotY: 269.999817 + rotZ: 0.0167684443 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 068ba0/Card Nightmare Bauble (3) 7881f2.yaml b/unpacked/Custom_Model_Bag Survivor 068ba0/Card Nightmare Bauble (3) 7881f2.yaml new file mode 100644 index 000000000..40e0a3145 --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 068ba0/Card Nightmare Bauble (3) 7881f2.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Item. Charm. Cursed. +GMNotes: '' +GUID: 7881f2 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Nightmare Bauble (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.62969 + posY: 1.37611926 + posZ: -86.44803 + rotX: 0.0208094027 + rotY: 269.993347 + rotZ: 0.0167656578 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 068ba0/Card Nothing Left to Lose (3) e4a963.yaml b/unpacked/Custom_Model_Bag Survivor 068ba0/Card Nothing Left to Lose (3) e4a963.yaml new file mode 100644 index 000000000..7f6b686ad --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 068ba0/Card Nothing Left to Lose (3) e4a963.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Spirit. +GMNotes: '' +GUID: e4a963 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Nothing Left to Lose (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.343647 + posY: 1.34724033 + posZ: -74.96768 + rotX: 0.0208108462 + rotY: 269.998444 + rotZ: 0.016772354 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 068ba0/Card Old Hunting Rifle (3) 4aebc0.yaml b/unpacked/Custom_Model_Bag Survivor 068ba0/Card Old Hunting Rifle (3) 4aebc0.yaml new file mode 100644 index 000000000..3d05e57d8 --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 068ba0/Card Old Hunting Rifle (3) 4aebc0.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 443800 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '4438': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025946328/561232524C8EAA4B4371B28652F78969E6ED6FFB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 4aebc0 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Old Hunting Rifle (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 7.0765605 + posY: 1.38425052 + posZ: -54.26048 + rotX: 0.02080992 + rotY: 269.999725 + rotZ: 0.01677053 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 068ba0/Card On Your Own (3) 7ab8d7.yaml b/unpacked/Custom_Model_Bag Survivor 068ba0/Card On Your Own (3) 7ab8d7.yaml new file mode 100644 index 000000000..5459193fa --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 068ba0/Card On Your Own (3) 7ab8d7.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 209758 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 7ab8d7 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: On Your Own (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 7.07656574 + posY: 1.38627028 + posZ: -47.3604774 + rotX: 0.0208098926 + rotY: 269.999847 + rotZ: 0.0167709626 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 068ba0/Card Oops! (2) 4c0449.yaml b/unpacked/Custom_Model_Bag Survivor 068ba0/Card Oops! (2) 4c0449.yaml new file mode 100644 index 000000000..517e66ced --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 068ba0/Card Oops! (2) 4c0449.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 443905 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '4439': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025946328/561232524C8EAA4B4371B28652F78969E6ED6FFB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 4c0449 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Oops! (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.3436623 + posY: 1.34926009 + posZ: -68.06754 + rotX: 0.0208084118 + rotY: 269.999634 + rotZ: 0.01676981 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 068ba0/Card Peter Sylvestre (2) 038a3a.yaml b/unpacked/Custom_Model_Bag Survivor 068ba0/Card Peter Sylvestre (2) 038a3a.yaml new file mode 100644 index 000000000..dc94a4b96 --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 068ba0/Card Peter Sylvestre (2) 038a3a.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 209752 +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 + UniqueBack: false +Description: Big Man on Campus +GMNotes: '' +GUID: 038a3a +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Peter Sylvestre (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.6316948 + posY: 1.37746644 + posZ: -81.8482361 + rotX: 0.0208074488 + rotY: 269.9997 + rotZ: 0.0167683326 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 068ba0/Card Plucky (1) 01f114.yaml b/unpacked/Custom_Model_Bag Survivor 068ba0/Card Plucky (1) 01f114.yaml new file mode 100644 index 000000000..9fe9d771f --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 068ba0/Card Plucky (1) 01f114.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 209734 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 01f114 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Plucky (1) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.6296616 + posY: 1.38756418 + posZ: -47.3484459 + rotX: 0.0208098926 + rotY: 269.999817 + rotZ: 0.0167705081 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 068ba0/Card Rabbit's Foot (3) 6a6f9a.yaml b/unpacked/Custom_Model_Bag Survivor 068ba0/Card Rabbit's Foot (3) 6a6f9a.yaml new file mode 100644 index 000000000..1728b67dc --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 068ba0/Card Rabbit's Foot (3) 6a6f9a.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 209755 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 6a6f9a +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Rabbit's Foot (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.6138659 + posY: 1.37544262 + posZ: -88.74 + rotX: 0.0208075326 + rotY: 269.9998 + rotZ: 0.01676841 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 068ba0/Card Rise to the Occasion (3) 77b6b2.yaml b/unpacked/Custom_Model_Bag Survivor 068ba0/Card Rise to the Occasion (3) 77b6b2.yaml new file mode 100644 index 000000000..bd4cc8d2f --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 068ba0/Card Rise to the Occasion (3) 77b6b2.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 443904 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '4439': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025946328/561232524C8EAA4B4371B28652F78969E6ED6FFB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 77b6b2 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Rise to the Occasion (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 24.5003471 + posY: 1.353811 + posZ: -58.91856 + rotX: 0.02080829 + rotY: 269.999725 + rotZ: 0.0167699587 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 068ba0/Card Scavenging (2) c1be23.yaml b/unpacked/Custom_Model_Bag Survivor 068ba0/Card Scavenging (2) c1be23.yaml new file mode 100644 index 000000000..0bb573f62 --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 068ba0/Card Scavenging (2) c1be23.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Talent. +GMNotes: '' +GUID: c1be23 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Scavenging (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.62965 + posY: 1.37881231 + posZ: -77.24802 + rotX: 0.0208159648 + rotY: 269.970917 + rotZ: 0.0167583246 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 068ba0/Card Scrapper (3) e56f25.yaml b/unpacked/Custom_Model_Bag Survivor 068ba0/Card Scrapper (3) e56f25.yaml new file mode 100644 index 000000000..63716018f --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 068ba0/Card Scrapper (3) e56f25.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 209753 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: e56f25 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Scrapper (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.6295586 + posY: 1.37679243 + posZ: -84.14801 + rotX: 0.0208075978 + rotY: 269.999756 + rotZ: 0.0167681389 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 068ba0/Card Sharp Vision (1) d051b3.yaml b/unpacked/Custom_Model_Bag Survivor 068ba0/Card Sharp Vision (1) d051b3.yaml new file mode 100644 index 000000000..b568c7338 --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 068ba0/Card Sharp Vision (1) d051b3.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Innate. Developed. +GMNotes: '' +GUID: d051b3 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Sharp Vision (1) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 24.5003471 + posY: 1.35583079 + posZ: -52.01855 + rotX: 0.0208060257 + rotY: 270.007568 + rotZ: 0.0167725887 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 068ba0/Card Snare Trap (2) e32c1b.yaml b/unpacked/Custom_Model_Bag Survivor 068ba0/Card Snare Trap (2) e32c1b.yaml new file mode 100644 index 000000000..d19a3181c --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 068ba0/Card Snare Trap (2) e32c1b.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 209749 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: e32c1b +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Snare Trap (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.3436565 + posY: 1.34858692 + posZ: -70.3675461 + rotX: 0.0208084639 + rotY: 269.999817 + rotZ: 0.0167699251 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 068ba0/Card Stroke of Luck (2) 3c635c.yaml b/unpacked/Custom_Model_Bag Survivor 068ba0/Card Stroke of Luck (2) 3c635c.yaml new file mode 100644 index 000000000..6d9e23da3 --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 068ba0/Card Stroke of Luck (2) 3c635c.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 209743 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 3c635c +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Stroke of Luck (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 24.5003548 + posY: 1.3544842 + posZ: -56.618557 + rotX: 0.0208084714 + rotY: 269.999725 + rotZ: 0.0167697966 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 068ba0/Card Survival Instinct (2) a8218c.yaml b/unpacked/Custom_Model_Bag Survivor 068ba0/Card Survival Instinct (2) a8218c.yaml new file mode 100644 index 000000000..223cb53c6 --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 068ba0/Card Survival Instinct (2) a8218c.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 209742 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: a8218c +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Survival Instinct (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 24.5003548 + posY: 1.35515749 + posZ: -54.3185539 + rotX: 0.0208071955 + rotY: 270.00415 + rotZ: 0.016771337 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 068ba0/Card Tennessee Sour Mash (3) cb2302.yaml b/unpacked/Custom_Model_Bag Survivor 068ba0/Card Tennessee Sour Mash (3) cb2302.yaml new file mode 100644 index 000000000..4f4898134 --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 068ba0/Card Tennessee Sour Mash (3) cb2302.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Survivor +GMNotes: '' +GUID: cb2302 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Tennessee Sour Mash (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 7.07655573 + posY: 1.38492393 + posZ: -51.96047 + rotX: 0.02080976 + rotY: 269.999878 + rotZ: 0.0167711 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 068ba0/Card True Survivor (3) b74c47.yaml b/unpacked/Custom_Model_Bag Survivor 068ba0/Card True Survivor (3) b74c47.yaml new file mode 100644 index 000000000..975380dd9 --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 068ba0/Card True Survivor (3) b74c47.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 209759 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: b74c47 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: True Survivor (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.3436966 + posY: 1.34387422 + posZ: -86.46758 + rotX: 0.0208083875 + rotY: 269.999725 + rotZ: 0.0167693719 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 068ba0/Card Try and Try Again (1) 49e21a.yaml b/unpacked/Custom_Model_Bag Survivor 068ba0/Card Try and Try Again (1) 49e21a.yaml new file mode 100644 index 000000000..2e3c76b7a --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 068ba0/Card Try and Try Again (1) 49e21a.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 443802 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '4438': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025946328/561232524C8EAA4B4371B28652F78969E6ED6FFB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 49e21a +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Try and Try Again (1) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.6296539 + posY: 1.38621771 + posZ: -51.9484329 + rotX: 0.02081269 + rotY: 269.988861 + rotZ: 0.0167649966 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 068ba0/Card Try and Try Again (3) d60500.yaml b/unpacked/Custom_Model_Bag Survivor 068ba0/Card Try and Try Again (3) d60500.yaml new file mode 100644 index 000000000..ae2438eb5 --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 068ba0/Card Try and Try Again (3) d60500.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 209757 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: d60500 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Try and Try Again (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.6137209 + posY: 1.37476933 + posZ: -91.04 + rotX: 0.0208075084 + rotY: 269.999573 + rotZ: 0.0167683773 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 068ba0/Card Will to Survive (3) a263e2.yaml b/unpacked/Custom_Model_Bag Survivor 068ba0/Card Will to Survive (3) a263e2.yaml new file mode 100644 index 000000000..8c6d41012 --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 068ba0/Card Will to Survive (3) a263e2.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 209760 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: a263e2 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Will to Survive (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.3279018 + posY: 1.34319842 + posZ: -88.75703 + rotX: 0.0208085068 + rotY: 269.999756 + rotZ: 0.016769819 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 068ba0/Card Yaotl (1) 608472.yaml b/unpacked/Custom_Model_Bag Survivor 068ba0/Card Yaotl (1) 608472.yaml new file mode 100644 index 000000000..87ceaabc6 --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 068ba0/Card Yaotl (1) 608472.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 209740 +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 + UniqueBack: false +Description: Lost Son of Earth +GMNotes: '' +GUID: '608472' +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Yaotl (1) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.6296473 + posY: 1.3828516 + posZ: -63.4484367 + rotX: 0.02080842 + rotY: 269.9999 + rotZ: 0.0167691335 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 068ba0/Custom_Model_Bag Survivor 550be2.ttslua b/unpacked/Custom_Model_Bag Survivor 068ba0/Custom_Model_Bag Survivor 550be2.ttslua new file mode 100644 index 000000000..f882a7f09 --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 068ba0/Custom_Model_Bag Survivor 550be2.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,0,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 + 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=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,0,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,0,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,0,0}, height=350, width=750, + 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}, rotation={0,0,0}, height=350, width=800, + font_size=250, color={0,0,0}, font_color={1,1,1} + }) +-- self.createButton({ +-- label="Setup", click_function="buttonClick_setup", function_owner=self, +-- position={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.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 Survivor 068ba0/Custom_Model_Bag Survivor 550be2.yaml b/unpacked/Custom_Model_Bag Survivor 068ba0/Custom_Model_Bag Survivor 550be2.yaml new file mode 100644 index 000000000..268201a73 --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 068ba0/Custom_Model_Bag Survivor 550be2.yaml @@ -0,0 +1,102 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +ContainedObjects: +- !include 'Custom_Model_Bag Survivor 550be2/Card Brute Force (1) 93d418.yaml' +- !include 'Custom_Model_Bag Survivor 550be2/Card Expeditious Retreat (1) a8f780.yaml' +- !include 'Custom_Model_Bag Survivor 550be2/Card Sharp Vision (1) d051b3.yaml' +- !include 'Custom_Model_Bag Survivor 550be2/Card Survival Instinct (2) a8218c.yaml' +- !include 'Custom_Model_Bag Survivor 550be2/Card Stroke of Luck (2) 3c635c.yaml' +- !include 'Custom_Model_Bag Survivor 550be2/Card Rise to the Occasion (3) 77b6b2.yaml' +- !include 'Custom_Model_Bag Survivor 550be2/Card Devil''s Luck (1) c2a019.yaml' +- !include 'Custom_Model_Bag Survivor 550be2/Card Lure (1) ac7359.yaml' +- !include 'Custom_Model_Bag Survivor 550be2/Card A Test of Will (1) b0cb8c.yaml' +- !include 'Custom_Model_Bag Survivor 550be2/Card Flare (1) 353d4e.yaml' +- !include 'Custom_Model_Bag Survivor 550be2/Card A Chance Encounter (2) 4f7817.yaml' +- !include 'Custom_Model_Bag Survivor 550be2/Card Lucky! (2) 190831.yaml' +- !include 'Custom_Model_Bag Survivor 550be2/Card Lure (2) 06e14d.yaml' +- !include 'Custom_Model_Bag Survivor 550be2/Card Close Call (2) 1fabe7.yaml' +- !include 'Custom_Model_Bag Survivor 550be2/Card Fortune or Fate (2) 6ef1de.yaml' +- !include 'Custom_Model_Bag Survivor 550be2/Card Oops! (2) 4c0449.yaml' +- !include 'Custom_Model_Bag Survivor 550be2/Card Snare Trap (2) e32c1b.yaml' +- !include 'Custom_Model_Bag Survivor 550be2/Card Against All Odds (2) 73e595.yaml' +- !include 'Custom_Model_Bag Survivor 550be2/Card Nothing Left to Lose (3) e4a963.yaml' +- !include 'Custom_Model_Bag Survivor 550be2/Card Bait and Switch (3) 84a867.yaml' +- !include 'Custom_Model_Bag Survivor 550be2/Card Alter Fate (3) 0012ed.yaml' +- !include 'Custom_Model_Bag Survivor 550be2/Card Infighting (3) 7a9704.yaml' +- !include 'Custom_Model_Bag Survivor 550be2/Card Eucatastrophe (3) 7d0c7e.yaml' +- !include 'Custom_Model_Bag Survivor 550be2/Card True Survivor (3) b74c47.yaml' +- !include 'Custom_Model_Bag Survivor 550be2/Card Will to Survive (3) a263e2.yaml' +- !include 'Custom_Model_Bag Survivor 550be2/Card Try and Try Again (3) d60500.yaml' +- !include 'Custom_Model_Bag Survivor 550be2/Card Rabbit''s Foot (3) 6a6f9a.yaml' +- !include 'Custom_Model_Bag Survivor 550be2/Card Nightmare Bauble (3) 7881f2.yaml' +- !include 'Custom_Model_Bag Survivor 550be2/Card Scrapper (3) e56f25.yaml' +- !include 'Custom_Model_Bag Survivor 550be2/Card Peter Sylvestre (2) 038a3a.yaml' +- !include 'Custom_Model_Bag Survivor 550be2/Card Cornered (2) 3c29ae.yaml' +- !include 'Custom_Model_Bag Survivor 550be2/Card Scavenging (2) c1be23.yaml' +- !include 'Custom_Model_Bag Survivor 550be2/Card Newspaper (2) c54fd2.yaml' +- !include 'Custom_Model_Bag Survivor 550be2/Card Lantern (2) 9fcffb.yaml' +- !include 'Custom_Model_Bag Survivor 550be2/Card Gravedigger''s Shovel (2) e24027.yaml' +- !include 'Custom_Model_Bag Survivor 550be2/Card Dig Deep (2) 11aa2c.yaml' +- !include 'Custom_Model_Bag Survivor 550be2/Card Aquinnah (1) 26d107.yaml' +- !include 'Custom_Model_Bag Survivor 550be2/Card Yaotl (1) 608472.yaml' +- !include 'Custom_Model_Bag Survivor 550be2/Card Miss Doyle (1) 928e1e.yaml' +- !include 'Custom_Model_Bag Survivor 550be2/Card Jessica Hyde (1) a0c0ae.yaml' +- !include 'Custom_Model_Bag Survivor 550be2/Card Five of Pentacles (1) 071c48.yaml' +- !include 'Custom_Model_Bag Survivor 550be2/Card Fire Extinguisher (1) 2a8b6a.yaml' +- !include 'Custom_Model_Bag Survivor 550be2/Card Try and Try Again (1) 49e21a.yaml' +- !include 'Custom_Model_Bag Survivor 550be2/Card Guiding Spirit (1) 8ff7ba.yaml' +- !include 'Custom_Model_Bag Survivor 550be2/Card Plucky (1) 01f114.yaml' +- !include 'Custom_Model_Bag Survivor 550be2/Card On Your Own (3) 7ab8d7.yaml' +- !include 'Custom_Model_Bag Survivor 550be2/Card Grisly Totem (3) c580f5.yaml' +- !include 'Custom_Model_Bag Survivor 550be2/Card Tennessee Sour Mash (3) cb2302.yaml' +- !include 'Custom_Model_Bag Survivor 550be2/Card Old Hunting Rifle (3) 4aebc0.yaml' +- !include 'Custom_Model_Bag Survivor 550be2/Card Aquinnah (3) 74a9a7.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/952965722515960460/F43F63452854B10B416FDF3BF9EF3068E6E68F26/ + MaterialIndex: 3 + MeshURL: https://pastebin.com/raw/ALrYhQGb + NormalURL: '' + TypeIndex: 6 +Description: '' +GMNotes: '' +GUID: 550be2 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Model_Bag Survivor 550be2.ttslua' +LuaScriptState: '{"ml":{"0012ed":{"lock":false,"pos":{"x":19.3437,"y":1.3459,"z":-79.5676},"rot":{"x":0.0208,"y":269.9998,"z":0.0168}},"01f114":{"lock":false,"pos":{"x":10.6297,"y":1.3876,"z":-47.3484},"rot":{"x":0.0208,"y":269.9998,"z":0.0168}},"038a3a":{"lock":false,"pos":{"x":10.6317,"y":1.3775,"z":-81.8482},"rot":{"x":0.0208,"y":269.9997,"z":0.0168}},"06e14d":{"lock":false,"pos":{"x":19.3437,"y":1.3513,"z":-61.1679},"rot":{"x":0.0208,"y":269.9999,"z":0.0168}},"071c48":{"lock":false,"pos":{"x":10.6297,"y":1.3849,"z":-56.5484},"rot":{"x":0.0208,"y":269.9997,"z":0.0168}},"11aa2c":{"lock":false,"pos":{"x":10.6297,"y":1.3815,"z":-68.0481},"rot":{"x":0.0208,"y":270.0028,"z":0.0168}},"190831":{"lock":false,"pos":{"x":19.3437,"y":1.352,"z":-58.8679},"rot":{"x":0.0208,"y":269.9996,"z":0.0168}},"1fabe7":{"lock":false,"pos":{"x":19.3437,"y":1.3506,"z":-63.4679},"rot":{"x":0.0208,"y":269.9997,"z":0.0168}},"26d107":{"lock":false,"pos":{"x":10.6297,"y":1.3822,"z":-65.7481},"rot":{"x":0.0208,"y":269.9899,"z":0.0168}},"2a8b6a":{"lock":false,"pos":{"x":10.6297,"y":1.3855,"z":-54.2484},"rot":{"x":0.0208,"y":270.0038,"z":0.0168}},"353d4e":{"lock":false,"pos":{"x":19.3437,"y":1.3533,"z":-54.2679},"rot":{"x":0.0208,"y":269.9997,"z":0.0168}},"3c29ae":{"lock":false,"pos":{"x":10.6297,"y":1.3781,"z":-79.548},"rot":{"x":0.0208,"y":269.9997,"z":0.0168}},"3c635c":{"lock":false,"pos":{"x":24.5004,"y":1.3545,"z":-56.6186},"rot":{"x":0.0208,"y":269.9997,"z":0.0168}},"49e21a":{"lock":false,"pos":{"x":10.6297,"y":1.3862,"z":-51.9484},"rot":{"x":0.0208,"y":269.9889,"z":0.0168}},"4aebc0":{"lock":false,"pos":{"x":7.0766,"y":1.3843,"z":-54.2605},"rot":{"x":0.0208,"y":269.9997,"z":0.0168}},"4c0449":{"lock":false,"pos":{"x":19.3437,"y":1.3493,"z":-68.0675},"rot":{"x":0.0208,"y":269.9996,"z":0.0168}},"4f7817":{"lock":false,"pos":{"x":19.3437,"y":1.3526,"z":-56.5679},"rot":{"x":0.0208,"y":269.9997,"z":0.0168}},"608472":{"lock":false,"pos":{"x":10.6296,"y":1.3829,"z":-63.4484},"rot":{"x":0.0208,"y":269.9999,"z":0.0168}},"6a6f9a":{"lock":false,"pos":{"x":10.6139,"y":1.3754,"z":-88.74},"rot":{"x":0.0208,"y":269.9998,"z":0.0168}},"6ef1de":{"lock":false,"pos":{"x":19.3437,"y":1.3499,"z":-65.7675},"rot":{"x":0.0208,"y":269.9997,"z":0.0168}},"73e595":{"lock":false,"pos":{"x":19.3437,"y":1.3479,"z":-72.6677},"rot":{"x":0.0208,"y":269.9998,"z":0.0168}},"74a9a7":{"lock":false,"pos":{"x":7.0766,"y":1.3836,"z":-56.5605},"rot":{"x":0.0208,"y":269.9997,"z":0.0168}},"77b6b2":{"lock":false,"pos":{"x":24.5003,"y":1.3538,"z":-58.9186},"rot":{"x":0.0208,"y":269.9997,"z":0.0168}},"7881f2":{"lock":false,"pos":{"x":10.6297,"y":1.3761,"z":-86.448},"rot":{"x":0.0208,"y":269.9933,"z":0.0168}},"7a9704":{"lock":false,"pos":{"x":19.3457,"y":1.3452,"z":-81.8678},"rot":{"x":0.0208,"y":269.9998,"z":0.0168}},"7ab8d7":{"lock":false,"pos":{"x":7.0766,"y":1.3863,"z":-47.3605},"rot":{"x":0.0208,"y":269.9998,"z":0.0168}},"7d0c7e":{"lock":false,"pos":{"x":19.3435,"y":1.3445,"z":-84.1675},"rot":{"x":0.0208,"y":269.9998,"z":0.0168}},"84a867":{"lock":false,"pos":{"x":19.3436,"y":1.3466,"z":-77.2676},"rot":{"x":0.0208,"y":269.9997,"z":0.0168}},"8ff7ba":{"lock":false,"pos":{"x":10.6297,"y":1.3869,"z":-49.6484},"rot":{"x":0.0208,"y":269.9997,"z":0.0168}},"928e1e":{"lock":false,"pos":{"x":10.6297,"y":1.3835,"z":-61.1484},"rot":{"x":0.0208,"y":269.9996,"z":0.0168}},"93d418":{"lock":false,"pos":{"x":24.5003,"y":1.3572,"z":-47.4186},"rot":{"x":0.0208,"y":270.0088,"z":0.0168}},"9fcffb":{"lock":false,"pos":{"x":10.6297,"y":1.3802,"z":-72.6481},"rot":{"x":0.0208,"y":270.0006,"z":0.0168}},"a0c0ae":{"lock":false,"pos":{"x":10.6297,"y":1.3842,"z":-58.8484},"rot":{"x":0.0208,"y":270.0039,"z":0.0168}},"a263e2":{"lock":false,"pos":{"x":19.3279,"y":1.3432,"z":-88.757},"rot":{"x":0.0208,"y":269.9998,"z":0.0168}},"a8218c":{"lock":false,"pos":{"x":24.5004,"y":1.3552,"z":-54.3186},"rot":{"x":0.0208,"y":270.0042,"z":0.0168}},"a8f780":{"lock":false,"pos":{"x":24.5003,"y":1.3565,"z":-49.7185},"rot":{"x":0.0208,"y":270.0185,"z":0.0168}},"ac7359":{"lock":false,"pos":{"x":19.3437,"y":1.3546,"z":-49.6679},"rot":{"x":0.0208,"y":269.9997,"z":0.0168}},"b0cb8c":{"lock":false,"pos":{"x":19.3437,"y":1.354,"z":-51.9679},"rot":{"x":0.0208,"y":269.9997,"z":0.0168}},"b74c47":{"lock":false,"pos":{"x":19.3437,"y":1.3439,"z":-86.4676},"rot":{"x":0.0208,"y":269.9997,"z":0.0168}},"c1be23":{"lock":false,"pos":{"x":10.6297,"y":1.3788,"z":-77.248},"rot":{"x":0.0208,"y":269.9709,"z":0.0168}},"c2a019":{"lock":false,"pos":{"x":19.3437,"y":1.3553,"z":-47.3679},"rot":{"x":0.0208,"y":269.9997,"z":0.0168}},"c54fd2":{"lock":false,"pos":{"x":10.6296,"y":1.3795,"z":-74.9481},"rot":{"x":0.0208,"y":269.9998,"z":0.0168}},"c580f5":{"lock":false,"pos":{"x":7.0766,"y":1.3856,"z":-49.6605},"rot":{"x":0.0208,"y":269.9997,"z":0.0168}},"cb2302":{"lock":false,"pos":{"x":7.0766,"y":1.3849,"z":-51.9605},"rot":{"x":0.0208,"y":269.9999,"z":0.0168}},"d051b3":{"lock":false,"pos":{"x":24.5003,"y":1.3558,"z":-52.0186},"rot":{"x":0.0208,"y":270.0076,"z":0.0168}},"d60500":{"lock":false,"pos":{"x":10.6137,"y":1.3748,"z":-91.04},"rot":{"x":0.0208,"y":269.9996,"z":0.0168}},"e24027":{"lock":false,"pos":{"x":10.6297,"y":1.3808,"z":-70.3481},"rot":{"x":0.0208,"y":270.0005,"z":0.0168}},"e32c1b":{"lock":false,"pos":{"x":19.3437,"y":1.3486,"z":-70.3675},"rot":{"x":0.0208,"y":269.9998,"z":0.0168}},"e4a963":{"lock":false,"pos":{"x":19.3436,"y":1.3472,"z":-74.9677},"rot":{"x":0.0208,"y":269.9984,"z":0.0168}},"e56f25":{"lock":false,"pos":{"x":10.6296,"y":1.3768,"z":-84.148},"rot":{"x":0.0208,"y":269.9998,"z":0.0168}}}}' +MaterialIndex: -1 +MeshIndex: -1 +Name: Custom_Model_Bag +Nickname: Survivor +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 32.6973152 + posY: 1.65108466 + posZ: -85.51002 + rotX: 0.012118591 + rotY: 270.0201 + rotZ: 0.0136790881 + scaleX: 1.2 + scaleY: 1.2 + scaleZ: 1.2 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 068ba0/Custom_Model_Bag Survivor 550be2/Card A Chance Encounter (2) 4f7817.yaml b/unpacked/Custom_Model_Bag Survivor 068ba0/Custom_Model_Bag Survivor 550be2/Card A Chance Encounter (2) 4f7817.yaml new file mode 100644 index 000000000..bc30baa06 --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 068ba0/Custom_Model_Bag Survivor 550be2/Card A Chance Encounter (2) 4f7817.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 209744 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 4f7817 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: A Chance Encounter (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.343668 + posY: 1.3526262 + posZ: -56.5679054 + rotX: 0.020808341 + rotY: 269.9997 + rotZ: 0.0167694464 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 068ba0/Custom_Model_Bag Survivor 550be2/Card A Test of Will (1) b0cb8c.yaml b/unpacked/Custom_Model_Bag Survivor 068ba0/Custom_Model_Bag Survivor 550be2/Card A Test of Will (1) b0cb8c.yaml new file mode 100644 index 000000000..8469deb7f --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 068ba0/Custom_Model_Bag Survivor 550be2/Card A Test of Will (1) b0cb8c.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 209737 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: b0cb8c +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: A Test of Will (1) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.3436623 + posY: 1.35397279 + posZ: -51.9679 + rotX: 0.0208085086 + rotY: 269.999725 + rotZ: 0.0167692285 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 068ba0/Custom_Model_Bag Survivor 550be2/Card Against All Odds (2) 73e595.yaml b/unpacked/Custom_Model_Bag Survivor 068ba0/Custom_Model_Bag Survivor 550be2/Card Against All Odds (2) 73e595.yaml new file mode 100644 index 000000000..2ea830d8f --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 068ba0/Custom_Model_Bag Survivor 550be2/Card Against All Odds (2) 73e595.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 209750 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 73e595 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Against All Odds (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.3436527 + posY: 1.34791362 + posZ: -72.6676559 + rotX: 0.0208084658 + rotY: 269.999756 + rotZ: 0.0167695377 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 068ba0/Custom_Model_Bag Survivor 550be2/Card Alter Fate (3) 0012ed.yaml b/unpacked/Custom_Model_Bag Survivor 068ba0/Custom_Model_Bag Survivor 550be2/Card Alter Fate (3) 0012ed.yaml new file mode 100644 index 000000000..8173deba2 --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 068ba0/Custom_Model_Bag Survivor 550be2/Card Alter Fate (3) 0012ed.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 209756 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 0012ed +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Alter Fate (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.3436642 + posY: 1.345894 + posZ: -79.56757 + rotX: 0.0208084174 + rotY: 269.999817 + rotZ: 0.0167693812 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 068ba0/Custom_Model_Bag Survivor 550be2/Card Aquinnah (1) 26d107.yaml b/unpacked/Custom_Model_Bag Survivor 068ba0/Custom_Model_Bag Survivor 550be2/Card Aquinnah (1) 26d107.yaml new file mode 100644 index 000000000..385f45e00 --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 068ba0/Custom_Model_Bag Survivor 550be2/Card Aquinnah (1) 26d107.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 209741 +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 + UniqueBack: false +Description: The Forgotten Daughter +GMNotes: '' +GUID: 26d107 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Aquinnah (1) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.62966 + posY: 1.38217831 + posZ: -65.7480545 + rotX: 0.0208122656 + rotY: 269.989868 + rotZ: 0.0167669822 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 068ba0/Custom_Model_Bag Survivor 550be2/Card Aquinnah (3) 74a9a7.yaml b/unpacked/Custom_Model_Bag Survivor 068ba0/Custom_Model_Bag Survivor 550be2/Card Aquinnah (3) 74a9a7.yaml new file mode 100644 index 000000000..cd0a6406f --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 068ba0/Custom_Model_Bag Survivor 550be2/Card Aquinnah (3) 74a9a7.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 209761 +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 + UniqueBack: false +Description: The Forgotten Daughter +GMNotes: '' +GUID: 74a9a7 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Aquinnah (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 7.076564 + posY: 1.38357723 + posZ: -56.560482 + rotX: 0.020809317 + rotY: 269.9997 + rotZ: 0.0167712774 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 068ba0/Custom_Model_Bag Survivor 550be2/Card Bait and Switch (3) 84a867.yaml b/unpacked/Custom_Model_Bag Survivor 068ba0/Custom_Model_Bag Survivor 550be2/Card Bait and Switch (3) 84a867.yaml new file mode 100644 index 000000000..4e82cbb13 --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 068ba0/Custom_Model_Bag Survivor 550be2/Card Bait and Switch (3) 84a867.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 84a867 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Bait and Switch (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.3436451 + posY: 1.346567 + posZ: -77.26758 + rotX: 0.0208104774 + rotY: 269.999664 + rotZ: 0.0167728774 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 068ba0/Custom_Model_Bag Survivor 550be2/Card Brute Force (1) 93d418.yaml b/unpacked/Custom_Model_Bag Survivor 068ba0/Custom_Model_Bag Survivor 550be2/Card Brute Force (1) 93d418.yaml new file mode 100644 index 000000000..e39433d83 --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 068ba0/Custom_Model_Bag Survivor 550be2/Card Brute Force (1) 93d418.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 93d418 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Brute Force (1) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 24.5003471 + posY: 1.35717714 + posZ: -47.41856 + rotX: 0.0208058413 + rotY: 270.0088 + rotZ: 0.01677254 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 068ba0/Custom_Model_Bag Survivor 550be2/Card Close Call (2) 1fabe7.yaml b/unpacked/Custom_Model_Bag Survivor 068ba0/Custom_Model_Bag Survivor 550be2/Card Close Call (2) 1fabe7.yaml new file mode 100644 index 000000000..62bfdc36b --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 068ba0/Custom_Model_Bag Survivor 550be2/Card Close Call (2) 1fabe7.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 209748 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 1fabe7 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Close Call (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.3436565 + posY: 1.35060656 + posZ: -63.4678955 + rotX: 0.0208083559 + rotY: 269.999664 + rotZ: 0.01676887 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 068ba0/Custom_Model_Bag Survivor 550be2/Card Cornered (2) 3c29ae.yaml b/unpacked/Custom_Model_Bag Survivor 068ba0/Custom_Model_Bag Survivor 550be2/Card Cornered (2) 3c29ae.yaml new file mode 100644 index 000000000..806f578cb --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 068ba0/Custom_Model_Bag Survivor 550be2/Card Cornered (2) 3c29ae.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 209751 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 3c29ae +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Cornered (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.62965 + posY: 1.378139 + posZ: -79.54802 + rotX: 0.0208074581 + rotY: 269.9997 + rotZ: 0.0167684257 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 068ba0/Custom_Model_Bag Survivor 550be2/Card Devil's Luck (1) c2a019.yaml b/unpacked/Custom_Model_Bag Survivor 068ba0/Custom_Model_Bag Survivor 550be2/Card Devil's Luck (1) c2a019.yaml new file mode 100644 index 000000000..b6daa4247 --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 068ba0/Custom_Model_Bag Survivor 550be2/Card Devil's Luck (1) c2a019.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 209735 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: c2a019 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Devil's Luck (1) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.3436642 + posY: 1.35531926 + posZ: -47.36791 + rotX: 0.0208085142 + rotY: 269.999664 + rotZ: 0.01676977 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 068ba0/Custom_Model_Bag Survivor 550be2/Card Dig Deep (2) 11aa2c.yaml b/unpacked/Custom_Model_Bag Survivor 068ba0/Custom_Model_Bag Survivor 550be2/Card Dig Deep (2) 11aa2c.yaml new file mode 100644 index 000000000..0ec30d499 --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 068ba0/Custom_Model_Bag Survivor 550be2/Card Dig Deep (2) 11aa2c.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 209745 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 11aa2c +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Dig Deep (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.6296539 + posY: 1.38150525 + posZ: -68.0480652 + rotX: 0.0208068546 + rotY: 270.002838 + rotZ: 0.016769629 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 068ba0/Custom_Model_Bag Survivor 550be2/Card Eucatastrophe (3) 7d0c7e.yaml b/unpacked/Custom_Model_Bag Survivor 068ba0/Custom_Model_Bag Survivor 550be2/Card Eucatastrophe (3) 7d0c7e.yaml new file mode 100644 index 000000000..d09c699f2 --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 068ba0/Custom_Model_Bag Survivor 550be2/Card Eucatastrophe (3) 7d0c7e.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 7d0c7e +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Eucatastrophe (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.34352 + posY: 1.34454739 + posZ: -84.16753 + rotX: 0.0208084825 + rotY: 269.999756 + rotZ: 0.0167699344 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 068ba0/Custom_Model_Bag Survivor 550be2/Card Expeditious Retreat (1) a8f780.yaml b/unpacked/Custom_Model_Bag Survivor 068ba0/Custom_Model_Bag Survivor 550be2/Card Expeditious Retreat (1) a8f780.yaml new file mode 100644 index 000000000..339f50d62 --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 068ba0/Custom_Model_Bag Survivor 550be2/Card Expeditious Retreat (1) a8f780.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Innate. Developed. +GMNotes: '' +GUID: a8f780 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Expeditious Retreat (1) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 24.5003471 + posY: 1.356504 + posZ: -49.7185478 + rotX: 0.0208028425 + rotY: 270.0185 + rotZ: 0.0167766 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 068ba0/Custom_Model_Bag Survivor 550be2/Card Fire Extinguisher (1) 2a8b6a.yaml b/unpacked/Custom_Model_Bag Survivor 068ba0/Custom_Model_Bag Survivor 550be2/Card Fire Extinguisher (1) 2a8b6a.yaml new file mode 100644 index 000000000..4b80a7718 --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 068ba0/Custom_Model_Bag Survivor 550be2/Card Fire Extinguisher (1) 2a8b6a.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 209738 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 2a8b6a +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Fire Extinguisher (1) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.6296606 + posY: 1.38554442 + posZ: -54.24844 + rotX: 0.020808531 + rotY: 270.003845 + rotZ: 0.0167726427 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 068ba0/Custom_Model_Bag Survivor 550be2/Card Five of Pentacles (1) 071c48.yaml b/unpacked/Custom_Model_Bag Survivor 068ba0/Custom_Model_Bag Survivor 550be2/Card Five of Pentacles (1) 071c48.yaml new file mode 100644 index 000000000..6a93d2460 --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 068ba0/Custom_Model_Bag Survivor 550be2/Card Five of Pentacles (1) 071c48.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: From the Brink +GMNotes: '' +GUID: 071c48 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Five of Pentacles (1) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.6296568 + posY: 1.38487124 + posZ: -56.5484428 + rotX: 0.0208095759 + rotY: 269.9997 + rotZ: 0.0167711638 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 068ba0/Custom_Model_Bag Survivor 550be2/Card Flare (1) 353d4e.yaml b/unpacked/Custom_Model_Bag Survivor 068ba0/Custom_Model_Bag Survivor 550be2/Card Flare (1) 353d4e.yaml new file mode 100644 index 000000000..b5b5089b0 --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 068ba0/Custom_Model_Bag Survivor 550be2/Card Flare (1) 353d4e.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 209739 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 353d4e +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Flare (1) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.343668 + posY: 1.3532995 + posZ: -54.2679024 + rotX: 0.02080852 + rotY: 269.9997 + rotZ: 0.0167694818 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 068ba0/Custom_Model_Bag Survivor 550be2/Card Fortune or Fate (2) 6ef1de.yaml b/unpacked/Custom_Model_Bag Survivor 068ba0/Custom_Model_Bag Survivor 550be2/Card Fortune or Fate (2) 6ef1de.yaml new file mode 100644 index 000000000..29602689d --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 068ba0/Custom_Model_Bag Survivor 550be2/Card Fortune or Fate (2) 6ef1de.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 6ef1de +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Fortune or Fate (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.3436642 + posY: 1.34993339 + posZ: -65.76754 + rotX: 0.02080842 + rotY: 269.999664 + rotZ: 0.016769357 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 068ba0/Custom_Model_Bag Survivor 550be2/Card Gravedigger's Shovel (2) e24027.yaml b/unpacked/Custom_Model_Bag Survivor 068ba0/Custom_Model_Bag Survivor 550be2/Card Gravedigger's Shovel (2) e24027.yaml new file mode 100644 index 000000000..85e2818dd --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 068ba0/Custom_Model_Bag Survivor 550be2/Card Gravedigger's Shovel (2) e24027.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: e24027 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Gravedigger's Shovel (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.62965 + posY: 1.380832 + posZ: -70.34807 + rotX: 0.0208072755 + rotY: 270.0005 + rotZ: 0.0167682432 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 068ba0/Custom_Model_Bag Survivor 550be2/Card Grisly Totem (3) c580f5.yaml b/unpacked/Custom_Model_Bag Survivor 068ba0/Custom_Model_Bag Survivor 550be2/Card Grisly Totem (3) c580f5.yaml new file mode 100644 index 000000000..10738d0f3 --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 068ba0/Custom_Model_Bag Survivor 550be2/Card Grisly Totem (3) c580f5.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Survivor +GMNotes: '' +GUID: c580f5 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Grisly Totem (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 7.07655859 + posY: 1.385597 + posZ: -49.6604652 + rotX: 0.0208098069 + rotY: 269.999664 + rotZ: 0.0167704616 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 068ba0/Custom_Model_Bag Survivor 550be2/Card Guiding Spirit (1) 8ff7ba.yaml b/unpacked/Custom_Model_Bag Survivor 068ba0/Custom_Model_Bag Survivor 550be2/Card Guiding Spirit (1) 8ff7ba.yaml new file mode 100644 index 000000000..757bec03a --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 068ba0/Custom_Model_Bag Survivor 550be2/Card Guiding Spirit (1) 8ff7ba.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 8ff7ba +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Guiding Spirit (1) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.6296511 + posY: 1.38689089 + posZ: -49.6484337 + rotX: 0.0208097044 + rotY: 269.999725 + rotZ: 0.0167711377 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 068ba0/Custom_Model_Bag Survivor 550be2/Card Infighting (3) 7a9704.yaml b/unpacked/Custom_Model_Bag Survivor 068ba0/Custom_Model_Bag Survivor 550be2/Card Infighting (3) 7a9704.yaml new file mode 100644 index 000000000..982a341bd --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 068ba0/Custom_Model_Bag Survivor 550be2/Card Infighting (3) 7a9704.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 209754 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 7a9704 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Infighting (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.3456936 + posY: 1.3452214 + posZ: -81.86779 + rotX: 0.02080843 + rotY: 269.999817 + rotZ: 0.0167693961 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 068ba0/Custom_Model_Bag Survivor 550be2/Card Jessica Hyde (1) a0c0ae.yaml b/unpacked/Custom_Model_Bag Survivor 068ba0/Custom_Model_Bag Survivor 550be2/Card Jessica Hyde (1) a0c0ae.yaml new file mode 100644 index 000000000..9bf2dabbc --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 068ba0/Custom_Model_Bag Survivor 550be2/Card Jessica Hyde (1) a0c0ae.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Wrong Place, Wrong Time +GMNotes: '' +GUID: a0c0ae +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Jessica Hyde (1) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.6296644 + posY: 1.38419807 + posZ: -58.8484459 + rotX: 0.0208084658 + rotY: 270.0039 + rotZ: 0.01677279 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 068ba0/Custom_Model_Bag Survivor 550be2/Card Lantern (2) 9fcffb.yaml b/unpacked/Custom_Model_Bag Survivor 068ba0/Custom_Model_Bag Survivor 550be2/Card Lantern (2) 9fcffb.yaml new file mode 100644 index 000000000..b74afc84d --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 068ba0/Custom_Model_Bag Survivor 550be2/Card Lantern (2) 9fcffb.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 9fcffb +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Lantern (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.62965 + posY: 1.38015866 + posZ: -72.6481 + rotX: 0.02080715 + rotY: 270.000641 + rotZ: 0.0167688783 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 068ba0/Custom_Model_Bag Survivor 550be2/Card Lucky! (2) 190831.yaml b/unpacked/Custom_Model_Bag Survivor 068ba0/Custom_Model_Bag Survivor 550be2/Card Lucky! (2) 190831.yaml new file mode 100644 index 000000000..d7e766b49 --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 068ba0/Custom_Model_Bag Survivor 550be2/Card Lucky! (2) 190831.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 209746 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: '190831' +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Lucky! (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.343668 + posY: 1.351953 + posZ: -58.86791 + rotX: 0.0208084043 + rotY: 269.999634 + rotZ: 0.01676909 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 068ba0/Custom_Model_Bag Survivor 550be2/Card Lure (1) ac7359.yaml b/unpacked/Custom_Model_Bag Survivor 068ba0/Custom_Model_Bag Survivor 550be2/Card Lure (1) ac7359.yaml new file mode 100644 index 000000000..8225e31ab --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 068ba0/Custom_Model_Bag Survivor 550be2/Card Lure (1) ac7359.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 209736 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: ac7359 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Lure (1) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.3436661 + posY: 1.354646 + posZ: -49.6678963 + rotX: 0.0208083969 + rotY: 269.9997 + rotZ: 0.0167694073 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 068ba0/Custom_Model_Bag Survivor 550be2/Card Lure (2) 06e14d.yaml b/unpacked/Custom_Model_Bag Survivor 068ba0/Custom_Model_Bag Survivor 550be2/Card Lure (2) 06e14d.yaml new file mode 100644 index 000000000..4c6117131 --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 068ba0/Custom_Model_Bag Survivor 550be2/Card Lure (2) 06e14d.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 06e14d +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Lure (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.34366 + posY: 1.35127985 + posZ: -61.16791 + rotX: 0.0208082758 + rotY: 269.999939 + rotZ: 0.0167696252 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 068ba0/Custom_Model_Bag Survivor 550be2/Card Miss Doyle (1) 928e1e.yaml b/unpacked/Custom_Model_Bag Survivor 068ba0/Custom_Model_Bag Survivor 550be2/Card Miss Doyle (1) 928e1e.yaml new file mode 100644 index 000000000..7fb740698 --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 068ba0/Custom_Model_Bag Survivor 550be2/Card Miss Doyle (1) 928e1e.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Cat General of Ulthar +GMNotes: '' +GUID: 928e1e +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Miss Doyle (1) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.629653 + posY: 1.38352478 + posZ: -61.14845 + rotX: 0.0208096653 + rotY: 269.999634 + rotZ: 0.0167710632 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 068ba0/Custom_Model_Bag Survivor 550be2/Card Newspaper (2) c54fd2.yaml b/unpacked/Custom_Model_Bag Survivor 068ba0/Custom_Model_Bag Survivor 550be2/Card Newspaper (2) c54fd2.yaml new file mode 100644 index 000000000..d298923a5 --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 068ba0/Custom_Model_Bag Survivor 550be2/Card Newspaper (2) c54fd2.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 209747 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: c54fd2 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Newspaper (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.6296444 + posY: 1.37948537 + posZ: -74.94812 + rotX: 0.0208073687 + rotY: 269.999817 + rotZ: 0.0167684443 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 068ba0/Custom_Model_Bag Survivor 550be2/Card Nightmare Bauble (3) 7881f2.yaml b/unpacked/Custom_Model_Bag Survivor 068ba0/Custom_Model_Bag Survivor 550be2/Card Nightmare Bauble (3) 7881f2.yaml new file mode 100644 index 000000000..40e0a3145 --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 068ba0/Custom_Model_Bag Survivor 550be2/Card Nightmare Bauble (3) 7881f2.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Item. Charm. Cursed. +GMNotes: '' +GUID: 7881f2 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Nightmare Bauble (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.62969 + posY: 1.37611926 + posZ: -86.44803 + rotX: 0.0208094027 + rotY: 269.993347 + rotZ: 0.0167656578 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 068ba0/Custom_Model_Bag Survivor 550be2/Card Nothing Left to Lose (3) e4a963.yaml b/unpacked/Custom_Model_Bag Survivor 068ba0/Custom_Model_Bag Survivor 550be2/Card Nothing Left to Lose (3) e4a963.yaml new file mode 100644 index 000000000..7f6b686ad --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 068ba0/Custom_Model_Bag Survivor 550be2/Card Nothing Left to Lose (3) e4a963.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Spirit. +GMNotes: '' +GUID: e4a963 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Nothing Left to Lose (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.343647 + posY: 1.34724033 + posZ: -74.96768 + rotX: 0.0208108462 + rotY: 269.998444 + rotZ: 0.016772354 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 068ba0/Custom_Model_Bag Survivor 550be2/Card Old Hunting Rifle (3) 4aebc0.yaml b/unpacked/Custom_Model_Bag Survivor 068ba0/Custom_Model_Bag Survivor 550be2/Card Old Hunting Rifle (3) 4aebc0.yaml new file mode 100644 index 000000000..3d05e57d8 --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 068ba0/Custom_Model_Bag Survivor 550be2/Card Old Hunting Rifle (3) 4aebc0.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 443800 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '4438': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025946328/561232524C8EAA4B4371B28652F78969E6ED6FFB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 4aebc0 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Old Hunting Rifle (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 7.0765605 + posY: 1.38425052 + posZ: -54.26048 + rotX: 0.02080992 + rotY: 269.999725 + rotZ: 0.01677053 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 068ba0/Custom_Model_Bag Survivor 550be2/Card On Your Own (3) 7ab8d7.yaml b/unpacked/Custom_Model_Bag Survivor 068ba0/Custom_Model_Bag Survivor 550be2/Card On Your Own (3) 7ab8d7.yaml new file mode 100644 index 000000000..5459193fa --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 068ba0/Custom_Model_Bag Survivor 550be2/Card On Your Own (3) 7ab8d7.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 209758 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 7ab8d7 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: On Your Own (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 7.07656574 + posY: 1.38627028 + posZ: -47.3604774 + rotX: 0.0208098926 + rotY: 269.999847 + rotZ: 0.0167709626 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 068ba0/Custom_Model_Bag Survivor 550be2/Card Oops! (2) 4c0449.yaml b/unpacked/Custom_Model_Bag Survivor 068ba0/Custom_Model_Bag Survivor 550be2/Card Oops! (2) 4c0449.yaml new file mode 100644 index 000000000..517e66ced --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 068ba0/Custom_Model_Bag Survivor 550be2/Card Oops! (2) 4c0449.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 443905 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '4439': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025946328/561232524C8EAA4B4371B28652F78969E6ED6FFB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 4c0449 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Oops! (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.3436623 + posY: 1.34926009 + posZ: -68.06754 + rotX: 0.0208084118 + rotY: 269.999634 + rotZ: 0.01676981 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 068ba0/Custom_Model_Bag Survivor 550be2/Card Peter Sylvestre (2) 038a3a.yaml b/unpacked/Custom_Model_Bag Survivor 068ba0/Custom_Model_Bag Survivor 550be2/Card Peter Sylvestre (2) 038a3a.yaml new file mode 100644 index 000000000..dc94a4b96 --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 068ba0/Custom_Model_Bag Survivor 550be2/Card Peter Sylvestre (2) 038a3a.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 209752 +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 + UniqueBack: false +Description: Big Man on Campus +GMNotes: '' +GUID: 038a3a +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Peter Sylvestre (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.6316948 + posY: 1.37746644 + posZ: -81.8482361 + rotX: 0.0208074488 + rotY: 269.9997 + rotZ: 0.0167683326 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 068ba0/Custom_Model_Bag Survivor 550be2/Card Plucky (1) 01f114.yaml b/unpacked/Custom_Model_Bag Survivor 068ba0/Custom_Model_Bag Survivor 550be2/Card Plucky (1) 01f114.yaml new file mode 100644 index 000000000..9fe9d771f --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 068ba0/Custom_Model_Bag Survivor 550be2/Card Plucky (1) 01f114.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 209734 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 01f114 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Plucky (1) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.6296616 + posY: 1.38756418 + posZ: -47.3484459 + rotX: 0.0208098926 + rotY: 269.999817 + rotZ: 0.0167705081 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 068ba0/Custom_Model_Bag Survivor 550be2/Card Rabbit's Foot (3) 6a6f9a.yaml b/unpacked/Custom_Model_Bag Survivor 068ba0/Custom_Model_Bag Survivor 550be2/Card Rabbit's Foot (3) 6a6f9a.yaml new file mode 100644 index 000000000..1728b67dc --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 068ba0/Custom_Model_Bag Survivor 550be2/Card Rabbit's Foot (3) 6a6f9a.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 209755 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 6a6f9a +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Rabbit's Foot (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.6138659 + posY: 1.37544262 + posZ: -88.74 + rotX: 0.0208075326 + rotY: 269.9998 + rotZ: 0.01676841 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 068ba0/Custom_Model_Bag Survivor 550be2/Card Rise to the Occasion (3) 77b6b2.yaml b/unpacked/Custom_Model_Bag Survivor 068ba0/Custom_Model_Bag Survivor 550be2/Card Rise to the Occasion (3) 77b6b2.yaml new file mode 100644 index 000000000..bd4cc8d2f --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 068ba0/Custom_Model_Bag Survivor 550be2/Card Rise to the Occasion (3) 77b6b2.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 443904 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '4439': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025946328/561232524C8EAA4B4371B28652F78969E6ED6FFB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 77b6b2 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Rise to the Occasion (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 24.5003471 + posY: 1.353811 + posZ: -58.91856 + rotX: 0.02080829 + rotY: 269.999725 + rotZ: 0.0167699587 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 068ba0/Custom_Model_Bag Survivor 550be2/Card Scavenging (2) c1be23.yaml b/unpacked/Custom_Model_Bag Survivor 068ba0/Custom_Model_Bag Survivor 550be2/Card Scavenging (2) c1be23.yaml new file mode 100644 index 000000000..0bb573f62 --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 068ba0/Custom_Model_Bag Survivor 550be2/Card Scavenging (2) c1be23.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Talent. +GMNotes: '' +GUID: c1be23 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Scavenging (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.62965 + posY: 1.37881231 + posZ: -77.24802 + rotX: 0.0208159648 + rotY: 269.970917 + rotZ: 0.0167583246 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 068ba0/Custom_Model_Bag Survivor 550be2/Card Scrapper (3) e56f25.yaml b/unpacked/Custom_Model_Bag Survivor 068ba0/Custom_Model_Bag Survivor 550be2/Card Scrapper (3) e56f25.yaml new file mode 100644 index 000000000..63716018f --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 068ba0/Custom_Model_Bag Survivor 550be2/Card Scrapper (3) e56f25.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 209753 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: e56f25 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Scrapper (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.6295586 + posY: 1.37679243 + posZ: -84.14801 + rotX: 0.0208075978 + rotY: 269.999756 + rotZ: 0.0167681389 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 068ba0/Custom_Model_Bag Survivor 550be2/Card Sharp Vision (1) d051b3.yaml b/unpacked/Custom_Model_Bag Survivor 068ba0/Custom_Model_Bag Survivor 550be2/Card Sharp Vision (1) d051b3.yaml new file mode 100644 index 000000000..b568c7338 --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 068ba0/Custom_Model_Bag Survivor 550be2/Card Sharp Vision (1) d051b3.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Innate. Developed. +GMNotes: '' +GUID: d051b3 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Sharp Vision (1) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 24.5003471 + posY: 1.35583079 + posZ: -52.01855 + rotX: 0.0208060257 + rotY: 270.007568 + rotZ: 0.0167725887 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 068ba0/Custom_Model_Bag Survivor 550be2/Card Snare Trap (2) e32c1b.yaml b/unpacked/Custom_Model_Bag Survivor 068ba0/Custom_Model_Bag Survivor 550be2/Card Snare Trap (2) e32c1b.yaml new file mode 100644 index 000000000..d19a3181c --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 068ba0/Custom_Model_Bag Survivor 550be2/Card Snare Trap (2) e32c1b.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 209749 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: e32c1b +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Snare Trap (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.3436565 + posY: 1.34858692 + posZ: -70.3675461 + rotX: 0.0208084639 + rotY: 269.999817 + rotZ: 0.0167699251 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 068ba0/Custom_Model_Bag Survivor 550be2/Card Stroke of Luck (2) 3c635c.yaml b/unpacked/Custom_Model_Bag Survivor 068ba0/Custom_Model_Bag Survivor 550be2/Card Stroke of Luck (2) 3c635c.yaml new file mode 100644 index 000000000..6d9e23da3 --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 068ba0/Custom_Model_Bag Survivor 550be2/Card Stroke of Luck (2) 3c635c.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 209743 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 3c635c +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Stroke of Luck (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 24.5003548 + posY: 1.3544842 + posZ: -56.618557 + rotX: 0.0208084714 + rotY: 269.999725 + rotZ: 0.0167697966 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 068ba0/Custom_Model_Bag Survivor 550be2/Card Survival Instinct (2) a8218c.yaml b/unpacked/Custom_Model_Bag Survivor 068ba0/Custom_Model_Bag Survivor 550be2/Card Survival Instinct (2) a8218c.yaml new file mode 100644 index 000000000..223cb53c6 --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 068ba0/Custom_Model_Bag Survivor 550be2/Card Survival Instinct (2) a8218c.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 209742 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: a8218c +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Survival Instinct (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 24.5003548 + posY: 1.35515749 + posZ: -54.3185539 + rotX: 0.0208071955 + rotY: 270.00415 + rotZ: 0.016771337 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 068ba0/Custom_Model_Bag Survivor 550be2/Card Tennessee Sour Mash (3) cb2302.yaml b/unpacked/Custom_Model_Bag Survivor 068ba0/Custom_Model_Bag Survivor 550be2/Card Tennessee Sour Mash (3) cb2302.yaml new file mode 100644 index 000000000..4f4898134 --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 068ba0/Custom_Model_Bag Survivor 550be2/Card Tennessee Sour Mash (3) cb2302.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Survivor +GMNotes: '' +GUID: cb2302 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Tennessee Sour Mash (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 7.07655573 + posY: 1.38492393 + posZ: -51.96047 + rotX: 0.02080976 + rotY: 269.999878 + rotZ: 0.0167711 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 068ba0/Custom_Model_Bag Survivor 550be2/Card True Survivor (3) b74c47.yaml b/unpacked/Custom_Model_Bag Survivor 068ba0/Custom_Model_Bag Survivor 550be2/Card True Survivor (3) b74c47.yaml new file mode 100644 index 000000000..975380dd9 --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 068ba0/Custom_Model_Bag Survivor 550be2/Card True Survivor (3) b74c47.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 209759 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: b74c47 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: True Survivor (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.3436966 + posY: 1.34387422 + posZ: -86.46758 + rotX: 0.0208083875 + rotY: 269.999725 + rotZ: 0.0167693719 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 068ba0/Custom_Model_Bag Survivor 550be2/Card Try and Try Again (1) 49e21a.yaml b/unpacked/Custom_Model_Bag Survivor 068ba0/Custom_Model_Bag Survivor 550be2/Card Try and Try Again (1) 49e21a.yaml new file mode 100644 index 000000000..2e3c76b7a --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 068ba0/Custom_Model_Bag Survivor 550be2/Card Try and Try Again (1) 49e21a.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 443802 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '4438': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025946328/561232524C8EAA4B4371B28652F78969E6ED6FFB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 49e21a +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Try and Try Again (1) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.6296539 + posY: 1.38621771 + posZ: -51.9484329 + rotX: 0.02081269 + rotY: 269.988861 + rotZ: 0.0167649966 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 068ba0/Custom_Model_Bag Survivor 550be2/Card Try and Try Again (3) d60500.yaml b/unpacked/Custom_Model_Bag Survivor 068ba0/Custom_Model_Bag Survivor 550be2/Card Try and Try Again (3) d60500.yaml new file mode 100644 index 000000000..ae2438eb5 --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 068ba0/Custom_Model_Bag Survivor 550be2/Card Try and Try Again (3) d60500.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 209757 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: d60500 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Try and Try Again (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.6137209 + posY: 1.37476933 + posZ: -91.04 + rotX: 0.0208075084 + rotY: 269.999573 + rotZ: 0.0167683773 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 068ba0/Custom_Model_Bag Survivor 550be2/Card Will to Survive (3) a263e2.yaml b/unpacked/Custom_Model_Bag Survivor 068ba0/Custom_Model_Bag Survivor 550be2/Card Will to Survive (3) a263e2.yaml new file mode 100644 index 000000000..8c6d41012 --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 068ba0/Custom_Model_Bag Survivor 550be2/Card Will to Survive (3) a263e2.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 209760 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: a263e2 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Will to Survive (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.3279018 + posY: 1.34319842 + posZ: -88.75703 + rotX: 0.0208085068 + rotY: 269.999756 + rotZ: 0.016769819 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 068ba0/Custom_Model_Bag Survivor 550be2/Card Yaotl (1) 608472.yaml b/unpacked/Custom_Model_Bag Survivor 068ba0/Custom_Model_Bag Survivor 550be2/Card Yaotl (1) 608472.yaml new file mode 100644 index 000000000..87ceaabc6 --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 068ba0/Custom_Model_Bag Survivor 550be2/Card Yaotl (1) 608472.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 209740 +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 + UniqueBack: false +Description: Lost Son of Earth +GMNotes: '' +GUID: '608472' +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Yaotl (1) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.6296473 + posY: 1.3828516 + posZ: -63.4484367 + rotX: 0.02080842 + rotY: 269.9999 + rotZ: 0.0167691335 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 432630.ttslua b/unpacked/Custom_Model_Bag Survivor 432630.ttslua new file mode 100644 index 000000000..857093fb8 --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 432630.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,0,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 + 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=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,0,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,0,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,0,0}, height=350, width=750, + 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}, rotation={0,0,0}, height=350, width=800, + font_size=250, color={0,0,0}, font_color={1,1,1} + }) +-- self.createButton({ +-- label="Setup", click_function="buttonClick_setup", function_owner=self, +-- position={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.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 \ No newline at end of file diff --git a/unpacked/Custom_Model_Bag Survivor 432630.yaml b/unpacked/Custom_Model_Bag Survivor 432630.yaml new file mode 100644 index 000000000..cb56d87f6 --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 432630.yaml @@ -0,0 +1,102 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +ContainedObjects: +- !include 'Custom_Model_Bag Survivor 432630/Card Able Bodied 834f1e.yaml' +- !include 'Custom_Model_Bag Survivor 432630/Card Fortuitous Discovery 3175d1.yaml' +- !include 'Custom_Model_Bag Survivor 432630/Card Cunning Distraction 55e600.yaml' +- !include 'Custom_Model_Bag Survivor 432630/Card Cherished Keepsake fe7cba.yaml' +- !include 'Custom_Model_Bag Survivor 432630/Card Drawing Thin 12b8b7.yaml' +- !include 'Custom_Model_Bag Survivor 432630/Card Leather Coat 46004e.yaml' +- !include 'Custom_Model_Bag Survivor 432630/Card Rabbit''s Foot 472111.yaml' +- !include 'Custom_Model_Bag Survivor 432630/Card Fire Axe e10ba4.yaml' +- !include 'Custom_Model_Bag Survivor 432630/Card Newspaper 841cab.yaml' +- !include 'Custom_Model_Bag Survivor 432630/Card Scavenging 81356a.yaml' +- !include 'Custom_Model_Bag Survivor 432630/Card Stray Cat 8e580d.yaml' +- !include 'Custom_Model_Bag Survivor 432630/Card Lantern 793bdd.yaml' +- !include 'Custom_Model_Bag Survivor 432630/Card Madame Labranche 0ca8d1.yaml' +- !include 'Custom_Model_Bag Survivor 432630/Card Gravedigger''s Shovel fd5a67.yaml' +- !include 'Custom_Model_Bag Survivor 432630/Card Baseball Bat 0afb00.yaml' +- !include 'Custom_Model_Bag Survivor 432630/Card Dig Deep dcad6a.yaml' +- !include 'Custom_Model_Bag Survivor 432630/Card Moonstone 0d006f.yaml' +- !include 'Custom_Model_Bag Survivor 432630/Card Winging It 674d49.yaml' +- !include 'Custom_Model_Bag Survivor 432630/Card Lucky! 9f8d38.yaml' +- !include 'Custom_Model_Bag Survivor 432630/Card Impromptu Barrier 19cbde.yaml' +- !include 'Custom_Model_Bag Survivor 432630/Card Improvised Weapon d952b1.yaml' +- !include 'Custom_Model_Bag Survivor 432630/Card Hiding Spot 99b1a1.yaml' +- !include 'Custom_Model_Bag Survivor 432630/Card Fight or Flight 38a54e.yaml' +- !include 'Custom_Model_Bag Survivor 432630/Card Bait and Switch 6788de.yaml' +- !include 'Custom_Model_Bag Survivor 432630/Card Belly of the Beast 966de3.yaml' +- !include 'Custom_Model_Bag Survivor 432630/Card A Glimmer of Hope f21109.yaml' +- !include 'Custom_Model_Bag Survivor 432630/Card A Chance Encounter 555487.yaml' +- !include 'Custom_Model_Bag Survivor 432630/Card Scrounge for Supplies da6dff.yaml' +- !include 'Custom_Model_Bag Survivor 432630/Card Live and Learn c6dba2.yaml' +- !include 'Custom_Model_Bag Survivor 432630/Card Act of Desperation e40ae9.yaml' +- !include 'Custom_Model_Bag Survivor 432630/Card Not without a fight! a2af93.yaml' +- !include 'Custom_Model_Bag Survivor 432630/Card Last Chance a0d009.yaml' +- !include 'Custom_Model_Bag Survivor 432630/Card Resourceful 6d59df.yaml' +- !include 'Custom_Model_Bag Survivor 432630/Card Rise to the Occasion 4c1be0.yaml' +- !include 'Custom_Model_Bag Survivor 432630/Card Stunning Blow 56a25e.yaml' +- !include 'Custom_Model_Bag Survivor 432630/Card Take Heart 40bda1.yaml' +- !include 'Custom_Model_Bag Survivor 432630/Card Survival Instinct 136c96.yaml' +- !include 'Custom_Model_Bag Survivor 432630/Card Dumb Luck a521bd.yaml' +- !include 'Custom_Model_Bag Survivor 432630/Card Look what I found! 7fab09.yaml' +- !include 'Custom_Model_Bag Survivor 432630/Card Oops! c3c909.yaml' +- !include 'Custom_Model_Bag Survivor 432630/Card Perseverance 2aae05.yaml' +- !include 'Custom_Model_Bag Survivor 432630/Card Trial by Fire ec0259.yaml' +- !include 'Custom_Model_Bag Survivor 432630/Card Waylay a72cbd.yaml' +- !include 'Custom_Model_Bag Survivor 432630/Card Track Shoes acf7e4.yaml' +- !include 'Custom_Model_Bag Survivor 432630/Card Tennessee Sour Mash 517c94.yaml' +- !include 'Custom_Model_Bag Survivor 432630/Card Meat Cleaver 2c0b96.yaml' +- !include 'Custom_Model_Bag Survivor 432630/Card Peter Sylvestre 523fe8.yaml' +- !include 'Custom_Model_Bag Survivor 432630/Card Grisly Totem ead372.yaml' +- !include 'Custom_Model_Bag Survivor 432630/Card Dark Horse ab0560.yaml' +- !include 'Custom_Model_Bag Survivor 432630/Custom_Model_Bag Survivor 8ffae5.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/952965722515960460/F43F63452854B10B416FDF3BF9EF3068E6E68F26/ + MaterialIndex: 3 + MeshURL: https://pastebin.com/raw/ALrYhQGb + NormalURL: '' + TypeIndex: 6 +Description: '' +GMNotes: '' +GUID: '432630' +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: true +LuaScript: !include 'Custom_Model_Bag Survivor 432630.ttslua' +LuaScriptState: '{"ml":{"0afb00":{"lock":false,"pos":{"x":10.5689,"y":1.3451,"z":67.1607},"rot":{"x":0.0208,"y":269.9902,"z":0.0168}},"0ca8d1":{"lock":false,"pos":{"x":10.5689,"y":1.3464,"z":71.7607},"rot":{"x":0.0208,"y":269.9705,"z":0.0168}},"0d006f":{"lock":false,"pos":{"x":10.5689,"y":1.3437,"z":62.5608},"rot":{"x":0.0208,"y":270.0034,"z":0.0168}},"12b8b7":{"lock":false,"pos":{"x":10.5689,"y":1.3518,"z":90.1608},"rot":{"x":0.0208,"y":269.9882,"z":0.0168}},"136c96":{"lock":false,"pos":{"x":24.4389,"y":1.3535,"z":78.5904},"rot":{"x":0.0208,"y":270.0155,"z":0.0168}},"19cbde":{"lock":false,"pos":{"x":19.2841,"y":1.3482,"z":67.1411},"rot":{"x":0.0208,"y":270.0178,"z":0.0168}},"2aae05":{"lock":false,"pos":{"x":19.2842,"y":1.3442,"z":53.3412},"rot":{"x":0.0208,"y":270.0306,"z":0.0168}},"2c0b96":{"lock":false,"pos":{"x":10.5689,"y":1.341,"z":53.3608},"rot":{"x":0.0208,"y":270.0322,"z":0.0168}},"3175d1":{"lock":false,"pos":{"x":19.2841,"y":1.3556,"z":92.4412},"rot":{"x":0.0208,"y":269.9896,"z":0.0168}},"38a54e":{"lock":false,"pos":{"x":19.2841,"y":1.3503,"z":74.0412},"rot":{"x":0.0208,"y":270.0068,"z":0.0168}},"40bda1":{"lock":false,"pos":{"x":24.4394,"y":1.3528,"z":76.2904},"rot":{"x":0.0208,"y":270.0189,"z":0.0168}},"46004e":{"lock":false,"pos":{"x":10.5689,"y":1.3511,"z":87.8607},"rot":{"x":0.0208,"y":270.0058,"z":0.0168}},"472111":{"lock":false,"pos":{"x":10.5689,"y":1.3505,"z":85.5608},"rot":{"x":0.0208,"y":269.9902,"z":0.0168}},"4c1be0":{"lock":false,"pos":{"x":24.439,"y":1.3548,"z":83.1904},"rot":{"x":0.0208,"y":270.0324,"z":0.0168}},"517c94":{"lock":false,"pos":{"x":10.5531,"y":1.3404,"z":51.0713},"rot":{"x":0.0208,"y":270.0226,"z":0.0168}},"523fe8":{"lock":false,"pos":{"x":10.5688,"y":1.3417,"z":55.6608},"rot":{"x":0.0208,"y":269.9744,"z":0.0168}},"555487":{"lock":false,"pos":{"x":19.2841,"y":1.353,"z":83.2412},"rot":{"x":0.0208,"y":269.9686,"z":0.0168}},"55e600":{"lock":false,"pos":{"x":15.6184,"y":1.3543,"z":92.4528},"rot":{"x":0.0208,"y":270.0128,"z":0.0168}},"56a25e":{"lock":false,"pos":{"x":24.4394,"y":1.3541,"z":80.8903},"rot":{"x":0.0208,"y":269.9706,"z":0.0168}},"674d49":{"lock":false,"pos":{"x":19.2841,"y":1.3469,"z":62.5412},"rot":{"x":0.0208,"y":270.03,"z":0.0168}},"6788de":{"lock":false,"pos":{"x":19.2841,"y":1.3509,"z":76.3412},"rot":{"x":0.0208,"y":269.9727,"z":0.0168}},"6d59df":{"lock":false,"pos":{"x":24.4537,"y":1.3555,"z":85.486},"rot":{"x":0.0208,"y":270.0567,"z":0.0168}},"793bdd":{"lock":false,"pos":{"x":10.5689,"y":1.3471,"z":74.0607},"rot":{"x":0.0208,"y":270.0381,"z":0.0168}},"7fab09":{"lock":false,"pos":{"x":19.2861,"y":1.3455,"z":57.941},"rot":{"x":0.0208,"y":270.002,"z":0.0168}},"81356a":{"lock":false,"pos":{"x":10.5688,"y":1.3484,"z":78.6607},"rot":{"x":0.0208,"y":269.9942,"z":0.0168}},"834f1e":{"lock":false,"pos":{"x":24.4425,"y":1.3575,"z":92.3904},"rot":{"x":0.0208,"y":270.015,"z":0.0168}},"841cab":{"lock":false,"pos":{"x":10.5689,"y":1.3491,"z":80.9607},"rot":{"x":0.0208,"y":269.9546,"z":0.0168}},"8e580d":{"lock":false,"pos":{"x":10.5689,"y":1.3478,"z":76.3607},"rot":{"x":0.0208,"y":269.9876,"z":0.0168}},"966de3":{"lock":false,"pos":{"x":19.2841,"y":1.3516,"z":78.6412},"rot":{"x":0.0208,"y":270.007,"z":0.0168}},"99b1a1":{"lock":false,"pos":{"x":19.2841,"y":1.3496,"z":71.7412},"rot":{"x":0.0208,"y":270.0148,"z":0.0168}},"9f8d38":{"lock":false,"pos":{"x":19.2841,"y":1.3476,"z":64.8411},"rot":{"x":0.0208,"y":270.0167,"z":0.0168}},"a0d009":{"lock":false,"pos":{"x":24.4394,"y":1.3562,"z":87.7904},"rot":{"x":0.0208,"y":269.9702,"z":0.0168}},"a2af93":{"lock":false,"pos":{"x":24.4394,"y":1.3568,"z":90.0904},"rot":{"x":0.0208,"y":269.9705,"z":0.0168}},"a521bd":{"lock":false,"pos":{"x":19.2841,"y":1.3462,"z":60.2412},"rot":{"x":0.0208,"y":270.0198,"z":0.0168}},"a72cbd":{"lock":false,"pos":{"x":19.2682,"y":1.3428,"z":48.7453},"rot":{"x":0.0208,"y":269.9989,"z":0.0168}},"ab0560":{"lock":false,"pos":{"x":10.5689,"y":1.3431,"z":60.2608},"rot":{"x":0.0208,"y":270.0364,"z":0.0168}},"acf7e4":{"lock":false,"pos":{"x":10.5529,"y":1.3397,"z":48.764},"rot":{"x":0.0208,"y":270.0396,"z":0.0168}},"c3c909":{"lock":false,"pos":{"x":19.284,"y":1.3449,"z":55.6412},"rot":{"x":0.0208,"y":270.002,"z":0.0168}},"c6dba2":{"lock":false,"pos":{"x":19.2841,"y":1.3543,"z":87.8412},"rot":{"x":0.0208,"y":270.0081,"z":0.0168}},"d952b1":{"lock":false,"pos":{"x":19.2841,"y":1.3489,"z":69.4412},"rot":{"x":0.0208,"y":270.0121,"z":0.0168}},"da6dff":{"lock":false,"pos":{"x":19.2841,"y":1.3536,"z":85.5412},"rot":{"x":0.0208,"y":270.0021,"z":0.0168}},"dcad6a":{"lock":false,"pos":{"x":10.5689,"y":1.3444,"z":64.8607},"rot":{"x":0.0208,"y":270.0347,"z":0.0168}},"e10ba4":{"lock":false,"pos":{"x":10.5689,"y":1.3498,"z":83.2607},"rot":{"x":0.0208,"y":270.0216,"z":0.0168}},"e40ae9":{"lock":false,"pos":{"x":19.2841,"y":1.355,"z":90.1413},"rot":{"x":0.0208,"y":270.0449,"z":0.0168}},"ead372":{"lock":false,"pos":{"x":10.5709,"y":1.3424,"z":57.9606},"rot":{"x":0.0208,"y":270.0255,"z":0.0168}},"ec0259":{"lock":false,"pos":{"x":19.2683,"y":1.3435,"z":51.0517},"rot":{"x":0.0208,"y":269.9965,"z":0.0168}},"f21109":{"lock":false,"pos":{"x":19.2841,"y":1.3523,"z":80.9412},"rot":{"x":0.0208,"y":270.0033,"z":0.0168}},"fd5a67":{"lock":false,"pos":{"x":10.5689,"y":1.3458,"z":69.4607},"rot":{"x":0.0208,"y":269.9847,"z":0.0168}},"fe7cba":{"lock":false,"pos":{"x":10.5689,"y":1.3525,"z":92.4609},"rot":{"x":0.0208,"y":269.9773,"z":0.0168}}}}' +MaterialIndex: -1 +MeshIndex: -1 +Name: Custom_Model_Bag +Nickname: Survivor +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 32.945652 + posY: 1.39789653 + posZ: 54.874382 + rotX: 0.0208053552 + rotY: 270.019318 + rotZ: 0.016777195 + scaleX: 1.2 + scaleY: 1.2 + scaleZ: 1.2 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 432630/Card A Chance Encounter 555487.yaml b/unpacked/Custom_Model_Bag Survivor 432630/Card A Chance Encounter 555487.yaml new file mode 100644 index 000000000..4dd451cd2 --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 432630/Card A Chance Encounter 555487.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 209712 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: '555487' +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: A Chance Encounter +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.284111 + posY: 1.352952 + posZ: 83.2412338 + rotX: 0.0208172835 + rotY: 269.968628 + rotZ: 0.0167566016 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 432630/Card A Glimmer of Hope f21109.yaml b/unpacked/Custom_Model_Bag Survivor 432630/Card A Glimmer of Hope f21109.yaml new file mode 100644 index 000000000..2e0372add --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 432630/Card A Glimmer of Hope f21109.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Blessed. Fortune. +GMNotes: '' +GUID: f21109 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: A Glimmer of Hope +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.2841072 + posY: 1.35227871 + posZ: 80.94123 + rotX: 0.0208089054 + rotY: 270.0033 + rotZ: 0.01677156 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 432630/Card Able Bodied 834f1e.yaml b/unpacked/Custom_Model_Bag Survivor 432630/Card Able Bodied 834f1e.yaml new file mode 100644 index 000000000..5b91abf8d --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 432630/Card Able Bodied 834f1e.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 834f1e +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Able Bodied +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 24.44253 + posY: 1.35750341 + posZ: 92.3904 + rotX: 0.02080454 + rotY: 270.015045 + rotZ: 0.0167779289 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 432630/Card Act of Desperation e40ae9.yaml b/unpacked/Custom_Model_Bag Survivor 432630/Card Act of Desperation e40ae9.yaml new file mode 100644 index 000000000..b4604df8c --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 432630/Card Act of Desperation e40ae9.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: e40ae9 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Act of Desperation +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.2841 + posY: 1.35497165 + posZ: 90.1413 + rotX: 0.02079616 + rotY: 270.0449 + rotZ: 0.0167870242 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 432630/Card Bait and Switch 6788de.yaml b/unpacked/Custom_Model_Bag Survivor 432630/Card Bait and Switch 6788de.yaml new file mode 100644 index 000000000..aac25ed18 --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 432630/Card Bait and Switch 6788de.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 209709 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 6788de +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Bait and Switch +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.2841053 + posY: 1.35093224 + posZ: 76.34123 + rotX: 0.0208166242 + rotY: 269.972717 + rotZ: 0.01675951 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 432630/Card Baseball Bat 0afb00.yaml b/unpacked/Custom_Model_Bag Survivor 432630/Card Baseball Bat 0afb00.yaml new file mode 100644 index 000000000..3d75a620e --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 432630/Card Baseball Bat 0afb00.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 209730 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 0afb00 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Baseball Bat +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.5688982 + posY: 1.3450799 + posZ: 67.1607 + rotX: 0.02081198 + rotY: 269.9902 + rotZ: 0.0167672373 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 432630/Card Belly of the Beast 966de3.yaml b/unpacked/Custom_Model_Bag Survivor 432630/Card Belly of the Beast 966de3.yaml new file mode 100644 index 000000000..1ba8dffd5 --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 432630/Card Belly of the Beast 966de3.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 966de3 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Belly of the Beast +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.2841148 + posY: 1.35160553 + posZ: 78.6412354 + rotX: 0.0208064821 + rotY: 270.007 + rotZ: 0.01677267 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 432630/Card Cherished Keepsake fe7cba.yaml b/unpacked/Custom_Model_Bag Survivor 432630/Card Cherished Keepsake fe7cba.yaml new file mode 100644 index 000000000..7cf3d0fa2 --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 432630/Card Cherished Keepsake fe7cba.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 209721 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: fe7cba +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Cherished Keepsake +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.5689068 + posY: 1.35248578 + posZ: 92.4609146 + rotX: 0.0208150484 + rotY: 269.9773 + rotZ: 0.0167607274 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 432630/Card Cunning Distraction 55e600.yaml b/unpacked/Custom_Model_Bag Survivor 432630/Card Cunning Distraction 55e600.yaml new file mode 100644 index 000000000..99b140eb1 --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 432630/Card Cunning Distraction 55e600.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 209719 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 55e600 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Cunning Distraction +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 15.6183987 + posY: 1.35431707 + posZ: 92.4528046 + rotX: 0.02080445 + rotY: 270.012817 + rotZ: 0.0167728066 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 432630/Card Dark Horse ab0560.yaml b/unpacked/Custom_Model_Bag Survivor 432630/Card Dark Horse ab0560.yaml new file mode 100644 index 000000000..f44a1fc9e --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 432630/Card Dark Horse ab0560.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 209733 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: ab0560 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Dark Horse +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.5688543 + posY: 1.34306026 + posZ: 60.260788 + rotX: 0.02079965 + rotY: 270.036377 + rotZ: 0.016784586 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 432630/Card Dig Deep dcad6a.yaml b/unpacked/Custom_Model_Bag Survivor 432630/Card Dig Deep dcad6a.yaml new file mode 100644 index 000000000..27563e304 --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 432630/Card Dig Deep dcad6a.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: dcad6a +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Dig Deep +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.5689116 + posY: 1.34440672 + posZ: 64.86071 + rotX: 0.0207990035 + rotY: 270.034668 + rotZ: 0.0167830382 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 432630/Card Drawing Thin 12b8b7.yaml b/unpacked/Custom_Model_Bag Survivor 432630/Card Drawing Thin 12b8b7.yaml new file mode 100644 index 000000000..7ed20fd36 --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 432630/Card Drawing Thin 12b8b7.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 12b8b7 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Drawing Thin +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.5688591 + posY: 1.35181248 + posZ: 90.16076 + rotX: 0.0208115876 + rotY: 269.9882 + rotZ: 0.0167646036 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 432630/Card Dumb Luck a521bd.yaml b/unpacked/Custom_Model_Bag Survivor 432630/Card Dumb Luck a521bd.yaml new file mode 100644 index 000000000..219a461ae --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 432630/Card Dumb Luck a521bd.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 209714 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: a521bd +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Dumb Luck +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.2841129 + posY: 1.34621954 + posZ: 60.2412033 + rotX: 0.0208029747 + rotY: 270.019836 + rotZ: 0.0167767275 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 432630/Card Fight or Flight 38a54e.yaml b/unpacked/Custom_Model_Bag Survivor 432630/Card Fight or Flight 38a54e.yaml new file mode 100644 index 000000000..e20af9479 --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 432630/Card Fight or Flight 38a54e.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 209713 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 38a54e +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Fight or Flight +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.2841053 + posY: 1.350259 + posZ: 74.04124 + rotX: 0.0208061729 + rotY: 270.006775 + rotZ: 0.0167704932 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 432630/Card Fire Axe e10ba4.yaml b/unpacked/Custom_Model_Bag Survivor 432630/Card Fire Axe e10ba4.yaml new file mode 100644 index 000000000..30815444a --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 432630/Card Fire Axe e10ba4.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: e10ba4 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Fire Axe +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.5688677 + posY: 1.34979272 + posZ: 83.26075 + rotX: 0.0208015312 + rotY: 270.021637 + rotZ: 0.01677696 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 432630/Card Fortuitous Discovery 3175d1.yaml b/unpacked/Custom_Model_Bag Survivor 432630/Card Fortuitous Discovery 3175d1.yaml new file mode 100644 index 000000000..7ca8c735e --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 432630/Card Fortuitous Discovery 3175d1.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 3175d1 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Fortuitous Discovery +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.2841 + posY: 1.355645 + posZ: 92.4412 + rotX: 0.0208122134 + rotY: 269.9896 + rotZ: 0.0167670529 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 432630/Card Gravedigger's Shovel fd5a67.yaml b/unpacked/Custom_Model_Bag Survivor 432630/Card Gravedigger's Shovel fd5a67.yaml new file mode 100644 index 000000000..450a1eaa5 --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 432630/Card Gravedigger's Shovel fd5a67.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: fd5a67 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Gravedigger's Shovel +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.5688982 + posY: 1.34575319 + posZ: 69.4607 + rotX: 0.02081359 + rotY: 269.98468 + rotZ: 0.0167652722 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 432630/Card Grisly Totem ead372.yaml b/unpacked/Custom_Model_Bag Survivor 432630/Card Grisly Totem ead372.yaml new file mode 100644 index 000000000..71bb9c66c --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 432630/Card Grisly Totem ead372.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: ead372 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Grisly Totem +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.5709 + posY: 1.34238768 + posZ: 57.96057 + rotX: 0.0208029021 + rotY: 270.025452 + rotZ: 0.016780952 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 432630/Card Hiding Spot 99b1a1.yaml b/unpacked/Custom_Model_Bag Survivor 432630/Card Hiding Spot 99b1a1.yaml new file mode 100644 index 000000000..9ed13d0a9 --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 432630/Card Hiding Spot 99b1a1.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 209708 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 99b1a1 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Hiding Spot +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.284111 + posY: 1.34958577 + posZ: 71.7412338 + rotX: 0.0208039843 + rotY: 270.0148 + rotZ: 0.0167753417 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 432630/Card Impromptu Barrier 19cbde.yaml b/unpacked/Custom_Model_Bag Survivor 432630/Card Impromptu Barrier 19cbde.yaml new file mode 100644 index 000000000..ae21a1ed6 --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 432630/Card Impromptu Barrier 19cbde.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 443703 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '4437': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025946328/561232524C8EAA4B4371B28652F78969E6ED6FFB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 19cbde +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Impromptu Barrier +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.28411 + posY: 1.3482393 + posZ: 67.14111 + rotX: 0.0208031815 + rotY: 270.017761 + rotZ: 0.01677647 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 432630/Card Improvised Weapon d952b1.yaml b/unpacked/Custom_Model_Bag Survivor 432630/Card Improvised Weapon d952b1.yaml new file mode 100644 index 000000000..9cc3deb94 --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 432630/Card Improvised Weapon d952b1.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 209711 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: d952b1 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Improvised Weapon +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.28411 + posY: 1.34891248 + posZ: 69.44123 + rotX: 0.02080501 + rotY: 270.012115 + rotZ: 0.0167740118 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 432630/Card Lantern 793bdd.yaml b/unpacked/Custom_Model_Bag Survivor 432630/Card Lantern 793bdd.yaml new file mode 100644 index 000000000..8a6ce26f5 --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 432630/Card Lantern 793bdd.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 209727 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 793bdd +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Lantern +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.5688572 + posY: 1.34709978 + posZ: 74.06074 + rotX: 0.02079664 + rotY: 270.0381 + rotZ: 0.0167829674 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 432630/Card Last Chance a0d009.yaml b/unpacked/Custom_Model_Bag Survivor 432630/Card Last Chance a0d009.yaml new file mode 100644 index 000000000..9dc739634 --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 432630/Card Last Chance a0d009.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 209704 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: a0d009 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Last Chance +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 24.4394035 + posY: 1.35615587 + posZ: 87.7904 + rotX: 0.0208180565 + rotY: 269.970245 + rotZ: 0.0167598147 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 432630/Card Leather Coat 46004e.yaml b/unpacked/Custom_Model_Bag Survivor 432630/Card Leather Coat 46004e.yaml new file mode 100644 index 000000000..7e679f35d --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 432630/Card Leather Coat 46004e.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 209720 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 46004e +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Leather Coat +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.56886 + posY: 1.35113919 + posZ: 87.86075 + rotX: 0.0208061114 + rotY: 270.0058 + rotZ: 0.0167716183 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 432630/Card Live and Learn c6dba2.yaml b/unpacked/Custom_Model_Bag Survivor 432630/Card Live and Learn c6dba2.yaml new file mode 100644 index 000000000..a47849ad2 --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 432630/Card Live and Learn c6dba2.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 209707 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: c6dba2 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Live and Learn +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.2841 + posY: 1.35429847 + posZ: 87.8412 + rotX: 0.0208068844 + rotY: 270.0081 + rotZ: 0.0167735182 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 432630/Card Look what I found! 7fab09.yaml b/unpacked/Custom_Model_Bag Survivor 432630/Card Look what I found! 7fab09.yaml new file mode 100644 index 000000000..a647f24af --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 432630/Card Look what I found! 7fab09.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 7fab09 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '"Look what I found!"' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.2861462 + posY: 1.345547 + posZ: 57.9409828 + rotX: 0.0208082087 + rotY: 270.002045 + rotZ: 0.0167698786 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 432630/Card Lucky! 9f8d38.yaml b/unpacked/Custom_Model_Bag Survivor 432630/Card Lucky! 9f8d38.yaml new file mode 100644 index 000000000..b478b8e05 --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 432630/Card Lucky! 9f8d38.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 9f8d38 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Lucky! +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.2841053 + posY: 1.347566 + posZ: 64.8411 + rotX: 0.0208032113 + rotY: 270.0167 + rotZ: 0.0167755019 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 432630/Card Madame Labranche 0ca8d1.yaml b/unpacked/Custom_Model_Bag Survivor 432630/Card Madame Labranche 0ca8d1.yaml new file mode 100644 index 000000000..28044802e --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 432630/Card Madame Labranche 0ca8d1.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 209728 +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 + UniqueBack: false +Description: Mysterious Benefactress +GMNotes: '' +GUID: 0ca8d1 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Madame Labranche +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.568902 + posY: 1.34642649 + posZ: 71.7607 + rotX: 0.0208177939 + rotY: 269.97052 + rotZ: 0.0167598072 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 432630/Card Meat Cleaver 2c0b96.yaml b/unpacked/Custom_Model_Bag Survivor 432630/Card Meat Cleaver 2c0b96.yaml new file mode 100644 index 000000000..ef64e3b6b --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 432630/Card Meat Cleaver 2c0b96.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 2c0b96 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Meat Cleaver +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.5688992 + posY: 1.34104061 + posZ: 53.36078 + rotX: 0.0207986124 + rotY: 270.032166 + rotZ: 0.0167816058 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 432630/Card Moonstone 0d006f.yaml b/unpacked/Custom_Model_Bag Survivor 432630/Card Moonstone 0d006f.yaml new file mode 100644 index 000000000..dd0fdabd8 --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 432630/Card Moonstone 0d006f.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Item. Relic. Dreamlands. +GMNotes: '' +GUID: 0d006f +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Moonstone +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.5688562 + posY: 1.34373367 + posZ: 62.5607872 + rotX: 0.0208092444 + rotY: 270.003418 + rotZ: 0.0167721715 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 432630/Card Newspaper 841cab.yaml b/unpacked/Custom_Model_Bag Survivor 432630/Card Newspaper 841cab.yaml new file mode 100644 index 000000000..6a67d490d --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 432630/Card Newspaper 841cab.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 209726 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 841cab +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Newspaper +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.5688658 + posY: 1.34911954 + posZ: 80.96075 + rotX: 0.0208214279 + rotY: 269.954559 + rotZ: 0.0167523623 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 432630/Card Not without a fight! a2af93.yaml b/unpacked/Custom_Model_Bag Survivor 432630/Card Not without a fight! a2af93.yaml new file mode 100644 index 000000000..099cd6c95 --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 432630/Card Not without a fight! a2af93.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: a2af93 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '"Not without a fight!"' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 24.439394 + posY: 1.35682917 + posZ: 90.0903854 + rotX: 0.02081641 + rotY: 269.970459 + rotZ: 0.0167581569 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 432630/Card Oops! c3c909.yaml b/unpacked/Custom_Model_Bag Survivor 432630/Card Oops! c3c909.yaml new file mode 100644 index 000000000..0825567e1 --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 432630/Card Oops! c3c909.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 209715 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: c3c909 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Oops! +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.2840176 + posY: 1.34487307 + posZ: 55.6412048 + rotX: 0.02080824 + rotY: 270.002045 + rotZ: 0.0167698078 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 432630/Card Perseverance 2aae05.yaml b/unpacked/Custom_Model_Bag Survivor 432630/Card Perseverance 2aae05.yaml new file mode 100644 index 000000000..590489256 --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 432630/Card Perseverance 2aae05.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 209717 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 2aae05 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Perseverance +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.2841511 + posY: 1.34419978 + posZ: 53.3411865 + rotX: 0.0207998063 + rotY: 270.030579 + rotZ: 0.0167803355 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 432630/Card Peter Sylvestre 523fe8.yaml b/unpacked/Custom_Model_Bag Survivor 432630/Card Peter Sylvestre 523fe8.yaml new file mode 100644 index 000000000..e0af0859b --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 432630/Card Peter Sylvestre 523fe8.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 209732 +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 + UniqueBack: false +Description: Big Man on Campus +GMNotes: '' +GUID: 523fe8 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Peter Sylvestre +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.5687666 + posY: 1.34171379 + posZ: 55.6607971 + rotX: 0.02081576 + rotY: 269.974426 + rotZ: 0.0167602263 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 432630/Card Rabbit's Foot 472111.yaml b/unpacked/Custom_Model_Bag Survivor 432630/Card Rabbit's Foot 472111.yaml new file mode 100644 index 000000000..37a47ab5f --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 432630/Card Rabbit's Foot 472111.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 209723 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: '472111' +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Rabbit's Foot +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.5688591 + posY: 1.35046589 + posZ: 85.56075 + rotX: 0.0208106786 + rotY: 269.990173 + rotZ: 0.01676544 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 432630/Card Resourceful 6d59df.yaml b/unpacked/Custom_Model_Bag Survivor 432630/Card Resourceful 6d59df.yaml new file mode 100644 index 000000000..9f523c8da --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 432630/Card Resourceful 6d59df.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 6d59df +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Resourceful +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 24.4536514 + posY: 1.35548627 + posZ: 85.48603 + rotX: 0.0207926575 + rotY: 270.056732 + rotZ: 0.0167909432 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 432630/Card Rise to the Occasion 4c1be0.yaml b/unpacked/Custom_Model_Bag Survivor 432630/Card Rise to the Occasion 4c1be0.yaml new file mode 100644 index 000000000..eae8ee579 --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 432630/Card Rise to the Occasion 4c1be0.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 209701 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 4c1be0 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Rise to the Occasion +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 24.4389668 + posY: 1.35480917 + posZ: 83.19038 + rotX: 0.0208003577 + rotY: 270.0324 + rotZ: 0.0167818964 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 432630/Card Scavenging 81356a.yaml b/unpacked/Custom_Model_Bag Survivor 432630/Card Scavenging 81356a.yaml new file mode 100644 index 000000000..8806085ea --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 432630/Card Scavenging 81356a.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 209722 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 81356a +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Scavenging +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.5688486 + posY: 1.34844625 + posZ: 78.6607361 + rotX: 0.0208097883 + rotY: 269.9942 + rotZ: 0.0167671163 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 432630/Card Scrounge for Supplies da6dff.yaml b/unpacked/Custom_Model_Bag Survivor 432630/Card Scrounge for Supplies da6dff.yaml new file mode 100644 index 000000000..eab29eaa0 --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 432630/Card Scrounge for Supplies da6dff.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 380229 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: da6dff +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Scrounge for Supplies +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.2841 + posY: 1.35362518 + posZ: 85.5412 + rotX: 0.0208083782 + rotY: 270.002075 + rotZ: 0.0167713035 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 432630/Card Stray Cat 8e580d.yaml b/unpacked/Custom_Model_Bag Survivor 432630/Card Stray Cat 8e580d.yaml new file mode 100644 index 000000000..61c3cacc1 --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 432630/Card Stray Cat 8e580d.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 209724 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 8e580d +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Stray Cat +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.5688553 + posY: 1.347773 + posZ: 76.36073 + rotX: 0.0208113249 + rotY: 269.987579 + rotZ: 0.0167644527 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 432630/Card Stunning Blow 56a25e.yaml b/unpacked/Custom_Model_Bag Survivor 432630/Card Stunning Blow 56a25e.yaml new file mode 100644 index 000000000..1a91c1c1a --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 432630/Card Stunning Blow 56a25e.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 56a25e +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Stunning Blow +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 24.4393749 + posY: 1.35413611 + posZ: 80.8903351 + rotX: 0.0208177865 + rotY: 269.970551 + rotZ: 0.0167599488 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 432630/Card Survival Instinct 136c96.yaml b/unpacked/Custom_Model_Bag Survivor 432630/Card Survival Instinct 136c96.yaml new file mode 100644 index 000000000..b4d1ebb6d --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 432630/Card Survival Instinct 136c96.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 136c96 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Survival Instinct +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 24.438879 + posY: 1.3534627 + posZ: 78.59042 + rotX: 0.020804733 + rotY: 270.0155 + rotZ: 0.0167762246 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 432630/Card Take Heart 40bda1.yaml b/unpacked/Custom_Model_Bag Survivor 432630/Card Take Heart 40bda1.yaml new file mode 100644 index 000000000..d08eb8f51 --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 432630/Card Take Heart 40bda1.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 209706 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 40bda1 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Take Heart +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 24.43939 + posY: 1.35278952 + posZ: 76.29038 + rotX: 0.020803703 + rotY: 270.01886 + rotZ: 0.0167775825 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 432630/Card Tennessee Sour Mash 517c94.yaml b/unpacked/Custom_Model_Bag Survivor 432630/Card Tennessee Sour Mash 517c94.yaml new file mode 100644 index 000000000..d77a7d5f8 --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 432630/Card Tennessee Sour Mash 517c94.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 517c94 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Tennessee Sour Mash +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.55308 + posY: 1.34036469 + posZ: 51.07134 + rotX: 0.0208015256 + rotY: 270.022583 + rotZ: 0.0167777054 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 432630/Card Track Shoes acf7e4.yaml b/unpacked/Custom_Model_Bag Survivor 432630/Card Track Shoes acf7e4.yaml new file mode 100644 index 000000000..31a0d4b1a --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 432630/Card Track Shoes acf7e4.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: acf7e4 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Track Shoes +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.55291 + posY: 1.33968925 + posZ: 48.76401 + rotX: 0.0207967721 + rotY: 270.039642 + rotZ: 0.0167841222 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 432630/Card Trial by Fire ec0259.yaml b/unpacked/Custom_Model_Bag Survivor 432630/Card Trial by Fire ec0259.yaml new file mode 100644 index 000000000..f78080b8f --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 432630/Card Trial by Fire ec0259.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: ec0259 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Trial by Fire +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.26833 + posY: 1.34352386 + posZ: 51.0517464 + rotX: 0.0208107214 + rotY: 269.9965 + rotZ: 0.01677012 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 432630/Card Waylay a72cbd.yaml b/unpacked/Custom_Model_Bag Survivor 432630/Card Waylay a72cbd.yaml new file mode 100644 index 000000000..3733198c2 --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 432630/Card Waylay a72cbd.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 209718 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: a72cbd +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Waylay +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.2681713 + posY: 1.34284878 + posZ: 48.7452965 + rotX: 0.0208091121 + rotY: 269.9989 + rotZ: 0.016768733 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 432630/Card Winging It 674d49.yaml b/unpacked/Custom_Model_Bag Survivor 432630/Card Winging It 674d49.yaml new file mode 100644 index 000000000..04a22cf12 --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 432630/Card Winging It 674d49.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 443701 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '4437': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025946328/561232524C8EAA4B4371B28652F78969E6ED6FFB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 674d49 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Winging It +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.2841148 + posY: 1.34689271 + posZ: 62.5412025 + rotX: 0.0208000671 + rotY: 270.03 + rotZ: 0.0167819336 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 432630/Custom_Model_Bag Survivor 8ffae5.ttslua b/unpacked/Custom_Model_Bag Survivor 432630/Custom_Model_Bag Survivor 8ffae5.ttslua new file mode 100644 index 000000000..f882a7f09 --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 432630/Custom_Model_Bag Survivor 8ffae5.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,0,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 + 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=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,0,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,0,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,0,0}, height=350, width=750, + 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}, rotation={0,0,0}, height=350, width=800, + font_size=250, color={0,0,0}, font_color={1,1,1} + }) +-- self.createButton({ +-- label="Setup", click_function="buttonClick_setup", function_owner=self, +-- position={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.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 Survivor 432630/Custom_Model_Bag Survivor 8ffae5.yaml b/unpacked/Custom_Model_Bag Survivor 432630/Custom_Model_Bag Survivor 8ffae5.yaml new file mode 100644 index 000000000..fac5319b0 --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 432630/Custom_Model_Bag Survivor 8ffae5.yaml @@ -0,0 +1,101 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +ContainedObjects: +- !include 'Custom_Model_Bag Survivor 8ffae5/Card Able Bodied 834f1e.yaml' +- !include 'Custom_Model_Bag Survivor 8ffae5/Card Fortuitous Discovery 3175d1.yaml' +- !include 'Custom_Model_Bag Survivor 8ffae5/Card Cunning Distraction 55e600.yaml' +- !include 'Custom_Model_Bag Survivor 8ffae5/Card Cherished Keepsake fe7cba.yaml' +- !include 'Custom_Model_Bag Survivor 8ffae5/Card Drawing Thin 12b8b7.yaml' +- !include 'Custom_Model_Bag Survivor 8ffae5/Card Leather Coat 46004e.yaml' +- !include 'Custom_Model_Bag Survivor 8ffae5/Card Rabbit''s Foot 472111.yaml' +- !include 'Custom_Model_Bag Survivor 8ffae5/Card Fire Axe e10ba4.yaml' +- !include 'Custom_Model_Bag Survivor 8ffae5/Card Newspaper 841cab.yaml' +- !include 'Custom_Model_Bag Survivor 8ffae5/Card Scavenging 81356a.yaml' +- !include 'Custom_Model_Bag Survivor 8ffae5/Card Stray Cat 8e580d.yaml' +- !include 'Custom_Model_Bag Survivor 8ffae5/Card Lantern 793bdd.yaml' +- !include 'Custom_Model_Bag Survivor 8ffae5/Card Madame Labranche 0ca8d1.yaml' +- !include 'Custom_Model_Bag Survivor 8ffae5/Card Gravedigger''s Shovel fd5a67.yaml' +- !include 'Custom_Model_Bag Survivor 8ffae5/Card Baseball Bat 0afb00.yaml' +- !include 'Custom_Model_Bag Survivor 8ffae5/Card Dig Deep dcad6a.yaml' +- !include 'Custom_Model_Bag Survivor 8ffae5/Card Moonstone 0d006f.yaml' +- !include 'Custom_Model_Bag Survivor 8ffae5/Card Winging It 674d49.yaml' +- !include 'Custom_Model_Bag Survivor 8ffae5/Card Lucky! 9f8d38.yaml' +- !include 'Custom_Model_Bag Survivor 8ffae5/Card Impromptu Barrier 19cbde.yaml' +- !include 'Custom_Model_Bag Survivor 8ffae5/Card Improvised Weapon d952b1.yaml' +- !include 'Custom_Model_Bag Survivor 8ffae5/Card Hiding Spot 99b1a1.yaml' +- !include 'Custom_Model_Bag Survivor 8ffae5/Card Fight or Flight 38a54e.yaml' +- !include 'Custom_Model_Bag Survivor 8ffae5/Card Bait and Switch 6788de.yaml' +- !include 'Custom_Model_Bag Survivor 8ffae5/Card Belly of the Beast 966de3.yaml' +- !include 'Custom_Model_Bag Survivor 8ffae5/Card A Glimmer of Hope f21109.yaml' +- !include 'Custom_Model_Bag Survivor 8ffae5/Card A Chance Encounter 555487.yaml' +- !include 'Custom_Model_Bag Survivor 8ffae5/Card Scrounge for Supplies da6dff.yaml' +- !include 'Custom_Model_Bag Survivor 8ffae5/Card Live and Learn c6dba2.yaml' +- !include 'Custom_Model_Bag Survivor 8ffae5/Card Act of Desperation e40ae9.yaml' +- !include 'Custom_Model_Bag Survivor 8ffae5/Card Not without a fight! a2af93.yaml' +- !include 'Custom_Model_Bag Survivor 8ffae5/Card Last Chance a0d009.yaml' +- !include 'Custom_Model_Bag Survivor 8ffae5/Card Resourceful 6d59df.yaml' +- !include 'Custom_Model_Bag Survivor 8ffae5/Card Rise to the Occasion 4c1be0.yaml' +- !include 'Custom_Model_Bag Survivor 8ffae5/Card Stunning Blow 56a25e.yaml' +- !include 'Custom_Model_Bag Survivor 8ffae5/Card Take Heart 40bda1.yaml' +- !include 'Custom_Model_Bag Survivor 8ffae5/Card Survival Instinct 136c96.yaml' +- !include 'Custom_Model_Bag Survivor 8ffae5/Card Dumb Luck a521bd.yaml' +- !include 'Custom_Model_Bag Survivor 8ffae5/Card Look what I found! 7fab09.yaml' +- !include 'Custom_Model_Bag Survivor 8ffae5/Card Oops! c3c909.yaml' +- !include 'Custom_Model_Bag Survivor 8ffae5/Card Perseverance 2aae05.yaml' +- !include 'Custom_Model_Bag Survivor 8ffae5/Card Trial by Fire ec0259.yaml' +- !include 'Custom_Model_Bag Survivor 8ffae5/Card Waylay a72cbd.yaml' +- !include 'Custom_Model_Bag Survivor 8ffae5/Card Track Shoes acf7e4.yaml' +- !include 'Custom_Model_Bag Survivor 8ffae5/Card Tennessee Sour Mash 517c94.yaml' +- !include 'Custom_Model_Bag Survivor 8ffae5/Card Meat Cleaver 2c0b96.yaml' +- !include 'Custom_Model_Bag Survivor 8ffae5/Card Peter Sylvestre 523fe8.yaml' +- !include 'Custom_Model_Bag Survivor 8ffae5/Card Grisly Totem ead372.yaml' +- !include 'Custom_Model_Bag Survivor 8ffae5/Card Dark Horse ab0560.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/952965722515960460/F43F63452854B10B416FDF3BF9EF3068E6E68F26/ + MaterialIndex: 3 + MeshURL: https://pastebin.com/raw/ALrYhQGb + NormalURL: '' + TypeIndex: 6 +Description: '' +GMNotes: '' +GUID: 8ffae5 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Model_Bag Survivor 8ffae5.ttslua' +LuaScriptState: '{"ml":{"0afb00":{"lock":false,"pos":{"x":10.5689,"y":1.3451,"z":67.1607},"rot":{"x":0.0208,"y":269.9902,"z":0.0168}},"0ca8d1":{"lock":false,"pos":{"x":10.5689,"y":1.3464,"z":71.7607},"rot":{"x":0.0208,"y":269.9705,"z":0.0168}},"0d006f":{"lock":false,"pos":{"x":10.5689,"y":1.3437,"z":62.5608},"rot":{"x":0.0208,"y":270.0034,"z":0.0168}},"12b8b7":{"lock":false,"pos":{"x":10.5689,"y":1.3518,"z":90.1608},"rot":{"x":0.0208,"y":269.9882,"z":0.0168}},"136c96":{"lock":false,"pos":{"x":24.4389,"y":1.3535,"z":78.5904},"rot":{"x":0.0208,"y":270.0155,"z":0.0168}},"19cbde":{"lock":false,"pos":{"x":19.2841,"y":1.3482,"z":67.1411},"rot":{"x":0.0208,"y":270.0178,"z":0.0168}},"2aae05":{"lock":false,"pos":{"x":19.2842,"y":1.3442,"z":53.3412},"rot":{"x":0.0208,"y":270.0306,"z":0.0168}},"2c0b96":{"lock":false,"pos":{"x":10.5689,"y":1.341,"z":53.3608},"rot":{"x":0.0208,"y":270.0322,"z":0.0168}},"3175d1":{"lock":false,"pos":{"x":19.2841,"y":1.3556,"z":92.4412},"rot":{"x":0.0208,"y":269.9896,"z":0.0168}},"38a54e":{"lock":false,"pos":{"x":19.2841,"y":1.3503,"z":74.0412},"rot":{"x":0.0208,"y":270.0068,"z":0.0168}},"40bda1":{"lock":false,"pos":{"x":24.4394,"y":1.3528,"z":76.2904},"rot":{"x":0.0208,"y":270.0189,"z":0.0168}},"46004e":{"lock":false,"pos":{"x":10.5689,"y":1.3511,"z":87.8607},"rot":{"x":0.0208,"y":270.0058,"z":0.0168}},"472111":{"lock":false,"pos":{"x":10.5689,"y":1.3505,"z":85.5608},"rot":{"x":0.0208,"y":269.9902,"z":0.0168}},"4c1be0":{"lock":false,"pos":{"x":24.439,"y":1.3548,"z":83.1904},"rot":{"x":0.0208,"y":270.0324,"z":0.0168}},"517c94":{"lock":false,"pos":{"x":10.5531,"y":1.3404,"z":51.0713},"rot":{"x":0.0208,"y":270.0226,"z":0.0168}},"523fe8":{"lock":false,"pos":{"x":10.5688,"y":1.3417,"z":55.6608},"rot":{"x":0.0208,"y":269.9744,"z":0.0168}},"555487":{"lock":false,"pos":{"x":19.2841,"y":1.353,"z":83.2412},"rot":{"x":0.0208,"y":269.9686,"z":0.0168}},"55e600":{"lock":false,"pos":{"x":15.6184,"y":1.3543,"z":92.4528},"rot":{"x":0.0208,"y":270.0128,"z":0.0168}},"56a25e":{"lock":false,"pos":{"x":24.4394,"y":1.3541,"z":80.8903},"rot":{"x":0.0208,"y":269.9706,"z":0.0168}},"674d49":{"lock":false,"pos":{"x":19.2841,"y":1.3469,"z":62.5412},"rot":{"x":0.0208,"y":270.03,"z":0.0168}},"6788de":{"lock":false,"pos":{"x":19.2841,"y":1.3509,"z":76.3412},"rot":{"x":0.0208,"y":269.9727,"z":0.0168}},"6d59df":{"lock":false,"pos":{"x":24.4537,"y":1.3555,"z":85.486},"rot":{"x":0.0208,"y":270.0567,"z":0.0168}},"793bdd":{"lock":false,"pos":{"x":10.5689,"y":1.3471,"z":74.0607},"rot":{"x":0.0208,"y":270.0381,"z":0.0168}},"7fab09":{"lock":false,"pos":{"x":19.2861,"y":1.3455,"z":57.941},"rot":{"x":0.0208,"y":270.002,"z":0.0168}},"81356a":{"lock":false,"pos":{"x":10.5688,"y":1.3484,"z":78.6607},"rot":{"x":0.0208,"y":269.9942,"z":0.0168}},"834f1e":{"lock":false,"pos":{"x":24.4425,"y":1.3575,"z":92.3904},"rot":{"x":0.0208,"y":270.015,"z":0.0168}},"841cab":{"lock":false,"pos":{"x":10.5689,"y":1.3491,"z":80.9607},"rot":{"x":0.0208,"y":269.9546,"z":0.0168}},"8e580d":{"lock":false,"pos":{"x":10.5689,"y":1.3478,"z":76.3607},"rot":{"x":0.0208,"y":269.9876,"z":0.0168}},"966de3":{"lock":false,"pos":{"x":19.2841,"y":1.3516,"z":78.6412},"rot":{"x":0.0208,"y":270.007,"z":0.0168}},"99b1a1":{"lock":false,"pos":{"x":19.2841,"y":1.3496,"z":71.7412},"rot":{"x":0.0208,"y":270.0148,"z":0.0168}},"9f8d38":{"lock":false,"pos":{"x":19.2841,"y":1.3476,"z":64.8411},"rot":{"x":0.0208,"y":270.0167,"z":0.0168}},"a0d009":{"lock":false,"pos":{"x":24.4394,"y":1.3562,"z":87.7904},"rot":{"x":0.0208,"y":269.9702,"z":0.0168}},"a2af93":{"lock":false,"pos":{"x":24.4394,"y":1.3568,"z":90.0904},"rot":{"x":0.0208,"y":269.9705,"z":0.0168}},"a521bd":{"lock":false,"pos":{"x":19.2841,"y":1.3462,"z":60.2412},"rot":{"x":0.0208,"y":270.0198,"z":0.0168}},"a72cbd":{"lock":false,"pos":{"x":19.2682,"y":1.3428,"z":48.7453},"rot":{"x":0.0208,"y":269.9989,"z":0.0168}},"ab0560":{"lock":false,"pos":{"x":10.5689,"y":1.3431,"z":60.2608},"rot":{"x":0.0208,"y":270.0364,"z":0.0168}},"acf7e4":{"lock":false,"pos":{"x":10.5529,"y":1.3397,"z":48.764},"rot":{"x":0.0208,"y":270.0396,"z":0.0168}},"c3c909":{"lock":false,"pos":{"x":19.284,"y":1.3449,"z":55.6412},"rot":{"x":0.0208,"y":270.002,"z":0.0168}},"c6dba2":{"lock":false,"pos":{"x":19.2841,"y":1.3543,"z":87.8412},"rot":{"x":0.0208,"y":270.0081,"z":0.0168}},"d952b1":{"lock":false,"pos":{"x":19.2841,"y":1.3489,"z":69.4412},"rot":{"x":0.0208,"y":270.0121,"z":0.0168}},"da6dff":{"lock":false,"pos":{"x":19.2841,"y":1.3536,"z":85.5412},"rot":{"x":0.0208,"y":270.0021,"z":0.0168}},"dcad6a":{"lock":false,"pos":{"x":10.5689,"y":1.3444,"z":64.8607},"rot":{"x":0.0208,"y":270.0347,"z":0.0168}},"e10ba4":{"lock":false,"pos":{"x":10.5689,"y":1.3498,"z":83.2607},"rot":{"x":0.0208,"y":270.0216,"z":0.0168}},"e40ae9":{"lock":false,"pos":{"x":19.2841,"y":1.355,"z":90.1413},"rot":{"x":0.0208,"y":270.0449,"z":0.0168}},"ead372":{"lock":false,"pos":{"x":10.5709,"y":1.3424,"z":57.9606},"rot":{"x":0.0208,"y":270.0255,"z":0.0168}},"ec0259":{"lock":false,"pos":{"x":19.2683,"y":1.3435,"z":51.0517},"rot":{"x":0.0208,"y":269.9965,"z":0.0168}},"f21109":{"lock":false,"pos":{"x":19.2841,"y":1.3523,"z":80.9412},"rot":{"x":0.0208,"y":270.0033,"z":0.0168}},"fd5a67":{"lock":false,"pos":{"x":10.5689,"y":1.3458,"z":69.4607},"rot":{"x":0.0208,"y":269.9847,"z":0.0168}},"fe7cba":{"lock":false,"pos":{"x":10.5689,"y":1.3525,"z":92.4609},"rot":{"x":0.0208,"y":269.9773,"z":0.0168}}}}' +MaterialIndex: -1 +MeshIndex: -1 +Name: Custom_Model_Bag +Nickname: Survivor +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 32.9484062 + posY: 1.65206349 + posZ: 54.8748741 + rotX: 0.017584851 + rotY: 270.019318 + rotZ: 0.006614486 + scaleX: 1.2 + scaleY: 1.2 + scaleZ: 1.2 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 432630/Custom_Model_Bag Survivor 8ffae5/Card A Chance Encounter 555487.yaml b/unpacked/Custom_Model_Bag Survivor 432630/Custom_Model_Bag Survivor 8ffae5/Card A Chance Encounter 555487.yaml new file mode 100644 index 000000000..4dd451cd2 --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 432630/Custom_Model_Bag Survivor 8ffae5/Card A Chance Encounter 555487.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 209712 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: '555487' +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: A Chance Encounter +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.284111 + posY: 1.352952 + posZ: 83.2412338 + rotX: 0.0208172835 + rotY: 269.968628 + rotZ: 0.0167566016 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 432630/Custom_Model_Bag Survivor 8ffae5/Card A Glimmer of Hope f21109.yaml b/unpacked/Custom_Model_Bag Survivor 432630/Custom_Model_Bag Survivor 8ffae5/Card A Glimmer of Hope f21109.yaml new file mode 100644 index 000000000..2e0372add --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 432630/Custom_Model_Bag Survivor 8ffae5/Card A Glimmer of Hope f21109.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Blessed. Fortune. +GMNotes: '' +GUID: f21109 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: A Glimmer of Hope +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.2841072 + posY: 1.35227871 + posZ: 80.94123 + rotX: 0.0208089054 + rotY: 270.0033 + rotZ: 0.01677156 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 432630/Custom_Model_Bag Survivor 8ffae5/Card Able Bodied 834f1e.yaml b/unpacked/Custom_Model_Bag Survivor 432630/Custom_Model_Bag Survivor 8ffae5/Card Able Bodied 834f1e.yaml new file mode 100644 index 000000000..5b91abf8d --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 432630/Custom_Model_Bag Survivor 8ffae5/Card Able Bodied 834f1e.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 834f1e +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Able Bodied +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 24.44253 + posY: 1.35750341 + posZ: 92.3904 + rotX: 0.02080454 + rotY: 270.015045 + rotZ: 0.0167779289 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 432630/Custom_Model_Bag Survivor 8ffae5/Card Act of Desperation e40ae9.yaml b/unpacked/Custom_Model_Bag Survivor 432630/Custom_Model_Bag Survivor 8ffae5/Card Act of Desperation e40ae9.yaml new file mode 100644 index 000000000..b4604df8c --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 432630/Custom_Model_Bag Survivor 8ffae5/Card Act of Desperation e40ae9.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: e40ae9 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Act of Desperation +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.2841 + posY: 1.35497165 + posZ: 90.1413 + rotX: 0.02079616 + rotY: 270.0449 + rotZ: 0.0167870242 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 432630/Custom_Model_Bag Survivor 8ffae5/Card Bait and Switch 6788de.yaml b/unpacked/Custom_Model_Bag Survivor 432630/Custom_Model_Bag Survivor 8ffae5/Card Bait and Switch 6788de.yaml new file mode 100644 index 000000000..aac25ed18 --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 432630/Custom_Model_Bag Survivor 8ffae5/Card Bait and Switch 6788de.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 209709 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 6788de +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Bait and Switch +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.2841053 + posY: 1.35093224 + posZ: 76.34123 + rotX: 0.0208166242 + rotY: 269.972717 + rotZ: 0.01675951 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 432630/Custom_Model_Bag Survivor 8ffae5/Card Baseball Bat 0afb00.yaml b/unpacked/Custom_Model_Bag Survivor 432630/Custom_Model_Bag Survivor 8ffae5/Card Baseball Bat 0afb00.yaml new file mode 100644 index 000000000..3d75a620e --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 432630/Custom_Model_Bag Survivor 8ffae5/Card Baseball Bat 0afb00.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 209730 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 0afb00 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Baseball Bat +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.5688982 + posY: 1.3450799 + posZ: 67.1607 + rotX: 0.02081198 + rotY: 269.9902 + rotZ: 0.0167672373 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 432630/Custom_Model_Bag Survivor 8ffae5/Card Belly of the Beast 966de3.yaml b/unpacked/Custom_Model_Bag Survivor 432630/Custom_Model_Bag Survivor 8ffae5/Card Belly of the Beast 966de3.yaml new file mode 100644 index 000000000..1ba8dffd5 --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 432630/Custom_Model_Bag Survivor 8ffae5/Card Belly of the Beast 966de3.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 966de3 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Belly of the Beast +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.2841148 + posY: 1.35160553 + posZ: 78.6412354 + rotX: 0.0208064821 + rotY: 270.007 + rotZ: 0.01677267 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 432630/Custom_Model_Bag Survivor 8ffae5/Card Cherished Keepsake fe7cba.yaml b/unpacked/Custom_Model_Bag Survivor 432630/Custom_Model_Bag Survivor 8ffae5/Card Cherished Keepsake fe7cba.yaml new file mode 100644 index 000000000..7cf3d0fa2 --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 432630/Custom_Model_Bag Survivor 8ffae5/Card Cherished Keepsake fe7cba.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 209721 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: fe7cba +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Cherished Keepsake +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.5689068 + posY: 1.35248578 + posZ: 92.4609146 + rotX: 0.0208150484 + rotY: 269.9773 + rotZ: 0.0167607274 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 432630/Custom_Model_Bag Survivor 8ffae5/Card Cunning Distraction 55e600.yaml b/unpacked/Custom_Model_Bag Survivor 432630/Custom_Model_Bag Survivor 8ffae5/Card Cunning Distraction 55e600.yaml new file mode 100644 index 000000000..99b140eb1 --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 432630/Custom_Model_Bag Survivor 8ffae5/Card Cunning Distraction 55e600.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 209719 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 55e600 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Cunning Distraction +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 15.6183987 + posY: 1.35431707 + posZ: 92.4528046 + rotX: 0.02080445 + rotY: 270.012817 + rotZ: 0.0167728066 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 432630/Custom_Model_Bag Survivor 8ffae5/Card Dark Horse ab0560.yaml b/unpacked/Custom_Model_Bag Survivor 432630/Custom_Model_Bag Survivor 8ffae5/Card Dark Horse ab0560.yaml new file mode 100644 index 000000000..f44a1fc9e --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 432630/Custom_Model_Bag Survivor 8ffae5/Card Dark Horse ab0560.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 209733 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: ab0560 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Dark Horse +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.5688543 + posY: 1.34306026 + posZ: 60.260788 + rotX: 0.02079965 + rotY: 270.036377 + rotZ: 0.016784586 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 432630/Custom_Model_Bag Survivor 8ffae5/Card Dig Deep dcad6a.yaml b/unpacked/Custom_Model_Bag Survivor 432630/Custom_Model_Bag Survivor 8ffae5/Card Dig Deep dcad6a.yaml new file mode 100644 index 000000000..27563e304 --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 432630/Custom_Model_Bag Survivor 8ffae5/Card Dig Deep dcad6a.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: dcad6a +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Dig Deep +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.5689116 + posY: 1.34440672 + posZ: 64.86071 + rotX: 0.0207990035 + rotY: 270.034668 + rotZ: 0.0167830382 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 432630/Custom_Model_Bag Survivor 8ffae5/Card Drawing Thin 12b8b7.yaml b/unpacked/Custom_Model_Bag Survivor 432630/Custom_Model_Bag Survivor 8ffae5/Card Drawing Thin 12b8b7.yaml new file mode 100644 index 000000000..7ed20fd36 --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 432630/Custom_Model_Bag Survivor 8ffae5/Card Drawing Thin 12b8b7.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 12b8b7 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Drawing Thin +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.5688591 + posY: 1.35181248 + posZ: 90.16076 + rotX: 0.0208115876 + rotY: 269.9882 + rotZ: 0.0167646036 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 432630/Custom_Model_Bag Survivor 8ffae5/Card Dumb Luck a521bd.yaml b/unpacked/Custom_Model_Bag Survivor 432630/Custom_Model_Bag Survivor 8ffae5/Card Dumb Luck a521bd.yaml new file mode 100644 index 000000000..219a461ae --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 432630/Custom_Model_Bag Survivor 8ffae5/Card Dumb Luck a521bd.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 209714 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: a521bd +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Dumb Luck +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.2841129 + posY: 1.34621954 + posZ: 60.2412033 + rotX: 0.0208029747 + rotY: 270.019836 + rotZ: 0.0167767275 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 432630/Custom_Model_Bag Survivor 8ffae5/Card Fight or Flight 38a54e.yaml b/unpacked/Custom_Model_Bag Survivor 432630/Custom_Model_Bag Survivor 8ffae5/Card Fight or Flight 38a54e.yaml new file mode 100644 index 000000000..e20af9479 --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 432630/Custom_Model_Bag Survivor 8ffae5/Card Fight or Flight 38a54e.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 209713 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 38a54e +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Fight or Flight +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.2841053 + posY: 1.350259 + posZ: 74.04124 + rotX: 0.0208061729 + rotY: 270.006775 + rotZ: 0.0167704932 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 432630/Custom_Model_Bag Survivor 8ffae5/Card Fire Axe e10ba4.yaml b/unpacked/Custom_Model_Bag Survivor 432630/Custom_Model_Bag Survivor 8ffae5/Card Fire Axe e10ba4.yaml new file mode 100644 index 000000000..30815444a --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 432630/Custom_Model_Bag Survivor 8ffae5/Card Fire Axe e10ba4.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: e10ba4 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Fire Axe +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.5688677 + posY: 1.34979272 + posZ: 83.26075 + rotX: 0.0208015312 + rotY: 270.021637 + rotZ: 0.01677696 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 432630/Custom_Model_Bag Survivor 8ffae5/Card Fortuitous Discovery 3175d1.yaml b/unpacked/Custom_Model_Bag Survivor 432630/Custom_Model_Bag Survivor 8ffae5/Card Fortuitous Discovery 3175d1.yaml new file mode 100644 index 000000000..7ca8c735e --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 432630/Custom_Model_Bag Survivor 8ffae5/Card Fortuitous Discovery 3175d1.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 3175d1 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Fortuitous Discovery +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.2841 + posY: 1.355645 + posZ: 92.4412 + rotX: 0.0208122134 + rotY: 269.9896 + rotZ: 0.0167670529 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 432630/Custom_Model_Bag Survivor 8ffae5/Card Gravedigger's Shovel fd5a67.yaml b/unpacked/Custom_Model_Bag Survivor 432630/Custom_Model_Bag Survivor 8ffae5/Card Gravedigger's Shovel fd5a67.yaml new file mode 100644 index 000000000..450a1eaa5 --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 432630/Custom_Model_Bag Survivor 8ffae5/Card Gravedigger's Shovel fd5a67.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: fd5a67 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Gravedigger's Shovel +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.5688982 + posY: 1.34575319 + posZ: 69.4607 + rotX: 0.02081359 + rotY: 269.98468 + rotZ: 0.0167652722 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 432630/Custom_Model_Bag Survivor 8ffae5/Card Grisly Totem ead372.yaml b/unpacked/Custom_Model_Bag Survivor 432630/Custom_Model_Bag Survivor 8ffae5/Card Grisly Totem ead372.yaml new file mode 100644 index 000000000..71bb9c66c --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 432630/Custom_Model_Bag Survivor 8ffae5/Card Grisly Totem ead372.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: ead372 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Grisly Totem +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.5709 + posY: 1.34238768 + posZ: 57.96057 + rotX: 0.0208029021 + rotY: 270.025452 + rotZ: 0.016780952 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 432630/Custom_Model_Bag Survivor 8ffae5/Card Hiding Spot 99b1a1.yaml b/unpacked/Custom_Model_Bag Survivor 432630/Custom_Model_Bag Survivor 8ffae5/Card Hiding Spot 99b1a1.yaml new file mode 100644 index 000000000..9ed13d0a9 --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 432630/Custom_Model_Bag Survivor 8ffae5/Card Hiding Spot 99b1a1.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 209708 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 99b1a1 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Hiding Spot +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.284111 + posY: 1.34958577 + posZ: 71.7412338 + rotX: 0.0208039843 + rotY: 270.0148 + rotZ: 0.0167753417 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 432630/Custom_Model_Bag Survivor 8ffae5/Card Impromptu Barrier 19cbde.yaml b/unpacked/Custom_Model_Bag Survivor 432630/Custom_Model_Bag Survivor 8ffae5/Card Impromptu Barrier 19cbde.yaml new file mode 100644 index 000000000..ae21a1ed6 --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 432630/Custom_Model_Bag Survivor 8ffae5/Card Impromptu Barrier 19cbde.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 443703 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '4437': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025946328/561232524C8EAA4B4371B28652F78969E6ED6FFB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 19cbde +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Impromptu Barrier +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.28411 + posY: 1.3482393 + posZ: 67.14111 + rotX: 0.0208031815 + rotY: 270.017761 + rotZ: 0.01677647 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 432630/Custom_Model_Bag Survivor 8ffae5/Card Improvised Weapon d952b1.yaml b/unpacked/Custom_Model_Bag Survivor 432630/Custom_Model_Bag Survivor 8ffae5/Card Improvised Weapon d952b1.yaml new file mode 100644 index 000000000..9cc3deb94 --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 432630/Custom_Model_Bag Survivor 8ffae5/Card Improvised Weapon d952b1.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 209711 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: d952b1 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Improvised Weapon +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.28411 + posY: 1.34891248 + posZ: 69.44123 + rotX: 0.02080501 + rotY: 270.012115 + rotZ: 0.0167740118 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 432630/Custom_Model_Bag Survivor 8ffae5/Card Lantern 793bdd.yaml b/unpacked/Custom_Model_Bag Survivor 432630/Custom_Model_Bag Survivor 8ffae5/Card Lantern 793bdd.yaml new file mode 100644 index 000000000..8a6ce26f5 --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 432630/Custom_Model_Bag Survivor 8ffae5/Card Lantern 793bdd.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 209727 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 793bdd +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Lantern +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.5688572 + posY: 1.34709978 + posZ: 74.06074 + rotX: 0.02079664 + rotY: 270.0381 + rotZ: 0.0167829674 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 432630/Custom_Model_Bag Survivor 8ffae5/Card Last Chance a0d009.yaml b/unpacked/Custom_Model_Bag Survivor 432630/Custom_Model_Bag Survivor 8ffae5/Card Last Chance a0d009.yaml new file mode 100644 index 000000000..9dc739634 --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 432630/Custom_Model_Bag Survivor 8ffae5/Card Last Chance a0d009.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 209704 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: a0d009 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Last Chance +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 24.4394035 + posY: 1.35615587 + posZ: 87.7904 + rotX: 0.0208180565 + rotY: 269.970245 + rotZ: 0.0167598147 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 432630/Custom_Model_Bag Survivor 8ffae5/Card Leather Coat 46004e.yaml b/unpacked/Custom_Model_Bag Survivor 432630/Custom_Model_Bag Survivor 8ffae5/Card Leather Coat 46004e.yaml new file mode 100644 index 000000000..7e679f35d --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 432630/Custom_Model_Bag Survivor 8ffae5/Card Leather Coat 46004e.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 209720 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 46004e +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Leather Coat +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.56886 + posY: 1.35113919 + posZ: 87.86075 + rotX: 0.0208061114 + rotY: 270.0058 + rotZ: 0.0167716183 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 432630/Custom_Model_Bag Survivor 8ffae5/Card Live and Learn c6dba2.yaml b/unpacked/Custom_Model_Bag Survivor 432630/Custom_Model_Bag Survivor 8ffae5/Card Live and Learn c6dba2.yaml new file mode 100644 index 000000000..a47849ad2 --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 432630/Custom_Model_Bag Survivor 8ffae5/Card Live and Learn c6dba2.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 209707 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: c6dba2 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Live and Learn +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.2841 + posY: 1.35429847 + posZ: 87.8412 + rotX: 0.0208068844 + rotY: 270.0081 + rotZ: 0.0167735182 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 432630/Custom_Model_Bag Survivor 8ffae5/Card Look what I found! 7fab09.yaml b/unpacked/Custom_Model_Bag Survivor 432630/Custom_Model_Bag Survivor 8ffae5/Card Look what I found! 7fab09.yaml new file mode 100644 index 000000000..a647f24af --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 432630/Custom_Model_Bag Survivor 8ffae5/Card Look what I found! 7fab09.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 7fab09 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '"Look what I found!"' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.2861462 + posY: 1.345547 + posZ: 57.9409828 + rotX: 0.0208082087 + rotY: 270.002045 + rotZ: 0.0167698786 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 432630/Custom_Model_Bag Survivor 8ffae5/Card Lucky! 9f8d38.yaml b/unpacked/Custom_Model_Bag Survivor 432630/Custom_Model_Bag Survivor 8ffae5/Card Lucky! 9f8d38.yaml new file mode 100644 index 000000000..b478b8e05 --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 432630/Custom_Model_Bag Survivor 8ffae5/Card Lucky! 9f8d38.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 9f8d38 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Lucky! +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.2841053 + posY: 1.347566 + posZ: 64.8411 + rotX: 0.0208032113 + rotY: 270.0167 + rotZ: 0.0167755019 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 432630/Custom_Model_Bag Survivor 8ffae5/Card Madame Labranche 0ca8d1.yaml b/unpacked/Custom_Model_Bag Survivor 432630/Custom_Model_Bag Survivor 8ffae5/Card Madame Labranche 0ca8d1.yaml new file mode 100644 index 000000000..28044802e --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 432630/Custom_Model_Bag Survivor 8ffae5/Card Madame Labranche 0ca8d1.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 209728 +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 + UniqueBack: false +Description: Mysterious Benefactress +GMNotes: '' +GUID: 0ca8d1 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Madame Labranche +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.568902 + posY: 1.34642649 + posZ: 71.7607 + rotX: 0.0208177939 + rotY: 269.97052 + rotZ: 0.0167598072 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 432630/Custom_Model_Bag Survivor 8ffae5/Card Meat Cleaver 2c0b96.yaml b/unpacked/Custom_Model_Bag Survivor 432630/Custom_Model_Bag Survivor 8ffae5/Card Meat Cleaver 2c0b96.yaml new file mode 100644 index 000000000..ef64e3b6b --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 432630/Custom_Model_Bag Survivor 8ffae5/Card Meat Cleaver 2c0b96.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 2c0b96 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Meat Cleaver +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.5688992 + posY: 1.34104061 + posZ: 53.36078 + rotX: 0.0207986124 + rotY: 270.032166 + rotZ: 0.0167816058 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 432630/Custom_Model_Bag Survivor 8ffae5/Card Moonstone 0d006f.yaml b/unpacked/Custom_Model_Bag Survivor 432630/Custom_Model_Bag Survivor 8ffae5/Card Moonstone 0d006f.yaml new file mode 100644 index 000000000..dd0fdabd8 --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 432630/Custom_Model_Bag Survivor 8ffae5/Card Moonstone 0d006f.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Item. Relic. Dreamlands. +GMNotes: '' +GUID: 0d006f +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Moonstone +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.5688562 + posY: 1.34373367 + posZ: 62.5607872 + rotX: 0.0208092444 + rotY: 270.003418 + rotZ: 0.0167721715 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 432630/Custom_Model_Bag Survivor 8ffae5/Card Newspaper 841cab.yaml b/unpacked/Custom_Model_Bag Survivor 432630/Custom_Model_Bag Survivor 8ffae5/Card Newspaper 841cab.yaml new file mode 100644 index 000000000..6a67d490d --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 432630/Custom_Model_Bag Survivor 8ffae5/Card Newspaper 841cab.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 209726 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 841cab +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Newspaper +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.5688658 + posY: 1.34911954 + posZ: 80.96075 + rotX: 0.0208214279 + rotY: 269.954559 + rotZ: 0.0167523623 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 432630/Custom_Model_Bag Survivor 8ffae5/Card Not without a fight! a2af93.yaml b/unpacked/Custom_Model_Bag Survivor 432630/Custom_Model_Bag Survivor 8ffae5/Card Not without a fight! a2af93.yaml new file mode 100644 index 000000000..099cd6c95 --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 432630/Custom_Model_Bag Survivor 8ffae5/Card Not without a fight! a2af93.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: a2af93 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '"Not without a fight!"' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 24.439394 + posY: 1.35682917 + posZ: 90.0903854 + rotX: 0.02081641 + rotY: 269.970459 + rotZ: 0.0167581569 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 432630/Custom_Model_Bag Survivor 8ffae5/Card Oops! c3c909.yaml b/unpacked/Custom_Model_Bag Survivor 432630/Custom_Model_Bag Survivor 8ffae5/Card Oops! c3c909.yaml new file mode 100644 index 000000000..0825567e1 --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 432630/Custom_Model_Bag Survivor 8ffae5/Card Oops! c3c909.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 209715 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: c3c909 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Oops! +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.2840176 + posY: 1.34487307 + posZ: 55.6412048 + rotX: 0.02080824 + rotY: 270.002045 + rotZ: 0.0167698078 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 432630/Custom_Model_Bag Survivor 8ffae5/Card Perseverance 2aae05.yaml b/unpacked/Custom_Model_Bag Survivor 432630/Custom_Model_Bag Survivor 8ffae5/Card Perseverance 2aae05.yaml new file mode 100644 index 000000000..590489256 --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 432630/Custom_Model_Bag Survivor 8ffae5/Card Perseverance 2aae05.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 209717 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 2aae05 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Perseverance +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.2841511 + posY: 1.34419978 + posZ: 53.3411865 + rotX: 0.0207998063 + rotY: 270.030579 + rotZ: 0.0167803355 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 432630/Custom_Model_Bag Survivor 8ffae5/Card Peter Sylvestre 523fe8.yaml b/unpacked/Custom_Model_Bag Survivor 432630/Custom_Model_Bag Survivor 8ffae5/Card Peter Sylvestre 523fe8.yaml new file mode 100644 index 000000000..e0af0859b --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 432630/Custom_Model_Bag Survivor 8ffae5/Card Peter Sylvestre 523fe8.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 209732 +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 + UniqueBack: false +Description: Big Man on Campus +GMNotes: '' +GUID: 523fe8 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Peter Sylvestre +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.5687666 + posY: 1.34171379 + posZ: 55.6607971 + rotX: 0.02081576 + rotY: 269.974426 + rotZ: 0.0167602263 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 432630/Custom_Model_Bag Survivor 8ffae5/Card Rabbit's Foot 472111.yaml b/unpacked/Custom_Model_Bag Survivor 432630/Custom_Model_Bag Survivor 8ffae5/Card Rabbit's Foot 472111.yaml new file mode 100644 index 000000000..37a47ab5f --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 432630/Custom_Model_Bag Survivor 8ffae5/Card Rabbit's Foot 472111.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 209723 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: '472111' +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Rabbit's Foot +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.5688591 + posY: 1.35046589 + posZ: 85.56075 + rotX: 0.0208106786 + rotY: 269.990173 + rotZ: 0.01676544 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 432630/Custom_Model_Bag Survivor 8ffae5/Card Resourceful 6d59df.yaml b/unpacked/Custom_Model_Bag Survivor 432630/Custom_Model_Bag Survivor 8ffae5/Card Resourceful 6d59df.yaml new file mode 100644 index 000000000..9f523c8da --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 432630/Custom_Model_Bag Survivor 8ffae5/Card Resourceful 6d59df.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 6d59df +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Resourceful +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 24.4536514 + posY: 1.35548627 + posZ: 85.48603 + rotX: 0.0207926575 + rotY: 270.056732 + rotZ: 0.0167909432 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 432630/Custom_Model_Bag Survivor 8ffae5/Card Rise to the Occasion 4c1be0.yaml b/unpacked/Custom_Model_Bag Survivor 432630/Custom_Model_Bag Survivor 8ffae5/Card Rise to the Occasion 4c1be0.yaml new file mode 100644 index 000000000..eae8ee579 --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 432630/Custom_Model_Bag Survivor 8ffae5/Card Rise to the Occasion 4c1be0.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 209701 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 4c1be0 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Rise to the Occasion +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 24.4389668 + posY: 1.35480917 + posZ: 83.19038 + rotX: 0.0208003577 + rotY: 270.0324 + rotZ: 0.0167818964 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 432630/Custom_Model_Bag Survivor 8ffae5/Card Scavenging 81356a.yaml b/unpacked/Custom_Model_Bag Survivor 432630/Custom_Model_Bag Survivor 8ffae5/Card Scavenging 81356a.yaml new file mode 100644 index 000000000..8806085ea --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 432630/Custom_Model_Bag Survivor 8ffae5/Card Scavenging 81356a.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 209722 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 81356a +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Scavenging +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.5688486 + posY: 1.34844625 + posZ: 78.6607361 + rotX: 0.0208097883 + rotY: 269.9942 + rotZ: 0.0167671163 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 432630/Custom_Model_Bag Survivor 8ffae5/Card Scrounge for Supplies da6dff.yaml b/unpacked/Custom_Model_Bag Survivor 432630/Custom_Model_Bag Survivor 8ffae5/Card Scrounge for Supplies da6dff.yaml new file mode 100644 index 000000000..eab29eaa0 --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 432630/Custom_Model_Bag Survivor 8ffae5/Card Scrounge for Supplies da6dff.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 380229 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: da6dff +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Scrounge for Supplies +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.2841 + posY: 1.35362518 + posZ: 85.5412 + rotX: 0.0208083782 + rotY: 270.002075 + rotZ: 0.0167713035 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 432630/Custom_Model_Bag Survivor 8ffae5/Card Stray Cat 8e580d.yaml b/unpacked/Custom_Model_Bag Survivor 432630/Custom_Model_Bag Survivor 8ffae5/Card Stray Cat 8e580d.yaml new file mode 100644 index 000000000..61c3cacc1 --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 432630/Custom_Model_Bag Survivor 8ffae5/Card Stray Cat 8e580d.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 209724 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 8e580d +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Stray Cat +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.5688553 + posY: 1.347773 + posZ: 76.36073 + rotX: 0.0208113249 + rotY: 269.987579 + rotZ: 0.0167644527 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 432630/Custom_Model_Bag Survivor 8ffae5/Card Stunning Blow 56a25e.yaml b/unpacked/Custom_Model_Bag Survivor 432630/Custom_Model_Bag Survivor 8ffae5/Card Stunning Blow 56a25e.yaml new file mode 100644 index 000000000..1a91c1c1a --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 432630/Custom_Model_Bag Survivor 8ffae5/Card Stunning Blow 56a25e.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 56a25e +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Stunning Blow +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 24.4393749 + posY: 1.35413611 + posZ: 80.8903351 + rotX: 0.0208177865 + rotY: 269.970551 + rotZ: 0.0167599488 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 432630/Custom_Model_Bag Survivor 8ffae5/Card Survival Instinct 136c96.yaml b/unpacked/Custom_Model_Bag Survivor 432630/Custom_Model_Bag Survivor 8ffae5/Card Survival Instinct 136c96.yaml new file mode 100644 index 000000000..b4d1ebb6d --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 432630/Custom_Model_Bag Survivor 8ffae5/Card Survival Instinct 136c96.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 136c96 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Survival Instinct +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 24.438879 + posY: 1.3534627 + posZ: 78.59042 + rotX: 0.020804733 + rotY: 270.0155 + rotZ: 0.0167762246 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 432630/Custom_Model_Bag Survivor 8ffae5/Card Take Heart 40bda1.yaml b/unpacked/Custom_Model_Bag Survivor 432630/Custom_Model_Bag Survivor 8ffae5/Card Take Heart 40bda1.yaml new file mode 100644 index 000000000..d08eb8f51 --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 432630/Custom_Model_Bag Survivor 8ffae5/Card Take Heart 40bda1.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 209706 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 40bda1 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Take Heart +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 24.43939 + posY: 1.35278952 + posZ: 76.29038 + rotX: 0.020803703 + rotY: 270.01886 + rotZ: 0.0167775825 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 432630/Custom_Model_Bag Survivor 8ffae5/Card Tennessee Sour Mash 517c94.yaml b/unpacked/Custom_Model_Bag Survivor 432630/Custom_Model_Bag Survivor 8ffae5/Card Tennessee Sour Mash 517c94.yaml new file mode 100644 index 000000000..d77a7d5f8 --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 432630/Custom_Model_Bag Survivor 8ffae5/Card Tennessee Sour Mash 517c94.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 517c94 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Tennessee Sour Mash +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.55308 + posY: 1.34036469 + posZ: 51.07134 + rotX: 0.0208015256 + rotY: 270.022583 + rotZ: 0.0167777054 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 432630/Custom_Model_Bag Survivor 8ffae5/Card Track Shoes acf7e4.yaml b/unpacked/Custom_Model_Bag Survivor 432630/Custom_Model_Bag Survivor 8ffae5/Card Track Shoes acf7e4.yaml new file mode 100644 index 000000000..31a0d4b1a --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 432630/Custom_Model_Bag Survivor 8ffae5/Card Track Shoes acf7e4.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: acf7e4 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Track Shoes +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.55291 + posY: 1.33968925 + posZ: 48.76401 + rotX: 0.0207967721 + rotY: 270.039642 + rotZ: 0.0167841222 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 432630/Custom_Model_Bag Survivor 8ffae5/Card Trial by Fire ec0259.yaml b/unpacked/Custom_Model_Bag Survivor 432630/Custom_Model_Bag Survivor 8ffae5/Card Trial by Fire ec0259.yaml new file mode 100644 index 000000000..f78080b8f --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 432630/Custom_Model_Bag Survivor 8ffae5/Card Trial by Fire ec0259.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: ec0259 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Trial by Fire +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.26833 + posY: 1.34352386 + posZ: 51.0517464 + rotX: 0.0208107214 + rotY: 269.9965 + rotZ: 0.01677012 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 432630/Custom_Model_Bag Survivor 8ffae5/Card Waylay a72cbd.yaml b/unpacked/Custom_Model_Bag Survivor 432630/Custom_Model_Bag Survivor 8ffae5/Card Waylay a72cbd.yaml new file mode 100644 index 000000000..3733198c2 --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 432630/Custom_Model_Bag Survivor 8ffae5/Card Waylay a72cbd.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 209718 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: a72cbd +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Waylay +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.2681713 + posY: 1.34284878 + posZ: 48.7452965 + rotX: 0.0208091121 + rotY: 269.9989 + rotZ: 0.016768733 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 432630/Custom_Model_Bag Survivor 8ffae5/Card Winging It 674d49.yaml b/unpacked/Custom_Model_Bag Survivor 432630/Custom_Model_Bag Survivor 8ffae5/Card Winging It 674d49.yaml new file mode 100644 index 000000000..04a22cf12 --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 432630/Custom_Model_Bag Survivor 8ffae5/Card Winging It 674d49.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 443701 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '4437': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025946328/561232524C8EAA4B4371B28652F78969E6ED6FFB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 674d49 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Winging It +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.2841148 + posY: 1.34689271 + posZ: 62.5412025 + rotX: 0.0208000671 + rotY: 270.03 + rotZ: 0.0167819336 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 9c814b.ttslua b/unpacked/Custom_Model_Bag Survivor 9c814b.ttslua new file mode 100644 index 000000000..857093fb8 --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 9c814b.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,0,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 + 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=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,0,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,0,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,0,0}, height=350, width=750, + 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}, rotation={0,0,0}, height=350, width=800, + font_size=250, color={0,0,0}, font_color={1,1,1} + }) +-- self.createButton({ +-- label="Setup", click_function="buttonClick_setup", function_owner=self, +-- position={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.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 \ No newline at end of file diff --git a/unpacked/Custom_Model_Bag Survivor 9c814b.yaml b/unpacked/Custom_Model_Bag Survivor 9c814b.yaml new file mode 100644 index 000000000..88dd3efd3 --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 9c814b.yaml @@ -0,0 +1,102 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +ContainedObjects: +- !include 'Custom_Model_Bag Survivor 9c814b/Card Able Bodied bce072.yaml' +- !include 'Custom_Model_Bag Survivor 9c814b/Card Not without a fight! 06ea61.yaml' +- !include 'Custom_Model_Bag Survivor 9c814b/Card Last Chance 167af1.yaml' +- !include 'Custom_Model_Bag Survivor 9c814b/Card Resourceful 4826e4.yaml' +- !include 'Custom_Model_Bag Survivor 9c814b/Card Rise to the Occasion b9c097.yaml' +- !include 'Custom_Model_Bag Survivor 9c814b/Card Stunning Blow 462616.yaml' +- !include 'Custom_Model_Bag Survivor 9c814b/Card Survival Instinct df66c1.yaml' +- !include 'Custom_Model_Bag Survivor 9c814b/Card Take Heart bc7341.yaml' +- !include 'Custom_Model_Bag Survivor 9c814b/Card Bait and Switch 478876.yaml' +- !include 'Custom_Model_Bag Survivor 9c814b/Card Belly of the Beast 976f22.yaml' +- !include 'Custom_Model_Bag Survivor 9c814b/Card A Glimmer of Hope e5c4f1.yaml' +- !include 'Custom_Model_Bag Survivor 9c814b/Card A Chance Encounter 5b4be9.yaml' +- !include 'Custom_Model_Bag Survivor 9c814b/Card Scrounge for Supplies a5e7d0.yaml' +- !include 'Custom_Model_Bag Survivor 9c814b/Card Live and Learn 1d35ce.yaml' +- !include 'Custom_Model_Bag Survivor 9c814b/Card Act of Desperation 970a14.yaml' +- !include 'Custom_Model_Bag Survivor 9c814b/Card Fortuitous Discovery ec7a58.yaml' +- !include 'Custom_Model_Bag Survivor 9c814b/Card Cunning Distraction f550ac.yaml' +- !include 'Custom_Model_Bag Survivor 9c814b/Card Fight or Flight 0d33ae.yaml' +- !include 'Custom_Model_Bag Survivor 9c814b/Card Hiding Spot 506474.yaml' +- !include 'Custom_Model_Bag Survivor 9c814b/Card Improvised Weapon 6d6fc2.yaml' +- !include 'Custom_Model_Bag Survivor 9c814b/Card Impromptu Barrier b1aa47.yaml' +- !include 'Custom_Model_Bag Survivor 9c814b/Card Lucky! 8b361c.yaml' +- !include 'Custom_Model_Bag Survivor 9c814b/Card Winging It 280592.yaml' +- !include 'Custom_Model_Bag Survivor 9c814b/Card Dumb Luck 7f09f4.yaml' +- !include 'Custom_Model_Bag Survivor 9c814b/Card Look what I found! 59fbb3.yaml' +- !include 'Custom_Model_Bag Survivor 9c814b/Card Oops! 059ccf.yaml' +- !include 'Custom_Model_Bag Survivor 9c814b/Card Perseverance ced615.yaml' +- !include 'Custom_Model_Bag Survivor 9c814b/Card Trial by Fire 9b9856.yaml' +- !include 'Custom_Model_Bag Survivor 9c814b/Card Tennessee Sour Mash 652ea3.yaml' +- !include 'Custom_Model_Bag Survivor 9c814b/Card Meat Cleaver 121a7c.yaml' +- !include 'Custom_Model_Bag Survivor 9c814b/Card Peter Sylvestre 7ba744.yaml' +- !include 'Custom_Model_Bag Survivor 9c814b/Card Grisly Totem deb334.yaml' +- !include 'Custom_Model_Bag Survivor 9c814b/Card Dark Horse a17fe6.yaml' +- !include 'Custom_Model_Bag Survivor 9c814b/Card Moonstone d8aee7.yaml' +- !include 'Custom_Model_Bag Survivor 9c814b/Card Dig Deep 494ff4.yaml' +- !include 'Custom_Model_Bag Survivor 9c814b/Card Baseball Bat c5450e.yaml' +- !include 'Custom_Model_Bag Survivor 9c814b/Card Gravedigger''s Shovel 5a3ae9.yaml' +- !include 'Custom_Model_Bag Survivor 9c814b/Card Madame Labranche 9ede82.yaml' +- !include 'Custom_Model_Bag Survivor 9c814b/Card Lantern 9eb1c4.yaml' +- !include 'Custom_Model_Bag Survivor 9c814b/Card Stray Cat 7602b0.yaml' +- !include 'Custom_Model_Bag Survivor 9c814b/Card Scavenging dbe602.yaml' +- !include 'Custom_Model_Bag Survivor 9c814b/Card Newspaper 5e5a25.yaml' +- !include 'Custom_Model_Bag Survivor 9c814b/Card Fire Axe 4aa750.yaml' +- !include 'Custom_Model_Bag Survivor 9c814b/Card Rabbit''s Foot 13dd9b.yaml' +- !include 'Custom_Model_Bag Survivor 9c814b/Card Leather Coat 7bf464.yaml' +- !include 'Custom_Model_Bag Survivor 9c814b/Card Drawing Thin fe7433.yaml' +- !include 'Custom_Model_Bag Survivor 9c814b/Card Cherished Keepsake 819e30.yaml' +- !include 'Custom_Model_Bag Survivor 9c814b/Card Track Shoes f39096.yaml' +- !include 'Custom_Model_Bag Survivor 9c814b/Card Waylay b79b02.yaml' +- !include 'Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 2e99ad.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/952965722515960460/F43F63452854B10B416FDF3BF9EF3068E6E68F26/ + MaterialIndex: 3 + MeshURL: https://pastebin.com/raw/ALrYhQGb + NormalURL: '' + TypeIndex: 6 +Description: '' +GMNotes: '' +GUID: 9c814b +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: true +LuaScript: !include 'Custom_Model_Bag Survivor 9c814b.ttslua' +LuaScriptState: '{"ml":{"059ccf":{"lock":false,"pos":{"x":53.2285,"y":1.3572,"z":55.6412},"rot":{"x":0.0208,"y":270.002,"z":0.0168}},"06ea61":{"lock":false,"pos":{"x":58.3839,"y":1.3692,"z":90.0904},"rot":{"x":0.0208,"y":269.9705,"z":0.0168}},"0d33ae":{"lock":false,"pos":{"x":53.2286,"y":1.3626,"z":74.0412},"rot":{"x":0.0208,"y":270.0068,"z":0.0168}},"121a7c":{"lock":false,"pos":{"x":44.5134,"y":1.3534,"z":53.3608},"rot":{"x":0.0208,"y":270.0321,"z":0.0168}},"13dd9b":{"lock":false,"pos":{"x":44.5133,"y":1.3628,"z":85.5608},"rot":{"x":0.0208,"y":269.9902,"z":0.0168}},"167af1":{"lock":false,"pos":{"x":58.3839,"y":1.3685,"z":87.7904},"rot":{"x":0.0208,"y":269.9702,"z":0.0168}},"1d35ce":{"lock":false,"pos":{"x":53.2286,"y":1.3666,"z":87.8412},"rot":{"x":0.0208,"y":270.0081,"z":0.0168}},"280592":{"lock":false,"pos":{"x":53.2286,"y":1.3592,"z":62.5412},"rot":{"x":0.0208,"y":270.03,"z":0.0168}},"462616":{"lock":false,"pos":{"x":58.3838,"y":1.3665,"z":80.8904},"rot":{"x":0.0208,"y":269.9705,"z":0.0168}},"478876":{"lock":false,"pos":{"x":53.2286,"y":1.3633,"z":76.3412},"rot":{"x":0.0208,"y":269.9727,"z":0.0168}},"4826e4":{"lock":false,"pos":{"x":58.3839,"y":1.3678,"z":85.4904},"rot":{"x":0.0208,"y":270.0567,"z":0.0168}},"494ff4":{"lock":false,"pos":{"x":44.5133,"y":1.3567,"z":64.8607},"rot":{"x":0.0208,"y":270.0347,"z":0.0168}},"4aa750":{"lock":false,"pos":{"x":44.5133,"y":1.3621,"z":83.2607},"rot":{"x":0.0208,"y":270.0216,"z":0.0168}},"506474":{"lock":false,"pos":{"x":53.2286,"y":1.3619,"z":71.7412},"rot":{"x":0.0208,"y":270.0148,"z":0.0168}},"59fbb3":{"lock":false,"pos":{"x":53.2306,"y":1.3579,"z":57.941},"rot":{"x":0.0208,"y":270.002,"z":0.0168}},"5a3ae9":{"lock":false,"pos":{"x":44.5133,"y":1.3581,"z":69.4607},"rot":{"x":0.0208,"y":269.9847,"z":0.0168}},"5b4be9":{"lock":false,"pos":{"x":53.2286,"y":1.3653,"z":83.2412},"rot":{"x":0.0208,"y":269.9686,"z":0.0168}},"5e5a25":{"lock":false,"pos":{"x":44.5133,"y":1.3614,"z":80.9607},"rot":{"x":0.0208,"y":269.9546,"z":0.0168}},"652ea3":{"lock":false,"pos":{"x":44.4975,"y":1.3527,"z":51.0713},"rot":{"x":0.0208,"y":270.0226,"z":0.0168}},"6d6fc2":{"lock":false,"pos":{"x":53.2286,"y":1.3612,"z":69.4412},"rot":{"x":0.0208,"y":270.0121,"z":0.0168}},"7602b0":{"lock":false,"pos":{"x":44.5133,"y":1.3601,"z":76.3607},"rot":{"x":0.0208,"y":269.9875,"z":0.0168}},"7ba744":{"lock":false,"pos":{"x":44.5132,"y":1.354,"z":55.6608},"rot":{"x":0.0208,"y":269.9744,"z":0.0168}},"7bf464":{"lock":false,"pos":{"x":44.5133,"y":1.3635,"z":87.8608},"rot":{"x":0.0208,"y":270.0058,"z":0.0168}},"7f09f4":{"lock":false,"pos":{"x":53.2286,"y":1.3585,"z":60.2412},"rot":{"x":0.0208,"y":270.0198,"z":0.0168}},"819e30":{"lock":false,"pos":{"x":44.5133,"y":1.3648,"z":92.4607},"rot":{"x":0.0208,"y":269.9773,"z":0.0168}},"8b361c":{"lock":false,"pos":{"x":53.2286,"y":1.3599,"z":64.8411},"rot":{"x":0.0208,"y":270.0167,"z":0.0168}},"970a14":{"lock":false,"pos":{"x":53.2286,"y":1.3673,"z":90.1413},"rot":{"x":0.0208,"y":270.0449,"z":0.0168}},"976f22":{"lock":false,"pos":{"x":53.2286,"y":1.3639,"z":78.6412},"rot":{"x":0.0208,"y":270.007,"z":0.0168}},"9b9856":{"lock":false,"pos":{"x":53.2128,"y":1.3559,"z":51.0517},"rot":{"x":0.0208,"y":269.9965,"z":0.0168}},"9eb1c4":{"lock":false,"pos":{"x":44.5133,"y":1.3594,"z":74.0607},"rot":{"x":0.0208,"y":270.0381,"z":0.0168}},"9ede82":{"lock":false,"pos":{"x":44.5133,"y":1.3588,"z":71.7607},"rot":{"x":0.0208,"y":269.9705,"z":0.0168}},"a17fe6":{"lock":false,"pos":{"x":44.5133,"y":1.3554,"z":60.2608},"rot":{"x":0.0208,"y":270.0363,"z":0.0168}},"a5e7d0":{"lock":false,"pos":{"x":53.2286,"y":1.366,"z":85.5412},"rot":{"x":0.0208,"y":270.0021,"z":0.0168}},"b1aa47":{"lock":false,"pos":{"x":53.2286,"y":1.3606,"z":67.1411},"rot":{"x":0.0208,"y":270.0178,"z":0.0168}},"b79b02":{"lock":false,"pos":{"x":53.2126,"y":1.3552,"z":48.7453},"rot":{"x":0.0208,"y":269.9989,"z":0.0168}},"b9c097":{"lock":false,"pos":{"x":58.3839,"y":1.3671,"z":83.1904},"rot":{"x":0.0208,"y":270.0324,"z":0.0168}},"bc7341":{"lock":false,"pos":{"x":58.3838,"y":1.3651,"z":76.2904},"rot":{"x":0.0208,"y":270.0189,"z":0.0168}},"bce072":{"lock":false,"pos":{"x":58.3839,"y":1.3698,"z":92.3904},"rot":{"x":0.0208,"y":270.0151,"z":0.0168}},"c5450e":{"lock":false,"pos":{"x":44.5133,"y":1.3574,"z":67.1607},"rot":{"x":0.0208,"y":269.9902,"z":0.0168}},"ced615":{"lock":false,"pos":{"x":53.2286,"y":1.3565,"z":53.3412},"rot":{"x":0.0208,"y":270.0305,"z":0.0168}},"d8aee7":{"lock":false,"pos":{"x":44.5133,"y":1.3561,"z":62.5608},"rot":{"x":0.0208,"y":270.0034,"z":0.0168}},"dbe602":{"lock":false,"pos":{"x":44.5133,"y":1.3608,"z":78.6607},"rot":{"x":0.0208,"y":269.9942,"z":0.0168}},"deb334":{"lock":false,"pos":{"x":44.5154,"y":1.3547,"z":57.9606},"rot":{"x":0.0208,"y":270.0254,"z":0.0168}},"df66c1":{"lock":false,"pos":{"x":58.3838,"y":1.3658,"z":78.5904},"rot":{"x":0.0208,"y":270.0155,"z":0.0168}},"e5c4f1":{"lock":false,"pos":{"x":53.2286,"y":1.3646,"z":80.9412},"rot":{"x":0.0208,"y":270.0033,"z":0.0168}},"ec7a58":{"lock":false,"pos":{"x":53.2286,"y":1.368,"z":92.4412},"rot":{"x":0.0208,"y":269.9896,"z":0.0168}},"f39096":{"lock":false,"pos":{"x":44.4974,"y":1.352,"z":48.764},"rot":{"x":0.0208,"y":270.0396,"z":0.0168}},"f550ac":{"lock":false,"pos":{"x":49.5629,"y":1.3666,"z":92.4528},"rot":{"x":0.0208,"y":270.0128,"z":0.0168}},"fe7433":{"lock":false,"pos":{"x":44.5133,"y":1.3641,"z":90.1608},"rot":{"x":0.0208,"y":269.9882,"z":0.0168}}}}' +MaterialIndex: -1 +MeshIndex: -1 +Name: Custom_Model_Bag +Nickname: Survivor +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 66.57978 + posY: 1.40995741 + posZ: 54.3474541 + rotX: 0.02080491 + rotY: 270.020081 + rotZ: 0.01677757 + scaleX: 1.2 + scaleY: 1.2 + scaleZ: 1.2 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 9c814b/Card A Chance Encounter 5b4be9.yaml b/unpacked/Custom_Model_Bag Survivor 9c814b/Card A Chance Encounter 5b4be9.yaml new file mode 100644 index 000000000..9cd05e602 --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 9c814b/Card A Chance Encounter 5b4be9.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 209712 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 5b4be9 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: A Chance Encounter +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 53.2285843 + posY: 1.36527979 + posZ: 83.24124 + rotX: 0.0208173022 + rotY: 269.968628 + rotZ: 0.0167582631 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 9c814b/Card A Glimmer of Hope e5c4f1.yaml b/unpacked/Custom_Model_Bag Survivor 9c814b/Card A Glimmer of Hope e5c4f1.yaml new file mode 100644 index 000000000..fa801b746 --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 9c814b/Card A Glimmer of Hope e5c4f1.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Blessed. Fortune. +GMNotes: '' +GUID: e5c4f1 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: A Glimmer of Hope +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 53.22858 + posY: 1.36460662 + posZ: 80.94124 + rotX: 0.020806985 + rotY: 270.0033 + rotZ: 0.0167710483 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 9c814b/Card Able Bodied bce072.yaml b/unpacked/Custom_Model_Bag Survivor 9c814b/Card Able Bodied bce072.yaml new file mode 100644 index 000000000..187c52f1b --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 9c814b/Card Able Bodied bce072.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: bce072 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Able Bodied +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 58.3838539 + posY: 1.36983013 + posZ: 92.39038 + rotX: 0.0208036136 + rotY: 270.015076 + rotZ: 0.0167752 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 9c814b/Card Act of Desperation 970a14.yaml b/unpacked/Custom_Model_Bag Survivor 9c814b/Card Act of Desperation 970a14.yaml new file mode 100644 index 000000000..884069de4 --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 9c814b/Card Act of Desperation 970a14.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 970a14 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Act of Desperation +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 53.22858 + posY: 1.36729944 + posZ: 90.14125 + rotX: 0.0207950547 + rotY: 270.044861 + rotZ: 0.01678613 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 9c814b/Card Bait and Switch 478876.yaml b/unpacked/Custom_Model_Bag Survivor 9c814b/Card Bait and Switch 478876.yaml new file mode 100644 index 000000000..e523b47ee --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 9c814b/Card Bait and Switch 478876.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 209709 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: '478876' +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Bait and Switch +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 53.2285728 + posY: 1.36326 + posZ: 76.34123 + rotX: 0.02081603 + rotY: 269.9727 + rotZ: 0.0167598184 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 9c814b/Card Baseball Bat c5450e.yaml b/unpacked/Custom_Model_Bag Survivor 9c814b/Card Baseball Bat c5450e.yaml new file mode 100644 index 000000000..cb8618a7c --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 9c814b/Card Baseball Bat c5450e.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 209730 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: c5450e +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Baseball Bat +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.5133171 + posY: 1.35740757 + posZ: 67.1607056 + rotX: 0.0208109468 + rotY: 269.990173 + rotZ: 0.0167662 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 9c814b/Card Belly of the Beast 976f22.yaml b/unpacked/Custom_Model_Bag Survivor 9c814b/Card Belly of the Beast 976f22.yaml new file mode 100644 index 000000000..41742129d --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 9c814b/Card Belly of the Beast 976f22.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 976f22 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Belly of the Beast +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 53.2285728 + posY: 1.36393321 + posZ: 78.6412354 + rotX: 0.0208059642 + rotY: 270.007 + rotZ: 0.016772246 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 9c814b/Card Cherished Keepsake 819e30.yaml b/unpacked/Custom_Model_Bag Survivor 9c814b/Card Cherished Keepsake 819e30.yaml new file mode 100644 index 000000000..84d2bc2eb --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 9c814b/Card Cherished Keepsake 819e30.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 209721 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 819e30 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Cherished Keepsake +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.51333 + posY: 1.36481321 + posZ: 92.46075 + rotX: 0.0208147243 + rotY: 269.9773 + rotZ: 0.0167615749 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 9c814b/Card Cunning Distraction f550ac.yaml b/unpacked/Custom_Model_Bag Survivor 9c814b/Card Cunning Distraction f550ac.yaml new file mode 100644 index 000000000..1ca70f2d7 --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 9c814b/Card Cunning Distraction f550ac.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 209719 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: f550ac +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Cunning Distraction +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 49.5628624 + posY: 1.36664486 + posZ: 92.4528046 + rotX: 0.020804327 + rotY: 270.012817 + rotZ: 0.0167745557 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 9c814b/Card Dark Horse a17fe6.yaml b/unpacked/Custom_Model_Bag Survivor 9c814b/Card Dark Horse a17fe6.yaml new file mode 100644 index 000000000..86de9c466 --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 9c814b/Card Dark Horse a17fe6.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 209733 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: a17fe6 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Dark Horse +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.51332 + posY: 1.35538781 + posZ: 60.260788 + rotX: 0.0207996275 + rotY: 270.036346 + rotZ: 0.01678592 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 9c814b/Card Dig Deep 494ff4.yaml b/unpacked/Custom_Model_Bag Survivor 9c814b/Card Dig Deep 494ff4.yaml new file mode 100644 index 000000000..27e92e3eb --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 9c814b/Card Dig Deep 494ff4.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 494ff4 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Dig Deep +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.5133171 + posY: 1.3567344 + posZ: 64.8606949 + rotX: 0.02079812 + rotY: 270.034668 + rotZ: 0.0167824589 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 9c814b/Card Drawing Thin fe7433.yaml b/unpacked/Custom_Model_Bag Survivor 9c814b/Card Drawing Thin fe7433.yaml new file mode 100644 index 000000000..85150824e --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 9c814b/Card Drawing Thin fe7433.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: fe7433 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Drawing Thin +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.5133247 + posY: 1.36414 + posZ: 90.16076 + rotX: 0.0208115522 + rotY: 269.9882 + rotZ: 0.0167653877 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 9c814b/Card Dumb Luck 7f09f4.yaml b/unpacked/Custom_Model_Bag Survivor 9c814b/Card Dumb Luck 7f09f4.yaml new file mode 100644 index 000000000..b740a6992 --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 9c814b/Card Dumb Luck 7f09f4.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 209714 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 7f09f4 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Dumb Luck +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 53.2285728 + posY: 1.35854733 + posZ: 60.2411957 + rotX: 0.0208042189 + rotY: 270.019836 + rotZ: 0.0167798847 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 9c814b/Card Fight or Flight 0d33ae.yaml b/unpacked/Custom_Model_Bag Survivor 9c814b/Card Fight or Flight 0d33ae.yaml new file mode 100644 index 000000000..9af1a738b --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 9c814b/Card Fight or Flight 0d33ae.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 209713 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 0d33ae +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Fight or Flight +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 53.2285767 + posY: 1.36258686 + posZ: 74.04124 + rotX: 0.0208061 + rotY: 270.006775 + rotZ: 0.0167721584 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 9c814b/Card Fire Axe 4aa750.yaml b/unpacked/Custom_Model_Bag Survivor 9c814b/Card Fire Axe 4aa750.yaml new file mode 100644 index 000000000..ac0319486 --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 9c814b/Card Fire Axe 4aa750.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 4aa750 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Fire Axe +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.5133324 + posY: 1.36212027 + posZ: 83.26075 + rotX: 0.0208017249 + rotY: 270.021637 + rotZ: 0.0167775843 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 9c814b/Card Fortuitous Discovery ec7a58.yaml b/unpacked/Custom_Model_Bag Survivor 9c814b/Card Fortuitous Discovery ec7a58.yaml new file mode 100644 index 000000000..9317cf602 --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 9c814b/Card Fortuitous Discovery ec7a58.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: ec7a58 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Fortuitous Discovery +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 53.22858 + posY: 1.36797273 + posZ: 92.44124 + rotX: 0.0208109841 + rotY: 269.9896 + rotZ: 0.0167660527 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 9c814b/Card Gravedigger's Shovel 5a3ae9.yaml b/unpacked/Custom_Model_Bag Survivor 9c814b/Card Gravedigger's Shovel 5a3ae9.yaml new file mode 100644 index 000000000..d5602a8dd --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 9c814b/Card Gravedigger's Shovel 5a3ae9.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 5a3ae9 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Gravedigger's Shovel +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.51332 + posY: 1.35808086 + posZ: 69.46074 + rotX: 0.0208125655 + rotY: 269.98468 + rotZ: 0.0167643186 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 9c814b/Card Grisly Totem deb334.yaml b/unpacked/Custom_Model_Bag Survivor 9c814b/Card Grisly Totem deb334.yaml new file mode 100644 index 000000000..aef73c610 --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 9c814b/Card Grisly Totem deb334.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: deb334 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Grisly Totem +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.515358 + posY: 1.35471523 + posZ: 57.9605675 + rotX: 0.0208029579 + rotY: 270.025421 + rotZ: 0.0167820118 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 9c814b/Card Hiding Spot 506474.yaml b/unpacked/Custom_Model_Bag Survivor 9c814b/Card Hiding Spot 506474.yaml new file mode 100644 index 000000000..5938ea03a --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 9c814b/Card Hiding Spot 506474.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 209708 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: '506474' +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Hiding Spot +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 53.2285767 + posY: 1.36191356 + posZ: 71.7412338 + rotX: 0.0208038744 + rotY: 270.0148 + rotZ: 0.0167750586 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 9c814b/Card Impromptu Barrier b1aa47.yaml b/unpacked/Custom_Model_Bag Survivor 9c814b/Card Impromptu Barrier b1aa47.yaml new file mode 100644 index 000000000..68a11767d --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 9c814b/Card Impromptu Barrier b1aa47.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 443703 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '4437': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025946328/561232524C8EAA4B4371B28652F78969E6ED6FFB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: b1aa47 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Impromptu Barrier +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 53.22857 + posY: 1.36056709 + posZ: 67.14111 + rotX: 0.0208028182 + rotY: 270.017761 + rotZ: 0.016776124 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 9c814b/Card Improvised Weapon 6d6fc2.yaml b/unpacked/Custom_Model_Bag Survivor 9c814b/Card Improvised Weapon 6d6fc2.yaml new file mode 100644 index 000000000..b073592dc --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 9c814b/Card Improvised Weapon 6d6fc2.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 209711 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 6d6fc2 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Improvised Weapon +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 53.2285728 + posY: 1.36124027 + posZ: 69.44123 + rotX: 0.0208043754 + rotY: 270.0121 + rotZ: 0.0167742837 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 9c814b/Card Lantern 9eb1c4.yaml b/unpacked/Custom_Model_Bag Survivor 9c814b/Card Lantern 9eb1c4.yaml new file mode 100644 index 000000000..7daba5128 --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 9c814b/Card Lantern 9eb1c4.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 209727 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 9eb1c4 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Lantern +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.51332 + posY: 1.35942733 + posZ: 74.0607452 + rotX: 0.0207967814 + rotY: 270.0381 + rotZ: 0.0167835969 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 9c814b/Card Last Chance 167af1.yaml b/unpacked/Custom_Model_Bag Survivor 9c814b/Card Last Chance 167af1.yaml new file mode 100644 index 000000000..1c4dbfa4b --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 9c814b/Card Last Chance 167af1.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 209704 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 167af1 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Last Chance +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 58.3838539 + posY: 1.36848366 + posZ: 87.79039 + rotX: 0.0208169 + rotY: 269.970245 + rotZ: 0.0167588927 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 9c814b/Card Leather Coat 7bf464.yaml b/unpacked/Custom_Model_Bag Survivor 9c814b/Card Leather Coat 7bf464.yaml new file mode 100644 index 000000000..bc204ada8 --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 9c814b/Card Leather Coat 7bf464.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 209720 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 7bf464 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Leather Coat +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.51333 + posY: 1.36346686 + posZ: 87.8607559 + rotX: 0.020806279 + rotY: 270.0058 + rotZ: 0.0167720132 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 9c814b/Card Live and Learn 1d35ce.yaml b/unpacked/Custom_Model_Bag Survivor 9c814b/Card Live and Learn 1d35ce.yaml new file mode 100644 index 000000000..cf34f6b95 --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 9c814b/Card Live and Learn 1d35ce.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 209707 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 1d35ce +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Live and Learn +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 53.22858 + posY: 1.36662626 + posZ: 87.84125 + rotX: 0.0208057668 + rotY: 270.0081 + rotZ: 0.0167727452 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 9c814b/Card Look what I found! 59fbb3.yaml b/unpacked/Custom_Model_Bag Survivor 9c814b/Card Look what I found! 59fbb3.yaml new file mode 100644 index 000000000..ee75bf051 --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 9c814b/Card Look what I found! 59fbb3.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 59fbb3 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '"Look what I found!"' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 53.23061 + posY: 1.35787463 + posZ: 57.9409752 + rotX: 0.0208099261 + rotY: 270.002 + rotZ: 0.0167734362 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 9c814b/Card Lucky! 8b361c.yaml b/unpacked/Custom_Model_Bag Survivor 9c814b/Card Lucky! 8b361c.yaml new file mode 100644 index 000000000..429775607 --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 9c814b/Card Lucky! 8b361c.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 8b361c +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Lucky! +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 53.22857 + posY: 1.3598938 + posZ: 64.8411 + rotX: 0.0208030771 + rotY: 270.0167 + rotZ: 0.0167756844 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 9c814b/Card Madame Labranche 9ede82.yaml b/unpacked/Custom_Model_Bag Survivor 9c814b/Card Madame Labranche 9ede82.yaml new file mode 100644 index 000000000..29d492e1e --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 9c814b/Card Madame Labranche 9ede82.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 209728 +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 + UniqueBack: false +Description: Mysterious Benefactress +GMNotes: '' +GUID: 9ede82 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Madame Labranche +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.5133247 + posY: 1.35875416 + posZ: 71.76074 + rotX: 0.0208167341 + rotY: 269.97052 + rotZ: 0.0167591125 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 9c814b/Card Meat Cleaver 121a7c.yaml b/unpacked/Custom_Model_Bag Survivor 9c814b/Card Meat Cleaver 121a7c.yaml new file mode 100644 index 000000000..716c793bc --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 9c814b/Card Meat Cleaver 121a7c.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 121a7c +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Meat Cleaver +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.5133629 + posY: 1.35336816 + posZ: 53.36077 + rotX: 0.02080083 + rotY: 270.032135 + rotZ: 0.0167844221 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 9c814b/Card Moonstone d8aee7.yaml b/unpacked/Custom_Model_Bag Survivor 9c814b/Card Moonstone d8aee7.yaml new file mode 100644 index 000000000..5b0e0484f --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 9c814b/Card Moonstone d8aee7.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Item. Relic. Dreamlands. +GMNotes: '' +GUID: d8aee7 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Moonstone +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.51332 + posY: 1.3560611 + posZ: 62.5607872 + rotX: 0.0208094884 + rotY: 270.0034 + rotZ: 0.0167740565 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 9c814b/Card Newspaper 5e5a25.yaml b/unpacked/Custom_Model_Bag Survivor 9c814b/Card Newspaper 5e5a25.yaml new file mode 100644 index 000000000..fedea4b29 --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 9c814b/Card Newspaper 5e5a25.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 209726 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 5e5a25 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Newspaper +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.51333 + posY: 1.3614471 + posZ: 80.96075 + rotX: 0.02082129 + rotY: 269.954559 + rotZ: 0.0167532153 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 9c814b/Card Not without a fight! 06ea61.yaml b/unpacked/Custom_Model_Bag Survivor 9c814b/Card Not without a fight! 06ea61.yaml new file mode 100644 index 000000000..21fef3b94 --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 9c814b/Card Not without a fight! 06ea61.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 06ea61 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '"Not without a fight!"' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 58.3838539 + posY: 1.36915684 + posZ: 90.09039 + rotX: 0.0208166912 + rotY: 269.970459 + rotZ: 0.016758956 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 9c814b/Card Oops! 059ccf.yaml b/unpacked/Custom_Model_Bag Survivor 9c814b/Card Oops! 059ccf.yaml new file mode 100644 index 000000000..baf37bf47 --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 9c814b/Card Oops! 059ccf.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 209715 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 059ccf +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Oops! +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 53.2284851 + posY: 1.35720074 + posZ: 55.6411972 + rotX: 0.0208099317 + rotY: 270.002 + rotZ: 0.0167735387 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 9c814b/Card Perseverance ced615.yaml b/unpacked/Custom_Model_Bag Survivor 9c814b/Card Perseverance ced615.yaml new file mode 100644 index 000000000..3aa255ab0 --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 9c814b/Card Perseverance ced615.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 209717 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: ced615 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Perseverance +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 53.2286148 + posY: 1.35652757 + posZ: 53.34118 + rotX: 0.0208014026 + rotY: 270.030548 + rotZ: 0.0167837571 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 9c814b/Card Peter Sylvestre 7ba744.yaml b/unpacked/Custom_Model_Bag Survivor 9c814b/Card Peter Sylvestre 7ba744.yaml new file mode 100644 index 000000000..6ebe7d171 --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 9c814b/Card Peter Sylvestre 7ba744.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 209732 +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 + UniqueBack: false +Description: Big Man on Campus +GMNotes: '' +GUID: 7ba744 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Peter Sylvestre +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.5132332 + posY: 1.35404134 + posZ: 55.66079 + rotX: 0.0208176561 + rotY: 269.974426 + rotZ: 0.0167634245 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 9c814b/Card Rabbit's Foot 13dd9b.yaml b/unpacked/Custom_Model_Bag Survivor 9c814b/Card Rabbit's Foot 13dd9b.yaml new file mode 100644 index 000000000..6b9513c7a --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 9c814b/Card Rabbit's Foot 13dd9b.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 209723 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 13dd9b +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Rabbit's Foot +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.5133324 + posY: 1.36279356 + posZ: 85.56075 + rotX: 0.0208109133 + rotY: 269.990173 + rotZ: 0.0167663246 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 9c814b/Card Resourceful 4826e4.yaml b/unpacked/Custom_Model_Bag Survivor 9c814b/Card Resourceful 4826e4.yaml new file mode 100644 index 000000000..40b8c5ae9 --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 9c814b/Card Resourceful 4826e4.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 4826e4 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Resourceful +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 58.38386 + posY: 1.36781049 + posZ: 85.49039 + rotX: 0.0207915045 + rotY: 270.0567 + rotZ: 0.0167903733 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 9c814b/Card Rise to the Occasion b9c097.yaml b/unpacked/Custom_Model_Bag Survivor 9c814b/Card Rise to the Occasion b9c097.yaml new file mode 100644 index 000000000..796b18a41 --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 9c814b/Card Rise to the Occasion b9c097.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 209701 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: b9c097 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Rise to the Occasion +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 58.38386 + posY: 1.36713707 + posZ: 83.1903839 + rotX: 0.0207988024 + rotY: 270.0324 + rotZ: 0.0167815126 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 9c814b/Card Scavenging dbe602.yaml b/unpacked/Custom_Model_Bag Survivor 9c814b/Card Scavenging dbe602.yaml new file mode 100644 index 000000000..81d58a78b --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 9c814b/Card Scavenging dbe602.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 209722 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: dbe602 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Scavenging +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.51332 + posY: 1.36077392 + posZ: 78.66074 + rotX: 0.0208094139 + rotY: 269.9942 + rotZ: 0.0167675521 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 9c814b/Card Scrounge for Supplies a5e7d0.yaml b/unpacked/Custom_Model_Bag Survivor 9c814b/Card Scrounge for Supplies a5e7d0.yaml new file mode 100644 index 000000000..d7f854d02 --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 9c814b/Card Scrounge for Supplies a5e7d0.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 380229 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: a5e7d0 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Scrounge for Supplies +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 53.2285843 + posY: 1.365953 + posZ: 85.5412445 + rotX: 0.0208077729 + rotY: 270.002075 + rotZ: 0.016770523 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 9c814b/Card Stray Cat 7602b0.yaml b/unpacked/Custom_Model_Bag Survivor 9c814b/Card Stray Cat 7602b0.yaml new file mode 100644 index 000000000..05072e195 --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 9c814b/Card Stray Cat 7602b0.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 209724 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 7602b0 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Stray Cat +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.51332 + posY: 1.36010051 + posZ: 76.36074 + rotX: 0.0208116025 + rotY: 269.987549 + rotZ: 0.0167651139 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 9c814b/Card Stunning Blow 462616.yaml b/unpacked/Custom_Model_Bag Survivor 9c814b/Card Stunning Blow 462616.yaml new file mode 100644 index 000000000..2c5dc1049 --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 9c814b/Card Stunning Blow 462616.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: '462616' +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Stunning Blow +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 58.3838425 + posY: 1.36646378 + posZ: 80.89037 + rotX: 0.020818647 + rotY: 269.970581 + rotZ: 0.01676287 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 9c814b/Card Survival Instinct df66c1.yaml b/unpacked/Custom_Model_Bag Survivor 9c814b/Card Survival Instinct df66c1.yaml new file mode 100644 index 000000000..b0a4f250f --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 9c814b/Card Survival Instinct df66c1.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: df66c1 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Survival Instinct +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 58.3838463 + posY: 1.36579061 + posZ: 78.59038 + rotX: 0.0208036844 + rotY: 270.0155 + rotZ: 0.0167753976 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 9c814b/Card Take Heart bc7341.yaml b/unpacked/Custom_Model_Bag Survivor 9c814b/Card Take Heart bc7341.yaml new file mode 100644 index 000000000..6bc34f5ad --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 9c814b/Card Take Heart bc7341.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 209706 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: bc7341 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Take Heart +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 58.3838463 + posY: 1.36511743 + posZ: 76.2903748 + rotX: 0.0208025742 + rotY: 270.01886 + rotZ: 0.0167766642 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 9c814b/Card Tennessee Sour Mash 652ea3.yaml b/unpacked/Custom_Model_Bag Survivor 9c814b/Card Tennessee Sour Mash 652ea3.yaml new file mode 100644 index 000000000..6db6c3edb --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 9c814b/Card Tennessee Sour Mash 652ea3.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 652ea3 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Tennessee Sour Mash +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.4975433 + posY: 1.35269225 + posZ: 51.07133 + rotX: 0.020803567 + rotY: 270.022552 + rotZ: 0.0167808626 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 9c814b/Card Track Shoes f39096.yaml b/unpacked/Custom_Model_Bag Survivor 9c814b/Card Track Shoes f39096.yaml new file mode 100644 index 000000000..d980778c7 --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 9c814b/Card Track Shoes f39096.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: f39096 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Track Shoes +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.49737 + posY: 1.35201681 + posZ: 48.7640038 + rotX: 0.020798672 + rotY: 270.039642 + rotZ: 0.016787136 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 9c814b/Card Trial by Fire 9b9856.yaml b/unpacked/Custom_Model_Bag Survivor 9c814b/Card Trial by Fire 9b9856.yaml new file mode 100644 index 000000000..309b38a18 --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 9c814b/Card Trial by Fire 9b9856.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 9b9856 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Trial by Fire +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 53.2127953 + posY: 1.35585165 + posZ: 51.05174 + rotX: 0.0208112746 + rotY: 269.996521 + rotZ: 0.0167714879 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 9c814b/Card Waylay b79b02.yaml b/unpacked/Custom_Model_Bag Survivor 9c814b/Card Waylay b79b02.yaml new file mode 100644 index 000000000..263b077f1 --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 9c814b/Card Waylay b79b02.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 209718 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: b79b02 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Waylay +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 53.212635 + posY: 1.35517645 + posZ: 48.74529 + rotX: 0.0208105054 + rotY: 269.9989 + rotZ: 0.0167724844 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 9c814b/Card Winging It 280592.yaml b/unpacked/Custom_Model_Bag Survivor 9c814b/Card Winging It 280592.yaml new file mode 100644 index 000000000..3f503153a --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 9c814b/Card Winging It 280592.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 443701 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '4437': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025946328/561232524C8EAA4B4371B28652F78969E6ED6FFB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: '280592' +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Winging It +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 53.2285728 + posY: 1.3592205 + posZ: 62.5411949 + rotX: 0.0208014473 + rotY: 270.029968 + rotZ: 0.01678351 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 2e99ad.ttslua b/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 2e99ad.ttslua new file mode 100644 index 000000000..f882a7f09 --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 2e99ad.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,0,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 + 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=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,0,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,0,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,0,0}, height=350, width=750, + 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}, rotation={0,0,0}, height=350, width=800, + font_size=250, color={0,0,0}, font_color={1,1,1} + }) +-- self.createButton({ +-- label="Setup", click_function="buttonClick_setup", function_owner=self, +-- position={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.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 Survivor 9c814b/Custom_Model_Bag Survivor 2e99ad.yaml b/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 2e99ad.yaml new file mode 100644 index 000000000..59cb79343 --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 2e99ad.yaml @@ -0,0 +1,101 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +ContainedObjects: +- !include 'Custom_Model_Bag Survivor 2e99ad/Card Able Bodied bce072.yaml' +- !include 'Custom_Model_Bag Survivor 2e99ad/Card Not without a fight! 06ea61.yaml' +- !include 'Custom_Model_Bag Survivor 2e99ad/Card Last Chance 167af1.yaml' +- !include 'Custom_Model_Bag Survivor 2e99ad/Card Resourceful 4826e4.yaml' +- !include 'Custom_Model_Bag Survivor 2e99ad/Card Rise to the Occasion b9c097.yaml' +- !include 'Custom_Model_Bag Survivor 2e99ad/Card Stunning Blow 462616.yaml' +- !include 'Custom_Model_Bag Survivor 2e99ad/Card Survival Instinct df66c1.yaml' +- !include 'Custom_Model_Bag Survivor 2e99ad/Card Take Heart bc7341.yaml' +- !include 'Custom_Model_Bag Survivor 2e99ad/Card Bait and Switch 478876.yaml' +- !include 'Custom_Model_Bag Survivor 2e99ad/Card Belly of the Beast 976f22.yaml' +- !include 'Custom_Model_Bag Survivor 2e99ad/Card A Glimmer of Hope e5c4f1.yaml' +- !include 'Custom_Model_Bag Survivor 2e99ad/Card A Chance Encounter 5b4be9.yaml' +- !include 'Custom_Model_Bag Survivor 2e99ad/Card Scrounge for Supplies a5e7d0.yaml' +- !include 'Custom_Model_Bag Survivor 2e99ad/Card Live and Learn 1d35ce.yaml' +- !include 'Custom_Model_Bag Survivor 2e99ad/Card Act of Desperation 970a14.yaml' +- !include 'Custom_Model_Bag Survivor 2e99ad/Card Fortuitous Discovery ec7a58.yaml' +- !include 'Custom_Model_Bag Survivor 2e99ad/Card Cunning Distraction f550ac.yaml' +- !include 'Custom_Model_Bag Survivor 2e99ad/Card Fight or Flight 0d33ae.yaml' +- !include 'Custom_Model_Bag Survivor 2e99ad/Card Hiding Spot 506474.yaml' +- !include 'Custom_Model_Bag Survivor 2e99ad/Card Improvised Weapon 6d6fc2.yaml' +- !include 'Custom_Model_Bag Survivor 2e99ad/Card Impromptu Barrier b1aa47.yaml' +- !include 'Custom_Model_Bag Survivor 2e99ad/Card Lucky! 8b361c.yaml' +- !include 'Custom_Model_Bag Survivor 2e99ad/Card Winging It 280592.yaml' +- !include 'Custom_Model_Bag Survivor 2e99ad/Card Dumb Luck 7f09f4.yaml' +- !include 'Custom_Model_Bag Survivor 2e99ad/Card Look what I found! 59fbb3.yaml' +- !include 'Custom_Model_Bag Survivor 2e99ad/Card Oops! 059ccf.yaml' +- !include 'Custom_Model_Bag Survivor 2e99ad/Card Perseverance ced615.yaml' +- !include 'Custom_Model_Bag Survivor 2e99ad/Card Trial by Fire 9b9856.yaml' +- !include 'Custom_Model_Bag Survivor 2e99ad/Card Tennessee Sour Mash 652ea3.yaml' +- !include 'Custom_Model_Bag Survivor 2e99ad/Card Meat Cleaver 121a7c.yaml' +- !include 'Custom_Model_Bag Survivor 2e99ad/Card Peter Sylvestre 7ba744.yaml' +- !include 'Custom_Model_Bag Survivor 2e99ad/Card Grisly Totem deb334.yaml' +- !include 'Custom_Model_Bag Survivor 2e99ad/Card Dark Horse a17fe6.yaml' +- !include 'Custom_Model_Bag Survivor 2e99ad/Card Moonstone d8aee7.yaml' +- !include 'Custom_Model_Bag Survivor 2e99ad/Card Dig Deep 494ff4.yaml' +- !include 'Custom_Model_Bag Survivor 2e99ad/Card Baseball Bat c5450e.yaml' +- !include 'Custom_Model_Bag Survivor 2e99ad/Card Gravedigger''s Shovel 5a3ae9.yaml' +- !include 'Custom_Model_Bag Survivor 2e99ad/Card Madame Labranche 9ede82.yaml' +- !include 'Custom_Model_Bag Survivor 2e99ad/Card Lantern 9eb1c4.yaml' +- !include 'Custom_Model_Bag Survivor 2e99ad/Card Stray Cat 7602b0.yaml' +- !include 'Custom_Model_Bag Survivor 2e99ad/Card Scavenging dbe602.yaml' +- !include 'Custom_Model_Bag Survivor 2e99ad/Card Newspaper 5e5a25.yaml' +- !include 'Custom_Model_Bag Survivor 2e99ad/Card Fire Axe 4aa750.yaml' +- !include 'Custom_Model_Bag Survivor 2e99ad/Card Rabbit''s Foot 13dd9b.yaml' +- !include 'Custom_Model_Bag Survivor 2e99ad/Card Leather Coat 7bf464.yaml' +- !include 'Custom_Model_Bag Survivor 2e99ad/Card Drawing Thin fe7433.yaml' +- !include 'Custom_Model_Bag Survivor 2e99ad/Card Cherished Keepsake 819e30.yaml' +- !include 'Custom_Model_Bag Survivor 2e99ad/Card Track Shoes f39096.yaml' +- !include 'Custom_Model_Bag Survivor 2e99ad/Card Waylay b79b02.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/952965722515960460/F43F63452854B10B416FDF3BF9EF3068E6E68F26/ + MaterialIndex: 3 + MeshURL: https://pastebin.com/raw/ALrYhQGb + NormalURL: '' + TypeIndex: 6 +Description: '' +GMNotes: '' +GUID: 2e99ad +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Model_Bag Survivor 2e99ad.ttslua' +LuaScriptState: '{"ml":{"059ccf":{"lock":false,"pos":{"x":53.2285,"y":1.3572,"z":55.6412},"rot":{"x":0.0208,"y":270.002,"z":0.0168}},"06ea61":{"lock":false,"pos":{"x":58.3839,"y":1.3692,"z":90.0904},"rot":{"x":0.0208,"y":269.9705,"z":0.0168}},"0d33ae":{"lock":false,"pos":{"x":53.2286,"y":1.3626,"z":74.0412},"rot":{"x":0.0208,"y":270.0068,"z":0.0168}},"121a7c":{"lock":false,"pos":{"x":44.5134,"y":1.3534,"z":53.3608},"rot":{"x":0.0208,"y":270.0321,"z":0.0168}},"13dd9b":{"lock":false,"pos":{"x":44.5133,"y":1.3628,"z":85.5608},"rot":{"x":0.0208,"y":269.9902,"z":0.0168}},"167af1":{"lock":false,"pos":{"x":58.3839,"y":1.3685,"z":87.7904},"rot":{"x":0.0208,"y":269.9702,"z":0.0168}},"1d35ce":{"lock":false,"pos":{"x":53.2286,"y":1.3666,"z":87.8412},"rot":{"x":0.0208,"y":270.0081,"z":0.0168}},"280592":{"lock":false,"pos":{"x":53.2286,"y":1.3592,"z":62.5412},"rot":{"x":0.0208,"y":270.03,"z":0.0168}},"462616":{"lock":false,"pos":{"x":58.3838,"y":1.3665,"z":80.8904},"rot":{"x":0.0208,"y":269.9705,"z":0.0168}},"478876":{"lock":false,"pos":{"x":53.2286,"y":1.3633,"z":76.3412},"rot":{"x":0.0208,"y":269.9727,"z":0.0168}},"4826e4":{"lock":false,"pos":{"x":58.3839,"y":1.3678,"z":85.4904},"rot":{"x":0.0208,"y":270.0567,"z":0.0168}},"494ff4":{"lock":false,"pos":{"x":44.5133,"y":1.3567,"z":64.8607},"rot":{"x":0.0208,"y":270.0347,"z":0.0168}},"4aa750":{"lock":false,"pos":{"x":44.5133,"y":1.3621,"z":83.2607},"rot":{"x":0.0208,"y":270.0216,"z":0.0168}},"506474":{"lock":false,"pos":{"x":53.2286,"y":1.3619,"z":71.7412},"rot":{"x":0.0208,"y":270.0148,"z":0.0168}},"59fbb3":{"lock":false,"pos":{"x":53.2306,"y":1.3579,"z":57.941},"rot":{"x":0.0208,"y":270.002,"z":0.0168}},"5a3ae9":{"lock":false,"pos":{"x":44.5133,"y":1.3581,"z":69.4607},"rot":{"x":0.0208,"y":269.9847,"z":0.0168}},"5b4be9":{"lock":false,"pos":{"x":53.2286,"y":1.3653,"z":83.2412},"rot":{"x":0.0208,"y":269.9686,"z":0.0168}},"5e5a25":{"lock":false,"pos":{"x":44.5133,"y":1.3614,"z":80.9607},"rot":{"x":0.0208,"y":269.9546,"z":0.0168}},"652ea3":{"lock":false,"pos":{"x":44.4975,"y":1.3527,"z":51.0713},"rot":{"x":0.0208,"y":270.0226,"z":0.0168}},"6d6fc2":{"lock":false,"pos":{"x":53.2286,"y":1.3612,"z":69.4412},"rot":{"x":0.0208,"y":270.0121,"z":0.0168}},"7602b0":{"lock":false,"pos":{"x":44.5133,"y":1.3601,"z":76.3607},"rot":{"x":0.0208,"y":269.9875,"z":0.0168}},"7ba744":{"lock":false,"pos":{"x":44.5132,"y":1.354,"z":55.6608},"rot":{"x":0.0208,"y":269.9744,"z":0.0168}},"7bf464":{"lock":false,"pos":{"x":44.5133,"y":1.3635,"z":87.8608},"rot":{"x":0.0208,"y":270.0058,"z":0.0168}},"7f09f4":{"lock":false,"pos":{"x":53.2286,"y":1.3585,"z":60.2412},"rot":{"x":0.0208,"y":270.0198,"z":0.0168}},"819e30":{"lock":false,"pos":{"x":44.5133,"y":1.3648,"z":92.4607},"rot":{"x":0.0208,"y":269.9773,"z":0.0168}},"8b361c":{"lock":false,"pos":{"x":53.2286,"y":1.3599,"z":64.8411},"rot":{"x":0.0208,"y":270.0167,"z":0.0168}},"970a14":{"lock":false,"pos":{"x":53.2286,"y":1.3673,"z":90.1413},"rot":{"x":0.0208,"y":270.0449,"z":0.0168}},"976f22":{"lock":false,"pos":{"x":53.2286,"y":1.3639,"z":78.6412},"rot":{"x":0.0208,"y":270.007,"z":0.0168}},"9b9856":{"lock":false,"pos":{"x":53.2128,"y":1.3559,"z":51.0517},"rot":{"x":0.0208,"y":269.9965,"z":0.0168}},"9eb1c4":{"lock":false,"pos":{"x":44.5133,"y":1.3594,"z":74.0607},"rot":{"x":0.0208,"y":270.0381,"z":0.0168}},"9ede82":{"lock":false,"pos":{"x":44.5133,"y":1.3588,"z":71.7607},"rot":{"x":0.0208,"y":269.9705,"z":0.0168}},"a17fe6":{"lock":false,"pos":{"x":44.5133,"y":1.3554,"z":60.2608},"rot":{"x":0.0208,"y":270.0363,"z":0.0168}},"a5e7d0":{"lock":false,"pos":{"x":53.2286,"y":1.366,"z":85.5412},"rot":{"x":0.0208,"y":270.0021,"z":0.0168}},"b1aa47":{"lock":false,"pos":{"x":53.2286,"y":1.3606,"z":67.1411},"rot":{"x":0.0208,"y":270.0178,"z":0.0168}},"b79b02":{"lock":false,"pos":{"x":53.2126,"y":1.3552,"z":48.7453},"rot":{"x":0.0208,"y":269.9989,"z":0.0168}},"b9c097":{"lock":false,"pos":{"x":58.3839,"y":1.3671,"z":83.1904},"rot":{"x":0.0208,"y":270.0324,"z":0.0168}},"bc7341":{"lock":false,"pos":{"x":58.3838,"y":1.3651,"z":76.2904},"rot":{"x":0.0208,"y":270.0189,"z":0.0168}},"bce072":{"lock":false,"pos":{"x":58.3839,"y":1.3698,"z":92.3904},"rot":{"x":0.0208,"y":270.0151,"z":0.0168}},"c5450e":{"lock":false,"pos":{"x":44.5133,"y":1.3574,"z":67.1607},"rot":{"x":0.0208,"y":269.9902,"z":0.0168}},"ced615":{"lock":false,"pos":{"x":53.2286,"y":1.3565,"z":53.3412},"rot":{"x":0.0208,"y":270.0305,"z":0.0168}},"d8aee7":{"lock":false,"pos":{"x":44.5133,"y":1.3561,"z":62.5608},"rot":{"x":0.0208,"y":270.0034,"z":0.0168}},"dbe602":{"lock":false,"pos":{"x":44.5133,"y":1.3608,"z":78.6607},"rot":{"x":0.0208,"y":269.9942,"z":0.0168}},"deb334":{"lock":false,"pos":{"x":44.5154,"y":1.3547,"z":57.9606},"rot":{"x":0.0208,"y":270.0254,"z":0.0168}},"df66c1":{"lock":false,"pos":{"x":58.3838,"y":1.3658,"z":78.5904},"rot":{"x":0.0208,"y":270.0155,"z":0.0168}},"e5c4f1":{"lock":false,"pos":{"x":53.2286,"y":1.3646,"z":80.9412},"rot":{"x":0.0208,"y":270.0033,"z":0.0168}},"ec7a58":{"lock":false,"pos":{"x":53.2286,"y":1.368,"z":92.4412},"rot":{"x":0.0208,"y":269.9896,"z":0.0168}},"f39096":{"lock":false,"pos":{"x":44.4974,"y":1.352,"z":48.764},"rot":{"x":0.0208,"y":270.0396,"z":0.0168}},"f550ac":{"lock":false,"pos":{"x":49.5629,"y":1.3666,"z":92.4528},"rot":{"x":0.0208,"y":270.0128,"z":0.0168}},"fe7433":{"lock":false,"pos":{"x":44.5133,"y":1.3641,"z":90.1608},"rot":{"x":0.0208,"y":269.9882,"z":0.0168}}}}' +MaterialIndex: -1 +MeshIndex: -1 +Name: Custom_Model_Bag +Nickname: Survivor +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 66.5782242 + posY: 1.66645622 + posZ: 54.348877 + rotX: 0.0298336055 + rotY: 270.020081 + rotZ: 0.008939287 + scaleX: 1.2 + scaleY: 1.2 + scaleZ: 1.2 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 2e99ad/Card A Chance Encounter 5b4be9.yaml b/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 2e99ad/Card A Chance Encounter 5b4be9.yaml new file mode 100644 index 000000000..9cd05e602 --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 2e99ad/Card A Chance Encounter 5b4be9.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 209712 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 5b4be9 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: A Chance Encounter +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 53.2285843 + posY: 1.36527979 + posZ: 83.24124 + rotX: 0.0208173022 + rotY: 269.968628 + rotZ: 0.0167582631 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 2e99ad/Card A Glimmer of Hope e5c4f1.yaml b/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 2e99ad/Card A Glimmer of Hope e5c4f1.yaml new file mode 100644 index 000000000..fa801b746 --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 2e99ad/Card A Glimmer of Hope e5c4f1.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Blessed. Fortune. +GMNotes: '' +GUID: e5c4f1 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: A Glimmer of Hope +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 53.22858 + posY: 1.36460662 + posZ: 80.94124 + rotX: 0.020806985 + rotY: 270.0033 + rotZ: 0.0167710483 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 2e99ad/Card Able Bodied bce072.yaml b/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 2e99ad/Card Able Bodied bce072.yaml new file mode 100644 index 000000000..187c52f1b --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 2e99ad/Card Able Bodied bce072.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: bce072 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Able Bodied +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 58.3838539 + posY: 1.36983013 + posZ: 92.39038 + rotX: 0.0208036136 + rotY: 270.015076 + rotZ: 0.0167752 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 2e99ad/Card Act of Desperation 970a14.yaml b/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 2e99ad/Card Act of Desperation 970a14.yaml new file mode 100644 index 000000000..884069de4 --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 2e99ad/Card Act of Desperation 970a14.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 970a14 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Act of Desperation +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 53.22858 + posY: 1.36729944 + posZ: 90.14125 + rotX: 0.0207950547 + rotY: 270.044861 + rotZ: 0.01678613 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 2e99ad/Card Bait and Switch 478876.yaml b/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 2e99ad/Card Bait and Switch 478876.yaml new file mode 100644 index 000000000..e523b47ee --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 2e99ad/Card Bait and Switch 478876.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 209709 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: '478876' +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Bait and Switch +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 53.2285728 + posY: 1.36326 + posZ: 76.34123 + rotX: 0.02081603 + rotY: 269.9727 + rotZ: 0.0167598184 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 2e99ad/Card Baseball Bat c5450e.yaml b/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 2e99ad/Card Baseball Bat c5450e.yaml new file mode 100644 index 000000000..cb8618a7c --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 2e99ad/Card Baseball Bat c5450e.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 209730 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: c5450e +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Baseball Bat +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.5133171 + posY: 1.35740757 + posZ: 67.1607056 + rotX: 0.0208109468 + rotY: 269.990173 + rotZ: 0.0167662 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 2e99ad/Card Belly of the Beast 976f22.yaml b/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 2e99ad/Card Belly of the Beast 976f22.yaml new file mode 100644 index 000000000..41742129d --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 2e99ad/Card Belly of the Beast 976f22.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 976f22 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Belly of the Beast +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 53.2285728 + posY: 1.36393321 + posZ: 78.6412354 + rotX: 0.0208059642 + rotY: 270.007 + rotZ: 0.016772246 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 2e99ad/Card Cherished Keepsake 819e30.yaml b/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 2e99ad/Card Cherished Keepsake 819e30.yaml new file mode 100644 index 000000000..84d2bc2eb --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 2e99ad/Card Cherished Keepsake 819e30.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 209721 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 819e30 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Cherished Keepsake +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.51333 + posY: 1.36481321 + posZ: 92.46075 + rotX: 0.0208147243 + rotY: 269.9773 + rotZ: 0.0167615749 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 2e99ad/Card Cunning Distraction f550ac.yaml b/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 2e99ad/Card Cunning Distraction f550ac.yaml new file mode 100644 index 000000000..1ca70f2d7 --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 2e99ad/Card Cunning Distraction f550ac.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 209719 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: f550ac +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Cunning Distraction +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 49.5628624 + posY: 1.36664486 + posZ: 92.4528046 + rotX: 0.020804327 + rotY: 270.012817 + rotZ: 0.0167745557 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 2e99ad/Card Dark Horse a17fe6.yaml b/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 2e99ad/Card Dark Horse a17fe6.yaml new file mode 100644 index 000000000..86de9c466 --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 2e99ad/Card Dark Horse a17fe6.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 209733 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: a17fe6 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Dark Horse +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.51332 + posY: 1.35538781 + posZ: 60.260788 + rotX: 0.0207996275 + rotY: 270.036346 + rotZ: 0.01678592 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 2e99ad/Card Dig Deep 494ff4.yaml b/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 2e99ad/Card Dig Deep 494ff4.yaml new file mode 100644 index 000000000..27e92e3eb --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 2e99ad/Card Dig Deep 494ff4.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 494ff4 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Dig Deep +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.5133171 + posY: 1.3567344 + posZ: 64.8606949 + rotX: 0.02079812 + rotY: 270.034668 + rotZ: 0.0167824589 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 2e99ad/Card Drawing Thin fe7433.yaml b/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 2e99ad/Card Drawing Thin fe7433.yaml new file mode 100644 index 000000000..85150824e --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 2e99ad/Card Drawing Thin fe7433.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: fe7433 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Drawing Thin +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.5133247 + posY: 1.36414 + posZ: 90.16076 + rotX: 0.0208115522 + rotY: 269.9882 + rotZ: 0.0167653877 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 2e99ad/Card Dumb Luck 7f09f4.yaml b/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 2e99ad/Card Dumb Luck 7f09f4.yaml new file mode 100644 index 000000000..b740a6992 --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 2e99ad/Card Dumb Luck 7f09f4.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 209714 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 7f09f4 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Dumb Luck +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 53.2285728 + posY: 1.35854733 + posZ: 60.2411957 + rotX: 0.0208042189 + rotY: 270.019836 + rotZ: 0.0167798847 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 2e99ad/Card Fight or Flight 0d33ae.yaml b/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 2e99ad/Card Fight or Flight 0d33ae.yaml new file mode 100644 index 000000000..9af1a738b --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 2e99ad/Card Fight or Flight 0d33ae.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 209713 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 0d33ae +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Fight or Flight +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 53.2285767 + posY: 1.36258686 + posZ: 74.04124 + rotX: 0.0208061 + rotY: 270.006775 + rotZ: 0.0167721584 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 2e99ad/Card Fire Axe 4aa750.yaml b/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 2e99ad/Card Fire Axe 4aa750.yaml new file mode 100644 index 000000000..ac0319486 --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 2e99ad/Card Fire Axe 4aa750.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 4aa750 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Fire Axe +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.5133324 + posY: 1.36212027 + posZ: 83.26075 + rotX: 0.0208017249 + rotY: 270.021637 + rotZ: 0.0167775843 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 2e99ad/Card Fortuitous Discovery ec7a58.yaml b/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 2e99ad/Card Fortuitous Discovery ec7a58.yaml new file mode 100644 index 000000000..9317cf602 --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 2e99ad/Card Fortuitous Discovery ec7a58.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: ec7a58 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Fortuitous Discovery +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 53.22858 + posY: 1.36797273 + posZ: 92.44124 + rotX: 0.0208109841 + rotY: 269.9896 + rotZ: 0.0167660527 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 2e99ad/Card Gravedigger's Shovel 5a3ae9.yaml b/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 2e99ad/Card Gravedigger's Shovel 5a3ae9.yaml new file mode 100644 index 000000000..d5602a8dd --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 2e99ad/Card Gravedigger's Shovel 5a3ae9.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 5a3ae9 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Gravedigger's Shovel +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.51332 + posY: 1.35808086 + posZ: 69.46074 + rotX: 0.0208125655 + rotY: 269.98468 + rotZ: 0.0167643186 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 2e99ad/Card Grisly Totem deb334.yaml b/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 2e99ad/Card Grisly Totem deb334.yaml new file mode 100644 index 000000000..aef73c610 --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 2e99ad/Card Grisly Totem deb334.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: deb334 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Grisly Totem +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.515358 + posY: 1.35471523 + posZ: 57.9605675 + rotX: 0.0208029579 + rotY: 270.025421 + rotZ: 0.0167820118 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 2e99ad/Card Hiding Spot 506474.yaml b/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 2e99ad/Card Hiding Spot 506474.yaml new file mode 100644 index 000000000..5938ea03a --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 2e99ad/Card Hiding Spot 506474.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 209708 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: '506474' +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Hiding Spot +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 53.2285767 + posY: 1.36191356 + posZ: 71.7412338 + rotX: 0.0208038744 + rotY: 270.0148 + rotZ: 0.0167750586 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 2e99ad/Card Impromptu Barrier b1aa47.yaml b/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 2e99ad/Card Impromptu Barrier b1aa47.yaml new file mode 100644 index 000000000..68a11767d --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 2e99ad/Card Impromptu Barrier b1aa47.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 443703 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '4437': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025946328/561232524C8EAA4B4371B28652F78969E6ED6FFB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: b1aa47 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Impromptu Barrier +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 53.22857 + posY: 1.36056709 + posZ: 67.14111 + rotX: 0.0208028182 + rotY: 270.017761 + rotZ: 0.016776124 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 2e99ad/Card Improvised Weapon 6d6fc2.yaml b/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 2e99ad/Card Improvised Weapon 6d6fc2.yaml new file mode 100644 index 000000000..b073592dc --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 2e99ad/Card Improvised Weapon 6d6fc2.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 209711 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 6d6fc2 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Improvised Weapon +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 53.2285728 + posY: 1.36124027 + posZ: 69.44123 + rotX: 0.0208043754 + rotY: 270.0121 + rotZ: 0.0167742837 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 2e99ad/Card Lantern 9eb1c4.yaml b/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 2e99ad/Card Lantern 9eb1c4.yaml new file mode 100644 index 000000000..7daba5128 --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 2e99ad/Card Lantern 9eb1c4.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 209727 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 9eb1c4 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Lantern +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.51332 + posY: 1.35942733 + posZ: 74.0607452 + rotX: 0.0207967814 + rotY: 270.0381 + rotZ: 0.0167835969 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 2e99ad/Card Last Chance 167af1.yaml b/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 2e99ad/Card Last Chance 167af1.yaml new file mode 100644 index 000000000..1c4dbfa4b --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 2e99ad/Card Last Chance 167af1.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 209704 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 167af1 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Last Chance +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 58.3838539 + posY: 1.36848366 + posZ: 87.79039 + rotX: 0.0208169 + rotY: 269.970245 + rotZ: 0.0167588927 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 2e99ad/Card Leather Coat 7bf464.yaml b/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 2e99ad/Card Leather Coat 7bf464.yaml new file mode 100644 index 000000000..bc204ada8 --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 2e99ad/Card Leather Coat 7bf464.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 209720 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 7bf464 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Leather Coat +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.51333 + posY: 1.36346686 + posZ: 87.8607559 + rotX: 0.020806279 + rotY: 270.0058 + rotZ: 0.0167720132 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 2e99ad/Card Live and Learn 1d35ce.yaml b/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 2e99ad/Card Live and Learn 1d35ce.yaml new file mode 100644 index 000000000..cf34f6b95 --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 2e99ad/Card Live and Learn 1d35ce.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 209707 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 1d35ce +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Live and Learn +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 53.22858 + posY: 1.36662626 + posZ: 87.84125 + rotX: 0.0208057668 + rotY: 270.0081 + rotZ: 0.0167727452 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 2e99ad/Card Look what I found! 59fbb3.yaml b/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 2e99ad/Card Look what I found! 59fbb3.yaml new file mode 100644 index 000000000..ee75bf051 --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 2e99ad/Card Look what I found! 59fbb3.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 59fbb3 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '"Look what I found!"' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 53.23061 + posY: 1.35787463 + posZ: 57.9409752 + rotX: 0.0208099261 + rotY: 270.002 + rotZ: 0.0167734362 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 2e99ad/Card Lucky! 8b361c.yaml b/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 2e99ad/Card Lucky! 8b361c.yaml new file mode 100644 index 000000000..429775607 --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 2e99ad/Card Lucky! 8b361c.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 8b361c +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Lucky! +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 53.22857 + posY: 1.3598938 + posZ: 64.8411 + rotX: 0.0208030771 + rotY: 270.0167 + rotZ: 0.0167756844 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 2e99ad/Card Madame Labranche 9ede82.yaml b/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 2e99ad/Card Madame Labranche 9ede82.yaml new file mode 100644 index 000000000..29d492e1e --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 2e99ad/Card Madame Labranche 9ede82.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 209728 +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 + UniqueBack: false +Description: Mysterious Benefactress +GMNotes: '' +GUID: 9ede82 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Madame Labranche +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.5133247 + posY: 1.35875416 + posZ: 71.76074 + rotX: 0.0208167341 + rotY: 269.97052 + rotZ: 0.0167591125 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 2e99ad/Card Meat Cleaver 121a7c.yaml b/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 2e99ad/Card Meat Cleaver 121a7c.yaml new file mode 100644 index 000000000..716c793bc --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 2e99ad/Card Meat Cleaver 121a7c.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 121a7c +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Meat Cleaver +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.5133629 + posY: 1.35336816 + posZ: 53.36077 + rotX: 0.02080083 + rotY: 270.032135 + rotZ: 0.0167844221 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 2e99ad/Card Moonstone d8aee7.yaml b/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 2e99ad/Card Moonstone d8aee7.yaml new file mode 100644 index 000000000..5b0e0484f --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 2e99ad/Card Moonstone d8aee7.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Item. Relic. Dreamlands. +GMNotes: '' +GUID: d8aee7 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Moonstone +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.51332 + posY: 1.3560611 + posZ: 62.5607872 + rotX: 0.0208094884 + rotY: 270.0034 + rotZ: 0.0167740565 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 2e99ad/Card Newspaper 5e5a25.yaml b/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 2e99ad/Card Newspaper 5e5a25.yaml new file mode 100644 index 000000000..fedea4b29 --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 2e99ad/Card Newspaper 5e5a25.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 209726 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 5e5a25 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Newspaper +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.51333 + posY: 1.3614471 + posZ: 80.96075 + rotX: 0.02082129 + rotY: 269.954559 + rotZ: 0.0167532153 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 2e99ad/Card Not without a fight! 06ea61.yaml b/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 2e99ad/Card Not without a fight! 06ea61.yaml new file mode 100644 index 000000000..21fef3b94 --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 2e99ad/Card Not without a fight! 06ea61.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 06ea61 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '"Not without a fight!"' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 58.3838539 + posY: 1.36915684 + posZ: 90.09039 + rotX: 0.0208166912 + rotY: 269.970459 + rotZ: 0.016758956 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 2e99ad/Card Oops! 059ccf.yaml b/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 2e99ad/Card Oops! 059ccf.yaml new file mode 100644 index 000000000..baf37bf47 --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 2e99ad/Card Oops! 059ccf.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 209715 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 059ccf +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Oops! +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 53.2284851 + posY: 1.35720074 + posZ: 55.6411972 + rotX: 0.0208099317 + rotY: 270.002 + rotZ: 0.0167735387 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 2e99ad/Card Perseverance ced615.yaml b/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 2e99ad/Card Perseverance ced615.yaml new file mode 100644 index 000000000..3aa255ab0 --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 2e99ad/Card Perseverance ced615.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 209717 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: ced615 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Perseverance +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 53.2286148 + posY: 1.35652757 + posZ: 53.34118 + rotX: 0.0208014026 + rotY: 270.030548 + rotZ: 0.0167837571 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 2e99ad/Card Peter Sylvestre 7ba744.yaml b/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 2e99ad/Card Peter Sylvestre 7ba744.yaml new file mode 100644 index 000000000..6ebe7d171 --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 2e99ad/Card Peter Sylvestre 7ba744.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 209732 +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 + UniqueBack: false +Description: Big Man on Campus +GMNotes: '' +GUID: 7ba744 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Peter Sylvestre +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.5132332 + posY: 1.35404134 + posZ: 55.66079 + rotX: 0.0208176561 + rotY: 269.974426 + rotZ: 0.0167634245 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 2e99ad/Card Rabbit's Foot 13dd9b.yaml b/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 2e99ad/Card Rabbit's Foot 13dd9b.yaml new file mode 100644 index 000000000..6b9513c7a --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 2e99ad/Card Rabbit's Foot 13dd9b.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 209723 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 13dd9b +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Rabbit's Foot +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.5133324 + posY: 1.36279356 + posZ: 85.56075 + rotX: 0.0208109133 + rotY: 269.990173 + rotZ: 0.0167663246 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 2e99ad/Card Resourceful 4826e4.yaml b/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 2e99ad/Card Resourceful 4826e4.yaml new file mode 100644 index 000000000..40b8c5ae9 --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 2e99ad/Card Resourceful 4826e4.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 4826e4 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Resourceful +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 58.38386 + posY: 1.36781049 + posZ: 85.49039 + rotX: 0.0207915045 + rotY: 270.0567 + rotZ: 0.0167903733 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 2e99ad/Card Rise to the Occasion b9c097.yaml b/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 2e99ad/Card Rise to the Occasion b9c097.yaml new file mode 100644 index 000000000..796b18a41 --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 2e99ad/Card Rise to the Occasion b9c097.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 209701 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: b9c097 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Rise to the Occasion +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 58.38386 + posY: 1.36713707 + posZ: 83.1903839 + rotX: 0.0207988024 + rotY: 270.0324 + rotZ: 0.0167815126 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 2e99ad/Card Scavenging dbe602.yaml b/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 2e99ad/Card Scavenging dbe602.yaml new file mode 100644 index 000000000..81d58a78b --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 2e99ad/Card Scavenging dbe602.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 209722 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: dbe602 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Scavenging +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.51332 + posY: 1.36077392 + posZ: 78.66074 + rotX: 0.0208094139 + rotY: 269.9942 + rotZ: 0.0167675521 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 2e99ad/Card Scrounge for Supplies a5e7d0.yaml b/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 2e99ad/Card Scrounge for Supplies a5e7d0.yaml new file mode 100644 index 000000000..d7f854d02 --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 2e99ad/Card Scrounge for Supplies a5e7d0.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 380229 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: a5e7d0 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Scrounge for Supplies +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 53.2285843 + posY: 1.365953 + posZ: 85.5412445 + rotX: 0.0208077729 + rotY: 270.002075 + rotZ: 0.016770523 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 2e99ad/Card Stray Cat 7602b0.yaml b/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 2e99ad/Card Stray Cat 7602b0.yaml new file mode 100644 index 000000000..05072e195 --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 2e99ad/Card Stray Cat 7602b0.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 209724 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 7602b0 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Stray Cat +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.51332 + posY: 1.36010051 + posZ: 76.36074 + rotX: 0.0208116025 + rotY: 269.987549 + rotZ: 0.0167651139 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 2e99ad/Card Stunning Blow 462616.yaml b/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 2e99ad/Card Stunning Blow 462616.yaml new file mode 100644 index 000000000..2c5dc1049 --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 2e99ad/Card Stunning Blow 462616.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: '462616' +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Stunning Blow +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 58.3838425 + posY: 1.36646378 + posZ: 80.89037 + rotX: 0.020818647 + rotY: 269.970581 + rotZ: 0.01676287 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 2e99ad/Card Survival Instinct df66c1.yaml b/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 2e99ad/Card Survival Instinct df66c1.yaml new file mode 100644 index 000000000..b0a4f250f --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 2e99ad/Card Survival Instinct df66c1.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: df66c1 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Survival Instinct +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 58.3838463 + posY: 1.36579061 + posZ: 78.59038 + rotX: 0.0208036844 + rotY: 270.0155 + rotZ: 0.0167753976 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 2e99ad/Card Take Heart bc7341.yaml b/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 2e99ad/Card Take Heart bc7341.yaml new file mode 100644 index 000000000..6bc34f5ad --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 2e99ad/Card Take Heart bc7341.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 209706 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: bc7341 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Take Heart +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 58.3838463 + posY: 1.36511743 + posZ: 76.2903748 + rotX: 0.0208025742 + rotY: 270.01886 + rotZ: 0.0167766642 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 2e99ad/Card Tennessee Sour Mash 652ea3.yaml b/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 2e99ad/Card Tennessee Sour Mash 652ea3.yaml new file mode 100644 index 000000000..6db6c3edb --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 2e99ad/Card Tennessee Sour Mash 652ea3.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 652ea3 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Tennessee Sour Mash +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.4975433 + posY: 1.35269225 + posZ: 51.07133 + rotX: 0.020803567 + rotY: 270.022552 + rotZ: 0.0167808626 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 2e99ad/Card Track Shoes f39096.yaml b/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 2e99ad/Card Track Shoes f39096.yaml new file mode 100644 index 000000000..d980778c7 --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 2e99ad/Card Track Shoes f39096.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: f39096 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Track Shoes +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.49737 + posY: 1.35201681 + posZ: 48.7640038 + rotX: 0.020798672 + rotY: 270.039642 + rotZ: 0.016787136 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 2e99ad/Card Trial by Fire 9b9856.yaml b/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 2e99ad/Card Trial by Fire 9b9856.yaml new file mode 100644 index 000000000..309b38a18 --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 2e99ad/Card Trial by Fire 9b9856.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 9b9856 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Trial by Fire +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 53.2127953 + posY: 1.35585165 + posZ: 51.05174 + rotX: 0.0208112746 + rotY: 269.996521 + rotZ: 0.0167714879 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 2e99ad/Card Waylay b79b02.yaml b/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 2e99ad/Card Waylay b79b02.yaml new file mode 100644 index 000000000..263b077f1 --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 2e99ad/Card Waylay b79b02.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 209718 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: b79b02 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Waylay +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 53.212635 + posY: 1.35517645 + posZ: 48.74529 + rotX: 0.0208105054 + rotY: 269.9989 + rotZ: 0.0167724844 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 2e99ad/Card Winging It 280592.yaml b/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 2e99ad/Card Winging It 280592.yaml new file mode 100644 index 000000000..3f503153a --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor 9c814b/Custom_Model_Bag Survivor 2e99ad/Card Winging It 280592.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 443701 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '4437': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025946328/561232524C8EAA4B4371B28652F78969E6ED6FFB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: '280592' +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Winging It +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 53.2285728 + posY: 1.3592205 + posZ: 62.5411949 + rotX: 0.0208014473 + rotY: 270.029968 + rotZ: 0.01678351 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor c02830.ttslua b/unpacked/Custom_Model_Bag Survivor c02830.ttslua new file mode 100644 index 000000000..857093fb8 --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor c02830.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,0,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 + 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=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,0,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,0,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,0,0}, height=350, width=750, + 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}, rotation={0,0,0}, height=350, width=800, + font_size=250, color={0,0,0}, font_color={1,1,1} + }) +-- self.createButton({ +-- label="Setup", click_function="buttonClick_setup", function_owner=self, +-- position={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.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 \ No newline at end of file diff --git a/unpacked/Custom_Model_Bag Survivor c02830.yaml b/unpacked/Custom_Model_Bag Survivor c02830.yaml new file mode 100644 index 000000000..950875b7d --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor c02830.yaml @@ -0,0 +1,103 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +ContainedObjects: +- !include 'Custom_Model_Bag Survivor c02830/Card Brute Force (1) 7fe153.yaml' +- !include 'Custom_Model_Bag Survivor c02830/Card Expeditious Retreat (1) ea8324.yaml' +- !include 'Custom_Model_Bag Survivor c02830/Card Sharp Vision (1) 4d9a97.yaml' +- !include 'Custom_Model_Bag Survivor c02830/Card Survival Instinct (2) 1c3b8f.yaml' +- !include 'Custom_Model_Bag Survivor c02830/Card Stroke of Luck (2) bce471.yaml' +- !include 'Custom_Model_Bag Survivor c02830/Card Rise to the Occasion (3) 0b9f53.yaml' +- !include 'Custom_Model_Bag Survivor c02830/Card Lucky! (2) 002455.yaml' +- !include 'Custom_Model_Bag Survivor c02830/Card A Chance Encounter (2) 6842aa.yaml' +- !include 'Custom_Model_Bag Survivor c02830/Card Flare (1) 910b12.yaml' +- !include 'Custom_Model_Bag Survivor c02830/Card A Test of Will (1) 2d9585.yaml' +- !include 'Custom_Model_Bag Survivor c02830/Card Lure (1) 76b07c.yaml' +- !include 'Custom_Model_Bag Survivor c02830/Card Devil''s Luck (1) ad6d9d.yaml' +- !include 'Custom_Model_Bag Survivor c02830/Card Lure (2) ad0934.yaml' +- !include 'Custom_Model_Bag Survivor c02830/Card Close Call (2) 61d1e5.yaml' +- !include 'Custom_Model_Bag Survivor c02830/Card Fortune or Fate (2) 5010c5.yaml' +- !include 'Custom_Model_Bag Survivor c02830/Card Oops! (2) 9869ee.yaml' +- !include 'Custom_Model_Bag Survivor c02830/Card Snare Trap (2) 234fae.yaml' +- !include 'Custom_Model_Bag Survivor c02830/Card Against All Odds (2) b633d0.yaml' +- !include 'Custom_Model_Bag Survivor c02830/Card Nothing Left to Lose (3) 6a8a9f.yaml' +- !include 'Custom_Model_Bag Survivor c02830/Card Bait and Switch (3) 50acc5.yaml' +- !include 'Custom_Model_Bag Survivor c02830/Card Alter Fate (3) 5a1991.yaml' +- !include 'Custom_Model_Bag Survivor c02830/Card Infighting (3) 36bc5b.yaml' +- !include 'Custom_Model_Bag Survivor c02830/Card Eucatastrophe (3) 9dcdd3.yaml' +- !include 'Custom_Model_Bag Survivor c02830/Card True Survivor (3) 6a04c3.yaml' +- !include 'Custom_Model_Bag Survivor c02830/Card Will to Survive (3) ac7db0.yaml' +- !include 'Custom_Model_Bag Survivor c02830/Card Try and Try Again (3) b8f774.yaml' +- !include 'Custom_Model_Bag Survivor c02830/Card Rabbit''s Foot (3) 00c4cc.yaml' +- !include 'Custom_Model_Bag Survivor c02830/Card Nightmare Bauble (3) 1c8915.yaml' +- !include 'Custom_Model_Bag Survivor c02830/Card Scrapper (3) c6c157.yaml' +- !include 'Custom_Model_Bag Survivor c02830/Card Peter Sylvestre (2) 584914.yaml' +- !include 'Custom_Model_Bag Survivor c02830/Card Cornered (2) a5fc16.yaml' +- !include 'Custom_Model_Bag Survivor c02830/Card Scavenging (2) cda2e6.yaml' +- !include 'Custom_Model_Bag Survivor c02830/Card Newspaper (2) ea2337.yaml' +- !include 'Custom_Model_Bag Survivor c02830/Card Lantern (2) b09d6f.yaml' +- !include 'Custom_Model_Bag Survivor c02830/Card Gravedigger''s Shovel (2) e64769.yaml' +- !include 'Custom_Model_Bag Survivor c02830/Card Dig Deep (2) a06013.yaml' +- !include 'Custom_Model_Bag Survivor c02830/Card Aquinnah (1) 630d65.yaml' +- !include 'Custom_Model_Bag Survivor c02830/Card Yaotl (1) 9f9e58.yaml' +- !include 'Custom_Model_Bag Survivor c02830/Card Miss Doyle (1) b337ac.yaml' +- !include 'Custom_Model_Bag Survivor c02830/Card Jessica Hyde (1) a1c47b.yaml' +- !include 'Custom_Model_Bag Survivor c02830/Card Five of Pentacles (1) 9d09f0.yaml' +- !include 'Custom_Model_Bag Survivor c02830/Card Aquinnah (3) bf6a7b.yaml' +- !include 'Custom_Model_Bag Survivor c02830/Card Old Hunting Rifle (3) f69d7d.yaml' +- !include 'Custom_Model_Bag Survivor c02830/Card Fire Extinguisher (1) dd0b79.yaml' +- !include 'Custom_Model_Bag Survivor c02830/Card Try and Try Again (1) 35bbe8.yaml' +- !include 'Custom_Model_Bag Survivor c02830/Card Tennessee Sour Mash (3) 8cdf20.yaml' +- !include 'Custom_Model_Bag Survivor c02830/Card Guiding Spirit (1) 13ae70.yaml' +- !include 'Custom_Model_Bag Survivor c02830/Card Grisly Totem (3) 4a5655.yaml' +- !include 'Custom_Model_Bag Survivor c02830/Card On Your Own (3) ce1a7d.yaml' +- !include 'Custom_Model_Bag Survivor c02830/Card Plucky (1) 2a37f3.yaml' +- !include 'Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor d185bf.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/952965722515960460/F43F63452854B10B416FDF3BF9EF3068E6E68F26/ + MaterialIndex: 3 + MeshURL: https://pastebin.com/raw/ALrYhQGb + NormalURL: '' + TypeIndex: 6 +Description: '' +GMNotes: '' +GUID: c02830 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: true +LuaScript: !include 'Custom_Model_Bag Survivor c02830.ttslua' +LuaScriptState: '{"ml":{"002455":{"lock":false,"pos":{"x":52.9444,"y":1.3641,"z":-58.9204},"rot":{"x":0.0208,"y":269.9996,"z":0.0168}},"00c4cc":{"lock":false,"pos":{"x":44.2134,"y":1.3522,"z":-88.7902},"rot":{"x":0.0208,"y":269.9998,"z":0.0168}},"0b9f53":{"lock":false,"pos":{"x":58.0999,"y":1.366,"z":-58.9711},"rot":{"x":0.0208,"y":269.9997,"z":0.0168}},"13ae70":{"lock":false,"pos":{"x":44.2292,"y":1.3637,"z":-49.7009},"rot":{"x":0.0208,"y":269.9997,"z":0.0168}},"1c3b8f":{"lock":false,"pos":{"x":58.0999,"y":1.3673,"z":-54.3711},"rot":{"x":0.0208,"y":270.0042,"z":0.0168}},"1c8915":{"lock":false,"pos":{"x":44.2292,"y":1.3529,"z":-86.5007},"rot":{"x":0.0208,"y":269.9932,"z":0.0168}},"234fae":{"lock":false,"pos":{"x":52.9444,"y":1.3608,"z":-70.4203},"rot":{"x":0.0208,"y":269.9998,"z":0.0168}},"2a37f3":{"lock":false,"pos":{"x":44.2292,"y":1.3643,"z":-47.4009},"rot":{"x":0.0208,"y":269.9998,"z":0.0168}},"2d9585":{"lock":false,"pos":{"x":52.9444,"y":1.3662,"z":-52.0204},"rot":{"x":0.0208,"y":269.9997,"z":0.0168}},"35bbe8":{"lock":false,"pos":{"x":44.2292,"y":1.363,"z":-52.0009},"rot":{"x":0.0208,"y":269.9889,"z":0.0168}},"36bc5b":{"lock":false,"pos":{"x":52.9465,"y":1.3574,"z":-81.9205},"rot":{"x":0.0208,"y":269.9998,"z":0.0168}},"4a5655":{"lock":false,"pos":{"x":40.6761,"y":1.3624,"z":-49.713},"rot":{"x":0.0208,"y":269.9997,"z":0.0168}},"4d9a97":{"lock":false,"pos":{"x":58.0999,"y":1.368,"z":-52.071},"rot":{"x":0.0208,"y":270.0076,"z":0.0168}},"5010c5":{"lock":false,"pos":{"x":52.9444,"y":1.3621,"z":-65.8203},"rot":{"x":0.0208,"y":269.9997,"z":0.0168}},"50acc5":{"lock":false,"pos":{"x":52.9445,"y":1.3588,"z":-77.3203},"rot":{"x":0.0208,"y":269.9997,"z":0.0168}},"584914":{"lock":false,"pos":{"x":44.2312,"y":1.3542,"z":-81.901},"rot":{"x":0.0208,"y":269.9997,"z":0.0168}},"5a1991":{"lock":false,"pos":{"x":52.9445,"y":1.3581,"z":-79.6203},"rot":{"x":0.0208,"y":269.9998,"z":0.0168}},"61d1e5":{"lock":false,"pos":{"x":52.9444,"y":1.3628,"z":-63.5204},"rot":{"x":0.0208,"y":269.9997,"z":0.0168}},"630d65":{"lock":false,"pos":{"x":44.2292,"y":1.359,"z":-65.8008},"rot":{"x":0.0208,"y":269.9899,"z":0.0168}},"6842aa":{"lock":false,"pos":{"x":52.9444,"y":1.3648,"z":-56.6204},"rot":{"x":0.0208,"y":269.9997,"z":0.0168}},"6a04c3":{"lock":false,"pos":{"x":52.9445,"y":1.3561,"z":-86.5203},"rot":{"x":0.0208,"y":269.9997,"z":0.0168}},"6a8a9f":{"lock":false,"pos":{"x":52.9445,"y":1.3594,"z":-75.0204},"rot":{"x":0.0208,"y":269.9985,"z":0.0168}},"76b07c":{"lock":false,"pos":{"x":52.9444,"y":1.3668,"z":-49.7204},"rot":{"x":0.0208,"y":269.9997,"z":0.0168}},"7fe153":{"lock":false,"pos":{"x":58.0992,"y":1.3694,"z":-47.4416},"rot":{"x":0.0208,"y":270.0088,"z":0.0168}},"8cdf20":{"lock":false,"pos":{"x":40.6761,"y":1.3617,"z":-52.013},"rot":{"x":0.0208,"y":269.9999,"z":0.0168}},"910b12":{"lock":false,"pos":{"x":52.9444,"y":1.3655,"z":-54.3204},"rot":{"x":0.0208,"y":269.9997,"z":0.0168}},"9869ee":{"lock":false,"pos":{"x":52.9444,"y":1.3614,"z":-68.1203},"rot":{"x":0.0208,"y":269.9996,"z":0.0168}},"9d09f0":{"lock":false,"pos":{"x":44.2292,"y":1.3617,"z":-56.6009},"rot":{"x":0.0208,"y":269.9997,"z":0.0168}},"9dcdd3":{"lock":false,"pos":{"x":52.9444,"y":1.3567,"z":-84.2203},"rot":{"x":0.0208,"y":269.9998,"z":0.0168}},"9f9e58":{"lock":false,"pos":{"x":44.2292,"y":1.3596,"z":-63.5009},"rot":{"x":0.0208,"y":269.9999,"z":0.0168}},"a06013":{"lock":false,"pos":{"x":44.2292,"y":1.3583,"z":-68.1008},"rot":{"x":0.0208,"y":270.0028,"z":0.0168}},"a1c47b":{"lock":false,"pos":{"x":44.2292,"y":1.361,"z":-58.9009},"rot":{"x":0.0208,"y":270.0039,"z":0.0168}},"a5fc16":{"lock":false,"pos":{"x":44.2292,"y":1.3549,"z":-79.6007},"rot":{"x":0.0208,"y":269.9997,"z":0.0168}},"ac7db0":{"lock":false,"pos":{"x":52.9287,"y":1.3554,"z":-88.8098},"rot":{"x":0.0208,"y":269.9998,"z":0.0168}},"ad0934":{"lock":false,"pos":{"x":52.9444,"y":1.3635,"z":-61.2204},"rot":{"x":0.0208,"y":269.9999,"z":0.0168}},"ad6d9d":{"lock":false,"pos":{"x":52.9444,"y":1.3675,"z":-47.4204},"rot":{"x":0.0208,"y":269.9997,"z":0.0168}},"b09d6f":{"lock":false,"pos":{"x":44.2293,"y":1.3569,"z":-72.7008},"rot":{"x":0.0208,"y":270.0006,"z":0.0168}},"b337ac":{"lock":false,"pos":{"x":44.229,"y":1.3603,"z":-61.2008},"rot":{"x":0.0208,"y":269.9996,"z":0.0168}},"b633d0":{"lock":false,"pos":{"x":52.9444,"y":1.3601,"z":-72.7204},"rot":{"x":0.0208,"y":269.9998,"z":0.0168}},"b8f774":{"lock":false,"pos":{"x":44.2133,"y":1.3516,"z":-91.0975},"rot":{"x":0.0208,"y":269.9996,"z":0.0168}},"bce471":{"lock":false,"pos":{"x":58.0999,"y":1.3667,"z":-56.6711},"rot":{"x":0.0208,"y":269.9997,"z":0.0168}},"bf6a7b":{"lock":false,"pos":{"x":40.6761,"y":1.3604,"z":-56.613},"rot":{"x":0.0208,"y":269.9997,"z":0.0168}},"c6c157":{"lock":false,"pos":{"x":44.2291,"y":1.3536,"z":-84.2007},"rot":{"x":0.0208,"y":269.9997,"z":0.0168}},"cda2e6":{"lock":false,"pos":{"x":44.2292,"y":1.3556,"z":-77.3007},"rot":{"x":0.0208,"y":269.9709,"z":0.0168}},"ce1a7d":{"lock":false,"pos":{"x":40.6761,"y":1.3631,"z":-47.413},"rot":{"x":0.0208,"y":269.9998,"z":0.0168}},"dd0b79":{"lock":false,"pos":{"x":44.2292,"y":1.3623,"z":-54.3009},"rot":{"x":0.0208,"y":270.0038,"z":0.0168}},"e64769":{"lock":false,"pos":{"x":44.2293,"y":1.3576,"z":-70.4008},"rot":{"x":0.0208,"y":270.0005,"z":0.0168}},"ea2337":{"lock":false,"pos":{"x":44.2292,"y":1.3563,"z":-75.0008},"rot":{"x":0.0208,"y":269.9997,"z":0.0168}},"ea8324":{"lock":false,"pos":{"x":58.0999,"y":1.3687,"z":-49.771},"rot":{"x":0.0208,"y":270.0185,"z":0.0168}},"f69d7d":{"lock":false,"pos":{"x":40.6761,"y":1.361,"z":-54.313},"rot":{"x":0.0208,"y":269.9997,"z":0.0168}}}}' +MaterialIndex: -1 +MeshIndex: -1 +Name: Custom_Model_Bag +Nickname: Survivor +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 66.30849 + posY: 1.40949559 + posZ: -85.51615 + rotX: 0.02080528 + rotY: 270.019043 + rotZ: 0.016777534 + scaleX: 1.2 + scaleY: 1.2 + scaleZ: 1.2 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor c02830/Card A Chance Encounter (2) 6842aa.yaml b/unpacked/Custom_Model_Bag Survivor c02830/Card A Chance Encounter (2) 6842aa.yaml new file mode 100644 index 000000000..413adc8ca --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor c02830/Card A Chance Encounter (2) 6842aa.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 209744 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 6842aa +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: A Chance Encounter (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 52.94443 + posY: 1.3648138 + posZ: -56.6204071 + rotX: 0.020809602 + rotY: 269.9997 + rotZ: 0.0167724378 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor c02830/Card A Test of Will (1) 2d9585.yaml b/unpacked/Custom_Model_Bag Survivor c02830/Card A Test of Will (1) 2d9585.yaml new file mode 100644 index 000000000..add179024 --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor c02830/Card A Test of Will (1) 2d9585.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 209737 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 2d9585 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: A Test of Will (1) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 52.94443 + posY: 1.36616027 + posZ: -52.02041 + rotX: 0.0208102223 + rotY: 269.999725 + rotZ: 0.0167729147 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor c02830/Card Against All Odds (2) b633d0.yaml b/unpacked/Custom_Model_Bag Survivor c02830/Card Against All Odds (2) b633d0.yaml new file mode 100644 index 000000000..36e575003 --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor c02830/Card Against All Odds (2) b633d0.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 209750 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: b633d0 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Against All Odds (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 52.94443 + posY: 1.36010122 + posZ: -72.7204 + rotX: 0.020807514 + rotY: 269.999756 + rotZ: 0.01676973 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor c02830/Card Alter Fate (3) 5a1991.yaml b/unpacked/Custom_Model_Bag Survivor c02830/Card Alter Fate (3) 5a1991.yaml new file mode 100644 index 000000000..cdc590c8a --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor c02830/Card Alter Fate (3) 5a1991.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 209756 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 5a1991 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Alter Fate (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 52.944458 + posY: 1.35808146 + posZ: -79.62032 + rotX: 0.0208075717 + rotY: 269.999817 + rotZ: 0.0167695954 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor c02830/Card Aquinnah (1) 630d65.yaml b/unpacked/Custom_Model_Bag Survivor c02830/Card Aquinnah (1) 630d65.yaml new file mode 100644 index 000000000..7844ed52e --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor c02830/Card Aquinnah (1) 630d65.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 209741 +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 + UniqueBack: false +Description: The Forgotten Daughter +GMNotes: '' +GUID: 630d65 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Aquinnah (1) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.2292328 + posY: 1.35896146 + posZ: -65.8008041 + rotX: 0.0208106153 + rotY: 269.989868 + rotZ: 0.016766334 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor c02830/Card Aquinnah (3) bf6a7b.yaml b/unpacked/Custom_Model_Bag Survivor c02830/Card Aquinnah (3) bf6a7b.yaml new file mode 100644 index 000000000..7daa75554 --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor c02830/Card Aquinnah (3) bf6a7b.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 209761 +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 + UniqueBack: false +Description: The Forgotten Daughter +GMNotes: '' +GUID: bf6a7b +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Aquinnah (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 40.6761169 + posY: 1.36036038 + posZ: -56.61297 + rotX: 0.02080989 + rotY: 269.9997 + rotZ: 0.0167724788 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor c02830/Card Bait and Switch (3) 50acc5.yaml b/unpacked/Custom_Model_Bag Survivor c02830/Card Bait and Switch (3) 50acc5.yaml new file mode 100644 index 000000000..f0d39db8a --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor c02830/Card Bait and Switch (3) 50acc5.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 50acc5 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Bait and Switch (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 52.944458 + posY: 1.35875463 + posZ: -77.32033 + rotX: 0.0208078381 + rotY: 269.999725 + rotZ: 0.0167700276 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor c02830/Card Brute Force (1) 7fe153.yaml b/unpacked/Custom_Model_Bag Survivor c02830/Card Brute Force (1) 7fe153.yaml new file mode 100644 index 000000000..700a5fe59 --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor c02830/Card Brute Force (1) 7fe153.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 7fe153 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Brute Force (1) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 58.09922 + posY: 1.36937273 + posZ: -47.4416237 + rotX: 0.0208066348 + rotY: 270.0088 + rotZ: 0.0167737249 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor c02830/Card Close Call (2) 61d1e5.yaml b/unpacked/Custom_Model_Bag Survivor c02830/Card Close Call (2) 61d1e5.yaml new file mode 100644 index 000000000..cd8f65977 --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor c02830/Card Close Call (2) 61d1e5.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 209748 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 61d1e5 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Close Call (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 52.94443 + posY: 1.362794 + posZ: -63.52041 + rotX: 0.020807974 + rotY: 269.999664 + rotZ: 0.0167707521 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor c02830/Card Cornered (2) a5fc16.yaml b/unpacked/Custom_Model_Bag Survivor c02830/Card Cornered (2) a5fc16.yaml new file mode 100644 index 000000000..bf082b257 --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor c02830/Card Cornered (2) a5fc16.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 209751 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: a5fc16 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Cornered (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.2292061 + posY: 1.354922 + posZ: -79.60074 + rotX: 0.0208078418 + rotY: 269.999664 + rotZ: 0.0167699531 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor c02830/Card Devil's Luck (1) ad6d9d.yaml b/unpacked/Custom_Model_Bag Survivor c02830/Card Devil's Luck (1) ad6d9d.yaml new file mode 100644 index 000000000..81779bb20 --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor c02830/Card Devil's Luck (1) ad6d9d.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 209735 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: ad6d9d +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Devil's Luck (1) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 52.9444275 + posY: 1.36750674 + posZ: -47.4204063 + rotX: 0.0208108611 + rotY: 269.999664 + rotZ: 0.01676899 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor c02830/Card Dig Deep (2) a06013.yaml b/unpacked/Custom_Model_Bag Survivor c02830/Card Dig Deep (2) a06013.yaml new file mode 100644 index 000000000..89e6fb2c5 --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor c02830/Card Dig Deep (2) a06013.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 209745 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: a06013 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Dig Deep (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.2292328 + posY: 1.35828829 + posZ: -68.1008 + rotX: 0.0208068341 + rotY: 270.0028 + rotZ: 0.016771052 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor c02830/Card Eucatastrophe (3) 9dcdd3.yaml b/unpacked/Custom_Model_Bag Survivor c02830/Card Eucatastrophe (3) 9dcdd3.yaml new file mode 100644 index 000000000..631cc19e3 --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor c02830/Card Eucatastrophe (3) 9dcdd3.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 9dcdd3 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Eucatastrophe (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 52.94437 + posY: 1.356735 + posZ: -84.22032 + rotX: 0.0208080672 + rotY: 269.999756 + rotZ: 0.01676989 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor c02830/Card Expeditious Retreat (1) ea8324.yaml b/unpacked/Custom_Model_Bag Survivor c02830/Card Expeditious Retreat (1) ea8324.yaml new file mode 100644 index 000000000..f5c17e528 --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor c02830/Card Expeditious Retreat (1) ea8324.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Innate. Developed. +GMNotes: '' +GUID: ea8324 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Expeditious Retreat (1) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 58.0999336 + posY: 1.36869109 + posZ: -49.7710075 + rotX: 0.0208045673 + rotY: 270.0185 + rotZ: 0.0167793129 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor c02830/Card Fire Extinguisher (1) dd0b79.yaml b/unpacked/Custom_Model_Bag Survivor c02830/Card Fire Extinguisher (1) dd0b79.yaml new file mode 100644 index 000000000..ec74b14e3 --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor c02830/Card Fire Extinguisher (1) dd0b79.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 209738 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: dd0b79 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Fire Extinguisher (1) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.2292328 + posY: 1.36232758 + posZ: -54.3009071 + rotX: 0.0208085962 + rotY: 270.003845 + rotZ: 0.0167742465 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor c02830/Card Five of Pentacles (1) 9d09f0.yaml b/unpacked/Custom_Model_Bag Survivor c02830/Card Five of Pentacles (1) 9d09f0.yaml new file mode 100644 index 000000000..73126df8e --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor c02830/Card Five of Pentacles (1) 9d09f0.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: From the Brink +GMNotes: '' +GUID: 9d09f0 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Five of Pentacles (1) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.2292328 + posY: 1.3616544 + posZ: -56.6009064 + rotX: 0.0208098516 + rotY: 269.9997 + rotZ: 0.0167728346 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor c02830/Card Flare (1) 910b12.yaml b/unpacked/Custom_Model_Bag Survivor c02830/Card Flare (1) 910b12.yaml new file mode 100644 index 000000000..b6ed77ddf --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor c02830/Card Flare (1) 910b12.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 209739 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 910b12 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Flare (1) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 52.94443 + posY: 1.365487 + posZ: -54.3204079 + rotX: 0.0208100155 + rotY: 269.9997 + rotZ: 0.0167729147 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor c02830/Card Fortune or Fate (2) 5010c5.yaml b/unpacked/Custom_Model_Bag Survivor c02830/Card Fortune or Fate (2) 5010c5.yaml new file mode 100644 index 000000000..963121ea2 --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor c02830/Card Fortune or Fate (2) 5010c5.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 5010c5 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Fortune or Fate (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 52.94443 + posY: 1.36212087 + posZ: -65.8203 + rotX: 0.0208078567 + rotY: 269.999664 + rotZ: 0.0167698469 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor c02830/Card Gravedigger's Shovel (2) e64769.yaml b/unpacked/Custom_Model_Bag Survivor c02830/Card Gravedigger's Shovel (2) e64769.yaml new file mode 100644 index 000000000..ecb962ae0 --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor c02830/Card Gravedigger's Shovel (2) e64769.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: e64769 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Gravedigger's Shovel (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.22927 + posY: 1.357615 + posZ: -70.40085 + rotX: 0.0208076835 + rotY: 270.0005 + rotZ: 0.0167701431 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor c02830/Card Grisly Totem (3) 4a5655.yaml b/unpacked/Custom_Model_Bag Survivor c02830/Card Grisly Totem (3) 4a5655.yaml new file mode 100644 index 000000000..551f954b8 --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor c02830/Card Grisly Totem (3) 4a5655.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Survivor +GMNotes: '' +GUID: 4a5655 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Grisly Totem (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 40.6761131 + posY: 1.36238015 + posZ: -49.71295 + rotX: 0.0208099354 + rotY: 269.999664 + rotZ: 0.01677296 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor c02830/Card Guiding Spirit (1) 13ae70.yaml b/unpacked/Custom_Model_Bag Survivor c02830/Card Guiding Spirit (1) 13ae70.yaml new file mode 100644 index 000000000..559402d1f --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor c02830/Card Guiding Spirit (1) 13ae70.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 13ae70 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Guiding Spirit (1) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.2292328 + posY: 1.36367416 + posZ: -49.70091 + rotX: 0.02081015 + rotY: 269.999725 + rotZ: 0.0167729314 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor c02830/Card Infighting (3) 36bc5b.yaml b/unpacked/Custom_Model_Bag Survivor c02830/Card Infighting (3) 36bc5b.yaml new file mode 100644 index 000000000..f2403f0e1 --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor c02830/Card Infighting (3) 36bc5b.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 209754 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 36bc5b +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Infighting (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 52.9464951 + posY: 1.357409 + posZ: -81.92055 + rotX: 0.0208075587 + rotY: 269.999847 + rotZ: 0.0167697985 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor c02830/Card Jessica Hyde (1) a1c47b.yaml b/unpacked/Custom_Model_Bag Survivor c02830/Card Jessica Hyde (1) a1c47b.yaml new file mode 100644 index 000000000..c12a7e626 --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor c02830/Card Jessica Hyde (1) a1c47b.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Wrong Place, Wrong Time +GMNotes: '' +GUID: a1c47b +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Jessica Hyde (1) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.2292328 + posY: 1.36098111 + posZ: -58.9009056 + rotX: 0.0208087619 + rotY: 270.003876 + rotZ: 0.0167743471 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor c02830/Card Lantern (2) b09d6f.yaml b/unpacked/Custom_Model_Bag Survivor c02830/Card Lantern (2) b09d6f.yaml new file mode 100644 index 000000000..05e6b2eca --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor c02830/Card Lantern (2) b09d6f.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: b09d6f +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Lantern (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.22927 + posY: 1.3569417 + posZ: -72.7008 + rotX: 0.0208075289 + rotY: 270.000641 + rotZ: 0.0167704 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor c02830/Card Lucky! (2) 002455.yaml b/unpacked/Custom_Model_Bag Survivor c02830/Card Lucky! (2) 002455.yaml new file mode 100644 index 000000000..c9137fb57 --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor c02830/Card Lucky! (2) 002455.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 209746 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: '002455' +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Lucky! (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 52.94443 + posY: 1.36414051 + posZ: -58.9204063 + rotX: 0.0208101645 + rotY: 269.999634 + rotZ: 0.0167727061 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor c02830/Card Lure (1) 76b07c.yaml b/unpacked/Custom_Model_Bag Survivor c02830/Card Lure (1) 76b07c.yaml new file mode 100644 index 000000000..4b0b8c805 --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor c02830/Card Lure (1) 76b07c.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 209736 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 76b07c +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Lure (1) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 52.94443 + posY: 1.36683357 + posZ: -49.7204056 + rotX: 0.0208097324 + rotY: 269.9997 + rotZ: 0.0167726651 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor c02830/Card Lure (2) ad0934.yaml b/unpacked/Custom_Model_Bag Survivor c02830/Card Lure (2) ad0934.yaml new file mode 100644 index 000000000..46b38a3c4 --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor c02830/Card Lure (2) ad0934.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: ad0934 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Lure (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 52.94443 + posY: 1.36346734 + posZ: -61.2204056 + rotX: 0.0208097268 + rotY: 269.999939 + rotZ: 0.0167730041 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor c02830/Card Miss Doyle (1) b337ac.yaml b/unpacked/Custom_Model_Bag Survivor c02830/Card Miss Doyle (1) b337ac.yaml new file mode 100644 index 000000000..3cbadae72 --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor c02830/Card Miss Doyle (1) b337ac.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Cat General of Ulthar +GMNotes: '' +GUID: b337ac +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Miss Doyle (1) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.22899 + posY: 1.36030781 + posZ: -61.2008171 + rotX: 0.02080982 + rotY: 269.999634 + rotZ: 0.0167727228 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor c02830/Card Newspaper (2) ea2337.yaml b/unpacked/Custom_Model_Bag Survivor c02830/Card Newspaper (2) ea2337.yaml new file mode 100644 index 000000000..3e8ba14b0 --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor c02830/Card Newspaper (2) ea2337.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 209747 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: ea2337 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Newspaper (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.2292328 + posY: 1.35626853 + posZ: -75.0008 + rotX: 0.0208078083 + rotY: 269.9997 + rotZ: 0.0167698413 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor c02830/Card Nightmare Bauble (3) 1c8915.yaml b/unpacked/Custom_Model_Bag Survivor c02830/Card Nightmare Bauble (3) 1c8915.yaml new file mode 100644 index 000000000..06441b25a --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor c02830/Card Nightmare Bauble (3) 1c8915.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Item. Charm. Cursed. +GMNotes: '' +GUID: 1c8915 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Nightmare Bauble (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.229248 + posY: 1.35290229 + posZ: -86.50075 + rotX: 0.02080994 + rotY: 269.993225 + rotZ: 0.0167675316 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor c02830/Card Nothing Left to Lose (3) 6a8a9f.yaml b/unpacked/Custom_Model_Bag Survivor c02830/Card Nothing Left to Lose (3) 6a8a9f.yaml new file mode 100644 index 000000000..0cd4eab7d --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor c02830/Card Nothing Left to Lose (3) 6a8a9f.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Spirit. +GMNotes: '' +GUID: 6a8a9f +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Nothing Left to Lose (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 52.94445 + posY: 1.35942793 + posZ: -75.02043 + rotX: 0.0208081827 + rotY: 269.998474 + rotZ: 0.0167695228 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor c02830/Card Old Hunting Rifle (3) f69d7d.yaml b/unpacked/Custom_Model_Bag Survivor c02830/Card Old Hunting Rifle (3) f69d7d.yaml new file mode 100644 index 000000000..45ae2b839 --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor c02830/Card Old Hunting Rifle (3) f69d7d.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 443800 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '4438': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025946328/561232524C8EAA4B4371B28652F78969E6ED6FFB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: f69d7d +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Old Hunting Rifle (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 40.6761169 + posY: 1.36103368 + posZ: -54.3129654 + rotX: 0.02080985 + rotY: 269.999725 + rotZ: 0.0167728178 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor c02830/Card On Your Own (3) ce1a7d.yaml b/unpacked/Custom_Model_Bag Survivor c02830/Card On Your Own (3) ce1a7d.yaml new file mode 100644 index 000000000..733b76391 --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor c02830/Card On Your Own (3) ce1a7d.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 209758 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: ce1a7d +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: On Your Own (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 40.6761131 + posY: 1.36305344 + posZ: -47.4129639 + rotX: 0.0208098236 + rotY: 269.999817 + rotZ: 0.0167728234 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor c02830/Card Oops! (2) 9869ee.yaml b/unpacked/Custom_Model_Bag Survivor c02830/Card Oops! (2) 9869ee.yaml new file mode 100644 index 000000000..cb1de11ba --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor c02830/Card Oops! (2) 9869ee.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 443905 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '4439': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025946328/561232524C8EAA4B4371B28652F78969E6ED6FFB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 9869ee +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Oops! (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 52.94443 + posY: 1.36144769 + posZ: -68.12031 + rotX: 0.02080764 + rotY: 269.999634 + rotZ: 0.0167699382 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor c02830/Card Peter Sylvestre (2) 584914.yaml b/unpacked/Custom_Model_Bag Survivor c02830/Card Peter Sylvestre (2) 584914.yaml new file mode 100644 index 000000000..29ee78006 --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor c02830/Card Peter Sylvestre (2) 584914.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 209752 +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 + UniqueBack: false +Description: Big Man on Campus +GMNotes: '' +GUID: '584914' +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Peter Sylvestre (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.2312431 + posY: 1.35424948 + posZ: -81.9009552 + rotX: 0.020808069 + rotY: 269.999664 + rotZ: 0.016769778 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor c02830/Card Plucky (1) 2a37f3.yaml b/unpacked/Custom_Model_Bag Survivor c02830/Card Plucky (1) 2a37f3.yaml new file mode 100644 index 000000000..5e8e0db97 --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor c02830/Card Plucky (1) 2a37f3.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 209734 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 2a37f3 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Plucky (1) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.2292328 + posY: 1.36434734 + posZ: -47.4009056 + rotX: 0.02081016 + rotY: 269.9998 + rotZ: 0.0167730618 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor c02830/Card Rabbit's Foot (3) 00c4cc.yaml b/unpacked/Custom_Model_Bag Survivor c02830/Card Rabbit's Foot (3) 00c4cc.yaml new file mode 100644 index 000000000..d0f3b27a9 --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor c02830/Card Rabbit's Foot (3) 00c4cc.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 209755 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 00c4cc +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Rabbit's Foot (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.21343 + posY: 1.3522265 + posZ: -88.79019 + rotX: 0.02080789 + rotY: 269.999756 + rotZ: 0.0167699717 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor c02830/Card Rise to the Occasion (3) 0b9f53.yaml b/unpacked/Custom_Model_Bag Survivor c02830/Card Rise to the Occasion (3) 0b9f53.yaml new file mode 100644 index 000000000..259688a26 --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor c02830/Card Rise to the Occasion (3) 0b9f53.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 443904 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '4439': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025946328/561232524C8EAA4B4371B28652F78969E6ED6FFB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 0b9f53 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Rise to the Occasion (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 58.0999336 + posY: 1.36599815 + posZ: -58.9711075 + rotX: 0.0208101925 + rotY: 269.999725 + rotZ: 0.0167728234 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor c02830/Card Scavenging (2) cda2e6.yaml b/unpacked/Custom_Model_Bag Survivor c02830/Card Scavenging (2) cda2e6.yaml new file mode 100644 index 000000000..39cd030a8 --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor c02830/Card Scavenging (2) cda2e6.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Talent. +GMNotes: '' +GUID: cda2e6 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Scavenging (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.2292023 + posY: 1.35559523 + posZ: -77.30074 + rotX: 0.0208159033 + rotY: 269.9709 + rotZ: 0.0167593043 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor c02830/Card Scrapper (3) c6c157.yaml b/unpacked/Custom_Model_Bag Survivor c02830/Card Scrapper (3) c6c157.yaml new file mode 100644 index 000000000..ab5a01eff --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor c02830/Card Scrapper (3) c6c157.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 209753 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: c6c157 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Scrapper (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.22912 + posY: 1.35357547 + posZ: -84.20073 + rotX: 0.0208078288 + rotY: 269.999725 + rotZ: 0.0167698562 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor c02830/Card Sharp Vision (1) 4d9a97.yaml b/unpacked/Custom_Model_Bag Survivor c02830/Card Sharp Vision (1) 4d9a97.yaml new file mode 100644 index 000000000..6dfb5b999 --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor c02830/Card Sharp Vision (1) 4d9a97.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Innate. Developed. +GMNotes: '' +GUID: 4d9a97 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Sharp Vision (1) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 58.0999336 + posY: 1.36801779 + posZ: -52.0710068 + rotX: 0.0208078641 + rotY: 270.0076 + rotZ: 0.0167757235 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor c02830/Card Snare Trap (2) 234fae.yaml b/unpacked/Custom_Model_Bag Survivor c02830/Card Snare Trap (2) 234fae.yaml new file mode 100644 index 000000000..25457b246 --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor c02830/Card Snare Trap (2) 234fae.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 209749 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 234fae +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Snare Trap (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 52.94443 + posY: 1.36077452 + posZ: -70.4202957 + rotX: 0.0208077766 + rotY: 269.999817 + rotZ: 0.016769873 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor c02830/Card Stroke of Luck (2) bce471.yaml b/unpacked/Custom_Model_Bag Survivor c02830/Card Stroke of Luck (2) bce471.yaml new file mode 100644 index 000000000..58d1ad7b1 --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor c02830/Card Stroke of Luck (2) bce471.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 209743 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: bce471 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Stroke of Luck (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 58.0999336 + posY: 1.36667132 + posZ: -56.67111 + rotX: 0.0208102316 + rotY: 269.999725 + rotZ: 0.016772978 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor c02830/Card Survival Instinct (2) 1c3b8f.yaml b/unpacked/Custom_Model_Bag Survivor c02830/Card Survival Instinct (2) 1c3b8f.yaml new file mode 100644 index 000000000..54e4d6c8c --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor c02830/Card Survival Instinct (2) 1c3b8f.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 209742 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 1c3b8f +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Survival Instinct (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 58.0999336 + posY: 1.36734462 + posZ: -54.3711052 + rotX: 0.0208087228 + rotY: 270.004181 + rotZ: 0.01677413 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor c02830/Card Tennessee Sour Mash (3) 8cdf20.yaml b/unpacked/Custom_Model_Bag Survivor c02830/Card Tennessee Sour Mash (3) 8cdf20.yaml new file mode 100644 index 000000000..814c01bca --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor c02830/Card Tennessee Sour Mash (3) 8cdf20.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Survivor +GMNotes: '' +GUID: 8cdf20 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Tennessee Sour Mash (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 40.6761131 + posY: 1.36170685 + posZ: -52.0129547 + rotX: 0.0208099633 + rotY: 269.999939 + rotZ: 0.01677307 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor c02830/Card True Survivor (3) 6a04c3.yaml b/unpacked/Custom_Model_Bag Survivor c02830/Card True Survivor (3) 6a04c3.yaml new file mode 100644 index 000000000..cc2c42c68 --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor c02830/Card True Survivor (3) 6a04c3.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 209759 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 6a04c3 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: True Survivor (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 52.9445 + posY: 1.35606182 + posZ: -86.52034 + rotX: 0.0208078027 + rotY: 269.999725 + rotZ: 0.01677034 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor c02830/Card Try and Try Again (1) 35bbe8.yaml b/unpacked/Custom_Model_Bag Survivor c02830/Card Try and Try Again (1) 35bbe8.yaml new file mode 100644 index 000000000..5c7ca7e9e --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor c02830/Card Try and Try Again (1) 35bbe8.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 443802 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '4438': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025946328/561232524C8EAA4B4371B28652F78969E6ED6FFB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 35bbe8 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Try and Try Again (1) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.2292328 + posY: 1.36300087 + posZ: -52.0009079 + rotX: 0.0208130181 + rotY: 269.9889 + rotZ: 0.0167688541 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor c02830/Card Try and Try Again (3) b8f774.yaml b/unpacked/Custom_Model_Bag Survivor c02830/Card Try and Try Again (3) b8f774.yaml new file mode 100644 index 000000000..5758f8cc1 --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor c02830/Card Try and Try Again (3) b8f774.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 209757 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: b8f774 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Try and Try Again (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.2132568 + posY: 1.351551 + posZ: -91.09752 + rotX: 0.0208080765 + rotY: 269.999573 + rotZ: 0.0167697426 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor c02830/Card Will to Survive (3) ac7db0.yaml b/unpacked/Custom_Model_Bag Survivor c02830/Card Will to Survive (3) ac7db0.yaml new file mode 100644 index 000000000..f89d3e399 --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor c02830/Card Will to Survive (3) ac7db0.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 209760 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: ac7db0 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Will to Survive (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 52.92868 + posY: 1.3553859 + posZ: -88.8097839 + rotX: 0.0208078139 + rotY: 269.999756 + rotZ: 0.0167697333 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor c02830/Card Yaotl (1) 9f9e58.yaml b/unpacked/Custom_Model_Bag Survivor c02830/Card Yaotl (1) 9f9e58.yaml new file mode 100644 index 000000000..0c23f8ba4 --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor c02830/Card Yaotl (1) 9f9e58.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 209740 +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 + UniqueBack: false +Description: Lost Son of Earth +GMNotes: '' +GUID: 9f9e58 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Yaotl (1) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.2292328 + posY: 1.35963464 + posZ: -63.5009079 + rotX: 0.0208080783 + rotY: 269.9999 + rotZ: 0.0167710055 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor d185bf.ttslua b/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor d185bf.ttslua new file mode 100644 index 000000000..f882a7f09 --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor d185bf.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,0,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 + 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=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,0,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,0,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,0,0}, height=350, width=750, + 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}, rotation={0,0,0}, height=350, width=800, + font_size=250, color={0,0,0}, font_color={1,1,1} + }) +-- self.createButton({ +-- label="Setup", click_function="buttonClick_setup", function_owner=self, +-- position={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.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 Survivor c02830/Custom_Model_Bag Survivor d185bf.yaml b/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor d185bf.yaml new file mode 100644 index 000000000..9bac67f97 --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor d185bf.yaml @@ -0,0 +1,102 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +ContainedObjects: +- !include 'Custom_Model_Bag Survivor d185bf/Card Brute Force (1) 7fe153.yaml' +- !include 'Custom_Model_Bag Survivor d185bf/Card Expeditious Retreat (1) ea8324.yaml' +- !include 'Custom_Model_Bag Survivor d185bf/Card Sharp Vision (1) 4d9a97.yaml' +- !include 'Custom_Model_Bag Survivor d185bf/Card Survival Instinct (2) 1c3b8f.yaml' +- !include 'Custom_Model_Bag Survivor d185bf/Card Stroke of Luck (2) bce471.yaml' +- !include 'Custom_Model_Bag Survivor d185bf/Card Rise to the Occasion (3) 0b9f53.yaml' +- !include 'Custom_Model_Bag Survivor d185bf/Card Lucky! (2) 002455.yaml' +- !include 'Custom_Model_Bag Survivor d185bf/Card A Chance Encounter (2) 6842aa.yaml' +- !include 'Custom_Model_Bag Survivor d185bf/Card Flare (1) 910b12.yaml' +- !include 'Custom_Model_Bag Survivor d185bf/Card A Test of Will (1) 2d9585.yaml' +- !include 'Custom_Model_Bag Survivor d185bf/Card Lure (1) 76b07c.yaml' +- !include 'Custom_Model_Bag Survivor d185bf/Card Devil''s Luck (1) ad6d9d.yaml' +- !include 'Custom_Model_Bag Survivor d185bf/Card Lure (2) ad0934.yaml' +- !include 'Custom_Model_Bag Survivor d185bf/Card Close Call (2) 61d1e5.yaml' +- !include 'Custom_Model_Bag Survivor d185bf/Card Fortune or Fate (2) 5010c5.yaml' +- !include 'Custom_Model_Bag Survivor d185bf/Card Oops! (2) 9869ee.yaml' +- !include 'Custom_Model_Bag Survivor d185bf/Card Snare Trap (2) 234fae.yaml' +- !include 'Custom_Model_Bag Survivor d185bf/Card Against All Odds (2) b633d0.yaml' +- !include 'Custom_Model_Bag Survivor d185bf/Card Nothing Left to Lose (3) 6a8a9f.yaml' +- !include 'Custom_Model_Bag Survivor d185bf/Card Bait and Switch (3) 50acc5.yaml' +- !include 'Custom_Model_Bag Survivor d185bf/Card Alter Fate (3) 5a1991.yaml' +- !include 'Custom_Model_Bag Survivor d185bf/Card Infighting (3) 36bc5b.yaml' +- !include 'Custom_Model_Bag Survivor d185bf/Card Eucatastrophe (3) 9dcdd3.yaml' +- !include 'Custom_Model_Bag Survivor d185bf/Card True Survivor (3) 6a04c3.yaml' +- !include 'Custom_Model_Bag Survivor d185bf/Card Will to Survive (3) ac7db0.yaml' +- !include 'Custom_Model_Bag Survivor d185bf/Card Try and Try Again (3) b8f774.yaml' +- !include 'Custom_Model_Bag Survivor d185bf/Card Rabbit''s Foot (3) 00c4cc.yaml' +- !include 'Custom_Model_Bag Survivor d185bf/Card Nightmare Bauble (3) 1c8915.yaml' +- !include 'Custom_Model_Bag Survivor d185bf/Card Scrapper (3) c6c157.yaml' +- !include 'Custom_Model_Bag Survivor d185bf/Card Peter Sylvestre (2) 584914.yaml' +- !include 'Custom_Model_Bag Survivor d185bf/Card Cornered (2) a5fc16.yaml' +- !include 'Custom_Model_Bag Survivor d185bf/Card Scavenging (2) cda2e6.yaml' +- !include 'Custom_Model_Bag Survivor d185bf/Card Newspaper (2) ea2337.yaml' +- !include 'Custom_Model_Bag Survivor d185bf/Card Lantern (2) b09d6f.yaml' +- !include 'Custom_Model_Bag Survivor d185bf/Card Gravedigger''s Shovel (2) e64769.yaml' +- !include 'Custom_Model_Bag Survivor d185bf/Card Dig Deep (2) a06013.yaml' +- !include 'Custom_Model_Bag Survivor d185bf/Card Aquinnah (1) 630d65.yaml' +- !include 'Custom_Model_Bag Survivor d185bf/Card Yaotl (1) 9f9e58.yaml' +- !include 'Custom_Model_Bag Survivor d185bf/Card Miss Doyle (1) b337ac.yaml' +- !include 'Custom_Model_Bag Survivor d185bf/Card Jessica Hyde (1) a1c47b.yaml' +- !include 'Custom_Model_Bag Survivor d185bf/Card Five of Pentacles (1) 9d09f0.yaml' +- !include 'Custom_Model_Bag Survivor d185bf/Card Aquinnah (3) bf6a7b.yaml' +- !include 'Custom_Model_Bag Survivor d185bf/Card Old Hunting Rifle (3) f69d7d.yaml' +- !include 'Custom_Model_Bag Survivor d185bf/Card Fire Extinguisher (1) dd0b79.yaml' +- !include 'Custom_Model_Bag Survivor d185bf/Card Try and Try Again (1) 35bbe8.yaml' +- !include 'Custom_Model_Bag Survivor d185bf/Card Tennessee Sour Mash (3) 8cdf20.yaml' +- !include 'Custom_Model_Bag Survivor d185bf/Card Guiding Spirit (1) 13ae70.yaml' +- !include 'Custom_Model_Bag Survivor d185bf/Card Grisly Totem (3) 4a5655.yaml' +- !include 'Custom_Model_Bag Survivor d185bf/Card On Your Own (3) ce1a7d.yaml' +- !include 'Custom_Model_Bag Survivor d185bf/Card Plucky (1) 2a37f3.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/952965722515960460/F43F63452854B10B416FDF3BF9EF3068E6E68F26/ + MaterialIndex: 3 + MeshURL: https://pastebin.com/raw/ALrYhQGb + NormalURL: '' + TypeIndex: 6 +Description: '' +GMNotes: '' +GUID: d185bf +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Model_Bag Survivor d185bf.ttslua' +LuaScriptState: '{"ml":{"002455":{"lock":false,"pos":{"x":52.9444,"y":1.3641,"z":-58.9204},"rot":{"x":0.0208,"y":269.9996,"z":0.0168}},"00c4cc":{"lock":false,"pos":{"x":44.2134,"y":1.3522,"z":-88.7902},"rot":{"x":0.0208,"y":269.9998,"z":0.0168}},"0b9f53":{"lock":false,"pos":{"x":58.0999,"y":1.366,"z":-58.9711},"rot":{"x":0.0208,"y":269.9997,"z":0.0168}},"13ae70":{"lock":false,"pos":{"x":44.2292,"y":1.3637,"z":-49.7009},"rot":{"x":0.0208,"y":269.9997,"z":0.0168}},"1c3b8f":{"lock":false,"pos":{"x":58.0999,"y":1.3673,"z":-54.3711},"rot":{"x":0.0208,"y":270.0042,"z":0.0168}},"1c8915":{"lock":false,"pos":{"x":44.2292,"y":1.3529,"z":-86.5007},"rot":{"x":0.0208,"y":269.9932,"z":0.0168}},"234fae":{"lock":false,"pos":{"x":52.9444,"y":1.3608,"z":-70.4203},"rot":{"x":0.0208,"y":269.9998,"z":0.0168}},"2a37f3":{"lock":false,"pos":{"x":44.2292,"y":1.3643,"z":-47.4009},"rot":{"x":0.0208,"y":269.9998,"z":0.0168}},"2d9585":{"lock":false,"pos":{"x":52.9444,"y":1.3662,"z":-52.0204},"rot":{"x":0.0208,"y":269.9997,"z":0.0168}},"35bbe8":{"lock":false,"pos":{"x":44.2292,"y":1.363,"z":-52.0009},"rot":{"x":0.0208,"y":269.9889,"z":0.0168}},"36bc5b":{"lock":false,"pos":{"x":52.9465,"y":1.3574,"z":-81.9205},"rot":{"x":0.0208,"y":269.9998,"z":0.0168}},"4a5655":{"lock":false,"pos":{"x":40.6761,"y":1.3624,"z":-49.713},"rot":{"x":0.0208,"y":269.9997,"z":0.0168}},"4d9a97":{"lock":false,"pos":{"x":58.0999,"y":1.368,"z":-52.071},"rot":{"x":0.0208,"y":270.0076,"z":0.0168}},"5010c5":{"lock":false,"pos":{"x":52.9444,"y":1.3621,"z":-65.8203},"rot":{"x":0.0208,"y":269.9997,"z":0.0168}},"50acc5":{"lock":false,"pos":{"x":52.9445,"y":1.3588,"z":-77.3203},"rot":{"x":0.0208,"y":269.9997,"z":0.0168}},"584914":{"lock":false,"pos":{"x":44.2312,"y":1.3542,"z":-81.901},"rot":{"x":0.0208,"y":269.9997,"z":0.0168}},"5a1991":{"lock":false,"pos":{"x":52.9445,"y":1.3581,"z":-79.6203},"rot":{"x":0.0208,"y":269.9998,"z":0.0168}},"61d1e5":{"lock":false,"pos":{"x":52.9444,"y":1.3628,"z":-63.5204},"rot":{"x":0.0208,"y":269.9997,"z":0.0168}},"630d65":{"lock":false,"pos":{"x":44.2292,"y":1.359,"z":-65.8008},"rot":{"x":0.0208,"y":269.9899,"z":0.0168}},"6842aa":{"lock":false,"pos":{"x":52.9444,"y":1.3648,"z":-56.6204},"rot":{"x":0.0208,"y":269.9997,"z":0.0168}},"6a04c3":{"lock":false,"pos":{"x":52.9445,"y":1.3561,"z":-86.5203},"rot":{"x":0.0208,"y":269.9997,"z":0.0168}},"6a8a9f":{"lock":false,"pos":{"x":52.9445,"y":1.3594,"z":-75.0204},"rot":{"x":0.0208,"y":269.9985,"z":0.0168}},"76b07c":{"lock":false,"pos":{"x":52.9444,"y":1.3668,"z":-49.7204},"rot":{"x":0.0208,"y":269.9997,"z":0.0168}},"7fe153":{"lock":false,"pos":{"x":58.0992,"y":1.3694,"z":-47.4416},"rot":{"x":0.0208,"y":270.0088,"z":0.0168}},"8cdf20":{"lock":false,"pos":{"x":40.6761,"y":1.3617,"z":-52.013},"rot":{"x":0.0208,"y":269.9999,"z":0.0168}},"910b12":{"lock":false,"pos":{"x":52.9444,"y":1.3655,"z":-54.3204},"rot":{"x":0.0208,"y":269.9997,"z":0.0168}},"9869ee":{"lock":false,"pos":{"x":52.9444,"y":1.3614,"z":-68.1203},"rot":{"x":0.0208,"y":269.9996,"z":0.0168}},"9d09f0":{"lock":false,"pos":{"x":44.2292,"y":1.3617,"z":-56.6009},"rot":{"x":0.0208,"y":269.9997,"z":0.0168}},"9dcdd3":{"lock":false,"pos":{"x":52.9444,"y":1.3567,"z":-84.2203},"rot":{"x":0.0208,"y":269.9998,"z":0.0168}},"9f9e58":{"lock":false,"pos":{"x":44.2292,"y":1.3596,"z":-63.5009},"rot":{"x":0.0208,"y":269.9999,"z":0.0168}},"a06013":{"lock":false,"pos":{"x":44.2292,"y":1.3583,"z":-68.1008},"rot":{"x":0.0208,"y":270.0028,"z":0.0168}},"a1c47b":{"lock":false,"pos":{"x":44.2292,"y":1.361,"z":-58.9009},"rot":{"x":0.0208,"y":270.0039,"z":0.0168}},"a5fc16":{"lock":false,"pos":{"x":44.2292,"y":1.3549,"z":-79.6007},"rot":{"x":0.0208,"y":269.9997,"z":0.0168}},"ac7db0":{"lock":false,"pos":{"x":52.9287,"y":1.3554,"z":-88.8098},"rot":{"x":0.0208,"y":269.9998,"z":0.0168}},"ad0934":{"lock":false,"pos":{"x":52.9444,"y":1.3635,"z":-61.2204},"rot":{"x":0.0208,"y":269.9999,"z":0.0168}},"ad6d9d":{"lock":false,"pos":{"x":52.9444,"y":1.3675,"z":-47.4204},"rot":{"x":0.0208,"y":269.9997,"z":0.0168}},"b09d6f":{"lock":false,"pos":{"x":44.2293,"y":1.3569,"z":-72.7008},"rot":{"x":0.0208,"y":270.0006,"z":0.0168}},"b337ac":{"lock":false,"pos":{"x":44.229,"y":1.3603,"z":-61.2008},"rot":{"x":0.0208,"y":269.9996,"z":0.0168}},"b633d0":{"lock":false,"pos":{"x":52.9444,"y":1.3601,"z":-72.7204},"rot":{"x":0.0208,"y":269.9998,"z":0.0168}},"b8f774":{"lock":false,"pos":{"x":44.2133,"y":1.3516,"z":-91.0975},"rot":{"x":0.0208,"y":269.9996,"z":0.0168}},"bce471":{"lock":false,"pos":{"x":58.0999,"y":1.3667,"z":-56.6711},"rot":{"x":0.0208,"y":269.9997,"z":0.0168}},"bf6a7b":{"lock":false,"pos":{"x":40.6761,"y":1.3604,"z":-56.613},"rot":{"x":0.0208,"y":269.9997,"z":0.0168}},"c6c157":{"lock":false,"pos":{"x":44.2291,"y":1.3536,"z":-84.2007},"rot":{"x":0.0208,"y":269.9997,"z":0.0168}},"cda2e6":{"lock":false,"pos":{"x":44.2292,"y":1.3556,"z":-77.3007},"rot":{"x":0.0208,"y":269.9709,"z":0.0168}},"ce1a7d":{"lock":false,"pos":{"x":40.6761,"y":1.3631,"z":-47.413},"rot":{"x":0.0208,"y":269.9998,"z":0.0168}},"dd0b79":{"lock":false,"pos":{"x":44.2292,"y":1.3623,"z":-54.3009},"rot":{"x":0.0208,"y":270.0038,"z":0.0168}},"e64769":{"lock":false,"pos":{"x":44.2293,"y":1.3576,"z":-70.4008},"rot":{"x":0.0208,"y":270.0005,"z":0.0168}},"ea2337":{"lock":false,"pos":{"x":44.2292,"y":1.3563,"z":-75.0008},"rot":{"x":0.0208,"y":269.9997,"z":0.0168}},"ea8324":{"lock":false,"pos":{"x":58.0999,"y":1.3687,"z":-49.771},"rot":{"x":0.0208,"y":270.0185,"z":0.0168}},"f69d7d":{"lock":false,"pos":{"x":40.6761,"y":1.361,"z":-54.313},"rot":{"x":0.0208,"y":269.9997,"z":0.0168}}}}' +MaterialIndex: -1 +MeshIndex: -1 +Name: Custom_Model_Bag +Nickname: Survivor +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 66.29665 + posY: 1.66570616 + posZ: -85.51394 + rotX: 0.0121545549 + rotY: 270.018982 + rotZ: 0.0129705388 + scaleX: 1.2 + scaleY: 1.2 + scaleZ: 1.2 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor d185bf/Card A Chance Encounter (2) 6842aa.yaml b/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor d185bf/Card A Chance Encounter (2) 6842aa.yaml new file mode 100644 index 000000000..413adc8ca --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor d185bf/Card A Chance Encounter (2) 6842aa.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 209744 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 6842aa +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: A Chance Encounter (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 52.94443 + posY: 1.3648138 + posZ: -56.6204071 + rotX: 0.020809602 + rotY: 269.9997 + rotZ: 0.0167724378 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor d185bf/Card A Test of Will (1) 2d9585.yaml b/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor d185bf/Card A Test of Will (1) 2d9585.yaml new file mode 100644 index 000000000..add179024 --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor d185bf/Card A Test of Will (1) 2d9585.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 209737 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 2d9585 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: A Test of Will (1) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 52.94443 + posY: 1.36616027 + posZ: -52.02041 + rotX: 0.0208102223 + rotY: 269.999725 + rotZ: 0.0167729147 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor d185bf/Card Against All Odds (2) b633d0.yaml b/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor d185bf/Card Against All Odds (2) b633d0.yaml new file mode 100644 index 000000000..36e575003 --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor d185bf/Card Against All Odds (2) b633d0.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 209750 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: b633d0 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Against All Odds (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 52.94443 + posY: 1.36010122 + posZ: -72.7204 + rotX: 0.020807514 + rotY: 269.999756 + rotZ: 0.01676973 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor d185bf/Card Alter Fate (3) 5a1991.yaml b/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor d185bf/Card Alter Fate (3) 5a1991.yaml new file mode 100644 index 000000000..cdc590c8a --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor d185bf/Card Alter Fate (3) 5a1991.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 209756 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 5a1991 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Alter Fate (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 52.944458 + posY: 1.35808146 + posZ: -79.62032 + rotX: 0.0208075717 + rotY: 269.999817 + rotZ: 0.0167695954 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor d185bf/Card Aquinnah (1) 630d65.yaml b/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor d185bf/Card Aquinnah (1) 630d65.yaml new file mode 100644 index 000000000..7844ed52e --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor d185bf/Card Aquinnah (1) 630d65.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 209741 +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 + UniqueBack: false +Description: The Forgotten Daughter +GMNotes: '' +GUID: 630d65 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Aquinnah (1) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.2292328 + posY: 1.35896146 + posZ: -65.8008041 + rotX: 0.0208106153 + rotY: 269.989868 + rotZ: 0.016766334 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor d185bf/Card Aquinnah (3) bf6a7b.yaml b/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor d185bf/Card Aquinnah (3) bf6a7b.yaml new file mode 100644 index 000000000..7daa75554 --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor d185bf/Card Aquinnah (3) bf6a7b.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 209761 +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 + UniqueBack: false +Description: The Forgotten Daughter +GMNotes: '' +GUID: bf6a7b +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Aquinnah (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 40.6761169 + posY: 1.36036038 + posZ: -56.61297 + rotX: 0.02080989 + rotY: 269.9997 + rotZ: 0.0167724788 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor d185bf/Card Bait and Switch (3) 50acc5.yaml b/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor d185bf/Card Bait and Switch (3) 50acc5.yaml new file mode 100644 index 000000000..f0d39db8a --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor d185bf/Card Bait and Switch (3) 50acc5.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 50acc5 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Bait and Switch (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 52.944458 + posY: 1.35875463 + posZ: -77.32033 + rotX: 0.0208078381 + rotY: 269.999725 + rotZ: 0.0167700276 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor d185bf/Card Brute Force (1) 7fe153.yaml b/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor d185bf/Card Brute Force (1) 7fe153.yaml new file mode 100644 index 000000000..700a5fe59 --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor d185bf/Card Brute Force (1) 7fe153.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 7fe153 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Brute Force (1) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 58.09922 + posY: 1.36937273 + posZ: -47.4416237 + rotX: 0.0208066348 + rotY: 270.0088 + rotZ: 0.0167737249 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor d185bf/Card Close Call (2) 61d1e5.yaml b/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor d185bf/Card Close Call (2) 61d1e5.yaml new file mode 100644 index 000000000..cd8f65977 --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor d185bf/Card Close Call (2) 61d1e5.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 209748 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 61d1e5 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Close Call (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 52.94443 + posY: 1.362794 + posZ: -63.52041 + rotX: 0.020807974 + rotY: 269.999664 + rotZ: 0.0167707521 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor d185bf/Card Cornered (2) a5fc16.yaml b/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor d185bf/Card Cornered (2) a5fc16.yaml new file mode 100644 index 000000000..bf082b257 --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor d185bf/Card Cornered (2) a5fc16.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 209751 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: a5fc16 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Cornered (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.2292061 + posY: 1.354922 + posZ: -79.60074 + rotX: 0.0208078418 + rotY: 269.999664 + rotZ: 0.0167699531 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor d185bf/Card Devil's Luck (1) ad6d9d.yaml b/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor d185bf/Card Devil's Luck (1) ad6d9d.yaml new file mode 100644 index 000000000..81779bb20 --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor d185bf/Card Devil's Luck (1) ad6d9d.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 209735 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: ad6d9d +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Devil's Luck (1) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 52.9444275 + posY: 1.36750674 + posZ: -47.4204063 + rotX: 0.0208108611 + rotY: 269.999664 + rotZ: 0.01676899 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor d185bf/Card Dig Deep (2) a06013.yaml b/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor d185bf/Card Dig Deep (2) a06013.yaml new file mode 100644 index 000000000..89e6fb2c5 --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor d185bf/Card Dig Deep (2) a06013.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 209745 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: a06013 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Dig Deep (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.2292328 + posY: 1.35828829 + posZ: -68.1008 + rotX: 0.0208068341 + rotY: 270.0028 + rotZ: 0.016771052 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor d185bf/Card Eucatastrophe (3) 9dcdd3.yaml b/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor d185bf/Card Eucatastrophe (3) 9dcdd3.yaml new file mode 100644 index 000000000..631cc19e3 --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor d185bf/Card Eucatastrophe (3) 9dcdd3.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 9dcdd3 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Eucatastrophe (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 52.94437 + posY: 1.356735 + posZ: -84.22032 + rotX: 0.0208080672 + rotY: 269.999756 + rotZ: 0.01676989 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor d185bf/Card Expeditious Retreat (1) ea8324.yaml b/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor d185bf/Card Expeditious Retreat (1) ea8324.yaml new file mode 100644 index 000000000..f5c17e528 --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor d185bf/Card Expeditious Retreat (1) ea8324.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Innate. Developed. +GMNotes: '' +GUID: ea8324 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Expeditious Retreat (1) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 58.0999336 + posY: 1.36869109 + posZ: -49.7710075 + rotX: 0.0208045673 + rotY: 270.0185 + rotZ: 0.0167793129 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor d185bf/Card Fire Extinguisher (1) dd0b79.yaml b/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor d185bf/Card Fire Extinguisher (1) dd0b79.yaml new file mode 100644 index 000000000..ec74b14e3 --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor d185bf/Card Fire Extinguisher (1) dd0b79.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 209738 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: dd0b79 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Fire Extinguisher (1) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.2292328 + posY: 1.36232758 + posZ: -54.3009071 + rotX: 0.0208085962 + rotY: 270.003845 + rotZ: 0.0167742465 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor d185bf/Card Five of Pentacles (1) 9d09f0.yaml b/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor d185bf/Card Five of Pentacles (1) 9d09f0.yaml new file mode 100644 index 000000000..73126df8e --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor d185bf/Card Five of Pentacles (1) 9d09f0.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: From the Brink +GMNotes: '' +GUID: 9d09f0 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Five of Pentacles (1) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.2292328 + posY: 1.3616544 + posZ: -56.6009064 + rotX: 0.0208098516 + rotY: 269.9997 + rotZ: 0.0167728346 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor d185bf/Card Flare (1) 910b12.yaml b/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor d185bf/Card Flare (1) 910b12.yaml new file mode 100644 index 000000000..b6ed77ddf --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor d185bf/Card Flare (1) 910b12.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 209739 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 910b12 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Flare (1) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 52.94443 + posY: 1.365487 + posZ: -54.3204079 + rotX: 0.0208100155 + rotY: 269.9997 + rotZ: 0.0167729147 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor d185bf/Card Fortune or Fate (2) 5010c5.yaml b/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor d185bf/Card Fortune or Fate (2) 5010c5.yaml new file mode 100644 index 000000000..963121ea2 --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor d185bf/Card Fortune or Fate (2) 5010c5.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 5010c5 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Fortune or Fate (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 52.94443 + posY: 1.36212087 + posZ: -65.8203 + rotX: 0.0208078567 + rotY: 269.999664 + rotZ: 0.0167698469 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor d185bf/Card Gravedigger's Shovel (2) e64769.yaml b/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor d185bf/Card Gravedigger's Shovel (2) e64769.yaml new file mode 100644 index 000000000..ecb962ae0 --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor d185bf/Card Gravedigger's Shovel (2) e64769.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: e64769 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Gravedigger's Shovel (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.22927 + posY: 1.357615 + posZ: -70.40085 + rotX: 0.0208076835 + rotY: 270.0005 + rotZ: 0.0167701431 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor d185bf/Card Grisly Totem (3) 4a5655.yaml b/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor d185bf/Card Grisly Totem (3) 4a5655.yaml new file mode 100644 index 000000000..551f954b8 --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor d185bf/Card Grisly Totem (3) 4a5655.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Survivor +GMNotes: '' +GUID: 4a5655 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Grisly Totem (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 40.6761131 + posY: 1.36238015 + posZ: -49.71295 + rotX: 0.0208099354 + rotY: 269.999664 + rotZ: 0.01677296 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor d185bf/Card Guiding Spirit (1) 13ae70.yaml b/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor d185bf/Card Guiding Spirit (1) 13ae70.yaml new file mode 100644 index 000000000..559402d1f --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor d185bf/Card Guiding Spirit (1) 13ae70.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 13ae70 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Guiding Spirit (1) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.2292328 + posY: 1.36367416 + posZ: -49.70091 + rotX: 0.02081015 + rotY: 269.999725 + rotZ: 0.0167729314 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor d185bf/Card Infighting (3) 36bc5b.yaml b/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor d185bf/Card Infighting (3) 36bc5b.yaml new file mode 100644 index 000000000..f2403f0e1 --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor d185bf/Card Infighting (3) 36bc5b.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 209754 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 36bc5b +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Infighting (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 52.9464951 + posY: 1.357409 + posZ: -81.92055 + rotX: 0.0208075587 + rotY: 269.999847 + rotZ: 0.0167697985 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor d185bf/Card Jessica Hyde (1) a1c47b.yaml b/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor d185bf/Card Jessica Hyde (1) a1c47b.yaml new file mode 100644 index 000000000..c12a7e626 --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor d185bf/Card Jessica Hyde (1) a1c47b.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Wrong Place, Wrong Time +GMNotes: '' +GUID: a1c47b +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Jessica Hyde (1) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.2292328 + posY: 1.36098111 + posZ: -58.9009056 + rotX: 0.0208087619 + rotY: 270.003876 + rotZ: 0.0167743471 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor d185bf/Card Lantern (2) b09d6f.yaml b/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor d185bf/Card Lantern (2) b09d6f.yaml new file mode 100644 index 000000000..05e6b2eca --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor d185bf/Card Lantern (2) b09d6f.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: b09d6f +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Lantern (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.22927 + posY: 1.3569417 + posZ: -72.7008 + rotX: 0.0208075289 + rotY: 270.000641 + rotZ: 0.0167704 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor d185bf/Card Lucky! (2) 002455.yaml b/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor d185bf/Card Lucky! (2) 002455.yaml new file mode 100644 index 000000000..c9137fb57 --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor d185bf/Card Lucky! (2) 002455.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 209746 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: '002455' +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Lucky! (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 52.94443 + posY: 1.36414051 + posZ: -58.9204063 + rotX: 0.0208101645 + rotY: 269.999634 + rotZ: 0.0167727061 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor d185bf/Card Lure (1) 76b07c.yaml b/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor d185bf/Card Lure (1) 76b07c.yaml new file mode 100644 index 000000000..4b0b8c805 --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor d185bf/Card Lure (1) 76b07c.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 209736 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 76b07c +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Lure (1) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 52.94443 + posY: 1.36683357 + posZ: -49.7204056 + rotX: 0.0208097324 + rotY: 269.9997 + rotZ: 0.0167726651 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor d185bf/Card Lure (2) ad0934.yaml b/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor d185bf/Card Lure (2) ad0934.yaml new file mode 100644 index 000000000..46b38a3c4 --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor d185bf/Card Lure (2) ad0934.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: ad0934 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Lure (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 52.94443 + posY: 1.36346734 + posZ: -61.2204056 + rotX: 0.0208097268 + rotY: 269.999939 + rotZ: 0.0167730041 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor d185bf/Card Miss Doyle (1) b337ac.yaml b/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor d185bf/Card Miss Doyle (1) b337ac.yaml new file mode 100644 index 000000000..3cbadae72 --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor d185bf/Card Miss Doyle (1) b337ac.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Cat General of Ulthar +GMNotes: '' +GUID: b337ac +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Miss Doyle (1) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.22899 + posY: 1.36030781 + posZ: -61.2008171 + rotX: 0.02080982 + rotY: 269.999634 + rotZ: 0.0167727228 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor d185bf/Card Newspaper (2) ea2337.yaml b/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor d185bf/Card Newspaper (2) ea2337.yaml new file mode 100644 index 000000000..3e8ba14b0 --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor d185bf/Card Newspaper (2) ea2337.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 209747 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: ea2337 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Newspaper (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.2292328 + posY: 1.35626853 + posZ: -75.0008 + rotX: 0.0208078083 + rotY: 269.9997 + rotZ: 0.0167698413 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor d185bf/Card Nightmare Bauble (3) 1c8915.yaml b/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor d185bf/Card Nightmare Bauble (3) 1c8915.yaml new file mode 100644 index 000000000..06441b25a --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor d185bf/Card Nightmare Bauble (3) 1c8915.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Item. Charm. Cursed. +GMNotes: '' +GUID: 1c8915 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Nightmare Bauble (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.229248 + posY: 1.35290229 + posZ: -86.50075 + rotX: 0.02080994 + rotY: 269.993225 + rotZ: 0.0167675316 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor d185bf/Card Nothing Left to Lose (3) 6a8a9f.yaml b/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor d185bf/Card Nothing Left to Lose (3) 6a8a9f.yaml new file mode 100644 index 000000000..0cd4eab7d --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor d185bf/Card Nothing Left to Lose (3) 6a8a9f.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Spirit. +GMNotes: '' +GUID: 6a8a9f +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Nothing Left to Lose (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 52.94445 + posY: 1.35942793 + posZ: -75.02043 + rotX: 0.0208081827 + rotY: 269.998474 + rotZ: 0.0167695228 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor d185bf/Card Old Hunting Rifle (3) f69d7d.yaml b/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor d185bf/Card Old Hunting Rifle (3) f69d7d.yaml new file mode 100644 index 000000000..45ae2b839 --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor d185bf/Card Old Hunting Rifle (3) f69d7d.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 443800 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '4438': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025946328/561232524C8EAA4B4371B28652F78969E6ED6FFB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: f69d7d +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Old Hunting Rifle (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 40.6761169 + posY: 1.36103368 + posZ: -54.3129654 + rotX: 0.02080985 + rotY: 269.999725 + rotZ: 0.0167728178 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor d185bf/Card On Your Own (3) ce1a7d.yaml b/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor d185bf/Card On Your Own (3) ce1a7d.yaml new file mode 100644 index 000000000..733b76391 --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor d185bf/Card On Your Own (3) ce1a7d.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 209758 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: ce1a7d +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: On Your Own (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 40.6761131 + posY: 1.36305344 + posZ: -47.4129639 + rotX: 0.0208098236 + rotY: 269.999817 + rotZ: 0.0167728234 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor d185bf/Card Oops! (2) 9869ee.yaml b/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor d185bf/Card Oops! (2) 9869ee.yaml new file mode 100644 index 000000000..cb1de11ba --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor d185bf/Card Oops! (2) 9869ee.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 443905 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '4439': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025946328/561232524C8EAA4B4371B28652F78969E6ED6FFB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 9869ee +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Oops! (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 52.94443 + posY: 1.36144769 + posZ: -68.12031 + rotX: 0.02080764 + rotY: 269.999634 + rotZ: 0.0167699382 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor d185bf/Card Peter Sylvestre (2) 584914.yaml b/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor d185bf/Card Peter Sylvestre (2) 584914.yaml new file mode 100644 index 000000000..29ee78006 --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor d185bf/Card Peter Sylvestre (2) 584914.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 209752 +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 + UniqueBack: false +Description: Big Man on Campus +GMNotes: '' +GUID: '584914' +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Peter Sylvestre (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.2312431 + posY: 1.35424948 + posZ: -81.9009552 + rotX: 0.020808069 + rotY: 269.999664 + rotZ: 0.016769778 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor d185bf/Card Plucky (1) 2a37f3.yaml b/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor d185bf/Card Plucky (1) 2a37f3.yaml new file mode 100644 index 000000000..5e8e0db97 --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor d185bf/Card Plucky (1) 2a37f3.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 209734 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 2a37f3 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Plucky (1) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.2292328 + posY: 1.36434734 + posZ: -47.4009056 + rotX: 0.02081016 + rotY: 269.9998 + rotZ: 0.0167730618 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor d185bf/Card Rabbit's Foot (3) 00c4cc.yaml b/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor d185bf/Card Rabbit's Foot (3) 00c4cc.yaml new file mode 100644 index 000000000..d0f3b27a9 --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor d185bf/Card Rabbit's Foot (3) 00c4cc.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 209755 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 00c4cc +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Rabbit's Foot (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.21343 + posY: 1.3522265 + posZ: -88.79019 + rotX: 0.02080789 + rotY: 269.999756 + rotZ: 0.0167699717 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor d185bf/Card Rise to the Occasion (3) 0b9f53.yaml b/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor d185bf/Card Rise to the Occasion (3) 0b9f53.yaml new file mode 100644 index 000000000..259688a26 --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor d185bf/Card Rise to the Occasion (3) 0b9f53.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 443904 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '4439': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025946328/561232524C8EAA4B4371B28652F78969E6ED6FFB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 0b9f53 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Rise to the Occasion (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 58.0999336 + posY: 1.36599815 + posZ: -58.9711075 + rotX: 0.0208101925 + rotY: 269.999725 + rotZ: 0.0167728234 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor d185bf/Card Scavenging (2) cda2e6.yaml b/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor d185bf/Card Scavenging (2) cda2e6.yaml new file mode 100644 index 000000000..39cd030a8 --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor d185bf/Card Scavenging (2) cda2e6.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Talent. +GMNotes: '' +GUID: cda2e6 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Scavenging (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.2292023 + posY: 1.35559523 + posZ: -77.30074 + rotX: 0.0208159033 + rotY: 269.9709 + rotZ: 0.0167593043 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor d185bf/Card Scrapper (3) c6c157.yaml b/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor d185bf/Card Scrapper (3) c6c157.yaml new file mode 100644 index 000000000..ab5a01eff --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor d185bf/Card Scrapper (3) c6c157.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 209753 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: c6c157 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Scrapper (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.22912 + posY: 1.35357547 + posZ: -84.20073 + rotX: 0.0208078288 + rotY: 269.999725 + rotZ: 0.0167698562 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor d185bf/Card Sharp Vision (1) 4d9a97.yaml b/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor d185bf/Card Sharp Vision (1) 4d9a97.yaml new file mode 100644 index 000000000..6dfb5b999 --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor d185bf/Card Sharp Vision (1) 4d9a97.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Innate. Developed. +GMNotes: '' +GUID: 4d9a97 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Sharp Vision (1) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 58.0999336 + posY: 1.36801779 + posZ: -52.0710068 + rotX: 0.0208078641 + rotY: 270.0076 + rotZ: 0.0167757235 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor d185bf/Card Snare Trap (2) 234fae.yaml b/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor d185bf/Card Snare Trap (2) 234fae.yaml new file mode 100644 index 000000000..25457b246 --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor d185bf/Card Snare Trap (2) 234fae.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 209749 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 234fae +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Snare Trap (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 52.94443 + posY: 1.36077452 + posZ: -70.4202957 + rotX: 0.0208077766 + rotY: 269.999817 + rotZ: 0.016769873 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor d185bf/Card Stroke of Luck (2) bce471.yaml b/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor d185bf/Card Stroke of Luck (2) bce471.yaml new file mode 100644 index 000000000..58d1ad7b1 --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor d185bf/Card Stroke of Luck (2) bce471.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 209743 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: bce471 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Stroke of Luck (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 58.0999336 + posY: 1.36667132 + posZ: -56.67111 + rotX: 0.0208102316 + rotY: 269.999725 + rotZ: 0.016772978 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor d185bf/Card Survival Instinct (2) 1c3b8f.yaml b/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor d185bf/Card Survival Instinct (2) 1c3b8f.yaml new file mode 100644 index 000000000..54e4d6c8c --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor d185bf/Card Survival Instinct (2) 1c3b8f.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 209742 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 1c3b8f +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Survival Instinct (2) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 58.0999336 + posY: 1.36734462 + posZ: -54.3711052 + rotX: 0.0208087228 + rotY: 270.004181 + rotZ: 0.01677413 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor d185bf/Card Tennessee Sour Mash (3) 8cdf20.yaml b/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor d185bf/Card Tennessee Sour Mash (3) 8cdf20.yaml new file mode 100644 index 000000000..814c01bca --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor d185bf/Card Tennessee Sour Mash (3) 8cdf20.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Survivor +GMNotes: '' +GUID: 8cdf20 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Tennessee Sour Mash (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 40.6761131 + posY: 1.36170685 + posZ: -52.0129547 + rotX: 0.0208099633 + rotY: 269.999939 + rotZ: 0.01677307 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor d185bf/Card True Survivor (3) 6a04c3.yaml b/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor d185bf/Card True Survivor (3) 6a04c3.yaml new file mode 100644 index 000000000..cc2c42c68 --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor d185bf/Card True Survivor (3) 6a04c3.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 209759 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 6a04c3 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: True Survivor (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 52.9445 + posY: 1.35606182 + posZ: -86.52034 + rotX: 0.0208078027 + rotY: 269.999725 + rotZ: 0.01677034 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor d185bf/Card Try and Try Again (1) 35bbe8.yaml b/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor d185bf/Card Try and Try Again (1) 35bbe8.yaml new file mode 100644 index 000000000..5c7ca7e9e --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor d185bf/Card Try and Try Again (1) 35bbe8.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 443802 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '4438': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025946328/561232524C8EAA4B4371B28652F78969E6ED6FFB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 35bbe8 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Try and Try Again (1) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.2292328 + posY: 1.36300087 + posZ: -52.0009079 + rotX: 0.0208130181 + rotY: 269.9889 + rotZ: 0.0167688541 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor d185bf/Card Try and Try Again (3) b8f774.yaml b/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor d185bf/Card Try and Try Again (3) b8f774.yaml new file mode 100644 index 000000000..5758f8cc1 --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor d185bf/Card Try and Try Again (3) b8f774.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 209757 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: b8f774 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Try and Try Again (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.2132568 + posY: 1.351551 + posZ: -91.09752 + rotX: 0.0208080765 + rotY: 269.999573 + rotZ: 0.0167697426 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor d185bf/Card Will to Survive (3) ac7db0.yaml b/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor d185bf/Card Will to Survive (3) ac7db0.yaml new file mode 100644 index 000000000..f89d3e399 --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor d185bf/Card Will to Survive (3) ac7db0.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 209760 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: ac7db0 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Will to Survive (3) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 52.92868 + posY: 1.3553859 + posZ: -88.8097839 + rotX: 0.0208078139 + rotY: 269.999756 + rotZ: 0.0167697333 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor d185bf/Card Yaotl (1) 9f9e58.yaml b/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor d185bf/Card Yaotl (1) 9f9e58.yaml new file mode 100644 index 000000000..0c23f8ba4 --- /dev/null +++ b/unpacked/Custom_Model_Bag Survivor c02830/Custom_Model_Bag Survivor d185bf/Card Yaotl (1) 9f9e58.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 209740 +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 + UniqueBack: false +Description: Lost Son of Earth +GMNotes: '' +GUID: 9f9e58 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Yaotl (1) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.2292328 + posY: 1.35963464 + posZ: -63.5009079 + rotX: 0.0208080783 + rotY: 269.9999 + rotZ: 0.0167710055 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Taboo Cards 1fc4e0.yaml b/unpacked/Custom_Model_Bag Taboo Cards 1fc4e0.yaml new file mode 100644 index 000000000..18eda1766 --- /dev/null +++ b/unpacked/Custom_Model_Bag Taboo Cards 1fc4e0.yaml @@ -0,0 +1,63 @@ +Autoraise: true +ColorDiffuse: + b: 0.9999998 + g: 0.992160738 + r: 0.9999998 +ContainedObjects: +- !include 'Custom_Model_Bag Taboo Cards 1fc4e0/Card Key of Ys (5) (Taboo) 4de54d.yaml' +- !include 'Custom_Model_Bag Taboo Cards 1fc4e0/Card Ace in the Hole (3) (Taboo) 44d828.yaml' +- !include 'Custom_Model_Bag Taboo Cards 1fc4e0/Card Machete (Taboo) 3c356f.yaml' +- !include 'Custom_Model_Bag Taboo Cards 1fc4e0/Card Switchblade (2) (Taboo) c91d83.yaml' +- !include 'Custom_Model_Bag Taboo Cards 1fc4e0/Card Scrapper (3) (Taboo) cefc56.yaml' +- !include 'Custom_Model_Bag Taboo Cards 1fc4e0/Card Delve Too Deep (Taboo) 3747cd.yaml' +- !include 'Custom_Model_Bag Taboo Cards 1fc4e0/Card Dr. Milan Christopher (Taboo) + 0ff60d.yaml' +- !include 'Custom_Model_Bag Taboo Cards 1fc4e0/Card Higher Education (3) (Taboo) + 63270a.yaml' +- !include 'Custom_Model_Bag Taboo Cards 1fc4e0/Card Springfield M1903 (4) (Taboo) + b6f3c3.yaml' +- !include 'Custom_Model_Bag Taboo Cards 1fc4e0/Card Drawing Thin (Taboo) 068de3.yaml' +- !include 'Custom_Model_Bag Taboo Cards 1fc4e0/Card Quick Thinking (Taboo) 448d0c.yaml' +- !include 'Custom_Model_Bag Taboo Cards 1fc4e0/Card Double or Nothing (Taboo) 97f6dc.yaml' +- !include 'Custom_Model_Bag Taboo Cards 1fc4e0/Card Sleight of Hand (Taboo) 0c70c5.yaml' +- !include 'Custom_Model_Bag Taboo Cards 1fc4e0/Card Streetwise (3) (Taboo) cc5891.yaml' +- !include 'Custom_Model_Bag Taboo Cards 1fc4e0/Card Elusive (Taboo) 39fd29.yaml' +- !include 'Custom_Model_Bag Taboo Cards 1fc4e0/Card Rex Murphy (Taboo) 2feb4c.yaml' +CustomMesh: + CastShadows: true + ColliderURL: '' + Convex: true + DiffuseURL: http://i.imgur.com/e2u99eM.jpg + MaterialIndex: 3 + MeshURL: http://pastebin.com/raw.php?i=9a2hXxp5 + NormalURL: '' + TypeIndex: 6 +Description: '' +GMNotes: '' +GUID: 1fc4e0 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: true +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +MeshIndex: -1 +Name: Custom_Model_Bag +Nickname: Taboo Cards +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 39.0007324 + posY: 1.4296267 + posZ: -29.4424515 + rotX: 359.916443 + rotY: 285.003784 + rotZ: -0.004861692 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Taboo Cards 1fc4e0/Card Ace in the Hole (3) (Taboo) 44d828.yaml b/unpacked/Custom_Model_Bag Taboo Cards 1fc4e0/Card Ace in the Hole (3) (Taboo) 44d828.yaml new file mode 100644 index 000000000..88a553ddf --- /dev/null +++ b/unpacked/Custom_Model_Bag Taboo Cards 1fc4e0/Card Ace in the Hole (3) (Taboo) 44d828.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Trick +GMNotes: '' +GUID: 44d828 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Ace in the Hole (3) (Taboo) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 0.420271724 + posY: 2.05084014 + posZ: -142.461319 + rotX: 0.02082779 + rotY: 269.971558 + rotZ: 0.01674649 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Taboo Cards 1fc4e0/Card Delve Too Deep (Taboo) 3747cd.yaml b/unpacked/Custom_Model_Bag Taboo Cards 1fc4e0/Card Delve Too Deep (Taboo) 3747cd.yaml new file mode 100644 index 000000000..e25affd4a --- /dev/null +++ b/unpacked/Custom_Model_Bag Taboo Cards 1fc4e0/Card Delve Too Deep (Taboo) 3747cd.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 450603 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '4506': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065907888682568/7EEF5065450AA58C3D2BB88F4A83F0EF698E690B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: Insight. +GMNotes: '' +GUID: 3747cd +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Delve Too Deep (Taboo) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.92401028 + posY: 2.046767 + posZ: -150.984085 + rotX: 0.0208099522 + rotY: 269.996155 + rotZ: 0.0167682283 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Taboo Cards 1fc4e0/Card Double or Nothing (Taboo) 97f6dc.yaml b/unpacked/Custom_Model_Bag Taboo Cards 1fc4e0/Card Double or Nothing (Taboo) 97f6dc.yaml new file mode 100644 index 000000000..a9fbcd549 --- /dev/null +++ b/unpacked/Custom_Model_Bag Taboo Cards 1fc4e0/Card Double or Nothing (Taboo) 97f6dc.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Fortune +GMNotes: '' +GUID: 97f6dc +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Double or Nothing (Taboo) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -8.363007 + posY: 2.0464716 + posZ: -146.485626 + rotX: 0.0208088439 + rotY: 270.0 + rotZ: 0.01676928 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Taboo Cards 1fc4e0/Card Dr. Milan Christopher (Taboo) 0ff60d.yaml b/unpacked/Custom_Model_Bag Taboo Cards 1fc4e0/Card Dr. Milan Christopher (Taboo) 0ff60d.yaml new file mode 100644 index 000000000..46302ae0c --- /dev/null +++ b/unpacked/Custom_Model_Bag Taboo Cards 1fc4e0/Card Dr. Milan Christopher (Taboo) 0ff60d.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 450504 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '4505': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065907888682568/7EEF5065450AA58C3D2BB88F4A83F0EF698E690B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: Professor of Entomology +GMNotes: '' +GUID: 0ff60d +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Dr. Milan Christopher (Taboo) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -4.096759 + posY: 2.04794431 + posZ: -146.74707 + rotX: 0.0208088383 + rotY: 270.0 + rotZ: 0.0167695712 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Taboo Cards 1fc4e0/Card Drawing Thin (Taboo) 068de3.yaml b/unpacked/Custom_Model_Bag Taboo Cards 1fc4e0/Card Drawing Thin (Taboo) 068de3.yaml new file mode 100644 index 000000000..62baf7394 --- /dev/null +++ b/unpacked/Custom_Model_Bag Taboo Cards 1fc4e0/Card Drawing Thin (Taboo) 068de3.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Talent. +GMNotes: '' +GUID: 068de3 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Drawing Thin (Taboo) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -8.380569 + posY: 2.047788 + posZ: -141.966431 + rotX: 0.02081316 + rotY: 269.993073 + rotZ: 0.01677243 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Taboo Cards 1fc4e0/Card Elusive (Taboo) 39fd29.yaml b/unpacked/Custom_Model_Bag Taboo Cards 1fc4e0/Card Elusive (Taboo) 39fd29.yaml new file mode 100644 index 000000000..822669d7e --- /dev/null +++ b/unpacked/Custom_Model_Bag Taboo Cards 1fc4e0/Card Elusive (Taboo) 39fd29.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Tactic +GMNotes: '' +GUID: 39fd29 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Elusive (Taboo) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -1.574487 + posY: 2.14564872 + posZ: -137.406921 + rotX: 356.5666 + rotY: 269.973724 + rotZ: 0.02035956 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Taboo Cards 1fc4e0/Card Higher Education (3) (Taboo) 63270a.yaml b/unpacked/Custom_Model_Bag Taboo Cards 1fc4e0/Card Higher Education (3) (Taboo) 63270a.yaml new file mode 100644 index 000000000..af7ec2b22 --- /dev/null +++ b/unpacked/Custom_Model_Bag Taboo Cards 1fc4e0/Card Higher Education (3) (Taboo) 63270a.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Talent. +GMNotes: '' +GUID: 63270a +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Higher Education (3) (Taboo) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -4.253335 + posY: 2.0492 + posZ: -142.2626 + rotX: 0.0208109953 + rotY: 270.0 + rotZ: 0.0167711284 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Taboo Cards 1fc4e0/Card Key of Ys (5) (Taboo) 4de54d.yaml b/unpacked/Custom_Model_Bag Taboo Cards 1fc4e0/Card Key of Ys (5) (Taboo) 4de54d.yaml new file mode 100644 index 000000000..5b58ff618 --- /dev/null +++ b/unpacked/Custom_Model_Bag Taboo Cards 1fc4e0/Card Key of Ys (5) (Taboo) 4de54d.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Let the Storm Rage +GMNotes: '' +GUID: 4de54d +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Key of Ys (5) (Taboo) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 0.6145523 + posY: 2.04957533 + posZ: -147.020874 + rotX: 0.0208090357 + rotY: 270.0 + rotZ: 0.016769005 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Taboo Cards 1fc4e0/Card Machete (Taboo) 3c356f.yaml b/unpacked/Custom_Model_Bag Taboo Cards 1fc4e0/Card Machete (Taboo) 3c356f.yaml new file mode 100644 index 000000000..e899ed7aa --- /dev/null +++ b/unpacked/Custom_Model_Bag Taboo Cards 1fc4e0/Card Machete (Taboo) 3c356f.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 449910 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '4499': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065907888682568/7EEF5065450AA58C3D2BB88F4A83F0EF698E690B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: Item. Weapon. Melee. +GMNotes: '' +GUID: 3c356f +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Machete (Taboo) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -12.4025307 + posY: 2.04771352 + posZ: -137.229858 + rotX: 0.0208069142 + rotY: 270.00354 + rotZ: 0.01677032 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Taboo Cards 1fc4e0/Card Quick Thinking (Taboo) 448d0c.yaml b/unpacked/Custom_Model_Bag Taboo Cards 1fc4e0/Card Quick Thinking (Taboo) 448d0c.yaml new file mode 100644 index 000000000..85f04b245 --- /dev/null +++ b/unpacked/Custom_Model_Bag Taboo Cards 1fc4e0/Card Quick Thinking (Taboo) 448d0c.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Innate. +GMNotes: '' +GUID: 448d0c +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Quick Thinking (Taboo) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -8.462173 + posY: 2.0453043 + posZ: -150.350342 + rotX: 0.0208090786 + rotY: 270.0 + rotZ: 0.0167696271 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Taboo Cards 1fc4e0/Card Rex Murphy (Taboo) 2feb4c.yaml b/unpacked/Custom_Model_Bag Taboo Cards 1fc4e0/Card Rex Murphy (Taboo) 2feb4c.yaml new file mode 100644 index 000000000..e749629eb --- /dev/null +++ b/unpacked/Custom_Model_Bag Taboo Cards 1fc4e0/Card Rex Murphy (Taboo) 2feb4c.yaml @@ -0,0 +1,42 @@ +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/1016065907888685525/36510337B6E7EC46984AE8AE341BA5E3DFB172F3/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065907888685007/A30CCF98600F1E9FA0F3EE674FE35BCD86CB6ECB/ + NumHeight: 2 + NumWidth: 2 + UniqueBack: true +Description: The Reporter +GMNotes: '' +GUID: 2feb4c +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Rex Murphy (Taboo) +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 8.361772 + posY: 2.04378748 + posZ: -131.683487 + rotX: 0.0167634934 + rotY: 179.977158 + rotZ: 359.9792 + scaleX: 1.1 + scaleY: 1.0 + scaleZ: 1.1 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Taboo Cards 1fc4e0/Card Scrapper (3) (Taboo) cefc56.yaml b/unpacked/Custom_Model_Bag Taboo Cards 1fc4e0/Card Scrapper (3) (Taboo) cefc56.yaml new file mode 100644 index 000000000..57dff0f38 --- /dev/null +++ b/unpacked/Custom_Model_Bag Taboo Cards 1fc4e0/Card Scrapper (3) (Taboo) cefc56.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Talent. +GMNotes: '' +GUID: cefc56 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Scrapper (3) (Taboo) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -4.002507 + posY: 2.050707 + posZ: -137.426056 + rotX: 0.0177024268 + rotY: 269.9695 + rotZ: 0.0163578913 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Taboo Cards 1fc4e0/Card Sleight of Hand (Taboo) 0c70c5.yaml b/unpacked/Custom_Model_Bag Taboo Cards 1fc4e0/Card Sleight of Hand (Taboo) 0c70c5.yaml new file mode 100644 index 000000000..59c238f36 --- /dev/null +++ b/unpacked/Custom_Model_Bag Taboo Cards 1fc4e0/Card Sleight of Hand (Taboo) 0c70c5.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Trick. +GMNotes: '' +GUID: 0c70c5 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Sleight of Hand (Taboo) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -12.7335052 + posY: 2.044921 + posZ: -146.360016 + rotX: 0.0208089966 + rotY: 270.000031 + rotZ: 0.0167691428 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Taboo Cards 1fc4e0/Card Springfield M1903 (4) (Taboo) b6f3c3.yaml b/unpacked/Custom_Model_Bag Taboo Cards 1fc4e0/Card Springfield M1903 (4) (Taboo) b6f3c3.yaml new file mode 100644 index 000000000..1470799a0 --- /dev/null +++ b/unpacked/Custom_Model_Bag Taboo Cards 1fc4e0/Card Springfield M1903 (4) (Taboo) b6f3c3.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Item. Weapon. Firearm. +GMNotes: '' +GUID: b6f3c3 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Springfield M1903 (4) (Taboo) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -12.8083076 + posY: 2.04639125 + posZ: -141.245087 + rotX: 0.0208094455 + rotY: 269.999939 + rotZ: 0.01676889 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Taboo Cards 1fc4e0/Card Streetwise (3) (Taboo) cc5891.yaml b/unpacked/Custom_Model_Bag Taboo Cards 1fc4e0/Card Streetwise (3) (Taboo) cc5891.yaml new file mode 100644 index 000000000..616211e01 --- /dev/null +++ b/unpacked/Custom_Model_Bag Taboo Cards 1fc4e0/Card Streetwise (3) (Taboo) cc5891.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Talent. +GMNotes: '' +GUID: cc5891 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Streetwise (3) (Taboo) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -12.668129 + posY: 2.043735 + posZ: -150.492142 + rotX: 0.02080916 + rotY: 269.999969 + rotZ: 0.0167690627 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Taboo Cards 1fc4e0/Card Switchblade (2) (Taboo) c91d83.yaml b/unpacked/Custom_Model_Bag Taboo Cards 1fc4e0/Card Switchblade (2) (Taboo) c91d83.yaml new file mode 100644 index 000000000..c9da39e56 --- /dev/null +++ b/unpacked/Custom_Model_Bag Taboo Cards 1fc4e0/Card Switchblade (2) (Taboo) c91d83.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Item. Weapon. Melee. Illicit. +GMNotes: '' +GUID: c91d83 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Switchblade (2) (Taboo) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -7.93049526 + posY: 2.04920864 + posZ: -137.670837 + rotX: 0.0208072718 + rotY: 269.9999 + rotZ: 0.01676945 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 0dcbe8.ttslua b/unpacked/Custom_Model_Bag The Circle Undone 0dcbe8.ttslua new file mode 100644 index 000000000..5dff2f1d7 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 0dcbe8.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,3,7}, rotation={0,0,0}, height=700, width=2000, + font_size=700, 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 +12 + 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=800, width=800, + 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,3,7}, rotation={0,0,0}, height=700, width=2000, + font_size=700, color={0,0,0}, font_color={1,1,1} + }) + self.createButton({ + label="Submit", click_function="buttonClick_submit", function_owner=self, + position={0,3,-7}, rotation={0,0,0}, height=700, width=2000, + font_size=700, color={0,0,0}, font_color={1,1,1} + }) +-- self.createButton({ +-- label="Reset", click_function="buttonClick_reset", function_owner=self, +-- position={3,2.5,6}, rotation={0,0,0}, height=550, width=1100, +-- font_size=400, 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={2.4,3,7}, rotation={0,0,0}, height=850, width=2000, + font_size=700, color={0,0,0}, font_color={1,1,1} + }) + self.createButton({ + label="Recall", click_function="buttonClick_recall", function_owner=self, + position={-2.4,3,7}, rotation={0,0,0}, height=850, width=2200, + font_size=700, 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.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 \ No newline at end of file diff --git a/unpacked/Custom_Model_Bag The Circle Undone 0dcbe8.yaml b/unpacked/Custom_Model_Bag The Circle Undone 0dcbe8.yaml new file mode 100644 index 000000000..e4cf8521c --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 0dcbe8.yaml @@ -0,0 +1,106 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +ContainedObjects: +- !include 'Custom_Model_Bag The Circle Undone 0dcbe8/Custom_Model Survivor turn token + 06b093.yaml' +- !include 'Custom_Model_Bag The Circle Undone 0dcbe8/Card Joe Diamond 07c091.yaml' +- !include 'Custom_Model_Bag The Circle Undone 0dcbe8/Card Marie Lambeau 0987f6.yaml' +- !include 'Custom_Model_Bag The Circle Undone 0dcbe8/Custom_Model Turn token 12aab7.yaml' +- !include 'Custom_Model_Bag The Circle Undone 0dcbe8/Custom_Model Survivor turn token + 290c75.yaml' +- !include 'Custom_Model_Bag The Circle Undone 0dcbe8/Card Diana Stanley 2c0d63.yaml' +- !include 'Custom_Model_Bag The Circle Undone 0dcbe8/Card Preston Fairmont 498c92.yaml' +- !include 'Custom_Model_Bag The Circle Undone 0dcbe8/Card Rita Young 49d0b5.yaml' +- !include 'Custom_Model_Bag The Circle Undone 0dcbe8/Custom_Model_Bag starter deck + & cards 4fa9f0.yaml' +- !include 'Custom_Model_Bag The Circle Undone 0dcbe8/Card Joe Diamond 546051.yaml' +- !include 'Custom_Model_Bag The Circle Undone 0dcbe8/Custom_Model Survivor turn token + 57ed69.yaml' +- !include 'Custom_Model_Bag The Circle Undone 0dcbe8/Deck Carolyn Fern 6414c4.yaml' +- !include 'Custom_Model_Bag The Circle Undone 0dcbe8/Custom_Model Turn token 6cb8b7.yaml' +- !include 'Custom_Model_Bag The Circle Undone 0dcbe8/Custom_Model_Bag starter deck + & cards 7038f1.yaml' +- !include 'Custom_Model_Bag The Circle Undone 0dcbe8/Custom_Model Survivor turn token + 74efa5.yaml' +- !include 'Custom_Model_Bag The Circle Undone 0dcbe8/Custom_Model Survivor turn token + 759bf5.yaml' +- !include 'Custom_Model_Bag The Circle Undone 0dcbe8/Custom_Model Turn token 77ae77.yaml' +- !include 'Custom_Model_Bag The Circle Undone 0dcbe8/Card Diana Stanley 7b381e.yaml' +- !include 'Custom_Model_Bag The Circle Undone 0dcbe8/Custom_Model Survivor turn token + 7e14e1.yaml' +- !include 'Custom_Model_Bag The Circle Undone 0dcbe8/Custom_Model_Bag starter deck + & cards 7e8db4.yaml' +- !include 'Custom_Model_Bag The Circle Undone 0dcbe8/Custom_Model Turn token 800843.yaml' +- !include 'Custom_Model_Bag The Circle Undone 0dcbe8/Custom_Model Survivor turn token + 8551a0.yaml' +- !include 'Custom_Model_Bag The Circle Undone 0dcbe8/Custom_Model_Bag starter deck + & cards 90ffcd.yaml' +- !include 'Custom_Model_Bag The Circle Undone 0dcbe8/Custom_Model_Bag starter deck + & cards 97c956.yaml' +- !include 'Custom_Model_Bag The Circle Undone 0dcbe8/Custom_Model Survivor turn token + 98f4b5.yaml' +- !include 'Custom_Model_Bag The Circle Undone 0dcbe8/Custom_Model Turn token a19874.yaml' +- !include 'Custom_Model_Bag The Circle Undone 0dcbe8/Deck Carolyn Fern aa0875.yaml' +- !include 'Custom_Model_Bag The Circle Undone 0dcbe8/Custom_Model Turn token ab0486.yaml' +- !include 'Custom_Model_Bag The Circle Undone 0dcbe8/Card Marie Lambeau b4a195.yaml' +- !include 'Custom_Model_Bag The Circle Undone 0dcbe8/Custom_Model_Bag starter deck + & cards b94c04.yaml' +- !include 'Custom_Model_Bag The Circle Undone 0dcbe8/Custom_Model Survivor turn token + df079f.yaml' +- !include 'Custom_Model_Bag The Circle Undone 0dcbe8/Custom_Model Survivor turn token + e2aac1.yaml' +- !include 'Custom_Model_Bag The Circle Undone 0dcbe8/Custom_Model Survivor turn token + e4be8a.yaml' +- !include 'Custom_Model_Bag The Circle Undone 0dcbe8/Card Rita Young e5683e.yaml' +- !include 'Custom_Model_Bag The Circle Undone 0dcbe8/Card Preston Fairmont f4bdf0.yaml' +- !include 'Custom_Model_Bag The Circle Undone 0dcbe8/Custom_Model Survivor turn token + fb6232.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/762723517669843863/DC0750A38111062909FEDA1BC20685895A574A54/ + MaterialIndex: 3 + MeshURL: https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/core_h_MSH.obj + NormalURL: '' + TypeIndex: 6 +Description: '' +GMNotes: '' +GUID: 0dcbe8 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Model_Bag The Circle Undone 0dcbe8.ttslua' +LuaScriptState: '{"ml":{"06b093":{"lock":false,"pos":{"x":-16.6386,"y":1.3564,"z":-80.069},"rot":{"x":0.0208,"y":270.0001,"z":0.0168}},"07c091":{"lock":false,"pos":{"x":-22.6158,"y":1.3724,"z":-57.7623},"rot":{"x":0.0168,"y":179.9901,"z":359.9792}},"0987f6":{"lock":false,"pos":{"x":-22.6158,"y":1.3655,"z":-81.3393},"rot":{"x":0.0168,"y":179.9858,"z":359.9792}},"12aab7":{"lock":false,"pos":{"x":-16.639,"y":1.361,"z":-64.3414},"rot":{"x":0.0208,"y":269.9995,"z":0.0168}},"290c75":{"lock":false,"pos":{"x":-16.639,"y":1.3633,"z":-56.5219},"rot":{"x":0.0208,"y":270.0144,"z":0.0168}},"2c0d63":{"lock":false,"pos":{"x":-19.2925,"y":1.3691,"z":-73.4624},"rot":{"x":0.0208,"y":269.9922,"z":0.0168}},"498c92":{"lock":false,"pos":{"x":-19.2948,"y":1.3714,"z":-65.5815},"rot":{"x":0.0208,"y":269.9871,"z":0.0168}},"49d0b5":{"lock":false,"pos":{"x":-19.2985,"y":1.3645,"z":-89.1737},"rot":{"x":0.0208,"y":269.983,"z":0.0168}},"4fa9f0":{"lock":false,"pos":{"x":-26.299,"y":1.2744,"z":-57.7619},"rot":{"x":359.9792,"y":90.0036,"z":359.9832}},"546051":{"lock":false,"pos":{"x":-19.299,"y":1.3736,"z":-57.7542},"rot":{"x":0.0208,"y":269.9838,"z":0.0168}},"57ed69":{"lock":false,"pos":{"x":-16.6389,"y":1.3625,"z":-58.9818},"rot":{"x":0.0208,"y":270,"z":0.0168}},"6414c4":{"lock":false,"pos":{"x":-19.2989,"y":1.3828,"z":-49.9567},"rot":{"x":0.0208,"y":270.0118,"z":0.0168}},"6cb8b7":{"lock":false,"pos":{"x":-16.6385,"y":1.3541,"z":-87.9138},"rot":{"x":0.0208,"y":269.985,"z":0.0168}},"7038f1":{"lock":false,"pos":{"x":-26.2984,"y":1.2652,"z":-89.1737},"rot":{"x":359.9792,"y":89.9975,"z":359.9832}},"74efa5":{"lock":false,"pos":{"x":-16.6385,"y":1.3583,"z":-73.4665},"rot":{"x":0.0208,"y":270.0452,"z":0.0168}},"759bf5":{"lock":false,"pos":{"x":-16.639,"y":1.3579,"z":-74.6965},"rot":{"x":0.0208,"y":269.9665,"z":0.0168}},"77ae77":{"lock":false,"pos":{"x":-16.639,"y":1.3603,"z":-66.8114},"rot":{"x":0.0208,"y":269.9974,"z":0.0168}},"7b381e":{"lock":false,"pos":{"x":-22.6146,"y":1.3678,"z":-73.4669},"rot":{"x":0.0168,"y":179.9857,"z":359.9792}},"7e14e1":{"lock":false,"pos":{"x":-16.639,"y":1.3656,"z":-48.6729},"rot":{"x":0.0208,"y":270.0007,"z":0.0168}},"7e8db4":{"lock":false,"pos":{"x":-26.2985,"y":1.2675,"z":-81.3388},"rot":{"x":359.9792,"y":89.9837,"z":359.9832}},"800843":{"lock":false,"pos":{"x":-16.6383,"y":1.3537,"z":-89.1397},"rot":{"x":0.0208,"y":270.0267,"z":0.0168}},"8551a0":{"lock":false,"pos":{"x":-16.6391,"y":1.356,"z":-81.339},"rot":{"x":0.0208,"y":270.0159,"z":0.0168}},"90ffcd":{"lock":false,"pos":{"x":-26.2991,"y":1.2698,"z":-73.4665},"rot":{"x":359.9792,"y":89.9841,"z":359.9832}},"97c956":{"lock":false,"pos":{"x":-26.2989,"y":1.2767,"z":-49.9578},"rot":{"x":359.9792,"y":90.0023,"z":359.9832}},"98f4b5":{"lock":false,"pos":{"x":-16.639,"y":1.3629,"z":-57.7519},"rot":{"x":0.0208,"y":269.9753,"z":0.0168}},"a19874":{"lock":false,"pos":{"x":-16.6384,"y":1.3534,"z":-90.3837},"rot":{"x":0.0208,"y":270.0001,"z":0.0168}},"aa0875":{"lock":false,"pos":{"x":-22.6128,"y":1.3816,"z":-49.959},"rot":{"x":0.0168,"y":179.9808,"z":359.9792}},"ab0486":{"lock":false,"pos":{"x":-16.6392,"y":1.3606,"z":-65.5811},"rot":{"x":0.0208,"y":269.9982,"z":0.0168}},"b4a195":{"lock":false,"pos":{"x":-19.2987,"y":1.3667,"z":-81.339},"rot":{"x":0.0208,"y":270.0094,"z":0.0168}},"b94c04":{"lock":false,"pos":{"x":-26.2991,"y":1.2721,"z":-65.5814},"rot":{"x":359.9792,"y":90.0109,"z":359.9832}},"df079f":{"lock":false,"pos":{"x":-16.6383,"y":1.3556,"z":-82.5394},"rot":{"x":0.0208,"y":270.0002,"z":0.0168}},"e2aac1":{"lock":false,"pos":{"x":-16.639,"y":1.3648,"z":-51.1416},"rot":{"x":0.0208,"y":270.0373,"z":0.0168}},"e4be8a":{"lock":false,"pos":{"x":-16.6392,"y":1.3587,"z":-72.2263},"rot":{"x":0.0208,"y":270.0004,"z":0.0168}},"e5683e":{"lock":false,"pos":{"x":-22.6157,"y":1.3632,"z":-89.174},"rot":{"x":0.0168,"y":179.9837,"z":359.9792}},"f4bdf0":{"lock":false,"pos":{"x":-22.6146,"y":1.3701,"z":-65.5964},"rot":{"x":0.0168,"y":179.9885,"z":359.9792}},"fb6232":{"lock":false,"pos":{"x":-16.639,"y":1.3652,"z":-49.9113},"rot":{"x":0.0208,"y":270.0219,"z":0.0168}}}}' +MaterialIndex: -1 +MeshIndex: -1 +Name: Custom_Model_Bag +Nickname: The Circle Undone +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -9.74272251 + posY: 1.300049 + posZ: -76.0554 + rotX: 0.0208109189 + rotY: 269.9984 + rotZ: 0.01676983 + scaleX: 0.5 + scaleY: 0.139652729 + scaleZ: 0.5 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 0dcbe8/Card Diana Stanley 2c0d63.yaml b/unpacked/Custom_Model_Bag The Circle Undone 0dcbe8/Card Diana Stanley 2c0d63.yaml new file mode 100644 index 000000000..f53273cbe --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 0dcbe8/Card Diana Stanley 2c0d63.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 273001 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2730': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1011562618093846975/4726098952C64103F2C211D202FFDD40D9D988BB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869050066760/0DE2BD4589CC8C2F3D26C2900A17ED7A6483062F/ + NumHeight: 3 + NumWidth: 7 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 2c0d63 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Diana Stanley +SidewaysCard: false +Snap: false +Sticky: true +Tooltip: true +Transform: + posX: -19.2925 + posY: 1.36905324 + posZ: -73.4624 + rotX: 0.0208132453 + rotY: 269.9922 + rotZ: 0.0167671815 + scaleX: 0.6 + scaleY: 1.0 + scaleZ: 0.6 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 0dcbe8/Card Diana Stanley 7b381e.yaml b/unpacked/Custom_Model_Bag The Circle Undone 0dcbe8/Card Diana Stanley 7b381e.yaml new file mode 100644 index 000000000..60a9ecfc1 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 0dcbe8/Card Diana Stanley 7b381e.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 272125 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2721': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1011562618093845464/80687C9319FA2015F3D9F7CBEB4C55FBF045B27D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1011562618093845971/A678BD374EC4DE672206B5EF7EB57DC885BC839C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: The Redeemed Cultist +GMNotes: '' +GUID: 7b381e +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Diana Stanley +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -22.6146 + posY: 1.36784542 + posZ: -73.4669 + rotX: 0.0167665351 + rotY: 179.985672 + rotZ: 359.9792 + scaleX: 1.1 + scaleY: 1.0 + scaleZ: 1.1 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 0dcbe8/Card Joe Diamond 07c091.yaml b/unpacked/Custom_Model_Bag The Circle Undone 0dcbe8/Card Joe Diamond 07c091.yaml new file mode 100644 index 000000000..914b1b9f8 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 0dcbe8/Card Joe Diamond 07c091.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 271822 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2718': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1011562618093845464/80687C9319FA2015F3D9F7CBEB4C55FBF045B27D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1011562618093845971/A678BD374EC4DE672206B5EF7EB57DC885BC839C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: The Private Investigator +GMNotes: '' +GUID: 07c091 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Joe Diamond +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -22.6158 + posY: 1.372442 + posZ: -57.7623 + rotX: 0.0167681854 + rotY: 179.9901 + rotZ: 359.9792 + scaleX: 1.1 + scaleY: 1.0 + scaleZ: 1.1 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 0dcbe8/Card Joe Diamond 546051.yaml b/unpacked/Custom_Model_Bag The Circle Undone 0dcbe8/Card Joe Diamond 546051.yaml new file mode 100644 index 000000000..195fe5177 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 0dcbe8/Card Joe Diamond 546051.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 272903 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2729': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1011562618093846975/4726098952C64103F2C211D202FFDD40D9D988BB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869050066760/0DE2BD4589CC8C2F3D26C2900A17ED7A6483062F/ + NumHeight: 3 + NumWidth: 7 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: '546051' +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Joe Diamond +SidewaysCard: false +Snap: false +Sticky: true +Tooltip: true +Transform: + posX: -19.299 + posY: 1.37364888 + posZ: -57.7542 + rotX: 0.02081521 + rotY: 269.983765 + rotZ: 0.0167640168 + scaleX: 0.6 + scaleY: 1.0 + scaleZ: 0.6 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 0dcbe8/Card Marie Lambeau 0987f6.yaml b/unpacked/Custom_Model_Bag The Circle Undone 0dcbe8/Card Marie Lambeau 0987f6.yaml new file mode 100644 index 000000000..d0de2a026 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 0dcbe8/Card Marie Lambeau 0987f6.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 272226 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2722': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1011562618093845464/80687C9319FA2015F3D9F7CBEB4C55FBF045B27D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1011562618093845971/A678BD374EC4DE672206B5EF7EB57DC885BC839C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: The Entertainer +GMNotes: '' +GUID: 0987f6 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Marie Lambeau +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -22.6158 + posY: 1.36554062 + posZ: -81.3393 + rotX: 0.01676639 + rotY: 179.9858 + rotZ: 359.9792 + scaleX: 1.1 + scaleY: 1.0 + scaleZ: 1.1 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 0dcbe8/Card Marie Lambeau b4a195.yaml b/unpacked/Custom_Model_Bag The Circle Undone 0dcbe8/Card Marie Lambeau b4a195.yaml new file mode 100644 index 000000000..92f0137ca --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 0dcbe8/Card Marie Lambeau b4a195.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 272705 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2727': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1011562618093846975/4726098952C64103F2C211D202FFDD40D9D988BB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869050066760/0DE2BD4589CC8C2F3D26C2900A17ED7A6483062F/ + NumHeight: 3 + NumWidth: 7 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: b4a195 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Marie Lambeau +SidewaysCard: false +Snap: false +Sticky: true +Tooltip: true +Transform: + posX: -19.2987 + posY: 1.36674547 + posZ: -81.339 + rotX: 0.0208077654 + rotY: 270.00943 + rotZ: 0.0167737585 + scaleX: 0.6 + scaleY: 1.0 + scaleZ: 0.6 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 0dcbe8/Card Preston Fairmont 498c92.yaml b/unpacked/Custom_Model_Bag The Circle Undone 0dcbe8/Card Preston Fairmont 498c92.yaml new file mode 100644 index 000000000..a35e69248 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 0dcbe8/Card Preston Fairmont 498c92.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 272804 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2728': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1011562618093846975/4726098952C64103F2C211D202FFDD40D9D988BB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869050066760/0DE2BD4589CC8C2F3D26C2900A17ED7A6483062F/ + NumHeight: 3 + NumWidth: 7 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 498c92 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Preston Fairmont +SidewaysCard: false +Snap: false +Sticky: true +Tooltip: true +Transform: + posX: -19.2948 + posY: 1.37135935 + posZ: -65.5815 + rotX: 0.0208143853 + rotY: 269.987061 + rotZ: 0.0167653915 + scaleX: 0.6 + scaleY: 1.0 + scaleZ: 0.6 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 0dcbe8/Card Preston Fairmont f4bdf0.yaml b/unpacked/Custom_Model_Bag The Circle Undone 0dcbe8/Card Preston Fairmont f4bdf0.yaml new file mode 100644 index 000000000..d7a6bb806 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 0dcbe8/Card Preston Fairmont f4bdf0.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 271923 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2719': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1011562618093845464/80687C9319FA2015F3D9F7CBEB4C55FBF045B27D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1011562618093845971/A678BD374EC4DE672206B5EF7EB57DC885BC839C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: The Millionaire +GMNotes: '' +GUID: f4bdf0 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Preston Fairmont +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -22.6146 + posY: 1.37014925 + posZ: -65.5964 + rotX: 0.0167677049 + rotY: 179.988525 + rotZ: 359.9792 + scaleX: 1.1 + scaleY: 1.0 + scaleZ: 1.1 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 0dcbe8/Card Rita Young 49d0b5.yaml b/unpacked/Custom_Model_Bag The Circle Undone 0dcbe8/Card Rita Young 49d0b5.yaml new file mode 100644 index 000000000..0a50c02e2 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 0dcbe8/Card Rita Young 49d0b5.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 273100 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2731': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1011562618093846975/4726098952C64103F2C211D202FFDD40D9D988BB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869050066760/0DE2BD4589CC8C2F3D26C2900A17ED7A6483062F/ + NumHeight: 3 + NumWidth: 7 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 49d0b5 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Rita Young +SidewaysCard: false +Snap: false +Sticky: true +Tooltip: true +Transform: + posX: -19.2985 + posY: 1.36445212 + posZ: -89.1737 + rotX: 0.0208155029 + rotY: 269.983032 + rotZ: 0.0167640522 + scaleX: 0.6 + scaleY: 1.0 + scaleZ: 0.6 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 0dcbe8/Card Rita Young e5683e.yaml b/unpacked/Custom_Model_Bag The Circle Undone 0dcbe8/Card Rita Young e5683e.yaml new file mode 100644 index 000000000..35ec7fa0b --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 0dcbe8/Card Rita Young e5683e.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 272024 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2720': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1011562618093845464/80687C9319FA2015F3D9F7CBEB4C55FBF045B27D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1011562618093845971/A678BD374EC4DE672206B5EF7EB57DC885BC839C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: The Athlete +GMNotes: '' +GUID: e5683e +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Rita Young +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -22.6157 + posY: 1.36324739 + posZ: -89.174 + rotX: 0.0167658832 + rotY: 179.9837 + rotZ: 359.9792 + scaleX: 1.1 + scaleY: 1.0 + scaleZ: 1.1 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 0dcbe8/Custom_Model Survivor turn token 06b093.yaml b/unpacked/Custom_Model_Bag The Circle Undone 0dcbe8/Custom_Model Survivor turn token 06b093.yaml new file mode 100644 index 000000000..1cfe6d615 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 0dcbe8/Custom_Model Survivor turn token 06b093.yaml @@ -0,0 +1,41 @@ +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: '' +GMNotes: '' +GUID: 06b093 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Model +Nickname: Survivor turn token +Snap: true +Sticky: true +Tooltip: false +Transform: + posX: -16.6386 + posY: 1.35636973 + posZ: -80.069 + rotX: 0.0208168589 + rotY: 270.000122 + rotZ: 0.01676793 + scaleX: 0.45 + scaleY: 0.6 + scaleZ: 0.45 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 0dcbe8/Custom_Model Survivor turn token 290c75.yaml b/unpacked/Custom_Model_Bag The Circle Undone 0dcbe8/Custom_Model Survivor turn token 290c75.yaml new file mode 100644 index 000000000..12f4bea8b --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 0dcbe8/Custom_Model Survivor turn token 290c75.yaml @@ -0,0 +1,41 @@ +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: '' +GMNotes: '' +GUID: 290c75 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Model +Nickname: Survivor turn token +Snap: true +Sticky: true +Tooltip: false +Transform: + posX: -16.639 + posY: 1.363262 + posZ: -56.5219 + rotX: 0.0208123028 + rotY: 270.0144 + rotZ: 0.016772978 + scaleX: 0.45 + scaleY: 0.6 + scaleZ: 0.45 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 0dcbe8/Custom_Model Survivor turn token 57ed69.yaml b/unpacked/Custom_Model_Bag The Circle Undone 0dcbe8/Custom_Model Survivor turn token 57ed69.yaml new file mode 100644 index 000000000..5f40d4a76 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 0dcbe8/Custom_Model Survivor turn token 57ed69.yaml @@ -0,0 +1,41 @@ +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: '' +GMNotes: '' +GUID: 57ed69 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Model +Nickname: Survivor turn token +Snap: true +Sticky: true +Tooltip: false +Transform: + posX: -16.6389 + posY: 1.362542 + posZ: -58.9818 + rotX: 0.0208160188 + rotY: 270.0 + rotZ: 0.0167680457 + scaleX: 0.45 + scaleY: 0.6 + scaleZ: 0.45 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 0dcbe8/Custom_Model Survivor turn token 74efa5.yaml b/unpacked/Custom_Model_Bag The Circle Undone 0dcbe8/Custom_Model Survivor turn token 74efa5.yaml new file mode 100644 index 000000000..e37501c8b --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 0dcbe8/Custom_Model Survivor turn token 74efa5.yaml @@ -0,0 +1,41 @@ +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: '' +GMNotes: '' +GUID: 74efa5 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Model +Nickname: Survivor turn token +Snap: true +Sticky: true +Tooltip: false +Transform: + posX: -16.6385 + posY: 1.35830224 + posZ: -73.4665 + rotX: 0.0208031256 + rotY: 270.045166 + rotZ: 0.01678439 + scaleX: 0.45 + scaleY: 0.6 + scaleZ: 0.45 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 0dcbe8/Custom_Model Survivor turn token 759bf5.yaml b/unpacked/Custom_Model_Bag The Circle Undone 0dcbe8/Custom_Model Survivor turn token 759bf5.yaml new file mode 100644 index 000000000..2cc828a50 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 0dcbe8/Custom_Model Survivor turn token 759bf5.yaml @@ -0,0 +1,41 @@ +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: '' +GMNotes: '' +GUID: 759bf5 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Model +Nickname: Survivor turn token +Snap: true +Sticky: true +Tooltip: false +Transform: + posX: -16.639 + posY: 1.3579421 + posZ: -74.6965 + rotX: 0.0208259989 + rotY: 269.9665 + rotZ: 0.01675548 + scaleX: 0.45 + scaleY: 0.6 + scaleZ: 0.45 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 0dcbe8/Custom_Model Survivor turn token 7e14e1.yaml b/unpacked/Custom_Model_Bag The Circle Undone 0dcbe8/Custom_Model Survivor turn token 7e14e1.yaml new file mode 100644 index 000000000..89bcee999 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 0dcbe8/Custom_Model Survivor turn token 7e14e1.yaml @@ -0,0 +1,41 @@ +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: '' +GMNotes: '' +GUID: 7e14e1 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Model +Nickname: Survivor turn token +Snap: true +Sticky: true +Tooltip: false +Transform: + posX: -16.639 + posY: 1.36555958 + posZ: -48.6729 + rotX: 0.0208164081 + rotY: 270.000732 + rotZ: 0.01676832 + scaleX: 0.45 + scaleY: 0.6 + scaleZ: 0.45 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 0dcbe8/Custom_Model Survivor turn token 8551a0.yaml b/unpacked/Custom_Model_Bag The Circle Undone 0dcbe8/Custom_Model Survivor turn token 8551a0.yaml new file mode 100644 index 000000000..43f7e6dcf --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 0dcbe8/Custom_Model Survivor turn token 8551a0.yaml @@ -0,0 +1,41 @@ +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: '' +GMNotes: '' +GUID: 8551a0 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Model +Nickname: Survivor turn token +Snap: true +Sticky: true +Tooltip: false +Transform: + posX: -16.6391 + posY: 1.35599768 + posZ: -81.339 + rotX: 0.0208117235 + rotY: 270.01593 + rotZ: 0.0167739224 + scaleX: 0.45 + scaleY: 0.6 + scaleZ: 0.45 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 0dcbe8/Custom_Model Survivor turn token 98f4b5.yaml b/unpacked/Custom_Model_Bag The Circle Undone 0dcbe8/Custom_Model Survivor turn token 98f4b5.yaml new file mode 100644 index 000000000..d08f72591 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 0dcbe8/Custom_Model Survivor turn token 98f4b5.yaml @@ -0,0 +1,41 @@ +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: '' +GMNotes: '' +GUID: 98f4b5 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Model +Nickname: Survivor turn token +Snap: true +Sticky: true +Tooltip: false +Transform: + posX: -16.639 + posY: 1.362902 + posZ: -57.7519 + rotX: 0.0208241269 + rotY: 269.975342 + rotZ: 0.0167589691 + scaleX: 0.45 + scaleY: 0.6 + scaleZ: 0.45 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 0dcbe8/Custom_Model Survivor turn token df079f.yaml b/unpacked/Custom_Model_Bag The Circle Undone 0dcbe8/Custom_Model Survivor turn token df079f.yaml new file mode 100644 index 000000000..c1edf5250 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 0dcbe8/Custom_Model Survivor turn token df079f.yaml @@ -0,0 +1,41 @@ +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: '' +GMNotes: '' +GUID: df079f +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Model +Nickname: Survivor turn token +Snap: true +Sticky: true +Tooltip: false +Transform: + posX: -16.6383 + posY: 1.35564661 + posZ: -82.5394 + rotX: 0.0208165385 + rotY: 270.000244 + rotZ: 0.0167682339 + scaleX: 0.45 + scaleY: 0.6 + scaleZ: 0.45 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 0dcbe8/Custom_Model Survivor turn token e2aac1.yaml b/unpacked/Custom_Model_Bag The Circle Undone 0dcbe8/Custom_Model Survivor turn token e2aac1.yaml new file mode 100644 index 000000000..dce2d0abc --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 0dcbe8/Custom_Model Survivor turn token e2aac1.yaml @@ -0,0 +1,41 @@ +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: '' +GMNotes: '' +GUID: e2aac1 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Model +Nickname: Survivor turn token +Snap: true +Sticky: true +Tooltip: false +Transform: + posX: -16.639 + posY: 1.36483693 + posZ: -51.1416 + rotX: 0.02080502 + rotY: 270.0373 + rotZ: 0.01678173 + scaleX: 0.45 + scaleY: 0.6 + scaleZ: 0.45 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 0dcbe8/Custom_Model Survivor turn token e4be8a.yaml b/unpacked/Custom_Model_Bag The Circle Undone 0dcbe8/Custom_Model Survivor turn token e4be8a.yaml new file mode 100644 index 000000000..b247f5f3f --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 0dcbe8/Custom_Model Survivor turn token e4be8a.yaml @@ -0,0 +1,41 @@ +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: '' +GMNotes: '' +GUID: e4be8a +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Model +Nickname: Survivor turn token +Snap: true +Sticky: true +Tooltip: false +Transform: + posX: -16.6392021 + posY: 1.358665 + posZ: -72.2263 + rotX: 0.0208163839 + rotY: 270.0004 + rotZ: 0.01676806 + scaleX: 0.45 + scaleY: 0.6 + scaleZ: 0.45 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 0dcbe8/Custom_Model Survivor turn token fb6232.yaml b/unpacked/Custom_Model_Bag The Circle Undone 0dcbe8/Custom_Model Survivor turn token fb6232.yaml new file mode 100644 index 000000000..73a076f00 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 0dcbe8/Custom_Model Survivor turn token fb6232.yaml @@ -0,0 +1,41 @@ +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: '' +GMNotes: '' +GUID: fb6232 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Model +Nickname: Survivor turn token +Snap: true +Sticky: true +Tooltip: false +Transform: + posX: -16.639 + posY: 1.36519706 + posZ: -49.9113 + rotX: 0.0208103452 + rotY: 270.021851 + rotZ: 0.01677599 + scaleX: 0.45 + scaleY: 0.6 + scaleZ: 0.45 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 0dcbe8/Custom_Model Turn token 12aab7.yaml b/unpacked/Custom_Model_Bag The Circle Undone 0dcbe8/Custom_Model Turn token 12aab7.yaml new file mode 100644 index 000000000..e506d4c87 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 0dcbe8/Custom_Model Turn token 12aab7.yaml @@ -0,0 +1,41 @@ +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: '' +GMNotes: '' +GUID: 12aab7 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Model +Nickname: Turn token +Snap: true +Sticky: true +Tooltip: false +Transform: + posX: -16.639 + posY: 1.36097312 + posZ: -64.3414 + rotX: 0.0208164416 + rotY: 269.999481 + rotZ: 0.0167679954 + scaleX: 0.45 + scaleY: 0.6 + scaleZ: 0.45 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 0dcbe8/Custom_Model Turn token 6cb8b7.yaml b/unpacked/Custom_Model_Bag The Circle Undone 0dcbe8/Custom_Model Turn token 6cb8b7.yaml new file mode 100644 index 000000000..1b0987fc7 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 0dcbe8/Custom_Model Turn token 6cb8b7.yaml @@ -0,0 +1,41 @@ +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: '' +GMNotes: '' +GUID: 6cb8b7 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Model +Nickname: Turn token +Snap: true +Sticky: true +Tooltip: false +Transform: + posX: -16.6385 + posY: 1.35407341 + posZ: -87.9138 + rotX: 0.0208211262 + rotY: 269.985 + rotZ: 0.0167626254 + scaleX: 0.45 + scaleY: 0.6 + scaleZ: 0.45 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 0dcbe8/Custom_Model Turn token 77ae77.yaml b/unpacked/Custom_Model_Bag The Circle Undone 0dcbe8/Custom_Model Turn token 77ae77.yaml new file mode 100644 index 000000000..12dec6dc1 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 0dcbe8/Custom_Model Turn token 77ae77.yaml @@ -0,0 +1,41 @@ +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: '' +GMNotes: '' +GUID: 77ae77 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Model +Nickname: Turn token +Snap: true +Sticky: true +Tooltip: false +Transform: + posX: -16.639 + posY: 1.36025023 + posZ: -66.8114 + rotX: 0.02081722 + rotY: 269.997375 + rotZ: 0.0167668667 + scaleX: 0.45 + scaleY: 0.6 + scaleZ: 0.45 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 0dcbe8/Custom_Model Turn token 800843.yaml b/unpacked/Custom_Model_Bag The Circle Undone 0dcbe8/Custom_Model Turn token 800843.yaml new file mode 100644 index 000000000..be9fcb6ba --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 0dcbe8/Custom_Model Turn token 800843.yaml @@ -0,0 +1,41 @@ +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: '' +GMNotes: '' +GUID: '800843' +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Model +Nickname: Turn token +Snap: true +Sticky: true +Tooltip: false +Transform: + posX: -16.6383 + posY: 1.35371459 + posZ: -89.1397 + rotX: 0.02080869 + rotY: 270.026733 + rotZ: 0.0167772751 + scaleX: 0.45 + scaleY: 0.6 + scaleZ: 0.45 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 0dcbe8/Custom_Model Turn token a19874.yaml b/unpacked/Custom_Model_Bag The Circle Undone 0dcbe8/Custom_Model Turn token a19874.yaml new file mode 100644 index 000000000..f4f250772 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 0dcbe8/Custom_Model Turn token a19874.yaml @@ -0,0 +1,41 @@ +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: '' +GMNotes: '' +GUID: a19874 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Model +Nickname: Turn token +Snap: true +Sticky: true +Tooltip: false +Transform: + posX: -16.6384 + posY: 1.3533504 + posZ: -90.3837 + rotX: 0.02081655 + rotY: 270.000061 + rotZ: 0.0167675763 + scaleX: 0.45 + scaleY: 0.6 + scaleZ: 0.45 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 0dcbe8/Custom_Model Turn token ab0486.yaml b/unpacked/Custom_Model_Bag The Circle Undone 0dcbe8/Custom_Model Turn token ab0486.yaml new file mode 100644 index 000000000..5e1499337 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 0dcbe8/Custom_Model Turn token ab0486.yaml @@ -0,0 +1,41 @@ +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: '' +GMNotes: '' +GUID: ab0486 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Model +Nickname: Turn token +Snap: true +Sticky: true +Tooltip: false +Transform: + posX: -16.6392 + posY: 1.36061025 + posZ: -65.5811 + rotX: 0.0208169427 + rotY: 269.9982 + rotZ: 0.0167675316 + scaleX: 0.45 + scaleY: 0.6 + scaleZ: 0.45 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 0dcbe8/Custom_Model_Bag starter deck & cards 4fa9f0.yaml b/unpacked/Custom_Model_Bag The Circle Undone 0dcbe8/Custom_Model_Bag starter deck & cards 4fa9f0.yaml new file mode 100644 index 000000000..2c35e30e2 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 0dcbe8/Custom_Model_Bag starter deck & cards 4fa9f0.yaml @@ -0,0 +1,60 @@ +Autoraise: true +ColorDiffuse: + b: 0.02148666 + g: 0.00100758043 + r: 0.02148666 +ContainedObjects: +- !include 'Custom_Model_Bag starter deck & cards 4fa9f0/Card Unsolved Case 22d886.yaml' +- !include 'Custom_Model_Bag starter deck & cards 4fa9f0/Card Detective''s Colt 1911s + f4bac6.yaml' +- !include 'Custom_Model_Bag starter deck & cards 4fa9f0/Deck Hunch Deck d635f1.yaml' +- !include 'Custom_Model_Bag starter deck & cards 4fa9f0/Deck Main Deck 92f346.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: '' +GMNotes: '' +GUID: 4fa9f0 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +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.299 + posY: 1.2744267 + posZ: -57.7619 + rotX: 359.979156 + rotY: 90.0035553 + rotZ: 359.983215 + scaleX: 2.0 + scaleY: 2.0 + scaleZ: 2.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 0dcbe8/Custom_Model_Bag starter deck & cards 4fa9f0/Card Detective's Colt 1911s f4bac6.yaml b/unpacked/Custom_Model_Bag The Circle Undone 0dcbe8/Custom_Model_Bag starter deck & cards 4fa9f0/Card Detective's Colt 1911s f4bac6.yaml new file mode 100644 index 000000000..884e69f5c --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 0dcbe8/Custom_Model_Bag starter deck & cards 4fa9f0/Card Detective's Colt 1911s f4bac6.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 266455 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2664': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: f4bac6 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Detective's Colt 1911s +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.77827 + posY: 3.43034482 + posZ: -72.98748 + rotX: 0.0220896453 + rotY: 269.999481 + rotZ: 0.0172749422 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 0dcbe8/Custom_Model_Bag starter deck & cards 4fa9f0/Card Unsolved Case 22d886.yaml b/unpacked/Custom_Model_Bag The Circle Undone 0dcbe8/Custom_Model_Bag starter deck & cards 4fa9f0/Card Unsolved Case 22d886.yaml new file mode 100644 index 000000000..5a188dff6 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 0dcbe8/Custom_Model_Bag starter deck & cards 4fa9f0/Card Unsolved Case 22d886.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 266456 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2664': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 22d886 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Unsolved Case +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.7367659 + posY: 3.43065143 + posZ: -72.0537338 + rotX: 0.00184578029 + rotY: 270.0009 + rotZ: 0.0199156571 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 0dcbe8/Custom_Model_Bag starter deck & cards 4fa9f0/Deck Hunch Deck d635f1.yaml b/unpacked/Custom_Model_Bag The Circle Undone 0dcbe8/Custom_Model_Bag starter deck & cards 4fa9f0/Deck Hunch Deck d635f1.yaml new file mode 100644 index 000000000..6acf4bc5c --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 0dcbe8/Custom_Model_Bag starter deck & cards 4fa9f0/Deck Hunch Deck d635f1.yaml @@ -0,0 +1,544 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 290804 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2908': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949588657194710961/D864BCCCC1C811EC7F0AED69D1C30C678D3D9FC9/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: edb554 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Barricade + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -47.58641 + posY: 1.3567524 + posZ: -80.37889 + rotX: 0.020808747 + rotY: 270.000916 + rotZ: 0.01677045 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 273708 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: c70ad8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Interrogate + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -44.7389 + posY: 1.50368023 + posZ: -67.92594 + rotX: 0.000165764664 + rotY: 269.993164 + rotZ: 0.016457675 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 290813 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2908': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949588657194710961/D864BCCCC1C811EC7F0AED69D1C30C678D3D9FC9/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: eb6165 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Working a Hunch + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -47.01536 + posY: 1.35786438 + posZ: -77.28834 + rotX: 0.020808382 + rotY: 270.000977 + rotZ: 0.0167692415 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 289609 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2896': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025943833/DE98A03934DF8FF5B3CF6C53143B15BFC3ED7341/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 13413d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Connect the Dots + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -45.19071 + posY: 1.50804555 + posZ: -68.0663452 + rotX: 0.0208661985 + rotY: 269.908051 + rotZ: 359.899231 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 291709 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2917': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949588657194710961/D864BCCCC1C811EC7F0AED69D1C30C678D3D9FC9/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 2db518 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Evidence! + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -47.5641441 + posY: 1.35961092 + posZ: -70.64077 + rotX: 0.0208093841 + rotY: 270.000977 + rotZ: 0.0167689342 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 273708 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 39456d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Interrogate + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -45.21107 + posY: 1.36129987 + posZ: -67.84513 + rotX: 0.0198750366 + rotY: 269.990448 + rotZ: 0.01692487 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 270456 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2704': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 22d886 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Unsolved Case + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -46.9942665 + posY: 1.360839 + posZ: -67.15238 + rotX: 0.0208092164 + rotY: 270.000977 + rotZ: 0.0167695116 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 290808 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2908': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949588657194710961/D864BCCCC1C811EC7F0AED69D1C30C678D3D9FC9/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 8cf335 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Mind over Matter + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -47.23705 + posY: 1.3586818 + posZ: -74.22084 + rotX: 0.0208097771 + rotY: 270.000977 + rotZ: 0.0167668611 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 273707 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: '609798' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Delay the Inevitable + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -45.05858 + posY: 1.50422108 + posZ: -68.56828 + rotX: 0.0260976274 + rotY: 269.999573 + rotZ: 0.0611800477 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 289609 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2896': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025943833/DE98A03934DF8FF5B3CF6C53143B15BFC3ED7341/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: b6c093 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Connect the Dots + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -44.920208 + posY: 1.51644385 + posZ: -68.31877 + rotX: -0.00157133036 + rotY: 269.9475 + rotZ: 0.23578766 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 273707 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: '683937' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Delay the Inevitable + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -45.3122978 + posY: 1.5059737 + posZ: -67.86202 + rotX: 0.0213170946 + rotY: 269.970337 + rotZ: 0.0190473553 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2704': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '2737': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025943109/9C5481E6DFEACD450C5522F884E615482281DDB1/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '2896': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025943833/DE98A03934DF8FF5B3CF6C53143B15BFC3ED7341/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '2908': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949588657194710961/D864BCCCC1C811EC7F0AED69D1C30C678D3D9FC9/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '2917': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949588657194710961/D864BCCCC1C811EC7F0AED69D1C30C678D3D9FC9/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 290804 +- 273708 +- 290813 +- 289609 +- 291709 +- 273708 +- 270456 +- 290808 +- 273707 +- 289609 +- 273707 +Description: '' +GMNotes: '' +GUID: d635f1 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Hunch Deck +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 11.43061 + posY: 3.44074464 + posZ: -72.60128 + rotX: 0.0208913069 + rotY: 269.999359 + rotZ: 180.016815 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 0dcbe8/Custom_Model_Bag starter deck & cards 4fa9f0/Deck Main Deck 92f346.yaml b/unpacked/Custom_Model_Bag The Circle Undone 0dcbe8/Custom_Model_Bag starter deck & cards 4fa9f0/Deck Main Deck 92f346.yaml new file mode 100644 index 000000000..078e1fb9a --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 0dcbe8/Custom_Model_Bag starter deck & cards 4fa9f0/Deck Main Deck 92f346.yaml @@ -0,0 +1,1418 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 291723 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2917': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949588657194710961/D864BCCCC1C811EC7F0AED69D1C30C678D3D9FC9/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 1165db + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Physical Training + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -46.72016 + posY: 1.35724247 + posZ: -79.77943 + rotX: 0.0208094548 + rotY: 270.000977 + rotZ: 0.0167681482 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 290831 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2908': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949588657194710961/D864BCCCC1C811EC7F0AED69D1C30C678D3D9FC9/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 063fd8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Old Book of Lore + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -41.9619255 + posY: 1.361675 + posZ: -70.54019 + rotX: 0.02080835 + rotY: 270.000854 + rotZ: 0.0167686474 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 291702 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2917': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949588657194710961/D864BCCCC1C811EC7F0AED69D1C30C678D3D9FC9/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: '889121' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Vicious Blow + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -37.30481 + posY: 1.36015892 + posZ: -81.48417 + rotX: 0.02090592 + rotY: 269.9932 + rotZ: 0.02363968 + 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: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949588657194710961/D864BCCCC1C811EC7F0AED69D1C30C678D3D9FC9/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: bb1cce + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Flashlight + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -45.2739143 + posY: 1.35742736 + posZ: -80.941925 + rotX: 0.020809019 + rotY: 270.000671 + rotZ: 0.0167686623 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 291719 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2917': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949588657194710961/D864BCCCC1C811EC7F0AED69D1C30C678D3D9FC9/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 97986a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dynamite Blast + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -40.9370728 + posY: 1.35832751 + posZ: -83.24784 + rotX: 0.0208083056 + rotY: 270.0006 + rotZ: 0.0167689826 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 273706 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 4e1d91 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Steadfast + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -40.26473 + posY: 1.35861778 + posZ: -83.09007 + rotX: 0.0208084974 + rotY: 270.000641 + rotZ: 0.0167682953 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 270355 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2703': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: f4bac6 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Detective's Colt 1911s + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -46.8477 + posY: 1.35952628 + posZ: -71.81899 + rotX: 0.0208077338 + rotY: 270.000977 + rotZ: 0.0167690925 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 289710 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2897': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025943833/DE98A03934DF8FF5B3CF6C53143B15BFC3ED7341/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: b9bb2a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Fingerprint Kit + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -40.9453545 + posY: 1.35912442 + posZ: -80.51527 + rotX: 0.02080932 + rotY: 270.000671 + rotZ: 0.0167703666 + 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: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949588657194710961/D864BCCCC1C811EC7F0AED69D1C30C678D3D9FC9/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: bb1cce + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Flashlight + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -45.2739143 + posY: 1.35742736 + posZ: -80.941925 + rotX: 0.020809019 + rotY: 270.000671 + rotZ: 0.0167686623 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 292909 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2929': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949588657194710961/D864BCCCC1C811EC7F0AED69D1C30C678D3D9FC9/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 510c0d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Emergency Cache + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -40.73209 + posY: 1.36017942 + posZ: -77.17525 + rotX: 0.020809168 + rotY: 270.000641 + rotZ: 0.01677167 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 291713 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2917': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949588657194710961/D864BCCCC1C811EC7F0AED69D1C30C678D3D9FC9/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: e0dff3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dodge + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -41.88273 + posY: 1.3596133 + posZ: -77.68197 + rotX: 0.0208087247 + rotY: 270.000641 + rotZ: 0.0167700853 + 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: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949588657194710961/D864BCCCC1C811EC7F0AED69D1C30C678D3D9FC9/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 0ab3f1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Knife + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -44.9200172 + posY: 1.35891557 + posZ: -76.2973557 + rotX: 0.0208080951 + rotY: 270.000458 + rotZ: 0.0167740639 + 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: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949588657194710961/D864BCCCC1C811EC7F0AED69D1C30C678D3D9FC9/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 0ab3f1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Knife + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -44.9200172 + posY: 1.35891557 + posZ: -76.2973557 + rotX: 0.0208080951 + rotY: 270.000458 + rotZ: 0.0167740639 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 291724 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2917': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949588657194710961/D864BCCCC1C811EC7F0AED69D1C30C678D3D9FC9/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 5cd622 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: First Aid + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -46.2824059 + posY: 1.36043966 + posZ: -69.3997955 + rotX: 0.020809358 + rotY: 270.000916 + rotZ: 0.0167710818 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 291731 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2917': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949588657194710961/D864BCCCC1C811EC7F0AED69D1C30C678D3D9FC9/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 7d4749 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Beat Cop + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -47.01833 + posY: 1.35588539 + posZ: -84.045845 + rotX: 0.0208080579 + rotY: 270.000977 + rotZ: 0.0167684089 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 292902 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2929': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949588657194710961/D864BCCCC1C811EC7F0AED69D1C30C678D3D9FC9/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 5ab9f4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Overpower + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -42.7864075 + posY: 1.35835147 + posZ: -80.87131 + rotX: 0.02080982 + rotY: 270.0005 + rotZ: 0.0167702641 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 292906 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2929': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949588657194710961/D864BCCCC1C811EC7F0AED69D1C30C678D3D9FC9/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: c6ac19 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Perception + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -37.21661 + posY: 1.44060683 + posZ: -79.51047 + rotX: 0.0211699586 + rotY: 269.9786 + rotZ: 355.752 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 290802 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2908': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949588657194710961/D864BCCCC1C811EC7F0AED69D1C30C678D3D9FC9/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: b265c4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Deduction + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -37.058075 + posY: 1.359409 + posZ: -84.36576 + rotX: 0.0208086744 + rotY: 270.00058 + rotZ: 0.0167700443 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 273706 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 4e1d91 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Steadfast + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -40.26473 + posY: 1.35861778 + posZ: -83.09007 + rotX: 0.0208084974 + rotY: 270.000641 + rotZ: 0.0167682953 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 290824 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2908': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949588657194710961/D864BCCCC1C811EC7F0AED69D1C30C678D3D9FC9/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: e5dd39 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Hyperawareness + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -37.6155128 + posY: 1.35911667 + posZ: -84.672966 + rotX: 0.0208099633 + rotY: 270.0008 + rotZ: 0.0167665742 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 289508 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2895': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025943833/DE98A03934DF8FF5B3CF6C53143B15BFC3ED7341/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 9e5cd2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Curiosity + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -45.1381378 + posY: 1.35633743 + posZ: -84.83417 + rotX: 0.020808287 + rotY: 270.0006 + rotZ: 0.0167695768 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 291727 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2917': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949588657194710961/D864BCCCC1C811EC7F0AED69D1C30C678D3D9FC9/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 86ee68 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Machete + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -41.4279671 + posY: 1.35882866 + posZ: -80.92078 + rotX: 0.0207278468 + rotY: 270.0008 + rotZ: 0.0167765748 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 290825 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2908': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949588657194710961/D864BCCCC1C811EC7F0AED69D1C30C678D3D9FC9/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: ba16cb + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Medical Texts + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -40.1910744 + posY: 1.50485289 + posZ: -81.825325 + rotX: 0.0134250894 + rotY: 270.000916 + rotZ: 0.0277339164 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 290826 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2908': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949588657194710961/D864BCCCC1C811EC7F0AED69D1C30C678D3D9FC9/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 8f91ce + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Research Librarian + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -41.8602257 + posY: 1.35727549 + posZ: -85.6961 + rotX: 0.0208086483 + rotY: 270.000824 + rotZ: 0.0167688187 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 289508 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2895': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025943833/DE98A03934DF8FF5B3CF6C53143B15BFC3ED7341/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 9e5cd2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Curiosity + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -45.1381378 + posY: 1.35633743 + posZ: -84.83417 + rotX: 0.020808287 + rotY: 270.0006 + rotZ: 0.0167695768 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 291726 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2917': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949588657194710961/D864BCCCC1C811EC7F0AED69D1C30C678D3D9FC9/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 08bdf1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Guard Dog + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -42.88383 + posY: 1.35954058 + posZ: -76.68043 + rotX: 0.0207257569 + rotY: 270.001038 + rotZ: 0.01674599 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 290834 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2908': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949588657194710961/D864BCCCC1C811EC7F0AED69D1C30C678D3D9FC9/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 9934d2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dr. Milan Christopher + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -42.02769 + posY: 1.36262488 + posZ: -67.21438 + rotX: 0.0208077338 + rotY: 270.0008 + rotZ: 0.0167683326 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 292909 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2929': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949588657194710961/D864BCCCC1C811EC7F0AED69D1C30C678D3D9FC9/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 510c0d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Emergency Cache + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -40.73209 + posY: 1.36017942 + posZ: -77.17525 + rotX: 0.020809168 + rotY: 270.000641 + rotZ: 0.01677167 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 290821 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2908': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949588657194710961/D864BCCCC1C811EC7F0AED69D1C30C678D3D9FC9/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 8cc0a6 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Magnifying Glass + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -41.38929 + posY: 1.43664753 + posZ: -74.60335 + rotX: 0.0207289848 + rotY: 269.977661 + rotZ: 355.972656 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 289710 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2897': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025943833/DE98A03934DF8FF5B3CF6C53143B15BFC3ED7341/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: b9bb2a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Fingerprint Kit + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -40.9453545 + posY: 1.35912442 + posZ: -80.51527 + rotX: 0.02080932 + rotY: 270.000671 + rotZ: 0.0167703666 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 291730 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2917': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949588657194710961/D864BCCCC1C811EC7F0AED69D1C30C678D3D9FC9/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 12660b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: .45 Automatic + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -47.35201 + posY: 1.35810781 + posZ: -76.03937 + rotX: 0.020808598 + rotY: 270.000977 + rotZ: 0.0167685337 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2703': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '2737': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025943109/9C5481E6DFEACD450C5522F884E615482281DDB1/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '2895': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025943833/DE98A03934DF8FF5B3CF6C53143B15BFC3ED7341/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '2897': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025943833/DE98A03934DF8FF5B3CF6C53143B15BFC3ED7341/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '2908': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949588657194710961/D864BCCCC1C811EC7F0AED69D1C30C678D3D9FC9/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '2917': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949588657194710961/D864BCCCC1C811EC7F0AED69D1C30C678D3D9FC9/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '2929': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949588657194710961/D864BCCCC1C811EC7F0AED69D1C30C678D3D9FC9/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 291723 +- 290831 +- 291702 +- 292915 +- 291719 +- 273706 +- 270355 +- 289710 +- 292915 +- 292909 +- 291713 +- 292912 +- 292912 +- 291724 +- 291731 +- 292902 +- 292906 +- 290802 +- 273706 +- 290824 +- 289508 +- 291727 +- 290825 +- 290826 +- 289508 +- 291726 +- 290834 +- 292909 +- 290821 +- 289710 +- 291730 +Description: '' +GMNotes: '' +GUID: 92f346 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Main Deck +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 11.7242174 + posY: 3.54763 + posZ: -71.7699 + rotX: 0.02048815 + rotY: 270.0069 + rotZ: 180.0166 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 0dcbe8/Custom_Model_Bag starter deck & cards 7038f1.yaml b/unpacked/Custom_Model_Bag The Circle Undone 0dcbe8/Custom_Model_Bag starter deck & cards 7038f1.yaml new file mode 100644 index 000000000..117adcb3f --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 0dcbe8/Custom_Model_Bag starter deck & cards 7038f1.yaml @@ -0,0 +1,59 @@ +Autoraise: true +ColorDiffuse: + b: 0.02148666 + g: 0.00100758043 + r: 0.02148666 +ContainedObjects: +- !include 'Custom_Model_Bag starter deck & cards 7038f1/Card Hoods 785f68.yaml' +- !include 'Custom_Model_Bag starter deck & cards 7038f1/Card I''m done runnin''! + d8a324.yaml' +- !include 'Custom_Model_Bag starter deck & cards 7038f1/Deck 04604f.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: '' +GMNotes: '' +GUID: 7038f1 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +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.2984 + posY: 1.2652328 + posZ: -89.1737 + rotX: 359.979156 + rotY: 89.99752 + rotZ: 359.983246 + scaleX: 2.0 + scaleY: 2.0 + scaleZ: 2.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 0dcbe8/Custom_Model_Bag starter deck & cards 7038f1/Card Hoods 785f68.yaml b/unpacked/Custom_Model_Bag The Circle Undone 0dcbe8/Custom_Model_Bag starter deck & cards 7038f1/Card Hoods 785f68.yaml new file mode 100644 index 000000000..3c4a6f363 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 0dcbe8/Custom_Model_Bag starter deck & cards 7038f1/Card Hoods 785f68.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 266463 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2664': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 785f68 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Hoods +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 11.08317 + posY: 3.43722844 + posZ: -49.7867622 + rotX: 0.0209449753 + rotY: 269.999573 + rotZ: 0.0168470219 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 0dcbe8/Custom_Model_Bag starter deck & cards 7038f1/Card I'm done runnin'! d8a324.yaml b/unpacked/Custom_Model_Bag The Circle Undone 0dcbe8/Custom_Model_Bag starter deck & cards 7038f1/Card I'm done runnin'! d8a324.yaml new file mode 100644 index 000000000..52d6f355d --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 0dcbe8/Custom_Model_Bag starter deck & cards 7038f1/Card I'm done runnin'! d8a324.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 266462 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2664': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: d8a324 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '"I''m done runnin''!"' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.7376881 + posY: 3.43703961 + posZ: -50.09466 + rotX: 0.015927406 + rotY: 270.000061 + rotZ: 0.0159909129 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 0dcbe8/Custom_Model_Bag starter deck & cards 7038f1/Deck 04604f.yaml b/unpacked/Custom_Model_Bag The Circle Undone 0dcbe8/Custom_Model_Bag starter deck & cards 7038f1/Deck 04604f.yaml new file mode 100644 index 000000000..91d9356f8 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 0dcbe8/Custom_Model_Bag starter deck & cards 7038f1/Deck 04604f.yaml @@ -0,0 +1,1447 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 368509 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3685': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 510c0d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Emergency Cache + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.3627625 + posY: 2.66723323 + posZ: -72.27231 + rotX: 0.0208230056 + rotY: 270.002655 + rotZ: 180.016815 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: '051742' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Able Bodied + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.3627625 + posY: 2.66723323 + posZ: -72.27231 + rotX: 0.0208230056 + rotY: 270.002655 + rotZ: 180.016815 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: ce0dd5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Lucky! + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.3627625 + posY: 2.66723323 + posZ: -72.27231 + rotX: 0.0208230056 + rotY: 270.002655 + rotZ: 180.016815 + 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: + '3685': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 0ab3f1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Knife + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.3627625 + posY: 2.71723318 + posZ: -72.27231 + rotX: 0.0208230074 + rotY: 270.002655 + rotZ: 180.016815 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 593deb + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Leather Coat + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.3627625 + posY: 2.66723323 + posZ: -72.27231 + rotX: 0.0208230056 + rotY: 270.002655 + rotZ: 180.016815 + 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: + '3685': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 8f7289 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Guts + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.3627625 + posY: 2.66723323 + posZ: -72.27231 + rotX: 0.0208230056 + rotY: 270.002655 + rotZ: 180.016815 + 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: + '3685': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 510c0d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Emergency Cache + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.3627625 + posY: 2.71723318 + posZ: -72.27231 + rotX: 0.0208230074 + rotY: 270.002655 + rotZ: 180.016815 + 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: + '3685': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 679b13 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Manual Dexterity + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.3627625 + posY: 2.66723323 + posZ: -72.27231 + rotX: 0.0208230056 + rotY: 270.002655 + rotZ: 180.016815 + 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: + '3688': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: e8ea95 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Cunning Distraction + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.3627625 + posY: 2.66723323 + posZ: -72.27231 + rotX: 0.0208230056 + rotY: 270.002655 + rotZ: 180.016815 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 785f68 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Hoods + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.3627625 + posY: 2.66723323 + posZ: -72.27231 + rotX: 0.0208230056 + rotY: 270.002655 + rotZ: 180.016815 + 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: + '3685': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: bb1cce + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Flashlight + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.3627625 + posY: 2.71723318 + posZ: -72.27231 + rotX: 0.0208230074 + rotY: 270.002655 + rotZ: 180.016815 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 078efb + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Survival Instinct + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.3627625 + posY: 2.66723323 + posZ: -72.27231 + rotX: 0.0208230056 + rotY: 270.002655 + rotZ: 180.016815 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 6fa7fa + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Track Shoes + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.3627625 + posY: 2.66723323 + posZ: -72.27231 + rotX: 0.0208230056 + rotY: 270.002655 + rotZ: 180.016815 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 6fa7fa + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Track Shoes + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.3627625 + posY: 2.71723318 + posZ: -72.27231 + rotX: 0.0208230074 + rotY: 270.002655 + rotZ: 180.016815 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: f34090 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Rabbit's Foot + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.3627625 + posY: 2.66723323 + posZ: -72.27231 + rotX: 0.0208230056 + rotY: 270.002655 + rotZ: 180.016815 + 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: + '3685': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: acb83a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Unexpected Courage + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.3627625 + posY: 2.66723323 + posZ: -72.27231 + rotX: 0.0208230056 + rotY: 270.002655 + rotZ: 180.016815 + 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: + '3685': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: acb83a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Unexpected Courage + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.3627625 + posY: 2.71723318 + posZ: -72.27231 + rotX: 0.0208230074 + rotY: 270.002655 + rotZ: 180.016815 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: d8a324 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '"I''m done runnin''!"' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.3627625 + posY: 2.66723323 + posZ: -72.27231 + rotX: 0.0208230056 + rotY: 270.002655 + rotZ: 180.016815 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: f474b1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Stray Cat + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.3627625 + posY: 2.66723323 + posZ: -72.27231 + rotX: 0.0208230056 + rotY: 270.002655 + rotZ: 180.016815 + 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: + '3685': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: bb1cce + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Flashlight + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.3627625 + posY: 2.66723323 + posZ: -72.27231 + rotX: 0.0208230056 + rotY: 270.002655 + rotZ: 180.016815 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 0bea17 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Act of Desperation + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.3627625 + posY: 2.71723318 + posZ: -72.27231 + rotX: 0.0208230074 + rotY: 270.002655 + rotZ: 180.016815 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 1b76c9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Scavenging + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.3627625 + posY: 2.66723323 + posZ: -72.27231 + rotX: 0.0208230056 + rotY: 270.002655 + rotZ: 180.016815 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 88d3c0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '"Look what I found!"' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.3627625 + posY: 2.66723323 + posZ: -72.27231 + rotX: 0.0208230056 + rotY: 270.002655 + rotZ: 180.016815 + 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: + '3685': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 5ab9f4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Overpower + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.3627625 + posY: 2.66723323 + posZ: -72.27231 + rotX: 0.0208230056 + rotY: 270.002655 + rotZ: 180.016815 + 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: + '3685': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 0ab3f1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Knife + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.3627625 + posY: 2.66723323 + posZ: -72.27231 + rotX: 0.0208230056 + rotY: 270.002655 + rotZ: 180.016815 + 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: + '3685': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: c6ac19 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Perception + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.3627625 + posY: 2.66723323 + posZ: -72.27231 + rotX: 0.0208230056 + rotY: 270.002655 + rotZ: 180.016815 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: '051742' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Able Bodied + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.3627625 + posY: 2.71723318 + posZ: -72.27231 + rotX: 0.0208230074 + rotY: 270.002655 + rotZ: 180.016815 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 48e103 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Baseball Bat + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.3627625 + posY: 2.66723323 + posZ: -72.27231 + rotX: 0.0208230056 + rotY: 270.002655 + rotZ: 180.016815 + 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: + '3685': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 679b13 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Manual Dexterity + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.3627625 + posY: 2.71723318 + posZ: -72.27231 + rotX: 0.0208230074 + rotY: 270.002655 + rotZ: 180.016815 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 0bea17 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Act of Desperation + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.3627625 + posY: 2.66723323 + posZ: -72.27231 + rotX: 0.0208230056 + rotY: 270.002655 + rotZ: 180.016815 + 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: + '3685': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 8f7289 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Guts + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.3627625 + posY: 2.71723318 + posZ: -72.27231 + rotX: 0.0208230074 + rotY: 270.002655 + rotZ: 180.016815 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: fc9e1b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dig Deep + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.3627625 + posY: 2.66723323 + posZ: -72.27231 + rotX: 0.0208230056 + rotY: 270.002655 + rotZ: 180.016815 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2746': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025946328/561232524C8EAA4B4371B28652F78969E6ED6FFB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '3685': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '3688': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '3787': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '3788': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 368509 +- 274606 +- 368810 +- 368512 +- 368820 +- 368500 +- 368509 +- 368504 +- 368819 +- 378863 +- 368515 +- 368800 +- 274608 +- 274608 +- 368823 +- 368508 +- 368508 +- 378762 +- 368824 +- 368515 +- 274607 +- 368822 +- 368816 +- 368502 +- 368512 +- 368506 +- 274606 +- 368830 +- 368504 +- 274607 +- 368500 +- 368831 +Description: '' +GMNotes: '' +GUID: 04604f +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.39245 + posY: 3.5637486 + posZ: -49.6046677 + rotX: 0.02633863 + rotY: 270.0025 + rotZ: 180.0158 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 0dcbe8/Custom_Model_Bag starter deck & cards 7e8db4.yaml b/unpacked/Custom_Model_Bag The Circle Undone 0dcbe8/Custom_Model_Bag starter deck & cards 7e8db4.yaml new file mode 100644 index 000000000..886669fb1 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 0dcbe8/Custom_Model_Bag starter deck & cards 7e8db4.yaml @@ -0,0 +1,58 @@ +Autoraise: true +ColorDiffuse: + b: 0.02148666 + g: 0.00100758043 + r: 0.02148666 +ContainedObjects: +- !include 'Custom_Model_Bag starter deck & cards 7e8db4/Card Mystifying Song 3b8cb7.yaml' +- !include 'Custom_Model_Bag starter deck & cards 7e8db4/Card Baron Samedi 16ad5d.yaml' +- !include 'Custom_Model_Bag starter deck & cards 7e8db4/Deck 4f02eb.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: '' +GMNotes: '' +GUID: 7e8db4 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +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.2985 + posY: 1.26752579 + posZ: -81.3388 + rotX: 359.979156 + rotY: 89.98373 + rotZ: 359.983246 + scaleX: 2.0 + scaleY: 2.0 + scaleZ: 2.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 0dcbe8/Custom_Model_Bag starter deck & cards 7e8db4/Card Baron Samedi 16ad5d.yaml b/unpacked/Custom_Model_Bag The Circle Undone 0dcbe8/Custom_Model_Bag starter deck & cards 7e8db4/Card Baron Samedi 16ad5d.yaml new file mode 100644 index 000000000..94d54ca0b --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 0dcbe8/Custom_Model_Bag starter deck & cards 7e8db4/Card Baron Samedi 16ad5d.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 230852 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2308': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 16ad5d +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Baron Samedi +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 5.96314764 + posY: 2.20590782 + posZ: -95.01074 + rotX: 0.0208088122 + rotY: 269.998 + rotZ: 0.01677292 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 0dcbe8/Custom_Model_Bag starter deck & cards 7e8db4/Card Mystifying Song 3b8cb7.yaml b/unpacked/Custom_Model_Bag The Circle Undone 0dcbe8/Custom_Model_Bag starter deck & cards 7e8db4/Card Mystifying Song 3b8cb7.yaml new file mode 100644 index 000000000..efec3d076 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 0dcbe8/Custom_Model_Bag starter deck & cards 7e8db4/Card Mystifying Song 3b8cb7.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 230951 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2309': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 3b8cb7 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Mystifying Song +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 56.6929436 + posY: 2.58537865 + posZ: -76.1421661 + rotX: 0.7941177 + rotY: 269.92337 + rotZ: 2.39525867 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 0dcbe8/Custom_Model_Bag starter deck & cards 7e8db4/Deck 4f02eb.yaml b/unpacked/Custom_Model_Bag The Circle Undone 0dcbe8/Custom_Model_Bag starter deck & cards 7e8db4/Deck 4f02eb.yaml new file mode 100644 index 000000000..ea68d93cb --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 0dcbe8/Custom_Model_Bag starter deck & cards 7e8db4/Deck 4f02eb.yaml @@ -0,0 +1,1454 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 292111 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2921': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949588657194710961/D864BCCCC1C811EC7F0AED69D1C30C678D3D9FC9/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 30f860 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Blinding Light + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -36.3476753 + posY: 1.5164907 + posZ: -87.52534 + rotX: 0.0200320724 + rotY: 270.000031 + rotZ: 0.0159750916 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 292900 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2929': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949588657194710961/D864BCCCC1C811EC7F0AED69D1C30C678D3D9FC9/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 8f7289 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Guts + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -34.82142 + posY: 1.4980793 + posZ: -87.56833 + rotX: 0.016567247 + rotY: 269.999939 + rotZ: 0.0164605957 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 272807 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: ff3f17 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Eldritch Inspiration + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -35.73218 + posY: 1.49224114 + posZ: -87.6074142 + rotX: 0.0195508823 + rotY: 269.999542 + rotZ: 0.0173259974 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 292900 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2929': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949588657194710961/D864BCCCC1C811EC7F0AED69D1C30C678D3D9FC9/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 8f7289 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Guts + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -35.9601555 + posY: 1.50369108 + posZ: -87.44634 + rotX: 0.0199187845 + rotY: 269.999756 + rotZ: 0.0157613158 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: '051742' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Able Bodied + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -35.46576 + posY: 1.54428554 + posZ: -87.54715 + rotX: 0.021296598 + rotY: 269.9999 + rotZ: 0.0172884986 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 292104 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2921': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949588657194710961/D864BCCCC1C811EC7F0AED69D1C30C678D3D9FC9/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: a8298f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Drawn to the Flame + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -35.7660751 + posY: 1.55951273 + posZ: -87.3525 + rotX: 0.02074505 + rotY: 270.000366 + rotZ: 0.0153042627 + 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: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949588657194710961/D864BCCCC1C811EC7F0AED69D1C30C678D3D9FC9/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: bb1cce + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Flashlight + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -46.47213 + posY: 1.61598921 + posZ: -79.13698 + rotX: 0.0214159153 + rotY: 270.013336 + rotZ: 0.005096238 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 272808 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 8aa0c3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Deny Existence + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -35.97988 + posY: 1.51122022 + posZ: -87.4119644 + rotX: 0.00918545 + rotY: 269.983459 + rotZ: 0.0151169728 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 292103 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2921': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949588657194710961/D864BCCCC1C811EC7F0AED69D1C30C678D3D9FC9/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 845f33 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Fearless + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -35.7596741 + posY: 1.54987085 + posZ: -87.29163 + rotX: 0.0202798154 + rotY: 269.9994 + rotZ: 0.01553698 + 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: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949588657194710961/D864BCCCC1C811EC7F0AED69D1C30C678D3D9FC9/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 0ab3f1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Knife + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -46.56979 + posY: 1.5899868 + posZ: -79.09099 + rotX: 0.0200949889 + rotY: 269.9992 + rotZ: 0.0163462851 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 272807 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: ff3f17 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Eldritch Inspiration + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -35.7893944 + posY: 1.49175787 + posZ: -87.58315 + rotX: 0.0213386361 + rotY: 269.999817 + rotZ: 0.0157700889 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 292908 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2929': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949588657194710961/D864BCCCC1C811EC7F0AED69D1C30C678D3D9FC9/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: acb83a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Unexpected Courage + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -36.0257568 + posY: 1.48811185 + posZ: -87.55858 + rotX: 0.020806985 + rotY: 269.999939 + rotZ: 0.0167728 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 292118 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2921': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949588657194710961/D864BCCCC1C811EC7F0AED69D1C30C678D3D9FC9/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 7307c4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Arcane Initiate + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -46.2500648 + posY: 1.60637915 + posZ: -79.0562 + rotX: 0.0208165832 + rotY: 269.99884 + rotZ: 0.014920732 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 272806 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 6f57f5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Prophesy + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -35.5878372 + posY: 1.498847 + posZ: -87.833786 + rotX: 0.0235444028 + rotY: 270.000427 + rotZ: 0.0211659484 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 0bea17 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Act of Desperation + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -46.70987 + posY: 1.56764722 + posZ: -79.025444 + rotX: 0.0203560144 + rotY: 269.99707 + rotZ: 0.01809744 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 292909 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2929': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949588657194710961/D864BCCCC1C811EC7F0AED69D1C30C678D3D9FC9/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 510c0d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Emergency Cache + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -35.8944626 + posY: 1.49194348 + posZ: -87.49785 + rotX: 0.0191268679 + rotY: 270.0 + rotZ: 0.0155635634 + 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: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949588657194710961/D864BCCCC1C811EC7F0AED69D1C30C678D3D9FC9/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: bb1cce + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Flashlight + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -46.46637 + posY: 1.63236511 + posZ: -79.15928 + rotX: 0.144598231 + rotY: 270.001282 + rotZ: 0.2627545 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 292124 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2921': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949588657194710961/D864BCCCC1C811EC7F0AED69D1C30C678D3D9FC9/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 9e4505 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Arcane Studies + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -46.4300079 + posY: 1.63541484 + posZ: -79.09553 + rotX: 0.003643856 + rotY: 269.934845 + rotZ: 0.0533807836 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 272806 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 493b03 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Prophesy + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -35.5551071 + posY: 1.35890174 + posZ: -87.52416 + rotX: 0.0146868695 + rotY: 269.9994 + rotZ: 0.0147657972 + 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: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949588657194710961/D864BCCCC1C811EC7F0AED69D1C30C678D3D9FC9/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 0ab3f1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Knife + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -46.59938 + posY: 1.58698964 + posZ: -79.09645 + rotX: 0.0201510079 + rotY: 269.9991 + rotZ: 0.0164816882 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 292908 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2929': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949588657194710961/D864BCCCC1C811EC7F0AED69D1C30C678D3D9FC9/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: acb83a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Unexpected Courage + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -36.02581 + posY: 1.47236 + posZ: -87.5585861 + rotX: 0.0214397237 + rotY: 270.0 + rotZ: 0.0157236848 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 230852 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2308': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 16ad5d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Baron Samedi + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -34.2125 + posY: 1.69057691 + posZ: -80.67274 + rotX: 0.01995141 + rotY: 270.039063 + rotZ: 179.985458 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 292119 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2921': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949588657194710961/D864BCCCC1C811EC7F0AED69D1C30C678D3D9FC9/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 8a927c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Scrying + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -46.4499855 + posY: 1.64494467 + posZ: -79.27293 + rotX: 0.0124219628 + rotY: 269.940369 + rotZ: 0.07865026 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: '051742' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Able Bodied + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -35.4657631 + posY: 1.53050721 + posZ: -87.54714 + rotX: 0.0212308858 + rotY: 269.999878 + rotZ: 0.0172218867 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 292128 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2921': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949588657194710961/D864BCCCC1C811EC7F0AED69D1C30C678D3D9FC9/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 8df677 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Shrivelling + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -46.6174355 + posY: 1.66424978 + posZ: -78.89753 + rotX: 0.028877357 + rotY: 270.014343 + rotZ: 0.0106727872 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 292116 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2921': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949588657194710961/D864BCCCC1C811EC7F0AED69D1C30C678D3D9FC9/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 80acd2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Forbidden Knowledge + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -46.7324066 + posY: 1.65457749 + posZ: -79.04479 + rotX: 0.02039846 + rotY: 269.9988 + rotZ: 0.0166134275 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 292909 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2929': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949588657194710961/D864BCCCC1C811EC7F0AED69D1C30C678D3D9FC9/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 510c0d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Emergency Cache + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -35.89318 + posY: 1.50304854 + posZ: -87.49812 + rotX: 0.01966449 + rotY: 269.999756 + rotZ: 0.0161434449 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 292108 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2921': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949588657194710961/D864BCCCC1C811EC7F0AED69D1C30C678D3D9FC9/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 6656ad + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ward of Protection + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -35.8593025 + posY: 1.51502585 + posZ: -87.525 + rotX: 0.0226673149 + rotY: 270.019226 + rotZ: 0.00517223123 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 272808 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 8aa0c3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Deny Existence + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -35.9272842 + posY: 1.52551639 + posZ: -87.47075 + rotX: 0.718113661 + rotY: 269.984253 + rotZ: 359.081238 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 292123 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2921': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949588657194710961/D864BCCCC1C811EC7F0AED69D1C30C678D3D9FC9/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: fa1d67 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Holy Rosary + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -46.2187767 + posY: 1.67401159 + posZ: -78.92967 + rotX: 0.019316759 + rotY: 269.971252 + rotZ: 359.947754 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 0bea17 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Act of Desperation + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -46.7988434 + posY: 1.57451177 + posZ: -78.74907 + rotX: 0.019820096 + rotY: 269.999451 + rotZ: 0.0127719771 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 230951 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2309': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 3b8cb7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Mystifying Song + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -34.09304 + posY: 1.70030487 + posZ: -80.47509 + rotX: 0.0139139723 + rotY: 270.0518 + rotZ: 179.972748 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2308': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '2309': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '2728': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025945336/04E36F64C2CBE1B4905FF44A869C75EC52CB3A56/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '2746': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025946328/561232524C8EAA4B4371B28652F78969E6ED6FFB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '2921': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949588657194710961/D864BCCCC1C811EC7F0AED69D1C30C678D3D9FC9/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '2929': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949588657194710961/D864BCCCC1C811EC7F0AED69D1C30C678D3D9FC9/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 292111 +- 292900 +- 272807 +- 292900 +- 274606 +- 292104 +- 292915 +- 272808 +- 292103 +- 292912 +- 272807 +- 292908 +- 292118 +- 272806 +- 274607 +- 292909 +- 292915 +- 292124 +- 272806 +- 292912 +- 292908 +- 230852 +- 292119 +- 274606 +- 292128 +- 292116 +- 292909 +- 292108 +- 272808 +- 292123 +- 274607 +- 230951 +Description: '' +GMNotes: '' +GUID: 4f02eb +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 11.1625538 + posY: 3.54823017 + posZ: -87.4073639 + rotX: 0.0163987055 + rotY: 270.020081 + rotZ: 180.017654 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 0dcbe8/Custom_Model_Bag starter deck & cards 90ffcd.yaml b/unpacked/Custom_Model_Bag The Circle Undone 0dcbe8/Custom_Model_Bag starter deck & cards 90ffcd.yaml new file mode 100644 index 000000000..4c142c6dc --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 0dcbe8/Custom_Model_Bag starter deck & cards 90ffcd.yaml @@ -0,0 +1,59 @@ +Autoraise: true +ColorDiffuse: + b: 0.02148666 + g: 0.00100758043 + r: 0.02148666 +ContainedObjects: +- !include 'Custom_Model_Bag starter deck & cards 90ffcd/Card Dark Insight f08934.yaml' +- !include 'Custom_Model_Bag starter deck & cards 90ffcd/Card Terrible Secret 785f68.yaml' +- !include 'Custom_Model_Bag starter deck & cards 90ffcd/Card Twilight Blade 223ba3.yaml' +- !include 'Custom_Model_Bag starter deck & cards 90ffcd/Deck 3500c0.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: '' +GMNotes: '' +GUID: 90ffcd +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +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.2991 + posY: 1.26982987 + posZ: -73.4665 + rotX: 359.979156 + rotY: 89.98408 + rotZ: 359.983246 + scaleX: 2.0 + scaleY: 2.0 + scaleZ: 2.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 0dcbe8/Custom_Model_Bag starter deck & cards 90ffcd/Card Dark Insight f08934.yaml b/unpacked/Custom_Model_Bag The Circle Undone 0dcbe8/Custom_Model_Bag starter deck & cards 90ffcd/Card Dark Insight f08934.yaml new file mode 100644 index 000000000..b7f393e68 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 0dcbe8/Custom_Model_Bag starter deck & cards 90ffcd/Card Dark Insight f08934.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 266460 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2664': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: f08934 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Dark Insight +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 11.51247 + posY: 3.428545 + posZ: -79.9814148 + rotX: 0.02083724 + rotY: 269.9977 + rotZ: 0.0004712989 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 0dcbe8/Custom_Model_Bag starter deck & cards 90ffcd/Card Terrible Secret 785f68.yaml b/unpacked/Custom_Model_Bag The Circle Undone 0dcbe8/Custom_Model_Bag starter deck & cards 90ffcd/Card Terrible Secret 785f68.yaml new file mode 100644 index 000000000..edcc0f291 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 0dcbe8/Custom_Model_Bag starter deck & cards 90ffcd/Card Terrible Secret 785f68.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 266461 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2664': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 785f68 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Terrible Secret +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 11.5867605 + posY: 3.33262849 + posZ: -77.12455 + rotX: 0.0208087061 + rotY: 269.9998 + rotZ: 0.0167732332 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 0dcbe8/Custom_Model_Bag starter deck & cards 90ffcd/Card Twilight Blade 223ba3.yaml b/unpacked/Custom_Model_Bag The Circle Undone 0dcbe8/Custom_Model_Bag starter deck & cards 90ffcd/Card Twilight Blade 223ba3.yaml new file mode 100644 index 000000000..09c3759fd --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 0dcbe8/Custom_Model_Bag starter deck & cards 90ffcd/Card Twilight Blade 223ba3.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 266459 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2664': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: Sanctum's Reward +GMNotes: '' +GUID: 223ba3 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Twilight Blade +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 11.3679552 + posY: 3.36988759 + posZ: -83.13063 + rotX: 0.014748726 + rotY: 269.996155 + rotZ: 4.308982 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 0dcbe8/Custom_Model_Bag starter deck & cards 90ffcd/Deck 3500c0.yaml b/unpacked/Custom_Model_Bag The Circle Undone 0dcbe8/Custom_Model_Bag starter deck & cards 90ffcd/Deck 3500c0.yaml new file mode 100644 index 000000000..32d1db8f2 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 0dcbe8/Custom_Model_Bag starter deck & cards 90ffcd/Deck 3500c0.yaml @@ -0,0 +1,1726 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 292116 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2921': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949588657194710961/D864BCCCC1C811EC7F0AED69D1C30C678D3D9FC9/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 80acd2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Forbidden Knowledge + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -33.5168076 + posY: 1.50608 + posZ: -69.73152 + rotX: 0.020928476 + rotY: 270.000854 + rotZ: 0.018858172 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 273708 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: c70ad8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Interrogate + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -33.54018 + posY: 1.6580559 + posZ: -69.6460648 + rotX: 0.0210807472 + rotY: 270.00116 + rotZ: 0.0159109477 + 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: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949588657194710961/D864BCCCC1C811EC7F0AED69D1C30C678D3D9FC9/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 0ab3f1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Knife + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -33.68071 + posY: 1.51583147 + posZ: -69.85583 + rotX: 0.0191024113 + rotY: 270.001038 + rotZ: 0.0145909488 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 273707 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: '683937' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Delay the Inevitable + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -33.42264 + posY: 1.66595232 + posZ: -69.49896 + rotX: 0.0208673812 + rotY: 270.001068 + rotZ: 0.0151927518 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 292118 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2921': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949588657194710961/D864BCCCC1C811EC7F0AED69D1C30C678D3D9FC9/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 7307c4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Arcane Initiate + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -33.7394524 + posY: 1.50746155 + posZ: -69.70022 + rotX: 0.0198029429 + rotY: 270.000366 + rotZ: 0.01738643 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 292902 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2929': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949588657194710961/D864BCCCC1C811EC7F0AED69D1C30C678D3D9FC9/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 5ab9f4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Overpower + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -33.84369 + posY: 1.74725139 + posZ: -69.43004 + rotX: 0.0099879615 + rotY: 270.001221 + rotZ: 0.05276753 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 291709 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2917': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949588657194710961/D864BCCCC1C811EC7F0AED69D1C30C678D3D9FC9/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 2db518 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Evidence! + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -33.6807022 + posY: 1.567758 + posZ: -69.7709961 + rotX: 0.01998464 + rotY: 270.001038 + rotZ: 0.0150682433 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 291731 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2917': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949588657194710961/D864BCCCC1C811EC7F0AED69D1C30C678D3D9FC9/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 7d4749 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Beat Cop + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -33.3991737 + posY: 1.50166786 + posZ: -69.56306 + rotX: 0.0219944641 + rotY: 270.0012 + rotZ: 0.0140869552 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 292119 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2921': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949588657194710961/D864BCCCC1C811EC7F0AED69D1C30C678D3D9FC9/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 8a927c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Scrying + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -33.3520355 + posY: 1.4944067 + posZ: -69.37204 + rotX: 0.02081157 + rotY: 270.000824 + rotZ: 0.0167616829 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 292123 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2921': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949588657194710961/D864BCCCC1C811EC7F0AED69D1C30C678D3D9FC9/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: fa1d67 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Holy Rosary + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -33.7739143 + posY: 1.5111481 + posZ: -69.76935 + rotX: 0.0192835741 + rotY: 270.000641 + rotZ: 0.0179716423 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 291726 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2917': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949588657194710961/D864BCCCC1C811EC7F0AED69D1C30C678D3D9FC9/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 08bdf1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Guard Dog + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -33.42269 + posY: 1.502211 + posZ: -69.26483 + rotX: 0.0202136524 + rotY: 270.000732 + rotZ: 0.00377819524 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 292108 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2921': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949588657194710961/D864BCCCC1C811EC7F0AED69D1C30C678D3D9FC9/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 6656ad + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ward of Protection + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -33.5402 + posY: 1.59893835 + posZ: -69.60365 + rotX: 0.0211653616 + rotY: 270.001129 + rotZ: 0.0148241008 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 270661 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2706': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 785f68 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Terrible Secret + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -33.7276268 + posY: 1.76227379 + posZ: -69.90082 + rotX: 0.0205576848 + rotY: 270.001038 + rotZ: 0.0173081271 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 291713 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2917': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949588657194710961/D864BCCCC1C811EC7F0AED69D1C30C678D3D9FC9/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: e0dff3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dodge + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -33.5637054 + posY: 1.57546973 + posZ: -69.7731 + rotX: 0.0210287217 + rotY: 270.001 + rotZ: 0.0186059233 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 272807 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: ff3f17 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Eldritch Inspiration + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -33.539 + posY: 1.71057618 + posZ: -69.3517151 + rotX: 0.01861223 + rotY: 270.01767 + rotZ: 0.016250765 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 292103 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2921': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949588657194710961/D864BCCCC1C811EC7F0AED69D1C30C678D3D9FC9/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 845f33 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Fearless + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -33.8204041 + posY: 1.71994293 + posZ: -69.64171 + rotX: 0.0204397663 + rotY: 270.000977 + rotZ: 0.0165779442 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 292111 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2921': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949588657194710961/D864BCCCC1C811EC7F0AED69D1C30C678D3D9FC9/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 30f860 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Blinding Light + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -33.5168266 + posY: 1.6066705 + posZ: -69.5826 + rotX: 0.0211012568 + rotY: 270.0011 + rotZ: 0.0146344574 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 292909 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2929': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949588657194710961/D864BCCCC1C811EC7F0AED69D1C30C678D3D9FC9/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 510c0d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Emergency Cache + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -33.2328224 + posY: 1.63790441 + posZ: -69.73748 + rotX: 359.151642 + rotY: 269.988983 + rotZ: 1.14469123 + 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: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949588657194710961/D864BCCCC1C811EC7F0AED69D1C30C678D3D9FC9/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 0ab3f1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Knife + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -33.680706 + posY: 1.50802708 + posZ: -69.85584 + rotX: 0.0213350281 + rotY: 270.001 + rotZ: 0.022113746 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 272807 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: ff3f17 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Eldritch Inspiration + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -33.13855 + posY: 1.69676435 + posZ: -69.69509 + rotX: 0.0201373622 + rotY: 270.00116 + rotZ: 0.0169138983 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 292124 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2921': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949588657194710961/D864BCCCC1C811EC7F0AED69D1C30C678D3D9FC9/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 9e4505 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Arcane Studies + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -33.8668137 + posY: 1.49262786 + posZ: -69.4297 + rotX: 0.0219912957 + rotY: 270.000854 + rotZ: 0.0144933918 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 272806 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 6f57f5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Prophesy + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -33.3986778 + posY: 1.75336909 + posZ: -69.64896 + rotX: 359.526367 + rotY: 269.996063 + rotZ: 0.682299 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 291702 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2917': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949588657194710961/D864BCCCC1C811EC7F0AED69D1C30C678D3D9FC9/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: '889121' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Vicious Blow + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -33.70402 + posY: 1.71230245 + posZ: -69.21981 + rotX: 0.0194161832 + rotY: 270.001068 + rotZ: 0.01565145 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 272808 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 8aa0c3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Deny Existence + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -33.6106033 + posY: 1.68133259 + posZ: -69.13581 + rotX: 0.0210843217 + rotY: 270.000916 + rotZ: 0.006550224 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 291723 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2917': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949588657194710961/D864BCCCC1C811EC7F0AED69D1C30C678D3D9FC9/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 1165db + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Physical Training + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -34.17278 + posY: 1.52249813 + posZ: -69.6519 + rotX: 0.0213693269 + rotY: 270.000275 + rotZ: 0.0155597543 + 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: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949588657194710961/D864BCCCC1C811EC7F0AED69D1C30C678D3D9FC9/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: bb1cce + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Flashlight + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -32.9698 + posY: 1.53882527 + posZ: -69.4385 + rotX: 358.3402 + rotY: 270.03952 + rotZ: 357.9569 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 291730 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2917': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949588657194710961/D864BCCCC1C811EC7F0AED69D1C30C678D3D9FC9/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 12660b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: .45 Automatic + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -33.4462471 + posY: 1.49866867 + posZ: -69.45599 + rotX: 0.00261777523 + rotY: 270.0003 + rotZ: 0.004861397 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 292909 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2929': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949588657194710961/D864BCCCC1C811EC7F0AED69D1C30C678D3D9FC9/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 510c0d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Emergency Cache + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -33.1148338 + posY: 1.61426079 + posZ: -69.8667755 + rotX: 0.0193465166 + rotY: 270.00116 + rotZ: 0.01965998 + 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: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949588657194710961/D864BCCCC1C811EC7F0AED69D1C30C678D3D9FC9/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: bb1cce + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Flashlight + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -32.96993 + posY: 1.53215587 + posZ: -69.4386444 + rotX: 358.466766 + rotY: 270.034546 + rotZ: 358.112762 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 291727 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2917': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949588657194710961/D864BCCCC1C811EC7F0AED69D1C30C678D3D9FC9/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 86ee68 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Machete + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -33.68144 + posY: 1.50707531 + posZ: -69.6016541 + rotX: 0.01953659 + rotY: 270.0006 + rotZ: 0.0167127438 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 270760 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2707': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: f08934 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dark Insight + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -33.515934 + posY: 1.55958927 + posZ: -69.55539 + rotX: 0.0202762429 + rotY: 270.0008 + rotZ: 0.0166666862 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 292104 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2921': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949588657194710961/D864BCCCC1C811EC7F0AED69D1C30C678D3D9FC9/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: a8298f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Drawn to the Flame + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -33.35202 + posY: 1.59117162 + posZ: -69.60647 + rotX: 0.0206179563 + rotY: 270.001129 + rotZ: 0.015496294 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 273707 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: '683937' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Delay the Inevitable + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -33.4226456 + posY: 1.67367864 + posZ: -69.49897 + rotX: 0.0208712276 + rotY: 270.001068 + rotZ: 0.0151324263 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 272808 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 8aa0c3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Deny Existence + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -33.6340675 + posY: 1.68904364 + posZ: -69.34759 + rotX: 0.0211951919 + rotY: 270.001038 + rotZ: 0.0126216775 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 270559 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2705': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Sanctum's Reward + GMNotes: '' + GUID: 223ba3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Twilight Blade + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -33.7040825 + posY: 1.36493063 + posZ: -69.64387 + rotX: 0.0200766 + rotY: 270.00058 + rotZ: 0.0160732679 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 292128 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2921': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949588657194710961/D864BCCCC1C811EC7F0AED69D1C30C678D3D9FC9/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 8df677 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Shrivelling + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -33.727272 + posY: 1.48438907 + posZ: -70.04536 + rotX: 0.0208143238 + rotY: 270.0008 + rotZ: 0.016765045 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 273708 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: c70ad8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Interrogate + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -33.5401764 + posY: 1.65032959 + posZ: -69.6460648 + rotX: 0.02107207 + rotY: 270.00116 + rotZ: 0.0159454811 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 291719 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2917': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949588657194710961/D864BCCCC1C811EC7F0AED69D1C30C678D3D9FC9/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 97986a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dynamite Blast + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -34.09801 + posY: 1.58341658 + posZ: -69.06925 + rotX: 0.0276220627 + rotY: 270.000854 + rotZ: 0.008726216 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2705': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '2706': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '2707': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '2728': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025945336/04E36F64C2CBE1B4905FF44A869C75EC52CB3A56/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '2737': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025943109/9C5481E6DFEACD450C5522F884E615482281DDB1/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '2917': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949588657194710961/D864BCCCC1C811EC7F0AED69D1C30C678D3D9FC9/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '2921': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949588657194710961/D864BCCCC1C811EC7F0AED69D1C30C678D3D9FC9/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '2929': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949588657194710961/D864BCCCC1C811EC7F0AED69D1C30C678D3D9FC9/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 292116 +- 273708 +- 292912 +- 273707 +- 292118 +- 292902 +- 291709 +- 291731 +- 292119 +- 292123 +- 291726 +- 292108 +- 270661 +- 291713 +- 272807 +- 292103 +- 292111 +- 292909 +- 292912 +- 272807 +- 292124 +- 272806 +- 291702 +- 272808 +- 291723 +- 292915 +- 291730 +- 292909 +- 292915 +- 291727 +- 270760 +- 292104 +- 273707 +- 272808 +- 270559 +- 292128 +- 273708 +- 291719 +Description: '' +GMNotes: '' +GUID: 3500c0 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 11.1430693 + posY: 3.5822742 + posZ: -80.1715546 + rotX: -0.00498125749 + rotY: 269.9995 + rotZ: 180.018127 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 0dcbe8/Custom_Model_Bag starter deck & cards 97c956.yaml b/unpacked/Custom_Model_Bag The Circle Undone 0dcbe8/Custom_Model_Bag starter deck & cards 97c956.yaml new file mode 100644 index 000000000..0a30ebc5e --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 0dcbe8/Custom_Model_Bag starter deck & cards 97c956.yaml @@ -0,0 +1,60 @@ +Autoraise: true +ColorDiffuse: + b: 0.02148666 + g: 0.00100758043 + r: 0.02148666 +ContainedObjects: +- !include 'Custom_Model_Bag starter deck & cards 97c956/Bag Carolyn Fern Promo Cards + 7b43c5.yaml' +- !include 'Custom_Model_Bag starter deck & cards 97c956/Card Hypnotic Therapy 7f1b48.yaml' +- !include 'Custom_Model_Bag starter deck & cards 97c956/Card Rational Thought 1c7a00.yaml' +- !include 'Custom_Model_Bag starter deck & cards 97c956/Deck f58175.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: '' +GMNotes: '' +GUID: 97c956 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +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.2989 + posY: 1.27671134 + posZ: -49.9578 + rotX: 359.979156 + rotY: 90.00229 + rotZ: 359.983215 + scaleX: 2.0 + scaleY: 2.0 + scaleZ: 2.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 0dcbe8/Custom_Model_Bag starter deck & cards 97c956/Bag Carolyn Fern Promo Cards 7b43c5.yaml b/unpacked/Custom_Model_Bag The Circle Undone 0dcbe8/Custom_Model_Bag starter deck & cards 97c956/Bag Carolyn Fern Promo Cards 7b43c5.yaml new file mode 100644 index 000000000..581e23072 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 0dcbe8/Custom_Model_Bag starter deck & cards 97c956/Bag Carolyn Fern Promo Cards 7b43c5.yaml @@ -0,0 +1,39 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 0.0 + r: 0.18238467 +ContainedObjects: +- !include 'Bag Carolyn Fern Promo Cards 7b43c5/Card Promo version f0533d.yaml' +- !include 'Bag Carolyn Fern Promo Cards 7b43c5/Card Carolyn Fern b57bab.yaml' +- !include 'Bag Carolyn Fern Promo Cards 7b43c5/Card Foolishness 86bbeb.yaml' +- !include 'Bag Carolyn Fern Promo Cards 7b43c5/Card To Fight The Black Wind 0f25d1.yaml' +Description: '' +GMNotes: '' +GUID: 7b43c5 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +MeshIndex: -1 +Name: Bag +Nickname: Carolyn Fern Promo Cards +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 20.4442062 + posY: 2.04335 + posZ: -79.32621 + rotX: 359.9792 + rotY: 89.99954 + rotZ: 359.983215 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 0dcbe8/Custom_Model_Bag starter deck & cards 97c956/Bag Carolyn Fern Promo Cards 7b43c5/Card Carolyn Fern b57bab.yaml b/unpacked/Custom_Model_Bag The Circle Undone 0dcbe8/Custom_Model_Bag starter deck & cards 97c956/Bag Carolyn Fern Promo Cards 7b43c5/Card Carolyn Fern b57bab.yaml new file mode 100644 index 000000000..02fc9575b --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 0dcbe8/Custom_Model_Bag starter deck & cards 97c956/Bag Carolyn Fern Promo Cards 7b43c5/Card Carolyn Fern b57bab.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 266406 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2664': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1011562618093846975/4726098952C64103F2C211D202FFDD40D9D988BB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869050066760/0DE2BD4589CC8C2F3D26C2900A17ED7A6483062F/ + NumHeight: 3 + NumWidth: 7 + UniqueBack: true +Description: Promo version +GMNotes: '' +GUID: b57bab +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Carolyn Fern +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 11.817152 + posY: 4.27050829 + posZ: -70.7261658 + rotX: 0.0208020881 + rotY: 270.012 + rotZ: 0.0167906936 + scaleX: 0.6 + scaleY: 1.0 + scaleZ: 0.6 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 0dcbe8/Custom_Model_Bag starter deck & cards 97c956/Bag Carolyn Fern Promo Cards 7b43c5/Card Foolishness 86bbeb.yaml b/unpacked/Custom_Model_Bag The Circle Undone 0dcbe8/Custom_Model_Bag starter deck & cards 97c956/Bag Carolyn Fern Promo Cards 7b43c5/Card Foolishness 86bbeb.yaml new file mode 100644 index 000000000..c126eddfb --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 0dcbe8/Custom_Model_Bag starter deck & cards 97c956/Bag Carolyn Fern Promo Cards 7b43c5/Card Foolishness 86bbeb.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 230502 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 86bbeb +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '*Foolishness' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 11.4089108 + posY: 2.21555734 + posZ: -69.36259 + rotX: 0.0208121631 + rotY: 269.9862 + rotZ: 0.0167663042 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 0dcbe8/Custom_Model_Bag starter deck & cards 97c956/Bag Carolyn Fern Promo Cards 7b43c5/Card Promo version f0533d.yaml b/unpacked/Custom_Model_Bag The Circle Undone 0dcbe8/Custom_Model_Bag starter deck & cards 97c956/Bag Carolyn Fern Promo Cards 7b43c5/Card Promo version f0533d.yaml new file mode 100644 index 000000000..0ac6438af --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 0dcbe8/Custom_Model_Bag starter deck & cards 97c956/Bag Carolyn Fern Promo Cards 7b43c5/Card Promo version f0533d.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 266227 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2662': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1011562618093845464/80687C9319FA2015F3D9F7CBEB4C55FBF045B27D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1011562618093845971/A678BD374EC4DE672206B5EF7EB57DC885BC839C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: f0533d +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Promo version +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 11.9522781 + posY: 4.27327728 + posZ: -71.16833 + rotX: 0.0 + rotY: 180.0 + rotZ: 180.0 + scaleX: 1.1 + scaleY: 1.0 + scaleZ: 1.1 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 0dcbe8/Custom_Model_Bag starter deck & cards 97c956/Bag Carolyn Fern Promo Cards 7b43c5/Card To Fight The Black Wind 0f25d1.yaml b/unpacked/Custom_Model_Bag The Circle Undone 0dcbe8/Custom_Model_Bag starter deck & cards 97c956/Bag Carolyn Fern Promo Cards 7b43c5/Card To Fight The Black Wind 0f25d1.yaml new file mode 100644 index 000000000..e2a09f673 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 0dcbe8/Custom_Model_Bag starter deck & cards 97c956/Bag Carolyn Fern Promo Cards 7b43c5/Card To Fight The Black Wind 0f25d1.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 0f25d1 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: To Fight The Black Wind +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 11.376543 + posY: 2.215525 + posZ: -69.20898 + rotX: 0.0208051242 + rotY: 270.007 + rotZ: 0.01677874 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 0dcbe8/Custom_Model_Bag starter deck & cards 97c956/Card Hypnotic Therapy 7f1b48.yaml b/unpacked/Custom_Model_Bag The Circle Undone 0dcbe8/Custom_Model_Bag starter deck & cards 97c956/Card Hypnotic Therapy 7f1b48.yaml new file mode 100644 index 000000000..b3196a13b --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 0dcbe8/Custom_Model_Bag starter deck & cards 97c956/Card Hypnotic Therapy 7f1b48.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 266953 +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/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 7f1b48 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Hypnotic Therapy +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 12.0512676 + posY: 4.27089548 + posZ: -70.41252 + rotX: 0.020808626 + rotY: 270.0017 + rotZ: 0.0167694781 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 0dcbe8/Custom_Model_Bag starter deck & cards 97c956/Card Rational Thought 1c7a00.yaml b/unpacked/Custom_Model_Bag The Circle Undone 0dcbe8/Custom_Model_Bag starter deck & cards 97c956/Card Rational Thought 1c7a00.yaml new file mode 100644 index 000000000..46360b806 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 0dcbe8/Custom_Model_Bag starter deck & cards 97c956/Card Rational Thought 1c7a00.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 266554 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2665': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 1c7a00 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Rational Thought +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.7240324 + posY: 3.43260622 + posZ: -65.1778641 + rotX: 0.0209887233 + rotY: 269.999023 + rotZ: 0.01671215 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 0dcbe8/Custom_Model_Bag starter deck & cards 97c956/Deck f58175.yaml b/unpacked/Custom_Model_Bag The Circle Undone 0dcbe8/Custom_Model_Bag starter deck & cards 97c956/Deck f58175.yaml new file mode 100644 index 000000000..48fb40b7f --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 0dcbe8/Custom_Model_Bag starter deck & cards 97c956/Deck f58175.yaml @@ -0,0 +1,1475 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 292104 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2921': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949588657194710961/D864BCCCC1C811EC7F0AED69D1C30C678D3D9FC9/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: a8298f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Drawn to the Flame + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -21.4037628 + posY: 1.36973119 + posZ: -68.5248947 + rotX: 0.020809846 + rotY: 270.0002 + rotZ: 0.0167680047 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 291713 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2917': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949588657194710961/D864BCCCC1C811EC7F0AED69D1C30C678D3D9FC9/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: e0dff3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dodge + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -17.3556175 + posY: 1.36820507 + posZ: -78.7613 + rotX: 0.0208097845 + rotY: 270.0003 + rotZ: 0.0167704932 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 292906 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2929': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949588657194710961/D864BCCCC1C811EC7F0AED69D1C30C678D3D9FC9/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: c6ac19 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Perception + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -20.33548 + posY: 1.37142992 + posZ: -64.04667 + rotX: 0.0208087228 + rotY: 270.0001 + rotZ: 0.0167689361 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 290802 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2908': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949588657194710961/D864BCCCC1C811EC7F0AED69D1C30C678D3D9FC9/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: b265c4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Deduction + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -18.577198 + posY: 1.36651659 + posZ: -83.0137939 + rotX: 0.02080979 + rotY: 270.000061 + rotZ: 0.0167702418 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 292103 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2921': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949588657194710961/D864BCCCC1C811EC7F0AED69D1C30C678D3D9FC9/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 845f33 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Fearless + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -14.6429138 + posY: 1.36837471 + posZ: -81.54722 + rotX: 0.02080851 + rotY: 270.0001 + rotZ: 0.0167687535 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 290824 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2908': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949588657194710961/D864BCCCC1C811EC7F0AED69D1C30C678D3D9FC9/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: e5dd39 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Hyperawareness + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -20.7562332 + posY: 1.36729729 + posZ: -77.64296 + rotX: 0.0208069142 + rotY: 270.000366 + rotZ: 0.0167734679 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 270253 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2702': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 7f1b48 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Hypnotic Therapy + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -24.9456444 + posY: 1.36655474 + posZ: -74.98167 + rotX: 0.0208089482 + rotY: 270.00058 + rotZ: 0.0167677067 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 291724 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2917': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949588657194710961/D864BCCCC1C811EC7F0AED69D1C30C678D3D9FC9/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 5cd622 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: First Aid + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -24.7111034 + posY: 1.36552393 + posZ: -78.7945251 + rotX: 0.0208090246 + rotY: 270.000549 + rotZ: 0.0167694278 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 273706 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 4e1d91 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Steadfast + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -5.40377331 + posY: 1.869728 + posZ: -102.784538 + rotX: 0.0208132844 + rotY: 270.000336 + rotZ: 180.016769 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 273706 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 4e1d91 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Steadfast + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -7.96188736 + posY: 1.86972821 + posZ: -99.77058 + rotX: 0.0208106637 + rotY: 270.000275 + rotZ: 180.016785 + 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: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949588657194710961/D864BCCCC1C811EC7F0AED69D1C30C678D3D9FC9/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: bb1cce + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Flashlight + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -4.60451031 + posY: 1.8669008 + posZ: -100.681732 + rotX: 0.0208096318 + rotY: 269.999817 + rotZ: 0.0167761929 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 289609 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2896': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025943833/DE98A03934DF8FF5B3CF6C53143B15BFC3ED7341/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: bd6f67 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Connect the Dots + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -17.2110348 + posY: 1.41775274 + posZ: -79.06276 + rotX: 0.02073725 + rotY: 269.999817 + rotZ: 0.0167154167 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 292909 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2929': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949588657194710961/D864BCCCC1C811EC7F0AED69D1C30C678D3D9FC9/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 510c0d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Emergency Cache + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -16.8282013 + posY: 1.36970437 + posZ: -73.95604 + rotX: 0.0159729719 + rotY: 270.000061 + rotZ: 0.0149228359 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 289609 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2896': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025943833/DE98A03934DF8FF5B3CF6C53143B15BFC3ED7341/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 13413d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Connect the Dots + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -18.06483 + posY: 1.3677814 + posZ: -79.3290253 + rotX: 0.0208139587 + rotY: 269.9998 + rotZ: 0.01677216 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 290804 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2908': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949588657194710961/D864BCCCC1C811EC7F0AED69D1C30C678D3D9FC9/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: edb554 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Barricade + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -22.91941 + posY: 1.365711 + posZ: -80.37831 + rotX: 0.0208087824 + rotY: 270.0002 + rotZ: 0.0167704578 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 290834 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2908': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949588657194710961/D864BCCCC1C811EC7F0AED69D1C30C678D3D9FC9/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 9934d2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dr. Milan Christopher + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -19.8232422 + posY: 1.3706553 + posZ: -67.3286743 + rotX: 0.0208086781 + rotY: 270.000427 + rotZ: 0.01676991 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 290831 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2908': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949588657194710961/D864BCCCC1C811EC7F0AED69D1C30C678D3D9FC9/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 063fd8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Old Book of Lore + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -20.633976 + posY: 1.368226 + posZ: -74.61679 + rotX: 0.0209421739 + rotY: 270.0008 + rotZ: 0.0165671129 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 292909 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2929': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949588657194710961/D864BCCCC1C811EC7F0AED69D1C30C678D3D9FC9/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: fd2268 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Emergency Cache + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -16.3538837 + posY: 1.50337112 + posZ: -74.19589 + rotX: 0.0071493173 + rotY: 270.0004 + rotZ: 0.0507373363 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 292108 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2921': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949588657194710961/D864BCCCC1C811EC7F0AED69D1C30C678D3D9FC9/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 6656ad + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ward of Protection + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -16.9175243 + posY: 1.37120819 + posZ: -69.0448151 + rotX: 0.0208095815 + rotY: 270.000183 + rotZ: 0.0167698264 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 290825 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2908': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949588657194710961/D864BCCCC1C811EC7F0AED69D1C30C678D3D9FC9/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: ba16cb + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Medical Texts + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -19.7295 + posY: 1.37139034 + posZ: -64.93342 + rotX: 0.0208097566 + rotY: 270.000427 + rotZ: 0.01676871 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 291727 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2917': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949588657194710961/D864BCCCC1C811EC7F0AED69D1C30C678D3D9FC9/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 86ee68 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Machete + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -25.2613163 + posY: 1.3674041 + posZ: -71.6886444 + rotX: 0.0208088811 + rotY: 270.000519 + rotZ: 0.016767703 + 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: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949588657194710961/D864BCCCC1C811EC7F0AED69D1C30C678D3D9FC9/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 0ab3f1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Knife + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -24.1990261 + posY: 1.37085867 + posZ: -61.2047539 + rotX: 0.02080721 + rotY: 270.000366 + rotZ: 0.0167764761 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 290826 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2908': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949588657194710961/D864BCCCC1C811EC7F0AED69D1C30C678D3D9FC9/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 8f91ce + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Research Librarian + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -20.1492348 + posY: 1.36964333 + posZ: -70.38136 + rotX: 0.0208091512 + rotY: 270.000458 + rotZ: 0.0167673267 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 290808 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2908': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949588657194710961/D864BCCCC1C811EC7F0AED69D1C30C678D3D9FC9/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 8cf335 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Mind over Matter + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -21.486021 + posY: 1.36830389 + posZ: -73.25177 + rotX: 0.0209297668 + rotY: 270.0007 + rotZ: 0.0165390987 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 290813 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2908': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949588657194710961/D864BCCCC1C811EC7F0AED69D1C30C678D3D9FC9/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: eb6165 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Working a Hunch + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -22.2739315 + posY: 1.36707962 + posZ: -76.50353 + rotX: 0.0208089612 + rotY: 270.0002 + rotZ: 0.0167699046 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 291726 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2917': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949588657194710961/D864BCCCC1C811EC7F0AED69D1C30C678D3D9FC9/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 08bdf1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Guard Dog + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -24.386158 + posY: 1.3686378 + posZ: -68.55969 + rotX: 0.0208092146 + rotY: 270.0005 + rotZ: 0.0167685375 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 292128 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2921': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949588657194710961/D864BCCCC1C811EC7F0AED69D1C30C678D3D9FC9/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 8df677 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Shrivelling + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -19.8090248 + posY: 1.37249744 + posZ: -61.05284 + rotX: 0.0208065789 + rotY: 270.000366 + rotZ: 0.0167757217 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 266554 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2665': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 1c7a00 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Rational Thought + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -24.4043884 + posY: 1.4454428 + posZ: -73.23459 + rotX: 2.89399552 + rotY: 269.997681 + rotZ: 0.0169138033 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 289710 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2897': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025943833/DE98A03934DF8FF5B3CF6C53143B15BFC3ED7341/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: b9bb2a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Fingerprint Kit + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -17.8240528 + posY: 1.44987023 + posZ: -76.26313 + rotX: 357.037964 + rotY: 269.95575 + rotZ: 0.0173246562 + 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: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949588657194710961/D864BCCCC1C811EC7F0AED69D1C30C678D3D9FC9/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 3fd916 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Flashlight + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -19.8549862 + posY: 1.42366588 + posZ: -57.1153755 + rotX: 0.0208063666 + rotY: 270.0005 + rotZ: 0.0167881232 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 292116 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2921': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949588657194710961/D864BCCCC1C811EC7F0AED69D1C30C678D3D9FC9/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 80acd2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Forbidden Knowledge + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -20.6443787 + posY: 1.36608779 + posZ: -81.91353 + rotX: 0.02080924 + rotY: 270.0004 + rotZ: 0.0167702623 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 290821 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2908': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949588657194710961/D864BCCCC1C811EC7F0AED69D1C30C678D3D9FC9/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 8cc0a6 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Magnifying Glass + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -24.6659355 + posY: 1.36969852 + posZ: -64.5887 + rotX: 0.02080932 + rotY: 270.0005 + rotZ: 0.01676768 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2665': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '2702': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '2737': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025943109/9C5481E6DFEACD450C5522F884E615482281DDB1/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '2896': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025943833/DE98A03934DF8FF5B3CF6C53143B15BFC3ED7341/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '2897': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025943833/DE98A03934DF8FF5B3CF6C53143B15BFC3ED7341/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '2908': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949588657194710961/D864BCCCC1C811EC7F0AED69D1C30C678D3D9FC9/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '2917': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949588657194710961/D864BCCCC1C811EC7F0AED69D1C30C678D3D9FC9/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '2921': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949588657194710961/D864BCCCC1C811EC7F0AED69D1C30C678D3D9FC9/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '2929': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949588657194710961/D864BCCCC1C811EC7F0AED69D1C30C678D3D9FC9/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 292104 +- 291713 +- 292906 +- 290802 +- 292103 +- 290824 +- 270253 +- 291724 +- 273706 +- 273706 +- 292915 +- 289609 +- 292909 +- 289609 +- 290804 +- 290834 +- 290831 +- 292909 +- 292108 +- 290825 +- 291727 +- 292912 +- 290826 +- 290808 +- 290813 +- 291726 +- 292128 +- 266554 +- 289710 +- 292915 +- 292116 +- 290821 +Description: '' +GMNotes: '' +GUID: f58175 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 11.4177608 + posY: 3.55491471 + posZ: -64.8559341 + rotX: 0.0208493453 + rotY: 270.001068 + rotZ: 180.017014 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 0dcbe8/Custom_Model_Bag starter deck & cards b94c04.yaml b/unpacked/Custom_Model_Bag The Circle Undone 0dcbe8/Custom_Model_Bag starter deck & cards b94c04.yaml new file mode 100644 index 000000000..09873b618 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 0dcbe8/Custom_Model_Bag starter deck & cards b94c04.yaml @@ -0,0 +1,58 @@ +Autoraise: true +ColorDiffuse: + b: 0.02148666 + g: 0.00100758043 + r: 0.02148666 +ContainedObjects: +- !include 'Custom_Model_Bag starter deck & cards b94c04/Card Family Inheritance 394603.yaml' +- !include 'Custom_Model_Bag starter deck & cards b94c04/Card Lodge Debts 785f68.yaml' +- !include 'Custom_Model_Bag starter deck & cards b94c04/Deck da9a96.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: '' +GMNotes: '' +GUID: b94c04 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +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.2991 + posY: 1.27213764 + posZ: -65.5814 + rotX: 359.9792 + rotY: 90.01095 + rotZ: 359.983215 + scaleX: 2.0 + scaleY: 2.0 + scaleZ: 2.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 0dcbe8/Custom_Model_Bag starter deck & cards b94c04/Card Family Inheritance 394603.yaml b/unpacked/Custom_Model_Bag The Circle Undone 0dcbe8/Custom_Model_Bag starter deck & cards b94c04/Card Family Inheritance 394603.yaml new file mode 100644 index 000000000..4a1852ff8 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 0dcbe8/Custom_Model_Bag starter deck & cards b94c04/Card Family Inheritance 394603.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 266457 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2664': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: '394603' +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Family Inheritance +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.80968 + posY: 3.43469524 + posZ: -58.11435 + rotX: 0.0222927164 + rotY: 269.999573 + rotZ: 0.0170290079 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 0dcbe8/Custom_Model_Bag starter deck & cards b94c04/Card Lodge Debts 785f68.yaml b/unpacked/Custom_Model_Bag The Circle Undone 0dcbe8/Custom_Model_Bag starter deck & cards b94c04/Card Lodge Debts 785f68.yaml new file mode 100644 index 000000000..a83328520 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 0dcbe8/Custom_Model_Bag starter deck & cards b94c04/Card Lodge Debts 785f68.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 266458 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2664': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 785f68 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Lodge "Debts" +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 11.110404 + posY: 3.43489861 + posZ: -57.73577 + rotX: 0.021785032 + rotY: 270.0025 + rotZ: 0.01652348 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 0dcbe8/Custom_Model_Bag starter deck & cards b94c04/Deck da9a96.yaml b/unpacked/Custom_Model_Bag The Circle Undone 0dcbe8/Custom_Model_Bag starter deck & cards b94c04/Deck da9a96.yaml new file mode 100644 index 000000000..bdbbbdd60 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 0dcbe8/Custom_Model_Bag starter deck & cards b94c04/Deck da9a96.yaml @@ -0,0 +1,1475 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 368512 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3685': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 0ab3f1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Knife + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -32.3774567 + posY: 1.36227691 + posZ: -80.452 + rotX: 0.02068911 + rotY: 269.999878 + rotZ: 0.0181797687 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274207 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: '276477' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Money Talks + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -32.3732071 + posY: 1.507475 + posZ: -80.06827 + rotX: 0.0125646824 + rotY: 269.9999 + rotZ: 359.990417 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 078efb + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Survival Instinct + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -32.40707 + posY: 1.524559 + posZ: -80.32154 + rotX: 0.0243827924 + rotY: 270.003571 + rotZ: 0.009809558 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 1b76c9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Scavenging + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -32.30161 + posY: 1.53672874 + posZ: -80.51072 + rotX: 0.0220292285 + rotY: 270.013123 + rotZ: 1.41864109 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274206 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: e2767a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Cunning + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -32.02189 + posY: 1.50895655 + posZ: -80.19381 + rotX: 0.021978559 + rotY: 270.003 + rotZ: 0.012630037 + 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: + '3686': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 68744b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Hard Knocks + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -32.2363052 + posY: 1.51193488 + posZ: -79.92632 + rotX: 0.0226493385 + rotY: 269.987549 + rotZ: 0.0213456545 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: f474b1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Stray Cat + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -32.2772179 + posY: 1.51691437 + posZ: -80.31392 + rotX: 0.0202884432 + rotY: 269.999847 + rotZ: 0.0151511356 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 88d3c0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '"Look what I found!"' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -33.21915 + posY: 1.52230883 + posZ: -79.87362 + rotX: 0.0375748277 + rotY: 269.9999 + rotZ: 359.992645 + 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: + '3685': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 510c0d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Emergency Cache + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -32.8094749 + posY: 1.48000407 + posZ: -80.05109 + rotX: 0.0274662543 + rotY: 270.016632 + rotZ: -0.00127813593 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: fc9e1b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dig Deep + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -32.9591026 + posY: 1.48964143 + posZ: -80.1027145 + rotX: 0.0280543845 + rotY: 270.005 + rotZ: 0.00460782973 + 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: + '3687': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: b18b33 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Sneak Attack + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -32.6888237 + posY: 1.49949288 + posZ: -80.08447 + rotX: 0.025746556 + rotY: 270.003143 + rotZ: 0.007348024 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274206 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 58fd5a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Cunning + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -32.79346 + posY: 1.50925148 + posZ: -80.07276 + rotX: 0.02393845 + rotY: 270.00177 + rotZ: 0.00509567326 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: f34090 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Rabbit's Foot + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -32.93601 + posY: 1.51881421 + posZ: -80.44937 + rotX: 0.0264036115 + rotY: 270.005157 + rotZ: 0.00867546 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: ce0dd5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Lucky! + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -32.98781 + posY: 1.52841222 + posZ: -79.90276 + rotX: 0.0359548628 + rotY: 270.0456 + rotZ: 359.9725 + 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: + '3685': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: acb83a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Unexpected Courage + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -32.8539162 + posY: 1.53899848 + posZ: -79.78795 + rotX: 0.0249759927 + rotY: 269.99353 + rotZ: 0.009816735 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274208 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 66b7d5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Well Connected + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -32.78633 + posY: 1.54835737 + posZ: -80.01821 + rotX: 0.0202844087 + rotY: 269.9999 + rotZ: 0.0146353142 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274207 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: '276477' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Money Talks + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -33.000412 + posY: 1.55799079 + posZ: -79.8072739 + rotX: 0.0217987467 + rotY: 270.003235 + rotZ: 0.006165979 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: a88392 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Opportunist + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -33.0279427 + posY: 1.56785262 + posZ: -80.14067 + rotX: 0.0261737891 + rotY: 269.966461 + rotZ: 0.0278728977 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 593deb + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Leather Coat + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -32.80654 + posY: 1.57760584 + posZ: -79.7413254 + rotX: 0.0191707332 + rotY: 270.0113 + rotZ: 359.983917 + 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: + '3685': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: bb1cce + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Flashlight + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -32.6926346 + posY: 1.58785772 + posZ: -80.19591 + rotX: 0.0188443642 + rotY: 270.001373 + rotZ: 0.0263511669 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274208 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 66b7d5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Well Connected + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -32.6768875 + posY: 1.5976665 + posZ: -79.50004 + rotX: 0.0299177263 + rotY: 269.9942 + rotZ: 359.98703 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 48e103 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Baseball Bat + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -32.56969 + posY: 1.69477642 + posZ: -79.92233 + rotX: 3.702975 + rotY: 269.954285 + rotZ: 0.431394368 + 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: + '4315': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: '394603' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Family Inheritance + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.3614044 + posY: 1.84617054 + posZ: -72.27911 + rotX: 0.0219750758 + rotY: 269.999817 + rotZ: 180.017319 + 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 + UniqueBack: false + Description: Taboo + GMNotes: '' + GUID: 83457e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Elusive + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.3625755 + posY: 2.72666073 + posZ: -72.27268 + rotX: 0.0208313428 + rotY: 270.0212 + rotZ: 180.016815 + 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: + '3685': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: bb1cce + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Flashlight + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.3625755 + posY: 2.72666073 + posZ: -72.27268 + rotX: 0.0208313428 + rotY: 270.0212 + rotZ: 180.016815 + 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: + '3685': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: acb83a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Unexpected Courage + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.3625755 + posY: 2.77666068 + posZ: -72.27268 + rotX: 0.0208313428 + rotY: 270.0212 + rotZ: 180.016815 + 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: + '3685': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 510c0d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Emergency Cache + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.3625755 + posY: 2.72666073 + posZ: -72.27268 + rotX: 0.0208313428 + rotY: 270.0212 + rotZ: 180.016815 + 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: + '3687': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: cdfd9f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Backstab + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.3625755 + posY: 2.72666073 + posZ: -72.27268 + rotX: 0.0208313428 + rotY: 270.0212 + rotZ: 180.016815 + 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 + UniqueBack: false + Description: The Louisiana Lion + GMNotes: '' + GUID: eaa415 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Leo De Luca + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.3625755 + posY: 2.72666073 + posZ: -72.27268 + rotX: 0.0208313428 + rotY: 270.0212 + rotZ: 180.016815 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: acce72 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Lodge "Debts" + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.3625755 + posY: 2.72666073 + posZ: -72.27268 + rotX: 0.0208313428 + rotY: 270.0212 + rotZ: 180.016815 + 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: + '3688': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: e8ea95 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Cunning Distraction + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.3625755 + posY: 2.72666073 + posZ: -72.27268 + rotX: 0.0208313428 + rotY: 270.0212 + rotZ: 180.016815 + 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: + '3685': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 0ab3f1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Knife + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.3625755 + posY: 2.77666068 + posZ: -72.27268 + rotX: 0.0208313428 + rotY: 270.0212 + rotZ: 180.016815 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2617': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '2742': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025944587/520448D0E9C22F102C7DDF64322EAD6FC221ECC8/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '3685': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '3686': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '3687': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '3688': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '3789': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '4315': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '4501': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065907888682568/7EEF5065450AA58C3D2BB88F4A83F0EF698E690B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 368512 +- 274207 +- 368800 +- 368822 +- 274206 +- 368623 +- 368824 +- 368816 +- 368509 +- 368831 +- 368713 +- 274206 +- 368823 +- 368810 +- 368508 +- 274208 +- 274207 +- 261702 +- 368820 +- 368515 +- 274208 +- 368830 +- 431557 +- 450108 +- 368515 +- 368508 +- 368509 +- 368716 +- 368631 +- 378958 +- 368819 +- 368512 +Description: '' +GMNotes: '' +GUID: da9a96 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -26.2987461 + posY: 3.5615592 + posZ: -65.03857 + rotX: 0.0206674468 + rotY: 270.0 + rotZ: 180.016891 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 0dcbe8/Deck Carolyn Fern 6414c4.yaml b/unpacked/Custom_Model_Bag The Circle Undone 0dcbe8/Deck Carolyn Fern 6414c4.yaml new file mode 100644 index 000000000..8f0907144 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 0dcbe8/Deck Carolyn Fern 6414c4.yaml @@ -0,0 +1,129 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 273306 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2664': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1011562618093846975/4726098952C64103F2C211D202FFDD40D9D988BB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869050066760/0DE2BD4589CC8C2F3D26C2900A17ED7A6483062F/ + NumHeight: 3 + NumWidth: 7 + UniqueBack: true + Description: Promo version + GMNotes: '' + GUID: b57bab + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Carolyn Fern + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 18.2441311 + posY: 1.34964907 + posZ: -65.33001 + rotX: 0.0195735339 + rotY: 270.0121 + rotZ: 0.0161776356 + scaleX: 0.6 + scaleY: 1.0 + scaleZ: 0.6 + XmlUI: '' +- Autoraise: true + CardID: 273302 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2664': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1011562618093846975/4726098952C64103F2C211D202FFDD40D9D988BB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869050066760/0DE2BD4589CC8C2F3D26C2900A17ED7A6483062F/ + NumHeight: 3 + NumWidth: 7 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 30614e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Carolyn Fern + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 18.2441559 + posY: 1.49369192 + posZ: -65.33001 + rotX: 0.00792104 + rotY: 270.013428 + rotZ: 0.009383968 + scaleX: 0.6 + scaleY: 1.0 + scaleZ: 0.6 + XmlUI: '' +CustomDeck: + '2733': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1011562618093846975/4726098952C64103F2C211D202FFDD40D9D988BB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869050066760/0DE2BD4589CC8C2F3D26C2900A17ED7A6483062F/ + NumHeight: 3 + NumWidth: 7 + UniqueBack: true +DeckIDs: +- 273306 +- 273302 +Description: '' +GMNotes: '' +GUID: 6414c4 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Carolyn Fern +SidewaysCard: false +Snap: false +Sticky: true +Tooltip: true +Transform: + posX: -19.2989 + posY: 1.38280749 + posZ: -49.9567 + rotX: 0.02080671 + rotY: 270.01178 + rotZ: 0.0167743433 + scaleX: 0.6 + scaleY: 1.0 + scaleZ: 0.6 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 0dcbe8/Deck Carolyn Fern aa0875.yaml b/unpacked/Custom_Model_Bag The Circle Undone 0dcbe8/Deck Carolyn Fern aa0875.yaml new file mode 100644 index 000000000..5ad167e7d --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 0dcbe8/Deck Carolyn Fern aa0875.yaml @@ -0,0 +1,129 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 273527 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2735': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1011562618093845464/80687C9319FA2015F3D9F7CBEB4C55FBF045B27D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1011562618093845971/A678BD374EC4DE672206B5EF7EB57DC885BC839C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: The Psychologist + GMNotes: '' + GUID: f0533d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Carolyn Fern (promo version) + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 14.9252281 + posY: 1.37140012 + posZ: -65.33085 + rotX: 0.0158536229 + rotY: 179.993378 + rotZ: 1.06265438 + scaleX: 1.1 + scaleY: 1.0 + scaleZ: 1.1 + XmlUI: '' +- Autoraise: true + CardID: 273521 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2735': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1011562618093845464/80687C9319FA2015F3D9F7CBEB4C55FBF045B27D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1011562618093845971/A678BD374EC4DE672206B5EF7EB57DC885BC839C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: The Psychologist + GMNotes: '' + GUID: b03b12 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Carolyn Fern + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 14.9163589 + posY: 1.525322 + posZ: -65.3273 + rotX: 0.2187055 + rotY: 180.03656 + rotZ: 0.651601732 + scaleX: 1.1 + scaleY: 1.0 + scaleZ: 1.1 + XmlUI: '' +CustomDeck: + '2735': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1011562618093845464/80687C9319FA2015F3D9F7CBEB4C55FBF045B27D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1011562618093845971/A678BD374EC4DE672206B5EF7EB57DC885BC839C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 273527 +- 273521 +Description: '' +GMNotes: '' +GUID: aa0875 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Carolyn Fern +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -22.6128 + posY: 1.38160324 + posZ: -49.959 + rotX: 0.0167649537 + rotY: 179.980835 + rotZ: 359.9792 + scaleX: 1.1 + scaleY: 1.0 + scaleZ: 1.1 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 61e777.ttslua b/unpacked/Custom_Model_Bag The Circle Undone 61e777.ttslua new file mode 100644 index 000000000..5ff76a978 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 61e777.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,5,6}, rotation={0,0,0}, height=500, width=1200, + font_size=350, 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={1.5,5,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.2,5,6}, rotation={0,0,0}, height=500, width=1200, + font_size=350, color={0,0,0}, font_color={1,1,1} + }) + self.createButton({ + label="Reset", click_function="buttonClick_reset", function_owner=self, + position={-4,5,6}, rotation={0,0,0}, height=500, width=1000, + font_size=350, 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={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={-6,1,0}, rotation={0,90,0}, height=500, width=1200, +-- font_size=350, 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 \ No newline at end of file diff --git a/unpacked/Custom_Model_Bag The Circle Undone 61e777.yaml b/unpacked/Custom_Model_Bag The Circle Undone 61e777.yaml new file mode 100644 index 000000000..eea3f7875 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 61e777.yaml @@ -0,0 +1,72 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +ContainedObjects: +- !include 'Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 4 The Wages + of Sin 1e45e8.yaml' +- !include 'Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 6 Union and + Disillusion 20f70a.yaml' +- !include 'Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag Prologue Disappearance + at the Twilight Estate 2f008a.yaml' +- !include 'Custom_Model_Bag The Circle Undone 61e777/Custom_Tile The Circle Undone + Campaign Log 1 44a05a.yaml' +- !include 'Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 3 The Secret + Name 5c79d0.yaml' +- !include 'Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 1 The Witching + Hour 67a775.yaml' +- !include 'Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 2 At Door''s + Doorstep 7388bc.yaml' +- !include 'Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 5 For the Greater + Good a61b48.yaml' +- !include 'Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 8 Before the + Black Throne e1af76.yaml' +- !include 'Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 7 In the Clutches + of Chaos e4ea5f.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/762723517669843863/DC0750A38111062909FEDA1BC20685895A574A54/ + MaterialIndex: 3 + MeshURL: https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/core_h_MSH.obj + NormalURL: '' + TypeIndex: 6 +Description: '' +GMNotes: '' +GUID: 61e777 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Model_Bag The Circle Undone 61e777.ttslua' +LuaScriptState: '{"ml":{"1e45e8":{"lock":false,"pos":{"x":12.251,"y":1.4643,"z":-0.3299},"rot":{"x":359.9201,"y":270.0001,"z":0.0169}},"20f70a":{"lock":false,"pos":{"x":12.2501,"y":1.4598,"z":-15.565},"rot":{"x":359.9201,"y":270.0092,"z":0.0169}},"2f008a":{"lock":false,"pos":{"x":12.2514,"y":1.4733,"z":30.0184},"rot":{"x":359.9201,"y":269.9992,"z":0.0169}},"44a05a":{"lock":false,"pos":{"x":-1.4402,"y":1.4756,"z":-27.0401},"rot":{"x":359.9201,"y":270.0003,"z":0.0169}},"5c79d0":{"lock":false,"pos":{"x":12.2511,"y":1.4666,"z":7.4085},"rot":{"x":359.9201,"y":270.0015,"z":0.0169}},"67a775":{"lock":false,"pos":{"x":12.2511,"y":1.4711,"z":22.5768},"rot":{"x":359.9201,"y":270.0391,"z":0.0168}},"7388bc":{"lock":false,"pos":{"x":12.2493,"y":1.4689,"z":15.0885},"rot":{"x":359.9201,"y":270.0018,"z":0.0169}},"a61b48":{"lock":false,"pos":{"x":12.2511,"y":1.4621,"z":-7.8868},"rot":{"x":359.9201,"y":270.001,"z":0.0169}},"e1af76":{"lock":false,"pos":{"x":12.2502,"y":1.4551,"z":-31.5308},"rot":{"x":359.9201,"y":270.013,"z":0.0169}},"e4ea5f":{"lock":false,"pos":{"x":12.2499,"y":1.4576,"z":-23.286},"rot":{"x":359.9201,"y":270.0049,"z":0.0169}}}}' +MaterialIndex: -1 +MeshIndex: -1 +Name: Custom_Model_Bag +Nickname: The Circle Undone +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 51.6527977 + posY: 1.4012928 + posZ: -27.8701668 + rotX: 359.920135 + rotY: 269.9947 + rotZ: 0.0168802273 + scaleX: 1.0 + scaleY: 0.139652729 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 1 The Witching Hour 67a775.ttslua b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 1 The Witching Hour 67a775.ttslua new file mode 100644 index 000000000..ed7a62e7d --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 1 The Witching Hour 67a775.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.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.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 \ No newline at end of file diff --git a/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 1 The Witching Hour 67a775.yaml b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 1 The Witching Hour 67a775.yaml new file mode 100644 index 000000000..376b5c4fb --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 1 The Witching Hour 67a775.yaml @@ -0,0 +1,68 @@ +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 1 The Witching Hour 67a775/Custom_Model_Bag Set-aside + 0da03e.yaml' +- !include 'Custom_Model_Bag 1 The Witching Hour 67a775/Card Scenario 35dcd2.yaml' +- !include 'Custom_Model_Bag 1 The Witching Hour 67a775/Deck Witch-Haunted Woods 8f6174.yaml' +- !include 'Custom_Model_Bag 1 The Witching Hour 67a775/Deck Agenda Deck ad3298.yaml' +- !include 'Custom_Model_Bag 1 The Witching Hour 67a775/Deck Act Deck c7d2b7.yaml' +- !include 'Custom_Model_Bag 1 The Witching Hour 67a775/Deck Encounter Deck e93c2f.yaml' +- !include 'Custom_Model_Bag 1 The Witching Hour 67a775/Custom_Tile The Witching Hour + f697b0.yaml' +CustomMesh: + CastShadows: true + ColliderURL: '' + Convex: true + DiffuseURL: http://cloud-3.steamusercontent.com/ugc/829135118401811143/D4D1F789798EE5B55B10782ACC5D595C4281F074/ + MaterialIndex: 3 + MeshURL: https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj + NormalURL: '' + TypeIndex: 6 +Description: The Circle Undone +GMNotes: '' +GUID: 67a775 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Model_Bag 1 The Witching Hour 67a775.ttslua' +LuaScriptState: '{"ml":{"0da03e":{"lock":false,"pos":{"x":1.6966,"y":1.5583,"z":14.2787},"rot":{"x":359.9551,"y":224.998,"z":0.0687}},"35dcd2":{"lock":false,"pos":{"x":-3.956,"y":1.6556,"z":-10.4412},"rot":{"x":359.9197,"y":269.9995,"z":0.0168}},"8f6174":{"lock":false,"pos":{"x":-17.12,"y":1.6806,"z":-0.03},"rot":{"x":359.9201,"y":269.9995,"z":0.0169}},"ad3298":{"lock":false,"pos":{"x":-2.7247,"y":1.664,"z":0.3733},"rot":{"x":0.0168,"y":179.9998,"z":0.0803}},"c7d2b7":{"lock":false,"pos":{"x":-2.6885,"y":1.6535,"z":-5.0485},"rot":{"x":0.0168,"y":180.0168,"z":0.0803}},"e93c2f":{"lock":false,"pos":{"x":-3.9276,"y":1.7504,"z":5.7571},"rot":{"x":359.9197,"y":269.9992,"z":180.0168}},"f697b0":{"lock":false,"pos":{"x":-3.6965,"y":1.5822,"z":-15.0888},"rot":{"x":359.9197,"y":270.0056,"z":0.0168}}}}' +MaterialIndex: -1 +MeshIndex: -1 +Name: Custom_Model_Bag +Nickname: '1: The Witching Hour' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 12.2511053 + posY: 1.471078 + posZ: 22.5768032 + rotX: 359.9201 + rotY: 270.039032 + rotZ: 0.0168196857 + scaleX: 2.21 + scaleY: 0.46 + scaleZ: 2.42 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 1 The Witching Hour 67a775/Card Scenario 35dcd2.yaml b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 1 The Witching Hour 67a775/Card Scenario 35dcd2.yaml new file mode 100644 index 000000000..2cf44f5f7 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 1 The Witching Hour 67a775/Card Scenario 35dcd2.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 231707 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2317': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/829135524526797029/1F8A6C29028AED32DB44E4CF22E3120C417F413D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526785922/F34A644AC467C751B6D7B8AF398B8FDB07CCF6A0/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: The Witching Hour +GMNotes: '' +GUID: 35dcd2 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Scenario +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.956 + posY: 1.65564811 + posZ: -10.4412022 + rotX: 359.919739 + rotY: 269.9995 + rotZ: 0.0168414 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 1 The Witching Hour 67a775/Custom_Model_Bag Set-aside 0da03e.yaml b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 1 The Witching Hour 67a775/Custom_Model_Bag Set-aside 0da03e.yaml new file mode 100644 index 000000000..0f9ab73bf --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 1 The Witching Hour 67a775/Custom_Model_Bag Set-aside 0da03e.yaml @@ -0,0 +1,61 @@ +Autoraise: true +ColorDiffuse: + b: 0.02148666 + g: 0.00100758043 + r: 0.02148666 +ContainedObjects: +- !include "Custom_Model_Bag Set-aside 0da03e/Card The Tower \u2022 XVI d5c93d.yaml" +- !include 'Custom_Model_Bag Set-aside 0da03e/Card Ace of Rods (1) 4fb46f.yaml' +- !include 'Custom_Model_Bag Set-aside 0da03e/Card Anette Mason 845563.yaml' +- !include 'Custom_Model_Bag Set-aside 0da03e/Deck Arkham Woods 9d2e72.yaml' +- !include 'Custom_Model_Bag Set-aside 0da03e/Deck Agents of Shub-Niggurath 3175c4.yaml' +- !include 'Custom_Model_Bag Set-aside 0da03e/Deck Agents of Azathoth 65502d.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: '' +GMNotes: '' +GUID: 0da03e +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +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.696601 + posY: 1.55831683 + posZ: 14.2787027 + rotX: 359.955139 + rotY: 224.998 + rotZ: 0.06867232 + scaleX: 2.0 + scaleY: 2.0 + scaleZ: 2.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 1 The Witching Hour 67a775/Custom_Model_Bag Set-aside 0da03e/Card Ace of Rods (1) 4fb46f.yaml b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 1 The Witching Hour 67a775/Custom_Model_Bag Set-aside 0da03e/Card Ace of Rods (1) 4fb46f.yaml new file mode 100644 index 000000000..a265dc8ae --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 1 The Witching Hour 67a775/Custom_Model_Bag Set-aside 0da03e/Card Ace of Rods (1) 4fb46f.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 292603 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2926': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025942034/FEADE7F6206804B42CC9B6049F51EDF6040C5D1D/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: The Fateful Step +GMNotes: '' +GUID: 4fb46f +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Ace of Rods (1) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -6.42330551 + posY: 2.81578183 + posZ: -15.1154623 + rotX: 359.920135 + rotY: 270.0 + rotZ: 0.01687873 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 1 The Witching Hour 67a775/Custom_Model_Bag Set-aside 0da03e/Card Anette Mason 845563.yaml b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 1 The Witching Hour 67a775/Custom_Model_Bag Set-aside 0da03e/Card Anette Mason 845563.yaml new file mode 100644 index 000000000..996a57fd6 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 1 The Witching Hour 67a775/Custom_Model_Bag Set-aside 0da03e/Card Anette Mason 845563.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 231800 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: The High Priestess +GMNotes: '' +GUID: '845563' +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Anette Mason +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 23.7801342 + posY: 3.56756115 + posZ: -12.4946537 + rotX: 359.919678 + rotY: 269.998474 + rotZ: 0.0173492152 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 1 The Witching Hour 67a775/Custom_Model_Bag Set-aside 0da03e/Card The Tower • XVI d5c93d.yaml b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 1 The Witching Hour 67a775/Custom_Model_Bag Set-aside 0da03e/Card The Tower • XVI d5c93d.yaml new file mode 100644 index 000000000..82e935e90 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 1 The Witching Hour 67a775/Custom_Model_Bag Set-aside 0da03e/Card The Tower • XVI d5c93d.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Circumstances Beyond Your Control +GMNotes: '' +GUID: d5c93d +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: "The Tower \u2022 XVI" +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -6.183633 + posY: 2.8164773 + posZ: -11.6198263 + rotX: 359.920044 + rotY: 270.005859 + rotZ: 0.0164405052 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 1 The Witching Hour 67a775/Custom_Model_Bag Set-aside 0da03e/Deck Agents of Azathoth 65502d.yaml b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 1 The Witching Hour 67a775/Custom_Model_Bag Set-aside 0da03e/Deck Agents of Azathoth 65502d.yaml new file mode 100644 index 000000000..c67958a34 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 1 The Witching Hour 67a775/Custom_Model_Bag Set-aside 0da03e/Deck Agents of Azathoth 65502d.yaml @@ -0,0 +1,215 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 231803 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Elite. + GMNotes: '' + GUID: 092d86 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Piper of Azatoth + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 25.1804886 + posY: 1.50821829 + posZ: -33.247345 + rotX: 359.914459 + rotY: 270.007751 + rotZ: 0.0151159875 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231804 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Power. Terror. + GMNotes: '' + GUID: f84e0e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Daemonic Piping + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 24.943243 + posY: 1.64901268 + posZ: -33.1631355 + rotX: 359.923157 + rotY: 270.000244 + rotZ: 0.0113229118 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231804 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Power. Terror. + GMNotes: '' + GUID: f84e0e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Daemonic Piping + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 25.44798 + posY: 1.66371691 + posZ: -33.04016 + rotX: 359.917969 + rotY: 270.000061 + rotZ: 0.0156315826 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231804 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Power. Terror. + GMNotes: '' + GUID: f84e0e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Daemonic Piping + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 25.4479656 + posY: 1.6527828 + posZ: -33.0401649 + rotX: 359.918152 + rotY: 270.000122 + rotZ: 0.01566419 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 231803 +- 231804 +- 231804 +- 231804 +Description: '' +GMNotes: '' +GUID: 65502d +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Agents of Azathoth +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 23.6495457 + posY: 3.46883488 + posZ: -23.1690922 + rotX: 359.920135 + rotY: 270.006531 + rotZ: 0.0168636087 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 1 The Witching Hour 67a775/Custom_Model_Bag Set-aside 0da03e/Deck Agents of Shub-Niggurath 3175c4.yaml b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 1 The Witching Hour 67a775/Custom_Model_Bag Set-aside 0da03e/Deck Agents of Shub-Niggurath 3175c4.yaml new file mode 100644 index 000000000..84df5c595 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 1 The Witching Hour 67a775/Custom_Model_Bag Set-aside 0da03e/Deck Agents of Shub-Niggurath 3175c4.yaml @@ -0,0 +1,215 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 3634 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Monster. + GMNotes: '' + GUID: 19459f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Goat Spawn + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 90.65886 + posY: 1.40921557 + posZ: -0.233399391 + rotX: 359.987427 + rotY: 270.0001 + rotZ: 359.984528 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3634 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Monster. + GMNotes: '' + GUID: dbcee1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Goat Spawn + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 90.53866 + posY: 1.55464137 + posZ: -0.678629 + rotX: 359.990082 + rotY: 270.000366 + rotZ: 359.988 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3634 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Monster. + GMNotes: '' + GUID: bda9db + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Goat Spawn + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 90.78235 + posY: 1.57190418 + posZ: -0.8887629 + rotX: 359.9898 + rotY: 269.999756 + rotZ: 359.987976 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3633 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Dark Young. + GMNotes: '' + GUID: da8001 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Relentless Dark Young + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -7.028802 + posY: 1.70160449 + posZ: -19.1037846 + rotX: 0.01503002 + rotY: 180.011887 + rotZ: 0.06358985 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 3634 +- 3634 +- 3634 +- 3633 +Description: '' +GMNotes: '' +GUID: 3175c4 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Agents of Shub-Niggurath +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 23.8367386 + posY: 3.469521 + posZ: -19.9506054 + rotX: 359.920135 + rotY: 269.996735 + rotZ: 0.0168742351 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 1 The Witching Hour 67a775/Custom_Model_Bag Set-aside 0da03e/Deck Arkham Woods 9d2e72.yaml b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 1 The Witching Hour 67a775/Custom_Model_Bag Set-aside 0da03e/Deck Arkham Woods 9d2e72.yaml new file mode 100644 index 000000000..8da17b93b --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 1 The Witching Hour 67a775/Custom_Model_Bag Set-aside 0da03e/Deck Arkham Woods 9d2e72.yaml @@ -0,0 +1,301 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 3539 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '35': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/87094793642556387/D32E204C37FB97BB2F7B5A72C1CB867181533D5C/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642555419/98C6688D4F868ABA23FF62848E773F55962361C5/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Woods + GMNotes: '' + GUID: 9fff9f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Arkham Woods + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 5.94822025 + posY: 1.03171337 + posZ: -11.5008354 + rotX: 1.42216059e-05 + rotY: 179.976181 + rotZ: -1.28611e-06 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3540 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '35': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/87094793642556387/D32E204C37FB97BB2F7B5A72C1CB867181533D5C/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642555419/98C6688D4F868ABA23FF62848E773F55962361C5/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Woods + GMNotes: '' + GUID: deaa6c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Arkham Woods + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 5.32451725 + posY: 1.03171325 + posZ: -11.8748674 + rotX: 1.36801236e-05 + rotY: 180.0 + rotZ: -1.61335913e-06 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3538 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '35': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/87094793642556387/D32E204C37FB97BB2F7B5A72C1CB867181533D5C/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642555419/98C6688D4F868ABA23FF62848E773F55962361C5/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Woods. + GMNotes: '' + GUID: 3a7f2c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Arkham Woods + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 5.37175941 + posY: 1.13171315 + posZ: -11.9442635 + rotX: 1.33452786e-05 + rotY: 180.000824 + rotZ: -3.98964517e-07 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3537 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '35': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/87094793642556387/D32E204C37FB97BB2F7B5A72C1CB867181533D5C/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642555419/98C6688D4F868ABA23FF62848E773F55962361C5/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Woods. + GMNotes: '' + GUID: '701563' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Arkham Woods + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 5.523985 + posY: 1.1817131 + posZ: -10.9815063 + rotX: 1.33532585e-05 + rotY: 179.92868 + rotZ: -3.776301e-07 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3536 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '35': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/87094793642556387/D32E204C37FB97BB2F7B5A72C1CB867181533D5C/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642555419/98C6688D4F868ABA23FF62848E773F55962361C5/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Woods. + GMNotes: '' + GUID: add566 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Arkham Woods + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 4.891869 + posY: 1.327963 + posZ: -11.92246 + rotX: 5.279162e-05 + rotY: 179.982819 + rotZ: 4.28566236e-05 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3535 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '35': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/87094793642556387/D32E204C37FB97BB2F7B5A72C1CB867181533D5C/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642555419/98C6688D4F868ABA23FF62848E773F55962361C5/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Woods. + GMNotes: '' + GUID: 3baf39 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Arkham Woods + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 4.830782 + posY: 1.6152488 + posZ: -12.2257776 + rotX: 353.9548 + rotY: 180.018768 + rotZ: 358.6411 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '35': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/87094793642556387/D32E204C37FB97BB2F7B5A72C1CB867181533D5C/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642555419/98C6688D4F868ABA23FF62848E773F55962361C5/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 3539 +- 3540 +- 3538 +- 3537 +- 3536 +- 3535 +Description: '' +GMNotes: '' +GUID: 9d2e72 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Arkham Woods +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 23.5791035 + posY: 3.47389364 + posZ: -15.9258289 + rotX: 359.920135 + rotY: 270.0 + rotZ: 0.01686523 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 1 The Witching Hour 67a775/Custom_Tile The Witching Hour f697b0.ttslua b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 1 The Witching Hour 67a775/Custom_Tile The Witching Hour f697b0.ttslua new file mode 100644 index 000000000..b35f5f46b --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 1 The Witching Hour 67a775/Custom_Tile The Witching Hour f697b0.ttslua @@ -0,0 +1,21 @@ +name = 'The Witching Hour' + +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 Circle Undone 61e777/Custom_Model_Bag 1 The Witching Hour 67a775/Custom_Tile The Witching Hour f697b0.yaml b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 1 The Witching Hour 67a775/Custom_Tile The Witching Hour f697b0.yaml new file mode 100644 index 000000000..997d8064a --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 1 The Witching Hour 67a775/Custom_Tile The Witching Hour f697b0.yaml @@ -0,0 +1,42 @@ +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 +GMNotes: '' +GUID: f697b0 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Tile The Witching Hour f697b0.ttslua' +LuaScriptState: '' +Name: Custom_Tile +Nickname: The Witching Hour +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.6965003 + posY: 1.58220541 + posZ: -15.0888014 + rotX: 359.919739 + rotY: 270.0055 + rotZ: 0.0168300048 + scaleX: 2.2 + scaleY: 1.0 + scaleZ: 2.2 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 1 The Witching Hour 67a775/Deck Act Deck c7d2b7.yaml b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 1 The Witching Hour 67a775/Deck Act Deck c7d2b7.yaml new file mode 100644 index 000000000..6583e4c38 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 1 The Witching Hour 67a775/Deck Act Deck c7d2b7.yaml @@ -0,0 +1,215 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 232013 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/829135524526797029/1F8A6C29028AED32DB44E4CF22E3120C417F413D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526785922/F34A644AC467C751B6D7B8AF398B8FDB07CCF6A0/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 4 + GMNotes: '' + GUID: 0a0759 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: A Circle Unbroken + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -13.39085 + posY: 1.573935 + posZ: 7.543645 + rotX: 0.008133726 + rotY: 180.001221 + rotZ: 0.07553037 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232012 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/829135524526797029/1F8A6C29028AED32DB44E4CF22E3120C417F413D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526785922/F34A644AC467C751B6D7B8AF398B8FDB07CCF6A0/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 3 + GMNotes: '' + GUID: c31146 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Paths into Twilight + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -10.4994593 + posY: 1.56992149 + posZ: 7.226833 + rotX: 0.0122376485 + rotY: 180.002289 + rotZ: 0.07501469 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232011 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/829135524526797029/1F8A6C29028AED32DB44E4CF22E3120C417F413D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526785922/F34A644AC467C751B6D7B8AF398B8FDB07CCF6A0/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 2 + GMNotes: '' + GUID: 68cfea + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Witch Hauntings + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -7.62799454 + posY: 1.56589842 + posZ: 7.2519803 + rotX: 0.0122893164 + rotY: 179.999939 + rotZ: 0.0784956142 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232010 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/829135524526797029/1F8A6C29028AED32DB44E4CF22E3120C417F413D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526785922/F34A644AC467C751B6D7B8AF398B8FDB07CCF6A0/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 1 + GMNotes: '' + GUID: 5b7c7c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Lost in the Woods + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -7.58153057 + posY: 1.7061789 + posZ: 7.33736944 + rotX: 0.0176965259 + rotY: 180.000427 + rotZ: 0.08492906 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/829135524526797029/1F8A6C29028AED32DB44E4CF22E3120C417F413D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526785922/F34A644AC467C751B6D7B8AF398B8FDB07CCF6A0/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 232013 +- 232012 +- 232011 +- 232010 +Description: '' +GMNotes: '' +GUID: c7d2b7 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Act Deck +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.6885 + posY: 1.65349448 + posZ: -5.0485 + rotX: 0.0168115646 + rotY: 180.016739 + rotZ: 0.0802623853 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 1 The Witching Hour 67a775/Deck Agenda Deck ad3298.yaml b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 1 The Witching Hour 67a775/Deck Agenda Deck ad3298.yaml new file mode 100644 index 000000000..51abc2a6d --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 1 The Witching Hour 67a775/Deck Agenda Deck ad3298.yaml @@ -0,0 +1,129 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 232009 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/829135524526797029/1F8A6C29028AED32DB44E4CF22E3120C417F413D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526785922/F34A644AC467C751B6D7B8AF398B8FDB07CCF6A0/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 2 + GMNotes: '' + GUID: 9d5674 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Night Howls + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -7.297843 + posY: 1.56667411 + posZ: 11.3410053 + rotX: 0.0139629086 + rotY: 179.999878 + rotZ: 0.07908345 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232008 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/829135524526797029/1F8A6C29028AED32DB44E4CF22E3120C417F413D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526785922/F34A644AC467C751B6D7B8AF398B8FDB07CCF6A0/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 1 + GMNotes: '' + GUID: 96a76c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: "TEMPERANCE \xB7 XIV" + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -7.0022 + posY: 1.70677054 + posZ: 11.2190895 + rotX: 0.00582233956 + rotY: 179.99968 + rotZ: 0.09951117 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/829135524526797029/1F8A6C29028AED32DB44E4CF22E3120C417F413D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526785922/F34A644AC467C751B6D7B8AF398B8FDB07CCF6A0/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 232009 +- 232008 +Description: '' +GMNotes: '' +GUID: ad3298 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Agenda Deck +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.7247 + posY: 1.66397727 + posZ: 0.3733003 + rotX: 0.0168352686 + rotY: 179.999817 + rotZ: 0.08025779 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 1 The Witching Hour 67a775/Deck Encounter Deck e93c2f.yaml b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 1 The Witching Hour 67a775/Deck Encounter Deck e93c2f.yaml new file mode 100644 index 000000000..57f39e23a --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 1 The Witching Hour 67a775/Deck Encounter Deck e93c2f.yaml @@ -0,0 +1,1168 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 231814 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Curse. + GMNotes: '' + GUID: 81dc7a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Centuries of Secrets + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -31.1529961 + posY: 1.60048223 + posZ: 13.00202 + rotX: 359.920135 + rotY: 270.0 + rotZ: 0.01686549 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231814 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Curse. + GMNotes: '' + GUID: 0a13d0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Centuries of Secrets + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -31.1531715 + posY: 1.59978771 + posZ: 10.6427326 + rotX: 359.920135 + rotY: 270.0 + rotZ: 0.0168689042 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231814 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Curse. + GMNotes: '' + GUID: 9cb625 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Centuries of Secrets + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -31.1533489 + posY: 1.5990932 + posZ: 8.283448 + rotX: 359.920135 + rotY: 270.0 + rotZ: 0.0168649089 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231813 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Curse. + GMNotes: '' + GUID: ab69b8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Evil Past + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -31.1535263 + posY: 1.5983988 + posZ: 5.924162 + rotX: 359.920135 + rotY: 269.999939 + rotZ: 0.0168659426 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12119 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '121': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: f1a34d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dissonant Voices + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -31.153698 + posY: 1.59770441 + posZ: 3.56487679 + rotX: 359.920135 + rotY: 269.999939 + rotZ: 0.0168739818 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12120 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '121': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: 61e841 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ancient Evils + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -31.1538734 + posY: 1.5970099 + posZ: 1.20559013 + rotX: 359.920135 + rotY: 269.9999 + rotZ: 0.0168712325 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12120 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '121': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: 1921c5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ancient Evils + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -31.15405 + posY: 1.59631538 + posZ: -1.153695 + rotX: 359.920135 + rotY: 269.999939 + rotZ: 0.016872257 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12119 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '121': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: '260768' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dissonant Voices + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -34.4744949 + posY: 1.60511291 + posZ: 13.0022678 + rotX: 359.920135 + rotY: 269.999847 + rotZ: 0.016863469 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12120 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '121': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: e0f4c0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ancient Evils + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -31.1542244 + posY: 1.595621 + posZ: -3.51298 + rotX: 359.920135 + rotY: 270.0 + rotZ: 0.0168725476 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231805 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Witch. + GMNotes: '' + GUID: c35966 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Coven Initiate + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -34.4750137 + posY: 1.60302925 + posZ: 5.92440939 + rotX: 359.920135 + rotY: 269.999878 + rotZ: 0.01687006 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231808 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: 4949ea + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Wracked + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -34.47484 + posY: 1.60372376 + posZ: 8.283695 + rotX: 359.920135 + rotY: 269.999878 + rotZ: 0.01686561 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231806 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Witch. + GMNotes: '' + GUID: 326f11 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Priestess of the Coven + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -34.6088028 + posY: 1.6046325 + posZ: 10.7354145 + rotX: 359.920135 + rotY: 270.0028 + rotZ: 0.0168665145 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231805 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Witch. + GMNotes: '' + GUID: 6f2c2e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Coven Initiate + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -34.4757233 + posY: 1.60025144 + posZ: -3.51273465 + rotX: 359.920135 + rotY: 270.0 + rotZ: 0.0168698486 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12118 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '121': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: c40f57 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Frozen in Fear + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -34.4755363 + posY: 1.600946 + posZ: -1.15344846 + rotX: 359.920135 + rotY: 270.000031 + rotZ: 0.01686838 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231805 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Witch. + GMNotes: '' + GUID: 367d03 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Coven Initiate + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -34.47536 + posY: 1.60164046 + posZ: 1.2058363 + rotX: 359.9201 + rotY: 269.999847 + rotZ: 0.0168651938 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12118 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '121': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: 27c05d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Frozen in Fear + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -34.47519 + posY: 1.60233474 + posZ: 3.565123 + rotX: 359.920135 + rotY: 269.999939 + rotZ: 0.01687042 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231813 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Curse. + GMNotes: '' + GUID: 976fd8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Evil Past + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -31.1544037 + posY: 1.59492648 + posZ: -5.87226534 + rotX: 359.920135 + rotY: 270.000031 + rotZ: 0.0168683082 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12117 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '121': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: aa3d47 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Rotting Remains + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -34.4759026 + posY: 1.59955692 + posZ: -5.872021 + rotX: 359.920135 + rotY: 269.999939 + rotZ: 0.0168718528 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231807 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Curse. + GMNotes: '' + GUID: 407e66 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Diabolic Voices + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -31.15458 + posY: 1.59423184 + posZ: -8.231554 + rotX: 359.920135 + rotY: 270.000061 + rotZ: 0.0168670043 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231809 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: f7c676 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Bedeviled + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -34.4760742 + posY: 1.59886241 + posZ: -8.231309 + rotX: 359.920135 + rotY: 269.999939 + rotZ: 0.0168680027 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231807 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Curse. + GMNotes: '' + GUID: 64341a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Diabolic Voices + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -31.1547565 + posY: 1.59353733 + posZ: -10.5908394 + rotX: 359.920135 + rotY: 269.9999 + rotZ: 0.016878726 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12117 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '121': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: da8001 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Rotting Remains + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -34.47625 + posY: 1.5981679 + posZ: -10.5905914 + rotX: 359.920135 + rotY: 269.999878 + rotZ: 0.0168722738 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231808 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: c8092b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Wracked + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -31.15493 + posY: 1.59284282 + posZ: -12.9501247 + rotX: 359.920135 + rotY: 269.999939 + rotZ: 0.01686631 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231809 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: a558b5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Bedeviled + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -34.47642 + posY: 1.59747338 + posZ: -12.9498787 + rotX: 359.9201 + rotY: 269.999939 + rotZ: 0.0168697 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231807 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Curse. + GMNotes: '' + GUID: 0fa642 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Diabolic Voices + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -31.1551037 + posY: 1.59214854 + posZ: -15.309413 + rotX: 359.920135 + rotY: 270.0 + rotZ: 0.016871132 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12117 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '121': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: 18e09c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Rotting Remains + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -34.476593 + posY: 1.596779 + posZ: -15.3091669 + rotX: 359.920135 + rotY: 269.999817 + rotZ: 0.0168707632 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '121': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 231814 +- 231814 +- 231814 +- 231813 +- 12119 +- 12120 +- 12120 +- 12119 +- 12120 +- 231805 +- 231808 +- 231806 +- 231805 +- 12118 +- 231805 +- 12118 +- 231813 +- 12117 +- 231807 +- 231809 +- 231807 +- 12117 +- 231808 +- 231809 +- 231807 +- 12117 +Description: '' +GMNotes: '' +GUID: e93c2f +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Encounter Deck +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.9276 + posY: 1.750392 + posZ: 5.75710154 + rotX: 359.919739 + rotY: 269.999176 + rotZ: 180.016815 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 1 The Witching Hour 67a775/Deck Witch-Haunted Woods 8f6174.yaml b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 1 The Witching Hour 67a775/Deck Witch-Haunted Woods 8f6174.yaml new file mode 100644 index 000000000..7f6f1ca68 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 1 The Witching Hour 67a775/Deck Witch-Haunted Woods 8f6174.yaml @@ -0,0 +1,344 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 231901 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/829135524527100186/0D63305581E65C95F286CCA4902B7DE796D815BD/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524527103742/0C4DB40889420CFE47BE897944621ABF2ECA52F9/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Woods. + GMNotes: '' + GUID: eca18e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Witch-Haunted Woods + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.25838232 + posY: 1.54423487 + posZ: -15.0968046 + rotX: 359.920135 + rotY: 269.999939 + rotZ: 0.016869422 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231902 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/829135524527100186/0D63305581E65C95F286CCA4902B7DE796D815BD/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524527103742/0C4DB40889420CFE47BE897944621ABF2ECA52F9/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Woods. + GMNotes: '' + GUID: 05d5ef + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Witch-Haunted Woods + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.3670063 + posY: 1.54326081 + posZ: -17.8906136 + rotX: 359.920135 + rotY: 270.000061 + rotZ: 0.0168700721 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231904 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/829135524527100186/0D63305581E65C95F286CCA4902B7DE796D815BD/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524527103742/0C4DB40889420CFE47BE897944621ABF2ECA52F9/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Woods. + GMNotes: '' + GUID: 0fe9f1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Witch-Haunted Woods + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.26717877 + posY: 1.54263616 + posZ: -20.4850121 + rotX: 359.920135 + rotY: 269.999969 + rotZ: 0.01686795 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231900 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/829135524527100186/0D63305581E65C95F286CCA4902B7DE796D815BD/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524527103742/0C4DB40889420CFE47BE897944621ABF2ECA52F9/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Woods. + GMNotes: '' + GUID: d7fb9d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Witch-Haunted Woods + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -0.0956207737 + posY: 1.54858446 + posZ: -16.2046013 + rotX: 359.920135 + rotY: 270.0001 + rotZ: 0.0168696959 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231903 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/829135524527100186/0D63305581E65C95F286CCA4902B7DE796D815BD/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524527103742/0C4DB40889420CFE47BE897944621ABF2ECA52F9/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Woods. + GMNotes: '' + GUID: d3f8c3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Witch-Haunted Woods + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.0298207663 + posY: 1.54765153 + posZ: -18.7793159 + rotX: 359.920135 + rotY: 270.000061 + rotZ: 0.016869735 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231905 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/829135524527100186/0D63305581E65C95F286CCA4902B7DE796D815BD/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524527103742/0C4DB40889420CFE47BE897944621ABF2ECA52F9/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Woods. + GMNotes: '' + GUID: 1539ea + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Witch-Haunted Woods + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.0108068641 + posY: 1.54669714 + posZ: -22.1110363 + rotX: 359.920135 + rotY: 269.999969 + rotZ: 0.0168679785 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231906 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/829135524527100186/0D63305581E65C95F286CCA4902B7DE796D815BD/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524527103742/0C4DB40889420CFE47BE897944621ABF2ECA52F9/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Woods. + GMNotes: '' + GUID: fc78d7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Witch-Haunted Woods + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.79385471 + posY: 1.5407505 + posZ: -24.39393 + rotX: 359.9201 + rotY: 269.999969 + rotZ: 0.0168750882 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/829135524527100186/0D63305581E65C95F286CCA4902B7DE796D815BD/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524527103742/0C4DB40889420CFE47BE897944621ABF2ECA52F9/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 231901 +- 231902 +- 231904 +- 231900 +- 231903 +- 231905 +- 231906 +Description: '' +GMNotes: '' +GUID: 8f6174 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Witch-Haunted Woods +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -17.12 + posY: 1.68060648 + posZ: -0.0300002769 + rotX: 359.9201 + rotY: 269.999268 + rotZ: 0.0168778934 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 2 At Door's Doorstep 7388bc.ttslua b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 2 At Door's Doorstep 7388bc.ttslua new file mode 100644 index 000000000..46067f58e --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 2 At Door's Doorstep 7388bc.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.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.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 Circle Undone 61e777/Custom_Model_Bag 2 At Door's Doorstep 7388bc.yaml b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 2 At Door's Doorstep 7388bc.yaml new file mode 100644 index 000000000..02959b458 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 2 At Door's Doorstep 7388bc.yaml @@ -0,0 +1,80 @@ +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 2 At Door''s Doorstep 7388bc/Custom_Model_Bag Set-aside + de7cf4.yaml' +- !include 'Custom_Model_Bag 2 At Door''s Doorstep 7388bc/Deck Encounter Deck 05cb54.yaml' +- !include 'Custom_Model_Bag 2 At Door''s Doorstep 7388bc/Deck Agenda Deck 0f2a24.yaml' +- !include 'Custom_Model_Bag 2 At Door''s Doorstep 7388bc/Deck Act Deck 5fa970.yaml' +- !include 'Custom_Model_Bag 2 At Door''s Doorstep 7388bc/Card Scenario c24b98.yaml' +- !include 'Custom_Model_Bag 2 At Door''s Doorstep 7388bc/Custom_Tile At Death''s + Doorstep b21125.yaml' +- !include 'Custom_Model_Bag 2 At Door''s Doorstep 7388bc/Card Office a1bd9a.yaml' +- !include 'Custom_Model_Bag 2 At Door''s Doorstep 7388bc/Custom_Tile 094470.yaml' +- !include 'Custom_Model_Bag 2 At Door''s Doorstep 7388bc/Card Victorian Halls 0699e7.yaml' +- !include 'Custom_Model_Bag 2 At Door''s Doorstep 7388bc/Card Entry Hall d7fb9d.yaml' +- !include 'Custom_Model_Bag 2 At Door''s Doorstep 7388bc/Card Trophy Room e9160a.yaml' +- !include 'Custom_Model_Bag 2 At Door''s Doorstep 7388bc/Card Master Bedroom e0ffe2.yaml' +- !include 'Custom_Model_Bag 2 At Door''s Doorstep 7388bc/Custom_Tile c43910.yaml' +- !include 'Custom_Model_Bag 2 At Door''s Doorstep 7388bc/Custom_Tile 67acd6.yaml' +- !include 'Custom_Model_Bag 2 At Door''s Doorstep 7388bc/Custom_Tile a6af88.yaml' +- !include 'Custom_Model_Bag 2 At Door''s Doorstep 7388bc/Custom_Tile 7234af.yaml' +- !include 'Custom_Model_Bag 2 At Door''s Doorstep 7388bc/Custom_Tile e0e8c6.yaml' +- !include 'Custom_Model_Bag 2 At Door''s Doorstep 7388bc/Card Balcony 1b5483.yaml' +- !include 'Custom_Model_Bag 2 At Door''s Doorstep 7388bc/Card Billiards Room 33990b.yaml' +CustomMesh: + CastShadows: true + ColliderURL: '' + Convex: true + DiffuseURL: http://cloud-3.steamusercontent.com/ugc/829135118401812554/E797F70643F70188791F2CA1434295008BBE9D4B/ + MaterialIndex: 3 + MeshURL: https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj + NormalURL: '' + TypeIndex: 6 +Description: The Circle Undone +GMNotes: '' +GUID: 7388bc +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Model_Bag 2 At Door''s Doorstep 7388bc.ttslua' +LuaScriptState: '{"ml":{"05cb54":{"lock":false,"pos":{"x":-3.9276,"y":1.7451,"z":5.7571},"rot":{"x":359.9197,"y":270.0005,"z":180.0168}},"0699e7":{"lock":false,"pos":{"x":-23.6765,"y":1.6862,"z":-0.03},"rot":{"x":359.9201,"y":269.9998,"z":0.0169}},"094470":{"lock":false,"pos":{"x":-20.6487,"y":1.6103,"z":-0.1206},"rot":{"x":359.9201,"y":269.9937,"z":0.0169}},"0f2a24":{"lock":false,"pos":{"x":-2.7247,"y":1.664,"z":0.3733},"rot":{"x":0.0168,"y":179.9996,"z":0.0803}},"1b5483":{"lock":false,"pos":{"x":-23.6766,"y":1.6817,"z":-15.28},"rot":{"x":359.9201,"y":269.9996,"z":0.0169}},"33990b":{"lock":false,"pos":{"x":-23.6766,"y":1.6907,"z":15.19},"rot":{"x":359.9201,"y":269.9998,"z":0.0169}},"5fa970":{"lock":false,"pos":{"x":-2.6885,"y":1.655,"z":-5.0485},"rot":{"x":0.0168,"y":179.9906,"z":0.0803}},"67acd6":{"lock":false,"pos":{"x":-23.6765,"y":1.6179,"z":11.46},"rot":{"x":0.0169,"y":179.9917,"z":0.0799}},"7234af":{"lock":false,"pos":{"x":-27.3935,"y":1.6196,"z":-0.2795},"rot":{"x":359.9201,"y":269.9935,"z":0.0169}},"a1bd9a":{"lock":false,"pos":{"x":-17.12,"y":1.6771,"z":-0.03},"rot":{"x":359.9201,"y":269.9999,"z":0.0169}},"a6af88":{"lock":false,"pos":{"x":-23.6765,"y":1.6157,"z":3.86},"rot":{"x":0.0169,"y":179.9915,"z":0.0799}},"b21125":{"lock":false,"pos":{"x":-3.7749,"y":1.5825,"z":-14.6072},"rot":{"x":359.9197,"y":270.0049,"z":0.0168}},"c24b98":{"lock":false,"pos":{"x":-3.9559,"y":1.6556,"z":-10.4412},"rot":{"x":359.9197,"y":270.0001,"z":0.0168}},"c43910":{"lock":false,"pos":{"x":-23.6765,"y":1.6134,"z":-3.83},"rot":{"x":0.0169,"y":179.9916,"z":0.0799}},"d7fb9d":{"lock":false,"pos":{"x":-30.2242,"y":1.6954,"z":-0.03},"rot":{"x":359.9201,"y":269.9998,"z":0.0169}},"de7cf4":{"lock":false,"pos":{"x":1.6968,"y":1.5583,"z":14.2788},"rot":{"x":359.9551,"y":224.998,"z":0.0687}},"e0e8c6":{"lock":false,"pos":{"x":-23.6765,"y":1.6111,"z":-11.51},"rot":{"x":0.0169,"y":179.9915,"z":0.0799}},"e0ffe2":{"lock":false,"pos":{"x":-23.6765,"y":1.684,"z":-7.7},"rot":{"x":359.9201,"y":269.9998,"z":0.0169}},"e9160a":{"lock":false,"pos":{"x":-23.6765,"y":1.6885,"z":7.57},"rot":{"x":359.9201,"y":269.9999,"z":0.0169}}}}' +MaterialIndex: -1 +MeshIndex: -1 +Name: Custom_Model_Bag +Nickname: '2: At Door''s Doorstep' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 12.2493019 + posY: 1.46887565 + posZ: 15.088501 + rotX: 359.920135 + rotY: 270.000031 + rotZ: 0.0168739483 + scaleX: 2.21 + scaleY: 0.46 + scaleZ: 2.42 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 2 At Door's Doorstep 7388bc/Card Balcony 1b5483.yaml b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 2 At Door's Doorstep 7388bc/Card Balcony 1b5483.yaml new file mode 100644 index 000000000..9c199b3b4 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 2 At Door's Doorstep 7388bc/Card Balcony 1b5483.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 231912 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/829135524527100186/0D63305581E65C95F286CCA4902B7DE796D815BD/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524527103742/0C4DB40889420CFE47BE897944621ABF2ECA52F9/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 1b5483 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Balcony +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -23.6766 + posY: 1.68172991 + posZ: -15.2800007 + rotX: 359.9201 + rotY: 269.999634 + rotZ: 0.0168772228 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 2 At Door's Doorstep 7388bc/Card Billiards Room 33990b.yaml b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 2 At Door's Doorstep 7388bc/Card Billiards Room 33990b.yaml new file mode 100644 index 000000000..da71f7d10 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 2 At Door's Doorstep 7388bc/Card Billiards Room 33990b.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 231910 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/829135524527100186/0D63305581E65C95F286CCA4902B7DE796D815BD/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524527103742/0C4DB40889420CFE47BE897944621ABF2ECA52F9/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 33990b +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Billiards Room +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -23.6766 + posY: 1.6907022 + posZ: 15.1900005 + rotX: 359.9201 + rotY: 269.999817 + rotZ: 0.0168763567 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 2 At Door's Doorstep 7388bc/Card Entry Hall d7fb9d.yaml b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 2 At Door's Doorstep 7388bc/Card Entry Hall d7fb9d.yaml new file mode 100644 index 000000000..fa21efa60 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 2 At Door's Doorstep 7388bc/Card Entry Hall d7fb9d.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 231907 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/829135524527100186/0D63305581E65C95F286CCA4902B7DE796D815BD/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524527103742/0C4DB40889420CFE47BE897944621ABF2ECA52F9/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: d7fb9d +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Entry Hall +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -30.2242 + posY: 1.69535053 + posZ: -0.0300004743 + rotX: 359.9201 + rotY: 269.999817 + rotZ: 0.0168766081 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 2 At Door's Doorstep 7388bc/Card Master Bedroom e0ffe2.yaml b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 2 At Door's Doorstep 7388bc/Card Master Bedroom e0ffe2.yaml new file mode 100644 index 000000000..8a97f9126 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 2 At Door's Doorstep 7388bc/Card Master Bedroom e0ffe2.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 231911 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/829135524527100186/0D63305581E65C95F286CCA4902B7DE796D815BD/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524527103742/0C4DB40889420CFE47BE897944621ABF2ECA52F9/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: e0ffe2 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Master Bedroom +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -23.6765 + posY: 1.68396187 + posZ: -7.7 + rotX: 359.9201 + rotY: 269.9998 + rotZ: 0.0168766622 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 2 At Door's Doorstep 7388bc/Card Office a1bd9a.yaml b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 2 At Door's Doorstep 7388bc/Card Office a1bd9a.yaml new file mode 100644 index 000000000..fda1e3c20 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 2 At Door's Doorstep 7388bc/Card Office a1bd9a.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 231913 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/829135524527100186/0D63305581E65C95F286CCA4902B7DE796D815BD/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524527103742/0C4DB40889420CFE47BE897944621ABF2ECA52F9/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: a1bd9a +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Office +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -17.12 + posY: 1.67707777 + posZ: -0.0300003178 + rotX: 359.9201 + rotY: 269.999878 + rotZ: 0.01687627 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 2 At Door's Doorstep 7388bc/Card Scenario c24b98.yaml b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 2 At Door's Doorstep 7388bc/Card Scenario c24b98.yaml new file mode 100644 index 000000000..bc2ecc4a9 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 2 At Door's Doorstep 7388bc/Card Scenario c24b98.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 231714 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2317': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/829135524526797029/1F8A6C29028AED32DB44E4CF22E3120C417F413D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526785922/F34A644AC467C751B6D7B8AF398B8FDB07CCF6A0/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: At Death's Doorstep +GMNotes: '' +GUID: c24b98 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Scenario +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.955902 + posY: 1.655648 + posZ: -10.4412241 + rotX: 359.919739 + rotY: 270.000122 + rotZ: 0.01684478 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 2 At Door's Doorstep 7388bc/Card Trophy Room e9160a.yaml b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 2 At Door's Doorstep 7388bc/Card Trophy Room e9160a.yaml new file mode 100644 index 000000000..5560bccfc --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 2 At Door's Doorstep 7388bc/Card Trophy Room e9160a.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 231909 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/829135524527100186/0D63305581E65C95F286CCA4902B7DE796D815BD/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524527103742/0C4DB40889420CFE47BE897944621ABF2ECA52F9/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: e9160a +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Trophy Room +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -23.6765 + posY: 1.6884582 + posZ: 7.56999969 + rotX: 359.9201 + rotY: 269.999878 + rotZ: 0.0168764479 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 2 At Door's Doorstep 7388bc/Card Victorian Halls 0699e7.yaml b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 2 At Door's Doorstep 7388bc/Card Victorian Halls 0699e7.yaml new file mode 100644 index 000000000..5b86585d1 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 2 At Door's Doorstep 7388bc/Card Victorian Halls 0699e7.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 231908 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/829135524527100186/0D63305581E65C95F286CCA4902B7DE796D815BD/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524527103742/0C4DB40889420CFE47BE897944621ABF2ECA52F9/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 0699e7 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Victorian Halls +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -23.6765 + posY: 1.68622029 + posZ: -0.0300004017 + rotX: 359.9201 + rotY: 269.999817 + rotZ: 0.0168765187 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 2 At Door's Doorstep 7388bc/Custom_Model_Bag Set-aside de7cf4.yaml b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 2 At Door's Doorstep 7388bc/Custom_Model_Bag Set-aside de7cf4.yaml new file mode 100644 index 000000000..9ae2596f7 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 2 At Door's Doorstep 7388bc/Custom_Model_Bag Set-aside de7cf4.yaml @@ -0,0 +1,59 @@ +Autoraise: true +ColorDiffuse: + b: 0.02148666 + g: 0.00100758043 + r: 0.02148666 +ContainedObjects: +- !include 'Custom_Model_Bag Set-aside de7cf4/Deck Realm of Death a49224.yaml' +- !include 'Custom_Model_Bag Set-aside de7cf4/Card Josef Meiger ffedcd.yaml' +- !include 'Custom_Model_Bag Set-aside de7cf4/Deck Spectral Locations 4bb0d9.yaml' +- !include 'Custom_Model_Bag Set-aside de7cf4/Deck The Watcher f048cc.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: '' +GMNotes: '' +GUID: de7cf4 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +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.69680083 + posY: 1.55831671 + posZ: 14.278801 + rotX: 359.955139 + rotY: 224.997986 + rotZ: 0.06867422 + scaleX: 2.0 + scaleY: 2.0 + scaleZ: 2.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 2 At Door's Doorstep 7388bc/Custom_Model_Bag Set-aside de7cf4/Card Josef Meiger ffedcd.yaml b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 2 At Door's Doorstep 7388bc/Custom_Model_Bag Set-aside de7cf4/Card Josef Meiger ffedcd.yaml new file mode 100644 index 000000000..8d700b380 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 2 At Door's Doorstep 7388bc/Custom_Model_Bag Set-aside de7cf4/Card Josef Meiger ffedcd.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 231921 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/829135524527100186/0D63305581E65C95F286CCA4902B7DE796D815BD/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524527103742/0C4DB40889420CFE47BE897944621ABF2ECA52F9/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Lodge Host +GMNotes: '' +GUID: ffedcd +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Josef Meiger +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 20.4776115 + posY: 3.476435 + posZ: -18.2683067 + rotX: 359.920135 + rotY: 270.000854 + rotZ: 0.0168664455 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 2 At Door's Doorstep 7388bc/Custom_Model_Bag Set-aside de7cf4/Deck Realm of Death a49224.yaml b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 2 At Door's Doorstep 7388bc/Custom_Model_Bag Set-aside de7cf4/Deck Realm of Death a49224.yaml new file mode 100644 index 000000000..6d3bfd0e2 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 2 At Door's Doorstep 7388bc/Custom_Model_Bag Set-aside de7cf4/Deck Realm of Death a49224.yaml @@ -0,0 +1,215 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 231820 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. Spectral. + GMNotes: '' + GUID: 0f6fce + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Realm of Torment + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 15.4269018 + posY: 1.52812648 + posZ: -11.9266014 + rotX: 359.915649 + rotY: 269.999329 + rotZ: 0.0150207849 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231820 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. Spectral. + GMNotes: '' + GUID: c1d60f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Realm of Torment + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 15.1352577 + posY: 1.67292893 + posZ: -11.5751591 + rotX: 359.9098 + rotY: 269.998718 + rotZ: 359.975525 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231821 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. Spectral. + GMNotes: '' + GUID: 37ebea + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Shapes in the Mist + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 15.2996044 + posY: 1.686471 + posZ: -12.0028191 + rotX: 359.9189 + rotY: 269.999451 + rotZ: 0.0174130946 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231821 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. Spectral. + GMNotes: '' + GUID: 37ebea + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Shapes in the Mist + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 15.2108431 + posY: 1.67701876 + posZ: -12.2717237 + rotX: 359.917847 + rotY: 269.999237 + rotZ: 0.0208463036 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 231820 +- 231820 +- 231821 +- 231821 +Description: '' +GMNotes: '' +GUID: a49224 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Realm of Death +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 20.8909283 + posY: 3.57110381 + posZ: -7.308581 + rotX: 359.919434 + rotY: 269.998657 + rotZ: 0.017221611 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 2 At Door's Doorstep 7388bc/Custom_Model_Bag Set-aside de7cf4/Deck Spectral Locations 4bb0d9.yaml b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 2 At Door's Doorstep 7388bc/Custom_Model_Bag Set-aside de7cf4/Deck Spectral Locations 4bb0d9.yaml new file mode 100644 index 000000000..18846979a --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 2 At Door's Doorstep 7388bc/Custom_Model_Bag Set-aside de7cf4/Deck Spectral Locations 4bb0d9.yaml @@ -0,0 +1,344 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 231917 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/829135524527100186/0D63305581E65C95F286CCA4902B7DE796D815BD/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524527103742/0C4DB40889420CFE47BE897944621ABF2ECA52F9/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Spectral. + GMNotes: '' + GUID: 349eb6 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Billiards Room + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 30.17334 + posY: 1.66093552 + posZ: -10.3231525 + rotX: 359.9202 + rotY: 269.9976 + rotZ: 180.017319 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231919 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/829135524527100186/0D63305581E65C95F286CCA4902B7DE796D815BD/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524527103742/0C4DB40889420CFE47BE897944621ABF2ECA52F9/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Spectral. + GMNotes: '' + GUID: 3b69ae + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Balcony + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -6.635082 + posY: 1.55915916 + posZ: -20.84021 + rotX: 359.920135 + rotY: 270.0 + rotZ: 180.016876 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231918 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/829135524527100186/0D63305581E65C95F286CCA4902B7DE796D815BD/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524527103742/0C4DB40889420CFE47BE897944621ABF2ECA52F9/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Spectral. + GMNotes: '' + GUID: 327f3b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Master Bedroom + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -6.842271 + posY: 1.56042325 + posZ: -17.52801 + rotX: 359.920135 + rotY: 269.999969 + rotZ: 180.016876 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231916 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/829135524527100186/0D63305581E65C95F286CCA4902B7DE796D815BD/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524527103742/0C4DB40889420CFE47BE897944621ABF2ECA52F9/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Spectral. + GMNotes: '' + GUID: f5616e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Trophy Room + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -7.0209713 + posY: 1.56386793 + posZ: -6.675879 + rotX: 359.920135 + rotY: 270.000061 + rotZ: 180.016876 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231920 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/829135524527100186/0D63305581E65C95F286CCA4902B7DE796D815BD/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524527103742/0C4DB40889420CFE47BE897944621ABF2ECA52F9/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Spectral. + GMNotes: '' + GUID: 060886 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Office + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -7.17894936 + posY: 1.56330776 + posZ: -9.326272 + rotX: 359.920135 + rotY: 270.000244 + rotZ: 180.016876 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231915 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/829135524527100186/0D63305581E65C95F286CCA4902B7DE796D815BD/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524527103742/0C4DB40889420CFE47BE897944621ABF2ECA52F9/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Spectral. + GMNotes: '' + GUID: 94ef8e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Victorian Halls + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -7.126053 + posY: 1.56161821 + posZ: -14.8133183 + rotX: 359.920135 + rotY: 270.000061 + rotZ: 180.016876 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231914 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/829135524527100186/0D63305581E65C95F286CCA4902B7DE796D815BD/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524527103742/0C4DB40889420CFE47BE897944621ABF2ECA52F9/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Spectral. + GMNotes: '' + GUID: 7cb46b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Entry Hall + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -7.17377758 + posY: 1.56240535 + posZ: -12.3664637 + rotX: 359.920135 + rotY: 270.000061 + rotZ: 180.016876 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/829135524527100186/0D63305581E65C95F286CCA4902B7DE796D815BD/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524527103742/0C4DB40889420CFE47BE897944621ABF2ECA52F9/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 231917 +- 231919 +- 231918 +- 231916 +- 231920 +- 231915 +- 231914 +Description: '' +GMNotes: '' +GUID: 4bb0d9 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Spectral Locations +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 20.4051666 + posY: 3.4812274 + posZ: -14.3216152 + rotX: 359.920135 + rotY: 270.0 + rotZ: 0.01687278 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 2 At Door's Doorstep 7388bc/Custom_Model_Bag Set-aside de7cf4/Deck The Watcher f048cc.yaml b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 2 At Door's Doorstep 7388bc/Custom_Model_Bag Set-aside de7cf4/Deck The Watcher f048cc.yaml new file mode 100644 index 000000000..bc234baaf --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 2 At Door's Doorstep 7388bc/Custom_Model_Bag Set-aside de7cf4/Deck The Watcher f048cc.yaml @@ -0,0 +1,172 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 231802 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Power. Spectral. + GMNotes: '' + GUID: 33e855 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Watcher's Grasp + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 15.8376656 + posY: 1.52715087 + posZ: -13.4530945 + rotX: 359.9181 + rotY: 270.020538 + rotZ: 0.0155973658 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231802 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Power. Spectral. + GMNotes: '' + GUID: e43fdd + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Watcher's Grasp + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 15.84392 + posY: 1.576776 + posZ: -12.7454138 + rotX: 0.0287003722 + rotY: 269.984375 + rotZ: 359.99295 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231801 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: You Are Its Prey + GMNotes: '' + GUID: c97834 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Spectral Watcher + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 15.8923817 + posY: 1.72291648 + posZ: -12.6000233 + rotX: 0.022801578 + rotY: 270.024963 + rotZ: -0.00408142665 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 231802 +- 231802 +- 231801 +Description: '' +GMNotes: '' +GUID: f048cc +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: The Watcher +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 20.9123344 + posY: 3.47740149 + posZ: -11.3691158 + rotX: 359.9201 + rotY: 270.020477 + rotZ: 0.0168361887 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 2 At Door's Doorstep 7388bc/Custom_Tile 094470.yaml b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 2 At Door's Doorstep 7388bc/Custom_Tile 094470.yaml new file mode 100644 index 000000000..12eb9796a --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 2 At Door's Doorstep 7388bc/Custom_Tile 094470.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 094470 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.6487 + posY: 1.6102581 + posZ: -0.120600276 + rotX: 359.9201 + rotY: 269.993652 + rotZ: 0.0169091765 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 2 At Door's Doorstep 7388bc/Custom_Tile 67acd6.yaml b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 2 At Door's Doorstep 7388bc/Custom_Tile 67acd6.yaml new file mode 100644 index 000000000..76a73587f --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 2 At Door's Doorstep 7388bc/Custom_Tile 67acd6.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 67acd6 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.6765 + posY: 1.61789 + posZ: 11.460001 + rotX: 0.0168833062 + rotY: 179.9917 + rotZ: 0.07993786 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 2 At Door's Doorstep 7388bc/Custom_Tile 7234af.yaml b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 2 At Door's Doorstep 7388bc/Custom_Tile 7234af.yaml new file mode 100644 index 000000000..cbfbe3137 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 2 At Door's Doorstep 7388bc/Custom_Tile 7234af.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 7234af +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.3935 + posY: 1.61961639 + posZ: -0.2795003 + rotX: 359.9201 + rotY: 269.993469 + rotZ: 0.0169089288 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 2 At Door's Doorstep 7388bc/Custom_Tile a6af88.yaml b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 2 At Door's Doorstep 7388bc/Custom_Tile a6af88.yaml new file mode 100644 index 000000000..84996a36c --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 2 At Door's Doorstep 7388bc/Custom_Tile a6af88.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: a6af88 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.61565208 + posZ: 3.86 + rotX: 0.0168836135 + rotY: 179.991547 + rotZ: 0.0799476653 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 2 At Door's Doorstep 7388bc/Custom_Tile c43910.yaml b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 2 At Door's Doorstep 7388bc/Custom_Tile c43910.yaml new file mode 100644 index 000000000..df9609cd8 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 2 At Door's Doorstep 7388bc/Custom_Tile c43910.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: c43910 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.6765 + posY: 1.6133877 + posZ: -3.83 + rotX: 0.0168834273 + rotY: 179.991623 + rotZ: 0.0799373 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 2 At Door's Doorstep 7388bc/Custom_Tile e0e8c6.yaml b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 2 At Door's Doorstep 7388bc/Custom_Tile e0e8c6.yaml new file mode 100644 index 000000000..c3a747528 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 2 At Door's Doorstep 7388bc/Custom_Tile e0e8c6.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: e0e8c6 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.6765 + posY: 1.61112618 + posZ: -11.5100021 + rotX: 0.01688355 + rotY: 179.991531 + rotZ: 0.07993261 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 2 At Door's Doorstep 7388bc/Custom_Tile At Death's Doorstep b21125.ttslua b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 2 At Door's Doorstep 7388bc/Custom_Tile At Death's Doorstep b21125.ttslua new file mode 100644 index 000000000..b35f5f46b --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 2 At Door's Doorstep 7388bc/Custom_Tile At Death's Doorstep b21125.ttslua @@ -0,0 +1,21 @@ +name = 'The Witching Hour' + +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 Circle Undone 61e777/Custom_Model_Bag 2 At Door's Doorstep 7388bc/Custom_Tile At Death's Doorstep b21125.yaml b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 2 At Door's Doorstep 7388bc/Custom_Tile At Death's Doorstep b21125.yaml new file mode 100644 index 000000000..530536aed --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 2 At Door's Doorstep 7388bc/Custom_Tile At Death's Doorstep b21125.yaml @@ -0,0 +1,42 @@ +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 +GMNotes: '' +GUID: b21125 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Tile At Death''s Doorstep b21125.ttslua' +LuaScriptState: '' +Name: Custom_Tile +Nickname: At Death's Doorstep +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.7749 + posY: 1.58245683 + posZ: -14.6072035 + rotX: 359.919739 + rotY: 270.004944 + rotZ: 0.0168308653 + scaleX: 2.2 + scaleY: 1.0 + scaleZ: 2.2 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 2 At Door's Doorstep 7388bc/Deck Act Deck 5fa970.yaml b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 2 At Door's Doorstep 7388bc/Deck Act Deck 5fa970.yaml new file mode 100644 index 000000000..7817ab707 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 2 At Door's Doorstep 7388bc/Deck Act Deck 5fa970.yaml @@ -0,0 +1,172 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 232019 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/829135524526797029/1F8A6C29028AED32DB44E4CF22E3120C417F413D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526785922/F34A644AC467C751B6D7B8AF398B8FDB07CCF6A0/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 3 + GMNotes: '' + GUID: 46cad7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Escape the Cage + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -11.4857731 + posY: 1.56819141 + posZ: -3.38877225 + rotX: 0.0138850389 + rotY: 180.002533 + rotZ: 0.076025866 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232018 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/829135524526797029/1F8A6C29028AED32DB44E4CF22E3120C417F413D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526785922/F34A644AC467C751B6D7B8AF398B8FDB07CCF6A0/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 2 + GMNotes: '' + GUID: d862a5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Spectral Realm + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -8.56042 + posY: 1.56400037 + posZ: -3.68023252 + rotX: 0.011601598 + rotY: 179.996872 + rotZ: 0.07883525 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232017 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/829135524526797029/1F8A6C29028AED32DB44E4CF22E3120C417F413D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526785922/F34A644AC467C751B6D7B8AF398B8FDB07CCF6A0/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 1 + GMNotes: '' + GUID: ba8956 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Hidden Agendas + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -8.573303 + posY: 1.70431888 + posZ: -3.6430676 + rotX: 0.0150601817 + rotY: 179.9911 + rotZ: 0.06978336 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/829135524526797029/1F8A6C29028AED32DB44E4CF22E3120C417F413D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526785922/F34A644AC467C751B6D7B8AF398B8FDB07CCF6A0/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 232019 +- 232018 +- 232017 +Description: '' +GMNotes: '' +GUID: 5fa970 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Act Deck +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.6885 + posY: 1.65499723 + posZ: -5.0485 + rotX: 0.01684831 + rotY: 179.99057 + rotZ: 0.08025503 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 2 At Door's Doorstep 7388bc/Deck Agenda Deck 0f2a24.yaml b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 2 At Door's Doorstep 7388bc/Deck Agenda Deck 0f2a24.yaml new file mode 100644 index 000000000..d135b0f96 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 2 At Door's Doorstep 7388bc/Deck Agenda Deck 0f2a24.yaml @@ -0,0 +1,129 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 232016 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/829135524526797029/1F8A6C29028AED32DB44E4CF22E3120C417F413D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526785922/F34A644AC467C751B6D7B8AF398B8FDB07CCF6A0/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 2 + GMNotes: '' + GUID: 6ef9c4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Over the Threshold + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -8.034527 + posY: 1.56463933 + posZ: 0.973494232 + rotX: 0.01332518 + rotY: 179.999924 + rotZ: 0.07871701 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232015 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/829135524526797029/1F8A6C29028AED32DB44E4CF22E3120C417F413D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526785922/F34A644AC467C751B6D7B8AF398B8FDB07CCF6A0/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 1 + GMNotes: '' + GUID: 6480fa + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: "JUSTICE \xB7 XI" + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -7.961774 + posY: 1.70493853 + posZ: 1.22841024 + rotX: 0.014674738 + rotY: 180.000473 + rotZ: 0.08592357 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/829135524526797029/1F8A6C29028AED32DB44E4CF22E3120C417F413D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526785922/F34A644AC467C751B6D7B8AF398B8FDB07CCF6A0/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 232016 +- 232015 +Description: '' +GMNotes: '' +GUID: 0f2a24 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Agenda Deck +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.7247 + posY: 1.66397738 + posZ: 0.3733003 + rotX: 0.0168355536 + rotY: 179.999619 + rotZ: 0.080257915 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 2 At Door's Doorstep 7388bc/Deck Encounter Deck 05cb54.yaml b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 2 At Door's Doorstep 7388bc/Deck Encounter Deck 05cb54.yaml new file mode 100644 index 000000000..2c1bf4b20 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 2 At Door's Doorstep 7388bc/Deck Encounter Deck 05cb54.yaml @@ -0,0 +1,1125 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 12122 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '121': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: '356046' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Obscuring Fog + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -32.25675 + posY: 1.600186 + posZ: 6.770343 + rotX: 359.920135 + rotY: 269.987549 + rotZ: 0.0168844368 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12121 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '121': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: fb311c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Crypt Chill + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -32.25649 + posY: 1.60227036 + posZ: 13.85011 + rotX: 359.920135 + rotY: 269.987518 + rotZ: 0.0168882515 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12121 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '121': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: b78c3b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Crypt Chill + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -32.2565727 + posY: 1.60157561 + posZ: 11.4901876 + rotX: 359.920135 + rotY: 269.987549 + rotZ: 0.0168857444 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12122 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '121': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: 03a265 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Obscuring Fog + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -32.2566643 + posY: 1.60088074 + posZ: 9.130263 + rotX: 359.920135 + rotY: 269.9875 + rotZ: 0.016892409 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231815 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Spectral. + GMNotes: '' + GUID: fe13c7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Nether Mist. + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -28.3051548 + posY: 1.589776 + posZ: -9.873041 + rotX: 359.920135 + rotY: 269.998749 + rotZ: 0.0168736149 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231823 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Omen. Spectral. + GMNotes: '' + GUID: 4e6119 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Fate of All Fools + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -28.270216 + posY: 1.66379952 + posZ: -7.165576 + rotX: 359.921173 + rotY: 270.0037 + rotZ: 3.8773396 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231823 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Omen. Spectral. + GMNotes: '' + GUID: fbe55a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Fate of All Fools + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -27.9746227 + posY: 1.59078109 + posZ: -4.986663 + rotX: 359.920837 + rotY: 270.006042 + rotZ: 0.011460376 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231823 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Omen. Spectral. + GMNotes: '' + GUID: 290ae0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Fate of All Fools + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -27.6898975 + posY: 1.59101355 + posZ: -2.75788236 + rotX: 359.920135 + rotY: 269.999847 + rotZ: 0.0168683473 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231822 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. Spectral. + GMNotes: '' + GUID: b781fc + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Terror in the Night + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -28.4091167 + posY: 1.59278738 + posZ: -0.139734685 + rotX: 359.920135 + rotY: 269.999939 + rotZ: 0.0168688241 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231822 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. Spectral. + GMNotes: '' + GUID: 1f6f03 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Terror in the Night + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -28.1596527 + posY: 1.66835988 + posZ: 2.380367 + rotX: 359.920929 + rotY: 270.0032 + rotZ: 3.97807717 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231822 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. Spectral. + GMNotes: '' + GUID: f26342 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Terror in the Night + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -28.75726 + posY: 1.59466171 + posZ: 4.50434065 + rotX: 359.920837 + rotY: 270.007538 + rotZ: 0.0112650972 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231819 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. Spectral. + GMNotes: '' + GUID: 407a63 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Trapped Spirits + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -38.73299 + posY: 1.603561 + posZ: -12.4288139 + rotX: 359.920135 + rotY: 270.000061 + rotZ: 0.0168662835 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231819 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. Spectral. + GMNotes: '' + GUID: '829919' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Trapped Spirits + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -39.0160866 + posY: 1.60465956 + posZ: -10.0389481 + rotX: 359.920135 + rotY: 269.999847 + rotZ: 0.0168707352 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231818 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Geist. Spectral. + GMNotes: '' + GUID: 86598c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Wraith + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -39.2292671 + posY: 1.60635221 + posZ: -5.29993248 + rotX: 359.920135 + rotY: 269.999725 + rotZ: 0.0168732014 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231812 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Scheme. + GMNotes: '' + GUID: 0eb939 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Mysteries of the Lodge + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -38.76867 + posY: 1.60712111 + posZ: -0.508546 + rotX: 359.920135 + rotY: 270.000854 + rotZ: 0.0168688912 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231812 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Scheme. + GMNotes: '' + GUID: 7870f6 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Mysteries of the Lodge + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -38.767128 + posY: 1.6064266 + posZ: -2.85914 + rotX: 359.920135 + rotY: 270.000732 + rotZ: 0.0168704186 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231818 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Geist. Spectral. + GMNotes: '' + GUID: e299c5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Wraith + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -39.2138863 + posY: 1.605613 + posZ: -7.737663 + rotX: 359.920135 + rotY: 269.9997 + rotZ: 0.0168678444 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231811 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Cultist. Silver Twilight. + GMNotes: '' + GUID: 3761ce + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Keeper of Secrets + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -39.216568 + posY: 1.60848212 + posZ: 1.9939779 + rotX: 359.920135 + rotY: 269.999664 + rotZ: 0.0168634076 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231810 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Cultist. Silver Twilight. + GMNotes: '' + GUID: '525275' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Lodge Neophyte + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -39.0885468 + posY: 1.700493 + posZ: 4.62587452 + rotX: 359.922 + rotY: 270.006378 + rotZ: 4.839585 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231810 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Cultist. Silver Twilight. + GMNotes: '' + GUID: 8dac94 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Lodge Neophyte + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -38.836174 + posY: 1.609271 + posZ: 6.373196 + rotX: 359.920624 + rotY: 270.007568 + rotZ: 0.009903546 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231810 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Cultist. Silver Twilight. + GMNotes: '' + GUID: 408a82 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Lodge Neophyte + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -39.04186 + posY: 1.61026263 + posZ: 8.867271 + rotX: 359.920135 + rotY: 269.999268 + rotZ: 0.016868528 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231817 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Omen. Spectral. + GMNotes: '' + GUID: 35270e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Whispers in the Dark + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -38.81726 + posY: 1.68460715 + posZ: 11.4196177 + rotX: 359.920929 + rotY: 270.003326 + rotZ: 3.91074014 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231817 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Omen. Spectral. + GMNotes: '' + GUID: 4e1ed6 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Whispers in the Dark + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -39.2929955 + posY: 1.61202192 + posZ: 13.5801 + rotX: 359.9208 + rotY: 270.0072 + rotZ: 0.0113463188 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231816 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Spectral. + GMNotes: '' + GUID: 6f6201 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Shadow Hound + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -39.2999344 + posY: 1.61275434 + posZ: 16.1082268 + rotX: 359.9201 + rotY: 270.00708 + rotZ: 0.0168633386 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231816 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Spectral. + GMNotes: '' + GUID: 881be9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Shadow Hound + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -39.5041466 + posY: 1.6138804 + posZ: 18.9645443 + rotX: 359.920135 + rotY: 269.9995 + rotZ: 0.01687203 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '121': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 12122 +- 12121 +- 12121 +- 12122 +- 231815 +- 231823 +- 231823 +- 231823 +- 231822 +- 231822 +- 231822 +- 231819 +- 231819 +- 231818 +- 231812 +- 231812 +- 231818 +- 231811 +- 231810 +- 231810 +- 231810 +- 231817 +- 231817 +- 231816 +- 231816 +Description: '' +GMNotes: '' +GUID: 05cb54 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Encounter Deck +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.92760015 + posY: 1.74506247 + posZ: 5.757101 + rotX: 359.919739 + rotY: 270.000458 + rotZ: 180.016815 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 3 The Secret Name 5c79d0.ttslua b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 3 The Secret Name 5c79d0.ttslua new file mode 100644 index 000000000..689030815 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 3 The Secret Name 5c79d0.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.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} +--w }) +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 \ No newline at end of file diff --git a/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 3 The Secret Name 5c79d0.yaml b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 3 The Secret Name 5c79d0.yaml new file mode 100644 index 000000000..70fe0b048 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 3 The Secret Name 5c79d0.yaml @@ -0,0 +1,77 @@ +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 3 The Secret Name 5c79d0/Custom_Tile 13fc27.yaml' +- !include 'Custom_Model_Bag 3 The Secret Name 5c79d0/Deck Unknown Places Deck 2ebf66.yaml' +- !include 'Custom_Model_Bag 3 The Secret Name 5c79d0/Deck Agenda Deck 426c50.yaml' +- !include 'Custom_Model_Bag 3 The Secret Name 5c79d0/Card Decrepit Door 5c61d9.yaml' +- !include 'Custom_Model_Bag 3 The Secret Name 5c79d0/Custom_Model_Bag Set-aside 6935c1.yaml' +- !include 'Custom_Model_Bag 3 The Secret Name 5c79d0/Card Decrepit Door 6bb83e.yaml' +- !include 'Custom_Model_Bag 3 The Secret Name 5c79d0/Custom_Tile 6c0a90.yaml' +- !include 'Custom_Model_Bag 3 The Secret Name 5c79d0/Custom_Tile 7234af.yaml' +- !include 'Custom_Model_Bag 3 The Secret Name 5c79d0/Card Decrepit Door 72ac0c.yaml' +- !include 'Custom_Model_Bag 3 The Secret Name 5c79d0/Card Unknown Places 7bea34.yaml' +- !include 'Custom_Model_Bag 3 The Secret Name 5c79d0/Deck Encounter Deck 8ee597.yaml' +- !include 'Custom_Model_Bag 3 The Secret Name 5c79d0/Card Walter Gilman''s Room 9f9bb1.yaml' +- !include 'Custom_Model_Bag 3 The Secret Name 5c79d0/Custom_Tile The Secret Name + b21125.yaml' +- !include 'Custom_Model_Bag 3 The Secret Name 5c79d0/Custom_Tile b7da8c.yaml' +- !include 'Custom_Model_Bag 3 The Secret Name 5c79d0/Deck Act Deck ba1246.yaml' +- !include 'Custom_Model_Bag 3 The Secret Name 5c79d0/Card Moldy Halls e281ec.yaml' +- !include 'Custom_Model_Bag 3 The Secret Name 5c79d0/Card Scenario f087e3.yaml' +CustomMesh: + CastShadows: true + ColliderURL: '' + Convex: true + DiffuseURL: http://cloud-3.steamusercontent.com/ugc/829135524527187179/79FD07A57C67FC9C33BA2108D8324ED4C2D88736/ + MaterialIndex: 3 + MeshURL: https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj + NormalURL: '' + TypeIndex: 6 +Description: The Circle Undone +GMNotes: '' +GUID: 5c79d0 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Model_Bag 3 The Secret Name 5c79d0.ttslua' +LuaScriptState: '{"ml":{"13fc27":{"lock":false,"pos":{"x":-26.7453,"y":1.6188,"z":0.0026},"rot":{"x":359.9201,"y":269.9936,"z":0.0169}},"2ebf66":{"lock":false,"pos":{"x":-17.1198,"y":1.6802,"z":7.57},"rot":{"x":359.9201,"y":270,"z":0.0169}},"426c50":{"lock":false,"pos":{"x":-2.7246,"y":1.6551,"z":0.3733},"rot":{"x":0.0168,"y":180.0003,"z":0.0803}},"5c61d9":{"lock":false,"pos":{"x":-30.224,"y":1.6976,"z":7.5699},"rot":{"x":359.9201,"y":269.9999,"z":0.0169}},"6935c1":{"lock":false,"pos":{"x":1.6964,"y":1.5583,"z":14.2788},"rot":{"x":359.9551,"y":224.9998,"z":0.0687}},"6bb83e":{"lock":false,"pos":{"x":-30.224,"y":1.6931,"z":-7.7001},"rot":{"x":359.9201,"y":270,"z":0.0169}},"6c0a90":{"lock":false,"pos":{"x":-30.2244,"y":1.6225,"z":-3.8283},"rot":{"x":0.0169,"y":179.9809,"z":0.08}},"7234af":{"lock":false,"pos":{"x":-33.4736,"y":1.6282,"z":-0.0813},"rot":{"x":359.9201,"y":269.9936,"z":0.0169}},"72ac0c":{"lock":false,"pos":{"x":-36.773,"y":1.7045,"z":-0.03},"rot":{"x":359.9201,"y":269.9999,"z":0.0169}},"7bea34":{"lock":false,"pos":{"x":-17.1199,"y":1.6833,"z":11.46},"rot":{"x":359.9201,"y":270.0001,"z":180.0169}},"8ee597":{"lock":false,"pos":{"x":-3.9277,"y":1.7984,"z":5.7572},"rot":{"x":359.9197,"y":269.9989,"z":180.0168}},"9f9bb1":{"lock":false,"pos":{"x":-23.6763,"y":1.6862,"z":-0.03},"rot":{"x":359.9201,"y":269.9999,"z":0.0169}},"b21125":{"lock":false,"pos":{"x":-3.7422,"y":1.5821,"z":-15.5575},"rot":{"x":359.9197,"y":270.0049,"z":0.0168}},"b7da8c":{"lock":false,"pos":{"x":-30.2242,"y":1.6248,"z":3.86},"rot":{"x":0.0169,"y":179.9808,"z":0.08}},"ba1246":{"lock":false,"pos":{"x":-2.6884,"y":1.655,"z":-5.0485},"rot":{"x":0.0168,"y":180.0125,"z":0.0803}},"e281ec":{"lock":false,"pos":{"x":-30.224,"y":1.6954,"z":-0.0301},"rot":{"x":359.9201,"y":270,"z":0.0169}},"f087e3":{"lock":false,"pos":{"x":-3.956,"y":1.6556,"z":-10.4412},"rot":{"x":359.9197,"y":270.0001,"z":0.0168}}}}' +MaterialIndex: -1 +MeshIndex: -1 +Name: Custom_Model_Bag +Nickname: '3: The Secret Name' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 12.2511015 + posY: 1.46661162 + posZ: 7.40850067 + rotX: 359.920135 + rotY: 270.0015 + rotZ: 0.0168715939 + scaleX: 2.21 + scaleY: 0.46 + scaleZ: 2.42 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 3 The Secret Name 5c79d0/Card Decrepit Door 5c61d9.yaml b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 3 The Secret Name 5c79d0/Card Decrepit Door 5c61d9.yaml new file mode 100644 index 000000000..56723c4f5 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 3 The Secret Name 5c79d0/Card Decrepit Door 5c61d9.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 275924 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2759': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/829135524527100186/0D63305581E65C95F286CCA4902B7DE796D815BD/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524527103742/0C4DB40889420CFE47BE897944621ABF2ECA52F9/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Witch House. +GMNotes: '' +GUID: 5c61d9 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Decrepit Door +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -30.224 + posY: 1.69758832 + posZ: 7.56989956 + rotX: 359.9201 + rotY: 269.999939 + rotZ: 0.0168762431 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 3 The Secret Name 5c79d0/Card Decrepit Door 6bb83e.yaml b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 3 The Secret Name 5c79d0/Card Decrepit Door 6bb83e.yaml new file mode 100644 index 000000000..07c806697 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 3 The Secret Name 5c79d0/Card Decrepit Door 6bb83e.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 275923 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2759': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/829135524527100186/0D63305581E65C95F286CCA4902B7DE796D815BD/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524527103742/0C4DB40889420CFE47BE897944621ABF2ECA52F9/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Witch House. +GMNotes: '' +GUID: 6bb83e +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Decrepit Door +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -30.224 + posY: 1.69309187 + posZ: -7.70010138 + rotX: 359.9201 + rotY: 270.0 + rotZ: 0.0168762822 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 3 The Secret Name 5c79d0/Card Decrepit Door 72ac0c.yaml b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 3 The Secret Name 5c79d0/Card Decrepit Door 72ac0c.yaml new file mode 100644 index 000000000..f8ea890a3 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 3 The Secret Name 5c79d0/Card Decrepit Door 72ac0c.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 275925 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2759': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/829135524527100186/0D63305581E65C95F286CCA4902B7DE796D815BD/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524527103742/0C4DB40889420CFE47BE897944621ABF2ECA52F9/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Witch House. +GMNotes: '' +GUID: 72ac0c +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Decrepit Door +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -36.773 + posY: 1.70448256 + posZ: -0.0300003756 + rotX: 359.9201 + rotY: 269.999939 + rotZ: 0.0168763082 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 3 The Secret Name 5c79d0/Card Moldy Halls e281ec.yaml b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 3 The Secret Name 5c79d0/Card Moldy Halls e281ec.yaml new file mode 100644 index 000000000..170714464 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 3 The Secret Name 5c79d0/Card Moldy Halls e281ec.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 275922 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2759': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/829135524527100186/0D63305581E65C95F286CCA4902B7DE796D815BD/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524527103742/0C4DB40889420CFE47BE897944621ABF2ECA52F9/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Witch House. +GMNotes: '' +GUID: e281ec +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Moldy Halls +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -30.224 + posY: 1.69535041 + posZ: -0.0301005151 + rotX: 359.9201 + rotY: 269.999969 + rotZ: 0.01687616 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 3 The Secret Name 5c79d0/Card Scenario f087e3.yaml b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 3 The Secret Name 5c79d0/Card Scenario f087e3.yaml new file mode 100644 index 000000000..3c97ab562 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 3 The Secret Name 5c79d0/Card Scenario f087e3.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 275420 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2754': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/829135524526797029/1F8A6C29028AED32DB44E4CF22E3120C417F413D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526785922/F34A644AC467C751B6D7B8AF398B8FDB07CCF6A0/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: The Secret Name +GMNotes: '' +GUID: f087e3 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Scenario +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.95600033 + posY: 1.65564811 + posZ: -10.4412012 + rotX: 359.919739 + rotY: 270.0001 + rotZ: 0.01684067 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 3 The Secret Name 5c79d0/Card Unknown Places 7bea34.yaml b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 3 The Secret Name 5c79d0/Card Unknown Places 7bea34.yaml new file mode 100644 index 000000000..47aaa8eb4 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 3 The Secret Name 5c79d0/Card Unknown Places 7bea34.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 275931 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2759': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/829135524527100186/0D63305581E65C95F286CCA4902B7DE796D815BD/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524527103742/0C4DB40889420CFE47BE897944621ABF2ECA52F9/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Extradimensional. +GMNotes: '' +GUID: 7bea34 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Unknown Places +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -17.1199 + posY: 1.68328393 + posZ: 11.46 + 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 The Circle Undone 61e777/Custom_Model_Bag 3 The Secret Name 5c79d0/Card Walter Gilman's Room 9f9bb1.yaml b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 3 The Secret Name 5c79d0/Card Walter Gilman's Room 9f9bb1.yaml new file mode 100644 index 000000000..298bfbb13 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 3 The Secret Name 5c79d0/Card Walter Gilman's Room 9f9bb1.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 275926 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2759': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/829135524527100186/0D63305581E65C95F286CCA4902B7DE796D815BD/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524527103742/0C4DB40889420CFE47BE897944621ABF2ECA52F9/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Witch House. +GMNotes: '' +GUID: 9f9bb1 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Walter Gilman's Room +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -23.6763 + posY: 1.68622 + posZ: -0.0300004128 + rotX: 359.9201 + rotY: 269.999939 + rotZ: 0.016876312 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 3 The Secret Name 5c79d0/Custom_Model_Bag Set-aside 6935c1.yaml b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 3 The Secret Name 5c79d0/Custom_Model_Bag Set-aside 6935c1.yaml new file mode 100644 index 000000000..ee60c8bed --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 3 The Secret Name 5c79d0/Custom_Model_Bag Set-aside 6935c1.yaml @@ -0,0 +1,61 @@ +Autoraise: true +ColorDiffuse: + b: 0.02148666 + g: 0.00100758043 + r: 0.02148666 +ContainedObjects: +- !include 'Custom_Model_Bag Set-aside 6935c1/Deck Ghostly Presence db34ba.yaml' +- !include 'Custom_Model_Bag Set-aside 6935c1/Deck Strange Geometry 1b4a8d.yaml' +- !include 'Custom_Model_Bag Set-aside 6935c1/Card The Black Book 4142d6.yaml' +- !include 'Custom_Model_Bag Set-aside 6935c1/Card Site of the Sacrifice 09f034.yaml' +- !include 'Custom_Model_Bag Set-aside 6935c1/Card Keziah''s Room e2b8fc.yaml' +- !include 'Custom_Model_Bag Set-aside 6935c1/Card Nahab 5bd251.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 Secret Name +GMNotes: '' +GUID: 6935c1 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +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.55831742 + posZ: 14.2788019 + rotX: 359.955139 + rotY: 224.999847 + rotZ: 0.06867198 + scaleX: 2.0 + scaleY: 2.0 + scaleZ: 2.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 3 The Secret Name 5c79d0/Custom_Model_Bag Set-aside 6935c1/Card Keziah's Room e2b8fc.yaml b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 3 The Secret Name 5c79d0/Custom_Model_Bag Set-aside 6935c1/Card Keziah's Room e2b8fc.yaml new file mode 100644 index 000000000..3e7142b09 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 3 The Secret Name 5c79d0/Custom_Model_Bag Set-aside 6935c1/Card Keziah's Room e2b8fc.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 275927 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2759': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/829135524527100186/0D63305581E65C95F286CCA4902B7DE796D815BD/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524527103742/0C4DB40889420CFE47BE897944621ABF2ECA52F9/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Spectral. Witch House. +GMNotes: '' +GUID: e2b8fc +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Keziah's Room +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 32.6110153 + posY: 3.40790176 + posZ: 66.38212 + rotX: 0.0218372382 + rotY: 269.994476 + rotZ: 0.0161013678 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 3 The Secret Name 5c79d0/Custom_Model_Bag Set-aside 6935c1/Card Nahab 5bd251.yaml b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 3 The Secret Name 5c79d0/Custom_Model_Bag Set-aside 6935c1/Card Nahab 5bd251.yaml new file mode 100644 index 000000000..33d7f77dd --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 3 The Secret Name 5c79d0/Custom_Model_Bag Set-aside 6935c1/Card Nahab 5bd251.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 275531 +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/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: She Who Signed the Black Book +GMNotes: '' +GUID: 5bd251 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Nahab +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 32.9114037 + posY: 3.407826 + posZ: 65.75095 + rotX: 0.0209353622 + rotY: 270.0 + rotZ: 0.016872352 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 3 The Secret Name 5c79d0/Custom_Model_Bag Set-aside 6935c1/Card Site of the Sacrifice 09f034.yaml b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 3 The Secret Name 5c79d0/Custom_Model_Bag Set-aside 6935c1/Card Site of the Sacrifice 09f034.yaml new file mode 100644 index 000000000..57655fab5 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 3 The Secret Name 5c79d0/Custom_Model_Bag Set-aside 6935c1/Card Site of the Sacrifice 09f034.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 275935 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2759': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/829135524527100186/0D63305581E65C95F286CCA4902B7DE796D815BD/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524527103742/0C4DB40889420CFE47BE897944621ABF2ECA52F9/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Extradimensional. Witch House. +GMNotes: '' +GUID: 09f034 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Site of the Sacrifice +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 32.9715919 + posY: 3.407806 + posZ: 65.60865 + rotX: 0.0212268643 + rotY: 269.994324 + rotZ: 0.01663837 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 3 The Secret Name 5c79d0/Custom_Model_Bag Set-aside 6935c1/Card The Black Book 4142d6.yaml b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 3 The Secret Name 5c79d0/Custom_Model_Bag Set-aside 6935c1/Card The Black Book 4142d6.yaml new file mode 100644 index 000000000..068af5161 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 3 The Secret Name 5c79d0/Custom_Model_Bag Set-aside 6935c1/Card The Black Book 4142d6.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Signed in Blood +GMNotes: '' +GUID: 4142d6 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: The Black Book +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 17.0272255 + posY: 2.52392864 + posZ: -52.9219 + rotX: 359.9201 + rotY: 270.0072 + rotZ: 0.01685771 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 3 The Secret Name 5c79d0/Custom_Model_Bag Set-aside 6935c1/Deck Ghostly Presence db34ba.yaml b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 3 The Secret Name 5c79d0/Custom_Model_Bag Set-aside 6935c1/Deck Ghostly Presence db34ba.yaml new file mode 100644 index 000000000..0705a707c --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 3 The Secret Name 5c79d0/Custom_Model_Bag Set-aside 6935c1/Deck Ghostly Presence db34ba.yaml @@ -0,0 +1,129 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 275526 + 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/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: 5e23b2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ghostly Presence + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 20.2544212 + posY: 1.40155768 + posZ: 76.95319 + rotX: 0.020767916 + rotY: 269.99295 + rotZ: 0.0164573882 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 275526 + 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/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: 7725f0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ghostly Presence + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 20.437912 + posY: 1.35132825 + posZ: 76.2654343 + rotX: 0.0207659211 + rotY: 269.997681 + rotZ: 0.01675902 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2755': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 275526 +- 275526 +Description: '' +GMNotes: '' +GUID: db34ba +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Ghostly Presence +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 33.0712128 + posY: 3.42125034 + posZ: 66.37825 + rotX: 0.0183009077 + rotY: 270.0003 + rotZ: 180.016724 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 3 The Secret Name 5c79d0/Custom_Model_Bag Set-aside 6935c1/Deck Strange Geometry 1b4a8d.yaml b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 3 The Secret Name 5c79d0/Custom_Model_Bag Set-aside 6935c1/Deck Strange Geometry 1b4a8d.yaml new file mode 100644 index 000000000..70b187b78 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 3 The Secret Name 5c79d0/Custom_Model_Bag Set-aside 6935c1/Deck Strange Geometry 1b4a8d.yaml @@ -0,0 +1,129 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 275524 + 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/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Extradimensional. + GMNotes: '' + GUID: '867256' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Strange Geometry + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 25.3332462 + posY: 1.5051235 + posZ: 80.50106 + rotX: 0.0361841 + rotY: 270.0002 + rotZ: 180.161316 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 275524 + 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/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Extradimensional. + GMNotes: '' + GUID: e08f79 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Strange Geometry + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 25.312233 + posY: 1.35691929 + posZ: 80.35414 + rotX: 0.0105671864 + rotY: 269.999268 + rotZ: 180.020477 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2755': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 275524 +- 275524 +Description: '' +GMNotes: '' +GUID: 1b4a8d +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Strange Geometry +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 32.55151 + posY: 3.42120767 + posZ: 66.67238 + rotX: 0.0221417155 + rotY: 269.995667 + rotZ: 180.0268 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 3 The Secret Name 5c79d0/Custom_Tile 13fc27.yaml b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 3 The Secret Name 5c79d0/Custom_Tile 13fc27.yaml new file mode 100644 index 000000000..4724fe780 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 3 The Secret Name 5c79d0/Custom_Tile 13fc27.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 13fc27 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.7453 + posY: 1.61879563 + posZ: 0.00259972713 + rotX: 359.9201 + rotY: 269.993561 + rotZ: 0.016909115 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 3 The Secret Name 5c79d0/Custom_Tile 6c0a90.yaml b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 3 The Secret Name 5c79d0/Custom_Tile 6c0a90.yaml new file mode 100644 index 000000000..f5de7ef70 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 3 The Secret Name 5c79d0/Custom_Tile 6c0a90.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 6c0a90 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.2244 + posY: 1.62251878 + posZ: -3.82829976 + rotX: 0.0168984644 + rotY: 179.980835 + rotZ: 0.0799336657 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 3 The Secret Name 5c79d0/Custom_Tile 7234af.yaml b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 3 The Secret Name 5c79d0/Custom_Tile 7234af.yaml new file mode 100644 index 000000000..b69bfbab5 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 3 The Secret Name 5c79d0/Custom_Tile 7234af.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 7234af +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.4736 + posY: 1.62815309 + posZ: -0.08130022 + rotX: 359.9201 + rotY: 269.993561 + rotZ: 0.0169092659 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 3 The Secret Name 5c79d0/Custom_Tile b7da8c.yaml b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 3 The Secret Name 5c79d0/Custom_Tile b7da8c.yaml new file mode 100644 index 000000000..61f700a20 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 3 The Secret Name 5c79d0/Custom_Tile b7da8c.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: b7da8c +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.62478244 + posZ: 3.86000037 + rotX: 0.01689857 + rotY: 179.980774 + rotZ: 0.07993373 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 3 The Secret Name 5c79d0/Custom_Tile The Secret Name b21125.ttslua b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 3 The Secret Name 5c79d0/Custom_Tile The Secret Name b21125.ttslua new file mode 100644 index 000000000..b35f5f46b --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 3 The Secret Name 5c79d0/Custom_Tile The Secret Name b21125.ttslua @@ -0,0 +1,21 @@ +name = 'The Witching Hour' + +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 Circle Undone 61e777/Custom_Model_Bag 3 The Secret Name 5c79d0/Custom_Tile The Secret Name b21125.yaml b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 3 The Secret Name 5c79d0/Custom_Tile The Secret Name b21125.yaml new file mode 100644 index 000000000..c2c509932 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 3 The Secret Name 5c79d0/Custom_Tile The Secret Name b21125.yaml @@ -0,0 +1,42 @@ +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 +GMNotes: '' +GUID: b21125 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Tile The Secret Name b21125.ttslua' +LuaScriptState: '' +Name: Custom_Tile +Nickname: The Secret Name +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.74219966 + posY: 1.58213162 + posZ: -15.5575018 + rotX: 359.919739 + rotY: 270.004944 + rotZ: 0.0168308429 + scaleX: 2.2 + scaleY: 1.0 + scaleZ: 2.2 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 3 The Secret Name 5c79d0/Deck Act Deck ba1246.yaml b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 3 The Secret Name 5c79d0/Deck Act Deck ba1246.yaml new file mode 100644 index 000000000..d8fda8e35 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 3 The Secret Name 5c79d0/Deck Act Deck ba1246.yaml @@ -0,0 +1,172 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 275327 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2753': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/829135524526797029/1F8A6C29028AED32DB44E4CF22E3120C417F413D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526785922/F34A644AC467C751B6D7B8AF398B8FDB07CCF6A0/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 3 + GMNotes: '' + GUID: 1abfba + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Stopping the Ritual + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 26.17231 + posY: 1.348263 + posZ: 59.550766 + rotX: 0.0021465125 + rotY: 179.997375 + rotZ: 359.97345 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 275326 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2753': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/829135524526797029/1F8A6C29028AED32DB44E4CF22E3120C417F413D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526785922/F34A644AC467C751B6D7B8AF398B8FDB07CCF6A0/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 2 + GMNotes: '' + GUID: 1feabc + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Beyond the Witch House + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 29.2456379 + posY: 1.349643 + posZ: 59.6061249 + rotX: 0.01631257 + rotY: 180.001724 + rotZ: 359.977448 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 275325 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2753': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/829135524526797029/1F8A6C29028AED32DB44E4CF22E3120C417F413D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526785922/F34A644AC467C751B6D7B8AF398B8FDB07CCF6A0/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 1 + GMNotes: '' + GUID: d01350 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Investigating the Witch House + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 29.3317261 + posY: 1.49492872 + posZ: 59.80226 + rotX: 0.0080563575 + rotY: 180.004028 + rotZ: 359.976 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2753': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/829135524526797029/1F8A6C29028AED32DB44E4CF22E3120C417F413D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526785922/F34A644AC467C751B6D7B8AF398B8FDB07CCF6A0/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 275327 +- 275326 +- 275325 +Description: '' +GMNotes: '' +GUID: ba1246 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Act Deck +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.6884 + posY: 1.65499711 + posZ: -5.04850054 + rotX: 0.0168175939 + rotY: 180.012482 + rotZ: 0.08026119 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 3 The Secret Name 5c79d0/Deck Agenda Deck 426c50.yaml b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 3 The Secret Name 5c79d0/Deck Agenda Deck 426c50.yaml new file mode 100644 index 000000000..b72f7bf48 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 3 The Secret Name 5c79d0/Deck Agenda Deck 426c50.yaml @@ -0,0 +1,215 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 275324 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2753': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/829135524526797029/1F8A6C29028AED32DB44E4CF22E3120C417F413D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526785922/F34A644AC467C751B6D7B8AF398B8FDB07CCF6A0/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 4 + GMNotes: '' + GUID: 2c4183 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Marked for Sacrifice + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 23.8240452 + posY: 1.34878731 + posZ: 64.35853 + rotX: 0.003070141 + rotY: 180.001953 + rotZ: 359.973083 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 275323 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2753': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/829135524526797029/1F8A6C29028AED32DB44E4CF22E3120C417F413D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526785922/F34A644AC467C751B6D7B8AF398B8FDB07CCF6A0/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 3 + GMNotes: '' + GUID: 6adc7b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Witch Light + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 26.8698158 + posY: 1.34987855 + posZ: 64.5165558 + rotX: -0.0006277118 + rotY: 179.999649 + rotZ: 359.9728 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 275322 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2753': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/829135524526797029/1F8A6C29028AED32DB44E4CF22E3120C417F413D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526785922/F34A644AC467C751B6D7B8AF398B8FDB07CCF6A0/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 2 + GMNotes: '' + GUID: 4ba381 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Familiar + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 29.811491 + posY: 1.35134566 + posZ: 64.73896 + rotX: 0.01601633 + rotY: 179.999969 + rotZ: 359.978851 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 275321 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2753': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/829135524526797029/1F8A6C29028AED32DB44E4CF22E3120C417F413D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526785922/F34A644AC467C751B6D7B8AF398B8FDB07CCF6A0/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 1 + GMNotes: '' + GUID: f39695 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: "THE HERMIT \xB7 IX" + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 29.9670486 + posY: 1.496629 + posZ: 64.8450851 + rotX: 0.007878363 + rotY: 180.0 + rotZ: 359.980835 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2753': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/829135524526797029/1F8A6C29028AED32DB44E4CF22E3120C417F413D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526785922/F34A644AC467C751B6D7B8AF398B8FDB07CCF6A0/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 275324 +- 275323 +- 275322 +- 275321 +Description: '' +GMNotes: '' +GUID: 426c50 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Agenda Deck +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.72459984 + posY: 1.65513813 + posZ: 0.373300433 + rotX: 0.01683458 + rotY: 180.000259 + rotZ: 0.08025762 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 3 The Secret Name 5c79d0/Deck Encounter Deck 8ee597.yaml b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 3 The Secret Name 5c79d0/Deck Encounter Deck 8ee597.yaml new file mode 100644 index 000000000..ed7333626 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 3 The Secret Name 5c79d0/Deck Encounter Deck 8ee597.yaml @@ -0,0 +1,1562 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 231807 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Curse. + GMNotes: '' + GUID: 64341a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Diabolic Voices + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -17.73656 + posY: 1.71689022 + posZ: -33.5350227 + rotX: 359.918945 + rotY: 269.979126 + rotZ: 0.0171701312 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 275527 + 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/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: c309da + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Extradimensional Visions + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 15.57442 + posY: 1.34594059 + posZ: 63.90754 + rotX: 0.0205667466 + rotY: 269.982239 + rotZ: 0.0166774988 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231823 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Omen. Spectral. + GMNotes: '' + GUID: 717c42 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Fate of All Fools + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -24.6707478 + posY: 1.76058781 + posZ: -33.23441 + rotX: 359.465271 + rotY: 269.459351 + rotZ: 9.029153 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231808 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: c8092b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Wracked + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -17.80855 + posY: 1.71239948 + posZ: -33.79921 + rotX: 359.910339 + rotY: 269.97876 + rotZ: 0.03349457 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 275529 + 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/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: ecc30a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Disquieting Dreams + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 19.32797 + posY: 1.34728289 + posZ: 63.819725 + rotX: 0.0208016783 + rotY: 270.0232 + rotZ: 0.01678183 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231807 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Curse. + GMNotes: '' + GUID: 407e66 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Diabolic Voices + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -18.0510273 + posY: 1.71469259 + posZ: -33.44395 + rotX: 359.919128 + rotY: 269.978668 + rotZ: 0.0163030848 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231807 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Curse. + GMNotes: '' + GUID: 0fa642 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Diabolic Voices + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -18.055851 + posY: 1.72234285 + posZ: -33.4770279 + rotX: 359.9191 + rotY: 269.978851 + rotZ: 0.0164938 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231809 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: a558b5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Bedeviled + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -17.6637516 + posY: 1.7296617 + posZ: -33.73086 + rotX: 359.9201 + rotY: 269.978882 + rotZ: 0.0205486864 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 275529 + 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/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: 4bfb2e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Disquieting Dreams + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 19.2536545 + posY: 1.49378228 + posZ: 63.5150528 + rotX: 0.0208015256 + rotY: 270.0232 + rotZ: 0.0167839061 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231809 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: f7c676 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Bedeviled + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -18.1656151 + posY: 1.716761 + posZ: -33.74088 + rotX: 359.918976 + rotY: 269.9787 + rotZ: 0.018134892 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231814 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Curse. + GMNotes: '' + GUID: 81dc7a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Centuries of Secrets + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -21.0152721 + posY: 1.57281208 + posZ: -32.7783356 + rotX: 359.9176 + rotY: 269.977783 + rotZ: 0.01638736 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 275528 + 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/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: 73138b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Pulled by the Stars + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 18.958252 + posY: 1.49464607 + posZ: 66.83138 + rotX: 0.0208131149 + rotY: 269.98288 + rotZ: 0.0167688485 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231814 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Curse. + GMNotes: '' + GUID: 9cb625 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Centuries of Secrets + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -20.7263336 + posY: 1.754926 + posZ: -33.80658 + rotX: 0.0413828529 + rotY: 269.9769 + rotZ: 0.3666429 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12113 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '121': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Creature. + GMNotes: '' + GUID: bbc9d1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Swarm of Rats + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 101.318535 + posY: 1.758954 + posZ: 10.703804 + rotX: 1.86105 + rotY: 269.999481 + rotZ: 179.999344 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12113 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '121': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Creature. + GMNotes: '' + GUID: 7381cd + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Swarm of Rats + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 101.571495 + posY: 1.75029993 + posZ: 10.4105225 + rotX: 2.26571965 + rotY: 269.998566 + rotZ: 180.004791 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231814 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Curse. + GMNotes: '' + GUID: 0a13d0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Centuries of Secrets + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -20.54692 + posY: 1.60918021 + posZ: -33.3808479 + rotX: 359.9352 + rotY: 269.982361 + rotZ: 0.376713872 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 275530 + 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/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: The Witch's Familiar + GMNotes: '' + GUID: a5885f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Brown Jenkin + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 28.0608063 + posY: 1.48256147 + posZ: 70.23769 + rotX: 0.3963438 + rotY: 269.9942 + rotZ: 179.55542 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231821 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. Spectral. + GMNotes: '' + GUID: 47147f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Shapes in the Mist + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -25.974844 + posY: 1.58076048 + posZ: -29.1853924 + rotX: 359.916321 + rotY: 269.977448 + rotZ: 0.01572173 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 275525 + 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/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Curse. + GMNotes: '' + GUID: 91ea7c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Meddlesome Familiar + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.0629826 + posY: 1.5434624 + posZ: 69.85437 + rotX: 0.00353208953 + rotY: 269.9999 + rotZ: 0.0103120068 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231823 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Omen. Spectral. + GMNotes: '' + GUID: fbcb9f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Fate of All Fools + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -23.46502 + posY: 2.16774321 + posZ: -34.8072357 + rotX: 0.232217044 + rotY: 270.777466 + rotZ: 353.199249 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231822 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. Spectral. + GMNotes: '' + GUID: 4f41b0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Terror in the Night + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -24.3842 + posY: 2.1039958 + posZ: -34.9055138 + rotX: 359.182831 + rotY: 270.902466 + rotZ: 355.1978 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 275527 + 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/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: 1a9156 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Extradimensional Visions + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.288187 + posY: 1.49218273 + posZ: 63.2581558 + rotX: 0.019790573 + rotY: 269.982269 + rotZ: 0.01620747 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231820 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. Spectral. + GMNotes: '' + GUID: e49187 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Realm of Torment + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -25.5189228 + posY: 1.92383051 + posZ: -29.7425785 + rotX: 359.8803 + rotY: 269.977753 + rotZ: 0.07589612 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231813 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Curse. + GMNotes: '' + GUID: 976fd8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Evil Past + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -20.7343235 + posY: 1.86165559 + posZ: -33.3503036 + rotX: 359.785339 + rotY: 269.9796 + rotZ: 0.07815084 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231821 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. Spectral. + GMNotes: '' + GUID: 3c04e0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Shapes in the Mist + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -24.9579411 + posY: 1.72431993 + posZ: -29.8048172 + rotX: 359.8922 + rotY: 269.971619 + rotZ: 0.06810118 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12113 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '121': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Creature. + GMNotes: '' + GUID: 56e5db + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Swarm of Rats + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 101.9408 + posY: 1.783524 + posZ: 10.864604 + rotX: 2.44426751 + rotY: 269.9983 + rotZ: -0.004248401 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231823 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Omen. Spectral. + GMNotes: '' + GUID: ef132d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Fate of All Fools + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -24.7152367 + posY: 1.91512489 + posZ: -32.59262 + rotX: 359.910583 + rotY: 269.364441 + rotZ: 341.912537 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231822 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. Spectral. + GMNotes: '' + GUID: 43ba03 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Terror in the Night + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -24.27985 + posY: 1.99979043 + posZ: -34.2781525 + rotX: 359.187378 + rotY: 270.910339 + rotZ: 355.236023 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231808 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: 4949ea + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Wracked + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -17.71135 + posY: 1.56800044 + posZ: -33.49924 + rotX: 359.9177 + rotY: 269.978638 + rotZ: 0.0161360279 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231813 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Curse. + GMNotes: '' + GUID: ab69b8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Evil Past + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -20.8834572 + posY: 1.89827907 + posZ: -33.5683937 + rotX: 0.110509835 + rotY: 269.976044 + rotZ: 0.334469885 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 275525 + 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/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Curse. + GMNotes: '' + GUID: '669016' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Meddlesome Familiar + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 15.534421 + posY: 1.34764123 + posZ: 69.7729 + rotX: 0.02023894 + rotY: 269.999878 + rotZ: 0.01630637 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231822 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. Spectral. + GMNotes: '' + GUID: 1a350a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Terror in the Night + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -23.6618786 + posY: 2.18380141 + posZ: -35.4214439 + rotX: 359.156219 + rotY: 270.890381 + rotZ: 355.0201 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 275525 + 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/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Curse. + GMNotes: '' + GUID: '561923' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Meddlesome Familiar + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.0629387 + posY: 1.39727807 + posZ: 69.8543549 + rotX: 0.006995492 + rotY: 269.999939 + rotZ: 0.0118337628 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231820 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. Spectral. + GMNotes: '' + GUID: 278e46 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Realm of Torment + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -25.91995 + posY: 1.77833688 + posZ: -29.84826 + rotX: 359.884155 + rotY: 269.9732 + rotZ: 0.074736394 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 275528 + 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/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: 6b521b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Pulled by the Stars + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 19.4392548 + posY: 1.34818745 + posZ: 66.77173 + rotX: 0.0208143778 + rotY: 269.982849 + rotZ: 0.0167647954 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '121': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '2755': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 231807 +- 275527 +- 231823 +- 231808 +- 275529 +- 231807 +- 231807 +- 231809 +- 275529 +- 231809 +- 231814 +- 275528 +- 231814 +- 12113 +- 12113 +- 231814 +- 275530 +- 231821 +- 275525 +- 231823 +- 231822 +- 275527 +- 231820 +- 231813 +- 231821 +- 12113 +- 231823 +- 231822 +- 231808 +- 231813 +- 275525 +- 231822 +- 275525 +- 231820 +- 275528 +Description: '' +GMNotes: '' +GUID: 8ee597 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Encounter Deck +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.9277 + posY: 1.79835725 + posZ: 5.75720072 + rotX: 359.919739 + rotY: 269.9989 + rotZ: 180.016815 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 3 The Secret Name 5c79d0/Deck Unknown Places Deck 2ebf66.yaml b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 3 The Secret Name 5c79d0/Deck Unknown Places Deck 2ebf66.yaml new file mode 100644 index 000000000..9d0d2cb19 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 3 The Secret Name 5c79d0/Deck Unknown Places Deck 2ebf66.yaml @@ -0,0 +1,301 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 275930 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2759': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/829135524527100186/0D63305581E65C95F286CCA4902B7DE796D815BD/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524527103742/0C4DB40889420CFE47BE897944621ABF2ECA52F9/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Extradimensional. + GMNotes: '' + GUID: 789bfc + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Unknown Places + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 37.91871 + posY: 1.50776482 + posZ: 68.2600555 + rotX: 0.0200533122 + rotY: 270.007935 + rotZ: 180.0183 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 275932 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2759': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/829135524527100186/0D63305581E65C95F286CCA4902B7DE796D815BD/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524527103742/0C4DB40889420CFE47BE897944621ABF2ECA52F9/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Extradimensional. + GMNotes: '' + GUID: 9a471d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Unknown Places + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 37.8498955 + posY: 1.50504923 + posZ: 68.35934 + rotX: 0.02151048 + rotY: 270.007538 + rotZ: 180.020416 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 275934 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2759': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/829135524527100186/0D63305581E65C95F286CCA4902B7DE796D815BD/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524527103742/0C4DB40889420CFE47BE897944621ABF2ECA52F9/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Extradimensional. + GMNotes: '' + GUID: 13e568 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Unknown Places + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 38.26049 + posY: 1.50727665 + posZ: 68.74983 + rotX: 0.0214149524 + rotY: 270.0081 + rotZ: 180.0162 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 275929 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2759': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/829135524527100186/0D63305581E65C95F286CCA4902B7DE796D815BD/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524527103742/0C4DB40889420CFE47BE897944621ABF2ECA52F9/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Extradimensional. + GMNotes: '' + GUID: 300aee + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Unknown Places + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 38.2868462 + posY: 1.51864886 + posZ: 68.84118 + rotX: 0.0005201616 + rotY: 270.0049 + rotZ: 179.82106 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 275933 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2759': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/829135524527100186/0D63305581E65C95F286CCA4902B7DE796D815BD/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524527103742/0C4DB40889420CFE47BE897944621ABF2ECA52F9/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Extradimensional. + GMNotes: '' + GUID: 0ac3ea + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Unknown Places + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 38.3945656 + posY: 1.50345075 + posZ: 68.7473 + rotX: 0.008707138 + rotY: 270.007446 + rotZ: 179.992554 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 275928 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2759': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/829135524527100186/0D63305581E65C95F286CCA4902B7DE796D815BD/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524527103742/0C4DB40889420CFE47BE897944621ABF2ECA52F9/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Extradimensional. + GMNotes: '' + GUID: b538f8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Unknown Places + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 38.41501 + posY: 1.35831535 + posZ: 68.39643 + rotX: 0.01792046 + rotY: 270.0082 + rotZ: 180.017761 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2759': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/829135524527100186/0D63305581E65C95F286CCA4902B7DE796D815BD/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524527103742/0C4DB40889420CFE47BE897944621ABF2ECA52F9/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 275930 +- 275932 +- 275934 +- 275929 +- 275933 +- 275928 +Description: '' +GMNotes: '' +GUID: 2ebf66 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Unknown Places Deck +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -17.1198 + posY: 1.68018031 + posZ: 7.57 + rotX: 359.9201 + rotY: 269.999939 + rotZ: 0.0168766025 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 4 The Wages of Sin 1e45e8.ttslua b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 4 The Wages of Sin 1e45e8.ttslua new file mode 100644 index 000000000..ed7a62e7d --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 4 The Wages of Sin 1e45e8.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.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.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 \ No newline at end of file diff --git a/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 4 The Wages of Sin 1e45e8.yaml b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 4 The Wages of Sin 1e45e8.yaml new file mode 100644 index 000000000..253b6a049 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 4 The Wages of Sin 1e45e8.yaml @@ -0,0 +1,90 @@ +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 4 The Wages of Sin 1e45e8/Custom_Model_Bag Set-aside + a45247.yaml' +- !include 'Custom_Model_Bag 4 The Wages of Sin 1e45e8/Deck Spectral Encounter Deck + 8ee597.yaml' +- !include 'Custom_Model_Bag 4 The Wages of Sin 1e45e8/Deck Encounter Deck 183001.yaml' +- !include 'Custom_Model_Bag 4 The Wages of Sin 1e45e8/Deck Act Deck 1f7560.yaml' +- !include 'Custom_Model_Bag 4 The Wages of Sin 1e45e8/Deck Agenda Deck efc4b5.yaml' +- !include 'Custom_Model_Bag 4 The Wages of Sin 1e45e8/Card Scenario ac274f.yaml' +- !include 'Custom_Model_Bag 4 The Wages of Sin 1e45e8/Custom_Tile The Wages of Sin + b21125.yaml' +- !include 'Custom_Model_Bag 4 The Wages of Sin 1e45e8/Deck Heretics a9af08.yaml' +- !include 'Custom_Model_Bag 4 The Wages of Sin 1e45e8/Card The Gallows 1042cb.yaml' +- !include 'Custom_Model_Bag 4 The Wages of Sin 1e45e8/Card The Gallows 62d69d.yaml' +- !include 'Custom_Model_Bag 4 The Wages of Sin 1e45e8/Custom_Tile f74271.yaml' +- !include 'Custom_Model_Bag 4 The Wages of Sin 1e45e8/Card Haunted Fields 58b8c5.yaml' +- !include 'Custom_Model_Bag 4 The Wages of Sin 1e45e8/Custom_Tile f2e96f.yaml' +- !include 'Custom_Model_Bag 4 The Wages of Sin 1e45e8/Card Heretics'' Graves 5bcc5d.yaml' +- !include 'Custom_Model_Bag 4 The Wages of Sin 1e45e8/Card Heretics'' Graves 34b9e9.yaml' +- !include 'Custom_Model_Bag 4 The Wages of Sin 1e45e8/Custom_Tile 60ca46.yaml' +- !include 'Custom_Model_Bag 4 The Wages of Sin 1e45e8/Custom_Tile ad2d6f.yaml' +- !include 'Custom_Model_Bag 4 The Wages of Sin 1e45e8/Custom_Tile 2009dd.yaml' +- !include 'Custom_Model_Bag 4 The Wages of Sin 1e45e8/Custom_Tile 7234af.yaml' +- !include 'Custom_Model_Bag 4 The Wages of Sin 1e45e8/Card Hangman''s Brook 6d3a3b.yaml' +- !include 'Custom_Model_Bag 4 The Wages of Sin 1e45e8/Card Abandoned Chapel 42fbac.yaml' +- !include 'Custom_Model_Bag 4 The Wages of Sin 1e45e8/Custom_Tile 3e1d3a.yaml' +- !include 'Custom_Model_Bag 4 The Wages of Sin 1e45e8/Card Chapel Crypt e2ad21.yaml' +- !include 'Custom_Model_Bag 4 The Wages of Sin 1e45e8/Card Chapel Crypt 06bdb3.yaml' +- !include 'Custom_Model_Bag 4 The Wages of Sin 1e45e8/Custom_Tile f8c429.yaml' +- !include 'Custom_Model_Bag 4 The Wages of Sin 1e45e8/Custom_Tile 5dab65.yaml' +- !include 'Custom_Model_Bag 4 The Wages of Sin 1e45e8/Card Chapel Attic e2b8fc.yaml' +- !include 'Custom_Model_Bag 4 The Wages of Sin 1e45e8/Card Chapel Attic 55d8f1.yaml' +CustomMesh: + CastShadows: true + ColliderURL: '' + Convex: true + DiffuseURL: http://cloud-3.steamusercontent.com/ugc/829135524527188494/F284E83641B5CCF665158F9E45BC8A8FF3B6CA37/ + MaterialIndex: 3 + MeshURL: https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj + NormalURL: '' + TypeIndex: 6 +Description: The Circle Undone +GMNotes: '' +GUID: 1e45e8 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Model_Bag 4 The Wages of Sin 1e45e8.ttslua' +LuaScriptState: '{"ml":{"06bdb3":{"lock":false,"pos":{"x":-28.7473,"y":1.7436,"z":-15.2642},"rot":{"x":359.9193,"y":270.0026,"z":180.0171}},"1042cb":{"lock":false,"pos":{"x":-23.6765,"y":1.6913,"z":7.57},"rot":{"x":359.9201,"y":269.9987,"z":180.017}},"183001":{"lock":false,"pos":{"x":-3.9274,"y":1.7397,"z":5.7572},"rot":{"x":359.9197,"y":269.9899,"z":180.0168}},"1f7560":{"lock":false,"pos":{"x":-2.6882,"y":1.6623,"z":-5.0486},"rot":{"x":0.0168,"y":180.0082,"z":0.0803}},"2009dd":{"lock":false,"pos":{"x":-33.7293,"y":1.6297,"z":3.8315},"rot":{"x":359.9554,"y":225.0006,"z":0.0684}},"34b9e9":{"lock":false,"pos":{"x":-28.7736,"y":1.7526,"z":15.1216},"rot":{"x":359.9194,"y":270.0193,"z":180.0171}},"3e1d3a":{"lock":false,"pos":{"x":-30.1891,"y":1.6202,"z":-11.5052},"rot":{"x":0.0168,"y":180.0183,"z":0.0799}},"42fbac":{"lock":false,"pos":{"x":-30.2243,"y":1.6959,"z":-7.7},"rot":{"x":359.9201,"y":269.9998,"z":180.0169}},"55d8f1":{"lock":false,"pos":{"x":-22.2549,"y":1.7368,"z":-7.7064},"rot":{"x":0.0793,"y":270.0031,"z":179.9831}},"58b8c5":{"lock":false,"pos":{"x":-30.2242,"y":1.7004,"z":7.57},"rot":{"x":359.9201,"y":270.0002,"z":180.0169}},"5bcc5d":{"lock":false,"pos":{"x":-30.2184,"y":1.7026,"z":15.1986},"rot":{"x":359.9201,"y":270.0047,"z":180.017}},"5dab65":{"lock":false,"pos":{"x":-26.9492,"y":1.6168,"z":-7.69},"rot":{"x":0.08,"y":90.4419,"z":359.9837}},"60ca46":{"lock":false,"pos":{"x":-26.6037,"y":1.6219,"z":11.1799},"rot":{"x":0.0684,"y":135.0088,"z":0.0446}},"62d69d":{"lock":false,"pos":{"x":-22.1916,"y":1.7412,"z":7.6069},"rot":{"x":0.0791,"y":270.0016,"z":179.983}},"6d3a3b":{"lock":false,"pos":{"x":-36.7732,"y":1.7073,"z":-0.03},"rot":{"x":359.9201,"y":270.0001,"z":180.0169}},"7234af":{"lock":false,"pos":{"x":-33.6602,"y":1.6273,"z":-3.847},"rot":{"x":0.0684,"y":134.9951,"z":0.0446}},"8ee597":{"lock":false,"pos":{"x":-3.8733,"y":1.7211,"z":15.1997},"rot":{"x":359.9197,"y":270,"z":180.0168}},"a45247":{"lock":false,"pos":{"x":1.6958,"y":1.5583,"z":14.2785},"rot":{"x":359.9551,"y":224.9978,"z":0.0687}},"a9af08":{"lock":false,"pos":{"x":-12.3886,"y":1.6747,"z":11.2381},"rot":{"x":359.9201,"y":270.0116,"z":0.0169}},"ac274f":{"lock":false,"pos":{"x":-3.9559,"y":1.6556,"z":-10.4412},"rot":{"x":359.9197,"y":269.9992,"z":0.0168}},"ad2d6f":{"lock":false,"pos":{"x":-30.2242,"y":1.6236,"z":-0.03},"rot":{"x":0.0168,"y":180.0181,"z":0.0799}},"b21125":{"lock":false,"pos":{"x":-3.945,"y":1.5827,"z":-14.7449},"rot":{"x":359.9197,"y":270.0049,"z":0.0168}},"e2ad21":{"lock":false,"pos":{"x":-30.2238,"y":1.6937,"z":-15.2805},"rot":{"x":359.9201,"y":270.0069,"z":180.017}},"e2b8fc":{"lock":false,"pos":{"x":-23.6765,"y":1.6868,"z":-7.7001},"rot":{"x":359.9201,"y":269.998,"z":180.017}},"efc4b5":{"lock":false,"pos":{"x":-2.7246,"y":1.664,"z":0.3733},"rot":{"x":0.0168,"y":179.9995,"z":0.0803}},"f2e96f":{"lock":false,"pos":{"x":-30.2242,"y":1.627,"z":11.46},"rot":{"x":0.0169,"y":180.0032,"z":0.0799}},"f74271":{"lock":false,"pos":{"x":-26.6267,"y":1.6209,"z":7.6662},"rot":{"x":0.08,"y":90.2464,"z":359.9834}},"f8c429":{"lock":false,"pos":{"x":-27.1766,"y":1.6161,"z":-11.2744},"rot":{"x":359.9554,"y":225.0012,"z":0.0684}}}}' +MaterialIndex: -1 +MeshIndex: -1 +Name: Custom_Model_Bag +Nickname: '4: The Wages of Sin' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 12.2510014 + posY: 1.46433294 + posZ: -0.329900354 + rotX: 359.920135 + rotY: 270.000122 + rotZ: 0.0168735739 + scaleX: 2.21 + scaleY: 0.46 + scaleZ: 2.42 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 4 The Wages of Sin 1e45e8/Card Abandoned Chapel 42fbac.yaml b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 4 The Wages of Sin 1e45e8/Card Abandoned Chapel 42fbac.yaml new file mode 100644 index 000000000..51f1c849f --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 4 The Wages of Sin 1e45e8/Card Abandoned Chapel 42fbac.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 276038 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2760': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/829135524527100186/0D63305581E65C95F286CCA4902B7DE796D815BD/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524527103742/0C4DB40889420CFE47BE897944621ABF2ECA52F9/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 42fbac +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Abandoned Chapel +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -30.2243347 + posY: 1.69591522 + posZ: -7.699994 + 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 The Circle Undone 61e777/Custom_Model_Bag 4 The Wages of Sin 1e45e8/Card Chapel Attic 55d8f1.yaml b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 4 The Wages of Sin 1e45e8/Card Chapel Attic 55d8f1.yaml new file mode 100644 index 000000000..4a60bbc1c --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 4 The Wages of Sin 1e45e8/Card Chapel Attic 55d8f1.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 276045 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2760': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/829135524527100186/0D63305581E65C95F286CCA4902B7DE796D815BD/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524527103742/0C4DB40889420CFE47BE897944621ABF2ECA52F9/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 55d8f1 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Chapel Attic +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -22.254879 + posY: 1.73675287 + posZ: -7.70638561 + rotX: 0.079266 + rotY: 270.003052 + rotZ: 179.983109 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 4 The Wages of Sin 1e45e8/Card Chapel Attic e2b8fc.yaml b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 4 The Wages of Sin 1e45e8/Card Chapel Attic e2b8fc.yaml new file mode 100644 index 000000000..82381e5b5 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 4 The Wages of Sin 1e45e8/Card Chapel Attic e2b8fc.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 276046 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2760': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/829135524527100186/0D63305581E65C95F286CCA4902B7DE796D815BD/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524527103742/0C4DB40889420CFE47BE897944621ABF2ECA52F9/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: e2b8fc +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Chapel Attic +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -23.6764965 + posY: 1.68678308 + posZ: -7.700061 + rotX: 359.9201 + rotY: 269.998 + rotZ: 180.016983 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 4 The Wages of Sin 1e45e8/Card Chapel Crypt 06bdb3.yaml b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 4 The Wages of Sin 1e45e8/Card Chapel Crypt 06bdb3.yaml new file mode 100644 index 000000000..db1ed232d --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 4 The Wages of Sin 1e45e8/Card Chapel Crypt 06bdb3.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 276043 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2760': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/829135524527100186/0D63305581E65C95F286CCA4902B7DE796D815BD/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524527103742/0C4DB40889420CFE47BE897944621ABF2ECA52F9/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 06bdb3 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Chapel Crypt +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -28.7473469 + posY: 1.74364579 + posZ: -15.2642126 + rotX: 359.919342 + rotY: 270.0026 + rotZ: 180.017075 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 4 The Wages of Sin 1e45e8/Card Chapel Crypt e2ad21.yaml b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 4 The Wages of Sin 1e45e8/Card Chapel Crypt e2ad21.yaml new file mode 100644 index 000000000..b82c303c3 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 4 The Wages of Sin 1e45e8/Card Chapel Crypt e2ad21.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 276044 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2760': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/829135524527100186/0D63305581E65C95F286CCA4902B7DE796D815BD/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524527103742/0C4DB40889420CFE47BE897944621ABF2ECA52F9/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: e2ad21 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Chapel Crypt +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -30.2238064 + posY: 1.69368041 + posZ: -15.2804556 + rotX: 359.9201 + rotY: 270.006866 + rotZ: 180.017 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 4 The Wages of Sin 1e45e8/Card Hangman's Brook 6d3a3b.yaml b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 4 The Wages of Sin 1e45e8/Card Hangman's Brook 6d3a3b.yaml new file mode 100644 index 000000000..fe939ca1c --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 4 The Wages of Sin 1e45e8/Card Hangman's Brook 6d3a3b.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 276036 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2760': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/829135524527100186/0D63305581E65C95F286CCA4902B7DE796D815BD/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524527103742/0C4DB40889420CFE47BE897944621ABF2ECA52F9/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 6d3a3b +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Hangman's Brook +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -36.7732 + posY: 1.70730567 + posZ: -0.0299987774 + 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 The Circle Undone 61e777/Custom_Model_Bag 4 The Wages of Sin 1e45e8/Card Haunted Fields 58b8c5.yaml b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 4 The Wages of Sin 1e45e8/Card Haunted Fields 58b8c5.yaml new file mode 100644 index 000000000..38ab61983 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 4 The Wages of Sin 1e45e8/Card Haunted Fields 58b8c5.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 276037 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2760': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/829135524527100186/0D63305581E65C95F286CCA4902B7DE796D815BD/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524527103742/0C4DB40889420CFE47BE897944621ABF2ECA52F9/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 58b8c5 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Haunted Fields +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -30.2241821 + posY: 1.70041144 + posZ: 7.569985 + rotX: 359.9201 + rotY: 270.0002 + rotZ: 180.016861 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 4 The Wages of Sin 1e45e8/Card Heretics' Graves 34b9e9.yaml b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 4 The Wages of Sin 1e45e8/Card Heretics' Graves 34b9e9.yaml new file mode 100644 index 000000000..ba33d7e97 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 4 The Wages of Sin 1e45e8/Card Heretics' Graves 34b9e9.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 276041 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2760': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/829135524527100186/0D63305581E65C95F286CCA4902B7DE796D815BD/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524527103742/0C4DB40889420CFE47BE897944621ABF2ECA52F9/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 34b9e9 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Heretics' Graves +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -28.7736053 + posY: 1.75261486 + posZ: 15.1216192 + rotX: 359.9194 + rotY: 270.019348 + rotZ: 180.01712 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 4 The Wages of Sin 1e45e8/Card Heretics' Graves 5bcc5d.yaml b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 4 The Wages of Sin 1e45e8/Card Heretics' Graves 5bcc5d.yaml new file mode 100644 index 000000000..355be724c --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 4 The Wages of Sin 1e45e8/Card Heretics' Graves 5bcc5d.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 276042 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2760': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/829135524527100186/0D63305581E65C95F286CCA4902B7DE796D815BD/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524527103742/0C4DB40889420CFE47BE897944621ABF2ECA52F9/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 5bcc5d +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Heretics' Graves +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -30.2183952 + posY: 1.70264828 + posZ: 15.1986485 + rotX: 359.9201 + rotY: 270.0047 + rotZ: 180.016968 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 4 The Wages of Sin 1e45e8/Card Scenario ac274f.yaml b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 4 The Wages of Sin 1e45e8/Card Scenario ac274f.yaml new file mode 100644 index 000000000..adfa72e4f --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 4 The Wages of Sin 1e45e8/Card Scenario ac274f.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 275428 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2754': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/829135524526797029/1F8A6C29028AED32DB44E4CF22E3120C417F413D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526785922/F34A644AC467C751B6D7B8AF398B8FDB07CCF6A0/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: The Wages of Sin +GMNotes: '' +GUID: ac274f +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Scenario +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.9559 + posY: 1.655648 + posZ: -10.4412022 + rotX: 359.919739 + rotY: 269.9992 + rotZ: 0.0168424752 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 4 The Wages of Sin 1e45e8/Card The Gallows 1042cb.yaml b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 4 The Wages of Sin 1e45e8/Card The Gallows 1042cb.yaml new file mode 100644 index 000000000..6d035f868 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 4 The Wages of Sin 1e45e8/Card The Gallows 1042cb.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 276040 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2760': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/829135524527100186/0D63305581E65C95F286CCA4902B7DE796D815BD/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524527103742/0C4DB40889420CFE47BE897944621ABF2ECA52F9/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 1042cb +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: The Gallows +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -23.67648 + posY: 1.691279 + posZ: 7.569963 + rotX: 359.920135 + rotY: 269.9987 + rotZ: 180.017014 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 4 The Wages of Sin 1e45e8/Card The Gallows 62d69d.yaml b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 4 The Wages of Sin 1e45e8/Card The Gallows 62d69d.yaml new file mode 100644 index 000000000..dce5e021c --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 4 The Wages of Sin 1e45e8/Card The Gallows 62d69d.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 276039 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2760': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/829135524527100186/0D63305581E65C95F286CCA4902B7DE796D815BD/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524527103742/0C4DB40889420CFE47BE897944621ABF2ECA52F9/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 62d69d +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: The Gallows +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -22.1916351 + posY: 1.74124277 + posZ: 7.60687733 + rotX: 0.0790919662 + rotY: 270.001617 + rotZ: 179.983047 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 4 The Wages of Sin 1e45e8/Custom_Model_Bag Set-aside a45247.yaml b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 4 The Wages of Sin 1e45e8/Custom_Model_Bag Set-aside a45247.yaml new file mode 100644 index 000000000..2ae8d79be --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 4 The Wages of Sin 1e45e8/Custom_Model_Bag Set-aside a45247.yaml @@ -0,0 +1,57 @@ +Autoraise: true +ColorDiffuse: + b: 0.02148666 + g: 0.00100758043 + r: 0.02148666 +ContainedObjects: +- !include 'Custom_Model_Bag Set-aside a45247/Deck Spectral Web a1811b.yaml' +- !include 'Custom_Model_Bag Set-aside a45247/Deck The Watcher 28374b.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 Wages of Sin +GMNotes: '' +GUID: a45247 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +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.69580126 + posY: 1.55831814 + posZ: 14.2785034 + rotX: 359.955139 + rotY: 224.997849 + rotZ: 0.06867339 + scaleX: 2.0 + scaleY: 2.0 + scaleZ: 2.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 4 The Wages of Sin 1e45e8/Custom_Model_Bag Set-aside a45247/Deck Spectral Web a1811b.yaml b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 4 The Wages of Sin 1e45e8/Custom_Model_Bag Set-aside a45247/Deck Spectral Web a1811b.yaml new file mode 100644 index 000000000..6cf106e8d --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 4 The Wages of Sin 1e45e8/Custom_Model_Bag Set-aside a45247/Deck Spectral Web a1811b.yaml @@ -0,0 +1,215 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- 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 + UniqueBack: false + Description: Spell. + GMNotes: '' + GUID: '550697' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Spectral Web + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 28.41885 + posY: 1.347801 + posZ: 54.34455 + rotX: 0.0202481523 + rotY: 270.007416 + rotZ: 0.0163530763 + 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 + UniqueBack: false + Description: Spell. + GMNotes: '' + GUID: 8fe838 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Spectral Web + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 28.0886059 + posY: 1.3968327 + posZ: 54.9196 + rotX: 359.890167 + rotY: 270.0158 + rotZ: 0.145918369 + 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 + UniqueBack: false + Description: Spell. + GMNotes: '' + GUID: d6ed28 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Spectral Web + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 28.1784782 + posY: 1.51447129 + posZ: 54.86489 + rotX: 359.7677 + rotY: 270.000275 + rotZ: 0.723122358 + 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 + UniqueBack: false + Description: Spell. + GMNotes: '' + GUID: 863f1a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Spectral Web + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.272214681 + posY: 1.66790545 + posZ: 28.77715 + rotX: 358.207977 + rotY: 270.006134 + rotZ: 0.0131794261 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2757': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 275733 +- 275733 +- 275733 +- 275733 +Description: '' +GMNotes: '' +GUID: a1811b +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Spectral Web +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 17.0063362 + posY: 2.58263564 + posZ: -39.591713 + rotX: 359.920135 + rotY: 270.001343 + rotZ: 0.0168687031 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 4 The Wages of Sin 1e45e8/Custom_Model_Bag Set-aside a45247/Deck The Watcher 28374b.yaml b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 4 The Wages of Sin 1e45e8/Custom_Model_Bag Set-aside a45247/Deck The Watcher 28374b.yaml new file mode 100644 index 000000000..a0edc4d01 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 4 The Wages of Sin 1e45e8/Custom_Model_Bag Set-aside a45247/Deck The Watcher 28374b.yaml @@ -0,0 +1,172 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 231802 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Power. Spectral. + GMNotes: '' + GUID: f798c8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Watcher's Grasp + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -27.8545532 + posY: 1.58170176 + posZ: -34.8676262 + rotX: 359.915649 + rotY: 269.974121 + rotZ: 0.01525554 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231802 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Power. Spectral. + GMNotes: '' + GUID: f92f1e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Watcher's Grasp + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -27.9526443 + posY: 1.72608125 + posZ: -34.6397629 + rotX: 359.9233 + rotY: 269.9745 + rotZ: 0.00772151956 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231801 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: You Are Its Prey + GMNotes: '' + GUID: a1eb9b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Spectral Watcher + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -27.4475632 + posY: 1.74305177 + posZ: -34.8419075 + rotX: 359.9185 + rotY: 269.974243 + rotZ: 0.0167756584 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 231802 +- 231802 +- 231801 +Description: '' +GMNotes: '' +GUID: 28374b +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: The Watcher +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 32.8993034 + posY: 3.40332723 + posZ: 52.0560722 + rotX: 0.020968182 + rotY: 269.9796 + rotZ: 0.0168605149 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 4 The Wages of Sin 1e45e8/Custom_Tile 2009dd.yaml b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 4 The Wages of Sin 1e45e8/Custom_Tile 2009dd.yaml new file mode 100644 index 000000000..af7185831 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 4 The Wages of Sin 1e45e8/Custom_Tile 2009dd.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 2009dd +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.7293 + posY: 1.62966168 + posZ: 3.83150053 + rotX: 359.955444 + rotY: 225.000641 + rotZ: 0.068403706 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 4 The Wages of Sin 1e45e8/Custom_Tile 3e1d3a.yaml b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 4 The Wages of Sin 1e45e8/Custom_Tile 3e1d3a.yaml new file mode 100644 index 000000000..87c95e1d4 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 4 The Wages of Sin 1e45e8/Custom_Tile 3e1d3a.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 3e1d3a +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Tile +Nickname: '' +Snap: false +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.1891 + posY: 1.6202091 + posZ: -11.5052032 + rotX: 0.0168461744 + rotY: 180.018326 + rotZ: 0.07994516 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 4 The Wages of Sin 1e45e8/Custom_Tile 5dab65.yaml b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 4 The Wages of Sin 1e45e8/Custom_Tile 5dab65.yaml new file mode 100644 index 000000000..31c7efb88 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 4 The Wages of Sin 1e45e8/Custom_Tile 5dab65.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 5dab65 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Tile +Nickname: '' +Snap: false +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.9492 + posY: 1.61681485 + posZ: -7.690002 + rotX: 0.08002207 + rotY: 90.441925 + rotZ: 359.9837 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 4 The Wages of Sin 1e45e8/Custom_Tile 60ca46.yaml b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 4 The Wages of Sin 1e45e8/Custom_Tile 60ca46.yaml new file mode 100644 index 000000000..385cc53c9 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 4 The Wages of Sin 1e45e8/Custom_Tile 60ca46.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 60ca46 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.6037 + posY: 1.62188947 + posZ: 11.1799011 + rotX: 0.0684242 + rotY: 135.0088 + rotZ: 0.04457203 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 4 The Wages of Sin 1e45e8/Custom_Tile 7234af.yaml b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 4 The Wages of Sin 1e45e8/Custom_Tile 7234af.yaml new file mode 100644 index 000000000..557d8f7ac --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 4 The Wages of Sin 1e45e8/Custom_Tile 7234af.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 7234af +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.6602 + posY: 1.62730432 + posZ: -3.84700012 + rotX: 0.0684347749 + rotY: 134.995117 + rotZ: 0.044556018 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 4 The Wages of Sin 1e45e8/Custom_Tile ad2d6f.yaml b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 4 The Wages of Sin 1e45e8/Custom_Tile ad2d6f.yaml new file mode 100644 index 000000000..d105037fb --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 4 The Wages of Sin 1e45e8/Custom_Tile ad2d6f.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: ad2d6f +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Tile +Nickname: '' +Snap: false +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.623637 + posZ: -0.02999952 + rotX: 0.0168465637 + rotY: 180.018127 + rotZ: 0.07994472 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 4 The Wages of Sin 1e45e8/Custom_Tile f2e96f.yaml b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 4 The Wages of Sin 1e45e8/Custom_Tile f2e96f.yaml new file mode 100644 index 000000000..f0e1a54be --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 4 The Wages of Sin 1e45e8/Custom_Tile f2e96f.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: f2e96f +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.62702024 + posZ: 11.4600058 + rotX: 0.0168672036 + rotY: 180.003189 + rotZ: 0.07993552 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 4 The Wages of Sin 1e45e8/Custom_Tile f74271.yaml b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 4 The Wages of Sin 1e45e8/Custom_Tile f74271.yaml new file mode 100644 index 000000000..23f80b1bd --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 4 The Wages of Sin 1e45e8/Custom_Tile f74271.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: f74271 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.6267 + posY: 1.62088692 + posZ: 7.66619968 + rotX: 0.0799662 + rotY: 90.24637 + rotZ: 359.983429 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 4 The Wages of Sin 1e45e8/Custom_Tile f8c429.yaml b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 4 The Wages of Sin 1e45e8/Custom_Tile f8c429.yaml new file mode 100644 index 000000000..b876cf196 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 4 The Wages of Sin 1e45e8/Custom_Tile f8c429.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: f8c429 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.1766 + posY: 1.61607635 + posZ: -11.2744007 + rotX: 359.955444 + rotY: 225.001221 + rotZ: 0.06840099 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 4 The Wages of Sin 1e45e8/Custom_Tile The Wages of Sin b21125.ttslua b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 4 The Wages of Sin 1e45e8/Custom_Tile The Wages of Sin b21125.ttslua new file mode 100644 index 000000000..73f592e74 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 4 The Wages of Sin 1e45e8/Custom_Tile The Wages of Sin b21125.ttslua @@ -0,0 +1,21 @@ +name = 'The Wages of Sin' + +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 Circle Undone 61e777/Custom_Model_Bag 4 The Wages of Sin 1e45e8/Custom_Tile The Wages of Sin b21125.yaml b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 4 The Wages of Sin 1e45e8/Custom_Tile The Wages of Sin b21125.yaml new file mode 100644 index 000000000..8a664d13c --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 4 The Wages of Sin 1e45e8/Custom_Tile The Wages of Sin b21125.yaml @@ -0,0 +1,42 @@ +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 +GMNotes: '' +GUID: b21125 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Tile The Wages of Sin b21125.ttslua' +LuaScriptState: '' +Name: Custom_Tile +Nickname: The Wages of Sin +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.94500041 + posY: 1.58265471 + posZ: -14.7449055 + rotX: 359.919739 + rotY: 270.004883 + rotZ: 0.0168309528 + scaleX: 2.2 + scaleY: 1.0 + scaleZ: 2.2 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 4 The Wages of Sin 1e45e8/Deck Act Deck 1f7560.yaml b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 4 The Wages of Sin 1e45e8/Deck Act Deck 1f7560.yaml new file mode 100644 index 000000000..9f28469d2 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 4 The Wages of Sin 1e45e8/Deck Act Deck 1f7560.yaml @@ -0,0 +1,129 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 275332 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2753': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/829135524526797029/1F8A6C29028AED32DB44E4CF22E3120C417F413D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526785922/F34A644AC467C751B6D7B8AF398B8FDB07CCF6A0/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 2 + GMNotes: '' + GUID: ca12dd + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: In Pursuit of the Living + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 29.15592 + posY: 1.34646809 + posZ: 49.01146 + rotX: 0.0136854285 + rotY: 179.9997 + rotZ: 359.9776 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 275331 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2753': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/829135524526797029/1F8A6C29028AED32DB44E4CF22E3120C417F413D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526785922/F34A644AC467C751B6D7B8AF398B8FDB07CCF6A0/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 1 + GMNotes: '' + GUID: 70fcce + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: In Pursuit of the Dead + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 28.7154121 + posY: 1.4910543 + posZ: 49.2659225 + rotX: 0.0129829422 + rotY: 180.0006 + rotZ: 359.928925 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2753': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/829135524526797029/1F8A6C29028AED32DB44E4CF22E3120C417F413D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526785922/F34A644AC467C751B6D7B8AF398B8FDB07CCF6A0/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 275332 +- 275331 +Description: '' +GMNotes: '' +GUID: 1f7560 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Act Deck +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.68819952 + posY: 1.662333 + posZ: -5.0486 + rotX: 0.0168235619 + rotY: 180.008179 + rotZ: 0.08026045 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 4 The Wages of Sin 1e45e8/Deck Agenda Deck efc4b5.yaml b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 4 The Wages of Sin 1e45e8/Deck Agenda Deck efc4b5.yaml new file mode 100644 index 000000000..87fe4a46e --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 4 The Wages of Sin 1e45e8/Deck Agenda Deck efc4b5.yaml @@ -0,0 +1,129 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 275330 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2753': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/829135524526797029/1F8A6C29028AED32DB44E4CF22E3120C417F413D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526785922/F34A644AC467C751B6D7B8AF398B8FDB07CCF6A0/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 2 + GMNotes: '' + GUID: 57bcb8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Death's Approach + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 29.4476528 + posY: 1.34756792 + posZ: 52.4735947 + rotX: 0.0133047355 + rotY: 179.9995 + rotZ: 359.978241 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 275329 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2753': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/829135524526797029/1F8A6C29028AED32DB44E4CF22E3120C417F413D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526785922/F34A644AC467C751B6D7B8AF398B8FDB07CCF6A0/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 1 + GMNotes: '' + GUID: 0e45a9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: "THE HANGED MAN \xB7 XII" + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 29.4080963 + posY: 1.49256372 + posZ: 52.60277 + rotX: 0.0171353649 + rotY: 180.001144 + rotZ: 359.970551 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2753': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/829135524526797029/1F8A6C29028AED32DB44E4CF22E3120C417F413D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526785922/F34A644AC467C751B6D7B8AF398B8FDB07CCF6A0/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 275330 +- 275329 +Description: '' +GMNotes: '' +GUID: efc4b5 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Agenda Deck +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.72459984 + posY: 1.66397715 + posZ: 0.3733007 + rotX: 0.016835453 + rotY: 179.999512 + rotZ: 0.08025768 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 4 The Wages of Sin 1e45e8/Deck Encounter Deck 183001.yaml b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 4 The Wages of Sin 1e45e8/Deck Encounter Deck 183001.yaml new file mode 100644 index 000000000..5fd52a378 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 4 The Wages of Sin 1e45e8/Deck Encounter Deck 183001.yaml @@ -0,0 +1,1082 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 231805 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Witch. + GMNotes: '' + GUID: c35966 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Coven Initiate + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -25.6442871 + posY: 1.72278082 + posZ: -36.0347443 + rotX: 359.911224 + rotY: 269.974 + rotZ: 0.0136959022 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231808 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: 4949ea + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Wracked + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -17.71135 + posY: 1.56800044 + posZ: -33.49924 + rotX: 359.9177 + rotY: 269.978638 + rotZ: 0.0161360279 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 275536 + 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/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: ad69c7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Punishment + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 19.40219 + posY: 1.34403968 + posZ: 52.6477 + rotX: 0.0208171587 + rotY: 269.9707 + rotZ: 0.0167593136 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 275539 + 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/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Curse. + GMNotes: '' + GUID: 716bb1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Grave-Light + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 15.4475288 + posY: 1.34161592 + posZ: 49.3494568 + rotX: 0.0195411555 + rotY: 269.9999 + rotZ: 0.0161290076 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231809 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: f7c676 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Bedeviled + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -18.1656151 + posY: 1.716761 + posZ: -33.74088 + rotX: 359.918976 + rotY: 269.9787 + rotZ: 0.018134892 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 275534 + 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/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Witch. + GMNotes: '' + GUID: '801539' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Vengeful Witch + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 11.8467007 + posY: 1.48010254 + posZ: 51.81632 + rotX: 0.0149586685 + rotY: 269.982483 + rotZ: 0.0217985548 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231809 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: a558b5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Bedeviled + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -17.6637516 + posY: 1.7296617 + posZ: -33.73086 + rotX: 359.9201 + rotY: 269.978882 + rotZ: 0.0205486864 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231814 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Curse. + GMNotes: '' + GUID: 9cb625 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Centuries of Secrets + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -20.7263336 + posY: 1.754926 + posZ: -33.80658 + rotX: 0.0413828529 + rotY: 269.9769 + rotZ: 0.3666429 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231814 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Curse. + GMNotes: '' + GUID: 81dc7a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Centuries of Secrets + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -21.0152721 + posY: 1.57281208 + posZ: -32.7783356 + rotX: 359.9176 + rotY: 269.977783 + rotZ: 0.01638736 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231807 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Curse. + GMNotes: '' + GUID: 0fa642 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Diabolic Voices + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -18.055851 + posY: 1.72234285 + posZ: -33.4770279 + rotX: 359.9191 + rotY: 269.978851 + rotZ: 0.0164938 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 275534 + 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/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Witch. + GMNotes: '' + GUID: de0939 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Vengeful Witch + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 11.7847424 + posY: 1.34110641 + posZ: 52.07729 + rotX: 0.0207291655 + rotY: 269.982758 + rotZ: 0.01682211 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231813 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Curse. + GMNotes: '' + GUID: 976fd8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Evil Past + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -20.7343235 + posY: 1.86165559 + posZ: -33.3503036 + rotX: 359.785339 + rotY: 269.9796 + rotZ: 0.07815084 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231808 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: c8092b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Wracked + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -17.80855 + posY: 1.71239948 + posZ: -33.79921 + rotX: 359.910339 + rotY: 269.97876 + rotZ: 0.03349457 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231807 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Curse. + GMNotes: '' + GUID: 407e66 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Diabolic Voices + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -18.0510273 + posY: 1.71469259 + posZ: -33.44395 + rotX: 359.919128 + rotY: 269.978668 + rotZ: 0.0163030848 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231805 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Witch. + GMNotes: '' + GUID: 6f2c2e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Coven Initiate + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -25.7267475 + posY: 1.74028778 + posZ: -36.1106224 + rotX: 359.918823 + rotY: 269.9739 + rotZ: 0.0168967526 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 275538 + 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/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: 0fc433 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ominous Portents + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 15.5294752 + posY: 1.34248006 + posZ: 52.47316 + rotX: 0.015629 + rotY: 269.982422 + rotZ: 0.0147842215 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231806 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Witch. + GMNotes: '' + GUID: 326f11 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Priestess of the Coven + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -25.8414345 + posY: 1.57860494 + posZ: -36.132618 + rotX: 359.919647 + rotY: 269.974 + rotZ: 0.0165877342 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 275536 + 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/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: 832e11 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Punishment + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 19.4425049 + posY: 1.49075043 + posZ: 52.53749 + rotX: 0.0168869942 + rotY: 269.9707 + rotZ: 0.01725625 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 275538 + 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/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: 8767b5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ominous Portents + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 15.5567713 + posY: 1.48118174 + posZ: 52.53753 + rotX: 0.0234855525 + rotY: 269.971039 + rotZ: -0.000177135516 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 275539 + 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/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Curse. + GMNotes: '' + GUID: 84bbd0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Grave-Light + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 15.3969 + posY: 1.480602 + posZ: 49.3430138 + rotX: 0.009779532 + rotY: 270.000031 + rotZ: 0.0111978985 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231814 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Curse. + GMNotes: '' + GUID: 0a13d0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Centuries of Secrets + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -20.54692 + posY: 1.60918021 + posZ: -33.3808479 + rotX: 359.9352 + rotY: 269.982361 + rotZ: 0.376713872 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231807 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Curse. + GMNotes: '' + GUID: 64341a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Diabolic Voices + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -17.73656 + posY: 1.71689022 + posZ: -33.5350227 + rotX: 359.918945 + rotY: 269.979126 + rotZ: 0.0171701312 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231813 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Curse. + GMNotes: '' + GUID: ab69b8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Evil Past + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -20.8834572 + posY: 1.89827907 + posZ: -33.5683937 + rotX: 0.110509835 + rotY: 269.976044 + rotZ: 0.334469885 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231805 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Witch. + GMNotes: '' + GUID: 367d03 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Coven Initiate + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -26.0635834 + posY: 1.72707784 + posZ: -35.83386 + rotX: 359.920868 + rotY: 269.973969 + rotZ: 0.0147350542 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '2755': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 231805 +- 231808 +- 275536 +- 275539 +- 231809 +- 275534 +- 231809 +- 231814 +- 231814 +- 231807 +- 275534 +- 231813 +- 231808 +- 231807 +- 231805 +- 275538 +- 231806 +- 275536 +- 275538 +- 275539 +- 231814 +- 231807 +- 231813 +- 231805 +Description: '' +GMNotes: '' +GUID: '183001' +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Encounter Deck +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.92741847 + posY: 1.73973286 + posZ: 5.757205 + rotX: 359.919739 + rotY: 269.989868 + rotZ: 180.01683 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 4 The Wages of Sin 1e45e8/Deck Heretics a9af08.yaml b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 4 The Wages of Sin 1e45e8/Deck Heretics a9af08.yaml new file mode 100644 index 000000000..be28f85b4 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 4 The Wages of Sin 1e45e8/Deck Heretics a9af08.yaml @@ -0,0 +1,301 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 275435 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2754': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/829135524526797029/1F8A6C29028AED32DB44E4CF22E3120C417F413D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526785922/F34A644AC467C751B6D7B8AF398B8FDB07CCF6A0/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Monster. Geist. Witch. Spectral. Elite. + GMNotes: '' + GUID: 13d3f3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Heretic + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.5071 + posY: 1.34559619 + posZ: 61.5575562 + rotX: 0.0208071545 + rotY: 270.0 + rotZ: 0.0167729761 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 275436 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2754': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/829135524526797029/1F8A6C29028AED32DB44E4CF22E3120C417F413D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526785922/F34A644AC467C751B6D7B8AF398B8FDB07CCF6A0/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Monster. Geist. Witch. Spectral. Elite. + GMNotes: '' + GUID: 71e37c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Heretic + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.4758682 + posY: 1.34500444 + posZ: 58.9735146 + rotX: 0.027376866 + rotY: 269.998535 + rotZ: 0.019387 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 275434 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2754': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/829135524526797029/1F8A6C29028AED32DB44E4CF22E3120C417F413D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526785922/F34A644AC467C751B6D7B8AF398B8FDB07CCF6A0/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Monster. Geist. Witch. Spectral. Elite. + GMNotes: '' + GUID: 6f896e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Heretic + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.4763718 + posY: 1.34412086 + posZ: 56.5552368 + rotX: 0.0208079629 + rotY: 270.0 + rotZ: 0.0167719 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 275438 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2754': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/829135524526797029/1F8A6C29028AED32DB44E4CF22E3120C417F413D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526785922/F34A644AC467C751B6D7B8AF398B8FDB07CCF6A0/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Monster. Geist. Witch. Spectral. Elite. + GMNotes: '' + GUID: 962a85 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Heretic + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 13.2133646 + posY: 1.34292543 + posZ: 56.51944 + rotX: 0.0208042227 + rotY: 270.000031 + rotZ: 0.0167716611 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 275437 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2754': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/829135524526797029/1F8A6C29028AED32DB44E4CF22E3120C417F413D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526785922/F34A644AC467C751B6D7B8AF398B8FDB07CCF6A0/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Monster. Geist. Witch. Spectral. Elite. + GMNotes: '' + GUID: 6d6a42 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Heretic + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 13.0830288 + posY: 1.34435523 + posZ: 61.5660324 + rotX: 0.02080735 + rotY: 270.0 + rotZ: 0.0167676 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 275433 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2754': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/829135524526797029/1F8A6C29028AED32DB44E4CF22E3120C417F413D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526785922/F34A644AC467C751B6D7B8AF398B8FDB07CCF6A0/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Monster. Geist. Witch. Spectral. Elite. + GMNotes: '' + GUID: 6c0d7e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Heretic + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 13.3551321 + posY: 1.34373021 + posZ: 59.03893 + rotX: 0.022275405 + rotY: 270.000916 + rotZ: 0.0167769566 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2754': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/829135524526797029/1F8A6C29028AED32DB44E4CF22E3120C417F413D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526785922/F34A644AC467C751B6D7B8AF398B8FDB07CCF6A0/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 275435 +- 275436 +- 275434 +- 275438 +- 275437 +- 275433 +Description: '' +GMNotes: '' +GUID: a9af08 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Heretics +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -12.3885965 + posY: 1.67466307 + posZ: 11.2381 + rotX: 359.9201 + rotY: 270.011566 + rotZ: 0.0168606378 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 4 The Wages of Sin 1e45e8/Deck Spectral Encounter Deck 8ee597.yaml b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 4 The Wages of Sin 1e45e8/Deck Spectral Encounter Deck 8ee597.yaml new file mode 100644 index 000000000..3eb9c1724 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 4 The Wages of Sin 1e45e8/Deck Spectral Encounter Deck 8ee597.yaml @@ -0,0 +1,910 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 275540 + 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/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Curse. Spectral. + GMNotes: '' + GUID: 9b05f2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Bane of the Living + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -5.60290337 + posY: 1.72524989 + posZ: 23.9985065 + rotX: 359.922028 + rotY: 269.989441 + rotZ: 180.019623 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 275535 + 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/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Geist. Spectral. + GMNotes: '' + GUID: d02d98 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Malevolent Spirit + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -5.60289574 + posY: 1.72287846 + posZ: 23.99851 + rotX: 359.918 + rotY: 269.990021 + rotZ: 180.017792 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 275537 + 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/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Curse. Spectral. + GMNotes: '' + GUID: 199d00 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Burdens of the Past + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -5.602903 + posY: 1.72468817 + posZ: 23.9984875 + rotX: 359.919464 + rotY: 269.9897 + rotZ: 180.018677 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 275535 + 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/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Geist. Spectral. + GMNotes: '' + GUID: f65ded + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Malevolent Spirit + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -5.602903 + posY: 1.73853827 + posZ: 23.9984875 + rotX: 359.919464 + rotY: 269.989716 + rotZ: 180.018723 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 275540 + 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/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Curse. Spectral. + GMNotes: '' + GUID: d9c83e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Bane of the Living + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -5.60288858 + posY: 1.7209518 + posZ: 23.9984589 + rotX: 359.917633 + rotY: 269.989624 + rotZ: 180.03064 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 275537 + 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/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Curse. Spectral. + GMNotes: '' + GUID: f3088f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Burdens of the Past + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -5.60292864 + posY: 1.57090807 + posZ: 23.99852 + rotX: 359.9202 + rotY: 269.989868 + rotZ: 180.017975 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231818 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Geist. Spectral. + GMNotes: '' + GUID: 7732b3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Wraith + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -23.14106 + posY: 1.62496328 + posZ: -36.8201828 + rotX: 359.913239 + rotY: 269.973724 + rotZ: 0.00411301153 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231821 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. Spectral. + GMNotes: '' + GUID: 3c04e0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Shapes in the Mist + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -24.9579411 + posY: 1.72431993 + posZ: -29.8048172 + rotX: 359.8922 + rotY: 269.971619 + rotZ: 0.06810118 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231819 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. Spectral. + GMNotes: '' + GUID: 10c2cb + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Trapped Spirits + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -23.006403 + posY: 1.73293757 + posZ: -36.7171631 + rotX: 359.904938 + rotY: 269.972717 + rotZ: 0.0009751208 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231818 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Geist. Spectral. + GMNotes: '' + GUID: db1b65 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Wraith + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -23.6921558 + posY: 1.5753423 + posZ: -36.98296 + rotX: 359.918884 + rotY: 269.973633 + rotZ: 0.016206529 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231820 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. Spectral. + GMNotes: '' + GUID: e49187 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Realm of Torment + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -25.5189228 + posY: 1.92383051 + posZ: -29.7425785 + rotX: 359.8803 + rotY: 269.977753 + rotZ: 0.07589612 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231819 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. Spectral. + GMNotes: '' + GUID: 4e4752 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Trapped Spirits + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -23.8059444 + posY: 1.67718458 + posZ: -36.7148056 + rotX: 359.913239 + rotY: 269.9757 + rotZ: 0.004121993 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231822 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. Spectral. + GMNotes: '' + GUID: 43ba03 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Terror in the Night + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -24.27985 + posY: 1.99979043 + posZ: -34.2781525 + rotX: 359.187378 + rotY: 270.910339 + rotZ: 355.236023 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231823 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Omen. Spectral. + GMNotes: '' + GUID: ef132d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Fate of All Fools + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -24.7152367 + posY: 1.91512489 + posZ: -32.59262 + rotX: 359.910583 + rotY: 269.364441 + rotZ: 341.912537 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231821 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. Spectral. + GMNotes: '' + GUID: 47147f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Shapes in the Mist + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -25.974844 + posY: 1.58076048 + posZ: -29.1853924 + rotX: 359.916321 + rotY: 269.977448 + rotZ: 0.01572173 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231823 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Omen. Spectral. + GMNotes: '' + GUID: fbcb9f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Fate of All Fools + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -23.46502 + posY: 2.16774321 + posZ: -34.8072357 + rotX: 0.232217044 + rotY: 270.777466 + rotZ: 353.199249 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231822 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. Spectral. + GMNotes: '' + GUID: 4f41b0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Terror in the Night + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -24.3842 + posY: 2.1039958 + posZ: -34.9055138 + rotX: 359.182831 + rotY: 270.902466 + rotZ: 355.1978 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231823 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Omen. Spectral. + GMNotes: '' + GUID: 717c42 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Fate of All Fools + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -24.6707478 + posY: 1.76058781 + posZ: -33.23441 + rotX: 359.465271 + rotY: 269.459351 + rotZ: 9.029153 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231820 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. Spectral. + GMNotes: '' + GUID: 278e46 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Realm of Torment + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -25.91995 + posY: 1.77833688 + posZ: -29.84826 + rotX: 359.884155 + rotY: 269.9732 + rotZ: 0.074736394 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231822 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. Spectral. + GMNotes: '' + GUID: 1a350a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Terror in the Night + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -23.6618786 + posY: 2.18380141 + posZ: -35.4214439 + rotX: 359.156219 + rotY: 270.890381 + rotZ: 355.0201 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '2755': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 275540 +- 275535 +- 275537 +- 275535 +- 275540 +- 275537 +- 231818 +- 231821 +- 231819 +- 231818 +- 231820 +- 231819 +- 231822 +- 231823 +- 231821 +- 231823 +- 231822 +- 231823 +- 231820 +- 231822 +Description: '' +GMNotes: '' +GUID: 8ee597 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Spectral Encounter Deck +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.87325621 + posY: 1.72111368 + posZ: 15.1996946 + rotX: 359.919739 + rotY: 270.0 + rotZ: 180.016815 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 5 For the Greater Good a61b48.ttslua b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 5 For the Greater Good a61b48.ttslua new file mode 100644 index 000000000..ed7a62e7d --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 5 For the Greater Good a61b48.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.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.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 \ No newline at end of file diff --git a/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 5 For the Greater Good a61b48.yaml b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 5 For the Greater Good a61b48.yaml new file mode 100644 index 000000000..b31b952c7 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 5 For the Greater Good a61b48.yaml @@ -0,0 +1,83 @@ +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 5 For the Greater Good a61b48/Custom_Tile For the Greater + Good bbb70a.yaml' +- !include 'Custom_Model_Bag 5 For the Greater Good a61b48/Card Lodge Catacombs 021478.yaml' +- !include 'Custom_Model_Bag 5 For the Greater Good a61b48/Custom_Tile Elder Key 137468.yaml' +- !include 'Custom_Model_Bag 5 For the Greater Good a61b48/Custom_Tile Skull Key 156d55.yaml' +- !include 'Custom_Model_Bag 5 For the Greater Good a61b48/Custom_Tile Tablet Key + 167691.yaml' +- !include 'Custom_Model_Bag 5 For the Greater Good a61b48/Bag Member of the Lodge + 38a5f7.yaml' +- !include 'Custom_Model_Bag 5 For the Greater Good a61b48/Custom_Tile 58eefe.yaml' +- !include 'Custom_Model_Bag 5 For the Greater Good a61b48/Custom_Tile Cultist Key + 604398.yaml' +- !include 'Custom_Model_Bag 5 For the Greater Good a61b48/Custom_Tile 6276bc.yaml' +- !include 'Custom_Model_Bag 5 For the Greater Good a61b48/Custom_Tile 698fc7.yaml' +- !include 'Custom_Model_Bag 5 For the Greater Good a61b48/Custom_Tile 7234af.yaml' +- !include 'Custom_Model_Bag 5 For the Greater Good a61b48/Bag Not a Member of the + Lodge abe15f.yaml' +- !include 'Custom_Model_Bag 5 For the Greater Good a61b48/Custom_Tile XXX bbb70a.yaml' +- !include 'Custom_Model_Bag 5 For the Greater Good a61b48/Custom_Tile c95e06.yaml' +- !include 'Custom_Model_Bag 5 For the Greater Good a61b48/Card Lounge ccc01a.yaml' +- !include 'Custom_Model_Bag 5 For the Greater Good a61b48/Deck Agenda deck d0f844.yaml' +- !include 'Custom_Model_Bag 5 For the Greater Good a61b48/Card Scenario faa49f.yaml' +- !include 'Custom_Model_Bag 5 For the Greater Good a61b48/Custom_Model_Bag Set-aside + ff16db.yaml' +CustomMesh: + CastShadows: true + ColliderURL: '' + Convex: true + DiffuseURL: http://cloud-3.steamusercontent.com/ugc/786356000879747884/323850845E637466C0DD80E0CA825D57AD6553F0/ + MaterialIndex: 3 + MeshURL: https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj + NormalURL: '' + TypeIndex: 6 +Description: The Circle Undone +GMNotes: '' +GUID: a61b48 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Model_Bag 5 For the Greater Good a61b48.ttslua' +LuaScriptState: '{"ml":{"021478":{"lock":false,"pos":{"x":-30.2243,"y":1.6976,"z":7.57},"rot":{"x":359.9201,"y":270.002,"z":0.0169}},"137468":{"lock":false,"pos":{"x":-12.0499,"y":1.5949,"z":-11.6676},"rot":{"x":359.9201,"y":270.0216,"z":0.0168}},"156d55":{"lock":false,"pos":{"x":-12.05,"y":1.6016,"z":11.3474},"rot":{"x":359.9201,"y":269.9994,"z":0.0169}},"167691":{"lock":false,"pos":{"x":-12.05,"y":1.596,"z":-7.9544},"rot":{"x":359.9201,"y":269.9857,"z":0.0169}},"38a5f7":{"lock":false,"pos":{"x":-11.9229,"y":1.4136,"z":1.629},"rot":{"x":0.0799,"y":89.9982,"z":359.9831}},"58eefe":{"lock":false,"pos":{"x":-20.3545,"y":1.6105,"z":2.1052},"rot":{"x":0.0776,"y":120.0149,"z":0.0253}},"604398":{"lock":false,"pos":{"x":-12.05,"y":1.6005,"z":7.5408},"rot":{"x":359.9201,"y":269.9899,"z":0.0169}},"6276bc":{"lock":false,"pos":{"x":-26.8667,"y":1.6206,"z":5.4575},"rot":{"x":359.9224,"y":299.9941,"z":359.9747}},"698fc7":{"lock":false,"pos":{"x":-23.6765,"y":1.6145,"z":-0.0299},"rot":{"x":0.0167,"y":180.1091,"z":0.08}},"7234af":{"lock":false,"pos":{"x":-26.8742,"y":1.6173,"z":-5.7185},"rot":{"x":0.0608,"y":60.0126,"z":359.9455}},"abe15f":{"lock":false,"pos":{"x":-11.9755,"y":1.4127,"z":-1.5887},"rot":{"x":0.0799,"y":89.9984,"z":359.9831}},"bbb70a":{"lock":false,"pos":{"x":-3.7461,"y":1.5823,"z":-15.0785},"rot":{"x":359.9197,"y":270.0307,"z":0.0168}},"c95e06":{"lock":false,"pos":{"x":-20.5114,"y":1.6094,"z":-2.2982},"rot":{"x":0.0608,"y":60.0074,"z":359.9455}},"ccc01a":{"lock":false,"pos":{"x":-30.2243,"y":1.6931,"z":-7.7},"rot":{"x":359.9201,"y":270.0004,"z":0.0169}},"d0f844":{"lock":false,"pos":{"x":-2.7246,"y":1.664,"z":0.3733},"rot":{"x":0.0168,"y":180.0012,"z":0.0803}},"faa49f":{"lock":false,"pos":{"x":-3.9558,"y":1.6556,"z":-10.4412},"rot":{"x":359.9197,"y":270,"z":0.0168}},"ff16db":{"lock":false,"pos":{"x":1.696,"y":1.5583,"z":14.2787},"rot":{"x":359.9551,"y":224.998,"z":0.0687}}}}' +MaterialIndex: -1 +MeshIndex: -1 +Name: Custom_Model_Bag +Nickname: '5: For the Greater Good' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 12.2511005 + posY: 1.46210766 + posZ: -7.886801 + rotX: 359.920135 + rotY: 270.001038 + rotZ: 0.0168721732 + scaleX: 2.21 + scaleY: 0.46 + scaleZ: 2.42 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 5 For the Greater Good a61b48/Bag Member of the Lodge 38a5f7.ttslua b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 5 For the Greater Good a61b48/Bag Member of the Lodge 38a5f7.ttslua new file mode 100644 index 000000000..4acf9ea11 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 5 For the Greater Good a61b48/Bag Member of the Lodge 38a5f7.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 Circle Undone 61e777/Custom_Model_Bag 5 For the Greater Good a61b48/Bag Member of the Lodge 38a5f7.yaml b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 5 For the Greater Good a61b48/Bag Member of the Lodge 38a5f7.yaml new file mode 100644 index 000000000..936981f5d --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 5 For the Greater Good a61b48/Bag Member of the Lodge 38a5f7.yaml @@ -0,0 +1,40 @@ +Autoraise: true +ColorDiffuse: + b: 0.06554926 + g: 0.5452962 + r: 0.09943437 +ContainedObjects: +- !include 'Bag Member of the Lodge 38a5f7/Card Lodge Gates 397ce4.yaml' +- !include 'Bag Member of the Lodge 38a5f7/Card Lodge Cellar 8ea4fd.yaml' +- !include 'Bag Member of the Lodge 38a5f7/Deck Act Deck 94fadd.yaml' +- !include 'Bag Member of the Lodge 38a5f7/Deck Encounter deck a7a92e.yaml' +- !include 'Bag Member of the Lodge 38a5f7/Card Lobby bcd556.yaml' +Description: Press the place button if you are a memebr of the Lodge +GMNotes: '' +GUID: 38a5f7 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Bag Member of the Lodge 38a5f7.ttslua' +LuaScriptState: '{"ml":{"397ce4":{"lock":false,"pos":{"x":-17.12,"y":1.6771,"z":-0.03},"rot":{"x":359.9201,"y":270.0002,"z":0.0169}},"8ea4fd":{"lock":false,"pos":{"x":-23.6766,"y":1.6874,"z":3.86},"rot":{"x":359.9201,"y":270.0002,"z":0.0169}},"94fadd":{"lock":false,"pos":{"x":-2.6893,"y":1.655,"z":-5.0485},"rot":{"x":0.0168,"y":180.0015,"z":0.0803}},"a7a92e":{"lock":false,"pos":{"x":-3.9274,"y":1.7664,"z":5.7572},"rot":{"x":359.9197,"y":269.9999,"z":180.0168}},"bcd556":{"lock":false,"pos":{"x":-23.6765,"y":1.6851,"z":-3.83},"rot":{"x":359.9201,"y":270.0008,"z":0.0169}}}}' +MaterialIndex: -1 +MeshIndex: -1 +Name: Bag +Nickname: Member of the Lodge +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -11.9228992 + posY: 1.41357231 + posZ: 1.62899911 + rotX: 0.07998585 + rotY: 89.9981842 + rotZ: 359.9831 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 5 For the Greater Good a61b48/Bag Member of the Lodge 38a5f7/Card Lobby bcd556.yaml b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 5 For the Greater Good a61b48/Bag Member of the Lodge 38a5f7/Card Lobby bcd556.yaml new file mode 100644 index 000000000..c1b3be63a --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 5 For the Greater Good a61b48/Bag Member of the Lodge 38a5f7/Card Lobby bcd556.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 312902 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '3129': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/786356000879760156/63ACD954501B669BBDC2D64FAA3FFAE0BBEDFB7F/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/786356000879759384/E2705454B81312E1DE9058EE2389E6CD0018A169/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Lodge. +GMNotes: '' +GUID: bcd556 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Lobby +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -23.6765 + posY: 1.68510139 + posZ: -3.83000088 + rotX: 359.9201 + rotY: 270.000763 + rotZ: 0.0168752223 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 5 For the Greater Good a61b48/Bag Member of the Lodge 38a5f7/Card Lodge Cellar 8ea4fd.yaml b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 5 For the Greater Good a61b48/Bag Member of the Lodge 38a5f7/Card Lodge Cellar 8ea4fd.yaml new file mode 100644 index 000000000..d3753ccee --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 5 For the Greater Good a61b48/Bag Member of the Lodge 38a5f7/Card Lodge Cellar 8ea4fd.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 312904 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '3129': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/786356000879760156/63ACD954501B669BBDC2D64FAA3FFAE0BBEDFB7F/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/786356000879759384/E2705454B81312E1DE9058EE2389E6CD0018A169/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Lodge. +GMNotes: '' +GUID: 8ea4fd +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Lodge Cellar +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -23.6766 + posY: 1.68736589 + posZ: 3.86 + rotX: 359.9201 + rotY: 270.000183 + rotZ: 0.0168760512 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 5 For the Greater Good a61b48/Bag Member of the Lodge 38a5f7/Card Lodge Gates 397ce4.yaml b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 5 For the Greater Good a61b48/Bag Member of the Lodge 38a5f7/Card Lodge Gates 397ce4.yaml new file mode 100644 index 000000000..31cb25228 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 5 For the Greater Good a61b48/Bag Member of the Lodge 38a5f7/Card Lodge Gates 397ce4.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 312900 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '3129': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/786356000879760156/63ACD954501B669BBDC2D64FAA3FFAE0BBEDFB7F/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/786356000879759384/E2705454B81312E1DE9058EE2389E6CD0018A169/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Lodge. +GMNotes: '' +GUID: 397ce4 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Lodge Gates +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -17.12 + posY: 1.67707777 + posZ: -0.03000036 + rotX: 359.9201 + rotY: 270.000183 + rotZ: 0.0168760344 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 5 For the Greater Good a61b48/Bag Member of the Lodge 38a5f7/Deck Act Deck 94fadd.yaml b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 5 For the Greater Good a61b48/Bag Member of the Lodge 38a5f7/Deck Act Deck 94fadd.yaml new file mode 100644 index 000000000..ead9ff4fc --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 5 For the Greater Good a61b48/Bag Member of the Lodge 38a5f7/Deck Act Deck 94fadd.yaml @@ -0,0 +1,172 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 312306 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/786356000879758511/CF3D368183597044860CA0BE0FE6A36024904675/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/786356000879757640/1B977B33065106178624452E8B37BC59D06CEC19/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 2 + GMNotes: '' + GUID: bf8c2e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Four Keys + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.68927431 + posY: 1.6552577 + posZ: -5.04847956 + rotX: 0.0183664449 + rotY: 180.001816 + rotZ: 0.0660378039 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 312305 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/786356000879758511/CF3D368183597044860CA0BE0FE6A36024904675/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/786356000879757640/1B977B33065106178624452E8B37BC59D06CEC19/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 3 + GMNotes: '' + GUID: 22dea4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Obtaining the Device + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.68826079 + posY: 1.80270958 + posZ: -5.04899025 + rotX: 0.339916527 + rotY: 180.000046 + rotZ: 0.444971323 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 312303 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/786356000879758511/CF3D368183597044860CA0BE0FE6A36024904675/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/786356000879757640/1B977B33065106178624452E8B37BC59D06CEC19/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 4 + GMNotes: '' + GUID: 0ed938 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Warm Welcome + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.6885314 + posY: 1.82276726 + posZ: -5.04851866 + rotX: 0.0175138041 + rotY: 179.9994 + rotZ: 0.07856168 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '3123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/786356000879758511/CF3D368183597044860CA0BE0FE6A36024904675/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/786356000879757640/1B977B33065106178624452E8B37BC59D06CEC19/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 312306 +- 312305 +- 312303 +Description: '' +GMNotes: '' +GUID: 94fadd +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Act Deck +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.68929982 + posY: 1.65499842 + posZ: -5.04850054 + rotX: 0.01683298 + rotY: 180.00148 + rotZ: 0.08025807 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 5 For the Greater Good a61b48/Bag Member of the Lodge 38a5f7/Deck Encounter deck a7a92e.yaml b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 5 For the Greater Good a61b48/Bag Member of the Lodge 38a5f7/Deck Encounter deck a7a92e.yaml new file mode 100644 index 000000000..917a4c101 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 5 For the Greater Good a61b48/Bag Member of the Lodge 38a5f7/Deck Encounter deck a7a92e.yaml @@ -0,0 +1,1311 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 231812 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Scheme. + GMNotes: '' + GUID: 0eb939 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Mysteries of the Lodge + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -18.7109814 + posY: 1.56981552 + posZ: -32.18543 + rotX: 359.91922 + rotY: 269.979279 + rotZ: 0.0165627878 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 312605 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3126': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/786356000879761873/F22612DB451928DCA4344F3F125F5A8CE128A817/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Scheme. + GMNotes: '' + GUID: 38256e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Call to Order + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 45.92286 + posY: 1.50916827 + posZ: 56.0439072 + rotX: 0.0136107309 + rotY: 270.046082 + rotZ: 0.008057649 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 312607 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3126': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/786356000879761873/F22612DB451928DCA4344F3F125F5A8CE128A817/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Scheme. + GMNotes: '' + GUID: 28d66c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Beneath the Lodge + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 45.68224 + posY: 1.5169822 + posZ: 55.38902 + rotX: 0.0147958156 + rotY: 270.073822 + rotZ: 0.009050958 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231810 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Cultist. Silver Twilight. + GMNotes: '' + GUID: 8dac94 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Lodge Neophyte + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -18.6574612 + posY: 1.71596491 + posZ: -31.9956455 + rotX: 359.918976 + rotY: 269.979736 + rotZ: 0.0163928568 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 312600 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3126': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/786356000879761873/F22612DB451928DCA4344F3F125F5A8CE128A817/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Cultist. Silver Twilight. + GMNotes: '' + GUID: 817b5a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Lodge Jailor + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 45.8018761 + posY: 1.4921149 + posZ: 55.66741 + rotX: 0.01833514 + rotY: 270.051147 + rotZ: 0.00700765243 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231812 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Scheme. + GMNotes: '' + GUID: 7870f6 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Mysteries of the Lodge + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -18.6118813 + posY: 1.71404207 + posZ: -32.3841057 + rotX: 359.91098 + rotY: 269.979034 + rotZ: 0.0195768736 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 312604 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3126': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/786356000879761873/F22612DB451928DCA4344F3F125F5A8CE128A817/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Cultist. Silver Twilight. + GMNotes: '' + GUID: d43918 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Knight of the Outer Void + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 45.59957 + posY: 1.5069766 + posZ: 54.19255 + rotX: 0.02180111 + rotY: 269.9969 + rotZ: 8.087906 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231814 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Curse. + GMNotes: '' + GUID: 81dc7a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Centuries of Secrets + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -21.0152721 + posY: 1.57281208 + posZ: -32.7783356 + rotX: 359.9176 + rotY: 269.977783 + rotZ: 0.01638736 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 312605 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3126': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/786356000879761873/F22612DB451928DCA4344F3F125F5A8CE128A817/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Scheme. + GMNotes: '' + GUID: '024771' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Call to Order + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 45.581337 + posY: 1.51521659 + posZ: 55.96411 + rotX: 0.0217962228 + rotY: 270.018 + rotZ: 0.00204580254 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231810 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Cultist. Silver Twilight. + GMNotes: '' + GUID: 408a82 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Lodge Neophyte + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -18.5851078 + posY: 1.73144269 + posZ: -32.35143 + rotX: 359.919037 + rotY: 269.979156 + rotZ: 0.01716643 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231813 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Curse. + GMNotes: '' + GUID: ab69b8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Evil Past + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -20.8834572 + posY: 1.89827907 + posZ: -33.5683937 + rotX: 0.110509835 + rotY: 269.976044 + rotZ: 0.334469885 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231814 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Curse. + GMNotes: '' + GUID: 9cb625 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Centuries of Secrets + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -20.7263336 + posY: 1.754926 + posZ: -33.80658 + rotX: 0.0413828529 + rotY: 269.9769 + rotZ: 0.3666429 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12120 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '121': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: 61e841 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ancient Evils + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 114.991905 + posY: 1.59937644 + posZ: 1.31244183 + rotX: 1.97711754 + rotY: 270.070251 + rotZ: 359.990356 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 312606 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3126': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/786356000879761873/F22612DB451928DCA4344F3F125F5A8CE128A817/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Scheme. + GMNotes: '' + GUID: 9aa5ab + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Expulsion + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 45.9872169 + posY: 1.50186431 + posZ: 56.3765068 + rotX: 0.0126513187 + rotY: 270.052246 + rotZ: 359.959534 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 312604 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3126': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/786356000879761873/F22612DB451928DCA4344F3F125F5A8CE128A817/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Cultist. Silver Twilight. + GMNotes: '' + GUID: 57cee5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Knight of the Outer Void + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 45.2589569 + posY: 1.66137767 + posZ: 55.45443 + rotX: 0.0254535563 + rotY: 270.093658 + rotZ: 353.280518 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231814 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Curse. + GMNotes: '' + GUID: 0a13d0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Centuries of Secrets + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -20.54692 + posY: 1.60918021 + posZ: -33.3808479 + rotX: 359.9352 + rotY: 269.982361 + rotZ: 0.376713872 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12120 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '121': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: 1921c5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ancient Evils + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 115.318665 + posY: 1.5414474 + posZ: 1.587292 + rotX: 359.989929 + rotY: 270.000031 + rotZ: 359.9876 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12120 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '121': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: e0f4c0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ancient Evils + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 115.309677 + posY: 1.40331125 + posZ: 1.5845021 + rotX: 359.987427 + rotY: 270.0 + rotZ: 359.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3628 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Obstacle. + GMNotes: '' + GUID: 9449d7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Locked Door + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 99.5096054 + posY: 1.40344727 + posZ: 13.9449472 + rotX: 359.987427 + rotY: 269.999969 + rotZ: 359.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 312608 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3126': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/786356000879761873/F22612DB451928DCA4344F3F125F5A8CE128A817/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Scheme. + GMNotes: '' + GUID: '323982' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Mark of the Order + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 45.8122177 + posY: 1.4996053 + posZ: 55.3112869 + rotX: 0.013215567 + rotY: 270.036 + rotZ: -0.00218945043 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3625 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: 6f5b7b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Mysterious Chanting + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 98.78452 + posY: 1.40295327 + posZ: 16.366806 + rotX: 359.987427 + rotY: 269.999817 + rotZ: 359.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231811 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Cultist. Silver Twilight. + GMNotes: '' + GUID: 3761ce + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Keeper of Secrets + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -18.7752514 + posY: 1.71879411 + posZ: -32.00056 + rotX: 359.919342 + rotY: 269.979553 + rotZ: 0.0157596618 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 312607 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3126': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/786356000879761873/F22612DB451928DCA4344F3F125F5A8CE128A817/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Scheme. + GMNotes: '' + GUID: abf303 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Beneath the Lodge + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 45.6490021 + posY: 1.50323951 + posZ: 55.88405 + rotX: 0.02039161 + rotY: 270.062134 + rotZ: 0.00326434616 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3628 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Obstacle. + GMNotes: '' + GUID: 1340ff + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Locked Door + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 99.57202 + posY: 1.54880774 + posZ: 13.6603928 + rotX: 359.990143 + rotY: 270.0007 + rotZ: 359.987 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231810 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Cultist. Silver Twilight. + GMNotes: '' + GUID: '525275' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Lodge Neophyte + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -18.3490829 + posY: 1.71755159 + posZ: -31.918066 + rotX: 359.918579 + rotY: 269.9797 + rotZ: 0.0158215724 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 312608 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3126': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/786356000879761873/F22612DB451928DCA4344F3F125F5A8CE128A817/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Scheme. + GMNotes: '' + GUID: 8cc16b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Mark of the Order + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 45.8264847 + posY: 1.35445035 + posZ: 55.52848 + rotX: 0.0209392067 + rotY: 270.0056 + rotZ: 0.01440078 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3625 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: df668b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Mysterious Chanting + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 99.2046661 + posY: 1.54923761 + posZ: 15.9180088 + rotX: 359.989929 + rotY: 270.0 + rotZ: 359.98764 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 312606 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3126': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/786356000879761873/F22612DB451928DCA4344F3F125F5A8CE128A817/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Scheme. + GMNotes: '' + GUID: b3da23 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Expulsion + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 45.99259 + posY: 1.5041101 + posZ: 55.5351257 + rotX: 0.00386153185 + rotY: 270.070923 + rotZ: 0.00110510457 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231813 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Curse. + GMNotes: '' + GUID: 976fd8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Evil Past + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -20.7343235 + posY: 1.86165559 + posZ: -33.3503036 + rotX: 359.785339 + rotY: 269.9796 + rotZ: 0.07815084 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '121': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '3126': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/786356000879761873/F22612DB451928DCA4344F3F125F5A8CE128A817/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 231812 +- 312605 +- 312607 +- 231810 +- 312600 +- 231812 +- 312604 +- 231814 +- 312605 +- 231810 +- 231813 +- 231814 +- 12120 +- 312606 +- 312604 +- 231814 +- 12120 +- 12120 +- 3628 +- 312608 +- 3625 +- 231811 +- 312607 +- 3628 +- 231810 +- 312608 +- 3625 +- 312606 +- 231813 +Description: '' +GMNotes: '' +GUID: a7a92e +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Encounter deck +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.92740035 + posY: 1.76638019 + posZ: 5.75720072 + rotX: 359.919739 + rotY: 269.999939 + rotZ: 180.016815 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 5 For the Greater Good a61b48/Bag Not a Member of the Lodge abe15f.ttslua b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 5 For the Greater Good a61b48/Bag Not a Member of the Lodge abe15f.ttslua new file mode 100644 index 000000000..4acf9ea11 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 5 For the Greater Good a61b48/Bag Not a Member of the Lodge abe15f.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 Circle Undone 61e777/Custom_Model_Bag 5 For the Greater Good a61b48/Bag Not a Member of the Lodge abe15f.yaml b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 5 For the Greater Good a61b48/Bag Not a Member of the Lodge abe15f.yaml new file mode 100644 index 000000000..08d7bcf00 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 5 For the Greater Good a61b48/Bag Not a Member of the Lodge abe15f.yaml @@ -0,0 +1,40 @@ +Autoraise: true +ColorDiffuse: + b: 0.0 + g: 0.0 + r: 1.0 +ContainedObjects: +- !include 'Bag Not a Member of the Lodge abe15f/Card Lobby 1c2dfe.yaml' +- !include 'Bag Not a Member of the Lodge abe15f/Deck Act Deck 8b8b53.yaml' +- !include 'Bag Not a Member of the Lodge abe15f/Deck Encounter deck 8bae65.yaml' +- !include 'Bag Not a Member of the Lodge abe15f/Card Lodge Cellar cdae8b.yaml' +- !include 'Bag Not a Member of the Lodge abe15f/Card Lodge Gates fa6a29.yaml' +Description: Press the place button if you are NOT a memebr of the Lodge +GMNotes: '' +GUID: abe15f +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Bag Not a Member of the Lodge abe15f.ttslua' +LuaScriptState: '{"ml":{"1c2dfe":{"lock":false,"pos":{"x":-23.6765,"y":1.684,"z":-7.7},"rot":{"x":359.9201,"y":269.9961,"z":0.0169}},"8b8b53":{"lock":false,"pos":{"x":-2.6884,"y":1.655,"z":-5.0485},"rot":{"x":0.0168,"y":180.0009,"z":0.0803}},"8bae65":{"lock":false,"pos":{"x":-3.9277,"y":1.7664,"z":5.7572},"rot":{"x":359.9197,"y":270,"z":180.0168}},"cdae8b":{"lock":false,"pos":{"x":-23.6766,"y":1.6885,"z":7.57},"rot":{"x":359.9201,"y":269.9813,"z":0.0169}},"fa6a29":{"lock":false,"pos":{"x":-17.1199,"y":1.6771,"z":-0.03},"rot":{"x":359.9201,"y":269.996,"z":0.0169}}}}' +MaterialIndex: -1 +MeshIndex: -1 +Name: Bag +Nickname: Not a Member of the Lodge +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -11.9754972 + posY: 1.412698 + posZ: -1.58870077 + rotX: 0.07998205 + rotY: 89.99784 + rotZ: 359.9831 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 5 For the Greater Good a61b48/Bag Not a Member of the Lodge abe15f/Card Lobby 1c2dfe.yaml b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 5 For the Greater Good a61b48/Bag Not a Member of the Lodge abe15f/Card Lobby 1c2dfe.yaml new file mode 100644 index 000000000..e2f28de85 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 5 For the Greater Good a61b48/Bag Not a Member of the Lodge abe15f/Card Lobby 1c2dfe.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 312903 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '3129': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/786356000879760156/63ACD954501B669BBDC2D64FAA3FFAE0BBEDFB7F/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/786356000879759384/E2705454B81312E1DE9058EE2389E6CD0018A169/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Lodge. +GMNotes: '' +GUID: 1c2dfe +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Lobby +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -23.6765 + posY: 1.68396187 + posZ: -7.70000029 + rotX: 359.9201 + rotY: 269.996063 + rotZ: 0.0168817546 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 5 For the Greater Good a61b48/Bag Not a Member of the Lodge abe15f/Card Lodge Cellar cdae8b.yaml b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 5 For the Greater Good a61b48/Bag Not a Member of the Lodge abe15f/Card Lodge Cellar cdae8b.yaml new file mode 100644 index 000000000..d1a689abc --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 5 For the Greater Good a61b48/Bag Not a Member of the Lodge abe15f/Card Lodge Cellar cdae8b.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 312905 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '3129': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/786356000879760156/63ACD954501B669BBDC2D64FAA3FFAE0BBEDFB7F/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/786356000879759384/E2705454B81312E1DE9058EE2389E6CD0018A169/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Lodge. +GMNotes: '' +GUID: cdae8b +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Lodge Cellar +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -23.6766 + posY: 1.68845844 + posZ: 7.569999 + rotX: 359.9201 + rotY: 269.981262 + rotZ: 0.0169023387 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 5 For the Greater Good a61b48/Bag Not a Member of the Lodge abe15f/Card Lodge Gates fa6a29.yaml b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 5 For the Greater Good a61b48/Bag Not a Member of the Lodge abe15f/Card Lodge Gates fa6a29.yaml new file mode 100644 index 000000000..eeb33e7dc --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 5 For the Greater Good a61b48/Bag Not a Member of the Lodge abe15f/Card Lodge Gates fa6a29.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 312901 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '3129': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/786356000879760156/63ACD954501B669BBDC2D64FAA3FFAE0BBEDFB7F/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/786356000879759384/E2705454B81312E1DE9058EE2389E6CD0018A169/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Lodge. +GMNotes: '' +GUID: fa6a29 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Lodge Gates +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -17.1196938 + posY: 1.67707729 + posZ: -0.0300435685 + rotX: 359.9201 + rotY: 269.999969 + rotZ: 0.0168758258 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 5 For the Greater Good a61b48/Bag Not a Member of the Lodge abe15f/Deck Act Deck 8b8b53.yaml b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 5 For the Greater Good a61b48/Bag Not a Member of the Lodge abe15f/Deck Act Deck 8b8b53.yaml new file mode 100644 index 000000000..98f4687c9 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 5 For the Greater Good a61b48/Bag Not a Member of the Lodge abe15f/Deck Act Deck 8b8b53.yaml @@ -0,0 +1,172 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 312306 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/786356000879758511/CF3D368183597044860CA0BE0FE6A36024904675/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/786356000879757640/1B977B33065106178624452E8B37BC59D06CEC19/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 2 + GMNotes: '' + GUID: bf8c2e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Four Keys + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 29.3551464 + posY: 1.34770918 + posZ: 53.0110168 + rotX: 0.01734805 + rotY: 180.00116 + rotZ: 359.976349 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 312305 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/786356000879758511/CF3D368183597044860CA0BE0FE6A36024904675/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/786356000879757640/1B977B33065106178624452E8B37BC59D06CEC19/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 3 + GMNotes: '' + GUID: 22dea4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Obtaining the Device + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 29.111536 + posY: 1.49238145 + posZ: 52.92199 + rotX: 0.03450147 + rotY: 179.999268 + rotZ: 359.9507 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 312304 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/786356000879758511/CF3D368183597044860CA0BE0FE6A36024904675/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/786356000879757640/1B977B33065106178624452E8B37BC59D06CEC19/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 1 + GMNotes: '' + GUID: 0de052 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Infiltrating the Lodge + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 58.805706 + posY: 3.362703 + posZ: 32.9439125 + rotX: 0.0167736318 + rotY: 180.003647 + rotZ: 359.9792 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '3123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/786356000879758511/CF3D368183597044860CA0BE0FE6A36024904675/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/786356000879757640/1B977B33065106178624452E8B37BC59D06CEC19/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 312306 +- 312305 +- 312304 +Description: '' +GMNotes: '' +GUID: 8b8b53 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Act Deck +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.6884 + posY: 1.65499711 + posZ: -5.0485 + rotX: 0.0168338176 + rotY: 180.000931 + rotZ: 0.08025811 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 5 For the Greater Good a61b48/Bag Not a Member of the Lodge abe15f/Deck Encounter deck 8bae65.yaml b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 5 For the Greater Good a61b48/Bag Not a Member of the Lodge abe15f/Deck Encounter deck 8bae65.yaml new file mode 100644 index 000000000..49416dd8f --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 5 For the Greater Good a61b48/Bag Not a Member of the Lodge abe15f/Deck Encounter deck 8bae65.yaml @@ -0,0 +1,1311 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 3628 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Obstacle. + GMNotes: '' + GUID: 1340ff + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Locked Door + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 99.57202 + posY: 1.54880774 + posZ: 13.6603928 + rotX: 359.990143 + rotY: 270.0007 + rotZ: 359.987 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 312606 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3126': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/786356000879761873/F22612DB451928DCA4344F3F125F5A8CE128A817/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Scheme. + GMNotes: '' + GUID: 9aa5ab + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Expulsion + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 45.9872169 + posY: 1.50186431 + posZ: 56.3765068 + rotX: 0.0126513187 + rotY: 270.052246 + rotZ: 359.959534 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 312608 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3126': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/786356000879761873/F22612DB451928DCA4344F3F125F5A8CE128A817/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Scheme. + GMNotes: '' + GUID: 8cc16b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Mark of the Order + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 45.8264847 + posY: 1.35445035 + posZ: 55.52848 + rotX: 0.0209392067 + rotY: 270.0056 + rotZ: 0.01440078 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 312605 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3126': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/786356000879761873/F22612DB451928DCA4344F3F125F5A8CE128A817/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Scheme. + GMNotes: '' + GUID: '024771' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Call to Order + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 45.581337 + posY: 1.51521659 + posZ: 55.96411 + rotX: 0.0217962228 + rotY: 270.018 + rotZ: 0.00204580254 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 312605 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3126': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/786356000879761873/F22612DB451928DCA4344F3F125F5A8CE128A817/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Scheme. + GMNotes: '' + GUID: 38256e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Call to Order + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 45.92286 + posY: 1.50916827 + posZ: 56.0439072 + rotX: 0.0136107309 + rotY: 270.046082 + rotZ: 0.008057649 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231814 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Curse. + GMNotes: '' + GUID: 81dc7a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Centuries of Secrets + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -21.0152721 + posY: 1.57281208 + posZ: -32.7783356 + rotX: 359.9176 + rotY: 269.977783 + rotZ: 0.01638736 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 312607 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3126': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/786356000879761873/F22612DB451928DCA4344F3F125F5A8CE128A817/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Scheme. + GMNotes: '' + GUID: 28d66c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Beneath the Lodge + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 45.68224 + posY: 1.5169822 + posZ: 55.38902 + rotX: 0.0147958156 + rotY: 270.073822 + rotZ: 0.009050958 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12120 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '121': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: 1921c5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ancient Evils + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 115.318665 + posY: 1.5414474 + posZ: 1.587292 + rotX: 359.989929 + rotY: 270.000031 + rotZ: 359.9876 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 312608 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3126': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/786356000879761873/F22612DB451928DCA4344F3F125F5A8CE128A817/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Scheme. + GMNotes: '' + GUID: '323982' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Mark of the Order + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 45.8122177 + posY: 1.4996053 + posZ: 55.3112869 + rotX: 0.013215567 + rotY: 270.036 + rotZ: -0.00218945043 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3625 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: df668b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Mysterious Chanting + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 99.2046661 + posY: 1.54923761 + posZ: 15.9180088 + rotX: 359.989929 + rotY: 270.0 + rotZ: 359.98764 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3623 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Cultist. + GMNotes: '' + GUID: 4072d7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Acolyte + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 99.0756 + posY: 1.55269325 + posZ: 16.03813 + rotX: 359.989929 + rotY: 270.0 + rotZ: 359.9876 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3625 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: 6f5b7b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Mysterious Chanting + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 98.78452 + posY: 1.40295327 + posZ: 16.366806 + rotX: 359.987427 + rotY: 269.999817 + rotZ: 359.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 312603 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3126': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/786356000879761873/F22612DB451928DCA4344F3F125F5A8CE128A817/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Cultist. Silver Twilight. + GMNotes: '' + GUID: 51bd26 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Knight of the Inner Circle + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 45.4807549 + posY: 1.51138783 + posZ: 55.3559532 + rotX: 0.007093775 + rotY: 270.07132 + rotZ: 0.00157490221 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 312601 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3126': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/786356000879761873/F22612DB451928DCA4344F3F125F5A8CE128A817/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Cultist. Silver Twilight. + GMNotes: '' + GUID: d47a01 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Cell Keeper + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 45.67595 + posY: 1.50168812 + posZ: 55.0495148 + rotX: 0.009487833 + rotY: 270.060852 + rotZ: 0.00471286848 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 312603 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3126': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/786356000879761873/F22612DB451928DCA4344F3F125F5A8CE128A817/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Cultist. Silver Twilight. + GMNotes: '' + GUID: '499347' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Knight of the Inner Circle + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 45.3978958 + posY: 1.52107108 + posZ: 55.82321 + rotX: 0.0117413532 + rotY: 270.062164 + rotZ: 0.00767201 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231812 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Scheme. + GMNotes: '' + GUID: 7870f6 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Mysteries of the Lodge + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -18.6118813 + posY: 1.71404207 + posZ: -32.3841057 + rotX: 359.91098 + rotY: 269.979034 + rotZ: 0.0195768736 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231814 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Curse. + GMNotes: '' + GUID: 0a13d0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Centuries of Secrets + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -20.54692 + posY: 1.60918021 + posZ: -33.3808479 + rotX: 359.9352 + rotY: 269.982361 + rotZ: 0.376713872 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231814 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Curse. + GMNotes: '' + GUID: 9cb625 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Centuries of Secrets + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -20.7263336 + posY: 1.754926 + posZ: -33.80658 + rotX: 0.0413828529 + rotY: 269.9769 + rotZ: 0.3666429 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3623 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Cultist. + GMNotes: '' + GUID: c70e63 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Acolyte + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 98.97962 + posY: 1.55247211 + posZ: 16.3414173 + rotX: 359.99057 + rotY: 269.9967 + rotZ: 359.984833 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3623 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Cultist. + GMNotes: '' + GUID: c70e63 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Acolyte + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 98.93172 + posY: 1.556378 + posZ: 15.9665985 + rotX: 359.989929 + rotY: 269.999969 + rotZ: 359.98764 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231813 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Curse. + GMNotes: '' + GUID: ab69b8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Evil Past + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -20.8834572 + posY: 1.89827907 + posZ: -33.5683937 + rotX: 0.110509835 + rotY: 269.976044 + rotZ: 0.334469885 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3628 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Obstacle. + GMNotes: '' + GUID: 9449d7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Locked Door + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 99.5096054 + posY: 1.40344727 + posZ: 13.9449472 + rotX: 359.987427 + rotY: 269.999969 + rotZ: 359.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3624 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Cultist. + GMNotes: '' + GUID: 159f90 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Wizard of the Order + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 98.45666 + posY: 1.55439174 + posZ: 16.9464512 + rotX: 1.20685 + rotY: 269.9761 + rotZ: 357.846649 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231812 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Scheme. + GMNotes: '' + GUID: 0eb939 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Mysteries of the Lodge + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -18.7109814 + posY: 1.56981552 + posZ: -32.18543 + rotX: 359.91922 + rotY: 269.979279 + rotZ: 0.0165627878 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 312607 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3126': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/786356000879761873/F22612DB451928DCA4344F3F125F5A8CE128A817/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Scheme. + GMNotes: '' + GUID: abf303 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Beneath the Lodge + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 45.6490021 + posY: 1.50323951 + posZ: 55.88405 + rotX: 0.02039161 + rotY: 270.062134 + rotZ: 0.00326434616 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12120 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '121': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: 61e841 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ancient Evils + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 114.991905 + posY: 1.59937644 + posZ: 1.31244183 + rotX: 1.97711754 + rotY: 270.070251 + rotZ: 359.990356 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231813 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Curse. + GMNotes: '' + GUID: 976fd8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Evil Past + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -20.7343235 + posY: 1.86165559 + posZ: -33.3503036 + rotX: 359.785339 + rotY: 269.9796 + rotZ: 0.07815084 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12120 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '121': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: e0f4c0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ancient Evils + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 115.309677 + posY: 1.40331125 + posZ: 1.5845021 + rotX: 359.987427 + rotY: 270.0 + rotZ: 359.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 312606 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3126': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/786356000879761873/F22612DB451928DCA4344F3F125F5A8CE128A817/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Scheme. + GMNotes: '' + GUID: b3da23 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Expulsion + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 45.99259 + posY: 1.5041101 + posZ: 55.5351257 + rotX: 0.00386153185 + rotY: 270.070923 + rotZ: 0.00110510457 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '121': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '3126': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/786356000879761873/F22612DB451928DCA4344F3F125F5A8CE128A817/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 3628 +- 312606 +- 312608 +- 312605 +- 312605 +- 231814 +- 312607 +- 12120 +- 312608 +- 3625 +- 3623 +- 3625 +- 312603 +- 312601 +- 312603 +- 231812 +- 231814 +- 231814 +- 3623 +- 3623 +- 231813 +- 3628 +- 3624 +- 231812 +- 312607 +- 12120 +- 231813 +- 12120 +- 312606 +Description: '' +GMNotes: '' +GUID: 8bae65 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Encounter deck +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.92770028 + posY: 1.76638055 + posZ: 5.75720072 + rotX: 359.919739 + rotY: 270.0 + rotZ: 180.016815 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 5 For the Greater Good a61b48/Card Lodge Catacombs 021478.yaml b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 5 For the Greater Good a61b48/Card Lodge Catacombs 021478.yaml new file mode 100644 index 000000000..365c1096f --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 5 For the Greater Good a61b48/Card Lodge Catacombs 021478.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 312909 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '3129': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/786356000879760156/63ACD954501B669BBDC2D64FAA3FFAE0BBEDFB7F/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/786356000879759384/E2705454B81312E1DE9058EE2389E6CD0018A169/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Lodge. Sancturm. +GMNotes: '' +GUID: 021478 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Lodge Catacombs +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -30.2243 + posY: 1.6975888 + posZ: 7.57 + rotX: 359.9201 + rotY: 270.0018 + rotZ: 0.0168736465 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 5 For the Greater Good a61b48/Card Lounge ccc01a.yaml b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 5 For the Greater Good a61b48/Card Lounge ccc01a.yaml new file mode 100644 index 000000000..1c81ae8f2 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 5 For the Greater Good a61b48/Card Lounge ccc01a.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 312906 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '3129': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/786356000879760156/63ACD954501B669BBDC2D64FAA3FFAE0BBEDFB7F/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/786356000879759384/E2705454B81312E1DE9058EE2389E6CD0018A169/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Lodge. +GMNotes: '' +GUID: ccc01a +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Lounge +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -30.2243 + posY: 1.69309235 + posZ: -7.70000124 + rotX: 359.9201 + rotY: 270.000427 + rotZ: 0.0168756675 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 5 For the Greater Good a61b48/Card Scenario faa49f.yaml b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 5 For the Greater Good a61b48/Card Scenario faa49f.yaml new file mode 100644 index 000000000..b22a576b3 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 5 For the Greater Good a61b48/Card Scenario faa49f.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 312400 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '3124': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/786356000879758511/CF3D368183597044860CA0BE0FE6A36024904675/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/786356000879757640/1B977B33065106178624452E8B37BC59D06CEC19/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: For the Greater Good +GMNotes: '' +GUID: faa49f +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Scenario +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.95580029 + posY: 1.65564787 + posZ: -10.4412012 + rotX: 359.919739 + rotY: 269.999969 + rotZ: 0.0168410372 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 5 For the Greater Good a61b48/Custom_Model_Bag Set-aside ff16db.yaml b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 5 For the Greater Good a61b48/Custom_Model_Bag Set-aside ff16db.yaml new file mode 100644 index 000000000..79b9c175d --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 5 For the Greater Good a61b48/Custom_Model_Bag Set-aside ff16db.yaml @@ -0,0 +1,60 @@ +Autoraise: true +ColorDiffuse: + b: 0.02148666 + g: 0.00100758043 + r: 0.02148666 +ContainedObjects: +- !include 'Custom_Model_Bag Set-aside ff16db/Card Summoned Beast 0f6a54.yaml' +- !include 'Custom_Model_Bag Set-aside ff16db/Card Nathan Wick 7e2ff5.yaml' +- !include 'Custom_Model_Bag Set-aside ff16db/Card August Lindquist d6fa34.yaml' +- !include 'Custom_Model_Bag Set-aside ff16db/Card Puzzle Box e79173.yaml' +- !include 'Custom_Model_Bag Set-aside ff16db/Deck Locations eba741.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: '' +GMNotes: '' +GUID: ff16db +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +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.6960007 + posY: 1.55831718 + posZ: 14.2787027 + rotX: 359.955139 + rotY: 224.998 + rotZ: 0.06867098 + scaleX: 2.0 + scaleY: 2.0 + scaleZ: 2.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 5 For the Greater Good a61b48/Custom_Model_Bag Set-aside ff16db/Card August Lindquist d6fa34.yaml b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 5 For the Greater Good a61b48/Custom_Model_Bag Set-aside ff16db/Card August Lindquist d6fa34.yaml new file mode 100644 index 000000000..6ead461af --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 5 For the Greater Good a61b48/Custom_Model_Bag Set-aside ff16db/Card August Lindquist d6fa34.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Elegant and Elusive +GMNotes: '' +GUID: d6fa34 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: August Lindquist +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 45.06623 + posY: 3.43073 + posZ: 75.7925339 + rotX: 0.0207968019 + rotY: 269.999878 + rotZ: 0.01679017 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 5 For the Greater Good a61b48/Custom_Model_Bag Set-aside ff16db/Card Nathan Wick 7e2ff5.yaml b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 5 For the Greater Good a61b48/Custom_Model_Bag Set-aside ff16db/Card Nathan Wick 7e2ff5.yaml new file mode 100644 index 000000000..9af3b2cd2 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 5 For the Greater Good a61b48/Custom_Model_Bag Set-aside ff16db/Card Nathan Wick 7e2ff5.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 312407 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '3124': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/786356000879758511/CF3D368183597044860CA0BE0FE6A36024904675/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/786356000879757640/1B977B33065106178624452E8B37BC59D06CEC19/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Master of Indoctrination +GMNotes: '' +GUID: 7e2ff5 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Nathan Wick +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.60985 + posY: 3.43086624 + posZ: 76.83246 + rotX: 0.02080699 + rotY: 270.0234 + rotZ: 0.016770862 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 5 For the Greater Good a61b48/Custom_Model_Bag Set-aside ff16db/Card Puzzle Box e79173.yaml b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 5 For the Greater Good a61b48/Custom_Model_Bag Set-aside ff16db/Card Puzzle Box e79173.yaml new file mode 100644 index 000000000..9b079a528 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 5 For the Greater Good a61b48/Custom_Model_Bag Set-aside ff16db/Card Puzzle Box e79173.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Mysterious Device +GMNotes: '' +GUID: e79173 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Puzzle Box +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.3272438 + posY: 3.41513848 + posZ: 76.60902 + rotX: 0.0209716149 + rotY: 269.999939 + rotZ: 0.0168484487 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 5 For the Greater Good a61b48/Custom_Model_Bag Set-aside ff16db/Card Summoned Beast 0f6a54.yaml b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 5 For the Greater Good a61b48/Custom_Model_Bag Set-aside ff16db/Card Summoned Beast 0f6a54.yaml new file mode 100644 index 000000000..7ff172667 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 5 For the Greater Good a61b48/Custom_Model_Bag Set-aside ff16db/Card Summoned Beast 0f6a54.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 312602 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '3126': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/786356000879761873/F22612DB451928DCA4344F3F125F5A8CE128A817/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: Monster. Silver Twilight. Elite. +GMNotes: '' +GUID: 0f6a54 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Summoned Beast +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.1109619 + posY: 3.41935182 + posZ: 76.14493 + rotX: 0.0209766664 + rotY: 270.0234 + rotZ: 0.01684997 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 5 For the Greater Good a61b48/Custom_Model_Bag Set-aside ff16db/Deck Locations eba741.yaml b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 5 For the Greater Good a61b48/Custom_Model_Bag Set-aside ff16db/Deck Locations eba741.yaml new file mode 100644 index 000000000..342e171f5 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 5 For the Greater Good a61b48/Custom_Model_Bag Set-aside ff16db/Deck Locations eba741.yaml @@ -0,0 +1,258 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 312912 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3129': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/786356000879760156/63ACD954501B669BBDC2D64FAA3FFAE0BBEDFB7F/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/786356000879759384/E2705454B81312E1DE9058EE2389E6CD0018A169/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Lodge. Sanctum. + GMNotes: '' + GUID: d76c9f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Inner Sanctum + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -36.77313 + posY: 1.70666313 + posZ: 7.569972 + rotX: 359.920624 + rotY: 269.999847 + rotZ: 0.0130288182 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 312911 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3129': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/786356000879760156/63ACD954501B669BBDC2D64FAA3FFAE0BBEDFB7F/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/786356000879759384/E2705454B81312E1DE9058EE2389E6CD0018A169/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Lodge. Sanctum. + GMNotes: '' + GUID: 4da6c3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Sanctum Doorway + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -36.7731857 + posY: 1.85651457 + posZ: 7.570001 + rotX: 359.910828 + rotY: 269.9998 + rotZ: 0.0123853553 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 312910 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3129': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/786356000879760156/63ACD954501B669BBDC2D64FAA3FFAE0BBEDFB7F/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/786356000879759384/E2705454B81312E1DE9058EE2389E6CD0018A169/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Lodge. Sanctum. + GMNotes: '' + GUID: 112a15 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Sanctum Doorway + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -36.7732048 + posY: 1.8740865 + posZ: 7.56998873 + rotX: 359.917938 + rotY: 269.999756 + rotZ: 0.0161033664 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 312907 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3129': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/786356000879760156/63ACD954501B669BBDC2D64FAA3FFAE0BBEDFB7F/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/786356000879759384/E2705454B81312E1DE9058EE2389E6CD0018A169/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Lodge. + GMNotes: '' + GUID: dcf02a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Vault + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -36.77333 + posY: 1.6999402 + posZ: -15.2800035 + rotX: 359.920532 + rotY: 269.997162 + rotZ: 0.0134736821 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 312908 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3129': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/786356000879760156/63ACD954501B669BBDC2D64FAA3FFAE0BBEDFB7F/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/786356000879759384/E2705454B81312E1DE9058EE2389E6CD0018A169/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Lodge. + GMNotes: '' + GUID: 5e3b52 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Library + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -36.7733269 + posY: 1.84977758 + posZ: -15.2799911 + rotX: 359.9311 + rotY: 269.9995 + rotZ: 0.00297404267 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '3129': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/786356000879760156/63ACD954501B669BBDC2D64FAA3FFAE0BBEDFB7F/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/786356000879759384/E2705454B81312E1DE9058EE2389E6CD0018A169/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 312912 +- 312911 +- 312910 +- 312907 +- 312908 +Description: '' +GMNotes: '' +GUID: eba741 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Locations +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 1.69642651 + posY: 3.72650981 + posZ: 14.2788391 + rotX: 359.948151 + rotY: 224.998062 + rotZ: 0.0583182424 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 5 For the Greater Good a61b48/Custom_Tile 58eefe.yaml b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 5 For the Greater Good a61b48/Custom_Tile 58eefe.yaml new file mode 100644 index 000000000..a1cccd8c0 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 5 For the Greater Good a61b48/Custom_Tile 58eefe.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 58eefe +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.3545 + posY: 1.6105032 + posZ: 2.10519981 + rotX: 0.0776257738 + rotY: 120.015007 + rotZ: 0.0253221821 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 5 For the Greater Good a61b48/Custom_Tile 6276bc.yaml b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 5 For the Greater Good a61b48/Custom_Tile 6276bc.yaml new file mode 100644 index 000000000..103e7b181 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 5 For the Greater Good a61b48/Custom_Tile 6276bc.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 6276bc +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.8667 + posY: 1.62057126 + posZ: 5.4575 + rotX: 359.922363 + rotY: 299.994 + rotZ: 359.9747 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 5 For the Greater Good a61b48/Custom_Tile 698fc7.yaml b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 5 For the Greater Good a61b48/Custom_Tile 698fc7.yaml new file mode 100644 index 000000000..27dff81b8 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 5 For the Greater Good a61b48/Custom_Tile 698fc7.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 698fc7 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Tile +Nickname: '' +Snap: false +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.6765 + posY: 1.6145066 + posZ: -0.0299000181 + rotX: 0.0167197026 + rotY: 180.108963 + rotZ: 0.07997131 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 5 For the Greater Good a61b48/Custom_Tile 7234af.yaml b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 5 For the Greater Good a61b48/Custom_Tile 7234af.yaml new file mode 100644 index 000000000..347ebe8ab --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 5 For the Greater Good a61b48/Custom_Tile 7234af.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 7234af +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.8742 + posY: 1.61729085 + posZ: -5.7185 + rotX: 0.0607671142 + rotY: 60.0127335 + rotZ: 359.945465 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 5 For the Greater Good a61b48/Custom_Tile c95e06.yaml b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 5 For the Greater Good a61b48/Custom_Tile c95e06.yaml new file mode 100644 index 000000000..32d832f96 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 5 For the Greater Good a61b48/Custom_Tile c95e06.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: c95e06 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.5114 + posY: 1.60942543 + posZ: -2.2982 + rotX: 0.0607621633 + rotY: 60.00757 + rotZ: 359.945465 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 5 For the Greater Good a61b48/Custom_Tile Cultist Key 604398.yaml b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 5 For the Greater Good a61b48/Custom_Tile Cultist Key 604398.yaml new file mode 100644 index 000000000..de9a9c92f --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 5 For the Greater Good a61b48/Custom_Tile Cultist Key 604398.yaml @@ -0,0 +1,42 @@ +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/VzhJJaH.png + WidthScale: 0.0 +Description: '' +GMNotes: '' +GUID: '604398' +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Tile +Nickname: Cultist Key +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -12.0499992 + posY: 1.60052359 + posZ: 7.5408 + rotX: 359.9201 + rotY: 269.989319 + rotZ: 0.0168809984 + scaleX: 0.81 + scaleY: 1.0 + scaleZ: 0.81 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 5 For the Greater Good a61b48/Custom_Tile Elder Key 137468.yaml b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 5 For the Greater Good a61b48/Custom_Tile Elder Key 137468.yaml new file mode 100644 index 000000000..8126e8e62 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 5 For the Greater Good a61b48/Custom_Tile Elder Key 137468.yaml @@ -0,0 +1,42 @@ +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: '' +GMNotes: '' +GUID: '137468' +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Tile +Nickname: Elder Key +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -12.0499 + posY: 1.59486735 + posZ: -11.6676 + rotX: 359.9201 + rotY: 270.0216 + rotZ: 0.0168362539 + scaleX: 0.81 + scaleY: 1.0 + scaleZ: 0.81 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 5 For the Greater Good a61b48/Custom_Tile For the Greater Good bbb70a.ttslua b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 5 For the Greater Good a61b48/Custom_Tile For the Greater Good bbb70a.ttslua new file mode 100644 index 000000000..0c455ba9f --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 5 For the Greater Good a61b48/Custom_Tile For the Greater Good bbb70a.ttslua @@ -0,0 +1,25 @@ +name = 'For the Greater Good' + +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 + +function standaloneClick() + Global.call('fillContainer', {object=self, key=name, mode='standalone'}) +end \ No newline at end of file diff --git a/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 5 For the Greater Good a61b48/Custom_Tile For the Greater Good bbb70a.yaml b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 5 For the Greater Good a61b48/Custom_Tile For the Greater Good bbb70a.yaml new file mode 100644 index 000000000..aa3b147ff --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 5 For the Greater Good a61b48/Custom_Tile For the Greater Good bbb70a.yaml @@ -0,0 +1,42 @@ +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: http://cloud-3.steamusercontent.com/ugc/949588657194710961/D864BCCCC1C811EC7F0AED69D1C30C678D3D9FC9/ + ImageURL: http://cloud-3.steamusercontent.com/ugc/965354846165100486/3DC8FCEF364B30758B09EF96AF9458F2B8E64D56/ + WidthScale: 0.0 +Description: click to set chaos token difficulty +GMNotes: '' +GUID: bbb70a +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Tile For the Greater Good bbb70a.ttslua' +LuaScriptState: '' +Name: Custom_Tile +Nickname: For the Greater Good +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.74610066 + posY: 1.58227813 + posZ: -15.0785007 + rotX: 359.919739 + rotY: 270.029633 + rotZ: 0.0167962946 + scaleX: 2.2 + scaleY: 1.0 + scaleZ: 2.2 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 5 For the Greater Good a61b48/Custom_Tile Skull Key 156d55.yaml b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 5 For the Greater Good a61b48/Custom_Tile Skull Key 156d55.yaml new file mode 100644 index 000000000..6e79ac95f --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 5 For the Greater Good a61b48/Custom_Tile Skull Key 156d55.yaml @@ -0,0 +1,42 @@ +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: '' +GMNotes: '' +GUID: 156d55 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Tile +Nickname: Skull Key +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -12.0499992 + posY: 1.60164452 + posZ: 11.3474007 + rotX: 359.9201 + rotY: 269.999329 + rotZ: 0.0168669969 + scaleX: 0.81 + scaleY: 1.0 + scaleZ: 0.81 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 5 For the Greater Good a61b48/Custom_Tile Tablet Key 167691.yaml b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 5 For the Greater Good a61b48/Custom_Tile Tablet Key 167691.yaml new file mode 100644 index 000000000..942a57e5a --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 5 For the Greater Good a61b48/Custom_Tile Tablet Key 167691.yaml @@ -0,0 +1,42 @@ +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/1plY463.png + WidthScale: 0.0 +Description: '' +GMNotes: '' +GUID: '167691' +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Tile +Nickname: Tablet Key +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -12.0500011 + posY: 1.595961 + posZ: -7.954401 + rotX: 359.9201 + rotY: 269.985535 + rotZ: 0.0168941543 + scaleX: 0.81 + scaleY: 1.0 + scaleZ: 0.81 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 5 For the Greater Good a61b48/Custom_Tile XXX bbb70a.ttslua b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 5 For the Greater Good a61b48/Custom_Tile XXX bbb70a.ttslua new file mode 100644 index 000000000..0c455ba9f --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 5 For the Greater Good a61b48/Custom_Tile XXX bbb70a.ttslua @@ -0,0 +1,25 @@ +name = 'For the Greater Good' + +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 + +function standaloneClick() + Global.call('fillContainer', {object=self, key=name, mode='standalone'}) +end \ No newline at end of file diff --git a/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 5 For the Greater Good a61b48/Custom_Tile XXX bbb70a.yaml b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 5 For the Greater Good a61b48/Custom_Tile XXX bbb70a.yaml new file mode 100644 index 000000000..cf821c8d0 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 5 For the Greater Good a61b48/Custom_Tile XXX bbb70a.yaml @@ -0,0 +1,42 @@ +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: http://cloud-3.steamusercontent.com/ugc/949588657194710961/D864BCCCC1C811EC7F0AED69D1C30C678D3D9FC9/ + ImageURL: http://cloud-3.steamusercontent.com/ugc/965354846165100486/3DC8FCEF364B30758B09EF96AF9458F2B8E64D56/ + WidthScale: 0.0 +Description: click to set chaos token difficulty +GMNotes: '' +GUID: bbb70a +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Tile XXX bbb70a.ttslua' +LuaScriptState: '' +Name: Custom_Tile +Nickname: XXX +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.74609971 + posY: 1.582278 + posZ: -15.0785027 + rotX: 359.919739 + rotY: 270.0307 + rotZ: 0.01679451 + scaleX: 2.2 + scaleY: 1.0 + scaleZ: 2.2 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 5 For the Greater Good a61b48/Deck Agenda deck d0f844.yaml b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 5 For the Greater Good a61b48/Deck Agenda deck d0f844.yaml new file mode 100644 index 000000000..056510eae --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 5 For the Greater Good a61b48/Deck Agenda deck d0f844.yaml @@ -0,0 +1,129 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 312302 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/786356000879758511/CF3D368183597044860CA0BE0FE6A36024904675/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/786356000879757640/1B977B33065106178624452E8B37BC59D06CEC19/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 2 + GMNotes: '' + GUID: 91d5c3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ends and Means + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 45.7921066 + posY: 1.35522616 + posZ: 57.9124527 + rotX: 0.00886662 + rotY: 180.016556 + rotZ: 359.978271 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 312301 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/786356000879758511/CF3D368183597044860CA0BE0FE6A36024904675/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/786356000879757640/1B977B33065106178624452E8B37BC59D06CEC19/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 1 + GMNotes: '' + GUID: 25ab0b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: "THE HIEROPHANT \xB7 V" + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 45.5433846 + posY: 1.50018764 + posZ: 58.1528854 + rotX: 359.983 + rotY: 180.051559 + rotZ: 359.9546 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '3123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/786356000879758511/CF3D368183597044860CA0BE0FE6A36024904675/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/786356000879757640/1B977B33065106178624452E8B37BC59D06CEC19/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 312302 +- 312301 +Description: '' +GMNotes: '' +GUID: d0f844 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Agenda deck +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.7246 + posY: 1.66397727 + posZ: 0.3733003 + rotX: 0.0168331563 + rotY: 180.001236 + rotZ: 0.08025831 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 6 Union and Disillusion 20f70a.ttslua b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 6 Union and Disillusion 20f70a.ttslua new file mode 100644 index 000000000..ed7a62e7d --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 6 Union and Disillusion 20f70a.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.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.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 \ No newline at end of file diff --git a/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 6 Union and Disillusion 20f70a.yaml b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 6 Union and Disillusion 20f70a.yaml new file mode 100644 index 000000000..037777ecc --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 6 Union and Disillusion 20f70a.yaml @@ -0,0 +1,82 @@ +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 6 Union and Disillusion 20f70a/Bag Jerome Davids 01b2f4.yaml' +- !include 'Custom_Model_Bag 6 Union and Disillusion 20f70a/Bag Choose the appropiate + act deck 15f544.yaml' +- !include 'Custom_Model_Bag 6 Union and Disillusion 20f70a/Card Miskatonic River + 2c3cbf.yaml' +- !include 'Custom_Model_Bag 6 Union and Disillusion 20f70a/Deck Encounter deck 308386.yaml' +- !include 'Custom_Model_Bag 6 Union and Disillusion 20f70a/Custom_Tile Union and + Disillusion 3fe126.yaml' +- !include 'Custom_Model_Bag 6 Union and Disillusion 20f70a/Bag Valentino Rivas 4d8a79.yaml' +- !include 'Custom_Model_Bag 6 Union and Disillusion 20f70a/Custom_Tile 7234af.yaml' +- !include 'Custom_Model_Bag 6 Union and Disillusion 20f70a/Deck Unvisited Isle 7cd1b4.yaml' +- !include 'Custom_Model_Bag 6 Union and Disillusion 20f70a/Card Scenario 976ab3.yaml' +- !include 'Custom_Model_Bag 6 Union and Disillusion 20f70a/Custom_Model_Bag Set-aside + a45247.yaml' +- !include 'Custom_Model_Bag 6 Union and Disillusion 20f70a/Bag Gavriella Mizrah a92959.yaml' +- !include 'Custom_Model_Bag 6 Union and Disillusion 20f70a/Card Forbidding Shore + c9aba5.yaml' +- !include 'Custom_Model_Bag 6 Union and Disillusion 20f70a/Notecard Choose the appropiate + Act deck de8bb6.yaml' +- !include 'Custom_Model_Bag 6 Union and Disillusion 20f70a/Bag Penny White df4773.yaml' +- !include 'Custom_Model_Bag 6 Union and Disillusion 20f70a/Custom_Tile e94e6a.yaml' +- !include 'Custom_Model_Bag 6 Union and Disillusion 20f70a/Deck Agenda deck f919fb.yaml' +- !include 'Custom_Model_Bag 6 Union and Disillusion 20f70a/Custom_Tile ff9ef7.yaml' +CustomMesh: + CastShadows: true + ColliderURL: '' + Convex: true + DiffuseURL: http://cloud-3.steamusercontent.com/ugc/786356000879748596/DA7C8528E79ECD42DF9410CCC3B43692F95B1853/ + MaterialIndex: 3 + MeshURL: https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj + NormalURL: '' + TypeIndex: 6 +Description: The Circle Undone +GMNotes: '' +GUID: 20f70a +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Model_Bag 6 Union and Disillusion 20f70a.ttslua' +LuaScriptState: '{"ml":{"01b2f4":{"lock":false,"pos":{"x":-12.3725,"y":1.4107,"z":-10.0935},"rot":{"x":359.9825,"y":359.5721,"z":359.9202}},"15f544":{"lock":false,"pos":{"x":0.6017,"y":1.3942,"z":-4.6511},"rot":{"x":359.9832,"y":-0.0043,"z":359.9197}},"2c3cbf":{"lock":false,"pos":{"x":-36.7731,"y":1.7045,"z":-0.0301},"rot":{"x":359.9201,"y":270.001,"z":0.0169}},"308386":{"lock":false,"pos":{"x":-3.9275,"y":1.8037,"z":5.757},"rot":{"x":359.9197,"y":270,"z":180.0168}},"3fe126":{"lock":false,"pos":{"x":-3.9971,"y":1.5826,"z":-15.0596},"rot":{"x":359.9197,"y":270.0005,"z":0.0168}},"4d8a79":{"lock":false,"pos":{"x":-12.0414,"y":1.4162,"z":10.1505},"rot":{"x":359.9826,"y":359.6253,"z":359.9201}},"7234af":{"lock":false,"pos":{"x":-33.7179,"y":1.6285,"z":0.059},"rot":{"x":359.9201,"y":269.9936,"z":0.0169}},"7cd1b4":{"lock":false,"pos":{"x":-12.0817,"y":1.6749,"z":13.617},"rot":{"x":359.9201,"y":270.0193,"z":0.0168}},"976ab3":{"lock":false,"pos":{"x":-3.9558,"y":1.6556,"z":-10.4412},"rot":{"x":359.9197,"y":269.9999,"z":0.0168}},"a45247":{"lock":false,"pos":{"x":1.6959,"y":1.5583,"z":14.2787},"rot":{"x":359.9551,"y":224.9981,"z":0.0687}},"a92959":{"lock":false,"pos":{"x":-12.2766,"y":1.4116,"z":-6.9025},"rot":{"x":359.9826,"y":359.6471,"z":359.9201}},"c9aba5":{"lock":false,"pos":{"x":-30.2243,"y":1.6954,"z":-0.03},"rot":{"x":359.9201,"y":270.0117,"z":0.0169}},"de8bb6":{"lock":false,"pos":{"x":-5.9501,"y":1.6583,"z":-4.9413},"rot":{"x":0.0803,"y":89.991,"z":359.9832}},"df4773":{"lock":false,"pos":{"x":-12.0606,"y":1.4153,"z":6.9461},"rot":{"x":359.9826,"y":359.6064,"z":359.9201}},"e94e6a":{"lock":false,"pos":{"x":-30.2243,"y":1.6248,"z":3.86},"rot":{"x":0.0169,"y":180.0048,"z":0.0799}},"f919fb":{"lock":false,"pos":{"x":-2.7246,"y":1.664,"z":0.3733},"rot":{"x":0.0168,"y":179.9999,"z":0.0803}},"ff9ef7":{"lock":false,"pos":{"x":-30.2243,"y":1.6225,"z":-3.83},"rot":{"x":0.0169,"y":180.0049,"z":0.0799}}}}' +MaterialIndex: -1 +MeshIndex: -1 +Name: Custom_Model_Bag +Nickname: '6: Union and Disillusion' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 12.250102 + posY: 1.45984793 + posZ: -15.5650015 + rotX: 359.920135 + rotY: 270.009216 + rotZ: 0.0168608166 + scaleX: 2.21 + scaleY: 0.46 + scaleZ: 2.42 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 6 Union and Disillusion 20f70a/Bag Choose the appropiate act deck 15f544.yaml b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 6 Union and Disillusion 20f70a/Bag Choose the appropiate act deck 15f544.yaml new file mode 100644 index 000000000..b6f2efe6e --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 6 Union and Disillusion 20f70a/Bag Choose the appropiate act deck 15f544.yaml @@ -0,0 +1,39 @@ +Autoraise: true +ColorDiffuse: + b: 0.0 + g: 0.0 + r: 0.0 +ContainedObjects: +- !include 'Bag Choose the appropiate act deck 15f544/Deck Act deck 4 46a22b.yaml' +- !include 'Bag Choose the appropiate act deck 15f544/Deck Act deck 3 95e124.yaml' +- !include 'Bag Choose the appropiate act deck 15f544/Deck Act deck 2 4bfab7.yaml' +- !include 'Bag Choose the appropiate act deck 15f544/Deck Act deck 1 352387.yaml' +Description: '' +GMNotes: '' +GUID: 15f544 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +MeshIndex: -1 +Name: Bag +Nickname: Choose the appropiate act deck +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 0.601700842 + posY: 1.39421773 + posZ: -4.6511 + rotX: 359.983154 + rotY: -0.00436139246 + rotZ: 359.919678 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 6 Union and Disillusion 20f70a/Bag Choose the appropiate act deck 15f544/Deck Act deck 1 352387.yaml b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 6 Union and Disillusion 20f70a/Bag Choose the appropiate act deck 15f544/Deck Act deck 1 352387.yaml new file mode 100644 index 000000000..609764b8d --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 6 Union and Disillusion 20f70a/Bag Choose the appropiate act deck 15f544/Deck Act deck 1 352387.yaml @@ -0,0 +1,215 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 312317 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/786356000879758511/CF3D368183597044860CA0BE0FE6A36024904675/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/786356000879757640/1B977B33065106178624452E8B37BC59D06CEC19/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 4 + GMNotes: '' + GUID: 8be145 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Binding Rite + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 35.28919 + posY: 1.50461233 + posZ: 86.5776749 + rotX: 0.03455867 + rotY: 179.992249 + rotZ: 359.97522 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 312313 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/786356000879758511/CF3D368183597044860CA0BE0FE6A36024904675/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/786356000879757640/1B977B33065106178624452E8B37BC59D06CEC19/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 3 + GMNotes: '' + GUID: ea642f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Beyond the Mist (v.i) + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 43.1273766 + posY: 1.51220691 + posZ: 86.5578461 + rotX: 0.011362901 + rotY: 180.0067 + rotZ: 359.972015 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 312312 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/786356000879758511/CF3D368183597044860CA0BE0FE6A36024904675/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/786356000879757640/1B977B33065106178624452E8B37BC59D06CEC19/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 2 + GMNotes: '' + GUID: 5a6ee0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Fated Souls + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 42.7906075 + posY: 1.51721013 + posZ: 87.14333 + rotX: 0.01583153 + rotY: 179.994324 + rotZ: 359.977234 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 312311 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/786356000879758511/CF3D368183597044860CA0BE0FE6A36024904675/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/786356000879757640/1B977B33065106178624452E8B37BC59D06CEC19/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 1 + GMNotes: '' + GUID: 105a09 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Unvisited Isle + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 42.752037 + posY: 1.52329528 + posZ: 86.70215 + rotX: 0.01787383 + rotY: 180.017426 + rotZ: 359.96228 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '3123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/786356000879758511/CF3D368183597044860CA0BE0FE6A36024904675/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/786356000879757640/1B977B33065106178624452E8B37BC59D06CEC19/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 312317 +- 312313 +- 312312 +- 312311 +Description: '' +GMNotes: '' +GUID: '352387' +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Act deck 1 +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 0.336339772 + posY: 3.73190331 + posZ: -4.35674524 + rotX: 359.7062 + rotY: 180.004379 + rotZ: 359.528473 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 6 Union and Disillusion 20f70a/Bag Choose the appropiate act deck 15f544/Deck Act deck 2 4bfab7.yaml b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 6 Union and Disillusion 20f70a/Bag Choose the appropiate act deck 15f544/Deck Act deck 2 4bfab7.yaml new file mode 100644 index 000000000..2b2520004 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 6 Union and Disillusion 20f70a/Bag Choose the appropiate act deck 15f544/Deck Act deck 2 4bfab7.yaml @@ -0,0 +1,215 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 312318 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/786356000879758511/CF3D368183597044860CA0BE0FE6A36024904675/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/786356000879757640/1B977B33065106178624452E8B37BC59D06CEC19/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 4 + GMNotes: '' + GUID: 69cb27 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Broken Rite + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 35.17768 + posY: 1.35963142 + posZ: 86.7354 + rotX: 0.0178930666 + rotY: 179.993759 + rotZ: 359.972076 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 312314 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/786356000879758511/CF3D368183597044860CA0BE0FE6A36024904675/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/786356000879757640/1B977B33065106178624452E8B37BC59D06CEC19/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 3 + GMNotes: '' + GUID: e2e22d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Beyond the Mist (v.ii) + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 13.8555021 + posY: 2.55597639 + posZ: -52.9200325 + rotX: 0.0168702248 + rotY: 180.0 + rotZ: 0.0798789 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 312312 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/786356000879758511/CF3D368183597044860CA0BE0FE6A36024904675/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/786356000879757640/1B977B33065106178624452E8B37BC59D06CEC19/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 2 + GMNotes: '' + GUID: 5a6ee0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Fated Souls + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 42.7906075 + posY: 1.51721013 + posZ: 87.14333 + rotX: 0.01583153 + rotY: 179.994324 + rotZ: 359.977234 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 312311 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/786356000879758511/CF3D368183597044860CA0BE0FE6A36024904675/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/786356000879757640/1B977B33065106178624452E8B37BC59D06CEC19/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 1 + GMNotes: '' + GUID: 105a09 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Unvisited Isle + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 42.752037 + posY: 1.52329528 + posZ: 86.70215 + rotX: 0.01787383 + rotY: 180.017426 + rotZ: 359.96228 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '3123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/786356000879758511/CF3D368183597044860CA0BE0FE6A36024904675/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/786356000879757640/1B977B33065106178624452E8B37BC59D06CEC19/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 312318 +- 312314 +- 312312 +- 312311 +Description: '' +GMNotes: '' +GUID: 4bfab7 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Act deck 2 +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 0.998232961 + posY: 3.71798468 + posZ: 0.3140087 + rotX: 0.0168787017 + rotY: 179.993851 + rotZ: 0.07989697 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 6 Union and Disillusion 20f70a/Bag Choose the appropiate act deck 15f544/Deck Act deck 3 95e124.yaml b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 6 Union and Disillusion 20f70a/Bag Choose the appropiate act deck 15f544/Deck Act deck 3 95e124.yaml new file mode 100644 index 000000000..33f81d3c7 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 6 Union and Disillusion 20f70a/Bag Choose the appropiate act deck 15f544/Deck Act deck 3 95e124.yaml @@ -0,0 +1,215 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 312318 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/786356000879758511/CF3D368183597044860CA0BE0FE6A36024904675/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/786356000879757640/1B977B33065106178624452E8B37BC59D06CEC19/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 4 + GMNotes: '' + GUID: 69cb27 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Broken Rite + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 35.17768 + posY: 1.35963142 + posZ: 86.7354 + rotX: 0.0178930666 + rotY: 179.993759 + rotZ: 359.972076 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 312315 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/786356000879758511/CF3D368183597044860CA0BE0FE6A36024904675/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/786356000879757640/1B977B33065106178624452E8B37BC59D06CEC19/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 3 + GMNotes: '' + GUID: 7a14df + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Beyond the Mist (v.iii) + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 35.1743622 + posY: 1.50851762 + posZ: 86.41296 + rotX: 0.01734771 + rotY: 180.002411 + rotZ: 359.974762 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 312312 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/786356000879758511/CF3D368183597044860CA0BE0FE6A36024904675/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/786356000879757640/1B977B33065106178624452E8B37BC59D06CEC19/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 2 + GMNotes: '' + GUID: 5a6ee0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Fated Souls + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 42.7906075 + posY: 1.51721013 + posZ: 87.14333 + rotX: 0.01583153 + rotY: 179.994324 + rotZ: 359.977234 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 312311 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/786356000879758511/CF3D368183597044860CA0BE0FE6A36024904675/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/786356000879757640/1B977B33065106178624452E8B37BC59D06CEC19/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 1 + GMNotes: '' + GUID: 105a09 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Unvisited Isle + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 42.752037 + posY: 1.52329528 + posZ: 86.70215 + rotX: 0.01787383 + rotY: 180.017426 + rotZ: 359.96228 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '3123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/786356000879758511/CF3D368183597044860CA0BE0FE6A36024904675/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/786356000879757640/1B977B33065106178624452E8B37BC59D06CEC19/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 312318 +- 312315 +- 312312 +- 312311 +Description: '' +GMNotes: '' +GUID: 95e124 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Act deck 3 +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 0.998252451 + posY: 3.73006868 + posZ: -4.334121 + rotX: 359.6625 + rotY: 179.99382 + rotZ: 0.652902544 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 6 Union and Disillusion 20f70a/Bag Choose the appropiate act deck 15f544/Deck Act deck 4 46a22b.yaml b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 6 Union and Disillusion 20f70a/Bag Choose the appropiate act deck 15f544/Deck Act deck 4 46a22b.yaml new file mode 100644 index 000000000..c82f120b5 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 6 Union and Disillusion 20f70a/Bag Choose the appropiate act deck 15f544/Deck Act deck 4 46a22b.yaml @@ -0,0 +1,215 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 312318 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/786356000879758511/CF3D368183597044860CA0BE0FE6A36024904675/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/786356000879757640/1B977B33065106178624452E8B37BC59D06CEC19/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 4 + GMNotes: '' + GUID: 69cb27 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Broken Rite + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 35.17768 + posY: 1.35963142 + posZ: 86.7354 + rotX: 0.0178930666 + rotY: 179.993759 + rotZ: 359.972076 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 312316 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/786356000879758511/CF3D368183597044860CA0BE0FE6A36024904675/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/786356000879757640/1B977B33065106178624452E8B37BC59D06CEC19/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 3 + GMNotes: '' + GUID: 43e32c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Beyond the Mist (v.iv) + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 35.54324 + posY: 1.52220082 + posZ: 86.34647 + rotX: 0.0235369857 + rotY: 179.995529 + rotZ: 359.978729 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 312312 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/786356000879758511/CF3D368183597044860CA0BE0FE6A36024904675/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/786356000879757640/1B977B33065106178624452E8B37BC59D06CEC19/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 2 + GMNotes: '' + GUID: 5a6ee0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Fated Souls + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 42.7906075 + posY: 1.51721013 + posZ: 87.14333 + rotX: 0.01583153 + rotY: 179.994324 + rotZ: 359.977234 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 312311 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/786356000879758511/CF3D368183597044860CA0BE0FE6A36024904675/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/786356000879757640/1B977B33065106178624452E8B37BC59D06CEC19/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 1 + GMNotes: '' + GUID: 105a09 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Unvisited Isle + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 42.752037 + posY: 1.52329528 + posZ: 86.70215 + rotX: 0.01787383 + rotY: 180.017426 + rotZ: 359.96228 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '3123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/786356000879758511/CF3D368183597044860CA0BE0FE6A36024904675/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/786356000879757640/1B977B33065106178624452E8B37BC59D06CEC19/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 312318 +- 312316 +- 312312 +- 312311 +Description: '' +GMNotes: '' +GUID: 46a22b +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Act deck 4 +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 0.23602137 + posY: 3.72991681 + posZ: -5.026141 + rotX: 0.331751645 + rotY: 179.979309 + rotZ: 359.427246 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 6 Union and Disillusion 20f70a/Bag Gavriella Mizrah a92959.yaml b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 6 Union and Disillusion 20f70a/Bag Gavriella Mizrah a92959.yaml new file mode 100644 index 000000000..58e6d108b --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 6 Union and Disillusion 20f70a/Bag Gavriella Mizrah a92959.yaml @@ -0,0 +1,37 @@ +Autoraise: true +ColorDiffuse: + b: 0.8205576 + g: 0.0185841657 + r: 0.09311653 +ContainedObjects: +- !include 'Bag Gavriella Mizrah a92959/Card Gavriella Mizrah 2237f4.yaml' +- !include 'Bag Gavriella Mizrah a92959/Card Gavriella Mizrah 367d1d.yaml' +Description: Check your campaign log to see which assets are used for this scenario +GMNotes: '' +GUID: a92959 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +MeshIndex: -1 +Name: Bag +Nickname: Gavriella Mizrah +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -12.276598 + posY: 1.41155243 + posZ: -6.902501 + rotX: 359.982635 + rotY: 359.647064 + rotZ: 359.920135 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 6 Union and Disillusion 20f70a/Bag Gavriella Mizrah a92959/Card Gavriella Mizrah 2237f4.yaml b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 6 Union and Disillusion 20f70a/Bag Gavriella Mizrah a92959/Card Gavriella Mizrah 2237f4.yaml new file mode 100644 index 000000000..008881c3d --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 6 Union and Disillusion 20f70a/Bag Gavriella Mizrah a92959/Card Gavriella Mizrah 2237f4.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Not Going Down That Easily +GMNotes: '' +GUID: 2237f4 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Gavriella Mizrah +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 13.76362 + posY: 3.382562 + posZ: 61.98181 + rotX: 359.6189 + rotY: 269.970642 + rotZ: 3.68352914 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 6 Union and Disillusion 20f70a/Bag Gavriella Mizrah a92959/Card Gavriella Mizrah 367d1d.yaml b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 6 Union and Disillusion 20f70a/Bag Gavriella Mizrah a92959/Card Gavriella Mizrah 367d1d.yaml new file mode 100644 index 000000000..d9ff1428f --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 6 Union and Disillusion 20f70a/Bag Gavriella Mizrah a92959/Card Gavriella Mizrah 367d1d.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 312419 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '3124': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/786356000879758511/CF3D368183597044860CA0BE0FE6A36024904675/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/786356000879757640/1B977B33065106178624452E8B37BC59D06CEC19/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: You're Next +GMNotes: '' +GUID: 367d1d +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Gavriella Mizrah +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 13.7222319 + posY: 3.42867041 + posZ: 62.23854 + rotX: 359.938263 + rotY: 269.987762 + rotZ: 0.606381536 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 6 Union and Disillusion 20f70a/Bag Jerome Davids 01b2f4.yaml b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 6 Union and Disillusion 20f70a/Bag Jerome Davids 01b2f4.yaml new file mode 100644 index 000000000..de1d67505 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 6 Union and Disillusion 20f70a/Bag Jerome Davids 01b2f4.yaml @@ -0,0 +1,37 @@ +Autoraise: true +ColorDiffuse: + b: 0.0485465154 + g: 0.6238528 + r: 0.7961671 +ContainedObjects: +- !include 'Bag Jerome Davids 01b2f4/Card Jerome Davids d99735.yaml' +- !include 'Bag Jerome Davids 01b2f4/Card Jerome Davids 03d161.yaml' +Description: Check your campaign log to see which assets are used for this scenario +GMNotes: '' +GUID: 01b2f4 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +MeshIndex: -1 +Name: Bag +Nickname: Jerome Davids +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -12.3724995 + posY: 1.41074646 + posZ: -10.0935 + rotX: 359.9825 + rotY: 359.572144 + rotZ: 359.920166 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 6 Union and Disillusion 20f70a/Bag Jerome Davids 01b2f4/Card Jerome Davids 03d161.yaml b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 6 Union and Disillusion 20f70a/Bag Jerome Davids 01b2f4/Card Jerome Davids 03d161.yaml new file mode 100644 index 000000000..5d2cc37bc --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 6 Union and Disillusion 20f70a/Bag Jerome Davids 01b2f4/Card Jerome Davids 03d161.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 312420 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '3124': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/786356000879758511/CF3D368183597044860CA0BE0FE6A36024904675/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/786356000879757640/1B977B33065106178624452E8B37BC59D06CEC19/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Starved for Answers +GMNotes: '' +GUID: 03d161 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Jerome Davids +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 16.59595 + posY: 3.42349625 + posZ: 61.9471664 + rotX: 0.130632967 + rotY: 270.000671 + rotZ: 0.860997736 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 6 Union and Disillusion 20f70a/Bag Jerome Davids 01b2f4/Card Jerome Davids d99735.yaml b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 6 Union and Disillusion 20f70a/Bag Jerome Davids 01b2f4/Card Jerome Davids d99735.yaml new file mode 100644 index 000000000..59e979bd4 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 6 Union and Disillusion 20f70a/Bag Jerome Davids 01b2f4/Card Jerome Davids d99735.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: In Way Over His Head +GMNotes: '' +GUID: d99735 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Jerome Davids +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 16.5156631 + posY: 3.39582157 + posZ: 62.1980438 + rotX: 1.05251372 + rotY: 270.039734 + rotZ: 2.95118141 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 6 Union and Disillusion 20f70a/Bag Penny White df4773.yaml b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 6 Union and Disillusion 20f70a/Bag Penny White df4773.yaml new file mode 100644 index 000000000..4e0af23ba --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 6 Union and Disillusion 20f70a/Bag Penny White df4773.yaml @@ -0,0 +1,37 @@ +Autoraise: true +ColorDiffuse: + b: 0.05449549 + g: 0.05449549 + r: 0.5487805 +ContainedObjects: +- !include 'Bag Penny White df4773/Card Penny White 73bccf.yaml' +- !include 'Bag Penny White df4773/Card Penny White 31bd61.yaml' +Description: Check your campaign log to see which assets are used for this scenario +GMNotes: '' +GUID: df4773 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +MeshIndex: -1 +Name: Bag +Nickname: Penny White +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -12.0605984 + posY: 1.415331 + posZ: 6.94610262 + rotX: 359.982574 + rotY: 359.6063 + rotZ: 359.920135 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 6 Union and Disillusion 20f70a/Bag Penny White df4773/Card Penny White 31bd61.yaml b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 6 Union and Disillusion 20f70a/Bag Penny White df4773/Card Penny White 31bd61.yaml new file mode 100644 index 000000000..f0bce0d27 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 6 Union and Disillusion 20f70a/Bag Penny White df4773/Card Penny White 31bd61.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 312421 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '3124': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/786356000879758511/CF3D368183597044860CA0BE0FE6A36024904675/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/786356000879757640/1B977B33065106178624452E8B37BC59D06CEC19/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Tragic Loss +GMNotes: '' +GUID: 31bd61 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Penny White +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 9.474563 + posY: 3.424348 + posZ: 59.85384 + rotX: 359.617157 + rotY: 270.02243 + rotZ: 0.496872425 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 6 Union and Disillusion 20f70a/Bag Penny White df4773/Card Penny White 73bccf.yaml b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 6 Union and Disillusion 20f70a/Bag Penny White df4773/Card Penny White 73bccf.yaml new file mode 100644 index 000000000..af11006a8 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 6 Union and Disillusion 20f70a/Bag Penny White df4773/Card Penny White 73bccf.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: The Nightmare is Over +GMNotes: '' +GUID: 73bccf +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Penny White +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 9.043777 + posY: 3.4052 + posZ: 59.8786736 + rotX: 0.194419473 + rotY: 270.02478 + rotZ: 2.24903536 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 6 Union and Disillusion 20f70a/Bag Valentino Rivas 4d8a79.yaml b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 6 Union and Disillusion 20f70a/Bag Valentino Rivas 4d8a79.yaml new file mode 100644 index 000000000..42039a6b2 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 6 Union and Disillusion 20f70a/Bag Valentino Rivas 4d8a79.yaml @@ -0,0 +1,37 @@ +Autoraise: true +ColorDiffuse: + b: 0.112605818 + g: 0.433797479 + r: 0.149620354 +ContainedObjects: +- !include 'Bag Valentino Rivas 4d8a79/Card Valentino Rivas 726d1d.yaml' +- !include 'Bag Valentino Rivas 4d8a79/Card Valentino Rivas 723cb3.yaml' +Description: Check your campaign log to see which assets are used for this scenario +GMNotes: '' +GUID: 4d8a79 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +MeshIndex: -1 +Name: Bag +Nickname: Valentino Rivas +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -12.041398 + posY: 1.41624629 + posZ: 10.1505013 + rotX: 359.9826 + rotY: 359.625458 + rotZ: 359.920135 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 6 Union and Disillusion 20f70a/Bag Valentino Rivas 4d8a79/Card Valentino Rivas 723cb3.yaml b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 6 Union and Disillusion 20f70a/Bag Valentino Rivas 4d8a79/Card Valentino Rivas 723cb3.yaml new file mode 100644 index 000000000..01df65cf2 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 6 Union and Disillusion 20f70a/Bag Valentino Rivas 4d8a79/Card Valentino Rivas 723cb3.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 312422 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '3124': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/786356000879758511/CF3D368183597044860CA0BE0FE6A36024904675/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/786356000879757640/1B977B33065106178624452E8B37BC59D06CEC19/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Ripped Asunder +GMNotes: '' +GUID: 723cb3 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Valentino Rivas +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.5905542 + posY: 3.4228456 + posZ: 62.9285431 + rotX: 359.715485 + rotY: 269.9952 + rotZ: 359.283234 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 6 Union and Disillusion 20f70a/Bag Valentino Rivas 4d8a79/Card Valentino Rivas 726d1d.yaml b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 6 Union and Disillusion 20f70a/Bag Valentino Rivas 4d8a79/Card Valentino Rivas 726d1d.yaml new file mode 100644 index 000000000..4ba5864d7 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 6 Union and Disillusion 20f70a/Bag Valentino Rivas 4d8a79/Card Valentino Rivas 726d1d.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Took You Long Enough +GMNotes: '' +GUID: 726d1d +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Valentino Rivas +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.1851606 + posY: 3.3869102 + posZ: 62.9403229 + rotX: 0.170986146 + rotY: 269.985718 + rotZ: 356.4469 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 6 Union and Disillusion 20f70a/Card Forbidding Shore c9aba5.yaml b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 6 Union and Disillusion 20f70a/Card Forbidding Shore c9aba5.yaml new file mode 100644 index 000000000..324766248 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 6 Union and Disillusion 20f70a/Card Forbidding Shore c9aba5.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 312914 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '3129': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/786356000879760156/63ACD954501B669BBDC2D64FAA3FFAE0BBEDFB7F/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/786356000879759384/E2705454B81312E1DE9058EE2389E6CD0018A169/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Woods. +GMNotes: '' +GUID: c9aba5 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Forbidding Shore +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -30.2243 + posY: 1.69535077 + posZ: -0.03000033 + rotX: 359.9201 + rotY: 270.011658 + rotZ: 0.0168599971 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 6 Union and Disillusion 20f70a/Card Miskatonic River 2c3cbf.yaml b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 6 Union and Disillusion 20f70a/Card Miskatonic River 2c3cbf.yaml new file mode 100644 index 000000000..d8ea186e8 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 6 Union and Disillusion 20f70a/Card Miskatonic River 2c3cbf.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 312913 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '3129': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/786356000879760156/63ACD954501B669BBDC2D64FAA3FFAE0BBEDFB7F/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/786356000879759384/E2705454B81312E1DE9058EE2389E6CD0018A169/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: River. +GMNotes: '' +GUID: 2c3cbf +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Miskatonic River +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -36.7731 + posY: 1.70448267 + posZ: -0.0301005617 + rotX: 359.9201 + rotY: 270.001038 + rotZ: 0.0168748442 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 6 Union and Disillusion 20f70a/Card Scenario 976ab3.yaml b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 6 Union and Disillusion 20f70a/Card Scenario 976ab3.yaml new file mode 100644 index 000000000..4a61e093c --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 6 Union and Disillusion 20f70a/Card Scenario 976ab3.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 312408 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '3124': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/786356000879758511/CF3D368183597044860CA0BE0FE6A36024904675/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/786356000879757640/1B977B33065106178624452E8B37BC59D06CEC19/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Union and Disillusion +GMNotes: '' +GUID: 976ab3 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Scenario +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.95580029 + posY: 1.65564787 + posZ: -10.4412012 + rotX: 359.919739 + rotY: 269.999817 + rotZ: 0.0168412179 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 6 Union and Disillusion 20f70a/Custom_Model_Bag Set-aside a45247.yaml b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 6 Union and Disillusion 20f70a/Custom_Model_Bag Set-aside a45247.yaml new file mode 100644 index 000000000..4f56d57a6 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 6 Union and Disillusion 20f70a/Custom_Model_Bag Set-aside a45247.yaml @@ -0,0 +1,62 @@ +Autoraise: true +ColorDiffuse: + b: 0.02148666 + g: 0.00100758043 + r: 0.02148666 +ContainedObjects: +- !include "Custom_Model_Bag Set-aside a45247/Deck Anette\u2019s Coven bd372e.yaml" +- !include 'Custom_Model_Bag Set-aside a45247/Deck Silver Twilight Lodge 747a12.yaml' +- !include 'Custom_Model_Bag Set-aside a45247/Deck The Watcher 28374b.yaml' +- !include 'Custom_Model_Bag Set-aside a45247/Card Watcher''s Gaze 940982.yaml' +- !include 'Custom_Model_Bag Set-aside a45247/Card Josef Meiger ffedcd.yaml' +- !include 'Custom_Model_Bag Set-aside a45247/Card Anette Mason 845563.yaml' +- !include 'Custom_Model_Bag Set-aside a45247/Card The Geist-Trap bcd556.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: '' +GMNotes: '' +GUID: a45247 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +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.69590068 + posY: 1.55831766 + posZ: 14.2787018 + rotX: 359.955139 + rotY: 224.997986 + rotZ: 0.06867291 + scaleX: 2.0 + scaleY: 2.0 + scaleZ: 2.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 6 Union and Disillusion 20f70a/Custom_Model_Bag Set-aside a45247/Card Anette Mason 845563.yaml b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 6 Union and Disillusion 20f70a/Custom_Model_Bag Set-aside a45247/Card Anette Mason 845563.yaml new file mode 100644 index 000000000..defae2949 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 6 Union and Disillusion 20f70a/Custom_Model_Bag Set-aside a45247/Card Anette Mason 845563.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 231800 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: The High Priestess +GMNotes: '' +GUID: '845563' +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Anette Mason +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 25.5652676 + posY: 3.40047717 + posZ: 60.1692467 + rotX: 0.0208106264 + rotY: 269.99408 + rotZ: 0.0167708788 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 6 Union and Disillusion 20f70a/Custom_Model_Bag Set-aside a45247/Card Josef Meiger ffedcd.yaml b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 6 Union and Disillusion 20f70a/Custom_Model_Bag Set-aside a45247/Card Josef Meiger ffedcd.yaml new file mode 100644 index 000000000..7f80b611d --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 6 Union and Disillusion 20f70a/Custom_Model_Bag Set-aside a45247/Card Josef Meiger ffedcd.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 231921 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/829135524527100186/0D63305581E65C95F286CCA4902B7DE796D815BD/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524527103742/0C4DB40889420CFE47BE897944621ABF2ECA52F9/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Lodge Host +GMNotes: '' +GUID: ffedcd +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Josef Meiger +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 25.42768 + posY: 3.41823053 + posZ: 57.0940857 + rotX: 0.0207847822 + rotY: 270.0282 + rotZ: 0.016788546 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 6 Union and Disillusion 20f70a/Custom_Model_Bag Set-aside a45247/Card The Geist-Trap bcd556.yaml b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 6 Union and Disillusion 20f70a/Custom_Model_Bag Set-aside a45247/Card The Geist-Trap bcd556.yaml new file mode 100644 index 000000000..fb868ed76 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 6 Union and Disillusion 20f70a/Custom_Model_Bag Set-aside a45247/Card The Geist-Trap bcd556.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 312921 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '3129': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/786356000879760156/63ACD954501B669BBDC2D64FAA3FFAE0BBEDFB7F/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/786356000879759384/E2705454B81312E1DE9058EE2389E6CD0018A169/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Woods. Spectral. +GMNotes: '' +GUID: bcd556 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: The Geist-Trap +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 16.3543873 + posY: 2.99721336 + posZ: -25.0456238 + rotX: 359.920135 + rotY: 270.000153 + rotZ: 0.0168761238 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 6 Union and Disillusion 20f70a/Custom_Model_Bag Set-aside a45247/Card Watcher's Gaze 940982.yaml b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 6 Union and Disillusion 20f70a/Custom_Model_Bag Set-aside a45247/Card Watcher's Gaze 940982.yaml new file mode 100644 index 000000000..674e11ed7 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 6 Union and Disillusion 20f70a/Custom_Model_Bag Set-aside a45247/Card Watcher's Gaze 940982.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 312621 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '3126': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/786356000879761873/F22612DB451928DCA4344F3F125F5A8CE128A817/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: Curse. +GMNotes: '' +GUID: '940982' +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Watcher's Gaze +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 24.7874584 + posY: 3.41788054 + posZ: 57.00284 + rotX: 0.0208195858 + rotY: 270.01297 + rotZ: 0.0167733133 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 6 Union and Disillusion 20f70a/Custom_Model_Bag Set-aside a45247/Deck Anette’s Coven bd372e.yaml b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 6 Union and Disillusion 20f70a/Custom_Model_Bag Set-aside a45247/Deck Anette’s Coven bd372e.yaml new file mode 100644 index 000000000..478ae2bc2 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 6 Union and Disillusion 20f70a/Custom_Model_Bag Set-aside a45247/Deck Anette’s Coven bd372e.yaml @@ -0,0 +1,215 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 231806 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Witch. + GMNotes: '' + GUID: 326f11 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Priestess of the Coven + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -25.8414345 + posY: 1.57860494 + posZ: -36.132618 + rotX: 359.919647 + rotY: 269.974 + rotZ: 0.0165877342 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231805 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Witch. + GMNotes: '' + GUID: c35966 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Coven Initiate + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -25.6442871 + posY: 1.72278082 + posZ: -36.0347443 + rotX: 359.911224 + rotY: 269.974 + rotZ: 0.0136959022 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231805 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Witch. + GMNotes: '' + GUID: 6f2c2e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Coven Initiate + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -25.7267475 + posY: 1.74028778 + posZ: -36.1106224 + rotX: 359.918823 + rotY: 269.9739 + rotZ: 0.0168967526 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231805 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Witch. + GMNotes: '' + GUID: 367d03 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Coven Initiate + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -26.0635834 + posY: 1.72707784 + posZ: -35.83386 + rotX: 359.920868 + rotY: 269.973969 + rotZ: 0.0147350542 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 231806 +- 231805 +- 231805 +- 231805 +Description: '' +GMNotes: '' +GUID: bd372e +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: "Anette\u2019s Coven" +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 26.0301323 + posY: 3.40631747 + posZ: 59.986618 + rotX: 0.00703197345 + rotY: 269.99115 + rotZ: 359.1912 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 6 Union and Disillusion 20f70a/Custom_Model_Bag Set-aside a45247/Deck Silver Twilight Lodge 747a12.yaml b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 6 Union and Disillusion 20f70a/Custom_Model_Bag Set-aside a45247/Deck Silver Twilight Lodge 747a12.yaml new file mode 100644 index 000000000..187a1a7e9 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 6 Union and Disillusion 20f70a/Custom_Model_Bag Set-aside a45247/Deck Silver Twilight Lodge 747a12.yaml @@ -0,0 +1,301 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 231812 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Scheme. + GMNotes: '' + GUID: 0eb939 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Mysteries of the Lodge + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -18.7109814 + posY: 1.56981552 + posZ: -32.18543 + rotX: 359.91922 + rotY: 269.979279 + rotZ: 0.0165627878 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231812 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Scheme. + GMNotes: '' + GUID: 7870f6 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Mysteries of the Lodge + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -18.6118813 + posY: 1.71404207 + posZ: -32.3841057 + rotX: 359.91098 + rotY: 269.979034 + rotZ: 0.0195768736 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231810 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Cultist. Silver Twilight. + GMNotes: '' + GUID: 408a82 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Lodge Neophyte + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -18.5851078 + posY: 1.73144269 + posZ: -32.35143 + rotX: 359.919037 + rotY: 269.979156 + rotZ: 0.01716643 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231810 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Cultist. Silver Twilight. + GMNotes: '' + GUID: '525275' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Lodge Neophyte + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -18.3490829 + posY: 1.71755159 + posZ: -31.918066 + rotX: 359.918579 + rotY: 269.9797 + rotZ: 0.0158215724 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231810 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Cultist. Silver Twilight. + GMNotes: '' + GUID: 8dac94 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Lodge Neophyte + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -18.6574612 + posY: 1.71596491 + posZ: -31.9956455 + rotX: 359.918976 + rotY: 269.979736 + rotZ: 0.0163928568 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231811 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Cultist. Silver Twilight. + GMNotes: '' + GUID: 3761ce + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Keeper of Secrets + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -18.7752514 + posY: 1.71879411 + posZ: -32.00056 + rotX: 359.919342 + rotY: 269.979553 + rotZ: 0.0157596618 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 231812 +- 231812 +- 231810 +- 231810 +- 231810 +- 231811 +Description: '' +GMNotes: '' +GUID: 747a12 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Silver Twilight Lodge +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 26.1715622 + posY: 3.4023025 + posZ: 63.1447678 + rotX: 0.0208224747 + rotY: 269.980743 + rotZ: 0.0167681612 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 6 Union and Disillusion 20f70a/Custom_Model_Bag Set-aside a45247/Deck The Watcher 28374b.yaml b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 6 Union and Disillusion 20f70a/Custom_Model_Bag Set-aside a45247/Deck The Watcher 28374b.yaml new file mode 100644 index 000000000..a4150f261 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 6 Union and Disillusion 20f70a/Custom_Model_Bag Set-aside a45247/Deck The Watcher 28374b.yaml @@ -0,0 +1,172 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 231802 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Power. Spectral. + GMNotes: '' + GUID: f798c8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Watcher's Grasp + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -27.8545532 + posY: 1.58170176 + posZ: -34.8676262 + rotX: 359.915649 + rotY: 269.974121 + rotZ: 0.01525554 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231802 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Power. Spectral. + GMNotes: '' + GUID: f92f1e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Watcher's Grasp + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -27.9526443 + posY: 1.72608125 + posZ: -34.6397629 + rotX: 359.9233 + rotY: 269.9745 + rotZ: 0.00772151956 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231801 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: You Are Its Prey + GMNotes: '' + GUID: a1eb9b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Spectral Watcher + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -27.4475632 + posY: 1.74305177 + posZ: -34.8419075 + rotX: 359.9185 + rotY: 269.974243 + rotZ: 0.0167756584 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 231802 +- 231802 +- 231801 +Description: '' +GMNotes: '' +GUID: 28374b +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: The Watcher +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 26.355526 + posY: 3.41626024 + posZ: 56.5081444 + rotX: 359.664368 + rotY: 269.9748 + rotZ: 0.0141816773 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 6 Union and Disillusion 20f70a/Custom_Tile 7234af.yaml b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 6 Union and Disillusion 20f70a/Custom_Tile 7234af.yaml new file mode 100644 index 000000000..476cfc78d --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 6 Union and Disillusion 20f70a/Custom_Tile 7234af.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 7234af +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.7179 + posY: 1.628535 + posZ: 0.05899978 + rotX: 359.9201 + rotY: 269.99353 + rotZ: 0.0169086326 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 6 Union and Disillusion 20f70a/Custom_Tile e94e6a.yaml b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 6 Union and Disillusion 20f70a/Custom_Tile e94e6a.yaml new file mode 100644 index 000000000..5f4a7c60b --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 6 Union and Disillusion 20f70a/Custom_Tile e94e6a.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: e94e6a +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.62478256 + posZ: 3.86000061 + rotX: 0.0168653019 + rotY: 180.004608 + rotZ: 0.0799400955 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 6 Union and Disillusion 20f70a/Custom_Tile ff9ef7.yaml b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 6 Union and Disillusion 20f70a/Custom_Tile ff9ef7.yaml new file mode 100644 index 000000000..62c4ecdd0 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 6 Union and Disillusion 20f70a/Custom_Tile ff9ef7.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: ff9ef7 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.62251818 + posZ: -3.83000016 + rotX: 0.0168652274 + rotY: 180.004684 + rotZ: 0.07994083 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 6 Union and Disillusion 20f70a/Custom_Tile Union and Disillusion 3fe126.ttslua b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 6 Union and Disillusion 20f70a/Custom_Tile Union and Disillusion 3fe126.ttslua new file mode 100644 index 000000000..0c455ba9f --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 6 Union and Disillusion 20f70a/Custom_Tile Union and Disillusion 3fe126.ttslua @@ -0,0 +1,25 @@ +name = 'For the Greater Good' + +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 + +function standaloneClick() + Global.call('fillContainer', {object=self, key=name, mode='standalone'}) +end \ No newline at end of file diff --git a/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 6 Union and Disillusion 20f70a/Custom_Tile Union and Disillusion 3fe126.yaml b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 6 Union and Disillusion 20f70a/Custom_Tile Union and Disillusion 3fe126.yaml new file mode 100644 index 000000000..1477b204b --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 6 Union and Disillusion 20f70a/Custom_Tile Union and Disillusion 3fe126.yaml @@ -0,0 +1,42 @@ +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: http://cloud-3.steamusercontent.com/ugc/949588657194710961/D864BCCCC1C811EC7F0AED69D1C30C678D3D9FC9/ + ImageURL: http://cloud-3.steamusercontent.com/ugc/965354846165100486/3DC8FCEF364B30758B09EF96AF9458F2B8E64D56/ + WidthScale: 0.0 +Description: click to set chaos token difficulty +GMNotes: '' +GUID: 3fe126 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Tile Union and Disillusion 3fe126.ttslua' +LuaScriptState: '' +Name: Custom_Tile +Nickname: Union and Disillusion +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.99709988 + posY: 1.58263516 + posZ: -15.0596037 + rotX: 359.919739 + rotY: 270.000549 + rotZ: 0.0168370251 + scaleX: 2.2 + scaleY: 1.0 + scaleZ: 2.2 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 6 Union and Disillusion 20f70a/Deck Agenda deck f919fb.yaml b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 6 Union and Disillusion 20f70a/Deck Agenda deck f919fb.yaml new file mode 100644 index 000000000..42bd6e246 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 6 Union and Disillusion 20f70a/Deck Agenda deck f919fb.yaml @@ -0,0 +1,129 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 312310 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/786356000879758511/CF3D368183597044860CA0BE0FE6A36024904675/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/786356000879757640/1B977B33065106178624452E8B37BC59D06CEC19/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 2 + GMNotes: '' + GUID: abace6 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Crossroads of Fate + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 44.3959923 + posY: 1.36092937 + posZ: 79.4062958 + rotX: 0.0140304007 + rotY: 179.994614 + rotZ: 359.979431 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 312309 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/786356000879758511/CF3D368183597044860CA0BE0FE6A36024904675/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/786356000879757640/1B977B33065106178624452E8B37BC59D06CEC19/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 1 + GMNotes: '' + GUID: 90788e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: "THE LOVERS \xB7 VI" + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 43.9007072 + posY: 1.5056318 + posZ: 79.3353958 + rotX: 0.00339584588 + rotY: 180.0137 + rotZ: 359.959167 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '3123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/786356000879758511/CF3D368183597044860CA0BE0FE6A36024904675/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/786356000879757640/1B977B33065106178624452E8B37BC59D06CEC19/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 312310 +- 312309 +Description: '' +GMNotes: '' +GUID: f919fb +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Agenda deck +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.72459984 + posY: 1.66397727 + posZ: 0.373300523 + rotX: 0.0168352332 + rotY: 179.999878 + rotZ: 0.0802578256 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 6 Union and Disillusion 20f70a/Deck Encounter deck 308386.yaml b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 6 Union and Disillusion 20f70a/Deck Encounter deck 308386.yaml new file mode 100644 index 000000000..4914c9737 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 6 Union and Disillusion 20f70a/Deck Encounter deck 308386.yaml @@ -0,0 +1,1562 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 231823 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Omen. Spectral. + GMNotes: '' + GUID: fbcb9f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Fate of All Fools + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -23.46502 + posY: 2.16774321 + posZ: -34.8072357 + rotX: 0.232217044 + rotY: 270.777466 + rotZ: 353.199249 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231816 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Spectral. + GMNotes: '' + GUID: c9136e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Shadow Hound + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -24.9589443 + posY: 1.57623374 + posZ: -40.001133 + rotX: 359.919617 + rotY: 269.9781 + rotZ: 0.0166504774 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231816 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Spectral. + GMNotes: '' + GUID: 9d53c1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Shadow Hound + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -24.7281628 + posY: 1.7203182 + posZ: -40.06545 + rotX: 359.911 + rotY: 269.9779 + rotZ: 0.0166180339 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231821 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. Spectral. + GMNotes: '' + GUID: 3c04e0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Shapes in the Mist + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -24.9579411 + posY: 1.72431993 + posZ: -29.8048172 + rotX: 359.8922 + rotY: 269.971619 + rotZ: 0.06810118 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231820 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. Spectral. + GMNotes: '' + GUID: 278e46 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Realm of Torment + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -25.91995 + posY: 1.77833688 + posZ: -29.84826 + rotX: 359.884155 + rotY: 269.9732 + rotZ: 0.074736394 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231822 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. Spectral. + GMNotes: '' + GUID: 43ba03 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Terror in the Night + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -24.27985 + posY: 1.99979043 + posZ: -34.2781525 + rotX: 359.187378 + rotY: 270.910339 + rotZ: 355.236023 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 312615 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3126': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/786356000879761873/F22612DB451928DCA4344F3F125F5A8CE128A817/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Creature. Spectral. + GMNotes: '' + GUID: 0f6a54 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Spectral Raven + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 13.5409679 + posY: 1.46492875 + posZ: 66.74556 + rotX: 0.02031056 + rotY: 270.011963 + rotZ: 0.01745984 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231823 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Omen. Spectral. + GMNotes: '' + GUID: ef132d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Fate of All Fools + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -24.7152367 + posY: 1.91512489 + posZ: -32.59262 + rotX: 359.910583 + rotY: 269.364441 + rotZ: 341.912537 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12121 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '121': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: b78c3b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Crypt Chill + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 114.196693 + posY: 1.5660888 + posZ: 0.6905602 + rotX: 0.678696752 + rotY: 270.054779 + rotZ: 1.15300965 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 312618 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3126': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/786356000879761873/F22612DB451928DCA4344F3F125F5A8CE128A817/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: '292724' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Psychopomp's Song + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 13.7520781 + posY: 1.50085175 + posZ: 66.91246 + rotX: 0.018156765 + rotY: 270.0284 + rotZ: 0.02139155 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 312619 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3126': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/786356000879761873/F22612DB451928DCA4344F3F125F5A8CE128A817/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: d4452d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Death Approaches + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 13.6781693 + posY: 1.34609175 + posZ: 66.53277 + rotX: 0.0244889967 + rotY: 270.024231 + rotZ: 0.01303638 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 312617 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3126': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/786356000879761873/F22612DB451928DCA4344F3F125F5A8CE128A817/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: 1f2790 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Eager for Death + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 13.738122 + posY: 1.49504566 + posZ: 66.4728546 + rotX: 0.016593812 + rotY: 270.0216 + rotZ: 0.0190968849 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231817 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Omen. Spectral. + GMNotes: '' + GUID: c4c440 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Whispers in the Dark + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -25.3439846 + posY: 1.72281778 + posZ: -40.31694 + rotX: 359.918823 + rotY: 269.9783 + rotZ: 0.01890598 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12120 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '121': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: 1921c5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ancient Evils + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 115.318665 + posY: 1.5414474 + posZ: 1.587292 + rotX: 359.989929 + rotY: 270.000031 + rotZ: 359.9876 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12122 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '121': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: '356046' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Obscuring Fog + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 114.345848 + posY: 1.40365446 + posZ: 1.09680057 + rotX: 359.987427 + rotY: 270.0 + rotZ: 359.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231823 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Omen. Spectral. + GMNotes: '' + GUID: 717c42 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Fate of All Fools + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -24.6707478 + posY: 1.76058781 + posZ: -33.23441 + rotX: 359.465271 + rotY: 269.459351 + rotZ: 9.029153 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 312616 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3126': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/786356000879761873/F22612DB451928DCA4344F3F125F5A8CE128A817/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Creature. + GMNotes: '' + GUID: '582874' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Whippoorwill + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 13.6381521 + posY: 1.53795457 + posZ: 66.5653152 + rotX: 0.02065301 + rotY: 270.030853 + rotZ: 0.01686186 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 312620 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3126': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/786356000879761873/F22612DB451928DCA4344F3F125F5A8CE128A817/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Curse. + GMNotes: '' + GUID: d21848 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Marked for Death + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 13.6993036 + posY: 1.49622345 + posZ: 67.3393555 + rotX: 0.0255488418 + rotY: 270.0217 + rotZ: 359.961548 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231817 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Omen. Spectral. + GMNotes: '' + GUID: aa8c0e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Whispers in the Dark + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -24.812706 + posY: 1.72420788 + posZ: -39.9615822 + rotX: 359.9189 + rotY: 269.9785 + rotZ: 0.0168172251 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12122 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '121': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: 03a265 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Obscuring Fog + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 114.314957 + posY: 1.54512763 + posZ: 0.6048646 + rotX: 359.989929 + rotY: 270.0 + rotZ: 359.98764 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 312616 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3126': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/786356000879761873/F22612DB451928DCA4344F3F125F5A8CE128A817/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Creature. + GMNotes: '' + GUID: '582874' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Whippoorwill + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 13.764946 + posY: 1.49348664 + posZ: 66.5689 + rotX: 0.0188208539 + rotY: 270.023376 + rotZ: 0.0156058017 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231822 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. Spectral. + GMNotes: '' + GUID: 4f41b0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Terror in the Night + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -24.3842 + posY: 2.1039958 + posZ: -34.9055138 + rotX: 359.182831 + rotY: 270.902466 + rotZ: 355.1978 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 312619 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3126': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/786356000879761873/F22612DB451928DCA4344F3F125F5A8CE128A817/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: a81e3d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Death Approaches + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 13.7743082 + posY: 1.49132657 + posZ: 66.9497757 + rotX: 0.0142956963 + rotY: 270.002075 + rotZ: 359.971527 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 312616 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3126': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/786356000879761873/F22612DB451928DCA4344F3F125F5A8CE128A817/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Creature. + GMNotes: '' + GUID: '582874' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Whippoorwill + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 13.7430582 + posY: 1.50304949 + posZ: 66.25444 + rotX: 0.0196000263 + rotY: 270.01767 + rotZ: 0.01730376 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231820 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. Spectral. + GMNotes: '' + GUID: e49187 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Realm of Torment + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -25.5189228 + posY: 1.92383051 + posZ: -29.7425785 + rotX: 359.8803 + rotY: 269.977753 + rotZ: 0.07589612 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12120 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '121': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: e0f4c0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ancient Evils + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 115.309677 + posY: 1.40331125 + posZ: 1.5845021 + rotX: 359.987427 + rotY: 270.0 + rotZ: 359.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 312618 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3126': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/786356000879761873/F22612DB451928DCA4344F3F125F5A8CE128A817/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: '292724' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Psychopomp's Song + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 13.55829 + posY: 1.50713491 + posZ: 66.40654 + rotX: 0.0186886359 + rotY: 270.019684 + rotZ: 0.0154543091 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231815 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Spectral. + GMNotes: '' + GUID: d32fa0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Nether Mist. + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -24.8214874 + posY: 1.73793507 + posZ: -39.8119354 + rotX: 359.9189 + rotY: 269.9784 + rotZ: 0.0163416639 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 312617 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3126': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/786356000879761873/F22612DB451928DCA4344F3F125F5A8CE128A817/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: 1f2790 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Eager for Death + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 13.7001686 + posY: 1.50878441 + posZ: 66.88676 + rotX: 0.0180376209 + rotY: 270.022552 + rotZ: 0.015583 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 312615 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3126': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/786356000879761873/F22612DB451928DCA4344F3F125F5A8CE128A817/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Creature. Spectral. + GMNotes: '' + GUID: 0f6a54 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Spectral Raven + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 13.6192122 + posY: 1.47448981 + posZ: 66.46063 + rotX: 0.0176389478 + rotY: 270.019257 + rotZ: 0.0141896484 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12121 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '121': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: fb311c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Crypt Chill + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 114.522324 + posY: 1.55249166 + posZ: 0.8631874 + rotX: 359.9873 + rotY: 270.023346 + rotZ: 359.9829 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12120 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '121': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: 61e841 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ancient Evils + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 114.991905 + posY: 1.59937644 + posZ: 1.31244183 + rotX: 1.97711754 + rotY: 270.070251 + rotZ: 359.990356 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231822 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. Spectral. + GMNotes: '' + GUID: 1a350a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Terror in the Night + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -23.6618786 + posY: 2.18380141 + posZ: -35.4214439 + rotX: 359.156219 + rotY: 270.890381 + rotZ: 355.0201 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231821 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. Spectral. + GMNotes: '' + GUID: 47147f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Shapes in the Mist + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -25.974844 + posY: 1.58076048 + posZ: -29.1853924 + rotX: 359.916321 + rotY: 269.977448 + rotZ: 0.01572173 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 312620 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3126': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/786356000879761873/F22612DB451928DCA4344F3F125F5A8CE128A817/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Curse. + GMNotes: '' + GUID: d21848 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Marked for Death + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 13.7586489 + posY: 1.4931128 + posZ: 67.25514 + rotX: 0.014992889 + rotY: 270.0251 + rotZ: -0.0006061943 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '121': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '3126': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/786356000879761873/F22612DB451928DCA4344F3F125F5A8CE128A817/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 231823 +- 231816 +- 231816 +- 231821 +- 231820 +- 231822 +- 312615 +- 231823 +- 12121 +- 312618 +- 312619 +- 312617 +- 231817 +- 12120 +- 12122 +- 231823 +- 312616 +- 312620 +- 231817 +- 12122 +- 312616 +- 231822 +- 312619 +- 312616 +- 231820 +- 12120 +- 312618 +- 231815 +- 312617 +- 312615 +- 12121 +- 12120 +- 231822 +- 231821 +- 312620 +Description: '' +GMNotes: '' +GUID: '308386' +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Encounter deck +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.927512 + posY: 1.79835689 + posZ: 5.75700426 + rotX: 359.919739 + rotY: 270.000061 + rotZ: 180.016815 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 6 Union and Disillusion 20f70a/Deck Unvisited Isle 7cd1b4.yaml b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 6 Union and Disillusion 20f70a/Deck Unvisited Isle 7cd1b4.yaml new file mode 100644 index 000000000..0fc3d438d --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 6 Union and Disillusion 20f70a/Deck Unvisited Isle 7cd1b4.yaml @@ -0,0 +1,302 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 312915 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3129': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/786356000879760156/63ACD954501B669BBDC2D64FAA3FFAE0BBEDFB7F/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/786356000879759384/E2705454B81312E1DE9058EE2389E6CD0018A169/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Woods. + GMNotes: '' + GUID: b6bad1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Unvisited Isle + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 6.32896566 + posY: 1.59139073 + posZ: 52.1738 + rotX: 0.00671885163 + rotY: 270.0194 + rotZ: 359.819183 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 312917 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3129': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/786356000879760156/63ACD954501B669BBDC2D64FAA3FFAE0BBEDFB7F/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/786356000879759384/E2705454B81312E1DE9058EE2389E6CD0018A169/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Woods. + GMNotes: '' + GUID: '763808' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Unvisited Isle + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 6.326119 + posY: 1.38597572 + posZ: 51.5215569 + rotX: 0.0243220236 + rotY: 269.999329 + rotZ: 359.895142 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 312920 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3129': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/786356000879760156/63ACD954501B669BBDC2D64FAA3FFAE0BBEDFB7F/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/786356000879759384/E2705454B81312E1DE9058EE2389E6CD0018A169/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Woods. + GMNotes: '' + GUID: d3d507 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Unvisited Isle + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 6.12983 + posY: 1.78647959 + posZ: 51.7469177 + rotX: 0.000309893163 + rotY: 269.998474 + rotZ: 359.853333 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 312918 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3129': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/786356000879760156/63ACD954501B669BBDC2D64FAA3FFAE0BBEDFB7F/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/786356000879759384/E2705454B81312E1DE9058EE2389E6CD0018A169/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Woods. + GMNotes: '' + GUID: 0e7c75 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Unvisited Isle + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 6.1658144 + posY: 1.53217626 + posZ: 51.3674545 + rotX: 0.008162117 + rotY: 270.015137 + rotZ: 359.852234 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 312919 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3129': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/786356000879760156/63ACD954501B669BBDC2D64FAA3FFAE0BBEDFB7F/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/786356000879759384/E2705454B81312E1DE9058EE2389E6CD0018A169/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Woods. + GMNotes: '' + GUID: 7b8b0d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Unvisited Isle + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 6.269921 + posY: 1.64109087 + posZ: 51.53916 + rotX: 0.01828617 + rotY: 269.993164 + rotZ: 359.8429 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 312916 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3129': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/786356000879760156/63ACD954501B669BBDC2D64FAA3FFAE0BBEDFB7F/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/786356000879759384/E2705454B81312E1DE9058EE2389E6CD0018A169/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Woods. + GMNotes: '' + GUID: 0b9471 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Unvisited Isle + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -12.4932623 + posY: 1.82444286 + posZ: 13.5781155 + rotX: 359.938 + rotY: 270.003754 + rotZ: 0.01362878 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '3129': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/786356000879760156/63ACD954501B669BBDC2D64FAA3FFAE0BBEDFB7F/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/786356000879759384/E2705454B81312E1DE9058EE2389E6CD0018A169/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 312915 +- 312917 +- 312920 +- 312918 +- 312919 +- 312916 +Description: Shuffle and draw two random cards and put them into play. Set the remaining + locations aside. +GMNotes: '' +GUID: 7cd1b4 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Unvisited Isle +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -12.0816994 + posY: 1.67493558 + posZ: 13.617 + rotX: 359.9201 + rotY: 270.019257 + rotZ: 0.0168498326 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 6 Union and Disillusion 20f70a/Notecard Choose the appropiate Act deck de8bb6.yaml b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 6 Union and Disillusion 20f70a/Notecard Choose the appropiate Act deck de8bb6.yaml new file mode 100644 index 000000000..f8903f7c7 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 6 Union and Disillusion 20f70a/Notecard Choose the appropiate Act deck de8bb6.yaml @@ -0,0 +1,41 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +Description: 'Deck 1: Investigators sided with the Lodge + + Deck 2: Investigators sided with the Coven, decveived the Lodge AND were inducted + into the Circle + + Deck 3: If the above is NOT true, investigators sided with the Coven and at least + TWO of the following are true: deceiving the Lodge, hiding knowledge of the Coven, + hid mementos + + Deck 4: None of the above is true, sided with Coven' +GMNotes: '' +GUID: de8bb6 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Notecard +Nickname: Choose the appropiate Act deck +Snap: false +Sticky: true +Tooltip: true +Transform: + posX: -5.952036 + posY: 1.61604857 + posZ: -4.94174147 + rotX: 359.6874 + rotY: 89.96019 + rotZ: 1.09442353 + scaleX: 0.8 + scaleY: 1.0 + scaleZ: 0.8 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 7 In the Clutches of Chaos e4ea5f.ttslua b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 7 In the Clutches of Chaos e4ea5f.ttslua new file mode 100644 index 000000000..ed7a62e7d --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 7 In the Clutches of Chaos e4ea5f.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.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.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 \ No newline at end of file diff --git a/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 7 In the Clutches of Chaos e4ea5f.yaml b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 7 In the Clutches of Chaos e4ea5f.yaml new file mode 100644 index 000000000..2076de463 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 7 In the Clutches of Chaos e4ea5f.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 7 In the Clutches of Chaos e4ea5f/Custom_Model_Bag Set-aside + a45247.yaml' +- !include 'Custom_Model_Bag 7 In the Clutches of Chaos e4ea5f/Bag Anette Mason is + posessed by evil d14543.yaml' +- !include 'Custom_Model_Bag 7 In the Clutches of Chaos e4ea5f/Bag Carl Sanford possesses + the secrets of the universe 92c6fc.yaml' +- !include 'Custom_Model_Bag 7 In the Clutches of Chaos e4ea5f/Card Scenario 863a02.yaml' +- !include 'Custom_Model_Bag 7 In the Clutches of Chaos e4ea5f/Custom_Tile In the + Clutches of Chaos e0709b.yaml' +- !include 'Custom_Model_Bag 7 In the Clutches of Chaos e4ea5f/Card Merchant District + bed0da.yaml' +- !include 'Custom_Model_Bag 7 In the Clutches of Chaos e4ea5f/Card Rivertown db4b20.yaml' +- !include 'Custom_Model_Bag 7 In the Clutches of Chaos e4ea5f/Card Rivertown 92ee68.yaml' +- !include 'Custom_Model_Bag 7 In the Clutches of Chaos e4ea5f/Custom_Tile 90d5ec.yaml' +- !include 'Custom_Model_Bag 7 In the Clutches of Chaos e4ea5f/Card Merchant District + b568b8.yaml' +- !include 'Custom_Model_Bag 7 In the Clutches of Chaos e4ea5f/Custom_Tile 6e8e5f.yaml' +- !include 'Custom_Model_Bag 7 In the Clutches of Chaos e4ea5f/Custom_Tile df634c.yaml' +- !include 'Custom_Model_Bag 7 In the Clutches of Chaos e4ea5f/Custom_Tile 1594ed.yaml' +- !include 'Custom_Model_Bag 7 In the Clutches of Chaos e4ea5f/Card Southside e7f5fa.yaml' +- !include 'Custom_Model_Bag 7 In the Clutches of Chaos e4ea5f/Card Southside c898a0.yaml' +- !include 'Custom_Model_Bag 7 In the Clutches of Chaos e4ea5f/Custom_Tile cfb2b2.yaml' +- !include 'Custom_Model_Bag 7 In the Clutches of Chaos e4ea5f/Card Uptown 9484e9.yaml' +- !include 'Custom_Model_Bag 7 In the Clutches of Chaos e4ea5f/Card Uptown 441006.yaml' +- !include 'Custom_Model_Bag 7 In the Clutches of Chaos e4ea5f/Custom_Tile cbaad5.yaml' +- !include 'Custom_Model_Bag 7 In the Clutches of Chaos e4ea5f/Custom_Tile 12965b.yaml' +- !include 'Custom_Model_Bag 7 In the Clutches of Chaos e4ea5f/Card French Hill fc9d97.yaml' +- !include 'Custom_Model_Bag 7 In the Clutches of Chaos e4ea5f/Card French Hill 6ed2ae.yaml' +- !include 'Custom_Model_Bag 7 In the Clutches of Chaos e4ea5f/Custom_Tile c0fa29.yaml' +- !include 'Custom_Model_Bag 7 In the Clutches of Chaos e4ea5f/Custom_Tile 7234af.yaml' +- !include 'Custom_Model_Bag 7 In the Clutches of Chaos e4ea5f/Card South Church 3d2a8a.yaml' +- !include 'Custom_Model_Bag 7 In the Clutches of Chaos e4ea5f/Card South Church 1a0ad2.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/784110538847461760/43BADDB501C7E037F3FAADABFDCD34E3C9D47B89/ + MaterialIndex: 3 + MeshURL: https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj + NormalURL: '' + TypeIndex: 6 +Description: The Circle Undone +GMNotes: '' +GUID: e4ea5f +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Model_Bag 7 In the Clutches of Chaos e4ea5f.ttslua' +LuaScriptState: '{"ml":{"12965b":{"lock":false,"pos":{"x":-30.2241,"y":1.6225,"z":-3.8301},"rot":{"x":0.0169,"y":179.9986,"z":0.0799}},"1594ed":{"lock":false,"pos":{"x":-27.2924,"y":1.618,"z":-5.2924},"rot":{"x":0.0445,"y":44.9547,"z":359.9315}},"1a0ad2":{"lock":false,"pos":{"x":-38.2207,"y":1.7544,"z":-0.0155},"rot":{"x":359.9212,"y":270.0304,"z":0.0163}},"3d2a8a":{"lock":false,"pos":{"x":-36.773,"y":1.7045,"z":-0.0302},"rot":{"x":359.9201,"y":270.0073,"z":0.0165}},"441006":{"lock":false,"pos":{"x":-31.6734,"y":1.7475,"z":7.5569},"rot":{"x":359.9212,"y":270.01,"z":0.0163}},"6e8e5f":{"lock":false,"pos":{"x":-27.3701,"y":1.6203,"z":2.2377},"rot":{"x":0.0443,"y":44.8402,"z":359.932}},"6ed2ae":{"lock":false,"pos":{"x":-31.87,"y":1.8355,"z":-7.634},"rot":{"x":5.0678,"y":269.9626,"z":-0.0005}},"7234af":{"lock":false,"pos":{"x":-33.4917,"y":1.6282,"z":-0.0792},"rot":{"x":359.9201,"y":270.0307,"z":0.0169}},"863a02":{"lock":false,"pos":{"x":-3.9558,"y":1.6585,"z":-10.4412},"rot":{"x":359.9197,"y":269.9999,"z":180.0168}},"90d5ec":{"lock":false,"pos":{"x":-27.3204,"y":1.6213,"z":5.6251},"rot":{"x":0.0684,"y":135.0042,"z":0.0445}},"92c6fc":{"lock":false,"pos":{"x":1.6714,"y":1.3937,"z":-1.2871},"rot":{"x":0.0803,"y":89.9995,"z":359.9831}},"92ee68":{"lock":false,"pos":{"x":-25.3881,"y":1.8293,"z":-3.8495},"rot":{"x":1.4532,"y":270.2057,"z":0.0193}},"9484e9":{"lock":false,"pos":{"x":-30.2242,"y":1.6976,"z":7.5699},"rot":{"x":359.9201,"y":270.0033,"z":0.0165}},"a45247":{"lock":false,"pos":{"x":1.6961,"y":1.5583,"z":14.2789},"rot":{"x":359.9551,"y":224.9937,"z":0.0687}},"b568b8":{"lock":false,"pos":{"x":-25.4783,"y":1.8296,"z":3.8649},"rot":{"x":1.3807,"y":270.1292,"z":0.0172}},"bed0da":{"lock":false,"pos":{"x":-23.6764,"y":1.6874,"z":3.8606},"rot":{"x":359.9207,"y":270.0094,"z":0.0173}},"c0fa29":{"lock":false,"pos":{"x":-30.2242,"y":1.6203,"z":-11.51},"rot":{"x":0.0169,"y":179.9988,"z":0.0799}},"c898a0":{"lock":false,"pos":{"x":-30.2226,"y":1.6954,"z":-0.0309},"rot":{"x":359.9212,"y":270.0031,"z":0.0202}},"cbaad5":{"lock":false,"pos":{"x":-30.2242,"y":1.627,"z":11.46},"rot":{"x":0.0169,"y":179.9987,"z":0.0799}},"cfb2b2":{"lock":false,"pos":{"x":-30.2243,"y":1.6248,"z":3.86},"rot":{"x":0.0169,"y":179.9987,"z":0.0799}},"d14543":{"lock":false,"pos":{"x":1.6333,"y":1.3946,"z":1.5694},"rot":{"x":0.0803,"y":89.9994,"z":359.9831}},"db4b20":{"lock":false,"pos":{"x":-23.6765,"y":1.6851,"z":-3.83},"rot":{"x":359.9207,"y":270.0726,"z":0.018}},"df634c":{"lock":false,"pos":{"x":-27.337,"y":1.6189,"z":-2.4198},"rot":{"x":0.0684,"y":134.9535,"z":0.0449}},"e0709b":{"lock":false,"pos":{"x":-3.4161,"y":1.5819,"z":-14.8962},"rot":{"x":359.9197,"y":270.0004,"z":0.0168}},"e7f5fa":{"lock":false,"pos":{"x":-31.7585,"y":1.8433,"z":-0.1191},"rot":{"x":359.9598,"y":270.0691,"z":0.0159}},"fc9d97":{"lock":false,"pos":{"x":-30.2435,"y":1.6931,"z":-7.6975},"rot":{"x":359.9205,"y":269.9935,"z":0.0176}}}}' +MaterialIndex: -1 +MeshIndex: -1 +Name: Custom_Model_Bag +Nickname: '7: In the Clutches of Chaos' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 12.2499018 + posY: 1.45757461 + posZ: -23.2860012 + rotX: 359.920135 + rotY: 270.004883 + rotZ: 0.0168670248 + scaleX: 2.21 + scaleY: 0.46 + scaleZ: 2.42 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 7 In the Clutches of Chaos e4ea5f/Bag Anette Mason is posessed by evil d14543.ttslua b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 7 In the Clutches of Chaos e4ea5f/Bag Anette Mason is posessed by evil d14543.ttslua new file mode 100644 index 000000000..4acf9ea11 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 7 In the Clutches of Chaos e4ea5f/Bag Anette Mason is posessed by evil d14543.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 Circle Undone 61e777/Custom_Model_Bag 7 In the Clutches of Chaos e4ea5f/Bag Anette Mason is posessed by evil d14543.yaml b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 7 In the Clutches of Chaos e4ea5f/Bag Anette Mason is posessed by evil d14543.yaml new file mode 100644 index 000000000..c79678703 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 7 In the Clutches of Chaos e4ea5f/Bag Anette Mason is posessed by evil d14543.yaml @@ -0,0 +1,42 @@ +Autoraise: true +ColorDiffuse: + b: 0.0 + g: 0.0 + r: 0.0 +ContainedObjects: +- !include 'Bag Anette Mason is posessed by evil d14543/Deck Act Deck 09377b.yaml' +- !include 'Bag Anette Mason is posessed by evil d14543/Card Silver Twilight Lodge + 17e686.yaml' +- !include 'Bag Anette Mason is posessed by evil d14543/Deck Encounter Deck 6c34a5.yaml' +- !include 'Bag Anette Mason is posessed by evil d14543/Card Hangman''s Hill a21c5b.yaml' +- !include "Bag Anette Mason is posessed by evil d14543/Card THE CHARIOT \xB7 VII\ + \ b12183.yaml" +Description: '' +GMNotes: '' +GUID: d14543 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Bag Anette Mason is posessed by evil d14543.ttslua' +LuaScriptState: '{"ml":{"09377b":{"lock":false,"pos":{"x":-2.6886,"y":1.6623,"z":-5.0485},"rot":{"x":0.0168,"y":179.9995,"z":0.0803}},"17e686":{"lock":false,"pos":{"x":-30.2244,"y":1.6909,"z":-15.28},"rot":{"x":359.9201,"y":269.9999,"z":0.0169}},"6c34a5":{"lock":false,"pos":{"x":-3.9277,"y":1.7984,"z":5.7572},"rot":{"x":359.9197,"y":269.9999,"z":180.0168}},"a21c5b":{"lock":false,"pos":{"x":-30.2243,"y":1.6998,"z":15.19},"rot":{"x":359.9201,"y":270,"z":0.0169}},"b12183":{"lock":false,"pos":{"x":-2.7054,"y":1.6571,"z":0.3752},"rot":{"x":0.0168,"y":180.0001,"z":0.0803}}}}' +MaterialIndex: -1 +MeshIndex: -1 +Name: Bag +Nickname: Anette Mason is posessed by evil +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 1.63330078 + posY: 1.39460039 + posZ: 1.56939864 + rotX: 0.0803431943 + rotY: 89.99889 + rotZ: 359.983124 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 7 In the Clutches of Chaos e4ea5f/Bag Anette Mason is posessed by evil d14543/Card Hangman's Hill a21c5b.yaml b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 7 In the Clutches of Chaos e4ea5f/Bag Anette Mason is posessed by evil d14543/Card Hangman's Hill a21c5b.yaml new file mode 100644 index 000000000..fd8350838 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 7 In the Clutches of Chaos e4ea5f/Bag Anette Mason is posessed by evil d14543/Card Hangman's Hill a21c5b.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 369634 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '3696': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/784110538844132994/8CD6465D48CC5909C15DF8CC02BB9060F593F1BA/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784110538847624119/AC326B629FA308B7F9C7E41069581A8D2B2D77B4/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Arkham. +GMNotes: '' +GUID: a21c5b +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Hangman's Hill +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -30.2243 + posY: 1.69983244 + posZ: 15.1900005 + rotX: 359.9201 + rotY: 269.999969 + rotZ: 0.0168766063 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 7 In the Clutches of Chaos e4ea5f/Bag Anette Mason is posessed by evil d14543/Card Silver Twilight Lodge 17e686.yaml b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 7 In the Clutches of Chaos e4ea5f/Bag Anette Mason is posessed by evil d14543/Card Silver Twilight Lodge 17e686.yaml new file mode 100644 index 000000000..45fd9dda1 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 7 In the Clutches of Chaos e4ea5f/Bag Anette Mason is posessed by evil d14543/Card Silver Twilight Lodge 17e686.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 369835 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '3698': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/784110538844132994/8CD6465D48CC5909C15DF8CC02BB9060F593F1BA/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784110538847624119/AC326B629FA308B7F9C7E41069581A8D2B2D77B4/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Arkham. +GMNotes: '' +GUID: 17e686 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Silver Twilight Lodge +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -30.2244 + posY: 1.69086051 + posZ: -15.2800007 + rotX: 359.9201 + rotY: 269.999939 + rotZ: 0.0168764852 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 7 In the Clutches of Chaos e4ea5f/Bag Anette Mason is posessed by evil d14543/Card THE CHARIOT · VII b12183.yaml b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 7 In the Clutches of Chaos e4ea5f/Bag Anette Mason is posessed by evil d14543/Card THE CHARIOT · VII b12183.yaml new file mode 100644 index 000000000..db866137a --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 7 In the Clutches of Chaos e4ea5f/Bag Anette Mason is posessed by evil d14543/Card THE CHARIOT · VII b12183.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 368824 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '3688': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/784110538844100123/A9A0ACCD9ADB5C20745B6AB314C472ECAB71C300/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784110538844098999/61B68D9375F5BBC2974723215EC6855B5605EFD9/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Agenda 1 +GMNotes: '' +GUID: b12183 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: "THE CHARIOT \xB7 VII" +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.7054 + posY: 1.65707481 + posZ: 0.3752003 + rotX: 0.0168349613 + rotY: 180.000092 + rotZ: 0.0802575 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 7 In the Clutches of Chaos e4ea5f/Bag Anette Mason is posessed by evil d14543/Deck Act Deck 09377b.yaml b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 7 In the Clutches of Chaos e4ea5f/Bag Anette Mason is posessed by evil d14543/Deck Act Deck 09377b.yaml new file mode 100644 index 000000000..652a57346 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 7 In the Clutches of Chaos e4ea5f/Bag Anette Mason is posessed by evil d14543/Deck Act Deck 09377b.yaml @@ -0,0 +1,129 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 368826 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3688': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/784110538844100123/A9A0ACCD9ADB5C20745B6AB314C472ECAB71C300/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784110538844098999/61B68D9375F5BBC2974723215EC6855B5605EFD9/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 2 + GMNotes: '' + GUID: e39a9a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Beyond the Grave + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -12.5684261 + posY: 1.33864832 + posZ: 74.34744 + rotX: 0.0179951712 + rotY: 179.999481 + rotZ: 359.970367 + 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: + '3688': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/784110538844100123/A9A0ACCD9ADB5C20745B6AB314C472ECAB71C300/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784110538844098999/61B68D9375F5BBC2974723215EC6855B5605EFD9/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 1 + GMNotes: '' + GUID: 7f6167 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dark Knowledge (v.I) + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -12.486001 + posY: 1.48346519 + posZ: 73.9795761 + rotX: 0.0421500057 + rotY: 179.999329 + rotZ: 359.974457 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '3688': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/784110538844100123/A9A0ACCD9ADB5C20745B6AB314C472ECAB71C300/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784110538844098999/61B68D9375F5BBC2974723215EC6855B5605EFD9/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 368826 +- 368825 +Description: '' +GMNotes: '' +GUID: 09377b +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Act Deck +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.6886 + posY: 1.66233361 + posZ: -5.04850054 + rotX: 0.016835602 + rotY: 179.999527 + rotZ: 0.0802577958 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 7 In the Clutches of Chaos e4ea5f/Bag Anette Mason is posessed by evil d14543/Deck Encounter Deck 6c34a5.yaml b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 7 In the Clutches of Chaos e4ea5f/Bag Anette Mason is posessed by evil d14543/Deck Encounter Deck 6c34a5.yaml new file mode 100644 index 000000000..b5c7edf54 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 7 In the Clutches of Chaos e4ea5f/Bag Anette Mason is posessed by evil d14543/Deck Encounter Deck 6c34a5.yaml @@ -0,0 +1,1562 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 231808 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: 4949ea + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Wracked + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -17.71135 + posY: 1.56800044 + posZ: -33.49924 + rotX: 359.9177 + rotY: 269.978638 + rotZ: 0.0161360279 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231804 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Power. Terror. + GMNotes: '' + GUID: f84e0e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Daemonic Piping + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 14.9480782 + posY: 1.4942292 + posZ: 74.93108 + rotX: 0.02213699 + rotY: 269.980438 + rotZ: 0.0018852806 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3626 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Nightgaunt. + GMNotes: '' + GUID: b124ef + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Hunting Nightgaunt + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 99.70005 + posY: 1.5523262 + posZ: 13.9823551 + rotX: 359.987244 + rotY: 269.999542 + rotZ: 359.9839 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3627 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: dd287a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: On Wings of Darkness + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 99.36151 + posY: 1.40362072 + posZ: 13.422389 + rotX: 359.987427 + rotY: 270.0 + rotZ: 359.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 369127 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3691': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784110538844118232/E948D384460BD0291E7DC53C315709CF0E1321FE/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Power. + GMNotes: '' + GUID: a47dba + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Primordial Gateway + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 6.141344 + posY: 1.49498117 + posZ: 82.66116 + rotX: 0.01744227 + rotY: 269.9856 + rotZ: 0.0347701423 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231805 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Witch. + GMNotes: '' + GUID: 367d03 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Coven Initiate + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -26.0635834 + posY: 1.72707784 + posZ: -35.83386 + rotX: 359.920868 + rotY: 269.973969 + rotZ: 0.0147350542 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231806 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Witch. + GMNotes: '' + GUID: 326f11 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Priestess of the Coven + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -25.8414345 + posY: 1.57860494 + posZ: -36.132618 + rotX: 359.919647 + rotY: 269.974 + rotZ: 0.0165877342 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231804 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Power. Terror. + GMNotes: '' + GUID: f79968 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Daemonic Piping + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 15.1468468 + posY: 1.34905994 + posZ: 75.26861 + rotX: 0.0217909943 + rotY: 269.979736 + rotZ: 0.01311177 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231814 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Curse. + GMNotes: '' + GUID: 9cb625 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Centuries of Secrets + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -20.7263336 + posY: 1.754926 + posZ: -33.80658 + rotX: 0.0413828529 + rotY: 269.9769 + rotZ: 0.3666429 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 369122 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3691': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784110538844118232/E948D384460BD0291E7DC53C315709CF0E1321FE/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Curse. + GMNotes: '' + GUID: d50053 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Terror Unleashed + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 6.1404233 + posY: 1.50271082 + posZ: 82.59327 + rotX: 0.0194760654 + rotY: 269.983032 + rotZ: 0.0101950867 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 369122 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3691': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784110538844118232/E948D384460BD0291E7DC53C315709CF0E1321FE/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Curse. + GMNotes: '' + GUID: a71412 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Terror Unleashed + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 6.72482347 + posY: 1.52477443 + posZ: 82.89518 + rotX: 0.0210533645 + rotY: 269.9688 + rotZ: 0.01641221 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3626 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Nightgaunt. + GMNotes: '' + GUID: '476433' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Hunting Nightgaunt + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 99.47138 + posY: 1.56615245 + posZ: 13.5548248 + rotX: 359.9876 + rotY: 270.0174 + rotZ: 359.984955 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 369128 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3691': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784110538844118232/E948D384460BD0291E7DC53C315709CF0E1321FE/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Power. + GMNotes: '' + GUID: a7dd13 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Chaos Manifest + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 6.198229 + posY: 1.51081049 + posZ: 82.86387 + rotX: 0.0176542532 + rotY: 269.983124 + rotZ: 0.009990074 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3627 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: b06ff1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: On Wings of Darkness + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 99.46953 + posY: 1.54276168 + posZ: 13.6987543 + rotX: 359.9927 + rotY: 270.0251 + rotZ: 359.991547 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 369126 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3691': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784110538844118232/E948D384460BD0291E7DC53C315709CF0E1321FE/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: d8b37a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Toil and Trouble + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 7.780057 + posY: 1.49331641 + posZ: 81.00739 + rotX: 0.018568987 + rotY: 269.9933 + rotZ: 359.989349 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 369128 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3691': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784110538844118232/E948D384460BD0291E7DC53C315709CF0E1321FE/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Power. + GMNotes: '' + GUID: a7dd13 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Chaos Manifest + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 6.47260237 + posY: 1.347969 + posZ: 82.624176 + rotX: 0.0209928546 + rotY: 269.9671 + rotZ: 0.0178020764 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 369122 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3691': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784110538844118232/E948D384460BD0291E7DC53C315709CF0E1321FE/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Curse. + GMNotes: '' + GUID: a71412 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Terror Unleashed + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 6.12781048 + posY: 1.49762809 + posZ: 82.52125 + rotX: 0.0189197622 + rotY: 269.9839 + rotZ: 0.0179458261 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 369127 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3691': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784110538844118232/E948D384460BD0291E7DC53C315709CF0E1321FE/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Power. + GMNotes: '' + GUID: a47dba + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Primordial Gateway + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 6.228713 + posY: 1.49763262 + posZ: 82.86434 + rotX: 0.0173947681 + rotY: 269.983215 + rotZ: 0.007203724 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231807 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Curse. + GMNotes: '' + GUID: 0fa642 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Diabolic Voices + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -18.055851 + posY: 1.72234285 + posZ: -33.4770279 + rotX: 359.9191 + rotY: 269.978851 + rotZ: 0.0164938 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 369126 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3691': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784110538844118232/E948D384460BD0291E7DC53C315709CF0E1321FE/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: a36f2f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Toil and Trouble + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 7.81153345 + posY: 1.34815073 + posZ: 81.02847 + rotX: 0.020960357 + rotY: 270.005981 + rotZ: 0.0131634977 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231813 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Curse. + GMNotes: '' + GUID: 976fd8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Evil Past + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -20.7343235 + posY: 1.86165559 + posZ: -33.3503036 + rotX: 359.785339 + rotY: 269.9796 + rotZ: 0.07815084 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231814 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Curse. + GMNotes: '' + GUID: 0a13d0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Centuries of Secrets + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -13.0553141 + posY: 1.49102473 + posZ: 83.19125 + rotX: 0.0151776178 + rotY: 269.999542 + rotZ: 180.007492 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231805 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Witch. + GMNotes: '' + GUID: c35966 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Coven Initiate + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -25.6442871 + posY: 1.72278082 + posZ: -36.0347443 + rotX: 359.911224 + rotY: 269.974 + rotZ: 0.0136959022 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231807 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Curse. + GMNotes: '' + GUID: 407e66 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Diabolic Voices + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -18.0510273 + posY: 1.71469259 + posZ: -33.44395 + rotX: 359.919128 + rotY: 269.978668 + rotZ: 0.0163030848 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231809 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: a558b5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Bedeviled + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -17.6637516 + posY: 1.7296617 + posZ: -33.73086 + rotX: 359.9201 + rotY: 269.978882 + rotZ: 0.0205486864 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 369125 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3691': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784110538844118232/E948D384460BD0291E7DC53C315709CF0E1321FE/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Witch + GMNotes: '' + GUID: 6582d7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Witness of Chaos + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 7.667698 + posY: 1.5107013 + posZ: 80.7900543 + rotX: 0.0206622779 + rotY: 269.992828 + rotZ: -0.001846674 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 369128 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3691': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784110538844118232/E948D384460BD0291E7DC53C315709CF0E1321FE/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Power. + GMNotes: '' + GUID: ccd9f0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Chaos Manifest + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 6.403446 + posY: 1.49307215 + posZ: 82.67308 + rotX: 0.005214898 + rotY: 269.993042 + rotZ: 0.03216257 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231813 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Curse. + GMNotes: '' + GUID: ab69b8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Evil Past + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -20.8834572 + posY: 1.89827907 + posZ: -33.5683937 + rotX: 0.110509835 + rotY: 269.976044 + rotZ: 0.334469885 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 369125 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3691': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784110538844118232/E948D384460BD0291E7DC53C315709CF0E1321FE/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Witch + GMNotes: '' + GUID: 6582d7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Witness of Chaos + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 7.70334435 + posY: 1.4970336 + posZ: 81.39029 + rotX: 0.0202364512 + rotY: 269.997528 + rotZ: 0.009942474 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231805 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Witch. + GMNotes: '' + GUID: 6f2c2e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Coven Initiate + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -25.7267475 + posY: 1.74028778 + posZ: -36.1106224 + rotX: 359.918823 + rotY: 269.9739 + rotZ: 0.0168967526 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231808 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: c8092b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Wracked + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -17.80855 + posY: 1.71239948 + posZ: -33.79921 + rotX: 359.910339 + rotY: 269.97876 + rotZ: 0.03349457 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231809 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: f7c676 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Bedeviled + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -18.1656151 + posY: 1.716761 + posZ: -33.74088 + rotX: 359.918976 + rotY: 269.9787 + rotZ: 0.018134892 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231814 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Curse. + GMNotes: '' + GUID: 81dc7a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Centuries of Secrets + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -21.0152721 + posY: 1.57281208 + posZ: -32.7783356 + rotX: 359.9176 + rotY: 269.977783 + rotZ: 0.01638736 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231807 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Curse. + GMNotes: '' + GUID: 64341a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Diabolic Voices + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -17.73656 + posY: 1.71689022 + posZ: -33.5350227 + rotX: 359.918945 + rotY: 269.979126 + rotZ: 0.0171701312 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231804 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Power. Terror. + GMNotes: '' + GUID: 397fce + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Daemonic Piping + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 14.9602261 + posY: 1.52727246 + posZ: 75.3926544 + rotX: 0.0217449367 + rotY: 269.97583 + rotZ: 0.0155824684 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '3691': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784110538844118232/E948D384460BD0291E7DC53C315709CF0E1321FE/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 231808 +- 231804 +- 3626 +- 3627 +- 369127 +- 231805 +- 231806 +- 231804 +- 231814 +- 369122 +- 369122 +- 3626 +- 369128 +- 3627 +- 369126 +- 369128 +- 369122 +- 369127 +- 231807 +- 369126 +- 231813 +- 231814 +- 231805 +- 231807 +- 231809 +- 369125 +- 369128 +- 231813 +- 369125 +- 231805 +- 231808 +- 231809 +- 231814 +- 231807 +- 231804 +Description: '' +GMNotes: '' +GUID: 6c34a5 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Encounter Deck +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.92770028 + posY: 1.79835737 + posZ: 5.75720072 + rotX: 359.919739 + rotY: 269.999969 + rotZ: 180.016815 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 7 In the Clutches of Chaos e4ea5f/Bag Carl Sanford possesses the secrets of the universe 92c6fc.ttslua b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 7 In the Clutches of Chaos e4ea5f/Bag Carl Sanford possesses the secrets of the universe 92c6fc.ttslua new file mode 100644 index 000000000..4acf9ea11 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 7 In the Clutches of Chaos e4ea5f/Bag Carl Sanford possesses the secrets of the universe 92c6fc.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 Circle Undone 61e777/Custom_Model_Bag 7 In the Clutches of Chaos e4ea5f/Bag Carl Sanford possesses the secrets of the universe 92c6fc.yaml b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 7 In the Clutches of Chaos e4ea5f/Bag Carl Sanford possesses the secrets of the universe 92c6fc.yaml new file mode 100644 index 000000000..1cef0dced --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 7 In the Clutches of Chaos e4ea5f/Bag Carl Sanford possesses the secrets of the universe 92c6fc.yaml @@ -0,0 +1,45 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +ContainedObjects: +- !include 'Bag Carl Sanford possesses the secrets of the universe 92c6fc/Card Hangman''s + Hill 5f4d8a.yaml' +- !include "Bag Carl Sanford possesses the secrets of the universe 92c6fc/Card THE\ + \ CHARIOT \xB7 VII 69a12e.yaml" +- !include 'Bag Carl Sanford possesses the secrets of the universe 92c6fc/Card Silver + Twilight Lodge 79a987.yaml' +- !include 'Bag Carl Sanford possesses the secrets of the universe 92c6fc/Deck Encounter + Deck 7d1536.yaml' +- !include 'Bag Carl Sanford possesses the secrets of the universe 92c6fc/Deck Act + Deck cb41b0.yaml' +Description: '' +GMNotes: '' +GUID: 92c6fc +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Bag Carl Sanford possesses the secrets of the universe 92c6fc.ttslua' +LuaScriptState: '{"ml":{"5f4d8a":{"lock":false,"pos":{"x":-30.2242,"y":1.6998,"z":15.19},"rot":{"x":359.9201,"y":269.9999,"z":0.0169}},"69a12e":{"lock":false,"pos":{"x":-2.7248,"y":1.6571,"z":0.3733},"rot":{"x":0.0168,"y":180.0052,"z":0.0803}},"79a987":{"lock":false,"pos":{"x":-30.2244,"y":1.6909,"z":-15.28},"rot":{"x":359.9201,"y":269.9998,"z":0.0169}},"7d1536":{"lock":false,"pos":{"x":-3.9274,"y":1.809,"z":5.7571},"rot":{"x":359.9197,"y":270,"z":180.0168}},"cb41b0":{"lock":false,"pos":{"x":-2.6884,"y":1.6623,"z":-5.0485},"rot":{"x":0.0168,"y":179.9999,"z":0.0803}}}}' +MaterialIndex: -1 +MeshIndex: -1 +Name: Bag +Nickname: Carl Sanford possesses the secrets of the universe +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 1.67140138 + posY: 1.39370751 + posZ: -1.28710258 + rotX: 0.08034389 + rotY: 89.9989243 + rotZ: 359.983124 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 7 In the Clutches of Chaos e4ea5f/Bag Carl Sanford possesses the secrets of the universe 92c6fc/Card Hangman's Hill 5f4d8a.yaml b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 7 In the Clutches of Chaos e4ea5f/Bag Carl Sanford possesses the secrets of the universe 92c6fc/Card Hangman's Hill 5f4d8a.yaml new file mode 100644 index 000000000..819b60284 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 7 In the Clutches of Chaos e4ea5f/Bag Carl Sanford possesses the secrets of the universe 92c6fc/Card Hangman's Hill 5f4d8a.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 369736 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '3697': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/784110538844132994/8CD6465D48CC5909C15DF8CC02BB9060F593F1BA/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784110538847624119/AC326B629FA308B7F9C7E41069581A8D2B2D77B4/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Arkham. +GMNotes: '' +GUID: 5f4d8a +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Hangman's Hill +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -30.2242012 + posY: 1.69983232 + posZ: 15.1900005 + rotX: 359.9201 + rotY: 269.999878 + rotZ: 0.0168767888 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 7 In the Clutches of Chaos e4ea5f/Bag Carl Sanford possesses the secrets of the universe 92c6fc/Card Silver Twilight Lodge 79a987.yaml b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 7 In the Clutches of Chaos e4ea5f/Bag Carl Sanford possesses the secrets of the universe 92c6fc/Card Silver Twilight Lodge 79a987.yaml new file mode 100644 index 000000000..aa8c1ea21 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 7 In the Clutches of Chaos e4ea5f/Bag Carl Sanford possesses the secrets of the universe 92c6fc/Card Silver Twilight Lodge 79a987.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 369937 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '3699': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/784110538844132994/8CD6465D48CC5909C15DF8CC02BB9060F593F1BA/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784110538847624119/AC326B629FA308B7F9C7E41069581A8D2B2D77B4/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Arkham. +GMNotes: '' +GUID: 79a987 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Silver Twilight Lodge +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -30.2244 + posY: 1.69086051 + posZ: -15.2799988 + rotX: 359.9201 + rotY: 269.999756 + rotZ: 0.0168766286 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 7 In the Clutches of Chaos e4ea5f/Bag Carl Sanford possesses the secrets of the universe 92c6fc/Card THE CHARIOT · VII 69a12e.yaml b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 7 In the Clutches of Chaos e4ea5f/Bag Carl Sanford possesses the secrets of the universe 92c6fc/Card THE CHARIOT · VII 69a12e.yaml new file mode 100644 index 000000000..bcfe2cbe9 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 7 In the Clutches of Chaos e4ea5f/Bag Carl Sanford possesses the secrets of the universe 92c6fc/Card THE CHARIOT · VII 69a12e.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 368824 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '3688': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/784110538844100123/A9A0ACCD9ADB5C20745B6AB314C472ECAB71C300/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784110538844098999/61B68D9375F5BBC2974723215EC6855B5605EFD9/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Agenda 1 +GMNotes: '' +GUID: 69a12e +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: "THE CHARIOT \xB7 VII" +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.7248 + posY: 1.65710139 + posZ: 0.373300433 + rotX: 0.0168278944 + rotY: 180.0052 + rotZ: 0.08025927 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 7 In the Clutches of Chaos e4ea5f/Bag Carl Sanford possesses the secrets of the universe 92c6fc/Deck Act Deck cb41b0.yaml b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 7 In the Clutches of Chaos e4ea5f/Bag Carl Sanford possesses the secrets of the universe 92c6fc/Deck Act Deck cb41b0.yaml new file mode 100644 index 000000000..4b158e76e --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 7 In the Clutches of Chaos e4ea5f/Bag Carl Sanford possesses the secrets of the universe 92c6fc/Deck Act Deck cb41b0.yaml @@ -0,0 +1,129 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 368827 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3688': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/784110538844100123/A9A0ACCD9ADB5C20745B6AB314C472ECAB71C300/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784110538844098999/61B68D9375F5BBC2974723215EC6855B5605EFD9/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 1 + GMNotes: '' + GUID: 3a0ad6 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dark Knowledge (v.II) + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 14.1259813 + posY: 1.3516506 + posZ: 85.37142 + rotX: 0.0173827875 + rotY: 179.999954 + rotZ: 359.9757 + 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: + '3688': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/784110538844100123/A9A0ACCD9ADB5C20745B6AB314C472ECAB71C300/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784110538844098999/61B68D9375F5BBC2974723215EC6855B5605EFD9/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 2 + GMNotes: '' + GUID: 66378c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: New World Order + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 14.0107994 + posY: 1.49662864 + posZ: 85.26572 + rotX: 0.008819537 + rotY: 180.000031 + rotZ: 359.9708 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '3688': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/784110538844100123/A9A0ACCD9ADB5C20745B6AB314C472ECAB71C300/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784110538844098999/61B68D9375F5BBC2974723215EC6855B5605EFD9/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 368827 +- 368828 +Description: '' +GMNotes: '' +GUID: cb41b0 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Act Deck +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.6884 + posY: 1.66233325 + posZ: -5.0485 + rotX: 0.01683526 + rotY: 179.9999 + rotZ: 0.08025788 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 7 In the Clutches of Chaos e4ea5f/Bag Carl Sanford possesses the secrets of the universe 92c6fc/Deck Encounter Deck 7d1536.yaml b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 7 In the Clutches of Chaos e4ea5f/Bag Carl Sanford possesses the secrets of the universe 92c6fc/Deck Encounter Deck 7d1536.yaml new file mode 100644 index 000000000..c632f0aa9 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 7 In the Clutches of Chaos e4ea5f/Bag Carl Sanford possesses the secrets of the universe 92c6fc/Deck Encounter Deck 7d1536.yaml @@ -0,0 +1,1655 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 231810 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Cultist. Silver Twilight. + GMNotes: '' + GUID: '525275' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Lodge Neophyte + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -18.3490829 + posY: 1.71755159 + posZ: -31.918066 + rotX: 359.918579 + rotY: 269.9797 + rotZ: 0.0158215724 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 369122 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3691': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784110538844118232/E948D384460BD0291E7DC53C315709CF0E1321FE/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Curse. + GMNotes: '' + GUID: a71412 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Terror Unleashed + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 6.72482347 + posY: 1.52477443 + posZ: 82.89518 + rotX: 0.0210533645 + rotY: 269.9688 + rotZ: 0.01641221 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 369124 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3691': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784110538844118232/E948D384460BD0291E7DC53C315709CF0E1321FE/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: af86ae + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Secrets of the Beyond + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.80569863 + posY: 1.49195409 + posZ: 81.89541 + rotX: 0.0132571086 + rotY: 269.99707 + rotZ: 0.002305488 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231812 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Scheme. + GMNotes: '' + GUID: 0eb939 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Mysteries of the Lodge + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -8.533302 + posY: 1.49134493 + posZ: 65.68225 + rotX: 0.0187280849 + rotY: 269.9965 + rotZ: 180.163269 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 369127 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3691': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784110538844118232/E948D384460BD0291E7DC53C315709CF0E1321FE/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Power. + GMNotes: '' + GUID: a47dba + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Primordial Gateway + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 6.228713 + posY: 1.49763262 + posZ: 82.86434 + rotX: 0.0173947681 + rotY: 269.983215 + rotZ: 0.007203724 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3626 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Nightgaunt. + GMNotes: '' + GUID: b124ef + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Hunting Nightgaunt + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 99.70005 + posY: 1.5523262 + posZ: 13.9823551 + rotX: 359.987244 + rotY: 269.999542 + rotZ: 359.9839 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12119 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '121': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: '260768' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dissonant Voices + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 116.206024 + posY: 1.54851818 + posZ: 1.69081855 + rotX: 0.453712761 + rotY: 270.0 + rotZ: 0.605071843 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 369122 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3691': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784110538844118232/E948D384460BD0291E7DC53C315709CF0E1321FE/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Curse. + GMNotes: '' + GUID: a71412 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Terror Unleashed + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 6.12781048 + posY: 1.49762809 + posZ: 82.52125 + rotX: 0.0189197622 + rotY: 269.9839 + rotZ: 0.0179458261 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3605 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: de1cd2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: False Lead + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 33.8191452 + posY: 1.66368461 + posZ: 74.8914261 + rotX: 0.02363379 + rotY: 269.998962 + rotZ: 0.25173533 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231811 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Cultist. Silver Twilight. + GMNotes: '' + GUID: 3761ce + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Keeper of Secrets + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -18.7752514 + posY: 1.71879411 + posZ: -32.00056 + rotX: 359.919342 + rotY: 269.979553 + rotZ: 0.0157596618 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12117 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '121': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: aa3d47 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Rotting Remains + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 116.843185 + posY: 1.54545975 + posZ: 1.48686087 + rotX: 359.989929 + rotY: 270.0 + rotZ: 359.98764 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3604 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Curse. + GMNotes: '' + GUID: 46af71 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Hunting Shadow + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 33.34565 + posY: 1.53916109 + posZ: 74.98459 + rotX: 0.2795983 + rotY: 269.982117 + rotZ: 0.2330421 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 369123 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3691': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784110538844118232/E948D384460BD0291E7DC53C315709CF0E1321FE/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Cultist. Silver Twilight. + GMNotes: '' + GUID: be9d6c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Lodge Enforcer + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 4.019021 + posY: 1.4959923 + posZ: 82.18874 + rotX: 0.0184443258 + rotY: 269.999634 + rotZ: 0.0118184 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3604 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Curse. + GMNotes: '' + GUID: e98498 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Hunting Shadow + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 33.3559 + posY: 1.39295888 + posZ: 75.464 + rotX: 0.179927453 + rotY: 269.9928 + rotZ: 0.191170692 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 369128 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3691': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784110538844118232/E948D384460BD0291E7DC53C315709CF0E1321FE/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Power. + GMNotes: '' + GUID: a7dd13 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Chaos Manifest + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 6.47260237 + posY: 1.347969 + posZ: 82.624176 + rotX: 0.0209928546 + rotY: 269.9671 + rotZ: 0.0178020764 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 369124 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3691': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784110538844118232/E948D384460BD0291E7DC53C315709CF0E1321FE/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: 3c1b20 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Secrets of the Beyond + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.84631872 + posY: 1.34687316 + posZ: 81.70437 + rotX: 0.0211930815 + rotY: 270.002472 + rotZ: 0.0133430995 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231804 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Power. Terror. + GMNotes: '' + GUID: f79968 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Daemonic Piping + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 15.1468468 + posY: 1.34905994 + posZ: 75.26861 + rotX: 0.0217909943 + rotY: 269.979736 + rotZ: 0.01311177 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12119 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '121': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: f1a34d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dissonant Voices + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 116.318008 + posY: 1.40297079 + posZ: 2.02551055 + rotX: 359.987427 + rotY: 270.046936 + rotZ: 359.984528 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 369127 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3691': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784110538844118232/E948D384460BD0291E7DC53C315709CF0E1321FE/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Power. + GMNotes: '' + GUID: a47dba + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Primordial Gateway + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 6.141344 + posY: 1.49498117 + posZ: 82.66116 + rotX: 0.01744227 + rotY: 269.9856 + rotZ: 0.0347701423 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12117 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '121': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: da8001 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Rotting Remains + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 116.950279 + posY: 1.5376091 + posZ: 1.28928447 + rotX: 358.786469 + rotY: 270.025024 + rotZ: 2.07151151 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 369122 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3691': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784110538844118232/E948D384460BD0291E7DC53C315709CF0E1321FE/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Curse. + GMNotes: '' + GUID: d50053 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Terror Unleashed + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 6.1404233 + posY: 1.50271082 + posZ: 82.59327 + rotX: 0.0194760654 + rotY: 269.983032 + rotZ: 0.0101950867 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3604 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Curse. + GMNotes: '' + GUID: caabe8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Hunting Shadow + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 33.17109 + posY: 1.50134242 + posZ: 71.44922 + rotX: 0.0258894432 + rotY: 269.999176 + rotZ: 0.0177205615 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12118 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '121': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: c40f57 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Frozen in Fear + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 116.363129 + posY: 1.55607748 + posZ: 1.91277838 + rotX: 359.809937 + rotY: 270.046265 + rotZ: 0.250917822 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12118 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '121': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: 27c05d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Frozen in Fear + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 116.299973 + posY: 1.569287 + posZ: 1.46156657 + rotX: 359.989929 + rotY: 270.000061 + rotZ: 359.987671 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3627 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: b06ff1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: On Wings of Darkness + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 99.46953 + posY: 1.54276168 + posZ: 13.6987543 + rotX: 359.9927 + rotY: 270.0251 + rotZ: 359.991547 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12117 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '121': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: 18e09c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Rotting Remains + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 117.053131 + posY: 1.56189775 + posZ: 1.68414187 + rotX: 359.987427 + rotY: 270.047 + rotZ: 359.984528 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 369123 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3691': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784110538844118232/E948D384460BD0291E7DC53C315709CF0E1321FE/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Cultist. Silver Twilight. + GMNotes: '' + GUID: be9d6c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Lodge Enforcer + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 4.061287 + posY: 1.50965226 + posZ: 82.3038254 + rotX: 0.0210610852 + rotY: 269.998535 + rotZ: 0.0123841716 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231810 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Cultist. Silver Twilight. + GMNotes: '' + GUID: 408a82 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Lodge Neophyte + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -18.5851078 + posY: 1.73144269 + posZ: -32.35143 + rotX: 359.919037 + rotY: 269.979156 + rotZ: 0.01716643 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231804 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Power. Terror. + GMNotes: '' + GUID: 397fce + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Daemonic Piping + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 14.9602261 + posY: 1.52727246 + posZ: 75.3926544 + rotX: 0.0217449367 + rotY: 269.97583 + rotZ: 0.0155824684 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 369128 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3691': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784110538844118232/E948D384460BD0291E7DC53C315709CF0E1321FE/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Power. + GMNotes: '' + GUID: ccd9f0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Chaos Manifest + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 6.403446 + posY: 1.49307215 + posZ: 82.67308 + rotX: 0.005214898 + rotY: 269.993042 + rotZ: 0.03216257 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231804 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Power. Terror. + GMNotes: '' + GUID: f84e0e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Daemonic Piping + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 14.9480782 + posY: 1.4942292 + posZ: 74.93108 + rotX: 0.02213699 + rotY: 269.980438 + rotZ: 0.0018852806 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3605 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: b6793f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: False Lead + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 33.1424751 + posY: 1.68199444 + posZ: 75.44426 + rotX: 0.365903 + rotY: 269.976563 + rotZ: 0.08653687 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 369128 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3691': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784110538844118232/E948D384460BD0291E7DC53C315709CF0E1321FE/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Power. + GMNotes: '' + GUID: a7dd13 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Chaos Manifest + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 6.198229 + posY: 1.51081049 + posZ: 82.86387 + rotX: 0.0176542532 + rotY: 269.983124 + rotZ: 0.009990074 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3627 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: dd287a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: On Wings of Darkness + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 99.36151 + posY: 1.40362072 + posZ: 13.422389 + rotX: 359.987427 + rotY: 270.0 + rotZ: 359.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231812 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Scheme. + GMNotes: '' + GUID: 7870f6 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Mysteries of the Lodge + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -18.6118813 + posY: 1.71404207 + posZ: -32.3841057 + rotX: 359.91098 + rotY: 269.979034 + rotZ: 0.0195768736 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3626 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Nightgaunt. + GMNotes: '' + GUID: '476433' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Hunting Nightgaunt + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 99.47138 + posY: 1.56615245 + posZ: 13.5548248 + rotX: 359.9876 + rotY: 270.0174 + rotZ: 359.984955 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231810 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Cultist. Silver Twilight. + GMNotes: '' + GUID: 8dac94 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Lodge Neophyte + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -18.6574612 + posY: 1.71596491 + posZ: -31.9956455 + rotX: 359.918976 + rotY: 269.979736 + rotZ: 0.0163928568 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '121': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '3691': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784110538844118232/E948D384460BD0291E7DC53C315709CF0E1321FE/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 231810 +- 369122 +- 369124 +- 231812 +- 369127 +- 3626 +- 12119 +- 369122 +- 3605 +- 231811 +- 12117 +- 3604 +- 369123 +- 3604 +- 369128 +- 369124 +- 231804 +- 12119 +- 369127 +- 12117 +- 369122 +- 3604 +- 12118 +- 12118 +- 3627 +- 12117 +- 369123 +- 231810 +- 231804 +- 369128 +- 231804 +- 3605 +- 369128 +- 3627 +- 231812 +- 3626 +- 231810 +Description: '' +GMNotes: '' +GUID: 7d1536 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Encounter Deck +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.9274 + posY: 1.80901563 + posZ: 5.757101 + rotX: 359.919739 + rotY: 270.000031 + rotZ: 180.016815 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 7 In the Clutches of Chaos e4ea5f/Card French Hill 6ed2ae.yaml b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 7 In the Clutches of Chaos e4ea5f/Card French Hill 6ed2ae.yaml new file mode 100644 index 000000000..b6f987cfb --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 7 In the Clutches of Chaos e4ea5f/Card French Hill 6ed2ae.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 369523 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '3695': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/784110538844132994/8CD6465D48CC5909C15DF8CC02BB9060F593F1BA/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784110538847624119/AC326B629FA308B7F9C7E41069581A8D2B2D77B4/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Arkham. +GMNotes: '' +GUID: 6ed2ae +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: French Hill +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -31.8700027 + posY: 1.83547413 + posZ: -7.63400173 + rotX: 5.06772375 + rotY: 269.9625 + rotZ: -0.000577487343 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 7 In the Clutches of Chaos e4ea5f/Card French Hill fc9d97.yaml b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 7 In the Clutches of Chaos e4ea5f/Card French Hill fc9d97.yaml new file mode 100644 index 000000000..cd726889e --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 7 In the Clutches of Chaos e4ea5f/Card French Hill fc9d97.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 369522 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '3695': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/784110538844132994/8CD6465D48CC5909C15DF8CC02BB9060F593F1BA/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784110538847624119/AC326B629FA308B7F9C7E41069581A8D2B2D77B4/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Arkham. +GMNotes: '' +GUID: fc9d97 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: French Hill +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -30.2434959 + posY: 1.6931479 + posZ: -7.69751263 + rotX: 359.920532 + rotY: 269.99353 + rotZ: 0.0176041927 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 7 In the Clutches of Chaos e4ea5f/Card Merchant District b568b8.yaml b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 7 In the Clutches of Chaos e4ea5f/Card Merchant District b568b8.yaml new file mode 100644 index 000000000..aeb0b60d9 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 7 In the Clutches of Chaos e4ea5f/Card Merchant District b568b8.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 369533 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '3695': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/784110538844132994/8CD6465D48CC5909C15DF8CC02BB9060F593F1BA/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784110538847624119/AC326B629FA308B7F9C7E41069581A8D2B2D77B4/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Arkham. +GMNotes: '' +GUID: b568b8 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Merchant District +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -25.4772854 + posY: 1.82967079 + posZ: 3.86382651 + rotX: 1.37967062 + rotY: 270.119324 + rotZ: 0.0174648389 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 7 In the Clutches of Chaos e4ea5f/Card Merchant District bed0da.yaml b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 7 In the Clutches of Chaos e4ea5f/Card Merchant District bed0da.yaml new file mode 100644 index 000000000..b015e40bd --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 7 In the Clutches of Chaos e4ea5f/Card Merchant District bed0da.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 369532 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '3695': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/784110538844132994/8CD6465D48CC5909C15DF8CC02BB9060F593F1BA/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784110538847624119/AC326B629FA308B7F9C7E41069581A8D2B2D77B4/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Arkham. +GMNotes: '' +GUID: bed0da +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Merchant District +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -23.6764 + posY: 1.68739235 + posZ: 3.86059833 + rotX: 359.920776 + rotY: 270.009277 + rotZ: 0.0172640067 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 7 In the Clutches of Chaos e4ea5f/Card Rivertown 92ee68.yaml b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 7 In the Clutches of Chaos e4ea5f/Card Rivertown 92ee68.yaml new file mode 100644 index 000000000..dd203f02d --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 7 In the Clutches of Chaos e4ea5f/Card Rivertown 92ee68.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 369524 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '3695': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/784110538844132994/8CD6465D48CC5909C15DF8CC02BB9060F593F1BA/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784110538847624119/AC326B629FA308B7F9C7E41069581A8D2B2D77B4/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Arkham. +GMNotes: '' +GUID: 92ee68 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Rivertown +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -25.3839169 + posY: 1.82941222 + posZ: -3.84921861 + rotX: 1.45793355 + rotY: 270.254944 + rotZ: 0.0207864046 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 7 In the Clutches of Chaos e4ea5f/Card Rivertown db4b20.yaml b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 7 In the Clutches of Chaos e4ea5f/Card Rivertown db4b20.yaml new file mode 100644 index 000000000..4b95cbc55 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 7 In the Clutches of Chaos e4ea5f/Card Rivertown db4b20.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 369525 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '3695': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/784110538844132994/8CD6465D48CC5909C15DF8CC02BB9060F593F1BA/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784110538847624119/AC326B629FA308B7F9C7E41069581A8D2B2D77B4/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Arkham. +GMNotes: '' +GUID: db4b20 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Rivertown +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -23.6765 + posY: 1.68514359 + posZ: -3.83000064 + rotX: 359.9208 + rotY: 270.0725 + rotZ: 0.0179625954 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 7 In the Clutches of Chaos e4ea5f/Card Scenario 863a02.yaml b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 7 In the Clutches of Chaos e4ea5f/Card Scenario 863a02.yaml new file mode 100644 index 000000000..48fce4466 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 7 In the Clutches of Chaos e4ea5f/Card Scenario 863a02.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 368723 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '3687': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/784110538844100123/A9A0ACCD9ADB5C20745B6AB314C472ECAB71C300/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784110538844098999/61B68D9375F5BBC2974723215EC6855B5605EFD9/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: In the Clutches of Chaos +GMNotes: '' +GUID: 863a02 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Scenario +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.95580053 + posY: 1.65847087 + posZ: -10.4412022 + rotX: 359.919739 + rotY: 270.0 + rotZ: 180.01683 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 7 In the Clutches of Chaos e4ea5f/Card South Church 1a0ad2.yaml b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 7 In the Clutches of Chaos e4ea5f/Card South Church 1a0ad2.yaml new file mode 100644 index 000000000..e69d3cb18 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 7 In the Clutches of Chaos e4ea5f/Card South Church 1a0ad2.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 369530 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '3695': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/784110538844132994/8CD6465D48CC5909C15DF8CC02BB9060F593F1BA/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784110538847624119/AC326B629FA308B7F9C7E41069581A8D2B2D77B4/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Arkham. +GMNotes: '' +GUID: 1a0ad2 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: South Church +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -38.22058 + posY: 1.7547909 + posZ: -0.0154103059 + rotX: 359.921265 + rotY: 270.039 + rotZ: 0.0162799638 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 7 In the Clutches of Chaos e4ea5f/Card South Church 3d2a8a.yaml b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 7 In the Clutches of Chaos e4ea5f/Card South Church 3d2a8a.yaml new file mode 100644 index 000000000..24a9eaf15 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 7 In the Clutches of Chaos e4ea5f/Card South Church 3d2a8a.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 369531 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '3695': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/784110538844132994/8CD6465D48CC5909C15DF8CC02BB9060F593F1BA/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784110538847624119/AC326B629FA308B7F9C7E41069581A8D2B2D77B4/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Arkham. +GMNotes: '' +GUID: 3d2a8a +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: South Church +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -36.77299 + posY: 1.70447719 + posZ: -0.03019596 + rotX: 359.920135 + rotY: 270.007843 + rotZ: 0.01651583 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 7 In the Clutches of Chaos e4ea5f/Card Southside c898a0.yaml b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 7 In the Clutches of Chaos e4ea5f/Card Southside c898a0.yaml new file mode 100644 index 000000000..f289ce834 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 7 In the Clutches of Chaos e4ea5f/Card Southside c898a0.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 369527 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '3695': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/784110538844132994/8CD6465D48CC5909C15DF8CC02BB9060F593F1BA/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784110538847624119/AC326B629FA308B7F9C7E41069581A8D2B2D77B4/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Arkham. Central. +GMNotes: '' +GUID: c898a0 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Southside +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -30.2226 + posY: 1.695443 + posZ: -0.0308998283 + rotX: 359.9212 + rotY: 270.0031 + rotZ: 0.0202380158 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 7 In the Clutches of Chaos e4ea5f/Card Southside e7f5fa.yaml b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 7 In the Clutches of Chaos e4ea5f/Card Southside e7f5fa.yaml new file mode 100644 index 000000000..22584a8ca --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 7 In the Clutches of Chaos e4ea5f/Card Southside e7f5fa.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 369526 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '3695': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/784110538844132994/8CD6465D48CC5909C15DF8CC02BB9060F593F1BA/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784110538847624119/AC326B629FA308B7F9C7E41069581A8D2B2D77B4/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Arkham. Central. +GMNotes: '' +GUID: e7f5fa +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Southside +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -31.7585144 + posY: 1.84334445 + posZ: -0.119095907 + rotX: 359.959778 + rotY: 270.0692 + rotZ: 0.0158932116 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 7 In the Clutches of Chaos e4ea5f/Card Uptown 441006.yaml b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 7 In the Clutches of Chaos e4ea5f/Card Uptown 441006.yaml new file mode 100644 index 000000000..08201478c --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 7 In the Clutches of Chaos e4ea5f/Card Uptown 441006.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 369528 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '3695': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/784110538844132994/8CD6465D48CC5909C15DF8CC02BB9060F593F1BA/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784110538847624119/AC326B629FA308B7F9C7E41069581A8D2B2D77B4/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Arkham. +GMNotes: '' +GUID: '441006' +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Uptown +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -31.673708 + posY: 1.74795508 + posZ: 7.557033 + rotX: 359.921234 + rotY: 270.0164 + rotZ: 0.0163191017 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 7 In the Clutches of Chaos e4ea5f/Card Uptown 9484e9.yaml b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 7 In the Clutches of Chaos e4ea5f/Card Uptown 9484e9.yaml new file mode 100644 index 000000000..f34e89986 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 7 In the Clutches of Chaos e4ea5f/Card Uptown 9484e9.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 369529 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '3695': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/784110538844132994/8CD6465D48CC5909C15DF8CC02BB9060F593F1BA/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784110538847624119/AC326B629FA308B7F9C7E41069581A8D2B2D77B4/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Arkham. +GMNotes: '' +GUID: 9484e9 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Uptown +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -30.2241764 + posY: 1.69758308 + posZ: 7.56987238 + rotX: 359.920135 + rotY: 270.0039 + rotZ: 0.0165123418 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 7 In the Clutches of Chaos e4ea5f/Custom_Model_Bag Set-aside a45247.yaml b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 7 In the Clutches of Chaos e4ea5f/Custom_Model_Bag Set-aside a45247.yaml new file mode 100644 index 000000000..4bbcd9aa6 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 7 In the Clutches of Chaos e4ea5f/Custom_Model_Bag Set-aside a45247.yaml @@ -0,0 +1,97 @@ +Autoraise: true +ColorDiffuse: + b: 0.02148666 + g: 0.00100758043 + r: 0.02148666 +ContainedObjects: +- Autoraise: true + CardID: 231803 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Elite. + GMNotes: '' + GUID: 092d86 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Piper of Azatoth + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 18.18973 + posY: 3.40622544 + posZ: 78.5509338 + rotX: 0.0211115722 + rotY: 269.980316 + rotZ: 0.0167772435 + 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: '' +GMNotes: '' +GUID: a45247 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +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.69610059 + posY: 1.55831683 + posZ: 14.278903 + rotX: 359.955139 + rotY: 224.993683 + rotZ: 0.06867519 + scaleX: 2.0 + scaleY: 2.0 + scaleZ: 2.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 7 In the Clutches of Chaos e4ea5f/Custom_Tile 12965b.yaml b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 7 In the Clutches of Chaos e4ea5f/Custom_Tile 12965b.yaml new file mode 100644 index 000000000..0c5b95a43 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 7 In the Clutches of Chaos e4ea5f/Custom_Tile 12965b.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 12965b +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.2241 + posY: 1.62251782 + posZ: -3.8301 + rotX: 0.0168739036 + rotY: 179.998535 + rotZ: 0.07993921 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 7 In the Clutches of Chaos e4ea5f/Custom_Tile 1594ed.yaml b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 7 In the Clutches of Chaos e4ea5f/Custom_Tile 1594ed.yaml new file mode 100644 index 000000000..9fe10fbe6 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 7 In the Clutches of Chaos e4ea5f/Custom_Tile 1594ed.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 1594ed +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.2924 + posY: 1.61799979 + posZ: -5.29239941 + rotX: 0.04452216 + rotY: 44.9547157 + rotZ: 359.93158 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 7 In the Clutches of Chaos e4ea5f/Custom_Tile 6e8e5f.yaml b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 7 In the Clutches of Chaos e4ea5f/Custom_Tile 6e8e5f.yaml new file mode 100644 index 000000000..a6cd97a0d --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 7 In the Clutches of Chaos e4ea5f/Custom_Tile 6e8e5f.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 6e8e5f +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.3701 + posY: 1.62032914 + posZ: 2.23770022 + rotX: 0.04432034 + rotY: 44.8402939 + rotZ: 359.93222 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 7 In the Clutches of Chaos e4ea5f/Custom_Tile 7234af.yaml b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 7 In the Clutches of Chaos e4ea5f/Custom_Tile 7234af.yaml new file mode 100644 index 000000000..b8b1bca35 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 7 In the Clutches of Chaos e4ea5f/Custom_Tile 7234af.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 7234af +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.4917 + posY: 1.62817907 + posZ: -0.07920026 + rotX: 359.9201 + rotY: 270.030731 + rotZ: 0.0168574024 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 7 In the Clutches of Chaos e4ea5f/Custom_Tile 90d5ec.yaml b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 7 In the Clutches of Chaos e4ea5f/Custom_Tile 90d5ec.yaml new file mode 100644 index 000000000..76ce6fdd7 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 7 In the Clutches of Chaos e4ea5f/Custom_Tile 90d5ec.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 90d5ec +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.3204 + posY: 1.62125313 + posZ: 5.6251 + rotX: 0.06843857 + rotY: 135.00412 + rotZ: 0.0445940457 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 7 In the Clutches of Chaos e4ea5f/Custom_Tile c0fa29.yaml b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 7 In the Clutches of Chaos e4ea5f/Custom_Tile c0fa29.yaml new file mode 100644 index 000000000..232f32b44 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 7 In the Clutches of Chaos e4ea5f/Custom_Tile c0fa29.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: c0fa29 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.62025654 + posZ: -11.5100012 + rotX: 0.0168733578 + rotY: 179.998856 + rotZ: 0.0799396 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 7 In the Clutches of Chaos e4ea5f/Custom_Tile cbaad5.yaml b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 7 In the Clutches of Chaos e4ea5f/Custom_Tile cbaad5.yaml new file mode 100644 index 000000000..778b52d8a --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 7 In the Clutches of Chaos e4ea5f/Custom_Tile cbaad5.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: cbaad5 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.62702024 + posZ: 11.4600019 + rotX: 0.0168735478 + rotY: 179.998749 + rotZ: 0.0799351558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 7 In the Clutches of Chaos e4ea5f/Custom_Tile cfb2b2.yaml b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 7 In the Clutches of Chaos e4ea5f/Custom_Tile cfb2b2.yaml new file mode 100644 index 000000000..4ab87e941 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 7 In the Clutches of Chaos e4ea5f/Custom_Tile cfb2b2.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: cfb2b2 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.62478256 + posZ: 3.86000061 + rotX: 0.01687361 + rotY: 179.9987 + rotZ: 0.07993599 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 7 In the Clutches of Chaos e4ea5f/Custom_Tile df634c.yaml b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 7 In the Clutches of Chaos e4ea5f/Custom_Tile df634c.yaml new file mode 100644 index 000000000..fcddc5e1d --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 7 In the Clutches of Chaos e4ea5f/Custom_Tile df634c.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: df634c +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.336998 + posY: 1.61891234 + posZ: -2.419801 + rotX: 0.06841338 + rotY: 134.953415 + rotZ: 0.0459541753 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 7 In the Clutches of Chaos e4ea5f/Custom_Tile In the Clutches of Chaos e0709b.ttslua b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 7 In the Clutches of Chaos e4ea5f/Custom_Tile In the Clutches of Chaos e0709b.ttslua new file mode 100644 index 000000000..0c455ba9f --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 7 In the Clutches of Chaos e4ea5f/Custom_Tile In the Clutches of Chaos e0709b.ttslua @@ -0,0 +1,25 @@ +name = 'For the Greater Good' + +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 + +function standaloneClick() + Global.call('fillContainer', {object=self, key=name, mode='standalone'}) +end \ No newline at end of file diff --git a/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 7 In the Clutches of Chaos e4ea5f/Custom_Tile In the Clutches of Chaos e0709b.yaml b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 7 In the Clutches of Chaos e4ea5f/Custom_Tile In the Clutches of Chaos e0709b.yaml new file mode 100644 index 000000000..6fd871d52 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 7 In the Clutches of Chaos e4ea5f/Custom_Tile In the Clutches of Chaos e0709b.yaml @@ -0,0 +1,42 @@ +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: http://cloud-3.steamusercontent.com/ugc/949588657194710961/D864BCCCC1C811EC7F0AED69D1C30C678D3D9FC9/ + ImageURL: http://cloud-3.steamusercontent.com/ugc/965354846165100486/3DC8FCEF364B30758B09EF96AF9458F2B8E64D56/ + WidthScale: 0.0 +Description: click to set chaos token difficulty +GMNotes: '' +GUID: e0709b +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Tile In the Clutches of Chaos e0709b.ttslua' +LuaScriptState: '' +Name: Custom_Tile +Nickname: In the Clutches of Chaos +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.41610074 + posY: 1.58186924 + posZ: -14.896203 + rotX: 359.919739 + rotY: 270.0003 + rotZ: 0.0168374162 + scaleX: 2.2 + scaleY: 1.0 + scaleZ: 2.2 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 8 Before the Black Throne e1af76.ttslua b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 8 Before the Black Throne e1af76.ttslua new file mode 100644 index 000000000..ed7a62e7d --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 8 Before the Black Throne e1af76.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.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.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 \ No newline at end of file diff --git a/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 8 Before the Black Throne e1af76.yaml b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 8 Before the Black Throne e1af76.yaml new file mode 100644 index 000000000..124eb5914 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 8 Before the Black Throne e1af76.yaml @@ -0,0 +1,81 @@ +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 8 Before the Black Throne e1af76/Custom_Model_Bag Set-aside + a45247.yaml' +- !include 'Custom_Model_Bag 8 Before the Black Throne e1af76/Deck Encounter Deck + 308386.yaml' +- !include 'Custom_Model_Bag 8 Before the Black Throne e1af76/Card Cosmos a8d84d.yaml' +- !include 'Custom_Model_Bag 8 Before the Black Throne e1af76/Deck Act Deck a14586.yaml' +- !include 'Custom_Model_Bag 8 Before the Black Throne e1af76/Deck Agenda Deck 41010d.yaml' +- !include 'Custom_Model_Bag 8 Before the Black Throne e1af76/Card Azathoth c2cc36.yaml' +- !include 'Custom_Model_Bag 8 Before the Black Throne e1af76/Custom_Tile Before the + Black Throne b16392.yaml' +- !include 'Custom_Model_Bag 8 Before the Black Throne e1af76/Card Scenario c23159.yaml' +- !include 'Custom_Model_Bag 8 Before the Black Throne e1af76/Deck The Cosmos 752424.yaml' +- !include 'Custom_Model_Bag 8 Before the Black Throne e1af76/Card Cosmic Ingress + 910e54.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/784110538847462298/680FFE88F10AC7B0B77502DC95683D1FCFE653ED/ + MaterialIndex: 3 + MeshURL: https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj + NormalURL: '' + TypeIndex: 6 +Description: The Circle Undone +GMNotes: '' +GUID: e1af76 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Model_Bag 8 Before the Black Throne e1af76.ttslua' +LuaScriptState: '{"ml":{"308386":{"lock":false,"pos":{"x":-3.9277,"y":1.7717,"z":5.7572},"rot":{"x":359.9197,"y":270,"z":180.0168}},"41010d":{"lock":false,"pos":{"x":-2.7248,"y":1.6566,"z":0.3733},"rot":{"x":0.0168,"y":179.9999,"z":0.0803}},"752424":{"lock":false,"pos":{"x":-17.1201,"y":1.6739,"z":-7.7},"rot":{"x":359.9201,"y":270.0028,"z":0.0169}},"910e54":{"lock":false,"pos":{"x":-23.6763,"y":1.6885,"z":7.57},"rot":{"x":359.9201,"y":270,"z":0.0169}},"a14586":{"lock":false,"pos":{"x":-2.6886,"y":1.655,"z":-5.0485},"rot":{"x":0.0168,"y":179.9999,"z":0.0803}},"a45247":{"lock":false,"pos":{"x":1.6959,"y":1.5583,"z":14.2786},"rot":{"x":359.9551,"y":224.9981,"z":0.0687}},"a8d84d":{"lock":false,"pos":{"x":-3.9264,"y":1.666,"z":15.1913},"rot":{"x":359.9197,"y":270,"z":180.0168}},"b16392":{"lock":false,"pos":{"x":-3.3993,"y":1.5817,"z":-15.3519},"rot":{"x":359.9197,"y":270.0007,"z":0.0168}},"c23159":{"lock":false,"pos":{"x":-3.9559,"y":1.6556,"z":-10.4413},"rot":{"x":359.9197,"y":270.0524,"z":0.0168}},"c2cc36":{"lock":false,"pos":{"x":1.3267,"y":1.6514,"z":0.2369},"rot":{"x":359.9197,"y":270.0212,"z":0.0168}}}}' +MaterialIndex: -1 +MeshIndex: -1 +Name: Custom_Model_Bag +Nickname: '8: Before the Black Throne' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 12.2502022 + posY: 1.45514667 + posZ: -31.5308056 + rotX: 359.9201 + rotY: 270.0129 + rotZ: 0.01685566 + scaleX: 2.21 + scaleY: 0.46 + scaleZ: 2.42 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 8 Before the Black Throne e1af76/Card Azathoth c2cc36.yaml b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 8 Before the Black Throne e1af76/Card Azathoth c2cc36.yaml new file mode 100644 index 000000000..4b8ac1b04 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 8 Before the Black Throne e1af76/Card Azathoth c2cc36.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 369129 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '3691': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784110538844118232/E948D384460BD0291E7DC53C315709CF0E1321FE/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: The Primal Chaos +GMNotes: '' +GUID: c2cc36 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Azathoth +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 1.32670009 + posY: 1.65138638 + posZ: 0.236899734 + rotX: 359.919739 + rotY: 270.02124 + rotZ: 0.0168112479 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 8 Before the Black Throne e1af76/Card Cosmic Ingress 910e54.yaml b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 8 Before the Black Throne e1af76/Card Cosmic Ingress 910e54.yaml new file mode 100644 index 000000000..13a094e4c --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 8 Before the Black Throne e1af76/Card Cosmic Ingress 910e54.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 369438 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '3694': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/784110538844132994/8CD6465D48CC5909C15DF8CC02BB9060F593F1BA/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784110538847624119/AC326B629FA308B7F9C7E41069581A8D2B2D77B4/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Otherworld. +GMNotes: '' +GUID: 910e54 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Cosmic Ingress +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -23.6762981 + posY: 1.688458 + posZ: 7.57 + rotX: 359.9201 + rotY: 269.9999 + rotZ: 0.016876338 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 8 Before the Black Throne e1af76/Card Cosmos a8d84d.yaml b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 8 Before the Black Throne e1af76/Card Cosmos a8d84d.yaml new file mode 100644 index 000000000..6ab6e025d --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 8 Before the Black Throne e1af76/Card Cosmos a8d84d.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 369439 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '3694': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/784110538844132994/8CD6465D48CC5909C15DF8CC02BB9060F593F1BA/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784110538847624119/AC326B629FA308B7F9C7E41069581A8D2B2D77B4/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Otherworld. +GMNotes: '' +GUID: a8d84d +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Cosmos +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.92639971 + posY: 1.66596162 + posZ: 15.1913042 + rotX: 359.919739 + rotY: 269.999969 + rotZ: 180.01683 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 8 Before the Black Throne e1af76/Card Scenario c23159.yaml b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 8 Before the Black Throne e1af76/Card Scenario c23159.yaml new file mode 100644 index 000000000..30a4bf959 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 8 Before the Black Throne e1af76/Card Scenario c23159.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 368729 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '3687': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/784110538844100123/A9A0ACCD9ADB5C20745B6AB314C472ECAB71C300/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784110538844098999/61B68D9375F5BBC2974723215EC6855B5605EFD9/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Before the Black Throne +GMNotes: '' +GUID: c23159 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Scenario +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.9559 + posY: 1.655648 + posZ: -10.4413013 + rotX: 359.919739 + rotY: 270.052429 + rotZ: 0.016767418 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 8 Before the Black Throne e1af76/Custom_Model_Bag Set-aside a45247.yaml b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 8 Before the Black Throne e1af76/Custom_Model_Bag Set-aside a45247.yaml new file mode 100644 index 000000000..0c2d95ca4 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 8 Before the Black Throne e1af76/Custom_Model_Bag Set-aside a45247.yaml @@ -0,0 +1,58 @@ +Autoraise: true +ColorDiffuse: + b: 0.02148666 + g: 0.00100758043 + r: 0.02148666 +ContainedObjects: +- !include 'Custom_Model_Bag Set-aside a45247/Card Piper of Azatoth 092d86.yaml' +- !include 'Custom_Model_Bag Set-aside a45247/Card Cosmos 7a3ece.yaml' +- !include 'Custom_Model_Bag Set-aside a45247/Card Cosmos 311eb1.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: '' +GMNotes: '' +GUID: a45247 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +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.6959008 + posY: 1.55831778 + posZ: 14.2786016 + rotX: 359.955139 + rotY: 224.998047 + rotZ: 0.06867282 + scaleX: 2.0 + scaleY: 2.0 + scaleZ: 2.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 8 Before the Black Throne e1af76/Custom_Model_Bag Set-aside a45247/Card Cosmos 311eb1.yaml b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 8 Before the Black Throne e1af76/Custom_Model_Bag Set-aside a45247/Card Cosmos 311eb1.yaml new file mode 100644 index 000000000..69acfd821 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 8 Before the Black Throne e1af76/Custom_Model_Bag Set-aside a45247/Card Cosmos 311eb1.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 369444 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '3694': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/784110538844132994/8CD6465D48CC5909C15DF8CC02BB9060F593F1BA/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784110538847624119/AC326B629FA308B7F9C7E41069581A8D2B2D77B4/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Otherworld. +GMNotes: '' +GUID: 311eb1 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Cosmos +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 1.6964196 + posY: 3.73114252 + posZ: 14.2788334 + rotX: 359.948059 + rotY: 224.998062 + rotZ: 180.058319 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 8 Before the Black Throne e1af76/Custom_Model_Bag Set-aside a45247/Card Cosmos 7a3ece.yaml b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 8 Before the Black Throne e1af76/Custom_Model_Bag Set-aside a45247/Card Cosmos 7a3ece.yaml new file mode 100644 index 000000000..db55d6067 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 8 Before the Black Throne e1af76/Custom_Model_Bag Set-aside a45247/Card Cosmos 7a3ece.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 369445 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '3694': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/784110538844132994/8CD6465D48CC5909C15DF8CC02BB9060F593F1BA/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784110538847624119/AC326B629FA308B7F9C7E41069581A8D2B2D77B4/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Otherworld. +GMNotes: '' +GUID: 7a3ece +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Cosmos +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 1.69648683 + posY: 3.71621919 + posZ: 14.2788115 + rotX: 359.9606 + rotY: 224.998 + rotZ: 180.055725 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 8 Before the Black Throne e1af76/Custom_Model_Bag Set-aside a45247/Card Piper of Azatoth 092d86.yaml b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 8 Before the Black Throne e1af76/Custom_Model_Bag Set-aside a45247/Card Piper of Azatoth 092d86.yaml new file mode 100644 index 000000000..fbbb2825a --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 8 Before the Black Throne e1af76/Custom_Model_Bag Set-aside a45247/Card Piper of Azatoth 092d86.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 231803 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: Monster. Elite. +GMNotes: '' +GUID: 092d86 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Piper of Azatoth +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 35.2725334 + posY: 3.410345 + posZ: 71.10349 + rotX: 0.0197880846 + rotY: 269.9805 + rotZ: 0.0158734079 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 8 Before the Black Throne e1af76/Custom_Tile Before the Black Throne b16392.ttslua b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 8 Before the Black Throne e1af76/Custom_Tile Before the Black Throne b16392.ttslua new file mode 100644 index 000000000..0c455ba9f --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 8 Before the Black Throne e1af76/Custom_Tile Before the Black Throne b16392.ttslua @@ -0,0 +1,25 @@ +name = 'For the Greater Good' + +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 + +function standaloneClick() + Global.call('fillContainer', {object=self, key=name, mode='standalone'}) +end \ No newline at end of file diff --git a/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 8 Before the Black Throne e1af76/Custom_Tile Before the Black Throne b16392.yaml b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 8 Before the Black Throne e1af76/Custom_Tile Before the Black Throne b16392.yaml new file mode 100644 index 000000000..ef81fdbb1 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 8 Before the Black Throne e1af76/Custom_Tile Before the Black Throne b16392.yaml @@ -0,0 +1,42 @@ +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: http://cloud-3.steamusercontent.com/ugc/949588657194710961/D864BCCCC1C811EC7F0AED69D1C30C678D3D9FC9/ + ImageURL: http://cloud-3.steamusercontent.com/ugc/965354846165100486/3DC8FCEF364B30758B09EF96AF9458F2B8E64D56/ + WidthScale: 0.0 +Description: click to set chaos token difficulty +GMNotes: '' +GUID: b16392 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Tile Before the Black Throne b16392.ttslua' +LuaScriptState: '' +Name: Custom_Tile +Nickname: Before the Black Throne +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.39930034 + posY: 1.58171189 + posZ: -15.351902 + rotX: 359.919739 + rotY: 270.000732 + rotZ: 0.0168367457 + scaleX: 2.2 + scaleY: 1.0 + scaleZ: 2.2 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 8 Before the Black Throne e1af76/Deck Act Deck a14586.yaml b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 8 Before the Black Throne e1af76/Deck Act Deck a14586.yaml new file mode 100644 index 000000000..c02510ec6 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 8 Before the Black Throne e1af76/Deck Act Deck a14586.yaml @@ -0,0 +1,172 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 368835 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3688': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/784110538844100123/A9A0ACCD9ADB5C20745B6AB314C472ECAB71C300/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784110538844098999/61B68D9375F5BBC2974723215EC6855B5605EFD9/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 3 + GMNotes: '' + GUID: 44760d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: What Must Be Done + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 33.4550858 + posY: 1.53751588 + posZ: 77.87682 + rotX: 0.0165670067 + rotY: 180.000061 + rotZ: 179.979721 + 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: + '3688': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/784110538844100123/A9A0ACCD9ADB5C20745B6AB314C472ECAB71C300/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784110538844098999/61B68D9375F5BBC2974723215EC6855B5605EFD9/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 2 + GMNotes: '' + GUID: 263ac1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: In Azathoth's Domain + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 32.9625854 + posY: 1.50385928 + posZ: 77.5973053 + rotX: 0.02732806 + rotY: 180.002045 + rotZ: 179.9804 + 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: + '3688': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/784110538844100123/A9A0ACCD9ADB5C20745B6AB314C472ECAB71C300/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784110538844098999/61B68D9375F5BBC2974723215EC6855B5605EFD9/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 1 + GMNotes: '' + GUID: c5cae9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Cosmos Beckons + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 33.2288971 + posY: 1.3590883 + posZ: 77.75054 + rotX: 0.0151657 + rotY: 179.986511 + rotZ: 179.989563 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '3688': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/784110538844100123/A9A0ACCD9ADB5C20745B6AB314C472ECAB71C300/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784110538844098999/61B68D9375F5BBC2974723215EC6855B5605EFD9/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 368835 +- 368834 +- 368833 +Description: '' +GMNotes: '' +GUID: a14586 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Act Deck +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.6886 + posY: 1.65499747 + posZ: -5.04850054 + rotX: 0.0168352183 + rotY: 179.999939 + rotZ: 0.0802577361 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 8 Before the Black Throne e1af76/Deck Agenda Deck 41010d.yaml b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 8 Before the Black Throne e1af76/Deck Agenda Deck 41010d.yaml new file mode 100644 index 000000000..32852604a --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 8 Before the Black Throne e1af76/Deck Agenda Deck 41010d.yaml @@ -0,0 +1,172 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 368832 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3688': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/784110538844100123/A9A0ACCD9ADB5C20745B6AB314C472ECAB71C300/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784110538844098999/61B68D9375F5BBC2974723215EC6855B5605EFD9/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 3 + GMNotes: '' + GUID: a7d884 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Final Countdown + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 29.6161041 + posY: 1.52157807 + posZ: 81.59478 + rotX: 0.0170167852 + rotY: 180.000381 + rotZ: 179.97052 + 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: http://cloud-3.steamusercontent.com/ugc/784110538844100123/A9A0ACCD9ADB5C20745B6AB314C472ECAB71C300/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784110538844098999/61B68D9375F5BBC2974723215EC6855B5605EFD9/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 2 + GMNotes: '' + GUID: d14e41 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: It Awaits + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 27.12275 + posY: 1.49183035 + posZ: 73.28463 + rotX: 0.0107065951 + rotY: 180.021 + rotZ: 359.9565 + 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: http://cloud-3.steamusercontent.com/ugc/784110538844100123/A9A0ACCD9ADB5C20745B6AB314C472ECAB71C300/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784110538844098999/61B68D9375F5BBC2974723215EC6855B5605EFD9/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 1 + GMNotes: '' + GUID: aac284 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: "WHEEL OF FORTUNE \xB7 X" + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 32.4442558 + posY: 1.51944351 + posZ: 81.19754 + rotX: 0.02509384 + rotY: 180.0 + rotZ: 359.9623 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '3688': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/784110538844100123/A9A0ACCD9ADB5C20745B6AB314C472ECAB71C300/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784110538844098999/61B68D9375F5BBC2974723215EC6855B5605EFD9/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 368832 +- 368831 +- 368830 +Description: '' +GMNotes: '' +GUID: 41010d +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Agenda Deck +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.72479987 + posY: 1.65664124 + posZ: 0.373300254 + rotX: 0.0168351345 + rotY: 179.999908 + rotZ: 0.0802577659 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 8 Before the Black Throne e1af76/Deck Encounter Deck 308386.yaml b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 8 Before the Black Throne e1af76/Deck Encounter Deck 308386.yaml new file mode 100644 index 000000000..40e41df96 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 8 Before the Black Throne e1af76/Deck Encounter Deck 308386.yaml @@ -0,0 +1,1354 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 369134 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3691': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784110538844118232/E948D384460BD0291E7DC53C315709CF0E1321FE/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. + GMNotes: '' + GUID: 97fa36 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Mindless Dancer + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 27.1961613 + posY: 1.51052463 + posZ: 75.40924 + rotX: 0.02553703 + rotY: 270.00946 + rotZ: 0.009734581 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 369134 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3691': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784110538844118232/E948D384460BD0291E7DC53C315709CF0E1321FE/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. + GMNotes: '' + GUID: '892799' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Mindless Dancer + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 26.83129 + posY: 1.35331261 + posZ: 75.2230759 + rotX: 0.02116842 + rotY: 270.00946 + rotZ: 0.0145142619 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3623 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Cultist. + GMNotes: '' + GUID: c70e63 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Acolyte + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 98.97962 + posY: 1.55247211 + posZ: 16.3414173 + rotX: 359.99057 + rotY: 269.9967 + rotZ: 359.984833 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 369131 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3691': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784110538844118232/E948D384460BD0291E7DC53C315709CF0E1321FE/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Endtimes. + GMNotes: '' + GUID: f8cfe7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The End is Nigh! + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 26.82527 + posY: 1.47165251 + posZ: 75.17854 + rotX: 0.0233987048 + rotY: 270.022919 + rotZ: 0.01573934 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 369133 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3691': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784110538844118232/E948D384460BD0291E7DC53C315709CF0E1321FE/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Power. + GMNotes: '' + GUID: 99b040 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ultimate Chaos + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 27.0071526 + posY: 1.50224555 + posZ: 75.08285 + rotX: 0.0144073488 + rotY: 270.0216 + rotZ: 0.0137497745 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231804 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Power. Terror. + GMNotes: '' + GUID: f79968 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Daemonic Piping + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 32.13641 + posY: 1.67431533 + posZ: 67.64259 + rotX: 0.002807944 + rotY: 270.002472 + rotZ: 0.0201477651 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231823 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Omen. Spectral. + GMNotes: '' + GUID: 717c42 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Fate of All Fools + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -24.6707478 + posY: 1.76058781 + posZ: -33.23441 + rotX: 359.465271 + rotY: 269.459351 + rotZ: 9.029153 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3625 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: df668b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Mysterious Chanting + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 99.2046661 + posY: 1.54923761 + posZ: 15.9180088 + rotX: 359.989929 + rotY: 270.0 + rotZ: 359.98764 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 369133 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3691': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784110538844118232/E948D384460BD0291E7DC53C315709CF0E1321FE/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Power. + GMNotes: '' + GUID: 99b040 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ultimate Chaos + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 26.2738438 + posY: 1.51910114 + posZ: 75.7763443 + rotX: 0.0268196836 + rotY: 270.00943 + rotZ: 0.00688381027 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12120 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '121': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: e0f4c0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ancient Evils + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 115.309677 + posY: 1.40331125 + posZ: 1.5845021 + rotX: 359.987427 + rotY: 270.0 + rotZ: 359.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231804 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Power. Terror. + GMNotes: '' + GUID: f84e0e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Daemonic Piping + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -29.3314133 + posY: 1.583834 + posZ: -34.59758 + rotX: 359.916046 + rotY: 269.966034 + rotZ: 0.0159121323 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3625 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: 6f5b7b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Mysterious Chanting + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 98.78452 + posY: 1.40295327 + posZ: 16.366806 + rotX: 359.987427 + rotY: 269.999817 + rotZ: 359.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 369134 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3691': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784110538844118232/E948D384460BD0291E7DC53C315709CF0E1321FE/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. + GMNotes: '' + GUID: '892799' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Mindless Dancer + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 27.1961956 + posY: 1.524544 + posZ: 75.40927 + rotX: 0.0189705323 + rotY: 270.00946 + rotZ: 0.01297347 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 369131 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3691': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784110538844118232/E948D384460BD0291E7DC53C315709CF0E1321FE/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Endtimes. + GMNotes: '' + GUID: f8cfe7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The End is Nigh! + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 27.00521 + posY: 1.49737585 + posZ: 75.26165 + rotX: 0.02033227 + rotY: 270.023071 + rotZ: 0.0153790619 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3623 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Cultist. + GMNotes: '' + GUID: c70e63 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Acolyte + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 98.93172 + posY: 1.556378 + posZ: 15.9665985 + rotX: 359.989929 + rotY: 269.999969 + rotZ: 359.98764 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231823 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Omen. Spectral. + GMNotes: '' + GUID: fbcb9f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Fate of All Fools + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -23.46502 + posY: 2.16774321 + posZ: -34.8072357 + rotX: 0.232217044 + rotY: 270.777466 + rotZ: 353.199249 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12120 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '121': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: 1921c5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ancient Evils + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 115.318665 + posY: 1.5414474 + posZ: 1.587292 + rotX: 359.989929 + rotY: 270.000031 + rotZ: 359.9876 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 369130 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3691': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784110538844118232/E948D384460BD0291E7DC53C315709CF0E1321FE/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Endtimes. + GMNotes: '' + GUID: a7dd13 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: A World in Darkness + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 26.9027119 + posY: 1.49093223 + posZ: 74.82743 + rotX: 0.0201691929 + rotY: 269.983276 + rotZ: 0.0146726873 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 369132 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3691': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784110538844118232/E948D384460BD0291E7DC53C315709CF0E1321FE/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Pact. + GMNotes: '' + GUID: bec23e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Whispered Bargain + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 26.1838646 + posY: 1.5230999 + posZ: 75.33933 + rotX: 0.0202491973 + rotY: 270.003174 + rotZ: 0.0142255416 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231823 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Omen. Spectral. + GMNotes: '' + GUID: ef132d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Fate of All Fools + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -24.7152367 + posY: 1.91512489 + posZ: -32.59262 + rotX: 359.910583 + rotY: 269.364441 + rotZ: 341.912537 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 369130 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3691': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784110538844118232/E948D384460BD0291E7DC53C315709CF0E1321FE/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Endtimes. + GMNotes: '' + GUID: a7dd13 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: A World in Darkness + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 26.9910221 + posY: 1.49399364 + posZ: 74.62291 + rotX: 0.0125041958 + rotY: 270.003937 + rotZ: 0.0224464256 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 369133 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3691': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784110538844118232/E948D384460BD0291E7DC53C315709CF0E1321FE/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Power. + GMNotes: '' + GUID: 99b040 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ultimate Chaos + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 26.3793659 + posY: 1.521326 + posZ: 75.6197739 + rotX: 0.0247275848 + rotY: 270.00943 + rotZ: 0.0109192254 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3624 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Cultist. + GMNotes: '' + GUID: 159f90 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Wizard of the Order + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 98.45666 + posY: 1.55439174 + posZ: 16.9464512 + rotX: 1.20685 + rotY: 269.9761 + rotZ: 357.846649 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12120 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '121': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: 61e841 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ancient Evils + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 114.991905 + posY: 1.59937644 + posZ: 1.31244183 + rotX: 1.97711754 + rotY: 270.070251 + rotZ: 359.990356 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231822 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. Spectral. + GMNotes: '' + GUID: 1a350a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Terror in the Night + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -23.6618786 + posY: 2.18380141 + posZ: -35.4214439 + rotX: 359.156219 + rotY: 270.890381 + rotZ: 355.0201 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231822 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. Spectral. + GMNotes: '' + GUID: 43ba03 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Terror in the Night + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -24.27985 + posY: 1.99979043 + posZ: -34.2781525 + rotX: 359.187378 + rotY: 270.910339 + rotZ: 355.236023 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231804 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Power. Terror. + GMNotes: '' + GUID: 397fce + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Daemonic Piping + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -29.403286 + posY: 1.77933121 + posZ: -35.6114159 + rotX: 359.909668 + rotY: 269.9743 + rotZ: 0.0608307645 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3623 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Cultist. + GMNotes: '' + GUID: 4072d7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Acolyte + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 99.0756 + posY: 1.55269325 + posZ: 16.03813 + rotX: 359.989929 + rotY: 270.0 + rotZ: 359.9876 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 369132 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3691': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784110538844118232/E948D384460BD0291E7DC53C315709CF0E1321FE/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Pact. + GMNotes: '' + GUID: bec23e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Whispered Bargain + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 27.1292152 + posY: 1.5078367 + posZ: 74.87716 + rotX: 0.01768027 + rotY: 270.0032 + rotZ: 0.0175336991 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231822 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. Spectral. + GMNotes: '' + GUID: 4f41b0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Terror in the Night + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -24.3842 + posY: 2.1039958 + posZ: -34.9055138 + rotX: 359.182831 + rotY: 270.902466 + rotZ: 355.1978 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '121': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '3691': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784110538844118232/E948D384460BD0291E7DC53C315709CF0E1321FE/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 369134 +- 369134 +- 3623 +- 369131 +- 369133 +- 231804 +- 231823 +- 3625 +- 369133 +- 12120 +- 231804 +- 3625 +- 369134 +- 369131 +- 3623 +- 231823 +- 12120 +- 369130 +- 369132 +- 231823 +- 369130 +- 369133 +- 3624 +- 12120 +- 231822 +- 231822 +- 231804 +- 3623 +- 369132 +- 231822 +Description: '' +GMNotes: '' +GUID: '308386' +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Encounter Deck +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.92770028 + posY: 1.77170992 + posZ: 5.75720072 + rotX: 359.919739 + rotY: 270.0 + rotZ: 180.016815 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 8 Before the Black Throne e1af76/Deck The Cosmos 752424.yaml b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 8 Before the Black Throne e1af76/Deck The Cosmos 752424.yaml new file mode 100644 index 000000000..057f50127 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag 8 Before the Black Throne e1af76/Deck The Cosmos 752424.yaml @@ -0,0 +1,559 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 369446 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3693': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/784110538844132994/8CD6465D48CC5909C15DF8CC02BB9060F593F1BA/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784110538847624119/AC326B629FA308B7F9C7E41069581A8D2B2D77B4/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Otherworld. + GMNotes: '' + GUID: 1a0ad2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Cosmos + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 25.7866783 + posY: 1.50211155 + posZ: 80.19073 + rotX: 0.0416825265 + rotY: 269.934662 + rotZ: 180.046219 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 369443 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3693': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/784110538844132994/8CD6465D48CC5909C15DF8CC02BB9060F593F1BA/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784110538847624119/AC326B629FA308B7F9C7E41069581A8D2B2D77B4/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Otherworld. + GMNotes: '' + GUID: 3cb235 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Cosmos + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 25.8718376 + posY: 1.765196 + posZ: 81.15501 + rotX: 0.0277312379 + rotY: 269.9878 + rotZ: 179.152924 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 369446 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3694': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/784110538844132994/8CD6465D48CC5909C15DF8CC02BB9060F593F1BA/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784110538847624119/AC326B629FA308B7F9C7E41069581A8D2B2D77B4/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Otherworld. + GMNotes: '' + GUID: 4e8ae3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Cosmos + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -12.6602125 + posY: 1.82060313 + posZ: 7.400929 + rotX: 359.939331 + rotY: 270.003479 + rotZ: 0.0173203982 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 369442 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3693': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/784110538844132994/8CD6465D48CC5909C15DF8CC02BB9060F593F1BA/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784110538847624119/AC326B629FA308B7F9C7E41069581A8D2B2D77B4/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Otherworld. + GMNotes: '' + GUID: af7186 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Cosmos + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 25.8633728 + posY: 1.75881338 + posZ: 80.81227 + rotX: 359.965759 + rotY: 270.0135 + rotZ: 183.539963 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 369440 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3693': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/784110538844132994/8CD6465D48CC5909C15DF8CC02BB9060F593F1BA/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784110538847624119/AC326B629FA308B7F9C7E41069581A8D2B2D77B4/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Otherworld. + GMNotes: '' + GUID: 30fc53 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Cosmos + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 25.80183 + posY: 1.56914055 + posZ: 81.8392639 + rotX: 0.0901726261 + rotY: 269.989746 + rotZ: 174.203156 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 369442 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3693': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/784110538844132994/8CD6465D48CC5909C15DF8CC02BB9060F593F1BA/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784110538847624119/AC326B629FA308B7F9C7E41069581A8D2B2D77B4/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Otherworld. + GMNotes: '' + GUID: 2ec90f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Cosmos + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 25.8266087 + posY: 1.64924 + posZ: 81.20057 + rotX: 0.0271498263 + rotY: 270.009827 + rotZ: 180.019913 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 369443 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3693': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/784110538844132994/8CD6465D48CC5909C15DF8CC02BB9060F593F1BA/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784110538847624119/AC326B629FA308B7F9C7E41069581A8D2B2D77B4/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Otherworld. + GMNotes: '' + GUID: 3cb235 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Cosmos + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 25.7772255 + posY: 1.67048526 + posZ: 81.4754639 + rotX: 0.0305660572 + rotY: 269.986816 + rotZ: 177.442657 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 369442 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3693': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/784110538844132994/8CD6465D48CC5909C15DF8CC02BB9060F593F1BA/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784110538847624119/AC326B629FA308B7F9C7E41069581A8D2B2D77B4/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Otherworld. + GMNotes: '' + GUID: 4a7eac + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Cosmos + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 25.8354111 + posY: 1.59674382 + posZ: 80.58062 + rotX: 359.941284 + rotY: 269.976563 + rotZ: 183.790771 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 369443 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3693': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/784110538844132994/8CD6465D48CC5909C15DF8CC02BB9060F593F1BA/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784110538847624119/AC326B629FA308B7F9C7E41069581A8D2B2D77B4/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Otherworld. + GMNotes: '' + GUID: 3cb235 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Cosmos + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 25.8071117 + posY: 1.58692122 + posZ: 81.6339645 + rotX: 0.110584244 + rotY: 269.9804 + rotZ: 174.4053 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 369441 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3694': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/784110538844132994/8CD6465D48CC5909C15DF8CC02BB9060F593F1BA/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784110538847624119/AC326B629FA308B7F9C7E41069581A8D2B2D77B4/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Otherworld. + GMNotes: '' + GUID: '435152' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Cosmos + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 25.7674541 + posY: 1.50622034 + posZ: 85.7123 + rotX: 0.0207059048 + rotY: 269.998566 + rotZ: 180.017822 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 369440 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3693': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/784110538844132994/8CD6465D48CC5909C15DF8CC02BB9060F593F1BA/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784110538847624119/AC326B629FA308B7F9C7E41069581A8D2B2D77B4/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Otherworld. + GMNotes: '' + GUID: 8f3e16 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Cosmos + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 25.68824 + posY: 1.5909071 + posZ: 81.73422 + rotX: 0.08713126 + rotY: 269.992065 + rotZ: 174.381149 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 369440 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3694': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/784110538844132994/8CD6465D48CC5909C15DF8CC02BB9060F593F1BA/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784110538847624119/AC326B629FA308B7F9C7E41069581A8D2B2D77B4/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Otherworld. + GMNotes: '' + GUID: a89dbf + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Cosmos + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -12.476862 + posY: 1.82039285 + posZ: 7.371406 + rotX: 359.93866 + rotY: 270.000671 + rotZ: 0.01858811 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '3694': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/784110538844132994/8CD6465D48CC5909C15DF8CC02BB9060F593F1BA/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784110538847624119/AC326B629FA308B7F9C7E41069581A8D2B2D77B4/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 369446 +- 369443 +- 369446 +- 369442 +- 369440 +- 369442 +- 369443 +- 369442 +- 369443 +- 369441 +- 369440 +- 369440 +Description: '' +GMNotes: '' +GUID: '752424' +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: The Cosmos +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -17.1201 + posY: 1.673901 + posZ: -7.70000029 + rotX: 359.9201 + rotY: 270.0028 + rotZ: 0.01687265 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag Prologue Disappearance at the Twilight Estate 2f008a.ttslua b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag Prologue Disappearance at the Twilight Estate 2f008a.ttslua new file mode 100644 index 000000000..46067f58e --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag Prologue Disappearance at the Twilight Estate 2f008a.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.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.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 Circle Undone 61e777/Custom_Model_Bag Prologue Disappearance at the Twilight Estate 2f008a.yaml b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag Prologue Disappearance at the Twilight Estate 2f008a.yaml new file mode 100644 index 000000000..fb23c965d --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag Prologue Disappearance at the Twilight Estate 2f008a.yaml @@ -0,0 +1,87 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +ContainedObjects: +- !include 'Custom_Model_Bag Prologue Disappearance at the Twilight Estate 2f008a/Deck + Encounter Deck 8f704c.yaml' +- !include 'Custom_Model_Bag Prologue Disappearance at the Twilight Estate 2f008a/Card + The Disappearance f4f8dc.yaml' +- !include "Custom_Model_Bag Prologue Disappearance at the Twilight Estate 2f008a/Card\ + \ JUDGMENT \xB7 XX aa1331.yaml" +- !include 'Custom_Model_Bag Prologue Disappearance at the Twilight Estate 2f008a/Card + Scenario f2806a.yaml' +- !include 'Custom_Model_Bag Prologue Disappearance at the Twilight Estate 2f008a/Custom_Tile + The Circle Undone 05f912.yaml' +- !include 'Custom_Model_Bag Prologue Disappearance at the Twilight Estate 2f008a/Bag + Neutral Investigators fa2600.yaml' +- !include 'Custom_Model_Bag Prologue Disappearance at the Twilight Estate 2f008a/Card + Office 060886.yaml' +- !include 'Custom_Model_Bag Prologue Disappearance at the Twilight Estate 2f008a/Card + Trophy Room f5616e.yaml' +- !include 'Custom_Model_Bag Prologue Disappearance at the Twilight Estate 2f008a/Card + Victorian Halls 94ef8e.yaml' +- !include 'Custom_Model_Bag Prologue Disappearance at the Twilight Estate 2f008a/Card + Billiards Room 349eb6.yaml' +- !include 'Custom_Model_Bag Prologue Disappearance at the Twilight Estate 2f008a/Card + Master Bedroom 327f3b.yaml' +- !include 'Custom_Model_Bag Prologue Disappearance at the Twilight Estate 2f008a/Custom_Tile 9dd605.yaml' +- !include 'Custom_Model_Bag Prologue Disappearance at the Twilight Estate 2f008a/Card + Balcony 3b69ae.yaml' +- !include 'Custom_Model_Bag Prologue Disappearance at the Twilight Estate 2f008a/Custom_Tile 62c1c6.yaml' +- !include 'Custom_Model_Bag Prologue Disappearance at the Twilight Estate 2f008a/Custom_Tile e4fd93.yaml' +- !include 'Custom_Model_Bag Prologue Disappearance at the Twilight Estate 2f008a/Custom_Tile a6d5fb.yaml' +- !include 'Custom_Model_Bag Prologue Disappearance at the Twilight Estate 2f008a/Custom_Tile 6913e9.yaml' +- !include 'Custom_Model_Bag Prologue Disappearance at the Twilight Estate 2f008a/Custom_Tile 7234af.yaml' +- !include 'Custom_Model_Bag Prologue Disappearance at the Twilight Estate 2f008a/Card + Entry Hall 7cb46b.yaml' +- !include 'Custom_Model_Bag Prologue Disappearance at the Twilight Estate 2f008a/Card + The Spectral Watcher a1eb9b.yaml' +CustomMesh: + CastShadows: true + ColliderURL: '' + Convex: true + CustomShader: + FresnelStrength: 0.0 + SpecularColor: + b: 0.0 + g: 0.0 + r: 0.0 + SpecularIntensity: 0.0 + SpecularSharpness: 2.0 + DiffuseURL: http://cloud-3.steamusercontent.com/ugc/829135118401802201/BBA2D56684DEDDE1029593B9CD9C931FAE39348B/ + MaterialIndex: 3 + MeshURL: https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj + NormalURL: '' + TypeIndex: 6 +Description: The Circle Undone +GMNotes: '' +GUID: 2f008a +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Model_Bag Prologue Disappearance at the Twilight Estate + 2f008a.ttslua' +LuaScriptState: '{"ml":{"05f912":{"lock":false,"pos":{"x":-3.7579,"y":1.5825,"z":-14.3157},"rot":{"x":359.9197,"y":270.0054,"z":0.0168}},"060886":{"lock":false,"pos":{"x":-17.1199,"y":1.6771,"z":-0.03},"rot":{"x":359.9201,"y":269.9998,"z":0.0169}},"327f3b":{"lock":false,"pos":{"x":-23.6765,"y":1.684,"z":-7.7},"rot":{"x":359.9201,"y":269.9996,"z":0.0169}},"349eb6":{"lock":false,"pos":{"x":-23.6764,"y":1.6907,"z":15.19},"rot":{"x":359.9201,"y":269.9997,"z":0.0169}},"3b69ae":{"lock":false,"pos":{"x":-23.6767,"y":1.6817,"z":-15.28},"rot":{"x":359.9201,"y":269.9995,"z":0.0169}},"62c1c6":{"lock":false,"pos":{"x":-23.6765,"y":1.6134,"z":-3.83},"rot":{"x":0.0169,"y":179.9996,"z":0.0799}},"6913e9":{"lock":false,"pos":{"x":-20.4586,"y":1.61,"z":-0.0349},"rot":{"x":0.0799,"y":89.9997,"z":359.9831}},"7234af":{"lock":false,"pos":{"x":-27.2548,"y":1.6194,"z":-0.19},"rot":{"x":359.9201,"y":269.9944,"z":0.0169}},"7cb46b":{"lock":false,"pos":{"x":-30.2242,"y":1.6954,"z":-0.03},"rot":{"x":359.9201,"y":269.9999,"z":0.0169}},"8f704c":{"lock":false,"pos":{"x":-3.9277,"y":1.7157,"z":5.7571},"rot":{"x":359.9197,"y":270.0049,"z":0.0168}},"94ef8e":{"lock":false,"pos":{"x":-23.6765,"y":1.6862,"z":-0.03},"rot":{"x":359.9201,"y":270,"z":0.0169}},"9dd605":{"lock":false,"pos":{"x":-23.6765,"y":1.6111,"z":-11.51},"rot":{"x":0.0169,"y":179.9998,"z":0.0799}},"a1eb9b":{"lock":false,"pos":{"x":-30.2243,"y":1.6965,"z":3.86},"rot":{"x":359.9201,"y":269.9997,"z":0.0169}},"a6d5fb":{"lock":false,"pos":{"x":-23.6765,"y":1.6157,"z":3.86},"rot":{"x":0.0169,"y":179.9995,"z":0.0799}},"aa1331":{"lock":false,"pos":{"x":-2.7248,"y":1.6571,"z":0.3733},"rot":{"x":0.0168,"y":180.0011,"z":0.0803}},"e4fd93":{"lock":false,"pos":{"x":-23.6765,"y":1.6179,"z":11.46},"rot":{"x":0.0169,"y":180,"z":0.0799}},"f2806a":{"lock":false,"pos":{"x":-3.9559,"y":1.6556,"z":-10.4412},"rot":{"x":359.9197,"y":270,"z":0.0168}},"f4f8dc":{"lock":false,"pos":{"x":-2.6886,"y":1.6555,"z":-5.0485},"rot":{"x":0.0168,"y":180,"z":0.0803}},"f5616e":{"lock":false,"pos":{"x":-23.6765,"y":1.6885,"z":7.57},"rot":{"x":359.9201,"y":269.9998,"z":0.0169}},"fa2600":{"lock":false,"pos":{"x":-12.2948,"y":1.4158,"z":7.4542},"rot":{"x":359.9831,"y":-0.0002,"z":359.92}}}}' +MaterialIndex: -1 +MeshIndex: -1 +Name: Custom_Model_Bag +Nickname: 'Prologue: Disappearance at the Twilight Estate' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 12.2514009 + posY: 1.473269 + posZ: 30.018404 + rotX: 359.920135 + rotY: 270.004028 + rotZ: 0.0168678779 + scaleX: 2.21 + scaleY: 0.46 + scaleZ: 2.42 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag Prologue Disappearance at the Twilight Estate 2f008a/Bag Neutral Investigators fa2600.yaml b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag Prologue Disappearance at the Twilight Estate 2f008a/Bag Neutral Investigators fa2600.yaml new file mode 100644 index 000000000..e78cec7f3 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag Prologue Disappearance at the Twilight Estate 2f008a/Bag Neutral Investigators fa2600.yaml @@ -0,0 +1,39 @@ +Autoraise: true +ColorDiffuse: + b: 0.0 + g: 0.366520882 + r: 0.7058823 +ContainedObjects: +- !include 'Bag Neutral Investigators fa2600/Bag Gavriella Mizrah 0e30b9.yaml' +- !include 'Bag Neutral Investigators fa2600/Bag Jerome Davids 886e03.yaml' +- !include 'Bag Neutral Investigators fa2600/Bag Valentino Rivas d4a4b4.yaml' +- !include 'Bag Neutral Investigators fa2600/Bag Penny White da417c.yaml' +Description: '' +GMNotes: '' +GUID: fa2600 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +MeshIndex: -1 +Name: Bag +Nickname: Neutral Investigators +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -12.2948 + posY: 1.4158051 + posZ: 7.454201 + rotX: 359.983124 + rotY: -0.000205736433 + rotZ: 359.920044 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag Prologue Disappearance at the Twilight Estate 2f008a/Bag Neutral Investigators fa2600/Bag Gavriella Mizrah 0e30b9.yaml b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag Prologue Disappearance at the Twilight Estate 2f008a/Bag Neutral Investigators fa2600/Bag Gavriella Mizrah 0e30b9.yaml new file mode 100644 index 000000000..7f907f6e0 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag Prologue Disappearance at the Twilight Estate 2f008a/Bag Neutral Investigators fa2600/Bag Gavriella Mizrah 0e30b9.yaml @@ -0,0 +1,40 @@ +Autoraise: true +ColorDiffuse: + b: 0.0 + g: 0.366520882 + r: 0.7058823 +ContainedObjects: +- !include 'Bag Gavriella Mizrah 0e30b9/Deck Opening Hand 281d29.yaml' +- !include 'Bag Gavriella Mizrah 0e30b9/Card Physical Training 1165db.yaml' +- !include 'Bag Gavriella Mizrah 0e30b9/Card .45 Automatic 12660b.yaml' +- !include 'Bag Gavriella Mizrah 0e30b9/Card 0feaae.yaml' +- !include 'Bag Gavriella Mizrah 0e30b9/Card Gavriella Mizrah 8a83e8.yaml' +Description: '' +GMNotes: '' +GUID: 0e30b9 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +MeshIndex: -1 +Name: Bag +Nickname: Gavriella Mizrah +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 26.3065453 + posY: 3.29357 + posZ: -9.469313 + rotX: 1.42241311 + rotY: 359.957733 + rotZ: 357.492 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag Prologue Disappearance at the Twilight Estate 2f008a/Bag Neutral Investigators fa2600/Bag Gavriella Mizrah 0e30b9/Card 0feaae.yaml b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag Prologue Disappearance at the Twilight Estate 2f008a/Bag Neutral Investigators fa2600/Bag Gavriella Mizrah 0e30b9/Card 0feaae.yaml new file mode 100644 index 000000000..0bebd978d --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag Prologue Disappearance at the Twilight Estate 2f008a/Bag Neutral Investigators fa2600/Bag Gavriella Mizrah 0e30b9/Card 0feaae.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 281003 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2810': + BackIsHidden: true + BackURL: https://i.imgur.com/tHE0Iz1.jpg + FaceURL: https://i.imgur.com/lGTlFGx.jpg + NumHeight: 2 + NumWidth: 2 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 0feaae +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 38.7383156 + posY: 3.31823277 + posZ: -19.4288616 + rotX: 359.920135 + rotY: 269.999847 + rotZ: 0.0168620888 + scaleX: 0.452574432 + scaleY: 1.0 + scaleZ: 0.452574432 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag Prologue Disappearance at the Twilight Estate 2f008a/Bag Neutral Investigators fa2600/Bag Gavriella Mizrah 0e30b9/Card .45 Automatic 12660b.yaml b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag Prologue Disappearance at the Twilight Estate 2f008a/Bag Neutral Investigators fa2600/Bag Gavriella Mizrah 0e30b9/Card .45 Automatic 12660b.yaml new file mode 100644 index 000000000..64c955367 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag Prologue Disappearance at the Twilight Estate 2f008a/Bag Neutral Investigators fa2600/Bag Gavriella Mizrah 0e30b9/Card .45 Automatic 12660b.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 12660b +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: .45 Automatic +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 34.7973251 + posY: 3.324777 + posZ: -15.8624535 + rotX: 359.920135 + rotY: 269.9996 + rotZ: 0.016867958 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag Prologue Disappearance at the Twilight Estate 2f008a/Bag Neutral Investigators fa2600/Bag Gavriella Mizrah 0e30b9/Card Gavriella Mizrah 8a83e8.yaml b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag Prologue Disappearance at the Twilight Estate 2f008a/Bag Neutral Investigators fa2600/Bag Gavriella Mizrah 0e30b9/Card Gavriella Mizrah 8a83e8.yaml new file mode 100644 index 000000000..d4a3d32ee --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag Prologue Disappearance at the Twilight Estate 2f008a/Bag Neutral Investigators fa2600/Bag Gavriella Mizrah 0e30b9/Card Gavriella Mizrah 8a83e8.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 232003 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/829135524526797029/1F8A6C29028AED32DB44E4CF22E3120C417F413D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526785922/F34A644AC467C751B6D7B8AF398B8FDB07CCF6A0/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Private Security +GMNotes: '' +GUID: 8a83e8 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Gavriella Mizrah +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 32.6476936 + posY: 3.5249207 + posZ: -24.765955 + rotX: 1.92433882 + rotY: 180.085037 + rotZ: 3.40546966 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag Prologue Disappearance at the Twilight Estate 2f008a/Bag Neutral Investigators fa2600/Bag Gavriella Mizrah 0e30b9/Card Physical Training 1165db.yaml b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag Prologue Disappearance at the Twilight Estate 2f008a/Bag Neutral Investigators fa2600/Bag Gavriella Mizrah 0e30b9/Card Physical Training 1165db.yaml new file mode 100644 index 000000000..799305998 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag Prologue Disappearance at the Twilight Estate 2f008a/Bag Neutral Investigators fa2600/Bag Gavriella Mizrah 0e30b9/Card Physical Training 1165db.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 1165db +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Physical Training +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 35.6639748 + posY: 3.32260823 + posZ: -19.1232128 + rotX: 359.920135 + rotY: 269.999756 + rotZ: 0.0168644935 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag Prologue Disappearance at the Twilight Estate 2f008a/Bag Neutral Investigators fa2600/Bag Gavriella Mizrah 0e30b9/Deck Opening Hand 281d29.yaml b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag Prologue Disappearance at the Twilight Estate 2f008a/Bag Neutral Investigators fa2600/Bag Gavriella Mizrah 0e30b9/Deck Opening Hand 281d29.yaml new file mode 100644 index 000000000..cebb63a86 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag Prologue Disappearance at the Twilight Estate 2f008a/Bag Neutral Investigators fa2600/Bag Gavriella Mizrah 0e30b9/Deck Opening Hand 281d29.yaml @@ -0,0 +1,351 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 5cd622 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: First Aid + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 4.631482 + posY: 1.344554 + posZ: 72.72989 + rotX: 0.0208172444 + rotY: 269.969421 + rotZ: 0.0167602915 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 08bdf1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Guard Dog + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 4.516396 + posY: 1.34366512 + posZ: 69.83648 + rotX: 0.0208185278 + rotY: 269.9694 + rotZ: 0.0167605374 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 2db518 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Evidence! + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 4.567363 + posY: 1.34280407 + posZ: 66.83125 + rotX: 0.020799987 + rotY: 270.027039 + rotZ: 0.0167772286 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: e0dff3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dodge + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 4.3307 + posY: 1.34025061 + posZ: 58.4018 + rotX: 0.0208008438 + rotY: 270.027039 + rotZ: 0.01677944 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: f60263 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Extra Ammunition (1) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 4.14204025 + posY: 1.33948767 + posZ: 56.0293541 + rotX: 0.0208072253 + rotY: 269.999847 + rotZ: 0.0167742968 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 273707 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 83ad4d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Delay the Inevitable + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 5.00387335 + posY: 1.50773728 + posZ: 72.87777 + rotX: 0.020830743 + rotY: 270.027039 + rotZ: 0.0169054624 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 273707 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 74788f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Delay the Inevitable + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 5.003854 + posY: 1.456672 + posZ: 72.87767 + rotX: 0.0194944441 + rotY: 270.026917 + rotZ: 0.0161545 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2263': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '2737': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025943109/9C5481E6DFEACD450C5522F884E615482281DDB1/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 226324 +- 226326 +- 226309 +- 226313 +- 226337 +- 273707 +- 273707 +Description: '' +GMNotes: '' +GUID: 281d29 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Opening Hand +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 34.1210976 + posY: 3.3517437 + posZ: -12.8516035 + rotX: 357.597778 + rotY: 270.0035 + rotZ: 359.817932 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag Prologue Disappearance at the Twilight Estate 2f008a/Bag Neutral Investigators fa2600/Bag Jerome Davids 886e03.yaml b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag Prologue Disappearance at the Twilight Estate 2f008a/Bag Neutral Investigators fa2600/Bag Jerome Davids 886e03.yaml new file mode 100644 index 000000000..9b17b9c35 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag Prologue Disappearance at the Twilight Estate 2f008a/Bag Neutral Investigators fa2600/Bag Jerome Davids 886e03.yaml @@ -0,0 +1,38 @@ +Autoraise: true +ColorDiffuse: + b: 0.0 + g: 0.366520882 + r: 0.7058823 +ContainedObjects: +- !include 'Bag Jerome Davids 886e03/Deck Opening Hand b879b9.yaml' +- !include 'Bag Jerome Davids 886e03/Card 5d06b4.yaml' +- !include 'Bag Jerome Davids 886e03/Card Jerome Davids d80c14.yaml' +Description: '' +GMNotes: '' +GUID: 886e03 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +MeshIndex: -1 +Name: Bag +Nickname: Jerome Davids +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 26.7795773 + posY: 3.2582202 + posZ: -9.099031 + rotX: 1.79921126 + rotY: 359.871857 + rotZ: 357.5099 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag Prologue Disappearance at the Twilight Estate 2f008a/Bag Neutral Investigators fa2600/Bag Jerome Davids 886e03/Card 5d06b4.yaml b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag Prologue Disappearance at the Twilight Estate 2f008a/Bag Neutral Investigators fa2600/Bag Jerome Davids 886e03/Card 5d06b4.yaml new file mode 100644 index 000000000..a3959d0e6 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag Prologue Disappearance at the Twilight Estate 2f008a/Bag Neutral Investigators fa2600/Bag Jerome Davids 886e03/Card 5d06b4.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 281000 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2810': + BackIsHidden: true + BackURL: https://i.imgur.com/tHE0Iz1.jpg + FaceURL: https://i.imgur.com/lGTlFGx.jpg + NumHeight: 2 + NumWidth: 2 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 5d06b4 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -10.9994316 + posY: 3.58587575 + posZ: 0.729995549 + rotX: 0.9148791 + rotY: 269.837 + rotZ: 349.8496 + scaleX: 0.452574432 + scaleY: 1.0 + scaleZ: 0.452574432 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag Prologue Disappearance at the Twilight Estate 2f008a/Bag Neutral Investigators fa2600/Bag Jerome Davids 886e03/Card Jerome Davids d80c14.yaml b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag Prologue Disappearance at the Twilight Estate 2f008a/Bag Neutral Investigators fa2600/Bag Jerome Davids 886e03/Card Jerome Davids d80c14.yaml new file mode 100644 index 000000000..43eb8b982 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag Prologue Disappearance at the Twilight Estate 2f008a/Bag Neutral Investigators fa2600/Bag Jerome Davids 886e03/Card Jerome Davids d80c14.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 232004 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/829135524526797029/1F8A6C29028AED32DB44E4CF22E3120C417F413D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526785922/F34A644AC467C751B6D7B8AF398B8FDB07CCF6A0/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Josef's Secretary +GMNotes: '' +GUID: d80c14 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Jerome Davids +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 32.9491234 + posY: 3.56672716 + posZ: -20.8460236 + rotX: 0.5360949 + rotY: 179.95636 + rotZ: 0.333235145 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag Prologue Disappearance at the Twilight Estate 2f008a/Bag Neutral Investigators fa2600/Bag Jerome Davids 886e03/Deck Opening Hand b879b9.yaml b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag Prologue Disappearance at the Twilight Estate 2f008a/Bag Neutral Investigators fa2600/Bag Jerome Davids 886e03/Deck Opening Hand b879b9.yaml new file mode 100644 index 000000000..429bd804c --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag Prologue Disappearance at the Twilight Estate 2f008a/Bag Neutral Investigators fa2600/Bag Jerome Davids 886e03/Deck Opening Hand b879b9.yaml @@ -0,0 +1,480 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: e5dd39 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Hyperawareness + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -11.1692886 + posY: 1.33912277 + posZ: 73.77951 + rotX: 0.0208120961 + rotY: 269.9788 + rotZ: 0.0167658757 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 230408 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 8cf335 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Mind over Matter + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -11.3107576 + posY: 1.47291374 + posZ: 73.35265 + rotX: 0.0221921522 + rotY: 269.9974 + rotZ: 359.76178 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 230413 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: eb6165 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Working a Hunch + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -11.42252 + posY: 1.501595 + posZ: 73.46465 + rotX: 0.021279335 + rotY: 269.984344 + rotZ: 0.0184201915 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 230404 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: edb554 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Barricade + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -11.3899441 + posY: 1.48795211 + posZ: 73.5318451 + rotX: 0.0215425957 + rotY: 269.983582 + rotZ: 0.0192076042 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: b265c4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Deduction + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -10.9712381 + posY: 1.4861536 + posZ: 73.77901 + rotX: 0.0191635229 + rotY: 269.960022 + rotZ: 0.0128358416 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 230437 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 378e84 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Magnifying Glass (1) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -11.1768236 + posY: 1.4889226 + posZ: 74.07263 + rotX: 0.0141705936 + rotY: 270.000122 + rotZ: 0.0101296967 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 273210 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: b9bb2a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Fingerprint Kit + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -11.2189875 + posY: 1.49380946 + posZ: 74.10728 + rotX: 0.02095028 + rotY: 269.984741 + rotZ: 0.0163107812 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 273209 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 13413d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Connect the Dots + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -11.3964529 + posY: 1.4997499 + posZ: 73.34295 + rotX: 0.02103572 + rotY: 269.97757 + rotZ: 0.0182552375 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 273208 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: c2b986 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Curiosity + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -11.1932592 + posY: 1.45179629 + posZ: 73.80069 + rotX: 0.0208130423 + rotY: 269.964661 + rotZ: 0.0167861488 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 273208 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 50a804 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Curiosity + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -11.1543875 + posY: 1.45944822 + posZ: 73.82197 + rotX: 0.0194276161 + rotY: 269.964661 + rotZ: 0.0194934011 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2304': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '2732': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025943833/DE98A03934DF8FF5B3CF6C53143B15BFC3ED7341/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 230424 +- 230408 +- 230413 +- 230404 +- 230402 +- 230437 +- 273210 +- 273209 +- 273208 +- 273208 +Description: '' +GMNotes: '' +GUID: b879b9 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Opening Hand +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -11.10893 + posY: 3.62021971 + posZ: 0.353564084 + rotX: 1.02570677 + rotY: 270.011627 + rotZ: 1.272254 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag Prologue Disappearance at the Twilight Estate 2f008a/Bag Neutral Investigators fa2600/Bag Penny White da417c.yaml b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag Prologue Disappearance at the Twilight Estate 2f008a/Bag Neutral Investigators fa2600/Bag Penny White da417c.yaml new file mode 100644 index 000000000..c9f743fa2 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag Prologue Disappearance at the Twilight Estate 2f008a/Bag Neutral Investigators fa2600/Bag Penny White da417c.yaml @@ -0,0 +1,41 @@ +Autoraise: true +ColorDiffuse: + b: 0.0 + g: 0.366520882 + r: 0.7058823 +ContainedObjects: +- !include 'Bag Penny White da417c/Card Dig Deep fc9e1b.yaml' +- !include 'Bag Penny White da417c/Card Knife 0ab3f1.yaml' +- !include 'Bag Penny White da417c/Card Flashlight 1a6a10.yaml' +- !include 'Bag Penny White da417c/Deck Opening Hand 8b1f19.yaml' +- !include 'Bag Penny White da417c/Card 077ac6.yaml' +- !include 'Bag Penny White da417c/Card Penny White 23b99c.yaml' +Description: '' +GMNotes: '' +GUID: da417c +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +MeshIndex: -1 +Name: Bag +Nickname: Penny White +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -11.8164482 + posY: 3.49307728 + posZ: 7.85791874 + rotX: 359.9391 + rotY: 314.996979 + rotZ: 359.1888 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag Prologue Disappearance at the Twilight Estate 2f008a/Bag Neutral Investigators fa2600/Bag Penny White da417c/Card 077ac6.yaml b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag Prologue Disappearance at the Twilight Estate 2f008a/Bag Neutral Investigators fa2600/Bag Penny White da417c/Card 077ac6.yaml new file mode 100644 index 000000000..4a60c71ec --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag Prologue Disappearance at the Twilight Estate 2f008a/Bag Neutral Investigators fa2600/Bag Penny White da417c/Card 077ac6.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 281001 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2810': + BackIsHidden: true + BackURL: https://i.imgur.com/tHE0Iz1.jpg + FaceURL: https://i.imgur.com/lGTlFGx.jpg + NumHeight: 2 + NumWidth: 2 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 077ac6 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 36.4499664 + posY: 3.473211 + posZ: -13.8278351 + rotX: 359.920135 + rotY: 270.0102 + rotZ: 0.0168484319 + scaleX: 0.452574432 + scaleY: 1.0 + scaleZ: 0.452574432 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag Prologue Disappearance at the Twilight Estate 2f008a/Bag Neutral Investigators fa2600/Bag Penny White da417c/Card Dig Deep fc9e1b.yaml b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag Prologue Disappearance at the Twilight Estate 2f008a/Bag Neutral Investigators fa2600/Bag Penny White da417c/Card Dig Deep fc9e1b.yaml new file mode 100644 index 000000000..021493bdf --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag Prologue Disappearance at the Twilight Estate 2f008a/Bag Neutral Investigators fa2600/Bag Penny White da417c/Card Dig Deep fc9e1b.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: fc9e1b +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Dig Deep +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 5.18085051 + posY: 2.65918827 + posZ: 0.446127057 + rotX: 0.0208086427 + rotY: 269.999969 + rotZ: 0.0167691186 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag Prologue Disappearance at the Twilight Estate 2f008a/Bag Neutral Investigators fa2600/Bag Penny White da417c/Card Flashlight 1a6a10.yaml b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag Prologue Disappearance at the Twilight Estate 2f008a/Bag Neutral Investigators fa2600/Bag Penny White da417c/Card Flashlight 1a6a10.yaml new file mode 100644 index 000000000..2fdca65ad --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag Prologue Disappearance at the Twilight Estate 2f008a/Bag Neutral Investigators fa2600/Bag Penny White da417c/Card Flashlight 1a6a10.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 209615 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 1a6a10 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Flashlight +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 31.430542 + posY: 3.48107457 + posZ: -10.8877916 + rotX: 359.920135 + rotY: 269.999847 + rotZ: 0.0168695319 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag Prologue Disappearance at the Twilight Estate 2f008a/Bag Neutral Investigators fa2600/Bag Penny White da417c/Card Knife 0ab3f1.yaml b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag Prologue Disappearance at the Twilight Estate 2f008a/Bag Neutral Investigators fa2600/Bag Penny White da417c/Card Knife 0ab3f1.yaml new file mode 100644 index 000000000..52286e52f --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag Prologue Disappearance at the Twilight Estate 2f008a/Bag Neutral Investigators fa2600/Bag Penny White da417c/Card Knife 0ab3f1.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 209612 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 0ab3f1 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Knife +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 32.73767 + posY: 3.47830081 + posZ: -14.1185627 + rotX: 359.920135 + rotY: 270.000549 + rotZ: 0.01686701 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag Prologue Disappearance at the Twilight Estate 2f008a/Bag Neutral Investigators fa2600/Bag Penny White da417c/Card Penny White 23b99c.yaml b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag Prologue Disappearance at the Twilight Estate 2f008a/Bag Neutral Investigators fa2600/Bag Penny White da417c/Card Penny White 23b99c.yaml new file mode 100644 index 000000000..619a43fdd --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag Prologue Disappearance at the Twilight Estate 2f008a/Bag Neutral Investigators fa2600/Bag Penny White da417c/Card Penny White 23b99c.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 232006 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/829135524526797029/1F8A6C29028AED32DB44E4CF22E3120C417F413D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526785922/F34A644AC467C751B6D7B8AF398B8FDB07CCF6A0/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Josef's Housekeeper +GMNotes: '' +GUID: 23b99c +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Penny White +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 27.0678978 + posY: 3.55900526 + posZ: -22.6408882 + rotX: 1.36415613 + rotY: 179.958588 + rotZ: 357.447632 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag Prologue Disappearance at the Twilight Estate 2f008a/Bag Neutral Investigators fa2600/Bag Penny White da417c/Deck Opening Hand 8b1f19.yaml b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag Prologue Disappearance at the Twilight Estate 2f008a/Bag Neutral Investigators fa2600/Bag Penny White da417c/Deck Opening Hand 8b1f19.yaml new file mode 100644 index 000000000..7283c2b51 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag Prologue Disappearance at the Twilight Estate 2f008a/Bag Neutral Investigators fa2600/Bag Penny White da417c/Deck Opening Hand 8b1f19.yaml @@ -0,0 +1,401 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 276006 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2760': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025946328/561232524C8EAA4B4371B28652F78969E6ED6FFB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 74ca59 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Able Bodied + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -11.8823442 + posY: 1.579667 + posZ: 33.6978073 + rotX: 359.9206 + rotY: 270.000336 + rotZ: 0.0137964133 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 209612 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 3c3398 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Knife + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -12.04713 + posY: 1.72501063 + posZ: 33.97278 + rotX: 359.9552 + rotY: 270.000763 + rotZ: 359.961975 + 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: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025946328/561232524C8EAA4B4371B28652F78969E6ED6FFB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: bbe2c9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Able Bodied + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -11.5777493 + posY: 1.57913435 + posZ: 33.9234543 + rotX: 359.922363 + rotY: 270.002167 + rotZ: 0.00185142609 + 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: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025946328/561232524C8EAA4B4371B28652F78969E6ED6FFB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 6b61d6 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Act of Desperation + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -11.7172565 + posY: 1.61746192 + posZ: 34.4364853 + rotX: 0.2480991 + rotY: 270.00116 + rotZ: 0.1788842 + 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: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025946328/561232524C8EAA4B4371B28652F78969E6ED6FFB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 5ccd29 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Act of Desperation + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -11.7584276 + posY: 1.763603 + posZ: 34.2776337 + rotX: 0.252691746 + rotY: 269.9969 + rotZ: 359.892365 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 209615 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: bb1cce + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Flashlight + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -11.9528351 + posY: 1.90474594 + posZ: 34.3866234 + rotX: 0.366804957 + rotY: 269.994843 + rotZ: 359.834 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 6f4ab8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Stray Cat + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -11.3030424 + posY: 1.748418 + posZ: 30.3551445 + rotX: 359.936462 + rotY: 269.996277 + rotZ: 0.0131700477 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 17e14e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Lucky! + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -11.507946 + posY: 1.75507188 + posZ: 30.6507645 + rotX: 359.936768 + rotY: 270.003479 + rotZ: 0.0126198474 + 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 + UniqueBack: false + '2760': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025946328/561232524C8EAA4B4371B28652F78969E6ED6FFB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '3688': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 276006 +- 209612 +- 276006 +- 276007 +- 276007 +- 209615 +- 368824 +- 368810 +Description: '' +GMNotes: '' +GUID: 8b1f19 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Opening Hand +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 8.684676 + posY: 2.99370885 + posZ: -1.173617 + rotX: 359.920135 + rotY: 270.0 + rotZ: 0.0168783572 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag Prologue Disappearance at the Twilight Estate 2f008a/Bag Neutral Investigators fa2600/Bag Valentino Rivas d4a4b4.yaml b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag Prologue Disappearance at the Twilight Estate 2f008a/Bag Neutral Investigators fa2600/Bag Valentino Rivas d4a4b4.yaml new file mode 100644 index 000000000..437f74027 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag Prologue Disappearance at the Twilight Estate 2f008a/Bag Neutral Investigators fa2600/Bag Valentino Rivas d4a4b4.yaml @@ -0,0 +1,39 @@ +Autoraise: true +ColorDiffuse: + b: 0.0 + g: 0.366520882 + r: 0.7058823 +ContainedObjects: +- !include 'Bag Valentino Rivas d4a4b4/Card Well Connected 66b7d5.yaml' +- !include 'Bag Valentino Rivas d4a4b4/Deck Opening Hand 0c1b64.yaml' +- !include 'Bag Valentino Rivas d4a4b4/Card cc299a.yaml' +- !include 'Bag Valentino Rivas d4a4b4/Card Valentino Rivas 41d2da.yaml' +Description: '' +GMNotes: '' +GUID: d4a4b4 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +MeshIndex: -1 +Name: Bag +Nickname: Valentino Rivas +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 26.3010883 + posY: 3.2914772 + posZ: -9.41391 + rotX: 1.69062531 + rotY: 359.959747 + rotZ: 357.6101 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag Prologue Disappearance at the Twilight Estate 2f008a/Bag Neutral Investigators fa2600/Bag Valentino Rivas d4a4b4/Card cc299a.yaml b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag Prologue Disappearance at the Twilight Estate 2f008a/Bag Neutral Investigators fa2600/Bag Valentino Rivas d4a4b4/Card cc299a.yaml new file mode 100644 index 000000000..269e60730 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag Prologue Disappearance at the Twilight Estate 2f008a/Bag Neutral Investigators fa2600/Bag Valentino Rivas d4a4b4/Card cc299a.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 281002 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2810': + BackIsHidden: true + BackURL: https://i.imgur.com/tHE0Iz1.jpg + FaceURL: https://i.imgur.com/lGTlFGx.jpg + NumHeight: 2 + NumWidth: 2 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: cc299a +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 31.6972256 + posY: 3.48417282 + posZ: -7.21520758 + rotX: 359.9201 + rotY: 270.0282 + rotZ: 0.01683228 + scaleX: 0.452574432 + scaleY: 1.0 + scaleZ: 0.452574432 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag Prologue Disappearance at the Twilight Estate 2f008a/Bag Neutral Investigators fa2600/Bag Valentino Rivas d4a4b4/Card Valentino Rivas 41d2da.yaml b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag Prologue Disappearance at the Twilight Estate 2f008a/Bag Neutral Investigators fa2600/Bag Valentino Rivas d4a4b4/Card Valentino Rivas 41d2da.yaml new file mode 100644 index 000000000..4174057cf --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag Prologue Disappearance at the Twilight Estate 2f008a/Bag Neutral Investigators fa2600/Bag Valentino Rivas d4a4b4/Card Valentino Rivas 41d2da.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 232005 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/829135524526797029/1F8A6C29028AED32DB44E4CF22E3120C417F413D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526785922/F34A644AC467C751B6D7B8AF398B8FDB07CCF6A0/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Wealthy Philanthropist +GMNotes: '' +GUID: 41d2da +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Valentino Rivas +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 33.1302948 + posY: 3.520642 + posZ: -14.959734 + rotX: 2.45931625 + rotY: 180.086182 + rotZ: 2.66070175 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag Prologue Disappearance at the Twilight Estate 2f008a/Bag Neutral Investigators fa2600/Bag Valentino Rivas d4a4b4/Card Well Connected 66b7d5.yaml b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag Prologue Disappearance at the Twilight Estate 2f008a/Bag Neutral Investigators fa2600/Bag Valentino Rivas d4a4b4/Card Well Connected 66b7d5.yaml new file mode 100644 index 000000000..097c3e7b7 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag Prologue Disappearance at the Twilight Estate 2f008a/Bag Neutral Investigators fa2600/Bag Valentino Rivas d4a4b4/Card Well Connected 66b7d5.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 274208 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 66b7d5 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Well Connected +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 32.1356659 + posY: 3.537645 + posZ: -9.438395 + rotX: 357.1436 + rotY: 270.017761 + rotZ: 359.418243 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag Prologue Disappearance at the Twilight Estate 2f008a/Bag Neutral Investigators fa2600/Bag Valentino Rivas d4a4b4/Deck Opening Hand 0c1b64.yaml b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag Prologue Disappearance at the Twilight Estate 2f008a/Bag Neutral Investigators fa2600/Bag Valentino Rivas d4a4b4/Deck Opening Hand 0c1b64.yaml new file mode 100644 index 000000000..5fe1735e1 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag Prologue Disappearance at the Twilight Estate 2f008a/Bag Neutral Investigators fa2600/Bag Valentino Rivas d4a4b4/Deck Opening Hand 0c1b64.yaml @@ -0,0 +1,365 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 274206 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 1f601c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Cunning + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 42.0147934 + posY: 1.49191868 + posZ: -8.96351051 + rotX: 359.915619 + rotY: 269.998535 + rotZ: 0.015286142 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274206 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 03ff2d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Cunning + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 42.1102753 + posY: 1.63229167 + posZ: -9.064435 + rotX: 359.932861 + rotY: 269.999847 + rotZ: 0.0226543453 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 277654 + 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/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 308be1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Sure Gamble (3) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 42.01537 + posY: 1.65020156 + posZ: -8.873732 + rotX: 359.932343 + rotY: 270.00058 + rotZ: 0.0120726945 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: a88392 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Opportunist + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 41.97797 + posY: 1.636614 + posZ: -9.04462051 + rotX: 359.935425 + rotY: 270.003418 + rotZ: 0.0175489858 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: fe2db3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: .41 Derringer + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 41.9782 + posY: 1.63467884 + posZ: -9.390869 + rotX: 359.932526 + rotY: 269.996277 + rotZ: 0.0225799251 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274207 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 3712d1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Money Talks + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 42.02679 + posY: 1.63689828 + posZ: -9.450618 + rotX: 359.930267 + rotY: 270.00058 + rotZ: 0.0174559243 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274207 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 64b423 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Money Talks + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 41.81751 + posY: 1.64222491 + posZ: -9.19327 + rotX: 359.920471 + rotY: 269.9992 + rotZ: 0.01775414 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2615': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + 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 + UniqueBack: false + '2742': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025944587/520448D0E9C22F102C7DDF64322EAD6FC221ECC8/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '2776': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 274206 +- 274206 +- 277654 +- 261702 +- 261528 +- 274207 +- 274207 +Description: '' +GMNotes: '' +GUID: 0c1b64 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Opening Hand +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 36.4942055 + posY: 3.48028517 + posZ: -9.690706 + rotX: 359.920135 + rotY: 269.987671 + rotZ: 0.01688546 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag Prologue Disappearance at the Twilight Estate 2f008a/Card Balcony 3b69ae.yaml b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag Prologue Disappearance at the Twilight Estate 2f008a/Card Balcony 3b69ae.yaml new file mode 100644 index 000000000..23a4b6ce5 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag Prologue Disappearance at the Twilight Estate 2f008a/Card Balcony 3b69ae.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 274819 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2748': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/829135524527100186/0D63305581E65C95F286CCA4902B7DE796D815BD/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524527103742/0C4DB40889420CFE47BE897944621ABF2ECA52F9/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Spectral. +GMNotes: '' +GUID: 3b69ae +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Balcony +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -23.6767 + posY: 1.68173015 + posZ: -15.2800007 + rotX: 359.9201 + rotY: 269.999481 + rotZ: 0.0168770626 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag Prologue Disappearance at the Twilight Estate 2f008a/Card Billiards Room 349eb6.yaml b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag Prologue Disappearance at the Twilight Estate 2f008a/Card Billiards Room 349eb6.yaml new file mode 100644 index 000000000..c8a89fe58 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag Prologue Disappearance at the Twilight Estate 2f008a/Card Billiards Room 349eb6.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 274717 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2747': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/829135524527100186/0D63305581E65C95F286CCA4902B7DE796D815BD/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524527103742/0C4DB40889420CFE47BE897944621ABF2ECA52F9/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Spectral. +GMNotes: '' +GUID: 349eb6 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Billiards Room +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -23.6764 + posY: 1.690702 + posZ: 15.1900005 + rotX: 359.9201 + rotY: 269.999725 + rotZ: 0.0168762486 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag Prologue Disappearance at the Twilight Estate 2f008a/Card Entry Hall 7cb46b.yaml b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag Prologue Disappearance at the Twilight Estate 2f008a/Card Entry Hall 7cb46b.yaml new file mode 100644 index 000000000..26fbcde78 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag Prologue Disappearance at the Twilight Estate 2f008a/Card Entry Hall 7cb46b.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 274914 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2749': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/829135524527100186/0D63305581E65C95F286CCA4902B7DE796D815BD/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524527103742/0C4DB40889420CFE47BE897944621ABF2ECA52F9/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Spectral. +GMNotes: '' +GUID: 7cb46b +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Entry Hall +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -30.2242 + posY: 1.69535065 + posZ: -0.03000034 + rotX: 359.9201 + rotY: 269.999939 + rotZ: 0.0168762822 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag Prologue Disappearance at the Twilight Estate 2f008a/Card JUDGMENT · XX aa1331.yaml b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag Prologue Disappearance at the Twilight Estate 2f008a/Card JUDGMENT · XX aa1331.yaml new file mode 100644 index 000000000..e1e5c55fe --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag Prologue Disappearance at the Twilight Estate 2f008a/Card JUDGMENT · XX aa1331.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 232001 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/829135524526797029/1F8A6C29028AED32DB44E4CF22E3120C417F413D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526785922/F34A644AC467C751B6D7B8AF398B8FDB07CCF6A0/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Agenda 1 +GMNotes: '' +GUID: aa1331 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: "JUDGMENT \xB7 XX" +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.7248 + posY: 1.65710151 + posZ: 0.3733004 + rotX: 0.0168334637 + rotY: 180.001144 + rotZ: 0.08025778 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag Prologue Disappearance at the Twilight Estate 2f008a/Card Master Bedroom 327f3b.yaml b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag Prologue Disappearance at the Twilight Estate 2f008a/Card Master Bedroom 327f3b.yaml new file mode 100644 index 000000000..7d722d9da --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag Prologue Disappearance at the Twilight Estate 2f008a/Card Master Bedroom 327f3b.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 274618 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2746': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/829135524527100186/0D63305581E65C95F286CCA4902B7DE796D815BD/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524527103742/0C4DB40889420CFE47BE897944621ABF2ECA52F9/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Spectral. +GMNotes: '' +GUID: 327f3b +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Master Bedroom +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -23.6765 + posY: 1.68396187 + posZ: -7.7 + rotX: 359.9201 + rotY: 269.999573 + rotZ: 0.0168769266 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag Prologue Disappearance at the Twilight Estate 2f008a/Card Office 060886.yaml b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag Prologue Disappearance at the Twilight Estate 2f008a/Card Office 060886.yaml new file mode 100644 index 000000000..33ac0b9d2 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag Prologue Disappearance at the Twilight Estate 2f008a/Card Office 060886.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 274520 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2745': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/829135524527100186/0D63305581E65C95F286CCA4902B7DE796D815BD/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524527103742/0C4DB40889420CFE47BE897944621ABF2ECA52F9/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Spectral. +GMNotes: '' +GUID: 060886 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Office +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -17.1199 + posY: 1.67707765 + posZ: -0.0300005451 + rotX: 359.9201 + rotY: 269.999756 + rotZ: 0.0168766826 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag Prologue Disappearance at the Twilight Estate 2f008a/Card Scenario f2806a.yaml b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag Prologue Disappearance at the Twilight Estate 2f008a/Card Scenario f2806a.yaml new file mode 100644 index 000000000..35cd59526 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag Prologue Disappearance at the Twilight Estate 2f008a/Card Scenario f2806a.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 231700 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2317': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/829135524526797029/1F8A6C29028AED32DB44E4CF22E3120C417F413D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526785922/F34A644AC467C751B6D7B8AF398B8FDB07CCF6A0/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Disappearance at the Twilight Estate +GMNotes: '' +GUID: f2806a +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Scenario +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.9559 + posY: 1.655648 + posZ: -10.4412251 + rotX: 359.919739 + rotY: 269.999969 + rotZ: 0.0168405436 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag Prologue Disappearance at the Twilight Estate 2f008a/Card The Disappearance f4f8dc.yaml b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag Prologue Disappearance at the Twilight Estate 2f008a/Card The Disappearance f4f8dc.yaml new file mode 100644 index 000000000..a9b073f4c --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag Prologue Disappearance at the Twilight Estate 2f008a/Card The Disappearance f4f8dc.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 232002 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/829135524526797029/1F8A6C29028AED32DB44E4CF22E3120C417F413D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526785922/F34A644AC467C751B6D7B8AF398B8FDB07CCF6A0/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Act 1 +GMNotes: '' +GUID: f4f8dc +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: The Disappearance +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.68859982 + posY: 1.65545762 + posZ: -5.04850054 + rotX: 0.01683514 + rotY: 180.000031 + rotZ: 0.0802575 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag Prologue Disappearance at the Twilight Estate 2f008a/Card The Spectral Watcher a1eb9b.yaml b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag Prologue Disappearance at the Twilight Estate 2f008a/Card The Spectral Watcher a1eb9b.yaml new file mode 100644 index 000000000..8d2d997c9 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag Prologue Disappearance at the Twilight Estate 2f008a/Card The Spectral Watcher a1eb9b.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 275201 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2752': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: You Are Its Prey +GMNotes: '' +GUID: a1eb9b +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: The Spectral Watcher +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -30.2243 + posY: 1.69649625 + posZ: 3.86 + rotX: 359.9201 + rotY: 269.999664 + rotZ: 0.01687665 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag Prologue Disappearance at the Twilight Estate 2f008a/Card Trophy Room f5616e.yaml b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag Prologue Disappearance at the Twilight Estate 2f008a/Card Trophy Room f5616e.yaml new file mode 100644 index 000000000..4d603cbb9 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag Prologue Disappearance at the Twilight Estate 2f008a/Card Trophy Room f5616e.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 275916 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2759': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/829135524527100186/0D63305581E65C95F286CCA4902B7DE796D815BD/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524527103742/0C4DB40889420CFE47BE897944621ABF2ECA52F9/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Spectral. +GMNotes: '' +GUID: f5616e +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Trophy Room +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -23.6765 + posY: 1.68845832 + posZ: 7.56999874 + rotX: 359.9201 + rotY: 269.999756 + rotZ: 0.0168770235 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag Prologue Disappearance at the Twilight Estate 2f008a/Card Victorian Halls 94ef8e.yaml b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag Prologue Disappearance at the Twilight Estate 2f008a/Card Victorian Halls 94ef8e.yaml new file mode 100644 index 000000000..2e5efdede --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag Prologue Disappearance at the Twilight Estate 2f008a/Card Victorian Halls 94ef8e.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 275115 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2751': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/829135524527100186/0D63305581E65C95F286CCA4902B7DE796D815BD/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524527103742/0C4DB40889420CFE47BE897944621ABF2ECA52F9/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Spectral. +GMNotes: '' +GUID: 94ef8e +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Victorian Halls +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -23.6765 + posY: 1.68622029 + posZ: -0.0300003029 + rotX: 359.9201 + rotY: 270.0 + rotZ: 0.0168763548 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag Prologue Disappearance at the Twilight Estate 2f008a/Custom_Tile 62c1c6.yaml b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag Prologue Disappearance at the Twilight Estate 2f008a/Custom_Tile 62c1c6.yaml new file mode 100644 index 000000000..5d99390df --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag Prologue Disappearance at the Twilight Estate 2f008a/Custom_Tile 62c1c6.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 62c1c6 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.6765 + posY: 1.6133877 + posZ: -3.83000016 + rotX: 0.01687219 + rotY: 179.999634 + rotZ: 0.07993924 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag Prologue Disappearance at the Twilight Estate 2f008a/Custom_Tile 6913e9.yaml b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag Prologue Disappearance at the Twilight Estate 2f008a/Custom_Tile 6913e9.yaml new file mode 100644 index 000000000..fadb3c80a --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag Prologue Disappearance at the Twilight Estate 2f008a/Custom_Tile 6913e9.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 6913e9 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.4586 + posY: 1.61001825 + posZ: -0.03490027 + rotX: 0.07989431 + rotY: 89.99967 + rotZ: 359.9831 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag Prologue Disappearance at the Twilight Estate 2f008a/Custom_Tile 7234af.yaml b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag Prologue Disappearance at the Twilight Estate 2f008a/Custom_Tile 7234af.yaml new file mode 100644 index 000000000..522ef08b9 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag Prologue Disappearance at the Twilight Estate 2f008a/Custom_Tile 7234af.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 7234af +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.2548 + posY: 1.61944926 + posZ: -0.190000266 + rotX: 359.9201 + rotY: 269.994446 + rotZ: 0.016907258 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag Prologue Disappearance at the Twilight Estate 2f008a/Custom_Tile 9dd605.yaml b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag Prologue Disappearance at the Twilight Estate 2f008a/Custom_Tile 9dd605.yaml new file mode 100644 index 000000000..30e98099c --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag Prologue Disappearance at the Twilight Estate 2f008a/Custom_Tile 9dd605.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 9dd605 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.6765 + posY: 1.61112618 + posZ: -11.5100012 + rotX: 0.0168721452 + rotY: 179.999756 + rotZ: 0.0799345151 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag Prologue Disappearance at the Twilight Estate 2f008a/Custom_Tile a6d5fb.yaml b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag Prologue Disappearance at the Twilight Estate 2f008a/Custom_Tile a6d5fb.yaml new file mode 100644 index 000000000..2fea46686 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag Prologue Disappearance at the Twilight Estate 2f008a/Custom_Tile a6d5fb.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: a6d5fb +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.6765 + posY: 1.61565208 + posZ: 3.85999966 + rotX: 0.0168725941 + rotY: 179.999481 + rotZ: 0.07994033 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag Prologue Disappearance at the Twilight Estate 2f008a/Custom_Tile e4fd93.yaml b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag Prologue Disappearance at the Twilight Estate 2f008a/Custom_Tile e4fd93.yaml new file mode 100644 index 000000000..af2470057 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag Prologue Disappearance at the Twilight Estate 2f008a/Custom_Tile e4fd93.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: e4fd93 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.6765 + posY: 1.61789 + posZ: 11.460001 + rotX: 0.0168718267 + rotY: 180.000046 + rotZ: 0.07993619 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag Prologue Disappearance at the Twilight Estate 2f008a/Custom_Tile The Circle Undone 05f912.ttslua b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag Prologue Disappearance at the Twilight Estate 2f008a/Custom_Tile The Circle Undone 05f912.ttslua new file mode 100644 index 000000000..47d018ac8 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag Prologue Disappearance at the Twilight Estate 2f008a/Custom_Tile The Circle Undone 05f912.ttslua @@ -0,0 +1,21 @@ +name = 'The Circle Undone' + +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 Circle Undone 61e777/Custom_Model_Bag Prologue Disappearance at the Twilight Estate 2f008a/Custom_Tile The Circle Undone 05f912.yaml b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag Prologue Disappearance at the Twilight Estate 2f008a/Custom_Tile The Circle Undone 05f912.yaml new file mode 100644 index 000000000..d9d2d9151 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag Prologue Disappearance at the Twilight Estate 2f008a/Custom_Tile The Circle Undone 05f912.yaml @@ -0,0 +1,42 @@ +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 +GMNotes: '' +GUID: 05f912 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Tile The Circle Undone 05f912.ttslua' +LuaScriptState: '' +Name: Custom_Tile +Nickname: The Circle Undone +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.7579 + posY: 1.58251858 + posZ: -14.3157024 + rotX: 359.919739 + rotY: 270.005432 + rotZ: 0.0168303642 + scaleX: 2.2 + scaleY: 1.0 + scaleZ: 2.2 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag Prologue Disappearance at the Twilight Estate 2f008a/Deck Encounter Deck 8f704c.yaml b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag Prologue Disappearance at the Twilight Estate 2f008a/Deck Encounter Deck 8f704c.yaml new file mode 100644 index 000000000..03078b9b7 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Model_Bag Prologue Disappearance at the Twilight Estate 2f008a/Deck Encounter Deck 8f704c.yaml @@ -0,0 +1,1125 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 12121 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '121': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: fb311c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Crypt Chill + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -28.5070229 + posY: 1.75684988 + posZ: 9.774932 + rotX: 354.0092 + rotY: 269.797241 + rotZ: 0.05575819 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12121 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '121': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: b78c3b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Crypt Chill + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -28.2133236 + posY: 1.596211 + posZ: 12.41327 + rotX: 359.920135 + rotY: 269.999756 + rotZ: 0.0168656427 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 275023 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Omen. Spectral. + GMNotes: '' + GUID: fbcb9f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Fate of All Fools + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -31.3964348 + posY: 1.59983659 + posZ: 9.659243 + rotX: 359.919434 + rotY: 269.9977 + rotZ: 0.0151809463 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 275020 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. Spectral. + GMNotes: '' + GUID: 278e46 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Realm of Torment + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -31.8700485 + posY: 1.687739 + posZ: 1.73515284 + rotX: 359.920563 + rotY: 269.9831 + rotZ: 355.3065 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12122 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '121': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: '356046' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Obscuring Fog + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -28.4553566 + posY: 1.59503615 + posZ: 7.27901125 + rotX: 359.920135 + rotY: 269.993866 + rotZ: 0.0168785062 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 275016 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Spectral. + GMNotes: '' + GUID: c9136e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Shadow Hound + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -31.6406765 + posY: 1.59453154 + posZ: -9.515267 + rotX: 359.9201 + rotY: 270.014374 + rotZ: 0.0168471411 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 275021 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. Spectral. + GMNotes: '' + GUID: 47147f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Shapes in the Mist + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -31.573534 + posY: 1.59301436 + posZ: -14.3349619 + rotX: 359.9199 + rotY: 269.991882 + rotZ: 0.0167854447 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 275023 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Omen. Spectral. + GMNotes: '' + GUID: 717c42 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Fate of All Fools + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -27.9579372 + posY: 1.5929203 + posZ: 2.44796968 + rotX: 359.920135 + rotY: 269.9995 + rotZ: 0.0168674216 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 275022 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. Spectral. + GMNotes: '' + GUID: 4f41b0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Terror in the Night + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -31.4375153 + posY: 1.59565043 + posZ: -4.75423574 + rotX: 359.920135 + rotY: 270.0017 + rotZ: 0.016865246 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 275002 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Power. Spectral. + GMNotes: '' + GUID: f798c8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Watcher's Grasp + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -26.8521061 + posY: 1.58786321 + posZ: -9.490302 + rotX: 359.920135 + rotY: 269.999969 + rotZ: 0.0168652888 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 275022 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. Spectral. + GMNotes: '' + GUID: 43ba03 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Terror in the Night + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -31.7596 + posY: 1.67825866 + posZ: -2.013425 + rotX: 359.92 + rotY: 270.000549 + rotZ: 4.292792 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 275022 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. Spectral. + GMNotes: '' + GUID: 1a350a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Terror in the Night + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -31.7052422 + posY: 1.59740448 + posZ: -0.0485267043 + rotX: 359.919922 + rotY: 270.007019 + rotZ: 0.0168208443 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12122 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '121': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: 03a265 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Obscuring Fog + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -28.2566147 + posY: 1.59406376 + posZ: 4.91735125 + rotX: 359.920135 + rotY: 269.9997 + rotZ: 0.0168691725 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 275020 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. Spectral. + GMNotes: '' + GUID: e49187 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Realm of Torment + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -31.7993183 + posY: 1.59880829 + posZ: 4.25690842 + rotX: 359.920135 + rotY: 269.999573 + rotZ: 0.01687331 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 275018 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Geist. Spectral. + GMNotes: '' + GUID: 7732b3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Wraith + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -27.3012123 + posY: 1.58601832 + posZ: -17.8810863 + rotX: 359.920135 + rotY: 269.999756 + rotZ: 0.0168696512 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 275021 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. Spectral. + GMNotes: '' + GUID: 3c04e0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Shapes in the Mist + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -32.68019 + posY: 1.67363954 + posZ: -12.2995234 + rotX: 359.920166 + rotY: 269.988342 + rotZ: 355.892548 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 275016 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Spectral. + GMNotes: '' + GUID: 9d53c1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Shadow Hound + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -31.2036572 + posY: 1.59459114 + posZ: -7.24409771 + rotX: 359.920135 + rotY: 270.006256 + rotZ: 0.01685856 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 275015 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Spectral. + GMNotes: '' + GUID: d32fa0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Nether Mist. + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -31.7644672 + posY: 1.59955311 + posZ: 6.95123863 + rotX: 359.920135 + rotY: 269.998657 + rotZ: 0.01686673 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 275019 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. Spectral. + GMNotes: '' + GUID: 10c2cb + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Trapped Spirits + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -27.7993889 + posY: 1.59196377 + posZ: -0.0492937826 + rotX: 359.920135 + rotY: 269.99942 + rotZ: 0.0168678835 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 275017 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Omen. Spectral. + GMNotes: '' + GUID: c4c440 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Whispers in the Dark + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -26.9741821 + posY: 1.661381 + posZ: -14.4091225 + rotX: 359.9201 + rotY: 270.005066 + rotZ: 3.94704032 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 275017 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Omen. Spectral. + GMNotes: '' + GUID: aa8c0e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Whispers in the Dark + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -26.918148 + posY: 1.58713388 + posZ: -12.2730618 + rotX: 359.920074 + rotY: 270.006378 + rotZ: 0.0167598221 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 275023 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Omen. Spectral. + GMNotes: '' + GUID: ef132d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Fate of All Fools + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -31.396637 + posY: 1.67693043 + posZ: 11.7433891 + rotX: 359.9186 + rotY: 270.000336 + rotZ: 356.001038 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 275018 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Geist. Spectral. + GMNotes: '' + GUID: db1b65 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Wraith + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -30.9720936 + posY: 1.59132147 + posZ: -17.2514343 + rotX: 359.920135 + rotY: 269.9997 + rotZ: 0.0168706663 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 275002 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Power. Spectral. + GMNotes: '' + GUID: f92f1e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Watcher's Grasp + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -27.6742229 + posY: 1.58979166 + posZ: -6.83305073 + rotX: 359.920135 + rotY: 269.9995 + rotZ: 0.01686861 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 275019 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2750': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. Spectral. + GMNotes: '' + GUID: 4e4752 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Trapped Spirits + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.92616558 + posY: 1.9221096 + posZ: 5.755823 + rotX: 358.468964 + rotY: 269.9793 + rotZ: 1.27267146 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '121': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '2750': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/829135524526809828/AB799C8FFD9024655A9F179CCFF1EE30DE0D3C75/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 12121 +- 12121 +- 275023 +- 275020 +- 12122 +- 275016 +- 275021 +- 275023 +- 275022 +- 275002 +- 275022 +- 275022 +- 12122 +- 275020 +- 275018 +- 275021 +- 275016 +- 275015 +- 275019 +- 275017 +- 275017 +- 275023 +- 275018 +- 275002 +- 275019 +Description: '' +GMNotes: '' +GUID: 8f704c +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Encounter Deck +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.92770076 + posY: 1.71574712 + posZ: 5.7571 + rotX: 359.919739 + rotY: 270.004883 + rotZ: 0.0168388188 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Tile The Circle Undone Campaign Log 1 44a05a.ttslua b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Tile The Circle Undone Campaign Log 1 44a05a.ttslua new file mode 100644 index 000000000..c356d270a --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Tile The Circle Undone Campaign Log 1 44a05a.ttslua @@ -0,0 +1,511 @@ +--[[ Character Sheet Template by: MrStump + +You can set up your own character sheet if you follow these steps. + +Step 1) Change the character sheet image + -Right click on the character sheet, click Custom + -Replace the image URL with one for your character sheet + -Click import, make sure your sheet loads + -SAVE THE GAME (the table setup) + -LOAD FROM THAT SAVE YOU JUST MADE + +Step 2) Edit script to fit your character sheet + -Below you will see some general options, and then the big data table + -The data table is what determines how many of which buttons are made + -Checkboxes + -Counters + -Textboxes + -By default, there are 3 of each. You can add more or remove entries + -If you intend to add/remove, be sure only to add/remove ENTRIES + -This is what an entry looks like: + { + pos = {-0.977,0.1,-0.589}, + size = 800, + state = false + }, + -Deleting the whole thing would remove that specific item on the sheet + -Copy and pasting it after another entry would create another + -Each entry type has unique data points (pos, size, state, etc) + -Do not try to add in your own data points or remove them individually + -There is a summary of what each point does at the top of its category + +Step 3) Save and check script changes + -Hit Save & Apply in the script window to save your code + -You can edit your code as needed and Save+Apply as often as needed + -When you are finished, make disableSave = false below then Save+apply + -This enables saving, so your sheet will remember whats on it. + +Bonus) Finding/Editing Positions for elements + I have included a tool to get positions for buttons in {x,y,z} form + Place it where you want the center of your element to be + Then copy the table from the notes (lower right of screen) + You can highlight it and CTRL+C + Paste it into the data table where needed (pos=) + If you want to manually tweek the values: + {0,0,0} is the center of the character sheet + {1,0,0} is right, {-1,0,0} is left + {0,0,-1} is up, {0,0,1} is down + 0.1 for Y is the height off of the page. + If it was 0, it would be down inside the model of the sheet + +Begin editing below: ]] + +--Set this to true while editing and false when you have finished +disableSave = false +--Remember to set this to false once you are done making changes +--Then, after you save & apply it, save your game too + +--Color information for button text (r,g,b, values of 0-1) +buttonFontColor = {0,0,0} +--Color information for button background +buttonColor = {0.902,0.886,0.788} +--Change scale of button (Avoid changing if possible) +buttonScale = {0.1,0.1,0.1} + +--This is the button placement information +defaultButtonData = { + --Add checkboxes + checkbox = { + --[[ + pos = the position (pasted from the helper tool) + size = height/width/font_size for checkbox + state = default starting value for checkbox (true=checked, false=not) + ]] + + --End of checkboxes + }, + --Add counters that have a + and - button + counter = { + --[[ + pos = the position (pasted from the helper tool) + size = height/width/font_size for counter + value = default starting value for counter + hideBG = if background of counter is hidden (true=hidden, false=not) + ]] + --Slot one counter 1 + { + pos = {-0.7,0.1,-0.45}, + size = 400, + value = 0, + hideBG = true + }, + --Slot one counter 2 + { + pos = {-0.50,0.1,-0.45}, + size = 400, + value = 0, + hideBG = true + }, + --Slot one xp 1 + { + pos = {-0.517,0.1,-0.55}, + size = 300, + value = 0, + hideBG = true + }, + --Slot two counter 1 + { + pos = {-0.274,0.1,-0.445}, + size = 400, + value = 0, + hideBG = true + }, + --Slot two counter 2 + { + pos = {-0.06,0.1,-0.445}, + size = 400, + value = 0, + hideBG = true + }, + --Slot two xp 1 + { + pos = {-0.061,0.1,-0.54}, + size = 300, + value = 0, + hideBG = true + }, + --Slot three counter 1 + { + pos = {0.153,0.1,-0.44}, + size = 400, + value = 0, + hideBG = true + }, + --Slot three counter 2 + { + pos = {0.379,0.1,-0.44}, + size = 400, + value = 0, + hideBG = true + }, + --Slot three xp 1 + { + pos = {0.38,0.1,-0.54}, + size = 300, + value = 0, + hideBG = true + }, + --Slot four counter 1 + { + pos = {0.614,0.1,-0.44}, + size = 400, + value = 0, + hideBG = true + }, + --Slot four counter 2 + { + pos = {0.82,0.1,-0.44}, + size = 400, + value = 0, + hideBG = true + }, + --Slot four xp 1 + { + pos = {0.827,0.1,-0.54}, + size = 300, + value = 0, + hideBG = true + }, + + --End of counters + }, + --Add editable text boxes + textbox = { + --[[ + pos = the position (pasted from the helper tool) + rows = how many lines of text you want for this box + width = how wide the text box is + font_size = size of text. This and "rows" effect overall height + label = what is shown when there is no text. "" = nothing + value = text entered into box. "" = nothing + alignment = Number to indicate how you want text aligned + (1=Automatic, 2=Left, 3=Center, 4=Right, 5=Justified) + ]] + --Slot one player + { + pos = {-0.637,0.1,-0.70}, + rows = 1, + width = 2000, + font_size = 150, + label = "Click to type", + value = "", + alignment = 2 + }, + --Slot one investigator + { + pos = {-0.637,0.1,-0.625}, + rows = 1, + width = 2000, + font_size = 150, + label = "Click to type", + value = "", + alignment = 2 + }, + --Slot one story + { + pos = {-0.637,0.1,-0.27}, + rows = 10, + width = 2000, + font_size = 100, + label = "Click to type", + value = "", + alignment = 2 + }, + --Slot two player + { + pos = {-0.2,0.1,-0.70}, + rows = 1, + width = 2000, + font_size = 150, + label = "Click to type", + value = "", + alignment = 2 + }, + --Slot two investigator + { + pos = {-0.2,0.1,-0.625}, + rows = 1, + width = 2000, + font_size = 150, + label = "Click to type", + value = "", + alignment = 2 + }, + --Slot two story + { + pos = {-0.2,0.1,-0.27}, + rows = 10, + width = 2000, + font_size = 100, + label = "Click to type", + value = "", + alignment = 2 + }, + --Slot three player + { + pos = {0.241,0.1,-0.70}, + rows = 1, + width = 2000, + font_size = 150, + label = "Click to type", + value = "", + alignment = 2 + }, + --Slot three investigator + { + pos = {0.237,0.1,-0.62}, + rows = 1, + width = 2000, + font_size = 150, + label = "Click to type", + value = "", + alignment = 2 + }, + --Slot three story + { + pos = {0.24,0.1,-0.268}, + rows = 10, + width = 2000, + font_size = 100, + label = "Click to type", + value = "", + alignment = 2 + }, + --Slot four player + { + pos = {0.671,0.1,-0.70}, + rows = 1, + width = 2000, + font_size = 150, + label = "Click to type", + value = "", + alignment = 2 + }, + --Slot four investigator + { + pos = {0.671,0.1,-0.62}, + rows = 1, + width = 2000, + font_size = 150, + label = "Click to type", + value = "", + alignment = 2 + }, + --Slot four story + { + pos = {0.671,0.1,-0.265}, + rows = 10, + width = 2000, + font_size = 100, + label = "Click to type", + value = "", + alignment = 2 + }, + --Campaign Notes + { + pos = {-0.464,0.1,0.507}, + rows =16, + width = 3200, + font_size = 200, + label = "Click to type", + value = "", + alignment = 2 + }, + --Campaign NOtes 2 + { + pos = {0.344,0.1,0.187}, + rows = 10, + width = 3500, + font_size = 150, + label = "Click to type", + value = "", + alignment = 2 + }, + --Mementos + { + pos = {0.351,0.1,0.744}, + rows = 12, + width = 3500, + font_size = 150, + label = "Click to type", + value = "", + alignment = 2 + }, + --End of textboxes + } +} + + + +--Lua beyond this point, I recommend doing something more fun with your life + + + +--Save function +function updateSave() + saved_data = JSON.encode(ref_buttonData) + if disableSave==true then saved_data="" end + self.script_state = saved_data +end + +--Startup procedure +function onload(saved_data) + if disableSave==true then saved_data="" end + if saved_data ~= "" then + local loaded_data = JSON.decode(saved_data) + ref_buttonData = loaded_data + else + ref_buttonData = defaultButtonData + end + + spawnedButtonCount = 0 + createCheckbox() + createCounter() + createTextbox() +end + + + +--Click functions for buttons + + + +--Checks or unchecks the given box +function click_checkbox(tableIndex, buttonIndex) + if ref_buttonData.checkbox[tableIndex].state == true then + ref_buttonData.checkbox[tableIndex].state = false + self.editButton({index=buttonIndex, label=""}) + else + ref_buttonData.checkbox[tableIndex].state = true + self.editButton({index=buttonIndex, label=string.char(10008)}) + end + updateSave() +end + +--Applies value to given counter display +function click_counter(tableIndex, buttonIndex, amount) + ref_buttonData.counter[tableIndex].value = ref_buttonData.counter[tableIndex].value + amount + self.editButton({index=buttonIndex, label=ref_buttonData.counter[tableIndex].value}) + updateSave() +end + +--Updates saved value for given text box +function click_textbox(i, value, selected) + if selected == false then + ref_buttonData.textbox[i].value = value + updateSave() + end +end + +--Dud function for if you have a background on a counter +function click_none() end + + + +--Button creation + + + +--Makes checkboxes +function createCheckbox() + for i, data in ipairs(ref_buttonData.checkbox) do + --Sets up reference function + local buttonNumber = spawnedButtonCount + local funcName = "checkbox"..i + local func = function() click_checkbox(i, buttonNumber) end + self.setVar(funcName, func) + --Sets up label + local label = "" + if data.state==true then label=string.char(10008) end + --Creates button and counts it + self.createButton({ + label=label, click_function=funcName, function_owner=self, + position=data.pos, height=data.size, width=data.size, + font_size=data.size, scale=buttonScale, + color=buttonColor, font_color=buttonFontColor + }) + spawnedButtonCount = spawnedButtonCount + 1 + end +end + +--Makes counters +function createCounter() + for i, data in ipairs(ref_buttonData.counter) do + --Sets up display + local displayNumber = spawnedButtonCount + --Sets up label + local label = data.value + --Sets height/width for display + local size = data.size + if data.hideBG == true then size = 0 end + --Creates button and counts it + self.createButton({ + label=label, click_function="click_none", function_owner=self, + position=data.pos, height=size, width=size, + font_size=data.size, scale=buttonScale, + color=buttonColor, font_color=buttonFontColor + }) + spawnedButtonCount = spawnedButtonCount + 1 + + --Sets up add 1 + local funcName = "counterAdd"..i + local func = function() click_counter(i, displayNumber, 1) end + self.setVar(funcName, func) + --Sets up label + local label = "+" + --Sets up position + local offsetDistance = (data.size/2 + data.size/4) * (buttonScale[1] * 0.002) + local pos = {data.pos[1] + offsetDistance, data.pos[2], data.pos[3]} + --Sets up size + local size = data.size / 2 + --Creates button and counts it + self.createButton({ + label=label, click_function=funcName, function_owner=self, + position=pos, height=size, width=size, + font_size=size, scale=buttonScale, + color=buttonColor, font_color=buttonFontColor + }) + spawnedButtonCount = spawnedButtonCount + 1 + + --Sets up subtract 1 + local funcName = "counterSub"..i + local func = function() click_counter(i, displayNumber, -1) end + self.setVar(funcName, func) + --Sets up label + local label = "-" + --Set up position + local pos = {data.pos[1] - offsetDistance, data.pos[2], data.pos[3]} + --Creates button and counts it + self.createButton({ + label=label, click_function=funcName, function_owner=self, + position=pos, height=size, width=size, + font_size=size, scale=buttonScale, + color=buttonColor, font_color=buttonFontColor + }) + spawnedButtonCount = spawnedButtonCount + 1 + end +end + +function createTextbox() + for i, data in ipairs(ref_buttonData.textbox) do + --Sets up reference function + local funcName = "textbox"..i + local func = function(_,_,val,sel) click_textbox(i,val,sel) end + self.setVar(funcName, func) + + self.createInput({ + input_function = funcName, + function_owner = self, + label = data.label, + alignment = data.alignment, + position = data.pos, + scale = buttonScale, + width = data.width, + height = (data.font_size*data.rows)+24, + font_size = data.font_size, + color = buttonColor, + font_color = buttonFontColor, + value = data.value, + }) + end +end \ No newline at end of file diff --git a/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Tile The Circle Undone Campaign Log 1 44a05a.yaml b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Tile The Circle Undone Campaign Log 1 44a05a.yaml new file mode 100644 index 000000000..55a4ff859 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Circle Undone 61e777/Custom_Tile The Circle Undone Campaign Log 1 44a05a.yaml @@ -0,0 +1,296 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.1 + Type: 0 + ImageScalar: 1.0 + ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/786356000880295670/8FF05F1C905042FF3C3BBD6D369D1DD0E03463D6/ + ImageURL: http://cloud-3.steamusercontent.com/ugc/786356000880323787/F4D94402AF1C8265D7EED669076D554116A90DEC/ + WidthScale: 0.0 +Description: '' +GMNotes: '' +GUID: 44a05a +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Tile The Circle Undone Campaign Log 1 44a05a.ttslua' +LuaScriptState: '{"checkbox":[],"counter":[{"hideBG":true,"pos":[-0.7,0.1,-0.45],"size":400,"value":0},{"hideBG":true,"pos":[-0.5,0.1,-0.45],"size":400,"value":0},{"hideBG":true,"pos":[-0.517,0.1,-0.55],"size":300,"value":0},{"hideBG":true,"pos":[-0.274,0.1,-0.445],"size":400,"value":0},{"hideBG":true,"pos":[-0.06,0.1,-0.445],"size":400,"value":0},{"hideBG":true,"pos":[-0.061,0.1,-0.54],"size":300,"value":0},{"hideBG":true,"pos":[0.153,0.1,-0.44],"size":400,"value":0},{"hideBG":true,"pos":[0.379,0.1,-0.44],"size":400,"value":0},{"hideBG":true,"pos":[0.38,0.1,-0.54],"size":300,"value":0},{"hideBG":true,"pos":[0.614,0.1,-0.44],"size":400,"value":0},{"hideBG":true,"pos":[0.82,0.1,-0.44],"size":400,"value":0},{"hideBG":true,"pos":[0.827,0.1,-0.54],"size":300,"value":0}],"textbox":[{"alignment":2,"font_size":150,"label":"Click + to type","pos":[-0.637,0.1,-0.7],"rows":1,"value":"","width":2000},{"alignment":2,"font_size":150,"label":"Click + to type","pos":[-0.637,0.1,-0.625],"rows":1,"value":"","width":2000},{"alignment":2,"font_size":100,"label":"Click + to type","pos":[-0.637,0.1,-0.27],"rows":10,"value":"","width":2000},{"alignment":2,"font_size":150,"label":"Click + to type","pos":[-0.2,0.1,-0.7],"rows":1,"value":"","width":2000},{"alignment":2,"font_size":150,"label":"Click + to type","pos":[-0.2,0.1,-0.625],"rows":1,"value":"","width":2000},{"alignment":2,"font_size":100,"label":"Click + to type","pos":[-0.2,0.1,-0.27],"rows":10,"value":"","width":2000},{"alignment":2,"font_size":150,"label":"Click + to type","pos":[0.241,0.1,-0.7],"rows":1,"value":"","width":2000},{"alignment":2,"font_size":150,"label":"Click + to type","pos":[0.237,0.1,-0.62],"rows":1,"value":"","width":2000},{"alignment":2,"font_size":100,"label":"Click + to type","pos":[0.24,0.1,-0.268],"rows":10,"value":"","width":2000},{"alignment":2,"font_size":150,"label":"Click + to type","pos":[0.671,0.1,-0.7],"rows":1,"value":"","width":2000},{"alignment":2,"font_size":150,"label":"Click + to type","pos":[0.671,0.1,-0.62],"rows":1,"value":"","width":2000},{"alignment":2,"font_size":100,"label":"Click + to type","pos":[0.671,0.1,-0.265],"rows":10,"value":"","width":2000},{"alignment":2,"font_size":200,"label":"Click + to type","pos":[-0.464,0.1,0.507],"rows":16,"value":"","width":3200},{"alignment":2,"font_size":150,"label":"Click + to type","pos":[0.344,0.1,0.187],"rows":10,"value":"","width":3500},{"alignment":2,"font_size":150,"label":"Click + to type","pos":[0.351,0.1,0.744],"rows":12,"value":"","width":3500}]}' +Name: Custom_Tile +Nickname: The Circle Undone Campaign Log 1 +Snap: true +States: + '2': + Autoraise: true + ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 + CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.1 + Type: 0 + ImageScalar: 1.0 + ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/786356000880295670/8FF05F1C905042FF3C3BBD6D369D1DD0E03463D6/ + ImageURL: http://cloud-3.steamusercontent.com/ugc/786356000880325037/481B73FE2FF5AAA5E6CA26C28AD1D75EE24B362C/ + WidthScale: 0.0 + Description: '' + GMNotes: '' + GUID: 184a7c + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: "--[[ Character Sheet Template by: MrStump\r\n\r\nYou can set\ + \ up your own character sheet if you follow these steps.\r\n\r\nStep 1) Change\ + \ the character sheet image\r\n -Right click on the character sheet, click\ + \ Custom\r\n -Replace the image URL with one for your character sheet\r\n\ + \ -Click import, make sure your sheet loads\r\n -SAVE THE GAME (the table\ + \ setup)\r\n -LOAD FROM THAT SAVE YOU JUST MADE\r\n\r\nStep 2) Edit script\ + \ to fit your character sheet\r\n -Below you will see some general options,\ + \ and then the big data table\r\n -The data table is what determines how\ + \ many of which buttons are made\r\n -Checkboxes\r\n -Counters\r\ + \n -Textboxes\r\n -By default, there are 3 of each. You can add more\ + \ or remove entries\r\n -If you intend to add/remove, be sure only to add/remove\ + \ ENTRIES\r\n -This is what an entry looks like:\r\n {\r\n\ + \ pos = {-0.977,0.1,-0.589},\r\n size = 800,\r\ + \n state = false\r\n },\r\n -Deleting the whole\ + \ thing would remove that specific item on the sheet\r\n -Copy and pasting\ + \ it after another entry would create another\r\n -Each entry type has unique\ + \ data points (pos, size, state, etc)\r\n -Do not try to add in your\ + \ own data points or remove them individually\r\n -There is a summary\ + \ of what each point does at the top of its category\r\n\r\nStep 3) Save and\ + \ check script changes\r\n -Hit Save & Apply in the script window to save\ + \ your code\r\n -You can edit your code as needed and Save+Apply as often\ + \ as needed\r\n -When you are finished, make disableSave = false below then\ + \ Save+apply\r\n -This enables saving, so your sheet will remember whats\ + \ on it.\r\n\r\nBonus) Finding/Editing Positions for elements\r\n I have\ + \ included a tool to get positions for buttons in {x,y,z} form\r\n Place\ + \ it where you want the center of your element to be\r\n Then copy the table\ + \ from the notes (lower right of screen)\r\n You can highlight it and\ + \ CTRL+C\r\n Paste it into the data table where needed (pos=)\r\n If you\ + \ want to manually tweek the values:\r\n {0,0,0} is the center of the\ + \ character sheet\r\n {1,0,0} is right, {-1,0,0} is left\r\n {0,0,-1}\ + \ is up, {0,0,1} is down\r\n 0.1 for Y is the height off of the page.\r\ + \n If it was 0, it would be down inside the model of the sheet\r\n\ + \r\nBegin editing below: ]]\r\n\r\n--Set this to true while editing and false\ + \ when you have finished\r\ndisableSave = false\r\n--Remember to set this to\ + \ false once you are done making changes\r\n--Then, after you save & apply it,\ + \ save your game too\r\n\r\n--Color information for button text (r,g,b, values\ + \ of 0-1)\r\nbuttonFontColor = {0,0,0}\r\n--Color information for button background\r\ + \nbuttonColor = {0.902,0.886,0.788}\r\n--Change scale of button (Avoid changing\ + \ if possible)\r\nbuttonScale = {0.1,0.1,0.1}\r\n\r\n--This is the button placement\ + \ information\r\ndefaultButtonData = {\r\n --Add checkboxes\r\n checkbox\ + \ = {\r\n --[[\r\n pos = the position (pasted from the helper\ + \ tool)\r\n size = height/width/font_size for checkbox\r\n state\ + \ = default starting value for checkbox (true=checked, false=not)\r\n \ + \ ]]\r\n --1 checkbox\r\n {\r\n pos = {-0.829,0.1,-0.848},\r\ + \n size = 250,\r\n state = false\r\n },\r\n \ + \ --2 checkbox\r\n {\r\n pos = {-0.827,0.1,-0.776},\r\ + \n size = 250,\r\n state = false\r\n },\r\n \ + \ --3 checkbox\r\n {\r\n pos = {-0.824,0.1,-0.665},\r\ + \n size = 250,\r\n state = false\r\n },\r\n \ + \ --4 checkbox\r\n {\r\n pos = {-0.819,0.1,-0.574},\r\ + \n size = 250,\r\n state = false\r\n },\r\n \ + \ --5 checkbox\r\n {\r\n pos = {-0.819,0.1,-0.489},\r\ + \n size = 250,\r\n state = false\r\n },\r\n \ + \ --6 checkbox\r\n {\r\n pos = {-0.821,0.1,-0.352},\r\ + \n size = 250,\r\n state = false\r\n },\r\n \ + \ --7 checkbox\r\n {\r\n pos = {-0.817,0.1,-0.26},\r\ + \n size = 250,\r\n state = false\r\n },\r\n \ + \ --8 checkbox\r\n {\r\n pos = {-0.816,0.1,-0.168},\r\ + \n size = 250,\r\n state = false\r\n },\r\n \ + \ --9 checkbox\r\n {\r\n pos = {-0.814,0.1,-0.074},\r\ + \n size = 250,\r\n state = false\r\n },\r\n \ + \ --10 checkbox\r\n {\r\n pos = {-0.816,0.1,0.02},\r\ + \n size = 250,\r\n state = false\r\n },\r\n \ + \ --11 checkbox\r\n {\r\n pos = {-0.817,0.1,0.115},\r\ + \n size = 250,\r\n state = false\r\n },\r\n \ + \ --12 checkbox\r\n {\r\n pos = {-0.821,0.1,0.19},\r\ + \n size = 250,\r\n state = false\r\n },\r\n \ + \ --13 checkbox\r\n {\r\n pos = {-0.816,0.1,0.278},\r\ + \n size = 250,\r\n state = false\r\n },\r\n \ + \ --14 checkbox\r\n {\r\n pos = {-0.818,0.1,0.37},\r\ + \n size = 250,\r\n state = false\r\n },\r\n \ + \ --15 checkbox\r\n {\r\n pos = {-0.819,0.1,0.448},\r\ + \n size = 250,\r\n state = false\r\n },\r\n \ + \ --Gavriella Mizrah\r\n {\r\n pos = {0.738,0.1,0.176},\r\ + \n size = 500,\r\n state = false\r\n },\r\n \ + \ --Jerome Davids\r\n {\r\n pos = {0.083,0.1,0.432},\r\ + \n size = 500,\r\n state = false\r\n },\r\n \ + \ --Penny White\r\n {\r\n pos = {0.686,0.1,0.652},\r\ + \n size = 500,\r\n state = false\r\n },\r\n \ + \ --Valentino Rivas\r\n {\r\n pos = {0.07,0.1,0.878},\r\ + \n size = 500,\r\n state = false\r\n },\r\n \ + \ --End of checkboxes\r\n },\r\n --Add counters that have a + and\ + \ - button\r\n counter = {\r\n --[[\r\n pos = the position\ + \ (pasted from the helper tool)\r\n size = height/width/font_size for\ + \ counter\r\n value = default starting value for counter\r\n \ + \ hideBG = if background of counter is hidden (true=hidden, false=not)\r\n \ + \ ]]\r\n --Slot one counter 1\r\n\r\n --End of counters\r\ + \n },\r\n --Add editable text boxes\r\n textbox = {\r\n --[[\r\ + \n pos = the position (pasted from the helper tool)\r\n \ + \ rows = how many lines of text you want for this box\r\n width\ + \ = how wide the text box is\r\n font_size = size of text. This and\ + \ \"rows\" effect overall height\r\n label = what is shown when there\ + \ is no text. \"\" = nothing\r\n value = text entered into box. \"\ + \" = nothing\r\n alignment = Number to indicate how you want text aligned\r\ + \n (1=Automatic, 2=Left, 3=Center, 4=Right, 5=Justified)\r\ + \n ]]\r\n\r\n --Text 1\r\n {\r\n pos =\ + \ {0.4,0.1,0.184},\r\n rows =5,\r\n width = 2400,\r\ + \n font_size = 150,\r\n label = \"Click to type\"\ + ,\r\n value = \"\",\r\n alignment = 2\r\n },\r\ + \n --Text 2\r\n {\r\n pos = {0.404,0.1,0.427},\r\ + \n rows =5,\r\n width = 2400,\r\n \ + \ font_size = 150,\r\n label = \"Click to type\",\r\n \ + \ value = \"\",\r\n alignment = 2\r\n },\r\n \ + \ --Text 3\r\n {\r\n pos = {0.364,0.1,0.655},\r\n\ + \ rows =5,\r\n width = 2400,\r\n font_size\ + \ = 150,\r\n label = \"Click to type\",\r\n value\ + \ = \"\",\r\n alignment = 2\r\n },\r\n --Text 4\r\ + \n {\r\n pos = {0.38,0.1,0.885},\r\n rows\ + \ =5,\r\n width = 2400,\r\n font_size = 150,\r\ + \n label = \"Click to type\",\r\n value = \"\"\ + ,\r\n alignment = 2\r\n },\r\n --Killed and Insane\r\ + \n {\r\n pos = {-0.55,0.1,0.80},\r\n rows\ + \ =8,\r\n width = 3800,\r\n font_size = 150,\r\ + \n label = \"Click to type\",\r\n value = \"\"\ + ,\r\n alignment = 2\r\n },\r\n --End of textboxes\r\ + \n }\r\n}\r\n\r\n\r\n\r\n--Lua beyond this point, I recommend doing something\ + \ more fun with your life\r\n\r\n\r\n\r\n--Save function\r\nfunction updateSave()\r\ + \n saved_data = JSON.encode(ref_buttonData)\r\n if disableSave==true then\ + \ saved_data=\"\" end\r\n self.script_state = saved_data\r\nend\r\n\r\n--Startup\ + \ procedure\r\nfunction onload(saved_data)\r\n if disableSave==true then\ + \ saved_data=\"\" end\r\n if saved_data ~= \"\" then\r\n local loaded_data\ + \ = JSON.decode(saved_data)\r\n ref_buttonData = loaded_data\r\n else\r\ + \n ref_buttonData = defaultButtonData\r\n end\r\n\r\n spawnedButtonCount\ + \ = 0\r\n createCheckbox()\r\n createCounter()\r\n createTextbox()\r\ + \nend\r\n\r\n\r\n\r\n--Click functions for buttons\r\n\r\n\r\n\r\n--Checks or\ + \ unchecks the given box\r\nfunction click_checkbox(tableIndex, buttonIndex)\r\ + \n if ref_buttonData.checkbox[tableIndex].state == true then\r\n ref_buttonData.checkbox[tableIndex].state\ + \ = false\r\n self.editButton({index=buttonIndex, label=\"\"})\r\n \ + \ else\r\n ref_buttonData.checkbox[tableIndex].state = true\r\n \ + \ self.editButton({index=buttonIndex, label=string.char(10008)})\r\n end\r\ + \n updateSave()\r\nend\r\n\r\n--Applies value to given counter display\r\n\ + function click_counter(tableIndex, buttonIndex, amount)\r\n ref_buttonData.counter[tableIndex].value\ + \ = ref_buttonData.counter[tableIndex].value + amount\r\n self.editButton({index=buttonIndex,\ + \ label=ref_buttonData.counter[tableIndex].value})\r\n updateSave()\r\nend\r\ + \n\r\n--Updates saved value for given text box\r\nfunction click_textbox(i,\ + \ value, selected)\r\n if selected == false then\r\n ref_buttonData.textbox[i].value\ + \ = value\r\n updateSave()\r\n end\r\nend\r\n\r\n--Dud function for\ + \ if you have a background on a counter\r\nfunction click_none() end\r\n\r\n\ + \r\n\r\n--Button creation\r\n\r\n\r\n\r\n--Makes checkboxes\r\nfunction createCheckbox()\r\ + \n for i, data in ipairs(ref_buttonData.checkbox) do\r\n --Sets up\ + \ reference function\r\n local buttonNumber = spawnedButtonCount\r\n\ + \ local funcName = \"checkbox\"..i\r\n local func = function()\ + \ click_checkbox(i, buttonNumber) end\r\n self.setVar(funcName, func)\r\ + \n --Sets up label\r\n local label = \"\"\r\n if data.state==true\ + \ then label=string.char(10008) end\r\n --Creates button and counts it\r\ + \n self.createButton({\r\n label=label, click_function=funcName,\ + \ function_owner=self,\r\n position=data.pos, height=data.size, width=data.size,\r\ + \n font_size=data.size, scale=buttonScale,\r\n color=buttonColor,\ + \ font_color=buttonFontColor\r\n })\r\n spawnedButtonCount = spawnedButtonCount\ + \ + 1\r\n end\r\nend\r\n\r\n--Makes counters\r\nfunction createCounter()\r\ + \n for i, data in ipairs(ref_buttonData.counter) do\r\n --Sets up\ + \ display\r\n local displayNumber = spawnedButtonCount\r\n --Sets\ + \ up label\r\n local label = data.value\r\n --Sets height/width\ + \ for display\r\n local size = data.size\r\n if data.hideBG ==\ + \ true then size = 0 end\r\n --Creates button and counts it\r\n \ + \ self.createButton({\r\n label=label, click_function=\"click_none\"\ + , function_owner=self,\r\n position=data.pos, height=size, width=size,\r\ + \n font_size=data.size, scale=buttonScale,\r\n color=buttonColor,\ + \ font_color=buttonFontColor\r\n })\r\n spawnedButtonCount = spawnedButtonCount\ + \ + 1\r\n\r\n --Sets up add 1\r\n local funcName = \"counterAdd\"\ + ..i\r\n local func = function() click_counter(i, displayNumber, 1) end\r\ + \n self.setVar(funcName, func)\r\n --Sets up label\r\n \ + \ local label = \"+\"\r\n --Sets up position\r\n local offsetDistance\ + \ = (data.size/2 + data.size/4) * (buttonScale[1] * 0.002)\r\n local\ + \ pos = {data.pos[1] + offsetDistance, data.pos[2], data.pos[3]}\r\n \ + \ --Sets up size\r\n local size = data.size / 2\r\n --Creates\ + \ button and counts it\r\n self.createButton({\r\n label=label,\ + \ click_function=funcName, function_owner=self,\r\n position=pos,\ + \ height=size, width=size,\r\n font_size=size, scale=buttonScale,\r\ + \n color=buttonColor, font_color=buttonFontColor\r\n })\r\n\ + \ spawnedButtonCount = spawnedButtonCount + 1\r\n\r\n --Sets up\ + \ subtract 1\r\n local funcName = \"counterSub\"..i\r\n local\ + \ func = function() click_counter(i, displayNumber, -1) end\r\n self.setVar(funcName,\ + \ func)\r\n --Sets up label\r\n local label = \"-\"\r\n \ + \ --Set up position\r\n local pos = {data.pos[1] - offsetDistance, data.pos[2],\ + \ data.pos[3]}\r\n --Creates button and counts it\r\n self.createButton({\r\ + \n label=label, click_function=funcName, function_owner=self,\r\n\ + \ position=pos, height=size, width=size,\r\n font_size=size,\ + \ scale=buttonScale,\r\n color=buttonColor, font_color=buttonFontColor\r\ + \n })\r\n spawnedButtonCount = spawnedButtonCount + 1\r\n end\r\ + \nend\r\n\r\nfunction createTextbox()\r\n for i, data in ipairs(ref_buttonData.textbox)\ + \ do\r\n --Sets up reference function\r\n local funcName = \"\ + textbox\"..i\r\n local func = function(_,_,val,sel) click_textbox(i,val,sel)\ + \ end\r\n self.setVar(funcName, func)\r\n\r\n self.createInput({\r\ + \n input_function = funcName,\r\n function_owner = self,\r\ + \n label = data.label,\r\n alignment = data.alignment,\r\ + \n position = data.pos,\r\n scale = buttonScale,\r\ + \n width = data.width,\r\n height = (data.font_size*data.rows)+24,\r\ + \n font_size = data.font_size,\r\n color \ + \ = buttonColor,\r\n font_color = buttonFontColor,\r\n \ + \ value = data.value,\r\n })\r\n end\r\nend\r\n" + LuaScriptState: '{"checkbox":[{"pos":[-0.829,0.1,-0.848],"size":250,"state":false},{"pos":[-0.827,0.1,-0.776],"size":250,"state":false},{"pos":[-0.824,0.1,-0.665],"size":250,"state":false},{"pos":[-0.819,0.1,-0.574],"size":250,"state":false},{"pos":[-0.819,0.1,-0.489],"size":250,"state":false},{"pos":[-0.821,0.1,-0.352],"size":250,"state":false},{"pos":[-0.817,0.1,-0.26],"size":250,"state":false},{"pos":[-0.816,0.1,-0.168],"size":250,"state":false},{"pos":[-0.814,0.1,-0.074],"size":250,"state":false},{"pos":[-0.816,0.1,0.02],"size":250,"state":false},{"pos":[-0.817,0.1,0.115],"size":250,"state":false},{"pos":[-0.821,0.1,0.19],"size":250,"state":false},{"pos":[-0.816,0.1,0.278],"size":250,"state":false},{"pos":[-0.818,0.1,0.37],"size":250,"state":false},{"pos":[-0.819,0.1,0.448],"size":250,"state":false},{"pos":[0.738,0.1,0.176],"size":500,"state":false},{"pos":[0.083,0.1,0.432],"size":500,"state":false},{"pos":[0.686,0.1,0.652],"size":500,"state":false},{"pos":[0.07,0.1,0.878],"size":500,"state":false}],"counter":[],"textbox":[{"alignment":2,"font_size":150,"label":"Click + to type","pos":[0.4,0.1,0.184],"rows":5,"value":"","width":2400},{"alignment":2,"font_size":150,"label":"Click + to type","pos":[0.404,0.1,0.427],"rows":5,"value":"","width":2400},{"alignment":2,"font_size":150,"label":"Click + to type","pos":[0.364,0.1,0.655],"rows":5,"value":"","width":2400},{"alignment":2,"font_size":150,"label":"Click + to type","pos":[0.38,0.1,0.885],"rows":5,"value":"","width":2400},{"alignment":2,"font_size":150,"label":"Click + to type","pos":[-0.55,0.1,0.8],"rows":8,"value":"","width":3800}]}' + Name: Custom_Tile + Nickname: The Circle Undone Campaign Log 2 + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -1.440166 + posY: 1.47563934 + posZ: -26.7525749 + rotX: 359.920135 + rotY: 270.0003 + rotZ: 0.0168714 + scaleX: 6.5 + scaleY: 1.0 + scaleZ: 6.5 + XmlUI: '' +Sticky: true +Tooltip: true +Transform: + posX: -1.44020271 + posY: 1.47555518 + posZ: -27.040102 + rotX: 359.920135 + rotY: 270.000427 + rotZ: 0.0168709569 + scaleX: 6.5 + scaleY: 1.0 + scaleZ: 6.5 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0.ttslua b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0.ttslua new file mode 100644 index 000000000..402d5e04d --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0.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,5,6}, rotation={0,0,0}, height=500, width=1200, + font_size=350, 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 + 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) 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={1.5,5,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.2,5,6}, rotation={0,0,0}, height=500, width=1200, + font_size=350, color={0,0,0}, font_color={1,1,1} + }) + self.createButton({ + label="Reset", click_function="buttonClick_reset", function_owner=self, + position={-4,5,6}, rotation={0,0,0}, height=500, width=1000, + font_size=350, 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={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={-6,1,0}, rotation={0,90,0}, height=500, width=1200, +-- font_size=350, 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 \ No newline at end of file diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0.yaml b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0.yaml new file mode 100644 index 000000000..3f11f1290 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0.yaml @@ -0,0 +1,70 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +ContainedObjects: +- !include 'Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 3-A Dark Side + of the Moon 0fad66.yaml' +- !include 'Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 4-A Where the + Gods Dwell 185096.yaml' +- !include 'Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 2-B A Thousand + Shapes of Horror 1b4f86.yaml' +- !include 'Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 3-B Point of + No Return 4f81cf.yaml' +- !include 'Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 1-B Waking Nightmare + 599cb7.yaml' +- !include 'Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 2-A The Search + For Kadath 7b07ca.yaml' +- !include 'Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 1-A Beyond the + Gates of Sleep 9e15ac.yaml' +- !include 'Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 4-B Weaver of + the Cosmos e14c76.yaml' +- !include 'Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Tile The Dream-Quest Campaign + Log f40183.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/762723517669849292/9CD4BE220E1DE5294B1BC6301792920D213C98B3/ + MaterialIndex: 3 + MeshURL: https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/core_h_MSH.obj + NormalURL: '' + TypeIndex: 6 +Description: '' +GMNotes: '' +GUID: 0240d0 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Model_Bag The Dream-Eaters 0240d0.ttslua' +LuaScriptState: '{"ml":{"0fad66":{"lock":false,"pos":{"x":12.2504,"y":1.4633,"z":-3.9198},"rot":{"x":359.9201,"y":270.0086,"z":0.0169}},"185096":{"lock":false,"pos":{"x":12.2504,"y":1.4582,"z":-21.3054},"rot":{"x":359.9201,"y":270.0099,"z":0.0169}},"1b4f86":{"lock":false,"pos":{"x":12.2504,"y":1.4658,"z":4.6877},"rot":{"x":359.9201,"y":270.0045,"z":0.0169}},"4f81cf":{"lock":false,"pos":{"x":12.2504,"y":1.4607,"z":-12.6659},"rot":{"x":359.9201,"y":270.0103,"z":0.0169}},"599cb7":{"lock":false,"pos":{"x":12.2508,"y":1.4709,"z":22.0768},"rot":{"x":359.9201,"y":270.0001,"z":0.0169}},"7b07ca":{"lock":false,"pos":{"x":12.2506,"y":1.4684,"z":13.4375},"rot":{"x":359.9201,"y":270.0005,"z":0.0169}},"9e15ac":{"lock":false,"pos":{"x":12.2522,"y":1.4735,"z":30.8264},"rot":{"x":359.9201,"y":270.0001,"z":0.0169}},"e14c76":{"lock":false,"pos":{"x":12.2505,"y":1.4556,"z":-30.0551},"rot":{"x":359.9201,"y":270.0001,"z":0.0169}},"f40183":{"lock":false,"pos":{"x":-1.2197,"y":1.4753,"z":-26.8667},"rot":{"x":359.9201,"y":270.0724,"z":0.0168}}}}' +MaterialIndex: -1 +MeshIndex: -1 +Name: Custom_Model_Bag +Nickname: The Dream-Eaters +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 32.3002853 + posY: 1.44488025 + posZ: 28.5295124 + rotX: 359.920135 + rotY: 270.007843 + rotZ: 0.0168618374 + scaleX: 1.0 + scaleY: 0.139652729 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 1-A Beyond the Gates of Sleep 9e15ac.ttslua b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 1-A Beyond the Gates of Sleep 9e15ac.ttslua new file mode 100644 index 000000000..ed7a62e7d --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 1-A Beyond the Gates of Sleep 9e15ac.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.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.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 \ No newline at end of file diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 1-A Beyond the Gates of Sleep 9e15ac.yaml b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 1-A Beyond the Gates of Sleep 9e15ac.yaml new file mode 100644 index 000000000..21e8bfc7e --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 1-A Beyond the Gates of Sleep 9e15ac.yaml @@ -0,0 +1,80 @@ +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 1-A Beyond the Gates of Sleep 9e15ac/Custom_Tile Campaign + A Setup 075016.yaml' +- !include 'Custom_Model_Bag 1-A Beyond the Gates of Sleep 9e15ac/Card Seventy Steps + 1b07cc.yaml' +- !include 'Custom_Model_Bag 1-A Beyond the Gates of Sleep 9e15ac/Card Journey through + the Gates 2cd5d4.yaml' +- !include 'Custom_Model_Bag 1-A Beyond the Gates of Sleep 9e15ac/Deck Act Deck 42b4ff.yaml' +- !include 'Custom_Model_Bag 1-A Beyond the Gates of Sleep 9e15ac/Card The Cavern + of Flame 54a280.yaml' +- !include 'Custom_Model_Bag 1-A Beyond the Gates of Sleep 9e15ac/Custom_Tile 7234af.yaml' +- !include 'Custom_Model_Bag 1-A Beyond the Gates of Sleep 9e15ac/Custom_Model_Bag + Set-aside 7ba884.yaml' +- !include 'Custom_Model_Bag 1-A Beyond the Gates of Sleep 9e15ac/Card Scenario f07e08.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/775107869055713524/616B6512BE4D795AE4FFC1D76DAC23B88F623B48/ + MaterialIndex: 3 + MeshURL: https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj + NormalURL: '' + TypeIndex: 6 +Description: The Dream-Eaters +GMNotes: '' +GUID: 9e15ac +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Model_Bag 1-A Beyond the Gates of Sleep 9e15ac.ttslua' +LuaScriptState: '{"ml":{"075016":{"lock":false,"pos":{"x":-3.7237,"y":1.5823,"z":-14.9545},"rot":{"x":359.9197,"y":270.0308,"z":0.0168}},"1b07cc":{"lock":false,"pos":{"x":-23.6763,"y":1.6862,"z":-0.0301},"rot":{"x":359.9201,"y":269.9973,"z":0.0169}},"2cd5d4":{"lock":false,"pos":{"x":-2.7245,"y":1.6571,"z":0.3734},"rot":{"x":0.0168,"y":179.9999,"z":0.0803}},"42b4ff":{"lock":false,"pos":{"x":-2.6888,"y":1.6535,"z":-5.0486},"rot":{"x":0.0168,"y":180.0021,"z":0.0803}},"54a280":{"lock":false,"pos":{"x":-23.6764,"y":1.684,"z":-7.7},"rot":{"x":359.9201,"y":269.9999,"z":0.0169}},"7234af":{"lock":false,"pos":{"x":-23.6765,"y":1.6134,"z":-3.83},"rot":{"x":359.9831,"y":-0.0042,"z":359.9201}},"7ba884":{"lock":false,"pos":{"x":1.6966,"y":1.5583,"z":14.2787},"rot":{"x":359.9551,"y":224.9979,"z":0.0687}},"f07e08":{"lock":false,"pos":{"x":-3.956,"y":1.6585,"z":-10.4412},"rot":{"x":359.9197,"y":270.0001,"z":180.0168}}}}' +MaterialIndex: -1 +MeshIndex: -1 +Name: Custom_Model_Bag +Nickname: '1-A: Beyond the Gates of Sleep' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 12.3543625 + posY: 1.47335422 + posZ: 30.8146915 + rotX: 359.920135 + rotY: 270.000061 + rotZ: 0.0168730244 + scaleX: 2.21 + scaleY: 0.46 + scaleZ: 2.42 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 1-A Beyond the Gates of Sleep 9e15ac/Card Journey through the Gates 2cd5d4.yaml b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 1-A Beyond the Gates of Sleep 9e15ac/Card Journey through the Gates 2cd5d4.yaml new file mode 100644 index 000000000..7fc655129 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 1-A Beyond the Gates of Sleep 9e15ac/Card Journey through the Gates 2cd5d4.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 274600 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2746': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/780749631103001215/3FF9DC51D7737267B68EC5D9CF17BE421681663B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780749631102998699/DA1D7C58FE177F46169558EF1D8301754A91A73A/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Agenda 1 +GMNotes: '' +GUID: 2cd5d4 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Journey through the Gates +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.7245183 + posY: 1.657101 + posZ: 0.373462975 + rotX: 0.0168348923 + rotY: 180.000031 + rotZ: 0.08025804 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 1-A Beyond the Gates of Sleep 9e15ac/Card Scenario f07e08.yaml b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 1-A Beyond the Gates of Sleep 9e15ac/Card Scenario f07e08.yaml new file mode 100644 index 000000000..5fda8e71c --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 1-A Beyond the Gates of Sleep 9e15ac/Card Scenario f07e08.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 274400 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2744': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493383646804247/225C1675DCFAFA6331AF23D73934CE52544F4863/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646805159/968F84A126D57214C3BC8E095D9D8EB066ED8D6C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Beyond the Gates of Sleep +GMNotes: '' +GUID: f07e08 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Scenario +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.95600033 + posY: 1.65847111 + posZ: -10.4412022 + rotX: 359.919739 + rotY: 270.000061 + rotZ: 180.01683 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 1-A Beyond the Gates of Sleep 9e15ac/Card Seventy Steps 1b07cc.yaml b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 1-A Beyond the Gates of Sleep 9e15ac/Card Seventy Steps 1b07cc.yaml new file mode 100644 index 000000000..8be31f9b3 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 1-A Beyond the Gates of Sleep 9e15ac/Card Seventy Steps 1b07cc.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 274401 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2744': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493383646804247/225C1675DCFAFA6331AF23D73934CE52544F4863/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646805159/968F84A126D57214C3BC8E095D9D8EB066ED8D6C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Of Lighter Slumber +GMNotes: '' +GUID: 1b07cc +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Seventy Steps +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -23.6763 + posY: 1.68622 + posZ: -0.0301003885 + rotX: 359.9201 + rotY: 270.0 + rotZ: 0.0168761853 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 1-A Beyond the Gates of Sleep 9e15ac/Card The Cavern of Flame 54a280.yaml b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 1-A Beyond the Gates of Sleep 9e15ac/Card The Cavern of Flame 54a280.yaml new file mode 100644 index 000000000..a5bda9860 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 1-A Beyond the Gates of Sleep 9e15ac/Card The Cavern of Flame 54a280.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 274402 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2744': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493383646804247/225C1675DCFAFA6331AF23D73934CE52544F4863/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646805159/968F84A126D57214C3BC8E095D9D8EB066ED8D6C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Cave. Steps. +GMNotes: '' +GUID: 54a280 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: The Cavern of Flame +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -23.6764 + posY: 1.68396175 + posZ: -7.70000029 + rotX: 359.9201 + rotY: 270.0 + rotZ: 0.01687518 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 1-A Beyond the Gates of Sleep 9e15ac/Custom_Model_Bag Set-aside 7ba884.yaml b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 1-A Beyond the Gates of Sleep 9e15ac/Custom_Model_Bag Set-aside 7ba884.yaml new file mode 100644 index 000000000..7a9a46191 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 1-A Beyond the Gates of Sleep 9e15ac/Custom_Model_Bag Set-aside 7ba884.yaml @@ -0,0 +1,64 @@ +Autoraise: true +ColorDiffuse: + b: 0.02148666 + g: 0.00100758043 + r: 0.02148666 +ContainedObjects: +- !include 'Custom_Model_Bag Set-aside 7ba884/Card Laboring Gug 974c44.yaml' +- !include 'Custom_Model_Bag Set-aside 7ba884/Card Randolph Carter 2cf22b.yaml' +- !include 'Custom_Model_Bag Set-aside 7ba884/Card Kaman-Thah 6ebabc.yaml' +- !include 'Custom_Model_Bag Set-aside 7ba884/Card Nasht 33f2ec.yaml' +- !include 'Custom_Model_Bag Set-aside 7ba884/Deck Encounter Deck cbf3fa.yaml' +- !include 'Custom_Model_Bag Set-aside 7ba884/Card The Enchanted Path 2828b6.yaml' +- !include 'Custom_Model_Bag Set-aside 7ba884/Deck Enchanted Woods 9cc8dc.yaml' +- !include 'Custom_Model_Bag Set-aside 7ba884/Card Base of the Steps 2fb629.yaml' +- !include 'Custom_Model_Bag Set-aside 7ba884/Card Seven Hundred Steps 062996.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: '' +GMNotes: '' +GUID: 7ba884 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +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.69660056 + posY: 1.55831623 + posZ: 14.2787027 + rotX: 359.955139 + rotY: 224.99791 + rotZ: 0.06867301 + scaleX: 2.0 + scaleY: 2.0 + scaleZ: 2.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 1-A Beyond the Gates of Sleep 9e15ac/Custom_Model_Bag Set-aside 7ba884/Card Base of the Steps 2fb629.yaml b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 1-A Beyond the Gates of Sleep 9e15ac/Custom_Model_Bag Set-aside 7ba884/Card Base of the Steps 2fb629.yaml new file mode 100644 index 000000000..5ed75b694 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 1-A Beyond the Gates of Sleep 9e15ac/Custom_Model_Bag Set-aside 7ba884/Card Base of the Steps 2fb629.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 274404 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2744': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493383646804247/225C1675DCFAFA6331AF23D73934CE52544F4863/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646805159/968F84A126D57214C3BC8E095D9D8EB066ED8D6C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Steps. Woods. +GMNotes: '' +GUID: 2fb629 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Base of the Steps +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 1.69648647 + posY: 3.71471977 + posZ: 14.2788353 + rotX: 359.9621 + rotY: 224.991257 + rotZ: 0.05468249 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 1-A Beyond the Gates of Sleep 9e15ac/Custom_Model_Bag Set-aside 7ba884/Card Kaman-Thah 6ebabc.yaml b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 1-A Beyond the Gates of Sleep 9e15ac/Custom_Model_Bag Set-aside 7ba884/Card Kaman-Thah 6ebabc.yaml new file mode 100644 index 000000000..6da198337 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 1-A Beyond the Gates of Sleep 9e15ac/Custom_Model_Bag Set-aside 7ba884/Card Kaman-Thah 6ebabc.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 274413 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2744': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493383646804247/225C1675DCFAFA6331AF23D73934CE52544F4863/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646805159/968F84A126D57214C3BC8E095D9D8EB066ED8D6C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Priest of the Dreamlands +GMNotes: '' +GUID: 6ebabc +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Kaman-Thah +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 43.96482 + posY: 3.41234827 + posZ: 80.36105 + rotX: 0.0208074041 + rotY: 270.000031 + rotZ: 0.0167699456 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 1-A Beyond the Gates of Sleep 9e15ac/Custom_Model_Bag Set-aside 7ba884/Card Laboring Gug 974c44.yaml b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 1-A Beyond the Gates of Sleep 9e15ac/Custom_Model_Bag Set-aside 7ba884/Card Laboring Gug 974c44.yaml new file mode 100644 index 000000000..0eb175ad3 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 1-A Beyond the Gates of Sleep 9e15ac/Custom_Model_Bag Set-aside 7ba884/Card Laboring Gug 974c44.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 274101 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2741': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: Monster. Gug. +GMNotes: '' +GUID: 974c44 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Laboring Gug +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 39.0742722 + posY: 3.42804384 + posZ: 74.08097 + rotX: 0.0177708846 + rotY: 270.000183 + rotZ: 0.0162155423 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 1-A Beyond the Gates of Sleep 9e15ac/Custom_Model_Bag Set-aside 7ba884/Card Nasht 33f2ec.yaml b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 1-A Beyond the Gates of Sleep 9e15ac/Custom_Model_Bag Set-aside 7ba884/Card Nasht 33f2ec.yaml new file mode 100644 index 000000000..48aca6cbe --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 1-A Beyond the Gates of Sleep 9e15ac/Custom_Model_Bag Set-aside 7ba884/Card Nasht 33f2ec.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 274414 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2744': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493383646804247/225C1675DCFAFA6331AF23D73934CE52544F4863/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646805159/968F84A126D57214C3BC8E095D9D8EB066ED8D6C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Priest of the Dreamlands +GMNotes: '' +GUID: 33f2ec +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Nasht +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 38.74365 + posY: 3.41053915 + posZ: 80.65822 + rotX: 0.0208071955 + rotY: 270.000031 + rotZ: 0.0167701822 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 1-A Beyond the Gates of Sleep 9e15ac/Custom_Model_Bag Set-aside 7ba884/Card Randolph Carter 2cf22b.yaml b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 1-A Beyond the Gates of Sleep 9e15ac/Custom_Model_Bag Set-aside 7ba884/Card Randolph Carter 2cf22b.yaml new file mode 100644 index 000000000..b6681987e --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 1-A Beyond the Gates of Sleep 9e15ac/Custom_Model_Bag Set-aside 7ba884/Card Randolph Carter 2cf22b.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 274200 +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/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: Expert Dreamer +GMNotes: '' +GUID: 2cf22b +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Randolph Carter +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 39.3514366 + posY: 3.4098 + posZ: 77.37932 + rotX: 0.0208066069 + rotY: 270.00946 + rotZ: 0.01677401 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 1-A Beyond the Gates of Sleep 9e15ac/Custom_Model_Bag Set-aside 7ba884/Card Seven Hundred Steps 062996.yaml b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 1-A Beyond the Gates of Sleep 9e15ac/Custom_Model_Bag Set-aside 7ba884/Card Seven Hundred Steps 062996.yaml new file mode 100644 index 000000000..033da6371 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 1-A Beyond the Gates of Sleep 9e15ac/Custom_Model_Bag Set-aside 7ba884/Card Seven Hundred Steps 062996.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 274403 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2744': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493383646804247/225C1675DCFAFA6331AF23D73934CE52544F4863/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646805159/968F84A126D57214C3BC8E095D9D8EB066ED8D6C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Of Deeper Slumber +GMNotes: '' +GUID: 062996 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Seven Hundred Steps +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 1.69651234 + posY: 3.69915676 + posZ: 14.2788219 + rotX: 359.954742 + rotY: 225.0013 + rotZ: 0.0689351261 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 1-A Beyond the Gates of Sleep 9e15ac/Custom_Model_Bag Set-aside 7ba884/Card The Enchanted Path 2828b6.yaml b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 1-A Beyond the Gates of Sleep 9e15ac/Custom_Model_Bag Set-aside 7ba884/Card The Enchanted Path 2828b6.yaml new file mode 100644 index 000000000..4cdb16887 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 1-A Beyond the Gates of Sleep 9e15ac/Custom_Model_Bag Set-aside 7ba884/Card The Enchanted Path 2828b6.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 274405 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2744': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493383646804247/225C1675DCFAFA6331AF23D73934CE52544F4863/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646805159/968F84A126D57214C3BC8E095D9D8EB066ED8D6C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Woods. +GMNotes: '' +GUID: 2828b6 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: The Enchanted Path +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 1.69642472 + posY: 3.728411 + posZ: 14.2788372 + rotX: 359.94812 + rotY: 224.998062 + rotZ: 0.0583290569 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 1-A Beyond the Gates of Sleep 9e15ac/Custom_Model_Bag Set-aside 7ba884/Deck Enchanted Woods 9cc8dc.yaml b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 1-A Beyond the Gates of Sleep 9e15ac/Custom_Model_Bag Set-aside 7ba884/Deck Enchanted Woods 9cc8dc.yaml new file mode 100644 index 000000000..6e4eb2b6f --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 1-A Beyond the Gates of Sleep 9e15ac/Custom_Model_Bag Set-aside 7ba884/Deck Enchanted Woods 9cc8dc.yaml @@ -0,0 +1,344 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 274409 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2744': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493383646804247/225C1675DCFAFA6331AF23D73934CE52544F4863/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646805159/968F84A126D57214C3BC8E095D9D8EB066ED8D6C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Woods. + GMNotes: '' + GUID: 2273ef + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Enchanted Woods + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -23.6763439 + posY: 1.68731368 + posZ: 3.8599546 + rotX: 359.920532 + rotY: 269.9999 + rotZ: 0.0134935183 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274411 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2744': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493383646804247/225C1675DCFAFA6331AF23D73934CE52544F4863/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646805159/968F84A126D57214C3BC8E095D9D8EB066ED8D6C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Woods. + GMNotes: '' + GUID: c9a005 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Enchanted Woods + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -23.6765442 + posY: 1.83725619 + posZ: 3.860009 + rotX: 359.931 + rotY: 270.000153 + rotZ: 0.00307039218 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274406 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2744': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493383646804247/225C1675DCFAFA6331AF23D73934CE52544F4863/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646805159/968F84A126D57214C3BC8E095D9D8EB066ED8D6C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Woods. + GMNotes: '' + GUID: b3fcf5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Enchanted Woods + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -23.6765213 + posY: 1.854765 + posZ: 3.85998821 + rotX: 359.917938 + rotY: 270.000061 + rotZ: 0.0161052831 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274412 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2744': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493383646804247/225C1675DCFAFA6331AF23D73934CE52544F4863/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646805159/968F84A126D57214C3BC8E095D9D8EB066ED8D6C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Woods. + GMNotes: '' + GUID: 2157cc + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Enchanted Woods + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -23.6741543 + posY: 1.80802608 + posZ: 3.858933 + rotX: 358.098724 + rotY: 269.975342 + rotZ: 0.89489615 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274410 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2744': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493383646804247/225C1675DCFAFA6331AF23D73934CE52544F4863/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646805159/968F84A126D57214C3BC8E095D9D8EB066ED8D6C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Woods. + GMNotes: '' + GUID: 8c287b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Enchanted Woods + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -23.6765232 + posY: 1.83922446 + posZ: 3.86001039 + rotX: 359.9195 + rotY: 270.0002 + rotZ: 0.0153193688 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274408 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2744': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493383646804247/225C1675DCFAFA6331AF23D73934CE52544F4863/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646805159/968F84A126D57214C3BC8E095D9D8EB066ED8D6C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Woods. + GMNotes: '' + GUID: 92e96b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Enchanted Woods + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -23.6765232 + posY: 1.84176338 + posZ: 3.86001015 + rotX: 359.9195 + rotY: 270.0003 + rotZ: 0.0153638385 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274407 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2744': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493383646804247/225C1675DCFAFA6331AF23D73934CE52544F4863/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646805159/968F84A126D57214C3BC8E095D9D8EB066ED8D6C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Woods. + GMNotes: '' + GUID: 14f2fe + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Enchanted Woods + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -23.6765232 + posY: 1.84671867 + posZ: 3.86001 + rotX: 359.919525 + rotY: 270.000366 + rotZ: 0.0154158389 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2744': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493383646804247/225C1675DCFAFA6331AF23D73934CE52544F4863/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646805159/968F84A126D57214C3BC8E095D9D8EB066ED8D6C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 274409 +- 274411 +- 274406 +- 274412 +- 274410 +- 274408 +- 274407 +Description: '' +GMNotes: '' +GUID: 9cc8dc +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Enchanted Woods +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 1.6964252 + posY: 3.73143768 + posZ: 14.278841 + rotX: 359.948151 + rotY: 224.998062 + rotZ: 0.05831738 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 1-A Beyond the Gates of Sleep 9e15ac/Custom_Model_Bag Set-aside 7ba884/Deck Encounter Deck cbf3fa.yaml b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 1-A Beyond the Gates of Sleep 9e15ac/Custom_Model_Bag Set-aside 7ba884/Deck Encounter Deck cbf3fa.yaml new file mode 100644 index 000000000..82553e7bd --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 1-A Beyond the Gates of Sleep 9e15ac/Custom_Model_Bag Set-aside 7ba884/Deck Encounter Deck cbf3fa.yaml @@ -0,0 +1,1211 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 274134 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2741': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: 6aaec7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Zoog Burrow + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 10.4340258 + posY: 1.347994 + posZ: 77.2828445 + rotX: 0.0208079051 + rotY: 270.0003 + rotZ: 0.0167690869 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274122 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2741': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Power. + GMNotes: '' + GUID: b3f13e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Prismatic Phenomenon + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 19.31351 + posY: 1.35409915 + posZ: 87.16512 + rotX: 0.0194639154 + rotY: 270.016052 + rotZ: 0.0158865564 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274113 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2741': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: 9a84de + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Law of 'Ygiroth (Discord) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 1.704878 + posY: 1.34584463 + posZ: 80.7701645 + rotX: 0.0208076891 + rotY: 270.000183 + rotZ: 0.016768489 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233721 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2337': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: 50e716 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Obscuring Fog + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 36.22917 + posY: 1.51124179 + posZ: 88.3929443 + rotX: 0.0165650453 + rotY: 269.916962 + rotZ: 0.06150928 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274118 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2741': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Curse. + GMNotes: '' + GUID: 76859e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dreamer's Curse + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 22.2842884 + posY: 1.43405008 + posZ: 80.80763 + rotX: 0.0192378685 + rotY: 270.023163 + rotZ: 355.773743 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274132 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2741': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Creature. Zoog. + GMNotes: '' + GUID: 6a71eb + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Stealthy Zoog + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 10.8953857 + posY: 1.35096252 + posZ: 86.85204 + rotX: 0.0208022948 + rotY: 270.000153 + rotZ: 0.016769195 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274122 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2741': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Power. + GMNotes: '' + GUID: 4a7876 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Prismatic Phenomenon + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 18.1364231 + posY: 1.35241461 + posZ: 82.82968 + rotX: 0.02080732 + rotY: 270.006775 + rotZ: 0.0167727135 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274103 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2741': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Blunder. + GMNotes: '' + GUID: 37b4cd + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Lost in the Woods + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 7.09294271 + posY: 1.34948814 + posZ: 86.5327454 + rotX: 0.0208071768 + rotY: 270.0001 + rotZ: 0.016768394 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274120 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2741': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Curse. + GMNotes: '' + GUID: 841cfc + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Deeper Slumber + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 14.3647461 + posY: 1.35111558 + posZ: 83.07091 + rotX: 0.02080731 + rotY: 270.000122 + rotZ: 0.016768286 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274132 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2741': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Creature. Zoog. + GMNotes: '' + GUID: b50e33 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Stealthy Zoog + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 10.9278841 + posY: 1.34991217 + posZ: 83.22328 + rotX: 0.02080437 + rotY: 270.000061 + rotZ: 0.0167663489 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274119 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2741': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: c34a3e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Somniphobia + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 18.2608337 + posY: 1.35082424 + posZ: 77.24169 + rotX: 0.0208078679 + rotY: 270.000061 + rotZ: 0.0167684387 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274131 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2741': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Creature. Zoog. + GMNotes: '' + GUID: 578fce + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Furtive Zoog + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 14.3287363 + posY: 1.34936082 + posZ: 77.12063 + rotX: 0.020807771 + rotY: 270.000122 + rotZ: 0.0167682488 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274118 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2741': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Curse. + GMNotes: '' + GUID: 4259c3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dreamer's Curse + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 22.4578781 + posY: 1.35281169 + posZ: 78.8279 + rotX: 0.0213993136 + rotY: 270.003021 + rotZ: 0.0169224273 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233720 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2337': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: 16d6d6 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Crypt Chill + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 36.32401 + posY: 1.360664 + posZ: 88.7352448 + rotX: 0.0216661077 + rotY: 269.999268 + rotZ: 0.0116391722 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274102 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2741': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Creature. Zoog. Elite. + GMNotes: '' + GUID: 30a8fd + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ancient Zoog + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 6.390212 + posY: 1.34718919 + posZ: 79.55042 + rotX: 0.0208074842 + rotY: 270.000824 + rotZ: 0.016768869 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274111 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2741': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Avatar. + GMNotes: '' + GUID: 5404ff + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Crawling Mist + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 5.9762125 + posY: 1.34604812 + posZ: 76.1658249 + rotX: 0.02080772 + rotY: 270.000122 + rotZ: 0.0167688653 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274133 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2741': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Creature. Zoog. + GMNotes: '' + GUID: be06bc + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Inconspicuous Zoog + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 11.1632357 + posY: 1.34905612 + posZ: 80.00709 + rotX: 0.0208133273 + rotY: 270.000183 + rotZ: 0.0167741217 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274120 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2741': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Curse. + GMNotes: '' + GUID: a13b33 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Deeper Slumber + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 14.8478355 + posY: 1.35229611 + posZ: 86.504715 + rotX: 0.02080748 + rotY: 270.000122 + rotZ: 0.0167685673 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274112 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2741': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: 8205b1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Law of 'Ygiroth (Chaos) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 1.68461835 + posY: 1.344847 + posZ: 77.38719 + rotX: 0.0208076648 + rotY: 270.000122 + rotZ: 0.0167682879 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274103 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2741': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Blunder. + GMNotes: '' + GUID: 5220fb + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Lost in the Woods + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 6.78721857 + posY: 1.3482188 + posZ: 82.57534 + rotX: 0.0208076388 + rotY: 270.000031 + rotZ: 0.0167690162 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274121 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2741': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Power. + GMNotes: '' + GUID: 427a1d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dreamlands Eclipse + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 21.73517 + posY: 1.44899857 + posZ: 86.50061 + rotX: 356.55896 + rotY: 269.9948 + rotZ: 0.01701287 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274114 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2741': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: c1a0c1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Law of 'Ygiroth (Pandemonium) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.68838215 + posY: 1.347185 + posZ: 84.1291962 + rotX: 0.0208078176 + rotY: 270.000122 + rotZ: 0.0167686474 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233721 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2337': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: c4ce76 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Obscuring Fog + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 36.3306465 + posY: 1.52371442 + posZ: 87.96211 + rotX: 0.02788579 + rotY: 270.030975 + rotZ: 0.149886414 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274131 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2741': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Creature. Zoog. + GMNotes: '' + GUID: f2aca5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Furtive Zoog + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 14.8493814 + posY: 1.35047209 + posZ: 80.27121 + rotX: 0.0208077654 + rotY: 270.000122 + rotZ: 0.01676835 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274121 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2741': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Power. + GMNotes: '' + GUID: 6a8971 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dreamlands Eclipse + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 21.8291836 + posY: 1.35398853 + posZ: 83.62457 + rotX: 0.0208105836 + rotY: 269.988464 + rotZ: 0.0167643335 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274119 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2741': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: 34827b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Somniphobia + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 18.28582 + posY: 1.35154665 + posZ: 79.67875 + rotX: 0.0208072942 + rotY: 270.000061 + rotZ: 0.0167683177 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233720 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2337': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: ab3719 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Crypt Chill + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 36.4160576 + posY: 1.50560057 + posZ: 88.4538 + rotX: 0.0300157573 + rotY: 269.9982 + rotZ: 0.00885154 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2337': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '2741': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 274134 +- 274122 +- 274113 +- 233721 +- 274118 +- 274132 +- 274122 +- 274103 +- 274120 +- 274132 +- 274119 +- 274131 +- 274118 +- 233720 +- 274102 +- 274111 +- 274133 +- 274120 +- 274112 +- 274103 +- 274121 +- 274114 +- 233721 +- 274131 +- 274121 +- 274119 +- 233720 +Description: '' +GMNotes: '' +GUID: cbf3fa +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Encounter Deck +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 1.98281264 + posY: 2.75759 + posZ: 2.93342638 + rotX: 359.955048 + rotY: 270.004883 + rotZ: 180.068741 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 1-A Beyond the Gates of Sleep 9e15ac/Custom_Tile 7234af.yaml b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 1-A Beyond the Gates of Sleep 9e15ac/Custom_Tile 7234af.yaml new file mode 100644 index 000000000..d2b674988 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 1-A Beyond the Gates of Sleep 9e15ac/Custom_Tile 7234af.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 7234af +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.6765 + posY: 1.61338806 + posZ: -3.82999969 + rotX: 359.983124 + rotY: -0.00380328321 + rotZ: 359.920074 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 1-A Beyond the Gates of Sleep 9e15ac/Custom_Tile Campaign A Setup 075016.ttslua b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 1-A Beyond the Gates of Sleep 9e15ac/Custom_Tile Campaign A Setup 075016.ttslua new file mode 100644 index 000000000..b26158ce8 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 1-A Beyond the Gates of Sleep 9e15ac/Custom_Tile Campaign A Setup 075016.ttslua @@ -0,0 +1,25 @@ +name = 'TDE_A' + +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 + +function standaloneClick() + Global.call('fillContainer', {object=self, key=name, mode='standalone'}) +end diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 1-A Beyond the Gates of Sleep 9e15ac/Custom_Tile Campaign A Setup 075016.yaml b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 1-A Beyond the Gates of Sleep 9e15ac/Custom_Tile Campaign A Setup 075016.yaml new file mode 100644 index 000000000..01d4de84c --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 1-A Beyond the Gates of Sleep 9e15ac/Custom_Tile Campaign A Setup 075016.yaml @@ -0,0 +1,42 @@ +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: http://cloud-3.steamusercontent.com/ugc/949588657194710961/D864BCCCC1C811EC7F0AED69D1C30C678D3D9FC9/ + ImageURL: http://cloud-3.steamusercontent.com/ugc/965354846165100486/3DC8FCEF364B30758B09EF96AF9458F2B8E64D56/ + WidthScale: 0.0 +Description: click to set chaos token difficulty +GMNotes: '' +GUID: '075016' +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Tile Campaign A Setup 075016.ttslua' +LuaScriptState: '' +Name: Custom_Tile +Nickname: Campaign A Setup +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.72370052 + posY: 1.582283 + posZ: -14.9545031 + rotX: 359.919739 + rotY: 270.030823 + rotZ: 0.01679488 + scaleX: 2.2 + scaleY: 1.0 + scaleZ: 2.2 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 1-A Beyond the Gates of Sleep 9e15ac/Deck Act Deck 42b4ff.yaml b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 1-A Beyond the Gates of Sleep 9e15ac/Deck Act Deck 42b4ff.yaml new file mode 100644 index 000000000..17ee81a2c --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 1-A Beyond the Gates of Sleep 9e15ac/Deck Act Deck 42b4ff.yaml @@ -0,0 +1,215 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 274604 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2746': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/780749631103001215/3FF9DC51D7737267B68EC5D9CF17BE421681663B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780749631102998699/DA1D7C58FE177F46169558EF1D8301754A91A73A/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 4 + GMNotes: '' + GUID: f3dd39 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Path + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -0.553955 + posY: 3.438215 + posZ: -13.9903574 + rotX: 0.0168324672 + rotY: 180.001724 + rotZ: 0.0802589357 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274603 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2746': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/780749631103001215/3FF9DC51D7737267B68EC5D9CF17BE421681663B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780749631102998699/DA1D7C58FE177F46169558EF1D8301754A91A73A/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 3 + GMNotes: '' + GUID: 5cee0d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Final Descent + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -1.10321772 + posY: 3.43646979 + posZ: -15.6497784 + rotX: 0.0168323759 + rotY: 180.00174 + rotZ: 0.0802591443 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274602 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2746': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/780749631103001215/3FF9DC51D7737267B68EC5D9CF17BE421681663B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780749631102998699/DA1D7C58FE177F46169558EF1D8301754A91A73A/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 2 + GMNotes: '' + GUID: de502b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Trial of Nasht and Kaman-Thah + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -0.84218967 + posY: 2.76301241 + posZ: -16.8501968 + rotX: 0.0168323554 + rotY: 180.00174 + rotZ: 0.08025898 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274601 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2746': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/780749631103001215/3FF9DC51D7737267B68EC5D9CF17BE421681663B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780749631102998699/DA1D7C58FE177F46169558EF1D8301754A91A73A/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 1 + GMNotes: '' + GUID: 3f6848 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Entering the Dreamlands + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.68853378 + posY: 1.809068 + posZ: -5.04852247 + rotX: 0.0192188546 + rotY: 180.000076 + rotZ: 0.07795308 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2746': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/780749631103001215/3FF9DC51D7737267B68EC5D9CF17BE421681663B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780749631102998699/DA1D7C58FE177F46169558EF1D8301754A91A73A/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 274604 +- 274603 +- 274602 +- 274601 +Description: '' +GMNotes: '' +GUID: 42b4ff +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Act Deck +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.68879986 + posY: 1.65349483 + posZ: -5.04859972 + rotX: 0.0168327354 + rotY: 180.001709 + rotZ: 0.08025796 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 1-B Waking Nightmare 599cb7.ttslua b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 1-B Waking Nightmare 599cb7.ttslua new file mode 100644 index 000000000..ed7a62e7d --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 1-B Waking Nightmare 599cb7.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.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.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 \ No newline at end of file diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 1-B Waking Nightmare 599cb7.yaml b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 1-B Waking Nightmare 599cb7.yaml new file mode 100644 index 000000000..2db9dbf9d --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 1-B Waking Nightmare 599cb7.yaml @@ -0,0 +1,86 @@ +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 1-B Waking Nightmare 599cb7/Custom_Tile 05d1cf.yaml' +- !include 'Custom_Model_Bag 1-B Waking Nightmare 599cb7/Custom_Tile 2e6a5b.yaml' +- !include 'Custom_Model_Bag 1-B Waking Nightmare 599cb7/Card Dr. Shivani Maheswaran + 430489.yaml' +- !include 'Custom_Model_Bag 1-B Waking Nightmare 599cb7/Card Emergency Room 4dba7c.yaml' +- !include 'Custom_Model_Bag 1-B Waking Nightmare 599cb7/Custom_Tile 7234af.yaml' +- !include 'Custom_Model_Bag 1-B Waking Nightmare 599cb7/Custom_Tile 725b9b.yaml' +- !include 'Custom_Model_Bag 1-B Waking Nightmare 599cb7/Card Waiting Room 7f666b.yaml' +- !include 'Custom_Model_Bag 1-B Waking Nightmare 599cb7/Card Experimental Therapies + Ward 98195d.yaml' +- !include 'Custom_Model_Bag 1-B Waking Nightmare 599cb7/Custom_Model_Bag Set-aside + a45247.yaml' +- !include 'Custom_Model_Bag 1-B Waking Nightmare 599cb7/Deck Agenda Deck ae9c75.yaml' +- !include 'Custom_Model_Bag 1-B Waking Nightmare 599cb7/Card Records Office b37a4c.yaml' +- !include 'Custom_Model_Bag 1-B Waking Nightmare 599cb7/Card Scenario b4ef40.yaml' +- !include 'Custom_Model_Bag 1-B Waking Nightmare 599cb7/Custom_Tile Campaign B Setup + bbb70a.yaml' +- !include 'Custom_Model_Bag 1-B Waking Nightmare 599cb7/Deck Encounter Deck e7b32a.yaml' +- !include 'Custom_Model_Bag 1-B Waking Nightmare 599cb7/Deck Scenario Deck f1a8d3.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/775107869055713235/FBABD72CD923F9371D9E8416D95CF198A0CDD42B/ + MaterialIndex: 3 + MeshURL: https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj + NormalURL: '' + TypeIndex: 6 +Description: The Dream-Eaters +GMNotes: '' +GUID: 599cb7 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Model_Bag 1-B Waking Nightmare 599cb7.ttslua' +LuaScriptState: '{"ml":{"05d1cf":{"lock":false,"pos":{"x":-27.2495,"y":1.6206,"z":3.6873},"rot":{"x":359.9316,"y":315.0237,"z":359.9554}},"2e6a5b":{"lock":false,"pos":{"x":-30.5021,"y":1.624,"z":-0.1284},"rot":{"x":359.9831,"y":-0.004,"z":359.9201}},"430489":{"lock":false,"pos":{"x":-3.6953,"y":1.6627,"z":14.8922},"rot":{"x":359.9197,"y":269.9999,"z":0.0168}},"4dba7c":{"lock":false,"pos":{"x":-30.2243,"y":1.6976,"z":7.57},"rot":{"x":359.9201,"y":269.9997,"z":0.0169}},"7234af":{"lock":false,"pos":{"x":-20.5588,"y":1.6102,"z":0.0491},"rot":{"x":359.9201,"y":269.9948,"z":0.0169}},"725b9b":{"lock":false,"pos":{"x":-27.288,"y":1.6185,"z":-3.6558},"rot":{"x":359.9549,"y":225.423,"z":0.0681}},"7f666b":{"lock":false,"pos":{"x":-23.6765,"y":1.6862,"z":-0.03},"rot":{"x":359.9201,"y":269.9997,"z":0.0169}},"98195d":{"lock":false,"pos":{"x":-30.2243,"y":1.6931,"z":-7.7},"rot":{"x":359.9201,"y":269.9719,"z":0.0169}},"a45247":{"lock":false,"pos":{"x":1.6967,"y":1.5583,"z":14.2787},"rot":{"x":359.9551,"y":224.998,"z":0.0687}},"ae9c75":{"lock":false,"pos":{"x":-2.7247,"y":1.6566,"z":0.3733},"rot":{"x":0.0168,"y":179.9917,"z":0.0803}},"b37a4c":{"lock":false,"pos":{"x":-17.1199,"y":1.6771,"z":-0.03},"rot":{"x":359.9201,"y":269.9825,"z":0.0169}},"b4ef40":{"lock":false,"pos":{"x":-3.956,"y":1.6556,"z":-10.4412},"rot":{"x":359.9197,"y":270.0005,"z":0.0168}},"bbb70a":{"lock":false,"pos":{"x":-3.6318,"y":1.5822,"z":-14.9411},"rot":{"x":359.9197,"y":270.0308,"z":0.0168}},"e7b32a":{"lock":false,"pos":{"x":-3.9277,"y":1.7184,"z":5.7571},"rot":{"x":359.9197,"y":270,"z":180.0168}},"f1a8d3":{"lock":false,"pos":{"x":-2.6803,"y":1.655,"z":-5.0492},"rot":{"x":0.0169,"y":179.9734,"z":0.0802}}}}' +MaterialIndex: -1 +MeshIndex: -1 +Name: Custom_Model_Bag +Nickname: '1-B: Waking Nightmare' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 12.352973 + posY: 1.4707675 + posZ: 22.1096821 + rotX: 359.920135 + rotY: 270.000122 + rotZ: 0.0168742873 + scaleX: 2.21 + scaleY: 0.46 + scaleZ: 2.42 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 1-B Waking Nightmare 599cb7/Card Dr. Shivani Maheswaran 430489.yaml b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 1-B Waking Nightmare 599cb7/Card Dr. Shivani Maheswaran 430489.yaml new file mode 100644 index 000000000..d0353cce2 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 1-B Waking Nightmare 599cb7/Card Dr. Shivani Maheswaran 430489.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 281605 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2816': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: Emergency Physician +GMNotes: '' +GUID: '430489' +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Dr. Shivani Maheswaran +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.6953 + posY: 1.66272724 + posZ: 14.8922033 + rotX: 359.919739 + rotY: 269.9999 + rotZ: 0.016840931 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 1-B Waking Nightmare 599cb7/Card Emergency Room 4dba7c.yaml b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 1-B Waking Nightmare 599cb7/Card Emergency Room 4dba7c.yaml new file mode 100644 index 000000000..cecdb522b --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 1-B Waking Nightmare 599cb7/Card Emergency Room 4dba7c.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 274417 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2744': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493383646804247/225C1675DCFAFA6331AF23D73934CE52544F4863/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646805159/968F84A126D57214C3BC8E095D9D8EB066ED8D6C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: St. Mary's. +GMNotes: '' +GUID: 4dba7c +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Emergency Room +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -30.2243 + posY: 1.6975888 + posZ: 7.56999969 + rotX: 359.9201 + rotY: 269.999756 + rotZ: 0.016876461 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 1-B Waking Nightmare 599cb7/Card Experimental Therapies Ward 98195d.yaml b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 1-B Waking Nightmare 599cb7/Card Experimental Therapies Ward 98195d.yaml new file mode 100644 index 000000000..86c5f2035 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 1-B Waking Nightmare 599cb7/Card Experimental Therapies Ward 98195d.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 274418 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2744': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493383646804247/225C1675DCFAFA6331AF23D73934CE52544F4863/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646805159/968F84A126D57214C3BC8E095D9D8EB066ED8D6C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: St. Mary's. +GMNotes: '' +GUID: 98195d +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Experimental Therapies Ward +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -30.2243 + posY: 1.69309223 + posZ: -7.70000124 + rotX: 359.9201 + rotY: 269.9719 + rotZ: 0.0169153381 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 1-B Waking Nightmare 599cb7/Card Records Office b37a4c.yaml b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 1-B Waking Nightmare 599cb7/Card Records Office b37a4c.yaml new file mode 100644 index 000000000..1f706aba5 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 1-B Waking Nightmare 599cb7/Card Records Office b37a4c.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 274419 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2744': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493383646804247/225C1675DCFAFA6331AF23D73934CE52544F4863/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646805159/968F84A126D57214C3BC8E095D9D8EB066ED8D6C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: St. Mary's. +GMNotes: '' +GUID: b37a4c +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Records Office +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -17.1198978 + posY: 1.67707765 + posZ: -0.0300003346 + rotX: 359.9201 + rotY: 269.9825 + rotZ: 0.0169005711 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 1-B Waking Nightmare 599cb7/Card Scenario b4ef40.yaml b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 1-B Waking Nightmare 599cb7/Card Scenario b4ef40.yaml new file mode 100644 index 000000000..52aa19b9d --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 1-B Waking Nightmare 599cb7/Card Scenario b4ef40.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 274415 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2744': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493383646804247/225C1675DCFAFA6331AF23D73934CE52544F4863/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646805159/968F84A126D57214C3BC8E095D9D8EB066ED8D6C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Waking Nightmare +GMNotes: '' +GUID: b4ef40 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Scenario +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.95600057 + posY: 1.65564823 + posZ: -10.4412012 + rotX: 359.919739 + rotY: 270.000519 + rotZ: 0.0168403443 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 1-B Waking Nightmare 599cb7/Card Waiting Room 7f666b.yaml b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 1-B Waking Nightmare 599cb7/Card Waiting Room 7f666b.yaml new file mode 100644 index 000000000..327c4dcd0 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 1-B Waking Nightmare 599cb7/Card Waiting Room 7f666b.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 274416 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2744': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493383646804247/225C1675DCFAFA6331AF23D73934CE52544F4863/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646805159/968F84A126D57214C3BC8E095D9D8EB066ED8D6C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: St. Mary's. +GMNotes: '' +GUID: 7f666b +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Waiting Room +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -23.6765 + posY: 1.68622041 + posZ: -0.0300004128 + rotX: 359.9201 + rotY: 269.999725 + rotZ: 0.0168765783 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 1-B Waking Nightmare 599cb7/Custom_Model_Bag Set-aside a45247.yaml b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 1-B Waking Nightmare 599cb7/Custom_Model_Bag Set-aside a45247.yaml new file mode 100644 index 000000000..835d3f0d2 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 1-B Waking Nightmare 599cb7/Custom_Model_Bag Set-aside a45247.yaml @@ -0,0 +1,64 @@ +Autoraise: true +ColorDiffuse: + b: 0.02148666 + g: 0.00100758043 + r: 0.02148666 +ContainedObjects: +- !include 'Custom_Model_Bag Set-aside a45247/Card Stairwell bd26ee.yaml' +- !include 'Custom_Model_Bag Set-aside a45247/Deck Basement Doors fca017.yaml' +- !include 'Custom_Model_Bag Set-aside a45247/Deck Corrupted Orderly c68917.yaml' +- !include 'Custom_Model_Bag Set-aside a45247/Deck Outbreak 226a9c.yaml' +- !include 'Custom_Model_Bag Set-aside a45247/Deck Spiders 2dd09d.yaml' +- !include 'Custom_Model_Bag Set-aside a45247/Deck Agents of Atlach-Nacha cfbe20.yaml' +- !include 'Custom_Model_Bag Set-aside a45247/Card Randolph Carter aebf12.yaml' +- !include 'Custom_Model_Bag Set-aside a45247/Card The Infestation Begins e5c9af.yaml' +- !include 'Custom_Model_Bag Set-aside a45247/Custom_Model_Bag Infestation Bag 0257a2.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: '' +GMNotes: '' +GUID: a45247 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +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.69670093 + posY: 1.55831659 + posZ: 14.2787008 + rotX: 359.955139 + rotY: 224.998123 + rotZ: 0.06867259 + scaleX: 2.0 + scaleY: 2.0 + scaleZ: 2.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 1-B Waking Nightmare 599cb7/Custom_Model_Bag Set-aside a45247/Card Randolph Carter aebf12.yaml b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 1-B Waking Nightmare 599cb7/Custom_Model_Bag Set-aside a45247/Card Randolph Carter aebf12.yaml new file mode 100644 index 000000000..f4c28dff9 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 1-B Waking Nightmare 599cb7/Custom_Model_Bag Set-aside a45247/Card Randolph Carter aebf12.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 274204 +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/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: Chained to the Waking World +GMNotes: '' +GUID: aebf12 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Randolph Carter +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 42.94955 + posY: 3.427797 + posZ: 66.3755 + rotX: 0.0208236557 + rotY: 270.0 + rotZ: 0.0167942159 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 1-B Waking Nightmare 599cb7/Custom_Model_Bag Set-aside a45247/Card Stairwell bd26ee.yaml b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 1-B Waking Nightmare 599cb7/Custom_Model_Bag Set-aside a45247/Card Stairwell bd26ee.yaml new file mode 100644 index 000000000..931ac20dd --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 1-B Waking Nightmare 599cb7/Custom_Model_Bag Set-aside a45247/Card Stairwell bd26ee.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 274420 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2744': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493383646804247/225C1675DCFAFA6331AF23D73934CE52544F4863/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646805159/968F84A126D57214C3BC8E095D9D8EB066ED8D6C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: St. Mary's. +GMNotes: '' +GUID: bd26ee +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Stairwell +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.5292969 + posY: 2.52368855 + posZ: -65.9515457 + rotX: 0.000274056656 + rotY: 270.002136 + rotZ: -0.00109385012 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 1-B Waking Nightmare 599cb7/Custom_Model_Bag Set-aside a45247/Card The Infestation Begins e5c9af.yaml b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 1-B Waking Nightmare 599cb7/Custom_Model_Bag Set-aside a45247/Card The Infestation Begins e5c9af.yaml new file mode 100644 index 000000000..702b3eb0d --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 1-B Waking Nightmare 599cb7/Custom_Model_Bag Set-aside a45247/Card The Infestation Begins e5c9af.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 274424 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2744': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493383646804247/225C1675DCFAFA6331AF23D73934CE52544F4863/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646805159/968F84A126D57214C3BC8E095D9D8EB066ED8D6C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: e5c9af +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: The Infestation Begins +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 5.185056 + posY: 2.65543985 + posZ: -2.58340144 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 1-B Waking Nightmare 599cb7/Custom_Model_Bag Set-aside a45247/Custom_Model_Bag Infestation Bag 0257a2.yaml b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 1-B Waking Nightmare 599cb7/Custom_Model_Bag Set-aside a45247/Custom_Model_Bag Infestation Bag 0257a2.yaml new file mode 100644 index 000000000..13303af80 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 1-B Waking Nightmare 599cb7/Custom_Model_Bag Set-aside a45247/Custom_Model_Bag Infestation Bag 0257a2.yaml @@ -0,0 +1,51 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +ContainedObjects: +- !include 'Custom_Model_Bag Infestation Bag 0257a2/Custom_Tile d4467c.yaml' +- !include 'Custom_Model_Bag Infestation Bag 0257a2/Custom_Tile 163f65.yaml' +- !include 'Custom_Model_Bag Infestation Bag 0257a2/Custom_Tile b5bb5c.yaml' +- !include 'Custom_Model_Bag Infestation Bag 0257a2/Custom_Tile 1a1506.yaml' +- !include 'Custom_Model_Bag Infestation Bag 0257a2/Custom_Tile cc8bbb.yaml' +- !include 'Custom_Model_Bag Infestation Bag 0257a2/Custom_Tile 4ad9ad.yaml' +- !include 'Custom_Model_Bag Infestation Bag 0257a2/Custom_Tile 7d6103.yaml' +CustomMesh: + CastShadows: true + ColliderURL: http://cloud-3.steamusercontent.com/ugc/943949966265929350/39BD77E7ADC7C32EC6BDB21649FDE8B65E8E1968/ + Convex: true + DiffuseURL: http://cloud-3.steamusercontent.com/ugc/959719855127875098/FDA724CE3F0F9C62A141C0B33CAB238C40EDEE32/ + MaterialIndex: 3 + MeshURL: http://cloud-3.steamusercontent.com/ugc/87098596225685535/6C95EB6308A0A9E89367DD67D5C65D09EB3C06A0/ + NormalURL: '' + TypeIndex: 6 +Description: '' +GMNotes: '' +GUID: 0257a2 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +MeshIndex: -1 +Name: Custom_Model_Bag +Nickname: Infestation Bag +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 42.9512177 + posY: 3.34053063 + posZ: 68.2738647 + rotX: 0.00529053528 + rotY: 270.000732 + rotZ: 0.054995358 + scaleX: 3.0 + scaleY: 3.0 + scaleZ: 3.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 1-B Waking Nightmare 599cb7/Custom_Model_Bag Set-aside a45247/Custom_Model_Bag Infestation Bag 0257a2/Custom_Tile 163f65.yaml b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 1-B Waking Nightmare 599cb7/Custom_Model_Bag Set-aside a45247/Custom_Model_Bag Infestation Bag 0257a2/Custom_Tile 163f65.yaml new file mode 100644 index 000000000..a31e0b654 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 1-B Waking Nightmare 599cb7/Custom_Model_Bag Set-aside a45247/Custom_Model_Bag Infestation Bag 0257a2/Custom_Tile 163f65.yaml @@ -0,0 +1,42 @@ +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/1plY463.png + WidthScale: 0.0 +Description: '' +GMNotes: '' +GUID: 163f65 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Tile +Nickname: '' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 55.8118439 + posY: 1.98421216 + posZ: 72.7538 + rotX: 0.0208075028 + rotY: 269.99408 + rotZ: 0.0167706311 + scaleX: 0.81 + scaleY: 1.0 + scaleZ: 0.81 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 1-B Waking Nightmare 599cb7/Custom_Model_Bag Set-aside a45247/Custom_Model_Bag Infestation Bag 0257a2/Custom_Tile 1a1506.yaml b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 1-B Waking Nightmare 599cb7/Custom_Model_Bag Set-aside a45247/Custom_Model_Bag Infestation Bag 0257a2/Custom_Tile 1a1506.yaml new file mode 100644 index 000000000..16069b95d --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 1-B Waking Nightmare 599cb7/Custom_Model_Bag Set-aside a45247/Custom_Model_Bag Infestation Bag 0257a2/Custom_Tile 1a1506.yaml @@ -0,0 +1,42 @@ +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/1plY463.png + WidthScale: 0.0 +Description: '' +GMNotes: '' +GUID: 1a1506 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Tile +Nickname: '' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 61.6115227 + posY: 1.98578739 + posZ: 70.93989 + rotX: 0.0208105054 + rotY: 269.9955 + rotZ: 0.0167717226 + scaleX: 0.81 + scaleY: 1.0 + scaleZ: 0.81 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 1-B Waking Nightmare 599cb7/Custom_Model_Bag Set-aside a45247/Custom_Model_Bag Infestation Bag 0257a2/Custom_Tile 4ad9ad.yaml b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 1-B Waking Nightmare 599cb7/Custom_Model_Bag Set-aside a45247/Custom_Model_Bag Infestation Bag 0257a2/Custom_Tile 4ad9ad.yaml new file mode 100644 index 000000000..9b2d5742b --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 1-B Waking Nightmare 599cb7/Custom_Model_Bag Set-aside a45247/Custom_Model_Bag Infestation Bag 0257a2/Custom_Tile 4ad9ad.yaml @@ -0,0 +1,42 @@ +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/VzhJJaH.png + WidthScale: 0.0 +Description: '' +GMNotes: '' +GUID: 4ad9ad +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Tile +Nickname: '' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 53.16047 + posY: 2.064702 + posZ: 70.44286 + rotX: 359.9398 + rotY: 270.049561 + rotZ: 0.0806277841 + scaleX: 0.81 + scaleY: 1.0 + scaleZ: 0.81 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 1-B Waking Nightmare 599cb7/Custom_Model_Bag Set-aside a45247/Custom_Model_Bag Infestation Bag 0257a2/Custom_Tile 7d6103.yaml b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 1-B Waking Nightmare 599cb7/Custom_Model_Bag Set-aside a45247/Custom_Model_Bag Infestation Bag 0257a2/Custom_Tile 7d6103.yaml new file mode 100644 index 000000000..35ab96868 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 1-B Waking Nightmare 599cb7/Custom_Model_Bag Set-aside a45247/Custom_Model_Bag Infestation Bag 0257a2/Custom_Tile 7d6103.yaml @@ -0,0 +1,42 @@ +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/VzhJJaH.png + WidthScale: 0.0 +Description: '' +GMNotes: '' +GUID: 7d6103 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Tile +Nickname: '' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 52.28967 + posY: 2.064728 + posZ: 70.14878 + rotX: 0.0280863326 + rotY: 269.995758 + rotZ: 0.062192 + scaleX: 0.81 + scaleY: 1.0 + scaleZ: 0.81 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 1-B Waking Nightmare 599cb7/Custom_Model_Bag Set-aside a45247/Custom_Model_Bag Infestation Bag 0257a2/Custom_Tile b5bb5c.yaml b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 1-B Waking Nightmare 599cb7/Custom_Model_Bag Set-aside a45247/Custom_Model_Bag Infestation Bag 0257a2/Custom_Tile b5bb5c.yaml new file mode 100644 index 000000000..495cd6e51 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 1-B Waking Nightmare 599cb7/Custom_Model_Bag Set-aside a45247/Custom_Model_Bag Infestation Bag 0257a2/Custom_Tile b5bb5c.yaml @@ -0,0 +1,42 @@ +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/1plY463.png + WidthScale: 0.0 +Description: '' +GMNotes: '' +GUID: b5bb5c +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Tile +Nickname: '' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 58.8788071 + posY: 1.9852159 + posZ: 72.3781 + rotX: 0.02081059 + rotY: 269.995483 + rotZ: 0.0167716853 + scaleX: 0.81 + scaleY: 1.0 + scaleZ: 0.81 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 1-B Waking Nightmare 599cb7/Custom_Model_Bag Set-aside a45247/Custom_Model_Bag Infestation Bag 0257a2/Custom_Tile cc8bbb.yaml b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 1-B Waking Nightmare 599cb7/Custom_Model_Bag Set-aside a45247/Custom_Model_Bag Infestation Bag 0257a2/Custom_Tile cc8bbb.yaml new file mode 100644 index 000000000..ca4e2d598 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 1-B Waking Nightmare 599cb7/Custom_Model_Bag Set-aside a45247/Custom_Model_Bag Infestation Bag 0257a2/Custom_Tile cc8bbb.yaml @@ -0,0 +1,42 @@ +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: '' +GMNotes: '' +GUID: cc8bbb +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Tile +Nickname: '' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 52.4895058 + posY: 2.06544662 + posZ: 70.59631 + rotX: 0.03353666 + rotY: 269.993683 + rotZ: 0.0588619523 + scaleX: 0.81 + scaleY: 1.0 + scaleZ: 0.81 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 1-B Waking Nightmare 599cb7/Custom_Model_Bag Set-aside a45247/Custom_Model_Bag Infestation Bag 0257a2/Custom_Tile d4467c.yaml b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 1-B Waking Nightmare 599cb7/Custom_Model_Bag Set-aside a45247/Custom_Model_Bag Infestation Bag 0257a2/Custom_Tile d4467c.yaml new file mode 100644 index 000000000..108b36a6c --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 1-B Waking Nightmare 599cb7/Custom_Model_Bag Set-aside a45247/Custom_Model_Bag Infestation Bag 0257a2/Custom_Tile d4467c.yaml @@ -0,0 +1,42 @@ +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/1plY463.png + WidthScale: 0.0 +Description: '' +GMNotes: '' +GUID: d4467c +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Tile +Nickname: '' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 52.27346 + posY: 2.065368 + posZ: 70.6387939 + rotX: 0.0200458653 + rotY: 269.994446 + rotZ: 0.06477361 + scaleX: 0.81 + scaleY: 1.0 + scaleZ: 0.81 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 1-B Waking Nightmare 599cb7/Custom_Model_Bag Set-aside a45247/Deck Agents of Atlach-Nacha cfbe20.yaml b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 1-B Waking Nightmare 599cb7/Custom_Model_Bag Set-aside a45247/Deck Agents of Atlach-Nacha cfbe20.yaml new file mode 100644 index 000000000..7ab32eac1 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 1-B Waking Nightmare 599cb7/Custom_Model_Bag Set-aside a45247/Deck Agents of Atlach-Nacha cfbe20.yaml @@ -0,0 +1,215 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 274110 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2741': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Power. + GMNotes: '' + GUID: 50e06a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Will of the Spider-Mother + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -11.7681608 + posY: 1.67323828 + posZ: 12.4915247 + rotX: 359.9206 + rotY: 270.000519 + rotZ: 0.0129873687 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274110 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2741': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Power. + GMNotes: '' + GUID: '924656' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Will of the Spider-Mother + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -11.6543922 + posY: 1.81859434 + posZ: 12.3625975 + rotX: 359.941925 + rotY: 270.001648 + rotZ: 0.00295316125 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274109 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2741': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Spider. + GMNotes: '' + GUID: b126fb + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Grey Weaver + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -11.8818655 + posY: 1.83639562 + posZ: 12.4194412 + rotX: 359.936554 + rotY: 269.993164 + rotZ: 0.0173758585 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274109 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2741': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Spider. + GMNotes: '' + GUID: 621de5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Grey Weaver + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -11.6577845 + posY: 1.83786273 + posZ: 12.0466986 + rotX: 359.9192 + rotY: 270.011932 + rotZ: 0.0173931215 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2741': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 274110 +- 274110 +- 274109 +- 274109 +Description: '' +GMNotes: '' +GUID: cfbe20 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Agents of Atlach-Nacha +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 4.69255733 + posY: 2.65170956 + posZ: -23.6560268 + rotX: 359.9201 + rotY: 269.995331 + rotZ: 0.016883295 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 1-B Waking Nightmare 599cb7/Custom_Model_Bag Set-aside a45247/Deck Basement Doors fca017.yaml b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 1-B Waking Nightmare 599cb7/Custom_Model_Bag Set-aside a45247/Deck Basement Doors fca017.yaml new file mode 100644 index 000000000..9fe1c27db --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 1-B Waking Nightmare 599cb7/Custom_Model_Bag Set-aside a45247/Deck Basement Doors fca017.yaml @@ -0,0 +1,172 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 274422 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2744': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493383646804247/225C1675DCFAFA6331AF23D73934CE52544F4863/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646805159/968F84A126D57214C3BC8E095D9D8EB066ED8D6C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: St. Mary's. Basement. + GMNotes: '' + GUID: 4e2ab5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Basement Door + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -1.17708433 + posY: 1.34451783 + posZ: 79.8246155 + rotX: 0.0208419058 + rotY: 270.000031 + rotZ: 0.01655323 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274423 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2744': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493383646804247/225C1675DCFAFA6331AF23D73934CE52544F4863/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646805159/968F84A126D57214C3BC8E095D9D8EB066ED8D6C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: St. Mary's. Basement. + GMNotes: '' + GUID: 42fa87 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Basement Door + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -1.3089 + posY: 1.50554371 + posZ: 80.2802658 + rotX: 0.0207522381 + rotY: 270.000031 + rotZ: 0.01676218 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274421 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2744': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493383646804247/225C1675DCFAFA6331AF23D73934CE52544F4863/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646805159/968F84A126D57214C3BC8E095D9D8EB066ED8D6C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: St. Mary's. Basement. + GMNotes: '' + GUID: 96c994 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Basement Door + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -1.28195369 + posY: 1.52276206 + posZ: 80.1422348 + rotX: 0.020512946 + rotY: 270.000061 + rotZ: 0.0162001234 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2744': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493383646804247/225C1675DCFAFA6331AF23D73934CE52544F4863/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646805159/968F84A126D57214C3BC8E095D9D8EB066ED8D6C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 274422 +- 274423 +- 274421 +Description: '' +GMNotes: '' +GUID: fca017 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Basement Doors +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 43.1313362 + posY: 3.40768933 + posZ: 56.2772865 + rotX: 0.0208102334 + rotY: 270.0 + rotZ: 0.0167693309 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 1-B Waking Nightmare 599cb7/Custom_Model_Bag Set-aside a45247/Deck Corrupted Orderly c68917.yaml b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 1-B Waking Nightmare 599cb7/Custom_Model_Bag Set-aside a45247/Deck Corrupted Orderly c68917.yaml new file mode 100644 index 000000000..05a3f1bc5 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 1-B Waking Nightmare 599cb7/Custom_Model_Bag Set-aside a45247/Deck Corrupted Orderly c68917.yaml @@ -0,0 +1,129 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 274107 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2741': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Staff. Spider. + GMNotes: '' + GUID: eac2ed + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Corrupted Orderly + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 37.81886 + posY: 1.35207331 + posZ: 57.2038651 + rotX: 0.0207542721 + rotY: 270.000031 + rotZ: 0.0174547154 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274107 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2741': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Staff. Spider. + GMNotes: '' + GUID: 4d1ce5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Corrupted Orderly + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 37.8268051 + posY: 1.50629711 + posZ: 57.4835663 + rotX: 0.0150169851 + rotY: 270.000061 + rotZ: -0.00339917513 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2741': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 274107 +- 274107 +Description: '' +GMNotes: '' +GUID: c68917 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Corrupted Orderly +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 43.0967255 + posY: 3.41693974 + posZ: 62.8609238 + rotX: 0.0208104774 + rotY: 269.999939 + rotZ: 0.0167694874 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 1-B Waking Nightmare 599cb7/Custom_Model_Bag Set-aside a45247/Deck Outbreak 226a9c.yaml b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 1-B Waking Nightmare 599cb7/Custom_Model_Bag Set-aside a45247/Deck Outbreak 226a9c.yaml new file mode 100644 index 000000000..459eac8a3 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 1-B Waking Nightmare 599cb7/Custom_Model_Bag Set-aside a45247/Deck Outbreak 226a9c.yaml @@ -0,0 +1,172 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 274108 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2741': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: 988ac2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Outbreak + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 50.1699524 + posY: 1.4408015 + posZ: 59.3374252 + rotX: 356.973755 + rotY: 269.985779 + rotZ: 0.0568509735 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274108 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2741': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: 39f2a0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Outbreak + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 50.1682053 + posY: 1.66445386 + posZ: 59.337307 + rotX: 359.134033 + rotY: 269.999451 + rotZ: 0.0628164 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274108 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2741': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: 41bb1d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Outbreak + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 50.1681976 + posY: 1.6678381 + posZ: 59.337307 + rotX: 358.764526 + rotY: 269.999054 + rotZ: 0.0756083652 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2741': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 274108 +- 274108 +- 274108 +Description: '' +GMNotes: '' +GUID: 226a9c +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Outbreak +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 46.8427353 + posY: 3.4107976 + posZ: 62.2912941 + rotX: 0.0208184477 + rotY: 269.972321 + rotZ: 0.0167590678 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 1-B Waking Nightmare 599cb7/Custom_Model_Bag Set-aside a45247/Deck Spiders 2dd09d.yaml b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 1-B Waking Nightmare 599cb7/Custom_Model_Bag Set-aside a45247/Deck Spiders 2dd09d.yaml new file mode 100644 index 000000000..4849526c5 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 1-B Waking Nightmare 599cb7/Custom_Model_Bag Set-aside a45247/Deck Spiders 2dd09d.yaml @@ -0,0 +1,301 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 274128 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2741': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Obstacle. + GMNotes: '' + GUID: aaa961 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Sickening Webs + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -17.82091 + posY: 1.33128047 + posZ: 55.306675 + rotX: 0.0209979564 + rotY: 270.0003 + rotZ: 0.0154960454 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274128 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2741': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Obstacle. + GMNotes: '' + GUID: f7b0ac + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Sickening Webs + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -18.1596622 + posY: 1.4920063 + posZ: 55.3749123 + rotX: 0.0263286941 + rotY: 270.0003 + rotZ: 0.0107973032 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274127 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2741': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Creature. Spider. + GMNotes: '' + GUID: 404e3b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Swarm of Spiders + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -17.9226074 + posY: 1.3302232 + posZ: 52.41938 + rotX: 0.0207031667 + rotY: 269.9782 + rotZ: 0.0206490774 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274127 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2741': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Creature. Spider. + GMNotes: '' + GUID: e20a3d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Swarm of Spiders + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -18.1491051 + posY: 1.47793663 + posZ: 52.5626335 + rotX: 0.007718184 + rotY: 270.003845 + rotZ: 0.0501582474 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274127 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2741': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Creature. Spider. + GMNotes: '' + GUID: ec88e2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Swarm of Spiders + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -17.99768 + posY: 1.49296021 + posZ: 52.5603447 + rotX: 0.0238676667 + rotY: 269.989746 + rotZ: 0.0183764044 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274126 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2741': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Spider. + GMNotes: '' + GUID: fc24fb + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Spider of Leng + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -17.800869 + posY: 1.49662709 + posZ: 55.9866867 + rotX: 0.0207160283 + rotY: 270.000061 + rotZ: 0.0141102793 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2741': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 274128 +- 274128 +- 274127 +- 274127 +- 274127 +- 274126 +Description: '' +GMNotes: '' +GUID: 2dd09d +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Spiders +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 47.2568779 + posY: 3.41024566 + posZ: 55.36397 + rotX: 0.0208103452 + rotY: 270.000275 + rotZ: 0.0167692 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 1-B Waking Nightmare 599cb7/Custom_Tile 05d1cf.yaml b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 1-B Waking Nightmare 599cb7/Custom_Tile 05d1cf.yaml new file mode 100644 index 000000000..f5c45801f --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 1-B Waking Nightmare 599cb7/Custom_Tile 05d1cf.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 05d1cf +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.2495 + posY: 1.62058377 + posZ: 3.68730044 + rotX: 359.93158 + rotY: 315.0238 + rotZ: 359.9554 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 1-B Waking Nightmare 599cb7/Custom_Tile 2e6a5b.yaml b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 1-B Waking Nightmare 599cb7/Custom_Tile 2e6a5b.yaml new file mode 100644 index 000000000..c62bfe040 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 1-B Waking Nightmare 599cb7/Custom_Tile 2e6a5b.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 2e6a5b +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Tile +Nickname: '' +Snap: false +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.5021 + posY: 1.62399578 + posZ: -0.12839976 + rotX: 359.983124 + rotY: -0.00382182654 + rotZ: 359.920074 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 1-B Waking Nightmare 599cb7/Custom_Tile 7234af.yaml b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 1-B Waking Nightmare 599cb7/Custom_Tile 7234af.yaml new file mode 100644 index 000000000..07f5174aa --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 1-B Waking Nightmare 599cb7/Custom_Tile 7234af.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 7234af +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.5588 + posY: 1.61018264 + posZ: 0.0490999855 + rotX: 359.9201 + rotY: 269.994446 + rotZ: 0.0169059075 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 1-B Waking Nightmare 599cb7/Custom_Tile 725b9b.yaml b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 1-B Waking Nightmare 599cb7/Custom_Tile 725b9b.yaml new file mode 100644 index 000000000..2b0818696 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 1-B Waking Nightmare 599cb7/Custom_Tile 725b9b.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 725b9b +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.288 + posY: 1.61847508 + posZ: -3.65579963 + rotX: 359.954926 + rotY: 225.42305 + rotZ: 0.06807315 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 1-B Waking Nightmare 599cb7/Custom_Tile Campaign B Setup bbb70a.ttslua b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 1-B Waking Nightmare 599cb7/Custom_Tile Campaign B Setup bbb70a.ttslua new file mode 100644 index 000000000..4dde019f3 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 1-B Waking Nightmare 599cb7/Custom_Tile Campaign B Setup bbb70a.ttslua @@ -0,0 +1,25 @@ +name = 'TDE_B' + +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 + +function standaloneClick() + Global.call('fillContainer', {object=self, key=name, mode='standalone'}) +end diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 1-B Waking Nightmare 599cb7/Custom_Tile Campaign B Setup bbb70a.yaml b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 1-B Waking Nightmare 599cb7/Custom_Tile Campaign B Setup bbb70a.yaml new file mode 100644 index 000000000..78dd90b53 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 1-B Waking Nightmare 599cb7/Custom_Tile Campaign B Setup bbb70a.yaml @@ -0,0 +1,42 @@ +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: http://cloud-3.steamusercontent.com/ugc/949588657194710961/D864BCCCC1C811EC7F0AED69D1C30C678D3D9FC9/ + ImageURL: http://cloud-3.steamusercontent.com/ugc/965354846165100486/3DC8FCEF364B30758B09EF96AF9458F2B8E64D56/ + WidthScale: 0.0 +Description: click to set chaos token difficulty +GMNotes: '' +GUID: bbb70a +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Tile Campaign B Setup bbb70a.ttslua' +LuaScriptState: '' +Name: Custom_Tile +Nickname: Campaign B Setup +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.63180041 + posY: 1.58215821 + posZ: -14.941102 + rotX: 359.919739 + rotY: 270.030762 + rotZ: 0.016794974 + scaleX: 2.2 + scaleY: 1.0 + scaleZ: 2.2 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 1-B Waking Nightmare 599cb7/Deck Agenda Deck ae9c75.yaml b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 1-B Waking Nightmare 599cb7/Deck Agenda Deck ae9c75.yaml new file mode 100644 index 000000000..a23e43915 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 1-B Waking Nightmare 599cb7/Deck Agenda Deck ae9c75.yaml @@ -0,0 +1,172 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 274607 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2746': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/780749631103001215/3FF9DC51D7737267B68EC5D9CF17BE421681663B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780749631102998699/DA1D7C58FE177F46169558EF1D8301754A91A73A/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 3 + GMNotes: '' + GUID: d810aa + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Hospital of Horrors + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.72472239 + posY: 1.65704656 + posZ: 0.37329495 + rotX: 0.0174119882 + rotY: 179.992126 + rotZ: 0.07683178 + 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: http://cloud-3.steamusercontent.com/ugc/780749631103001215/3FF9DC51D7737267B68EC5D9CF17BE421681663B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780749631102998699/DA1D7C58FE177F46169558EF1D8301754A91A73A/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 2 + GMNotes: '' + GUID: 9a9007 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Infestation Spreads + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.72472978 + posY: 1.80680585 + posZ: 0.3733177 + rotX: 0.0283064954 + rotY: 179.9964 + rotZ: 0.06661427 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274605 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2746': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/780749631103001215/3FF9DC51D7737267B68EC5D9CF17BE421681663B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780749631102998699/DA1D7C58FE177F46169558EF1D8301754A91A73A/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 1 + GMNotes: '' + GUID: 87ab5b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Halls of St. Mary's + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.72472048 + posY: 1.82436967 + posZ: 0.3733217 + rotX: 0.014995547 + rotY: 179.997269 + rotZ: 0.07805128 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2746': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/780749631103001215/3FF9DC51D7737267B68EC5D9CF17BE421681663B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780749631102998699/DA1D7C58FE177F46169558EF1D8301754A91A73A/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 274607 +- 274606 +- 274605 +Description: '' +GMNotes: '' +GUID: ae9c75 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Agenda Deck +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.72469974 + posY: 1.65664113 + posZ: 0.373300344 + rotX: 0.0168466475 + rotY: 179.991745 + rotZ: 0.08025517 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 1-B Waking Nightmare 599cb7/Deck Encounter Deck e7b32a.yaml b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 1-B Waking Nightmare 599cb7/Deck Encounter Deck e7b32a.yaml new file mode 100644 index 000000000..22444947f --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 1-B Waking Nightmare 599cb7/Deck Encounter Deck e7b32a.yaml @@ -0,0 +1,917 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 234118 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2341': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: 97416f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dissonant Voices + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -15.4338884 + posY: 1.49635184 + posZ: 66.64195 + rotX: 0.0248884521 + rotY: 270.0327 + rotZ: -0.000242893628 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 281715 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2741': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: 690fdf + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Whispers of Hypnos + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -11.2954206 + posY: 1.94337964 + posZ: 75.87013 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234116 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2341': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: ab3719 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Rotting Remains + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -15.5085716 + posY: 1.48227274 + posZ: 66.83469 + rotX: 0.0259839334 + rotY: 270.0125 + rotZ: 0.0103577031 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 281724 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2741': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: 81396b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Glimpse of the Underworld + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -15.2898378 + posY: 1.49847782 + posZ: 74.49116 + rotX: 0.027782822 + rotY: 270.000122 + rotZ: 0.0170789734 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234227 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2342': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Obstacle. + GMNotes: '' + GUID: 4904d0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Locked Door + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -15.252141 + posY: 1.33558333 + posZ: 67.1355743 + rotX: 0.021979766 + rotY: 270.0025 + rotZ: 0.009349022 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 281715 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2741': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: ab4c37 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Whispers of Hypnos + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -11.3957472 + posY: 1.94239068 + posZ: 72.61547 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 281723 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2741': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: 638b7c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Night Terrors + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -18.8716145 + posY: 1.4960593 + posZ: 69.9934 + rotX: 0.02509427 + rotY: 270.0002 + rotZ: 0.0154290823 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 281725 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2741': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Power. + GMNotes: '' + GUID: 3e7219 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Threads of Reality + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -18.9654636 + posY: 1.41237366 + posZ: 74.82911 + rotX: 0.0206071083 + rotY: 269.986633 + rotZ: 356.035858 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234116 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2341': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: ab3719 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Rotting Remains + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -15.1918449 + posY: 1.49825406 + posZ: 67.0849838 + rotX: 0.0185506232 + rotY: 269.999939 + rotZ: 0.0159074273 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 281725 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2741': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Power. + GMNotes: '' + GUID: c3cc96 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Threads of Reality + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -18.9450645 + posY: 1.63163185 + posZ: 74.42269 + rotX: 0.02133287 + rotY: 270.000122 + rotZ: 358.8375 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234117 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2341': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: 0f4202 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Frozen in Fear + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -15.5149069 + posY: 1.48991072 + posZ: 66.61328 + rotX: 0.02902092 + rotY: 270.045776 + rotZ: -0.00427468959 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 281706 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2741': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Staff. + GMNotes: '' + GUID: 5e6da0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Suspicious Orderly + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -15.4196062 + posY: 1.49738181 + posZ: 70.0118942 + rotX: 0.02183292 + rotY: 270.007874 + rotZ: 0.0130473021 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234116 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2341': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: 435a47 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Rotting Remains + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -15.5316477 + posY: 1.48447287 + posZ: 67.16099 + rotX: 0.0189164747 + rotY: 270.0087 + rotZ: 0.0117459893 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 281724 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2741': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: f34d5f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Glimpse of the Underworld + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -14.9562168 + posY: 1.33799672 + posZ: 74.79575 + rotX: 0.02128689 + rotY: 269.948517 + rotZ: 0.0135712354 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 281715 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2741': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: 200ac5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Whispers of Hypnos + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -11.4451923 + posY: 1.9415797 + posZ: 69.90859 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234227 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2342': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Obstacle. + GMNotes: '' + GUID: ab3719 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Locked Door + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -15.2474775 + posY: 1.47428286 + posZ: 67.0842 + rotX: -0.00303730019 + rotY: 269.9937 + rotZ: 0.01247096 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 281706 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2741': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Staff. + GMNotes: '' + GUID: 9b9df4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Suspicious Orderly + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -15.0796642 + posY: 1.33664393 + posZ: 70.20619 + rotX: 0.0209349841 + rotY: 270.000122 + rotZ: 0.01593082 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234117 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2341': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: c70601 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Frozen in Fear + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -15.5246363 + posY: 1.48501992 + posZ: 66.8433151 + rotX: 0.0193933919 + rotY: 270.0156 + rotZ: 0.00433985237 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 281723 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2741': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: ef90ee + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Night Terrors + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -18.7347469 + posY: 1.33525944 + posZ: 70.05127 + rotX: 0.0210470781 + rotY: 270.0003 + rotZ: 0.0151563631 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234118 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2341': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: f5c831 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dissonant Voices + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -15.4043 + posY: 1.45409477 + posZ: 67.20083 + rotX: 0.0148261543 + rotY: 270.0008 + rotZ: 0.01684804 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2341': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '2342': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '2817': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 234118 +- 281715 +- 234116 +- 281724 +- 234227 +- 281715 +- 281723 +- 281725 +- 234116 +- 281725 +- 234117 +- 281706 +- 234116 +- 281724 +- 281715 +- 234227 +- 281706 +- 234117 +- 281723 +- 234118 +Description: '' +GMNotes: '' +GUID: e7b32a +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Encounter Deck +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.9277 + posY: 1.71841538 + posZ: 5.757101 + rotX: 359.919739 + rotY: 270.0 + rotZ: 180.016815 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 1-B Waking Nightmare 599cb7/Deck Scenario Deck f1a8d3.yaml b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 1-B Waking Nightmare 599cb7/Deck Scenario Deck f1a8d3.yaml new file mode 100644 index 000000000..f7ae1c5bd --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 1-B Waking Nightmare 599cb7/Deck Scenario Deck f1a8d3.yaml @@ -0,0 +1,172 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 274610 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2746': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/780749631103001215/3FF9DC51D7737267B68EC5D9CF17BE421681663B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780749631102998699/DA1D7C58FE177F46169558EF1D8301754A91A73A/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 3 + GMNotes: '' + GUID: aa505a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Containing the Outbreak + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.68031788 + posY: 1.65541518 + posZ: -5.049209 + rotX: 0.0172575135 + rotY: 179.9738 + rotZ: 0.0783508047 + 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: http://cloud-3.steamusercontent.com/ugc/780749631103001215/3FF9DC51D7737267B68EC5D9CF17BE421681663B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780749631102998699/DA1D7C58FE177F46169558EF1D8301754A91A73A/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 2 + GMNotes: '' + GUID: c04e9d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Search for the Patient + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.68846774 + posY: 1.78980541 + posZ: -5.048556 + rotX: 0.012574112 + rotY: 179.992172 + rotZ: 0.0530508421 + 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: http://cloud-3.steamusercontent.com/ugc/780749631103001215/3FF9DC51D7737267B68EC5D9CF17BE421681663B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780749631102998699/DA1D7C58FE177F46169558EF1D8301754A91A73A/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 1 + GMNotes: '' + GUID: 6789c0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Looking for Answers + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.68853617 + posY: 1.822758 + posZ: -5.048544 + rotX: 0.0192118511 + rotY: 179.991821 + rotZ: 0.07963451 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2746': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/780749631103001215/3FF9DC51D7737267B68EC5D9CF17BE421681663B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780749631102998699/DA1D7C58FE177F46169558EF1D8301754A91A73A/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 274610 +- 274609 +- 274608 +Description: '' +GMNotes: '' +GUID: f1a8d3 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Scenario Deck +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.6803 + posY: 1.65498567 + posZ: -5.0492 + rotX: 0.0168722291 + rotY: 179.9734 + rotZ: 0.08024971 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 2-A The Search For Kadath 7b07ca.ttslua b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 2-A The Search For Kadath 7b07ca.ttslua new file mode 100644 index 000000000..5534586ac --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 2-A The Search For Kadath 7b07ca.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.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 \ No newline at end of file diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 2-A The Search For Kadath 7b07ca.yaml b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 2-A The Search For Kadath 7b07ca.yaml new file mode 100644 index 000000000..20ddefa33 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 2-A The Search For Kadath 7b07ca.yaml @@ -0,0 +1,86 @@ +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 2-A The Search For Kadath 7b07ca/Custom_Model_Bag Set-aside + 65c10b.yaml' +- !include 'Custom_Model_Bag 2-A The Search For Kadath 7b07ca/Deck Encounter Deck + 269d43.yaml' +- !include 'Custom_Model_Bag 2-A The Search For Kadath 7b07ca/Deck Agenda Deck 7c8ea4.yaml' +- !include 'Custom_Model_Bag 2-A The Search For Kadath 7b07ca/Deck Act Deck d87cb2.yaml' +- !include 'Custom_Model_Bag 2-A The Search For Kadath 7b07ca/Card Scenario 04c6b1.yaml' +- !include 'Custom_Model_Bag 2-A The Search For Kadath 7b07ca/Custom_Tile The Search + For Kadath bbb70a.yaml' +- !include 'Custom_Model_Bag 2-A The Search For Kadath 7b07ca/Card Pack of Vooniths + 83569f.yaml' +- !include 'Custom_Model_Bag 2-A The Search For Kadath 7b07ca/Card Virgil Gray e93f00.yaml' +- !include 'Custom_Model_Bag 2-A The Search For Kadath 7b07ca/Card Ulthar d74877.yaml' +- !include 'Custom_Model_Bag 2-A The Search For Kadath 7b07ca/Custom_Tile 7234af.yaml' +- !include 'Custom_Model_Bag 2-A The Search For Kadath 7b07ca/Card Pack of Vooniths + 02da4e.yaml' +- !include 'Custom_Model_Bag 2-A The Search For Kadath 7b07ca/Card Skai River 247820.yaml' +- !include 'Custom_Model_Bag 2-A The Search For Kadath 7b07ca/Custom_Tile 175627.yaml' +- !include 'Custom_Model_Bag 2-A The Search For Kadath 7b07ca/Card Dylath-Leen 972cb1.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/780741189053435823/96C94958445E20B7DFB0D6B43AC86B4C491895B6/ + MaterialIndex: 3 + MeshURL: https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj + NormalURL: '' + TypeIndex: 6 +Description: The Dream Eaters +GMNotes: '' +GUID: 7b07ca +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Model_Bag 2-A The Search For Kadath 7b07ca.ttslua' +LuaScriptState: '{"ml":{"02da4e":{"lock":false,"pos":{"x":-30.2207,"y":1.6961,"z":2.428},"rot":{"x":359.9201,"y":270.0004,"z":0.0169}},"04c6b1":{"lock":false,"pos":{"x":-3.956,"y":1.6556,"z":-10.4413},"rot":{"x":359.9197,"y":269.9996,"z":0.0168}},"175627":{"lock":false,"pos":{"x":-30.2382,"y":1.6225,"z":-3.8293},"rot":{"x":0.0175,"y":179.5781,"z":0.0798}},"247820":{"lock":false,"pos":{"x":-30.2242,"y":1.6954,"z":-0.03},"rot":{"x":359.9201,"y":269.985,"z":0.0169}},"269d43":{"lock":false,"pos":{"x":-3.9277,"y":1.7397,"z":5.7572},"rot":{"x":359.9197,"y":270,"z":180.0168}},"65c10b":{"lock":false,"pos":{"x":1.6966,"y":1.5583,"z":14.2787},"rot":{"x":359.9551,"y":224.998,"z":0.0687}},"7234af":{"lock":false,"pos":{"x":-27.1175,"y":1.6193,"z":0.0633},"rot":{"x":359.9201,"y":270.0033,"z":0.0169}},"7c8ea4":{"lock":false,"pos":{"x":-2.7248,"y":1.664,"z":0.3733},"rot":{"x":0.0168,"y":179.9997,"z":0.0803}},"83569f":{"lock":false,"pos":{"x":-12.3269,"y":1.6737,"z":11.2204},"rot":{"x":359.9201,"y":270.0026,"z":0.0169}},"972cb1":{"lock":false,"pos":{"x":-30.2243,"y":1.6931,"z":-7.7},"rot":{"x":359.9201,"y":270.0015,"z":0.0169}},"bbb70a":{"lock":false,"pos":{"x":-3.6766,"y":1.5823,"z":-14.8239},"rot":{"x":359.9197,"y":270.0305,"z":0.0168}},"d74877":{"lock":false,"pos":{"x":-23.6765,"y":1.6862,"z":-0.03},"rot":{"x":359.9201,"y":269.9958,"z":0.0169}},"d87cb2":{"lock":false,"pos":{"x":-2.6886,"y":1.6543,"z":-5.0485},"rot":{"x":0.0168,"y":180.0002,"z":0.0803}},"e93f00":{"lock":false,"pos":{"x":-12.262,"y":1.6729,"z":8.8014},"rot":{"x":359.9201,"y":270.0001,"z":0.0169}}}}' +MaterialIndex: -1 +MeshIndex: -1 +Name: Custom_Model_Bag +Nickname: '2-A: The Search For Kadath' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 12.3527727 + posY: 1.4682802 + posZ: 13.5144081 + rotX: 359.920135 + rotY: 270.000519 + rotZ: 0.0168730915 + scaleX: 2.21 + scaleY: 0.46 + scaleZ: 2.42 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 2-A The Search For Kadath 7b07ca/Card Dylath-Leen 972cb1.yaml b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 2-A The Search For Kadath 7b07ca/Card Dylath-Leen 972cb1.yaml new file mode 100644 index 000000000..7e10f3e0e --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 2-A The Search For Kadath 7b07ca/Card Dylath-Leen 972cb1.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 275528 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2755': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493383646804247/225C1675DCFAFA6331AF23D73934CE52544F4863/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646805159/968F84A126D57214C3BC8E095D9D8EB066ED8D6C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Skai. City. Port. +GMNotes: '' +GUID: 972cb1 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Dylath-Leen +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -30.2243 + posY: 1.69309235 + posZ: -7.70000124 + rotX: 359.9201 + rotY: 270.001526 + rotZ: 0.0168739017 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 2-A The Search For Kadath 7b07ca/Card Pack of Vooniths 02da4e.yaml b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 2-A The Search For Kadath 7b07ca/Card Pack of Vooniths 02da4e.yaml new file mode 100644 index 000000000..085fea349 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 2-A The Search For Kadath 7b07ca/Card Pack of Vooniths 02da4e.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 275242 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2752': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: Creature. Monster. +GMNotes: '' +GUID: 02da4e +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Pack of Vooniths +SidewaysCard: false +Snap: false +Sticky: true +Tooltip: true +Transform: + posX: -30.2207 + posY: 1.6960696 + posZ: 2.42799973 + rotX: 359.9201 + rotY: 270.000427 + rotZ: 0.0168756526 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 2-A The Search For Kadath 7b07ca/Card Pack of Vooniths 83569f.yaml b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 2-A The Search For Kadath 7b07ca/Card Pack of Vooniths 83569f.yaml new file mode 100644 index 000000000..5edb0229f --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 2-A The Search For Kadath 7b07ca/Card Pack of Vooniths 83569f.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 275242 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2752': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: Creature. Monster. +GMNotes: '' +GUID: 83569f +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Pack of Vooniths +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -12.3268976 + posY: 1.67370689 + posZ: 11.2203989 + rotX: 359.9201 + rotY: 270.002563 + rotZ: 0.0168726575 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 2-A The Search For Kadath 7b07ca/Card Scenario 04c6b1.yaml b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 2-A The Search For Kadath 7b07ca/Card Scenario 04c6b1.yaml new file mode 100644 index 000000000..19165b7a8 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 2-A The Search For Kadath 7b07ca/Card Scenario 04c6b1.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 275525 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2755': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493383646804247/225C1675DCFAFA6331AF23D73934CE52544F4863/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646805159/968F84A126D57214C3BC8E095D9D8EB066ED8D6C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: The Search for Kadath +GMNotes: '' +GUID: 04c6b1 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Scenario +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.956 + posY: 1.65564811 + posZ: -10.4413013 + rotX: 359.919739 + rotY: 269.999634 + rotZ: 0.0168415941 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 2-A The Search For Kadath 7b07ca/Card Skai River 247820.yaml b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 2-A The Search For Kadath 7b07ca/Card Skai River 247820.yaml new file mode 100644 index 000000000..e8f7946b6 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 2-A The Search For Kadath 7b07ca/Card Skai River 247820.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 275527 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2755': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493383646804247/225C1675DCFAFA6331AF23D73934CE52544F4863/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646805159/968F84A126D57214C3BC8E095D9D8EB066ED8D6C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Skai. City. +GMNotes: '' +GUID: '247820' +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Skai River +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -30.2242 + posY: 1.69535065 + posZ: -0.03000038 + rotX: 359.9201 + rotY: 269.984955 + rotZ: 0.0168971121 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 2-A The Search For Kadath 7b07ca/Card Ulthar d74877.yaml b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 2-A The Search For Kadath 7b07ca/Card Ulthar d74877.yaml new file mode 100644 index 000000000..f7fe1aad6 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 2-A The Search For Kadath 7b07ca/Card Ulthar d74877.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 275526 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2755': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493383646804247/225C1675DCFAFA6331AF23D73934CE52544F4863/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646805159/968F84A126D57214C3BC8E095D9D8EB066ED8D6C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Skai. City. +GMNotes: '' +GUID: d74877 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Ulthar +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -23.6765 + posY: 1.68622041 + posZ: -0.03000035 + rotX: 359.9201 + rotY: 269.9958 + rotZ: 0.0168822147 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 2-A The Search For Kadath 7b07ca/Card Virgil Gray e93f00.yaml b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 2-A The Search For Kadath 7b07ca/Card Virgil Gray e93f00.yaml new file mode 100644 index 000000000..9a27db9d7 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 2-A The Search For Kadath 7b07ca/Card Virgil Gray e93f00.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 275235 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2752': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: Writer of Strange Tales +GMNotes: '' +GUID: e93f00 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Virgil Gray +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -12.262 + posY: 1.67290413 + posZ: 8.801399 + rotX: 359.9201 + rotY: 270.000061 + rotZ: 0.0168763548 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 2-A The Search For Kadath 7b07ca/Custom_Model_Bag Set-aside 65c10b.yaml b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 2-A The Search For Kadath 7b07ca/Custom_Model_Bag Set-aside 65c10b.yaml new file mode 100644 index 000000000..783d7840b --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 2-A The Search For Kadath 7b07ca/Custom_Model_Bag Set-aside 65c10b.yaml @@ -0,0 +1,64 @@ +Autoraise: true +ColorDiffuse: + b: 0.02148666 + g: 0.00100758043 + r: 0.02148666 +ContainedObjects: +- !include 'Custom_Model_Bag Set-aside 65c10b/Deck Locations c5ed15.yaml' +- !include 'Custom_Model_Bag Set-aside 65c10b/Card Beings of Ib b49497.yaml' +- !include 'Custom_Model_Bag Set-aside 65c10b/Card The Crawling Mist aa76f7.yaml' +- !include 'Custom_Model_Bag Set-aside 65c10b/Card Cats of Ulthar 35c471.yaml' +- !include 'Custom_Model_Bag Set-aside 65c10b/Card Stalking Manticore d6c02c.yaml' +- !include 'Custom_Model_Bag Set-aside 65c10b/Card Horde of Night 499dd5.yaml' +- !include 'Custom_Model_Bag Set-aside 65c10b/Deck Tenebrous Nightgaunts 96da72.yaml' +- !include 'Custom_Model_Bag Set-aside 65c10b/Deck Corsairs of Leng 41e8e0.yaml' +- !include 'Custom_Model_Bag Set-aside 65c10b/Deck Priests of a Thousand Masks 678204.yaml' +CustomMesh: + CastShadows: true + ColliderURL: '' + Convex: true + DiffuseURL: http://i.imgur.com/yVhOLYs.jpg + MaterialIndex: 1 + MeshURL: https://paste.ee/r/ylQzQ + NormalURL: http://i.imgur.com/f1ogHo6.jpg + TypeIndex: 6 +Description: '' +GMNotes: '' +GUID: 65c10b +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +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.69660068 + posY: 1.55831659 + posZ: 14.2787008 + rotX: 359.955139 + rotY: 224.997971 + rotZ: 0.06867303 + scaleX: 2.0 + scaleY: 2.0 + scaleZ: 2.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 2-A The Search For Kadath 7b07ca/Custom_Model_Bag Set-aside 65c10b/Card Beings of Ib b49497.yaml b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 2-A The Search For Kadath 7b07ca/Custom_Model_Bag Set-aside 65c10b/Card Beings of Ib b49497.yaml new file mode 100644 index 000000000..656fc8e07 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 2-A The Search For Kadath 7b07ca/Custom_Model_Bag Set-aside 65c10b/Card Beings of Ib b49497.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 275239 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2752': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: Monster. Elite. +GMNotes: '' +GUID: b49497 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Beings of Ib +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.920171 + posY: 3.61802959 + posZ: 15.9969339 + rotX: 359.9201 + rotY: 270.0074 + rotZ: 0.016867 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 2-A The Search For Kadath 7b07ca/Custom_Model_Bag Set-aside 65c10b/Card Cats of Ulthar 35c471.yaml b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 2-A The Search For Kadath 7b07ca/Custom_Model_Bag Set-aside 65c10b/Card Cats of Ulthar 35c471.yaml new file mode 100644 index 000000000..633f945ba --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 2-A The Search For Kadath 7b07ca/Custom_Model_Bag Set-aside 65c10b/Card Cats of Ulthar 35c471.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 275236 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2752': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: Creature. Elite. +GMNotes: '' +GUID: 35c471 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Cats of Ulthar +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.14765286 + posY: 3.6174407 + posZ: 12.9187422 + rotX: 359.920135 + rotY: 269.99585 + rotZ: 0.0168837085 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 2-A The Search For Kadath 7b07ca/Custom_Model_Bag Set-aside 65c10b/Card Horde of Night 499dd5.yaml b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 2-A The Search For Kadath 7b07ca/Custom_Model_Bag Set-aside 65c10b/Card Horde of Night 499dd5.yaml new file mode 100644 index 000000000..3e75dac97 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 2-A The Search For Kadath 7b07ca/Custom_Model_Bag Set-aside 65c10b/Card Horde of Night 499dd5.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 275238 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2752': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: Monster. Elite. +GMNotes: '' +GUID: 499dd5 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Horde of Night +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.53071117 + posY: 3.615322 + posZ: 3.90885615 + rotX: 359.920135 + rotY: 269.980042 + rotZ: 0.0169055965 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 2-A The Search For Kadath 7b07ca/Custom_Model_Bag Set-aside 65c10b/Card Stalking Manticore d6c02c.yaml b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 2-A The Search For Kadath 7b07ca/Custom_Model_Bag Set-aside 65c10b/Card Stalking Manticore d6c02c.yaml new file mode 100644 index 000000000..0cc50aec1 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 2-A The Search For Kadath 7b07ca/Custom_Model_Bag Set-aside 65c10b/Card Stalking Manticore d6c02c.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 275237 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2752': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: Creature. Monster. Elite. +GMNotes: '' +GUID: d6c02c +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Stalking Manticore +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.4513042 + posY: 3.61690283 + posZ: 9.653793 + rotX: 359.920135 + rotY: 269.9958 + rotZ: 0.0168841016 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 2-A The Search For Kadath 7b07ca/Custom_Model_Bag Set-aside 65c10b/Card The Crawling Mist aa76f7.yaml b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 2-A The Search For Kadath 7b07ca/Custom_Model_Bag Set-aside 65c10b/Card The Crawling Mist aa76f7.yaml new file mode 100644 index 000000000..2d653e2ad --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 2-A The Search For Kadath 7b07ca/Custom_Model_Bag Set-aside 65c10b/Card The Crawling Mist aa76f7.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 277811 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2778': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869055249784/A97DBA181DC89BC55B4626BD1F0F9AE71400114D/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: Monster. Avatar. +GMNotes: '' +GUID: aa76f7 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: The Crawling Mist +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.5399425 + posY: 3.61615133 + posZ: 6.68237352 + rotX: 359.920135 + rotY: 270.000031 + rotZ: 0.0168760046 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 2-A The Search For Kadath 7b07ca/Custom_Model_Bag Set-aside 65c10b/Deck Corsairs of Leng 41e8e0.yaml b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 2-A The Search For Kadath 7b07ca/Custom_Model_Bag Set-aside 65c10b/Deck Corsairs of Leng 41e8e0.yaml new file mode 100644 index 000000000..9479a0cbc --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 2-A The Search For Kadath 7b07ca/Custom_Model_Bag Set-aside 65c10b/Deck Corsairs of Leng 41e8e0.yaml @@ -0,0 +1,129 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 277930 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2741': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869055249784/A97DBA181DC89BC55B4626BD1F0F9AE71400114D/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Monster. + GMNotes: '' + GUID: 646a1a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Corsair of Leng + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -0.8792448 + posY: 1.54885137 + posZ: -18.964489 + rotX: 359.920258 + rotY: 270.002075 + rotZ: 0.0160020888 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 277930 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2741': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869055249784/A97DBA181DC89BC55B4626BD1F0F9AE71400114D/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Monster. + GMNotes: '' + GUID: a45b3a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Corsair of Leng + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -0.6101885 + posY: 1.70970118 + posZ: -18.9958839 + rotX: 359.922028 + rotY: 270.014343 + rotZ: 0.0135500757 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2779': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869055249784/A97DBA181DC89BC55B4626BD1F0F9AE71400114D/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 277930 +- 277930 +Description: '' +GMNotes: '' +GUID: 41e8e0 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Corsairs of Leng +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.6915164 + posY: 3.62443757 + posZ: 18.5137444 + rotX: 359.920135 + rotY: 269.9981 + rotZ: 0.01687923 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 2-A The Search For Kadath 7b07ca/Custom_Model_Bag Set-aside 65c10b/Deck Locations c5ed15.yaml b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 2-A The Search For Kadath 7b07ca/Custom_Model_Bag Set-aside 65c10b/Deck Locations c5ed15.yaml new file mode 100644 index 000000000..defe2865b --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 2-A The Search For Kadath 7b07ca/Custom_Model_Bag Set-aside 65c10b/Deck Locations c5ed15.yaml @@ -0,0 +1,645 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 275533 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2755': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493383646804247/225C1675DCFAFA6331AF23D73934CE52544F4863/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646805159/968F84A126D57214C3BC8E095D9D8EB066ED8D6C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Forbidden. Wastes. + GMNotes: '' + GUID: 8e9ed5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Forbidden Lands + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -12.4419594 + posY: 1.57453752 + posZ: 13.4791069 + rotX: 359.920135 + rotY: 269.999939 + rotZ: 0.0168767087 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 275529 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2755': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493383646804247/225C1675DCFAFA6331AF23D73934CE52544F4863/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646805159/968F84A126D57214C3BC8E095D9D8EB066ED8D6C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Mnar. Ancient. City. Port. + GMNotes: '' + GUID: '056275' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Kadatheron + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -12.274209 + posY: 1.57808256 + posZ: 26.3125839 + rotX: 359.920135 + rotY: 269.999939 + rotZ: 0.0168756042 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 275532 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2755': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493383646804247/225C1675DCFAFA6331AF23D73934CE52544F4863/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646805159/968F84A126D57214C3BC8E095D9D8EB066ED8D6C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Forbidden. City. Port. + GMNotes: '' + GUID: 96cca3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ilek-Vad + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -12.2036991 + posY: 1.57514131 + posZ: 16.6578 + rotX: 359.920135 + rotY: 269.999939 + rotZ: 0.01687632 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 275530 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2755': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493383646804247/225C1675DCFAFA6331AF23D73934CE52544F4863/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646805159/968F84A126D57214C3BC8E095D9D8EB066ED8D6C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Mnar. Ancient. Ruins. + GMNotes: '' + GUID: 9a739a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Sarnath + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -12.09113 + posY: 1.5767647 + posZ: 22.70372 + rotX: 359.920135 + rotY: 269.999939 + rotZ: 0.0168759152 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 275531 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2755': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493383646804247/225C1675DCFAFA6331AF23D73934CE52544F4863/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646805159/968F84A126D57214C3BC8E095D9D8EB066ED8D6C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Mnar. Ancient. Ruins. + GMNotes: '' + GUID: 1d61e4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ruins of Ib + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -12.5108461 + posY: 1.57645667 + posZ: 19.6702366 + rotX: 359.920135 + rotY: 269.999939 + rotZ: 0.0168755651 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 275534 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2755': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493383646804247/225C1675DCFAFA6331AF23D73934CE52544F4863/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646805159/968F84A126D57214C3BC8E095D9D8EB066ED8D6C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Forbidden. City. + GMNotes: '' + GUID: ae139d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Zulan-Thek + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -12.4753046 + posY: 1.57377851 + posZ: 10.7440977 + rotX: 359.920135 + rotY: 269.999939 + rotZ: 0.0168763455 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 275535 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2755': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493383646804247/225C1675DCFAFA6331AF23D73934CE52544F4863/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646805159/968F84A126D57214C3BC8E095D9D8EB066ED8D6C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Oriab. City. Port. + GMNotes: '' + GUID: 6ebff1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Baharna + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -12.71207 + posY: 1.573349 + posZ: 8.164102 + rotX: 359.920135 + rotY: 269.999939 + rotZ: 0.0168757625 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 275536 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2755': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493383646804247/225C1675DCFAFA6331AF23D73934CE52544F4863/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646805159/968F84A126D57214C3BC8E095D9D8EB066ED8D6C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Oriab. Mountain. + GMNotes: '' + GUID: 42511b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Mt. Ngranek + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -12.7785082 + posY: 1.57264042 + posZ: 5.44348049 + rotX: 359.920135 + rotY: 269.999939 + rotZ: 0.0168752186 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 275537 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2755': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493383646804247/225C1675DCFAFA6331AF23D73934CE52544F4863/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646805159/968F84A126D57214C3BC8E095D9D8EB066ED8D6C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Oriab. Ancient. Ruins. + GMNotes: '' + GUID: 3bfae3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Nameless Ruins + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -12.9459677 + posY: 1.57212532 + posZ: 2.901174 + rotX: 359.920135 + rotY: 269.999969 + rotZ: 0.0168754458 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 275538 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2755': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493383646804247/225C1675DCFAFA6331AF23D73934CE52544F4863/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646805159/968F84A126D57214C3BC8E095D9D8EB066ED8D6C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Ooth-Nargai. City. Port. + GMNotes: '' + GUID: b9d7d3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: "Celepha\xEFs" + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -12.4735508 + posY: 1.57046366 + posZ: -0.5054646 + rotX: 359.920135 + rotY: 269.999939 + rotZ: 0.0168750454 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 275539 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2755': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493383646804247/225C1675DCFAFA6331AF23D73934CE52544F4863/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646805159/968F84A126D57214C3BC8E095D9D8EB066ED8D6C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Ooth-Nargai. City. Port. + GMNotes: '' + GUID: 8eaa3e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Serannian + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -12.8110142 + posY: 1.57021189 + posZ: -2.957839 + rotX: 359.920135 + rotY: 269.999939 + rotZ: 0.0168750752 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 275540 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2755': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493383646804247/225C1675DCFAFA6331AF23D73934CE52544F4863/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646805159/968F84A126D57214C3BC8E095D9D8EB066ED8D6C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Ooth-Nargai. City. + GMNotes: '' + GUID: ac608d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Hazuth-Kleg + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -12.9111652 + posY: 1.56951559 + posZ: -5.79671955 + rotX: 359.920135 + rotY: 269.9999 + rotZ: 0.016874861 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 275541 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2755': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493383646804247/225C1675DCFAFA6331AF23D73934CE52544F4863/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646805159/968F84A126D57214C3BC8E095D9D8EB066ED8D6C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Ooth-Nargai. Temple. + GMNotes: '' + GUID: 566e24 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Temple of Unattainable Desires + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -12.7769585 + posY: 1.56846 + posZ: -8.745693 + rotX: 359.920135 + rotY: 269.999969 + rotZ: 0.0168759543 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 275542 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2755': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493383646804247/225C1675DCFAFA6331AF23D73934CE52544F4863/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646805159/968F84A126D57214C3BC8E095D9D8EB066ED8D6C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: City. Otherworld. + GMNotes: '' + GUID: 1892f8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: City-Which-Appears-On-No-Map + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -12.8705034 + posY: 1.567704 + posZ: -11.7560482 + rotX: 359.920135 + rotY: 269.9999 + rotZ: 0.01687664 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2755': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493383646804247/225C1675DCFAFA6331AF23D73934CE52544F4863/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646805159/968F84A126D57214C3BC8E095D9D8EB066ED8D6C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 275533 +- 275529 +- 275532 +- 275530 +- 275531 +- 275534 +- 275535 +- 275536 +- 275537 +- 275538 +- 275539 +- 275540 +- 275541 +- 275542 +Description: '' +GMNotes: '' +GUID: c5ed15 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Locations +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.11199522 + posY: 3.64101839 + posZ: 19.6899319 + rotX: 359.9211 + rotY: 269.999939 + rotZ: 0.176839828 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 2-A The Search For Kadath 7b07ca/Custom_Model_Bag Set-aside 65c10b/Deck Priests of a Thousand Masks 678204.yaml b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 2-A The Search For Kadath 7b07ca/Custom_Model_Bag Set-aside 65c10b/Deck Priests of a Thousand Masks 678204.yaml new file mode 100644 index 000000000..3984cb049 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 2-A The Search For Kadath 7b07ca/Custom_Model_Bag Set-aside 65c10b/Deck Priests of a Thousand Masks 678204.yaml @@ -0,0 +1,172 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 275240 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2752': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Cultist. + GMNotes: '' + GUID: 3c60a3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Priests of a Thousand Masks + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -14.5339622 + posY: 1.57638431 + posZ: 10.27148 + rotX: 359.921417 + rotY: 270.0005 + rotZ: 0.00846398 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 275240 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2752': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Cultist. + GMNotes: '' + GUID: 929b02 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Priests of a Thousand Masks + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -14.1222458 + posY: 1.73135841 + posZ: 10.0143385 + rotX: 359.9022 + rotY: 270.0005 + rotZ: 0.0194792971 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 275240 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2752': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Cultist. + GMNotes: '' + GUID: 3c60a3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Priests of a Thousand Masks + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -14.122365 + posY: 1.74570465 + posZ: 10.0143471 + rotX: 359.9207 + rotY: 270.000519 + rotZ: 0.015264404 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2752': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 275240 +- 275240 +- 275240 +Description: '' +GMNotes: '' +GUID: '678204' +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Priests of a Thousand Masks +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.50804567 + posY: 3.61565685 + posZ: 14.4788265 + rotX: 359.920135 + rotY: 270.000336 + rotZ: 0.0168757457 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 2-A The Search For Kadath 7b07ca/Custom_Model_Bag Set-aside 65c10b/Deck Tenebrous Nightgaunts 96da72.yaml b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 2-A The Search For Kadath 7b07ca/Custom_Model_Bag Set-aside 65c10b/Deck Tenebrous Nightgaunts 96da72.yaml new file mode 100644 index 000000000..e5bcae6c4 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 2-A The Search For Kadath 7b07ca/Custom_Model_Bag Set-aside 65c10b/Deck Tenebrous Nightgaunts 96da72.yaml @@ -0,0 +1,129 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 275241 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2752': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Nightgaunt. + GMNotes: '' + GUID: 1ce529 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Tenebrous Nightgaunt + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -13.2128162 + posY: 1.5778501 + posZ: 21.1856079 + rotX: 359.920441 + rotY: 270.021881 + rotZ: 0.0147382179 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 275241 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2752': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Nightgaunt. + GMNotes: '' + GUID: 987cef + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Tenebrous Nightgaunt + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -13.3413391 + posY: 1.73354626 + posZ: 21.2646561 + rotX: 359.915649 + rotY: 270.0219 + rotZ: 0.012841003 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2752': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 275241 +- 275241 +Description: '' +GMNotes: '' +GUID: 96da72 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Tenebrous Nightgaunts +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.79704356 + posY: 3.6417253 + posZ: 21.72567 + rotX: 359.920135 + rotY: 270.021881 + rotZ: 0.0168662611 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 2-A The Search For Kadath 7b07ca/Custom_Tile 175627.yaml b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 2-A The Search For Kadath 7b07ca/Custom_Tile 175627.yaml new file mode 100644 index 000000000..066884a86 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 2-A The Search For Kadath 7b07ca/Custom_Tile 175627.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: '175627' +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.2382 + posY: 1.62253785 + posZ: -3.82929969 + rotX: 0.0174597874 + rotY: 179.578064 + rotZ: 0.07980933 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 2-A The Search For Kadath 7b07ca/Custom_Tile 7234af.yaml b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 2-A The Search For Kadath 7b07ca/Custom_Tile 7234af.yaml new file mode 100644 index 000000000..e5806a0a1 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 2-A The Search For Kadath 7b07ca/Custom_Tile 7234af.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 7234af +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.1175 + posY: 1.61933243 + posZ: 0.06329975 + rotX: 359.9201 + rotY: 270.0033 + rotZ: 0.016895365 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 2-A The Search For Kadath 7b07ca/Custom_Tile The Search For Kadath bbb70a.ttslua b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 2-A The Search For Kadath 7b07ca/Custom_Tile The Search For Kadath bbb70a.ttslua new file mode 100644 index 000000000..4cdcd8644 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 2-A The Search For Kadath 7b07ca/Custom_Tile The Search For Kadath bbb70a.ttslua @@ -0,0 +1,25 @@ +name = 'The Search For Kadath' + +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 + +function standaloneClick() + Global.call('fillContainer', {object=self, key=name, mode='standalone'}) +end diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 2-A The Search For Kadath 7b07ca/Custom_Tile The Search For Kadath bbb70a.yaml b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 2-A The Search For Kadath 7b07ca/Custom_Tile The Search For Kadath bbb70a.yaml new file mode 100644 index 000000000..bdd8cf562 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 2-A The Search For Kadath 7b07ca/Custom_Tile The Search For Kadath bbb70a.yaml @@ -0,0 +1,42 @@ +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: http://cloud-3.steamusercontent.com/ugc/949588657194710961/D864BCCCC1C811EC7F0AED69D1C30C678D3D9FC9/ + ImageURL: http://cloud-3.steamusercontent.com/ugc/965354846165100486/3DC8FCEF364B30758B09EF96AF9458F2B8E64D56/ + WidthScale: 0.0 +Description: click to set chaos token difficulty +GMNotes: '' +GUID: bbb70a +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Tile The Search For Kadath bbb70a.ttslua' +LuaScriptState: '' +Name: Custom_Tile +Nickname: The Search For Kadath +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.67655945 + posY: 1.58225548 + posZ: -14.8239346 + rotX: 359.919739 + rotY: 270.030518 + rotZ: 0.0167951863 + scaleX: 2.2 + scaleY: 1.0 + scaleZ: 2.2 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 2-A The Search For Kadath 7b07ca/Deck Act Deck d87cb2.yaml b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 2-A The Search For Kadath 7b07ca/Deck Act Deck d87cb2.yaml new file mode 100644 index 000000000..dc6724c93 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 2-A The Search For Kadath 7b07ca/Deck Act Deck d87cb2.yaml @@ -0,0 +1,258 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 275317 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2753': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/780749631103001215/3FF9DC51D7737267B68EC5D9CF17BE421681663B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780749631102998699/DA1D7C58FE177F46169558EF1D8301754A91A73A/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 2 + GMNotes: '' + GUID: 7d8966 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The King's Decree + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -13.11061 + posY: 1.58402824 + posZ: 42.85089 + rotX: 0.0178025123 + rotY: 179.999786 + rotZ: 0.0741316751 + 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: true + BackURL: http://cloud-3.steamusercontent.com/ugc/780749631103001215/3FF9DC51D7737267B68EC5D9CF17BE421681663B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780749631102998699/DA1D7C58FE177F46169558EF1D8301754A91A73A/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 2 + GMNotes: '' + GUID: d78fdd + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Seek Out the Night + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -12.65023 + posY: 1.72878861 + posZ: 42.7050934 + rotX: 0.0175244045 + rotY: 180.000031 + rotZ: 0.064095445 + 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: true + BackURL: http://cloud-3.steamusercontent.com/ugc/780749631103001215/3FF9DC51D7737267B68EC5D9CF17BE421681663B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780749631102998699/DA1D7C58FE177F46169558EF1D8301754A91A73A/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 2 + GMNotes: '' + GUID: c65b29 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Doom That Came Before + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -12.9636154 + posY: 1.74668288 + posZ: 42.86624 + rotX: 0.0148617644 + rotY: 180.0009 + rotZ: 0.08124309 + 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: true + BackURL: http://cloud-3.steamusercontent.com/ugc/780749631103001215/3FF9DC51D7737267B68EC5D9CF17BE421681663B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780749631102998699/DA1D7C58FE177F46169558EF1D8301754A91A73A/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 2 + GMNotes: '' + GUID: 20f212 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Isle of Oriab + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -12.7072363 + posY: 1.73268008 + posZ: 43.0748558 + rotX: 0.0136243543 + rotY: 180.001038 + rotZ: 0.0829606 + 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: true + BackURL: http://cloud-3.steamusercontent.com/ugc/780749631103001215/3FF9DC51D7737267B68EC5D9CF17BE421681663B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780749631102998699/DA1D7C58FE177F46169558EF1D8301754A91A73A/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 1 + GMNotes: '' + GUID: cbc59e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Kingdom of the Skai + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -13.3660841 + posY: 1.73149014 + posZ: 42.6055 + rotX: 0.0154368114 + rotY: 180.000336 + rotZ: 0.07339504 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2753': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/780749631103001215/3FF9DC51D7737267B68EC5D9CF17BE421681663B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780749631102998699/DA1D7C58FE177F46169558EF1D8301754A91A73A/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 275317 +- 275316 +- 275315 +- 275314 +- 275313 +Description: '' +GMNotes: '' +GUID: d87cb2 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Act Deck +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.68859982 + posY: 1.65432537 + posZ: -5.04850054 + rotX: 0.0168349724 + rotY: 180.000168 + rotZ: 0.08025766 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 2-A The Search For Kadath 7b07ca/Deck Agenda Deck 7c8ea4.yaml b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 2-A The Search For Kadath 7b07ca/Deck Agenda Deck 7c8ea4.yaml new file mode 100644 index 000000000..8f02b638c --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 2-A The Search For Kadath 7b07ca/Deck Agenda Deck 7c8ea4.yaml @@ -0,0 +1,129 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 275312 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2753': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/780749631103001215/3FF9DC51D7737267B68EC5D9CF17BE421681663B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780749631102998699/DA1D7C58FE177F46169558EF1D8301754A91A73A/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 2 + GMNotes: '' + GUID: a6ecc6 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Agents of Outer Gods + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.74359059 + posY: 1.57216394 + posZ: 46.6948051 + rotX: 0.0174726825 + rotY: 179.998779 + rotZ: 0.0782274157 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 275311 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2753': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/780749631103001215/3FF9DC51D7737267B68EC5D9CF17BE421681663B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780749631102998699/DA1D7C58FE177F46169558EF1D8301754A91A73A/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 1 + GMNotes: '' + GUID: cbc59e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Journey Across the Dreamlands + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.60695219 + posY: 1.71743131 + posZ: 46.6658745 + rotX: 0.0156136546 + rotY: 179.9985 + rotZ: 0.06568816 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2753': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/780749631103001215/3FF9DC51D7737267B68EC5D9CF17BE421681663B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780749631102998699/DA1D7C58FE177F46169558EF1D8301754A91A73A/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 275312 +- 275311 +Description: '' +GMNotes: '' +GUID: 7c8ea4 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Agenda Deck +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.7248 + posY: 1.66397738 + posZ: 0.373300433 + rotX: 0.01683533 + rotY: 179.999741 + rotZ: 0.0802579448 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 2-A The Search For Kadath 7b07ca/Deck Encounter Deck 269d43.yaml b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 2-A The Search For Kadath 7b07ca/Deck Encounter Deck 269d43.yaml new file mode 100644 index 000000000..7f3476d6f --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 2-A The Search For Kadath 7b07ca/Deck Encounter Deck 269d43.yaml @@ -0,0 +1,1082 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 275243 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2752': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Creature. Monster. + GMNotes: '' + GUID: 0f7d44 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Nightriders + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -7.5146904 + posY: 1.865406 + posZ: 22.4842567 + rotX: -0.004218876 + rotY: 270.000519 + rotZ: 0.0759157 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 275244 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2752': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Curse. + GMNotes: '' + GUID: da130c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Song of the Magah Bird + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -7.44637251 + posY: 1.68690383 + posZ: 22.23971 + rotX: 359.9574 + rotY: 269.977051 + rotZ: 357.952332 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 275934 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2759': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869055249784/A97DBA181DC89BC55B4626BD1F0F9AE71400114D/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: 8b08a8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Zoog Burrow + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -7.601114 + posY: 1.82774377 + posZ: 31.1552677 + rotX: 359.9396 + rotY: 269.72702 + rotZ: 356.6766 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 275915 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2759': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869055249784/A97DBA181DC89BC55B4626BD1F0F9AE71400114D/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: ce95a3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Whispers of Hypnos + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -7.51770973 + posY: 1.710178 + posZ: 31.68852 + rotX: 0.8261434 + rotY: 270.239044 + rotZ: 355.267151 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 275913 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2759': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869055249784/A97DBA181DC89BC55B4626BD1F0F9AE71400114D/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: 48601c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Law of 'Ygiroth (Discord) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -7.12121534 + posY: 1.68012333 + posZ: 31.1778 + rotX: 359.866577 + rotY: 270.012543 + rotZ: 354.3614 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 275921 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2759': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869055249784/A97DBA181DC89BC55B4626BD1F0F9AE71400114D/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Power. + GMNotes: '' + GUID: 9df5fa + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dreamlands Eclipse + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -7.29006863 + posY: 1.77508748 + posZ: 31.6659145 + rotX: 0.04985804 + rotY: 270.120728 + rotZ: 356.119568 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 275244 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2752': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Curse. + GMNotes: '' + GUID: 81d1a4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Song of the Magah Bird + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -7.1733017 + posY: 1.56984 + posZ: 22.9708328 + rotX: 359.9215 + rotY: 269.982056 + rotZ: 0.00721275574 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 275921 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2759': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869055249784/A97DBA181DC89BC55B4626BD1F0F9AE71400114D/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Power. + GMNotes: '' + GUID: c942d4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dreamlands Eclipse + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -7.241075 + posY: 1.76712751 + posZ: 31.5813789 + rotX: 0.313825518 + rotY: 270.16687 + rotZ: 355.37915 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 275243 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2752': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Creature. Monster. + GMNotes: '' + GUID: f3bc7d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Nightriders + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -7.687539 + posY: 1.857332 + posZ: 22.0311432 + rotX: 0.133902177 + rotY: 270.010681 + rotZ: 0.476255745 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 275929 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2759': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869055249784/A97DBA181DC89BC55B4626BD1F0F9AE71400114D/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Scheme. + GMNotes: '' + GUID: d30166 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Hunted by Corsairs + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -7.118088 + posY: 3.12496376 + posZ: 30.7177525 + rotX: 359.958679 + rotY: 270.011841 + rotZ: 0.008831963 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 275915 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2759': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869055249784/A97DBA181DC89BC55B4626BD1F0F9AE71400114D/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: 6476cc + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Whispers of Hypnos + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -7.30569649 + posY: 1.74557066 + posZ: 31.7424488 + rotX: 0.0877673253 + rotY: 270.11792 + rotZ: 355.527863 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 275932 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2759': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869055249784/A97DBA181DC89BC55B4626BD1F0F9AE71400114D/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Creature. Zoog. + GMNotes: '' + GUID: db8153 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Stealthy Zoog + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -7.316199 + posY: 1.82182014 + posZ: 31.6502972 + rotX: 359.841431 + rotY: 269.8029 + rotZ: 356.4663 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 275932 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2759': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869055249784/A97DBA181DC89BC55B4626BD1F0F9AE71400114D/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Creature. Zoog. + GMNotes: '' + GUID: 27dc33 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Stealthy Zoog + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -7.172232 + posY: 1.94074166 + posZ: 31.5613937 + rotX: 359.7404 + rotY: 269.707947 + rotZ: 356.947235 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 275912 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2759': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869055249784/A97DBA181DC89BC55B4626BD1F0F9AE71400114D/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: fc58cb + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Law of 'Ygiroth (Chaos) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -7.29805 + posY: 1.84863257 + posZ: 31.5060158 + rotX: 359.871979 + rotY: 269.793152 + rotZ: 356.9523 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 275929 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2759': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869055249784/A97DBA181DC89BC55B4626BD1F0F9AE71400114D/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Scheme. + GMNotes: '' + GUID: 4f56f1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Hunted by Corsairs + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -7.19534 + posY: 1.7781316 + posZ: 31.6812077 + rotX: 359.9493 + rotY: 270.1191 + rotZ: 356.545166 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 275933 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2759': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869055249784/A97DBA181DC89BC55B4626BD1F0F9AE71400114D/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Creature. Zoog. + GMNotes: '' + GUID: d1c795 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Inconspicuous Zoog + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -7.577619 + posY: 1.79761493 + posZ: 32.03079 + rotX: 359.902771 + rotY: 269.943176 + rotZ: 357.5296 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 275931 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2759': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869055249784/A97DBA181DC89BC55B4626BD1F0F9AE71400114D/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Creature. Zoog. + GMNotes: '' + GUID: fb76f8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Furtive Zoog + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -7.341299 + posY: 1.76366591 + posZ: 32.1722832 + rotX: 359.099731 + rotY: 269.9903 + rotZ: 359.105042 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 275922 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2759': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869055249784/A97DBA181DC89BC55B4626BD1F0F9AE71400114D/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Power. + GMNotes: '' + GUID: c9cb0f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Prismatic Phenomenon + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -7.105017 + posY: 1.76853013 + posZ: 31.95703 + rotX: 359.90802 + rotY: 269.7754 + rotZ: 356.3118 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 275245 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2752': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Power. + GMNotes: '' + GUID: 5ad5e0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Wondrous Lands + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -7.597225 + posY: 1.99104929 + posZ: 21.85384 + rotX: 359.8399 + rotY: 270.006683 + rotZ: 357.425751 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 275915 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2759': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869055249784/A97DBA181DC89BC55B4626BD1F0F9AE71400114D/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: a3ada0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Whispers of Hypnos + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -7.43821573 + posY: 1.7685262 + posZ: 31.8188763 + rotX: 359.941 + rotY: 269.647675 + rotZ: 356.452148 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 275914 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2759': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869055249784/A97DBA181DC89BC55B4626BD1F0F9AE71400114D/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: bf7d6b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Law of 'Ygiroth (Pandemonium) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -7.20290136 + posY: 1.83644211 + posZ: 31.8489876 + rotX: 359.920715 + rotY: 269.767731 + rotZ: 357.605316 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 275931 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2759': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869055249784/A97DBA181DC89BC55B4626BD1F0F9AE71400114D/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Creature. Zoog. + GMNotes: '' + GUID: 4a2c73 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Furtive Zoog + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -7.07092571 + posY: 1.79056633 + posZ: 31.77091 + rotX: 359.9197 + rotY: 270.0309 + rotZ: 0.0158037879 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 275922 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2759': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869055249784/A97DBA181DC89BC55B4626BD1F0F9AE71400114D/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Power. + GMNotes: '' + GUID: 4b23ff + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Prismatic Phenomenon + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -7.08372736 + posY: 1.80981278 + posZ: 31.771904 + rotX: 359.922119 + rotY: 269.89624 + rotZ: 357.844055 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 275245 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2752': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Power. + GMNotes: '' + GUID: ee06eb + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Wondrous Lands + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -7.59687662 + posY: 1.85007334 + posZ: 21.9502544 + rotX: 359.934662 + rotY: 269.976685 + rotZ: 358.089417 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2752': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '2759': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869055249784/A97DBA181DC89BC55B4626BD1F0F9AE71400114D/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 275243 +- 275244 +- 275934 +- 275915 +- 275913 +- 275921 +- 275244 +- 275921 +- 275243 +- 275929 +- 275915 +- 275932 +- 275932 +- 275912 +- 275929 +- 275933 +- 275931 +- 275922 +- 275245 +- 275915 +- 275914 +- 275931 +- 275922 +- 275245 +Description: '' +GMNotes: '' +GUID: 269d43 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Encounter Deck +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.92770028 + posY: 1.73973322 + posZ: 5.757201 + rotX: 359.919739 + rotY: 270.0 + rotZ: 180.016815 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 2-B A Thousand Shapes of Horror 1b4f86.ttslua b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 2-B A Thousand Shapes of Horror 1b4f86.ttslua new file mode 100644 index 000000000..5534586ac --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 2-B A Thousand Shapes of Horror 1b4f86.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.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 \ No newline at end of file diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 2-B A Thousand Shapes of Horror 1b4f86.yaml b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 2-B A Thousand Shapes of Horror 1b4f86.yaml new file mode 100644 index 000000000..810045402 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 2-B A Thousand Shapes of Horror 1b4f86.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 2-B A Thousand Shapes of Horror 1b4f86/Custom_Model_Bag + Set-aside 5c62e6.yaml' +- !include 'Custom_Model_Bag 2-B A Thousand Shapes of Horror 1b4f86/Deck Encounter + Deck 31cb94.yaml' +- !include 'Custom_Model_Bag 2-B A Thousand Shapes of Horror 1b4f86/Deck Agenda Deck + 7ae3b9.yaml' +- !include 'Custom_Model_Bag 2-B A Thousand Shapes of Horror 1b4f86/Deck Act Deck + efa150.yaml' +- !include 'Custom_Model_Bag 2-B A Thousand Shapes of Horror 1b4f86/Card Scenario + 847080.yaml' +- !include 'Custom_Model_Bag 2-B A Thousand Shapes of Horror 1b4f86/Custom_Tile A + Thousand Shapes of Horror b53295.yaml' +- !include 'Custom_Model_Bag 2-B A Thousand Shapes of Horror 1b4f86/Card Upstairs + Doorway a87562.yaml' +- !include 'Custom_Model_Bag 2-B A Thousand Shapes of Horror 1b4f86/Custom_Tile 4e1b15.yaml' +- !include 'Custom_Model_Bag 2-B A Thousand Shapes of Horror 1b4f86/Custom_Tile 156254.yaml' +- !include 'Custom_Model_Bag 2-B A Thousand Shapes of Horror 1b4f86/Card Upstairs + Doorway c1375a.yaml' +- !include 'Custom_Model_Bag 2-B A Thousand Shapes of Horror 1b4f86/Card Upstairs + Hallway 57c9a1.yaml' +- !include 'Custom_Model_Bag 2-B A Thousand Shapes of Horror 1b4f86/Custom_Tile 23b0bf.yaml' +- !include 'Custom_Model_Bag 2-B A Thousand Shapes of Horror 1b4f86/Card Front Porch + 285100.yaml' +- !include 'Custom_Model_Bag 2-B A Thousand Shapes of Horror 1b4f86/Custom_Tile 27c4de.yaml' +- !include 'Custom_Model_Bag 2-B A Thousand Shapes of Horror 1b4f86/Card Downstairs + Doorway 55059a.yaml' +- !include 'Custom_Model_Bag 2-B A Thousand Shapes of Horror 1b4f86/Custom_Tile 7234af.yaml' +- !include 'Custom_Model_Bag 2-B A Thousand Shapes of Horror 1b4f86/Custom_Tile 491963.yaml' +- !include 'Custom_Model_Bag 2-B A Thousand Shapes of Horror 1b4f86/Card Downstairs + Doorway c93906.yaml' +- !include 'Custom_Model_Bag 2-B A Thousand Shapes of Horror 1b4f86/Card Burial Ground + 4a9058.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/778493212055118180/AF19CB69440DFCBD745645A13A4DAC2A6509A813/ + MaterialIndex: 3 + MeshURL: https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj + NormalURL: '' + TypeIndex: 6 +Description: The Dream Eaters +GMNotes: '' +GUID: 1b4f86 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Model_Bag 2-B A Thousand Shapes of Horror 1b4f86.ttslua' +LuaScriptState: '{"ml":{"156254":{"lock":false,"pos":{"x":-26.6043,"y":1.6174,"z":-4.1736},"rot":{"x":0.0685,"y":134.9759,"z":0.0445}},"23b0bf":{"lock":false,"pos":{"x":-33.5581,"y":1.6283,"z":0.0013},"rot":{"x":0.0799,"y":90.0059,"z":359.9831}},"27c4de":{"lock":false,"pos":{"x":-36.7731,"y":1.6339,"z":3.86},"rot":{"x":0.0169,"y":180.0112,"z":0.0799}},"285100":{"lock":false,"pos":{"x":-36.7732,"y":1.7045,"z":-0.03},"rot":{"x":359.9201,"y":269.9998,"z":0.0169}},"31cb94":{"lock":false,"pos":{"x":-3.9277,"y":1.793,"z":5.7572},"rot":{"x":359.9197,"y":270,"z":180.0168}},"491963":{"lock":false,"pos":{"x":-36.7731,"y":1.6317,"z":-3.83},"rot":{"x":0.0169,"y":180.0113,"z":0.0799}},"4a9058":{"lock":false,"pos":{"x":-43.37,"y":1.7137,"z":-0.03},"rot":{"x":359.9201,"y":270,"z":0.0169}},"4e1b15":{"lock":false,"pos":{"x":-26.6171,"y":1.6196,"z":3.485},"rot":{"x":359.9554,"y":224.9924,"z":0.0684}},"55059a":{"lock":false,"pos":{"x":-36.7732,"y":1.7067,"z":7.57},"rot":{"x":359.9201,"y":269.9999,"z":0.0169}},"57c9a1":{"lock":false,"pos":{"x":-30.2243,"y":1.6954,"z":-0.03},"rot":{"x":359.9201,"y":269.9997,"z":0.0169}},"5c62e6":{"lock":false,"pos":{"x":1.6969,"y":1.5583,"z":14.2788},"rot":{"x":359.9551,"y":224.998,"z":0.0687}},"7234af":{"lock":false,"pos":{"x":-40.0476,"y":1.6373,"z":-0.0025},"rot":{"x":359.9201,"y":270.0094,"z":0.0169}},"7ae3b9":{"lock":false,"pos":{"x":-2.7246,"y":1.6566,"z":0.3733},"rot":{"x":0.0168,"y":180.0083,"z":0.0803}},"847080":{"lock":false,"pos":{"x":-3.9559,"y":1.6556,"z":-10.4412},"rot":{"x":359.9197,"y":269.9998,"z":0.0168}},"a87562":{"lock":false,"pos":{"x":-23.6766,"y":1.6885,"z":7.57},"rot":{"x":359.9201,"y":269.9991,"z":0.0169}},"b53295":{"lock":false,"pos":{"x":-3.7,"y":1.5824,"z":-14.4878},"rot":{"x":359.9197,"y":270.0309,"z":0.0168}},"c1375a":{"lock":false,"pos":{"x":-23.6766,"y":1.684,"z":-7.7},"rot":{"x":359.9201,"y":269.9998,"z":0.0169}},"c93906":{"lock":false,"pos":{"x":-36.7733,"y":1.7022,"z":-7.7},"rot":{"x":359.9201,"y":269.9997,"z":0.0169}},"efa150":{"lock":false,"pos":{"x":-2.6886,"y":1.6623,"z":-5.0485},"rot":{"x":0.0168,"y":180,"z":0.0803}}}}' +MaterialIndex: -1 +MeshIndex: -1 +Name: Custom_Model_Bag +Nickname: '2-B: A Thousand Shapes of Horror' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 12.3525715 + posY: 1.46569335 + posZ: 4.80919743 + rotX: 359.920135 + rotY: 270.004517 + rotZ: 0.0168672558 + scaleX: 2.21 + scaleY: 0.46 + scaleZ: 2.42 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 2-B A Thousand Shapes of Horror 1b4f86/Card Burial Ground 4a9058.yaml b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 2-B A Thousand Shapes of Horror 1b4f86/Card Burial Ground 4a9058.yaml new file mode 100644 index 000000000..a064b9214 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 2-B A Thousand Shapes of Horror 1b4f86/Card Burial Ground 4a9058.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 275544 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2755': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493383646804247/225C1675DCFAFA6331AF23D73934CE52544F4863/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646805159/968F84A126D57214C3BC8E095D9D8EB066ED8D6C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Graveyard. +GMNotes: '' +GUID: 4a9058 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Burial Ground +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -43.37 + posY: 1.71368158 + posZ: -0.0300003625 + rotX: 359.9201 + rotY: 270.0 + rotZ: 0.0168763157 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 2-B A Thousand Shapes of Horror 1b4f86/Card Downstairs Doorway 55059a.yaml b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 2-B A Thousand Shapes of Horror 1b4f86/Card Downstairs Doorway 55059a.yaml new file mode 100644 index 000000000..ee6d39e66 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 2-B A Thousand Shapes of Horror 1b4f86/Card Downstairs Doorway 55059a.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 275547 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2755': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493383646804247/225C1675DCFAFA6331AF23D73934CE52544F4863/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646805159/968F84A126D57214C3BC8E095D9D8EB066ED8D6C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 55059a +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Downstairs Doorway +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -36.7732 + posY: 1.70672071 + posZ: 7.56999969 + rotX: 359.9201 + rotY: 269.999939 + rotZ: 0.0168762412 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 2-B A Thousand Shapes of Horror 1b4f86/Card Downstairs Doorway c93906.yaml b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 2-B A Thousand Shapes of Horror 1b4f86/Card Downstairs Doorway c93906.yaml new file mode 100644 index 000000000..a10ba731d --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 2-B A Thousand Shapes of Horror 1b4f86/Card Downstairs Doorway c93906.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 275546 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2755': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493383646804247/225C1675DCFAFA6331AF23D73934CE52544F4863/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646805159/968F84A126D57214C3BC8E095D9D8EB066ED8D6C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: c93906 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Downstairs Doorway +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -36.7733 + posY: 1.70222437 + posZ: -7.700001 + rotX: 359.9201 + rotY: 269.999725 + rotZ: 0.0168766584 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 2-B A Thousand Shapes of Horror 1b4f86/Card Front Porch 285100.yaml b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 2-B A Thousand Shapes of Horror 1b4f86/Card Front Porch 285100.yaml new file mode 100644 index 000000000..8e70d0506 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 2-B A Thousand Shapes of Horror 1b4f86/Card Front Porch 285100.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 275545 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2755': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493383646804247/225C1675DCFAFA6331AF23D73934CE52544F4863/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646805159/968F84A126D57214C3BC8E095D9D8EB066ED8D6C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: '285100' +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Front Porch +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -36.7732 + posY: 1.70448279 + posZ: -0.0300003588 + rotX: 359.9201 + rotY: 269.999756 + rotZ: 0.01687676 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 2-B A Thousand Shapes of Horror 1b4f86/Card Scenario 847080.yaml b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 2-B A Thousand Shapes of Horror 1b4f86/Card Scenario 847080.yaml new file mode 100644 index 000000000..473c273cb --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 2-B A Thousand Shapes of Horror 1b4f86/Card Scenario 847080.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 275543 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2755': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493383646804247/225C1675DCFAFA6331AF23D73934CE52544F4863/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646805159/968F84A126D57214C3BC8E095D9D8EB066ED8D6C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: A Thousand Shapes of Horror +GMNotes: '' +GUID: '847080' +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Scenario +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.9559 + posY: 1.655648 + posZ: -10.4412012 + rotX: 359.919739 + rotY: 269.999756 + rotZ: 0.0168416575 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 2-B A Thousand Shapes of Horror 1b4f86/Card Upstairs Doorway a87562.yaml b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 2-B A Thousand Shapes of Horror 1b4f86/Card Upstairs Doorway a87562.yaml new file mode 100644 index 000000000..422dbacb0 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 2-B A Thousand Shapes of Horror 1b4f86/Card Upstairs Doorway a87562.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 275550 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2755': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493383646804247/225C1675DCFAFA6331AF23D73934CE52544F4863/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646805159/968F84A126D57214C3BC8E095D9D8EB066ED8D6C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: a87562 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Upstairs Doorway +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -23.6765976 + posY: 1.68845844 + posZ: 7.569999 + rotX: 359.9201 + rotY: 269.9991 + rotZ: 0.01687755 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 2-B A Thousand Shapes of Horror 1b4f86/Card Upstairs Doorway c1375a.yaml b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 2-B A Thousand Shapes of Horror 1b4f86/Card Upstairs Doorway c1375a.yaml new file mode 100644 index 000000000..6547e9cac --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 2-B A Thousand Shapes of Horror 1b4f86/Card Upstairs Doorway c1375a.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 275549 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2755': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493383646804247/225C1675DCFAFA6331AF23D73934CE52544F4863/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646805159/968F84A126D57214C3BC8E095D9D8EB066ED8D6C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: c1375a +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Upstairs Doorway +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -23.6766 + posY: 1.683962 + posZ: -7.70000029 + rotX: 359.9201 + rotY: 269.999756 + rotZ: 0.016876556 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 2-B A Thousand Shapes of Horror 1b4f86/Card Upstairs Hallway 57c9a1.yaml b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 2-B A Thousand Shapes of Horror 1b4f86/Card Upstairs Hallway 57c9a1.yaml new file mode 100644 index 000000000..3538c8f76 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 2-B A Thousand Shapes of Horror 1b4f86/Card Upstairs Hallway 57c9a1.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 275548 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2755': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493383646804247/225C1675DCFAFA6331AF23D73934CE52544F4863/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646805159/968F84A126D57214C3BC8E095D9D8EB066ED8D6C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 57c9a1 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Upstairs Hallway +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -30.2243 + posY: 1.69535077 + posZ: -0.030000357 + rotX: 359.9201 + rotY: 269.999725 + rotZ: 0.0168766454 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 2-B A Thousand Shapes of Horror 1b4f86/Custom_Model_Bag Set-aside 5c62e6.yaml b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 2-B A Thousand Shapes of Horror 1b4f86/Custom_Model_Bag Set-aside 5c62e6.yaml new file mode 100644 index 000000000..a91c65310 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 2-B A Thousand Shapes of Horror 1b4f86/Custom_Model_Bag Set-aside 5c62e6.yaml @@ -0,0 +1,60 @@ +Autoraise: true +ColorDiffuse: + b: 0.02148666 + g: 0.00100758043 + r: 0.02148666 +ContainedObjects: +- !include 'Custom_Model_Bag Set-aside 5c62e6/Deck Mysterious Stairs 1fc4b6.yaml' +- !include 'Custom_Model_Bag Set-aside 5c62e6/Card Unmarked Tomb 191379.yaml' +- !include 'Custom_Model_Bag Set-aside 5c62e6/Card Attic 10faf9.yaml' +- !include 'Custom_Model_Bag Set-aside 5c62e6/Card The Silver Key 61fd07.yaml' +- !include 'Custom_Model_Bag Set-aside 5c62e6/Deck Endless Descents 3b7274.yaml' +CustomMesh: + CastShadows: true + ColliderURL: '' + Convex: true + DiffuseURL: http://i.imgur.com/yVhOLYs.jpg + MaterialIndex: 1 + MeshURL: https://paste.ee/r/ylQzQ + NormalURL: http://i.imgur.com/f1ogHo6.jpg + TypeIndex: 6 +Description: '' +GMNotes: '' +GUID: 5c62e6 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +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.696901 + posY: 1.55831575 + posZ: 14.2788 + rotX: 359.955139 + rotY: 224.997955 + rotZ: 0.06867229 + scaleX: 2.0 + scaleY: 2.0 + scaleZ: 2.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 2-B A Thousand Shapes of Horror 1b4f86/Custom_Model_Bag Set-aside 5c62e6/Card Attic 10faf9.yaml b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 2-B A Thousand Shapes of Horror 1b4f86/Custom_Model_Bag Set-aside 5c62e6/Card Attic 10faf9.yaml new file mode 100644 index 000000000..fbac43674 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 2-B A Thousand Shapes of Horror 1b4f86/Custom_Model_Bag Set-aside 5c62e6/Card Attic 10faf9.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 275551 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2755': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493383646804247/225C1675DCFAFA6331AF23D73934CE52544F4863/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646805159/968F84A126D57214C3BC8E095D9D8EB066ED8D6C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 10faf9 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Attic +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 8.403989 + posY: 3.60436678 + posZ: 30.04153 + rotX: 359.920135 + rotY: 269.999939 + rotZ: 0.0168760885 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 2-B A Thousand Shapes of Horror 1b4f86/Custom_Model_Bag Set-aside 5c62e6/Card The Silver Key 61fd07.yaml b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 2-B A Thousand Shapes of Horror 1b4f86/Custom_Model_Bag Set-aside 5c62e6/Card The Silver Key 61fd07.yaml new file mode 100644 index 000000000..ba163e94a --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 2-B A Thousand Shapes of Horror 1b4f86/Custom_Model_Bag Set-aside 5c62e6/Card The Silver Key 61fd07.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Key to the Gate of Dreams +GMNotes: '' +GUID: 61fd07 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: The Silver Key +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 16.24086 + posY: 2.53453445 + posZ: -26.5728226 + rotX: 359.920135 + rotY: 270.0 + rotZ: 359.9831 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 2-B A Thousand Shapes of Horror 1b4f86/Custom_Model_Bag Set-aside 5c62e6/Card Unmarked Tomb 191379.yaml b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 2-B A Thousand Shapes of Horror 1b4f86/Custom_Model_Bag Set-aside 5c62e6/Card Unmarked Tomb 191379.yaml new file mode 100644 index 000000000..f59df81e3 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 2-B A Thousand Shapes of Horror 1b4f86/Custom_Model_Bag Set-aside 5c62e6/Card Unmarked Tomb 191379.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 275552 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2755': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493383646804247/225C1675DCFAFA6331AF23D73934CE52544F4863/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646805159/968F84A126D57214C3BC8E095D9D8EB066ED8D6C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Graveyard. +GMNotes: '' +GUID: '191379' +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Unmarked Tomb +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 8.616818 + posY: 3.60493946 + posZ: 32.99475 + rotX: 359.920135 + rotY: 270.0 + rotZ: 0.0168765616 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 2-B A Thousand Shapes of Horror 1b4f86/Custom_Model_Bag Set-aside 5c62e6/Deck Endless Descents 3b7274.yaml b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 2-B A Thousand Shapes of Horror 1b4f86/Custom_Model_Bag Set-aside 5c62e6/Deck Endless Descents 3b7274.yaml new file mode 100644 index 000000000..990e0f9db --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 2-B A Thousand Shapes of Horror 1b4f86/Custom_Model_Bag Set-aside 5c62e6/Deck Endless Descents 3b7274.yaml @@ -0,0 +1,215 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 275247 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2752': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Curse. + GMNotes: '' + GUID: '320842' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Endless Descent + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -12.11563 + posY: 1.57654965 + posZ: 22.57214 + rotX: 359.9223 + rotY: 269.9998 + rotZ: 0.00272379071 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 275247 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2752': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Curse. + GMNotes: '' + GUID: d96187 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Endless Descent + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -11.5966587 + posY: 1.61750889 + posZ: 22.4513836 + rotX: 359.8392 + rotY: 270.000122 + rotZ: 359.993958 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 275247 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2752': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Curse. + GMNotes: '' + GUID: c83d2b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Endless Descent + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -11.5966759 + posY: 1.76557517 + posZ: 22.4512348 + rotX: 359.961121 + rotY: 270.0001 + rotZ: 0.048601944 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 275247 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2752': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Curse. + GMNotes: '' + GUID: 9032bd + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Endless Descent + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -11.5758009 + posY: 1.92683506 + posZ: 22.4471016 + rotX: 359.925842 + rotY: 270.000061 + rotZ: 0.06780703 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2752': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 275247 +- 275247 +- 275247 +- 275247 +Description: '' +GMNotes: '' +GUID: 3b7274 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Endless Descents +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 8.611559 + posY: 3.60121942 + posZ: 27.0014153 + rotX: 359.920135 + rotY: 270.000122 + rotZ: 0.0168767162 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 2-B A Thousand Shapes of Horror 1b4f86/Custom_Model_Bag Set-aside 5c62e6/Deck Mysterious Stairs 1fc4b6.yaml b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 2-B A Thousand Shapes of Horror 1b4f86/Custom_Model_Bag Set-aside 5c62e6/Deck Mysterious Stairs 1fc4b6.yaml new file mode 100644 index 000000000..4fe46d210 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 2-B A Thousand Shapes of Horror 1b4f86/Custom_Model_Bag Set-aside 5c62e6/Deck Mysterious Stairs 1fc4b6.yaml @@ -0,0 +1,301 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 275556 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2755': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493383646804247/225C1675DCFAFA6331AF23D73934CE52544F4863/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646805159/968F84A126D57214C3BC8E095D9D8EB066ED8D6C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Graveyard. + GMNotes: '' + GUID: 26c89b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Mysterious Stairs + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -12.6799107 + posY: 1.91551626 + posZ: 10.5176668 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 275558 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2755': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493383646804247/225C1675DCFAFA6331AF23D73934CE52544F4863/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646805159/968F84A126D57214C3BC8E095D9D8EB066ED8D6C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Graveyard. + GMNotes: '' + GUID: a99f05 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Mysterious Stairs + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -12.3656092 + posY: 1.91584527 + posZ: 13.1218157 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 275554 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2755': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493383646804247/225C1675DCFAFA6331AF23D73934CE52544F4863/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646805159/968F84A126D57214C3BC8E095D9D8EB066ED8D6C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Graveyard. + GMNotes: '' + GUID: df1a40 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Mysterious Stairs + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -12.5003881 + posY: 1.91458333 + posZ: 8.197955 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 275555 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2755': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493383646804247/225C1675DCFAFA6331AF23D73934CE52544F4863/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646805159/968F84A126D57214C3BC8E095D9D8EB066ED8D6C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Graveyard. + GMNotes: '' + GUID: '192407' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Mysterious Stairs + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -15.740551 + posY: 1.92056906 + posZ: 13.188508 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 275553 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2755': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493383646804247/225C1675DCFAFA6331AF23D73934CE52544F4863/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646805159/968F84A126D57214C3BC8E095D9D8EB066ED8D6C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Graveyard. + GMNotes: '' + GUID: e75e96 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Mysterious Stairs + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -15.9076233 + posY: 1.92003238 + posZ: 10.5757074 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 275557 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2755': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493383646804247/225C1675DCFAFA6331AF23D73934CE52544F4863/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646805159/968F84A126D57214C3BC8E095D9D8EB066ED8D6C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Graveyard. + GMNotes: '' + GUID: 4e02af + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Mysterious Stairs + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -15.9166851 + posY: 1.919305 + posZ: 8.061653 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2755': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493383646804247/225C1675DCFAFA6331AF23D73934CE52544F4863/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646805159/968F84A126D57214C3BC8E095D9D8EB066ED8D6C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 275556 +- 275558 +- 275554 +- 275555 +- 275553 +- 275557 +Description: '' +GMNotes: '' +GUID: 1fc4b6 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Mysterious Stairs +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 8.484105 + posY: 3.608694 + posZ: 20.0571175 + rotX: 359.919861 + rotY: 269.9999 + rotZ: 0.7678677 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 2-B A Thousand Shapes of Horror 1b4f86/Custom_Tile 156254.yaml b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 2-B A Thousand Shapes of Horror 1b4f86/Custom_Tile 156254.yaml new file mode 100644 index 000000000..cb52a9ae6 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 2-B A Thousand Shapes of Horror 1b4f86/Custom_Tile 156254.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: '156254' +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.6043 + posY: 1.61736929 + posZ: -4.17360067 + rotX: 0.0684501156 + rotY: 134.975891 + rotZ: 0.04453367 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 2-B A Thousand Shapes of Horror 1b4f86/Custom_Tile 23b0bf.yaml b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 2-B A Thousand Shapes of Horror 1b4f86/Custom_Tile 23b0bf.yaml new file mode 100644 index 000000000..8d1bafd69 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 2-B A Thousand Shapes of Horror 1b4f86/Custom_Tile 23b0bf.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 23b0bf +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.5581 + posY: 1.6282953 + posZ: 0.0012997624 + rotX: 0.079896085 + rotY: 90.00591 + rotZ: 359.9831 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 2-B A Thousand Shapes of Horror 1b4f86/Custom_Tile 27c4de.yaml b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 2-B A Thousand Shapes of Horror 1b4f86/Custom_Tile 27c4de.yaml new file mode 100644 index 000000000..dbd819a54 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 2-B A Thousand Shapes of Horror 1b4f86/Custom_Tile 27c4de.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 27c4de +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.63391447 + posZ: 3.86000085 + rotX: 0.0168562345 + rotY: 180.011185 + rotZ: 0.07994271 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 2-B A Thousand Shapes of Horror 1b4f86/Custom_Tile 491963.yaml b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 2-B A Thousand Shapes of Horror 1b4f86/Custom_Tile 491963.yaml new file mode 100644 index 000000000..c2e6a2636 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 2-B A Thousand Shapes of Horror 1b4f86/Custom_Tile 491963.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: '491963' +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.773098 + posY: 1.63165009 + posZ: -3.83 + rotX: 0.01685598 + rotY: 180.0113 + rotZ: 0.07992368 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 2-B A Thousand Shapes of Horror 1b4f86/Custom_Tile 4e1b15.yaml b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 2-B A Thousand Shapes of Horror 1b4f86/Custom_Tile 4e1b15.yaml new file mode 100644 index 000000000..41a99a111 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 2-B A Thousand Shapes of Horror 1b4f86/Custom_Tile 4e1b15.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 4e1b15 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.6171 + posY: 1.61964226 + posZ: 3.48500037 + rotX: 359.955444 + rotY: 224.992371 + rotZ: 0.0684094355 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 2-B A Thousand Shapes of Horror 1b4f86/Custom_Tile 7234af.yaml b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 2-B A Thousand Shapes of Horror 1b4f86/Custom_Tile 7234af.yaml new file mode 100644 index 000000000..387ba028d --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 2-B A Thousand Shapes of Horror 1b4f86/Custom_Tile 7234af.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 7234af +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.0476 + posY: 1.63734329 + posZ: -0.002500242 + rotX: 359.9201 + rotY: 270.0094 + rotZ: 0.0168870054 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 2-B A Thousand Shapes of Horror 1b4f86/Custom_Tile A Thousand Shapes of Horror b53295.ttslua b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 2-B A Thousand Shapes of Horror 1b4f86/Custom_Tile A Thousand Shapes of Horror b53295.ttslua new file mode 100644 index 000000000..ba00854d4 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 2-B A Thousand Shapes of Horror 1b4f86/Custom_Tile A Thousand Shapes of Horror b53295.ttslua @@ -0,0 +1,25 @@ +name = 'A Thousand Shapes of Horror' + +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 + +function standaloneClick() + Global.call('fillContainer', {object=self, key=name, mode='standalone'}) +end diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 2-B A Thousand Shapes of Horror 1b4f86/Custom_Tile A Thousand Shapes of Horror b53295.yaml b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 2-B A Thousand Shapes of Horror 1b4f86/Custom_Tile A Thousand Shapes of Horror b53295.yaml new file mode 100644 index 000000000..4cc540fc9 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 2-B A Thousand Shapes of Horror 1b4f86/Custom_Tile A Thousand Shapes of Horror b53295.yaml @@ -0,0 +1,42 @@ +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: http://cloud-3.steamusercontent.com/ugc/949588657194710961/D864BCCCC1C811EC7F0AED69D1C30C678D3D9FC9/ + ImageURL: http://cloud-3.steamusercontent.com/ugc/965354846165100486/3DC8FCEF364B30758B09EF96AF9458F2B8E64D56/ + WidthScale: 0.0 +Description: click to set chaos token difficulty +GMNotes: '' +GUID: b53295 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Tile A Thousand Shapes of Horror b53295.ttslua' +LuaScriptState: '' +Name: Custom_Tile +Nickname: A Thousand Shapes of Horror +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.70000672 + posY: 1.58238709 + posZ: -14.4877911 + rotX: 359.919739 + rotY: 270.030853 + rotZ: 0.01679463 + scaleX: 2.2 + scaleY: 1.0 + scaleZ: 2.2 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 2-B A Thousand Shapes of Horror 1b4f86/Deck Act Deck efa150.yaml b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 2-B A Thousand Shapes of Horror 1b4f86/Deck Act Deck efa150.yaml new file mode 100644 index 000000000..679021fe3 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 2-B A Thousand Shapes of Horror 1b4f86/Deck Act Deck efa150.yaml @@ -0,0 +1,129 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 275322 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2753': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/780749631103001215/3FF9DC51D7737267B68EC5D9CF17BE421681663B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780749631102998699/DA1D7C58FE177F46169558EF1D8301754A91A73A/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 2 + GMNotes: '' + GUID: 746ced + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Endless Stairs + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -9.619726 + posY: 1.57493758 + posZ: 28.272831 + rotX: 0.0170936286 + rotY: 180.000137 + rotZ: 0.07842919 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 275321 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2753': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/780749631103001215/3FF9DC51D7737267B68EC5D9CF17BE421681663B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780749631102998699/DA1D7C58FE177F46169558EF1D8301754A91A73A/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 1 + GMNotes: '' + GUID: e97dc1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Searching the Unnamable + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -9.467049 + posY: 1.73589075 + posZ: 28.517458 + rotX: 0.0136380466 + rotY: 180.000687 + rotZ: 0.07960794 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2753': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/780749631103001215/3FF9DC51D7737267B68EC5D9CF17BE421681663B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780749631102998699/DA1D7C58FE177F46169558EF1D8301754A91A73A/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 275322 +- 275321 +Description: '' +GMNotes: '' +GUID: efa150 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Act Deck +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.68859982 + posY: 1.66233373 + posZ: -5.048501 + rotX: 0.0168349929 + rotY: 180.000031 + rotZ: 0.0802581161 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 2-B A Thousand Shapes of Horror 1b4f86/Deck Agenda Deck 7ae3b9.yaml b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 2-B A Thousand Shapes of Horror 1b4f86/Deck Agenda Deck 7ae3b9.yaml new file mode 100644 index 000000000..18c5ab89f --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 2-B A Thousand Shapes of Horror 1b4f86/Deck Agenda Deck 7ae3b9.yaml @@ -0,0 +1,172 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 275320 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2753': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/780749631103001215/3FF9DC51D7737267B68EC5D9CF17BE421681663B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780749631102998699/DA1D7C58FE177F46169558EF1D8301754A91A73A/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 3 + GMNotes: '' + GUID: a4eaaf + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Dead with No Name + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -11.8563519 + posY: 1.5795089 + posZ: 33.3890038 + rotX: 0.017618062 + rotY: 180.000259 + rotZ: 0.07486935 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 275319 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2753': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/780749631103001215/3FF9DC51D7737267B68EC5D9CF17BE421681663B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780749631102998699/DA1D7C58FE177F46169558EF1D8301754A91A73A/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 2 + GMNotes: '' + GUID: 3453da + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Thing with No Name + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -11.5844479 + posY: 1.7345041 + posZ: 33.45294 + rotX: 0.0104196807 + rotY: 180.000076 + rotZ: 0.08082271 + 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: true + BackURL: http://cloud-3.steamusercontent.com/ugc/780749631103001215/3FF9DC51D7737267B68EC5D9CF17BE421681663B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780749631102998699/DA1D7C58FE177F46169558EF1D8301754A91A73A/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 1 + GMNotes: '' + GUID: cbc59e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The House with No Name + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -9.418122 + posY: 1.75459087 + posZ: 33.2724037 + rotX: 0.01772955 + rotY: 180.000046 + rotZ: 0.0797507539 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2753': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/780749631103001215/3FF9DC51D7737267B68EC5D9CF17BE421681663B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780749631102998699/DA1D7C58FE177F46169558EF1D8301754A91A73A/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 275320 +- 275319 +- 275318 +Description: '' +GMNotes: '' +GUID: 7ae3b9 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Agenda Deck +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.7246 + posY: 1.656641 + posZ: 0.3733003 + rotX: 0.0168233383 + rotY: 180.0083 + rotZ: 0.08026013 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 2-B A Thousand Shapes of Horror 1b4f86/Deck Encounter Deck 31cb94.yaml b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 2-B A Thousand Shapes of Horror 1b4f86/Deck Encounter Deck 31cb94.yaml new file mode 100644 index 000000000..875f56ab9 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 2-B A Thousand Shapes of Horror 1b4f86/Deck Encounter Deck 31cb94.yaml @@ -0,0 +1,1526 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 275251 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2752': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Scheme. + GMNotes: '' + GUID: '739826' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Secrets in the Attic + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -14.9603777 + posY: 1.57634091 + posZ: 7.84570074 + rotX: 359.920624 + rotY: 270.017517 + rotZ: 0.013562914 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 275251 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2752': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Scheme. + GMNotes: '' + GUID: 6a50f4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Secrets in the Attic + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -15.12976 + posY: 1.73257267 + posZ: 7.980752 + rotX: 359.9132 + rotY: 270.0175 + rotZ: 0.008490763 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 275249 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2752': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: 27c646 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Glowing Eyes + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -15.02547 + posY: 1.578273 + posZ: 14.0576086 + rotX: 359.920532 + rotY: 269.999817 + rotZ: 0.0143856676 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 275249 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2752': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: 1d7652 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Glowing Eyes + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -15.3295593 + posY: 1.73454165 + posZ: 14.483264 + rotX: 359.94635 + rotY: 269.999817 + rotZ: 359.969849 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 275248 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2752': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Curse. + GMNotes: '' + GUID: 12d9fc + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Indescribable Apparition + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -15.3074684 + posY: 1.57957518 + posZ: 17.19777 + rotX: 359.920654 + rotY: 269.999939 + rotZ: 0.0133923376 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 275248 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2752': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Curse. + GMNotes: '' + GUID: 5fef28 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Indescribable Apparition + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -15.4725485 + posY: 1.73632371 + posZ: 17.3586941 + rotX: 359.936462 + rotY: 269.999969 + rotZ: 359.993927 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 275250 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2752': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: 2e08b3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Deceptive Memories + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -15.0955372 + posY: 1.57731962 + posZ: 10.46031 + rotX: 359.9204 + rotY: 269.9995 + rotZ: 0.0149632422 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 275250 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2752': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: 46cd53 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Deceptive Memories + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -15.3176928 + posY: 1.73388684 + posZ: 10.4357672 + rotX: 359.9223 + rotY: 269.999573 + rotZ: 0.001617739 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12113 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '121': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Creature. + GMNotes: '' + GUID: 56e5db + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Swarm of Rats + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -11.4517775 + posY: 1.575241 + posZ: 21.0801334 + rotX: 359.92157 + rotY: 270.001923 + rotZ: 0.004971918 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12113 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '121': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Creature. + GMNotes: '' + GUID: 7381cd + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Swarm of Rats + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -11.58575 + posY: 1.72022974 + posZ: 20.799448 + rotX: 359.953278 + rotY: 270.006653 + rotZ: 0.01014355 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12113 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '121': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Creature. + GMNotes: '' + GUID: bbc9d1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Swarm of Rats + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -11.5702372 + posY: 1.73878384 + posZ: 20.6485977 + rotX: 359.94162 + rotY: 270.0008 + rotZ: 0.0141733931 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3628 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Obstacle. + GMNotes: '' + GUID: 1340ff + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Locked Door + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -11.6140881 + posY: 1.712928 + posZ: 20.2001 + rotX: 359.948181 + rotY: 270.004852 + rotZ: 0.0376651622 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3628 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Obstacle. + GMNotes: '' + GUID: 9449d7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Locked Door + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -11.7156582 + posY: 1.72415352 + posZ: 20.7204876 + rotX: 359.942749 + rotY: 270.026245 + rotZ: -0.000404508784 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12121 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '121': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: fb311c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Crypt Chill + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -11.5961084 + posY: 1.71711171 + posZ: 20.4337425 + rotX: 359.938843 + rotY: 269.900665 + rotZ: 0.100706615 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12121 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '121': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: b78c3b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Crypt Chill + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -11.6083765 + posY: 1.72195673 + posZ: 20.8986073 + rotX: 359.942566 + rotY: 269.9427 + rotZ: 0.0436819345 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12122 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '121': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: 03a265 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Obscuring Fog + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -11.6541824 + posY: 1.732331 + posZ: 20.276 + rotX: 359.9395 + rotY: 269.858826 + rotZ: 0.142952845 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12122 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '121': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: '356046' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Obscuring Fog + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -11.530736 + posY: 1.69511282 + posZ: 20.1305161 + rotX: 359.9505 + rotY: 270.0213 + rotZ: 0.157244548 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12114 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '121': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humaniod. Monster. Ghoul. + GMNotes: '' + GUID: 3e53b0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ghoul Minion + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -11.4897223 + posY: 1.69888628 + posZ: 21.1251163 + rotX: 359.9423 + rotY: 269.9608 + rotZ: 0.0259498153 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12114 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '121': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humaniod. Monster. Ghoul. + GMNotes: '' + GUID: 4218a0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ghoul Minion + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -11.5992 + posY: 1.71739638 + posZ: 20.7397442 + rotX: 359.8798 + rotY: 269.995026 + rotZ: 359.951 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12114 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '121': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humaniod. Monster. Ghoul. + GMNotes: '' + GUID: d84de0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ghoul Minion + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -11.6298513 + posY: 1.72682035 + posZ: 20.6867676 + rotX: 359.940338 + rotY: 269.9592 + rotZ: 0.0350133 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12115 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '121': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humaniod. Monster. Ghoul. + GMNotes: '' + GUID: a65f30 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ravenous Ghoul + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -11.6266212 + posY: 1.72198939 + posZ: 20.3280239 + rotX: 359.946564 + rotY: 269.892975 + rotZ: 0.07295944 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12116 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '121': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: 9c193f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Grasping Hands + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -11.6090527 + posY: 1.73291063 + posZ: 21.0632744 + rotX: 359.9417 + rotY: 269.943726 + rotZ: 0.0446046665 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12116 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '121': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: 6a13ae + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Grasping Hands + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -11.6609364 + posY: 1.74174762 + posZ: 20.4915771 + rotX: 359.950653 + rotY: 269.88446 + rotZ: 0.0472299457 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12116 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '121': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: d60f3b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Grasping Hands + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -11.5881271 + posY: 1.7507956 + posZ: 20.53348 + rotX: 359.947235 + rotY: 269.86084 + rotZ: 0.101755776 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 278323 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2783': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869055249784/A97DBA181DC89BC55B4626BD1F0F9AE71400114D/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: 6fdcaf + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Night Terrors + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -11.6131945 + posY: 1.77155674 + posZ: 20.87458 + rotX: 359.935364 + rotY: 270.0009 + rotZ: 0.0129234325 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 278323 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2783': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869055249784/A97DBA181DC89BC55B4626BD1F0F9AE71400114D/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: 31f1b5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Night Terrors + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -11.6527414 + posY: 1.78090727 + posZ: 20.5912743 + rotX: 359.934845 + rotY: 269.949158 + rotZ: 0.04251869 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 278325 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2783': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869055249784/A97DBA181DC89BC55B4626BD1F0F9AE71400114D/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Power. + GMNotes: '' + GUID: dc5bae + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Threads of Reality + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -11.7054024 + posY: 1.7908963 + posZ: 20.7047 + rotX: 359.936249 + rotY: 270.000977 + rotZ: 0.0134097338 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 278325 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2783': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869055249784/A97DBA181DC89BC55B4626BD1F0F9AE71400114D/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Power. + GMNotes: '' + GUID: b8c436 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Threads of Reality + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -11.5602226 + posY: 1.80053318 + posZ: 21.0539265 + rotX: 359.9337 + rotY: 269.9926 + rotZ: 0.0163983181 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 278324 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2783': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869055249784/A97DBA181DC89BC55B4626BD1F0F9AE71400114D/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: 8cfcad + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Glimpse of the Underworld + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -11.6976137 + posY: 1.81009269 + posZ: 20.5534668 + rotX: 359.940918 + rotY: 270.005249 + rotZ: 0.0128135374 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 278324 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2783': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869055249784/A97DBA181DC89BC55B4626BD1F0F9AE71400114D/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: fc9e13 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Glimpse of the Underworld + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -11.7020388 + posY: 1.82007229 + posZ: 20.996582 + rotX: 359.941345 + rotY: 270.006226 + rotZ: 0.0102622425 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 278316 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2783': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869055249784/A97DBA181DC89BC55B4626BD1F0F9AE71400114D/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Monster. Gug. + GMNotes: '' + GUID: 4c2d5a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Hunting Ghast + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -11.7719727 + posY: 1.82953036 + posZ: 20.61382 + rotX: 359.936462 + rotY: 269.9931 + rotZ: 0.0183695164 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 278316 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2783': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869055249784/A97DBA181DC89BC55B4626BD1F0F9AE71400114D/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Monster. Gug. + GMNotes: '' + GUID: 9fb152 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Hunting Ghast + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -11.5632782 + posY: 1.83972514 + posZ: 21.61645 + rotX: 359.9415 + rotY: 270.0031 + rotZ: 0.000682659 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 278316 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2783': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869055249784/A97DBA181DC89BC55B4626BD1F0F9AE71400114D/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Monster. Gug. + GMNotes: '' + GUID: 99845e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Hunting Ghast + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -11.6814 + posY: 1.84998751 + posZ: 21.44808 + rotX: 359.938751 + rotY: 269.999756 + rotZ: 0.0092032915 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 278317 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2783': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869055249784/A97DBA181DC89BC55B4626BD1F0F9AE71400114D/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Gug. + GMNotes: '' + GUID: '605181' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Lumbering Gug + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -11.49773 + posY: 1.87408638 + posZ: 21.247366 + rotX: 359.920563 + rotY: 269.996155 + rotZ: 0.0162308048 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '121': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '2752': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '2783': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869055249784/A97DBA181DC89BC55B4626BD1F0F9AE71400114D/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 275251 +- 275251 +- 275249 +- 275249 +- 275248 +- 275248 +- 275250 +- 275250 +- 12113 +- 12113 +- 12113 +- 3628 +- 3628 +- 12121 +- 12121 +- 12122 +- 12122 +- 12114 +- 12114 +- 12114 +- 12115 +- 12116 +- 12116 +- 12116 +- 278323 +- 278323 +- 278325 +- 278325 +- 278324 +- 278324 +- 278316 +- 278316 +- 278316 +- 278317 +Description: '' +GMNotes: '' +GUID: 31cb94 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Encounter Deck +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.92770028 + posY: 1.79302788 + posZ: 5.75720072 + rotX: 359.919739 + rotY: 269.999969 + rotZ: 180.016815 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 3-A Dark Side of the Moon 0fad66.ttslua b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 3-A Dark Side of the Moon 0fad66.ttslua new file mode 100644 index 000000000..5534586ac --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 3-A Dark Side of the Moon 0fad66.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.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 \ No newline at end of file diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 3-A Dark Side of the Moon 0fad66.yaml b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 3-A Dark Side of the Moon 0fad66.yaml new file mode 100644 index 000000000..136a98822 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 3-A Dark Side of the Moon 0fad66.yaml @@ -0,0 +1,89 @@ +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 3-A Dark Side of the Moon 0fad66/Custom_Tile Dark Side + of the Moon aa8d82.yaml' +- !include 'Custom_Model_Bag 3-A Dark Side of the Moon 0fad66/Card Scenario 5c8909.yaml' +- !include 'Custom_Model_Bag 3-A Dark Side of the Moon 0fad66/Deck 3a751b.yaml' +- !include 'Custom_Model_Bag 3-A Dark Side of the Moon 0fad66/Deck bf5bd8.yaml' +- !include 'Custom_Model_Bag 3-A Dark Side of the Moon 0fad66/Deck Encounter Deck + 3c1955.yaml' +- !include 'Custom_Model_Bag 3-A Dark Side of the Moon 0fad66/Custom_Model_Bag Set-aside + a45247.yaml' +- !include 'Custom_Model_Bag 3-A Dark Side of the Moon 0fad66/Card The Dark Crater + 99c449.yaml' +- !include 'Custom_Model_Bag 3-A Dark Side of the Moon 0fad66/Custom_Tile 5caa00.yaml' +- !include 'Custom_Model_Bag 3-A Dark Side of the Moon 0fad66/Custom_Tile b3cb48.yaml' +- !include 'Custom_Model_Bag 3-A Dark Side of the Moon 0fad66/Custom_Tile 88a108.yaml' +- !include 'Custom_Model_Bag 3-A Dark Side of the Moon 0fad66/Card Moon-Forest cdf29c.yaml' +- !include 'Custom_Model_Bag 3-A Dark Side of the Moon 0fad66/Custom_Tile 7234af.yaml' +- !include 'Custom_Model_Bag 3-A Dark Side of the Moon 0fad66/Card Temple of the Moon + Lizard cb15b1.yaml' +- !include 'Custom_Model_Bag 3-A Dark Side of the Moon 0fad66/Custom_Tile d08fc6.yaml' +- !include 'Custom_Model_Bag 3-A Dark Side of the Moon 0fad66/Card City of the Moon-Beasts + 4d7bc7.yaml' +- !include 'Custom_Model_Bag 3-A Dark Side of the Moon 0fad66/Custom_Tile b6f2f1.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/778493962298058421/0B46C836BDF38F4DA05812D232294D51B421D951/ + MaterialIndex: 3 + MeshURL: https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj + NormalURL: '' + TypeIndex: 6 +Description: The Dream Eaters +GMNotes: '' +GUID: 0fad66 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Model_Bag 3-A Dark Side of the Moon 0fad66.ttslua' +LuaScriptState: '{"ml":{"3a751b":{"lock":false,"pos":{"x":-2.6764,"y":1.6535,"z":-5.0485},"rot":{"x":0.0169,"y":179.9707,"z":0.0802}},"3c1955":{"lock":false,"pos":{"x":-3.9276,"y":1.7611,"z":5.7572},"rot":{"x":359.9197,"y":270,"z":180.0168}},"4d7bc7":{"lock":false,"pos":{"x":-30.2243,"y":1.6976,"z":7.57},"rot":{"x":359.9201,"y":270.0107,"z":0.0169}},"5c8909":{"lock":false,"pos":{"x":-3.956,"y":1.6556,"z":-10.4412},"rot":{"x":359.9197,"y":269.9868,"z":0.0169}},"5caa00":{"lock":false,"pos":{"x":-30.2242,"y":1.6225,"z":-3.83},"rot":{"x":359.9836,"y":0.3334,"z":359.92}},"7234af":{"lock":false,"pos":{"x":-36.7732,"y":1.6339,"z":3.86},"rot":{"x":0.0169,"y":179.9965,"z":0.08}},"88a108":{"lock":false,"pos":{"x":-33.5996,"y":1.6283,"z":-0.0355},"rot":{"x":0.0799,"y":89.9971,"z":359.9831}},"99c449":{"lock":false,"pos":{"x":-30.2242,"y":1.6954,"z":-0.03},"rot":{"x":359.9201,"y":270.0106,"z":0.0169}},"a45247":{"lock":false,"pos":{"x":1.6966,"y":1.5583,"z":14.2787},"rot":{"x":359.9551,"y":224.9979,"z":0.0687}},"aa8d82":{"lock":false,"pos":{"x":-3.6434,"y":1.5823,"z":-14.4516},"rot":{"x":359.9197,"y":270.0306,"z":0.0168}},"b3cb48":{"lock":false,"pos":{"x":-34.1049,"y":1.628,"z":-3.5086},"rot":{"x":359.9316,"y":315.0172,"z":359.9554}},"b6f2f1":{"lock":false,"pos":{"x":-30.2242,"y":1.6248,"z":3.86},"rot":{"x":0.0169,"y":179.9965,"z":0.0799}},"bf5bd8":{"lock":false,"pos":{"x":-2.7248,"y":1.6566,"z":0.3733},"rot":{"x":0.0168,"y":180.0196,"z":0.0803}},"c43d3c":{"lock":false,"pos":{"x":-1.201,"y":1.55,"z":-39.628},"rot":{"x":0,"y":270.0004,"z":0}},"cb15b1":{"lock":false,"pos":{"x":-36.7731,"y":1.7067,"z":7.57},"rot":{"x":359.9201,"y":270.0106,"z":0.0169}},"cdf29c":{"lock":false,"pos":{"x":-36.7732,"y":1.7045,"z":-0.03},"rot":{"x":359.9201,"y":270.0106,"z":0.0169}},"d08fc6":{"lock":false,"pos":{"x":-33.7733,"y":1.6308,"z":7.395},"rot":{"x":0.0799,"y":89.9971,"z":359.9831}}}}' +MaterialIndex: -1 +MeshIndex: -1 +Name: Custom_Model_Bag +Nickname: '3-A: Dark Side of the Moon' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 12.3525715 + posY: 1.463206 + posZ: -3.75443864 + rotX: 359.920135 + rotY: 270.008545 + rotZ: 0.0168621354 + scaleX: 2.21 + scaleY: 0.46 + scaleZ: 2.42 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 3-A Dark Side of the Moon 0fad66/Card City of the Moon-Beasts 4d7bc7.yaml b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 3-A Dark Side of the Moon 0fad66/Card City of the Moon-Beasts 4d7bc7.yaml new file mode 100644 index 000000000..79f6917cd --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 3-A Dark Side of the Moon 0fad66/Card City of the Moon-Beasts 4d7bc7.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 448302 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '4483': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/780749631103441607/63F6472BFA33AA6C487997A0A45EEBB4C27336C8/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780749631103441052/FC2DD250B4173C28B245388F80C6D9ABA3B7D2E7/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Surface. City. +GMNotes: '' +GUID: 4d7bc7 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: City of the Moon-Beasts +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -30.2243 + posY: 1.69758868 + posZ: 7.56999969 + rotX: 359.9201 + rotY: 270.010651 + rotZ: 0.0168614686 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 3-A Dark Side of the Moon 0fad66/Card Moon-Forest cdf29c.yaml b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 3-A Dark Side of the Moon 0fad66/Card Moon-Forest cdf29c.yaml new file mode 100644 index 000000000..1538506b1 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 3-A Dark Side of the Moon 0fad66/Card Moon-Forest cdf29c.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 448305 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '4483': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/780749631103441607/63F6472BFA33AA6C487997A0A45EEBB4C27336C8/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780749631103441052/FC2DD250B4173C28B245388F80C6D9ABA3B7D2E7/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Surface. Woods. +GMNotes: '' +GUID: cdf29c +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Moon-Forest +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -36.7732 + posY: 1.70448279 + posZ: -0.0300004911 + rotX: 359.9201 + rotY: 270.010559 + rotZ: 0.0168616474 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 3-A Dark Side of the Moon 0fad66/Card Scenario 5c8909.yaml b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 3-A Dark Side of the Moon 0fad66/Card Scenario 5c8909.yaml new file mode 100644 index 000000000..1ef264727 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 3-A Dark Side of the Moon 0fad66/Card Scenario 5c8909.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 448300 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '4483': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/780749631103441607/63F6472BFA33AA6C487997A0A45EEBB4C27336C8/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780749631103441052/FC2DD250B4173C28B245388F80C6D9ABA3B7D2E7/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Dark Side of the Moon +GMNotes: '' +GUID: 5c8909 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Scenario +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.956 + posY: 1.65564811 + posZ: -10.4412012 + rotX: 359.919739 + rotY: 269.986755 + rotZ: 0.01685969 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 3-A Dark Side of the Moon 0fad66/Card Temple of the Moon Lizard cb15b1.yaml b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 3-A Dark Side of the Moon 0fad66/Card Temple of the Moon Lizard cb15b1.yaml new file mode 100644 index 000000000..dafeea175 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 3-A Dark Side of the Moon 0fad66/Card Temple of the Moon Lizard cb15b1.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 448304 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '4483': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/780749631103441607/63F6472BFA33AA6C487997A0A45EEBB4C27336C8/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780749631103441052/FC2DD250B4173C28B245388F80C6D9ABA3B7D2E7/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Surface. +GMNotes: '' +GUID: cb15b1 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Temple of the Moon Lizard +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -36.7731 + posY: 1.70672059 + posZ: 7.57 + rotX: 359.9201 + rotY: 270.0106 + rotZ: 0.0168614816 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 3-A Dark Side of the Moon 0fad66/Card The Dark Crater 99c449.yaml b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 3-A Dark Side of the Moon 0fad66/Card The Dark Crater 99c449.yaml new file mode 100644 index 000000000..b4fa64feb --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 3-A Dark Side of the Moon 0fad66/Card The Dark Crater 99c449.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 448303 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '4483': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/780749631103441607/63F6472BFA33AA6C487997A0A45EEBB4C27336C8/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780749631103441052/FC2DD250B4173C28B245388F80C6D9ABA3B7D2E7/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Surface. +GMNotes: '' +GUID: 99c449 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: The Dark Crater +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -30.2242 + posY: 1.69535065 + posZ: -0.0300002415 + rotX: 359.9201 + rotY: 270.010559 + rotZ: 0.0168616939 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 3-A Dark Side of the Moon 0fad66/Custom_Model_Bag Set-aside a45247.yaml b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 3-A Dark Side of the Moon 0fad66/Custom_Model_Bag Set-aside a45247.yaml new file mode 100644 index 000000000..17d0cf8e4 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 3-A Dark Side of the Moon 0fad66/Custom_Model_Bag Set-aside a45247.yaml @@ -0,0 +1,65 @@ +Autoraise: true +ColorDiffuse: + b: 0.02148666 + g: 0.00100758043 + r: 0.02148666 +ContainedObjects: +- !include 'Custom_Model_Bag Set-aside a45247/Card The Captain 035f54.yaml' +- !include 'Custom_Model_Bag Set-aside a45247/Card Virgil Gray 5dbc74.yaml' +- !include 'Custom_Model_Bag Set-aside a45247/Card False Awakening 0de10c.yaml' +- !include 'Custom_Model_Bag Set-aside a45247/Card Moon Lizard db6ad1.yaml' +- !include 'Custom_Model_Bag Set-aside a45247/Card Light Side of the Moon e4d13a.yaml' +- !include 'Custom_Model_Bag Set-aside a45247/Card Moon-Beast Galley fdaf9a.yaml' +- !include 'Custom_Model_Bag Set-aside a45247/Card The White Ship 537a2f.yaml' +- !include 'Custom_Model_Bag Set-aside a45247/Card The Black Core c283c3.yaml' +- !include 'Custom_Model_Bag Set-aside a45247/Card Caverns Beneath the Moon 4b517e.yaml' +- !include 'Custom_Model_Bag Set-aside a45247/Card Caverns Beneath the Moon d69f76.yaml' +CustomMesh: + CastShadows: true + ColliderURL: '' + Convex: true + DiffuseURL: http://i.imgur.com/yVhOLYs.jpg + MaterialIndex: 1 + MeshURL: https://paste.ee/r/ylQzQ + NormalURL: http://i.imgur.com/f1ogHo6.jpg + TypeIndex: 6 +Description: '' +GMNotes: '' +GUID: a45247 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +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.69660068 + posY: 1.55831635 + posZ: 14.2787027 + rotX: 359.955139 + rotY: 224.997864 + rotZ: 0.06867311 + scaleX: 2.0 + scaleY: 2.0 + scaleZ: 2.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 3-A Dark Side of the Moon 0fad66/Custom_Model_Bag Set-aside a45247/Card Caverns Beneath the Moon 4b517e.yaml b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 3-A Dark Side of the Moon 0fad66/Custom_Model_Bag Set-aside a45247/Card Caverns Beneath the Moon 4b517e.yaml new file mode 100644 index 000000000..4ab310419 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 3-A Dark Side of the Moon 0fad66/Custom_Model_Bag Set-aside a45247/Card Caverns Beneath the Moon 4b517e.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 448308 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '4483': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/780749631103441607/63F6472BFA33AA6C487997A0A45EEBB4C27336C8/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780749631103441052/FC2DD250B4173C28B245388F80C6D9ABA3B7D2E7/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Light Side +GMNotes: '' +GUID: 4b517e +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Caverns Beneath the Moon +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 8.679053 + posY: 3.25846839 + posZ: -0.07334685 + rotX: 359.920135 + rotY: 269.982117 + rotZ: 0.01690388 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 3-A Dark Side of the Moon 0fad66/Custom_Model_Bag Set-aside a45247/Card Caverns Beneath the Moon d69f76.yaml b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 3-A Dark Side of the Moon 0fad66/Custom_Model_Bag Set-aside a45247/Card Caverns Beneath the Moon d69f76.yaml new file mode 100644 index 000000000..c2951d03a --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 3-A Dark Side of the Moon 0fad66/Custom_Model_Bag Set-aside a45247/Card Caverns Beneath the Moon d69f76.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 448306 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '4483': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/780749631103441607/63F6472BFA33AA6C487997A0A45EEBB4C27336C8/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780749631103441052/FC2DD250B4173C28B245388F80C6D9ABA3B7D2E7/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Dark Side +GMNotes: '' +GUID: d69f76 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Caverns Beneath the Moon +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.7771444 + posY: 3.02035761 + posZ: 8.967343 + rotX: 0.0208214726 + rotY: 269.959259 + rotZ: 0.0167554673 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 3-A Dark Side of the Moon 0fad66/Custom_Model_Bag Set-aside a45247/Card False Awakening 0de10c.yaml b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 3-A Dark Side of the Moon 0fad66/Custom_Model_Bag Set-aside a45247/Card False Awakening 0de10c.yaml new file mode 100644 index 000000000..4e8f74ff3 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 3-A Dark Side of the Moon 0fad66/Custom_Model_Bag Set-aside a45247/Card False Awakening 0de10c.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 448609 +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/780749631103449151/FFAADF06C9BF9D1F4F3FE22D45CEBBB15D9B58CF/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: Curse. +GMNotes: '' +GUID: 0de10c +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: False Awakening +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -5.63004351 + posY: 3.01442623 + posZ: 9.05983448 + rotX: 0.0208127648 + rotY: 0.0269944351 + rotZ: 0.0167658143 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 3-A Dark Side of the Moon 0fad66/Custom_Model_Bag Set-aside a45247/Card Light Side of the Moon e4d13a.yaml b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 3-A Dark Side of the Moon 0fad66/Custom_Model_Bag Set-aside a45247/Card Light Side of the Moon e4d13a.yaml new file mode 100644 index 000000000..e9315b8c7 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 3-A Dark Side of the Moon 0fad66/Custom_Model_Bag Set-aside a45247/Card Light Side of the Moon e4d13a.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 448309 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '4483': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/780749631103441607/63F6472BFA33AA6C487997A0A45EEBB4C27336C8/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780749631103441052/FC2DD250B4173C28B245388F80C6D9ABA3B7D2E7/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Surface. Ruins. +GMNotes: '' +GUID: e4d13a +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Light Side of the Moon +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 9.642976 + posY: 3.258013 + posZ: 4.29473352 + rotX: -1.58084658e-05 + rotY: 269.986725 + rotZ: -1.04519777e-05 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 3-A Dark Side of the Moon 0fad66/Custom_Model_Bag Set-aside a45247/Card Moon Lizard db6ad1.yaml b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 3-A Dark Side of the Moon 0fad66/Custom_Model_Bag Set-aside a45247/Card Moon Lizard db6ad1.yaml new file mode 100644 index 000000000..6db4d5d3a --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 3-A Dark Side of the Moon 0fad66/Custom_Model_Bag Set-aside a45247/Card Moon Lizard db6ad1.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 448402 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '4484': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780749631103449151/FFAADF06C9BF9D1F4F3FE22D45CEBBB15D9B58CF/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: Monster. Elite. +GMNotes: '' +GUID: db6ad1 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Moon Lizard +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 0.3857994 + posY: 3.01677179 + posZ: 9.609353 + rotX: 0.0208133329 + rotY: 269.986847 + rotZ: 0.0167665631 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 3-A Dark Side of the Moon 0fad66/Custom_Model_Bag Set-aside a45247/Card Moon-Beast Galley fdaf9a.yaml b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 3-A Dark Side of the Moon 0fad66/Custom_Model_Bag Set-aside a45247/Card Moon-Beast Galley fdaf9a.yaml new file mode 100644 index 000000000..1a729cd98 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 3-A Dark Side of the Moon 0fad66/Custom_Model_Bag Set-aside a45247/Card Moon-Beast Galley fdaf9a.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 448301 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '4483': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/780749631103441607/63F6472BFA33AA6C487997A0A45EEBB4C27336C8/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780749631103441052/FC2DD250B4173C28B245388F80C6D9ABA3B7D2E7/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Ship. +GMNotes: '' +GUID: fdaf9a +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Moon-Beast Galley +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 3.58776188 + posY: 3.26561165 + posZ: 0.08030915 + rotX: 359.920135 + rotY: 269.986633 + rotZ: 0.0168963019 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 3-A Dark Side of the Moon 0fad66/Custom_Model_Bag Set-aside a45247/Card The Black Core c283c3.yaml b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 3-A Dark Side of the Moon 0fad66/Custom_Model_Bag Set-aside a45247/Card The Black Core c283c3.yaml new file mode 100644 index 000000000..5375609a8 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 3-A Dark Side of the Moon 0fad66/Custom_Model_Bag Set-aside a45247/Card The Black Core c283c3.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 448307 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '4483': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/780749631103441607/63F6472BFA33AA6C487997A0A45EEBB4C27336C8/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780749631103441052/FC2DD250B4173C28B245388F80C6D9ABA3B7D2E7/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Cave. +GMNotes: '' +GUID: c283c3 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: The Black Core +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 4.631258 + posY: 3.018292 + posZ: 9.535302 + rotX: 0.0208228566 + rotY: 269.9542 + rotZ: 0.0167549569 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 3-A Dark Side of the Moon 0fad66/Custom_Model_Bag Set-aside a45247/Card The Captain 035f54.yaml b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 3-A Dark Side of the Moon 0fad66/Custom_Model_Bag Set-aside a45247/Card The Captain 035f54.yaml new file mode 100644 index 000000000..184abeb3f --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 3-A Dark Side of the Moon 0fad66/Custom_Model_Bag Set-aside a45247/Card The Captain 035f54.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 448401 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '4484': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780749631103449151/FFAADF06C9BF9D1F4F3FE22D45CEBBB15D9B58CF/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: Dreamlands Navigator +GMNotes: '' +GUID: 035f54 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: The Captain +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -1.00175333 + posY: 3.272036 + posZ: 0.170168161 + rotX: 359.920135 + rotY: 269.986633 + rotZ: 0.01689765 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 3-A Dark Side of the Moon 0fad66/Custom_Model_Bag Set-aside a45247/Card The White Ship 537a2f.yaml b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 3-A Dark Side of the Moon 0fad66/Custom_Model_Bag Set-aside a45247/Card The White Ship 537a2f.yaml new file mode 100644 index 000000000..cd9071b75 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 3-A Dark Side of the Moon 0fad66/Custom_Model_Bag Set-aside a45247/Card The White Ship 537a2f.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 448310 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '4483': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/780749631103441607/63F6472BFA33AA6C487997A0A45EEBB4C27336C8/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780749631103441052/FC2DD250B4173C28B245388F80C6D9ABA3B7D2E7/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Ship. +GMNotes: '' +GUID: 537a2f +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: The White Ship +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 4.06642342 + posY: 3.25801086 + posZ: 4.579455 + rotX: 2.4886207e-05 + rotY: 269.970947 + rotZ: -5.99862033e-05 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 3-A Dark Side of the Moon 0fad66/Custom_Model_Bag Set-aside a45247/Card Virgil Gray 5dbc74.yaml b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 3-A Dark Side of the Moon 0fad66/Custom_Model_Bag Set-aside a45247/Card Virgil Gray 5dbc74.yaml new file mode 100644 index 000000000..111618662 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 3-A Dark Side of the Moon 0fad66/Custom_Model_Bag Set-aside a45247/Card Virgil Gray 5dbc74.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 448400 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '4484': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780749631103449151/FFAADF06C9BF9D1F4F3FE22D45CEBBB15D9B58CF/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: Truly Inspired +GMNotes: '' +GUID: 5dbc74 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Virgil Gray +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -0.140059009 + posY: 3.25801015 + posZ: 4.66106653 + rotX: 2.57129323e-05 + rotY: 269.9862 + rotZ: -0.000100568504 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 3-A Dark Side of the Moon 0fad66/Custom_Tile 5caa00.yaml b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 3-A Dark Side of the Moon 0fad66/Custom_Tile 5caa00.yaml new file mode 100644 index 000000000..05e148c39 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 3-A Dark Side of the Moon 0fad66/Custom_Tile 5caa00.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 5caa00 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.82999945 + rotX: 359.983582 + rotY: 0.3333816 + rotZ: 359.919952 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 3-A Dark Side of the Moon 0fad66/Custom_Tile 7234af.yaml b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 3-A Dark Side of the Moon 0fad66/Custom_Tile 7234af.yaml new file mode 100644 index 000000000..871453a5e --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 3-A Dark Side of the Moon 0fad66/Custom_Tile 7234af.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 7234af +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.63391447 + posZ: 3.86000085 + rotX: 0.0168767665 + rotY: 179.99649 + rotZ: 0.07995189 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 3-A Dark Side of the Moon 0fad66/Custom_Tile 88a108.yaml b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 3-A Dark Side of the Moon 0fad66/Custom_Tile 88a108.yaml new file mode 100644 index 000000000..1e6506018 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 3-A Dark Side of the Moon 0fad66/Custom_Tile 88a108.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 88a108 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.5996 + posY: 1.62834215 + posZ: -0.03550024 + rotX: 0.07989348 + rotY: 89.99708 + rotZ: 359.9831 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 3-A Dark Side of the Moon 0fad66/Custom_Tile b3cb48.yaml b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 3-A Dark Side of the Moon 0fad66/Custom_Tile b3cb48.yaml new file mode 100644 index 000000000..740dd168a --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 3-A Dark Side of the Moon 0fad66/Custom_Tile b3cb48.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: b3cb48 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: -34.1049 + posY: 1.62802434 + posZ: -3.50860023 + rotX: 359.93158 + rotY: 315.0172 + rotZ: 359.9554 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 3-A Dark Side of the Moon 0fad66/Custom_Tile b6f2f1.yaml b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 3-A Dark Side of the Moon 0fad66/Custom_Tile b6f2f1.yaml new file mode 100644 index 000000000..e158e9b99 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 3-A Dark Side of the Moon 0fad66/Custom_Tile b6f2f1.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: b6f2f1 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.62478244 + posZ: 3.86000037 + rotX: 0.0168767627 + rotY: 179.99649 + rotZ: 0.07993867 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 3-A Dark Side of the Moon 0fad66/Custom_Tile d08fc6.yaml b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 3-A Dark Side of the Moon 0fad66/Custom_Tile d08fc6.yaml new file mode 100644 index 000000000..9f96ee41b --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 3-A Dark Side of the Moon 0fad66/Custom_Tile d08fc6.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: d08fc6 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.7733 + posY: 1.63077247 + posZ: 7.395001 + rotX: 0.0798935443 + rotY: 89.99713 + rotZ: 359.9831 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 3-A Dark Side of the Moon 0fad66/Custom_Tile Dark Side of the Moon aa8d82.ttslua b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 3-A Dark Side of the Moon 0fad66/Custom_Tile Dark Side of the Moon aa8d82.ttslua new file mode 100644 index 000000000..e562e4cb3 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 3-A Dark Side of the Moon 0fad66/Custom_Tile Dark Side of the Moon aa8d82.ttslua @@ -0,0 +1,25 @@ +name = 'Dark Side of the Moon' + +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 + +function standaloneClick() + Global.call('fillContainer', {object=self, key=name, mode='standalone'}) +end diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 3-A Dark Side of the Moon 0fad66/Custom_Tile Dark Side of the Moon aa8d82.yaml b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 3-A Dark Side of the Moon 0fad66/Custom_Tile Dark Side of the Moon aa8d82.yaml new file mode 100644 index 000000000..5c4a0cbf7 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 3-A Dark Side of the Moon 0fad66/Custom_Tile Dark Side of the Moon aa8d82.yaml @@ -0,0 +1,42 @@ +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: http://cloud-3.steamusercontent.com/ugc/949588657194710961/D864BCCCC1C811EC7F0AED69D1C30C678D3D9FC9/ + ImageURL: http://cloud-3.steamusercontent.com/ugc/965354846165100486/3DC8FCEF364B30758B09EF96AF9458F2B8E64D56/ + WidthScale: 0.0 +Description: click to set chaos token difficulty +GMNotes: '' +GUID: aa8d82 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Tile Dark Side of the Moon aa8d82.ttslua' +LuaScriptState: '' +Name: Custom_Tile +Nickname: Dark Side of the Moon +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.64344144 + posY: 1.58231843 + posZ: -14.4515753 + rotX: 359.919739 + rotY: 270.030579 + rotZ: 0.0167951509 + scaleX: 2.2 + scaleY: 1.0 + scaleZ: 2.2 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 3-A Dark Side of the Moon 0fad66/Deck 3a751b.yaml b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 3-A Dark Side of the Moon 0fad66/Deck 3a751b.yaml new file mode 100644 index 000000000..319c62e5f --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 3-A Dark Side of the Moon 0fad66/Deck 3a751b.yaml @@ -0,0 +1,215 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 448229 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4482': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/780749631103001215/3FF9DC51D7737267B68EC5D9CF17BE421681663B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780749631102998699/DA1D7C58FE177F46169558EF1D8301754A91A73A/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 4 + GMNotes: '' + GUID: 04d820 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Unexpected Rescue + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -11.0816126 + posY: 1.66499209 + posZ: -12.4067783 + rotX: 0.0171953663 + rotY: 179.926956 + rotZ: 0.07844931 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 448228 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4482': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/780749631103001215/3FF9DC51D7737267B68EC5D9CF17BE421681663B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780749631102998699/DA1D7C58FE177F46169558EF1D8301754A91A73A/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 3 + GMNotes: '' + GUID: '453173' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Moon's Core + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -10.9915428 + posY: 1.826066 + posZ: -11.9397945 + rotX: 0.0120061105 + rotY: 180.016312 + rotZ: 0.08003286 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 448227 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4482': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/780749631103001215/3FF9DC51D7737267B68EC5D9CF17BE421681663B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780749631102998699/DA1D7C58FE177F46169558EF1D8301754A91A73A/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 2 + GMNotes: '' + GUID: '950287' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Exploring the Moon + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -11.2566652 + posY: 1.84363711 + posZ: -12.45118 + rotX: 0.0164827611 + rotY: 180.00737 + rotZ: 0.07951248 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 448226 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4482': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/780749631103001215/3FF9DC51D7737267B68EC5D9CF17BE421681663B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780749631102998699/DA1D7C58FE177F46169558EF1D8301754A91A73A/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 1 + GMNotes: '' + GUID: 8a7b93 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: In the Belly of the Moon-Beast + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -11.2261992 + posY: 1.829924 + posZ: -12.4624214 + rotX: 0.0165065471 + rotY: 179.9832 + rotZ: 0.07953842 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '4482': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/780749631103001215/3FF9DC51D7737267B68EC5D9CF17BE421681663B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780749631102998699/DA1D7C58FE177F46169558EF1D8301754A91A73A/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 448229 +- 448228 +- 448227 +- 448226 +Description: '' +GMNotes: '' +GUID: 3a751b +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: '' +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.67639971 + posY: 1.65347755 + posZ: -5.0485 + rotX: 0.0168761015 + rotY: 179.970657 + rotZ: 0.08024897 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 3-A Dark Side of the Moon 0fad66/Deck bf5bd8.yaml b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 3-A Dark Side of the Moon 0fad66/Deck bf5bd8.yaml new file mode 100644 index 000000000..6903386e5 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 3-A Dark Side of the Moon 0fad66/Deck bf5bd8.yaml @@ -0,0 +1,172 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 448225 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4482': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/780749631103001215/3FF9DC51D7737267B68EC5D9CF17BE421681663B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780749631102998699/DA1D7C58FE177F46169558EF1D8301754A91A73A/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 3 + GMNotes: '' + GUID: d99919 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Are Upon You! + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -13.9430313 + posY: 1.66886377 + posZ: -12.760006 + rotX: 0.0172067322 + rotY: 180.033279 + rotZ: 0.07749708 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 448224 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4482': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/780749631103001215/3FF9DC51D7737267B68EC5D9CF17BE421681663B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780749631102998699/DA1D7C58FE177F46169558EF1D8301754A91A73A/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 2 + GMNotes: '' + GUID: 582d94 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Alarm Is Raised + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -8.022227 + posY: 1.66043532 + posZ: -13.5207338 + rotX: 0.01686454 + rotY: 180.019638 + rotZ: 0.07910768 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 448223 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4482': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/780749631103001215/3FF9DC51D7737267B68EC5D9CF17BE421681663B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780749631102998699/DA1D7C58FE177F46169558EF1D8301754A91A73A/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 1 + GMNotes: '' + GUID: 5da9b8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Silent Stirring + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -8.29579449 + posY: 1.894331 + posZ: -13.5412006 + rotX: 2.69618034 + rotY: 180.022583 + rotZ: 0.0773316547 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '4482': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/780749631103001215/3FF9DC51D7737267B68EC5D9CF17BE421681663B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780749631102998699/DA1D7C58FE177F46169558EF1D8301754A91A73A/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 448225 +- 448224 +- 448223 +Description: '' +GMNotes: '' +GUID: bf5bd8 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: '' +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.7248 + posY: 1.65664148 + posZ: 0.373300254 + rotX: 0.016807422 + rotY: 180.019623 + rotZ: 0.0802635 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 3-A Dark Side of the Moon 0fad66/Deck Encounter Deck 3c1955.yaml b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 3-A Dark Side of the Moon 0fad66/Deck Encounter Deck 3c1955.yaml new file mode 100644 index 000000000..00cb76818 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 3-A Dark Side of the Moon 0fad66/Deck Encounter Deck 3c1955.yaml @@ -0,0 +1,1261 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 274129 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2741': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Scheme. + GMNotes: '' + GUID: d30166 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Hunted by Corsairs + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.95851326 + posY: 1.33603656 + posZ: 54.52095 + rotX: 0.021499306 + rotY: 269.999054 + rotZ: 0.01294238 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232419 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2324': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: 6e7cb8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ancient Evils + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.85151768 + posY: 1.481172 + posZ: 54.5874138 + rotX: 0.0317279 + rotY: 269.997437 + rotZ: 0.0104400339 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274120 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2741': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Curse. + GMNotes: '' + GUID: c9a81c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Deeper Slumber + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.99202347 + posY: 1.49862671 + posZ: 54.1671333 + rotX: 0.0205474552 + rotY: 270.000031 + rotZ: 0.0154121937 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274129 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2741': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Scheme. + GMNotes: '' + GUID: 4f56f1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Hunted by Corsairs + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -4.119467 + posY: 1.48490989 + posZ: 54.3174744 + rotX: 0.0210007112 + rotY: 270.000427 + rotZ: 0.0169398841 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232419 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2324': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: 8af879 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ancient Evils + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -4.18778563 + posY: 1.48285019 + posZ: 54.38247 + rotX: 0.024659181 + rotY: 269.999878 + rotZ: 0.0159895718 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274118 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2741': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Curse. + GMNotes: '' + GUID: 8af23c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dreamer's Curse + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.93856478 + posY: 1.4856503 + posZ: 54.4894142 + rotX: 0.0238736 + rotY: 270.005 + rotZ: 0.0106812716 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274119 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2741': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: e64ec2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Somniphobia + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -5.61676359 + posY: 1.49031913 + posZ: 55.2240753 + rotX: 0.0210925788 + rotY: 270.0 + rotZ: 0.0154342148 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274118 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2741': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Curse. + GMNotes: '' + GUID: dd39c6 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dreamer's Curse + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -5.1435895 + posY: 1.49677563 + posZ: 55.3496666 + rotX: 0.0186838917 + rotY: 270.000061 + rotZ: 0.0165105425 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274119 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2741': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: bdd705 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Somniphobia + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -5.319792 + posY: 1.45421457 + posZ: 55.48307 + rotX: 0.0235182159 + rotY: 270.000519 + rotZ: 0.0153398849 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232419 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2324': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: 6e7cb8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ancient Evils + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -5.75459766 + posY: 1.46369326 + posZ: 55.18787 + rotX: 0.021479506 + rotY: 269.9999 + rotZ: 0.0153722484 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274120 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2741': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Curse. + GMNotes: '' + GUID: 07cb83 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Deeper Slumber + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -5.285024 + posY: 1.473537 + posZ: 55.3664665 + rotX: 0.02268582 + rotY: 269.9998 + rotZ: 0.0148103712 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274130 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2741': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Monster. + GMNotes: '' + GUID: a45b3a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Corsair of Leng + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -5.73751926 + posY: 1.48304963 + posZ: 55.2935753 + rotX: 0.0214949958 + rotY: 270.0 + rotZ: 0.0150681 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274130 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2741': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Monster. + GMNotes: '' + GUID: 646a1a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Corsair of Leng + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -5.38415337 + posY: 1.50843859 + posZ: 55.3186073 + rotX: 0.02077319 + rotY: 270.000031 + rotZ: 0.0165515617 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 448407 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4484': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780749631103449151/FFAADF06C9BF9D1F4F3FE22D45CEBBB15D9B58CF/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: '430478' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Forced into Hiding + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.1378026 + posY: 1.34118438 + posZ: 70.00583 + rotX: 0.0219865087 + rotY: 269.986755 + rotZ: 0.00923137553 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 448407 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4484': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780749631103449151/FFAADF06C9BF9D1F4F3FE22D45CEBBB15D9B58CF/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: 35c286 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Forced into Hiding + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.08908343 + posY: 1.49055374 + posZ: 69.73123 + rotX: 0.0114795351 + rotY: 269.986877 + rotZ: 0.01847368 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 448407 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4484': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780749631103449151/FFAADF06C9BF9D1F4F3FE22D45CEBBB15D9B58CF/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: b8b5c0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Forced into Hiding + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -4.27698469 + posY: 1.50192142 + posZ: 50.755394 + rotX: 0.0219084 + rotY: 269.9867 + rotZ: 0.0159632284 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 448408 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4484': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780749631103449151/FFAADF06C9BF9D1F4F3FE22D45CEBBB15D9B58CF/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Scheme. + GMNotes: '' + GUID: 1dc329 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Lunar Patrol + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -8.013627 + posY: 1.33334887 + posZ: 50.2772 + rotX: 0.0212570131 + rotY: 269.986633 + rotZ: 0.01420621 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 448408 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4484': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780749631103449151/FFAADF06C9BF9D1F4F3FE22D45CEBBB15D9B58CF/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Scheme. + GMNotes: '' + GUID: 8ed23d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Lunar Patrol + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -8.107245 + posY: 1.48278522 + posZ: 50.4694824 + rotX: 0.0337397456 + rotY: 269.986267 + rotZ: -0.00328205316 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 448403 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4484': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780749631103449151/FFAADF06C9BF9D1F4F3FE22D45CEBBB15D9B58CF/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Byakhee. + GMNotes: '' + GUID: 1e3d9c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Moonbound Byakhee + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -0.342821658 + posY: 1.33624387 + posZ: 50.85751 + rotX: 0.02183284 + rotY: 269.9867 + rotZ: 0.0101136481 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 448403 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4484': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780749631103449151/FFAADF06C9BF9D1F4F3FE22D45CEBBB15D9B58CF/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Byakhee. + GMNotes: '' + GUID: 6a01b3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Moonbound Byakhee + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -0.119474329 + posY: 1.4857558 + posZ: 50.3578033 + rotX: 0.0261226017 + rotY: 269.986633 + rotZ: 0.013653243 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 448405 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4484': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780749631103449151/FFAADF06C9BF9D1F4F3FE22D45CEBBB15D9B58CF/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Servitor. + GMNotes: '' + GUID: a67b30 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Moon-Beast + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -4.602836 + posY: 1.33395815 + posZ: 48.6415939 + rotX: 0.0227752626 + rotY: 269.986755 + rotZ: 0.00403617648 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 448405 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4484': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780749631103449151/FFAADF06C9BF9D1F4F3FE22D45CEBBB15D9B58CF/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Servitor. + GMNotes: '' + GUID: 7a9fd0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Moon-Beast + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -4.177688 + posY: 1.48315227 + posZ: 48.1663322 + rotX: 0.00254054368 + rotY: 269.986877 + rotZ: 0.0276345443 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 448404 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4484': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780749631103449151/FFAADF06C9BF9D1F4F3FE22D45CEBBB15D9B58CF/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Creature. Monster. + GMNotes: '' + GUID: 69fa0b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Cats from Saturn + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -5.16077042 + posY: 1.33419871 + posZ: 49.5594826 + rotX: 0.0210423376 + rotY: 269.9867 + rotZ: 0.0156857315 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 448404 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4484': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780749631103449151/FFAADF06C9BF9D1F4F3FE22D45CEBBB15D9B58CF/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Creature. Monster. + GMNotes: '' + GUID: 1a188b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Cats from Saturn + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -4.95902729 + posY: 1.483893 + posZ: 49.61392 + rotX: 0.0156786237 + rotY: 269.9868 + rotZ: 0.00259767217 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 448404 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4484': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780749631103449151/FFAADF06C9BF9D1F4F3FE22D45CEBBB15D9B58CF/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Creature. Monster. + GMNotes: '' + GUID: ba6406 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Cats from Saturn + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -5.088737 + posY: 1.50123262 + posZ: 49.43233 + rotX: 0.0224124733 + rotY: 269.986572 + rotZ: 0.0150748733 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 448406 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4484': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780749631103449151/FFAADF06C9BF9D1F4F3FE22D45CEBBB15D9B58CF/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Scheme. + GMNotes: '' + GUID: d06c19 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Close Watch + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.7438643 + posY: 2.34431648 + posZ: 47.14024 + rotX: 0.02157486 + rotY: 269.986877 + rotZ: 0.0128391329 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 448406 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4484': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780749631103449151/FFAADF06C9BF9D1F4F3FE22D45CEBBB15D9B58CF/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Scheme. + GMNotes: '' + GUID: 09b1ba + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Close Watch + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.7652297 + posY: 2.39406681 + posZ: 46.4197578 + rotX: 0.0215747468 + rotY: 269.9872 + rotZ: 0.0128485141 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 448406 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4484': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780749631103449151/FFAADF06C9BF9D1F4F3FE22D45CEBBB15D9B58CF/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Scheme. + GMNotes: '' + GUID: cd1750 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Close Watch + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.89863968 + posY: 2.449588 + posZ: 45.84762 + rotX: 0.0239194687 + rotY: 269.9803 + rotZ: 0.0328396149 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2324': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '2741': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '4484': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780749631103449151/FFAADF06C9BF9D1F4F3FE22D45CEBBB15D9B58CF/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 274129 +- 232419 +- 274120 +- 274129 +- 232419 +- 274118 +- 274119 +- 274118 +- 274119 +- 232419 +- 274120 +- 274130 +- 274130 +- 448407 +- 448407 +- 448407 +- 448408 +- 448408 +- 448403 +- 448403 +- 448405 +- 448405 +- 448404 +- 448404 +- 448404 +- 448406 +- 448406 +- 448406 +Description: '' +GMNotes: '' +GUID: 3c1955 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Encounter Deck +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.92760038 + posY: 1.761051 + posZ: 5.757201 + rotX: 359.919739 + rotY: 269.999969 + rotZ: 180.016815 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 3-B Point of No Return 4f81cf.ttslua b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 3-B Point of No Return 4f81cf.ttslua new file mode 100644 index 000000000..5534586ac --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 3-B Point of No Return 4f81cf.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.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 \ No newline at end of file diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 3-B Point of No Return 4f81cf.yaml b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 3-B Point of No Return 4f81cf.yaml new file mode 100644 index 000000000..44a2fd483 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 3-B Point of No Return 4f81cf.yaml @@ -0,0 +1,88 @@ +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 3-B Point of No Return 4f81cf/Custom_Tile Point of No + Return f302ab.yaml' +- !include 'Custom_Model_Bag 3-B Point of No Return 4f81cf/Card Scenario d616d2.yaml' +- !include 'Custom_Model_Bag 3-B Point of No Return 4f81cf/Deck Agenda Deck 664162.yaml' +- !include 'Custom_Model_Bag 3-B Point of No Return 4f81cf/Bag Randolph survived the + descent 24ebbe.yaml' +- !include 'Custom_Model_Bag 3-B Point of No Return 4f81cf/Bag Randolph did not survive + the descent 5a9838.yaml' +- !include 'Custom_Model_Bag 3-B Point of No Return 4f81cf/Deck Encounter Deck 943b6c.yaml' +- !include 'Custom_Model_Bag 3-B Point of No Return 4f81cf/Custom_Model_Bag Set-aside + a45247.yaml' +- !include 'Custom_Model_Bag 3-B Point of No Return 4f81cf/Card Tower of Koth 923952.yaml' +- !include 'Custom_Model_Bag 3-B Point of No Return 4f81cf/Custom_Tile 6d126f.yaml' +- !include 'Custom_Model_Bag 3-B Point of No Return 4f81cf/Card City of Gugs b0fbe0.yaml' +- !include 'Custom_Model_Bag 3-B Point of No Return 4f81cf/Custom_Tile 7234af.yaml' +- !include 'Custom_Model_Bag 3-B Point of No Return 4f81cf/Custom_Tile 09f962.yaml' +- !include 'Custom_Model_Bag 3-B Point of No Return 4f81cf/Card Vaults of Zin f252c5.yaml' +- !include 'Custom_Model_Bag 3-B Point of No Return 4f81cf/Custom_Tile f8cc03.yaml' +- !include 'Custom_Model_Bag 3-B Point of No Return 4f81cf/Card Plain of the Ghouls + 16d115.yaml' +- !include 'Custom_Model_Bag 3-B Point of No Return 4f81cf/Custom_Tile ae0ecc.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/780749025470580717/7D3BBD715DF2060ADDAFD28D4A1C7CED5FFC08E2/ + MaterialIndex: 3 + MeshURL: https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj + NormalURL: '' + TypeIndex: 6 +Description: The Dream Eaters +GMNotes: '' +GUID: 4f81cf +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Model_Bag 3-B Point of No Return 4f81cf.ttslua' +LuaScriptState: '{"ml":{"09f962":{"lock":false,"pos":{"x":-26.4856,"y":1.6194,"z":3.3667},"rot":{"x":359.9555,"y":224.9789,"z":0.0684}},"16d115":{"lock":false,"pos":{"x":-30.2243,"y":1.6954,"z":-0.03},"rot":{"x":359.9201,"y":270.0112,"z":0.0169}},"24ebbe":{"lock":false,"pos":{"x":0.8312,"y":1.3942,"z":-3.7245},"rot":{"x":359.9832,"y":0.0001,"z":359.9197}},"5a9838":{"lock":false,"pos":{"x":0.7602,"y":1.3934,"z":-6.5464},"rot":{"x":359.9832,"y":-0.0001,"z":359.9197}},"664162":{"lock":false,"pos":{"x":-2.7247,"y":1.664,"z":0.3733},"rot":{"x":0.0168,"y":179.9948,"z":0.0803}},"6d126f":{"lock":false,"pos":{"x":-20.2756,"y":1.612,"z":7.5921},"rot":{"x":0.0799,"y":90.0025,"z":359.9831}},"7234af":{"lock":false,"pos":{"x":-23.6766,"y":1.6157,"z":3.86},"rot":{"x":0.0169,"y":179.9957,"z":0.0799}},"923952":{"lock":false,"pos":{"x":-17.1201,"y":1.6793,"z":7.57},"rot":{"x":359.9201,"y":269.9666,"z":0.0169}},"943b6c":{"lock":false,"pos":{"x":-3.9277,"y":1.7717,"z":5.7571},"rot":{"x":359.9197,"y":270,"z":180.0168}},"a45247":{"lock":false,"pos":{"x":1.6966,"y":1.5583,"z":14.2787},"rot":{"x":359.9551,"y":224.998,"z":0.0687}},"ae0ecc":{"lock":false,"pos":{"x":-33.5225,"y":1.6282,"z":0.0043},"rot":{"x":0.0799,"y":90.0202,"z":359.9831}},"b0fbe0":{"lock":false,"pos":{"x":-23.6766,"y":1.6885,"z":7.57},"rot":{"x":359.9201,"y":269.9818,"z":0.0169}},"c43d3c":{"lock":false,"pos":{"x":-0.4911,"y":1.55,"z":-40.2649},"rot":{"x":0,"y":270.0015,"z":0}},"d616d2":{"lock":false,"pos":{"x":-3.956,"y":1.6556,"z":-10.4412},"rot":{"x":359.9197,"y":269.9818,"z":0.0169}},"f252c5":{"lock":false,"pos":{"x":-23.6766,"y":1.6862,"z":-0.03},"rot":{"x":359.9201,"y":269.9987,"z":0.0169}},"f302ab":{"lock":false,"pos":{"x":-3.8867,"y":1.5826,"z":-14.7599},"rot":{"x":359.9197,"y":270.0307,"z":0.0168}},"f8cc03":{"lock":false,"pos":{"x":-26.8492,"y":1.6189,"z":-0.013},"rot":{"x":0.0799,"y":90.0146,"z":359.9831}}}}' +MaterialIndex: -1 +MeshIndex: -1 +Name: Custom_Model_Bag +Nickname: '3-B: Point of No Return' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 12.3525715 + posY: 1.46061921 + posZ: -12.45597 + rotX: 359.9201 + rotY: 270.010254 + rotZ: 0.016859591 + scaleX: 2.21 + scaleY: 0.46 + scaleZ: 2.42 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 3-B Point of No Return 4f81cf/Bag Randolph did not survive the descent 5a9838.yaml b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 3-B Point of No Return 4f81cf/Bag Randolph did not survive the descent 5a9838.yaml new file mode 100644 index 000000000..2160c632f --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 3-B Point of No Return 4f81cf/Bag Randolph did not survive the descent 5a9838.yaml @@ -0,0 +1,207 @@ +Autoraise: true +ColorDiffuse: + b: 0.0 + g: 0.366520882 + r: 0.7058823 +ContainedObjects: +- Autoraise: true + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: + - Autoraise: true + CardID: 448235 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4482': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/780749631103001215/3FF9DC51D7737267B68EC5D9CF17BE421681663B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780749631102998699/DA1D7C58FE177F46169558EF1D8301754A91A73A/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 3 + GMNotes: '' + GUID: 105e3a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Black Expanse + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.343314 + posY: 1.33631361 + posZ: 54.8574028 + rotX: 0.01782431 + rotY: 179.999619 + rotZ: 359.971619 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' + - Autoraise: true + CardID: 448234 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4482': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/780749631103001215/3FF9DC51D7737267B68EC5D9CF17BE421681663B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780749631102998699/DA1D7C58FE177F46169558EF1D8301754A91A73A/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 2 + GMNotes: '' + GUID: d6aa77 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Descent + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.204411 + posY: 1.48133862 + posZ: 54.814724 + rotX: 0.03232972 + rotY: 180.004364 + rotZ: 359.974243 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' + - Autoraise: true + CardID: 448232 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4482': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/780749631103001215/3FF9DC51D7737267B68EC5D9CF17BE421681663B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780749631102998699/DA1D7C58FE177F46169558EF1D8301754A91A73A/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 1 + GMNotes: '' + GUID: f907c0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Entering the Underworld (v. I) + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -4.774858 + posY: 1.50169766 + posZ: 65.99426 + rotX: 0.0211359188 + rotY: 180.028549 + rotZ: 359.975 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' + CustomDeck: + '4482': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/780749631103001215/3FF9DC51D7737267B68EC5D9CF17BE421681663B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780749631102998699/DA1D7C58FE177F46169558EF1D8301754A91A73A/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + DeckIDs: + - 448235 + - 448234 + - 448232 + Description: '' + GMNotes: '' + GUID: a9a3bb + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Deck + Nickname: Act Deck + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 13.7629528 + posY: 3.0041728 + posZ: -7.69676352 + rotX: 0.0167864114 + rotY: 180.035828 + rotZ: 359.979218 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +Description: '' +GMNotes: '' +GUID: 5a9838 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +MeshIndex: -1 +Name: Bag +Nickname: Randolph did not survive the descent +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 0.760200858 + posY: 1.39343882 + posZ: -6.5464 + rotX: 359.983154 + rotY: -0.000106402789 + rotZ: 359.919678 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 3-B Point of No Return 4f81cf/Bag Randolph survived the descent 24ebbe.yaml b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 3-B Point of No Return 4f81cf/Bag Randolph survived the descent 24ebbe.yaml new file mode 100644 index 000000000..95c0dd253 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 3-B Point of No Return 4f81cf/Bag Randolph survived the descent 24ebbe.yaml @@ -0,0 +1,207 @@ +Autoraise: true +ColorDiffuse: + b: 0.0 + g: 0.366520882 + r: 0.7058823 +ContainedObjects: +- Autoraise: true + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: + - Autoraise: true + CardID: 448235 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4482': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/780749631103001215/3FF9DC51D7737267B68EC5D9CF17BE421681663B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780749631102998699/DA1D7C58FE177F46169558EF1D8301754A91A73A/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 3 + GMNotes: '' + GUID: 105e3a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Black Expanse + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.343314 + posY: 1.33631361 + posZ: 54.8574028 + rotX: 0.01782431 + rotY: 179.999619 + rotZ: 359.971619 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' + - Autoraise: true + CardID: 448234 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4482': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/780749631103001215/3FF9DC51D7737267B68EC5D9CF17BE421681663B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780749631102998699/DA1D7C58FE177F46169558EF1D8301754A91A73A/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 2 + GMNotes: '' + GUID: d6aa77 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Descent + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.204411 + posY: 1.48133862 + posZ: 54.814724 + rotX: 0.03232972 + rotY: 180.004364 + rotZ: 359.974243 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' + - Autoraise: true + CardID: 448233 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4482': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/780749631103001215/3FF9DC51D7737267B68EC5D9CF17BE421681663B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780749631102998699/DA1D7C58FE177F46169558EF1D8301754A91A73A/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 1 + GMNotes: '' + GUID: febef4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Entering the Underworld (v. II) + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -4.53563929 + posY: 1.50049591 + posZ: 61.3443947 + rotX: 0.0163329877 + rotY: 180.028946 + rotZ: 359.976868 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' + CustomDeck: + '4482': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/780749631103001215/3FF9DC51D7737267B68EC5D9CF17BE421681663B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780749631102998699/DA1D7C58FE177F46169558EF1D8301754A91A73A/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + DeckIDs: + - 448235 + - 448234 + - 448233 + Description: '' + GMNotes: '' + GUID: d41b0a + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Deck + Nickname: Act Deck + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 1.26899493 + posY: 3.71957564 + posZ: -2.10767269 + rotX: 359.533783 + rotY: 180.04216 + rotZ: 0.253644377 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +Description: '' +GMNotes: '' +GUID: 24ebbe +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +MeshIndex: -1 +Name: Bag +Nickname: Randolph survived the descent +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 0.831200838 + posY: 1.39416862 + posZ: -3.7244997 + rotX: 359.983154 + rotY: 8.70051153e-05 + rotZ: 359.919678 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 3-B Point of No Return 4f81cf/Card City of Gugs b0fbe0.yaml b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 3-B Point of No Return 4f81cf/Card City of Gugs b0fbe0.yaml new file mode 100644 index 000000000..59138fe76 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 3-B Point of No Return 4f81cf/Card City of Gugs b0fbe0.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 448313 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '4483': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/780749631103441607/63F6472BFA33AA6C487997A0A45EEBB4C27336C8/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780749631103441052/FC2DD250B4173C28B245388F80C6D9ABA3B7D2E7/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: b0fbe0 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: City of Gugs +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -23.6766 + posY: 1.68845832 + posZ: 7.569999 + rotX: 359.9201 + rotY: 269.981781 + rotZ: 0.0169016719 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 3-B Point of No Return 4f81cf/Card Plain of the Ghouls 16d115.yaml b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 3-B Point of No Return 4f81cf/Card Plain of the Ghouls 16d115.yaml new file mode 100644 index 000000000..5271e190c --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 3-B Point of No Return 4f81cf/Card Plain of the Ghouls 16d115.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 448315 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '4483': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/780749631103441607/63F6472BFA33AA6C487997A0A45EEBB4C27336C8/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780749631103441052/FC2DD250B4173C28B245388F80C6D9ABA3B7D2E7/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Central. +GMNotes: '' +GUID: 16d115 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Plain of the Ghouls +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -30.2243 + posY: 1.69535077 + posZ: -0.0300004054 + rotX: 359.9201 + rotY: 270.01123 + rotZ: 0.01686074 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 3-B Point of No Return 4f81cf/Card Scenario d616d2.yaml b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 3-B Point of No Return 4f81cf/Card Scenario d616d2.yaml new file mode 100644 index 000000000..e0c643469 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 3-B Point of No Return 4f81cf/Card Scenario d616d2.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 448311 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '4483': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/780749631103441607/63F6472BFA33AA6C487997A0A45EEBB4C27336C8/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780749631103441052/FC2DD250B4173C28B245388F80C6D9ABA3B7D2E7/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Point of No Return +GMNotes: '' +GUID: d616d2 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Scenario +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.956 + posY: 1.65564811 + posZ: -10.4412012 + rotX: 359.919739 + rotY: 269.9818 + rotZ: 0.0168665741 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 3-B Point of No Return 4f81cf/Card Tower of Koth 923952.yaml b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 3-B Point of No Return 4f81cf/Card Tower of Koth 923952.yaml new file mode 100644 index 000000000..2773530e0 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 3-B Point of No Return 4f81cf/Card Tower of Koth 923952.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 448314 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '4483': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/780749631103441607/63F6472BFA33AA6C487997A0A45EEBB4C27336C8/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780749631103441052/FC2DD250B4173C28B245388F80C6D9ABA3B7D2E7/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: '923952' +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Tower of Koth +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -17.1201019 + posY: 1.67931581 + posZ: 7.56999969 + rotX: 359.9201 + rotY: 269.966644 + rotZ: 0.0169219058 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 3-B Point of No Return 4f81cf/Card Vaults of Zin f252c5.yaml b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 3-B Point of No Return 4f81cf/Card Vaults of Zin f252c5.yaml new file mode 100644 index 000000000..dfd7fa862 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 3-B Point of No Return 4f81cf/Card Vaults of Zin f252c5.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 448312 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '4483': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/780749631103441607/63F6472BFA33AA6C487997A0A45EEBB4C27336C8/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780749631103441052/FC2DD250B4173C28B245388F80C6D9ABA3B7D2E7/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: f252c5 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Vaults of Zin +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -23.6766 + posY: 1.68622041 + posZ: -0.0300003514 + rotX: 359.9201 + rotY: 269.998718 + rotZ: 0.0168778654 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 3-B Point of No Return 4f81cf/Custom_Model_Bag Set-aside a45247.yaml b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 3-B Point of No Return 4f81cf/Custom_Model_Bag Set-aside a45247.yaml new file mode 100644 index 000000000..a42df7cc7 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 3-B Point of No Return 4f81cf/Custom_Model_Bag Set-aside a45247.yaml @@ -0,0 +1,65 @@ +Autoraise: true +ColorDiffuse: + b: 0.02148666 + g: 0.00100758043 + r: 0.02148666 +ContainedObjects: +- !include 'Custom_Model_Bag Set-aside a45247/Card False Awakening 3bf831.yaml' +- !include 'Custom_Model_Bag Set-aside a45247/Deck Nightgaunts e046f3.yaml' +- !include 'Custom_Model_Bag Set-aside a45247/Card Gug Sentinel 2d7881.yaml' +- !include 'Custom_Model_Bag Set-aside a45247/Card Richard Upton Pickman c4534a.yaml' +- !include 'Custom_Model_Bag Set-aside a45247/Deck Agents of Atlach-Nacha 654783.yaml' +- !include 'Custom_Model_Bag Set-aside a45247/Deck Terror of the Vale ec3927.yaml' +- !include 'Custom_Model_Bag Set-aside a45247/Deck Descent into the Pitch 8211ad.yaml' +- !include 'Custom_Model_Bag Set-aside a45247/Card Enchanted Woods 2273ef.yaml' +- !include 'Custom_Model_Bag Set-aside a45247/Deck Vale Locations 9b94cf.yaml' +- !include 'Custom_Model_Bag Set-aside a45247/Deck Depths Locations 52c5dd.yaml' +CustomMesh: + CastShadows: true + ColliderURL: '' + Convex: true + DiffuseURL: http://i.imgur.com/yVhOLYs.jpg + MaterialIndex: 1 + MeshURL: https://paste.ee/r/ylQzQ + NormalURL: http://i.imgur.com/f1ogHo6.jpg + TypeIndex: 6 +Description: '' +GMNotes: '' +GUID: a45247 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +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.69660091 + posY: 1.55831683 + posZ: 14.2787018 + rotX: 359.955139 + rotY: 224.997971 + rotZ: 0.06867408 + scaleX: 2.0 + scaleY: 2.0 + scaleZ: 2.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 3-B Point of No Return 4f81cf/Custom_Model_Bag Set-aside a45247/Card Enchanted Woods 2273ef.yaml b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 3-B Point of No Return 4f81cf/Custom_Model_Bag Set-aside a45247/Card Enchanted Woods 2273ef.yaml new file mode 100644 index 000000000..c1961d48d --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 3-B Point of No Return 4f81cf/Custom_Model_Bag Set-aside a45247/Card Enchanted Woods 2273ef.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 274409 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2744': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493383646804247/225C1675DCFAFA6331AF23D73934CE52544F4863/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646805159/968F84A126D57214C3BC8E095D9D8EB066ED8D6C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Woods. +GMNotes: '' +GUID: 2273ef +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Enchanted Woods +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 23.20752 + posY: 6.5402565 + posZ: -20.6956654 + rotX: -6.031467e-06 + rotY: 269.999969 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 3-B Point of No Return 4f81cf/Custom_Model_Bag Set-aside a45247/Card False Awakening 3bf831.yaml b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 3-B Point of No Return 4f81cf/Custom_Model_Bag Set-aside a45247/Card False Awakening 3bf831.yaml new file mode 100644 index 000000000..1560bae3a --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 3-B Point of No Return 4f81cf/Custom_Model_Bag Set-aside a45247/Card False Awakening 3bf831.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Curse. +GMNotes: '' +GUID: 3bf831 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: False Awakening +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 14.0637865 + posY: 6.297254 + posZ: -15.5178013 + rotX: 0.0208167564 + rotY: 269.975342 + rotZ: 0.0167625491 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 3-B Point of No Return 4f81cf/Custom_Model_Bag Set-aside a45247/Card Gug Sentinel 2d7881.yaml b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 3-B Point of No Return 4f81cf/Custom_Model_Bag Set-aside a45247/Card Gug Sentinel 2d7881.yaml new file mode 100644 index 000000000..d5edd6b9a --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 3-B Point of No Return 4f81cf/Custom_Model_Bag Set-aside a45247/Card Gug Sentinel 2d7881.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 448411 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '4484': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780749631103449151/FFAADF06C9BF9D1F4F3FE22D45CEBBB15D9B58CF/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: Monster. Gug. +GMNotes: '' +GUID: 2d7881 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Gug Sentinel +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 13.7368889 + posY: 6.537519 + posZ: -20.3315754 + rotX: 359.822418 + rotY: 269.9816 + rotZ: 0.257950127 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 3-B Point of No Return 4f81cf/Custom_Model_Bag Set-aside a45247/Card Richard Upton Pickman c4534a.yaml b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 3-B Point of No Return 4f81cf/Custom_Model_Bag Set-aside a45247/Card Richard Upton Pickman c4534a.yaml new file mode 100644 index 000000000..4596b94cc --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 3-B Point of No Return 4f81cf/Custom_Model_Bag Set-aside a45247/Card Richard Upton Pickman c4534a.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 448410 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '4484': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780749631103449151/FFAADF06C9BF9D1F4F3FE22D45CEBBB15D9B58CF/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: Venerable Ghoul +GMNotes: '' +GUID: c4534a +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Richard Upton Pickman +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 9.621122 + posY: 6.537432 + posZ: -20.2207279 + rotX: -2.04642784e-05 + rotY: 270.000549 + rotZ: -4.252632e-05 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 3-B Point of No Return 4f81cf/Custom_Model_Bag Set-aside a45247/Deck Agents of Atlach-Nacha 654783.yaml b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 3-B Point of No Return 4f81cf/Custom_Model_Bag Set-aside a45247/Deck Agents of Atlach-Nacha 654783.yaml new file mode 100644 index 000000000..acf0ab55c --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 3-B Point of No Return 4f81cf/Custom_Model_Bag Set-aside a45247/Deck Agents of Atlach-Nacha 654783.yaml @@ -0,0 +1,215 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 274109 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2741': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Spider. + GMNotes: '' + GUID: 621de5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Grey Weaver + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -16.29789 + posY: 1.33173692 + posZ: 54.9044876 + rotX: 0.0208100639 + rotY: 270.000061 + rotZ: 0.0168662574 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274109 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2741': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Spider. + GMNotes: '' + GUID: b126fb + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Grey Weaver + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -16.12129 + posY: 1.49274647 + posZ: 55.211235 + rotX: 0.018673053 + rotY: 270.000061 + rotZ: 0.0111498982 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274110 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2741': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Power. + GMNotes: '' + GUID: '924656' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Will of the Spider-Mother + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -16.3824444 + posY: 1.50997329 + posZ: 55.3458862 + rotX: 0.0223769117 + rotY: 270.0001 + rotZ: 0.0136615671 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274110 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2741': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Power. + GMNotes: '' + GUID: 50e06a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Will of the Spider-Mother + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -16.24422 + posY: 1.49625111 + posZ: 54.82901 + rotX: 0.02021771 + rotY: 270.0001 + rotZ: 0.01658786 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2741': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 274109 +- 274109 +- 274110 +- 274110 +Description: '' +GMNotes: '' +GUID: '654783' +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Agents of Atlach-Nacha +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -0.2380822 + posY: 3.60288262 + posZ: -24.4931984 + rotX: 359.920044 + rotY: 270.000122 + rotZ: 0.0168608539 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 3-B Point of No Return 4f81cf/Custom_Model_Bag Set-aside a45247/Deck Depths Locations 52c5dd.yaml b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 3-B Point of No Return 4f81cf/Custom_Model_Bag Set-aside a45247/Deck Depths Locations 52c5dd.yaml new file mode 100644 index 000000000..1143511da --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 3-B Point of No Return 4f81cf/Custom_Model_Bag Set-aside a45247/Deck Depths Locations 52c5dd.yaml @@ -0,0 +1,215 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 448323 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4483': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/780749631103441607/63F6472BFA33AA6C487997A0A45EEBB4C27336C8/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780749631103441052/FC2DD250B4173C28B245388F80C6D9ABA3B7D2E7/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Depths. + GMNotes: '' + GUID: c5a434 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Sea of Pitch + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 1.37477207 + posY: 1.338029 + posZ: 54.717865 + rotX: 0.0200800542 + rotY: 269.983551 + rotZ: 0.0124854594 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 448322 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4483': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/780749631103441607/63F6472BFA33AA6C487997A0A45EEBB4C27336C8/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780749631103441052/FC2DD250B4173C28B245388F80C6D9ABA3B7D2E7/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Depths. + GMNotes: '' + GUID: fdb3b3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Sea of Pitch + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 1.2393856 + posY: 1.48304665 + posZ: 54.30531 + rotX: 0.0166065786 + rotY: 269.98053 + rotZ: 0.00208718632 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 448321 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4483': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/780749631103441607/63F6472BFA33AA6C487997A0A45EEBB4C27336C8/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780749631103441052/FC2DD250B4173C28B245388F80C6D9ABA3B7D2E7/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Depths. + GMNotes: '' + GUID: ee0dc6 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Sea of Pitch + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 1.10250509 + posY: 1.50058854 + posZ: 54.61063 + rotX: 0.0230508745 + rotY: 269.981018 + rotZ: 0.0160726085 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 448320 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4483': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/780749631103441607/63F6472BFA33AA6C487997A0A45EEBB4C27336C8/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780749631103441052/FC2DD250B4173C28B245388F80C6D9ABA3B7D2E7/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Depths. + GMNotes: '' + GUID: 858f4d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Sea of Pitch + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 1.07008421 + posY: 1.48686373 + posZ: 54.4459038 + rotX: 0.021822365 + rotY: 269.981873 + rotZ: 0.0143893175 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '4483': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/780749631103441607/63F6472BFA33AA6C487997A0A45EEBB4C27336C8/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780749631103441052/FC2DD250B4173C28B245388F80C6D9ABA3B7D2E7/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 448323 +- 448322 +- 448321 +- 448320 +Description: '' +GMNotes: '' +GUID: 52c5dd +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Depths Locations +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 12.09967 + posY: 3.01388359 + posZ: 25.3189716 + rotX: 3.44722048e-06 + rotY: 269.983765 + rotZ: 3.93062828e-06 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 3-B Point of No Return 4f81cf/Custom_Model_Bag Set-aside a45247/Deck Descent into the Pitch 8211ad.yaml b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 3-B Point of No Return 4f81cf/Custom_Model_Bag Set-aside a45247/Deck Descent into the Pitch 8211ad.yaml new file mode 100644 index 000000000..edd3f9f4f --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 3-B Point of No Return 4f81cf/Custom_Model_Bag Set-aside a45247/Deck Descent into the Pitch 8211ad.yaml @@ -0,0 +1,215 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 448418 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4484': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780749631103449151/FFAADF06C9BF9D1F4F3FE22D45CEBBB15D9B58CF/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Curse. + GMNotes: '' + GUID: 4fa43f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Shadow of Atlach-Nacha + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 4.58753347 + posY: 1.53658581 + posZ: -34.7654457 + rotX: 359.920166 + rotY: 270.014679 + rotZ: 0.0165293217 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 448418 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4484': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780749631103449151/FFAADF06C9BF9D1F4F3FE22D45CEBBB15D9B58CF/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Curse. + GMNotes: '' + GUID: e43efd + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Shadow of Atlach-Nacha + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 4.57853842 + posY: 1.69774079 + posZ: -34.33032 + rotX: 359.9255 + rotY: 270.014832 + rotZ: 0.004017685 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 448417 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4484': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780749631103449151/FFAADF06C9BF9D1F4F3FE22D45CEBBB15D9B58CF/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Spider. + GMNotes: '' + GUID: e45ec8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Pitch Spider + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 4.796251 + posY: 1.5346638 + posZ: -40.3409348 + rotX: 359.920074 + rotY: 270.0252 + rotZ: 0.01721978 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 448417 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4484': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780749631103449151/FFAADF06C9BF9D1F4F3FE22D45CEBBB15D9B58CF/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Spider. + GMNotes: '' + GUID: 25d93a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Pitch Spider + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 4.931781 + posY: 1.69577944 + posZ: -39.8830147 + rotX: 359.917267 + rotY: 270.02478 + rotZ: 0.009124688 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '4484': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780749631103449151/FFAADF06C9BF9D1F4F3FE22D45CEBBB15D9B58CF/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 448418 +- 448418 +- 448417 +- 448417 +Description: '' +GMNotes: '' +GUID: 8211ad +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Descent into the Pitch +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.70803 + posY: 6.29718542 + posZ: -15.7753811 + rotX: 0.0208052769 + rotY: 270.014526 + rotZ: 0.0167761911 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 3-B Point of No Return 4f81cf/Custom_Model_Bag Set-aside a45247/Deck Nightgaunts e046f3.yaml b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 3-B Point of No Return 4f81cf/Custom_Model_Bag Set-aside a45247/Deck Nightgaunts e046f3.yaml new file mode 100644 index 000000000..9b5f716ec --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 3-B Point of No Return 4f81cf/Custom_Model_Bag Set-aside a45247/Deck Nightgaunts e046f3.yaml @@ -0,0 +1,215 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 231726 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 1e04da + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: On Wings of Darkness + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -13.4282417 + posY: 1.70155811 + posZ: 13.7778349 + rotX: 359.535278 + rotY: 269.9516 + rotZ: 181.449341 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231726 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 1d0c1c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: On Wings of Darkness + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -15.7923059 + posY: 1.73901558 + posZ: 4.52112341 + rotX: 359.919861 + rotY: 269.999969 + rotZ: 0.0123590212 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231725 + 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 + UniqueBack: false + Description: Monster. Nightgaunt. + GMNotes: '' + GUID: ab3719 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Hunting Nightgaunt + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -16.52605 + posY: 1.57874775 + posZ: 8.559591 + rotX: 359.920471 + rotY: 270.0019 + rotZ: 0.0145635763 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231725 + 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 + UniqueBack: false + Description: Monster. Nightgaunt. + GMNotes: '' + GUID: b75b70 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Hunting Nightgaunt + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -13.47085 + posY: 1.72509861 + posZ: 13.60628 + rotX: 359.9252 + rotY: 269.9989 + rotZ: 0.0176846832 + 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 + UniqueBack: false +DeckIDs: +- 231726 +- 231726 +- 231725 +- 231725 +Description: '' +GMNotes: '' +GUID: e046f3 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Nightgaunts +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -1.42766356 + posY: 3.60437036 + posZ: -24.3559933 + rotX: 359.920044 + rotY: 269.998627 + rotZ: 0.0169021878 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 3-B Point of No Return 4f81cf/Custom_Model_Bag Set-aside a45247/Deck Terror of the Vale ec3927.yaml b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 3-B Point of No Return 4f81cf/Custom_Model_Bag Set-aside a45247/Deck Terror of the Vale ec3927.yaml new file mode 100644 index 000000000..aae58b3be --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 3-B Point of No Return 4f81cf/Custom_Model_Bag Set-aside a45247/Deck Terror of the Vale ec3927.yaml @@ -0,0 +1,215 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 448416 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4484': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780749631103449151/FFAADF06C9BF9D1F4F3FE22D45CEBBB15D9B58CF/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: c8ca95 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dhole Tunnel + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 5.21576738 + posY: 1.54093337 + posZ: -16.1176567 + rotX: 359.922729 + rotY: 270.0033 + rotZ: -0.00108760851 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 448416 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4484': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780749631103449151/FFAADF06C9BF9D1F4F3FE22D45CEBBB15D9B58CF/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: 2472d3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dhole Tunnel + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 5.304054 + posY: 1.54002762 + posZ: -19.6999817 + rotX: 359.9201 + rotY: 270.00708 + rotZ: 0.0168609 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 448416 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4484': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780749631103449151/FFAADF06C9BF9D1F4F3FE22D45CEBBB15D9B58CF/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: ebbf2f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dhole Tunnel + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 5.321104 + posY: 1.76676619 + posZ: -19.30514 + rotX: 359.920227 + rotY: 270.0006 + rotZ: 3.433646 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 448415 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4484': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780749631103449151/FFAADF06C9BF9D1F4F3FE22D45CEBBB15D9B58CF/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Dhole. Elite. + GMNotes: '' + GUID: 4faa7f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Slithering Dhole + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 5.73627472 + posY: 1.68587208 + posZ: -29.244873 + rotX: 359.9356 + rotY: 270.0018 + rotZ: 0.0104480507 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '4484': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780749631103449151/FFAADF06C9BF9D1F4F3FE22D45CEBBB15D9B58CF/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 448416 +- 448416 +- 448416 +- 448415 +Description: '' +GMNotes: '' +GUID: ec3927 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Terror of the Vale +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.1272125 + posY: 6.53539038 + posZ: -20.4724522 + rotX: -1.60514378e-06 + rotY: 270.007538 + rotZ: 1.25178224e-06 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 3-B Point of No Return 4f81cf/Custom_Model_Bag Set-aside a45247/Deck Vale Locations 9b94cf.yaml b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 3-B Point of No Return 4f81cf/Custom_Model_Bag Set-aside a45247/Deck Vale Locations 9b94cf.yaml new file mode 100644 index 000000000..7c8ab8dc9 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 3-B Point of No Return 4f81cf/Custom_Model_Bag Set-aside a45247/Deck Vale Locations 9b94cf.yaml @@ -0,0 +1,215 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 448319 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4483': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/780749631103441607/63F6472BFA33AA6C487997A0A45EEBB4C27336C8/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780749631103441052/FC2DD250B4173C28B245388F80C6D9ABA3B7D2E7/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Vale. + GMNotes: '' + GUID: '205498' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Vale of Pnath + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -7.1353755 + posY: 1.33484185 + posZ: 54.12157 + rotX: 0.020771319 + rotY: 269.98114 + rotZ: 0.0171946958 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 448318 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4483': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/780749631103441607/63F6472BFA33AA6C487997A0A45EEBB4C27336C8/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780749631103441052/FC2DD250B4173C28B245388F80C6D9ABA3B7D2E7/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Vale. Central. + GMNotes: '' + GUID: bd1eba + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Peaks of Thok + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -7.09805632 + posY: 1.47384942 + posZ: 54.3579521 + rotX: 0.0135358237 + rotY: 269.97998 + rotZ: 359.99176 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 448317 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4483': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/780749631103441607/63F6472BFA33AA6C487997A0A45EEBB4C27336C8/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780749631103441052/FC2DD250B4173C28B245388F80C6D9ABA3B7D2E7/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Vale. + GMNotes: '' + GUID: 537a2f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Sea of Bones + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -6.74430037 + posY: 1.49742508 + posZ: 53.6690025 + rotX: 0.0217119977 + rotY: 269.982 + rotZ: 0.01560181 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 448316 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4483': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/780749631103441607/63F6472BFA33AA6C487997A0A45EEBB4C27336C8/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780749631103441052/FC2DD250B4173C28B245388F80C6D9ABA3B7D2E7/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Vale. + GMNotes: '' + GUID: e86a44 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Crag of the Ghouls + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -7.215678 + posY: 1.48370683 + posZ: 53.9077721 + rotX: 0.0203205571 + rotY: 269.982147 + rotZ: 0.0155741274 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '4483': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/780749631103441607/63F6472BFA33AA6C487997A0A45EEBB4C27336C8/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780749631103441052/FC2DD250B4173C28B245388F80C6D9ABA3B7D2E7/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 448319 +- 448318 +- 448317 +- 448316 +Description: '' +GMNotes: '' +GUID: 9b94cf +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Vale Locations +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 27.72398 + posY: 6.53539848 + posZ: -20.50942 + rotX: -7.18713136e-06 + rotY: 269.982 + rotZ: -1.25891654e-06 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 3-B Point of No Return 4f81cf/Custom_Tile 09f962.yaml b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 3-B Point of No Return 4f81cf/Custom_Tile 09f962.yaml new file mode 100644 index 000000000..dad4394b1 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 3-B Point of No Return 4f81cf/Custom_Tile 09f962.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 09f962 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.4856 + posY: 1.619424 + posZ: 3.36670017 + rotX: 359.955475 + rotY: 224.978882 + rotZ: 0.06842064 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 3-B Point of No Return 4f81cf/Custom_Tile 6d126f.yaml b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 3-B Point of No Return 4f81cf/Custom_Tile 6d126f.yaml new file mode 100644 index 000000000..f259b854a --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 3-B Point of No Return 4f81cf/Custom_Tile 6d126f.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 6d126f +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.2755985 + posY: 1.61200893 + posZ: 7.59209967 + rotX: 0.07989523 + rotY: 90.00251 + rotZ: 359.9831 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 3-B Point of No Return 4f81cf/Custom_Tile 7234af.yaml b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 3-B Point of No Return 4f81cf/Custom_Tile 7234af.yaml new file mode 100644 index 000000000..9de7196cc --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 3-B Point of No Return 4f81cf/Custom_Tile 7234af.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 7234af +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.6766 + posY: 1.6156522 + posZ: 3.86000013 + rotX: 0.0168778989 + rotY: 179.995682 + rotZ: 0.079938665 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 3-B Point of No Return 4f81cf/Custom_Tile ae0ecc.yaml b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 3-B Point of No Return 4f81cf/Custom_Tile ae0ecc.yaml new file mode 100644 index 000000000..b8975e352 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 3-B Point of No Return 4f81cf/Custom_Tile ae0ecc.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: ae0ecc +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.5225 + posY: 1.62824643 + posZ: 0.0042997296 + rotX: 0.07990043 + rotY: 90.0202 + rotZ: 359.983124 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 3-B Point of No Return 4f81cf/Custom_Tile f8cc03.yaml b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 3-B Point of No Return 4f81cf/Custom_Tile f8cc03.yaml new file mode 100644 index 000000000..76bce4c8e --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 3-B Point of No Return 4f81cf/Custom_Tile f8cc03.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: f8cc03 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.8492 + posY: 1.61893606 + posZ: -0.0130002489 + rotX: 0.07989875 + rotY: 90.01463 + rotZ: 359.983124 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 3-B Point of No Return 4f81cf/Custom_Tile Point of No Return f302ab.ttslua b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 3-B Point of No Return 4f81cf/Custom_Tile Point of No Return f302ab.ttslua new file mode 100644 index 000000000..eff41dc38 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 3-B Point of No Return 4f81cf/Custom_Tile Point of No Return f302ab.ttslua @@ -0,0 +1,25 @@ +name = 'Point of No Return' + +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 + +function standaloneClick() + Global.call('fillContainer', {object=self, key=name, mode='standalone'}) +end diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 3-B Point of No Return 4f81cf/Custom_Tile Point of No Return f302ab.yaml b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 3-B Point of No Return 4f81cf/Custom_Tile Point of No Return f302ab.yaml new file mode 100644 index 000000000..30e7c3317 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 3-B Point of No Return 4f81cf/Custom_Tile Point of No Return f302ab.yaml @@ -0,0 +1,42 @@ +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: http://cloud-3.steamusercontent.com/ugc/949588657194710961/D864BCCCC1C811EC7F0AED69D1C30C678D3D9FC9/ + ImageURL: http://cloud-3.steamusercontent.com/ugc/965354846165100486/3DC8FCEF364B30758B09EF96AF9458F2B8E64D56/ + WidthScale: 0.0 +Description: click to set chaos token difficulty +GMNotes: '' +GUID: f302ab +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Tile Point of No Return f302ab.ttslua' +LuaScriptState: '' +Name: Custom_Tile +Nickname: Point of No Return +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.8866787 + posY: 1.58256853 + posZ: -14.75993 + rotX: 359.919739 + rotY: 270.0307 + rotZ: 0.01679536 + scaleX: 2.2 + scaleY: 1.0 + scaleZ: 2.2 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 3-B Point of No Return 4f81cf/Deck Agenda Deck 664162.yaml b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 3-B Point of No Return 4f81cf/Deck Agenda Deck 664162.yaml new file mode 100644 index 000000000..947a7a526 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 3-B Point of No Return 4f81cf/Deck Agenda Deck 664162.yaml @@ -0,0 +1,129 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 448231 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4482': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/780749631103001215/3FF9DC51D7737267B68EC5D9CF17BE421681663B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780749631102998699/DA1D7C58FE177F46169558EF1D8301754A91A73A/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 2 + GMNotes: '' + GUID: e173e7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Beset by Monsters + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -0.355088264 + posY: 1.3403517 + posZ: 64.59873 + rotX: 0.0169051252 + rotY: 179.994781 + rotZ: 359.978424 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 448230 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4482': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/780749631103001215/3FF9DC51D7737267B68EC5D9CF17BE421681663B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780749631102998699/DA1D7C58FE177F46169558EF1D8301754A91A73A/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 1 + GMNotes: '' + GUID: d30878 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: A Sinister Realm + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -0.380393684 + posY: 1.49561584 + posZ: 64.73369 + rotX: 0.0139389671 + rotY: 180.004684 + rotZ: 359.9695 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '4482': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/780749631103001215/3FF9DC51D7737267B68EC5D9CF17BE421681663B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780749631102998699/DA1D7C58FE177F46169558EF1D8301754A91A73A/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 448231 +- 448230 +Description: '' +GMNotes: '' +GUID: '664162' +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Agenda Deck +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.7247 + posY: 1.6639775 + posZ: 0.373300463 + rotX: 0.0168421548 + rotY: 179.9948 + rotZ: 0.08025636 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 3-B Point of No Return 4f81cf/Deck Encounter Deck 943b6c.yaml b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 3-B Point of No Return 4f81cf/Deck Encounter Deck 943b6c.yaml new file mode 100644 index 000000000..f0c251bd0 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 3-B Point of No Return 4f81cf/Deck Encounter Deck 943b6c.yaml @@ -0,0 +1,1347 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- 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 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: ab3719 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: 97416f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 274116 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2741': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Monster. Gug. + GMNotes: '' + GUID: 9fb152 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Hunting Ghast + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -9.249134 + posY: 1.502976 + posZ: 47.48697 + rotX: 0.0265449174 + rotY: 269.999969 + rotZ: 0.0138654774 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231715 + 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 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: ab3719 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Grasping Hands + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 12.0789223 + posY: 1.538257 + posZ: 6.558776 + rotX: 359.9207 + rotY: 270.0 + rotZ: 0.0130352853 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274115 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2741': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: ce95a3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Whispers of Hypnos + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.7077415 + posY: 1.49358606 + posZ: 64.2276154 + rotX: 0.0181054082 + rotY: 269.999969 + rotZ: -0.000729266962 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274117 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2741': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Gug. + GMNotes: '' + GUID: '605181' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Lumbering Gug + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -9.79604149 + posY: 1.33284783 + posZ: 50.77426 + rotX: 0.02123998 + rotY: 269.999756 + rotZ: 0.0140851894 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274115 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2741': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: 6476cc + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Whispers of Hypnos + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.70772433 + posY: 1.50589979 + posZ: 64.22764 + rotX: 0.0247761626 + rotY: 269.9997 + rotZ: 0.0151432147 + 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 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: 6e7cb8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 448414 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4484': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780749631103449151/FFAADF06C9BF9D1F4F3FE22D45CEBBB15D9B58CF/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Scheme. + GMNotes: '' + GUID: 9da9f5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Unexpected Ambush + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.24171162 + posY: 1.4822526 + posZ: 55.2845726 + rotX: 0.0141370408 + rotY: 269.983459 + rotZ: -0.000594281 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231715 + 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 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: 272ea4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Grasping Hands + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 11.5948715 + posY: 1.6933527 + posZ: 6.733804 + rotX: 359.940033 + rotY: 270.0 + rotZ: 359.9941 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 448414 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4484': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780749631103449151/FFAADF06C9BF9D1F4F3FE22D45CEBBB15D9B58CF/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Scheme. + GMNotes: '' + GUID: 1dc329 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Unexpected Ambush + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.21997952 + posY: 1.33694959 + posZ: 55.3146553 + rotX: 0.019837277 + rotY: 269.980835 + rotZ: 0.0155159635 + 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 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: f5c831 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 231713 + 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 + UniqueBack: false + Description: Humanoid. Monster. Ghoul. + GMNotes: '' + GUID: 30bb55 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ghoul Minion + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 11.6936331 + posY: 1.696078 + posZ: 13.6986961 + rotX: 359.923462 + rotY: 270.000183 + rotZ: 0.006271487 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 448412 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4484': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780749631103449151/FFAADF06C9BF9D1F4F3FE22D45CEBBB15D9B58CF/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: 009bed + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Taste of Lifeblood + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -5.232902 + posY: 1.4192245 + posZ: 58.0608 + rotX: 3.032046 + rotY: 270.067322 + rotZ: 0.04982918 + 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 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: 0f4202 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 274116 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2741': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Monster. Gug. + GMNotes: '' + GUID: 99845e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Hunting Ghast + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -9.24914 + posY: 1.33209109 + posZ: 47.4869652 + rotX: 0.0211359244 + rotY: 270.0 + rotZ: 0.0145950755 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 448413 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4484': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780749631103449151/FFAADF06C9BF9D1F4F3FE22D45CEBBB15D9B58CF/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: f776ef + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Lit by Death-Fire + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -6.300131 + posY: 1.33545625 + posZ: 55.4944038 + rotX: 0.0211658329 + rotY: 269.980621 + rotZ: 0.0111896861 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231713 + 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 + UniqueBack: false + Description: Humanoid. Monster. Ghoul. + GMNotes: '' + GUID: b87089 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ghoul Minion + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 11.6935387 + posY: 1.70997131 + posZ: 13.6987247 + rotX: 359.923828 + rotY: 270.0 + rotZ: 0.0162566788 + 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 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: 435a47 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: 6e7cb8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 274115 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2741': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: a3ada0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Whispers of Hypnos + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.70772815 + posY: 1.3390168 + posZ: 64.22763 + rotX: 0.0210467484 + rotY: 270.0 + rotZ: 0.0153855 + 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 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: 8af879 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 274116 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2741': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Monster. Gug. + GMNotes: '' + GUID: 4c2d5a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Hunting Ghast + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -9.249131 + posY: 1.50332248 + posZ: 47.48698 + rotX: 0.024901526 + rotY: 269.999664 + rotZ: 0.0150892623 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 448412 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4484': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780749631103449151/FFAADF06C9BF9D1F4F3FE22D45CEBBB15D9B58CF/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: adb449 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Taste of Lifeblood + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -5.314692 + posY: 1.5794512 + posZ: 57.7474937 + rotX: 2.3187778 + rotY: 269.9997 + rotZ: 0.07681012 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231713 + 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 + UniqueBack: false + Description: Humanoid. Monster. Ghoul. + GMNotes: '' + GUID: b87089 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ghoul Minion + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 12.0413847 + posY: 1.540466 + posZ: 13.7902546 + rotX: 359.920441 + rotY: 270.000244 + rotZ: 0.0148255695 + 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 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: c70601 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 231715 + 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 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: ab3719 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Grasping Hands + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 11.6057749 + posY: 1.707567 + posZ: 6.731648 + rotX: 359.9248 + rotY: 270.000153 + rotZ: 0.0111529948 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 448413 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4484': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780749631103449151/FFAADF06C9BF9D1F4F3FE22D45CEBBB15D9B58CF/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: '416545' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Lit by Death-Fire + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -6.217096 + posY: 1.48066461 + posZ: 55.18814 + rotX: 0.0280497633 + rotY: 269.98056 + rotZ: 0.007438132 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231714 + 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 + UniqueBack: false + Description: Humanoid. Monster. Ghoul. + GMNotes: '' + GUID: 99efa0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ravenous Ghoul + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 11.9229918 + posY: 1.70898592 + posZ: 13.9219513 + rotX: 359.952728 + rotY: 269.999939 + rotZ: 179.966141 + 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 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: ab3719 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' +CustomDeck: + '2317': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '2741': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '4484': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780749631103449151/FFAADF06C9BF9D1F4F3FE22D45CEBBB15D9B58CF/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 231716 +- 231718 +- 274116 +- 231715 +- 274115 +- 274117 +- 274115 +- 231719 +- 448414 +- 231715 +- 448414 +- 231718 +- 231713 +- 448412 +- 231717 +- 274116 +- 448413 +- 231713 +- 231716 +- 231719 +- 274115 +- 231719 +- 274116 +- 448412 +- 231713 +- 231717 +- 231715 +- 448413 +- 231714 +- 231716 +Description: '' +GMNotes: '' +GUID: 943b6c +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Encounter Deck +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.92770028 + posY: 1.77171 + posZ: 5.75710058 + rotX: 359.919739 + rotY: 270.0 + rotZ: 180.016815 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 4-A Where the Gods Dwell 185096.ttslua b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 4-A Where the Gods Dwell 185096.ttslua new file mode 100644 index 000000000..5534586ac --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 4-A Where the Gods Dwell 185096.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.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 \ No newline at end of file diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 4-A Where the Gods Dwell 185096.yaml b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 4-A Where the Gods Dwell 185096.yaml new file mode 100644 index 000000000..c67eb2aec --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 4-A Where the Gods Dwell 185096.yaml @@ -0,0 +1,87 @@ +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 4-A Where the Gods Dwell 185096/Deck Encounter Deck da60f6.yaml' +- !include 'Custom_Model_Bag 4-A Where the Gods Dwell 185096/Deck Agenda Deck 23f5d1.yaml' +- !include 'Custom_Model_Bag 4-A Where the Gods Dwell 185096/Deck Act Deck e549c9.yaml' +- !include 'Custom_Model_Bag 4-A Where the Gods Dwell 185096/Card Scenario f003bb.yaml' +- !include 'Custom_Model_Bag 4-A Where the Gods Dwell 185096/Custom_Tile Point of + No Return 3e86c2.yaml' +- !include 'Custom_Model_Bag 4-A Where the Gods Dwell 185096/Custom_Model_Bag Set-aside + c08e12.yaml' +- !include 'Custom_Model_Bag 4-A Where the Gods Dwell 185096/Card Plateau of Leng + d17e52.yaml' +- !include 'Custom_Model_Bag 4-A Where the Gods Dwell 185096/Custom_Tile 29c6d1.yaml' +- !include 'Custom_Model_Bag 4-A Where the Gods Dwell 185096/Custom_Tile d7defe.yaml' +- !include 'Custom_Model_Bag 4-A Where the Gods Dwell 185096/Card Monastery of Leng + 3b8e56.yaml' +- !include 'Custom_Model_Bag 4-A Where the Gods Dwell 185096/Card Cold Wastes 72c773.yaml' +- !include 'Custom_Model_Bag 4-A Where the Gods Dwell 185096/Custom_Tile 364766.yaml' +- !include 'Custom_Model_Bag 4-A Where the Gods Dwell 185096/Card Onyx Gates ecaabf.yaml' +- !include 'Custom_Model_Bag 4-A Where the Gods Dwell 185096/Custom_Tile 7234af.yaml' +- !include 'Custom_Model_Bag 4-A Where the Gods Dwell 185096/Card The Onyx Castle + 93e081.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/781876499695136018/EF2515B5569697B81A425766F80E14F70B48AD93/ + MaterialIndex: 3 + MeshURL: https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj + NormalURL: '' + TypeIndex: 6 +Description: The Dream Eaters +GMNotes: '' +GUID: '185096' +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Model_Bag 4-A Where the Gods Dwell 185096.ttslua' +LuaScriptState: '{"ml":{"23f5d1":{"lock":false,"pos":{"x":-2.7248,"y":1.6566,"z":0.3733},"rot":{"x":0.0168,"y":180,"z":0.0803}},"29c6d1":{"lock":false,"pos":{"x":-26.976,"y":1.6191,"z":-0.0342},"rot":{"x":0.0799,"y":90.0006,"z":359.9831}},"364766":{"lock":false,"pos":{"x":-33.4596,"y":1.6282,"z":-0.0121},"rot":{"x":0.0799,"y":90.0006,"z":359.9831}},"3b8e56":{"lock":false,"pos":{"x":-30.2242,"y":1.6976,"z":7.57},"rot":{"x":359.9201,"y":270.0013,"z":0.0169}},"3e86c2":{"lock":false,"pos":{"x":-3.5977,"y":1.5821,"z":-14.9872},"rot":{"x":359.9197,"y":269.978,"z":0.0169}},"7234af":{"lock":false,"pos":{"x":-36.7732,"y":1.6317,"z":-3.83},"rot":{"x":0.0169,"y":180.0141,"z":0.0799}},"72c773":{"lock":false,"pos":{"x":-30.2242,"y":1.6954,"z":-0.0301},"rot":{"x":359.9201,"y":270.0275,"z":0.0168}},"93e081":{"lock":false,"pos":{"x":-36.7733,"y":1.7022,"z":-7.7},"rot":{"x":359.9201,"y":270.0081,"z":0.0169}},"c08e12":{"lock":false,"pos":{"x":1.6964,"y":1.5583,"z":14.2789},"rot":{"x":359.9551,"y":224.998,"z":0.0687}},"d17e52":{"lock":false,"pos":{"x":-23.6765,"y":1.6862,"z":-0.03},"rot":{"x":359.9201,"y":270.0015,"z":0.0169}},"d7defe":{"lock":false,"pos":{"x":-30.2242,"y":1.6248,"z":3.86},"rot":{"x":0.0169,"y":180.0144,"z":0.0799}},"da60f6":{"lock":false,"pos":{"x":-3.9275,"y":1.7557,"z":5.7567},"rot":{"x":359.9197,"y":269.982,"z":180.0168}},"e549c9":{"lock":false,"pos":{"x":-2.6885,"y":1.6543,"z":-5.0486},"rot":{"x":0.0168,"y":179.9989,"z":0.0803}},"ecaabf":{"lock":false,"pos":{"x":-36.7731,"y":1.7045,"z":-0.03},"rot":{"x":359.9201,"y":270.0013,"z":0.0169}},"f003bb":{"lock":false,"pos":{"x":-3.9559,"y":1.6556,"z":-10.4412},"rot":{"x":359.9197,"y":269.9991,"z":0.0168}}}}' +MaterialIndex: -1 +MeshIndex: -1 +Name: Custom_Model_Bag +Nickname: '4-A: Where the Gods Dwell' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 12.3525715 + posY: 1.458132 + posZ: -21.051445 + rotX: 359.9201 + rotY: 270.0099 + rotZ: 0.0168601628 + scaleX: 2.21 + scaleY: 0.46 + scaleZ: 2.42 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 4-A Where the Gods Dwell 185096/Card Cold Wastes 72c773.yaml b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 4-A Where the Gods Dwell 185096/Card Cold Wastes 72c773.yaml new file mode 100644 index 000000000..a3c779a5a --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 4-A Where the Gods Dwell 185096/Card Cold Wastes 72c773.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 234726 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2347': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1016065725025781883/DDC7B603B5E571A152D76364CCF3155BB7BC8C6F/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025781079/EBC4A272423668544053A4ACD161A993E038255D/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Leng. +GMNotes: '' +GUID: 72c773 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Cold Wastes +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -30.2241726 + posY: 1.69535065 + posZ: -0.0301172044 + rotX: 359.9201 + rotY: 270.027466 + rotZ: 0.0168379955 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 4-A Where the Gods Dwell 185096/Card Monastery of Leng 3b8e56.yaml b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 4-A Where the Gods Dwell 185096/Card Monastery of Leng 3b8e56.yaml new file mode 100644 index 000000000..91cef796b --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 4-A Where the Gods Dwell 185096/Card Monastery of Leng 3b8e56.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 234727 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2347': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1016065725025781883/DDC7B603B5E571A152D76364CCF3155BB7BC8C6F/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025781079/EBC4A272423668544053A4ACD161A993E038255D/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Leng. +GMNotes: '' +GUID: 3b8e56 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Monastery of Leng +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -30.2241764 + posY: 1.69758856 + posZ: 7.569973 + rotX: 359.9201 + rotY: 270.001343 + rotZ: 0.0168742649 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 4-A Where the Gods Dwell 185096/Card Onyx Gates ecaabf.yaml b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 4-A Where the Gods Dwell 185096/Card Onyx Gates ecaabf.yaml new file mode 100644 index 000000000..efdd80958 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 4-A Where the Gods Dwell 185096/Card Onyx Gates ecaabf.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 234728 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2347': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1016065725025781883/DDC7B603B5E571A152D76364CCF3155BB7BC8C6F/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025781079/EBC4A272423668544053A4ACD161A993E038255D/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Leng. Kadath. +GMNotes: '' +GUID: ecaabf +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Onyx Gates +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -36.77311 + posY: 1.70448279 + posZ: -0.03002694 + rotX: 359.9201 + rotY: 270.001282 + rotZ: 0.0168744959 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 4-A Where the Gods Dwell 185096/Card Plateau of Leng d17e52.yaml b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 4-A Where the Gods Dwell 185096/Card Plateau of Leng d17e52.yaml new file mode 100644 index 000000000..486d33859 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 4-A Where the Gods Dwell 185096/Card Plateau of Leng d17e52.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 234725 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2347': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1016065725025781883/DDC7B603B5E571A152D76364CCF3155BB7BC8C6F/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025781079/EBC4A272423668544053A4ACD161A993E038255D/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Leng. +GMNotes: '' +GUID: d17e52 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Plateau of Leng +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -23.676548 + posY: 1.68622041 + posZ: -0.0299953 + rotX: 359.9201 + rotY: 270.0015 + rotZ: 0.0168742519 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 4-A Where the Gods Dwell 185096/Card Scenario f003bb.yaml b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 4-A Where the Gods Dwell 185096/Card Scenario f003bb.yaml new file mode 100644 index 000000000..b4b62090c --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 4-A Where the Gods Dwell 185096/Card Scenario f003bb.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 234724 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2347': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1016065725025781883/DDC7B603B5E571A152D76364CCF3155BB7BC8C6F/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025781079/EBC4A272423668544053A4ACD161A993E038255D/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Where the Gods Dwell +GMNotes: '' +GUID: f003bb +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Scenario +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.95588636 + posY: 1.655648 + posZ: -10.4411888 + rotX: 359.919739 + rotY: 269.9991 + rotZ: 0.0168422163 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 4-A Where the Gods Dwell 185096/Card The Onyx Castle 93e081.yaml b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 4-A Where the Gods Dwell 185096/Card The Onyx Castle 93e081.yaml new file mode 100644 index 000000000..4fb775d12 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 4-A Where the Gods Dwell 185096/Card The Onyx Castle 93e081.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 234729 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2347': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1016065725025781883/DDC7B603B5E571A152D76364CCF3155BB7BC8C6F/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025781079/EBC4A272423668544053A4ACD161A993E038255D/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Kadath. +GMNotes: '' +GUID: 93e081 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: The Onyx Castle +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -36.7732849 + posY: 1.70222449 + posZ: -7.699998 + rotX: 359.9201 + rotY: 270.008057 + rotZ: 0.01686508 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 4-A Where the Gods Dwell 185096/Custom_Model_Bag Set-aside c08e12.yaml b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 4-A Where the Gods Dwell 185096/Custom_Model_Bag Set-aside c08e12.yaml new file mode 100644 index 000000000..2af838ef2 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 4-A Where the Gods Dwell 185096/Custom_Model_Bag Set-aside c08e12.yaml @@ -0,0 +1,62 @@ +Autoraise: true +ColorDiffuse: + b: 0.02148666 + g: 0.00100758043 + r: 0.02148666 +ContainedObjects: +- !include 'Custom_Model_Bag Set-aside c08e12/Card The Crawling Mist aa76f7.yaml' +- !include 'Custom_Model_Bag Set-aside c08e12/Deck Myriad Forms 8ffd3f.yaml' +- !include 'Custom_Model_Bag Set-aside c08e12/Deck Whispering Chaos 6bea62.yaml' +- !include 'Custom_Model_Bag Set-aside c08e12/Deck Nyarlathoteps 957ea3.yaml' +- !include 'Custom_Model_Bag Set-aside c08e12/Card High Priest Not to Be Described + 8b17a1.yaml' +- !include 'Custom_Model_Bag Set-aside c08e12/Deck Forsaken Towers cdcb95.yaml' +CustomMesh: + CastShadows: true + ColliderURL: '' + Convex: true + DiffuseURL: http://i.imgur.com/yVhOLYs.jpg + MaterialIndex: 1 + MeshURL: https://paste.ee/r/ylQzQ + NormalURL: http://i.imgur.com/f1ogHo6.jpg + TypeIndex: 6 +Description: '' +GMNotes: '' +GUID: c08e12 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +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.6963532 + posY: 1.558317 + posZ: 14.2788572 + rotX: 359.955139 + rotY: 224.998 + rotZ: 0.0686737448 + scaleX: 2.0 + scaleY: 2.0 + scaleZ: 2.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 4-A Where the Gods Dwell 185096/Custom_Model_Bag Set-aside c08e12/Card High Priest Not to Be Described 8b17a1.yaml b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 4-A Where the Gods Dwell 185096/Custom_Model_Bag Set-aside c08e12/Card High Priest Not to Be Described 8b17a1.yaml new file mode 100644 index 000000000..ea9334f07 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 4-A Where the Gods Dwell 185096/Custom_Model_Bag Set-aside c08e12/Card High Priest Not to Be Described 8b17a1.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 234625 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2346': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025770470/7C77423FFA657FB6B5937C80D6813C24E2D0E88C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: Agent of the Other Gods +GMNotes: '' +GUID: 8b17a1 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: High Priest Not to Be Described +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -15.5584927 + posY: 3.63897514 + posZ: 16.35194 + rotX: 359.93277 + rotY: 269.9998 + rotZ: 0.0170828868 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 4-A Where the Gods Dwell 185096/Custom_Model_Bag Set-aside c08e12/Card The Crawling Mist aa76f7.yaml b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 4-A Where the Gods Dwell 185096/Custom_Model_Bag Set-aside c08e12/Card The Crawling Mist aa76f7.yaml new file mode 100644 index 000000000..25788b5b3 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 4-A Where the Gods Dwell 185096/Custom_Model_Bag Set-aside c08e12/Card The Crawling Mist aa76f7.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 274111 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2741': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: Monster. Avatar. +GMNotes: '' +GUID: aa76f7 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: The Crawling Mist +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -13.6929073 + posY: 3.63578987 + posZ: 15.9609556 + rotX: 359.925476 + rotY: 270.021118 + rotZ: 0.02446339 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 4-A Where the Gods Dwell 185096/Custom_Model_Bag Set-aside c08e12/Deck Forsaken Towers cdcb95.yaml b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 4-A Where the Gods Dwell 185096/Custom_Model_Bag Set-aside c08e12/Deck Forsaken Towers cdcb95.yaml new file mode 100644 index 000000000..094f24670 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 4-A Where the Gods Dwell 185096/Custom_Model_Bag Set-aside c08e12/Deck Forsaken Towers cdcb95.yaml @@ -0,0 +1,301 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 234735 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2347': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1016065725025781883/DDC7B603B5E571A152D76364CCF3155BB7BC8C6F/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025781079/EBC4A272423668544053A4ACD161A993E038255D/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Kadath. + GMNotes: '' + GUID: 11687a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Forsaken Tower + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.02258015 + posY: 1.74255073 + posZ: 11.2991524 + rotX: -1.55280086e-05 + rotY: 270.0002 + rotZ: 181.4322 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234734 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2347': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1016065725025781883/DDC7B603B5E571A152D76364CCF3155BB7BC8C6F/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025781079/EBC4A272423668544053A4ACD161A993E038255D/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Kadath. + GMNotes: '' + GUID: d749ed + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Forsaken Tower + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 1.75518823 + posY: 1.71161091 + posZ: 11.5014286 + rotX: 359.9759 + rotY: 270.000458 + rotZ: 180.14238 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234733 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2347': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1016065725025781883/DDC7B603B5E571A152D76364CCF3155BB7BC8C6F/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025781079/EBC4A272423668544053A4ACD161A993E038255D/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Kadath. + GMNotes: '' + GUID: 983fd2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Forsaken Tower + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.0772686 + posY: 1.70882714 + posZ: 11.3180952 + rotX: 359.920532 + rotY: 269.9964 + rotZ: 179.991867 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234732 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2347': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1016065725025781883/DDC7B603B5E571A152D76364CCF3155BB7BC8C6F/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025781079/EBC4A272423668544053A4ACD161A993E038255D/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Kadath. + GMNotes: '' + GUID: '450779' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Forsaken Tower + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.016233 + posY: 1.74967539 + posZ: 11.5280228 + rotX: -9.711675e-06 + rotY: 270.000122 + rotZ: 181.0138 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234731 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2347': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1016065725025781883/DDC7B603B5E571A152D76364CCF3155BB7BC8C6F/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025781079/EBC4A272423668544053A4ACD161A993E038255D/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Kadath. + GMNotes: '' + GUID: 13f5e3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Forsaken Tower + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 1.57203829 + posY: 1.743926 + posZ: 11.5793247 + rotX: 359.930817 + rotY: 270.042236 + rotZ: 182.003464 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234730 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2347': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1016065725025781883/DDC7B603B5E571A152D76364CCF3155BB7BC8C6F/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025781079/EBC4A272423668544053A4ACD161A993E038255D/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Kadath. + GMNotes: '' + GUID: 3c7586 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Forsaken Tower + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -19.2113914 + posY: 1.7386744 + posZ: 18.6668644 + rotX: 359.9396 + rotY: 270.0362 + rotZ: 0.002979445 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2347': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1016065725025781883/DDC7B603B5E571A152D76364CCF3155BB7BC8C6F/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025781079/EBC4A272423668544053A4ACD161A993E038255D/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 234735 +- 234734 +- 234733 +- 234732 +- 234731 +- 234730 +Description: '' +GMNotes: '' +GUID: cdcb95 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Forsaken Towers +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -14.9823351 + posY: 3.63792014 + posZ: 16.0282364 + rotX: 359.922119 + rotY: 270.004578 + rotZ: 0.0167148858 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 4-A Where the Gods Dwell 185096/Custom_Model_Bag Set-aside c08e12/Deck Myriad Forms 8ffd3f.yaml b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 4-A Where the Gods Dwell 185096/Custom_Model_Bag Set-aside c08e12/Deck Myriad Forms 8ffd3f.yaml new file mode 100644 index 000000000..4632be12b --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 4-A Where the Gods Dwell 185096/Custom_Model_Bag Set-aside c08e12/Deck Myriad Forms 8ffd3f.yaml @@ -0,0 +1,129 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 234632 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2346': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025770470/7C77423FFA657FB6B5937C80D6813C24E2D0E88C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Power. + GMNotes: '' + GUID: 1cb90d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Myriad Forms + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.32917333 + posY: 1.55092871 + posZ: 8.001244 + rotX: 359.9181 + rotY: 270.30838 + rotZ: 0.0161751453 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234632 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2346': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025770470/7C77423FFA657FB6B5937C80D6813C24E2D0E88C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Power. + GMNotes: '' + GUID: b34663 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Myriad Forms + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.34916377 + posY: 1.70044243 + posZ: 8.128719 + rotX: 359.924255 + rotY: 269.985535 + rotZ: 0.05793682 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2346': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025770470/7C77423FFA657FB6B5937C80D6813C24E2D0E88C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 234632 +- 234632 +Description: '' +GMNotes: '' +GUID: 8ffd3f +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Myriad Forms +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -14.6439238 + posY: 3.64394832 + posZ: 15.6710043 + rotX: 359.925018 + rotY: 269.951935 + rotZ: 0.040865615 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 4-A Where the Gods Dwell 185096/Custom_Model_Bag Set-aside c08e12/Deck Nyarlathoteps 957ea3.yaml b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 4-A Where the Gods Dwell 185096/Custom_Model_Bag Set-aside c08e12/Deck Nyarlathoteps 957ea3.yaml new file mode 100644 index 000000000..3e4602dd7 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 4-A Where the Gods Dwell 185096/Custom_Model_Bag Set-aside c08e12/Deck Nyarlathoteps 957ea3.yaml @@ -0,0 +1,258 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 234624 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2346': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025770470/7C77423FFA657FB6B5937C80D6813C24E2D0E88C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Stalker Among the Stars + GMNotes: '' + GUID: 972fec + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Nyarlathotep + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 1.59032273 + posY: 1.71114 + posZ: 10.1137714 + rotX: 359.9768 + rotY: 269.999084 + rotZ: 180.141754 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234623 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2346': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025770470/7C77423FFA657FB6B5937C80D6813C24E2D0E88C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: God of a Thousand Forms + GMNotes: '' + GUID: d721c2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Nyarlathotep + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 1.81655526 + posY: 1.74129629 + posZ: 10.4229708 + rotX: 359.92392 + rotY: 270.01947 + rotZ: 181.771057 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234622 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2346': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025770470/7C77423FFA657FB6B5937C80D6813C24E2D0E88C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Messenger of the Outer Gods + GMNotes: '' + GUID: 0f7c12 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Nyarlathotep + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.28367186 + posY: 1.75666821 + posZ: 10.5099068 + rotX: 359.9914 + rotY: 270.0055 + rotZ: 181.717712 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234621 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2346': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025770470/7C77423FFA657FB6B5937C80D6813C24E2D0E88C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: The Faceless Whisperer + GMNotes: '' + GUID: 8be848 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Nyarlathotep + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 1.51166916 + posY: 1.705699 + posZ: 10.2204876 + rotX: 359.926361 + rotY: 270.014221 + rotZ: 180.007156 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234620 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2346': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025770470/7C77423FFA657FB6B5937C80D6813C24E2D0E88C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: The Crawling Chaos + GMNotes: '' + GUID: 8b17a1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Nyarlathotep + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 1.88532555 + posY: 1.55641615 + posZ: 10.1746874 + rotX: 359.915924 + rotY: 270.004852 + rotZ: 180.015762 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2346': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025770470/7C77423FFA657FB6B5937C80D6813C24E2D0E88C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 234624 +- 234623 +- 234622 +- 234621 +- 234620 +Description: '' +GMNotes: '' +GUID: 957ea3 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Nyarlathoteps +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -13.6202126 + posY: 3.6342957 + posZ: 16.078228 + rotX: 359.92395 + rotY: 269.967834 + rotZ: 0.0172034018 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 4-A Where the Gods Dwell 185096/Custom_Model_Bag Set-aside c08e12/Deck Whispering Chaos 6bea62.yaml b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 4-A Where the Gods Dwell 185096/Custom_Model_Bag Set-aside c08e12/Deck Whispering Chaos 6bea62.yaml new file mode 100644 index 000000000..65e65bb4a --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 4-A Where the Gods Dwell 185096/Custom_Model_Bag Set-aside c08e12/Deck Whispering Chaos 6bea62.yaml @@ -0,0 +1,215 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 234631 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2346': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025770470/7C77423FFA657FB6B5937C80D6813C24E2D0E88C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Power. + GMNotes: '' + GUID: 5fb187 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Whispering Chaos (West) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -1.97101557 + posY: 1.71412408 + posZ: 7.06639051 + rotX: 359.937531 + rotY: 270.000946 + rotZ: 180.035278 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234630 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2346': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025770470/7C77423FFA657FB6B5937C80D6813C24E2D0E88C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Power. + GMNotes: '' + GUID: b8a1e4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Whispering Chaos (South) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.4170475 + posY: 1.7283392 + posZ: 6.5700264 + rotX: 359.9341 + rotY: 269.993225 + rotZ: 180.032532 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234629 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2346': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025770470/7C77423FFA657FB6B5937C80D6813C24E2D0E88C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Power. + GMNotes: '' + GUID: bad74a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Whispering Chaos (East) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.44740915 + posY: 1.71045923 + posZ: 6.740841 + rotX: 359.931427 + rotY: 270.0095 + rotZ: 180.011017 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234628 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2346': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025770470/7C77423FFA657FB6B5937C80D6813C24E2D0E88C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Power. + GMNotes: '' + GUID: 6e73af + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Whispering Chaos (North) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.3450408 + posY: 1.561251 + posZ: 6.693541 + rotX: 359.920776 + rotY: 270.0068 + rotZ: 180.016266 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2346': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025770470/7C77423FFA657FB6B5937C80D6813C24E2D0E88C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 234631 +- 234630 +- 234629 +- 234628 +Description: '' +GMNotes: '' +GUID: 6bea62 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Whispering Chaos +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -14.8206491 + posY: 3.6349225 + posZ: 16.052515 + rotX: 359.914856 + rotY: 270.001343 + rotZ: 0.0135078868 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 4-A Where the Gods Dwell 185096/Custom_Tile 29c6d1.yaml b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 4-A Where the Gods Dwell 185096/Custom_Tile 29c6d1.yaml new file mode 100644 index 000000000..263473244 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 4-A Where the Gods Dwell 185096/Custom_Tile 29c6d1.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 29c6d1 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.976 + posY: 1.61910665 + posZ: -0.0342008136 + rotX: 0.07989463 + rotY: 90.00057 + rotZ: 359.9831 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 4-A Where the Gods Dwell 185096/Custom_Tile 364766.yaml b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 4-A Where the Gods Dwell 185096/Custom_Tile 364766.yaml new file mode 100644 index 000000000..777ae1249 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 4-A Where the Gods Dwell 185096/Custom_Tile 364766.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: '364766' +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.4596 + posY: 1.628154 + posZ: -0.0121008549 + rotX: 0.07989458 + rotY: 90.00059 + rotZ: 359.9831 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 4-A Where the Gods Dwell 185096/Custom_Tile 7234af.yaml b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 4-A Where the Gods Dwell 185096/Custom_Tile 7234af.yaml new file mode 100644 index 000000000..f795d420c --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 4-A Where the Gods Dwell 185096/Custom_Tile 7234af.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 7234af +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.63165021 + posZ: -3.83000016 + rotX: 0.0168522038 + rotY: 180.014084 + rotZ: 0.07994394 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 4-A Where the Gods Dwell 185096/Custom_Tile d7defe.yaml b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 4-A Where the Gods Dwell 185096/Custom_Tile d7defe.yaml new file mode 100644 index 000000000..c447ea249 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 4-A Where the Gods Dwell 185096/Custom_Tile d7defe.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: d7defe +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.62478244 + posZ: 3.86000133 + rotX: 0.0168518238 + rotY: 180.014359 + rotZ: 0.07994374 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 4-A Where the Gods Dwell 185096/Custom_Tile Point of No Return 3e86c2.ttslua b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 4-A Where the Gods Dwell 185096/Custom_Tile Point of No Return 3e86c2.ttslua new file mode 100644 index 000000000..6e4f3527f --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 4-A Where the Gods Dwell 185096/Custom_Tile Point of No Return 3e86c2.ttslua @@ -0,0 +1,25 @@ +name = 'Where the Gods Dwell' + +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 + +function standaloneClick() + Global.call('fillContainer', {object=self, key=name, mode='standalone'}) +end diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 4-A Where the Gods Dwell 185096/Custom_Tile Point of No Return 3e86c2.yaml b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 4-A Where the Gods Dwell 185096/Custom_Tile Point of No Return 3e86c2.yaml new file mode 100644 index 000000000..63eda6707 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 4-A Where the Gods Dwell 185096/Custom_Tile Point of No Return 3e86c2.yaml @@ -0,0 +1,42 @@ +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: http://cloud-3.steamusercontent.com/ugc/949588657194710961/D864BCCCC1C811EC7F0AED69D1C30C678D3D9FC9/ + ImageURL: http://cloud-3.steamusercontent.com/ugc/965354846165100486/3DC8FCEF364B30758B09EF96AF9458F2B8E64D56/ + WidthScale: 0.0 +Description: click to set chaos token difficulty +GMNotes: '' +GUID: 3e86c2 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Tile Point of No Return 3e86c2.ttslua' +LuaScriptState: '' +Name: Custom_Tile +Nickname: Point of No Return +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.59765649 + posY: 1.58209693 + posZ: -14.98716 + rotX: 359.919739 + rotY: 269.977966 + rotZ: 0.01686866 + scaleX: 2.2 + scaleY: 1.0 + scaleZ: 2.2 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 4-A Where the Gods Dwell 185096/Deck Act Deck e549c9.yaml b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 4-A Where the Gods Dwell 185096/Deck Act Deck e549c9.yaml new file mode 100644 index 000000000..f01634db3 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 4-A Where the Gods Dwell 185096/Deck Act Deck e549c9.yaml @@ -0,0 +1,258 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 234543 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2345': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1016065725025759245/C44D15D425A11A50C4EBC0956DAAD13BFD8282AA/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025757858/C291D7AC5E6D9A6B2497084DCCFC1623FFBA4FE4/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: 'Act 5 ' + GMNotes: '' + GUID: 0dcc95 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Dream-Eaters + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.398561 + posY: 1.71315813 + posZ: 11.8457737 + rotX: 0.0138844633 + rotY: 180.000687 + rotZ: 180.070251 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234542 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2345': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1016065725025759245/C44D15D425A11A50C4EBC0956DAAD13BFD8282AA/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025757858/C291D7AC5E6D9A6B2497084DCCFC1623FFBA4FE4/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 4 + GMNotes: '' + GUID: d2e4db + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Truth and Lies + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -1.73794353 + posY: 1.71442127 + posZ: 12.1403866 + rotX: 0.0123398965 + rotY: 179.998535 + rotZ: 180.059921 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234541 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2345': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1016065725025759245/C44D15D425A11A50C4EBC0956DAAD13BFD8282AA/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025757858/C291D7AC5E6D9A6B2497084DCCFC1623FFBA4FE4/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 3 + GMNotes: '' + GUID: 3de681 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Beyond Dreams + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.21234441 + posY: 1.72920561 + posZ: 11.8906612 + rotX: 0.0131380754 + rotY: 180.000061 + rotZ: 180.093063 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234540 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2345': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1016065725025759245/C44D15D425A11A50C4EBC0956DAAD13BFD8282AA/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025757858/C291D7AC5E6D9A6B2497084DCCFC1623FFBA4FE4/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 2 + GMNotes: '' + GUID: 8b429f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Thing in the Robes + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -1.64583027 + posY: 1.711319 + posZ: 12.1371679 + rotX: 0.00669722445 + rotY: 179.986816 + rotZ: 180.095688 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234539 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2345': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1016065725025759245/C44D15D425A11A50C4EBC0956DAAD13BFD8282AA/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025757858/C291D7AC5E6D9A6B2497084DCCFC1623FFBA4FE4/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 1 + GMNotes: '' + GUID: 75881e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Journey Through the Cold Wastes + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.20941448 + posY: 1.71010542 + posZ: 12.2677374 + rotX: 0.0132873552 + rotY: 179.999908 + rotZ: 0.0633311346 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2345': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1016065725025759245/C44D15D425A11A50C4EBC0956DAAD13BFD8282AA/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025757858/C291D7AC5E6D9A6B2497084DCCFC1623FFBA4FE4/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 234543 +- 234542 +- 234541 +- 234540 +- 234539 +Description: '' +GMNotes: '' +GUID: e549c9 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Act Deck +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.68848658 + posY: 1.654325 + posZ: -5.04855156 + rotX: 0.01683662 + rotY: 179.998886 + rotZ: 0.08025731 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 4-A Where the Gods Dwell 185096/Deck Agenda Deck 23f5d1.yaml b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 4-A Where the Gods Dwell 185096/Deck Agenda Deck 23f5d1.yaml new file mode 100644 index 000000000..38cea107c --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 4-A Where the Gods Dwell 185096/Deck Agenda Deck 23f5d1.yaml @@ -0,0 +1,172 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 234538 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2345': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1016065725025759245/C44D15D425A11A50C4EBC0956DAAD13BFD8282AA/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025757858/C291D7AC5E6D9A6B2497084DCCFC1623FFBA4FE4/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: 'Agenda 3 ' + GMNotes: '' + GUID: d451c6 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Chaos Incarnate + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 1.5129416 + posY: 1.553389 + posZ: 7.755346 + rotX: 0.0184581224 + rotY: 178.9231 + rotZ: 0.0790349543 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234537 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2345': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1016065725025759245/C44D15D425A11A50C4EBC0956DAAD13BFD8282AA/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025757858/C291D7AC5E6D9A6B2497084DCCFC1623FFBA4FE4/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 2 + GMNotes: '' + GUID: bdb299 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Shape of Chaos + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 1.56102264 + posY: 1.70188582 + posZ: 7.50367737 + rotX: 0.0187433437 + rotY: 180.004852 + rotZ: 0.07948507 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234536 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2345': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1016065725025759245/C44D15D425A11A50C4EBC0956DAAD13BFD8282AA/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025757858/C291D7AC5E6D9A6B2497084DCCFC1623FFBA4FE4/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 1 + GMNotes: '' + GUID: 75881e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Eye of Chaos + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 1.75776863 + posY: 1.71890879 + posZ: 7.4334774 + rotX: 0.01735614 + rotY: 179.9811 + rotZ: 0.0797196552 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2345': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1016065725025759245/C44D15D425A11A50C4EBC0956DAAD13BFD8282AA/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025757858/C291D7AC5E6D9A6B2497084DCCFC1623FFBA4FE4/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 234538 +- 234537 +- 234536 +Description: '' +GMNotes: '' +GUID: 23f5d1 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Agenda Deck +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.72475362 + posY: 1.65664124 + posZ: 0.373331547 + rotX: 0.0168350041 + rotY: 180.0 + rotZ: 0.08025765 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 4-A Where the Gods Dwell 185096/Deck Encounter Deck da60f6.yaml b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 4-A Where the Gods Dwell 185096/Deck Encounter Deck da60f6.yaml new file mode 100644 index 000000000..353a34783 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 4-A Where the Gods Dwell 185096/Deck Encounter Deck da60f6.yaml @@ -0,0 +1,1218 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 234635 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2346': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025770470/7C77423FFA657FB6B5937C80D6813C24E2D0E88C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Curse. + GMNotes: '' + GUID: 4b40bb + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Restless Journey (Lies) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 23.3701916 + posY: 1.93367982 + posZ: -4.36128855 + rotX: 359.921326 + rotY: 270.0052 + rotZ: 180.000824 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274119 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2741': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: e64ec2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Somniphobia + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.10714579 + posY: 1.85911262 + posZ: 15.1832485 + rotX: 359.923279 + rotY: 270.0094 + rotZ: 180.0092 + 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 + UniqueBack: false + Description: Humanoid. Cultist. + GMNotes: '' + GUID: 4911f2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Acolyte + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -15.3297215 + posY: 1.77588809 + posZ: 15.9645157 + rotX: 0.07387834 + rotY: 269.998474 + rotZ: 359.992645 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234634 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2346': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025770470/7C77423FFA657FB6B5937C80D6813C24E2D0E88C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Curse. + GMNotes: '' + GUID: 9cc2c5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Restless Journey (Hardship) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 24.822422 + posY: 1.92204416 + posZ: -4.675362 + rotX: 359.9141 + rotY: 269.997925 + rotZ: 180.008926 + 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 + UniqueBack: false + Description: Humanoid. Cultist. + GMNotes: '' + GUID: ab3719 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Acolyte + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.92770767 + posY: 1.97732818 + posZ: 5.75714731 + rotX: 359.9905 + rotY: 269.9906 + rotZ: 180.041077 + 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 + UniqueBack: false + Description: Humanoid. Cultist. + GMNotes: '' + GUID: 50fdc5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Acolyte + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -15.3295956 + posY: 1.62976587 + posZ: 15.9645061 + rotX: 0.0716057643 + rotY: 270.000061 + rotZ: 359.982727 + 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 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: d63054 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Mysterious Chanting + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -14.9937792 + posY: 1.57623422 + posZ: 7.191085 + rotX: 359.920227 + rotY: 270.005066 + rotZ: 0.01624975 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234633 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2346': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025770470/7C77423FFA657FB6B5937C80D6813C24E2D0E88C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Curse. + GMNotes: '' + GUID: 8b17a1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Restless Journey (Fallacy) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 24.3455772 + posY: 1.9130013 + posZ: -4.31537247 + rotX: 359.942444 + rotY: 270.0401 + rotZ: 179.9737 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274120 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2741': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Curse. + GMNotes: '' + GUID: c9a81c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Deeper Slumber + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -7.43135548 + posY: 1.48793566 + posZ: 50.2434 + rotX: 0.0139066791 + rotY: 269.999817 + rotZ: -0.00134133862 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234636 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2346': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025770470/7C77423FFA657FB6B5937C80D6813C24E2D0E88C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Curse. + GMNotes: '' + GUID: d4845c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Abandoned by the Gods + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 23.94412 + posY: 1.95221329 + posZ: -4.00885868 + rotX: 359.9371 + rotY: 270.019684 + rotZ: 179.997742 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274119 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2741': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: bdd705 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Somniphobia + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.363955 + posY: 1.4883889 + posZ: 46.8831024 + rotX: 0.0292372759 + rotY: 269.999878 + rotZ: 0.009698411 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274118 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2741': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Curse. + GMNotes: '' + GUID: 8af23c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dreamer's Curse + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.55991268 + posY: 1.3354677 + posZ: 50.66423 + rotX: 0.0210230164 + rotY: 269.999969 + rotZ: 0.015651783 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274115 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2741': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: ce95a3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Whispers of Hypnos + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.7077415 + posY: 1.49358606 + posZ: 64.2276154 + rotX: 0.0181054082 + rotY: 269.999969 + rotZ: -0.000729266962 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234627 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2346': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025770470/7C77423FFA657FB6B5937C80D6813C24E2D0E88C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Cultist. Servitor. + GMNotes: '' + GUID: 0eece1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Liar with No Face + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 4.646768 + posY: 1.718759 + posZ: 10.0789881 + rotX: 359.9391 + rotY: 270.038574 + rotZ: 180.006317 + 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 + UniqueBack: false + Description: Humanoid. Cultist. + GMNotes: '' + GUID: d36612 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Wizard of the Order + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -15.1335211 + posY: 1.7306242 + posZ: 15.1695614 + rotX: 359.933441 + rotY: 269.998932 + rotZ: 180.028931 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274115 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2741': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: 6476cc + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Whispers of Hypnos + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.70772433 + posY: 1.50589979 + posZ: 64.22764 + rotX: 0.0247761626 + rotY: 269.9997 + rotZ: 0.0151432147 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234626 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2346': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025770470/7C77423FFA657FB6B5937C80D6813C24E2D0E88C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. + GMNotes: '' + GUID: f34504 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dhole of the Wastes + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 4.822001 + posY: 1.55233145 + posZ: 10.2153893 + rotX: 359.920135 + rotY: 270.001129 + rotZ: 180.016861 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274115 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2741': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: a3ada0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Whispers of Hypnos + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.70772815 + posY: 1.3390168 + posZ: 64.22763 + rotX: 0.0210467484 + rotY: 270.0 + rotZ: 0.0153855 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274120 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2741': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Curse. + GMNotes: '' + GUID: 07cb83 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Deeper Slumber + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -7.64724255 + posY: 1.33347023 + posZ: 50.15231 + rotX: 0.021022873 + rotY: 269.999847 + rotZ: 0.0156522952 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274113 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2741': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: 48601c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Law of 'Ygiroth (Discord) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -1.349257 + posY: 1.33509922 + posZ: 56.99563 + rotX: 0.04734984 + rotY: 270.0003 + rotZ: 359.83844 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234627 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2346': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025770470/7C77423FFA657FB6B5937C80D6813C24E2D0E88C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Cultist. Servitor. + GMNotes: '' + GUID: 82b246 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Liar with No Face + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 4.83890724 + posY: 1.7200079 + posZ: 10.2753181 + rotX: -1.627506e-05 + rotY: 270.000183 + rotZ: 180.666824 + 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 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: b347d1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Mysterious Chanting + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -15.1765862 + posY: 1.7388649 + posZ: 7.12856245 + rotX: 359.9205 + rotY: 270.005066 + rotZ: 0.011837706 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274112 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2741': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: fc58cb + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Law of 'Ygiroth (Chaos) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -0.8192207 + posY: 1.47842848 + posZ: 56.2326355 + rotX: 359.92807 + rotY: 269.996246 + rotZ: 0.356809825 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234627 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2346': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025770470/7C77423FFA657FB6B5937C80D6813C24E2D0E88C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Cultist. Servitor. + GMNotes: '' + GUID: 573f55 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Liar with No Face + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.92658448 + posY: 1.92084217 + posZ: 5.760205 + rotX: 359.227783 + rotY: 269.9492 + rotZ: 177.46312 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234636 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2346': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025770470/7C77423FFA657FB6B5937C80D6813C24E2D0E88C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Curse. + GMNotes: '' + GUID: d4845c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Abandoned by the Gods + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 23.7621918 + posY: 1.94272566 + posZ: -4.18574238 + rotX: 359.9617 + rotY: 269.975922 + rotZ: 180.0185 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274118 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2741': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Curse. + GMNotes: '' + GUID: dd39c6 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dreamer's Curse + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.34402561 + posY: 1.48993313 + posZ: 50.7553253 + rotX: 0.0139070377 + rotY: 269.999969 + rotZ: -0.00134107959 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274114 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2741': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: bf7d6b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Law of 'Ygiroth (Pandemonium) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -0.465582937 + posY: 1.62316334 + posZ: 55.9808464 + rotX: 359.928467 + rotY: 269.997772 + rotZ: 0.4196703 + 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 + UniqueBack: false + '2346': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025770470/7C77423FFA657FB6B5937C80D6813C24E2D0E88C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '2741': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 234635 +- 274119 +- 231722 +- 234634 +- 231722 +- 231722 +- 231724 +- 234633 +- 274120 +- 234636 +- 274119 +- 274118 +- 274115 +- 234627 +- 231723 +- 274115 +- 234626 +- 274115 +- 274120 +- 274113 +- 234627 +- 231724 +- 274112 +- 234627 +- 234636 +- 274118 +- 274114 +Description: '' +GMNotes: '' +GUID: da60f6 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Encounter Deck +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.92748618 + posY: 1.75572109 + posZ: 5.75669432 + rotX: 359.919739 + rotY: 269.982 + rotZ: 180.016846 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 4-B Weaver of the Cosmos e14c76.ttslua b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 4-B Weaver of the Cosmos e14c76.ttslua new file mode 100644 index 000000000..54d591927 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 4-B Weaver of the Cosmos e14c76.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.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 Dream-Eaters 0240d0/Custom_Model_Bag 4-B Weaver of the Cosmos e14c76.yaml b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 4-B Weaver of the Cosmos e14c76.yaml new file mode 100644 index 000000000..2389aa39d --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 4-B Weaver of the Cosmos e14c76.yaml @@ -0,0 +1,81 @@ +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 4-B Weaver of the Cosmos e14c76/Card 01500b.yaml' +- !include 'Custom_Model_Bag 4-B Weaver of the Cosmos e14c76/Custom_Model_Bag Set-aside + 376a06.yaml' +- !include 'Custom_Model_Bag 4-B Weaver of the Cosmos e14c76/Deck The Great Web 387d55.yaml' +- !include 'Custom_Model_Bag 4-B Weaver of the Cosmos e14c76/Card Scenario 43f634.yaml' +- !include 'Custom_Model_Bag 4-B Weaver of the Cosmos e14c76/Deck Agenda Deck 6a8547.yaml' +- !include 'Custom_Model_Bag 4-B Weaver of the Cosmos e14c76/Custom_Tile 7234af.yaml' +- !include 'Custom_Model_Bag 4-B Weaver of the Cosmos e14c76/Custom_Tile 7b90b5.yaml' +- !include 'Custom_Model_Bag 4-B Weaver of the Cosmos e14c76/Card 8d0101.yaml' +- !include 'Custom_Model_Bag 4-B Weaver of the Cosmos e14c76/Custom_Tile 98f205.yaml' +- !include 'Custom_Model_Bag 4-B Weaver of the Cosmos e14c76/Deck Encounter Deck aec151.yaml' +- !include 'Custom_Model_Bag 4-B Weaver of the Cosmos e14c76/Custom_Tile Weaver of + the Cosmos bbb70a.yaml' +- !include 'Custom_Model_Bag 4-B Weaver of the Cosmos e14c76/Deck Act Deck f7f920.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/1016065725025748077/974B3E099D5428A651584B0375B814653CB9337C/ + MaterialIndex: 3 + MeshURL: https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj + NormalURL: '' + TypeIndex: 6 +Description: The Dream Eaters +GMNotes: '' +GUID: e14c76 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Model_Bag 4-B Weaver of the Cosmos e14c76.ttslua' +LuaScriptState: '{"ml":{"01500b":{"lock":false,"pos":{"x":-2.916,"y":1.5679,"z":-37.5365},"rot":{"x":-0.0001,"y":269.9963,"z":179.8165}},"376a06":{"lock":false,"pos":{"x":1.696,"y":1.5583,"z":14.2784},"rot":{"x":359.9551,"y":224.998,"z":0.0687}},"387d55":{"lock":false,"pos":{"x":-30.2242,"y":1.7074,"z":-0.0301},"rot":{"x":359.9201,"y":269.9999,"z":0.0169}},"43f634":{"lock":false,"pos":{"x":-3.9559,"y":1.6556,"z":-10.4412},"rot":{"x":359.9197,"y":270.0001,"z":0.0168}},"6a8547":{"lock":false,"pos":{"x":-2.7246,"y":1.6566,"z":0.3733},"rot":{"x":0.0168,"y":180.0022,"z":0.0803}},"7234af":{"lock":false,"pos":{"x":-33.332,"y":1.628,"z":-0.0464},"rot":{"x":359.9201,"y":270.0099,"z":0.0169}},"7b90b5":{"lock":false,"pos":{"x":-20.4623,"y":1.61,"z":-0.0761},"rot":{"x":359.9201,"y":270.0098,"z":0.0169}},"8d0101":{"lock":false,"pos":{"x":0.3316,"y":1.6179,"z":-37.5895},"rot":{"x":0,"y":270.0088,"z":180.1835}},"98f205":{"lock":false,"pos":{"x":-27.014,"y":1.6192,"z":0.0078},"rot":{"x":359.9201,"y":270.0098,"z":0.0169}},"aec151":{"lock":false,"pos":{"x":-3.9275,"y":1.7504,"z":5.7572},"rot":{"x":359.9197,"y":269.9893,"z":180.0168}},"bbb70a":{"lock":false,"pos":{"x":-3.8113,"y":1.5824,"z":-15.0053},"rot":{"x":359.9197,"y":269.9971,"z":0.0168}},"f7f920":{"lock":false,"pos":{"x":-2.6885,"y":1.655,"z":-5.0486},"rot":{"x":0.0168,"y":179.9958,"z":0.0803}}}}' +MaterialIndex: -1 +MeshIndex: -1 +Name: Custom_Model_Bag +Nickname: '4-B: Weaver of the Cosmos' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 12.3526716 + posY: 1.45554543 + posZ: -29.7565517 + rotX: 359.920135 + rotY: 270.000061 + rotZ: 0.0168742184 + scaleX: 2.21 + scaleY: 0.46 + scaleZ: 2.42 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 4-B Weaver of the Cosmos e14c76/Card 01500b.yaml b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 4-B Weaver of the Cosmos e14c76/Card 01500b.yaml new file mode 100644 index 000000000..b0ceb2953 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 4-B Weaver of the Cosmos e14c76/Card 01500b.yaml @@ -0,0 +1,86 @@ +Autoraise: true +CardID: 234304 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2343': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1016065725024645375/2E1B0441D9437435A89209235FC3E7BA834742EB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725024645375/2E1B0441D9437435A89209235FC3E7BA834742EB/ + NumHeight: 2 + NumWidth: 3 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 01500b +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +States: + '2': + Autoraise: true + CardID: 234305 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2343': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1016065725024645375/2E1B0441D9437435A89209235FC3E7BA834742EB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725024645375/2E1B0441D9437435A89209235FC3E7BA834742EB/ + NumHeight: 2 + NumWidth: 3 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 8c9ca2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -8.457073 + posY: 1.58242261 + posZ: 49.5360031 + rotX: 359.920135 + rotY: 269.993073 + rotZ: 180.016876 + scaleX: 3.0 + scaleY: 1.0 + scaleZ: 3.0 + XmlUI: '' +Sticky: true +Tooltip: true +Transform: + posX: -2.915982 + posY: 1.56792438 + posZ: -37.53648 + rotX: 1.95434131e-06 + rotY: 269.996674 + rotZ: 179.816391 + scaleX: 3.0 + scaleY: 1.0 + scaleZ: 3.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 4-B Weaver of the Cosmos e14c76/Card 8d0101.yaml b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 4-B Weaver of the Cosmos e14c76/Card 8d0101.yaml new file mode 100644 index 000000000..165a7224a --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 4-B Weaver of the Cosmos e14c76/Card 8d0101.yaml @@ -0,0 +1,172 @@ +Autoraise: true +CardID: 234300 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2343': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1016065725024645375/2E1B0441D9437435A89209235FC3E7BA834742EB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725024645375/2E1B0441D9437435A89209235FC3E7BA834742EB/ + NumHeight: 2 + NumWidth: 3 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 8d0101 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +States: + '2': + Autoraise: true + CardID: 234302 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2343': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1016065725024645375/2E1B0441D9437435A89209235FC3E7BA834742EB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725024645375/2E1B0441D9437435A89209235FC3E7BA834742EB/ + NumHeight: 2 + NumWidth: 3 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 96c6cb + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.3314839 + posY: 1.61807728 + posZ: -37.5897255 + rotX: 0.00503871869 + rotY: 270.007629 + rotZ: 180.100021 + scaleX: 3.0 + scaleY: 1.0 + scaleZ: 3.0 + XmlUI: '' + '3': + Autoraise: true + CardID: 234301 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2343': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1016065725024645375/2E1B0441D9437435A89209235FC3E7BA834742EB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725024645375/2E1B0441D9437435A89209235FC3E7BA834742EB/ + NumHeight: 2 + NumWidth: 3 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: b24d07 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.331489623 + posY: 1.61809266 + posZ: -37.58982 + rotX: 0.009664505 + rotY: 270.007629 + rotZ: 180.26767 + scaleX: 3.0 + scaleY: 1.0 + scaleZ: 3.0 + XmlUI: '' + '4': + Autoraise: true + CardID: 234303 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2343': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1016065725024645375/2E1B0441D9437435A89209235FC3E7BA834742EB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725024645375/2E1B0441D9437435A89209235FC3E7BA834742EB/ + NumHeight: 2 + NumWidth: 3 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: de1d70 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 5.05779 + posY: 1.56251717 + posZ: 45.9217 + rotX: 359.9201 + rotY: 270.006653 + rotZ: 180.016846 + scaleX: 3.0 + scaleY: 1.0 + scaleZ: 3.0 + XmlUI: '' +Sticky: true +Tooltip: true +Transform: + posX: 0.331610054 + posY: 1.61809218 + posZ: -37.5897942 + rotX: 0.009702964 + rotY: 270.00885 + rotZ: 180.269089 + scaleX: 3.0 + scaleY: 1.0 + scaleZ: 3.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 4-B Weaver of the Cosmos e14c76/Card Scenario 43f634.yaml b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 4-B Weaver of the Cosmos e14c76/Card Scenario 43f634.yaml new file mode 100644 index 000000000..8f53e8405 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 4-B Weaver of the Cosmos e14c76/Card Scenario 43f634.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 234736 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2347': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1016065725025781883/DDC7B603B5E571A152D76364CCF3155BB7BC8C6F/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025781079/EBC4A272423668544053A4ACD161A993E038255D/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Weaver of the Cosmos +GMNotes: '' +GUID: 43f634 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Scenario +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.95590043 + posY: 1.655648 + posZ: -10.4412012 + rotX: 359.919739 + rotY: 270.000061 + rotZ: 0.0168412272 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 4-B Weaver of the Cosmos e14c76/Custom_Model_Bag Set-aside 376a06.yaml b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 4-B Weaver of the Cosmos e14c76/Custom_Model_Bag Set-aside 376a06.yaml new file mode 100644 index 000000000..2e91e85f5 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 4-B Weaver of the Cosmos e14c76/Custom_Model_Bag Set-aside 376a06.yaml @@ -0,0 +1,58 @@ +Autoraise: true +ColorDiffuse: + b: 0.02148666 + g: 0.00100758043 + r: 0.02148666 +ContainedObjects: +- !include 'Custom_Model_Bag Set-aside 376a06/Bag Extra Tokens 7b57ef.yaml' +- !include 'Custom_Model_Bag Set-aside 376a06/Deck Spinners in Darkness 912fa4.yaml' +- !include 'Custom_Model_Bag Set-aside 376a06/Bag Atlach-Nacha d14543.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: '' +GMNotes: '' +GUID: 376a06 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +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.696001 + posY: 1.5583173 + posZ: 14.2784033 + rotX: 359.955139 + rotY: 224.998016 + rotZ: 0.06867346 + scaleX: 2.0 + scaleY: 2.0 + scaleZ: 2.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 4-B Weaver of the Cosmos e14c76/Custom_Model_Bag Set-aside 376a06/Bag Atlach-Nacha d14543.ttslua b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 4-B Weaver of the Cosmos e14c76/Custom_Model_Bag Set-aside 376a06/Bag Atlach-Nacha d14543.ttslua new file mode 100644 index 000000000..f82d90245 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 4-B Weaver of the Cosmos e14c76/Custom_Model_Bag Set-aside 376a06/Bag Atlach-Nacha d14543.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 Dream-Eaters 0240d0/Custom_Model_Bag 4-B Weaver of the Cosmos e14c76/Custom_Model_Bag Set-aside 376a06/Bag Atlach-Nacha d14543.yaml b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 4-B Weaver of the Cosmos e14c76/Custom_Model_Bag Set-aside 376a06/Bag Atlach-Nacha d14543.yaml new file mode 100644 index 000000000..e4c1a1974 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 4-B Weaver of the Cosmos e14c76/Custom_Model_Bag Set-aside 376a06/Bag Atlach-Nacha d14543.yaml @@ -0,0 +1,48 @@ +Autoraise: true +ColorDiffuse: + b: 0.0 + g: 0.0 + r: 0.0 +ContainedObjects: +- !include 'Bag Atlach-Nacha d14543/Card Atlatch-Nacha a2f955.yaml' +- !include 'Bag Atlach-Nacha d14543/Card Legs of Atlach-Nacha 8b17a1.yaml' +- !include 'Bag Atlach-Nacha d14543/Card Legs of Atlach-Nacha f4d669.yaml' +- !include 'Bag Atlach-Nacha d14543/Card Legs of Atlach-Nacha 6af4f4.yaml' +- !include 'Bag Atlach-Nacha d14543/Custom_Tile 1b6f2a.yaml' +- !include 'Bag Atlach-Nacha d14543/Custom_Tile 719afa.yaml' +- !include 'Bag Atlach-Nacha d14543/Custom_Tile 13f1f9.yaml' +- !include 'Bag Atlach-Nacha d14543/Custom_Tile 7234af.yaml' +- !include 'Bag Atlach-Nacha d14543/Custom_Tile 5391d4.yaml' +- !include 'Bag Atlach-Nacha d14543/Custom_Tile bef50d.yaml' +- !include 'Bag Atlach-Nacha d14543/Custom_Tile 4d1c37.yaml' +- !include 'Bag Atlach-Nacha d14543/Custom_Tile 90ff22.yaml' +- !include 'Bag Atlach-Nacha d14543/Card Legs of Atlach-Nacha 34d21c.yaml' +Description: Clear the map and click place when instructed to engage Atlach-Nacha +GMNotes: '' +GUID: d14543 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Bag Atlach-Nacha d14543.ttslua' +LuaScriptState: '{"ml":{"13f1f9":{"lock":false,"pos":{"x":-33.5533,"y":1.626,"z":-7.7173},"rot":{"x":359.9201,"y":270.0078,"z":0.0169}},"1b6f2a":{"lock":false,"pos":{"x":-23.6765,"y":1.6134,"z":-3.83},"rot":{"x":359.9831,"y":0,"z":359.92}},"34d21c":{"lock":false,"pos":{"x":-28.4995,"y":1.6923,"z":-2.2968},"rot":{"x":359.9201,"y":270.0027,"z":0.0169}},"4d1c37":{"lock":false,"pos":{"x":-27.0057,"y":1.6214,"z":7.6653},"rot":{"x":359.9201,"y":270.0078,"z":0.0169}},"5391d4":{"lock":false,"pos":{"x":-36.7731,"y":1.6339,"z":3.86},"rot":{"x":359.9831,"y":0.0001,"z":359.92}},"6af4f4":{"lock":false,"pos":{"x":-31.6761,"y":1.6967,"z":-2.2562},"rot":{"x":359.9201,"y":270.0027,"z":0.0169}},"719afa":{"lock":false,"pos":{"x":-27.0473,"y":1.617,"z":-7.6666},"rot":{"x":359.9201,"y":270.0079,"z":0.0169}},"7234af":{"lock":false,"pos":{"x":-36.7729,"y":1.6317,"z":-3.8299},"rot":{"x":359.9831,"y":0.0001,"z":359.92}},"8b17a1":{"lock":false,"pos":{"x":-28.5389,"y":1.6937,"z":2.2039},"rot":{"x":359.9201,"y":270.0027,"z":0.0169}},"90ff22":{"lock":false,"pos":{"x":-23.6765,"y":1.6157,"z":3.86},"rot":{"x":359.9831,"y":0,"z":359.92}},"a2f955":{"lock":false,"pos":{"x":-30.1169,"y":1.6952,"z":-0.0254},"rot":{"x":359.9201,"y":270.0026,"z":0.0169}},"bef50d":{"lock":false,"pos":{"x":-33.4851,"y":1.6304,"z":7.5392},"rot":{"x":359.9201,"y":270.0078,"z":0.0169}},"f4d669":{"lock":false,"pos":{"x":-31.697,"y":1.6981,"z":2.1938},"rot":{"x":359.9201,"y":270.0027,"z":0.0169}}}}' +MaterialIndex: -1 +MeshIndex: -1 +Name: Bag +Nickname: Atlach-Nacha +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 16.4079647 + posY: 2.74204755 + posZ: -18.0319157 + rotX: 0.0167693812 + rotY: 89.99982 + rotZ: -0.003544468 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 4-B Weaver of the Cosmos e14c76/Custom_Model_Bag Set-aside 376a06/Bag Atlach-Nacha d14543/Card Atlatch-Nacha a2f955.yaml b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 4-B Weaver of the Cosmos e14c76/Custom_Model_Bag Set-aside 376a06/Bag Atlach-Nacha d14543/Card Atlatch-Nacha a2f955.yaml new file mode 100644 index 000000000..ebfe01578 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 4-B Weaver of the Cosmos e14c76/Custom_Model_Bag Set-aside 376a06/Bag Atlach-Nacha d14543/Card Atlatch-Nacha a2f955.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 234743 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2347': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1016065725025781883/DDC7B603B5E571A152D76364CCF3155BB7BC8C6F/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025781079/EBC4A272423668544053A4ACD161A993E038255D/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: The Spider God +GMNotes: '' +GUID: a2f955 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Atlatch-Nacha +SidewaysCard: false +Snap: false +Sticky: true +Tooltip: true +Transform: + posX: -30.1169 + posY: 1.69520235 + posZ: -0.0254003815 + rotX: 359.9201 + rotY: 270.002625 + rotZ: 0.01687265 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 4-B Weaver of the Cosmos e14c76/Custom_Model_Bag Set-aside 376a06/Bag Atlach-Nacha d14543/Card Legs of Atlach-Nacha 34d21c.yaml b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 4-B Weaver of the Cosmos e14c76/Custom_Model_Bag Set-aside 376a06/Bag Atlach-Nacha d14543/Card Legs of Atlach-Nacha 34d21c.yaml new file mode 100644 index 000000000..4fc988c36 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 4-B Weaver of the Cosmos e14c76/Custom_Model_Bag Set-aside 376a06/Bag Atlach-Nacha d14543/Card Legs of Atlach-Nacha 34d21c.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 234638 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2346': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025770470/7C77423FFA657FB6B5937C80D6813C24E2D0E88C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: Ancient One. Spider. Elite. +GMNotes: '' +GUID: 34d21c +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Legs of Atlach-Nacha +SidewaysCard: false +Snap: false +Sticky: true +Tooltip: true +Transform: + posX: -28.4995 + posY: 1.69227827 + posZ: -2.29680037 + rotX: 359.9201 + rotY: 270.002655 + rotZ: 0.016872704 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 4-B Weaver of the Cosmos e14c76/Custom_Model_Bag Set-aside 376a06/Bag Atlach-Nacha d14543/Card Legs of Atlach-Nacha 6af4f4.yaml b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 4-B Weaver of the Cosmos e14c76/Custom_Model_Bag Set-aside 376a06/Bag Atlach-Nacha d14543/Card Legs of Atlach-Nacha 6af4f4.yaml new file mode 100644 index 000000000..b941dd255 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 4-B Weaver of the Cosmos e14c76/Custom_Model_Bag Set-aside 376a06/Bag Atlach-Nacha d14543/Card Legs of Atlach-Nacha 6af4f4.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 234640 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2346': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025770470/7C77423FFA657FB6B5937C80D6813C24E2D0E88C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: Ancient One. Spider. Elite. +GMNotes: '' +GUID: 6af4f4 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Legs of Atlach-Nacha +SidewaysCard: false +Snap: false +Sticky: true +Tooltip: true +Transform: + posX: -31.6761 + posY: 1.69671965 + posZ: -2.25620055 + rotX: 359.9201 + rotY: 270.0027 + rotZ: 0.0168725178 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 4-B Weaver of the Cosmos e14c76/Custom_Model_Bag Set-aside 376a06/Bag Atlach-Nacha d14543/Card Legs of Atlach-Nacha 8b17a1.yaml b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 4-B Weaver of the Cosmos e14c76/Custom_Model_Bag Set-aside 376a06/Bag Atlach-Nacha d14543/Card Legs of Atlach-Nacha 8b17a1.yaml new file mode 100644 index 000000000..73eb5a2ec --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 4-B Weaver of the Cosmos e14c76/Custom_Model_Bag Set-aside 376a06/Bag Atlach-Nacha d14543/Card Legs of Atlach-Nacha 8b17a1.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 234637 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2346': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025770470/7C77423FFA657FB6B5937C80D6813C24E2D0E88C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: Ancient One. Spider. Elite. +GMNotes: '' +GUID: 8b17a1 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Legs of Atlach-Nacha +SidewaysCard: false +Snap: false +Sticky: true +Tooltip: true +Transform: + posX: -28.5389 + posY: 1.69365847 + posZ: 2.2039 + rotX: 359.9201 + rotY: 270.0027 + rotZ: 0.0168723147 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 4-B Weaver of the Cosmos e14c76/Custom_Model_Bag Set-aside 376a06/Bag Atlach-Nacha d14543/Card Legs of Atlach-Nacha f4d669.yaml b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 4-B Weaver of the Cosmos e14c76/Custom_Model_Bag Set-aside 376a06/Bag Atlach-Nacha d14543/Card Legs of Atlach-Nacha f4d669.yaml new file mode 100644 index 000000000..8eaa69f66 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 4-B Weaver of the Cosmos e14c76/Custom_Model_Bag Set-aside 376a06/Bag Atlach-Nacha d14543/Card Legs of Atlach-Nacha f4d669.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 234639 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2346': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025770470/7C77423FFA657FB6B5937C80D6813C24E2D0E88C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: Ancient One. Spider. Elite. +GMNotes: '' +GUID: f4d669 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Legs of Atlach-Nacha +SidewaysCard: false +Snap: false +Sticky: true +Tooltip: true +Transform: + posX: -31.697 + posY: 1.6980592 + posZ: 2.19380021 + rotX: 359.9201 + rotY: 270.0027 + rotZ: 0.016872311 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 4-B Weaver of the Cosmos e14c76/Custom_Model_Bag Set-aside 376a06/Bag Atlach-Nacha d14543/Custom_Tile 13f1f9.yaml b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 4-B Weaver of the Cosmos e14c76/Custom_Model_Bag Set-aside 376a06/Bag Atlach-Nacha d14543/Custom_Tile 13f1f9.yaml new file mode 100644 index 000000000..bd7f3d18c --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 4-B Weaver of the Cosmos e14c76/Custom_Model_Bag Set-aside 376a06/Bag Atlach-Nacha d14543/Custom_Tile 13f1f9.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 13f1f9 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.5533066 + posY: 1.62601554 + posZ: -7.717278 + rotX: 359.9201 + rotY: 270.0078 + rotZ: 0.0168883018 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 4-B Weaver of the Cosmos e14c76/Custom_Model_Bag Set-aside 376a06/Bag Atlach-Nacha d14543/Custom_Tile 1b6f2a.yaml b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 4-B Weaver of the Cosmos e14c76/Custom_Model_Bag Set-aside 376a06/Bag Atlach-Nacha d14543/Custom_Tile 1b6f2a.yaml new file mode 100644 index 000000000..402c0e692 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 4-B Weaver of the Cosmos e14c76/Custom_Model_Bag Set-aside 376a06/Bag Atlach-Nacha d14543/Custom_Tile 1b6f2a.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 1b6f2a +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.67645 + posY: 1.61338782 + posZ: -3.830014 + rotX: 359.983124 + rotY: 2.03529326e-05 + rotZ: 359.920044 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 4-B Weaver of the Cosmos e14c76/Custom_Model_Bag Set-aside 376a06/Bag Atlach-Nacha d14543/Custom_Tile 4d1c37.yaml b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 4-B Weaver of the Cosmos e14c76/Custom_Model_Bag Set-aside 376a06/Bag Atlach-Nacha d14543/Custom_Tile 4d1c37.yaml new file mode 100644 index 000000000..b270edf68 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 4-B Weaver of the Cosmos e14c76/Custom_Model_Bag Set-aside 376a06/Bag Atlach-Nacha d14543/Custom_Tile 4d1c37.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 4d1c37 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.005703 + posY: 1.6214149 + posZ: 7.665339 + rotX: 359.9201 + rotY: 270.0078 + rotZ: 0.01689727 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 4-B Weaver of the Cosmos e14c76/Custom_Model_Bag Set-aside 376a06/Bag Atlach-Nacha d14543/Custom_Tile 5391d4.yaml b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 4-B Weaver of the Cosmos e14c76/Custom_Model_Bag Set-aside 376a06/Bag Atlach-Nacha d14543/Custom_Tile 5391d4.yaml new file mode 100644 index 000000000..2b7ca8b7d --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 4-B Weaver of the Cosmos e14c76/Custom_Model_Bag Set-aside 376a06/Bag Atlach-Nacha d14543/Custom_Tile 5391d4.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 5391d4 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.77312 + posY: 1.63391519 + posZ: 3.85998631 + rotX: 359.983124 + rotY: 5.89257143e-05 + rotZ: 359.92 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 4-B Weaver of the Cosmos e14c76/Custom_Model_Bag Set-aside 376a06/Bag Atlach-Nacha d14543/Custom_Tile 719afa.yaml b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 4-B Weaver of the Cosmos e14c76/Custom_Model_Bag Set-aside 376a06/Bag Atlach-Nacha d14543/Custom_Tile 719afa.yaml new file mode 100644 index 000000000..41ed38971 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 4-B Weaver of the Cosmos e14c76/Custom_Model_Bag Set-aside 376a06/Bag Atlach-Nacha d14543/Custom_Tile 719afa.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 719afa +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.0472851 + posY: 1.61695838 + posZ: -7.666567 + rotX: 359.9201 + rotY: 270.007874 + rotZ: 0.0168968178 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 4-B Weaver of the Cosmos e14c76/Custom_Model_Bag Set-aside 376a06/Bag Atlach-Nacha d14543/Custom_Tile 7234af.yaml b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 4-B Weaver of the Cosmos e14c76/Custom_Model_Bag Set-aside 376a06/Bag Atlach-Nacha d14543/Custom_Tile 7234af.yaml new file mode 100644 index 000000000..21965502a --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 4-B Weaver of the Cosmos e14c76/Custom_Model_Bag Set-aside 376a06/Bag Atlach-Nacha d14543/Custom_Tile 7234af.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 7234af +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.7729378 + posY: 1.63165009 + posZ: -3.829898 + rotX: 359.983124 + rotY: 0.000119051161 + rotZ: 359.920044 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 4-B Weaver of the Cosmos e14c76/Custom_Model_Bag Set-aside 376a06/Bag Atlach-Nacha d14543/Custom_Tile 90ff22.yaml b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 4-B Weaver of the Cosmos e14c76/Custom_Model_Bag Set-aside 376a06/Bag Atlach-Nacha d14543/Custom_Tile 90ff22.yaml new file mode 100644 index 000000000..89c7c81eb --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 4-B Weaver of the Cosmos e14c76/Custom_Model_Bag Set-aside 376a06/Bag Atlach-Nacha d14543/Custom_Tile 90ff22.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 90ff22 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.6764545 + posY: 1.6156522 + posZ: 3.85998583 + rotX: 359.983124 + rotY: -1.38048081e-05 + rotZ: 359.920044 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 4-B Weaver of the Cosmos e14c76/Custom_Model_Bag Set-aside 376a06/Bag Atlach-Nacha d14543/Custom_Tile bef50d.yaml b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 4-B Weaver of the Cosmos e14c76/Custom_Model_Bag Set-aside 376a06/Bag Atlach-Nacha d14543/Custom_Tile bef50d.yaml new file mode 100644 index 000000000..f9f04c527 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 4-B Weaver of the Cosmos e14c76/Custom_Model_Bag Set-aside 376a06/Bag Atlach-Nacha d14543/Custom_Tile bef50d.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: bef50d +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.48511 + posY: 1.63041341 + posZ: 7.539211 + rotX: 359.9201 + rotY: 270.007843 + rotZ: 0.0168875139 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 4-B Weaver of the Cosmos e14c76/Custom_Model_Bag Set-aside 376a06/Bag Extra Tokens 7b57ef.yaml b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 4-B Weaver of the Cosmos e14c76/Custom_Model_Bag Set-aside 376a06/Bag Extra Tokens 7b57ef.yaml new file mode 100644 index 000000000..1451790bb --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 4-B Weaver of the Cosmos e14c76/Custom_Model_Bag Set-aside 376a06/Bag Extra Tokens 7b57ef.yaml @@ -0,0 +1,39 @@ +Autoraise: true +ColorDiffuse: + b: 0.0 + g: 0.0 + r: 1.0 +ContainedObjects: +- !include 'Bag Extra Tokens 7b57ef/Custom_Tile 81a1d7.yaml' +- !include 'Bag Extra Tokens 7b57ef/Custom_Tile a7a9cb.yaml' +- !include 'Bag Extra Tokens 7b57ef/Custom_Tile 984eec.yaml' +- !include 'Bag Extra Tokens 7b57ef/Custom_Tile 1df0a5.yaml' +Description: '' +GMNotes: '' +GUID: 7b57ef +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +MeshIndex: -1 +Name: Bag +Nickname: Extra Tokens +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 4.762305 + posY: 2.40015864 + posZ: 1.33124065 + rotX: -0.0035392323 + rotY: 0.000217387322 + rotZ: 359.983246 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 4-B Weaver of the Cosmos e14c76/Custom_Model_Bag Set-aside 376a06/Bag Extra Tokens 7b57ef/Custom_Tile 1df0a5.yaml b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 4-B Weaver of the Cosmos e14c76/Custom_Model_Bag Set-aside 376a06/Bag Extra Tokens 7b57ef/Custom_Tile 1df0a5.yaml new file mode 100644 index 000000000..559e8096e --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 4-B Weaver of the Cosmos e14c76/Custom_Model_Bag Set-aside 376a06/Bag Extra Tokens 7b57ef/Custom_Tile 1df0a5.yaml @@ -0,0 +1,42 @@ +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: '' +GMNotes: '' +GUID: 1df0a5 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Tile +Nickname: '' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -16.0062656 + posY: 3.585387 + posZ: 29.4992619 + rotX: 359.9201 + rotY: 270.0301 + rotZ: 0.0168198254 + scaleX: 0.81 + scaleY: 1.0 + scaleZ: 0.81 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 4-B Weaver of the Cosmos e14c76/Custom_Model_Bag Set-aside 376a06/Bag Extra Tokens 7b57ef/Custom_Tile 81a1d7.yaml b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 4-B Weaver of the Cosmos e14c76/Custom_Model_Bag Set-aside 376a06/Bag Extra Tokens 7b57ef/Custom_Tile 81a1d7.yaml new file mode 100644 index 000000000..81187687d --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 4-B Weaver of the Cosmos e14c76/Custom_Model_Bag Set-aside 376a06/Bag Extra Tokens 7b57ef/Custom_Tile 81a1d7.yaml @@ -0,0 +1,42 @@ +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/4WRD42n.png + WidthScale: 0.0 +Description: '' +GMNotes: '' +GUID: 81a1d7 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Tile +Nickname: '' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -13.0905676 + posY: 3.58318949 + posZ: 21.6624165 + rotX: 359.019073 + rotY: 270.0152 + rotZ: 0.29373765 + scaleX: 0.81 + scaleY: 1.0 + scaleZ: 0.81 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 4-B Weaver of the Cosmos e14c76/Custom_Model_Bag Set-aside 376a06/Bag Extra Tokens 7b57ef/Custom_Tile 984eec.yaml b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 4-B Weaver of the Cosmos e14c76/Custom_Model_Bag Set-aside 376a06/Bag Extra Tokens 7b57ef/Custom_Tile 984eec.yaml new file mode 100644 index 000000000..e61cb8f6a --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 4-B Weaver of the Cosmos e14c76/Custom_Model_Bag Set-aside 376a06/Bag Extra Tokens 7b57ef/Custom_Tile 984eec.yaml @@ -0,0 +1,42 @@ +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: '' +GMNotes: '' +GUID: 984eec +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Tile +Nickname: '' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -10.4738226 + posY: 3.57504964 + posZ: 20.5865231 + rotX: 359.9201 + rotY: 270.0238 + rotZ: 0.0168405846 + scaleX: 0.81 + scaleY: 1.0 + scaleZ: 0.81 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 4-B Weaver of the Cosmos e14c76/Custom_Model_Bag Set-aside 376a06/Bag Extra Tokens 7b57ef/Custom_Tile a7a9cb.yaml b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 4-B Weaver of the Cosmos e14c76/Custom_Model_Bag Set-aside 376a06/Bag Extra Tokens 7b57ef/Custom_Tile a7a9cb.yaml new file mode 100644 index 000000000..f95345bfa --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 4-B Weaver of the Cosmos e14c76/Custom_Model_Bag Set-aside 376a06/Bag Extra Tokens 7b57ef/Custom_Tile a7a9cb.yaml @@ -0,0 +1,42 @@ +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: '' +GMNotes: '' +GUID: a7a9cb +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Tile +Nickname: '' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -15.2726822 + posY: 3.58320785 + posZ: 25.5734558 + rotX: 359.9201 + rotY: 270.0139 + rotZ: 0.0167054888 + scaleX: 0.81 + scaleY: 1.0 + scaleZ: 0.81 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 4-B Weaver of the Cosmos e14c76/Custom_Model_Bag Set-aside 376a06/Deck Spinners in Darkness 912fa4.yaml b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 4-B Weaver of the Cosmos e14c76/Custom_Model_Bag Set-aside 376a06/Deck Spinners in Darkness 912fa4.yaml new file mode 100644 index 000000000..11110285a --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 4-B Weaver of the Cosmos e14c76/Custom_Model_Bag Set-aside 376a06/Deck Spinners in Darkness 912fa4.yaml @@ -0,0 +1,129 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 234642 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2346': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025770470/7C77423FFA657FB6B5937C80D6813C24E2D0E88C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Power. + GMNotes: '' + GUID: f44cc4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Spinner in Darkness + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -5.602693 + posY: 1.569491 + posZ: 28.7768612 + rotX: 359.920227 + rotY: 270.001953 + rotZ: 0.0158219952 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234642 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2346': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025770470/7C77423FFA657FB6B5937C80D6813C24E2D0E88C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Power. + GMNotes: '' + GUID: 4f27bf + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Spinner in Darkness + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -5.60283327 + posY: 1.71950507 + posZ: 28.77666 + rotX: 359.917664 + rotY: 270.000732 + rotZ: 0.00334994076 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2346': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025770470/7C77423FFA657FB6B5937C80D6813C24E2D0E88C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 234642 +- 234642 +Description: '' +GMNotes: '' +GUID: 912fa4 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Spinners in Darkness +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.40330029 + posY: 2.826195 + posZ: 0.654522538 + rotX: 359.919739 + rotY: 270.000641 + rotZ: 0.01684129 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 4-B Weaver of the Cosmos e14c76/Custom_Tile 7234af.yaml b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 4-B Weaver of the Cosmos e14c76/Custom_Tile 7234af.yaml new file mode 100644 index 000000000..dedfe0b0d --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 4-B Weaver of the Cosmos e14c76/Custom_Tile 7234af.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 7234af +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.332 + posY: 1.62796593 + posZ: -0.04640021 + rotX: 359.9201 + rotY: 270.009918 + rotZ: 0.0168869384 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 4-B Weaver of the Cosmos e14c76/Custom_Tile 7b90b5.yaml b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 4-B Weaver of the Cosmos e14c76/Custom_Tile 7b90b5.yaml new file mode 100644 index 000000000..6a71567ce --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 4-B Weaver of the Cosmos e14c76/Custom_Tile 7b90b5.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 7b90b5 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.4622974 + posY: 1.6100111 + posZ: -0.07610025 + rotX: 359.9201 + rotY: 270.009827 + rotZ: 0.01688647 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 4-B Weaver of the Cosmos e14c76/Custom_Tile 98f205.yaml b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 4-B Weaver of the Cosmos e14c76/Custom_Tile 98f205.yaml new file mode 100644 index 000000000..98d0fdae8 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 4-B Weaver of the Cosmos e14c76/Custom_Tile 98f205.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 98f205 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.014 + posY: 1.619172 + posZ: 0.007799763 + rotX: 359.9201 + rotY: 270.009827 + rotZ: 0.0168864615 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 4-B Weaver of the Cosmos e14c76/Custom_Tile Weaver of the Cosmos bbb70a.ttslua b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 4-B Weaver of the Cosmos e14c76/Custom_Tile Weaver of the Cosmos bbb70a.ttslua new file mode 100644 index 000000000..418a5fce4 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 4-B Weaver of the Cosmos e14c76/Custom_Tile Weaver of the Cosmos bbb70a.ttslua @@ -0,0 +1,25 @@ +name = 'Weaver of the Cosmos' + +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 + +function standaloneClick() + Global.call('fillContainer', {object=self, key=name, mode='standalone'}) +end \ No newline at end of file diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 4-B Weaver of the Cosmos e14c76/Custom_Tile Weaver of the Cosmos bbb70a.yaml b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 4-B Weaver of the Cosmos e14c76/Custom_Tile Weaver of the Cosmos bbb70a.yaml new file mode 100644 index 000000000..c57c65b61 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 4-B Weaver of the Cosmos e14c76/Custom_Tile Weaver of the Cosmos bbb70a.yaml @@ -0,0 +1,42 @@ +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: http://cloud-3.steamusercontent.com/ugc/949588657194710961/D864BCCCC1C811EC7F0AED69D1C30C678D3D9FC9/ + ImageURL: http://cloud-3.steamusercontent.com/ugc/965354846165100486/3DC8FCEF364B30758B09EF96AF9458F2B8E64D56/ + WidthScale: 0.0 +Description: click to set chaos token difficulty +GMNotes: '' +GUID: bbb70a +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Tile Weaver of the Cosmos bbb70a.ttslua' +LuaScriptState: '' +Name: Custom_Tile +Nickname: Weaver of the Cosmos +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.81130052 + posY: 1.58239079 + posZ: -15.0053024 + rotX: 359.919739 + rotY: 269.99707 + rotZ: 0.01684194 + scaleX: 2.2 + scaleY: 1.0 + scaleZ: 2.2 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 4-B Weaver of the Cosmos e14c76/Deck Act Deck f7f920.yaml b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 4-B Weaver of the Cosmos e14c76/Deck Act Deck f7f920.yaml new file mode 100644 index 000000000..ef1ea78bf --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 4-B Weaver of the Cosmos e14c76/Deck Act Deck f7f920.yaml @@ -0,0 +1,172 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 234549 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2345': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1016065725025759245/C44D15D425A11A50C4EBC0956DAAD13BFD8282AA/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025757858/C291D7AC5E6D9A6B2497084DCCFC1623FFBA4FE4/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 3 + GMNotes: '' + GUID: 6215ed + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Scheme's Demise + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 21.4735966 + posY: 1.51475608 + posZ: -28.9740639 + rotX: 0.0147228912 + rotY: 181.445313 + rotZ: 0.08024027 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234548 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2345': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1016065725025759245/C44D15D425A11A50C4EBC0956DAAD13BFD8282AA/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025757858/C291D7AC5E6D9A6B2497084DCCFC1623FFBA4FE4/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 2 + GMNotes: '' + GUID: '525296' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Weaver of the Cosmos + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 21.2655869 + posY: 1.66419578 + posZ: -28.5544834 + rotX: -0.003770626 + rotY: 179.9814 + rotZ: 0.06552141 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234547 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2345': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1016065725025759245/C44D15D425A11A50C4EBC0956DAAD13BFD8282AA/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025757858/C291D7AC5E6D9A6B2497084DCCFC1623FFBA4FE4/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 1 + GMNotes: '' + GUID: 75881e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Journey Across the Bridge + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 21.28369 + posY: 1.6812712 + posZ: -29.3294468 + rotX: -0.00366310868 + rotY: 179.999573 + rotZ: 0.0668778643 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2345': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1016065725025759245/C44D15D425A11A50C4EBC0956DAAD13BFD8282AA/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025757858/C291D7AC5E6D9A6B2497084DCCFC1623FFBA4FE4/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 234549 +- 234548 +- 234547 +Description: '' +GMNotes: '' +GUID: f7f920 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Act Deck +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.6885 + posY: 1.65499723 + posZ: -5.0486 + rotX: 0.0168409 + rotY: 179.995773 + rotZ: 0.0802562758 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 4-B Weaver of the Cosmos e14c76/Deck Agenda Deck 6a8547.yaml b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 4-B Weaver of the Cosmos e14c76/Deck Agenda Deck 6a8547.yaml new file mode 100644 index 000000000..145960d0d --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 4-B Weaver of the Cosmos e14c76/Deck Agenda Deck 6a8547.yaml @@ -0,0 +1,172 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 234546 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2345': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1016065725025759245/C44D15D425A11A50C4EBC0956DAAD13BFD8282AA/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025757858/C291D7AC5E6D9A6B2497084DCCFC1623FFBA4FE4/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 3 + GMNotes: '' + GUID: 49d1a4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Realities Interwoven + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 19.4841557 + posY: 1.51886225 + posZ: -24.4325123 + rotX: 0.0179983433 + rotY: 179.212616 + rotZ: 0.07888174 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234545 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2345': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1016065725025759245/C44D15D425A11A50C4EBC0956DAAD13BFD8282AA/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025757858/C291D7AC5E6D9A6B2497084DCCFC1623FFBA4FE4/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 2 + GMNotes: '' + GUID: 86b4a8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: A Trail of Twists + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 19.5595875 + posY: 1.66736352 + posZ: -24.5467453 + rotX: 0.0185175 + rotY: 180.011826 + rotZ: 0.07801582 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234544 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2345': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1016065725025759245/C44D15D425A11A50C4EBC0956DAAD13BFD8282AA/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025757858/C291D7AC5E6D9A6B2497084DCCFC1623FFBA4FE4/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 1 + GMNotes: '' + GUID: 75881e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Bridge of Webs + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 19.0962067 + posY: 1.68526483 + posZ: -24.40002 + rotX: 0.0168122612 + rotY: 180.01918 + rotZ: 0.0872047842 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2345': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1016065725025759245/C44D15D425A11A50C4EBC0956DAAD13BFD8282AA/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025757858/C291D7AC5E6D9A6B2497084DCCFC1623FFBA4FE4/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 234546 +- 234545 +- 234544 +Description: '' +GMNotes: '' +GUID: 6a8547 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Agenda Deck +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.72459984 + posY: 1.656641 + posZ: 0.373300433 + rotX: 0.0168320928 + rotY: 180.002213 + rotZ: 0.08025829 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 4-B Weaver of the Cosmos e14c76/Deck Encounter Deck aec151.yaml b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 4-B Weaver of the Cosmos e14c76/Deck Encounter Deck aec151.yaml new file mode 100644 index 000000000..4b69897ec --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 4-B Weaver of the Cosmos e14c76/Deck Encounter Deck aec151.yaml @@ -0,0 +1,1175 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- 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 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: 8af879 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 234643 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2346': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025770470/7C77423FFA657FB6B5937C80D6813C24E2D0E88C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: ea2b60 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Caught in a Web + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 30.2300072 + posY: 1.67932355 + posZ: -33.6048 + rotX: 359.9363 + rotY: 270.0 + rotZ: 0.0131211616 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234644 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2346': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025770470/7C77423FFA657FB6B5937C80D6813C24E2D0E88C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Scheme. + GMNotes: '' + GUID: '785613' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Endless Weaving + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 22.785202 + posY: 1.92803645 + posZ: -24.6396484 + rotX: 359.920135 + rotY: 270.000061 + rotZ: 180.016922 + 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 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: c4ce76 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 274126 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2741': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Spider. + GMNotes: '' + GUID: 0f9c1e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Spider of Leng + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -1.136676 + posY: 1.486699 + posZ: 54.612114 + rotX: 0.0193328764 + rotY: 270.009644 + rotZ: 0.01589946 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274127 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2741': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Creature. Spider. + GMNotes: '' + GUID: '127543' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Swarm of Spiders + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -0.996398449 + posY: 1.38670981 + posZ: 55.2076263 + rotX: 0.0273220912 + rotY: 270.00946 + rotZ: 359.992828 + 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 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: 6e7cb8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: ab3719 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 274128 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2741': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Obstacle. + GMNotes: '' + GUID: 09c755 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Sickening Webs + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -0.6885309 + posY: 1.4827323 + posZ: 57.056572 + rotX: 0.007400155 + rotY: 270.009 + rotZ: 0.01982787 + 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 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: 6e7cb8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 234644 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2346': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025770470/7C77423FFA657FB6B5937C80D6813C24E2D0E88C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Scheme. + GMNotes: '' + GUID: '785613' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Endless Weaving + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 22.7851753 + posY: 1.91837645 + posZ: -24.63965 + rotX: 359.920135 + rotY: 270.000061 + rotZ: 180.016922 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274110 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2741': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Power. + GMNotes: '' + GUID: '924656' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Will of the Spider-Mother + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -16.3824444 + posY: 1.50997329 + posZ: 55.3458862 + rotX: 0.0223769117 + rotY: 270.0001 + rotZ: 0.0136615671 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234641 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2346': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025770470/7C77423FFA657FB6B5937C80D6813C24E2D0E88C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Spider. + GMNotes: '' + GUID: ef8a41 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Web-Spinner + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 26.7373238 + posY: 1.67394149 + posZ: -26.8421936 + rotX: 359.927 + rotY: 269.970947 + rotZ: 0.026428191 + 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 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: 16d6d6 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 274127 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2741': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Creature. Spider. + GMNotes: '' + GUID: eb88d3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Swarm of Spiders + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -0.844609141 + posY: 1.33724856 + posZ: 54.5767746 + rotX: 0.02087849 + rotY: 270.009552 + rotZ: 0.01652528 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234641 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2346': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025770470/7C77423FFA657FB6B5937C80D6813C24E2D0E88C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Spider. + GMNotes: '' + GUID: e634db + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Web-Spinner + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 27.13497 + posY: 1.66542327 + posZ: -26.84374 + rotX: 359.9193 + rotY: 270.003082 + rotZ: 0.016360376 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234643 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2346': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025770470/7C77423FFA657FB6B5937C80D6813C24E2D0E88C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: d9386a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Caught in a Web + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 30.238409 + posY: 1.6664232 + posZ: -33.603672 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274109 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2741': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Spider. + GMNotes: '' + GUID: b126fb + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Grey Weaver + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -16.12129 + posY: 1.49274647 + posZ: 55.211235 + rotX: 0.018673053 + rotY: 270.000061 + rotZ: 0.0111498982 + 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 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: 50e716 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 274110 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2741': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Power. + GMNotes: '' + GUID: 50e06a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Will of the Spider-Mother + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -16.24422 + posY: 1.49625111 + posZ: 54.82901 + rotX: 0.02021771 + rotY: 270.0001 + rotZ: 0.01658786 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234641 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2346': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025770470/7C77423FFA657FB6B5937C80D6813C24E2D0E88C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Spider. + GMNotes: '' + GUID: ef8a41 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Web-Spinner + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 27.28021 + posY: 1.50728 + posZ: -26.8438931 + rotX: 359.9202 + rotY: 270.003052 + rotZ: 0.0164223611 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234643 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2346': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025770470/7C77423FFA657FB6B5937C80D6813C24E2D0E88C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: ea2b60 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Caught in a Web + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 30.2965164 + posY: 1.501012 + posZ: -33.87221 + rotX: 359.920135 + rotY: 269.999939 + rotZ: 0.0168719124 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274127 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2741': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Creature. Spider. + GMNotes: '' + GUID: '133060' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Swarm of Spiders + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -0.839634538 + posY: 1.49983108 + posZ: 54.6420059 + rotX: 0.0234334059 + rotY: 270.009674 + rotZ: 0.0152485454 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274109 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2741': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Spider. + GMNotes: '' + GUID: 621de5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Grey Weaver + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -16.29789 + posY: 1.33173692 + posZ: 54.9044876 + rotX: 0.0208100639 + rotY: 270.000061 + rotZ: 0.0168662574 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234644 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2346': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025770470/7C77423FFA657FB6B5937C80D6813C24E2D0E88C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Scheme. + GMNotes: '' + GUID: '785613' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Endless Weaving + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 23.264204 + posY: 1.89883888 + posZ: -24.5000648 + rotX: 359.913483 + rotY: 270.012848 + rotZ: 179.9988 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274128 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2741': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Obstacle. + GMNotes: '' + GUID: 23fc06 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Sickening Webs + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -0.8677753 + posY: 1.33790851 + posZ: 57.3880653 + rotX: 0.022798948 + rotY: 270.010162 + rotZ: 0.005616975 + 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 + UniqueBack: false + '2346': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025770470/7C77423FFA657FB6B5937C80D6813C24E2D0E88C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '2741': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493383646802545/EF89145CA7EEC1746A59CCBDDEE52526997C5DED/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 231719 +- 234643 +- 234644 +- 231721 +- 274126 +- 274127 +- 231719 +- 231720 +- 274128 +- 231719 +- 234644 +- 274110 +- 234641 +- 231720 +- 274127 +- 234641 +- 234643 +- 274109 +- 231721 +- 274110 +- 234641 +- 234643 +- 274127 +- 274109 +- 234644 +- 274128 +Description: '' +GMNotes: '' +GUID: aec151 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Encounter Deck +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.92749977 + posY: 1.75039172 + posZ: 5.75720072 + rotX: 359.919739 + rotY: 269.989319 + rotZ: 180.01683 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 4-B Weaver of the Cosmos e14c76/Deck The Great Web 387d55.yaml b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 4-B Weaver of the Cosmos e14c76/Deck The Great Web 387d55.yaml new file mode 100644 index 000000000..c19a52e12 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Model_Bag 4-B Weaver of the Cosmos e14c76/Deck The Great Web 387d55.yaml @@ -0,0 +1,688 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 234742 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2347': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1016065725025781883/DDC7B603B5E571A152D76364CCF3155BB7BC8C6F/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025781079/EBC4A272423668544053A4ACD161A993E038255D/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Otherworld. Extradimensional. + GMNotes: '' + GUID: ed1c11 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Great Web + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -23.67624 + posY: 1.68621993 + posZ: -0.0300510451 + rotX: 359.9201 + rotY: 269.999939 + rotZ: 0.0168761685 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234739 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2347': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1016065725025781883/DDC7B603B5E571A152D76364CCF3155BB7BC8C6F/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025781079/EBC4A272423668544053A4ACD161A993E038255D/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Otherworld. Extradimensional. + GMNotes: '' + GUID: dfdc8c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Great Web + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -36.77312 + posY: 1.70448279 + posZ: -0.0300165825 + rotX: 359.9201 + rotY: 269.999847 + rotZ: 0.0168764386 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234737 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2347': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1016065725025781883/DDC7B603B5E571A152D76364CCF3155BB7BC8C6F/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025781079/EBC4A272423668544053A4ACD161A993E038255D/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Otherworld. Extradimensional. + GMNotes: '' + GUID: 8ed03a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Great Web + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -23.6762924 + posY: 1.69070172 + posZ: 15.1899462 + rotX: 359.9201 + rotY: 269.9999 + rotZ: 0.0168759115 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234742 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2347': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1016065725025781883/DDC7B603B5E571A152D76364CCF3155BB7BC8C6F/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025781079/EBC4A272423668544053A4ACD161A993E038255D/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Otherworld. Extradimensional. + GMNotes: '' + GUID: 73088a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Great Web + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -30.223959 + posY: 1.69649577 + posZ: 3.859956 + rotX: 359.9201 + rotY: 269.999939 + rotZ: 0.0168762319 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234738 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2347': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1016065725025781883/DDC7B603B5E571A152D76364CCF3155BB7BC8C6F/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025781079/EBC4A272423668544053A4ACD161A993E038255D/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Otherworld. Extradimensional. + GMNotes: '' + GUID: 4b3251 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Great Web + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -30.2241669 + posY: 1.69535065 + posZ: -0.0300257578 + rotX: 359.9201 + rotY: 269.999939 + rotZ: 0.0168762021 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234741 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2347': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1016065725025781883/DDC7B603B5E571A152D76364CCF3155BB7BC8C6F/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025781079/EBC4A272423668544053A4ACD161A993E038255D/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Otherworld. Extradimensional. + GMNotes: '' + GUID: 39ace3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Great Web + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -36.7731667 + posY: 1.70896447 + posZ: 15.1900759 + rotX: 359.9201 + rotY: 269.9999 + rotZ: 0.0168759748 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234737 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2347': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1016065725025781883/DDC7B603B5E571A152D76364CCF3155BB7BC8C6F/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025781079/EBC4A272423668544053A4ACD161A993E038255D/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Otherworld. Extradimensional. + GMNotes: '' + GUID: 08a091 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Great Web + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -23.6763458 + posY: 1.68960345 + posZ: 11.4599724 + rotX: 359.9201 + rotY: 269.999969 + rotZ: 0.0168761928 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234739 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2347': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1016065725025781883/DDC7B603B5E571A152D76364CCF3155BB7BC8C6F/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025781079/EBC4A272423668544053A4ACD161A993E038255D/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Otherworld. Extradimensional. + GMNotes: '' + GUID: 5c5ec4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Great Web + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -36.7729263 + posY: 1.70672035 + posZ: 7.569942 + rotX: 359.9201 + rotY: 269.999969 + rotZ: 0.0168762449 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234741 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2347': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1016065725025781883/DDC7B603B5E571A152D76364CCF3155BB7BC8C6F/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025781079/EBC4A272423668544053A4ACD161A993E038255D/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Otherworld. Extradimensional. + GMNotes: '' + GUID: '727790' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Great Web + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -36.77312 + posY: 1.707866 + posZ: 11.4599857 + rotX: 359.9201 + rotY: 269.999969 + rotZ: 0.016876502 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234740 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2347': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1016065725025781883/DDC7B603B5E571A152D76364CCF3155BB7BC8C6F/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025781079/EBC4A272423668544053A4ACD161A993E038255D/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Otherworld. Extradimensional. + GMNotes: '' + GUID: 02caab + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Great Web + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -30.2241669 + posY: 1.698734 + posZ: 11.460021 + rotX: 359.9201 + rotY: 269.999939 + rotZ: 0.0168761387 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234742 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2347': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1016065725025781883/DDC7B603B5E571A152D76364CCF3155BB7BC8C6F/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025781079/EBC4A272423668544053A4ACD161A993E038255D/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Otherworld. Extradimensional. + GMNotes: '' + GUID: 9fa834 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Great Web + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -30.223978 + posY: 1.69758832 + posZ: 7.569946 + rotX: 359.9201 + rotY: 269.999939 + rotZ: 0.0168762617 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234739 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2347': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1016065725025781883/DDC7B603B5E571A152D76364CCF3155BB7BC8C6F/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025781079/EBC4A272423668544053A4ACD161A993E038255D/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Otherworld. Extradimensional. + GMNotes: '' + GUID: 361fd7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Great Web + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -36.7729149 + posY: 1.705628 + posZ: 3.8599627 + rotX: 359.9201 + rotY: 269.999939 + rotZ: 0.0168763045 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234737 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2347': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1016065725025781883/DDC7B603B5E571A152D76364CCF3155BB7BC8C6F/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025781079/EBC4A272423668544053A4ACD161A993E038255D/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Otherworld. Extradimensional. + GMNotes: '' + GUID: 9aed9c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Great Web + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -23.6762581 + posY: 1.688458 + posZ: 7.569946 + rotX: 359.9201 + rotY: 269.999939 + rotZ: 0.0168767422 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234738 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2347': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1016065725025781883/DDC7B603B5E571A152D76364CCF3155BB7BC8C6F/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025781079/EBC4A272423668544053A4ACD161A993E038255D/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Otherworld. Extradimensional. + GMNotes: '' + GUID: c63cd6 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Great Web + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -23.6762486 + posY: 1.68736541 + posZ: 3.859968 + rotX: 359.9201 + rotY: 270.000061 + rotZ: 0.0168762021 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234740 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2347': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1016065725025781883/DDC7B603B5E571A152D76364CCF3155BB7BC8C6F/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025781079/EBC4A272423668544053A4ACD161A993E038255D/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Otherworld. Extradimensional. + GMNotes: '' + GUID: '823065' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Great Web + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -30.2240086 + posY: 1.699832 + posZ: 15.1900253 + rotX: 359.9201 + rotY: 269.999939 + rotZ: 0.0168759488 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2347': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1016065725025781883/DDC7B603B5E571A152D76364CCF3155BB7BC8C6F/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025781079/EBC4A272423668544053A4ACD161A993E038255D/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 234742 +- 234739 +- 234737 +- 234742 +- 234738 +- 234741 +- 234737 +- 234739 +- 234741 +- 234740 +- 234742 +- 234739 +- 234737 +- 234738 +- 234740 +Description: '' +GMNotes: '' +GUID: 387d55 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: The Great Web +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -30.2242 + posY: 1.70742393 + posZ: -0.0301002115 + rotX: 359.9201 + rotY: 269.999939 + rotZ: 0.0168776754 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Tile The Dream-Quest Campaign Log f40183.ttslua b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Tile The Dream-Quest Campaign Log f40183.ttslua new file mode 100644 index 000000000..83da8f3ca --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Tile The Dream-Quest Campaign Log f40183.ttslua @@ -0,0 +1,580 @@ +--[[ Character Sheet Template by: MrStump + +You can set up your own character sheet if you follow these steps. + +Step 1) Change the character sheet image + -Right click on the character sheet, click Custom + -Replace the image URL with one for your character sheet + -Click import, make sure your sheet loads + -SAVE THE GAME (the table setup) + -LOAD FROM THAT SAVE YOU JUST MADE + +Step 2) Edit script to fit your character sheet + -Below you will see some general options, and then the big data table + -The data table is what determines how many of which buttons are made + -Checkboxes + -Counters + -Textboxes + -By default, there are 3 of each. You can add more or remove entries + -If you intend to add/remove, be sure only to add/remove ENTRIES + -This is what an entry looks like: + { + pos = {-0.977,0.1,-0.589}, + size = 800, + state = false + }, + -Deleting the whole thing would remove that specific item on the sheet + -Copy and pasting it after another entry would create another + -Each entry type has unique data points (pos, size, state, etc) + -Do not try to add in your own data points or remove them individually + -There is a summary of what each point does at the top of its category + +Step 3) Save and check script changes + -Hit Save & Apply in the script window to save your code + -You can edit your code as needed and Save+Apply as often as needed + -When you are finished, make disableSave = false below then Save+apply + -This enables saving, so your sheet will remember whats on it. + +Bonus) Finding/Editing Positions for elements + I have included a tool to get positions for buttons in {x,y,z} form + Place it where you want the center of your element to be + Then copy the table from the notes (lower right of screen) + You can highlight it and CTRL+C + Paste it into the data table where needed (pos=) + If you want to manually tweek the values: + {0,0,0} is the center of the character sheet + {1,0,0} is right, {-1,0,0} is left + {0,0,-1} is up, {0,0,1} is down + 0.1 for Y is the height off of the page. + If it was 0, it would be down inside the model of the sheet + +Begin editing below: ]] + +--Set this to true while editing and false when you have finished +disableSave = false +--Remember to set this to false once you are done making changes +--Then, after you save & apply it, save your game too + +--Color information for button text (r,g,b, values of 0-1) +buttonFontColor = {0,0,0} +--Color information for button background +buttonColor = {0.902,0.886,0.788} +--Change scale of button (Avoid changing if possible) +buttonScale = {0.1,0.1,0.1} + +--This is the button placement information +defaultButtonData = { + --Add checkboxes + checkbox = { + --[[ + pos = the position (pasted from the helper tool) + size = height/width/font_size for checkbox + state = default starting value for checkbox (true=checked, false=not) + ]] + --1 checkbox + { + pos = {0.306,0.1,0.051}, + size = 250, + state = false + }, + --2 checkbox + { + pos = {0.35,0.1,0.114}, + size = 250, + state = false + }, + --3 checkbox + { + pos = {0.399,0.1,0.169}, + size = 250, + state = false + }, + --4 checkbox + { + pos = {0.455,0.1,0.221}, + size = 250, + state = false + }, + --5 checkbox + { + pos = {0.5,0.1,0.279}, + size = 250, + state = false + }, + --6 checkbox + { + pos = {0.54,0.1,0.334}, + size = 250, + state = false + }, + --7 checkbox + { + pos = {0.568,0.1,0.392}, + size = 250, + state = false + }, + --8 checkbox + { + pos = {0.604,0.1,0.457}, + size = 250, + state = false + }, + --9 checkbox + { + pos = {0.229,0.1,-0.007}, + size = 250, + state = false + }, + --10 checkbox + { + pos = {-0.816,0.1,0.02}, + size = 250, + state = false + }, + --End of checkboxes + }, + --Add counters that have a + and - button + counter = { + --[[ + pos = the position (pasted from the helper tool) + size = height/width/font_size for counter + value = default starting value for counter + hideBG = if background of counter is hidden (true=hidden, false=not) + ]] + --Slot one counter 1 + { + pos = {-0.7,0.1,-0.45}, + size = 400, + value = 0, + hideBG = true + }, + --Slot one counter 2 + { + pos = {-0.50,0.1,-0.45}, + size = 400, + value = 0, + hideBG = true + }, + --Slot one xp 1 + { + pos = {-0.517,0.1,-0.55}, + size = 300, + value = 0, + hideBG = true + }, + --Slot two counter 1 + { + pos = {-0.274,0.1,-0.445}, + size = 400, + value = 0, + hideBG = true + }, + --Slot two counter 2 + { + pos = {-0.06,0.1,-0.445}, + size = 400, + value = 0, + hideBG = true + }, + --Slot two xp 1 + { + pos = {-0.061,0.1,-0.54}, + size = 300, + value = 0, + hideBG = true + }, + --Slot three counter 1 + { + pos = {0.153,0.1,-0.44}, + size = 400, + value = 0, + hideBG = true + }, + --Slot three counter 2 + { + pos = {0.379,0.1,-0.44}, + size = 400, + value = 0, + hideBG = true + }, + --Slot three xp 1 + { + pos = {0.38,0.1,-0.54}, + size = 300, + value = 0, + hideBG = true + }, + --Slot four counter 1 + { + pos = {0.614,0.1,-0.44}, + size = 400, + value = 0, + hideBG = true + }, + --Slot four counter 2 + { + pos = {0.82,0.1,-0.44}, + size = 400, + value = 0, + hideBG = true + }, + --Slot four xp 1 + { + pos = {0.827,0.1,-0.54}, + size = 300, + value = 0, + hideBG = true + }, + + --End of counters + }, + --Add editable text boxes + textbox = { + --[[ + pos = the position (pasted from the helper tool) + rows = how many lines of text you want for this box + width = how wide the text box is + font_size = size of text. This and "rows" effect overall height + label = what is shown when there is no text. "" = nothing + value = text entered into box. "" = nothing + alignment = Number to indicate how you want text aligned + (1=Automatic, 2=Left, 3=Center, 4=Right, 5=Justified) + ]] + --Slot one player + { + pos = {-0.637,0.1,-0.70}, + rows = 1, + width = 2000, + font_size = 150, + label = "Click to type", + value = "", + alignment = 2 + }, + --Slot one investigator + { + pos = {-0.637,0.1,-0.625}, + rows = 1, + width = 2000, + font_size = 150, + label = "Click to type", + value = "", + alignment = 2 + }, + --Slot one story + { + pos = {-0.637,0.1,-0.27}, + rows = 9, + width = 2000, + font_size = 100, + label = "Click to type", + value = "", + alignment = 2 + }, + --Slot two player + { + pos = {-0.2,0.1,-0.70}, + rows = 1, + width = 2000, + font_size = 150, + label = "Click to type", + value = "", + alignment = 2 + }, + --Slot two investigator + { + pos = {-0.2,0.1,-0.625}, + rows = 1, + width = 2000, + font_size = 150, + label = "Click to type", + value = "", + alignment = 2 + }, + --Slot two story + { + pos = {-0.2,0.1,-0.27}, + rows = 9, + width = 2000, + font_size = 100, + label = "Click to type", + value = "", + alignment = 2 + }, + --Slot three player + { + pos = {0.241,0.1,-0.70}, + rows = 1, + width = 2000, + font_size = 150, + label = "Click to type", + value = "", + alignment = 2 + }, + --Slot three investigator + { + pos = {0.237,0.1,-0.62}, + rows = 1, + width = 2000, + font_size = 150, + label = "Click to type", + value = "", + alignment = 2 + }, + --Slot three story + { + pos = {0.24,0.1,-0.268}, + rows = 9, + width = 2000, + font_size = 100, + label = "Click to type", + value = "", + alignment = 2 + }, + --Slot four player + { + pos = {0.671,0.1,-0.70}, + rows = 1, + width = 2000, + font_size = 150, + label = "Click to type", + value = "", + alignment = 2 + }, + --Slot four investigator + { + pos = {0.671,0.1,-0.62}, + rows = 1, + width = 2000, + font_size = 150, + label = "Click to type", + value = "", + alignment = 2 + }, + --Slot four story + { + pos = {0.671,0.1,-0.265}, + rows = 9, + width = 2000, + font_size = 100, + label = "Click to type", + value = "", + alignment = 2 + }, + --Campaign Notes + { + pos = {-0.393,0.1,0.265}, + rows =10, + width = 3200, + font_size = 200, + label = "Click to type", + value = "", + alignment = 2 + }, + --Killed Investigators + { + pos = {-0.417,0.1,0.881}, + rows = 4, + width = 3500, + font_size = 150, + label = "Click to type", + value = "", + alignment = 2 + }, + --Evidence of Kadath + { + pos = {-0.388,0.1,0.676}, + rows = 2, + width = 3500, + font_size = 150, + label = "Click to type", + value = "", + alignment = 2 + }, + --Chaos Bag + { + pos = {0.782,0.1,0.8}, + rows = 10, + width = 1500, + font_size = 150, + label = "Click to type", + value = "", + alignment = 2 + }, + --End of textboxes + } +} + + + +--Lua beyond this point, I recommend doing something more fun with your life + + + +--Save function +function updateSave() + saved_data = JSON.encode(ref_buttonData) + if disableSave==true then saved_data="" end + self.script_state = saved_data +end + +--Startup procedure +function onload(saved_data) + if disableSave==true then saved_data="" end + if saved_data ~= "" then + local loaded_data = JSON.decode(saved_data) + ref_buttonData = loaded_data + else + ref_buttonData = defaultButtonData + end + + spawnedButtonCount = 0 + createCheckbox() + createCounter() + createTextbox() +end + + + +--Click functions for buttons + + + +--Checks or unchecks the given box +function click_checkbox(tableIndex, buttonIndex) + if ref_buttonData.checkbox[tableIndex].state == true then + ref_buttonData.checkbox[tableIndex].state = false + self.editButton({index=buttonIndex, label=""}) + else + ref_buttonData.checkbox[tableIndex].state = true + self.editButton({index=buttonIndex, label=string.char(10008)}) + end + updateSave() +end + +--Applies value to given counter display +function click_counter(tableIndex, buttonIndex, amount) + ref_buttonData.counter[tableIndex].value = ref_buttonData.counter[tableIndex].value + amount + self.editButton({index=buttonIndex, label=ref_buttonData.counter[tableIndex].value}) + updateSave() +end + +--Updates saved value for given text box +function click_textbox(i, value, selected) + if selected == false then + ref_buttonData.textbox[i].value = value + updateSave() + end +end + +--Dud function for if you have a background on a counter +function click_none() end + + + +--Button creation + + + +--Makes checkboxes +function createCheckbox() + for i, data in ipairs(ref_buttonData.checkbox) do + --Sets up reference function + local buttonNumber = spawnedButtonCount + local funcName = "checkbox"..i + local func = function() click_checkbox(i, buttonNumber) end + self.setVar(funcName, func) + --Sets up label + local label = "" + if data.state==true then label=string.char(10008) end + --Creates button and counts it + self.createButton({ + label=label, click_function=funcName, function_owner=self, + position=data.pos, height=data.size, width=data.size, + font_size=data.size, scale=buttonScale, + color=buttonColor, font_color=buttonFontColor + }) + spawnedButtonCount = spawnedButtonCount + 1 + end +end + +--Makes counters +function createCounter() + for i, data in ipairs(ref_buttonData.counter) do + --Sets up display + local displayNumber = spawnedButtonCount + --Sets up label + local label = data.value + --Sets height/width for display + local size = data.size + if data.hideBG == true then size = 0 end + --Creates button and counts it + self.createButton({ + label=label, click_function="click_none", function_owner=self, + position=data.pos, height=size, width=size, + font_size=data.size, scale=buttonScale, + color=buttonColor, font_color=buttonFontColor + }) + spawnedButtonCount = spawnedButtonCount + 1 + + --Sets up add 1 + local funcName = "counterAdd"..i + local func = function() click_counter(i, displayNumber, 1) end + self.setVar(funcName, func) + --Sets up label + local label = "+" + --Sets up position + local offsetDistance = (data.size/2 + data.size/4) * (buttonScale[1] * 0.002) + local pos = {data.pos[1] + offsetDistance, data.pos[2], data.pos[3]} + --Sets up size + local size = data.size / 2 + --Creates button and counts it + self.createButton({ + label=label, click_function=funcName, function_owner=self, + position=pos, height=size, width=size, + font_size=size, scale=buttonScale, + color=buttonColor, font_color=buttonFontColor + }) + spawnedButtonCount = spawnedButtonCount + 1 + + --Sets up subtract 1 + local funcName = "counterSub"..i + local func = function() click_counter(i, displayNumber, -1) end + self.setVar(funcName, func) + --Sets up label + local label = "-" + --Set up position + local pos = {data.pos[1] - offsetDistance, data.pos[2], data.pos[3]} + --Creates button and counts it + self.createButton({ + label=label, click_function=funcName, function_owner=self, + position=pos, height=size, width=size, + font_size=size, scale=buttonScale, + color=buttonColor, font_color=buttonFontColor + }) + spawnedButtonCount = spawnedButtonCount + 1 + end +end + +function createTextbox() + for i, data in ipairs(ref_buttonData.textbox) do + --Sets up reference function + local funcName = "textbox"..i + local func = function(_,_,val,sel) click_textbox(i,val,sel) end + self.setVar(funcName, func) + + self.createInput({ + input_function = funcName, + function_owner = self, + label = data.label, + alignment = data.alignment, + position = data.pos, + scale = buttonScale, + width = data.width, + height = (data.font_size*data.rows)+24, + font_size = data.font_size, + color = buttonColor, + font_color = buttonFontColor, + value = data.value, + }) + end +end \ No newline at end of file diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Tile The Dream-Quest Campaign Log f40183.yaml b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Tile The Dream-Quest Campaign Log f40183.yaml new file mode 100644 index 000000000..2acbf6eed --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dream-Eaters 0240d0/Custom_Tile The Dream-Quest Campaign Log f40183.yaml @@ -0,0 +1,365 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.1 + Type: 0 + ImageScalar: 1.0 + ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/959719855119695252/F9415595789317D4FAB83601CD43D165168FBA46/ + ImageURL: http://cloud-3.steamusercontent.com/ugc/775107869055943792/F71B0D381488194732C8C56F4582709E5347D0C7/ + WidthScale: 0.0 +Description: '' +GMNotes: '' +GUID: f40183 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Tile The Dream-Quest Campaign Log f40183.ttslua' +LuaScriptState: '{"checkbox":[{"pos":[0.306,0.1,0.051],"size":250,"state":false},{"pos":[0.35,0.1,0.114],"size":250,"state":false},{"pos":[0.399,0.1,0.169],"size":250,"state":false},{"pos":[0.455,0.1,0.221],"size":250,"state":false},{"pos":[0.5,0.1,0.279],"size":250,"state":false},{"pos":[0.54,0.1,0.334],"size":250,"state":false},{"pos":[0.568,0.1,0.392],"size":250,"state":false},{"pos":[0.604,0.1,0.457],"size":250,"state":false},{"pos":[0.229,0.1,-0.007],"size":250,"state":false},{"pos":[-0.816,0.1,0.02],"size":250,"state":false}],"counter":[{"hideBG":true,"pos":[-0.7,0.1,-0.45],"size":400,"value":0},{"hideBG":true,"pos":[-0.5,0.1,-0.45],"size":400,"value":0},{"hideBG":true,"pos":[-0.517,0.1,-0.55],"size":300,"value":0},{"hideBG":true,"pos":[-0.274,0.1,-0.445],"size":400,"value":0},{"hideBG":true,"pos":[-0.06,0.1,-0.445],"size":400,"value":0},{"hideBG":true,"pos":[-0.061,0.1,-0.54],"size":300,"value":0},{"hideBG":true,"pos":[0.153,0.1,-0.44],"size":400,"value":0},{"hideBG":true,"pos":[0.379,0.1,-0.44],"size":400,"value":0},{"hideBG":true,"pos":[0.38,0.1,-0.54],"size":300,"value":0},{"hideBG":true,"pos":[0.614,0.1,-0.44],"size":400,"value":0},{"hideBG":true,"pos":[0.82,0.1,-0.44],"size":400,"value":0},{"hideBG":true,"pos":[0.827,0.1,-0.54],"size":300,"value":0}],"textbox":[{"alignment":2,"font_size":150,"label":"Click + to type","pos":[-0.637,0.1,-0.7],"rows":1,"value":"","width":2000},{"alignment":2,"font_size":150,"label":"Click + to type","pos":[-0.637,0.1,-0.625],"rows":1,"value":"","width":2000},{"alignment":2,"font_size":100,"label":"Click + to type","pos":[-0.637,0.1,-0.27],"rows":9,"value":"","width":2000},{"alignment":2,"font_size":150,"label":"Click + to type","pos":[-0.2,0.1,-0.7],"rows":1,"value":"","width":2000},{"alignment":2,"font_size":150,"label":"Click + to type","pos":[-0.2,0.1,-0.625],"rows":1,"value":"","width":2000},{"alignment":2,"font_size":100,"label":"Click + to type","pos":[-0.2,0.1,-0.27],"rows":9,"value":"","width":2000},{"alignment":2,"font_size":150,"label":"Click + to type","pos":[0.241,0.1,-0.7],"rows":1,"value":"","width":2000},{"alignment":2,"font_size":150,"label":"Click + to type","pos":[0.237,0.1,-0.62],"rows":1,"value":"","width":2000},{"alignment":2,"font_size":100,"label":"Click + to type","pos":[0.24,0.1,-0.268],"rows":9,"value":"","width":2000},{"alignment":2,"font_size":150,"label":"Click + to type","pos":[0.671,0.1,-0.7],"rows":1,"value":"","width":2000},{"alignment":2,"font_size":150,"label":"Click + to type","pos":[0.671,0.1,-0.62],"rows":1,"value":"","width":2000},{"alignment":2,"font_size":100,"label":"Click + to type","pos":[0.671,0.1,-0.265],"rows":9,"value":"","width":2000},{"alignment":2,"font_size":200,"label":"Click + to type","pos":[-0.393,0.1,0.265],"rows":10,"value":"","width":3200},{"alignment":2,"font_size":150,"label":"Click + to type","pos":[-0.417,0.1,0.881],"rows":4,"value":"","width":3500},{"alignment":2,"font_size":150,"label":"Click + to type","pos":[-0.388,0.1,0.676],"rows":2,"value":"","width":3500},{"alignment":2,"font_size":150,"label":"Click + to type","pos":[0.782,0.1,0.8],"rows":10,"value":"","width":1500}]}' +Name: Custom_Tile +Nickname: The Dream-Quest Campaign Log +Snap: true +States: + '2': + Autoraise: true + ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 + CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.1 + Type: 0 + ImageScalar: 1.0 + ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/959719855119695252/F9415595789317D4FAB83601CD43D165168FBA46/ + ImageURL: http://cloud-3.steamusercontent.com/ugc/775107869055944280/1D37D5E062542452B411D8A0EE668F75B7A909CF/ + WidthScale: 0.0 + Description: '' + GMNotes: '' + GUID: 4e2191 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: "--[[ Character Sheet Template by: MrStump\r\n\r\nYou can set\ + \ up your own character sheet if you follow these steps.\r\n\r\nStep 1) Change\ + \ the character sheet image\r\n -Right click on the character sheet, click\ + \ Custom\r\n -Replace the image URL with one for your character sheet\r\n\ + \ -Click import, make sure your sheet loads\r\n -SAVE THE GAME (the table\ + \ setup)\r\n -LOAD FROM THAT SAVE YOU JUST MADE\r\n\r\nStep 2) Edit script\ + \ to fit your character sheet\r\n -Below you will see some general options,\ + \ and then the big data table\r\n -The data table is what determines how\ + \ many of which buttons are made\r\n -Checkboxes\r\n -Counters\r\ + \n -Textboxes\r\n -By default, there are 3 of each. You can add more\ + \ or remove entries\r\n -If you intend to add/remove, be sure only to add/remove\ + \ ENTRIES\r\n -This is what an entry looks like:\r\n {\r\n\ + \ pos = {-0.977,0.1,-0.589},\r\n size = 800,\r\ + \n state = false\r\n },\r\n -Deleting the whole\ + \ thing would remove that specific item on the sheet\r\n -Copy and pasting\ + \ it after another entry would create another\r\n -Each entry type has unique\ + \ data points (pos, size, state, etc)\r\n -Do not try to add in your\ + \ own data points or remove them individually\r\n -There is a summary\ + \ of what each point does at the top of its category\r\n\r\nStep 3) Save and\ + \ check script changes\r\n -Hit Save & Apply in the script window to save\ + \ your code\r\n -You can edit your code as needed and Save+Apply as often\ + \ as needed\r\n -When you are finished, make disableSave = false below then\ + \ Save+apply\r\n -This enables saving, so your sheet will remember whats\ + \ on it.\r\n\r\nBonus) Finding/Editing Positions for elements\r\n I have\ + \ included a tool to get positions for buttons in {x,y,z} form\r\n Place\ + \ it where you want the center of your element to be\r\n Then copy the table\ + \ from the notes (lower right of screen)\r\n You can highlight it and\ + \ CTRL+C\r\n Paste it into the data table where needed (pos=)\r\n If you\ + \ want to manually tweek the values:\r\n {0,0,0} is the center of the\ + \ character sheet\r\n {1,0,0} is right, {-1,0,0} is left\r\n {0,0,-1}\ + \ is up, {0,0,1} is down\r\n 0.1 for Y is the height off of the page.\r\ + \n If it was 0, it would be down inside the model of the sheet\r\n\ + \r\nBegin editing below: ]]\r\n\r\n--Set this to true while editing and false\ + \ when you have finished\r\ndisableSave = false\r\n--Remember to set this to\ + \ false once you are done making changes\r\n--Then, after you save & apply it,\ + \ save your game too\r\n\r\n--Color information for button text (r,g,b, values\ + \ of 0-1)\r\nbuttonFontColor = {0,0,0}\r\n--Color information for button background\r\ + \nbuttonColor = {0.902,0.886,0.788}\r\n--Change scale of button (Avoid changing\ + \ if possible)\r\nbuttonScale = {0.1,0.1,0.1}\r\n\r\n--This is the button placement\ + \ information\r\ndefaultButtonData = {\r\n --Add checkboxes\r\n checkbox =\ + \ {\r\n --[[\r\n pos = the position (pasted from the helper tool)\r\ + \n size = height/width/font_size for checkbox\r\n state = default\ + \ starting value for checkbox (true=checked, false=not)\r\n ]]\r\n \ + \ --1 checkbox\r\n {\r\n pos = {-0.931,0.1,-0.006},\r\n \ + \ size = 250,\r\n state = false\r\n },\r\n --2 checkbox\r\ + \n {\r\n pos = {-0.928,0.1,0.076},\r\n size = 250,\r\ + \n state = false\r\n },\r\n --3 checkbox\r\n {\r\n \ + \ pos = {-0.924,0.1,0.154},\r\n size = 250,\r\n \ + \ state = false\r\n },\r\n --4 checkbox\r\n {\r\n pos\ + \ = {-0.919,0.1,0.232},\r\n size = 250,\r\n state = false\r\ + \n },\r\n --5 checkbox\r\n {\r\n pos = {-0.919,0.1,0.313},\r\ + \n size = 250,\r\n state = false\r\n },\r\n --6\ + \ checkbox\r\n {\r\n pos = {-0.914,0.1,0.388},\r\n \ + \ size = 250,\r\n state = false\r\n },\r\n --7 checkbox\r\ + \n {\r\n pos = {-0.914,0.1,0.471},\r\n size = 250,\r\ + \n state = false\r\n },\r\n --8 checkbox\r\n {\r\n \ + \ pos = {-0.915,0.1,0.548},\r\n size = 250,\r\n \ + \ state = false\r\n },\r\n --9 checkbox\r\n {\r\n pos\ + \ = {-0.915,0.1,0.624},\r\n size = 250,\r\n state = false\r\ + \n },\r\n --End of checkboxes\r\n },\r\n --Add counters that have\ + \ a + and - button\r\n counter = {\r\n --[[\r\n pos = the\ + \ position (pasted from the helper tool)\r\n size = height/width/font_size\ + \ for counter\r\n value = default starting value for counter\r\n \ + \ hideBG = if background of counter is hidden (true=hidden, false=not)\r\ + \n ]]\r\n --Slot one counter 1\r\n {\r\n pos\ + \ = {-0.74,0.1,-0.45},\r\n size = 400,\r\n value\ + \ = 0,\r\n hideBG = true\r\n },\r\n --Slot one counter\ + \ 2\r\n {\r\n pos = {-0.54,0.1,-0.45},\r\n size\ + \ = 400,\r\n value = 0,\r\n hideBG = true\r\n \ + \ },\r\n --Slot one xp 1\r\n {\r\n pos = {-0.54,0.1,-0.55},\r\ + \n size = 300,\r\n value = 0,\r\n hideBG\ + \ = true\r\n },\r\n --Slot two counter 1\r\n {\r\n \ + \ pos = {-0.3,0.1,-0.445},\r\n size = 400,\r\n \ + \ value = 0,\r\n hideBG = true\r\n },\r\n --Slot\ + \ two counter 2\r\n {\r\n pos = {-0.09,0.1,-0.445},\r\n\ + \ size = 400,\r\n value = 0,\r\n hideBG\ + \ = true\r\n },\r\n --Slot two xp 1\r\n {\r\n \ + \ pos = {-0.09,0.1,-0.54},\r\n size = 300,\r\n \ + \ value = 0,\r\n hideBG = true\r\n },\r\n --Slot three\ + \ counter 1\r\n {\r\n pos = {0.13,0.1,-0.44},\r\n \ + \ size = 400,\r\n value = 0,\r\n hideBG = true\r\ + \n },\r\n --Slot three counter 2\r\n {\r\n pos\ + \ = {0.34,0.1,-0.44},\r\n size = 400,\r\n value \ + \ = 0,\r\n hideBG = true\r\n },\r\n --Slot three xp\ + \ 1\r\n {\r\n pos = {0.35,0.1,-0.54},\r\n size\ + \ = 300,\r\n value = 0,\r\n hideBG = true\r\n \ + \ },\r\n --Slot four counter 1\r\n {\r\n pos =\ + \ {0.58,0.1,-0.44},\r\n size = 400,\r\n value = 0,\r\ + \n hideBG = true\r\n },\r\n --Slot four counter 2\r\ + \n {\r\n pos = {0.78,0.1,-0.44},\r\n size \ + \ = 400,\r\n value = 0,\r\n hideBG = true\r\n \ + \ },\r\n --Slot four xp 1\r\n {\r\n pos = {0.78,0.1,-0.54},\r\ + \n size = 300,\r\n value = 0,\r\n hideBG\ + \ = true\r\n },\r\n\r\n --End of counters\r\n },\r\n --Add\ + \ editable text boxes\r\n textbox = {\r\n --[[\r\n pos \ + \ = the position (pasted from the helper tool)\r\n rows = how\ + \ many lines of text you want for this box\r\n width = how wide the\ + \ text box is\r\n font_size = size of text. This and \"rows\" effect\ + \ overall height\r\n label = what is shown when there is no text.\ + \ \"\" = nothing\r\n value = text entered into box. \"\" = nothing\r\ + \n alignment = Number to indicate how you want text aligned\r\n \ + \ (1=Automatic, 2=Left, 3=Center, 4=Right, 5=Justified)\r\n \ + \ ]]\r\n --Slot one player\r\n {\r\n pos \ + \ = {-0.677,0.1,-0.70},\r\n rows = 1,\r\n width\ + \ = 2000,\r\n font_size = 150,\r\n label = \"\ + Click to type\",\r\n value = \"\",\r\n alignment =\ + \ 2\r\n },\r\n --Slot one investigator\r\n {\r\n \ + \ pos = {-0.677,0.1,-0.625},\r\n rows = 1,\r\n \ + \ width = 2000,\r\n font_size = 150,\r\n \ + \ label = \"Click to type\",\r\n value = \"\",\r\n \ + \ alignment = 2\r\n },\r\n --Slot one story\r\n {\r\ + \n pos = {-0.677,0.1,-0.27},\r\n rows = 9,\r\ + \n width = 2000,\r\n font_size = 100,\r\n \ + \ label = \"Click to type\",\r\n value = \"\",\r\n \ + \ alignment = 2\r\n },\r\n --Slot two player\r\n \ + \ {\r\n pos = {-0.24,0.1,-0.70},\r\n rows \ + \ = 1,\r\n width = 2000,\r\n font_size = 150,\r\n\ + \ label = \"Click to type\",\r\n value = \"\"\ + ,\r\n alignment = 2\r\n },\r\n --Slot two investigator\r\ + \n {\r\n pos = {-0.24,0.1,-0.625},\r\n rows\ + \ = 1,\r\n width = 2000,\r\n font_size = 150,\r\ + \n label = \"Click to type\",\r\n value = \"\"\ + ,\r\n alignment = 2\r\n },\r\n --Slot two story\r\n\ + \ {\r\n pos = {-0.24,0.1,-0.27},\r\n rows\ + \ = 9,\r\n width = 2000,\r\n font_size = 100,\r\ + \n label = \"Click to type\",\r\n value = \"\"\ + ,\r\n alignment = 2\r\n },\r\n --Slot three player\r\ + \n {\r\n pos = {0.21,0.1,-0.70},\r\n rows\ + \ = 1,\r\n width = 2000,\r\n font_size = 150,\r\ + \n label = \"Click to type\",\r\n value = \"\"\ + ,\r\n alignment = 2\r\n },\r\n --Slot three investigator\r\ + \n {\r\n pos = {0.21,0.1,-0.62},\r\n rows\ + \ = 1,\r\n width = 2000,\r\n font_size = 150,\r\ + \n label = \"Click to type\",\r\n value = \"\"\ + ,\r\n alignment = 2\r\n },\r\n --Slot three story\r\ + \n {\r\n pos = {0.21,0.1,-0.268},\r\n rows\ + \ = 9,\r\n width = 2000,\r\n font_size = 100,\r\ + \n label = \"Click to type\",\r\n value = \"\"\ + ,\r\n alignment = 2\r\n },\r\n --Slot four player\r\ + \n {\r\n pos = {0.65,0.1,-0.70},\r\n rows\ + \ = 1,\r\n width = 2000,\r\n font_size = 150,\r\ + \n label = \"Click to type\",\r\n value = \"\"\ + ,\r\n alignment = 2\r\n },\r\n --Slot four investigator\r\ + \n {\r\n pos = {0.65,0.1,-0.62},\r\n rows\ + \ = 1,\r\n width = 2000,\r\n font_size = 150,\r\ + \n label = \"Click to type\",\r\n value = \"\"\ + ,\r\n alignment = 2\r\n },\r\n --Slot four story\r\n\ + \ {\r\n pos = {0.65,0.1,-0.265},\r\n rows\ + \ = 9,\r\n width = 2000,\r\n font_size = 100,\r\ + \n label = \"Click to type\",\r\n value = \"\"\ + ,\r\n alignment = 2\r\n },\r\n --Campaign Notes 1\r\ + \n {\r\n pos = {0.33,0.1,0.273},\r\n rows\ + \ = 10,\r\n width = 2500,\r\n font_size = 150,\r\ + \n label = \"Click to type\",\r\n value = \"\"\ + ,\r\n alignment = 2\r\n },\r\n --Campaign Notes 2\r\ + \n {\r\n pos = {0.48,0.1,0.632},\r\n rows\ + \ = 8,\r\n width = 4000,\r\n font_size = 150,\r\ + \n label = \"Click to type\",\r\n value = \"\"\ + ,\r\n alignment = 2\r\n },\r\n --Killed Investigators\r\ + \n {\r\n pos = {-0.542,0.1,0.867},\r\n rows\ + \ = 4,\r\n width = 3500,\r\n font_size = 150,\r\ + \n label = \"Click to type\",\r\n value = \"\"\ + ,\r\n alignment = 2\r\n },\r\n --Steps of the Bridge\r\ + \n {\r\n pos = {0.415,0.1,0.94},\r\n rows\ + \ = 2,\r\n width = 3500,\r\n font_size = 150,\r\ + \n label = \"Click to type\",\r\n value = \"\"\ + ,\r\n alignment = 2\r\n },\r\n --Chaos Bag\r\n \ + \ {\r\n pos = {0.797,0.1,0.26},\r\n rows \ + \ = 10,\r\n width = 1500,\r\n font_size = 150,\r\n\ + \ label = \"Click to type\",\r\n value = \"\"\ + ,\r\n alignment = 2\r\n },\r\n --End of textboxes\r\ + \n }\r\n}\r\n\r\n\r\n\r\n--Lua beyond this point, I recommend doing something\ + \ more fun with your life\r\n\r\n\r\n\r\n--Save function\r\nfunction updateSave()\r\ + \n saved_data = JSON.encode(ref_buttonData)\r\n if disableSave==true then\ + \ saved_data=\"\" end\r\n self.script_state = saved_data\r\nend\r\n\r\n--Startup\ + \ procedure\r\nfunction onload(saved_data)\r\n if disableSave==true then\ + \ saved_data=\"\" end\r\n if saved_data ~= \"\" then\r\n local loaded_data\ + \ = JSON.decode(saved_data)\r\n ref_buttonData = loaded_data\r\n else\r\ + \n ref_buttonData = defaultButtonData\r\n end\r\n\r\n spawnedButtonCount\ + \ = 0\r\n createCheckbox()\r\n createCounter()\r\n createTextbox()\r\ + \nend\r\n\r\n\r\n\r\n--Click functions for buttons\r\n\r\n\r\n\r\n--Checks or\ + \ unchecks the given box\r\nfunction click_checkbox(tableIndex, buttonIndex)\r\ + \n if ref_buttonData.checkbox[tableIndex].state == true then\r\n ref_buttonData.checkbox[tableIndex].state\ + \ = false\r\n self.editButton({index=buttonIndex, label=\"\"})\r\n \ + \ else\r\n ref_buttonData.checkbox[tableIndex].state = true\r\n \ + \ self.editButton({index=buttonIndex, label=string.char(10008)})\r\n end\r\ + \n updateSave()\r\nend\r\n\r\n--Applies value to given counter display\r\n\ + function click_counter(tableIndex, buttonIndex, amount)\r\n ref_buttonData.counter[tableIndex].value\ + \ = ref_buttonData.counter[tableIndex].value + amount\r\n self.editButton({index=buttonIndex,\ + \ label=ref_buttonData.counter[tableIndex].value})\r\n updateSave()\r\nend\r\ + \n\r\n--Updates saved value for given text box\r\nfunction click_textbox(i,\ + \ value, selected)\r\n if selected == false then\r\n ref_buttonData.textbox[i].value\ + \ = value\r\n updateSave()\r\n end\r\nend\r\n\r\n--Dud function for\ + \ if you have a background on a counter\r\nfunction click_none() end\r\n\r\n\ + \r\n\r\n--Button creation\r\n\r\n\r\n\r\n--Makes checkboxes\r\nfunction createCheckbox()\r\ + \n for i, data in ipairs(ref_buttonData.checkbox) do\r\n --Sets up\ + \ reference function\r\n local buttonNumber = spawnedButtonCount\r\n\ + \ local funcName = \"checkbox\"..i\r\n local func = function()\ + \ click_checkbox(i, buttonNumber) end\r\n self.setVar(funcName, func)\r\ + \n --Sets up label\r\n local label = \"\"\r\n if data.state==true\ + \ then label=string.char(10008) end\r\n --Creates button and counts it\r\ + \n self.createButton({\r\n label=label, click_function=funcName,\ + \ function_owner=self,\r\n position=data.pos, height=data.size, width=data.size,\r\ + \n font_size=data.size, scale=buttonScale,\r\n color=buttonColor,\ + \ font_color=buttonFontColor\r\n })\r\n spawnedButtonCount = spawnedButtonCount\ + \ + 1\r\n end\r\nend\r\n\r\n--Makes counters\r\nfunction createCounter()\r\ + \n for i, data in ipairs(ref_buttonData.counter) do\r\n --Sets up\ + \ display\r\n local displayNumber = spawnedButtonCount\r\n --Sets\ + \ up label\r\n local label = data.value\r\n --Sets height/width\ + \ for display\r\n local size = data.size\r\n if data.hideBG ==\ + \ true then size = 0 end\r\n --Creates button and counts it\r\n \ + \ self.createButton({\r\n label=label, click_function=\"click_none\"\ + , function_owner=self,\r\n position=data.pos, height=size, width=size,\r\ + \n font_size=data.size, scale=buttonScale,\r\n color=buttonColor,\ + \ font_color=buttonFontColor\r\n })\r\n spawnedButtonCount = spawnedButtonCount\ + \ + 1\r\n\r\n --Sets up add 1\r\n local funcName = \"counterAdd\"\ + ..i\r\n local func = function() click_counter(i, displayNumber, 1) end\r\ + \n self.setVar(funcName, func)\r\n --Sets up label\r\n \ + \ local label = \"+\"\r\n --Sets up position\r\n local offsetDistance\ + \ = (data.size/2 + data.size/4) * (buttonScale[1] * 0.002)\r\n local\ + \ pos = {data.pos[1] + offsetDistance, data.pos[2], data.pos[3]}\r\n \ + \ --Sets up size\r\n local size = data.size / 2\r\n --Creates\ + \ button and counts it\r\n self.createButton({\r\n label=label,\ + \ click_function=funcName, function_owner=self,\r\n position=pos,\ + \ height=size, width=size,\r\n font_size=size, scale=buttonScale,\r\ + \n color=buttonColor, font_color=buttonFontColor\r\n })\r\n\ + \ spawnedButtonCount = spawnedButtonCount + 1\r\n\r\n --Sets up\ + \ subtract 1\r\n local funcName = \"counterSub\"..i\r\n local\ + \ func = function() click_counter(i, displayNumber, -1) end\r\n self.setVar(funcName,\ + \ func)\r\n --Sets up label\r\n local label = \"-\"\r\n \ + \ --Set up position\r\n local pos = {data.pos[1] - offsetDistance, data.pos[2],\ + \ data.pos[3]}\r\n --Creates button and counts it\r\n self.createButton({\r\ + \n label=label, click_function=funcName, function_owner=self,\r\n\ + \ position=pos, height=size, width=size,\r\n font_size=size,\ + \ scale=buttonScale,\r\n color=buttonColor, font_color=buttonFontColor\r\ + \n })\r\n spawnedButtonCount = spawnedButtonCount + 1\r\n end\r\ + \nend\r\n\r\nfunction createTextbox()\r\n for i, data in ipairs(ref_buttonData.textbox)\ + \ do\r\n --Sets up reference function\r\n local funcName = \"\ + textbox\"..i\r\n local func = function(_,_,val,sel) click_textbox(i,val,sel)\ + \ end\r\n self.setVar(funcName, func)\r\n\r\n self.createInput({\r\ + \n input_function = funcName,\r\n function_owner = self,\r\ + \n label = data.label,\r\n alignment = data.alignment,\r\ + \n position = data.pos,\r\n scale = buttonScale,\r\ + \n width = data.width,\r\n height = (data.font_size*data.rows)+24,\r\ + \n font_size = data.font_size,\r\n color \ + \ = buttonColor,\r\n font_color = buttonFontColor,\r\n \ + \ value = data.value,\r\n })\r\n end\r\nend\r\n" + LuaScriptState: '{"checkbox":[{"pos":[-0.931,0.1,-0.006],"size":250,"state":false},{"pos":[-0.928,0.1,0.076],"size":250,"state":false},{"pos":[-0.924,0.1,0.154],"size":250,"state":false},{"pos":[-0.919,0.1,0.232],"size":250,"state":false},{"pos":[-0.919,0.1,0.313],"size":250,"state":false},{"pos":[-0.914,0.1,0.388],"size":250,"state":false},{"pos":[-0.914,0.1,0.471],"size":250,"state":false},{"pos":[-0.915,0.1,0.548],"size":250,"state":false},{"pos":[-0.915,0.1,0.624],"size":250,"state":false}],"counter":[{"hideBG":true,"pos":[-0.74,0.1,-0.45],"size":400,"value":0},{"hideBG":true,"pos":[-0.54,0.1,-0.45],"size":400,"value":0},{"hideBG":true,"pos":[-0.54,0.1,-0.55],"size":300,"value":0},{"hideBG":true,"pos":[-0.3,0.1,-0.445],"size":400,"value":0},{"hideBG":true,"pos":[-0.09,0.1,-0.445],"size":400,"value":0},{"hideBG":true,"pos":[-0.09,0.1,-0.54],"size":300,"value":0},{"hideBG":true,"pos":[0.13,0.1,-0.44],"size":400,"value":0},{"hideBG":true,"pos":[0.34,0.1,-0.44],"size":400,"value":0},{"hideBG":true,"pos":[0.35,0.1,-0.54],"size":300,"value":0},{"hideBG":true,"pos":[0.58,0.1,-0.44],"size":400,"value":0},{"hideBG":true,"pos":[0.78,0.1,-0.44],"size":400,"value":0},{"hideBG":true,"pos":[0.78,0.1,-0.54],"size":300,"value":0}],"textbox":[{"alignment":2,"font_size":150,"label":"Click + to type","pos":[-0.677,0.1,-0.7],"rows":1,"value":"","width":2000},{"alignment":2,"font_size":150,"label":"Click + to type","pos":[-0.677,0.1,-0.625],"rows":1,"value":"","width":2000},{"alignment":2,"font_size":100,"label":"Click + to type","pos":[-0.677,0.1,-0.27],"rows":9,"value":"","width":2000},{"alignment":2,"font_size":150,"label":"Click + to type","pos":[-0.24,0.1,-0.7],"rows":1,"value":"","width":2000},{"alignment":2,"font_size":150,"label":"Click + to type","pos":[-0.24,0.1,-0.625],"rows":1,"value":"","width":2000},{"alignment":2,"font_size":100,"label":"Click + to type","pos":[-0.24,0.1,-0.27],"rows":9,"value":"","width":2000},{"alignment":2,"font_size":150,"label":"Click + to type","pos":[0.21,0.1,-0.7],"rows":1,"value":"","width":2000},{"alignment":2,"font_size":150,"label":"Click + to type","pos":[0.21,0.1,-0.62],"rows":1,"value":"","width":2000},{"alignment":2,"font_size":100,"label":"Click + to type","pos":[0.21,0.1,-0.268],"rows":9,"value":"","width":2000},{"alignment":2,"font_size":150,"label":"Click + to type","pos":[0.65,0.1,-0.7],"rows":1,"value":"","width":2000},{"alignment":2,"font_size":150,"label":"Click + to type","pos":[0.65,0.1,-0.62],"rows":1,"value":"","width":2000},{"alignment":2,"font_size":100,"label":"Click + to type","pos":[0.65,0.1,-0.265],"rows":9,"value":"","width":2000},{"alignment":2,"font_size":150,"label":"Click + to type","pos":[0.33,0.1,0.273],"rows":10,"value":"","width":2500},{"alignment":2,"font_size":150,"label":"Click + to type","pos":[0.48,0.1,0.632],"rows":8,"value":"","width":4000},{"alignment":2,"font_size":150,"label":"Click + to type","pos":[-0.542,0.1,0.867],"rows":4,"value":"","width":3500},{"alignment":2,"font_size":150,"label":"Click + to type","pos":[0.415,0.1,0.94],"rows":2,"value":"","width":3500},{"alignment":2,"font_size":150,"label":"Click + to type","pos":[0.797,0.1,0.26],"rows":10,"value":"","width":1500}]}' + Name: Custom_Tile + Nickname: The Web of Dreams Campaign Log + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -12.00934 + posY: 1.49349606 + posZ: -16.1504059 + rotX: 359.9201 + rotY: 270.0128 + rotZ: 0.0168539 + scaleX: 6.5 + scaleY: 1.0 + scaleZ: 6.5 + XmlUI: '' +Sticky: true +Tooltip: true +Transform: + posX: -1.02266777 + posY: 1.47512126 + posZ: -26.5410767 + rotX: 359.9201 + rotY: 270.072784 + rotZ: 0.0167699475 + scaleX: 6.5 + scaleY: 1.0 + scaleZ: 6.5 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters a34f34.ttslua b/unpacked/Custom_Model_Bag The Dream-Eaters a34f34.ttslua new file mode 100644 index 000000000..5dff2f1d7 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dream-Eaters a34f34.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,3,7}, rotation={0,0,0}, height=700, width=2000, + font_size=700, 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 +12 + 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=800, width=800, + 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,3,7}, rotation={0,0,0}, height=700, width=2000, + font_size=700, color={0,0,0}, font_color={1,1,1} + }) + self.createButton({ + label="Submit", click_function="buttonClick_submit", function_owner=self, + position={0,3,-7}, rotation={0,0,0}, height=700, width=2000, + font_size=700, color={0,0,0}, font_color={1,1,1} + }) +-- self.createButton({ +-- label="Reset", click_function="buttonClick_reset", function_owner=self, +-- position={3,2.5,6}, rotation={0,0,0}, height=550, width=1100, +-- font_size=400, 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={2.4,3,7}, rotation={0,0,0}, height=850, width=2000, + font_size=700, color={0,0,0}, font_color={1,1,1} + }) + self.createButton({ + label="Recall", click_function="buttonClick_recall", function_owner=self, + position={-2.4,3,7}, rotation={0,0,0}, height=850, width=2200, + font_size=700, 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.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 \ No newline at end of file diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters a34f34.yaml b/unpacked/Custom_Model_Bag The Dream-Eaters a34f34.yaml new file mode 100644 index 000000000..1b2304976 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dream-Eaters a34f34.yaml @@ -0,0 +1,96 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +ContainedObjects: +- !include 'Custom_Model_Bag The Dream-Eaters a34f34/Custom_Model Survivor turn token + 0531e5.yaml' +- !include 'Custom_Model_Bag The Dream-Eaters a34f34/Custom_Model Survivor turn token + 0db936.yaml' +- !include 'Custom_Model_Bag The Dream-Eaters a34f34/Custom_Model Turn token 1f168b.yaml' +- !include 'Custom_Model_Bag The Dream-Eaters a34f34/Card Tommy Muldoon 20abda.yaml' +- !include 'Custom_Model_Bag The Dream-Eaters a34f34/Custom_Model Survivor turn token + 2da799.yaml' +- !include 'Custom_Model_Bag The Dream-Eaters a34f34/Custom_Model Survivor turn token + 347bdc.yaml' +- !include 'Custom_Model_Bag The Dream-Eaters a34f34/Custom_Model_Bag signature cards + 37326d.yaml' +- !include 'Custom_Model_Bag The Dream-Eaters a34f34/Custom_Model_Bag signature cards + 396e28.yaml' +- !include 'Custom_Model_Bag The Dream-Eaters a34f34/Custom_Model_Bag signature cards + 3a0b7c.yaml' +- !include 'Custom_Model_Bag The Dream-Eaters a34f34/Custom_Model Survivor turn token + 4ac8be.yaml' +- !include 'Custom_Model_Bag The Dream-Eaters a34f34/Card Patrice Hathaway 568da7.yaml' +- !include 'Custom_Model_Bag The Dream-Eaters a34f34/Custom_Model Turn token 592dfb.yaml' +- !include 'Custom_Model_Bag The Dream-Eaters a34f34/Custom_Model Survivor turn token + 5d774c.yaml' +- !include 'Custom_Model_Bag The Dream-Eaters a34f34/Custom_Model_Bag signature cards + 687b10.yaml' +- !include 'Custom_Model_Bag The Dream-Eaters a34f34/Custom_Model Survivor turn token + 6b8d4e.yaml' +- !include 'Custom_Model_Bag The Dream-Eaters a34f34/Card Luke Robinson 92b8c8.yaml' +- !include 'Custom_Model_Bag The Dream-Eaters a34f34/Card Luke Robinson b238a0.yaml' +- !include 'Custom_Model_Bag The Dream-Eaters a34f34/Custom_Model Turn token b3b6b9.yaml' +- !include 'Custom_Model_Bag The Dream-Eaters a34f34/Custom_Model_Bag signature cards + b81d01.yaml' +- !include 'Custom_Model_Bag The Dream-Eaters a34f34/Custom_Model Turn token c0a2e9.yaml' +- !include 'Custom_Model_Bag The Dream-Eaters a34f34/Card Mandy Thompson c57723.yaml' +- !include 'Custom_Model_Bag The Dream-Eaters a34f34/Card Tony Morgan c82de2.yaml' +- !include 'Custom_Model_Bag The Dream-Eaters a34f34/Card Tommy Muldoon c96d87.yaml' +- !include 'Custom_Model_Bag The Dream-Eaters a34f34/Custom_Model Survivor turn token + d5ff18.yaml' +- !include 'Custom_Model_Bag The Dream-Eaters a34f34/Custom_Model Turn token d827a4.yaml' +- !include 'Custom_Model_Bag The Dream-Eaters a34f34/Card Patrice Hathaway da546d.yaml' +- !include 'Custom_Model_Bag The Dream-Eaters a34f34/Card Mandy Thompson df88eb.yaml' +- !include 'Custom_Model_Bag The Dream-Eaters a34f34/Custom_Model Survivor turn token + eaadbf.yaml' +- !include 'Custom_Model_Bag The Dream-Eaters a34f34/Card Tony Morgan fae88f.yaml' +- !include 'Custom_Model_Bag The Dream-Eaters a34f34/Custom_Model Turn token ff2fcf.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/762723517669849292/9CD4BE220E1DE5294B1BC6301792920D213C98B3/ + MaterialIndex: 3 + MeshURL: https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/core_h_MSH.obj + NormalURL: '' + TypeIndex: 6 +Description: '' +GMNotes: '' +GUID: a34f34 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Model_Bag The Dream-Eaters a34f34.ttslua' +LuaScriptState: '{"ml":{"0531e5":{"lock":false,"pos":{"x":-16.64,"y":1.3615,"z":-62.4609},"rot":{"x":0.0208,"y":270.0276,"z":0.0168}},"0db936":{"lock":false,"pos":{"x":-16.6389,"y":1.3622,"z":-59.9952},"rot":{"x":0.0209,"y":269.8573,"z":0.0167}},"1f168b":{"lock":false,"pos":{"x":-16.6401,"y":1.3592,"z":-70.2906},"rot":{"x":0.0208,"y":269.9988,"z":0.0168}},"20abda":{"lock":false,"pos":{"x":-19.3,"y":1.3749,"z":-53.4358},"rot":{"x":0.0208,"y":269.9682,"z":0.0168}},"2da799":{"lock":false,"pos":{"x":-16.64,"y":1.3645,"z":-52.152},"rot":{"x":0.0208,"y":270.0003,"z":0.0168}},"347bdc":{"lock":false,"pos":{"x":-16.6403,"y":1.3576,"z":-75.7054},"rot":{"x":0.0208,"y":270.0024,"z":0.0168}},"37326d":{"lock":false,"pos":{"x":-26.3001,"y":1.2734,"z":-61.241},"rot":{"x":359.9792,"y":89.9917,"z":359.9832}},"396e28":{"lock":false,"pos":{"x":-26.2996,"y":1.2665,"z":-84.818},"rot":{"x":359.9792,"y":90.0006,"z":359.9832}},"3a0b7c":{"lock":false,"pos":{"x":-26.3,"y":1.2757,"z":-53.4368},"rot":{"x":359.9792,"y":90,"z":359.9832}},"4ac8be":{"lock":false,"pos":{"x":-16.64,"y":1.3642,"z":-53.3904},"rot":{"x":0.0208,"y":270.0061,"z":0.0168}},"568da7":{"lock":false,"pos":{"x":-19.2998,"y":1.3657,"z":-84.8182},"rot":{"x":0.0208,"y":270.0004,"z":0.0168}},"592dfb":{"lock":false,"pos":{"x":-16.6394,"y":1.3546,"z":-86.0186},"rot":{"x":0.0208,"y":270.0097,"z":0.0168}},"5d774c":{"lock":false,"pos":{"x":-16.6343,"y":1.3638,"z":-54.6167},"rot":{"x":0.0208,"y":269.9004,"z":0.0167}},"687b10":{"lock":false,"pos":{"x":-26.3002,"y":1.2688,"z":-76.9456},"rot":{"x":359.9792,"y":89.9993,"z":359.9832}},"6b8d4e":{"lock":false,"pos":{"x":-16.6401,"y":1.3619,"z":-61.231},"rot":{"x":0.0208,"y":270.0115,"z":0.0168}},"92b8c8":{"lock":false,"pos":{"x":-19.2936,"y":1.368,"z":-76.9415},"rot":{"x":0.0208,"y":269.9868,"z":0.0168}},"b238a0":{"lock":false,"pos":{"x":-22.6157,"y":1.3668,"z":-76.946},"rot":{"x":0.0168,"y":179.9999,"z":359.9792}},"b3b6b9":{"lock":false,"pos":{"x":-16.6385,"y":1.3554,"z":-83.5415},"rot":{"x":0.0208,"y":270.0003,"z":0.0168}},"b81d01":{"lock":false,"pos":{"x":-26.3002,"y":1.2711,"z":-69.0606},"rot":{"x":359.9792,"y":90.0185,"z":359.9832}},"c0a2e9":{"lock":false,"pos":{"x":-16.6401,"y":1.36,"z":-67.8206},"rot":{"x":0.0208,"y":269.9973,"z":0.0168}},"c57723":{"lock":false,"pos":{"x":-22.6169,"y":1.3714,"z":-61.2414},"rot":{"x":0.0168,"y":179.9939,"z":359.9792}},"c82de2":{"lock":false,"pos":{"x":-22.6157,"y":1.3691,"z":-69.0756},"rot":{"x":0.0168,"y":179.9999,"z":359.9792}},"c96d87":{"lock":false,"pos":{"x":-22.6139,"y":1.3737,"z":-53.4381},"rot":{"x":0.0168,"y":180,"z":359.9792}},"d5ff18":{"lock":false,"pos":{"x":-16.6401,"y":1.3569,"z":-78.1756},"rot":{"x":0.0208,"y":270.0004,"z":0.0168}},"d827a4":{"lock":false,"pos":{"x":-16.6402,"y":1.355,"z":-84.8182},"rot":{"x":0.0208,"y":269.9846,"z":0.0168}},"da546d":{"lock":false,"pos":{"x":-22.6169,"y":1.3645,"z":-84.8185},"rot":{"x":0.0168,"y":179.9867,"z":359.9792}},"df88eb":{"lock":false,"pos":{"x":-19.3001,"y":1.3726,"z":-61.2332},"rot":{"x":0.0208,"y":269.987,"z":0.0168}},"eaadbf":{"lock":false,"pos":{"x":-16.6396,"y":1.3573,"z":-76.9456},"rot":{"x":0.0208,"y":269.9724,"z":0.0167}},"fae88f":{"lock":false,"pos":{"x":-19.2959,"y":1.3703,"z":-69.0607},"rot":{"x":0.0208,"y":269.9871,"z":0.0168}},"ff2fcf":{"lock":false,"pos":{"x":-16.6403,"y":1.3596,"z":-69.0603},"rot":{"x":0.0208,"y":269.9963,"z":0.0168}}}}' +MaterialIndex: -1 +MeshIndex: -1 +Name: Custom_Model_Bag +Nickname: The Dream-Eaters +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -9.74 + posY: 1.2980653 + posZ: -82.83582 + rotX: 0.02081025 + rotY: 270.0003 + rotZ: 0.0167705081 + scaleX: 0.5 + scaleY: 0.139652729 + scaleZ: 0.5 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters a34f34/Card Luke Robinson 92b8c8.yaml b/unpacked/Custom_Model_Bag The Dream-Eaters a34f34/Card Luke Robinson 92b8c8.yaml new file mode 100644 index 000000000..3a2f45b08 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dream-Eaters a34f34/Card Luke Robinson 92b8c8.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 274013 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2740': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1011562618093846975/4726098952C64103F2C211D202FFDD40D9D988BB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869050066760/0DE2BD4589CC8C2F3D26C2900A17ED7A6483062F/ + NumHeight: 3 + NumWidth: 7 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 92b8c8 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Luke Robinson +SidewaysCard: false +Snap: false +Sticky: true +Tooltip: true +Transform: + posX: -19.2936 + posY: 1.36803448 + posZ: -76.9415 + rotX: 0.0208144188 + rotY: 269.986877 + rotZ: 0.0167655461 + scaleX: 0.6 + scaleY: 1.0 + scaleZ: 0.6 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters a34f34/Card Luke Robinson b238a0.yaml b/unpacked/Custom_Model_Bag The Dream-Eaters a34f34/Card Luke Robinson b238a0.yaml new file mode 100644 index 000000000..870bb385c --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dream-Eaters a34f34/Card Luke Robinson b238a0.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 273934 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2739': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1011562618093845464/80687C9319FA2015F3D9F7CBEB4C55FBF045B27D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1011562618093845971/A678BD374EC4DE672206B5EF7EB57DC885BC839C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: The Dreamer +GMNotes: '' +GUID: b238a0 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Luke Robinson +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -22.6157 + posY: 1.36682665 + posZ: -76.946 + rotX: 0.0167717077 + rotY: 179.999908 + rotZ: 359.9792 + scaleX: 1.1 + scaleY: 1.0 + scaleZ: 1.1 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters a34f34/Card Mandy Thompson c57723.yaml b/unpacked/Custom_Model_Bag The Dream-Eaters a34f34/Card Mandy Thompson c57723.yaml new file mode 100644 index 000000000..b496a7b85 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dream-Eaters a34f34/Card Mandy Thompson c57723.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 273933 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2739': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1011562618093845464/80687C9319FA2015F3D9F7CBEB4C55FBF045B27D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1011562618093845971/A678BD374EC4DE672206B5EF7EB57DC885BC839C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: The Researcher +GMNotes: '' +GUID: c57723 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Mandy Thompson +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -22.6169 + posY: 1.37142313 + posZ: -61.2414 + rotX: 0.0167696811 + rotY: 179.993881 + rotZ: 359.9792 + scaleX: 1.1 + scaleY: 1.0 + scaleZ: 1.1 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters a34f34/Card Mandy Thompson df88eb.yaml b/unpacked/Custom_Model_Bag The Dream-Eaters a34f34/Card Mandy Thompson df88eb.yaml new file mode 100644 index 000000000..07e6fd5e9 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dream-Eaters a34f34/Card Mandy Thompson df88eb.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 274012 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2740': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1011562618093846975/4726098952C64103F2C211D202FFDD40D9D988BB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869050066760/0DE2BD4589CC8C2F3D26C2900A17ED7A6483062F/ + NumHeight: 3 + NumWidth: 7 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: df88eb +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Mandy Thompson +SidewaysCard: false +Snap: false +Sticky: true +Tooltip: true +Transform: + posX: -19.3001 + posY: 1.37263012 + posZ: -61.2332 + rotX: 0.0208145157 + rotY: 269.987 + rotZ: 0.01676516 + scaleX: 0.6 + scaleY: 1.0 + scaleZ: 0.6 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters a34f34/Card Patrice Hathaway 568da7.yaml b/unpacked/Custom_Model_Bag The Dream-Eaters a34f34/Card Patrice Hathaway 568da7.yaml new file mode 100644 index 000000000..39472ade9 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dream-Eaters a34f34/Card Patrice Hathaway 568da7.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 274014 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2740': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1011562618093846975/4726098952C64103F2C211D202FFDD40D9D988BB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869050066760/0DE2BD4589CC8C2F3D26C2900A17ED7A6483062F/ + NumHeight: 3 + NumWidth: 7 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 568da7 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Patrice Hathaway +SidewaysCard: false +Snap: false +Sticky: true +Tooltip: true +Transform: + posX: -19.2998 + posY: 1.36572659 + posZ: -84.8182 + rotX: 0.0208103769 + rotY: 270.000366 + rotZ: 0.0167704243 + scaleX: 0.6 + scaleY: 1.0 + scaleZ: 0.6 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters a34f34/Card Patrice Hathaway da546d.yaml b/unpacked/Custom_Model_Bag The Dream-Eaters a34f34/Card Patrice Hathaway da546d.yaml new file mode 100644 index 000000000..d05eb29eb --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dream-Eaters a34f34/Card Patrice Hathaway da546d.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 273935 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2739': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1011562618093845464/80687C9319FA2015F3D9F7CBEB4C55FBF045B27D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1011562618093845971/A678BD374EC4DE672206B5EF7EB57DC885BC839C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: The Violinist +GMNotes: '' +GUID: da546d +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Patrice Hathaway +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -22.6169 + posY: 1.36452186 + posZ: -84.8185 + rotX: 0.0167670734 + rotY: 179.986679 + rotZ: 359.9792 + scaleX: 1.1 + scaleY: 1.0 + scaleZ: 1.1 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters a34f34/Card Tommy Muldoon 20abda.yaml b/unpacked/Custom_Model_Bag The Dream-Eaters a34f34/Card Tommy Muldoon 20abda.yaml new file mode 100644 index 000000000..9d7066bd4 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dream-Eaters a34f34/Card Tommy Muldoon 20abda.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 274011 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2740': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1011562618093846975/4726098952C64103F2C211D202FFDD40D9D988BB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869050066760/0DE2BD4589CC8C2F3D26C2900A17ED7A6483062F/ + NumHeight: 3 + NumWidth: 7 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 20abda +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Tommy Muldoon +SidewaysCard: false +Snap: false +Sticky: true +Tooltip: true +Transform: + posX: -19.3 + posY: 1.37491262 + posZ: -53.4358 + rotX: 0.0208196454 + rotY: 269.96817 + rotZ: 0.01675819 + scaleX: 0.6 + scaleY: 1.0 + scaleZ: 0.6 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters a34f34/Card Tommy Muldoon c96d87.yaml b/unpacked/Custom_Model_Bag The Dream-Eaters a34f34/Card Tommy Muldoon c96d87.yaml new file mode 100644 index 000000000..03ad7a2ed --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dream-Eaters a34f34/Card Tommy Muldoon c96d87.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 273932 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2739': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1011562618093845464/80687C9319FA2015F3D9F7CBEB4C55FBF045B27D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1011562618093845971/A678BD374EC4DE672206B5EF7EB57DC885BC839C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: The Rookie Cop +GMNotes: '' +GUID: c96d87 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Tommy Muldoon +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -22.6139 + posY: 1.37370837 + posZ: -53.4381 + rotX: 0.01677181 + rotY: 180.000015 + rotZ: 359.9792 + scaleX: 1.1 + scaleY: 1.0 + scaleZ: 1.1 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters a34f34/Card Tony Morgan c82de2.yaml b/unpacked/Custom_Model_Bag The Dream-Eaters a34f34/Card Tony Morgan c82de2.yaml new file mode 100644 index 000000000..8222d75b0 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dream-Eaters a34f34/Card Tony Morgan c82de2.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 273936 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2739': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1011562618093845464/80687C9319FA2015F3D9F7CBEB4C55FBF045B27D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1011562618093845971/A678BD374EC4DE672206B5EF7EB57DC885BC839C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: The Bounty Hunter +GMNotes: '' +GUID: c82de2 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Tony Morgan +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -22.6157 + posY: 1.36913049 + posZ: -69.0756 + rotX: 0.0167718567 + rotY: 179.999878 + rotZ: 359.9792 + scaleX: 1.1 + scaleY: 1.0 + scaleZ: 1.1 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters a34f34/Card Tony Morgan fae88f.yaml b/unpacked/Custom_Model_Bag The Dream-Eaters a34f34/Card Tony Morgan fae88f.yaml new file mode 100644 index 000000000..13252a7b8 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dream-Eaters a34f34/Card Tony Morgan fae88f.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 274015 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2740': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1011562618093846975/4726098952C64103F2C211D202FFDD40D9D988BB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869050066760/0DE2BD4589CC8C2F3D26C2900A17ED7A6483062F/ + NumHeight: 3 + NumWidth: 7 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: fae88f +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Tony Morgan +SidewaysCard: false +Snap: false +Sticky: true +Tooltip: true +Transform: + posX: -19.2959 + posY: 1.37034047 + posZ: -69.0607 + rotX: 0.0208142083 + rotY: 269.987122 + rotZ: 0.01676528 + scaleX: 0.6 + scaleY: 1.0 + scaleZ: 0.6 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters a34f34/Custom_Model Survivor turn token 0531e5.yaml b/unpacked/Custom_Model_Bag The Dream-Eaters a34f34/Custom_Model Survivor turn token 0531e5.yaml new file mode 100644 index 000000000..f7ff5c89d --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dream-Eaters a34f34/Custom_Model Survivor turn token 0531e5.yaml @@ -0,0 +1,41 @@ +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: '' +GMNotes: '' +GUID: 0531e5 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Model +Nickname: Survivor turn token +Snap: true +Sticky: true +Tooltip: false +Transform: + posX: -16.64 + posY: 1.36152327 + posZ: -62.4609 + rotX: 0.0208080076 + rotY: 270.027618 + rotZ: 0.0167782456 + scaleX: 0.45 + scaleY: 0.6 + scaleZ: 0.45 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters a34f34/Custom_Model Survivor turn token 0db936.yaml b/unpacked/Custom_Model_Bag The Dream-Eaters a34f34/Custom_Model Survivor turn token 0db936.yaml new file mode 100644 index 000000000..899157f41 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dream-Eaters a34f34/Custom_Model Survivor turn token 0db936.yaml @@ -0,0 +1,41 @@ +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: '' +GMNotes: '' +GUID: 0db936 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Model +Nickname: Survivor turn token +Snap: true +Sticky: true +Tooltip: false +Transform: + posX: -16.6389 + posY: 1.36224544 + posZ: -59.9952 + rotX: 0.02085747 + rotY: 269.8573 + rotZ: 0.0167162772 + scaleX: 0.45 + scaleY: 0.6 + scaleZ: 0.45 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters a34f34/Custom_Model Survivor turn token 2da799.yaml b/unpacked/Custom_Model_Bag The Dream-Eaters a34f34/Custom_Model Survivor turn token 2da799.yaml new file mode 100644 index 000000000..a180e5e41 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dream-Eaters a34f34/Custom_Model Survivor turn token 2da799.yaml @@ -0,0 +1,41 @@ +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: '' +GMNotes: '' +GUID: 2da799 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Model +Nickname: Survivor turn token +Snap: true +Sticky: true +Tooltip: false +Transform: + posX: -16.64 + posY: 1.3645407 + posZ: -52.152 + rotX: 0.020815948 + rotY: 270.000336 + rotZ: 0.0167682655 + scaleX: 0.45 + scaleY: 0.6 + scaleZ: 0.45 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters a34f34/Custom_Model Survivor turn token 347bdc.yaml b/unpacked/Custom_Model_Bag The Dream-Eaters a34f34/Custom_Model Survivor turn token 347bdc.yaml new file mode 100644 index 000000000..0eb905d47 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dream-Eaters a34f34/Custom_Model Survivor turn token 347bdc.yaml @@ -0,0 +1,41 @@ +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: '' +GMNotes: '' +GUID: 347bdc +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Model +Nickname: Survivor turn token +Snap: true +Sticky: true +Tooltip: false +Transform: + posX: -16.6403 + posY: 1.35764623 + posZ: -75.7054 + rotX: 0.0208154954 + rotY: 270.0024 + rotZ: 0.0167689435 + scaleX: 0.45 + scaleY: 0.6 + scaleZ: 0.45 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters a34f34/Custom_Model Survivor turn token 4ac8be.yaml b/unpacked/Custom_Model_Bag The Dream-Eaters a34f34/Custom_Model Survivor turn token 4ac8be.yaml new file mode 100644 index 000000000..036dddecc --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dream-Eaters a34f34/Custom_Model Survivor turn token 4ac8be.yaml @@ -0,0 +1,41 @@ +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: '' +GMNotes: '' +GUID: 4ac8be +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Model +Nickname: Survivor turn token +Snap: true +Sticky: true +Tooltip: false +Transform: + posX: -16.64 + posY: 1.36417818 + posZ: -53.3904 + rotX: 0.0208147224 + rotY: 270.006073 + rotZ: 0.0167702064 + scaleX: 0.45 + scaleY: 0.6 + scaleZ: 0.45 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters a34f34/Custom_Model Survivor turn token 5d774c.yaml b/unpacked/Custom_Model_Bag The Dream-Eaters a34f34/Custom_Model Survivor turn token 5d774c.yaml new file mode 100644 index 000000000..422ade032 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dream-Eaters a34f34/Custom_Model Survivor turn token 5d774c.yaml @@ -0,0 +1,41 @@ +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: '' +GMNotes: '' +GUID: 5d774c +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Model +Nickname: Survivor turn token +Snap: true +Sticky: true +Tooltip: false +Transform: + posX: -16.6343 + posY: 1.36382151 + posZ: -54.6167 + rotX: 0.0208456852 + rotY: 269.900421 + rotZ: 0.016731903 + scaleX: 0.45 + scaleY: 0.6 + scaleZ: 0.45 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters a34f34/Custom_Model Survivor turn token 6b8d4e.yaml b/unpacked/Custom_Model_Bag The Dream-Eaters a34f34/Custom_Model Survivor turn token 6b8d4e.yaml new file mode 100644 index 000000000..cb4a1763e --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dream-Eaters a34f34/Custom_Model Survivor turn token 6b8d4e.yaml @@ -0,0 +1,41 @@ +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: '' +GMNotes: '' +GUID: 6b8d4e +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Model +Nickname: Survivor turn token +Snap: true +Sticky: true +Tooltip: false +Transform: + posX: -16.6401 + posY: 1.36188328 + posZ: -61.231 + rotX: 0.0208129976 + rotY: 270.011475 + rotZ: 0.0167724378 + scaleX: 0.45 + scaleY: 0.6 + scaleZ: 0.45 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters a34f34/Custom_Model Survivor turn token d5ff18.yaml b/unpacked/Custom_Model_Bag The Dream-Eaters a34f34/Custom_Model Survivor turn token d5ff18.yaml new file mode 100644 index 000000000..711dccd19 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dream-Eaters a34f34/Custom_Model Survivor turn token d5ff18.yaml @@ -0,0 +1,41 @@ +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: '' +GMNotes: '' +GUID: d5ff18 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Model +Nickname: Survivor turn token +Snap: true +Sticky: true +Tooltip: false +Transform: + posX: -16.6401 + posY: 1.35692322 + posZ: -78.1756 + rotX: 0.02081605 + rotY: 270.000427 + rotZ: 0.01676835 + scaleX: 0.45 + scaleY: 0.6 + scaleZ: 0.45 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters a34f34/Custom_Model Survivor turn token eaadbf.yaml b/unpacked/Custom_Model_Bag The Dream-Eaters a34f34/Custom_Model Survivor turn token eaadbf.yaml new file mode 100644 index 000000000..a4e1ac7e7 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dream-Eaters a34f34/Custom_Model Survivor turn token eaadbf.yaml @@ -0,0 +1,41 @@ +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: '' +GMNotes: '' +GUID: eaadbf +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Model +Nickname: Survivor turn token +Snap: true +Sticky: true +Tooltip: false +Transform: + posX: -16.6396 + posY: 1.35728347 + posZ: -76.9456 + rotX: 0.020824708 + rotY: 269.972382 + rotZ: 0.01675787 + scaleX: 0.45 + scaleY: 0.6 + scaleZ: 0.45 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters a34f34/Custom_Model Turn token 1f168b.yaml b/unpacked/Custom_Model_Bag The Dream-Eaters a34f34/Custom_Model Turn token 1f168b.yaml new file mode 100644 index 000000000..d14a85a51 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dream-Eaters a34f34/Custom_Model Turn token 1f168b.yaml @@ -0,0 +1,41 @@ +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: '' +GMNotes: '' +GUID: 1f168b +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Model +Nickname: Turn token +Snap: true +Sticky: true +Tooltip: false +Transform: + posX: -16.6401 + posY: 1.35923135 + posZ: -70.2906 + rotX: 0.020816654 + rotY: 269.998779 + rotZ: 0.0167678427 + scaleX: 0.45 + scaleY: 0.6 + scaleZ: 0.45 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters a34f34/Custom_Model Turn token 592dfb.yaml b/unpacked/Custom_Model_Bag The Dream-Eaters a34f34/Custom_Model Turn token 592dfb.yaml new file mode 100644 index 000000000..111795056 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dream-Eaters a34f34/Custom_Model Turn token 592dfb.yaml @@ -0,0 +1,41 @@ +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: '' +GMNotes: '' +GUID: 592dfb +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Model +Nickname: Turn token +Snap: true +Sticky: true +Tooltip: false +Transform: + posX: -16.6394 + posY: 1.35462785 + posZ: -86.0186 + rotX: 0.0208135881 + rotY: 270.0097 + rotZ: 0.0167716183 + scaleX: 0.45 + scaleY: 0.6 + scaleZ: 0.45 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters a34f34/Custom_Model Turn token b3b6b9.yaml b/unpacked/Custom_Model_Bag The Dream-Eaters a34f34/Custom_Model Turn token b3b6b9.yaml new file mode 100644 index 000000000..41f458226 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dream-Eaters a34f34/Custom_Model Turn token b3b6b9.yaml @@ -0,0 +1,41 @@ +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: '' +GMNotes: '' +GUID: b3b6b9 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Model +Nickname: Turn token +Snap: true +Sticky: true +Tooltip: false +Transform: + posX: -16.6385 + posY: 1.35535324 + posZ: -83.5415 + rotX: 0.0208163373 + rotY: 270.0003 + rotZ: 0.01676791 + scaleX: 0.45 + scaleY: 0.6 + scaleZ: 0.45 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters a34f34/Custom_Model Turn token c0a2e9.yaml b/unpacked/Custom_Model_Bag The Dream-Eaters a34f34/Custom_Model Turn token c0a2e9.yaml new file mode 100644 index 000000000..13d233da8 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dream-Eaters a34f34/Custom_Model Turn token c0a2e9.yaml @@ -0,0 +1,41 @@ +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: '' +GMNotes: '' +GUID: c0a2e9 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Model +Nickname: Turn token +Snap: true +Sticky: true +Tooltip: false +Transform: + posX: -16.6401 + posY: 1.35995436 + posZ: -67.8206 + rotX: 0.0208178237 + rotY: 269.9973 + rotZ: 0.0167670771 + scaleX: 0.45 + scaleY: 0.6 + scaleZ: 0.45 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters a34f34/Custom_Model Turn token d827a4.yaml b/unpacked/Custom_Model_Bag The Dream-Eaters a34f34/Custom_Model Turn token d827a4.yaml new file mode 100644 index 000000000..a8b29914f --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dream-Eaters a34f34/Custom_Model Turn token d827a4.yaml @@ -0,0 +1,41 @@ +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: '' +GMNotes: '' +GUID: d827a4 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Model +Nickname: Turn token +Snap: true +Sticky: true +Tooltip: false +Transform: + posX: -16.6402 + posY: 1.3549788 + posZ: -84.8182 + rotX: 0.02082087 + rotY: 269.98465 + rotZ: 0.0167627465 + scaleX: 0.45 + scaleY: 0.6 + scaleZ: 0.45 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters a34f34/Custom_Model Turn token ff2fcf.yaml b/unpacked/Custom_Model_Bag The Dream-Eaters a34f34/Custom_Model Turn token ff2fcf.yaml new file mode 100644 index 000000000..d89894375 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dream-Eaters a34f34/Custom_Model Turn token ff2fcf.yaml @@ -0,0 +1,41 @@ +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: '' +GMNotes: '' +GUID: ff2fcf +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Model +Nickname: Turn token +Snap: true +Sticky: true +Tooltip: false +Transform: + posX: -16.6403 + posY: 1.3595916 + posZ: -69.0603 + rotX: 0.020817684 + rotY: 269.996277 + rotZ: 0.0167667 + scaleX: 0.45 + scaleY: 0.6 + scaleZ: 0.45 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters a34f34/Custom_Model_Bag signature cards 37326d.yaml b/unpacked/Custom_Model_Bag The Dream-Eaters a34f34/Custom_Model_Bag signature cards 37326d.yaml new file mode 100644 index 000000000..139570d42 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dream-Eaters a34f34/Custom_Model_Bag signature cards 37326d.yaml @@ -0,0 +1,58 @@ +Autoraise: true +ColorDiffuse: + b: 0.02148666 + g: 0.00100758043 + r: 0.02148666 +ContainedObjects: +- !include 'Custom_Model_Bag signature cards 37326d/Card Occult Evidence 3586e6.yaml' +- !include 'Custom_Model_Bag signature cards 37326d/Card Shocking Discovery f4dd3d.yaml' +- !include 'Custom_Model_Bag signature cards 37326d/Deck eb34a1.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: '' +GMNotes: '' +GUID: 37326d +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +MeshIndex: -1 +Name: Custom_Model_Bag +Nickname: signature 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.27340817 + posZ: -61.241 + rotX: 359.979156 + rotY: 89.99165 + rotZ: 359.983246 + scaleX: 2.0 + scaleY: 2.0 + scaleZ: 2.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters a34f34/Custom_Model_Bag signature cards 37326d/Card Occult Evidence 3586e6.yaml b/unpacked/Custom_Model_Bag The Dream-Eaters a34f34/Custom_Model_Bag signature cards 37326d/Card Occult Evidence 3586e6.yaml new file mode 100644 index 000000000..25944dd79 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dream-Eaters a34f34/Custom_Model_Bag signature cards 37326d/Card Occult Evidence 3586e6.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 3586e6 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Occult Evidence +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -8.471513 + posY: 3.43206167 + posZ: -75.41 + rotX: 0.0209296122 + rotY: 270.019745 + rotZ: 0.01680677 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters a34f34/Custom_Model_Bag signature cards 37326d/Card Shocking Discovery f4dd3d.yaml b/unpacked/Custom_Model_Bag The Dream-Eaters a34f34/Custom_Model_Bag signature cards 37326d/Card Shocking Discovery f4dd3d.yaml new file mode 100644 index 000000000..e4a6ae568 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dream-Eaters a34f34/Custom_Model_Bag signature cards 37326d/Card Shocking Discovery f4dd3d.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: f4dd3d +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Shocking Discovery +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -13.1817083 + posY: 1.37638 + posZ: -75.45671 + rotX: 0.0204274226 + rotY: 270.022552 + rotZ: 0.0153545588 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters a34f34/Custom_Model_Bag signature cards 37326d/Deck eb34a1.yaml b/unpacked/Custom_Model_Bag The Dream-Eaters a34f34/Custom_Model_Bag signature cards 37326d/Deck eb34a1.yaml new file mode 100644 index 000000000..95e430932 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dream-Eaters a34f34/Custom_Model_Bag signature cards 37326d/Deck eb34a1.yaml @@ -0,0 +1,1454 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 368402 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: b265c4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Deduction + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.36273 + posY: 2.705842 + posZ: -72.2725 + rotX: 0.02080086 + rotY: 270.020142 + rotZ: 180.01683 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 443902 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4439': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/1011562618093846571/13C76218853EE87123267F8F6BE99206DB40470B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 3586e6 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Occult Evidence + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.36273 + posY: 2.705842 + posZ: -72.2725 + rotX: 0.02080086 + rotY: 270.020142 + rotZ: 180.01683 + 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: + '3687': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: '833305' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Elusive + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.36273 + posY: 2.705842 + posZ: -72.2725 + rotX: 0.02080086 + rotY: 270.020142 + rotZ: 180.01683 + 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: + '3684': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 063fd8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Old Book of Lore + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.36273 + posY: 2.705842 + posZ: -72.2725 + rotX: 0.02080086 + rotY: 270.020142 + rotZ: 180.01683 + 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: + '3685': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: c6ac19 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Perception + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.36273 + posY: 2.755842 + posZ: -72.2725 + rotX: 0.02080086 + rotY: 270.020142 + rotZ: 180.01683 + 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 + UniqueBack: false + Description: Professor of Entomology + GMNotes: '' + GUID: 9934d2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dr. Milan Christopher + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.36273 + posY: 2.705842 + posZ: -72.2725 + rotX: 0.02080086 + rotY: 270.020142 + rotZ: 180.01683 + 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: + '3687': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: b18b33 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Sneak Attack + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.36273 + posY: 2.705842 + posZ: -72.2725 + rotX: 0.02080086 + rotY: 270.020142 + rotZ: 180.01683 + 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: + '3685': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 679b13 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Manual Dexterity + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.36273 + posY: 2.755842 + posZ: -72.2725 + rotX: 0.02080086 + rotY: 270.020142 + rotZ: 180.01683 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 7686cb + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Astounding Revelation + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.36273 + posY: 2.705842 + posZ: -72.2725 + rotX: 0.02080086 + rotY: 270.020142 + rotZ: 180.01683 + 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: + '3685': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 679b13 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Manual Dexterity + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.36273 + posY: 2.705842 + posZ: -72.2725 + rotX: 0.02080086 + rotY: 270.020142 + rotZ: 180.01683 + 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: + '3687': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: cdfd9f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Backstab + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.36273 + posY: 2.705842 + posZ: -72.2725 + rotX: 0.02080086 + rotY: 270.020142 + rotZ: 180.01683 + 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: + '3685': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: bb1cce + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Flashlight + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.36273 + posY: 2.755842 + posZ: -72.2725 + rotX: 0.02080086 + rotY: 270.020142 + rotZ: 180.01683 + 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: + '3684': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: ba16cb + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Medical Texts + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.36273 + posY: 2.705842 + posZ: -72.2725 + rotX: 0.02080086 + rotY: 270.020142 + rotZ: 180.01683 + 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: + '3684': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 8f91ce + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Research Librarian + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.36273 + posY: 2.705842 + posZ: -72.2725 + rotX: 0.02080086 + rotY: 270.020142 + rotZ: 180.01683 + 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: + '3684': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: edb554 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Barricade + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.36273 + posY: 2.705842 + posZ: -72.2725 + rotX: 0.02080086 + rotY: 270.020142 + rotZ: 180.01683 + 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: + '3685': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: acb83a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Unexpected Courage + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.36273 + posY: 2.705842 + posZ: -72.2725 + rotX: 0.02080086 + rotY: 270.020142 + rotZ: 180.01683 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 7686cb + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Astounding Revelation + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.36273 + posY: 2.755842 + posZ: -72.2725 + rotX: 0.02080086 + rotY: 270.020142 + rotZ: 180.01683 + 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: + '3684': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: e5dd39 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Hyperawareness + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.36273 + posY: 2.705842 + posZ: -72.2725 + rotX: 0.02080086 + rotY: 270.020142 + rotZ: 180.01683 + 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: + '3685': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: c6ac19 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Perception + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.36273 + posY: 2.705842 + posZ: -72.2725 + rotX: 0.02080086 + rotY: 270.020142 + rotZ: 180.01683 + 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: + '3685': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 0ab3f1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Knife + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.36273 + posY: 2.705842 + posZ: -72.2725 + rotX: 0.02080086 + rotY: 270.020142 + rotZ: 180.01683 + 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: + '3685': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 510c0d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Emergency Cache + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.36273 + posY: 2.755842 + posZ: -72.2725 + rotX: 0.02080086 + rotY: 270.020142 + rotZ: 180.01683 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: a88392 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Opportunist + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.36273 + posY: 2.705842 + posZ: -72.2725 + rotX: 0.02080086 + rotY: 270.020142 + rotZ: 180.01683 + 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: + '3685': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 510c0d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Emergency Cache + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.36273 + posY: 2.705842 + posZ: -72.2725 + rotX: 0.02080086 + rotY: 270.020142 + rotZ: 180.01683 + 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: + '3685': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: acb83a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Unexpected Courage + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.36273 + posY: 2.755842 + posZ: -72.2725 + rotX: 0.02080086 + rotY: 270.020142 + rotZ: 180.01683 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 368421 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 8cc0a6 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Magnifying Glass + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.36273 + posY: 2.705842 + posZ: -72.2725 + rotX: 0.02080086 + rotY: 270.020142 + rotZ: 180.01683 + 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: + '3685': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 0ab3f1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Knife + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.36273 + posY: 2.755842 + posZ: -72.2725 + rotX: 0.02080086 + rotY: 270.020142 + rotZ: 180.01683 + 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: + '3684': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: eb6165 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Working a Hunch + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.36273 + posY: 2.705842 + posZ: -72.2725 + rotX: 0.02080086 + rotY: 270.020142 + rotZ: 180.01683 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 443903 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4439': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/1011562618093846571/13C76218853EE87123267F8F6BE99206DB40470B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: f4dd3d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Shocking Discovery + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.36273 + posY: 2.705842 + posZ: -72.2725 + rotX: 0.02080086 + rotY: 270.020142 + rotZ: 180.01683 + 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: + '3684': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 8cf335 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Mind over Matter + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.36273 + posY: 2.705842 + posZ: -72.2725 + rotX: 0.02080086 + rotY: 270.020142 + rotZ: 180.01683 + 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: + '3685': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 5ab9f4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Overpower + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.36273 + posY: 2.705842 + posZ: -72.2725 + rotX: 0.02080086 + rotY: 270.020142 + rotZ: 180.01683 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 7686cb + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Astounding Revelation + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.36273 + posY: 2.755842 + posZ: -72.2725 + rotX: 0.02080086 + rotY: 270.020142 + rotZ: 180.01683 + 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: + '3685': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: bb1cce + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Flashlight + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.36273 + posY: 2.705842 + posZ: -72.2725 + rotX: 0.02080086 + rotY: 270.020142 + rotZ: 180.01683 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2617': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '3684': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '3685': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '3687': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '4410': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025943833/DE98A03934DF8FF5B3CF6C53143B15BFC3ED7341/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '4439': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/1011562618093846571/13C76218853EE87123267F8F6BE99206DB40470B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 368402 +- 443902 +- 368712 +- 368431 +- 368506 +- 368434 +- 368713 +- 368504 +- 441025 +- 368504 +- 368716 +- 368515 +- 368425 +- 368426 +- 368404 +- 368508 +- 441025 +- 368424 +- 368506 +- 368512 +- 368509 +- 261702 +- 368509 +- 368508 +- 368421 +- 368512 +- 368413 +- 443903 +- 368408 +- 368502 +- 441025 +- 368515 +Description: '' +GMNotes: '' +GUID: eb34a1 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -8.471514 + posY: 3.55386186 + posZ: -75.41001 + rotX: 0.0207837988 + rotY: 270.020142 + rotZ: 180.0172 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters a34f34/Custom_Model_Bag signature cards 396e28.yaml b/unpacked/Custom_Model_Bag The Dream-Eaters a34f34/Custom_Model_Bag signature cards 396e28.yaml new file mode 100644 index 000000000..cf32ccc2f --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dream-Eaters a34f34/Custom_Model_Bag signature cards 396e28.yaml @@ -0,0 +1,59 @@ +Autoraise: true +ColorDiffuse: + b: 0.02148666 + g: 0.00100758043 + r: 0.02148666 +ContainedObjects: +- !include 'Custom_Model_Bag signature cards 396e28/Card Patrice''s Violin ea0007.yaml' +- !include 'Custom_Model_Bag signature cards 396e28/Card Watcher from Another Dimension + 6945f7.yaml' +- !include 'Custom_Model_Bag signature cards 396e28/Deck 2f84ba.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: '' +GMNotes: '' +GUID: 396e28 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +MeshIndex: -1 +Name: Custom_Model_Bag +Nickname: signature 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.266507 + posZ: -84.818 + rotX: 359.9792 + rotY: 90.00065 + rotZ: 359.983215 + scaleX: 2.0 + scaleY: 2.0 + scaleZ: 2.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters a34f34/Custom_Model_Bag signature cards 396e28/Card Patrice's Violin ea0007.yaml b/unpacked/Custom_Model_Bag The Dream-Eaters a34f34/Custom_Model_Bag signature cards 396e28/Card Patrice's Violin ea0007.yaml new file mode 100644 index 000000000..2078881c0 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dream-Eaters a34f34/Custom_Model_Bag signature cards 396e28/Card Patrice's Violin ea0007.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: My Muse +GMNotes: '' +GUID: ea0007 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Patrice's Violin +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -8.469759 + posY: 3.43864775 + posZ: -53.14 + rotX: 0.0209286083 + rotY: 270.019867 + rotZ: 0.01680744 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters a34f34/Custom_Model_Bag signature cards 396e28/Card Watcher from Another Dimension 6945f7.yaml b/unpacked/Custom_Model_Bag The Dream-Eaters a34f34/Custom_Model_Bag signature cards 396e28/Card Watcher from Another Dimension 6945f7.yaml new file mode 100644 index 000000000..4cf293dc6 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dream-Eaters a34f34/Custom_Model_Bag signature cards 396e28/Card Watcher from Another Dimension 6945f7.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 444111 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '4441': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/1011562618093846571/13C76218853EE87123267F8F6BE99206DB40470B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 6945f7 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Watcher from Another Dimension +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -26.2995949 + posY: 3.42261243 + posZ: -84.81799 + rotX: 0.020933006 + rotY: 270.0197 + rotZ: 0.0168151949 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters a34f34/Custom_Model_Bag signature cards 396e28/Deck 2f84ba.yaml b/unpacked/Custom_Model_Bag The Dream-Eaters a34f34/Custom_Model_Bag signature cards 396e28/Deck 2f84ba.yaml new file mode 100644 index 000000000..dfc52811d --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dream-Eaters a34f34/Custom_Model_Bag signature cards 396e28/Deck 2f84ba.yaml @@ -0,0 +1,1970 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: ce0dd5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Lucky! + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.36273 + posY: 2.755842 + posZ: -72.2725 + rotX: 0.02080086 + rotY: 270.020142 + rotZ: 180.01683 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 444024 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4440': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025945336/04E36F64C2CBE1B4905FF44A869C75EC52CB3A56/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: a33acd + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Open Gate + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.36273 + posY: 2.755842 + posZ: -72.2725 + rotX: 0.02080086 + rotY: 270.020142 + rotZ: 180.01683 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 6656ad + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ward of Protection + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.36273 + posY: 2.755842 + posZ: -72.2725 + rotX: 0.02080086 + rotY: 270.020142 + rotZ: 180.01683 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: f474b1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Stray Cat + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.36273 + posY: 2.755842 + posZ: -72.2725 + rotX: 0.02080086 + rotY: 270.020142 + rotZ: 180.01683 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 30f860 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Blinding Light + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.36273 + posY: 2.705842 + posZ: -72.2725 + rotX: 0.02080086 + rotY: 270.020142 + rotZ: 180.01683 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 88d3c0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '"Look what I found!"' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.36273 + posY: 2.705842 + posZ: -72.2725 + rotX: 0.02080086 + rotY: 270.020142 + rotZ: 180.01683 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 593deb + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Leather Coat + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.36273 + posY: 2.705842 + posZ: -72.2725 + rotX: 0.02080086 + rotY: 270.020142 + rotZ: 180.01683 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 7307c4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Arcane Initiate + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.36273 + posY: 2.705842 + posZ: -72.2725 + rotX: 0.02080086 + rotY: 270.020142 + rotZ: 180.01683 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 444024 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4440': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025945336/04E36F64C2CBE1B4905FF44A869C75EC52CB3A56/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: a33acd + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Open Gate + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.36273 + posY: 2.755842 + posZ: -72.2725 + rotX: 0.02080086 + rotY: 270.020142 + rotZ: 180.01683 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: a8298f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Drawn to the Flame + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.36273 + posY: 2.705842 + posZ: -72.2725 + rotX: 0.02080086 + rotY: 270.020142 + rotZ: 180.01683 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 444024 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4440': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025945336/04E36F64C2CBE1B4905FF44A869C75EC52CB3A56/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: a33acd + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Open Gate + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.36273 + posY: 2.705842 + posZ: -72.2725 + rotX: 0.02080086 + rotY: 270.020142 + rotZ: 180.01683 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 078efb + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Survival Instinct + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.36273 + posY: 2.705842 + posZ: -72.2725 + rotX: 0.02080086 + rotY: 270.020142 + rotZ: 180.01683 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 6656ad + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ward of Protection + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.36273 + posY: 2.705842 + posZ: -72.2725 + rotX: 0.02080086 + rotY: 270.020142 + rotZ: 180.01683 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 80acd2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Forbidden Knowledge + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.36273 + posY: 2.705842 + posZ: -72.2725 + rotX: 0.02080086 + rotY: 270.020142 + rotZ: 180.01683 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: dacbf0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Fortuitous Discovery + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.36273 + posY: 2.705842 + posZ: -72.2725 + rotX: 0.02080086 + rotY: 270.020142 + rotZ: 180.01683 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: '914053' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Shrivelling + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.36273 + posY: 2.755842 + posZ: -72.2725 + rotX: 0.02080086 + rotY: 270.020142 + rotZ: 180.01683 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: fc9e1b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dig Deep + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.36273 + posY: 2.705842 + posZ: -72.2725 + rotX: 0.02080086 + rotY: 270.020142 + rotZ: 180.01683 + 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: + '3685': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: bb1cce + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Flashlight + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.36273 + posY: 2.705842 + posZ: -72.2725 + rotX: 0.02080086 + rotY: 270.020142 + rotZ: 180.01683 + 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: + '3685': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 0ab3f1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Knife + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.36273 + posY: 2.755842 + posZ: -72.2725 + rotX: 0.02080086 + rotY: 270.020142 + rotZ: 180.01683 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: ce0dd5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Lucky! + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.36273 + posY: 2.705842 + posZ: -72.2725 + rotX: 0.02080086 + rotY: 270.020142 + rotZ: 180.01683 + 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: + '3685': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 8f7289 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Guts + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.36273 + posY: 2.755842 + posZ: -72.2725 + rotX: 0.02080086 + rotY: 270.020142 + rotZ: 180.01683 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: dacbf0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Fortuitous Discovery + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.36273 + posY: 2.755842 + posZ: -72.2725 + rotX: 0.02080086 + rotY: 270.020142 + rotZ: 180.01683 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: fa1d67 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Holy Rosary + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.36273 + posY: 2.705842 + posZ: -72.2725 + rotX: 0.02080086 + rotY: 270.020142 + rotZ: 180.01683 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 48e103 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Baseball Bat + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.36273 + posY: 2.755842 + posZ: -72.2725 + rotX: 0.02080086 + rotY: 270.020142 + rotZ: 180.01683 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: f34090 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Rabbit's Foot + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.36273 + posY: 2.705842 + posZ: -72.2725 + rotX: 0.02080086 + rotY: 270.020142 + rotZ: 180.01683 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 8a927c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Scrying + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.36273 + posY: 2.705842 + posZ: -72.2725 + rotX: 0.02080086 + rotY: 270.020142 + rotZ: 180.01683 + 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: + '3685': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: acb83a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Unexpected Courage + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.36273 + posY: 2.705842 + posZ: -72.2725 + rotX: 0.02080086 + rotY: 270.020142 + rotZ: 180.01683 + 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: + '3685': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: acb83a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Unexpected Courage + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.36273 + posY: 2.755842 + posZ: -72.2725 + rotX: 0.02080086 + rotY: 270.020142 + rotZ: 180.01683 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: '914053' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Shrivelling + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.36273 + posY: 2.705842 + posZ: -72.2725 + rotX: 0.02080086 + rotY: 270.020142 + rotZ: 180.01683 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 30f860 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Blinding Light + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.36273 + posY: 2.755842 + posZ: -72.2725 + rotX: 0.02080086 + rotY: 270.020142 + rotZ: 180.01683 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 1b76c9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Scavenging + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.36273 + posY: 2.705842 + posZ: -72.2725 + rotX: 0.02080086 + rotY: 270.020142 + rotZ: 180.01683 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 443910 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4439': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/1011562618093846571/13C76218853EE87123267F8F6BE99206DB40470B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: My Muse + GMNotes: '' + GUID: ea0007 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Patrice's Violin + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.36273 + posY: 2.705842 + posZ: -72.2725 + rotX: 0.02080086 + rotY: 270.020142 + rotZ: 180.01683 + 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: + '3688': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: e8ea95 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Cunning Distraction + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.36273 + posY: 2.705842 + posZ: -72.2725 + rotX: 0.02080086 + rotY: 270.020142 + rotZ: 180.01683 + 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: + '3685': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 510c0d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Emergency Cache + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.36273 + posY: 2.755842 + posZ: -72.2725 + rotX: 0.02080086 + rotY: 270.020142 + rotZ: 180.01683 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 48e103 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Baseball Bat + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.36273 + posY: 2.705842 + posZ: -72.2725 + rotX: 0.02080086 + rotY: 270.020142 + rotZ: 180.01683 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 9e4505 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Arcane Studies + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.36273 + posY: 2.705842 + posZ: -72.2725 + rotX: 0.02080086 + rotY: 270.020142 + rotZ: 180.01683 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: cd0ac1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Fearless + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.36273 + posY: 2.705842 + posZ: -72.2725 + rotX: 0.02080086 + rotY: 270.020142 + rotZ: 180.01683 + 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: + '3685': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: bb1cce + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Flashlight + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.36273 + posY: 2.755842 + posZ: -72.2725 + rotX: 0.02080086 + rotY: 270.020142 + rotZ: 180.01683 + 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: + '3685': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 8f7289 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Guts + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.36273 + posY: 2.705842 + posZ: -72.2725 + rotX: 0.02080086 + rotY: 270.020142 + rotZ: 180.01683 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: f474b1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Stray Cat + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.36273 + posY: 2.705842 + posZ: -72.2725 + rotX: 0.02080086 + rotY: 270.020142 + rotZ: 180.01683 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 443911 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4439': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/1011562618093846571/13C76218853EE87123267F8F6BE99206DB40470B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 6945f7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Watcher from Another Dimension + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.36273 + posY: 2.705842 + posZ: -72.2725 + rotX: 0.02080086 + rotY: 270.020142 + rotZ: 180.01683 + 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: + '3685': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 510c0d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Emergency Cache + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.36273 + posY: 2.705842 + posZ: -72.2725 + rotX: 0.02080086 + rotY: 270.020142 + rotZ: 180.01683 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: dacbf0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Fortuitous Discovery + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.36273 + posY: 2.755842 + posZ: -72.2725 + rotX: 0.02080086 + rotY: 270.020142 + rotZ: 180.01683 + 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: + '3685': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 0ab3f1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Knife + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.36273 + posY: 2.705842 + posZ: -72.2725 + rotX: 0.02080086 + rotY: 270.020142 + rotZ: 180.01683 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2303': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '3685': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '3688': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '4406': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025946328/561232524C8EAA4B4371B28652F78969E6ED6FFB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '4439': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/1011562618093846571/13C76218853EE87123267F8F6BE99206DB40470B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '4440': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025945336/04E36F64C2CBE1B4905FF44A869C75EC52CB3A56/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 368810 +- 444024 +- 230308 +- 368824 +- 230311 +- 368816 +- 368820 +- 230318 +- 444024 +- 230304 +- 444024 +- 368800 +- 230308 +- 230316 +- 440627 +- 230328 +- 368831 +- 368515 +- 368512 +- 368810 +- 368500 +- 440627 +- 230323 +- 368830 +- 368823 +- 230319 +- 368508 +- 368508 +- 230328 +- 230311 +- 368822 +- 443910 +- 368819 +- 368509 +- 368830 +- 230324 +- 230303 +- 368515 +- 368500 +- 368824 +- 443911 +- 368509 +- 440627 +- 368512 +Description: '' +GMNotes: '' +GUID: 2f84ba +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -26.2995949 + posY: 3.608577 + posZ: -84.818 + rotX: 0.0207359064 + rotY: 270.020081 + rotZ: 180.017273 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters a34f34/Custom_Model_Bag signature cards 3a0b7c.yaml b/unpacked/Custom_Model_Bag The Dream-Eaters a34f34/Custom_Model_Bag signature cards 3a0b7c.yaml new file mode 100644 index 000000000..d33719926 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dream-Eaters a34f34/Custom_Model_Bag signature cards 3a0b7c.yaml @@ -0,0 +1,58 @@ +Autoraise: true +ColorDiffuse: + b: 0.02148666 + g: 0.00100758043 + r: 0.02148666 +ContainedObjects: +- !include 'Custom_Model_Bag signature cards 3a0b7c/Card Rookie Mistake e567ff.yaml' +- !include 'Custom_Model_Bag signature cards 3a0b7c/Card Becky 587589.yaml' +- !include 'Custom_Model_Bag signature cards 3a0b7c/Deck 849da0.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: '' +GMNotes: '' +GUID: 3a0b7c +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +MeshIndex: -1 +Name: Custom_Model_Bag +Nickname: signature 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.27569222 + posZ: -53.4368 + rotX: 359.979156 + rotY: 90.0 + rotZ: 359.983215 + scaleX: 2.0 + scaleY: 2.0 + scaleZ: 2.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters a34f34/Custom_Model_Bag signature cards 3a0b7c/Card Becky 587589.yaml b/unpacked/Custom_Model_Bag The Dream-Eaters a34f34/Custom_Model_Bag signature cards 3a0b7c/Card Becky 587589.yaml new file mode 100644 index 000000000..fad1297dd --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dream-Eaters a34f34/Custom_Model_Bag signature cards 3a0b7c/Card Becky 587589.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Custom Marlin Model 1894 +GMNotes: '' +GUID: '587589' +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Becky +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -8.471525 + posY: 3.43398237 + posZ: -68.05 + rotX: 0.0209335927 + rotY: 270.0157 + rotZ: 0.0168052856 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters a34f34/Custom_Model_Bag signature cards 3a0b7c/Card Rookie Mistake e567ff.yaml b/unpacked/Custom_Model_Bag The Dream-Eaters a34f34/Custom_Model_Bag signature cards 3a0b7c/Card Rookie Mistake e567ff.yaml new file mode 100644 index 000000000..1c2b254a4 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dream-Eaters a34f34/Custom_Model_Bag signature cards 3a0b7c/Card Rookie Mistake e567ff.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 274001 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: e567ff +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Rookie Mistake +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -9.867245 + posY: 3.50324035 + posZ: -68.28917 + rotX: 0.102600165 + rotY: 270.029083 + rotZ: 3.11594844 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters a34f34/Custom_Model_Bag signature cards 3a0b7c/Deck 849da0.yaml b/unpacked/Custom_Model_Bag The Dream-Eaters a34f34/Custom_Model_Bag signature cards 3a0b7c/Deck 849da0.yaml new file mode 100644 index 000000000..0b4ec1a62 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dream-Eaters a34f34/Custom_Model_Bag signature cards 3a0b7c/Deck 849da0.yaml @@ -0,0 +1,1454 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 1165db + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Physical Training + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.36273 + posY: 2.705842 + posZ: -72.2725 + rotX: 0.02080086 + rotY: 270.020142 + rotZ: 180.01683 + 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: + '3685': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 5ab9f4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Overpower + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.36273 + posY: 2.705842 + posZ: -72.2725 + rotX: 0.02080086 + rotY: 270.020142 + rotZ: 180.01683 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: f34090 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Rabbit's Foot + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.36273 + posY: 2.705842 + posZ: -72.2725 + rotX: 0.02080086 + rotY: 270.020142 + rotZ: 180.01683 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 078efb + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Survival Instinct + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.36273 + posY: 2.705842 + posZ: -72.2725 + rotX: 0.02080086 + rotY: 270.020142 + rotZ: 180.01683 + 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: + '3685': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 510c0d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Emergency Cache + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.36273 + posY: 2.705842 + posZ: -72.2725 + rotX: 0.02080086 + rotY: 270.020142 + rotZ: 180.01683 + 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: + '3685': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: bb1cce + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Flashlight + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.36273 + posY: 2.755842 + posZ: -72.2725 + rotX: 0.02080086 + rotY: 270.020142 + rotZ: 180.01683 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: '889121' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Vicious Blow + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.36273 + posY: 2.705842 + posZ: -72.2725 + rotX: 0.02080086 + rotY: 270.020142 + rotZ: 180.01683 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 08bdf1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Guard Dog + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.36273 + posY: 2.705842 + posZ: -72.2725 + rotX: 0.02080086 + rotY: 270.020142 + rotZ: 180.01683 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 48e103 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Baseball Bat + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.36273 + posY: 2.705842 + posZ: -72.2725 + rotX: 0.02080086 + rotY: 270.020142 + rotZ: 180.01683 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: ef7c11 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Solemn Vow + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.36273 + posY: 2.755842 + posZ: -72.2725 + rotX: 0.02080086 + rotY: 270.020142 + rotZ: 180.01683 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 7d4749 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Beat Cop + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.36273 + posY: 2.705842 + posZ: -72.2725 + rotX: 0.02080086 + rotY: 270.020142 + rotZ: 180.01683 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 443900 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4439': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/1011562618093846571/13C76218853EE87123267F8F6BE99206DB40470B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Custom Marlin Model 1894 + GMNotes: '' + GUID: '587589' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Becky + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.36273 + posY: 2.705842 + posZ: -72.2725 + rotX: 0.02080086 + rotY: 270.020142 + rotZ: 180.01683 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 97986a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dynamite Blast + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.36273 + posY: 2.705842 + posZ: -72.2725 + rotX: 0.02080086 + rotY: 270.020142 + rotZ: 180.01683 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: fc9e1b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dig Deep + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.36273 + posY: 2.705842 + posZ: -72.2725 + rotX: 0.02080086 + rotY: 270.020142 + rotZ: 180.01683 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 443901 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4439': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/1011562618093846571/13C76218853EE87123267F8F6BE99206DB40470B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: e567ff + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Rookie Mistake + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.36273 + posY: 2.705842 + posZ: -72.2725 + rotX: 0.02080086 + rotY: 270.020142 + rotZ: 180.01683 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 5cd622 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: First Aid + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.36273 + posY: 2.705842 + posZ: -72.2725 + rotX: 0.02080086 + rotY: 270.020142 + rotZ: 180.01683 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 1b76c9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Scavenging + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.36273 + posY: 2.705842 + posZ: -72.2725 + rotX: 0.02080086 + rotY: 270.020142 + rotZ: 180.01683 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: dacbf0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Fortuitous Discovery + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.36273 + posY: 2.755842 + posZ: -72.2725 + rotX: 0.02080086 + rotY: 270.020142 + rotZ: 180.01683 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: ef7c11 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Solemn Vow + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.36273 + posY: 2.705842 + posZ: -72.2725 + rotX: 0.02080086 + rotY: 270.020142 + rotZ: 180.01683 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: e0dff3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dodge + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.36273 + posY: 2.705842 + posZ: -72.2725 + rotX: 0.02080086 + rotY: 270.020142 + rotZ: 180.01683 + 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: + '3685': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: bb1cce + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Flashlight + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.36273 + posY: 2.705842 + posZ: -72.2725 + rotX: 0.02080086 + rotY: 270.020142 + rotZ: 180.01683 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 593deb + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Leather Coat + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.36273 + posY: 2.705842 + posZ: -72.2725 + rotX: 0.02080086 + rotY: 270.020142 + rotZ: 180.01683 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: ef7c11 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Solemn Vow + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.36273 + posY: 2.755842 + posZ: -72.2725 + rotX: 0.02080086 + rotY: 270.020142 + rotZ: 180.01683 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 2db518 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Evidence! + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.36273 + posY: 2.705842 + posZ: -72.2725 + rotX: 0.02080086 + rotY: 270.020142 + rotZ: 180.01683 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 12660b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: .45 Automatic + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.36273 + posY: 2.705842 + posZ: -72.2725 + rotX: 0.02080086 + rotY: 270.020142 + rotZ: 180.01683 + 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: + '3688': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: e8ea95 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Cunning Distraction + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.36273 + posY: 2.705842 + posZ: -72.2725 + rotX: 0.02080086 + rotY: 270.020142 + rotZ: 180.01683 + 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: + '3685': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 510c0d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Emergency Cache + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.36273 + posY: 2.755842 + posZ: -72.2725 + rotX: 0.02080086 + rotY: 270.020142 + rotZ: 180.01683 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 88d3c0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '"Look what I found!"' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.36273 + posY: 2.705842 + posZ: -72.2725 + rotX: 0.02080086 + rotY: 270.020142 + rotZ: 180.01683 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: dacbf0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Fortuitous Discovery + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.36273 + posY: 2.705842 + posZ: -72.2725 + rotX: 0.02080086 + rotY: 270.020142 + rotZ: 180.01683 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 86ee68 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Machete + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.36273 + posY: 2.705842 + posZ: -72.2725 + rotX: 0.02080086 + rotY: 270.020142 + rotZ: 180.01683 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: dacbf0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Fortuitous Discovery + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.36273 + posY: 2.755842 + posZ: -72.2725 + rotX: 0.02080086 + rotY: 270.020142 + rotZ: 180.01683 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: ce0dd5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Lucky! + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.36273 + posY: 2.705842 + posZ: -72.2725 + rotX: 0.02080086 + rotY: 270.020142 + rotZ: 180.01683 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2263': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '3685': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '3688': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '4406': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025946328/561232524C8EAA4B4371B28652F78969E6ED6FFB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '4409': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025943109/9C5481E6DFEACD450C5522F884E615482281DDB1/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '4439': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/1011562618093846571/13C76218853EE87123267F8F6BE99206DB40470B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 226323 +- 368502 +- 368823 +- 368800 +- 368509 +- 368515 +- 226302 +- 226326 +- 368830 +- 440926 +- 226331 +- 443900 +- 226319 +- 368831 +- 443901 +- 226324 +- 368822 +- 440627 +- 440926 +- 226313 +- 368515 +- 368820 +- 440926 +- 226309 +- 226330 +- 368819 +- 368509 +- 368816 +- 440627 +- 226327 +- 440627 +- 368810 +Description: '' +GMNotes: '' +GUID: 849da0 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -8.471526 + posY: 3.55600548 + posZ: -68.05001 + rotX: 0.0207853671 + rotY: 270.0202 + rotZ: 180.0172 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters a34f34/Custom_Model_Bag signature cards 687b10.yaml b/unpacked/Custom_Model_Bag The Dream-Eaters a34f34/Custom_Model_Bag signature cards 687b10.yaml new file mode 100644 index 000000000..21b60f965 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dream-Eaters a34f34/Custom_Model_Bag signature cards 687b10.yaml @@ -0,0 +1,59 @@ +Autoraise: true +ColorDiffuse: + b: 0.02148666 + g: 0.00100758043 + r: 0.02148666 +ContainedObjects: +- !include 'Custom_Model_Bag signature cards 687b10/Card Gate Box b8c891.yaml' +- !include 'Custom_Model_Bag signature cards 687b10/Card Detached from Reality d12359.yaml' +- !include 'Custom_Model_Bag signature cards 687b10/Card Dream-Gate fa4c1e.yaml' +- !include 'Custom_Model_Bag signature cards 687b10/Deck d6b11e.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: '' +GMNotes: '' +GUID: 687b10 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +MeshIndex: -1 +Name: Custom_Model_Bag +Nickname: signature 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: 89.9993057 + rotZ: 359.983215 + scaleX: 2.0 + scaleY: 2.0 + scaleZ: 2.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters a34f34/Custom_Model_Bag signature cards 687b10/Card Detached from Reality d12359.yaml b/unpacked/Custom_Model_Bag The Dream-Eaters a34f34/Custom_Model_Bag signature cards 687b10/Card Detached from Reality d12359.yaml new file mode 100644 index 000000000..94928bbfe --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dream-Eaters a34f34/Custom_Model_Bag signature cards 687b10/Card Detached from Reality d12359.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: d12359 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Detached from Reality +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -17.3139 + posY: 1.39570177 + posZ: -82.89586 + rotX: 0.0208027661 + rotY: 270.019684 + rotZ: 0.01677815 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters a34f34/Custom_Model_Bag signature cards 687b10/Card Dream-Gate fa4c1e.yaml b/unpacked/Custom_Model_Bag The Dream-Eaters a34f34/Custom_Model_Bag signature cards 687b10/Card Dream-Gate fa4c1e.yaml new file mode 100644 index 000000000..06e176d2f --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dream-Eaters a34f34/Custom_Model_Bag signature cards 687b10/Card Dream-Gate fa4c1e.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 274109 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2741': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107869050061525/A759DF697FFB26F0F5B75E116A923E33F88FCA7B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1011562618093846571/13C76218853EE87123267F8F6BE99206DB40470B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: fa4c1e +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Dream-Gate +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -13.4685459 + posY: 1.39709127 + posZ: -82.9202957 + rotX: 0.0208113864 + rotY: 269.989563 + rotZ: 0.0167675372 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters a34f34/Custom_Model_Bag signature cards 687b10/Card Gate Box b8c891.yaml b/unpacked/Custom_Model_Bag The Dream-Eaters a34f34/Custom_Model_Bag signature cards 687b10/Card Gate Box b8c891.yaml new file mode 100644 index 000000000..98ad0da94 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dream-Eaters a34f34/Custom_Model_Bag signature cards 687b10/Card Gate Box b8c891.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Worlds within Worlds +GMNotes: '' +GUID: b8c891 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Gate Box +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -8.471524 + posY: 3.43017459 + posZ: -83.1169357 + rotX: 0.0209323782 + rotY: 270.012115 + rotZ: 0.0168039873 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters a34f34/Custom_Model_Bag signature cards 687b10/Deck d6b11e.yaml b/unpacked/Custom_Model_Bag The Dream-Eaters a34f34/Custom_Model_Bag signature cards 687b10/Deck d6b11e.yaml new file mode 100644 index 000000000..de2049822 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dream-Eaters a34f34/Custom_Model_Bag signature cards 687b10/Deck d6b11e.yaml @@ -0,0 +1,1454 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 368512 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3685': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 0ab3f1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Knife + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.36273 + posY: 2.705842 + posZ: -72.2725 + rotX: 0.02080086 + rotY: 270.020142 + rotZ: 180.01683 + 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 + UniqueBack: false + Description: Professor of Entomology + GMNotes: '' + GUID: 9934d2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dr. Milan Christopher + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.36273 + posY: 2.705842 + posZ: -72.2725 + rotX: 0.02080086 + rotY: 270.020142 + rotZ: 180.01683 + 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: + '3685': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: bb1cce + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Flashlight + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.36273 + posY: 2.705842 + posZ: -72.2725 + rotX: 0.02080086 + rotY: 270.020142 + rotZ: 180.01683 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 444024 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4440': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025945336/04E36F64C2CBE1B4905FF44A869C75EC52CB3A56/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: a33acd + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Open Gate + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.36273 + posY: 2.755842 + posZ: -72.2725 + rotX: 0.02080086 + rotY: 270.020142 + rotZ: 180.01683 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 444024 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4440': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025945336/04E36F64C2CBE1B4905FF44A869C75EC52CB3A56/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: a33acd + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Open Gate + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.36273 + posY: 2.755842 + posZ: -72.2725 + rotX: 0.02080086 + rotY: 270.020142 + rotZ: 180.01683 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 443908 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4439': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/1011562618093846571/13C76218853EE87123267F8F6BE99206DB40470B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: d12359 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Detached from Reality + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.36273 + posY: 2.705842 + posZ: -72.2725 + rotX: 0.02080086 + rotY: 270.020142 + rotZ: 180.01683 + 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: + '3685': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 0ab3f1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Knife + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.36273 + posY: 2.755842 + posZ: -72.2725 + rotX: 0.02080086 + rotY: 270.020142 + rotZ: 180.01683 + 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: + '3684': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: ba16cb + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Medical Texts + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.36273 + posY: 2.705842 + posZ: -72.2725 + rotX: 0.02080086 + rotY: 270.020142 + rotZ: 180.01683 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: fa1d67 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Holy Rosary + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.36273 + posY: 2.705842 + posZ: -72.2725 + rotX: 0.02080086 + rotY: 270.020142 + rotZ: 180.01683 + 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: + '3684': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 8f91ce + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Research Librarian + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.36273 + posY: 2.705842 + posZ: -72.2725 + rotX: 0.02080086 + rotY: 270.020142 + rotZ: 180.01683 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: cd0ac1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Fearless + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.36273 + posY: 2.705842 + posZ: -72.2725 + rotX: 0.02080086 + rotY: 270.020142 + rotZ: 180.01683 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 9e4505 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Arcane Studies + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.36273 + posY: 2.705842 + posZ: -72.2725 + rotX: 0.02080086 + rotY: 270.020142 + rotZ: 180.01683 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 8a927c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Scrying + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.36273 + posY: 2.705842 + posZ: -72.2725 + rotX: 0.02080086 + rotY: 270.020142 + rotZ: 180.01683 + 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: + '3685': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: bb1cce + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Flashlight + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.36273 + posY: 2.755842 + posZ: -72.2725 + rotX: 0.02080086 + rotY: 270.020142 + rotZ: 180.01683 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: a8298f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Drawn to the Flame + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.36273 + posY: 2.705842 + posZ: -72.2725 + rotX: 0.02080086 + rotY: 270.020142 + rotZ: 180.01683 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 444024 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4440': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025945336/04E36F64C2CBE1B4905FF44A869C75EC52CB3A56/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: a33acd + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Open Gate + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.36273 + posY: 2.705842 + posZ: -72.2725 + rotX: 0.02080086 + rotY: 270.020142 + rotZ: 180.01683 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 80acd2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Forbidden Knowledge + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.36273 + posY: 2.705842 + posZ: -72.2725 + rotX: 0.02080086 + rotY: 270.020142 + rotZ: 180.01683 + 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: + '3684': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 8cf335 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Mind over Matter + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.36273 + posY: 2.705842 + posZ: -72.2725 + rotX: 0.02080086 + rotY: 270.020142 + rotZ: 180.01683 + 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: + '3684': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 063fd8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Old Book of Lore + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.36273 + posY: 2.705842 + posZ: -72.2725 + rotX: 0.02080086 + rotY: 270.020142 + rotZ: 180.01683 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 368421 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 8cc0a6 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Magnifying Glass + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.36273 + posY: 2.705842 + posZ: -72.2725 + rotX: 0.02080086 + rotY: 270.020142 + rotZ: 180.01683 + 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: + '3685': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 510c0d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Emergency Cache + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.36273 + posY: 2.705842 + posZ: -72.2725 + rotX: 0.02080086 + rotY: 270.020142 + rotZ: 180.01683 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: '914053' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Shrivelling + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.36273 + posY: 2.705842 + posZ: -72.2725 + rotX: 0.02080086 + rotY: 270.020142 + rotZ: 180.01683 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 30f860 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Blinding Light + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.36273 + posY: 2.705842 + posZ: -72.2725 + rotX: 0.02080086 + rotY: 270.020142 + rotZ: 180.01683 + 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: + '3684': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: edb554 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Barricade + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.36273 + posY: 2.705842 + posZ: -72.2725 + rotX: 0.02080086 + rotY: 270.020142 + rotZ: 180.01683 + 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: + '3684': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: e5dd39 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Hyperawareness + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.36273 + posY: 2.705842 + posZ: -72.2725 + rotX: 0.02080086 + rotY: 270.020142 + rotZ: 180.01683 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 6656ad + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ward of Protection + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.36273 + posY: 2.705842 + posZ: -72.2725 + rotX: 0.02080086 + rotY: 270.020142 + rotZ: 180.01683 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 7686cb + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Astounding Revelation + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.3615761 + posY: 1.82535493 + posZ: -72.27892 + rotX: 0.0164981186 + rotY: 270.000183 + rotZ: 180.020416 + 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: + '3685': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 510c0d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Emergency Cache + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.36273 + posY: 2.755842 + posZ: -72.2725 + rotX: 0.02080086 + rotY: 270.020142 + rotZ: 180.01683 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 443907 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4439': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/1011562618093846571/13C76218853EE87123267F8F6BE99206DB40470B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Worlds within Worlds + GMNotes: '' + GUID: b8c891 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Gate Box + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.36273 + posY: 2.705842 + posZ: -72.2725 + rotX: 0.02080086 + rotY: 270.020142 + rotZ: 180.01683 + 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: + '3684': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: eb6165 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Working a Hunch + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.36273 + posY: 2.705842 + posZ: -72.2725 + rotX: 0.02080086 + rotY: 270.020142 + rotZ: 180.01683 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 7307c4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Arcane Initiate + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.36273 + posY: 2.705842 + posZ: -72.2725 + rotX: 0.02080086 + rotY: 270.020142 + rotZ: 180.01683 + 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: + '3684': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: b265c4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Deduction + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.36273 + posY: 2.705842 + posZ: -72.2725 + rotX: 0.02080086 + rotY: 270.020142 + rotZ: 180.01683 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2303': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '3684': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '3685': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '4410': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025943833/DE98A03934DF8FF5B3CF6C53143B15BFC3ED7341/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '4439': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/1011562618093846571/13C76218853EE87123267F8F6BE99206DB40470B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '4440': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025945336/04E36F64C2CBE1B4905FF44A869C75EC52CB3A56/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 368512 +- 368434 +- 368515 +- 444024 +- 444024 +- 443908 +- 368512 +- 368425 +- 230323 +- 368426 +- 230303 +- 230324 +- 230319 +- 368515 +- 230304 +- 444024 +- 230316 +- 368408 +- 368431 +- 368421 +- 368509 +- 230328 +- 230311 +- 368404 +- 368424 +- 230308 +- 441025 +- 368509 +- 443907 +- 368413 +- 230318 +- 368402 +Description: '' +GMNotes: '' +GUID: d6b11e +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -8.471526 + posY: 3.5516026 + posZ: -83.11694 + rotX: 0.0207902528 + rotY: 270.019928 + rotZ: 180.0172 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters a34f34/Custom_Model_Bag signature cards b81d01.yaml b/unpacked/Custom_Model_Bag The Dream-Eaters a34f34/Custom_Model_Bag signature cards b81d01.yaml new file mode 100644 index 000000000..96f737f72 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dream-Eaters a34f34/Custom_Model_Bag signature cards b81d01.yaml @@ -0,0 +1,59 @@ +Autoraise: true +ColorDiffuse: + b: 0.02148666 + g: 0.00100758043 + r: 0.02148666 +ContainedObjects: +- !include 'Custom_Model_Bag signature cards b81d01/Deck Tony''s .38 Long Colt 839169.yaml' +- !include 'Custom_Model_Bag signature cards b81d01/Card Bounty Contracts 4d9b32.yaml' +- !include 'Custom_Model_Bag signature cards b81d01/Card Tony''s Quarry d6f8d1.yaml' +- !include 'Custom_Model_Bag signature cards b81d01/Deck b9a7c7.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: '' +GMNotes: '' +GUID: b81d01 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +MeshIndex: -1 +Name: Custom_Model_Bag +Nickname: signature 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.27111983 + posZ: -69.0606 + rotX: 359.9792 + rotY: 90.01846 + rotZ: 359.983215 + scaleX: 2.0 + scaleY: 2.0 + scaleZ: 2.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters a34f34/Custom_Model_Bag signature cards b81d01/Card Bounty Contracts 4d9b32.yaml b/unpacked/Custom_Model_Bag The Dream-Eaters a34f34/Custom_Model_Bag signature cards b81d01/Card Bounty Contracts 4d9b32.yaml new file mode 100644 index 000000000..3acb1cdd6 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dream-Eaters a34f34/Custom_Model_Bag signature cards b81d01/Card Bounty Contracts 4d9b32.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 4d9b32 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Bounty Contracts +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -8.47192 + posY: 3.39796424 + posZ: -60.9001 + rotX: 1.95291293 + rotY: 270.016754 + rotZ: 0.0127047012 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters a34f34/Custom_Model_Bag signature cards b81d01/Card Tony's Quarry d6f8d1.yaml b/unpacked/Custom_Model_Bag The Dream-Eaters a34f34/Custom_Model_Bag signature cards b81d01/Card Tony's Quarry d6f8d1.yaml new file mode 100644 index 000000000..b9debca21 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dream-Eaters a34f34/Custom_Model_Bag signature cards b81d01/Card Tony's Quarry d6f8d1.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: d6f8d1 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Tony's Quarry +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -8.471526 + posY: 3.43605471 + posZ: -60.9 + rotX: 0.0209246445 + rotY: 269.992737 + rotZ: 0.01680137 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters a34f34/Custom_Model_Bag signature cards b81d01/Deck b9a7c7.yaml b/unpacked/Custom_Model_Bag The Dream-Eaters a34f34/Custom_Model_Bag signature cards b81d01/Deck b9a7c7.yaml new file mode 100644 index 000000000..bf2cf338d --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dream-Eaters a34f34/Custom_Model_Bag signature cards b81d01/Deck b9a7c7.yaml @@ -0,0 +1,1633 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: aec357 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Guardian of the Crystallizer + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -13.0056772 + posY: 1.77063906 + posZ: -60.9185371 + rotX: 0.0204789042 + rotY: 269.999939 + rotZ: 180.017532 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: aec357 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Guardian of the Crystallizer + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -13.3330393 + posY: 1.74725711 + posZ: -60.8700638 + rotX: 0.0202165451 + rotY: 270.0001 + rotZ: 180.01741 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 443904 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4439': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/1011562618093846571/13C76218853EE87123267F8F6BE99206DB40470B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 4d9b32 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Bounty Contracts + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.361557 + posY: 1.84468687 + posZ: -72.27893 + rotX: 0.0219179913 + rotY: 269.999847 + rotZ: 180.017288 + 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: + '3685': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 8f7289 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Guts + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.36273 + posY: 2.705842 + posZ: -72.2725 + rotX: 0.02080086 + rotY: 270.020142 + rotZ: 180.01683 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 443906 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4439': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/1011562618093846571/13C76218853EE87123267F8F6BE99206DB40470B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: d6f8d1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Tony's Quarry + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.36273 + posY: 2.705842 + posZ: -72.2725 + rotX: 0.02080086 + rotY: 270.020142 + rotZ: 180.01683 + 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: + '3685': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 510c0d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Emergency Cache + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.36273 + posY: 2.705842 + posZ: -72.2725 + rotX: 0.02080086 + rotY: 270.020142 + rotZ: 180.01683 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: e3bd71 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Crystallizer of Dreams + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.36273 + posY: 2.755842 + posZ: -72.2725 + rotX: 0.02080086 + rotY: 270.020142 + rotZ: 180.01683 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 97986a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dynamite Blast + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.36273 + posY: 2.705842 + posZ: -72.2725 + rotX: 0.02080086 + rotY: 270.020142 + rotZ: 180.01683 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: e3bd71 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Crystallizer of Dreams + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.36273 + posY: 2.705842 + posZ: -72.2725 + rotX: 0.02080086 + rotY: 270.020142 + rotZ: 180.01683 + 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: + '3685': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 679b13 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Manual Dexterity + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.36273 + posY: 2.705842 + posZ: -72.2725 + rotX: 0.02080086 + rotY: 270.020142 + rotZ: 180.01683 + 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: + '3686': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: '213853' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Switchblade + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.36273 + posY: 2.705842 + posZ: -72.2725 + rotX: 0.02080086 + rotY: 270.020142 + rotZ: 180.01683 + 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: + '3685': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 8f7289 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Guts + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.36273 + posY: 2.755842 + posZ: -72.2725 + rotX: 0.02080086 + rotY: 270.020142 + rotZ: 180.01683 + 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: + '3685': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: bb1cce + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Flashlight + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.36273 + posY: 2.705842 + posZ: -72.2725 + rotX: 0.02080086 + rotY: 270.020142 + rotZ: 180.01683 + 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: + '3685': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 0ab3f1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Knife + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.36273 + posY: 2.705842 + posZ: -72.2725 + rotX: 0.02080086 + rotY: 270.020142 + rotZ: 180.01683 + 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: + '3685': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 5ab9f4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Overpower + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.36273 + posY: 2.755842 + posZ: -72.2725 + rotX: 0.02080086 + rotY: 270.020142 + rotZ: 180.01683 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 2db518 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Evidence! + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.36273 + posY: 2.705842 + posZ: -72.2725 + rotX: 0.02080086 + rotY: 270.020142 + rotZ: 180.01683 + 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: + '3686': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: da7c01 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Pickpocketing + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.36273 + posY: 2.705842 + posZ: -72.2725 + rotX: 0.02080086 + rotY: 270.020142 + rotZ: 180.01683 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: e0dff3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dodge + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.36273 + posY: 2.705842 + posZ: -72.2725 + rotX: 0.02080086 + rotY: 270.020142 + rotZ: 180.01683 + 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: + '3685': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 679b13 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Manual Dexterity + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.36273 + posY: 2.755842 + posZ: -72.2725 + rotX: 0.02080086 + rotY: 270.020142 + rotZ: 180.01683 + 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: + '3686': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: fe2db3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: .41 Derringer + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.36273 + posY: 2.705842 + posZ: -72.2725 + rotX: 0.02080086 + rotY: 270.020142 + rotZ: 180.01683 + 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: + '3685': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 5ab9f4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Overpower + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.36273 + posY: 2.705842 + posZ: -72.2725 + rotX: 0.02080086 + rotY: 270.020142 + rotZ: 180.01683 + 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: + '3686': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: bc3451 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Burglary + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.36273 + posY: 2.705842 + posZ: -72.2725 + rotX: 0.02080086 + rotY: 270.020142 + rotZ: 180.01683 + 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: + '3685': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 0ab3f1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Knife + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.36273 + posY: 2.755842 + posZ: -72.2725 + rotX: 0.02080086 + rotY: 270.020142 + rotZ: 180.01683 + 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: + '3687': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: b18b33 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Sneak Attack + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.36273 + posY: 2.705842 + posZ: -72.2725 + rotX: 0.02080086 + rotY: 270.020142 + rotZ: 180.01683 + 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: + '3687': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: cdfd9f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Backstab + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.36273 + posY: 2.705842 + posZ: -72.2725 + rotX: 0.02080086 + rotY: 270.020142 + rotZ: 180.01683 + 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: + '3686': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 68744b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Hard Knocks + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.36273 + posY: 2.705842 + posZ: -72.2725 + rotX: 0.02080086 + rotY: 270.020142 + rotZ: 180.01683 + 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: + '3685': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 510c0d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Emergency Cache + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.36273 + posY: 2.755842 + posZ: -72.2725 + rotX: 0.02080086 + rotY: 270.020142 + rotZ: 180.01683 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: a88392 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Opportunist + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.36273 + posY: 2.705842 + posZ: -72.2725 + rotX: 0.02080086 + rotY: 270.020142 + rotZ: 180.01683 + 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 + UniqueBack: false + Description: The Louisiana Lion + GMNotes: '' + GUID: eaa415 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Leo De Luca + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.36273 + posY: 2.705842 + posZ: -72.2725 + rotX: 0.02080086 + rotY: 270.020142 + rotZ: 180.01683 + 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: + '3685': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: c6ac19 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Perception + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.36273 + posY: 2.755842 + posZ: -72.2725 + rotX: 0.02080086 + rotY: 270.020142 + rotZ: 180.01683 + 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: + '3685': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: c6ac19 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Perception + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.36273 + posY: 2.705842 + posZ: -72.2725 + rotX: 0.02080086 + rotY: 270.020142 + rotZ: 180.01683 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 443905 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4439': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/1011562618093846571/13C76218853EE87123267F8F6BE99206DB40470B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 1186a1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Tony's .38 Long Colt + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.36273 + posY: 2.705842 + posZ: -72.2725 + rotX: 0.02080086 + rotY: 270.020142 + rotZ: 180.01683 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: '889121' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Vicious Blow + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.36273 + posY: 2.705842 + posZ: -72.2725 + rotX: 0.02080086 + rotY: 270.020142 + rotZ: 180.01683 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 443905 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4439': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/1011562618093846571/13C76218853EE87123267F8F6BE99206DB40470B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 1186a1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Tony's .38 Long Colt + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.36273 + posY: 2.755842 + posZ: -72.2725 + rotX: 0.02080086 + rotY: 270.020142 + rotZ: 180.01683 + 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: + '3685': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: bb1cce + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Flashlight + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.36273 + posY: 2.755842 + posZ: -72.2725 + rotX: 0.02080086 + rotY: 270.020142 + rotZ: 180.01683 + 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: + '3687': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: '833305' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Elusive + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.36273 + posY: 2.705842 + posZ: -72.2725 + rotX: 0.02080086 + rotY: 270.020142 + rotZ: 180.01683 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2263': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/ + NumHeight: 7 + NumWidth: 10 + 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 + UniqueBack: false + '3685': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '3686': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '3687': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '4407': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1016065725025944587/520448D0E9C22F102C7DDF64322EAD6FC221ECC8/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '4439': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/1011562618093846571/13C76218853EE87123267F8F6BE99206DB40470B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 440723 +- 440723 +- 443904 +- 368500 +- 443906 +- 368509 +- 440722 +- 226319 +- 440722 +- 368504 +- 368621 +- 368500 +- 368515 +- 368512 +- 368502 +- 226309 +- 368625 +- 226313 +- 368504 +- 368628 +- 368502 +- 368622 +- 368512 +- 368713 +- 368716 +- 368623 +- 368509 +- 261702 +- 368631 +- 368506 +- 368506 +- 443905 +- 226302 +- 443905 +- 368515 +- 368712 +Description: '' +GMNotes: '' +GUID: b9a7c7 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -8.471526 + posY: 3.57942748 + posZ: -60.90001 + rotX: 0.0207950268 + rotY: 270.0193 + rotZ: 180.0172 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dream-Eaters a34f34/Custom_Model_Bag signature cards b81d01/Deck Tony's .38 Long Colt 839169.yaml b/unpacked/Custom_Model_Bag The Dream-Eaters a34f34/Custom_Model_Bag signature cards b81d01/Deck Tony's .38 Long Colt 839169.yaml new file mode 100644 index 000000000..4d00ab987 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dream-Eaters a34f34/Custom_Model_Bag signature cards b81d01/Deck Tony's .38 Long Colt 839169.yaml @@ -0,0 +1,129 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 274105 + 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/1011562618093846571/13C76218853EE87123267F8F6BE99206DB40470B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: '510459' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Tony's .38 Long Colt + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -13.9558477 + posY: 1.37353611 + posZ: -64.7318039 + rotX: 0.0209165346 + rotY: 270.020874 + rotZ: 0.016041223 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274105 + 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/1011562618093846571/13C76218853EE87123267F8F6BE99206DB40470B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: '606327' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Tony's .38 Long Colt + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -14.0908241 + posY: 1.53432262 + posZ: -65.0402451 + rotX: 0.0207212474 + rotY: 270.0209 + rotZ: 0.01331738 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2741': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/1011562618093846571/13C76218853EE87123267F8F6BE99206DB40470B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 274105 +- 274105 +Description: '' +GMNotes: '' +GUID: '839169' +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Tony's .38 Long Colt +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 12.7217512 + posY: 2.39025664 + posZ: -91.59697 + rotX: 0.0208023 + rotY: 270.020874 + rotZ: 0.0167767033 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy 5889dd.ttslua b/unpacked/Custom_Model_Bag The Dunwich Legacy 5889dd.ttslua new file mode 100644 index 000000000..5dff2f1d7 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy 5889dd.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,3,7}, rotation={0,0,0}, height=700, width=2000, + font_size=700, 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 +12 + 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=800, width=800, + 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,3,7}, rotation={0,0,0}, height=700, width=2000, + font_size=700, color={0,0,0}, font_color={1,1,1} + }) + self.createButton({ + label="Submit", click_function="buttonClick_submit", function_owner=self, + position={0,3,-7}, rotation={0,0,0}, height=700, width=2000, + font_size=700, color={0,0,0}, font_color={1,1,1} + }) +-- self.createButton({ +-- label="Reset", click_function="buttonClick_reset", function_owner=self, +-- position={3,2.5,6}, rotation={0,0,0}, height=550, width=1100, +-- font_size=400, 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={2.4,3,7}, rotation={0,0,0}, height=850, width=2000, + font_size=700, color={0,0,0}, font_color={1,1,1} + }) + self.createButton({ + label="Recall", click_function="buttonClick_recall", function_owner=self, + position={-2.4,3,7}, rotation={0,0,0}, height=850, width=2200, + font_size=700, 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.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 \ No newline at end of file diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy 5889dd.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy 5889dd.yaml new file mode 100644 index 000000000..be8cbd2dc --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy 5889dd.yaml @@ -0,0 +1,96 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +ContainedObjects: +- !include 'Custom_Model_Bag The Dunwich Legacy 5889dd/Custom_Model Survivor turn + token 04e814.yaml' +- !include 'Custom_Model_Bag The Dunwich Legacy 5889dd/Custom_Model Turn token 07b86c.yaml' +- !include 'Custom_Model_Bag The Dunwich Legacy 5889dd/Deck Jenny Barnes 0a9dcf.yaml' +- !include 'Custom_Model_Bag The Dunwich Legacy 5889dd/Custom_Model Turn token 246187.yaml' +- !include 'Custom_Model_Bag The Dunwich Legacy 5889dd/Custom_Model_Bag starter deck + & cards 25a9d0.yaml' +- !include 'Custom_Model_Bag The Dunwich Legacy 5889dd/Custom_Model Survivor turn + token 3178b4.yaml' +- !include 'Custom_Model_Bag The Dunwich Legacy 5889dd/Custom_Model Turn token 39c9b4.yaml' +- !include 'Custom_Model_Bag The Dunwich Legacy 5889dd/Card Rex Murphy 41625c.yaml' +- !include 'Custom_Model_Bag The Dunwich Legacy 5889dd/Deck Jenny Barnes 523bbe.yaml' +- !include 'Custom_Model_Bag The Dunwich Legacy 5889dd/Custom_Model Turn token 5d43bb.yaml' +- !include 'Custom_Model_Bag The Dunwich Legacy 5889dd/Custom_Model_Bag starter deck + & cards 62acb6.yaml' +- !include 'Custom_Model_Bag The Dunwich Legacy 5889dd/Custom_Model Survivor turn + token 7b6ae4.yaml' +- !include 'Custom_Model_Bag The Dunwich Legacy 5889dd/Card Zoey Samaras 81a0f8.yaml' +- !include 'Custom_Model_Bag The Dunwich Legacy 5889dd/Custom_Model Turn token 8d7701.yaml' +- !include 'Custom_Model_Bag The Dunwich Legacy 5889dd/Custom_Model Survivor turn + token 9bdc2f.yaml' +- !include 'Custom_Model_Bag The Dunwich Legacy 5889dd/Custom_Model_Bag starter deck + & cards ae39ed.yaml' +- !include 'Custom_Model_Bag The Dunwich Legacy 5889dd/Card Rex Murphy b14c5f.yaml' +- !include 'Custom_Model_Bag The Dunwich Legacy 5889dd/Custom_Model Survivor turn + token c72b69.yaml' +- !include 'Custom_Model_Bag The Dunwich Legacy 5889dd/Card Zoey Samaras c81217.yaml' +- !include 'Custom_Model_Bag The Dunwich Legacy 5889dd/Card Jim Culver d28c9a.yaml' +- !include 'Custom_Model_Bag The Dunwich Legacy 5889dd/Card Ashcan Pete da7828.yaml' +- !include 'Custom_Model_Bag The Dunwich Legacy 5889dd/Custom_Model Survivor turn + token dbd56b.yaml' +- !include 'Custom_Model_Bag The Dunwich Legacy 5889dd/Custom_Model Turn token e46816.yaml' +- !include 'Custom_Model_Bag The Dunwich Legacy 5889dd/Custom_Model Survivor turn + token e69e6d.yaml' +- !include 'Custom_Model_Bag The Dunwich Legacy 5889dd/Card Ashcan Pete ed4b06.yaml' +- !include 'Custom_Model_Bag The Dunwich Legacy 5889dd/Custom_Model Survivor turn + token ed6ea8.yaml' +- !include 'Custom_Model_Bag The Dunwich Legacy 5889dd/Custom_Model_Bag starter deck + & cards edb898.yaml' +- !include 'Custom_Model_Bag The Dunwich Legacy 5889dd/Custom_Model_Bag starter deck + & cards f8af18.yaml' +- !include 'Custom_Model_Bag The Dunwich Legacy 5889dd/Custom_Model Survivor turn + token f9c822.yaml' +- !include 'Custom_Model_Bag The Dunwich Legacy 5889dd/Card Jim Culver fbf105.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/762723517667666249/B7EB11E1C48A63D3B8AC233FF2DF0BBAD74ECC6E/ + MaterialIndex: 3 + MeshURL: https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/core_h_MSH.obj + NormalURL: '' + TypeIndex: 6 +Description: '' +GMNotes: '' +GUID: 5889dd +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Model_Bag The Dunwich Legacy 5889dd.ttslua' +LuaScriptState: '{"ml":{"04e814":{"lock":false,"pos":{"x":-16.6385,"y":1.3554,"z":-83.5415},"rot":{"x":0.0208,"y":269.9877,"z":0.0168}},"07b86c":{"lock":false,"pos":{"x":-16.6403,"y":1.3596,"z":-69.0603},"rot":{"x":0.0208,"y":270.0002,"z":0.0168}},"0a9dcf":{"lock":false,"pos":{"x":-19.2959,"y":1.3772,"z":-69.0607},"rot":{"x":0.0208,"y":270.0234,"z":0.0168}},"246187":{"lock":false,"pos":{"x":-16.6401,"y":1.3592,"z":-70.2906},"rot":{"x":0.0208,"y":270.0001,"z":0.0168}},"25a9d0":{"lock":false,"pos":{"x":-26.2996,"y":1.2665,"z":-84.818},"rot":{"x":359.9792,"y":90.0001,"z":359.9832}},"3178b4":{"lock":false,"pos":{"x":-16.6378,"y":1.3638,"z":-54.6271},"rot":{"x":0.0209,"y":269.7959,"z":0.0167}},"39c9b4":{"lock":false,"pos":{"x":-16.6403,"y":1.3576,"z":-75.7054},"rot":{"x":0.0208,"y":270.0009,"z":0.0168}},"41625c":{"lock":false,"pos":{"x":-19.3001,"y":1.3726,"z":-61.2332},"rot":{"x":0.0208,"y":270.0177,"z":0.0168}},"523bbe":{"lock":false,"pos":{"x":-22.6157,"y":1.376,"z":-69.0756},"rot":{"x":0.0168,"y":180.0058,"z":359.9792}},"5d43bb":{"lock":false,"pos":{"x":-16.6401,"y":1.3569,"z":-78.1756},"rot":{"x":0.0208,"y":269.999,"z":0.0168}},"62acb6":{"lock":false,"pos":{"x":-26.3002,"y":1.2711,"z":-69.0606},"rot":{"x":359.9792,"y":90.0001,"z":359.9832}},"7b6ae4":{"lock":false,"pos":{"x":-16.6402,"y":1.355,"z":-84.8182},"rot":{"x":0.0208,"y":269.999,"z":0.0168}},"81a0f8":{"lock":false,"pos":{"x":-22.6139,"y":1.3737,"z":-53.4381},"rot":{"x":0.0168,"y":180.0104,"z":359.9792}},"8d7701":{"lock":false,"pos":{"x":-16.6396,"y":1.3573,"z":-76.9456},"rot":{"x":0.0208,"y":270.009,"z":0.0168}},"9bdc2f":{"lock":false,"pos":{"x":-16.6401,"y":1.3619,"z":-61.231},"rot":{"x":0.0208,"y":270.0001,"z":0.0168}},"ae39ed":{"lock":false,"pos":{"x":-26.3001,"y":1.2734,"z":-61.241},"rot":{"x":359.9792,"y":90,"z":359.9832}},"b14c5f":{"lock":false,"pos":{"x":-22.6169,"y":1.3714,"z":-61.2414},"rot":{"x":0.0168,"y":180.0103,"z":359.9792}},"c72b69":{"lock":false,"pos":{"x":-16.64,"y":1.3645,"z":-52.152},"rot":{"x":0.0208,"y":270.0125,"z":0.0168}},"c81217":{"lock":false,"pos":{"x":-19.3,"y":1.3749,"z":-53.4358},"rot":{"x":0.0208,"y":270.0232,"z":0.0168}},"d28c9a":{"lock":false,"pos":{"x":-19.2998,"y":1.3657,"z":-84.8182},"rot":{"x":0.0208,"y":270.0288,"z":0.0168}},"da7828":{"lock":false,"pos":{"x":-22.6157,"y":1.3668,"z":-76.946},"rot":{"x":0.0168,"y":180.0104,"z":359.9792}},"dbd56b":{"lock":false,"pos":{"x":-16.64,"y":1.3642,"z":-53.3904},"rot":{"x":0.0208,"y":270.0005,"z":0.0168}},"e46816":{"lock":false,"pos":{"x":-16.6401,"y":1.36,"z":-67.8206},"rot":{"x":0.0208,"y":270.0005,"z":0.0168}},"e69e6d":{"lock":false,"pos":{"x":-16.64,"y":1.3615,"z":-62.4609},"rot":{"x":0.0208,"y":269.9999,"z":0.0168}},"ed4b06":{"lock":false,"pos":{"x":-19.2936,"y":1.368,"z":-76.9415},"rot":{"x":0.0208,"y":269.9895,"z":0.0168}},"ed6ea8":{"lock":false,"pos":{"x":-16.6394,"y":1.3546,"z":-86.0186},"rot":{"x":0.0208,"y":269.9965,"z":0.0168}},"edb898":{"lock":false,"pos":{"x":-26.3002,"y":1.2688,"z":-76.9456},"rot":{"x":359.9792,"y":90.0001,"z":359.9832}},"f8af18":{"lock":false,"pos":{"x":-26.3,"y":1.2757,"z":-53.4368},"rot":{"x":359.9792,"y":90.0001,"z":359.9832}},"f9c822":{"lock":false,"pos":{"x":-16.6401,"y":1.3622,"z":-60.001},"rot":{"x":0.0208,"y":270.0007,"z":0.0168}},"fbf105":{"lock":false,"pos":{"x":-22.6169,"y":1.3645,"z":-84.8185},"rot":{"x":0.0168,"y":180.0103,"z":359.9792}}}}' +MaterialIndex: -1 +MeshIndex: -1 +Name: Custom_Model_Bag +Nickname: The Dunwich Legacy +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -9.742667 + posY: 1.30589068 + posZ: -56.0992737 + rotX: 0.02081189 + rotY: 269.993225 + rotZ: 0.0167682618 + scaleX: 0.5 + scaleY: 0.139652729 + scaleZ: 0.5 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy 5889dd/Card Ashcan Pete da7828.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy 5889dd/Card Ashcan Pete da7828.yaml new file mode 100644 index 000000000..301dd041a --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy 5889dd/Card Ashcan Pete da7828.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 270609 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2706': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1011562618093845464/80687C9319FA2015F3D9F7CBEB4C55FBF045B27D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1011562618093845971/A678BD374EC4DE672206B5EF7EB57DC885BC839C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: The Drifter +GMNotes: '' +GUID: da7828 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '"Ashcan" Pete' +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -22.6157 + posY: 1.36682665 + posZ: -76.946 + rotX: 0.0167755429 + rotY: 180.010437 + rotZ: 359.9792 + scaleX: 1.1 + scaleY: 1.0 + scaleZ: 1.1 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy 5889dd/Card Ashcan Pete ed4b06.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy 5889dd/Card Ashcan Pete ed4b06.yaml new file mode 100644 index 000000000..49d457b4f --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy 5889dd/Card Ashcan Pete ed4b06.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 258909 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2589': + BackIsHidden: true + BackURL: https://i.imgur.com/vB84qMp.jpg + FaceURL: https://i.imgur.com/WPYBga4.jpg + NumHeight: 3 + NumWidth: 7 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: ed4b06 +Grid: false +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '"Ashcan" Pete' +SidewaysCard: false +Snap: false +Sticky: true +Tooltip: true +Transform: + posX: -19.2936 + posY: 1.36803448 + posZ: -76.9415 + rotX: 0.0208136 + rotY: 269.9895 + rotZ: 0.01676598 + scaleX: 0.6 + scaleY: 1.0 + scaleZ: 0.6 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy 5889dd/Card Jim Culver d28c9a.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy 5889dd/Card Jim Culver d28c9a.yaml new file mode 100644 index 000000000..88b37e2f2 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy 5889dd/Card Jim Culver d28c9a.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 259308 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2593': + BackIsHidden: true + BackURL: https://i.imgur.com/vB84qMp.jpg + FaceURL: https://i.imgur.com/WPYBga4.jpg + NumHeight: 3 + NumWidth: 7 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: d28c9a +Grid: false +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Jim Culver +SidewaysCard: false +Snap: false +Sticky: true +Tooltip: true +Transform: + posX: -19.2998 + posY: 1.36572659 + posZ: -84.8182 + rotX: 0.0208020229 + rotY: 270.028778 + rotZ: 0.0167803131 + scaleX: 0.6 + scaleY: 1.0 + scaleZ: 0.6 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy 5889dd/Card Jim Culver fbf105.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy 5889dd/Card Jim Culver fbf105.yaml new file mode 100644 index 000000000..da33a535d --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy 5889dd/Card Jim Culver fbf105.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 270508 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2705': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1011562618093845464/80687C9319FA2015F3D9F7CBEB4C55FBF045B27D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1011562618093845971/A678BD374EC4DE672206B5EF7EB57DC885BC839C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: The Musician +GMNotes: '' +GUID: fbf105 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Jim Culver +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -22.6169 + posY: 1.36452186 + posZ: -84.8185 + rotX: 0.0167753138 + rotY: 180.0103 + rotZ: 359.9792 + scaleX: 1.1 + scaleY: 1.0 + scaleZ: 1.1 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy 5889dd/Card Rex Murphy 41625c.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy 5889dd/Card Rex Murphy 41625c.yaml new file mode 100644 index 000000000..38750bc54 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy 5889dd/Card Rex Murphy 41625c.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 259206 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2592': + BackIsHidden: true + BackURL: https://i.imgur.com/vB84qMp.jpg + FaceURL: https://i.imgur.com/WPYBga4.jpg + NumHeight: 3 + NumWidth: 7 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 41625c +Grid: false +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Rex Murphy +SidewaysCard: false +Snap: false +Sticky: true +Tooltip: true +Transform: + posX: -19.3001 + posY: 1.37263012 + posZ: -61.2332 + rotX: 0.02080535 + rotY: 270.01767 + rotZ: 0.0167765748 + scaleX: 0.6 + scaleY: 1.0 + scaleZ: 0.6 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy 5889dd/Card Rex Murphy b14c5f.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy 5889dd/Card Rex Murphy b14c5f.yaml new file mode 100644 index 000000000..c16432fd2 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy 5889dd/Card Rex Murphy b14c5f.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 270406 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2704': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1011562618093845464/80687C9319FA2015F3D9F7CBEB4C55FBF045B27D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1011562618093845971/A678BD374EC4DE672206B5EF7EB57DC885BC839C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: The Reporter +GMNotes: '' +GUID: b14c5f +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Rex Murphy +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -22.6169 + posY: 1.37142313 + posZ: -61.2414 + rotX: 0.0167755876 + rotY: 180.0103 + rotZ: 359.9792 + scaleX: 1.1 + scaleY: 1.0 + scaleZ: 1.1 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy 5889dd/Card Zoey Samaras 81a0f8.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy 5889dd/Card Zoey Samaras 81a0f8.yaml new file mode 100644 index 000000000..28256a618 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy 5889dd/Card Zoey Samaras 81a0f8.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 270305 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2703': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1011562618093845464/80687C9319FA2015F3D9F7CBEB4C55FBF045B27D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1011562618093845971/A678BD374EC4DE672206B5EF7EB57DC885BC839C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: The Chef +GMNotes: '' +GUID: 81a0f8 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Zoey Samaras +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -22.6139 + posY: 1.37370825 + posZ: -53.4381 + rotX: 0.016775541 + rotY: 180.010437 + rotZ: 359.9792 + scaleX: 1.1 + scaleY: 1.0 + scaleZ: 1.1 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy 5889dd/Card Zoey Samaras c81217.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy 5889dd/Card Zoey Samaras c81217.yaml new file mode 100644 index 000000000..a7c7efe21 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy 5889dd/Card Zoey Samaras c81217.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 259105 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2591': + BackIsHidden: true + BackURL: https://i.imgur.com/vB84qMp.jpg + FaceURL: https://i.imgur.com/WPYBga4.jpg + NumHeight: 3 + NumWidth: 7 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: c81217 +Grid: false +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Zoey Samaras +SidewaysCard: false +Snap: false +Sticky: true +Tooltip: true +Transform: + posX: -19.3 + posY: 1.37491262 + posZ: -53.4358 + rotX: 0.0208038017 + rotY: 270.0232 + rotZ: 0.0167784188 + scaleX: 0.6 + scaleY: 1.0 + scaleZ: 0.6 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy 5889dd/Custom_Model Survivor turn token 04e814.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy 5889dd/Custom_Model Survivor turn token 04e814.yaml new file mode 100644 index 000000000..2fabf55f5 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy 5889dd/Custom_Model Survivor turn token 04e814.yaml @@ -0,0 +1,41 @@ +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: '' +GMNotes: '' +GUID: 04e814 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Model +Nickname: Survivor turn token +Snap: true +Sticky: true +Tooltip: false +Transform: + posX: -16.6385 + posY: 1.35535324 + posZ: -83.5415 + rotX: 0.0208201353 + rotY: 269.987671 + rotZ: 0.016763635 + scaleX: 0.45 + scaleY: 0.6 + scaleZ: 0.45 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy 5889dd/Custom_Model Survivor turn token 3178b4.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy 5889dd/Custom_Model Survivor turn token 3178b4.yaml new file mode 100644 index 000000000..1e7a1698b --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy 5889dd/Custom_Model Survivor turn token 3178b4.yaml @@ -0,0 +1,41 @@ +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: '' +GMNotes: '' +GUID: 3178b4 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Model +Nickname: Survivor turn token +Snap: true +Sticky: true +Tooltip: false +Transform: + posX: -16.6378 + posY: 1.3638171 + posZ: -54.6271 + rotX: 0.0208759289 + rotY: 269.7959 + rotZ: 0.0166938026 + scaleX: 0.45 + scaleY: 0.6 + scaleZ: 0.45 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy 5889dd/Custom_Model Survivor turn token 7b6ae4.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy 5889dd/Custom_Model Survivor turn token 7b6ae4.yaml new file mode 100644 index 000000000..a207589a7 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy 5889dd/Custom_Model Survivor turn token 7b6ae4.yaml @@ -0,0 +1,41 @@ +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: '' +GMNotes: '' +GUID: 7b6ae4 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Model +Nickname: Survivor turn token +Snap: true +Sticky: true +Tooltip: false +Transform: + posX: -16.6402 + posY: 1.35497892 + posZ: -84.8182 + rotX: 0.0208169166 + rotY: 269.998962 + rotZ: 0.0167676 + scaleX: 0.45 + scaleY: 0.6 + scaleZ: 0.45 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy 5889dd/Custom_Model Survivor turn token 9bdc2f.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy 5889dd/Custom_Model Survivor turn token 9bdc2f.yaml new file mode 100644 index 000000000..8f9c442c8 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy 5889dd/Custom_Model Survivor turn token 9bdc2f.yaml @@ -0,0 +1,41 @@ +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: '' +GMNotes: '' +GUID: 9bdc2f +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Model +Nickname: Survivor turn token +Snap: true +Sticky: true +Tooltip: false +Transform: + posX: -16.6401 + posY: 1.36188316 + posZ: -61.231 + rotX: 0.02081672 + rotY: 270.000122 + rotZ: 0.0167679861 + scaleX: 0.45 + scaleY: 0.6 + scaleZ: 0.45 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy 5889dd/Custom_Model Survivor turn token c72b69.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy 5889dd/Custom_Model Survivor turn token c72b69.yaml new file mode 100644 index 000000000..263cb83d7 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy 5889dd/Custom_Model Survivor turn token c72b69.yaml @@ -0,0 +1,41 @@ +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: '' +GMNotes: '' +GUID: c72b69 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Model +Nickname: Survivor turn token +Snap: true +Sticky: true +Tooltip: false +Transform: + posX: -16.64 + posY: 1.36454082 + posZ: -52.152 + rotX: 0.02081267 + rotY: 270.012543 + rotZ: 0.0167725962 + scaleX: 0.45 + scaleY: 0.6 + scaleZ: 0.45 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy 5889dd/Custom_Model Survivor turn token dbd56b.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy 5889dd/Custom_Model Survivor turn token dbd56b.yaml new file mode 100644 index 000000000..ee45f7730 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy 5889dd/Custom_Model Survivor turn token dbd56b.yaml @@ -0,0 +1,41 @@ +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: '' +GMNotes: '' +GUID: dbd56b +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Model +Nickname: Survivor turn token +Snap: true +Sticky: true +Tooltip: false +Transform: + posX: -16.64 + posY: 1.3641783 + posZ: -53.3904 + rotX: 0.0208162069 + rotY: 270.000519 + rotZ: 0.0167687256 + scaleX: 0.45 + scaleY: 0.6 + scaleZ: 0.45 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy 5889dd/Custom_Model Survivor turn token e69e6d.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy 5889dd/Custom_Model Survivor turn token e69e6d.yaml new file mode 100644 index 000000000..fb64b378b --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy 5889dd/Custom_Model Survivor turn token e69e6d.yaml @@ -0,0 +1,41 @@ +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: '' +GMNotes: '' +GUID: e69e6d +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Model +Nickname: Survivor turn token +Snap: true +Sticky: true +Tooltip: false +Transform: + posX: -16.64 + posY: 1.36152327 + posZ: -62.4609 + rotX: 0.0208166987 + rotY: 269.999878 + rotZ: 0.0167680122 + scaleX: 0.45 + scaleY: 0.6 + scaleZ: 0.45 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy 5889dd/Custom_Model Survivor turn token ed6ea8.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy 5889dd/Custom_Model Survivor turn token ed6ea8.yaml new file mode 100644 index 000000000..6a0e445c8 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy 5889dd/Custom_Model Survivor turn token ed6ea8.yaml @@ -0,0 +1,41 @@ +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: '' +GMNotes: '' +GUID: ed6ea8 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Model +Nickname: Survivor turn token +Snap: true +Sticky: true +Tooltip: false +Transform: + posX: -16.6394 + posY: 1.35462785 + posZ: -86.0186 + rotX: 0.0208178572 + rotY: 269.99646 + rotZ: 0.0167668164 + scaleX: 0.45 + scaleY: 0.6 + scaleZ: 0.45 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy 5889dd/Custom_Model Survivor turn token f9c822.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy 5889dd/Custom_Model Survivor turn token f9c822.yaml new file mode 100644 index 000000000..b9a7a1c9a --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy 5889dd/Custom_Model Survivor turn token f9c822.yaml @@ -0,0 +1,41 @@ +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: '' +GMNotes: '' +GUID: f9c822 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Model +Nickname: Survivor turn token +Snap: true +Sticky: true +Tooltip: false +Transform: + posX: -16.6401 + posY: 1.36224329 + posZ: -60.001 + rotX: 0.0208162386 + rotY: 270.000671 + rotZ: 0.0167683065 + scaleX: 0.45 + scaleY: 0.6 + scaleZ: 0.45 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy 5889dd/Custom_Model Turn token 07b86c.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy 5889dd/Custom_Model Turn token 07b86c.yaml new file mode 100644 index 000000000..53999d963 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy 5889dd/Custom_Model Turn token 07b86c.yaml @@ -0,0 +1,41 @@ +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: '' +GMNotes: '' +GUID: 07b86c +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Model +Nickname: Turn token +Snap: true +Sticky: true +Tooltip: false +Transform: + posX: -16.6403 + posY: 1.35959136 + posZ: -69.0603 + rotX: 0.02081665 + rotY: 270.000244 + rotZ: 0.0167680345 + scaleX: 0.45 + scaleY: 0.6 + scaleZ: 0.45 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy 5889dd/Custom_Model Turn token 246187.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy 5889dd/Custom_Model Turn token 246187.yaml new file mode 100644 index 000000000..acb2676a7 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy 5889dd/Custom_Model Turn token 246187.yaml @@ -0,0 +1,41 @@ +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: '' +GMNotes: '' +GUID: '246187' +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Model +Nickname: Turn token +Snap: true +Sticky: true +Tooltip: false +Transform: + posX: -16.6400986 + posY: 1.35923135 + posZ: -70.2906 + rotX: 0.0208164249 + rotY: 270.000061 + rotZ: 0.0167679619 + scaleX: 0.45 + scaleY: 0.6 + scaleZ: 0.45 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy 5889dd/Custom_Model Turn token 39c9b4.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy 5889dd/Custom_Model Turn token 39c9b4.yaml new file mode 100644 index 000000000..797bd148d --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy 5889dd/Custom_Model Turn token 39c9b4.yaml @@ -0,0 +1,41 @@ +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: '' +GMNotes: '' +GUID: 39c9b4 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Model +Nickname: Turn token +Snap: true +Sticky: true +Tooltip: false +Transform: + posX: -16.6403 + posY: 1.35764635 + posZ: -75.7054 + rotX: 0.0208159853 + rotY: 270.000977 + rotZ: 0.0167681221 + scaleX: 0.45 + scaleY: 0.6 + scaleZ: 0.45 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy 5889dd/Custom_Model Turn token 5d43bb.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy 5889dd/Custom_Model Turn token 5d43bb.yaml new file mode 100644 index 000000000..0c77dfacc --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy 5889dd/Custom_Model Turn token 5d43bb.yaml @@ -0,0 +1,41 @@ +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: '' +GMNotes: '' +GUID: 5d43bb +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Model +Nickname: Turn token +Snap: true +Sticky: true +Tooltip: false +Transform: + posX: -16.6401 + posY: 1.35692334 + posZ: -78.1756 + rotX: 0.0208163783 + rotY: 269.998962 + rotZ: 0.0167678334 + scaleX: 0.45 + scaleY: 0.6 + scaleZ: 0.45 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy 5889dd/Custom_Model Turn token 8d7701.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy 5889dd/Custom_Model Turn token 8d7701.yaml new file mode 100644 index 000000000..89d6a7888 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy 5889dd/Custom_Model Turn token 8d7701.yaml @@ -0,0 +1,41 @@ +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: '' +GMNotes: '' +GUID: 8d7701 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Model +Nickname: Turn token +Snap: true +Sticky: true +Tooltip: false +Transform: + posX: -16.6396 + posY: 1.35728359 + posZ: -76.9456 + rotX: 0.0208135974 + rotY: 270.008972 + rotZ: 0.0167711824 + scaleX: 0.45 + scaleY: 0.6 + scaleZ: 0.45 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy 5889dd/Custom_Model Turn token e46816.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy 5889dd/Custom_Model Turn token e46816.yaml new file mode 100644 index 000000000..a46c2e497 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy 5889dd/Custom_Model Turn token e46816.yaml @@ -0,0 +1,41 @@ +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: '' +GMNotes: '' +GUID: e46816 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Model +Nickname: Turn token +Snap: true +Sticky: true +Tooltip: false +Transform: + posX: -16.6401 + posY: 1.35995448 + posZ: -67.8206 + rotX: 0.0208168216 + rotY: 270.000549 + rotZ: 0.0167682245 + scaleX: 0.45 + scaleY: 0.6 + scaleZ: 0.45 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy 5889dd/Custom_Model_Bag starter deck & cards 25a9d0.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy 5889dd/Custom_Model_Bag starter deck & cards 25a9d0.yaml new file mode 100644 index 000000000..c9f2780bb --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy 5889dd/Custom_Model_Bag starter deck & cards 25a9d0.yaml @@ -0,0 +1,58 @@ +Autoraise: true +ColorDiffuse: + b: 0.02148666 + g: 0.00100758043 + r: 0.02148666 +ContainedObjects: +- !include 'Custom_Model_Bag starter deck & cards 25a9d0/Card Jim''s Trumpet 03c6a7.yaml' +- !include 'Custom_Model_Bag starter deck & cards 25a9d0/Card Final Rhapsody 2c901b.yaml' +- !include 'Custom_Model_Bag starter deck & cards 25a9d0/Deck 1e326a.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: '' +GMNotes: '' +GUID: 25a9d0 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +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.26650727 + posZ: -84.818 + rotX: 359.979156 + rotY: 90.00012 + rotZ: 359.983215 + scaleX: 2.0 + scaleY: 2.0 + scaleZ: 2.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy 5889dd/Custom_Model_Bag starter deck & cards 25a9d0/Card Final Rhapsody 2c901b.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy 5889dd/Custom_Model_Bag starter deck & cards 25a9d0/Card Final Rhapsody 2c901b.yaml new file mode 100644 index 000000000..7058a58a1 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy 5889dd/Custom_Model_Bag starter deck & cards 25a9d0/Card Final Rhapsody 2c901b.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 231711 +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/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 2c901b +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Final Rhapsody +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 36.0743752 + posY: 2.53441715 + posZ: -76.58958 + rotX: -8.975462e-07 + rotY: 270.0068 + rotZ: 359.9919 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy 5889dd/Custom_Model_Bag starter deck & cards 25a9d0/Card Jim's Trumpet 03c6a7.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy 5889dd/Custom_Model_Bag starter deck & cards 25a9d0/Card Jim's Trumpet 03c6a7.yaml new file mode 100644 index 000000000..3134e34b8 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy 5889dd/Custom_Model_Bag starter deck & cards 25a9d0/Card Jim's Trumpet 03c6a7.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 231610 +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/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 03c6a7 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '*Jim''s Trumpet' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 36.136116 + posY: 2.53438616 + posZ: -76.41378 + rotX: 0.00145156612 + rotY: 270.007324 + rotZ: 359.99115 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy 5889dd/Custom_Model_Bag starter deck & cards 25a9d0/Deck 1e326a.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy 5889dd/Custom_Model_Bag starter deck & cards 25a9d0/Deck 1e326a.yaml new file mode 100644 index 000000000..b38303bf4 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy 5889dd/Custom_Model_Bag starter deck & cards 25a9d0/Deck 1e326a.yaml @@ -0,0 +1,1447 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: '789971' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Emergency Cache + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 90.54532 + posY: 0.529666841 + posZ: -27.199995 + rotX: 0.032413993 + rotY: 270.047 + rotZ: 0.008115746 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 209612 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 465a09 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Knife + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 90.2402649 + posY: 0.530131638 + posZ: -26.1468048 + rotX: 0.00624390831 + rotY: 269.989 + rotZ: 359.985229 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 209612 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: edb657 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Knife + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 90.54868 + posY: 0.6688948 + posZ: -26.5457611 + rotX: 358.972443 + rotY: 269.963318 + rotZ: 1.71914339 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 9fbdf0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Emergency Cache + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 89.808 + posY: 0.692299962 + posZ: -25.89844 + rotX: -0.00478493841 + rotY: 269.994 + rotZ: 359.9919 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 209615 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 002e8e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Flashlight + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 89.98421 + posY: 0.6791619 + posZ: -26.9712 + rotX: -0.000753245957 + rotY: 269.9747 + rotZ: 359.99173 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 209615 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 195ce3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Flashlight + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 89.9842 + posY: 0.681073666 + posZ: -26.9712 + rotX: -0.0002585446 + rotY: 269.9747 + rotZ: 359.991669 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 822bb4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Unexpected Courage + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 70.4171753 + posY: 0.531329632 + posZ: 50.55564 + rotX: 0.000501210452 + rotY: 270.001617 + rotZ: -0.0033165263 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 58fc90 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Unexpected Courage + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 70.41719 + posY: 0.680611849 + posZ: 50.55562 + rotX: 359.990784 + rotY: 270.0018 + rotZ: 0.00252686278 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 4a2ac6 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Guts + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 69.9634247 + posY: 0.6951976 + posZ: 50.9752 + rotX: -5.36318248e-06 + rotY: 270.001526 + rotZ: 359.991943 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 92e1d0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Guts + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 69.96276 + posY: 0.675372839 + posZ: 50.86486 + rotX: 0.746969461 + rotY: 269.992 + rotZ: 358.9107 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 209616 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 9dcd0b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Kukri + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 69.74163 + posY: 0.6798898 + posZ: 50.8927765 + rotX: -0.000332217052 + rotY: 269.9746 + rotZ: -0.002629763 + 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/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: d833de + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Lucky! + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 59.93712 + posY: 0.652751446 + posZ: 49.7143822 + rotX: 2.32766151 + rotY: 269.9129 + rotZ: 356.715576 + 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/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 7deaf0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '"Look what I found"' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 59.82574 + posY: 0.6873527 + posZ: 49.6882477 + rotX: -3.68565088e-06 + rotY: 270.007782 + rotZ: 359.991943 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 209719 + 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/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: ae0b33 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Cunning Distraction + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 60.16783 + posY: 0.6937481 + posZ: 49.19954 + rotX: -4.2376023e-06 + rotY: 270.0077 + rotZ: 359.991943 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 209723 + 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/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: bc111c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Rabbit's Foot + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 59.6746178 + posY: 0.6436242 + posZ: 49.452034 + rotX: 0.121044427 + rotY: 269.989166 + rotZ: 0.09716993 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 209732 + 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/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 5b005b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '*Peter Sylvestre' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 59.447834 + posY: 0.78362155 + posZ: 49.2813377 + rotX: 0.688127 + rotY: 270.0003 + rotZ: 1.13814807 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 24e2bc + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Forbidden Knowledge + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -27.2666 + posY: 0.5297338 + posZ: 62.3311844 + rotX: -0.0001723026 + rotY: 269.999878 + rotZ: 359.992279 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: d08a49 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Clarity of Mind + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -27.3342171 + posY: 0.6758977 + posZ: 62.1088867 + rotX: 359.9584 + rotY: 270.001434 + rotZ: 359.821747 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: '813960' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Fearless + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -26.8805275 + posY: 0.6936261 + posZ: 62.22653 + rotX: -8.994222e-06 + rotY: 269.971069 + rotZ: 359.991943 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 1c4754 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Arcane Studies + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -27.4472065 + posY: 0.67784375 + posZ: 62.43922 + rotX: 0.5641472 + rotY: 269.992676 + rotZ: 359.136444 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 499c81 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ward of Protection + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -27.3792858 + posY: 0.6780897 + posZ: 62.15239 + rotX: 359.9867 + rotY: 269.971039 + rotZ: 359.931732 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 7fef4e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Arcane Initiate + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -27.2665977 + posY: 0.680790961 + posZ: 61.7108765 + rotX: -0.00249667047 + rotY: 269.999237 + rotZ: -0.003206446 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 3c1bb2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ritual Candles + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -27.5365124 + posY: 0.6855422 + posZ: 62.6352272 + rotX: -4.74119543e-06 + rotY: 269.999329 + rotZ: 359.991943 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 078b04 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Shrivelling + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -27.5812435 + posY: 0.691952765 + posZ: 62.03888 + rotX: -4.57777742e-06 + rotY: 269.99942 + rotZ: 359.991943 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 5f16f0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Holy Rosary + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -27.3793068 + posY: 0.6492765 + posZ: 62.528244 + rotX: -5.14432e-06 + rotY: 269.99942 + rotZ: 359.991943 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 6806a6 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Scrying + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -27.5140686 + posY: 0.6589301 + posZ: 62.7459869 + rotX: -4.30763839e-06 + rotY: 269.999268 + rotZ: 359.991943 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 125aaf + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Blinding Light + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -27.1988239 + posY: 0.6701732 + posZ: 62.376442 + rotX: 0.01767473 + rotY: 269.970642 + rotZ: 0.07903916 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: e15f65 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Drawn to the Flame + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -26.9015427 + posY: 0.6609414 + posZ: 62.8524742 + rotX: 358.272369 + rotY: 270.02948 + rotZ: 357.090973 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 6da534 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Rite of Seeking + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -27.71522 + posY: 0.6880251 + posZ: 62.23513 + rotX: -5.13806663e-06 + rotY: 270.0037 + rotZ: 359.991943 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: fa1424 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ritual Candles + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -27.6483135 + posY: 0.697691143 + posZ: 62.1923332 + rotX: -5.15140664e-06 + rotY: 269.999329 + rotZ: 359.991943 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231610 + 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/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 9fefad + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '*Jim''s Trumpet' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 26.6994114 + posY: 0.8091071 + posZ: -75.02235 + rotX: 0.003793263 + rotY: 270.005859 + rotZ: 359.8694 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231711 + 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/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 84e37c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Final Rhapsody + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 26.8023758 + posY: 0.816777647 + posZ: -75.93097 + rotX: 0.000199308619 + rotY: 270.006866 + rotZ: 359.991821 + 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 + UniqueBack: false + '2097': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + 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 + UniqueBack: false + '2316': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '2317': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 209609 +- 209612 +- 209612 +- 209609 +- 209615 +- 209615 +- 209608 +- 209608 +- 209600 +- 209600 +- 209616 +- 209710 +- 209716 +- 209719 +- 209723 +- 209732 +- 230316 +- 230322 +- 230303 +- 230324 +- 230308 +- 230318 +- 230317 +- 230328 +- 230323 +- 230319 +- 230311 +- 230304 +- 230329 +- 230317 +- 231610 +- 231711 +Description: '' +GMNotes: '' +GUID: 1e326a +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 35.70072 + posY: 2.6564 + posZ: -76.3878555 + rotX: -2.86416471e-05 + rotY: 269.999969 + rotZ: 179.994751 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy 5889dd/Custom_Model_Bag starter deck & cards 62acb6.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy 5889dd/Custom_Model_Bag starter deck & cards 62acb6.yaml new file mode 100644 index 000000000..0e0ba090e --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy 5889dd/Custom_Model_Bag starter deck & cards 62acb6.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 62acb6/Bag Jenny Barnes Replacement + Cards 3c80b2.yaml' +- !include 'Custom_Model_Bag starter deck & cards 62acb6/Card Jenny''s Twin .45s d87128.yaml' +- !include 'Custom_Model_Bag starter deck & cards 62acb6/Card Searching for Izzie + cd94e3.yaml' +- !include 'Custom_Model_Bag starter deck & cards 62acb6/Deck 07d556.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: '' +GMNotes: '' +GUID: 62acb6 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +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.27111948 + posZ: -69.0606 + rotX: 359.979156 + rotY: 90.0001 + rotZ: 359.983215 + scaleX: 2.0 + scaleY: 2.0 + scaleZ: 2.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy 5889dd/Custom_Model_Bag starter deck & cards 62acb6/Bag Jenny Barnes Replacement Cards 3c80b2.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy 5889dd/Custom_Model_Bag starter deck & cards 62acb6/Bag Jenny Barnes Replacement Cards 3c80b2.yaml new file mode 100644 index 000000000..8dc254924 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy 5889dd/Custom_Model_Bag starter deck & cards 62acb6/Bag Jenny Barnes Replacement Cards 3c80b2.yaml @@ -0,0 +1,39 @@ +Autoraise: true +ColorDiffuse: + b: 0.0 + g: 1.0 + r: 0.294603437 +ContainedObjects: +- !include 'Bag Jenny Barnes Replacement Cards 3c80b2/Card Green Man Medallion c729ab.yaml' +- !include 'Bag Jenny Barnes Replacement Cards 3c80b2/Card Sacrificial Beast 46812e.yaml' +- !include 'Bag Jenny Barnes Replacement Cards 3c80b2/Card Jenny Barnes f4e909.yaml' +- !include 'Bag Jenny Barnes Replacement Cards 3c80b2/Card Promo version 1f7be1.yaml' +Description: '' +GMNotes: '' +GUID: 3c80b2 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +MeshIndex: -1 +Name: Bag +Nickname: Jenny Barnes Replacement Cards +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 79.17474 + posY: 2.09227586 + posZ: -74.21954 + rotX: 0.02081992 + rotY: 270.013184 + rotZ: 0.0167946424 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy 5889dd/Custom_Model_Bag starter deck & cards 62acb6/Bag Jenny Barnes Replacement Cards 3c80b2/Card Green Man Medallion c729ab.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy 5889dd/Custom_Model_Bag starter deck & cards 62acb6/Bag Jenny Barnes Replacement Cards 3c80b2/Card Green Man Medallion c729ab.yaml new file mode 100644 index 000000000..01c1f1cd4 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy 5889dd/Custom_Model_Bag starter deck & cards 62acb6/Bag Jenny Barnes Replacement Cards 3c80b2/Card Green Man Medallion c729ab.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 266865 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2668': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: Hour of the Huntress +GMNotes: '' +GUID: c729ab +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Green Man Medallion +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 67.7607956 + posY: 2.34667563 + posZ: -71.2685 + rotX: 0.020799594 + rotY: 270.027924 + rotZ: 0.0167839378 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy 5889dd/Custom_Model_Bag starter deck & cards 62acb6/Bag Jenny Barnes Replacement Cards 3c80b2/Card Jenny Barnes f4e909.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy 5889dd/Custom_Model_Bag starter deck & cards 62acb6/Bag Jenny Barnes Replacement Cards 3c80b2/Card Jenny Barnes f4e909.yaml new file mode 100644 index 000000000..1facca25f --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy 5889dd/Custom_Model_Bag starter deck & cards 62acb6/Bag Jenny Barnes Replacement Cards 3c80b2/Card Jenny Barnes f4e909.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 266410 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2664': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1011562618093846975/4726098952C64103F2C211D202FFDD40D9D988BB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869050066760/0DE2BD4589CC8C2F3D26C2900A17ED7A6483062F/ + NumHeight: 3 + NumWidth: 7 + UniqueBack: true +Description: Promo version +GMNotes: '' +GUID: f4e909 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Jenny Barnes +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 72.14521 + posY: 4.25549555 + posZ: -77.01709 + rotX: 0.0207997914 + rotY: 270.023743 + rotZ: 0.01679185 + scaleX: 0.6 + scaleY: 1.0 + scaleZ: 0.6 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy 5889dd/Custom_Model_Bag starter deck & cards 62acb6/Bag Jenny Barnes Replacement Cards 3c80b2/Card Promo version 1f7be1.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy 5889dd/Custom_Model_Bag starter deck & cards 62acb6/Bag Jenny Barnes Replacement Cards 3c80b2/Card Promo version 1f7be1.yaml new file mode 100644 index 000000000..ca8e97d5f --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy 5889dd/Custom_Model_Bag starter deck & cards 62acb6/Bag Jenny Barnes Replacement Cards 3c80b2/Card Promo version 1f7be1.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 269731 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2697': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1011562618093845464/80687C9319FA2015F3D9F7CBEB4C55FBF045B27D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1011562618093845971/A678BD374EC4DE672206B5EF7EB57DC885BC839C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 1f7be1 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Promo version +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 78.879776 + posY: 2.351707 + posZ: -68.74173 + rotX: 0.0297029186 + rotY: 180.001328 + rotZ: 359.987518 + scaleX: 1.1 + scaleY: 1.0 + scaleZ: 1.1 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy 5889dd/Custom_Model_Bag starter deck & cards 62acb6/Bag Jenny Barnes Replacement Cards 3c80b2/Card Sacrificial Beast 46812e.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy 5889dd/Custom_Model_Bag starter deck & cards 62acb6/Bag Jenny Barnes Replacement Cards 3c80b2/Card Sacrificial Beast 46812e.yaml new file mode 100644 index 000000000..828c5f98e --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy 5889dd/Custom_Model_Bag starter deck & cards 62acb6/Bag Jenny Barnes Replacement Cards 3c80b2/Card Sacrificial Beast 46812e.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 266866 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2668': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 46812e +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Sacrificial Beast +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 67.84412 + posY: 2.34757876 + posZ: -68.28663 + rotX: 0.020801 + rotY: 270.022461 + rotZ: 0.01678083 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy 5889dd/Custom_Model_Bag starter deck & cards 62acb6/Card Jenny's Twin .45s d87128.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy 5889dd/Custom_Model_Bag starter deck & cards 62acb6/Card Jenny's Twin .45s d87128.yaml new file mode 100644 index 000000000..0b3ec1713 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy 5889dd/Custom_Model_Bag starter deck & cards 62acb6/Card Jenny's Twin .45s d87128.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 231008 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2310': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: d87128 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Jenny's Twin .45s +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 72.509964 + posY: 4.256494 + posZ: -74.31011 + rotX: 0.0208040737 + rotY: 270.00705 + rotZ: 0.016778985 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy 5889dd/Custom_Model_Bag starter deck & cards 62acb6/Card Searching for Izzie cd94e3.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy 5889dd/Custom_Model_Bag starter deck & cards 62acb6/Card Searching for Izzie cd94e3.yaml new file mode 100644 index 000000000..bfa3f8ed9 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy 5889dd/Custom_Model_Bag starter deck & cards 62acb6/Card Searching for Izzie cd94e3.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 231109 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2311': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: cd94e3 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Searching for Izzie +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 73.37655 + posY: 4.25785255 + posZ: -71.06176 + rotX: 0.0208186638 + rotY: 269.988647 + rotZ: 0.01674193 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy 5889dd/Custom_Model_Bag starter deck & cards 62acb6/Deck 07d556.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy 5889dd/Custom_Model_Bag starter deck & cards 62acb6/Deck 07d556.yaml new file mode 100644 index 000000000..81ffbb24a --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy 5889dd/Custom_Model_Bag starter deck & cards 62acb6/Deck 07d556.yaml @@ -0,0 +1,1461 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: '789971' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Emergency Cache + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 90.54532 + posY: 0.529666841 + posZ: -27.199995 + rotX: 0.032413993 + rotY: 270.047 + rotZ: 0.008115746 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 209612 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 465a09 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Knife + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 90.2402649 + posY: 0.530131638 + posZ: -26.1468048 + rotX: 0.00624390831 + rotY: 269.989 + rotZ: 359.985229 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 209612 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: edb657 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Knife + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 90.54868 + posY: 0.6688948 + posZ: -26.5457611 + rotX: 358.972443 + rotY: 269.963318 + rotZ: 1.71914339 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 9fbdf0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Emergency Cache + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 89.808 + posY: 0.692299962 + posZ: -25.89844 + rotX: -0.00478493841 + rotY: 269.994 + rotZ: 359.9919 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 209615 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 002e8e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Flashlight + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 89.98421 + posY: 0.6791619 + posZ: -26.9712 + rotX: -0.000753245957 + rotY: 269.9747 + rotZ: 359.99173 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 209615 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 195ce3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Flashlight + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 89.9842 + posY: 0.681073666 + posZ: -26.9712 + rotX: -0.0002585446 + rotY: 269.9747 + rotZ: 359.991669 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 209801 + 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/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 7c725f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Double or Nothing + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 38.9852829 + posY: 0.5307477 + posZ: 54.9738579 + rotX: -6.05920832e-05 + rotY: 269.997925 + rotZ: 359.991882 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 209801 + 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/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 370d0d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Double or Nothing + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 38.9852753 + posY: 0.6806028 + posZ: 55.04342 + rotX: 0.000639248 + rotY: 269.997864 + rotZ: 359.984161 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 210020 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2100': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: f09ab4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Liquid Courage + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 38.66027 + posY: 0.6945972 + posZ: 55.2389336 + rotX: -5.15766e-06 + rotY: 269.999969 + rotZ: 359.991943 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 210020 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2100': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 2cb08e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Liquid Courage + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 38.659668 + posY: 0.6767235 + posZ: 55.23978 + rotX: 0.6029488 + rotY: 269.988953 + rotZ: 359.083649 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 210021 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2100': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 9a76a3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Switchblade + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 38.9684944 + posY: 0.679439068 + posZ: 54.58413 + rotX: -0.0004612064 + rotY: 269.994568 + rotZ: -0.00509694126 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 210022 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2100': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: f87e93 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Burglary + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 38.8841972 + posY: 0.6809176 + posZ: 54.80952 + rotX: 359.984833 + rotY: 269.999878 + rotZ: 359.923218 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 209916 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2099': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 16f918 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Backstab + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 39.02483 + posY: 0.6865918 + posZ: 55.0874863 + rotX: -7.752332e-06 + rotY: 269.981323 + rotZ: 359.991943 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 209802 + 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/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 566a69 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Opportunist + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 38.409977 + posY: 0.6928472 + posZ: 55.59584 + rotX: -4.717433e-06 + rotY: 269.997955 + rotZ: 359.991943 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 210023 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2100': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: a1de5b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Hard Knocks + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 38.9123 + posY: 0.650370836 + posZ: 54.6618958 + rotX: -6.066462e-06 + rotY: 270.0 + rotZ: 359.991943 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 210031 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2100': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: f96538 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Leo de Luca + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 38.5766754 + posY: 0.6600137 + posZ: 54.95686 + rotX: -5.54535973e-06 + rotY: 270.0 + rotZ: 359.991943 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 210025 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2100': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 3e5c27 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Pickpocketing + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 38.6867752 + posY: 0.662507355 + posZ: 55.33483 + rotX: 1.29494071 + rotY: 269.9643 + rotZ: 357.947449 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 210028 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2100': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 784dd5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: .41 Derringer + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 38.4932671 + posY: 0.6796236 + posZ: 55.2045746 + rotX: -0.003282848 + rotY: 270.000061 + rotZ: 0.00753150927 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 209912 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2099': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 3a8476 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Elusive + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 39.13775 + posY: 0.6889653 + posZ: 55.46608 + rotX: -6.76307127e-06 + rotY: 269.981232 + rotZ: 359.991943 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 209913 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2099': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: d1decc + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Sneak Attack + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 38.6045647 + posY: 0.6986025 + posZ: 55.62884 + rotX: -7.619763e-06 + rotY: 269.981323 + rotZ: 359.991943 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 209909 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2099': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 3c8a29 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Think on Your Feet + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 39.2509 + posY: 0.702979147 + posZ: 54.6799622 + rotX: 0.000194730426 + rotY: 269.981262 + rotZ: 359.993744 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 50ab5f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Blackjack + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 6.111042 + posY: 0.71050787 + posZ: 55.7683754 + rotX: -8.152288e-05 + rotY: 269.970642 + rotZ: 359.987335 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 4150ec + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Overpower + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 69.4516 + posY: 0.5315596 + posZ: 48.1887474 + rotX: 0.00673823664 + rotY: 270.0017 + rotZ: 359.994019 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: bbbae1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Overpower + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 69.45159 + posY: 0.6772686 + posZ: 48.18876 + rotX: -0.00307355472 + rotY: 270.0017 + rotZ: 359.989777 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 55e550 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Manual Dexterity + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 70.19457 + posY: 0.6956171 + posZ: 47.98966 + rotX: -5.05302251e-06 + rotY: 270.001648 + rotZ: 359.991943 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: ca6036 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Manual Dexterity + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 70.19457 + posY: 0.6819439 + posZ: 47.9896622 + rotX: -5.05302251e-06 + rotY: 270.001648 + rotZ: 359.991943 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: b3868f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dynamite Blast + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 20.0430336 + posY: 0.531334937 + posZ: 47.68568 + rotX: 0.01956569 + rotY: 270.019684 + rotZ: 0.00206004153 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: fad93a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Vicious Blow + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 19.87901 + posY: 0.67105794 + posZ: 47.95969 + rotX: 0.909217 + rotY: 269.9532 + rotZ: 358.467438 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 9d9233 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Guard Dog + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 19.7819557 + posY: 0.695648 + posZ: 47.77201 + rotX: -8.68573e-06 + rotY: 269.970581 + rotZ: 359.991943 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 95eee5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Teamwork + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 69.31656 + posY: 0.6919506 + posZ: 48.41887 + rotX: -0.000163215431 + rotY: 270.00235 + rotZ: 359.988678 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231109 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2311': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: a6d45d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Searching for Izzie + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 27.3170757 + posY: 0.8018356 + posZ: -54.81543 + rotX: 0.002300905 + rotY: 269.9834 + rotZ: 359.9819 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231008 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2310': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: '804406' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '*Jenny''s Twin .45s' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 27.1251774 + posY: 0.8094471 + posZ: -54.3455238 + rotX: -0.0007145752 + rotY: 270.007233 + rotZ: 359.990662 + 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 + UniqueBack: false + '2098': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '2099': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '2100': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + 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 + UniqueBack: false + '2310': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '2311': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 209609 +- 209612 +- 209612 +- 209609 +- 209615 +- 209615 +- 209801 +- 209801 +- 210020 +- 210020 +- 210021 +- 210022 +- 209916 +- 209802 +- 210023 +- 210031 +- 210025 +- 210028 +- 209912 +- 209913 +- 209909 +- 226321 +- 209602 +- 209602 +- 209604 +- 209604 +- 226319 +- 226302 +- 226326 +- 226306 +- 231109 +- 231008 +Description: '' +GMNotes: '' +GUID: 07d556 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 36.0658646 + posY: 2.653374 + posZ: -54.7145157 + rotX: -1.03311613e-05 + rotY: 269.999969 + rotZ: 179.995453 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy 5889dd/Custom_Model_Bag starter deck & cards ae39ed.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy 5889dd/Custom_Model_Bag starter deck & cards ae39ed.yaml new file mode 100644 index 000000000..8bdf2f894 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy 5889dd/Custom_Model_Bag starter deck & cards ae39ed.yaml @@ -0,0 +1,59 @@ +Autoraise: true +ColorDiffuse: + b: 0.02148666 + g: 0.00100758043 + r: 0.02148666 +ContainedObjects: +- !include 'Custom_Model_Bag starter deck & cards ae39ed/Card Rex''s Curse 033a35.yaml' +- !include 'Custom_Model_Bag starter deck & cards ae39ed/Card Search for the Truth + 4156cf.yaml' +- !include 'Custom_Model_Bag starter deck & cards ae39ed/Deck 1d6d39.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: '' +GMNotes: '' +GUID: ae39ed +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +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.3000984 + posY: 1.27340829 + posZ: -61.241 + rotX: 359.979156 + rotY: 90.0 + rotZ: 359.983215 + scaleX: 2.0 + scaleY: 2.0 + scaleZ: 2.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy 5889dd/Custom_Model_Bag starter deck & cards ae39ed/Card Rex's Curse 033a35.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy 5889dd/Custom_Model_Bag starter deck & cards ae39ed/Card Rex's Curse 033a35.yaml new file mode 100644 index 000000000..b0a8bc976 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy 5889dd/Custom_Model_Bag starter deck & cards ae39ed/Card Rex's Curse 033a35.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 231407 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2314': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 033a35 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Rex's Curse +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 37.37691 + posY: 2.5325942 + posZ: -68.45738 + rotX: 359.523438 + rotY: 270.0065 + rotZ: 359.992371 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy 5889dd/Custom_Model_Bag starter deck & cards ae39ed/Card Search for the Truth 4156cf.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy 5889dd/Custom_Model_Bag starter deck & cards ae39ed/Card Search for the Truth 4156cf.yaml new file mode 100644 index 000000000..cb9f70035 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy 5889dd/Custom_Model_Bag starter deck & cards ae39ed/Card Search for the Truth 4156cf.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 231506 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2315': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 4156cf +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Search for the Truth +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 37.4414749 + posY: 2.53134012 + posZ: -68.85549 + rotX: 359.266937 + rotY: 270.000824 + rotZ: 359.992676 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy 5889dd/Custom_Model_Bag starter deck & cards ae39ed/Deck 1d6d39.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy 5889dd/Custom_Model_Bag starter deck & cards ae39ed/Deck 1d6d39.yaml new file mode 100644 index 000000000..ced4758c8 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy 5889dd/Custom_Model_Bag starter deck & cards ae39ed/Deck 1d6d39.yaml @@ -0,0 +1,1461 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: '789971' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Emergency Cache + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 90.54532 + posY: 0.529666841 + posZ: -27.199995 + rotX: 0.032413993 + rotY: 270.047 + rotZ: 0.008115746 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 209612 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 465a09 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Knife + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 90.2402649 + posY: 0.530131638 + posZ: -26.1468048 + rotX: 0.00624390831 + rotY: 269.989 + rotZ: 359.985229 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 209612 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: edb657 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Knife + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 90.54868 + posY: 0.6688948 + posZ: -26.5457611 + rotX: 358.972443 + rotY: 269.963318 + rotZ: 1.71914339 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 9fbdf0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Emergency Cache + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 89.808 + posY: 0.692299962 + posZ: -25.89844 + rotX: -0.00478493841 + rotY: 269.994 + rotZ: 359.9919 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 209615 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 002e8e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Flashlight + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 89.98421 + posY: 0.6791619 + posZ: -26.9712 + rotX: -0.000753245957 + rotY: 269.9747 + rotZ: 359.99173 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 209615 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 195ce3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Flashlight + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 89.9842 + posY: 0.681073666 + posZ: -26.9712 + rotX: -0.0002585446 + rotY: 269.9747 + rotZ: 359.991669 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: ee0f12 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Manual Dexterity + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 69.4658356 + posY: 0.531436145 + posZ: 50.09208 + rotX: -4.34932645e-06 + rotY: 270.001617 + rotZ: 359.991943 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: '582088' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Manual Dexterity + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 69.4658356 + posY: 0.67805177 + posZ: 50.09208 + rotX: -4.97048e-06 + rotY: 270.001648 + rotZ: 359.991943 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 7e6f6d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Perception + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 69.06473 + posY: 0.69524765 + posZ: 50.6192 + rotX: -5.24103643e-06 + rotY: 270.001648 + rotZ: 359.991943 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 9c3908 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Perception + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 69.06396 + posY: 0.67173 + posZ: 50.6206169 + rotX: 0.8789191 + rotY: 269.988373 + rotZ: 358.528778 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 210022 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2100': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 91b398 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Burglary + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 22.4117146 + posY: 0.530721068 + posZ: 53.63748 + rotX: 0.01008265 + rotY: 270.000519 + rotZ: -0.00535393553 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 209909 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2099': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: '990731' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Think on Your Feet + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 22.8993912 + posY: 0.6772402 + posZ: 53.8992081 + rotX: 0.04125497 + rotY: 269.982483 + rotZ: 0.1137158 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 210025 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2100': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: d4e467 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Pickpocketing + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 22.3099957 + posY: 0.6948582 + posZ: 53.3921127 + rotX: -5.415293e-06 + rotY: 270.0 + rotZ: 359.991943 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 209912 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2099': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 3c8371 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Elusive + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 22.8228779 + posY: 0.676206768 + posZ: 53.7024536 + rotX: 359.02948 + rotY: 269.999 + rotZ: 358.6875 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 209802 + 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/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 9a165f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Opportunist + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 22.3607273 + posY: 0.676856041 + posZ: 53.61113 + rotX: 0.05421729 + rotY: 269.9999 + rotZ: 0.179822534 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 7b66fc + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Shortcut + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 7.791268 + posY: 0.6759788 + posZ: 54.2402344 + rotX: 358.9338 + rotY: 270.030731 + rotZ: 358.548157 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 59308b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Shortcut + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 7.79023647 + posY: 0.686714 + posZ: 54.23886 + rotX: -3.97830172e-06 + rotY: 270.010254 + rotZ: 359.991943 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 230407 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 5a623f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Seeking Answers + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 7.336236 + posY: 0.6930088 + posZ: 54.4659042 + rotX: -4.149223e-06 + rotY: 270.0101 + rotZ: 359.991943 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 230407 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 7a3a78 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Seeking Answers + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 7.33622837 + posY: 0.6497088 + posZ: 54.465847 + rotX: -0.005657269 + rotY: 270.0101 + rotZ: 0.03920118 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: b5570a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Deduction + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 7.624636 + posY: 0.6601047 + posZ: 54.3512039 + rotX: -0.000106248961 + rotY: 269.982361 + rotZ: 359.991974 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 230413 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 946fd6 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Working a Hunch + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 7.50159264 + posY: 0.6660488 + posZ: 53.8082924 + rotX: 359.044281 + rotY: 269.9941 + rotZ: 1.612579 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 230408 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 02f93a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Mind over Matter + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 6.64316034 + posY: 0.679741263 + posZ: 54.5154343 + rotX: 0.00102614111 + rotY: 270.010223 + rotZ: -0.0025985213 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 41edd4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Magnifying Glass + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 6.88673925 + posY: 0.6891734 + posZ: 54.00645 + rotX: -6.34994149e-06 + rotY: 269.986267 + rotZ: 359.991943 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 230425 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: c02e4a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Medical Texts + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 7.914811 + posY: 0.6988267 + posZ: 54.0538 + rotX: -6.770575e-06 + rotY: 269.986267 + rotZ: 359.991943 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 230431 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: a9036f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Old Book of Lore + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 7.5008173 + posY: 0.703042269 + posZ: 54.099968 + rotX: 0.00144180609 + rotY: 269.986176 + rotZ: 359.9928 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 230434 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 2ad895 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dr. Milian Christopher + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 7.32855558 + posY: 0.7106544 + posZ: 54.01035 + rotX: -0.000440370233 + rotY: 269.989258 + rotZ: -0.00307088858 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 230426 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 89d294 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Research Librarian + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 7.144302 + posY: 0.7183921 + posZ: 54.39771 + rotX: 5.74658879e-05 + rotY: 269.986328 + rotZ: 359.987823 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 230427 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: b084ac + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Laboratory Assistant + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 7.32855034 + posY: 0.7260917 + posZ: 54.1256332 + rotX: -0.000838443229 + rotY: 269.986725 + rotZ: 359.991516 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 636a7b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Hyperawareness + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 7.098458 + posY: 0.7337763 + posZ: 54.5898743 + rotX: 0.000499868649 + rotY: 269.986267 + rotZ: 359.98172 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 230404 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: c354d5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Barricade + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 7.2825346 + posY: 0.7415573 + posZ: 53.9730263 + rotX: -0.000236534281 + rotY: 270.010223 + rotZ: -0.00204236875 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231407 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2314': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 57458d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Rex's Curse + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 26.5643158 + posY: 0.803281963 + posZ: -67.96144 + rotX: -0.00025493314 + rotY: 270.006531 + rotZ: 359.993317 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231506 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2315': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: a3880e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Search for the Truth + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 25.8409748 + posY: 0.811014831 + posZ: -68.0042648 + rotX: -0.00063572434 + rotY: 270.000977 + rotZ: 359.9933 + 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 + UniqueBack: false + '2098': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '2099': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '2100': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + 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 + UniqueBack: false + '2314': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '2315': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 209609 +- 209612 +- 209612 +- 209609 +- 209615 +- 209615 +- 209604 +- 209604 +- 209606 +- 209606 +- 210022 +- 209909 +- 210025 +- 209912 +- 209802 +- 230405 +- 230405 +- 230407 +- 230407 +- 230402 +- 230413 +- 230408 +- 230421 +- 230425 +- 230431 +- 230434 +- 230426 +- 230427 +- 230424 +- 230404 +- 231407 +- 231506 +Description: '' +GMNotes: '' +GUID: 1d6d39 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 35.716095 + posY: 2.65536356 + posZ: -69.10078 + rotX: 0.000238523018 + rotY: 270.000061 + rotZ: 179.991882 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy 5889dd/Custom_Model_Bag starter deck & cards edb898.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy 5889dd/Custom_Model_Bag starter deck & cards edb898.yaml new file mode 100644 index 000000000..bd639fca6 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy 5889dd/Custom_Model_Bag starter deck & cards edb898.yaml @@ -0,0 +1,59 @@ +Autoraise: true +ColorDiffuse: + b: 0.02148666 + g: 0.00100758043 + r: 0.02148666 +ContainedObjects: +- !include 'Custom_Model_Bag starter deck & cards edb898/Card Duke 876557.yaml' +- !include 'Custom_Model_Bag starter deck & cards edb898/Card Wracked by Nightmares + 97781f.yaml' +- !include 'Custom_Model_Bag starter deck & cards edb898/Deck ca3292.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: '' +GMNotes: '' +GUID: edb898 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +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.26881111 + posZ: -76.9456 + rotX: 359.979156 + rotY: 90.000145 + rotZ: 359.983215 + scaleX: 2.0 + scaleY: 2.0 + scaleZ: 2.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy 5889dd/Custom_Model_Bag starter deck & cards edb898/Card Duke 876557.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy 5889dd/Custom_Model_Bag starter deck & cards edb898/Card Duke 876557.yaml new file mode 100644 index 000000000..7ad46eace --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy 5889dd/Custom_Model_Bag starter deck & cards edb898/Card Duke 876557.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 230812 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2308': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: '876557' +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '*Duke' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 35.9214973 + posY: 2.53020048 + posZ: -46.57166 + rotX: 0.000278355234 + rotY: 269.998962 + rotZ: 359.991852 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy 5889dd/Custom_Model_Bag starter deck & cards edb898/Card Wracked by Nightmares 97781f.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy 5889dd/Custom_Model_Bag starter deck & cards edb898/Card Wracked by Nightmares 97781f.yaml new file mode 100644 index 000000000..d77c4e4d3 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy 5889dd/Custom_Model_Bag starter deck & cards edb898/Card Wracked by Nightmares 97781f.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 230913 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2309': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 97781f +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Wracked by Nightmares +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 36.0581245 + posY: 2.530302 + posZ: -47.35899 + rotX: -6.337852e-06 + rotY: 269.994263 + rotZ: 359.9919 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy 5889dd/Custom_Model_Bag starter deck & cards edb898/Deck ca3292.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy 5889dd/Custom_Model_Bag starter deck & cards edb898/Deck ca3292.yaml new file mode 100644 index 000000000..f672f6dce --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy 5889dd/Custom_Model_Bag starter deck & cards edb898/Deck ca3292.yaml @@ -0,0 +1,1447 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: '876557' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Duke + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.36161 + posY: 1.79200029 + posZ: -72.2787552 + rotX: 0.0163962133 + rotY: 269.999939 + rotZ: 180.013641 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 368421 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 8cc0a6 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Magnifying Glass + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.3627625 + posY: 2.66723323 + posZ: -72.27231 + rotX: 0.0208230056 + rotY: 270.002655 + rotZ: 180.016815 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 48e103 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Baseball Bat + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.3627625 + posY: 2.66723323 + posZ: -72.27231 + rotX: 0.0208230056 + rotY: 270.002655 + rotZ: 180.016815 + 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: + '3685': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 0ab3f1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Knife + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.3627625 + posY: 2.66723323 + posZ: -72.27231 + rotX: 0.0208230056 + rotY: 270.002655 + rotZ: 180.016815 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: ce0dd5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Lucky! + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.3627625 + posY: 2.66723323 + posZ: -72.27231 + rotX: 0.0208230056 + rotY: 270.002655 + rotZ: 180.016815 + 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: + '3688': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Big Man on Campus + GMNotes: '' + GUID: ffdeb5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Peter Sylvestre + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.3627625 + posY: 2.66723323 + posZ: -72.27231 + rotX: 0.0208230056 + rotY: 270.002655 + rotZ: 180.016815 + 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: + '3688': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: e8ea95 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Cunning Distraction + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.3627625 + posY: 2.66723323 + posZ: -72.27231 + rotX: 0.0208230056 + rotY: 270.002655 + rotZ: 180.016815 + 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: + '3685': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: c6ac19 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Perception + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.3627625 + posY: 2.71723318 + posZ: -72.27231 + rotX: 0.0208230074 + rotY: 270.002655 + rotZ: 180.016815 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 078efb + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Survival Instinct + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.3627625 + posY: 2.66723323 + posZ: -72.27231 + rotX: 0.0208230056 + rotY: 270.002655 + rotZ: 180.016815 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 97781f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Wracked by Nightmares + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.3627625 + posY: 2.66723323 + posZ: -72.27231 + rotX: 0.0208230056 + rotY: 270.002655 + rotZ: 180.016815 + 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: + '3685': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: acb83a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Unexpected Courage + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.3627625 + posY: 2.71723318 + posZ: -72.27231 + rotX: 0.0208230074 + rotY: 270.002655 + rotZ: 180.016815 + 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: + '3684': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: eb6165 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Working a Hunch + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.3627625 + posY: 2.66723323 + posZ: -72.27231 + rotX: 0.0208230056 + rotY: 270.002655 + rotZ: 180.016815 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 1b76c9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Scavenging + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.3627625 + posY: 2.66723323 + posZ: -72.27231 + rotX: 0.0208230056 + rotY: 270.002655 + rotZ: 180.016815 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: f474b1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Stray Cat + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.3627625 + posY: 2.66723323 + posZ: -72.27231 + rotX: 0.0208230056 + rotY: 270.002655 + rotZ: 180.016815 + 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: + '3688': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 9da37c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Fire Axe + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.3627625 + posY: 2.66723323 + posZ: -72.27231 + rotX: 0.0208230056 + rotY: 270.002655 + rotZ: 180.016815 + 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: + '3688': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 2c2d9a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Bait and Switch + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.3627625 + posY: 2.71723318 + posZ: -72.27231 + rotX: 0.0208230074 + rotY: 270.002655 + rotZ: 180.016815 + 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: + '3685': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 510c0d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Emergency Cache + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.3627625 + posY: 2.66723323 + posZ: -72.27231 + rotX: 0.0208230056 + rotY: 270.002655 + rotZ: 180.016815 + 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: + '3685': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: bb1cce + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Flashlight + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.3627625 + posY: 2.66723323 + posZ: -72.27231 + rotX: 0.0208230056 + rotY: 270.002655 + rotZ: 180.016815 + 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: + '3684': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: b265c4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Deduction + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.3627625 + posY: 2.66723323 + posZ: -72.27231 + rotX: 0.0208230056 + rotY: 270.002655 + rotZ: 180.016815 + 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: + '3688': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 9da37c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Fire Axe + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.3627625 + posY: 2.71723318 + posZ: -72.27231 + rotX: 0.0208230074 + rotY: 270.002655 + rotZ: 180.016815 + 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: + '3684': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 063fd8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Old Book of Lore + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.3627625 + posY: 2.66723323 + posZ: -72.27231 + rotX: 0.0208230056 + rotY: 270.002655 + rotZ: 180.016815 + 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: + '3688': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 2c2d9a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Bait and Switch + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.3627625 + posY: 2.66723323 + posZ: -72.27231 + rotX: 0.0208230056 + rotY: 270.002655 + rotZ: 180.016815 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: f34090 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Rabbit's Foot + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.3627625 + posY: 2.66723323 + posZ: -72.27231 + rotX: 0.0208230056 + rotY: 270.002655 + rotZ: 180.016815 + 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: + '3685': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 510c0d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Emergency Cache + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.3627625 + posY: 2.71723318 + posZ: -72.27231 + rotX: 0.0208230074 + rotY: 270.002655 + rotZ: 180.016815 + 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: + '3684': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: c18ebe + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Laboratory Assistant + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.3627625 + posY: 2.66723323 + posZ: -72.27231 + rotX: 0.0208230056 + rotY: 270.002655 + rotZ: 180.016815 + 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: + '3685': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: c6ac19 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Perception + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.3627625 + posY: 2.66723323 + posZ: -72.27231 + rotX: 0.0208230056 + rotY: 270.002655 + rotZ: 180.016815 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 88d3c0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '"Look what I found!"' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.3627625 + posY: 2.66723323 + posZ: -72.27231 + rotX: 0.0208230056 + rotY: 270.002655 + rotZ: 180.016815 + 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: + '3685': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 0ab3f1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Knife + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.3627625 + posY: 2.71723318 + posZ: -72.27231 + rotX: 0.0208230074 + rotY: 270.002655 + rotZ: 180.016815 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 593deb + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Leather Coat + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.3627625 + posY: 2.66723323 + posZ: -72.27231 + rotX: 0.0208230056 + rotY: 270.002655 + rotZ: 180.016815 + 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: + '3685': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: acb83a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Unexpected Courage + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.3627625 + posY: 2.66723323 + posZ: -72.27231 + rotX: 0.0208230056 + rotY: 270.002655 + rotZ: 180.016815 + 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: + '3685': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: bb1cce + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Flashlight + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.3627625 + posY: 2.71723318 + posZ: -72.27231 + rotX: 0.0208230074 + rotY: 270.002655 + rotZ: 180.016815 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: fc9e1b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dig Deep + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.3627625 + posY: 2.66723323 + posZ: -72.27231 + rotX: 0.0208230056 + rotY: 270.002655 + rotZ: 180.016815 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '3684': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956220005/42E220A3221D2BFA22F1B3A71EEE346A8B0AAD77/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '3685': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '3688': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '3710': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '3711': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 371112 +- 368421 +- 368830 +- 368512 +- 368810 +- 368832 +- 368819 +- 368506 +- 368800 +- 371013 +- 368508 +- 368413 +- 368822 +- 368824 +- 368825 +- 368809 +- 368509 +- 368515 +- 368402 +- 368825 +- 368431 +- 368809 +- 368823 +- 368509 +- 368427 +- 368506 +- 368816 +- 368512 +- 368820 +- 368508 +- 368515 +- 368831 +Description: '' +GMNotes: '' +GUID: ca3292 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 71.91427 + posY: 3.549799 + posZ: -52.95886 + rotX: 0.02107856 + rotY: 270.002045 + rotZ: 180.016754 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy 5889dd/Custom_Model_Bag starter deck & cards f8af18.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy 5889dd/Custom_Model_Bag starter deck & cards f8af18.yaml new file mode 100644 index 000000000..7223a2e10 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy 5889dd/Custom_Model_Bag starter deck & cards f8af18.yaml @@ -0,0 +1,58 @@ +Autoraise: true +ColorDiffuse: + b: 0.02148666 + g: 0.00100758043 + r: 0.02148666 +ContainedObjects: +- !include 'Custom_Model_Bag starter deck & cards f8af18/Card Zoey''s Cross 66d810.yaml' +- !include 'Custom_Model_Bag starter deck & cards f8af18/Card Smite the Wicked e68658.yaml' +- !include 'Custom_Model_Bag starter deck & cards f8af18/Deck 348239.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: '' +GMNotes: '' +GUID: f8af18 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +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.27569282 + posZ: -53.4368 + rotX: 359.979156 + rotY: 90.000145 + rotZ: 359.983215 + scaleX: 2.0 + scaleY: 2.0 + scaleZ: 2.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy 5889dd/Custom_Model_Bag starter deck & cards f8af18/Card Smite the Wicked e68658.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy 5889dd/Custom_Model_Bag starter deck & cards f8af18/Card Smite the Wicked e68658.yaml new file mode 100644 index 000000000..b6db32708 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy 5889dd/Custom_Model_Bag starter deck & cards f8af18/Card Smite the Wicked e68658.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 231305 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2313': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: e68658 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Smite the Wicked +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 35.4310265 + posY: 2.53235865 + posZ: -61.9914627 + rotX: 6.746104e-05 + rotY: 269.968628 + rotZ: 359.991974 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy 5889dd/Custom_Model_Bag starter deck & cards f8af18/Card Zoey's Cross 66d810.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy 5889dd/Custom_Model_Bag starter deck & cards f8af18/Card Zoey's Cross 66d810.yaml new file mode 100644 index 000000000..f7d28e1e4 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy 5889dd/Custom_Model_Bag starter deck & cards f8af18/Card Zoey's Cross 66d810.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 231204 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2312': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 66d810 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '*Zoey''s Cross' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 35.4164124 + posY: 2.53225017 + posZ: -61.12536 + rotX: 0.000202030031 + rotY: 269.996368 + rotZ: 359.9919 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy 5889dd/Custom_Model_Bag starter deck & cards f8af18/Deck 348239.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy 5889dd/Custom_Model_Bag starter deck & cards f8af18/Deck 348239.yaml new file mode 100644 index 000000000..71c3b6153 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy 5889dd/Custom_Model_Bag starter deck & cards f8af18/Deck 348239.yaml @@ -0,0 +1,1447 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: '789971' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Emergency Cache + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 90.54532 + posY: 0.529666841 + posZ: -27.199995 + rotX: 0.032413993 + rotY: 270.047 + rotZ: 0.008115746 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 209612 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 465a09 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Knife + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 90.2402649 + posY: 0.530131638 + posZ: -26.1468048 + rotX: 0.00624390831 + rotY: 269.989 + rotZ: 359.985229 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 209612 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: edb657 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Knife + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 90.54868 + posY: 0.6688948 + posZ: -26.5457611 + rotX: 358.972443 + rotY: 269.963318 + rotZ: 1.71914339 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 9fbdf0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Emergency Cache + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 89.808 + posY: 0.692299962 + posZ: -25.89844 + rotX: -0.00478493841 + rotY: 269.994 + rotZ: 359.9919 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 209615 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 002e8e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Flashlight + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 89.98421 + posY: 0.6791619 + posZ: -26.9712 + rotX: -0.000753245957 + rotY: 269.9747 + rotZ: 359.99173 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 209615 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 195ce3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Flashlight + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 89.9842 + posY: 0.681073666 + posZ: -26.9712 + rotX: -0.0002585446 + rotY: 269.9747 + rotZ: 359.991669 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 2e921f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Guts + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 62.6692924 + posY: 0.533811569 + posZ: 3.92406321 + rotX: -0.00486893067 + rotY: 270.016846 + rotZ: 359.989 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 32e4f2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Guts + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 62.2525978 + posY: 0.676911533 + posZ: 3.87757063 + rotX: 0.674203455 + rotY: 270.031921 + rotZ: 0.925722659 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 4f0327 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Overpower + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 62.76019 + posY: 0.697664261 + posZ: 4.097115 + rotX: -0.00445567863 + rotY: 270.015076 + rotZ: 359.991943 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 8ccc47 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Overpower + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 62.5756645 + posY: 0.682459831 + posZ: 4.07333565 + rotX: 0.378100961 + rotY: 270.0063 + rotZ: 359.373138 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 209616 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 18c2ed + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Kukri + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 62.01582 + posY: 0.68254447 + posZ: 4.17368937 + rotX: -0.004830384 + rotY: 270.0147 + rotZ: -0.0013497792 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 8b58c1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Clarity of Mind + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -28.948307 + posY: 0.5303883 + posZ: 56.22382 + rotX: 0.00579433 + rotY: 269.983 + rotZ: 0.0148153305 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 8c6510 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Holy Rosary + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -29.17766 + posY: 0.669303834 + posZ: 56.0636749 + rotX: -0.00106165092 + rotY: 269.88385 + rotZ: 0.07632548 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 0dc0c3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Rite of Seeking + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -29.1235714 + posY: 0.6923764 + posZ: 56.56926 + rotX: 3.42076419e-05 + rotY: 270.016479 + rotZ: 359.985626 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 95ee0d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Blinding Light + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -28.2404022 + posY: 0.6635826 + posZ: 56.48246 + rotX: 358.034424 + rotY: 270.024048 + rotZ: 357.486237 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 25b414 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Fearless + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -28.9919071 + posY: 0.677736938 + posZ: 56.32418 + rotX: 359.989563 + rotY: 269.971 + rotZ: 0.107211471 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: cfa8ad + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Physical Training + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 7.42449141 + posY: 0.52931577 + posZ: 64.92939 + rotX: 0.00176282017 + rotY: 269.9706 + rotZ: 359.992523 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: b687a3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dynamite Blast + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 7.474086 + posY: 0.6767871 + posZ: 64.92973 + rotX: 0.0132315876 + rotY: 270.025269 + rotZ: 359.9908 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 6c2b67 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dodge + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 7.47412157 + posY: 0.6932223 + posZ: 65.0461044 + rotX: -1.81176767e-06 + rotY: 270.0254 + rotZ: 359.991943 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 33b118 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Guard Dog + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 7.251121 + posY: 0.6756512 + posZ: 64.74345 + rotX: 0.74576354 + rotY: 269.986816 + rotZ: 1.15650177 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 055518 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Beat Cop + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 6.883775 + posY: 0.6691041 + posZ: 65.07091 + rotX: 1.40455806 + rotY: 269.930847 + rotZ: 358.183838 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 9fd6a8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: First Aid + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 7.201645 + posY: 0.6722646 + posZ: 65.25656 + rotX: 1.18846869 + rotY: 269.934326 + rotZ: 358.0914 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: f10980 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Taunt + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 7.54853535 + posY: 0.6851728 + posZ: 65.20928 + rotX: -1.76215883e-06 + rotY: 270.025421 + rotZ: 359.991943 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: '291523' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Taunt + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 7.54853535 + posY: 0.691499531 + posZ: 65.20928 + rotX: -1.76215883e-06 + rotY: 270.025421 + rotZ: 359.991943 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 8604a7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Teamwork + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 7.42458773 + posY: 0.648856163 + posZ: 65.46479 + rotX: -1.53787653e-06 + rotY: 270.0254 + rotZ: 359.991943 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 2ea656 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Evidence! + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 7.498881 + posY: 0.6585893 + posZ: 65.11584 + rotX: -1.4870169e-06 + rotY: 270.0254 + rotZ: 359.991943 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 4bde78 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: .45 Automatic + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 7.08011436 + posY: 0.6706858 + posZ: 64.62959 + rotX: -0.00162184983 + rotY: 269.97052 + rotZ: 359.967377 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 6f5b34 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Blackjack + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 6.93367767 + posY: 0.6783502 + posZ: 65.13826 + rotX: 0.000742953154 + rotY: 269.970642 + rotZ: 0.0138272932 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: c7d92b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Machete + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 7.548534 + posY: 0.687625647 + posZ: 65.02275 + rotX: -9.186821e-06 + rotY: 269.970551 + rotZ: 359.991943 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 8a90bf + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Vicious Blow + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 7.87325954 + posY: 0.6972494 + posZ: 65.28056 + rotX: -7.78068e-06 + rotY: 269.9809 + rotZ: 359.991943 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231204 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2312': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 753e4a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '*Zoey''s Cross' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 27.8780651 + posY: 0.80753 + posZ: -61.7492256 + rotX: -8.927604e-05 + rotY: 269.996368 + rotZ: 359.991821 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231305 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2313': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: e034d3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Smite the Wicked + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 27.741188 + posY: 0.815258 + posZ: -61.7533569 + rotX: -8.739215e-05 + rotY: 269.9687 + rotZ: 359.991821 + 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 + 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 + 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 + UniqueBack: false + '2312': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '2313': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 209609 +- 209612 +- 209612 +- 209609 +- 209615 +- 209615 +- 209600 +- 209600 +- 209602 +- 209602 +- 209616 +- 230322 +- 230323 +- 230329 +- 230311 +- 230303 +- 226323 +- 226319 +- 226313 +- 226326 +- 226331 +- 226324 +- 226308 +- 226308 +- 226306 +- 226309 +- 226330 +- 226321 +- 226327 +- 226302 +- 231204 +- 231305 +Description: '' +GMNotes: '' +GUID: '348239' +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 35.3148155 + posY: 2.65445924 + posZ: -61.09476 + rotX: 359.984222 + rotY: 270.00592 + rotZ: 179.998642 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy 5889dd/Deck Jenny Barnes 0a9dcf.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy 5889dd/Deck Jenny Barnes 0a9dcf.yaml new file mode 100644 index 000000000..56eb5515b --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy 5889dd/Deck Jenny Barnes 0a9dcf.yaml @@ -0,0 +1,136 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 273410 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2664': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1011562618093846975/4726098952C64103F2C211D202FFDD40D9D988BB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869050066760/0DE2BD4589CC8C2F3D26C2900A17ED7A6483062F/ + NumHeight: 3 + NumWidth: 7 + UniqueBack: true + Description: Promo version + GMNotes: '' + GUID: f4e909 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Jenny Barnes + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 79.29982 + posY: 1.37312663 + posZ: -60.869606 + rotX: 0.0185866337 + rotY: 270.024078 + rotZ: -0.005372686 + scaleX: 0.6 + scaleY: 1.0 + scaleZ: 0.6 + XmlUI: '' +- Autoraise: true + CardID: 259007 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2590': + BackIsHidden: true + BackURL: https://i.imgur.com/vB84qMp.jpg + FaceURL: https://i.imgur.com/WPYBga4.jpg + NumHeight: 3 + NumWidth: 7 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 48b174 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Jenny Barnes + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 79.21768 + posY: 1.513396 + posZ: -60.91368 + rotX: 0.00445781136 + rotY: 270.0588 + rotZ: 359.96817 + scaleX: 0.6 + scaleY: 1.0 + scaleZ: 0.6 + XmlUI: '' +CustomDeck: + '2590': + BackIsHidden: true + BackURL: https://i.imgur.com/vB84qMp.jpg + FaceURL: https://i.imgur.com/WPYBga4.jpg + NumHeight: 3 + NumWidth: 7 + UniqueBack: true + '2734': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1011562618093846975/4726098952C64103F2C211D202FFDD40D9D988BB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869050066760/0DE2BD4589CC8C2F3D26C2900A17ED7A6483062F/ + NumHeight: 3 + NumWidth: 7 + UniqueBack: true +DeckIDs: +- 273410 +- 259007 +Description: '' +GMNotes: '' +GUID: 0a9dcf +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Jenny Barnes +SidewaysCard: false +Snap: false +Sticky: true +Tooltip: true +Transform: + posX: -19.2959 + posY: 1.37721658 + posZ: -69.0607 + rotX: 0.0208038054 + rotY: 270.023376 + rotZ: 0.0167786833 + scaleX: 0.6 + scaleY: 1.0 + scaleZ: 0.6 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy 5889dd/Deck Jenny Barnes 523bbe.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy 5889dd/Deck Jenny Barnes 523bbe.yaml new file mode 100644 index 000000000..e7805b3ff --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy 5889dd/Deck Jenny Barnes 523bbe.yaml @@ -0,0 +1,136 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 273631 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2736': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1011562618093845464/80687C9319FA2015F3D9F7CBEB4C55FBF045B27D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1011562618093845971/A678BD374EC4DE672206B5EF7EB57DC885BC839C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: The Dilettante + GMNotes: '' + GUID: f8d3f7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Jenny Barnes (promo version) + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 76.11984 + posY: 1.37191784 + posZ: -60.9057465 + rotX: 0.0173443 + rotY: 180.005753 + rotZ: 359.975616 + scaleX: 1.1 + scaleY: 1.0 + scaleZ: 1.1 + XmlUI: '' +- Autoraise: true + CardID: 273707 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2737': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1011562618093845464/80687C9319FA2015F3D9F7CBEB4C55FBF045B27D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1011562618093845971/A678BD374EC4DE672206B5EF7EB57DC885BC839C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: The Dilettante + GMNotes: '' + GUID: c6cc82 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Jenny Barnes + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 76.11998 + posY: 1.52142489 + posZ: -60.9000244 + rotX: 0.008444563 + rotY: 180.005646 + rotZ: 359.9749 + scaleX: 1.1 + scaleY: 1.0 + scaleZ: 1.1 + XmlUI: '' +CustomDeck: + '2736': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1011562618093845464/80687C9319FA2015F3D9F7CBEB4C55FBF045B27D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1011562618093845971/A678BD374EC4DE672206B5EF7EB57DC885BC839C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + '2737': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1011562618093845464/80687C9319FA2015F3D9F7CBEB4C55FBF045B27D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1011562618093845971/A678BD374EC4DE672206B5EF7EB57DC885BC839C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 273631 +- 273707 +Description: '' +GMNotes: '' +GUID: 523bbe +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Jenny Barnes +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -22.6157 + posY: 1.3760066 + posZ: -69.0756 + rotX: 0.0167737417 + rotY: 180.005737 + rotZ: 359.9792 + scaleX: 1.1 + scaleY: 1.0 + scaleZ: 1.1 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy df7121.ttslua b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121.ttslua new file mode 100644 index 000000000..402d5e04d --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121.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,5,6}, rotation={0,0,0}, height=500, width=1200, + font_size=350, 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 + 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) 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={1.5,5,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.2,5,6}, rotation={0,0,0}, height=500, width=1200, + font_size=350, color={0,0,0}, font_color={1,1,1} + }) + self.createButton({ + label="Reset", click_function="buttonClick_reset", function_owner=self, + position={-4,5,6}, rotation={0,0,0}, height=500, width=1000, + font_size=350, 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={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={-6,1,0}, rotation={0,90,0}, height=500, width=1200, +-- font_size=350, 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 \ No newline at end of file diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy df7121.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121.yaml new file mode 100644 index 000000000..a0a712f53 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121.yaml @@ -0,0 +1,70 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +ContainedObjects: +- !include 'Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 6 Where Doom + Awaits 022ddf.yaml' +- !include 'Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 4 Blood on + the Altar 30684d.yaml' +- !include 'Custom_Model_Bag The Dunwich Legacy df7121/Custom_Tile Dunwich Legacy + Campaign Log 3f6ab6.yaml' +- !include 'Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 1a Extracurricular + Activity 51c0d9.yaml' +- !include 'Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 7 Lost in + Time and Space 684060.yaml' +- !include 'Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 2 The Miskatonic + Museum 87adbf.yaml' +- !include 'Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 5 Undimensioned + and Unseen afe7ce.yaml' +- !include 'Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 3 The Essex + County Express d6e449.yaml' +- !include 'Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 1b The House + Always Wins e3aa5c.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/762723517667666249/B7EB11E1C48A63D3B8AC233FF2DF0BBAD74ECC6E/ + MaterialIndex: 3 + MeshURL: https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/core_h_MSH.obj + NormalURL: '' + TypeIndex: 6 +Description: '' +GMNotes: '' +GUID: df7121 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Model_Bag The Dunwich Legacy df7121.ttslua' +LuaScriptState: '{"ml":{"022ddf":{"lock":false,"pos":{"x":12.2506,"y":1.4582,"z":-21.3054},"rot":{"x":359.9201,"y":270.0059,"z":0.0169}},"30684d":{"lock":false,"pos":{"x":12.2504,"y":1.4633,"z":-3.9198},"rot":{"x":359.9201,"y":269.9969,"z":0.0169}},"3f6ab6":{"lock":false,"pos":{"x":-1.2999,"y":1.4754,"z":-26.7614},"rot":{"x":359.9201,"y":269.9921,"z":0.0169}},"51c0d9":{"lock":false,"pos":{"x":12.2521,"y":1.4735,"z":30.8264},"rot":{"x":359.9201,"y":270.0127,"z":0.0169}},"684060":{"lock":false,"pos":{"x":12.2503,"y":1.4557,"z":-30.0549},"rot":{"x":359.9201,"y":270.0261,"z":0.0168}},"87adbf":{"lock":false,"pos":{"x":12.2504,"y":1.4684,"z":13.4375},"rot":{"x":359.9201,"y":270.019,"z":0.0168}},"afe7ce":{"lock":false,"pos":{"x":12.2503,"y":1.4607,"z":-12.6661},"rot":{"x":359.9201,"y":270.0073,"z":0.0169}},"d6e449":{"lock":false,"pos":{"x":12.2503,"y":1.4658,"z":4.6878},"rot":{"x":359.9201,"y":270.0107,"z":0.0169}},"e3aa5c":{"lock":false,"pos":{"x":12.2507,"y":1.4709,"z":22.0769},"rot":{"x":359.9201,"y":269.9997,"z":0.0169}}}}' +MaterialIndex: -1 +MeshIndex: -1 +Name: Custom_Model_Bag +Nickname: The Dunwich Legacy +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 51.65295 + posY: 1.41376913 + posZ: 14.5000772 + rotX: 359.9201 + rotY: 270.01825 + rotZ: 0.0168476645 + scaleX: 1.0 + scaleY: 0.139652729 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 1a Extracurricular Activity 51c0d9.ttslua b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 1a Extracurricular Activity 51c0d9.ttslua new file mode 100644 index 000000000..54d591927 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 1a Extracurricular Activity 51c0d9.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.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 Dunwich Legacy df7121/Custom_Model_Bag 1a Extracurricular Activity 51c0d9.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 1a Extracurricular Activity 51c0d9.yaml new file mode 100644 index 000000000..897ab7bc3 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 1a Extracurricular Activity 51c0d9.yaml @@ -0,0 +1,94 @@ +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 1a Extracurricular Activity 51c0d9/Custom_Tile 0f2974.yaml' +- !include 'Custom_Model_Bag 1a Extracurricular Activity 51c0d9/Deck Encounter Deck + 1dc5c6.yaml' +- !include 'Custom_Model_Bag 1a Extracurricular Activity 51c0d9/Card Student Union + 2503af.yaml' +- !include 'Custom_Model_Bag 1a Extracurricular Activity 51c0d9/Custom_Tile 286219.yaml' +- !include 'Custom_Model_Bag 1a Extracurricular Activity 51c0d9/Card Miskatonic Quad + 4541f6.yaml' +- !include 'Custom_Model_Bag 1a Extracurricular Activity 51c0d9/Card Science Building + 45f91d.yaml' +- !include 'Custom_Model_Bag 1a Extracurricular Activity 51c0d9/Custom_Tile 487f5f.yaml' +- !include 'Custom_Model_Bag 1a Extracurricular Activity 51c0d9/Custom_Tile 6cdee5.yaml' +- !include 'Custom_Model_Bag 1a Extracurricular Activity 51c0d9/Card Scenario 70df0b.yaml' +- !include 'Custom_Model_Bag 1a Extracurricular Activity 51c0d9/Deck Act Deck 72b0c4.yaml' +- !include 'Custom_Model_Bag 1a Extracurricular Activity 51c0d9/Custom_Model_Bag Set-aside + 9abec6.yaml' +- !include 'Custom_Model_Bag 1a Extracurricular Activity 51c0d9/Custom_Tile ad24b9.yaml' +- !include 'Custom_Model_Bag 1a Extracurricular Activity 51c0d9/Custom_Tile b26fdd.yaml' +- !include 'Custom_Model_Bag 1a Extracurricular Activity 51c0d9/Deck Agenda Deck b90f89.yaml' +- !include 'Custom_Model_Bag 1a Extracurricular Activity 51c0d9/Card Humanities Building + c33d1f.yaml' +- !include 'Custom_Model_Bag 1a Extracurricular Activity 51c0d9/Card Orne Library + db7433.yaml' +- !include 'Custom_Model_Bag 1a Extracurricular Activity 51c0d9/Card Administration + Building e7dfe0.yaml' +- !include 'Custom_Model_Bag 1a Extracurricular Activity 51c0d9/Custom_Tile The Dunwich + Legacy f5db25.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/829135118403750187/D7654DBEC7A062C5BCEEF61A20EC88A137C7E07A/ + MaterialIndex: 3 + MeshURL: https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj + NormalURL: '' + TypeIndex: 6 +Description: The Dunwich Legacy +GMNotes: '' +GUID: 51c0d9 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Model_Bag 1a Extracurricular Activity 51c0d9.ttslua' +LuaScriptState: '{"ml":{"0f2974":{"lock":false,"pos":{"x":-20.7735,"y":1.6115,"z":3.5115},"rot":{"x":0.0684,"y":135.0002,"z":0.0446}},"1dc5c6":{"lock":false,"pos":{"x":-3.9274,"y":1.7824,"z":5.7572},"rot":{"x":359.9197,"y":269.9999,"z":180.0168}},"2503af":{"lock":false,"pos":{"x":-23.6764,"y":1.6862,"z":-0.03},"rot":{"x":359.9201,"y":269.9998,"z":0.0169}},"286219":{"lock":false,"pos":{"x":-20.5694,"y":1.6091,"z":-3.7571},"rot":{"x":359.9747,"y":209.9971,"z":0.0776}},"4541f6":{"lock":false,"pos":{"x":-17.12,"y":1.6771,"z":-0.03},"rot":{"x":359.9201,"y":269.9999,"z":0.0169}},"45f91d":{"lock":false,"pos":{"x":-17.1267,"y":1.6748,"z":-7.6938},"rot":{"x":359.9201,"y":269.9999,"z":0.0169}},"487f5f":{"lock":false,"pos":{"x":-20.7003,"y":1.6125,"z":7.3831},"rot":{"x":0.0799,"y":90,"z":359.9831}},"6cdee5":{"lock":false,"pos":{"x":-20.2528,"y":1.6097,"z":0.0039},"rot":{"x":0.0799,"y":89.9994,"z":359.9831}},"70df0b":{"lock":false,"pos":{"x":-3.9558,"y":1.6556,"z":-10.4412},"rot":{"x":359.9197,"y":270.0001,"z":0.0168}},"72b0c4":{"lock":false,"pos":{"x":-2.6884,"y":1.655,"z":-5.0485},"rot":{"x":0.0168,"y":179.9999,"z":0.0803}},"9abec6":{"lock":false,"pos":{"x":1.696,"y":1.5583,"z":14.2787},"rot":{"x":359.9551,"y":224.998,"z":0.0687}},"ad24b9":{"lock":false,"pos":{"x":-17.12,"y":1.6065,"z":3.86},"rot":{"x":0.0169,"y":179.9798,"z":0.0799}},"b26fdd":{"lock":false,"pos":{"x":-17.1199,"y":1.6042,"z":-3.83},"rot":{"x":0.0169,"y":179.9798,"z":0.0799}},"b90f89":{"lock":false,"pos":{"x":-2.7246,"y":1.6566,"z":0.3733},"rot":{"x":0.0168,"y":179.9978,"z":0.0803}},"c33d1f":{"lock":false,"pos":{"x":-23.6765,"y":1.6885,"z":7.57},"rot":{"x":359.9201,"y":269.9998,"z":0.0169}},"db7433":{"lock":false,"pos":{"x":-17.12,"y":1.6793,"z":7.57},"rot":{"x":359.9201,"y":269.9999,"z":0.0169}},"e7dfe0":{"lock":false,"pos":{"x":-23.6766,"y":1.684,"z":-7.7},"rot":{"x":359.9201,"y":269.9999,"z":0.0169}},"f5db25":{"lock":false,"pos":{"x":-3.6233,"y":1.5823,"z":-14.5603},"rot":{"x":359.9197,"y":269.9996,"z":0.0168}}}}' +MaterialIndex: -1 +MeshIndex: -1 +Name: Custom_Model_Bag +Nickname: '1a: Extracurricular Activity' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 13.8752527 + posY: 1.47103918 + posZ: 30.1538219 + rotX: 359.9201 + rotY: 270.012817 + rotZ: 0.016855929 + scaleX: 2.21 + scaleY: 0.46 + scaleZ: 2.42 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 1a Extracurricular Activity 51c0d9/Card Administration Building e7dfe0.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 1a Extracurricular Activity 51c0d9/Card Administration Building e7dfe0.yaml new file mode 100644 index 000000000..8f0f8be0e --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 1a Extracurricular Activity 51c0d9/Card Administration Building e7dfe0.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 233506 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2335': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999385819522537/207CCD9C85ECB70A339C09170ABB42E139924AA0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780748790926468191/C3163A90948FC777DC7D95D05CB35D2DA32CBD9C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Miskatonic. +GMNotes: '' +GUID: e7dfe0 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Administration Building +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -23.6765976 + posY: 1.683962 + posZ: -7.70000029 + rotX: 359.9201 + rotY: 269.999939 + rotZ: 0.0168757439 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 1a Extracurricular Activity 51c0d9/Card Humanities Building c33d1f.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 1a Extracurricular Activity 51c0d9/Card Humanities Building c33d1f.yaml new file mode 100644 index 000000000..885ee82ed --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 1a Extracurricular Activity 51c0d9/Card Humanities Building c33d1f.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 233502 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2335': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999385819522537/207CCD9C85ECB70A339C09170ABB42E139924AA0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780748790926468191/C3163A90948FC777DC7D95D05CB35D2DA32CBD9C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Miskatonic. +GMNotes: '' +GUID: c33d1f +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Humanities Building +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -23.6765 + posY: 1.68845832 + posZ: 7.56999969 + rotX: 359.9201 + rotY: 269.999756 + rotZ: 0.0168772247 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 1a Extracurricular Activity 51c0d9/Card Miskatonic Quad 4541f6.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 1a Extracurricular Activity 51c0d9/Card Miskatonic Quad 4541f6.yaml new file mode 100644 index 000000000..21baa34e0 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 1a Extracurricular Activity 51c0d9/Card Miskatonic Quad 4541f6.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 233501 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2335': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999385819522537/207CCD9C85ECB70A339C09170ABB42E139924AA0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780748790926468191/C3163A90948FC777DC7D95D05CB35D2DA32CBD9C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Miskatonic. +GMNotes: '' +GUID: 4541f6 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Miskatonic Quad +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -17.1199989 + posY: 1.67707777 + posZ: -0.0300002061 + rotX: 359.9201 + rotY: 269.999969 + rotZ: 0.0168768652 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 1a Extracurricular Activity 51c0d9/Card Orne Library db7433.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 1a Extracurricular Activity 51c0d9/Card Orne Library db7433.yaml new file mode 100644 index 000000000..b8c5d5087 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 1a Extracurricular Activity 51c0d9/Card Orne Library db7433.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 233503 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2335': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999385819522537/207CCD9C85ECB70A339C09170ABB42E139924AA0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780748790926468191/C3163A90948FC777DC7D95D05CB35D2DA32CBD9C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Miskatonic. +GMNotes: '' +GUID: db7433 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Orne Library +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -17.12 + posY: 1.67931569 + posZ: 7.56999969 + rotX: 359.9201 + rotY: 269.999878 + rotZ: 0.0168770328 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 1a Extracurricular Activity 51c0d9/Card Scenario 70df0b.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 1a Extracurricular Activity 51c0d9/Card Scenario 70df0b.yaml new file mode 100644 index 000000000..ecddc6e94 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 1a Extracurricular Activity 51c0d9/Card Scenario 70df0b.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 233511 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2335': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999385819522537/207CCD9C85ECB70A339C09170ABB42E139924AA0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780748790926468191/C3163A90948FC777DC7D95D05CB35D2DA32CBD9C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Extracurricular Activity +GMNotes: '' +GUID: 70df0b +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Scenario +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.95580029 + posY: 1.65564787 + posZ: -10.4412022 + rotX: 359.919739 + rotY: 270.000122 + rotZ: 0.0168409143 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 1a Extracurricular Activity 51c0d9/Card Science Building 45f91d.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 1a Extracurricular Activity 51c0d9/Card Science Building 45f91d.yaml new file mode 100644 index 000000000..cbc9a3be3 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 1a Extracurricular Activity 51c0d9/Card Science Building 45f91d.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 233509 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2335': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999385819522537/207CCD9C85ECB70A339C09170ABB42E139924AA0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780748790926468191/C3163A90948FC777DC7D95D05CB35D2DA32CBD9C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Miskatonic. +GMNotes: '' +GUID: 45f91d +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Science Building +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -17.1267 + posY: 1.67483044 + posZ: -7.693801 + rotX: 359.9201 + rotY: 269.999939 + rotZ: 0.0168769415 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 1a Extracurricular Activity 51c0d9/Card Student Union 2503af.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 1a Extracurricular Activity 51c0d9/Card Student Union 2503af.yaml new file mode 100644 index 000000000..4ffc91534 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 1a Extracurricular Activity 51c0d9/Card Student Union 2503af.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 233504 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2335': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999385819522537/207CCD9C85ECB70A339C09170ABB42E139924AA0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780748790926468191/C3163A90948FC777DC7D95D05CB35D2DA32CBD9C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Miskatonic. +GMNotes: '' +GUID: 2503af +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Student Union +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -23.6764 + posY: 1.68622017 + posZ: -0.0300005134 + rotX: 359.9201 + rotY: 269.9998 + rotZ: 0.0168765131 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 1a Extracurricular Activity 51c0d9/Custom_Model_Bag Set-aside 9abec6.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 1a Extracurricular Activity 51c0d9/Custom_Model_Bag Set-aside 9abec6.yaml new file mode 100644 index 000000000..be8bfd123 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 1a Extracurricular Activity 51c0d9/Custom_Model_Bag Set-aside 9abec6.yaml @@ -0,0 +1,63 @@ +Autoraise: true +ColorDiffuse: + b: 0.02148666 + g: 0.00100758043 + r: 0.02148666 +ContainedObjects: +- !include 'Custom_Model_Bag Set-aside 9abec6/Card Dr. Henry Armitage 66197b.yaml' +- !include 'Custom_Model_Bag Set-aside 9abec6/Card Alchemy Labs 685c14.yaml' +- !include 'Custom_Model_Bag Set-aside 9abec6/Card Dormitories bd02ba.yaml' +- !include 'Custom_Model_Bag Set-aside 9abec6/Card Professor Warren Rice 42806b.yaml' +- !include 'Custom_Model_Bag Set-aside 9abec6/Card The Experiment 9c7371.yaml' +- !include 'Custom_Model_Bag Set-aside 9abec6/Card Alchemical Concoction 85d21d.yaml' +- !include "Custom_Model_Bag Set-aside 9abec6/Card \u201CJazz\u201D Mulligan 379ac4.yaml" +- !include 'Custom_Model_Bag Set-aside 9abec6/Deck Faculty Offices 8daa0e.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: Extracurricular Activity +GMNotes: '' +GUID: 9abec6 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +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.6960007 + posY: 1.55831766 + posZ: 14.2787018 + rotX: 359.955139 + rotY: 224.997971 + rotZ: 0.06867411 + scaleX: 2.0 + scaleY: 2.0 + scaleZ: 2.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 1a Extracurricular Activity 51c0d9/Custom_Model_Bag Set-aside 9abec6/Card Alchemical Concoction 85d21d.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 1a Extracurricular Activity 51c0d9/Custom_Model_Bag Set-aside 9abec6/Card Alchemical Concoction 85d21d.yaml new file mode 100644 index 000000000..203e9957d --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 1a Extracurricular Activity 51c0d9/Custom_Model_Bag Set-aside 9abec6/Card Alchemical Concoction 85d21d.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 234002 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2340': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: Item. Science. +GMNotes: '' +GUID: 85d21d +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Alchemical Concoction +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -21.0182037 + posY: 3.64502716 + posZ: 14.0903568 + rotX: 359.920074 + rotY: 269.999878 + rotZ: 0.0169003382 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 1a Extracurricular Activity 51c0d9/Custom_Model_Bag Set-aside 9abec6/Card Alchemy Labs 685c14.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 1a Extracurricular Activity 51c0d9/Custom_Model_Bag Set-aside 9abec6/Card Alchemy Labs 685c14.yaml new file mode 100644 index 000000000..724d48611 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 1a Extracurricular Activity 51c0d9/Custom_Model_Bag Set-aside 9abec6/Card Alchemy Labs 685c14.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 233510 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2335': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999385819522537/207CCD9C85ECB70A339C09170ABB42E139924AA0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780748790926468191/C3163A90948FC777DC7D95D05CB35D2DA32CBD9C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Miskatonic. +GMNotes: '' +GUID: 685c14 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Alchemy Labs +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -21.3820248 + posY: 3.645296 + posZ: 13.4324322 + rotX: 359.920074 + rotY: 270.000031 + rotZ: 0.01687519 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 1a Extracurricular Activity 51c0d9/Custom_Model_Bag Set-aside 9abec6/Card Dormitories bd02ba.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 1a Extracurricular Activity 51c0d9/Custom_Model_Bag Set-aside 9abec6/Card Dormitories bd02ba.yaml new file mode 100644 index 000000000..393a1efa0 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 1a Extracurricular Activity 51c0d9/Custom_Model_Bag Set-aside 9abec6/Card Dormitories bd02ba.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 233505 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2335': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999385819522537/207CCD9C85ECB70A339C09170ABB42E139924AA0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780748790926468191/C3163A90948FC777DC7D95D05CB35D2DA32CBD9C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Miskatonic. +GMNotes: '' +GUID: bd02ba +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Dormitories +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -21.1841335 + posY: 3.64531279 + posZ: 14.3697863 + rotX: 359.920074 + rotY: 270.0005 + rotZ: 0.0168992225 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 1a Extracurricular Activity 51c0d9/Custom_Model_Bag Set-aside 9abec6/Card Dr. Henry Armitage 66197b.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 1a Extracurricular Activity 51c0d9/Custom_Model_Bag Set-aside 9abec6/Card Dr. Henry Armitage 66197b.yaml new file mode 100644 index 000000000..1c958e19b --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 1a Extracurricular Activity 51c0d9/Custom_Model_Bag Set-aside 9abec6/Card Dr. Henry Armitage 66197b.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: The Head Librarian +GMNotes: '' +GUID: 66197b +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Dr. Henry Armitage +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -19.44345 + posY: 3.64372253 + posZ: 16.4294357 + rotX: 359.92 + rotY: 269.999878 + rotZ: 0.0168873556 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 1a Extracurricular Activity 51c0d9/Custom_Model_Bag Set-aside 9abec6/Card Professor Warren Rice 42806b.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 1a Extracurricular Activity 51c0d9/Custom_Model_Bag Set-aside 9abec6/Card Professor Warren Rice 42806b.yaml new file mode 100644 index 000000000..e67a1764e --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 1a Extracurricular Activity 51c0d9/Custom_Model_Bag Set-aside 9abec6/Card Professor Warren Rice 42806b.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Professor of Languages +GMNotes: '' +GUID: 42806b +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Professor Warren Rice +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -21.0922565 + posY: 3.64578152 + posZ: 14.1939335 + rotX: 359.936432 + rotY: 270.0 + rotZ: 0.007948471 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 1a Extracurricular Activity 51c0d9/Custom_Model_Bag Set-aside 9abec6/Card The Experiment 9c7371.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 1a Extracurricular Activity 51c0d9/Custom_Model_Bag Set-aside 9abec6/Card The Experiment 9c7371.yaml new file mode 100644 index 000000000..81c44be7f --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 1a Extracurricular Activity 51c0d9/Custom_Model_Bag Set-aside 9abec6/Card The Experiment 9c7371.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 232801 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: Something Went Terribly Wrong +GMNotes: '' +GUID: 9c7371 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: The Experiment +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -21.5735264 + posY: 3.647795 + posZ: 15.4216166 + rotX: 359.920044 + rotY: 270.002258 + rotZ: 0.01690044 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 1a Extracurricular Activity 51c0d9/Custom_Model_Bag Set-aside 9abec6/Card “Jazz” Mulligan 379ac4.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 1a Extracurricular Activity 51c0d9/Custom_Model_Bag Set-aside 9abec6/Card “Jazz” Mulligan 379ac4.yaml new file mode 100644 index 000000000..060460776 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 1a Extracurricular Activity 51c0d9/Custom_Model_Bag Set-aside 9abec6/Card “Jazz” Mulligan 379ac4.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 234103 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2341': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: The Head Janitor +GMNotes: '' +GUID: 379ac4 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: "\u201CJazz\u201D Mulligan" +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -20.5117645 + posY: 3.645717 + posZ: 14.7618542 + rotX: 359.920044 + rotY: 269.999725 + rotZ: 0.01685311 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 1a Extracurricular Activity 51c0d9/Custom_Model_Bag Set-aside 9abec6/Deck Faculty Offices 8daa0e.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 1a Extracurricular Activity 51c0d9/Custom_Model_Bag Set-aside 9abec6/Deck Faculty Offices 8daa0e.yaml new file mode 100644 index 000000000..c4a9720ab --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 1a Extracurricular Activity 51c0d9/Custom_Model_Bag Set-aside 9abec6/Deck Faculty Offices 8daa0e.yaml @@ -0,0 +1,129 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 233508 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2335': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999385819522537/207CCD9C85ECB70A339C09170ABB42E139924AA0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780748790926468191/C3163A90948FC777DC7D95D05CB35D2DA32CBD9C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: The Hour is Late + GMNotes: '' + GUID: 1c567d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Faculty Offices + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -17.6986084 + posY: 1.58042979 + posZ: 8.591015 + rotX: 359.9201 + rotY: 270.004822 + rotZ: 0.01667115 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233507 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2335': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999385819522537/207CCD9C85ECB70A339C09170ABB42E139924AA0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780748790926468191/C3163A90948FC777DC7D95D05CB35D2DA32CBD9C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: The Night is Still Young + GMNotes: '' + GUID: 9fda8e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Faculty Offices + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -17.7845383 + posY: 1.80883527 + posZ: 8.52343 + rotX: 359.920227 + rotY: 269.997559 + rotZ: 355.85257 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2335': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999385819522537/207CCD9C85ECB70A339C09170ABB42E139924AA0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780748790926468191/C3163A90948FC777DC7D95D05CB35D2DA32CBD9C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 233508 +- 233507 +Description: '' +GMNotes: '' +GUID: 8daa0e +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Faculty Offices +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -21.5180836 + posY: 3.65298581 + posZ: 15.5103292 + rotX: 359.920044 + rotY: 270.004761 + rotZ: 0.0168935712 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 1a Extracurricular Activity 51c0d9/Custom_Tile 0f2974.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 1a Extracurricular Activity 51c0d9/Custom_Tile 0f2974.yaml new file mode 100644 index 000000000..4d80da032 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 1a Extracurricular Activity 51c0d9/Custom_Tile 0f2974.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 0f2974 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Custom_Tile + Nickname: '' + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -21.2536736 + posY: 1.61222625 + posZ: 3.6991744 + rotX: 359.9201 + rotY: 269.995117 + rotZ: 0.01687632 + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Custom_Tile + Nickname: '' + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -21.2536716 + posY: 1.61222625 + posZ: 3.69917464 + rotX: 359.9201 + rotY: 269.995117 + rotZ: 0.01687386 + scaleX: 0.8 + scaleY: 1.0 + scaleZ: 0.8 + XmlUI: '' +Sticky: true +Tooltip: true +Transform: + posX: -20.7735 + posY: 1.61150146 + posZ: 3.51150036 + rotX: 0.06843099 + rotY: 135.0002 + rotZ: 0.0445620157 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 1a Extracurricular Activity 51c0d9/Custom_Tile 286219.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 1a Extracurricular Activity 51c0d9/Custom_Tile 286219.yaml new file mode 100644 index 000000000..a63172be2 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 1a Extracurricular Activity 51c0d9/Custom_Tile 286219.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: '286219' +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Custom_Tile + Nickname: '' + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -21.2536736 + posY: 1.61222625 + posZ: 3.6991744 + rotX: 359.9201 + rotY: 269.995117 + rotZ: 0.01687632 + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Custom_Tile + Nickname: '' + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -21.2536716 + posY: 1.61222625 + posZ: 3.69917464 + rotX: 359.9201 + rotY: 269.995117 + rotZ: 0.01687386 + scaleX: 0.8 + scaleY: 1.0 + scaleZ: 0.8 + XmlUI: '' +Sticky: true +Tooltip: true +Transform: + posX: -20.5693989 + posY: 1.6090765 + posZ: -3.75709963 + rotX: 359.97467 + rotY: 209.9971 + rotZ: 0.07762949 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 1a Extracurricular Activity 51c0d9/Custom_Tile 487f5f.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 1a Extracurricular Activity 51c0d9/Custom_Tile 487f5f.yaml new file mode 100644 index 000000000..6af13ffa2 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 1a Extracurricular Activity 51c0d9/Custom_Tile 487f5f.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 487f5f +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Custom_Tile + Nickname: '' + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -21.2536736 + posY: 1.61222625 + posZ: 3.6991744 + rotX: 359.9201 + rotY: 269.995117 + rotZ: 0.01687632 + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Custom_Tile + Nickname: '' + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -21.2536716 + posY: 1.61222625 + posZ: 3.69917464 + rotX: 359.9201 + rotY: 269.995117 + rotZ: 0.01687386 + scaleX: 0.8 + scaleY: 1.0 + scaleZ: 0.8 + XmlUI: '' +Sticky: true +Tooltip: true +Transform: + posX: -20.7003 + posY: 1.61253953 + posZ: 7.383099 + rotX: 0.0798943639 + rotY: 89.99999 + rotZ: 359.9831 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 1a Extracurricular Activity 51c0d9/Custom_Tile 6cdee5.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 1a Extracurricular Activity 51c0d9/Custom_Tile 6cdee5.yaml new file mode 100644 index 000000000..4baf9a82a --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 1a Extracurricular Activity 51c0d9/Custom_Tile 6cdee5.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 6cdee5 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Custom_Tile + Nickname: '' + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -21.2536736 + posY: 1.61222625 + posZ: 3.6991744 + rotX: 359.9201 + rotY: 269.995117 + rotZ: 0.01687632 + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Custom_Tile + Nickname: '' + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -21.2536716 + posY: 1.61222625 + posZ: 3.69917464 + rotX: 359.9201 + rotY: 269.995117 + rotZ: 0.01687386 + scaleX: 0.8 + scaleY: 1.0 + scaleZ: 0.8 + XmlUI: '' +Sticky: true +Tooltip: true +Transform: + posX: -20.2528 + posY: 1.60974264 + posZ: 0.003899947 + rotX: 0.07989416 + rotY: 89.99936 + rotZ: 359.9831 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 1a Extracurricular Activity 51c0d9/Custom_Tile ad24b9.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 1a Extracurricular Activity 51c0d9/Custom_Tile ad24b9.yaml new file mode 100644 index 000000000..ba9960c9b --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 1a Extracurricular Activity 51c0d9/Custom_Tile ad24b9.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: ad24b9 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Custom_Tile + Nickname: '' + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -21.2536736 + posY: 1.61222625 + posZ: 3.6991744 + rotX: 359.9201 + rotY: 269.995117 + rotZ: 0.01687632 + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Custom_Tile + Nickname: '' + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -21.2536716 + posY: 1.61222625 + posZ: 3.69917464 + rotX: 359.9201 + rotY: 269.995117 + rotZ: 0.01687386 + scaleX: 0.8 + scaleY: 1.0 + scaleZ: 0.8 + XmlUI: '' +Sticky: true +Tooltip: true +Transform: + posX: -17.12 + posY: 1.60650945 + posZ: 3.86000061 + rotX: 0.016899839 + rotY: 179.979874 + rotZ: 0.07992928 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 1a Extracurricular Activity 51c0d9/Custom_Tile b26fdd.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 1a Extracurricular Activity 51c0d9/Custom_Tile b26fdd.yaml new file mode 100644 index 000000000..74318de28 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 1a Extracurricular Activity 51c0d9/Custom_Tile b26fdd.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: b26fdd +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Custom_Tile + Nickname: '' + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -21.2536736 + posY: 1.61222625 + posZ: 3.6991744 + rotX: 359.9201 + rotY: 269.995117 + rotZ: 0.01687632 + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Custom_Tile + Nickname: '' + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -21.2536716 + posY: 1.61222625 + posZ: 3.69917464 + rotX: 359.9201 + rotY: 269.995117 + rotZ: 0.01687386 + scaleX: 0.8 + scaleY: 1.0 + scaleZ: 0.8 + XmlUI: '' +Sticky: true +Tooltip: true +Transform: + posX: -17.1198978 + posY: 1.604245 + posZ: -3.83000016 + rotX: 0.0169002488 + rotY: 179.979721 + rotZ: 0.07994017 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 1a Extracurricular Activity 51c0d9/Custom_Tile The Dunwich Legacy f5db25.ttslua b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 1a Extracurricular Activity 51c0d9/Custom_Tile The Dunwich Legacy f5db25.ttslua new file mode 100644 index 000000000..cfa110e20 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 1a Extracurricular Activity 51c0d9/Custom_Tile The Dunwich Legacy f5db25.ttslua @@ -0,0 +1,21 @@ +name = 'The Dunwich Legacy' + +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 Dunwich Legacy df7121/Custom_Model_Bag 1a Extracurricular Activity 51c0d9/Custom_Tile The Dunwich Legacy f5db25.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 1a Extracurricular Activity 51c0d9/Custom_Tile The Dunwich Legacy f5db25.yaml new file mode 100644 index 000000000..c2b6a92b4 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 1a Extracurricular Activity 51c0d9/Custom_Tile The Dunwich Legacy f5db25.yaml @@ -0,0 +1,42 @@ +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 +GMNotes: '' +GUID: f5db25 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Tile The Dunwich Legacy f5db25.ttslua' +LuaScriptState: '' +Name: Custom_Tile +Nickname: The Dunwich Legacy +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.6233 + posY: 1.58225822 + posZ: -14.5603046 + rotX: 359.919739 + rotY: 269.9996 + rotZ: 0.01683853 + scaleX: 2.2 + scaleY: 1.0 + scaleZ: 2.2 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 1a Extracurricular Activity 51c0d9/Deck Act Deck 72b0c4.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 1a Extracurricular Activity 51c0d9/Deck Act Deck 72b0c4.yaml new file mode 100644 index 000000000..77e4f99e5 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 1a Extracurricular Activity 51c0d9/Deck Act Deck 72b0c4.yaml @@ -0,0 +1,172 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 233305 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2333': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296027643/326876D4B46DF777AA1293989DEEE6A810ED027B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999385819527677/3AD8DFFFBFF54DB098AD3E00BB7E75DA0590FE8B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 3 + GMNotes: '' + GUID: ae9906 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Campus Safety + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -1.64602768 + posY: 1.56066656 + posZ: 17.4862957 + rotX: 0.0181607176 + rotY: 179.073578 + rotZ: 0.07959821 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233304 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2333': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296027643/326876D4B46DF777AA1293989DEEE6A810ED027B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999385819527677/3AD8DFFFBFF54DB098AD3E00BB7E75DA0590FE8B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 2 + GMNotes: '' + GUID: a7ee8a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Rice's Whereabouts + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -1.58353448 + posY: 1.70975876 + posZ: 17.5698586 + rotX: -0.00185124076 + rotY: 179.489853 + rotZ: 0.06697722 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233303 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2333': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296027643/326876D4B46DF777AA1293989DEEE6A810ED027B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999385819527677/3AD8DFFFBFF54DB098AD3E00BB7E75DA0590FE8B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 1 + GMNotes: '' + GUID: 1b5f59 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: After Hours + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -1.16530478 + posY: 1.72620416 + posZ: 16.7691345 + rotX: -0.00150619529 + rotY: 179.105072 + rotZ: 0.0670599639 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2333': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296027643/326876D4B46DF777AA1293989DEEE6A810ED027B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999385819527677/3AD8DFFFBFF54DB098AD3E00BB7E75DA0590FE8B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 233305 +- 233304 +- 233303 +Description: '' +GMNotes: '' +GUID: 72b0c4 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Act Deck +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.68839979 + posY: 1.65499711 + posZ: -5.04850054 + rotX: 0.0168352984 + rotY: 179.999878 + rotZ: 0.08025768 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 1a Extracurricular Activity 51c0d9/Deck Agenda Deck b90f89.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 1a Extracurricular Activity 51c0d9/Deck Agenda Deck b90f89.yaml new file mode 100644 index 000000000..16a705e54 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 1a Extracurricular Activity 51c0d9/Deck Agenda Deck b90f89.yaml @@ -0,0 +1,172 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 233302 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2333': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296027643/326876D4B46DF777AA1293989DEEE6A810ED027B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999385819527677/3AD8DFFFBFF54DB098AD3E00BB7E75DA0590FE8B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 3 + GMNotes: '' + GUID: 0fac5d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Beast Unleashed + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.5693868 + posY: 1.56113374 + posZ: 29.5610828 + rotX: 0.0169099849 + rotY: 179.972336 + rotZ: 0.07987117 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233301 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2333': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296027643/326876D4B46DF777AA1293989DEEE6A810ED027B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999385819527677/3AD8DFFFBFF54DB098AD3E00BB7E75DA0590FE8B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 2 + GMNotes: '' + GUID: d1cd6b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dead of Night + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.497630835 + posY: 1.717704 + posZ: 29.9365711 + rotX: 0.01690922 + rotY: 179.9979 + rotZ: 0.07987122 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233300 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2333': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296027643/326876D4B46DF777AA1293989DEEE6A810ED027B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999385819527677/3AD8DFFFBFF54DB098AD3E00BB7E75DA0590FE8B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 1 + GMNotes: '' + GUID: 1b5f59 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Quiet Halls + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.8960717 + posY: 1.72670257 + posZ: 29.51945 + rotX: 0.0145111373 + rotY: 179.991653 + rotZ: 0.06872605 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2333': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296027643/326876D4B46DF777AA1293989DEEE6A810ED027B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999385819527677/3AD8DFFFBFF54DB098AD3E00BB7E75DA0590FE8B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 233302 +- 233301 +- 233300 +Description: '' +GMNotes: '' +GUID: b90f89 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Agenda Deck +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.7246 + posY: 1.656641 + posZ: 0.373300284 + rotX: 0.0168380681 + rotY: 179.997833 + rotZ: 0.0802571252 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 1a Extracurricular Activity 51c0d9/Deck Encounter Deck 1dc5c6.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 1a Extracurricular Activity 51c0d9/Deck Encounter Deck 1dc5c6.yaml new file mode 100644 index 000000000..5446687a6 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 1a Extracurricular Activity 51c0d9/Deck Encounter Deck 1dc5c6.yaml @@ -0,0 +1,1426 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 232811 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: d56ff7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Beyond the Veil + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.917338 + posY: 1.55012894 + posZ: 8.039298 + rotX: 359.920135 + rotY: 269.999969 + rotZ: 0.01687837 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232811 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: 9cb0b3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Beyond the Veil + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.89250565 + posY: 1.70636082 + posZ: 8.19774 + rotX: 359.920135 + rotY: 269.999969 + rotZ: 0.01687832 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232811 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: d56ff7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Beyond the Veil + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.89250565 + posY: 1.72360778 + posZ: 8.19774 + rotX: 359.920837 + rotY: 269.999969 + rotZ: 0.0158282 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232810 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: de3bd5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Visions of Futures Past + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.43124938 + posY: 1.55177522 + posZ: 11.3293571 + rotX: 359.920135 + rotY: 269.999969 + rotZ: 0.0168769564 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232810 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: 42d459 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Visions of Futures Past + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.15239716 + posY: 1.70869577 + posZ: 11.50471 + rotX: 359.920135 + rotY: 269.999969 + rotZ: 0.01687689 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232810 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: de3bd5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Visions of Futures Past + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.15239716 + posY: 1.72595167 + posZ: 11.50471 + rotX: 359.9199 + rotY: 269.999969 + rotZ: 0.0165576525 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232829 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: "\tHex. Obstacle." + GMNotes: '' + GUID: 2d6b0f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Arcane Barrier + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.163001 + posY: 1.550591 + posZ: 6.036887 + rotX: 359.920135 + rotY: 269.9999 + rotZ: 0.0168760177 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232829 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: "\tHex. Obstacle." + GMNotes: '' + GUID: db1aee + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Arcane Barrier + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.36834574 + posY: 1.70658445 + posZ: 6.162498 + rotX: 359.920135 + rotY: 269.9999 + rotZ: 0.01687594 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232828 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: "\tHex. Terror." + GMNotes: '' + GUID: 851dc1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Terror from Beyond + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.0437057 + posY: 1.55163479 + posZ: 9.017338 + rotX: 359.920135 + rotY: 269.999939 + rotZ: 0.0168782789 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232828 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: "\tHex. Terror." + GMNotes: '' + GUID: 8906a9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Terror from Beyond + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.82296681 + posY: 1.708395 + posZ: 9.019801 + rotX: 359.920135 + rotY: 269.999939 + rotZ: 0.0168783069 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232827 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: de3bd5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Pushed into the Beyond + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.622002 + posY: 1.55319154 + posZ: 12.3073425 + rotX: 359.920135 + rotY: 269.9999 + rotZ: 0.0168778151 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232827 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: d91086 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Pushed into the Beyond + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.70456314 + posY: 1.70989764 + posZ: 12.504797 + rotX: 359.920135 + rotY: 269.9999 + rotZ: 0.0168777462 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232814 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Sorcerer. + GMNotes: '' + GUID: e44036 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Wizard of Yog-Sothoth + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.394843 + posY: 1.54970729 + posZ: 4.13393164 + rotX: 359.920135 + rotY: 269.999939 + rotZ: 0.0168757457 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232813 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Monster. Abomination. + GMNotes: '' + GUID: fbe20d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Thrall + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.15501428 + posY: 1.69501209 + posZ: 7.444842 + rotX: 359.935822 + rotY: 269.994781 + rotZ: 7.50431871 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232813 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Monster. Abomination. + GMNotes: '' + GUID: 9b9792 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Thrall + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.32377672 + posY: 1.55104816 + posZ: 8.903832 + rotX: 359.921722 + rotY: 269.997437 + rotZ: 0.008892595 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232813 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Monster. Abomination. + GMNotes: '' + GUID: 76139c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Thrall + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.76801586 + posY: 1.60063446 + posZ: 8.933262 + rotX: 359.9319 + rotY: 269.992828 + rotZ: 0.0655015 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232812 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: "\tPact. Power." + GMNotes: '' + GUID: de3bd5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Light of Aforgomon + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.103076 + posY: 1.5511409 + posZ: 7.621261 + rotX: 359.920135 + rotY: 269.999878 + rotZ: 0.0168763418 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232812 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: "\tPact. Power." + GMNotes: '' + GUID: 6c2f4a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Light of Aforgomon + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.12950444 + posY: 1.70759833 + posZ: 8.101044 + rotX: 359.920135 + rotY: 269.999878 + rotZ: 0.0168764461 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232818 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: 60ef9e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Eager for Death + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.646352 + posY: 1.548182 + posZ: 0.144670352 + rotX: 359.920135 + rotY: 269.999939 + rotZ: 0.0168772917 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232818 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: 40e9d0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Eager for Death + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.37573743 + posY: 1.7043395 + posZ: 0.209344044 + rotX: 359.920135 + rotY: 269.999939 + rotZ: 0.0168772619 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232817 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: "\tCreature." + GMNotes: '' + GUID: de3bd5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Whippoorwill + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.19784832 + posY: 1.54999852 + posZ: 4.190304 + rotX: 359.920135 + rotY: 269.9999 + rotZ: 0.0168776866 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232817 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: "\tCreature." + GMNotes: '' + GUID: 61c583 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Whippoorwill + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.24814034 + posY: 1.70613587 + posZ: 4.471411 + rotX: 359.920135 + rotY: 269.9999 + rotZ: 0.0168776922 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232817 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: "\tCreature." + GMNotes: '' + GUID: de3bd5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Whippoorwill + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.24814034 + posY: 1.72339261 + posZ: 4.471411 + rotX: 359.920441 + rotY: 269.9999 + rotZ: 0.0163779482 + 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 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: 6e7cb8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: 8af879 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: 6e7cb8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: Obstacle. + GMNotes: '' + GUID: ab3719 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Locked Door + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -17.60739 + posY: 1.58022821 + posZ: 8.422101 + rotX: 359.920349 + rotY: 269.999756 + rotZ: 0.0154577158 + 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 + UniqueBack: false + Description: Obstacle. + GMNotes: '' + GUID: 4904d0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Locked Door + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -18.06458 + posY: 1.74395728 + posZ: 8.675678 + rotX: 359.928467 + rotY: 269.9997 + rotZ: 0.006147271 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231731 + 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 + UniqueBack: false + Description: Pact. + GMNotes: '' + GUID: ad01d5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Offer of Power + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -20.624012 + posY: 1.58353865 + posZ: 5.391288 + rotX: 359.92038 + rotY: 270.0011 + rotZ: 0.0152683891 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231731 + 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 + UniqueBack: false + Description: Pact. + GMNotes: '' + GUID: 1e4b6f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Offer of Power + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -21.1143684 + posY: 1.74799216 + posZ: 5.51088 + rotX: 359.927856 + rotY: 270.00116 + rotZ: 0.008664682 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231730 + 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 + UniqueBack: false + Description: Monster. Yithian. + GMNotes: '' + GUID: ab3719 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Yithian Observer + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -20.7980976 + posY: 1.58471787 + posZ: 8.655001 + rotX: 359.9206 + rotY: 270.001221 + rotZ: 0.0136531973 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231730 + 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 + UniqueBack: false + Description: Monster. Yithian. + GMNotes: '' + GUID: 4c04b5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Yithian Observer + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -21.04713 + posY: 1.74898231 + posZ: 8.319516 + rotX: 359.925964 + rotY: 270.001221 + rotZ: 0.0171930045 + 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 + UniqueBack: false + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 232811 +- 232811 +- 232811 +- 232810 +- 232810 +- 232810 +- 232829 +- 232829 +- 232828 +- 232828 +- 232827 +- 232827 +- 232814 +- 232813 +- 232813 +- 232813 +- 232812 +- 232812 +- 232818 +- 232818 +- 232817 +- 232817 +- 232817 +- 231719 +- 231719 +- 231719 +- 231727 +- 231727 +- 231731 +- 231731 +- 231730 +- 231730 +Description: '' +GMNotes: '' +GUID: 1dc5c6 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Encounter Deck +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.92740035 + posY: 1.7823683 + posZ: 5.75720072 + rotX: 359.919739 + rotY: 269.999939 + rotZ: 180.016815 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 1b The House Always Wins e3aa5c.ttslua b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 1b The House Always Wins e3aa5c.ttslua new file mode 100644 index 000000000..54d591927 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 1b The House Always Wins e3aa5c.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.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 Dunwich Legacy df7121/Custom_Model_Bag 1b The House Always Wins e3aa5c.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 1b The House Always Wins e3aa5c.yaml new file mode 100644 index 000000000..c119dcaac --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 1b The House Always Wins e3aa5c.yaml @@ -0,0 +1,88 @@ +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 1b The House Always Wins e3aa5c/Custom_Model_Bag Set-aside + 52f8d5.yaml' +- !include 'Custom_Model_Bag 1b The House Always Wins e3aa5c/Deck Encounter Deck 50fc37.yaml' +- !include 'Custom_Model_Bag 1b The House Always Wins e3aa5c/Deck Agenda Deck acc7ef.yaml' +- !include 'Custom_Model_Bag 1b The House Always Wins e3aa5c/Deck Act Deck 0f9069.yaml' +- !include 'Custom_Model_Bag 1b The House Always Wins e3aa5c/Card Scenario 70df0b.yaml' +- !include 'Custom_Model_Bag 1b The House Always Wins e3aa5c/Custom_Tile The Dunwich + Legacy b5928a.yaml' +- !include 'Custom_Model_Bag 1b The House Always Wins e3aa5c/Card La Bella Luna 7faf81.yaml' +- !include 'Custom_Model_Bag 1b The House Always Wins e3aa5c/Custom_Tile 7234af.yaml' +- !include 'Custom_Model_Bag 1b The House Always Wins e3aa5c/Card Clover Club Lounge + 4b1874.yaml' +- !include 'Custom_Model_Bag 1b The House Always Wins e3aa5c/Card Clover Club Pit + Boss de3bd5.yaml' +- !include 'Custom_Model_Bag 1b The House Always Wins e3aa5c/Custom_Tile f797c9.yaml' +- !include 'Custom_Model_Bag 1b The House Always Wins e3aa5c/Card Clover Club Bar + 45341b.yaml' +- !include 'Custom_Model_Bag 1b The House Always Wins e3aa5c/Custom_Tile b68edf.yaml' +- !include 'Custom_Model_Bag 1b The House Always Wins e3aa5c/Custom_Tile 8fffb7.yaml' +- !include 'Custom_Model_Bag 1b The House Always Wins e3aa5c/Card Clover Club Cardroom + 9a3039.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/829135118403750784/4B54FBFFC93692004D88E1C3CCCE43845F7C4BDD/ + MaterialIndex: 3 + MeshURL: https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj + NormalURL: '' + TypeIndex: 6 +Description: The Dunwich Legacy +GMNotes: '' +GUID: e3aa5c +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Model_Bag 1b The House Always Wins e3aa5c.ttslua' +LuaScriptState: '{"ml":{"0f9069":{"lock":false,"pos":{"x":-2.6884,"y":1.6535,"z":-5.0485},"rot":{"x":0.0168,"y":180.035,"z":0.0803}},"45341b":{"lock":false,"pos":{"x":-23.6765,"y":1.6885,"z":7.57},"rot":{"x":359.9201,"y":269.9999,"z":0.0169}},"4b1874":{"lock":false,"pos":{"x":-23.6764,"y":1.6862,"z":-0.0302},"rot":{"x":359.9201,"y":269.9984,"z":0.0169}},"50fc37":{"lock":false,"pos":{"x":-3.9275,"y":1.7131,"z":5.7572},"rot":{"x":359.9197,"y":269.9994,"z":180.0168}},"52f8d5":{"lock":false,"pos":{"x":1.6964,"y":1.5583,"z":14.2789},"rot":{"x":359.9551,"y":224.998,"z":0.0687}},"70df0b":{"lock":false,"pos":{"x":-3.9559,"y":1.6556,"z":-10.4413},"rot":{"x":359.9197,"y":269.9973,"z":0.0168}},"7234af":{"lock":false,"pos":{"x":-20.2217,"y":1.6097,"z":-0.0989},"rot":{"x":359.9201,"y":269.9951,"z":0.0169}},"7faf81":{"lock":false,"pos":{"x":-17.1199,"y":1.6771,"z":-0.03},"rot":{"x":359.9201,"y":269.9999,"z":0.0169}},"8fffb7":{"lock":false,"pos":{"x":-27.3821,"y":1.6202,"z":1.7908},"rot":{"x":359.9316,"y":315,"z":359.9554}},"9a3039":{"lock":false,"pos":{"x":-30.2243,"y":1.6965,"z":3.86},"rot":{"x":359.9201,"y":269.9997,"z":0.0169}},"acc7ef":{"lock":false,"pos":{"x":-2.7246,"y":1.6566,"z":0.3733},"rot":{"x":0.0168,"y":179.9975,"z":0.0803}},"b5928a":{"lock":false,"pos":{"x":-3.8443,"y":1.5826,"z":-14.5511},"rot":{"x":359.9197,"y":270.0014,"z":0.0168}},"b68edf":{"lock":false,"pos":{"x":-27.1598,"y":1.621,"z":5.5543},"rot":{"x":359.9554,"y":224.9998,"z":0.0684}},"de3bd5":{"lock":false,"pos":{"x":-23.6765,"y":1.6851,"z":-3.83},"rot":{"x":359.9201,"y":269.9999,"z":0.0169}},"f797c9":{"lock":false,"pos":{"x":-23.6765,"y":1.6157,"z":3.86},"rot":{"x":359.9831,"y":0.0001,"z":359.92}}}}' +MaterialIndex: -1 +MeshIndex: -1 +Name: Custom_Model_Bag +Nickname: '1b: The House Always Wins' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 13.873908 + posY: 1.46854651 + posZ: 21.7647629 + rotX: 359.920135 + rotY: 269.9997 + rotZ: 0.016874291 + scaleX: 2.21 + scaleY: 0.46 + scaleZ: 2.42 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 1b The House Always Wins e3aa5c/Card Clover Club Bar 45341b.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 1b The House Always Wins e3aa5c/Card Clover Club Bar 45341b.yaml new file mode 100644 index 000000000..58d177fe9 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 1b The House Always Wins e3aa5c/Card Clover Club Bar 45341b.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 233514 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2335': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999385819522537/207CCD9C85ECB70A339C09170ABB42E139924AA0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780748790926468191/C3163A90948FC777DC7D95D05CB35D2DA32CBD9C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Clover Club. +GMNotes: '' +GUID: 45341b +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Clover Club Bar +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -23.676466 + posY: 1.6884582 + posZ: 7.569984 + rotX: 359.9201 + rotY: 269.999878 + rotZ: 0.0168780833 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 1b The House Always Wins e3aa5c/Card Clover Club Cardroom 9a3039.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 1b The House Always Wins e3aa5c/Card Clover Club Cardroom 9a3039.yaml new file mode 100644 index 000000000..b07ca1582 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 1b The House Always Wins e3aa5c/Card Clover Club Cardroom 9a3039.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 233515 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2335': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999385819522537/207CCD9C85ECB70A339C09170ABB42E139924AA0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780748790926468191/C3163A90948FC777DC7D95D05CB35D2DA32CBD9C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Clover Club. +GMNotes: '' +GUID: 9a3039 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Clover Club Cardroom +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -30.224268 + posY: 1.69649625 + posZ: 3.860006 + rotX: 359.9201 + rotY: 269.9997 + rotZ: 0.0168788675 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 1b The House Always Wins e3aa5c/Card Clover Club Lounge 4b1874.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 1b The House Always Wins e3aa5c/Card Clover Club Lounge 4b1874.yaml new file mode 100644 index 000000000..b1d14b34f --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 1b The House Always Wins e3aa5c/Card Clover Club Lounge 4b1874.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 233513 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2335': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999385819522537/207CCD9C85ECB70A339C09170ABB42E139924AA0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780748790926468191/C3163A90948FC777DC7D95D05CB35D2DA32CBD9C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Clover Club. +GMNotes: '' +GUID: 4b1874 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Clover Club Lounge +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -23.6764431 + posY: 1.68622029 + posZ: -0.0301540587 + rotX: 359.9201 + rotY: 269.998444 + rotZ: 0.0168783367 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 1b The House Always Wins e3aa5c/Card Clover Club Pit Boss de3bd5.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 1b The House Always Wins e3aa5c/Card Clover Club Pit Boss de3bd5.yaml new file mode 100644 index 000000000..a40895b61 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 1b The House Always Wins e3aa5c/Card Clover Club Pit Boss de3bd5.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 232805 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: Criminal. Elite. +GMNotes: '' +GUID: de3bd5 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Clover Club Pit Boss +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -23.676548 + posY: 1.68510151 + posZ: -3.8300283 + rotX: 359.9201 + rotY: 269.9996 + rotZ: 0.0168767031 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 1b The House Always Wins e3aa5c/Card La Bella Luna 7faf81.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 1b The House Always Wins e3aa5c/Card La Bella Luna 7faf81.yaml new file mode 100644 index 000000000..2f796e5a6 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 1b The House Always Wins e3aa5c/Card La Bella Luna 7faf81.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 233512 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2335': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999385819522537/207CCD9C85ECB70A339C09170ABB42E139924AA0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780748790926468191/C3163A90948FC777DC7D95D05CB35D2DA32CBD9C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Arkham. +GMNotes: '' +GUID: 7faf81 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: La Bella Luna +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -17.1199112 + posY: 1.67707765 + posZ: -0.0300252717 + rotX: 359.9201 + rotY: 269.999878 + rotZ: 0.0168760158 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 1b The House Always Wins e3aa5c/Card Scenario 70df0b.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 1b The House Always Wins e3aa5c/Card Scenario 70df0b.yaml new file mode 100644 index 000000000..a9e6a0fdc --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 1b The House Always Wins e3aa5c/Card Scenario 70df0b.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 233500 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2335': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999385819522537/207CCD9C85ECB70A339C09170ABB42E139924AA0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780748790926468191/C3163A90948FC777DC7D95D05CB35D2DA32CBD9C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: The House Always Wins +GMNotes: '' +GUID: 70df0b +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Scenario +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.955918 + posY: 1.655648 + posZ: -10.4412861 + rotX: 359.919739 + rotY: 269.997345 + rotZ: 0.0168444663 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 1b The House Always Wins e3aa5c/Custom_Model_Bag Set-aside 52f8d5.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 1b The House Always Wins e3aa5c/Custom_Model_Bag Set-aside 52f8d5.yaml new file mode 100644 index 000000000..4e2c824af --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 1b The House Always Wins e3aa5c/Custom_Model_Bag Set-aside 52f8d5.yaml @@ -0,0 +1,62 @@ +Autoraise: true +ColorDiffuse: + b: 0.02148666 + g: 0.00100758043 + r: 0.02148666 +ContainedObjects: +- !include 'Custom_Model_Bag Set-aside 52f8d5/Card Dr. Henry Armitage 66197b.yaml' +- !include 'Custom_Model_Bag Set-aside 52f8d5/Deck Back Hall Doorways 3c2863.yaml' +- !include 'Custom_Model_Bag Set-aside 52f8d5/Card Dr. Francis Morgan f03306.yaml' +- !include 'Custom_Model_Bag Set-aside 52f8d5/Card Peter Clover 8359a3.yaml' +- !include 'Custom_Model_Bag Set-aside 52f8d5/Card Darkened Hall 911f8c.yaml' +- !include 'Custom_Model_Bag Set-aside 52f8d5/Deck Striking Fear cbbe81.yaml' +- !include 'Custom_Model_Bag Set-aside 52f8d5/Deck Hideous Abominations a70139.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 House Always Wins +GMNotes: '' +GUID: 52f8d5 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +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.69638085 + posY: 1.55831718 + posZ: 14.2788515 + rotX: 359.9551 + rotY: 224.997986 + rotZ: 0.06867713 + scaleX: 2.0 + scaleY: 2.0 + scaleZ: 2.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 1b The House Always Wins e3aa5c/Custom_Model_Bag Set-aside 52f8d5/Card Darkened Hall 911f8c.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 1b The House Always Wins e3aa5c/Custom_Model_Bag Set-aside 52f8d5/Card Darkened Hall 911f8c.yaml new file mode 100644 index 000000000..03a6c5106 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 1b The House Always Wins e3aa5c/Custom_Model_Bag Set-aside 52f8d5/Card Darkened Hall 911f8c.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 233516 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2335': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999385819522537/207CCD9C85ECB70A339C09170ABB42E139924AA0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780748790926468191/C3163A90948FC777DC7D95D05CB35D2DA32CBD9C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Clover Club. +GMNotes: '' +GUID: 911f8c +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Darkened Hall +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -22.47617 + posY: 3.64895749 + posZ: 20.61091 + rotX: 359.9327 + rotY: 269.999725 + rotZ: 0.0142374244 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 1b The House Always Wins e3aa5c/Custom_Model_Bag Set-aside 52f8d5/Card Dr. Francis Morgan f03306.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 1b The House Always Wins e3aa5c/Custom_Model_Bag Set-aside 52f8d5/Card Dr. Francis Morgan f03306.yaml new file mode 100644 index 000000000..ddd98c6f4 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 1b The House Always Wins e3aa5c/Custom_Model_Bag Set-aside 52f8d5/Card Dr. Francis Morgan f03306.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Professor of Archaeology +GMNotes: '' +GUID: f03306 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Dr. Francis Morgan +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -21.8569336 + posY: 3.65409374 + posZ: 21.708086 + rotX: 359.920135 + rotY: 269.999451 + rotZ: 0.0168820117 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 1b The House Always Wins e3aa5c/Custom_Model_Bag Set-aside 52f8d5/Card Dr. Henry Armitage 66197b.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 1b The House Always Wins e3aa5c/Custom_Model_Bag Set-aside 52f8d5/Card Dr. Henry Armitage 66197b.yaml new file mode 100644 index 000000000..9050f7dcd --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 1b The House Always Wins e3aa5c/Custom_Model_Bag Set-aside 52f8d5/Card Dr. Henry Armitage 66197b.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: The Head Librarian +GMNotes: '' +GUID: 66197b +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Dr. Henry Armitage +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -21.2456284 + posY: 3.64818525 + posZ: 21.83682 + rotX: 359.920044 + rotY: 269.9981 + rotZ: 0.0168775246 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 1b The House Always Wins e3aa5c/Custom_Model_Bag Set-aside 52f8d5/Card Peter Clover 8359a3.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 1b The House Always Wins e3aa5c/Custom_Model_Bag Set-aside 52f8d5/Card Peter Clover 8359a3.yaml new file mode 100644 index 000000000..9f721c265 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 1b The House Always Wins e3aa5c/Custom_Model_Bag Set-aside 52f8d5/Card Peter Clover 8359a3.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 234206 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2342': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: Holding All the Cards +GMNotes: '' +GUID: 8359a3 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Peter Clover +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -21.6830788 + posY: 3.64838815 + posZ: 21.87577 + rotX: 359.920074 + rotY: 269.999969 + rotZ: 0.0168686882 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 1b The House Always Wins e3aa5c/Custom_Model_Bag Set-aside 52f8d5/Deck Back Hall Doorways 3c2863.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 1b The House Always Wins e3aa5c/Custom_Model_Bag Set-aside 52f8d5/Deck Back Hall Doorways 3c2863.yaml new file mode 100644 index 000000000..ffa6efae1 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 1b The House Always Wins e3aa5c/Custom_Model_Bag Set-aside 52f8d5/Deck Back Hall Doorways 3c2863.yaml @@ -0,0 +1,172 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 233519 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2335': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999385819522537/207CCD9C85ECB70A339C09170ABB42E139924AA0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780748790926468191/C3163A90948FC777DC7D95D05CB35D2DA32CBD9C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Clover Club. + GMNotes: '' + GUID: ce6ce6 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Back Hall Doorway + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -21.227375 + posY: 1.58556712 + posZ: 9.342328 + rotX: 359.920135 + rotY: 269.998932 + rotZ: 0.0168791767 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233518 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2335': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999385819522537/207CCD9C85ECB70A339C09170ABB42E139924AA0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780748790926468191/C3163A90948FC777DC7D95D05CB35D2DA32CBD9C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Clover Club. + GMNotes: '' + GUID: fc63df + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Back Hall Doorway + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -21.4910049 + posY: 1.74459851 + posZ: 9.057136 + rotX: 359.920135 + rotY: 269.99884 + rotZ: 0.0168774687 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233517 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2335': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999385819522537/207CCD9C85ECB70A339C09170ABB42E139924AA0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780748790926468191/C3163A90948FC777DC7D95D05CB35D2DA32CBD9C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Clover Club. + GMNotes: '' + GUID: 3cf7f9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Back Hall Doorway + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -21.0300236 + posY: 1.75582182 + posZ: 9.689247 + rotX: 359.920258 + rotY: 269.995636 + rotZ: 0.230649278 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2335': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999385819522537/207CCD9C85ECB70A339C09170ABB42E139924AA0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780748790926468191/C3163A90948FC777DC7D95D05CB35D2DA32CBD9C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 233519 +- 233518 +- 233517 +Description: '' +GMNotes: '' +GUID: 3c2863 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Back Hall Doorways +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -21.9918461 + posY: 3.64838886 + posZ: 21.0719 + rotX: 359.920074 + rotY: 269.998657 + rotZ: 0.0168636665 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 1b The House Always Wins e3aa5c/Custom_Model_Bag Set-aside 52f8d5/Deck Hideous Abominations a70139.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 1b The House Always Wins e3aa5c/Custom_Model_Bag Set-aside 52f8d5/Deck Hideous Abominations a70139.yaml new file mode 100644 index 000000000..2e579010a --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 1b The House Always Wins e3aa5c/Custom_Model_Bag Set-aside 52f8d5/Deck Hideous Abominations a70139.yaml @@ -0,0 +1,172 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 232831 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Abomination. + GMNotes: '' + GUID: 919fa0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Servant of the Lurker + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.69560742 + posY: 1.54953551 + posZ: 4.974127 + rotX: 359.920135 + rotY: 269.999939 + rotZ: 0.0168759543 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232830 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Abomination. + GMNotes: '' + GUID: de3bd5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Conglomeration of Spheres + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.816169 + posY: 1.55043364 + posZ: 8.595026 + rotX: 359.920135 + rotY: 269.999878 + rotZ: 0.0168762449 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232830 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Abomination. + GMNotes: '' + GUID: 1b1dd5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Conglomeration of Spheres + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.72422314 + posY: 1.70678663 + posZ: 8.640354 + rotX: 359.920135 + rotY: 269.999878 + rotZ: 0.0168763362 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 232831 +- 232830 +- 232830 +Description: '' +GMNotes: '' +GUID: a70139 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Hideous Abominations +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -21.7579136 + posY: 3.66807055 + posZ: 21.73338 + rotX: 0.07986404 + rotY: 269.999542 + rotZ: 179.672668 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 1b The House Always Wins e3aa5c/Custom_Model_Bag Set-aside 52f8d5/Deck Striking Fear cbbe81.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 1b The House Always Wins e3aa5c/Custom_Model_Bag Set-aside 52f8d5/Deck Striking Fear cbbe81.yaml new file mode 100644 index 000000000..bd7e6b6cd --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 1b The House Always Wins e3aa5c/Custom_Model_Bag Set-aside 52f8d5/Deck Striking Fear cbbe81.yaml @@ -0,0 +1,344 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- 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 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: f5c831 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: 97416f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: 0f4202 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: c70601 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: ab3719 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: 435a47 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: ab3719 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Rotting Remains + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 31.17963 + posY: 1.65808344 + posZ: -33.1674423 + rotX: 359.93277 + rotY: 270.000183 + rotZ: 0.0141536333 + 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 + UniqueBack: false +DeckIDs: +- 231718 +- 231718 +- 231717 +- 231717 +- 231716 +- 231716 +- 231716 +Description: '' +GMNotes: '' +GUID: cbbe81 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Striking Fear +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -22.5036316 + posY: 3.66408324 + posZ: 21.211874 + rotX: 359.920074 + rotY: 270.000031 + rotZ: 180.016891 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 1b The House Always Wins e3aa5c/Custom_Tile 7234af.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 1b The House Always Wins e3aa5c/Custom_Tile 7234af.yaml new file mode 100644 index 000000000..de3610f86 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 1b The House Always Wins e3aa5c/Custom_Tile 7234af.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 7234af +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.2217 + posY: 1.60966909 + posZ: -0.09890021 + rotX: 359.9201 + rotY: 269.995148 + rotZ: 0.0169070885 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 1b The House Always Wins e3aa5c/Custom_Tile 8fffb7.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 1b The House Always Wins e3aa5c/Custom_Tile 8fffb7.yaml new file mode 100644 index 000000000..aa4cb22ba --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 1b The House Always Wins e3aa5c/Custom_Tile 8fffb7.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 8fffb7 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.3821 + posY: 1.62021017 + posZ: 1.79079986 + rotX: 359.93158 + rotY: 314.999969 + rotZ: 359.955444 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 1b The House Always Wins e3aa5c/Custom_Tile b68edf.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 1b The House Always Wins e3aa5c/Custom_Tile b68edf.yaml new file mode 100644 index 000000000..dc0e074ee --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 1b The House Always Wins e3aa5c/Custom_Tile b68edf.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: b68edf +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.1598 + posY: 1.62100828 + posZ: 5.554301 + rotX: 359.955444 + rotY: 224.9998 + rotZ: 0.06840351 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 1b The House Always Wins e3aa5c/Custom_Tile f797c9.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 1b The House Always Wins e3aa5c/Custom_Tile f797c9.yaml new file mode 100644 index 000000000..f7c82fb58 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 1b The House Always Wins e3aa5c/Custom_Tile f797c9.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: f797c9 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.61565244 + posZ: 3.86000013 + rotX: 359.983124 + rotY: 0.000118068157 + rotZ: 359.920044 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 1b The House Always Wins e3aa5c/Custom_Tile The Dunwich Legacy b5928a.ttslua b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 1b The House Always Wins e3aa5c/Custom_Tile The Dunwich Legacy b5928a.ttslua new file mode 100644 index 000000000..cfa110e20 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 1b The House Always Wins e3aa5c/Custom_Tile The Dunwich Legacy b5928a.ttslua @@ -0,0 +1,21 @@ +name = 'The Dunwich Legacy' + +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 Dunwich Legacy df7121/Custom_Model_Bag 1b The House Always Wins e3aa5c/Custom_Tile The Dunwich Legacy b5928a.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 1b The House Always Wins e3aa5c/Custom_Tile The Dunwich Legacy b5928a.yaml new file mode 100644 index 000000000..0c13a9ac8 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 1b The House Always Wins e3aa5c/Custom_Tile The Dunwich Legacy b5928a.yaml @@ -0,0 +1,42 @@ +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 +GMNotes: '' +GUID: b5928a +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Tile The Dunwich Legacy b5928a.ttslua' +LuaScriptState: '' +Name: Custom_Tile +Nickname: The Dunwich Legacy +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.84430027 + posY: 1.58257043 + posZ: -14.5511045 + rotX: 359.919739 + rotY: 270.0014 + rotZ: 0.01683589 + scaleX: 2.2 + scaleY: 1.0 + scaleZ: 2.2 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 1b The House Always Wins e3aa5c/Deck Act Deck 0f9069.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 1b The House Always Wins e3aa5c/Deck Act Deck 0f9069.yaml new file mode 100644 index 000000000..970fee8c8 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 1b The House Always Wins e3aa5c/Deck Act Deck 0f9069.yaml @@ -0,0 +1,215 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 233312 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2333': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296027643/326876D4B46DF777AA1293989DEEE6A810ED027B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999385819527677/3AD8DFFFBFF54DB098AD3E00BB7E75DA0590FE8B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 3 + GMNotes: '' + GUID: '145366' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Fold + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -12.0053425 + posY: 1.574654 + posZ: 15.7123489 + rotX: 0.01722809 + rotY: 180.001465 + rotZ: 0.08352321 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233311 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2333': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296027643/326876D4B46DF777AA1293989DEEE6A810ED027B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999385819527677/3AD8DFFFBFF54DB098AD3E00BB7E75DA0590FE8B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 3 + GMNotes: '' + GUID: fdc9d7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: All In + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -12.021328 + posY: 1.86045659 + posZ: 15.968605 + rotX: 4.6276927 + rotY: 180.01973 + rotZ: 0.0716553256 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233310 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2333': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296027643/326876D4B46DF777AA1293989DEEE6A810ED027B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999385819527677/3AD8DFFFBFF54DB098AD3E00BB7E75DA0590FE8B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 2 + GMNotes: '' + GUID: 7f8d84 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Skin Game + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -12.1734371 + posY: 1.843925 + posZ: 15.5026646 + rotX: 356.2014 + rotY: 179.999069 + rotZ: 0.07996937 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233309 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2333': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296027643/326876D4B46DF777AA1293989DEEE6A810ED027B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999385819527677/3AD8DFFFBFF54DB098AD3E00BB7E75DA0590FE8B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 1 + GMNotes: '' + GUID: 1b5f59 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Beginner's Luck + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -12.32052 + posY: 1.72727728 + posZ: 15.8954 + rotX: 0.0168742444 + rotY: 180.000061 + rotZ: 0.0798831657 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2333': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296027643/326876D4B46DF777AA1293989DEEE6A810ED027B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999385819527677/3AD8DFFFBFF54DB098AD3E00BB7E75DA0590FE8B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 233312 +- 233311 +- 233310 +- 233309 +Description: '' +GMNotes: '' +GUID: 0f9069 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Act Deck +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.68841553 + posY: 1.65349436 + posZ: -5.048525 + rotX: 0.0167861544 + rotY: 180.034988 + rotZ: 0.08026857 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 1b The House Always Wins e3aa5c/Deck Agenda Deck acc7ef.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 1b The House Always Wins e3aa5c/Deck Agenda Deck acc7ef.yaml new file mode 100644 index 000000000..e545db585 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 1b The House Always Wins e3aa5c/Deck Agenda Deck acc7ef.yaml @@ -0,0 +1,172 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 233308 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2333': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296027643/326876D4B46DF777AA1293989DEEE6A810ED027B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999385819527677/3AD8DFFFBFF54DB098AD3E00BB7E75DA0590FE8B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 3 + GMNotes: '' + GUID: 5d9d42 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Chaos in the Clover Club + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -11.2357025 + posY: 1.57601047 + posZ: 24.19253 + rotX: 0.0168714039 + rotY: 180.000031 + rotZ: 0.07987929 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233307 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2333': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296027643/326876D4B46DF777AA1293989DEEE6A810ED027B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999385819527677/3AD8DFFFBFF54DB098AD3E00BB7E75DA0590FE8B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 2 + GMNotes: '' + GUID: f53012 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Underground Muscle + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -11.2002144 + posY: 1.72502458 + posZ: 23.8849373 + rotX: -0.00128136319 + rotY: 178.8931 + rotZ: 0.0670245439 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233306 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2333': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296027643/326876D4B46DF777AA1293989DEEE6A810ED027B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999385819527677/3AD8DFFFBFF54DB098AD3E00BB7E75DA0590FE8B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 1 + GMNotes: '' + GUID: 1b5f59 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Clover Club + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.271726966 + posY: 1.70811808 + posZ: 28.77568 + rotX: 358.3055 + rotY: 269.97287 + rotZ: 1.26749182 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2333': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296027643/326876D4B46DF777AA1293989DEEE6A810ED027B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999385819527677/3AD8DFFFBFF54DB098AD3E00BB7E75DA0590FE8B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 233308 +- 233307 +- 233306 +Description: '' +GMNotes: '' +GUID: acc7ef +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Agenda Deck +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.72459459 + posY: 1.65664113 + posZ: 0.373330146 + rotX: 0.0168383867 + rotY: 179.997513 + rotZ: 0.08025746 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 1b The House Always Wins e3aa5c/Deck Encounter Deck 50fc37.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 1b The House Always Wins e3aa5c/Deck Encounter Deck 50fc37.yaml new file mode 100644 index 000000000..be955ff28 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 1b The House Always Wins e3aa5c/Deck Encounter Deck 50fc37.yaml @@ -0,0 +1,867 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 232820 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: a8cc8c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Twist of Fate + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.198071 + posY: 1.55145156 + posZ: 9.125637 + rotX: 359.920135 + rotY: 269.999939 + rotZ: 0.01687778 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232820 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: 9d6b4c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Twist of Fate + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.70683336 + posY: 1.70854175 + posZ: 9.092162 + rotX: 359.920135 + rotY: 269.999939 + rotZ: 0.01687769 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232820 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: a8cc8c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Twist of Fate + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.70645475 + posY: 1.72578371 + posZ: 9.100254 + rotX: 359.921539 + rotY: 269.999939 + rotZ: 0.0167463012 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232819 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: de3bd5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Cursed Luck + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.15651965 + posY: 1.55232441 + posZ: 11.89302 + rotX: 359.920135 + rotY: 269.999939 + rotZ: 0.0168776158 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232819 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: 64281b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Cursed Luck + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.19927931 + posY: 1.7088623 + posZ: 11.9196167 + rotX: 359.920135 + rotY: 269.999939 + rotZ: 0.0168775618 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232819 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: de3bd5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Cursed Luck + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.230147 + posY: 1.72610009 + posZ: 11.971447 + rotX: 359.92 + rotY: 269.999939 + rotZ: 0.0164669342 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232809 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: de3bd5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Arousing Suspicions + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.94530869 + posY: 1.55160308 + posZ: 13.1780157 + rotX: 359.920135 + rotY: 270.0 + rotZ: 0.0168776065 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232809 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: f3b1ad + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Arousing Suspicions + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.473675 + posY: 1.708686 + posZ: 13.1101532 + rotX: 359.920135 + rotY: 270.0 + rotZ: 0.01687759 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232808 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Poison. Illicit. + GMNotes: '' + GUID: de3bd5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Something in the Drinks + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 4.356045 + posY: 1.5514009 + posZ: 14.4359617 + rotX: 359.920135 + rotY: 269.999939 + rotZ: 0.0168756079 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232808 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Poison. Illicit. + GMNotes: '' + GUID: 41c162 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Something in the Drinks + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 4.11569738 + posY: 1.70826149 + posZ: 14.8454256 + rotX: 359.920135 + rotY: 269.999939 + rotZ: 0.0168757755 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232826 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Tactic. + GMNotes: '' + GUID: fb489f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Hunted Down + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.980493 + posY: 1.55055571 + posZ: 5.05313349 + rotX: 359.920135 + rotY: 269.999939 + rotZ: 0.016877586 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232826 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Tactic. + GMNotes: '' + GUID: 5da81c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Hunted Down + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.06432152 + posY: 1.70658684 + posZ: 4.754894 + rotX: 359.920135 + rotY: 269.999939 + rotZ: 0.01687765 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232825 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: "\tHuman. Criminal. Syndicate." + GMNotes: '' + GUID: 5b2e99 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Mobster + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.824686 + posY: 1.55165482 + posZ: 8.04818 + rotX: 359.920135 + rotY: 269.999939 + rotZ: 0.0168768317 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232825 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: "\tHuman. Criminal. Syndicate." + GMNotes: '' + GUID: a5bca1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Mobster + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.079666 + posY: 1.707689 + posZ: 7.82385826 + rotX: 359.920135 + rotY: 269.999939 + rotZ: 0.0168767981 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232824 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: "\tHuman. Criminal. Syndicate." + GMNotes: '' + GUID: de3bd5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: O'Bannion's Thug + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.137052 + posY: 1.700631 + posZ: 4.79863548 + rotX: 359.920135 + rotY: 269.999878 + rotZ: 0.016896477 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232824 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: "\tHuman. Criminal. Syndicate." + GMNotes: '' + GUID: de3bd5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: O'Bannion's Thug + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.09011388 + posY: 1.71127486 + posZ: 4.866368 + rotX: 359.9204 + rotY: 269.999878 + rotZ: 0.0165366847 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231712 + 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 + UniqueBack: false + Description: Creature. + GMNotes: '' + GUID: ab3719 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Swarm of Rats + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 15.456192 + posY: 1.53138053 + posZ: -0.8908986 + rotX: 359.92038 + rotY: 270.0 + rotZ: 0.0147123663 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231712 + 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 + UniqueBack: false + Description: Creature. + GMNotes: '' + GUID: a2cf85 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Swarm of Rats + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 15.4186563 + posY: 1.68472993 + posZ: -0.738109052 + rotX: 359.913422 + rotY: 270.000122 + rotZ: 0.0100070881 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231712 + 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 + UniqueBack: false + Description: Creature. + GMNotes: '' + GUID: ab3719 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Swarm of Rats + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 15.4186554 + posY: 1.69875109 + posZ: -0.738129 + rotX: 359.918427 + rotY: 270.0001 + rotZ: 0.0155182732 + 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 + UniqueBack: false + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 232820 +- 232820 +- 232820 +- 232819 +- 232819 +- 232819 +- 232809 +- 232809 +- 232808 +- 232808 +- 232826 +- 232826 +- 232825 +- 232825 +- 232824 +- 232824 +- 231712 +- 231712 +- 231712 +Description: '' +GMNotes: '' +GUID: 50fc37 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Encounter Deck +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.9274826 + posY: 1.71308577 + posZ: 5.757152 + rotX: 359.919739 + rotY: 269.9994 + rotZ: 180.016815 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 2 The Miskatonic Museum 87adbf.ttslua b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 2 The Miskatonic Museum 87adbf.ttslua new file mode 100644 index 000000000..54d591927 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 2 The Miskatonic Museum 87adbf.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.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 Dunwich Legacy df7121/Custom_Model_Bag 2 The Miskatonic Museum 87adbf.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 2 The Miskatonic Museum 87adbf.yaml new file mode 100644 index 000000000..870aa106e --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 2 The Miskatonic Museum 87adbf.yaml @@ -0,0 +1,89 @@ +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 2 The Miskatonic Museum 87adbf/Custom_Model_Bag Set-aside + 0727ee.yaml' +- !include 'Custom_Model_Bag 2 The Miskatonic Museum 87adbf/Card Exhibit Hall 0b0c58.yaml' +- !include 'Custom_Model_Bag 2 The Miskatonic Museum 87adbf/Card Security Office 2eb7a1.yaml' +- !include 'Custom_Model_Bag 2 The Miskatonic Museum 87adbf/Custom_Tile 44b0c5.yaml' +- !include 'Custom_Model_Bag 2 The Miskatonic Museum 87adbf/Custom_Tile 5a6870.yaml' +- !include 'Custom_Model_Bag 2 The Miskatonic Museum 87adbf/Deck Encounter Deck 62c028.yaml' +- !include 'Custom_Model_Bag 2 The Miskatonic Museum 87adbf/Card Museum Halls 633816.yaml' +- !include 'Custom_Model_Bag 2 The Miskatonic Museum 87adbf/Deck Act Deck 6571a3.yaml' +- !include 'Custom_Model_Bag 2 The Miskatonic Museum 87adbf/Custom_Tile The Miskatonic + Museum 703373.yaml' +- !include 'Custom_Model_Bag 2 The Miskatonic Museum 87adbf/Card Scenario 70df0b.yaml' +- !include 'Custom_Model_Bag 2 The Miskatonic Museum 87adbf/Deck Non-Restricted Exhibit + Halls b24a2a.yaml' +- !include 'Custom_Model_Bag 2 The Miskatonic Museum 87adbf/Card Administration Office + c3915f.yaml' +- !include 'Custom_Model_Bag 2 The Miskatonic Museum 87adbf/Card Museum Entrance cf40fc.yaml' +- !include 'Custom_Model_Bag 2 The Miskatonic Museum 87adbf/Card Administration Office + d2eb25.yaml' +- !include 'Custom_Model_Bag 2 The Miskatonic Museum 87adbf/Deck Agenda Deck dbdfa1.yaml' +- !include 'Custom_Model_Bag 2 The Miskatonic Museum 87adbf/Custom_Tile fa04c2.yaml' +- !include 'Custom_Model_Bag 2 The Miskatonic Museum 87adbf/Card Security Office fcb3e4.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/829135118403751490/58E295C1174102527E7C307F19B0DBBB8431B750/ + MaterialIndex: 3 + MeshURL: https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj + NormalURL: '' + TypeIndex: 6 +Description: The Dunwich Legacy +GMNotes: '' +GUID: 87adbf +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Model_Bag 2 The Miskatonic Museum 87adbf.ttslua' +LuaScriptState: '{"ml":{"0727ee":{"lock":false,"pos":{"x":1.6964,"y":1.5583,"z":14.2788},"rot":{"x":359.9551,"y":224.998,"z":0.0687}},"0b0c58":{"lock":false,"pos":{"x":-5.7816,"y":1.6687,"z":15.6917},"rot":{"x":359.9197,"y":270.0067,"z":180.0168}},"2eb7a1":{"lock":false,"pos":{"x":-21.4944,"y":1.7855,"z":-7.738},"rot":{"x":356.077,"y":270.0019,"z":0.0175}},"44b0c5":{"lock":false,"pos":{"x":-20.5196,"y":1.6101,"z":-0.0882},"rot":{"x":359.9201,"y":269.9942,"z":0.0169}},"5a6870":{"lock":false,"pos":{"x":-23.6765,"y":1.6134,"z":-3.83},"rot":{"x":0.0169,"y":179.9999,"z":0.0799}},"62c028":{"lock":false,"pos":{"x":-3.9268,"y":1.793,"z":5.7571},"rot":{"x":359.9197,"y":270,"z":180.0168}},"633816":{"lock":false,"pos":{"x":-23.6765,"y":1.6862,"z":-0.03},"rot":{"x":359.9201,"y":270,"z":0.0169}},"6571a3":{"lock":false,"pos":{"x":-2.6884,"y":1.6535,"z":-5.0485},"rot":{"x":0.0168,"y":180,"z":0.0803}},"703373":{"lock":false,"pos":{"x":-4.1502,"y":1.5829,"z":-14.7443},"rot":{"x":359.9197,"y":269.9849,"z":0.0169}},"70df0b":{"lock":false,"pos":{"x":-3.9559,"y":1.6556,"z":-10.4412},"rot":{"x":359.9197,"y":269.9999,"z":0.0168}},"b24a2a":{"lock":false,"pos":{"x":-2.4995,"y":1.6602,"z":15.6924},"rot":{"x":359.9197,"y":270.0029,"z":0.0168}},"c3915f":{"lock":false,"pos":{"x":-21.5971,"y":1.7953,"z":7.5353},"rot":{"x":355.8867,"y":269.984,"z":0.0177}},"cf40fc":{"lock":false,"pos":{"x":-17.12,"y":1.6771,"z":-0.03},"rot":{"x":359.9201,"y":269.9999,"z":0.0169}},"d2eb25":{"lock":false,"pos":{"x":-23.6763,"y":1.6884,"z":7.5698},"rot":{"x":359.9185,"y":270.0043,"z":0.0158}},"dbdfa1":{"lock":false,"pos":{"x":-2.7246,"y":1.6566,"z":0.3733},"rot":{"x":0.0168,"y":180,"z":0.0803}},"fa04c2":{"lock":false,"pos":{"x":-23.6765,"y":1.6157,"z":3.86},"rot":{"x":359.9831,"y":0.0001,"z":359.92}},"fcb3e4":{"lock":false,"pos":{"x":-23.6763,"y":1.684,"z":-7.7002},"rot":{"x":359.9186,"y":270.0033,"z":0.0158}}}}' +MaterialIndex: -1 +MeshIndex: -1 +Name: Custom_Model_Bag +Nickname: '2: The Miskatonic Museum' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 13.8736219 + posY: 1.46614921 + posZ: 13.4812727 + rotX: 359.9201 + rotY: 270.018951 + rotZ: 0.0168474745 + scaleX: 2.21 + scaleY: 0.46 + scaleZ: 2.42 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 2 The Miskatonic Museum 87adbf/Card Administration Office c3915f.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 2 The Miskatonic Museum 87adbf/Card Administration Office c3915f.yaml new file mode 100644 index 000000000..34befe65c --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 2 The Miskatonic Museum 87adbf/Card Administration Office c3915f.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 233526 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2335': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999385819522537/207CCD9C85ECB70A339C09170ABB42E139924AA0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780748790926468191/C3163A90948FC777DC7D95D05CB35D2DA32CBD9C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: "\tMiskatonic." +GMNotes: '' +GUID: c3915f +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Administration Office +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -21.59704 + posY: 1.795247 + posZ: 7.53529263 + rotX: 355.882935 + rotY: 269.984253 + rotZ: 0.0169544462 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 2 The Miskatonic Museum 87adbf/Card Administration Office d2eb25.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 2 The Miskatonic Museum 87adbf/Card Administration Office d2eb25.yaml new file mode 100644 index 000000000..57d4aeff0 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 2 The Miskatonic Museum 87adbf/Card Administration Office d2eb25.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 233525 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2335': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999385819522537/207CCD9C85ECB70A339C09170ABB42E139924AA0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780748790926468191/C3163A90948FC777DC7D95D05CB35D2DA32CBD9C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: "\tMiskatonic." +GMNotes: '' +GUID: d2eb25 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Administration Office +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -23.67636 + posY: 1.68844891 + posZ: 7.569825 + rotX: 359.920258 + rotY: 270.001678 + rotZ: 0.0162533633 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 2 The Miskatonic Museum 87adbf/Card Exhibit Hall 0b0c58.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 2 The Miskatonic Museum 87adbf/Card Exhibit Hall 0b0c58.yaml new file mode 100644 index 000000000..2aeb0a037 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 2 The Miskatonic Museum 87adbf/Card Exhibit Hall 0b0c58.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 233532 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2335': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999385819522537/207CCD9C85ECB70A339C09170ABB42E139924AA0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780748790926468191/C3163A90948FC777DC7D95D05CB35D2DA32CBD9C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Miskatonic. Exhibit. +GMNotes: '' +GUID: 0b0c58 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Exhibit Hall +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -5.781601 + posY: 1.66870725 + posZ: 15.6917019 + rotX: 359.919739 + rotY: 270.006683 + rotZ: 180.016815 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 2 The Miskatonic Museum 87adbf/Card Museum Entrance cf40fc.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 2 The Miskatonic Museum 87adbf/Card Museum Entrance cf40fc.yaml new file mode 100644 index 000000000..90024550f --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 2 The Miskatonic Museum 87adbf/Card Museum Entrance cf40fc.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 233521 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2335': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999385819522537/207CCD9C85ECB70A339C09170ABB42E139924AA0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780748790926468191/C3163A90948FC777DC7D95D05CB35D2DA32CBD9C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: "\tMiskatonic." +GMNotes: '' +GUID: cf40fc +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Museum Entrance +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -17.1199951 + posY: 1.67707777 + posZ: -0.0300160516 + rotX: 359.9201 + rotY: 269.999969 + rotZ: 0.0168769956 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 2 The Miskatonic Museum 87adbf/Card Museum Halls 633816.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 2 The Miskatonic Museum 87adbf/Card Museum Halls 633816.yaml new file mode 100644 index 000000000..bfe586e15 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 2 The Miskatonic Museum 87adbf/Card Museum Halls 633816.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 233522 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2335': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999385819522537/207CCD9C85ECB70A339C09170ABB42E139924AA0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780748790926468191/C3163A90948FC777DC7D95D05CB35D2DA32CBD9C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: "\tMiskatonic." +GMNotes: '' +GUID: '633816' +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Museum Halls +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -23.6765 + posY: 1.68622029 + posZ: -0.0300461762 + rotX: 359.9201 + rotY: 269.999146 + rotZ: 0.0168775469 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 2 The Miskatonic Museum 87adbf/Card Scenario 70df0b.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 2 The Miskatonic Museum 87adbf/Card Scenario 70df0b.yaml new file mode 100644 index 000000000..981c67068 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 2 The Miskatonic Museum 87adbf/Card Scenario 70df0b.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 233520 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2335': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999385819522537/207CCD9C85ECB70A339C09170ABB42E139924AA0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780748790926468191/C3163A90948FC777DC7D95D05CB35D2DA32CBD9C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: The Miskatonic Museum +GMNotes: '' +GUID: 70df0b +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Scenario +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.95590043 + posY: 1.655648 + posZ: -10.4412012 + rotX: 359.919739 + rotY: 269.999939 + rotZ: 0.016841121 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 2 The Miskatonic Museum 87adbf/Card Security Office 2eb7a1.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 2 The Miskatonic Museum 87adbf/Card Security Office 2eb7a1.yaml new file mode 100644 index 000000000..bd25d7409 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 2 The Miskatonic Museum 87adbf/Card Security Office 2eb7a1.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 233524 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2335': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999385819522537/207CCD9C85ECB70A339C09170ABB42E139924AA0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780748790926468191/C3163A90948FC777DC7D95D05CB35D2DA32CBD9C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: "\tMiskatonic." +GMNotes: '' +GUID: 2eb7a1 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Security Office +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -21.49439 + posY: 1.78545237 + posZ: -7.737999 + rotX: 356.073242 + rotY: 270.001831 + rotZ: 0.0169220325 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 2 The Miskatonic Museum 87adbf/Card Security Office fcb3e4.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 2 The Miskatonic Museum 87adbf/Card Security Office fcb3e4.yaml new file mode 100644 index 000000000..c2d92c1bb --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 2 The Miskatonic Museum 87adbf/Card Security Office fcb3e4.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 233523 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2335': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999385819522537/207CCD9C85ECB70A339C09170ABB42E139924AA0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780748790926468191/C3163A90948FC777DC7D95D05CB35D2DA32CBD9C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: "\tMiskatonic." +GMNotes: '' +GUID: fcb3e4 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Security Office +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -23.676302 + posY: 1.68395281 + posZ: -7.70020151 + rotX: 359.9202 + rotY: 270.0033 + rotZ: 0.0162746 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 2 The Miskatonic Museum 87adbf/Custom_Model_Bag Set-aside 0727ee.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 2 The Miskatonic Museum 87adbf/Custom_Model_Bag Set-aside 0727ee.yaml new file mode 100644 index 000000000..3006d9e82 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 2 The Miskatonic Museum 87adbf/Custom_Model_Bag Set-aside 0727ee.yaml @@ -0,0 +1,59 @@ +Autoraise: true +ColorDiffuse: + b: 0.02148666 + g: 0.00100758043 + r: 0.02148666 +ContainedObjects: +- !include 'Custom_Model_Bag Set-aside 0727ee/Card Shadow-spawned de3bd5.yaml' +- !include 'Custom_Model_Bag Set-aside 0727ee/Card The Necronomicon d45f10.yaml' +- !include 'Custom_Model_Bag Set-aside 0727ee/Card Adam Lynch 40c516.yaml' +- !include 'Custom_Model_Bag Set-aside 0727ee/Card Harold Walsted e88ba8.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 Miskatonic Museum +GMNotes: '' +GUID: 0727ee +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +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.69640076 + posY: 1.5583173 + posZ: 14.2788019 + rotX: 359.955139 + rotY: 224.997986 + rotZ: 0.06867355 + scaleX: 2.0 + scaleY: 2.0 + scaleZ: 2.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 2 The Miskatonic Museum 87adbf/Custom_Model_Bag Set-aside 0727ee/Card Adam Lynch 40c516.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 2 The Miskatonic Museum 87adbf/Custom_Model_Bag Set-aside 0727ee/Card Adam Lynch 40c516.yaml new file mode 100644 index 000000000..849c56e9c --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 2 The Miskatonic Museum 87adbf/Custom_Model_Bag Set-aside 0727ee/Card Adam Lynch 40c516.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 233733 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2337': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: Museum Security +GMNotes: '' +GUID: 40c516 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Adam Lynch +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -12.0281973 + posY: 3.63454843 + posZ: 21.9249325 + rotX: 359.97287 + rotY: 269.999573 + rotZ: 0.0169146843 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 2 The Miskatonic Museum 87adbf/Custom_Model_Bag Set-aside 0727ee/Card Harold Walsted e88ba8.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 2 The Miskatonic Museum 87adbf/Custom_Model_Bag Set-aside 0727ee/Card Harold Walsted e88ba8.yaml new file mode 100644 index 000000000..af3b06f8f --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 2 The Miskatonic Museum 87adbf/Custom_Model_Bag Set-aside 0727ee/Card Harold Walsted e88ba8.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 233732 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2337': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: Curator of the Museum +GMNotes: '' +GUID: e88ba8 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Harold Walsted +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -11.7163563 + posY: 3.634717 + posZ: 23.3817177 + rotX: 359.920044 + rotY: 269.999969 + rotZ: 0.0169034433 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 2 The Miskatonic Museum 87adbf/Custom_Model_Bag Set-aside 0727ee/Card Shadow-spawned de3bd5.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 2 The Miskatonic Museum 87adbf/Custom_Model_Bag Set-aside 0727ee/Card Shadow-spawned de3bd5.yaml new file mode 100644 index 000000000..ab6f88f78 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 2 The Miskatonic Museum 87adbf/Custom_Model_Bag Set-aside 0727ee/Card Shadow-spawned de3bd5.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 232836 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: "\tPower." +GMNotes: '' +GUID: de3bd5 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Shadow-spawned +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -11.1775236 + posY: 3.63393068 + posZ: 22.9866619 + rotX: 359.920044 + rotY: 270.0 + rotZ: 0.0169075951 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 2 The Miskatonic Museum 87adbf/Custom_Model_Bag Set-aside 0727ee/Card The Necronomicon d45f10.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 2 The Miskatonic Museum 87adbf/Custom_Model_Bag Set-aside 0727ee/Card The Necronomicon d45f10.yaml new file mode 100644 index 000000000..e4192df58 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 2 The Miskatonic Museum 87adbf/Custom_Model_Bag Set-aside 0727ee/Card The Necronomicon d45f10.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Olaus Wormius Translation +GMNotes: '' +GUID: d45f10 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: The Necronomicon +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -10.6168613 + posY: 3.63358521 + posZ: 24.2633457 + rotX: 359.920044 + rotY: 269.999939 + rotZ: 0.01686501 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 2 The Miskatonic Museum 87adbf/Custom_Tile 44b0c5.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 2 The Miskatonic Museum 87adbf/Custom_Tile 44b0c5.yaml new file mode 100644 index 000000000..7e7def839 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 2 The Miskatonic Museum 87adbf/Custom_Tile 44b0c5.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 44b0c5 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Tile +Nickname: '' +Snap: true +States: + '1': + 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: '' + GMNotes: '' + GUID: 7234af + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Custom_Tile + Nickname: '' + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -20.5196 + posY: 1.61008763 + posZ: -0.08820011 + rotX: 359.9201 + rotY: 269.994232 + rotZ: 0.0168839954 + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.5195942 + posY: 1.61008751 + posZ: -0.0882007852 + rotX: 359.9201 + rotY: 269.994141 + rotZ: 0.0169083569 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 2 The Miskatonic Museum 87adbf/Custom_Tile 5a6870.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 2 The Miskatonic Museum 87adbf/Custom_Tile 5a6870.yaml new file mode 100644 index 000000000..a258ee652 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 2 The Miskatonic Museum 87adbf/Custom_Tile 5a6870.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 5a6870 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Custom_Tile + Nickname: '' + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -23.6765 + posY: 1.61338758 + posZ: -3.83000016 + rotX: 0.01686909 + rotY: 179.999863 + rotZ: 0.07996325 + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.6765 + posY: 1.6133877 + posZ: -3.83000016 + rotX: 0.0168719366 + rotY: 179.999878 + rotZ: 0.0799393952 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 2 The Miskatonic Museum 87adbf/Custom_Tile fa04c2.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 2 The Miskatonic Museum 87adbf/Custom_Tile fa04c2.yaml new file mode 100644 index 000000000..1fda1bf9e --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 2 The Miskatonic Museum 87adbf/Custom_Tile fa04c2.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: fa04c2 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 6dc30c + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Custom_Tile + Nickname: '' + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -23.6765 + posY: 1.6156522 + posZ: 3.86 + rotX: 359.983124 + rotY: 2.7307342e-05 + rotZ: 359.92 + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.6765 + posY: 1.61565232 + posZ: 3.86 + rotX: 359.983124 + rotY: 0.000176851347 + rotZ: 359.920074 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 2 The Miskatonic Museum 87adbf/Custom_Tile The Miskatonic Museum 703373.ttslua b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 2 The Miskatonic Museum 87adbf/Custom_Tile The Miskatonic Museum 703373.ttslua new file mode 100644 index 000000000..f92a55f33 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 2 The Miskatonic Museum 87adbf/Custom_Tile The Miskatonic Museum 703373.ttslua @@ -0,0 +1,25 @@ +name = 'The Miskatonic Museum' + +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 + +function standaloneClick() + Global.call('fillContainer', {object=self, key=name, mode='standalone'}) +end diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 2 The Miskatonic Museum 87adbf/Custom_Tile The Miskatonic Museum 703373.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 2 The Miskatonic Museum 87adbf/Custom_Tile The Miskatonic Museum 703373.yaml new file mode 100644 index 000000000..bfb7b72ac --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 2 The Miskatonic Museum 87adbf/Custom_Tile The Miskatonic Museum 703373.yaml @@ -0,0 +1,42 @@ +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 +GMNotes: '' +GUID: '703373' +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Tile The Miskatonic Museum 703373.ttslua' +LuaScriptState: '' +Name: Custom_Tile +Nickname: The Miskatonic Museum +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -4.1502 + posY: 1.58294213 + posZ: -14.7443027 + rotX: 359.919739 + rotY: 269.984924 + rotZ: 0.016859144 + scaleX: 2.2 + scaleY: 1.0 + scaleZ: 2.2 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 2 The Miskatonic Museum 87adbf/Deck Act Deck 6571a3.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 2 The Miskatonic Museum 87adbf/Deck Act Deck 6571a3.yaml new file mode 100644 index 000000000..e219935a6 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 2 The Miskatonic Museum 87adbf/Deck Act Deck 6571a3.yaml @@ -0,0 +1,215 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 233319 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2333': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296027643/326876D4B46DF777AA1293989DEEE6A810ED027B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999385819527677/3AD8DFFFBFF54DB098AD3E00BB7E75DA0590FE8B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 3 + GMNotes: '' + GUID: aaceb4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Searching for the Tome + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.00132942 + posY: 1.55726683 + posZ: 23.2091579 + rotX: 0.0168708172 + rotY: 179.999969 + rotZ: 0.0798799247 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233318 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2333': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296027643/326876D4B46DF777AA1293989DEEE6A810ED027B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999385819527677/3AD8DFFFBFF54DB098AD3E00BB7E75DA0590FE8B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 2 + GMNotes: '' + GUID: 588bec + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Breaking and Entering + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 1.83312774 + posY: 1.70609045 + posZ: 23.0741425 + rotX: 0.016862236 + rotY: 179.999969 + rotZ: 0.07990043 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233317 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2333': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296027643/326876D4B46DF777AA1293989DEEE6A810ED027B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999385819527677/3AD8DFFFBFF54DB098AD3E00BB7E75DA0590FE8B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 2 + GMNotes: '' + GUID: 726ac2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Night at the Museum + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 1.9161948 + posY: 1.72337055 + posZ: 23.5133152 + rotX: 0.016878346 + rotY: 179.999969 + rotZ: 0.0798913762 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233316 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2333': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296027643/326876D4B46DF777AA1293989DEEE6A810ED027B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999385819527677/3AD8DFFFBFF54DB098AD3E00BB7E75DA0590FE8B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 1 + GMNotes: '' + GUID: 1b5f59 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Finding A Way Inside + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 1.7561748 + posY: 1.70979583 + posZ: 23.12506 + rotX: 0.0168586615 + rotY: 180.000031 + rotZ: 0.07990779 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2333': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296027643/326876D4B46DF777AA1293989DEEE6A810ED027B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999385819527677/3AD8DFFFBFF54DB098AD3E00BB7E75DA0590FE8B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 233319 +- 233318 +- 233317 +- 233316 +Description: '' +GMNotes: '' +GUID: 6571a3 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Act Deck +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.6884 + posY: 1.65349448 + posZ: -5.0485 + rotX: 0.0168349985 + rotY: 180.000015 + rotZ: 0.08025773 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 2 The Miskatonic Museum 87adbf/Deck Agenda Deck dbdfa1.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 2 The Miskatonic Museum 87adbf/Deck Agenda Deck dbdfa1.yaml new file mode 100644 index 000000000..e851a4b38 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 2 The Miskatonic Museum 87adbf/Deck Agenda Deck dbdfa1.yaml @@ -0,0 +1,172 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 233315 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2333': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296027643/326876D4B46DF777AA1293989DEEE6A810ED027B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999385819527677/3AD8DFFFBFF54DB098AD3E00BB7E75DA0590FE8B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 3 + GMNotes: '' + GUID: 70a774 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: In Every Shadow + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.269540966 + posY: 1.56147158 + posZ: 29.2891312 + rotX: 0.0168715268 + rotY: 180.0 + rotZ: 0.07988031 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233314 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2333': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296027643/326876D4B46DF777AA1293989DEEE6A810ED027B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999385819527677/3AD8DFFFBFF54DB098AD3E00BB7E75DA0590FE8B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 2 + GMNotes: '' + GUID: 742cea + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Shadows Deepen + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.181895822 + posY: 1.71019447 + posZ: 29.1594772 + rotX: 0.0168631859 + rotY: 180.0 + rotZ: 0.07990086 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233313 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2333': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296027643/326876D4B46DF777AA1293989DEEE6A810ED027B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999385819527677/3AD8DFFFBFF54DB098AD3E00BB7E75DA0590FE8B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 1 + GMNotes: '' + GUID: 1b5f59 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Restricted Access + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.523786366 + posY: 1.72711086 + posZ: 29.4442425 + rotX: 0.0168590732 + rotY: 180.0 + rotZ: 0.07990649 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2333': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296027643/326876D4B46DF777AA1293989DEEE6A810ED027B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999385819527677/3AD8DFFFBFF54DB098AD3E00BB7E75DA0590FE8B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 233315 +- 233314 +- 233313 +Description: '' +GMNotes: '' +GUID: dbdfa1 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Agenda Deck +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.7246 + posY: 1.65664113 + posZ: 0.373300284 + rotX: 0.0168348923 + rotY: 180.000046 + rotZ: 0.0802575648 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 2 The Miskatonic Museum 87adbf/Deck Encounter Deck 62c028.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 2 The Miskatonic Museum 87adbf/Deck Encounter Deck 62c028.yaml new file mode 100644 index 000000000..05d98104e --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 2 The Miskatonic Museum 87adbf/Deck Encounter Deck 62c028.yaml @@ -0,0 +1,1512 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 232840 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 6f4382 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Slithering Behind You + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.97063684 + posY: 1.54639256 + posZ: -4.39697742 + rotX: 359.920135 + rotY: 269.999878 + rotZ: 0.01687646 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232840 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: fe4557 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Slithering Behind You + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 4.2946353 + posY: 1.70134032 + posZ: -4.40994263 + rotX: 359.920135 + rotY: 269.999878 + rotZ: 0.0168765783 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232839 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: "\tTerror." + GMNotes: '' + GUID: bf889d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ephemeral Exhibits + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.01033258 + posY: 1.54856789 + posZ: -6.29038 + rotX: 359.920135 + rotY: 269.9998 + rotZ: 0.0168782137 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232839 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: "\tTerror." + GMNotes: '' + GUID: cd9bc9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ephemeral Exhibits + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 1.74272823 + posY: 1.70487881 + posZ: -5.95238543 + rotX: 359.920135 + rotY: 269.9998 + rotZ: 0.01687811 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232838 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: "\tPower." + GMNotes: '' + GUID: ee2862 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Passage into the Veil + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 1.23312879 + posY: 1.54997158 + posZ: -5.203305 + rotX: 359.920135 + rotY: 269.9999 + rotZ: 0.0168772787 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232838 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: "\tPower." + GMNotes: '' + GUID: 0e2895 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Passage into the Veil + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.927093 + posY: 1.70653141 + posZ: -5.155619 + rotX: 359.920135 + rotY: 269.9999 + rotZ: 0.0168773253 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232838 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: "\tPower." + GMNotes: '' + GUID: ee2862 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Passage into the Veil + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 1.18818259 + posY: 1.72341263 + posZ: -5.17442274 + rotX: 359.920776 + rotY: 269.9999 + rotZ: 0.0160576869 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232837 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Tactic. + GMNotes: '' + GUID: 2c35c1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: "Stalked in the Dark\t" + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.9444212 + posY: 1.55159914 + posZ: -1.04286885 + rotX: 359.920135 + rotY: 269.999939 + rotZ: 0.016876515 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232837 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Tactic. + GMNotes: '' + GUID: 969c50 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: "Stalked in the Dark\t" + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 1.43638945 + posY: 1.71371841 + posZ: -0.747907937 + rotX: 359.9361 + rotY: 270.0 + rotZ: 0.0135008711 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232835 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Spawned from the Void + GMNotes: '' + GUID: de3bd5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Hunting Horror + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 6.951333 + posY: 1.81293869 + posZ: 0.06049832 + rotX: 359.936066 + rotY: 270.000031 + rotZ: 180.013519 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232820 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: a8cc8c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Twist of Fate + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.198071 + posY: 1.55145156 + posZ: 9.125637 + rotX: 359.920135 + rotY: 269.999939 + rotZ: 0.01687778 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232820 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: 9d6b4c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Twist of Fate + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.70683336 + posY: 1.70854175 + posZ: 9.092162 + rotX: 359.920135 + rotY: 269.999939 + rotZ: 0.01687769 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232820 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: a8cc8c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Twist of Fate + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.70645475 + posY: 1.72578371 + posZ: 9.100254 + rotX: 359.921539 + rotY: 269.999939 + rotZ: 0.0167463012 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232819 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: de3bd5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Cursed Luck + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.15651965 + posY: 1.55232441 + posZ: 11.89302 + rotX: 359.920135 + rotY: 269.999939 + rotZ: 0.0168776158 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232819 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: 64281b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Cursed Luck + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.19927931 + posY: 1.7088623 + posZ: 11.9196167 + rotX: 359.920135 + rotY: 269.999939 + rotZ: 0.0168775618 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232819 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: de3bd5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Cursed Luck + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.230147 + posY: 1.72610009 + posZ: 11.971447 + rotX: 359.92 + rotY: 269.999939 + rotZ: 0.0164669342 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232811 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: d56ff7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Beyond the Veil + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.917338 + posY: 1.55012894 + posZ: 8.039298 + rotX: 359.920135 + rotY: 269.999969 + rotZ: 0.01687837 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232811 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: 9cb0b3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Beyond the Veil + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.89250565 + posY: 1.70636082 + posZ: 8.19774 + rotX: 359.920135 + rotY: 269.999969 + rotZ: 0.01687832 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232811 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: d56ff7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Beyond the Veil + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.89250565 + posY: 1.72360778 + posZ: 8.19774 + rotX: 359.920837 + rotY: 269.999969 + rotZ: 0.0158282 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232810 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: de3bd5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Visions of Futures Past + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.43124938 + posY: 1.55177522 + posZ: 11.3293571 + rotX: 359.920135 + rotY: 269.999969 + rotZ: 0.0168769564 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232810 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: 42d459 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Visions of Futures Past + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.15239716 + posY: 1.70869577 + posZ: 11.50471 + rotX: 359.920135 + rotY: 269.999969 + rotZ: 0.01687689 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232810 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: de3bd5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Visions of Futures Past + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.15239716 + posY: 1.72595167 + posZ: 11.50471 + rotX: 359.9199 + rotY: 269.999969 + rotZ: 0.0165576525 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232829 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: "\tHex. Obstacle." + GMNotes: '' + GUID: 2d6b0f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Arcane Barrier + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.163001 + posY: 1.550591 + posZ: 6.036887 + rotX: 359.920135 + rotY: 269.9999 + rotZ: 0.0168760177 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232829 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: "\tHex. Obstacle." + GMNotes: '' + GUID: db1aee + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Arcane Barrier + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.36834574 + posY: 1.70658445 + posZ: 6.162498 + rotX: 359.920135 + rotY: 269.9999 + rotZ: 0.01687594 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232828 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: "\tHex. Terror." + GMNotes: '' + GUID: 851dc1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Terror from Beyond + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.0437057 + posY: 1.55163479 + posZ: 9.017338 + rotX: 359.920135 + rotY: 269.999939 + rotZ: 0.0168782789 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232828 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: "\tHex. Terror." + GMNotes: '' + GUID: 8906a9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Terror from Beyond + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.82296681 + posY: 1.708395 + posZ: 9.019801 + rotX: 359.920135 + rotY: 269.999939 + rotZ: 0.0168783069 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232827 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: de3bd5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Pushed into the Beyond + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.622002 + posY: 1.55319154 + posZ: 12.3073425 + rotX: 359.920135 + rotY: 269.9999 + rotZ: 0.0168778151 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232827 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: d91086 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Pushed into the Beyond + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.70456314 + posY: 1.70989764 + posZ: 12.504797 + rotX: 359.920135 + rotY: 269.9999 + rotZ: 0.0168777462 + 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 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: 50e716 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: c4ce76 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: ab3719 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: 16d6d6 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: Obstacle. + GMNotes: '' + GUID: ab3719 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Locked Door + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -17.60739 + posY: 1.58022821 + posZ: 8.422101 + rotX: 359.920349 + rotY: 269.999756 + rotZ: 0.0154577158 + 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 + UniqueBack: false + Description: Obstacle. + GMNotes: '' + GUID: 4904d0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Locked Door + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -18.06458 + posY: 1.74395728 + posZ: 8.675678 + rotX: 359.928467 + rotY: 269.9997 + rotZ: 0.006147271 + 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 + UniqueBack: false + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 232840 +- 232840 +- 232839 +- 232839 +- 232838 +- 232838 +- 232838 +- 232837 +- 232837 +- 232835 +- 232820 +- 232820 +- 232820 +- 232819 +- 232819 +- 232819 +- 232811 +- 232811 +- 232811 +- 232810 +- 232810 +- 232810 +- 232829 +- 232829 +- 232828 +- 232828 +- 232827 +- 232827 +- 231721 +- 231721 +- 231720 +- 231720 +- 231727 +- 231727 +Description: '' +GMNotes: '' +GUID: 62c028 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Encounter Deck +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.92680025 + posY: 1.79302645 + posZ: 5.75710058 + rotX: 359.919739 + rotY: 270.000031 + rotZ: 180.016815 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 2 The Miskatonic Museum 87adbf/Deck Non-Restricted Exhibit Halls b24a2a.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 2 The Miskatonic Museum 87adbf/Deck Non-Restricted Exhibit Halls b24a2a.yaml new file mode 100644 index 000000000..405cde62e --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 2 The Miskatonic Museum 87adbf/Deck Non-Restricted Exhibit Halls b24a2a.yaml @@ -0,0 +1,258 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 233531 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2335': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999385819522537/207CCD9C85ECB70A339C09170ABB42E139924AA0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780748790926468191/C3163A90948FC777DC7D95D05CB35D2DA32CBD9C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Miskatonic. Exhibit. + GMNotes: '' + GUID: f3ffb6 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Exhibit Hall + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 1.59215164 + posY: 1.71200645 + posZ: 26.4632187 + rotX: 359.920135 + rotY: 270.006378 + rotZ: 180.016876 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233530 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2335': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999385819522537/207CCD9C85ECB70A339C09170ABB42E139924AA0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780748790926468191/C3163A90948FC777DC7D95D05CB35D2DA32CBD9C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Miskatonic. Exhibit. + GMNotes: '' + GUID: '563240' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Exhibit Hall + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 1.67837942 + posY: 1.71398473 + posZ: 26.7644 + rotX: 359.920135 + rotY: 269.9992 + rotZ: 180.016876 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233529 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2335': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999385819522537/207CCD9C85ECB70A339C09170ABB42E139924AA0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780748790926468191/C3163A90948FC777DC7D95D05CB35D2DA32CBD9C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Miskatonic. Exhibit. + GMNotes: '' + GUID: 63e894 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Exhibit Hall + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 1.44530463 + posY: 1.84790027 + posZ: 26.9633617 + rotX: 359.917847 + rotY: 269.98468 + rotZ: 186.670517 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233528 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2335': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999385819522537/207CCD9C85ECB70A339C09170ABB42E139924AA0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780748790926468191/C3163A90948FC777DC7D95D05CB35D2DA32CBD9C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Miskatonic. Exhibit. + GMNotes: '' + GUID: e872c5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Exhibit Hall + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 1.36934626 + posY: 1.72073627 + posZ: 26.8943939 + rotX: 0.07987741 + rotY: 270.000122 + rotZ: 179.983139 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233527 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2335': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999385819522537/207CCD9C85ECB70A339C09170ABB42E139924AA0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780748790926468191/C3163A90948FC777DC7D95D05CB35D2DA32CBD9C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Miskatonic. Exhibit. + GMNotes: '' + GUID: da02ea + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Exhibit Hall + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 1.3713969 + posY: 1.56209958 + posZ: 27.0516415 + rotX: 359.920135 + rotY: 269.997437 + rotZ: 180.016861 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2335': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999385819522537/207CCD9C85ECB70A339C09170ABB42E139924AA0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780748790926468191/C3163A90948FC777DC7D95D05CB35D2DA32CBD9C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 233531 +- 233530 +- 233529 +- 233528 +- 233527 +Description: '' +GMNotes: '' +GUID: b24a2a +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Non-Restricted Exhibit Halls +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.49950051 + posY: 1.660155 + posZ: 15.6924019 + rotX: 359.919739 + rotY: 270.002869 + rotZ: 0.0168370847 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 3 The Essex County Express d6e449.ttslua b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 3 The Essex County Express d6e449.ttslua new file mode 100644 index 000000000..54d591927 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 3 The Essex County Express d6e449.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.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 Dunwich Legacy df7121/Custom_Model_Bag 3 The Essex County Express d6e449.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 3 The Essex County Express d6e449.yaml new file mode 100644 index 000000000..72f39f8fd --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 3 The Essex County Express d6e449.yaml @@ -0,0 +1,86 @@ +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 3 The Essex County Express d6e449/Custom_Model_Bag Set-aside + f58e95.yaml' +- !include 'Custom_Model_Bag 3 The Essex County Express d6e449/Deck Encounter Deck + eb094d.yaml' +- !include 'Custom_Model_Bag 3 The Essex County Express d6e449/Deck Agenda Deck d30e98.yaml' +- !include 'Custom_Model_Bag 3 The Essex County Express d6e449/Deck Act Deck 9f9330.yaml' +- !include 'Custom_Model_Bag 3 The Essex County Express d6e449/Card Scenario 70df0b.yaml' +- !include 'Custom_Model_Bag 3 The Essex County Express d6e449/Custom_Tile The Essex + County Express 247967.yaml' +- !include 'Custom_Model_Bag 3 The Essex County Express d6e449/Bag New Chaos Token + ff051b.yaml' +- !include 'Custom_Model_Bag 3 The Essex County Express d6e449/Deck Engine Cars 52dd93.yaml' +- !include 'Custom_Model_Bag 3 The Essex County Express d6e449/Custom_Tile 44b0c5.yaml' +- !include 'Custom_Model_Bag 3 The Essex County Express d6e449/Custom_Tile 60a5f6.yaml' +- !include 'Custom_Model_Bag 3 The Essex County Express d6e449/Custom_Tile 655f00.yaml' +- !include 'Custom_Model_Bag 3 The Essex County Express d6e449/Custom_Tile ce23c7.yaml' +- !include 'Custom_Model_Bag 3 The Essex County Express d6e449/Custom_Tile dde8af.yaml' +- !include 'Custom_Model_Bag 3 The Essex County Express d6e449/Custom_Tile ae73b7.yaml' +- !include 'Custom_Model_Bag 3 The Essex County Express d6e449/Deck Train Cars 588354.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/829135118403754230/0142FE1AC59471A8F7E46F07E089A73F47D59AA5/ + MaterialIndex: 3 + MeshURL: https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj + NormalURL: '' + TypeIndex: 6 +Description: The Dunwich Legacy +GMNotes: '' +GUID: d6e449 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Model_Bag 3 The Essex County Express d6e449.ttslua' +LuaScriptState: '{"ml":{"247967":{"lock":false,"pos":{"x":-3.502,"y":1.582,"z":-14.91},"rot":{"x":359.9204,"y":270.007,"z":0.0177}},"44b0c5":{"lock":false,"pos":{"x":-17.1199,"y":1.602,"z":-11.51},"rot":{"x":0.0169,"y":180.0002,"z":0.0799}},"52dd93":{"lock":false,"pos":{"x":-17.12,"y":1.6721,"z":-15.28},"rot":{"x":359.9201,"y":270.0002,"z":0.0169}},"588354":{"lock":false,"pos":{"x":-30.2243,"y":1.6805,"z":11.46},"rot":{"x":359.9201,"y":270.0007,"z":0.0169}},"60a5f6":{"lock":false,"pos":{"x":-17.1201,"y":1.6042,"z":-3.8287},"rot":{"x":359.9831,"y":-0.0041,"z":359.92}},"655f00":{"lock":false,"pos":{"x":-17.12,"y":1.6065,"z":3.86},"rot":{"x":359.9831,"y":-0.0041,"z":359.92}},"70df0b":{"lock":false,"pos":{"x":-3.9558,"y":1.6556,"z":-10.4412},"rot":{"x":359.9197,"y":270,"z":0.0168}},"9f9330":{"lock":false,"pos":{"x":-2.6884,"y":1.6623,"z":-5.0485},"rot":{"x":0.0168,"y":180.0001,"z":0.0803}},"ae73b7":{"lock":false,"pos":{"x":-27.0013,"y":1.6236,"z":15.18},"rot":{"x":359.92,"y":270.2697,"z":0.0165}},"ce23c7":{"lock":false,"pos":{"x":-17.12,"y":1.6087,"z":11.46},"rot":{"x":359.9831,"y":-0.004,"z":359.9201}},"d30e98":{"lock":false,"pos":{"x":-2.7246,"y":1.656,"z":0.3733},"rot":{"x":0.0168,"y":180,"z":0.0803}},"dde8af":{"lock":false,"pos":{"x":-20.5824,"y":1.6146,"z":15.1047},"rot":{"x":359.92,"y":270.4175,"z":0.0163}},"eb094d":{"lock":false,"pos":{"x":-3.9273,"y":1.7984,"z":5.7572},"rot":{"x":359.9197,"y":270,"z":180.0168}},"f58e95":{"lock":false,"pos":{"x":1.696,"y":1.5583,"z":14.2787},"rot":{"x":359.9551,"y":224.998,"z":0.0687}},"ff051b":{"lock":false,"pos":{"x":-5.6891,"y":1.4994,"z":-14.2727},"rot":{"x":0.0013,"y":359.939,"z":6.2808}}}}' +MaterialIndex: -1 +MeshIndex: -1 +Name: Custom_Model_Bag +Nickname: '3: The Essex County Express' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 13.8735266 + posY: 1.46365654 + posZ: 5.092025 + rotX: 359.9201 + rotY: 270.010651 + rotZ: 0.0168593358 + scaleX: 2.21 + scaleY: 0.46 + scaleZ: 2.42 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 3 The Essex County Express d6e449/Bag New Chaos Token ff051b.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 3 The Essex County Express d6e449/Bag New Chaos Token ff051b.yaml new file mode 100644 index 000000000..1e82c1087 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 3 The Essex County Express d6e449/Bag New Chaos Token ff051b.yaml @@ -0,0 +1,39 @@ +Autoraise: true +ColorDiffuse: + b: 0.07843705 + g: 0.07843705 + r: 0.302167743 +ContainedObjects: +- !include 'Bag New Chaos Token ff051b/Custom_Tile a2c8c3.yaml' +- !include 'Bag New Chaos Token ff051b/Custom_Tile 4fa839.yaml' +- !include 'Bag New Chaos Token ff051b/Custom_Tile de80ff.yaml' +- !include 'Bag New Chaos Token ff051b/Custom_Tile c6903e.yaml' +Description: The Essex County Express +GMNotes: '' +GUID: ff051b +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +MeshIndex: -1 +Name: Bag +Nickname: New Chaos Token +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -5.68908358 + posY: 1.499417 + posZ: -14.2726755 + rotX: 0.00125186087 + rotY: 359.939026 + rotZ: 6.2807827 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 3 The Essex County Express d6e449/Bag New Chaos Token ff051b/Custom_Tile 4fa839.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 3 The Essex County Express d6e449/Bag New Chaos Token ff051b/Custom_Tile 4fa839.yaml new file mode 100644 index 000000000..0ae79cf81 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 3 The Essex County Express d6e449/Bag New Chaos Token ff051b/Custom_Tile 4fa839.yaml @@ -0,0 +1,42 @@ +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: '' +GMNotes: '' +GUID: 4fa839 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Tile +Nickname: '' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 1.88004458 + posY: 3.55291462 + posZ: 11.0965281 + rotX: 0.1352803 + rotY: 270.0193 + rotZ: 0.3094559 + scaleX: 0.81 + scaleY: 1.0 + scaleZ: 0.81 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 3 The Essex County Express d6e449/Bag New Chaos Token ff051b/Custom_Tile a2c8c3.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 3 The Essex County Express d6e449/Bag New Chaos Token ff051b/Custom_Tile a2c8c3.yaml new file mode 100644 index 000000000..5bc367637 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 3 The Essex County Express d6e449/Bag New Chaos Token ff051b/Custom_Tile a2c8c3.yaml @@ -0,0 +1,42 @@ +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: '' +GMNotes: '' +GUID: a2c8c3 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Tile +Nickname: '' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 2.187679 + posY: 3.55485725 + posZ: 11.3031368 + rotX: 359.92395 + rotY: 269.9998 + rotZ: 0.307679236 + scaleX: 0.81 + scaleY: 1.0 + scaleZ: 0.81 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 3 The Essex County Express d6e449/Bag New Chaos Token ff051b/Custom_Tile c6903e.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 3 The Essex County Express d6e449/Bag New Chaos Token ff051b/Custom_Tile c6903e.yaml new file mode 100644 index 000000000..8642fb73c --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 3 The Essex County Express d6e449/Bag New Chaos Token ff051b/Custom_Tile c6903e.yaml @@ -0,0 +1,42 @@ +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: '' +GMNotes: '' +GUID: c6903e +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Tile +Nickname: '' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 2.429769 + posY: 3.55308 + posZ: 11.9095325 + rotX: 359.741638 + rotY: 270.0144 + rotZ: 359.724884 + scaleX: 0.81 + scaleY: 1.0 + scaleZ: 0.81 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 3 The Essex County Express d6e449/Bag New Chaos Token ff051b/Custom_Tile de80ff.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 3 The Essex County Express d6e449/Bag New Chaos Token ff051b/Custom_Tile de80ff.yaml new file mode 100644 index 000000000..4c0fbf3ca --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 3 The Essex County Express d6e449/Bag New Chaos Token ff051b/Custom_Tile de80ff.yaml @@ -0,0 +1,42 @@ +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: '' +GMNotes: '' +GUID: de80ff +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Tile +Nickname: '' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 2.80375814 + posY: 3.55203128 + posZ: 11.2058277 + rotX: 359.682556 + rotY: 270.014771 + rotZ: 0.137952551 + scaleX: 0.81 + scaleY: 1.0 + scaleZ: 0.81 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 3 The Essex County Express d6e449/Card Scenario 70df0b.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 3 The Essex County Express d6e449/Card Scenario 70df0b.yaml new file mode 100644 index 000000000..04d49b773 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 3 The Essex County Express d6e449/Card Scenario 70df0b.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 233533 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2335': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999385819522537/207CCD9C85ECB70A339C09170ABB42E139924AA0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780748790926468191/C3163A90948FC777DC7D95D05CB35D2DA32CBD9C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: The Essex County Express +GMNotes: '' +GUID: 70df0b +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Scenario +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.95583344 + posY: 1.655648 + posZ: -10.4411535 + rotX: 359.919739 + rotY: 270.0 + rotZ: 0.0168331023 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 3 The Essex County Express d6e449/Custom_Model_Bag Set-aside f58e95.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 3 The Essex County Express d6e449/Custom_Model_Bag Set-aside f58e95.yaml new file mode 100644 index 000000000..c130158a0 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 3 The Essex County Express d6e449/Custom_Model_Bag Set-aside f58e95.yaml @@ -0,0 +1,270 @@ +Autoraise: true +ColorDiffuse: + b: 0.02148666 + g: 0.00100758043 + r: 0.02148666 +ContainedObjects: +- Autoraise: true + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: + - 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 + UniqueBack: false + Description: Madness. + GMNotes: '' + GUID: 6e0707 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Across Space and Time + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -7.76403666 + posY: 1.56683362 + posZ: 9.464576 + rotX: 359.920135 + rotY: 269.999817 + rotZ: 0.0168772917 + 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 + UniqueBack: false + Description: Madness. + GMNotes: '' + GUID: 1d1810 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Across Space and Time + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -7.554871 + posY: 1.72604358 + posZ: 9.47872 + rotX: 0.08045415 + rotY: 270.001526 + rotZ: 359.982758 + 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 + UniqueBack: false + Description: Madness. + GMNotes: '' + GUID: fb943f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Across Space and Time + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -7.74089 + posY: 1.73283029 + posZ: 9.117858 + rotX: 359.932739 + rotY: 270.0 + rotZ: 0.0141524123 + 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 + UniqueBack: false + Description: Madness. + GMNotes: '' + GUID: 6e0707 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Across Space and Time + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -23.7258587 + posY: 1.742033 + posZ: 10.6012506 + rotX: 359.9361 + rotY: 270.000061 + rotZ: 0.0134261176 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' + CustomDeck: + '2329': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + DeckIDs: + - 232941 + - 232941 + - 232941 + - 232941 + Description: '' + GMNotes: '' + GUID: 22be0e + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Deck + Nickname: Across Space and Time + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -23.101202 + posY: 3.64695978 + posZ: 15.8001566 + rotX: 359.920044 + rotY: 269.999939 + rotZ: 0.01687149 + 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: The Essex County Express +GMNotes: '' +GUID: f58e95 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +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.69601333 + posY: 1.558317 + posZ: 14.2787437 + rotX: 359.955139 + rotY: 224.997971 + rotZ: 0.0686759353 + scaleX: 2.0 + scaleY: 2.0 + scaleZ: 2.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 3 The Essex County Express d6e449/Custom_Tile 44b0c5.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 3 The Essex County Express d6e449/Custom_Tile 44b0c5.yaml new file mode 100644 index 000000000..0cb139598 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 3 The Essex County Express d6e449/Custom_Tile 44b0c5.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 44b0c5 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Tile +Nickname: '' +Snap: true +States: + '1': + 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: '' + GMNotes: '' + GUID: 7234af + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Custom_Tile + Nickname: '' + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -17.1199188 + posY: 1.60198367 + posZ: -11.51 + rotX: 359.983124 + rotY: -0.00409421651 + rotZ: 359.92 + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.1198978 + posY: 1.60198343 + posZ: -11.51 + rotX: 0.0168717522 + rotY: 180.0002 + rotZ: 0.07994811 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 3 The Essex County Express d6e449/Custom_Tile 60a5f6.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 3 The Essex County Express d6e449/Custom_Tile 60a5f6.yaml new file mode 100644 index 000000000..4f0e57e4e --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 3 The Essex County Express d6e449/Custom_Tile 60a5f6.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 60a5f6 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.1200981 + posY: 1.6042459 + posZ: -3.8287003 + rotX: 359.983124 + rotY: -0.004111594 + rotZ: 359.920044 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 3 The Essex County Express d6e449/Custom_Tile 655f00.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 3 The Essex County Express d6e449/Custom_Tile 655f00.yaml new file mode 100644 index 000000000..49e71d693 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 3 The Essex County Express d6e449/Custom_Tile 655f00.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 655f00 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.60650992 + posZ: 3.86 + rotX: 359.983124 + rotY: -0.00412567239 + rotZ: 359.920044 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 3 The Essex County Express d6e449/Custom_Tile ae73b7.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 3 The Essex County Express d6e449/Custom_Tile ae73b7.yaml new file mode 100644 index 000000000..250d0cc01 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 3 The Essex County Express d6e449/Custom_Tile ae73b7.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: ae73b7 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.0013 + posY: 1.6236217 + posZ: 15.1800013 + rotX: 359.92 + rotY: 270.269745 + rotZ: 0.0165199675 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 3 The Essex County Express d6e449/Custom_Tile ce23c7.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 3 The Essex County Express d6e449/Custom_Tile ce23c7.yaml new file mode 100644 index 000000000..9667eed50 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 3 The Essex County Express d6e449/Custom_Tile ce23c7.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: ce23c7 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.60874748 + posZ: 11.4600019 + rotX: 359.983124 + rotY: -0.00401914725 + rotZ: 359.920074 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 3 The Essex County Express d6e449/Custom_Tile dde8af.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 3 The Essex County Express d6e449/Custom_Tile dde8af.yaml new file mode 100644 index 000000000..a9a9916fc --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 3 The Essex County Express d6e449/Custom_Tile dde8af.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: dde8af +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.5824 + posY: 1.61464882 + posZ: 15.1047 + rotX: 359.919983 + rotY: 270.4175 + rotZ: 0.0163187925 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 3 The Essex County Express d6e449/Custom_Tile The Essex County Express 247967.ttslua b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 3 The Essex County Express d6e449/Custom_Tile The Essex County Express 247967.ttslua new file mode 100644 index 000000000..8942d6ff8 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 3 The Essex County Express d6e449/Custom_Tile The Essex County Express 247967.ttslua @@ -0,0 +1,25 @@ +name = 'The Essex County Express' + +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 + +function standaloneClick() + Global.call('fillContainer', {object=self, key=name, mode='standalone'}) +end diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 3 The Essex County Express d6e449/Custom_Tile The Essex County Express 247967.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 3 The Essex County Express d6e449/Custom_Tile The Essex County Express 247967.yaml new file mode 100644 index 000000000..959027674 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 3 The Essex County Express d6e449/Custom_Tile The Essex County Express 247967.yaml @@ -0,0 +1,42 @@ +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 +GMNotes: '' +GUID: '247967' +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Tile The Essex County Express 247967.ttslua' +LuaScriptState: '' +Name: Custom_Tile +Nickname: The Essex County Express +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.50199437 + posY: 1.58203661 + posZ: -14.910037 + rotX: 359.92038 + rotY: 270.007 + rotZ: 0.0177166015 + scaleX: 2.2 + scaleY: 1.0 + scaleZ: 2.2 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 3 The Essex County Express d6e449/Deck Act Deck 9f9330.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 3 The Essex County Express d6e449/Deck Act Deck 9f9330.yaml new file mode 100644 index 000000000..2ce89ab8a --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 3 The Essex County Express d6e449/Deck Act Deck 9f9330.yaml @@ -0,0 +1,129 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 233326 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2333': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296027643/326876D4B46DF777AA1293989DEEE6A810ED027B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999385819527677/3AD8DFFFBFF54DB098AD3E00BB7E75DA0590FE8B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: 'Act ' + GMNotes: '' + GUID: d207eb + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Get the Engine Running! + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -8.853591 + posY: 1.56982112 + posZ: 14.45142 + rotX: 0.0168703813 + rotY: 179.999985 + rotZ: 0.07988079 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233325 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2333': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296027643/326876D4B46DF777AA1293989DEEE6A810ED027B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999385819527677/3AD8DFFFBFF54DB098AD3E00BB7E75DA0590FE8B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: 'Act ' + GMNotes: '' + GUID: 1b5f59 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Run! + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -8.553985 + posY: 1.71807921 + posZ: 14.3572187 + rotX: 0.0168795 + rotY: 179.999969 + rotZ: 0.07988564 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2333': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296027643/326876D4B46DF777AA1293989DEEE6A810ED027B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999385819527677/3AD8DFFFBFF54DB098AD3E00BB7E75DA0590FE8B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 233326 +- 233325 +Description: '' +GMNotes: '' +GUID: 9f9330 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Act Deck +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.6884 + posY: 1.66233337 + posZ: -5.048525 + rotX: 0.01683483 + rotY: 180.000061 + rotZ: 0.08025842 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 3 The Essex County Express d6e449/Deck Agenda Deck d30e98.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 3 The Essex County Express d6e449/Deck Agenda Deck d30e98.yaml new file mode 100644 index 000000000..282baeb6b --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 3 The Essex County Express d6e449/Deck Agenda Deck d30e98.yaml @@ -0,0 +1,258 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 233324 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2333': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296027643/326876D4B46DF777AA1293989DEEE6A810ED027B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999385819527677/3AD8DFFFBFF54DB098AD3E00BB7E75DA0590FE8B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: 'Agenda ' + GMNotes: '' + GUID: ad8e9f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Out of Time + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -8.342812 + posY: 1.72570455 + posZ: 26.2127571 + rotX: 0.0135568166 + rotY: 180.000076 + rotZ: 180.059326 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233323 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2333': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296027643/326876D4B46DF777AA1293989DEEE6A810ED027B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999385819527677/3AD8DFFFBFF54DB098AD3E00BB7E75DA0590FE8B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: 'Agenda ' + GMNotes: '' + GUID: 22da82 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Drawn In + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -8.198917 + posY: 1.739427 + posZ: 26.4041538 + rotX: 0.0135404514 + rotY: 180.000519 + rotZ: 181.104736 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233322 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2333': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296027643/326876D4B46DF777AA1293989DEEE6A810ED027B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999385819527677/3AD8DFFFBFF54DB098AD3E00BB7E75DA0590FE8B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: 'Agenda ' + GMNotes: '' + GUID: 44ad52 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Rolling Backwards + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -8.499422 + posY: 1.75621092 + posZ: 26.4296722 + rotX: 0.0138843609 + rotY: 179.999817 + rotZ: 181.02388 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233321 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2333': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296027643/326876D4B46DF777AA1293989DEEE6A810ED027B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999385819527677/3AD8DFFFBFF54DB098AD3E00BB7E75DA0590FE8B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: 'Agenda ' + GMNotes: '' + GUID: 54c524 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Maw Widens + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -8.78 + posY: 1.75672138 + posZ: 25.8418617 + rotX: 0.0136625087 + rotY: 180.000259 + rotZ: 181.74408 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233320 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2333': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296027643/326876D4B46DF777AA1293989DEEE6A810ED027B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999385819527677/3AD8DFFFBFF54DB098AD3E00BB7E75DA0590FE8B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: 'Agenda ' + GMNotes: '' + GUID: 1b5f59 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: A Tear in Reality + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -8.674796 + posY: 1.57584262 + posZ: 26.1601048 + rotX: 0.0168739576 + rotY: 180.0 + rotZ: 180.07988 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2333': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296027643/326876D4B46DF777AA1293989DEEE6A810ED027B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999385819527677/3AD8DFFFBFF54DB098AD3E00BB7E75DA0590FE8B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 233324 +- 233323 +- 233322 +- 233321 +- 233320 +Description: '' +GMNotes: '' +GUID: d30e98 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Agenda Deck +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.72459555 + posY: 1.6559689 + posZ: 0.373330116 + rotX: 0.01683937 + rotY: 179.999985 + rotZ: 0.08025681 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 3 The Essex County Express d6e449/Deck Encounter Deck eb094d.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 3 The Essex County Express d6e449/Deck Encounter Deck eb094d.yaml new file mode 100644 index 000000000..4ef2f99a3 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 3 The Essex County Express d6e449/Deck Encounter Deck eb094d.yaml @@ -0,0 +1,1562 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 232846 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Abomination. + GMNotes: '' + GUID: '979865' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Emergent Monstrosity + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 4.56324863 + posY: 1.547649 + posZ: 2.6758585 + rotX: 359.920135 + rotY: 269.999939 + rotZ: 0.0168755446 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232846 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Abomination. + GMNotes: '' + GUID: 8f3a8e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Emergent Monstrosity + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 4.45231533 + posY: 1.70446432 + posZ: 2.54968047 + rotX: 359.9361 + rotY: 270.0 + rotZ: 0.0135003505 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232845 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Abomination. + GMNotes: '' + GUID: de3bd5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Grappling Horror + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 4.296824 + posY: 1.54920268 + posZ: 6.69029856 + rotX: 359.920135 + rotY: 269.9999 + rotZ: 0.01687894 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232845 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Abomination. + GMNotes: '' + GUID: c7a9ae + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Grappling Horror + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 4.05175161 + posY: 1.70558786 + posZ: 6.95578146 + rotX: 359.920135 + rotY: 269.9999 + rotZ: 0.0168790333 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232844 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: b21462 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Broken Rails + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.17323017 + posY: 1.54983246 + posZ: 3.509645 + rotX: 359.920135 + rotY: 269.999878 + rotZ: 0.016877776 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232844 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: 66a478 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Broken Rails + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.21957278 + posY: 1.70589614 + posZ: 3.63546753 + rotX: 359.920135 + rotY: 269.999878 + rotZ: 0.0168777388 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232844 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: b21462 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Broken Rails + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.84766388 + posY: 1.71542335 + posZ: 4.943244 + rotX: 359.920135 + rotY: 269.999939 + rotZ: 0.01688485 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232843 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Power. + GMNotes: '' + GUID: de3bd5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Claws of Steam + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.562016 + posY: 1.55059922 + posZ: 7.95429945 + rotX: 359.920135 + rotY: 269.9999 + rotZ: 0.0168772768 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232843 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Power. + GMNotes: '' + GUID: 761e27 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Claws of Steam + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.55231953 + posY: 1.65058267 + posZ: 7.93873835 + rotX: 359.920135 + rotY: 269.9999 + rotZ: 0.0168772824 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232843 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Power. + GMNotes: '' + GUID: 02547a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Claws of Steam + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.08161831 + posY: 1.79581642 + posZ: 7.448845 + rotX: 4.45820761 + rotY: 270.0072 + rotZ: 0.01645248 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233842 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2338': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Ally. Bystander. + GMNotes: '' + GUID: 49f43a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Helpless Passenger + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.73022318 + posY: 1.55090475 + posZ: 5.05359936 + rotX: 359.920135 + rotY: 269.999939 + rotZ: 0.0168759227 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233842 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2338': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Ally. Bystander. + GMNotes: '' + GUID: 8bc20d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Helpless Passenger + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.56772733 + posY: 1.7071954 + posZ: 5.398302 + rotX: 359.9361 + rotY: 270.0 + rotZ: 0.0135006122 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233842 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2338': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Ally. Bystander. + GMNotes: '' + GUID: 49f43a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Helpless Passenger + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.5806675 + posY: 1.72434509 + posZ: 5.36101627 + rotX: 359.9387 + rotY: 270.0 + rotZ: 0.009182569 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232829 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: "\tHex. Obstacle." + GMNotes: '' + GUID: 2d6b0f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Arcane Barrier + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.163001 + posY: 1.550591 + posZ: 6.036887 + rotX: 359.920135 + rotY: 269.9999 + rotZ: 0.0168760177 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232829 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: "\tHex. Obstacle." + GMNotes: '' + GUID: db1aee + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Arcane Barrier + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.36834574 + posY: 1.70658445 + posZ: 6.162498 + rotX: 359.920135 + rotY: 269.9999 + rotZ: 0.01687594 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232828 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: "\tHex. Terror." + GMNotes: '' + GUID: 851dc1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Terror from Beyond + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.0437057 + posY: 1.55163479 + posZ: 9.017338 + rotX: 359.920135 + rotY: 269.999939 + rotZ: 0.0168782789 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232828 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: "\tHex. Terror." + GMNotes: '' + GUID: 8906a9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Terror from Beyond + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.82296681 + posY: 1.708395 + posZ: 9.019801 + rotX: 359.920135 + rotY: 269.999939 + rotZ: 0.0168783069 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232827 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: de3bd5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Pushed into the Beyond + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.622002 + posY: 1.55319154 + posZ: 12.3073425 + rotX: 359.920135 + rotY: 269.9999 + rotZ: 0.0168778151 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232827 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: d91086 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Pushed into the Beyond + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.70456314 + posY: 1.70989764 + posZ: 12.504797 + rotX: 359.920135 + rotY: 269.9999 + rotZ: 0.0168777462 + 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 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: f5c831 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: 97416f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: 0f4202 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: c70601 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: ab3719 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: 435a47 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: ab3719 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Rotting Remains + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 31.17963 + posY: 1.65808344 + posZ: -33.1674423 + rotX: 359.93277 + rotY: 270.000183 + rotZ: 0.0141536333 + 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 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: 6e7cb8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: 8af879 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: 6e7cb8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: d63054 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Mysterious Chanting + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -14.9937792 + posY: 1.57623422 + posZ: 7.191085 + rotX: 359.920227 + rotY: 270.005066 + rotZ: 0.01624975 + 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 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: b347d1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Mysterious Chanting + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -15.1765862 + posY: 1.7388649 + posZ: 7.12856245 + rotX: 359.9205 + rotY: 270.005066 + rotZ: 0.011837706 + 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 + UniqueBack: false + Description: Humanoid. Cultist. + GMNotes: '' + GUID: d36612 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Wizard of the Order + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -15.1335211 + posY: 1.7306242 + posZ: 15.1695614 + rotX: 359.933441 + rotY: 269.998932 + rotZ: 180.028931 + 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 + UniqueBack: false + Description: Humanoid. Cultist. + GMNotes: '' + GUID: 50fdc5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Acolyte + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -15.3295956 + posY: 1.62976587 + posZ: 15.9645061 + rotX: 0.0716057643 + rotY: 270.000061 + rotZ: 359.982727 + 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 + UniqueBack: false + Description: Humanoid. Cultist. + GMNotes: '' + GUID: 4911f2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Acolyte + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -15.3297215 + posY: 1.77588809 + posZ: 15.9645157 + rotX: 0.07387834 + rotY: 269.998474 + rotZ: 359.992645 + 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 + UniqueBack: false + Description: Humanoid. Cultist. + GMNotes: '' + GUID: ab3719 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Acolyte + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -15.9929094 + posY: 1.58014917 + posZ: 15.8832378 + rotX: 359.920624 + rotY: 270.0 + rotZ: 0.0137184272 + 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 + UniqueBack: false + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '2338': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 232846 +- 232846 +- 232845 +- 232845 +- 232844 +- 232844 +- 232844 +- 232843 +- 232843 +- 232843 +- 233842 +- 233842 +- 233842 +- 232829 +- 232829 +- 232828 +- 232828 +- 232827 +- 232827 +- 231718 +- 231718 +- 231717 +- 231717 +- 231716 +- 231716 +- 231716 +- 231719 +- 231719 +- 231719 +- 231724 +- 231724 +- 231723 +- 231722 +- 231722 +- 231722 +Description: '' +GMNotes: '' +GUID: eb094d +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Encounter Deck +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.92733216 + posY: 1.79835677 + posZ: 5.75715256 + rotX: 359.919739 + rotY: 270.0 + rotZ: 180.016815 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 3 The Essex County Express d6e449/Deck Engine Cars 52dd93.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 3 The Essex County Express d6e449/Deck Engine Cars 52dd93.yaml new file mode 100644 index 000000000..afe61f863 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 3 The Essex County Express d6e449/Deck Engine Cars 52dd93.yaml @@ -0,0 +1,172 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 233544 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2335': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999385819522537/207CCD9C85ECB70A339C09170ABB42E139924AA0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780748790926468191/C3163A90948FC777DC7D95D05CB35D2DA32CBD9C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Train. + GMNotes: '' + GUID: 03d617 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Engine Car + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -10.9683676 + posY: 1.766143 + posZ: 15.6228018 + rotX: -1.92099083e-06 + rotY: 270.000122 + rotZ: 181.019974 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233543 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2335': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999385819522537/207CCD9C85ECB70A339C09170ABB42E139924AA0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780748790926468191/C3163A90948FC777DC7D95D05CB35D2DA32CBD9C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Train. + GMNotes: '' + GUID: d60b80 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Engine Car + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -11.4884787 + posY: 1.73835921 + posZ: 15.5901365 + rotX: 359.936035 + rotY: 269.9997 + rotZ: 180.663284 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233542 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2335': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999385819522537/207CCD9C85ECB70A339C09170ABB42E139924AA0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780748790926468191/C3163A90948FC777DC7D95D05CB35D2DA32CBD9C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Train. + GMNotes: '' + GUID: f4b757 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Engine Car + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -11.6047211 + posY: 1.82633412 + posZ: 15.1648312 + rotX: 359.377136 + rotY: 270.018372 + rotZ: 356.159332 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2335': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999385819522537/207CCD9C85ECB70A339C09170ABB42E139924AA0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780748790926468191/C3163A90948FC777DC7D95D05CB35D2DA32CBD9C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 233544 +- 233543 +- 233542 +Description: '' +GMNotes: '' +GUID: 52dd93 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Engine Cars +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -17.11999 + posY: 1.67212713 + posZ: -15.279995 + rotX: 359.9201 + rotY: 270.000183 + rotZ: 0.0168672521 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 3 The Essex County Express d6e449/Deck Train Cars 588354.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 3 The Essex County Express d6e449/Deck Train Cars 588354.yaml new file mode 100644 index 000000000..01984d433 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 3 The Essex County Express d6e449/Deck Train Cars 588354.yaml @@ -0,0 +1,387 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 233541 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2335': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999385819522537/207CCD9C85ECB70A339C09170ABB42E139924AA0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780748790926468191/C3163A90948FC777DC7D95D05CB35D2DA32CBD9C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Train. + GMNotes: '' + GUID: 62eb90 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Train Car + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -10.2903318 + posY: 1.7744683 + posZ: 16.532814 + rotX: 359.951965 + rotY: 269.999878 + rotZ: 181.786285 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233540 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2335': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999385819522537/207CCD9C85ECB70A339C09170ABB42E139924AA0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780748790926468191/C3163A90948FC777DC7D95D05CB35D2DA32CBD9C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Train. + GMNotes: '' + GUID: '464528' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Train Car + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -10.2723455 + posY: 1.76846778 + posZ: 16.2143841 + rotX: 359.936035 + rotY: 269.999939 + rotZ: 181.901123 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233539 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2335': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999385819522537/207CCD9C85ECB70A339C09170ABB42E139924AA0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780748790926468191/C3163A90948FC777DC7D95D05CB35D2DA32CBD9C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Train. + GMNotes: '' + GUID: 3cfca4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Train Car + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -10.5924091 + posY: 1.76612675 + posZ: 15.63805 + rotX: 359.969543 + rotY: 269.995178 + rotZ: 182.182388 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233538 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2335': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999385819522537/207CCD9C85ECB70A339C09170ABB42E139924AA0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780748790926468191/C3163A90948FC777DC7D95D05CB35D2DA32CBD9C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Train. + GMNotes: '' + GUID: 0794a4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Train Car + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -10.5139036 + posY: 1.74962175 + posZ: 15.5190525 + rotX: 359.936218 + rotY: 269.998657 + rotZ: 181.663177 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233537 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2335': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999385819522537/207CCD9C85ECB70A339C09170ABB42E139924AA0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780748790926468191/C3163A90948FC777DC7D95D05CB35D2DA32CBD9C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Train. + GMNotes: '' + GUID: f3f902 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Train Car + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -10.5380306 + posY: 1.74939609 + posZ: 15.8527536 + rotX: -3.895342e-06 + rotY: 270.000366 + rotZ: 180.896469 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233536 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2335': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999385819522537/207CCD9C85ECB70A339C09170ABB42E139924AA0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780748790926468191/C3163A90948FC777DC7D95D05CB35D2DA32CBD9C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Train. + GMNotes: '' + GUID: a3a321 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Train Car + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -10.6127234 + posY: 1.74746227 + posZ: 15.5436687 + rotX: 359.9796 + rotY: 269.9998 + rotZ: 180.26152 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233535 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2335': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999385819522537/207CCD9C85ECB70A339C09170ABB42E139924AA0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780748790926468191/C3163A90948FC777DC7D95D05CB35D2DA32CBD9C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Train. + GMNotes: '' + GUID: 1c93d4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Train Car + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -10.3355656 + posY: 1.75895619 + posZ: 15.6570263 + rotX: 359.982025 + rotY: 270.000916 + rotZ: 181.958267 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233534 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2335': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999385819522537/207CCD9C85ECB70A339C09170ABB42E139924AA0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780748790926468191/C3163A90948FC777DC7D95D05CB35D2DA32CBD9C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Train. + GMNotes: '' + GUID: 0fb5f0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Train Car + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.395413 + posY: 1.718365 + posZ: 18.5239372 + rotX: 359.932739 + rotY: 270.000031 + rotZ: 0.014156823 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2335': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999385819522537/207CCD9C85ECB70A339C09170ABB42E139924AA0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780748790926468191/C3163A90948FC777DC7D95D05CB35D2DA32CBD9C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 233541 +- 233540 +- 233539 +- 233538 +- 233537 +- 233536 +- 233535 +- 233534 +Description: '' +GMNotes: '' +GUID: '588354' +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Train Cars +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -30.2242661 + posY: 1.68049347 + posZ: 11.4600086 + rotX: 359.9201 + rotY: 270.000671 + rotZ: 0.0168760587 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 4 Blood on the Altar 30684d.ttslua b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 4 Blood on the Altar 30684d.ttslua new file mode 100644 index 000000000..54d591927 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 4 Blood on the Altar 30684d.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.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 Dunwich Legacy df7121/Custom_Model_Bag 4 Blood on the Altar 30684d.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 4 Blood on the Altar 30684d.yaml new file mode 100644 index 000000000..7a1bd25d5 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 4 Blood on the Altar 30684d.yaml @@ -0,0 +1,90 @@ +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 4 Blood on the Altar 30684d/Deck Naomi''s Crew d9037e.yaml' +- !include 'Custom_Model_Bag 4 Blood on the Altar 30684d/Custom_Model_Bag Set-aside + 69b78e.yaml' +- !include 'Custom_Model_Bag 4 Blood on the Altar 30684d/Deck Encounter Deck 82f7d9.yaml' +- !include 'Custom_Model_Bag 4 Blood on the Altar 30684d/Deck Agenda Deck 7b8844.yaml' +- !include 'Custom_Model_Bag 4 Blood on the Altar 30684d/Deck Act Deck 073668.yaml' +- !include 'Custom_Model_Bag 4 Blood on the Altar 30684d/Card Scenario 70df0b.yaml' +- !include 'Custom_Model_Bag 4 Blood on the Altar 30684d/Custom_Tile Blood on the + Altar 92b54a.yaml' +- !include 'Custom_Model_Bag 4 Blood on the Altar 30684d/Bag Locations 55cac8.yaml' +- !include 'Custom_Model_Bag 4 Blood on the Altar 30684d/Deck Possible Potential Sacrifices + 0504b5.yaml' +- !include 'Custom_Model_Bag 4 Blood on the Altar 30684d/Custom_Tile ec1b56.yaml' +- !include 'Custom_Model_Bag 4 Blood on the Altar 30684d/Custom_Tile 35bf8e.yaml' +- !include 'Custom_Model_Bag 4 Blood on the Altar 30684d/Custom_Tile 44b0c5.yaml' +- !include 'Custom_Model_Bag 4 Blood on the Altar 30684d/Custom_Tile 5b01f6.yaml' +- !include 'Custom_Model_Bag 4 Blood on the Altar 30684d/Custom_Tile eda3e2.yaml' +- !include 'Custom_Model_Bag 4 Blood on the Altar 30684d/Custom_Tile 84963c.yaml' +- !include 'Custom_Model_Bag 4 Blood on the Altar 30684d/Card Village Commons 47ff0e.yaml' +- !include 'Custom_Model_Bag 4 Blood on the Altar 30684d/Custom_Tile 7234af.yaml' +- !include 'Custom_Model_Bag 4 Blood on the Altar 30684d/Custom_Tile 188869.yaml' +- !include 'Custom_Model_Bag 4 Blood on the Altar 30684d/Custom_Tile bd431f.yaml' +- !include 'Custom_Model_Bag 4 Blood on the Altar 30684d/Custom_Tile c5df1c.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/829135118403755676/B4B5DEF8B5B23D09A19EFAD4AD41DA3E9F6B2BBC/ + MaterialIndex: 3 + MeshURL: https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj + NormalURL: '' + TypeIndex: 6 +Description: The Dunwich Legacy +GMNotes: '' +GUID: 30684d +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Model_Bag 4 Blood on the Altar 30684d.ttslua' +LuaScriptState: '{"ml":{"0504b5":{"lock":false,"pos":{"x":-11.2927,"y":1.6709,"z":10.4744},"rot":{"x":359.9201,"y":270,"z":0.0169}},"073668":{"lock":false,"pos":{"x":-2.6884,"y":1.6623,"z":-5.0485},"rot":{"x":0.0168,"y":180.0001,"z":0.0803}},"188869":{"lock":false,"pos":{"x":-33.7877,"y":1.6274,"z":-4.1144},"rot":{"x":359.9316,"y":314.9952,"z":359.9554}},"35bf8e":{"lock":false,"pos":{"x":-26.6194,"y":1.6208,"z":7.5118},"rot":{"x":0.0799,"y":89.9971,"z":359.9831}},"44b0c5":{"lock":false,"pos":{"x":-30.2242,"y":1.6248,"z":3.86},"rot":{"x":359.9836,"y":0.3774,"z":359.92}},"47ff0e":{"lock":false,"pos":{"x":-30.2241,"y":1.6954,"z":-0.03},"rot":{"x":359.9201,"y":269.9999,"z":0.0169}},"55cac8":{"lock":false,"pos":{"x":-11.1326,"y":1.4142,"z":7.5416},"rot":{"x":359.9831,"y":-0.0023,"z":359.92}},"5b01f6":{"lock":false,"pos":{"x":-33.432,"y":1.6303,"z":7.3588},"rot":{"x":0.0799,"y":89.997,"z":359.9831}},"69b78e":{"lock":false,"pos":{"x":1.696,"y":1.5583,"z":14.2787},"rot":{"x":359.9551,"y":224.998,"z":0.0687}},"70df0b":{"lock":false,"pos":{"x":-3.9558,"y":1.6556,"z":-10.4412},"rot":{"x":359.9197,"y":269.9998,"z":0.0168}},"7234af":{"lock":false,"pos":{"x":-30.2243,"y":1.6225,"z":-3.83},"rot":{"x":0.0169,"y":179.9983,"z":0.0799}},"7b8844":{"lock":false,"pos":{"x":-2.7246,"y":1.6566,"z":0.3733},"rot":{"x":0.0168,"y":180,"z":0.0803}},"82f7d9":{"lock":false,"pos":{"x":-3.9274,"y":1.7664,"z":5.7572},"rot":{"x":359.9197,"y":269.9999,"z":180.0168}},"84963c":{"lock":false,"pos":{"x":-33.5151,"y":1.6282,"z":-0.0061},"rot":{"x":0.0799,"y":90.0005,"z":359.9831}},"92b54a":{"lock":false,"pos":{"x":-3.4005,"y":1.5817,"z":-15.4017},"rot":{"x":359.9197,"y":270.0049,"z":0.0168}},"bd431f":{"lock":false,"pos":{"x":-26.8466,"y":1.6179,"z":-3.4794},"rot":{"x":0.0446,"y":45.01,"z":359.9316}},"c5df1c":{"lock":false,"pos":{"x":-26.718,"y":1.6187,"z":-0.1288},"rot":{"x":0.0799,"y":90.0005,"z":359.9831}},"d9037e":{"lock":false,"pos":{"x":-3.6238,"y":1.6738,"z":14.82},"rot":{"x":359.9197,"y":270.0001,"z":180.0168}},"ec1b56":{"lock":false,"pos":{"x":-23.6765,"y":1.6157,"z":3.86},"rot":{"x":0.0169,"y":179.9983,"z":0.0799}},"eda3e2":{"lock":false,"pos":{"x":-36.7731,"y":1.6339,"z":3.86},"rot":{"x":0.0169,"y":179.9982,"z":0.0799}}}}' +MaterialIndex: -1 +MeshIndex: -1 +Name: Custom_Model_Bag +Nickname: '4: Blood on the Altar' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 13.8736219 + posY: 1.46125948 + posZ: -3.16097617 + rotX: 359.920135 + rotY: 269.9968 + rotZ: 0.0168785136 + scaleX: 2.21 + scaleY: 0.46 + scaleZ: 2.42 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 4 Blood on the Altar 30684d/Bag Locations 55cac8.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 4 Blood on the Altar 30684d/Bag Locations 55cac8.yaml new file mode 100644 index 000000000..fa84d021b --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 4 Blood on the Altar 30684d/Bag Locations 55cac8.yaml @@ -0,0 +1,41 @@ +Autoraise: true +ColorDiffuse: + b: 0.0 + g: 0.366520882 + r: 0.7058823 +ContainedObjects: +- !include 'Bag Locations 55cac8/Deck Schoolhouse a77ad0.yaml' +- !include 'Bag Locations 55cac8/Deck House in the Reeds 2bd1c2.yaml' +- !include 'Bag Locations 55cac8/Deck Congregational Church 6b71a9.yaml' +- !include 'Bag Locations 55cac8/Deck Osborn''s General Store 391682.yaml' +- !include 'Bag Locations 55cac8/Deck Burned Ruins 99671c.yaml' +- !include 'Bag Locations 55cac8/Deck Bishop''s Brook 7ce9ed.yaml' +Description: Shuffle and Remove One +GMNotes: '' +GUID: 55cac8 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +MeshIndex: -1 +Name: Bag +Nickname: Locations +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -11.1325788 + posY: 1.41421056 + posZ: 7.54155445 + rotX: 359.983124 + rotY: -0.002348199 + rotZ: 359.920044 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 4 Blood on the Altar 30684d/Bag Locations 55cac8/Deck Bishop's Brook 7ce9ed.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 4 Blood on the Altar 30684d/Bag Locations 55cac8/Deck Bishop's Brook 7ce9ed.yaml new file mode 100644 index 000000000..737901b86 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 4 Blood on the Altar 30684d/Bag Locations 55cac8/Deck Bishop's Brook 7ce9ed.yaml @@ -0,0 +1,129 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 233548 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2335': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999385819522537/207CCD9C85ECB70A339C09170ABB42E139924AA0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780748790926468191/C3163A90948FC777DC7D95D05CB35D2DA32CBD9C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Dunwich. + GMNotes: '' + GUID: 0f3193 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Bishop's Brook + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -20.8507729 + posY: 1.58827293 + posZ: 20.3137169 + rotX: 359.920135 + rotY: 269.9997 + rotZ: 0.0168770961 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233547 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2335': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999385819522537/207CCD9C85ECB70A339C09170ABB42E139924AA0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780748790926468191/C3163A90948FC777DC7D95D05CB35D2DA32CBD9C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Dunwich. + GMNotes: '' + GUID: '333962' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Bishop's Brook + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -20.626873 + posY: 1.7367574 + posZ: 20.3739929 + rotX: 359.9201 + rotY: 269.999725 + rotZ: 0.0168571118 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2335': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999385819522537/207CCD9C85ECB70A339C09170ABB42E139924AA0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780748790926468191/C3163A90948FC777DC7D95D05CB35D2DA32CBD9C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 233548 +- 233547 +Description: '' +GMNotes: '' +GUID: 7ce9ed +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Bishop's Brook +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 20.3651466 + posY: 2.54817152 + posZ: 20.686245 + rotX: 0.02081915 + rotY: 269.966949 + rotZ: 0.0167577919 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 4 Blood on the Altar 30684d/Bag Locations 55cac8/Deck Burned Ruins 99671c.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 4 Blood on the Altar 30684d/Bag Locations 55cac8/Deck Burned Ruins 99671c.yaml new file mode 100644 index 000000000..a7c9cceab --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 4 Blood on the Altar 30684d/Bag Locations 55cac8/Deck Burned Ruins 99671c.yaml @@ -0,0 +1,129 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 233549 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2335': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999385819522537/207CCD9C85ECB70A339C09170ABB42E139924AA0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780748790926468191/C3163A90948FC777DC7D95D05CB35D2DA32CBD9C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Dunwich. + GMNotes: '' + GUID: 19ce2b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Burned Ruins + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -19.22478 + posY: 1.5862937 + posZ: 21.4498463 + rotX: 359.920471 + rotY: 269.996155 + rotZ: 0.0163596757 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233550 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2335': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999385819522537/207CCD9C85ECB70A339C09170ABB42E139924AA0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780748790926468191/C3163A90948FC777DC7D95D05CB35D2DA32CBD9C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Dunwich. + GMNotes: '' + GUID: 2559b7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Burned Ruins + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -19.2822 + posY: 1.78322816 + posZ: 20.9599247 + rotX: 359.921143 + rotY: 269.9848 + rotZ: 4.41422272 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2335': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999385819522537/207CCD9C85ECB70A339C09170ABB42E139924AA0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780748790926468191/C3163A90948FC777DC7D95D05CB35D2DA32CBD9C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 233549 +- 233550 +Description: '' +GMNotes: '' +GUID: 99671c +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Burned Ruins +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -17.1857071 + posY: 3.660987 + posZ: 17.9414749 + rotX: 0.0651723146 + rotY: 269.99765 + rotZ: 0.10983628 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 4 Blood on the Altar 30684d/Bag Locations 55cac8/Deck Congregational Church 6b71a9.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 4 Blood on the Altar 30684d/Bag Locations 55cac8/Deck Congregational Church 6b71a9.yaml new file mode 100644 index 000000000..8abed42d0 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 4 Blood on the Altar 30684d/Bag Locations 55cac8/Deck Congregational Church 6b71a9.yaml @@ -0,0 +1,129 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 233553 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2335': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999385819522537/207CCD9C85ECB70A339C09170ABB42E139924AA0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780748790926468191/C3163A90948FC777DC7D95D05CB35D2DA32CBD9C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Dunwich. + GMNotes: '' + GUID: 084254 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Congregational Church + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -19.1755486 + posY: 1.5845437 + posZ: 15.5809374 + rotX: 359.920135 + rotY: 269.999756 + rotZ: 0.0168754123 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233554 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2335': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999385819522537/207CCD9C85ECB70A339C09170ABB42E139924AA0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780748790926468191/C3163A90948FC777DC7D95D05CB35D2DA32CBD9C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Dunwich. + GMNotes: '' + GUID: 8579aa + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Congregational Church + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -19.4904137 + posY: 1.807359 + posZ: 15.1253633 + rotX: 2.8888154 + rotY: 270.005737 + rotZ: 0.0173339956 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2335': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999385819522537/207CCD9C85ECB70A339C09170ABB42E139924AA0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780748790926468191/C3163A90948FC777DC7D95D05CB35D2DA32CBD9C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 233553 +- 233554 +Description: '' +GMNotes: '' +GUID: 6b71a9 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Congregational Church +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -17.3592644 + posY: 3.65923762 + posZ: 17.0980263 + rotX: 359.98938 + rotY: 269.999268 + rotZ: 0.170888349 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 4 Blood on the Altar 30684d/Bag Locations 55cac8/Deck House in the Reeds 2bd1c2.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 4 Blood on the Altar 30684d/Bag Locations 55cac8/Deck House in the Reeds 2bd1c2.yaml new file mode 100644 index 000000000..f9a6e19ab --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 4 Blood on the Altar 30684d/Bag Locations 55cac8/Deck House in the Reeds 2bd1c2.yaml @@ -0,0 +1,129 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 233555 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2335': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999385819522537/207CCD9C85ECB70A339C09170ABB42E139924AA0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780748790926468191/C3163A90948FC777DC7D95D05CB35D2DA32CBD9C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Dunwich. + GMNotes: '' + GUID: 7a909a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: House in the Reeds + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -19.0212479 + posY: 1.5833472 + posZ: 12.2482557 + rotX: 359.920135 + rotY: 269.999878 + rotZ: 0.0168769266 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233556 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2335': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999385819522537/207CCD9C85ECB70A339C09170ABB42E139924AA0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780748790926468191/C3163A90948FC777DC7D95D05CB35D2DA32CBD9C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Dunwich. + GMNotes: '' + GUID: '159555' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: House in the Reeds + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -19.12008 + posY: 1.73212945 + posZ: 11.9027328 + rotX: 359.920135 + rotY: 269.9998 + rotZ: 0.0168595519 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2335': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999385819522537/207CCD9C85ECB70A339C09170ABB42E139924AA0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780748790926468191/C3163A90948FC777DC7D95D05CB35D2DA32CBD9C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 233555 +- 233556 +Description: '' +GMNotes: '' +GUID: 2bd1c2 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: House in the Reeds +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -17.0671234 + posY: 3.66039944 + posZ: 18.854887 + rotX: 0.015270262 + rotY: 269.997375 + rotZ: 359.840027 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 4 Blood on the Altar 30684d/Bag Locations 55cac8/Deck Osborn's General Store 391682.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 4 Blood on the Altar 30684d/Bag Locations 55cac8/Deck Osborn's General Store 391682.yaml new file mode 100644 index 000000000..b198bac4c --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 4 Blood on the Altar 30684d/Bag Locations 55cac8/Deck Osborn's General Store 391682.yaml @@ -0,0 +1,129 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 233551 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2335': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999385819522537/207CCD9C85ECB70A339C09170ABB42E139924AA0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780748790926468191/C3163A90948FC777DC7D95D05CB35D2DA32CBD9C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Dunwich. + GMNotes: '' + GUID: 2c4849 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Osborn's General Store + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -19.46666 + posY: 1.58580983 + posZ: 18.5023212 + rotX: 359.920135 + rotY: 270.000061 + rotZ: 0.0168762021 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233552 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2335': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999385819522537/207CCD9C85ECB70A339C09170ABB42E139924AA0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780748790926468191/C3163A90948FC777DC7D95D05CB35D2DA32CBD9C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Dunwich. + GMNotes: '' + GUID: 943aea + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Osborn's General Store + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -19.6688614 + posY: 1.81828165 + posZ: 18.3914871 + rotX: 359.922424 + rotY: 269.995 + rotZ: 4.54455853 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2335': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999385819522537/207CCD9C85ECB70A339C09170ABB42E139924AA0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780748790926468191/C3163A90948FC777DC7D95D05CB35D2DA32CBD9C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 233551 +- 233552 +Description: '' +GMNotes: '' +GUID: '391682' +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Osborn's General Store +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -17.28228 + posY: 3.65825367 + posZ: 17.6625786 + rotX: 0.09262982 + rotY: 270.003418 + rotZ: 0.221412092 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 4 Blood on the Altar 30684d/Bag Locations 55cac8/Deck Schoolhouse a77ad0.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 4 Blood on the Altar 30684d/Bag Locations 55cac8/Deck Schoolhouse a77ad0.yaml new file mode 100644 index 000000000..0d4f481d7 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 4 Blood on the Altar 30684d/Bag Locations 55cac8/Deck Schoolhouse a77ad0.yaml @@ -0,0 +1,129 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 233557 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2335': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999385819522537/207CCD9C85ECB70A339C09170ABB42E139924AA0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780748790926468191/C3163A90948FC777DC7D95D05CB35D2DA32CBD9C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Dunwich. + GMNotes: '' + GUID: 6e0f3d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Schoolhouse + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -19.5798874 + posY: 1.5832876 + posZ: 9.40095 + rotX: 359.920135 + rotY: 269.999847 + rotZ: 0.0168761984 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233558 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2335': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999385819522537/207CCD9C85ECB70A339C09170ABB42E139924AA0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780748790926468191/C3163A90948FC777DC7D95D05CB35D2DA32CBD9C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Dunwich. + GMNotes: '' + GUID: ce3bcc + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Schoolhouse + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -19.64412 + posY: 1.73201632 + posZ: 9.018622 + rotX: 359.920135 + rotY: 269.999878 + rotZ: 0.0168746226 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2335': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999385819522537/207CCD9C85ECB70A339C09170ABB42E139924AA0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780748790926468191/C3163A90948FC777DC7D95D05CB35D2DA32CBD9C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 233557 +- 233558 +Description: '' +GMNotes: '' +GUID: a77ad0 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Schoolhouse +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -17.1057358 + posY: 3.6637876 + posZ: 17.598299 + rotX: 359.937927 + rotY: 269.999878 + rotZ: 0.0462034233 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 4 Blood on the Altar 30684d/Card Scenario 70df0b.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 4 Blood on the Altar 30684d/Card Scenario 70df0b.yaml new file mode 100644 index 000000000..d544e5675 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 4 Blood on the Altar 30684d/Card Scenario 70df0b.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 233545 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2335': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999385819522537/207CCD9C85ECB70A339C09170ABB42E139924AA0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780748790926468191/C3163A90948FC777DC7D95D05CB35D2DA32CBD9C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Blood on the Altar +GMNotes: '' +GUID: 70df0b +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Scenario +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.955833 + posY: 1.655648 + posZ: -10.4411545 + rotX: 359.919739 + rotY: 269.999817 + rotZ: 0.0168418568 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 4 Blood on the Altar 30684d/Card Village Commons 47ff0e.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 4 Blood on the Altar 30684d/Card Village Commons 47ff0e.yaml new file mode 100644 index 000000000..ec4dadbc7 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 4 Blood on the Altar 30684d/Card Village Commons 47ff0e.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 233546 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2335': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999385819522537/207CCD9C85ECB70A339C09170ABB42E139924AA0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780748790926468191/C3163A90948FC777DC7D95D05CB35D2DA32CBD9C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: "\tDunwich. Central." +GMNotes: '' +GUID: 47ff0e +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Village Commons +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -30.2241364 + posY: 1.69535065 + posZ: -0.0299940128 + rotX: 359.9201 + rotY: 269.9999 + rotZ: 0.0168691147 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 4 Blood on the Altar 30684d/Custom_Model_Bag Set-aside 69b78e.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 4 Blood on the Altar 30684d/Custom_Model_Bag Set-aside 69b78e.yaml new file mode 100644 index 000000000..4a7fee489 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 4 Blood on the Altar 30684d/Custom_Model_Bag Set-aside 69b78e.yaml @@ -0,0 +1,59 @@ +Autoraise: true +ColorDiffuse: + b: 0.02148666 + g: 0.00100758043 + r: 0.02148666 +ContainedObjects: +- !include 'Custom_Model_Bag Set-aside 69b78e/Card Powder of Ibn-Ghazi f96ed0.yaml' +- !include 'Custom_Model_Bag Set-aside 69b78e/Card Key to the Chamber 49f43a.yaml' +- !include 'Custom_Model_Bag Set-aside 69b78e/Card The Hidden Chamber cb0272.yaml' +- !include 'Custom_Model_Bag Set-aside 69b78e/Card Silas Bishop de3bd5.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: Blood on the Altar +GMNotes: '' +GUID: 69b78e +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +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.69601345 + posY: 1.55831718 + posZ: 14.2787437 + rotX: 359.955139 + rotY: 224.997986 + rotZ: 0.06867704 + scaleX: 2.0 + scaleY: 2.0 + scaleZ: 2.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 4 Blood on the Altar 30684d/Custom_Model_Bag Set-aside 69b78e/Card Key to the Chamber 49f43a.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 4 Blood on the Altar 30684d/Custom_Model_Bag Set-aside 69b78e/Card Key to the Chamber 49f43a.yaml new file mode 100644 index 000000000..0e9d4f0ba --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 4 Blood on the Altar 30684d/Custom_Model_Bag Set-aside 69b78e/Card Key to the Chamber 49f43a.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 233847 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2338': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: Item. Key. +GMNotes: '' +GUID: 49f43a +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Key to the Chamber +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -8.119753 + posY: 1.57518816 + posZ: -8.53619 + rotX: 359.920135 + rotY: 269.999939 + rotZ: 0.0168762188 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 4 Blood on the Altar 30684d/Custom_Model_Bag Set-aside 69b78e/Card Powder of Ibn-Ghazi f96ed0.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 4 Blood on the Altar 30684d/Custom_Model_Bag Set-aside 69b78e/Card Powder of Ibn-Ghazi f96ed0.yaml new file mode 100644 index 000000000..ee2b31ecc --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 4 Blood on the Altar 30684d/Custom_Model_Bag Set-aside 69b78e/Card Powder of Ibn-Ghazi f96ed0.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Seeing Things Unseen +GMNotes: '' +GUID: f96ed0 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Powder of Ibn-Ghazi +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -9.769892 + posY: 3.62756467 + posZ: 5.47835255 + rotX: 359.920074 + rotY: 269.999939 + rotZ: 0.01687699 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 4 Blood on the Altar 30684d/Custom_Model_Bag Set-aside 69b78e/Card Silas Bishop de3bd5.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 4 Blood on the Altar 30684d/Custom_Model_Bag Set-aside 69b78e/Card Silas Bishop de3bd5.yaml new file mode 100644 index 000000000..59b5a7aef --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 4 Blood on the Altar 30684d/Custom_Model_Bag Set-aside 69b78e/Card Silas Bishop de3bd5.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 232848 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: Infused With Evil +GMNotes: '' +GUID: de3bd5 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Silas Bishop +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -9.408284 + posY: 3.626911 + posZ: 6.754977 + rotX: 359.920044 + rotY: 269.998169 + rotZ: 0.016867822 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 4 Blood on the Altar 30684d/Custom_Model_Bag Set-aside 69b78e/Card The Hidden Chamber cb0272.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 4 Blood on the Altar 30684d/Custom_Model_Bag Set-aside 69b78e/Card The Hidden Chamber cb0272.yaml new file mode 100644 index 000000000..523e41f11 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 4 Blood on the Altar 30684d/Custom_Model_Bag Set-aside 69b78e/Card The Hidden Chamber cb0272.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 233559 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2335': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999385819522537/207CCD9C85ECB70A339C09170ABB42E139924AA0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/780748790926468191/C3163A90948FC777DC7D95D05CB35D2DA32CBD9C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Prison of the Beast +GMNotes: '' +GUID: cb0272 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: The Hidden Chamber +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -7.828171 + posY: 1.57579017 + posZ: -4.78744841 + rotX: 359.920135 + rotY: 270.0002 + rotZ: 0.0168771353 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 4 Blood on the Altar 30684d/Custom_Tile 188869.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 4 Blood on the Altar 30684d/Custom_Tile 188869.yaml new file mode 100644 index 000000000..dce6a963f --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 4 Blood on the Altar 30684d/Custom_Tile 188869.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: '188869' +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.7877 + posY: 1.6274035 + posZ: -4.11440039 + rotX: 359.93158 + rotY: 314.995178 + rotZ: 359.955444 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 4 Blood on the Altar 30684d/Custom_Tile 35bf8e.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 4 Blood on the Altar 30684d/Custom_Tile 35bf8e.yaml new file mode 100644 index 000000000..ec15342f3 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 4 Blood on the Altar 30684d/Custom_Tile 35bf8e.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 35bf8e +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.6194 + posY: 1.62083113 + posZ: 7.51179934 + rotX: 0.07989341 + rotY: 89.99712 + rotZ: 359.9831 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 4 Blood on the Altar 30684d/Custom_Tile 44b0c5.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 4 Blood on the Altar 30684d/Custom_Tile 44b0c5.yaml new file mode 100644 index 000000000..1d976bcea --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 4 Blood on the Altar 30684d/Custom_Tile 44b0c5.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 44b0c5 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Tile +Nickname: '' +Snap: true +States: + '1': + 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: '' + GMNotes: '' + GUID: b5d320 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Custom_Tile + Nickname: '' + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -30.2242451 + posY: 1.62478256 + posZ: 3.86000347 + rotX: 359.983643 + rotY: 0.3773988 + rotZ: 359.919922 + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.62478268 + posZ: 3.86000037 + rotX: 359.983643 + rotY: 0.377441049 + rotZ: 359.919952 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 4 Blood on the Altar 30684d/Custom_Tile 5b01f6.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 4 Blood on the Altar 30684d/Custom_Tile 5b01f6.yaml new file mode 100644 index 000000000..d0867c7ee --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 4 Blood on the Altar 30684d/Custom_Tile 5b01f6.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 5b01f6 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.432 + posY: 1.6302861 + posZ: 7.35879946 + rotX: 0.0798932239 + rotY: 89.99705 + rotZ: 359.9831 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 4 Blood on the Altar 30684d/Custom_Tile 7234af.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 4 Blood on the Altar 30684d/Custom_Tile 7234af.yaml new file mode 100644 index 000000000..34d888c1d --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 4 Blood on the Altar 30684d/Custom_Tile 7234af.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 7234af +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.6225183 + posZ: -3.83 + rotX: 0.01687421 + rotY: 179.9983 + rotZ: 0.07993886 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 4 Blood on the Altar 30684d/Custom_Tile 84963c.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 4 Blood on the Altar 30684d/Custom_Tile 84963c.yaml new file mode 100644 index 000000000..90cd5a259 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 4 Blood on the Altar 30684d/Custom_Tile 84963c.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 84963c +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.5151 + posY: 1.62823308 + posZ: -0.00610029139 + rotX: 0.07989458 + rotY: 90.00048 + rotZ: 359.9831 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 4 Blood on the Altar 30684d/Custom_Tile bd431f.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 4 Blood on the Altar 30684d/Custom_Tile bd431f.yaml new file mode 100644 index 000000000..02cf85ab2 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 4 Blood on the Altar 30684d/Custom_Tile bd431f.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: bd431f +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.8466 + posY: 1.6179117 + posZ: -3.47939968 + rotX: 0.0445777066 + rotY: 45.010006 + rotZ: 359.9316 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 4 Blood on the Altar 30684d/Custom_Tile c5df1c.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 4 Blood on the Altar 30684d/Custom_Tile c5df1c.yaml new file mode 100644 index 000000000..5219f3ba5 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 4 Blood on the Altar 30684d/Custom_Tile c5df1c.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: c5df1c +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.718 + posY: 1.61871886 + posZ: -0.128800273 + rotX: 0.0798945 + rotY: 90.00048 + rotZ: 359.9831 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 4 Blood on the Altar 30684d/Custom_Tile ec1b56.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 4 Blood on the Altar 30684d/Custom_Tile ec1b56.yaml new file mode 100644 index 000000000..152dd3bbc --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 4 Blood on the Altar 30684d/Custom_Tile ec1b56.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: ec1b56 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.6765 + posY: 1.6156522 + posZ: 3.86 + rotX: 0.0168742035 + rotY: 179.998337 + rotZ: 0.0799398646 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 4 Blood on the Altar 30684d/Custom_Tile eda3e2.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 4 Blood on the Altar 30684d/Custom_Tile eda3e2.yaml new file mode 100644 index 000000000..41098e3fe --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 4 Blood on the Altar 30684d/Custom_Tile eda3e2.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: eda3e2 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.63391435 + posZ: 3.86000013 + rotX: 0.0168744419 + rotY: 179.998154 + rotZ: 0.0799388 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 4 Blood on the Altar 30684d/Custom_Tile Blood on the Altar 92b54a.ttslua b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 4 Blood on the Altar 30684d/Custom_Tile Blood on the Altar 92b54a.ttslua new file mode 100644 index 000000000..35359436c --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 4 Blood on the Altar 30684d/Custom_Tile Blood on the Altar 92b54a.ttslua @@ -0,0 +1,25 @@ +name = 'Blood on the Altar' + +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 + +function standaloneClick() + Global.call('fillContainer', {object=self, key=name, mode='standalone'}) +end diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 4 Blood on the Altar 30684d/Custom_Tile Blood on the Altar 92b54a.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 4 Blood on the Altar 30684d/Custom_Tile Blood on the Altar 92b54a.yaml new file mode 100644 index 000000000..81d78dd8e --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 4 Blood on the Altar 30684d/Custom_Tile Blood on the Altar 92b54a.yaml @@ -0,0 +1,42 @@ +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 +GMNotes: '' +GUID: 92b54a +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Tile Blood on the Altar 92b54a.ttslua' +LuaScriptState: '' +Name: Custom_Tile +Nickname: Blood on the Altar +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.40049982 + posY: 1.58169889 + posZ: -15.4017029 + rotX: 359.919739 + rotY: 270.004944 + rotZ: 0.01683094 + scaleX: 2.2 + scaleY: 1.0 + scaleZ: 2.2 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 4 Blood on the Altar 30684d/Deck Act Deck 073668.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 4 Blood on the Altar 30684d/Deck Act Deck 073668.yaml new file mode 100644 index 000000000..0e3251ecf --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 4 Blood on the Altar 30684d/Deck Act Deck 073668.yaml @@ -0,0 +1,129 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 233331 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2333': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296027643/326876D4B46DF777AA1293989DEEE6A810ED027B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999385819527677/3AD8DFFFBFF54DB098AD3E00BB7E75DA0590FE8B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 2 + GMNotes: '' + GUID: 960a29 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Chamber of the Beast + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -22.5529 + posY: 1.5907743 + posZ: 20.7507458 + rotX: 0.0168697555 + rotY: 180.000061 + rotZ: 0.07987861 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233330 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2333': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296027643/326876D4B46DF777AA1293989DEEE6A810ED027B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999385819527677/3AD8DFFFBFF54DB098AD3E00BB7E75DA0590FE8B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 1 + GMNotes: '' + GUID: 1b5f59 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Searching for Answers + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -22.573616 + posY: 1.74765623 + posZ: 20.5637589 + rotX: 0.0168702248 + rotY: 180.000076 + rotZ: 0.07987797 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2333': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296027643/326876D4B46DF777AA1293989DEEE6A810ED027B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999385819527677/3AD8DFFFBFF54DB098AD3E00BB7E75DA0590FE8B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 233331 +- 233330 +Description: '' +GMNotes: '' +GUID: 073668 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Act Deck +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.68840027 + posY: 1.66233337 + posZ: -5.048525 + rotX: 0.0168347862 + rotY: 180.000061 + rotZ: 0.08025833 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 4 Blood on the Altar 30684d/Deck Agenda Deck 7b8844.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 4 Blood on the Altar 30684d/Deck Agenda Deck 7b8844.yaml new file mode 100644 index 000000000..4055329cc --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 4 Blood on the Altar 30684d/Deck Agenda Deck 7b8844.yaml @@ -0,0 +1,172 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 233329 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2333': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296027643/326876D4B46DF777AA1293989DEEE6A810ED027B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999385819527677/3AD8DFFFBFF54DB098AD3E00BB7E75DA0590FE8B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 3 + GMNotes: '' + GUID: 6286f9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Feed the Beast + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -21.3669167 + posY: 1.5892148 + posZ: 21.0694656 + rotX: 0.0168705061 + rotY: 180.0 + rotZ: 0.0798787549 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233328 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2333': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296027643/326876D4B46DF777AA1293989DEEE6A810ED027B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999385819527677/3AD8DFFFBFF54DB098AD3E00BB7E75DA0590FE8B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 2 + GMNotes: '' + GUID: 8f5a49 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Old Ones Hunger + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -21.4617977 + posY: 1.745777 + posZ: 21.2267323 + rotX: 0.0168710984 + rotY: 180.000015 + rotZ: 0.07988045 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233327 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2333': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296027643/326876D4B46DF777AA1293989DEEE6A810ED027B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999385819527677/3AD8DFFFBFF54DB098AD3E00BB7E75DA0590FE8B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 1 + GMNotes: '' + GUID: abf877 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Strange Disappearances + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -21.4648762 + posY: 1.75506532 + posZ: 20.3543186 + rotX: 0.0168660525 + rotY: 180.000046 + rotZ: 0.07988553 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2333': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296027643/326876D4B46DF777AA1293989DEEE6A810ED027B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999385819527677/3AD8DFFFBFF54DB098AD3E00BB7E75DA0590FE8B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 233329 +- 233328 +- 233327 +Description: '' +GMNotes: '' +GUID: 7b8844 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Agenda Deck +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.72459483 + posY: 1.65664113 + posZ: 0.373330176 + rotX: 0.016839467 + rotY: 179.999969 + rotZ: 0.08025673 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 4 Blood on the Altar 30684d/Deck Encounter Deck 82f7d9.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 4 Blood on the Altar 30684d/Deck Encounter Deck 82f7d9.yaml new file mode 100644 index 000000000..5f5e23ab1 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 4 Blood on the Altar 30684d/Deck Encounter Deck 82f7d9.yaml @@ -0,0 +1,1297 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 232816 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: 36342a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Sordid and Silent + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 4.15036964 + posY: 1.54897928 + posZ: 5.238284 + rotX: 359.920135 + rotY: 269.999878 + rotZ: 0.016877193 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232816 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: ebb8db + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Sordid and Silent + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.98407245 + posY: 1.705162 + posZ: 5.341168 + rotX: 359.920135 + rotY: 269.999878 + rotZ: 0.0168772284 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232815 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: de3bd5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Unhallowed Country + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 4.32745171 + posY: 1.71471429 + posZ: 5.03506565 + rotX: 359.919861 + rotY: 269.999969 + rotZ: 0.0168688018 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232815 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: de3bd5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Unhallowed Country + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 4.00495052 + posY: 1.70878184 + posZ: 5.306538 + rotX: 359.920135 + rotY: 269.999969 + rotZ: 0.01687902 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232856 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. + GMNotes: '' + GUID: '830622' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Servant of Many Mouths + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.96014857 + posY: 1.55161953 + posZ: 8.569974 + rotX: 359.920135 + rotY: 269.999878 + rotZ: 0.0168777164 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232856 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. + GMNotes: '' + GUID: 4c9b2a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Servant of Many Mouths + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.959432 + posY: 1.70811665 + posZ: 8.731121 + rotX: 359.920135 + rotY: 269.999878 + rotZ: 0.0168776065 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232856 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. + GMNotes: '' + GUID: '830622' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Servant of Many Mouths + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.959432 + posY: 1.72536492 + posZ: 8.731121 + rotX: 359.920776 + rotY: 269.999878 + rotZ: 0.0158768017 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232855 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: "\tTerror." + GMNotes: '' + GUID: dfd751 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Rotting Remains + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.74654031 + posY: 1.54991353 + posZ: 6.49890852 + rotX: 359.920135 + rotY: 269.999939 + rotZ: 0.0168761481 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232855 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: "\tTerror." + GMNotes: '' + GUID: 26556a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Rotting Remains + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.54368424 + posY: 1.706326 + posZ: 6.574124 + rotX: 359.920135 + rotY: 269.999939 + rotZ: 0.0168759748 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232855 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: "\tTerror." + GMNotes: '' + GUID: dfd751 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Rotting Remains + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.54368424 + posY: 1.7235961 + posZ: 6.574124 + rotX: 359.920135 + rotY: 269.999939 + rotZ: 0.0168760289 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232854 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: "\tOmen." + GMNotes: '' + GUID: 56e0f1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Strange Signs + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.175488 + posY: 1.55028129 + posZ: 5.04462242 + rotX: 359.920135 + rotY: 269.999939 + rotZ: 0.0168766249 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232854 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: "\tOmen." + GMNotes: '' + GUID: 6b8170 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Strange Signs + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.983425 + posY: 1.70778143 + posZ: 5.07155752 + rotX: 359.9361 + rotY: 270.0 + rotZ: 0.013501252 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232853 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: "\tOmen." + GMNotes: '' + GUID: de3bd5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Psychopomp's Song + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.93528557 + posY: 1.55154455 + posZ: 8.19747 + rotX: 359.920135 + rotY: 269.999847 + rotZ: 0.01687629 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232853 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: "\tOmen." + GMNotes: '' + GUID: 3e13f3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Psychopomp's Song + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.73155141 + posY: 1.70817387 + posZ: 7.897554 + rotX: 359.920135 + rotY: 269.999817 + rotZ: 0.0168764144 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232852 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: de3bd5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Kidnapped! + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.101256 + posY: 1.5511688 + posZ: 7.707222 + rotX: 359.920135 + rotY: 269.999878 + rotZ: 0.0168776121 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232852 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 95f4d1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Kidnapped! + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.82772326 + posY: 1.70790935 + posZ: 7.70930338 + rotX: 359.920135 + rotY: 269.999878 + rotZ: 0.0168775991 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232852 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: de3bd5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Kidnapped! + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.82772326 + posY: 1.7251606 + posZ: 7.70930338 + rotX: 359.919739 + rotY: 269.999878 + rotZ: 0.0166410487 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232818 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: 60ef9e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Eager for Death + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.646352 + posY: 1.548182 + posZ: 0.144670352 + rotX: 359.920135 + rotY: 269.999939 + rotZ: 0.0168772917 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232818 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: 40e9d0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Eager for Death + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.37573743 + posY: 1.7043395 + posZ: 0.209344044 + rotX: 359.920135 + rotY: 269.999939 + rotZ: 0.0168772619 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232817 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: "\tCreature." + GMNotes: '' + GUID: de3bd5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Whippoorwill + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.19784832 + posY: 1.54999852 + posZ: 4.190304 + rotX: 359.920135 + rotY: 269.9999 + rotZ: 0.0168776866 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232817 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: "\tCreature." + GMNotes: '' + GUID: 61c583 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Whippoorwill + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.24814034 + posY: 1.70613587 + posZ: 4.471411 + rotX: 359.920135 + rotY: 269.9999 + rotZ: 0.0168776922 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232817 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: "\tCreature." + GMNotes: '' + GUID: de3bd5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Whippoorwill + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.24814034 + posY: 1.72339261 + posZ: 4.471411 + rotX: 359.920441 + rotY: 269.9999 + rotZ: 0.0163779482 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231726 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 1e04da + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: On Wings of Darkness + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -13.4282417 + posY: 1.70155811 + posZ: 13.7778349 + rotX: 359.535278 + rotY: 269.9516 + rotZ: 181.449341 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231726 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 1d0c1c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: On Wings of Darkness + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -15.7923059 + posY: 1.73901558 + posZ: 4.52112341 + rotX: 359.919861 + rotY: 269.999969 + rotZ: 0.0123590212 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231725 + 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 + UniqueBack: false + Description: Monster. Nightgaunt. + GMNotes: '' + GUID: ab3719 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Hunting Nightgaunt + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -16.52605 + posY: 1.57874775 + posZ: 8.559591 + rotX: 359.920471 + rotY: 270.0019 + rotZ: 0.0145635763 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231725 + 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 + UniqueBack: false + Description: Monster. Nightgaunt. + GMNotes: '' + GUID: b75b70 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Hunting Nightgaunt + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -13.47085 + posY: 1.72509861 + posZ: 13.60628 + rotX: 359.9252 + rotY: 269.9989 + rotZ: 0.0176846832 + 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 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: 6e7cb8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: 8af879 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: 6e7cb8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' +CustomDeck: + '2317': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 232816 +- 232816 +- 232815 +- 232815 +- 232856 +- 232856 +- 232856 +- 232855 +- 232855 +- 232855 +- 232854 +- 232854 +- 232853 +- 232853 +- 232852 +- 232852 +- 232852 +- 232818 +- 232818 +- 232817 +- 232817 +- 232817 +- 231726 +- 231726 +- 231725 +- 231725 +- 231719 +- 231719 +- 231719 +Description: '' +GMNotes: '' +GUID: 82f7d9 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Encounter Deck +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.92738986 + posY: 1.76638019 + posZ: 5.757152 + rotX: 359.919739 + rotY: 269.9999 + rotZ: 180.01683 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 4 Blood on the Altar 30684d/Deck Naomi's Crew d9037e.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 4 Blood on the Altar 30684d/Deck Naomi's Crew d9037e.yaml new file mode 100644 index 000000000..abb42e7d2 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 4 Blood on the Altar 30684d/Deck Naomi's Crew d9037e.yaml @@ -0,0 +1,301 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 232826 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Tactic. + GMNotes: '' + GUID: fb489f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Hunted Down + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.980493 + posY: 1.55055571 + posZ: 5.05313349 + rotX: 359.920135 + rotY: 269.999939 + rotZ: 0.016877586 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232826 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Tactic. + GMNotes: '' + GUID: 5da81c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Hunted Down + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.06432152 + posY: 1.70658684 + posZ: 4.754894 + rotX: 359.920135 + rotY: 269.999939 + rotZ: 0.01687765 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232825 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: "\tHuman. Criminal. Syndicate." + GMNotes: '' + GUID: 5b2e99 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Mobster + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.824686 + posY: 1.55165482 + posZ: 8.04818 + rotX: 359.920135 + rotY: 269.999939 + rotZ: 0.0168768317 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232825 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: "\tHuman. Criminal. Syndicate." + GMNotes: '' + GUID: a5bca1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Mobster + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.079666 + posY: 1.707689 + posZ: 7.82385826 + rotX: 359.920135 + rotY: 269.999939 + rotZ: 0.0168767981 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232824 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: "\tHuman. Criminal. Syndicate." + GMNotes: '' + GUID: de3bd5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: O'Bannion's Thug + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.137052 + posY: 1.700631 + posZ: 4.79863548 + rotX: 359.920135 + rotY: 269.999878 + rotZ: 0.016896477 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232824 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: "\tHuman. Criminal. Syndicate." + GMNotes: '' + GUID: de3bd5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: O'Bannion's Thug + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.09011388 + posY: 1.71127486 + posZ: 4.866368 + rotX: 359.9204 + rotY: 269.999878 + rotZ: 0.0165366847 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 232826 +- 232826 +- 232825 +- 232825 +- 232824 +- 232824 +Description: '' +GMNotes: '' +GUID: d9037e +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: "\tNaomi's Crew" +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.62381315 + posY: 1.67380714 + posZ: 14.8200445 + rotX: 359.919739 + rotY: 270.000061 + rotZ: 180.01683 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 4 Blood on the Altar 30684d/Deck Possible Potential Sacrifices 0504b5.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 4 Blood on the Altar 30684d/Deck Possible Potential Sacrifices 0504b5.yaml new file mode 100644 index 000000000..a864301b6 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 4 Blood on the Altar 30684d/Deck Possible Potential Sacrifices 0504b5.yaml @@ -0,0 +1,258 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- 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 + UniqueBack: false + Description: Recalling Ancient Things + GMNotes: '' + GUID: 6714b2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Zebulon Whateley + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -19.3908253 + posY: 1.579903 + posZ: -1.19811845 + rotX: 359.920135 + rotY: 270.000061 + rotZ: 0.01687859 + 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 + UniqueBack: false + Description: Smarter Than He Lets On + GMNotes: '' + GUID: f14dce + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Earl Sawyer + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -19.436945 + posY: 1.72874486 + posZ: -1.06834185 + rotX: 359.920135 + rotY: 269.9999 + rotZ: 0.0168947689 + 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 + UniqueBack: false + Description: Professor of Archaeology + GMNotes: '' + GUID: f03306 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dr. Francis Morgan + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -19.1315784 + posY: 1.7459451 + posZ: -0.9969317 + rotX: 359.920135 + rotY: 269.999878 + rotZ: 0.016867945 + 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 + UniqueBack: false + Description: Professor of Languages + GMNotes: '' + GUID: 42806b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Professor Warren Rice + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -19.3789425 + posY: 1.73235059 + posZ: -0.794230759 + rotX: 359.9201 + rotY: 269.9999 + rotZ: 0.0168699138 + 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 + UniqueBack: false + Description: The Head Librarian + GMNotes: '' + GUID: 66197b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dr. Henry Armitage + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -19.3524914 + posY: 1.7301228 + posZ: -1.46711588 + rotX: 359.920135 + rotY: 269.999878 + rotZ: 0.0168978833 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2329': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 232949 +- 232950 +- 232907 +- 232904 +- 232900 +Description: '' +GMNotes: '' +GUID: 0504b5 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Possible Potential Sacrifices +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -11.2927141 + posY: 1.67091274 + posZ: 10.4743834 + rotX: 359.9201 + rotY: 270.000031 + rotZ: 0.0168758146 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 5 Undimensioned and Unseen afe7ce.ttslua b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 5 Undimensioned and Unseen afe7ce.ttslua new file mode 100644 index 000000000..54d591927 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 5 Undimensioned and Unseen afe7ce.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.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 Dunwich Legacy df7121/Custom_Model_Bag 5 Undimensioned and Unseen afe7ce.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 5 Undimensioned and Unseen afe7ce.yaml new file mode 100644 index 000000000..45456305f --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 5 Undimensioned and Unseen afe7ce.yaml @@ -0,0 +1,109 @@ +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 5 Undimensioned and Unseen afe7ce/Deck Broods of Yog-Sothoth + f37775.yaml' +- !include 'Custom_Model_Bag 5 Undimensioned and Unseen afe7ce/Custom_Model_Bag Set-aside + 6a83c1.yaml' +- !include 'Custom_Model_Bag 5 Undimensioned and Unseen afe7ce/Deck Encounter Deck + 2ee2b1.yaml' +- !include 'Custom_Model_Bag 5 Undimensioned and Unseen afe7ce/Deck Agenda Deck 584b1a.yaml' +- !include 'Custom_Model_Bag 5 Undimensioned and Unseen afe7ce/Deck Act Deck 2ee4bd.yaml' +- !include 'Custom_Model_Bag 5 Undimensioned and Unseen afe7ce/Card Scenario aa50e4.yaml' +- !include 'Custom_Model_Bag 5 Undimensioned and Unseen afe7ce/Custom_Tile Undimensioned + and Unseen 393c71.yaml' +- !include 'Custom_Model_Bag 5 Undimensioned and Unseen afe7ce/Card Blasted Heath + cda035.yaml' +- !include 'Custom_Model_Bag 5 Undimensioned and Unseen afe7ce/Card Blasted Heath + 995fe7.yaml' +- !include 'Custom_Model_Bag 5 Undimensioned and Unseen afe7ce/Custom_Tile a706b9.yaml' +- !include 'Custom_Model_Bag 5 Undimensioned and Unseen afe7ce/Custom_Tile 7234af.yaml' +- !include 'Custom_Model_Bag 5 Undimensioned and Unseen afe7ce/Card Devil''s Hop Yard + f7dd31.yaml' +- !include 'Custom_Model_Bag 5 Undimensioned and Unseen afe7ce/Card Devil''s Hop Yard + 7310f8.yaml' +- !include 'Custom_Model_Bag 5 Undimensioned and Unseen afe7ce/Custom_Tile 7ec61f.yaml' +- !include 'Custom_Model_Bag 5 Undimensioned and Unseen afe7ce/Card Whateley Ruins + b1e332.yaml' +- !include 'Custom_Model_Bag 5 Undimensioned and Unseen afe7ce/Card Whateley Ruins + 42e1b7.yaml' +- !include 'Custom_Model_Bag 5 Undimensioned and Unseen afe7ce/Custom_Tile 7b8d65.yaml' +- !include 'Custom_Model_Bag 5 Undimensioned and Unseen afe7ce/Card Ten-Acre Meadow + 04861e.yaml' +- !include 'Custom_Model_Bag 5 Undimensioned and Unseen afe7ce/Card Ten-Acre Meadow + 05b0dd.yaml' +- !include 'Custom_Model_Bag 5 Undimensioned and Unseen afe7ce/Custom_Tile 57d9e9.yaml' +- !include 'Custom_Model_Bag 5 Undimensioned and Unseen afe7ce/Card Dunwich Village + cf4a62.yaml' +- !include 'Custom_Model_Bag 5 Undimensioned and Unseen afe7ce/Card Dunwich Village + ac4427.yaml' +- !include 'Custom_Model_Bag 5 Undimensioned and Unseen afe7ce/Custom_Tile 8dfbb1.yaml' +- !include 'Custom_Model_Bag 5 Undimensioned and Unseen afe7ce/Card Cold Spring Glen + c50379.yaml' +- !include 'Custom_Model_Bag 5 Undimensioned and Unseen afe7ce/Card Cold Spring Glen + e58475.yaml' +- !include 'Custom_Model_Bag 5 Undimensioned and Unseen afe7ce/Custom_Tile 6c7a0b.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/829135118403756878/0A3FE0A5BAC24197D5F19A6314365EDF3E80DC6F/ + MaterialIndex: 3 + MeshURL: https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj + NormalURL: '' + TypeIndex: 6 +Description: The Dunwich Legacy +GMNotes: '' +GUID: afe7ce +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Model_Bag 5 Undimensioned and Unseen afe7ce.ttslua' +LuaScriptState: '{"ml":{"04861e":{"lock":false,"pos":{"x":-22.0986,"y":1.8285,"z":-0.0798},"rot":{"x":354.603,"y":270.0026,"z":0.007}},"05b0dd":{"lock":false,"pos":{"x":-23.6763,"y":1.6862,"z":-0.03},"rot":{"x":359.9203,"y":270.0002,"z":0.0157}},"2ee2b1":{"lock":false,"pos":{"x":-3.9274,"y":1.7877,"z":5.7572},"rot":{"x":359.9197,"y":270,"z":180.0168}},"2ee4bd":{"lock":false,"pos":{"x":-2.6884,"y":1.6623,"z":-5.0485},"rot":{"x":0.0168,"y":180.0001,"z":0.0803}},"393c71":{"lock":false,"pos":{"x":-3.9621,"y":1.5828,"z":-14.419},"rot":{"x":359.9197,"y":270.0058,"z":0.0168}},"42e1b7":{"lock":false,"pos":{"x":-23.6765,"y":1.6839,"z":-7.7},"rot":{"x":359.9203,"y":269.9948,"z":0.016}},"57d9e9":{"lock":false,"pos":{"x":-23.6765,"y":1.6157,"z":3.86},"rot":{"x":0.0169,"y":179.9841,"z":0.0799}},"584b1a":{"lock":false,"pos":{"x":-2.7246,"y":1.6566,"z":0.3733},"rot":{"x":0.0168,"y":180.0001,"z":0.0803}},"6a83c1":{"lock":false,"pos":{"x":1.6961,"y":1.5583,"z":14.2789},"rot":{"x":359.9551,"y":224.9912,"z":0.0687}},"6c7a0b":{"lock":false,"pos":{"x":-26.7378,"y":1.6177,"z":-3.6631},"rot":{"x":0.0684,"y":135.0119,"z":0.0446}},"7234af":{"lock":false,"pos":{"x":-17.1206,"y":1.6042,"z":-3.8228},"rot":{"x":0.0169,"y":179.9841,"z":0.0799}},"7310f8":{"lock":false,"pos":{"x":-17.12,"y":1.6748,"z":-7.6998},"rot":{"x":359.9201,"y":270.0028,"z":0.0168}},"7b8d65":{"lock":false,"pos":{"x":-22.5477,"y":1.6119,"z":-3.5447},"rot":{"x":0.0169,"y":179.984,"z":0.0799}},"7ec61f":{"lock":false,"pos":{"x":-20.3639,"y":1.6076,"z":-7.7951},"rot":{"x":359.9201,"y":269.8921,"z":0.017}},"8dfbb1":{"lock":false,"pos":{"x":-28.0507,"y":1.6219,"z":4.2514},"rot":{"x":0.0445,"y":44.9848,"z":359.9316}},"995fe7":{"lock":false,"pos":{"x":-17.1199,"y":1.6771,"z":-0.0299},"rot":{"x":359.9201,"y":270.0037,"z":0.0167}},"a706b9":{"lock":false,"pos":{"x":-18.493,"y":1.6085,"z":4.1367},"rot":{"x":0.0684,"y":135.0002,"z":0.0446}},"aa50e4":{"lock":false,"pos":{"x":-3.956,"y":1.6556,"z":-10.4412},"rot":{"x":359.9197,"y":270.0001,"z":0.0168}},"ac4427":{"lock":false,"pos":{"x":-23.6764,"y":1.6885,"z":7.5701},"rot":{"x":359.9201,"y":270.0025,"z":0.0167}},"b1e332":{"lock":false,"pos":{"x":-22.1463,"y":1.8278,"z":-7.6757},"rot":{"x":359.8872,"y":269.974,"z":0.0185}},"c50379":{"lock":false,"pos":{"x":-30.2242,"y":1.6953,"z":-0.03},"rot":{"x":359.9203,"y":270,"z":0.0153}},"cda035":{"lock":false,"pos":{"x":-15.6361,"y":1.7271,"z":0.0099},"rot":{"x":0.0912,"y":269.997,"z":359.8282}},"cf4a62":{"lock":false,"pos":{"x":-22.2065,"y":1.7384,"z":7.5782},"rot":{"x":359.9194,"y":270.0011,"z":0.0167}},"e58475":{"lock":false,"pos":{"x":-28.6386,"y":1.8371,"z":-0.0576},"rot":{"x":354.7658,"y":270.0023,"z":0.0155}},"f37775":{"lock":false,"pos":{"x":-3.1929,"y":1.661,"z":15.3806},"rot":{"x":359.9197,"y":269.9995,"z":0.0168}},"f7dd31":{"lock":false,"pos":{"x":-15.6663,"y":1.7247,"z":-7.6812},"rot":{"x":0.0765,"y":269.9943,"z":359.9739}}}}' +MaterialIndex: -1 +MeshIndex: -1 +Name: Custom_Model_Bag +Nickname: '5: Undimensioned and Unseen' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 13.8735266 + posY: 1.45876658 + posZ: -11.5469627 + rotX: 359.920135 + rotY: 270.007324 + rotZ: 0.016863985 + scaleX: 2.21 + scaleY: 0.46 + scaleZ: 2.42 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 5 Undimensioned and Unseen afe7ce/Card Blasted Heath 995fe7.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 5 Undimensioned and Unseen afe7ce/Card Blasted Heath 995fe7.yaml new file mode 100644 index 000000000..392fe969c --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 5 Undimensioned and Unseen afe7ce/Card Blasted Heath 995fe7.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 233608 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2336': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296074747/742F5083E0E10E3DD22E671C78F35E6143C744FF/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296074238/FB73285A9ED0D784210E50C6EA17EBC25648D800/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Dunwich. +GMNotes: '' +GUID: 995fe7 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Blasted Heath +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -17.1199341 + posY: 1.677076 + posZ: -0.02988285 + rotX: 359.9201 + rotY: 270.003723 + rotZ: 0.016747186 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 5 Undimensioned and Unseen afe7ce/Card Blasted Heath cda035.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 5 Undimensioned and Unseen afe7ce/Card Blasted Heath cda035.yaml new file mode 100644 index 000000000..c43b33e23 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 5 Undimensioned and Unseen afe7ce/Card Blasted Heath cda035.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 233607 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2336': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296074747/742F5083E0E10E3DD22E671C78F35E6143C744FF/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296074238/FB73285A9ED0D784210E50C6EA17EBC25648D800/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Dunwich. +GMNotes: '' +GUID: cda035 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Blasted Heath +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -15.636076 + posY: 1.72712994 + posZ: 0.009891505 + rotX: 0.09118927 + rotY: 269.996979 + rotZ: 359.828247 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 5 Undimensioned and Unseen afe7ce/Card Cold Spring Glen c50379.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 5 Undimensioned and Unseen afe7ce/Card Cold Spring Glen c50379.yaml new file mode 100644 index 000000000..8bc332852 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 5 Undimensioned and Unseen afe7ce/Card Cold Spring Glen c50379.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 233604 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2336': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296074747/742F5083E0E10E3DD22E671C78F35E6143C744FF/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296074238/FB73285A9ED0D784210E50C6EA17EBC25648D800/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Dunwich. +GMNotes: '' +GUID: c50379 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Cold Spring Glen +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -30.2241745 + posY: 1.69532943 + posZ: -0.0300073344 + rotX: 359.9203 + rotY: 270.0 + rotZ: 0.0153325908 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 5 Undimensioned and Unseen afe7ce/Card Cold Spring Glen e58475.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 5 Undimensioned and Unseen afe7ce/Card Cold Spring Glen e58475.yaml new file mode 100644 index 000000000..d39dabef0 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 5 Undimensioned and Unseen afe7ce/Card Cold Spring Glen e58475.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 233603 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2336': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296074747/742F5083E0E10E3DD22E671C78F35E6143C744FF/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296074238/FB73285A9ED0D784210E50C6EA17EBC25648D800/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Dunwich. +GMNotes: '' +GUID: e58475 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Cold Spring Glen +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -28.6385822 + posY: 1.83713019 + posZ: -0.05760846 + rotX: 354.765839 + rotY: 270.00235 + rotZ: 0.0154910041 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 5 Undimensioned and Unseen afe7ce/Card Devil's Hop Yard 7310f8.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 5 Undimensioned and Unseen afe7ce/Card Devil's Hop Yard 7310f8.yaml new file mode 100644 index 000000000..48ff54347 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 5 Undimensioned and Unseen afe7ce/Card Devil's Hop Yard 7310f8.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 233612 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2336': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296074747/742F5083E0E10E3DD22E671C78F35E6143C744FF/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296074238/FB73285A9ED0D784210E50C6EA17EBC25648D800/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Dunwich. +GMNotes: '' +GUID: 7310f8 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Devil's Hop Yard +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -17.11997 + posY: 1.67481756 + posZ: -7.699765 + rotX: 359.9201 + rotY: 270.0028 + rotZ: 0.01675147 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 5 Undimensioned and Unseen afe7ce/Card Devil's Hop Yard f7dd31.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 5 Undimensioned and Unseen afe7ce/Card Devil's Hop Yard f7dd31.yaml new file mode 100644 index 000000000..774457d97 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 5 Undimensioned and Unseen afe7ce/Card Devil's Hop Yard f7dd31.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 233611 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2336': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296074747/742F5083E0E10E3DD22E671C78F35E6143C744FF/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296074238/FB73285A9ED0D784210E50C6EA17EBC25648D800/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Dunwich. +GMNotes: '' +GUID: f7dd31 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Devil's Hop Yard +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -15.6662521 + posY: 1.72474945 + posZ: -7.68123436 + rotX: 0.07653281 + rotY: 269.994263 + rotZ: 359.973877 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 5 Undimensioned and Unseen afe7ce/Card Dunwich Village ac4427.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 5 Undimensioned and Unseen afe7ce/Card Dunwich Village ac4427.yaml new file mode 100644 index 000000000..51f762fe2 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 5 Undimensioned and Unseen afe7ce/Card Dunwich Village ac4427.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 233602 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2336': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296074747/742F5083E0E10E3DD22E671C78F35E6143C744FF/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296074238/FB73285A9ED0D784210E50C6EA17EBC25648D800/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Dunwich. +GMNotes: '' +GUID: ac4427 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Dunwich Village +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -23.6764145 + posY: 1.6884563 + posZ: 7.570065 + rotX: 359.920135 + rotY: 270.002533 + rotZ: 0.016743416 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 5 Undimensioned and Unseen afe7ce/Card Dunwich Village cf4a62.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 5 Undimensioned and Unseen afe7ce/Card Dunwich Village cf4a62.yaml new file mode 100644 index 000000000..af572dfce --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 5 Undimensioned and Unseen afe7ce/Card Dunwich Village cf4a62.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 233601 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2336': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296074747/742F5083E0E10E3DD22E671C78F35E6143C744FF/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296074238/FB73285A9ED0D784210E50C6EA17EBC25648D800/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Dunwich. +GMNotes: '' +GUID: cf4a62 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Dunwich Village +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -22.2065144 + posY: 1.73844516 + posZ: 7.578156 + rotX: 359.919373 + rotY: 270.001129 + rotZ: 0.0166506171 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 5 Undimensioned and Unseen afe7ce/Card Scenario aa50e4.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 5 Undimensioned and Unseen afe7ce/Card Scenario aa50e4.yaml new file mode 100644 index 000000000..dbbfb3652 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 5 Undimensioned and Unseen afe7ce/Card Scenario aa50e4.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 233600 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2336': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296074747/742F5083E0E10E3DD22E671C78F35E6143C744FF/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296074238/FB73285A9ED0D784210E50C6EA17EBC25648D800/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Undimensioned and Unseen +GMNotes: '' +GUID: aa50e4 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Scenario +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.95599127 + posY: 1.65564811 + posZ: -10.4411535 + rotX: 359.919739 + rotY: 270.000122 + rotZ: 0.0168407634 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 5 Undimensioned and Unseen afe7ce/Card Ten-Acre Meadow 04861e.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 5 Undimensioned and Unseen afe7ce/Card Ten-Acre Meadow 04861e.yaml new file mode 100644 index 000000000..c984b0b0c --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 5 Undimensioned and Unseen afe7ce/Card Ten-Acre Meadow 04861e.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 233606 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2336': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296074747/742F5083E0E10E3DD22E671C78F35E6143C744FF/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296074238/FB73285A9ED0D784210E50C6EA17EBC25648D800/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Dunwich. +GMNotes: '' +GUID: 04861e +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Ten-Acre Meadow +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -22.0986366 + posY: 1.828523 + posZ: -0.07976274 + rotX: 354.603 + rotY: 270.002625 + rotZ: 0.00701903924 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 5 Undimensioned and Unseen afe7ce/Card Ten-Acre Meadow 05b0dd.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 5 Undimensioned and Unseen afe7ce/Card Ten-Acre Meadow 05b0dd.yaml new file mode 100644 index 000000000..20d95c315 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 5 Undimensioned and Unseen afe7ce/Card Ten-Acre Meadow 05b0dd.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 233605 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2336': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296074747/742F5083E0E10E3DD22E671C78F35E6143C744FF/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296074238/FB73285A9ED0D784210E50C6EA17EBC25648D800/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Dunwich. +GMNotes: '' +GUID: 05b0dd +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Ten-Acre Meadow +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -23.6763458 + posY: 1.68620563 + posZ: -0.03003954 + rotX: 359.920258 + rotY: 270.0002 + rotZ: 0.0157437511 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 5 Undimensioned and Unseen afe7ce/Card Whateley Ruins 42e1b7.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 5 Undimensioned and Unseen afe7ce/Card Whateley Ruins 42e1b7.yaml new file mode 100644 index 000000000..ce1f53a1b --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 5 Undimensioned and Unseen afe7ce/Card Whateley Ruins 42e1b7.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 233609 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2336': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296074747/742F5083E0E10E3DD22E671C78F35E6143C744FF/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296074238/FB73285A9ED0D784210E50C6EA17EBC25648D800/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Dunwich. +GMNotes: '' +GUID: 42e1b7 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Whateley Ruins +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -23.6765156 + posY: 1.68394959 + posZ: -7.700017 + rotX: 359.920258 + rotY: 269.994751 + rotZ: 0.01599012 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 5 Undimensioned and Unseen afe7ce/Card Whateley Ruins b1e332.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 5 Undimensioned and Unseen afe7ce/Card Whateley Ruins b1e332.yaml new file mode 100644 index 000000000..161ae3648 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 5 Undimensioned and Unseen afe7ce/Card Whateley Ruins b1e332.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 233610 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2336': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296074747/742F5083E0E10E3DD22E671C78F35E6143C744FF/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296074238/FB73285A9ED0D784210E50C6EA17EBC25648D800/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Dunwich. +GMNotes: '' +GUID: b1e332 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Whateley Ruins +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -22.1463 + posY: 1.82775962 + posZ: -7.675688 + rotX: 359.887238 + rotY: 269.97403 + rotZ: 0.0184649248 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 5 Undimensioned and Unseen afe7ce/Custom_Model_Bag Set-aside 6a83c1.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 5 Undimensioned and Unseen afe7ce/Custom_Model_Bag Set-aside 6a83c1.yaml new file mode 100644 index 000000000..e37bd3501 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 5 Undimensioned and Unseen afe7ce/Custom_Model_Bag Set-aside 6a83c1.yaml @@ -0,0 +1,270 @@ +Autoraise: true +ColorDiffuse: + b: 0.02148666 + g: 0.00100758043 + r: 0.02148666 +ContainedObjects: +- Autoraise: true + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: + - Autoraise: true + CardID: 233900 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2339': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 66919a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Esoteric Formula + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -19.98892 + posY: 1.76822674 + posZ: 26.2549248 + rotX: -5.92305469e-06 + rotY: 270.0003 + rotZ: 181.019958 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' + - Autoraise: true + CardID: 233900 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2339': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: be5eb9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Esoteric Formula + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -19.9640522 + posY: 1.79586434 + posZ: 25.9157066 + rotX: 359.936157 + rotY: 270.0004 + rotZ: 182.022324 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' + - Autoraise: true + CardID: 233900 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2339': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 331c18 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Esoteric Formula + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -19.8718071 + posY: 1.77312744 + posZ: 25.7923889 + rotX: -9.178067e-06 + rotY: 270.0004 + rotZ: 181.574249 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' + - Autoraise: true + CardID: 233900 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2339': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 66919a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Esoteric Formula + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -20.4663315 + posY: 1.74163508 + posZ: 25.6329327 + rotX: 359.9201 + rotY: 269.999878 + rotZ: 0.0168590639 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' + CustomDeck: + '2339': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + DeckIDs: + - 233900 + - 233900 + - 233900 + - 233900 + Description: '' + GMNotes: '' + GUID: fc070b + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Deck + Nickname: Esoteric Formulas + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 17.0263252 + posY: 3.00190735 + posZ: -0.445545554 + rotX: 359.920135 + rotY: 269.992828 + rotZ: 0.0168866012 + 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: Undimensioned and Unseen +GMNotes: '' +GUID: 6a83c1 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +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.69607544 + posY: 1.5583173 + posZ: 14.2788906 + rotX: 359.955139 + rotY: 224.9912 + rotZ: 0.06867905 + scaleX: 2.0 + scaleY: 2.0 + scaleZ: 2.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 5 Undimensioned and Unseen afe7ce/Custom_Tile 57d9e9.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 5 Undimensioned and Unseen afe7ce/Custom_Tile 57d9e9.yaml new file mode 100644 index 000000000..58b19c026 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 5 Undimensioned and Unseen afe7ce/Custom_Tile 57d9e9.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 57d9e9 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.61565208 + posZ: 3.86000061 + rotX: 0.0168941375 + rotY: 179.9841 + rotZ: 0.0799418539 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 5 Undimensioned and Unseen afe7ce/Custom_Tile 6c7a0b.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 5 Undimensioned and Unseen afe7ce/Custom_Tile 6c7a0b.yaml new file mode 100644 index 000000000..eba8f1507 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 5 Undimensioned and Unseen afe7ce/Custom_Tile 6c7a0b.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 6c7a0b +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.7378 + posY: 1.6177057 + posZ: -3.66310048 + rotX: 0.0684218556 + rotY: 135.011948 + rotZ: 0.0445759445 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 5 Undimensioned and Unseen afe7ce/Custom_Tile 7234af.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 5 Undimensioned and Unseen afe7ce/Custom_Tile 7234af.yaml new file mode 100644 index 000000000..a01376275 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 5 Undimensioned and Unseen afe7ce/Custom_Tile 7234af.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 7234af +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.1206 + posY: 1.604248 + posZ: -3.8228 + rotX: 0.01689408 + rotY: 179.984085 + rotZ: 0.07993473 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 5 Undimensioned and Unseen afe7ce/Custom_Tile 7b8d65.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 5 Undimensioned and Unseen afe7ce/Custom_Tile 7b8d65.yaml new file mode 100644 index 000000000..724a39668 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 5 Undimensioned and Unseen afe7ce/Custom_Tile 7b8d65.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 7b8d65 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: -22.5477 + posY: 1.61189771 + posZ: -3.54470015 + rotX: 0.0168941 + rotY: 179.984024 + rotZ: 0.07993528 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 5 Undimensioned and Unseen afe7ce/Custom_Tile 7ec61f.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 5 Undimensioned and Unseen afe7ce/Custom_Tile 7ec61f.yaml new file mode 100644 index 000000000..b49505c86 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 5 Undimensioned and Unseen afe7ce/Custom_Tile 7ec61f.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 7ec61f +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.3639183 + posY: 1.60760117 + posZ: -7.795146 + rotX: 359.920135 + rotY: 269.892059 + rotZ: 0.0170475934 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 5 Undimensioned and Unseen afe7ce/Custom_Tile 8dfbb1.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 5 Undimensioned and Unseen afe7ce/Custom_Tile 8dfbb1.yaml new file mode 100644 index 000000000..3f30222f6 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 5 Undimensioned and Unseen afe7ce/Custom_Tile 8dfbb1.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 8dfbb1 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: -28.0507 + posY: 1.62186718 + posZ: 4.2514 + rotX: 0.0445474237 + rotY: 44.9847755 + rotZ: 359.93158 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 5 Undimensioned and Unseen afe7ce/Custom_Tile a706b9.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 5 Undimensioned and Unseen afe7ce/Custom_Tile a706b9.yaml new file mode 100644 index 000000000..f858bc0c9 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 5 Undimensioned and Unseen afe7ce/Custom_Tile a706b9.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: a706b9 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: -18.4929981 + posY: 1.60850561 + posZ: 4.1367 + rotX: 0.06843277 + rotY: 135.000168 + rotZ: 0.04456318 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 5 Undimensioned and Unseen afe7ce/Custom_Tile Undimensioned and Unseen 393c71.ttslua b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 5 Undimensioned and Unseen afe7ce/Custom_Tile Undimensioned and Unseen 393c71.ttslua new file mode 100644 index 000000000..796c0adfa --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 5 Undimensioned and Unseen afe7ce/Custom_Tile Undimensioned and Unseen 393c71.ttslua @@ -0,0 +1,25 @@ +name = 'Undimensioned and Unseen' + +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 + +function standaloneClick() + Global.call('fillContainer', {object=self, key=name, mode='standalone'}) +end diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 5 Undimensioned and Unseen afe7ce/Custom_Tile Undimensioned and Unseen 393c71.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 5 Undimensioned and Unseen afe7ce/Custom_Tile Undimensioned and Unseen 393c71.yaml new file mode 100644 index 000000000..fe01bb8fb --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 5 Undimensioned and Unseen afe7ce/Custom_Tile Undimensioned and Unseen 393c71.yaml @@ -0,0 +1,42 @@ +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 +GMNotes: '' +GUID: 393c71 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Tile Undimensioned and Unseen 393c71.ttslua' +LuaScriptState: '' +Name: Custom_Tile +Nickname: Undimensioned and Unseen +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.9621 + posY: 1.58277428 + posZ: -14.4190044 + rotX: 359.919739 + rotY: 270.005768 + rotZ: 0.01682967 + scaleX: 2.2 + scaleY: 1.0 + scaleZ: 2.2 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 5 Undimensioned and Unseen afe7ce/Deck Act Deck 2ee4bd.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 5 Undimensioned and Unseen afe7ce/Deck Act Deck 2ee4bd.yaml new file mode 100644 index 000000000..46497de5c --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 5 Undimensioned and Unseen afe7ce/Deck Act Deck 2ee4bd.yaml @@ -0,0 +1,129 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 233336 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2333': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296027643/326876D4B46DF777AA1293989DEEE6A810ED027B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999385819527677/3AD8DFFFBFF54DB098AD3E00BB7E75DA0590FE8B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 2 + GMNotes: '' + GUID: ccc8ee + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: They Must Be Destroyed! + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -17.8684769 + posY: 1.58474779 + posZ: 22.4623928 + rotX: 0.0168692376 + rotY: 180.0 + rotZ: 0.07987881 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233335 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2333': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296027643/326876D4B46DF777AA1293989DEEE6A810ED027B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999385819527677/3AD8DFFFBFF54DB098AD3E00BB7E75DA0590FE8B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 1 + GMNotes: '' + GUID: 1b5f59 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Saracenic Script + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -17.9583073 + posY: 1.73354256 + posZ: 22.60505 + rotX: 0.0168751068 + rotY: 180.000046 + rotZ: 0.0798814744 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2333': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296027643/326876D4B46DF777AA1293989DEEE6A810ED027B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999385819527677/3AD8DFFFBFF54DB098AD3E00BB7E75DA0590FE8B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 233336 +- 233335 +Description: '' +GMNotes: '' +GUID: 2ee4bd +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Act Deck +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.6884 + posY: 1.66233337 + posZ: -5.04852438 + rotX: 0.0168349817 + rotY: 180.000092 + rotZ: 0.08025882 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 5 Undimensioned and Unseen afe7ce/Deck Agenda Deck 584b1a.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 5 Undimensioned and Unseen afe7ce/Deck Agenda Deck 584b1a.yaml new file mode 100644 index 000000000..7f21c326c --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 5 Undimensioned and Unseen afe7ce/Deck Agenda Deck 584b1a.yaml @@ -0,0 +1,172 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 233334 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2333': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296027643/326876D4B46DF777AA1293989DEEE6A810ED027B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999385819527677/3AD8DFFFBFF54DB098AD3E00BB7E75DA0590FE8B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 3 + GMNotes: '' + GUID: e27853 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Horrors Unleashed + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -18.13127 + posY: 1.5848223 + posZ: 21.4708862 + rotX: 0.0168713517 + rotY: 180.0 + rotZ: 0.07987988 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233333 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2333': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296027643/326876D4B46DF777AA1293989DEEE6A810ED027B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999385819527677/3AD8DFFFBFF54DB098AD3E00BB7E75DA0590FE8B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 2 + GMNotes: '' + GUID: 9fed4b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Biding Its Time + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -18.1365929 + posY: 1.8037976 + posZ: 21.7945652 + rotX: 0.0172547922 + rotY: 179.977066 + rotZ: 3.7901485 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233332 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2333': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296027643/326876D4B46DF777AA1293989DEEE6A810ED027B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999385819527677/3AD8DFFFBFF54DB098AD3E00BB7E75DA0590FE8B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 1 + GMNotes: '' + GUID: 1b5f59 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Rampaging Creatures + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -18.3836536 + posY: 1.75106955 + posZ: 21.5196075 + rotX: 0.0168791767 + rotY: 180.000046 + rotZ: 0.0799039751 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2333': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296027643/326876D4B46DF777AA1293989DEEE6A810ED027B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999385819527677/3AD8DFFFBFF54DB098AD3E00BB7E75DA0590FE8B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 233334 +- 233333 +- 233332 +Description: '' +GMNotes: '' +GUID: 584b1a +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Agenda Deck +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.72459459 + posY: 1.65664113 + posZ: 0.3733304 + rotX: 0.0168348663 + rotY: 180.000061 + rotZ: 0.0802581757 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 5 Undimensioned and Unseen afe7ce/Deck Broods of Yog-Sothoth f37775.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 5 Undimensioned and Unseen afe7ce/Deck Broods of Yog-Sothoth f37775.yaml new file mode 100644 index 000000000..17e49acaf --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 5 Undimensioned and Unseen afe7ce/Deck Broods of Yog-Sothoth f37775.yaml @@ -0,0 +1,258 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 233001 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Abomination. + GMNotes: '' + GUID: 092c6d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Brood of Yog-Sothoth + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -17.3635235 + posY: 1.58393526 + posZ: 22.0934 + rotX: 359.920135 + rotY: 269.999756 + rotZ: 0.0168775488 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233001 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Abomination. + GMNotes: '' + GUID: d94dc8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Brood of Yog-Sothoth + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -17.0533333 + posY: 1.73223233 + posZ: 21.6639252 + rotX: 359.9327 + rotY: 269.999878 + rotZ: 0.0141817089 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233001 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Abomination. + GMNotes: '' + GUID: 092c6d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Brood of Yog-Sothoth + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -17.3573933 + posY: 1.750139 + posZ: 22.4236374 + rotX: 359.9325 + rotY: 269.999847 + rotZ: 0.0143042905 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233001 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Abomination. + GMNotes: '' + GUID: 092c6d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Brood of Yog-Sothoth + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -16.88785 + posY: 1.73564363 + posZ: 21.7430973 + rotX: 359.932129 + rotY: 269.999756 + rotZ: 0.0142960809 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233001 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Abomination. + GMNotes: '' + GUID: 3799cd + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Brood of Yog-Sothoth + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -15.1503572 + posY: 1.72953045 + posZ: 15.5776882 + rotX: 359.919952 + rotY: 269.999817 + rotZ: 0.018562194 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 233001 +- 233001 +- 233001 +- 233001 +- 233001 +Description: '' +GMNotes: '' +GUID: f37775 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Broods of Yog-Sothoth +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.19288135 + posY: 1.66103458 + posZ: 15.3805618 + rotX: 359.919739 + rotY: 269.999481 + rotZ: 0.01684077 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 5 Undimensioned and Unseen afe7ce/Deck Encounter Deck 2ee2b1.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 5 Undimensioned and Unseen afe7ce/Deck Encounter Deck 2ee2b1.yaml new file mode 100644 index 000000000..b2c6753b6 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 5 Undimensioned and Unseen afe7ce/Deck Encounter Deck 2ee2b1.yaml @@ -0,0 +1,1476 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 233005 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: "\tTerror." + GMNotes: '' + GUID: e3fba9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Creatures' Tracks + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.88808823 + posY: 1.55125427 + posZ: 11.7224455 + rotX: 359.920135 + rotY: 269.999878 + rotZ: 0.0168773085 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233005 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: "\tTerror." + GMNotes: '' + GUID: 653ad0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Creatures' Tracks + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.741823 + posY: 1.70781016 + posZ: 11.6423111 + rotX: 359.920135 + rotY: 269.999878 + rotZ: 0.0168773327 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233004 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: e3fba9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Attracting Attention + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.327984 + posY: 1.55243385 + posZ: 13.0768051 + rotX: 359.920135 + rotY: 269.999847 + rotZ: 0.0168775655 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233004 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 174be7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Attracting Attention + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.48922515 + posY: 1.70885026 + posZ: 13.17753 + rotX: 359.920135 + rotY: 269.999817 + rotZ: 0.0168775711 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233003 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: e3fba9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ruin and Destruction + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.362863 + posY: 1.55207872 + posZ: 12.0355148 + rotX: 359.920135 + rotY: 269.999878 + rotZ: 0.016877003 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233003 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: 36006f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ruin and Destruction + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.64314628 + posY: 1.708238 + posZ: 12.0681181 + rotX: 359.920135 + rotY: 269.999878 + rotZ: 0.0168769155 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233003 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: e3fba9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ruin and Destruction + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.64314628 + posY: 1.72549736 + posZ: 12.0681181 + rotX: 359.91983 + rotY: 269.999878 + rotZ: 0.016224321 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233002 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: e3fba9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Towering Beasts + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.09761453 + posY: 1.55223215 + posZ: 11.3007021 + rotX: 359.920135 + rotY: 269.999847 + rotZ: 0.01687738 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233002 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 97a21e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Towering Beasts + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.1789422 + posY: 1.70879066 + posZ: 11.6423969 + rotX: 359.920135 + rotY: 269.999817 + rotZ: 0.01687739 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233002 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: e3fba9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Towering Beasts + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.1789422 + posY: 1.72606051 + posZ: 11.6423969 + rotX: 359.920135 + rotY: 269.999817 + rotZ: 0.0168777984 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233002 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: e3fba9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Towering Beasts + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.1789422 + posY: 1.71238315 + posZ: 11.6423969 + rotX: 359.919922 + rotY: 269.999817 + rotZ: 0.0164486859 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232823 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: "\tPower." + GMNotes: '' + GUID: ef7cab + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Altered Beast + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.55222464 + posY: 1.5502063 + posZ: 6.573337 + rotX: 359.920135 + rotY: 269.999939 + rotZ: 0.0168764647 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232823 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: "\tPower." + GMNotes: '' + GUID: 651a9e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Altered Beast + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.6760025 + posY: 1.70618832 + posZ: 6.53470135 + rotX: 359.920135 + rotY: 269.999939 + rotZ: 0.0168764852 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232822 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Creature. Monster. Abomination. + GMNotes: '' + GUID: c53c4a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Lupine Thrall + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.29770446 + posY: 1.55148566 + posZ: 9.71324348 + rotX: 359.920135 + rotY: 269.999939 + rotZ: 0.0168772563 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232822 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Creature. Monster. Abomination. + GMNotes: '' + GUID: 077019 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Lupine Thrall + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.20197439 + posY: 1.70810318 + posZ: 9.924229 + rotX: 359.920135 + rotY: 269.999939 + rotZ: 0.0168772489 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232821 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Creature. Monster. Abomination. + GMNotes: '' + GUID: de3bd5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Avian Thrall + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.17520547 + posY: 1.55259466 + posZ: 12.8993664 + rotX: 359.920135 + rotY: 269.999939 + rotZ: 0.0168785825 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232821 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Creature. Monster. Abomination. + GMNotes: '' + GUID: 0e80a5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Avian Thrall + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.29272318 + posY: 1.70912266 + posZ: 13.0629282 + rotX: 359.920135 + rotY: 269.999939 + rotZ: 0.0168786459 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232818 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: 60ef9e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Eager for Death + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.646352 + posY: 1.548182 + posZ: 0.144670352 + rotX: 359.920135 + rotY: 269.999939 + rotZ: 0.0168772917 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232818 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: 40e9d0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Eager for Death + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.37573743 + posY: 1.7043395 + posZ: 0.209344044 + rotX: 359.920135 + rotY: 269.999939 + rotZ: 0.0168772619 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232817 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: "\tCreature." + GMNotes: '' + GUID: de3bd5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Whippoorwill + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.19784832 + posY: 1.54999852 + posZ: 4.190304 + rotX: 359.920135 + rotY: 269.9999 + rotZ: 0.0168776866 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232817 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: "\tCreature." + GMNotes: '' + GUID: 61c583 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Whippoorwill + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.24814034 + posY: 1.70613587 + posZ: 4.471411 + rotX: 359.920135 + rotY: 269.9999 + rotZ: 0.0168776922 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232817 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: "\tCreature." + GMNotes: '' + GUID: de3bd5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Whippoorwill + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.24814034 + posY: 1.72339261 + posZ: 4.471411 + rotX: 359.920441 + rotY: 269.9999 + rotZ: 0.0163779482 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232816 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: 36342a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Sordid and Silent + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 4.15036964 + posY: 1.54897928 + posZ: 5.238284 + rotX: 359.920135 + rotY: 269.999878 + rotZ: 0.016877193 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232816 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: ebb8db + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Sordid and Silent + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.98407245 + posY: 1.705162 + posZ: 5.341168 + rotX: 359.920135 + rotY: 269.999878 + rotZ: 0.0168772284 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232815 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: de3bd5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Unhallowed Country + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 4.32745171 + posY: 1.71471429 + posZ: 5.03506565 + rotX: 359.919861 + rotY: 269.999969 + rotZ: 0.0168688018 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232815 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: de3bd5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Unhallowed Country + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 4.00495052 + posY: 1.70878184 + posZ: 5.306538 + rotX: 359.920135 + rotY: 269.999969 + rotZ: 0.01687902 + 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 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: f5c831 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: 97416f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: 0f4202 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: c70601 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: ab3719 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: 435a47 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: ab3719 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Rotting Remains + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 31.17963 + posY: 1.65808344 + posZ: -33.1674423 + rotX: 359.93277 + rotY: 270.000183 + rotZ: 0.0141536333 + 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 + UniqueBack: false + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 233005 +- 233005 +- 233004 +- 233004 +- 233003 +- 233003 +- 233003 +- 233002 +- 233002 +- 233002 +- 233002 +- 232823 +- 232823 +- 232822 +- 232822 +- 232821 +- 232821 +- 232818 +- 232818 +- 232817 +- 232817 +- 232817 +- 232816 +- 232816 +- 232815 +- 232815 +- 231718 +- 231718 +- 231717 +- 231717 +- 231716 +- 231716 +- 231716 +Description: '' +GMNotes: '' +GUID: 2ee2b1 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Encounter Deck +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.92735124 + posY: 1.78769779 + posZ: 5.757152 + rotX: 359.919739 + rotY: 270.000031 + rotZ: 180.016815 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 6 Where Doom Awaits 022ddf.ttslua b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 6 Where Doom Awaits 022ddf.ttslua new file mode 100644 index 000000000..54d591927 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 6 Where Doom Awaits 022ddf.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.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 Dunwich Legacy df7121/Custom_Model_Bag 6 Where Doom Awaits 022ddf.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 6 Where Doom Awaits 022ddf.yaml new file mode 100644 index 000000000..728a323b5 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 6 Where Doom Awaits 022ddf.yaml @@ -0,0 +1,85 @@ +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 6 Where Doom Awaits 022ddf/Custom_Tile Where Doom Awaits + a621ae.yaml' +- !include 'Custom_Model_Bag 6 Where Doom Awaits 022ddf/Bag New Chaos Token 24d46d.yaml' +- !include 'Custom_Model_Bag 6 Where Doom Awaits 022ddf/Card Scenario aa50e4.yaml' +- !include 'Custom_Model_Bag 6 Where Doom Awaits 022ddf/Deck Act Deck b47b11.yaml' +- !include 'Custom_Model_Bag 6 Where Doom Awaits 022ddf/Deck Agenda Deck 27d0df.yaml' +- !include 'Custom_Model_Bag 6 Where Doom Awaits 022ddf/Deck Encounter Deck 1d3069.yaml' +- !include 'Custom_Model_Bag 6 Where Doom Awaits 022ddf/Deck Hideous Abominations + b858d0.yaml' +- !include 'Custom_Model_Bag 6 Where Doom Awaits 022ddf/Custom_Model_Bag Set-aside + b0b20f.yaml' +- !include 'Custom_Model_Bag 6 Where Doom Awaits 022ddf/Card Sentinel Peak d5b919.yaml' +- !include 'Custom_Model_Bag 6 Where Doom Awaits 022ddf/Custom_Tile 6c39d5.yaml' +- !include 'Custom_Model_Bag 6 Where Doom Awaits 022ddf/Card Ascending Path d3ae26.yaml' +- !include 'Custom_Model_Bag 6 Where Doom Awaits 022ddf/Custom_Tile 7234af.yaml' +- !include 'Custom_Model_Bag 6 Where Doom Awaits 022ddf/Card Base of the Hill 80236e.yaml' +- !include 'Custom_Model_Bag 6 Where Doom Awaits 022ddf/Deck Diverging Paths 768494.yaml' +- !include 'Custom_Model_Bag 6 Where Doom Awaits 022ddf/Deck Altered Paths 0f29d2.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/829135118403757711/409D144AFA76534B28160AECCE67B4AC7F519469/ + MaterialIndex: 3 + MeshURL: https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj + NormalURL: '' + TypeIndex: 6 +Description: The Dunwich Legacy +GMNotes: '' +GUID: 022ddf +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Model_Bag 6 Where Doom Awaits 022ddf.ttslua' +LuaScriptState: '{"ml":{"0f29d2":{"lock":false,"pos":{"x":-23.6766,"y":1.6865,"z":7.57},"rot":{"x":359.9201,"y":270.0001,"z":0.0169}},"1d3069":{"lock":false,"pos":{"x":-3.9272,"y":1.8463,"z":5.7572},"rot":{"x":359.9197,"y":270,"z":180.0168}},"24d46d":{"lock":false,"pos":{"x":-5.8948,"y":1.5,"z":-14.5194},"rot":{"x":359.9817,"y":0,"z":359.953}},"27d0df":{"lock":false,"pos":{"x":-2.7246,"y":1.664,"z":0.3733},"rot":{"x":0.0168,"y":179.9939,"z":0.0803}},"6c39d5":{"lock":false,"pos":{"x":-20.6956,"y":1.6103,"z":-0.0915},"rot":{"x":359.9201,"y":269.9926,"z":0.0169}},"7234af":{"lock":false,"pos":{"x":-26.7596,"y":1.6187,"z":-0.2422},"rot":{"x":359.9201,"y":269.9926,"z":0.0169}},"768494":{"lock":false,"pos":{"x":-30.2243,"y":1.6956,"z":7.57},"rot":{"x":359.9201,"y":269.9999,"z":0.0169}},"80236e":{"lock":false,"pos":{"x":-30.2243,"y":1.6954,"z":-0.03},"rot":{"x":359.9201,"y":269.9994,"z":0.0169}},"a621ae":{"lock":false,"pos":{"x":-3.9907,"y":1.5827,"z":-14.7887},"rot":{"x":359.9206,"y":270.0058,"z":0.0172}},"aa50e4":{"lock":false,"pos":{"x":-3.9558,"y":1.6556,"z":-10.4412},"rot":{"x":359.9197,"y":270,"z":0.0168}},"b0b20f":{"lock":false,"pos":{"x":1.6959,"y":1.5583,"z":14.2786},"rot":{"x":359.9551,"y":224.998,"z":0.0687}},"b47b11":{"lock":false,"pos":{"x":-2.6884,"y":1.6543,"z":-5.0485},"rot":{"x":0.0168,"y":180.0001,"z":0.0803}},"b858d0":{"lock":false,"pos":{"x":-3.7524,"y":1.6624,"z":15.1757},"rot":{"x":359.9197,"y":269.9998,"z":0.0168}},"d3ae26":{"lock":false,"pos":{"x":-23.6764,"y":1.6862,"z":-0.03},"rot":{"x":359.9201,"y":269.9993,"z":0.0169}},"d5b919":{"lock":false,"pos":{"x":-17.1199,"y":1.6771,"z":-0.03},"rot":{"x":359.9201,"y":269.9976,"z":0.0169}}}}' +MaterialIndex: -1 +MeshIndex: -1 +Name: Custom_Model_Bag +Nickname: '6: Where Doom Awaits' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 13.8738136 + posY: 1.45636964 + posZ: -19.8303566 + rotX: 359.920135 + rotY: 270.005768 + rotZ: 0.0168651771 + scaleX: 2.21 + scaleY: 0.46 + scaleZ: 2.42 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 6 Where Doom Awaits 022ddf/Bag New Chaos Token 24d46d.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 6 Where Doom Awaits 022ddf/Bag New Chaos Token 24d46d.yaml new file mode 100644 index 000000000..f8a5f4490 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 6 Where Doom Awaits 022ddf/Bag New Chaos Token 24d46d.yaml @@ -0,0 +1,39 @@ +Autoraise: true +ColorDiffuse: + b: 0.07843705 + g: 0.07843705 + r: 0.302167743 +ContainedObjects: +- !include 'Bag New Chaos Token 24d46d/Custom_Tile dedbb0.yaml' +- !include 'Bag New Chaos Token 24d46d/Custom_Tile 53c7c5.yaml' +- !include 'Bag New Chaos Token 24d46d/Custom_Tile e5100b.yaml' +- !include 'Bag New Chaos Token 24d46d/Custom_Tile 4ce53d.yaml' +Description: Where Doom Awaits +GMNotes: '' +GUID: 24d46d +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +MeshIndex: -1 +Name: Bag +Nickname: New Chaos Token +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -5.89478874 + posY: 1.49995327 + posZ: -14.5193729 + rotX: 359.981659 + rotY: -7.178148e-06 + rotZ: 359.952972 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 6 Where Doom Awaits 022ddf/Bag New Chaos Token 24d46d/Custom_Tile 4ce53d.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 6 Where Doom Awaits 022ddf/Bag New Chaos Token 24d46d/Custom_Tile 4ce53d.yaml new file mode 100644 index 000000000..b0a464704 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 6 Where Doom Awaits 022ddf/Bag New Chaos Token 24d46d/Custom_Tile 4ce53d.yaml @@ -0,0 +1,42 @@ +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: '' +GMNotes: '' +GUID: 4ce53d +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Tile +Nickname: '' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 46.8308945 + posY: 3.261239 + posZ: 82.6912155 + rotX: 0.020803038 + rotY: 270.013245 + rotZ: 0.0167862736 + scaleX: 0.81 + scaleY: 1.0 + scaleZ: 0.81 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 6 Where Doom Awaits 022ddf/Bag New Chaos Token 24d46d/Custom_Tile 53c7c5.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 6 Where Doom Awaits 022ddf/Bag New Chaos Token 24d46d/Custom_Tile 53c7c5.yaml new file mode 100644 index 000000000..822c09998 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 6 Where Doom Awaits 022ddf/Bag New Chaos Token 24d46d/Custom_Tile 53c7c5.yaml @@ -0,0 +1,42 @@ +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: '' +GMNotes: '' +GUID: 53c7c5 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Tile +Nickname: '' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 50.3722649 + posY: 3.26283813 + posZ: 83.7616959 + rotX: 0.0208138321 + rotY: 269.982941 + rotZ: 0.0167736672 + scaleX: 0.81 + scaleY: 1.0 + scaleZ: 0.81 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 6 Where Doom Awaits 022ddf/Bag New Chaos Token 24d46d/Custom_Tile dedbb0.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 6 Where Doom Awaits 022ddf/Bag New Chaos Token 24d46d/Custom_Tile dedbb0.yaml new file mode 100644 index 000000000..651cc0e0e --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 6 Where Doom Awaits 022ddf/Bag New Chaos Token 24d46d/Custom_Tile dedbb0.yaml @@ -0,0 +1,42 @@ +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: '' +GMNotes: '' +GUID: dedbb0 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Tile +Nickname: '' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 49.17601 + posY: 3.31929779 + posZ: 80.14772 + rotX: 5.31856346 + rotY: 270.201874 + rotZ: 4.04114676 + scaleX: 0.81 + scaleY: 1.0 + scaleZ: 0.81 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 6 Where Doom Awaits 022ddf/Bag New Chaos Token 24d46d/Custom_Tile e5100b.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 6 Where Doom Awaits 022ddf/Bag New Chaos Token 24d46d/Custom_Tile e5100b.yaml new file mode 100644 index 000000000..82f42e2c2 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 6 Where Doom Awaits 022ddf/Bag New Chaos Token 24d46d/Custom_Tile e5100b.yaml @@ -0,0 +1,42 @@ +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/4WRD42n.png + WidthScale: 0.0 +Description: '' +GMNotes: '' +GUID: e5100b +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Tile +Nickname: '' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.83168 + posY: 3.25946546 + posZ: 79.11306 + rotX: 0.0207804646 + rotY: 270.0264 + rotZ: 0.016819315 + scaleX: 0.81 + scaleY: 1.0 + scaleZ: 0.81 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 6 Where Doom Awaits 022ddf/Card Ascending Path d3ae26.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 6 Where Doom Awaits 022ddf/Card Ascending Path d3ae26.yaml new file mode 100644 index 000000000..711aa4f3b --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 6 Where Doom Awaits 022ddf/Card Ascending Path d3ae26.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 233615 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2336': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296074747/742F5083E0E10E3DD22E671C78F35E6143C744FF/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296074238/FB73285A9ED0D784210E50C6EA17EBC25648D800/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: "\tDunwich. Sentinel Hill." +GMNotes: '' +GUID: d3ae26 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Ascending Path +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -23.6764412 + posY: 1.68622041 + posZ: -0.0300261434 + rotX: 359.9201 + rotY: 269.999329 + rotZ: 0.0168769211 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 6 Where Doom Awaits 022ddf/Card Base of the Hill 80236e.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 6 Where Doom Awaits 022ddf/Card Base of the Hill 80236e.yaml new file mode 100644 index 000000000..5258f4489 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 6 Where Doom Awaits 022ddf/Card Base of the Hill 80236e.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 233614 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2336': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296074747/742F5083E0E10E3DD22E671C78F35E6143C744FF/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296074238/FB73285A9ED0D784210E50C6EA17EBC25648D800/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: "\tDunwich. Sentinel Hill." +GMNotes: '' +GUID: 80236e +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Base of the Hill +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -30.2242641 + posY: 1.69535077 + posZ: -0.0299943741 + rotX: 359.9201 + rotY: 269.9994 + rotZ: 0.016878359 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 6 Where Doom Awaits 022ddf/Card Scenario aa50e4.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 6 Where Doom Awaits 022ddf/Card Scenario aa50e4.yaml new file mode 100644 index 000000000..4157b8415 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 6 Where Doom Awaits 022ddf/Card Scenario aa50e4.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 233613 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2336': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296074747/742F5083E0E10E3DD22E671C78F35E6143C744FF/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296074238/FB73285A9ED0D784210E50C6EA17EBC25648D800/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Where Doom Awaits +GMNotes: '' +GUID: aa50e4 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Scenario +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.95583344 + posY: 1.65564787 + posZ: -10.4411535 + rotX: 359.919739 + rotY: 269.999969 + rotZ: 0.0168332439 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 6 Where Doom Awaits 022ddf/Card Sentinel Peak d5b919.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 6 Where Doom Awaits 022ddf/Card Sentinel Peak d5b919.yaml new file mode 100644 index 000000000..cfdbdf15c --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 6 Where Doom Awaits 022ddf/Card Sentinel Peak d5b919.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 233616 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2336': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296074747/742F5083E0E10E3DD22E671C78F35E6143C744FF/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296074238/FB73285A9ED0D784210E50C6EA17EBC25648D800/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: "\tDunwich. Sentinel Hill." +GMNotes: '' +GUID: d5b919 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Sentinel Peak +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -17.1198521 + posY: 1.67707753 + posZ: -0.03004164 + rotX: 359.9201 + rotY: 269.997559 + rotZ: 0.0168790761 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 6 Where Doom Awaits 022ddf/Custom_Model_Bag Set-aside b0b20f.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 6 Where Doom Awaits 022ddf/Custom_Model_Bag Set-aside b0b20f.yaml new file mode 100644 index 000000000..4dc699b98 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 6 Where Doom Awaits 022ddf/Custom_Model_Bag Set-aside b0b20f.yaml @@ -0,0 +1,97 @@ +Autoraise: true +ColorDiffuse: + b: 0.02148666 + g: 0.00100758043 + r: 0.02148666 +ContainedObjects: +- Autoraise: true + CardID: 233006 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Sorcerer of Dunwich + GMNotes: '' + GUID: e3fba9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Seth Bishop + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -20.3731632 + posY: 3.6597116 + posZ: 34.00984 + rotX: 359.920135 + rotY: 270.0 + rotZ: 0.0168777555 + 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: Where Doom Awaits +GMNotes: '' +GUID: b0b20f +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +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.69592631 + posY: 1.558317 + posZ: 14.2786446 + rotX: 359.955139 + rotY: 224.997986 + rotZ: 0.0686750859 + scaleX: 2.0 + scaleY: 2.0 + scaleZ: 2.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 6 Where Doom Awaits 022ddf/Custom_Tile 6c39d5.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 6 Where Doom Awaits 022ddf/Custom_Tile 6c39d5.yaml new file mode 100644 index 000000000..dcce08533 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 6 Where Doom Awaits 022ddf/Custom_Tile 6c39d5.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 6c39d5 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.6956 + posY: 1.61033189 + posZ: -0.091500245 + rotX: 359.9201 + rotY: 269.992645 + rotZ: 0.0169104654 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 6 Where Doom Awaits 022ddf/Custom_Tile 7234af.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 6 Where Doom Awaits 022ddf/Custom_Tile 7234af.yaml new file mode 100644 index 000000000..62c643cf2 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 6 Where Doom Awaits 022ddf/Custom_Tile 7234af.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 7234af +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.7596 + posY: 1.61874342 + posZ: -0.24220027 + rotX: 359.9201 + rotY: 269.992645 + rotZ: 0.0169100929 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 6 Where Doom Awaits 022ddf/Custom_Tile Where Doom Awaits a621ae.ttslua b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 6 Where Doom Awaits 022ddf/Custom_Tile Where Doom Awaits a621ae.ttslua new file mode 100644 index 000000000..c8658d789 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 6 Where Doom Awaits 022ddf/Custom_Tile Where Doom Awaits a621ae.ttslua @@ -0,0 +1,25 @@ +name = 'Where Doom Awaits' + +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 + +function standaloneClick() + Global.call('fillContainer', {object=self, key=name, mode='standalone'}) +end diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 6 Where Doom Awaits 022ddf/Custom_Tile Where Doom Awaits a621ae.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 6 Where Doom Awaits 022ddf/Custom_Tile Where Doom Awaits a621ae.yaml new file mode 100644 index 000000000..2160cbd77 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 6 Where Doom Awaits 022ddf/Custom_Tile Where Doom Awaits a621ae.yaml @@ -0,0 +1,42 @@ +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 +GMNotes: '' +GUID: a621ae +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Tile Where Doom Awaits a621ae.ttslua' +LuaScriptState: '' +Name: Custom_Tile +Nickname: Where Doom Awaits +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.99071 + posY: 1.582748 + posZ: -14.78871 + rotX: 359.920624 + rotY: 270.005829 + rotZ: 0.01719335 + scaleX: 2.2 + scaleY: 1.0 + scaleZ: 2.2 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 6 Where Doom Awaits 022ddf/Deck Act Deck b47b11.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 6 Where Doom Awaits 022ddf/Deck Act Deck b47b11.yaml new file mode 100644 index 000000000..e82ee0efb --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 6 Where Doom Awaits 022ddf/Deck Act Deck b47b11.yaml @@ -0,0 +1,258 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 233343 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2333': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296027643/326876D4B46DF777AA1293989DEEE6A810ED027B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999385819527677/3AD8DFFFBFF54DB098AD3E00BB7E75DA0590FE8B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 3 + GMNotes: '' + GUID: 881e29 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Gate Opens + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -27.3774738 + posY: 1.78854251 + posZ: 43.1239624 + rotX: 0.0135873752 + rotY: 180.000488 + rotZ: 181.692474 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233342 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2333': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296027643/326876D4B46DF777AA1293989DEEE6A810ED027B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999385819527677/3AD8DFFFBFF54DB098AD3E00BB7E75DA0590FE8B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 2 + GMNotes: '' + GUID: 905f01 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ascending the Hill (v. III) + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -27.4631977 + posY: 1.76120043 + posZ: 43.0888176 + rotX: 0.0135886762 + rotY: 180.000092 + rotZ: 180.148453 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233341 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2333': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296027643/326876D4B46DF777AA1293989DEEE6A810ED027B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999385819527677/3AD8DFFFBFF54DB098AD3E00BB7E75DA0590FE8B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 2 + GMNotes: '' + GUID: 65d096 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ascending the Hill (v. II) + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -27.5594749 + posY: 1.79456151 + posZ: 43.1377563 + rotX: 1.572223e-06 + rotY: 179.999924 + rotZ: 181.019775 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233340 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2333': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296027643/326876D4B46DF777AA1293989DEEE6A810ED027B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999385819527677/3AD8DFFFBFF54DB098AD3E00BB7E75DA0590FE8B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 2 + GMNotes: '' + GUID: 950fcf + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ascending the Hill (v. I) + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -27.3859882 + posY: 1.75592554 + posZ: 42.9080963 + rotX: 0.01352023 + rotY: 180.000031 + rotZ: 180.085648 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233339 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2333': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296027643/326876D4B46DF777AA1293989DEEE6A810ED027B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999385819527677/3AD8DFFFBFF54DB098AD3E00BB7E75DA0590FE8B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: 'Act ' + GMNotes: '' + GUID: 1b5f59 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Path to the Hill + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -27.3926125 + posY: 1.60695291 + posZ: 43.1931953 + rotX: 0.016861584 + rotY: 180.003433 + rotZ: 180.07988 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2333': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296027643/326876D4B46DF777AA1293989DEEE6A810ED027B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999385819527677/3AD8DFFFBFF54DB098AD3E00BB7E75DA0590FE8B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 233343 +- 233342 +- 233341 +- 233340 +- 233339 +Description: '' +GMNotes: '' +GUID: b47b11 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Act Deck +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.688414 + posY: 1.654325 + posZ: -5.04852438 + rotX: 0.0168346483 + rotY: 180.000061 + rotZ: 0.08025789 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 6 Where Doom Awaits 022ddf/Deck Agenda Deck 27d0df.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 6 Where Doom Awaits 022ddf/Deck Agenda Deck 27d0df.yaml new file mode 100644 index 000000000..f9c346aa3 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 6 Where Doom Awaits 022ddf/Deck Agenda Deck 27d0df.yaml @@ -0,0 +1,129 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 233338 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2333': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296027643/326876D4B46DF777AA1293989DEEE6A810ED027B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999385819527677/3AD8DFFFBFF54DB098AD3E00BB7E75DA0590FE8B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 2 + GMNotes: '' + GUID: a5d928 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Beckoning for Power + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -25.30077 + posY: 1.60064018 + posZ: 41.2452 + rotX: 0.01689639 + rotY: 179.982056 + rotZ: 0.0798743144 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233337 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2333': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296027643/326876D4B46DF777AA1293989DEEE6A810ED027B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999385819527677/3AD8DFFFBFF54DB098AD3E00BB7E75DA0590FE8B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 1 + GMNotes: '' + GUID: 1b5f59 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Calling Forth the Old Ones + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -25.3137226 + posY: 1.75710738 + posZ: 41.10981 + rotX: 0.0168955568 + rotY: 180.0 + rotZ: 0.07987287 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2333': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296027643/326876D4B46DF777AA1293989DEEE6A810ED027B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999385819527677/3AD8DFFFBFF54DB098AD3E00BB7E75DA0590FE8B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 233338 +- 233337 +Description: '' +GMNotes: '' +GUID: 27d0df +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Agenda Deck +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.72458148 + posY: 1.66397715 + posZ: 0.373330176 + rotX: 0.01684342 + rotY: 179.993927 + rotZ: 0.08025665 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 6 Where Doom Awaits 022ddf/Deck Altered Paths 0f29d2.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 6 Where Doom Awaits 022ddf/Deck Altered Paths 0f29d2.yaml new file mode 100644 index 000000000..9c5e9fa97 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 6 Where Doom Awaits 022ddf/Deck Altered Paths 0f29d2.yaml @@ -0,0 +1,215 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 233622 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2336': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296074747/742F5083E0E10E3DD22E671C78F35E6143C744FF/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296074238/FB73285A9ED0D784210E50C6EA17EBC25648D800/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Dunwich. Woods. Altered. + GMNotes: '' + GUID: '493726' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Altered Path + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -26.9016228 + posY: 1.78424227 + posZ: 43.0133553 + rotX: -6.40330256e-07 + rotY: 270.000183 + rotZ: 181.28862 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233623 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2336': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296074747/742F5083E0E10E3DD22E671C78F35E6143C744FF/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296074238/FB73285A9ED0D784210E50C6EA17EBC25648D800/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Dunwich. Woods. Altered. + GMNotes: '' + GUID: 66af3c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Altered Path + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -27.33898 + posY: 1.80739772 + posZ: 42.8507462 + rotX: 359.950684 + rotY: 269.999878 + rotZ: 181.778351 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233624 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2336': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296074747/742F5083E0E10E3DD22E671C78F35E6143C744FF/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296074238/FB73285A9ED0D784210E50C6EA17EBC25648D800/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Dunwich. Woods. Altered. + GMNotes: '' + GUID: becc3c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Altered Path + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -27.1510525 + posY: 1.79020023 + posZ: 42.8097763 + rotX: -1.06721707e-07 + rotY: 270.0002 + rotZ: 181.430527 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233621 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2336': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296074747/742F5083E0E10E3DD22E671C78F35E6143C744FF/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296074238/FB73285A9ED0D784210E50C6EA17EBC25648D800/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Dunwich. Woods. Altered. + GMNotes: '' + GUID: 8d2043 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Altered Path + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -27.2113228 + posY: 1.60655725 + posZ: 42.7079773 + rotX: 359.920135 + rotY: 270.0 + rotZ: 180.016861 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2336': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296074747/742F5083E0E10E3DD22E671C78F35E6143C744FF/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296074238/FB73285A9ED0D784210E50C6EA17EBC25648D800/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 233622 +- 233623 +- 233624 +- 233621 +Description: '' +GMNotes: '' +GUID: 0f29d2 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Altered Paths +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -23.676569 + posY: 1.68649542 + posZ: 7.570006 + rotX: 359.9201 + rotY: 270.000061 + rotZ: 0.0168787986 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 6 Where Doom Awaits 022ddf/Deck Diverging Paths 768494.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 6 Where Doom Awaits 022ddf/Deck Diverging Paths 768494.yaml new file mode 100644 index 000000000..21ec8b1fd --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 6 Where Doom Awaits 022ddf/Deck Diverging Paths 768494.yaml @@ -0,0 +1,215 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 233617 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2336': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296074747/742F5083E0E10E3DD22E671C78F35E6143C744FF/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296074238/FB73285A9ED0D784210E50C6EA17EBC25648D800/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: "Dunwich. Woods.\t" + GMNotes: '' + GUID: 6bd637 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Diverging Path + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -28.0487843 + posY: 1.607476 + posZ: 41.8630753 + rotX: 359.920135 + rotY: 270.0 + rotZ: 180.016861 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233618 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2336': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296074747/742F5083E0E10E3DD22E671C78F35E6143C744FF/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296074238/FB73285A9ED0D784210E50C6EA17EBC25648D800/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: "Dunwich. Woods.\t" + GMNotes: '' + GUID: d05756 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Diverging Path + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -27.8813381 + posY: 1.7869817 + posZ: 41.78565 + rotX: 359.9364 + rotY: 269.997253 + rotZ: 181.78627 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233619 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2336': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296074747/742F5083E0E10E3DD22E671C78F35E6143C744FF/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296074238/FB73285A9ED0D784210E50C6EA17EBC25648D800/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: "Dunwich. Woods.\t" + GMNotes: '' + GUID: 7239aa + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Diverging Path + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -27.9382229 + posY: 1.81096864 + posZ: 41.9187546 + rotX: 359.936127 + rotY: 270.0 + rotZ: 182.005844 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233620 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2336': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296074747/742F5083E0E10E3DD22E671C78F35E6143C744FF/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296074238/FB73285A9ED0D784210E50C6EA17EBC25648D800/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: "Dunwich. Woods.\t" + GMNotes: '' + GUID: 49a3cd + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Diverging Path + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -27.9237118 + posY: 1.79540813 + posZ: 42.2325325 + rotX: 359.9362 + rotY: 269.999756 + rotZ: 181.8691 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2336': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296074747/742F5083E0E10E3DD22E671C78F35E6143C744FF/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296074238/FB73285A9ED0D784210E50C6EA17EBC25648D800/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 233617 +- 233618 +- 233619 +- 233620 +Description: '' +GMNotes: '' +GUID: '768494' +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Diverging Paths +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -30.2242832 + posY: 1.69562578 + posZ: 7.57000542 + rotX: 359.9201 + rotY: 269.999878 + rotZ: 0.0168774724 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 6 Where Doom Awaits 022ddf/Deck Encounter Deck 1d3069.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 6 Where Doom Awaits 022ddf/Deck Encounter Deck 1d3069.yaml new file mode 100644 index 000000000..d1f761e7c --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 6 Where Doom Awaits 022ddf/Deck Encounter Deck 1d3069.yaml @@ -0,0 +1,1949 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 232823 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: "\tPower." + GMNotes: '' + GUID: ef7cab + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Altered Beast + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.55222464 + posY: 1.5502063 + posZ: 6.573337 + rotX: 359.920135 + rotY: 269.999939 + rotZ: 0.0168764647 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232823 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: "\tPower." + GMNotes: '' + GUID: 651a9e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Altered Beast + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.6760025 + posY: 1.70618832 + posZ: 6.53470135 + rotX: 359.920135 + rotY: 269.999939 + rotZ: 0.0168764852 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232822 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Creature. Monster. Abomination. + GMNotes: '' + GUID: c53c4a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Lupine Thrall + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.29770446 + posY: 1.55148566 + posZ: 9.71324348 + rotX: 359.920135 + rotY: 269.999939 + rotZ: 0.0168772563 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232822 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Creature. Monster. Abomination. + GMNotes: '' + GUID: 077019 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Lupine Thrall + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.20197439 + posY: 1.70810318 + posZ: 9.924229 + rotX: 359.920135 + rotY: 269.999939 + rotZ: 0.0168772489 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232821 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Creature. Monster. Abomination. + GMNotes: '' + GUID: de3bd5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Avian Thrall + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.17520547 + posY: 1.55259466 + posZ: 12.8993664 + rotX: 359.920135 + rotY: 269.999939 + rotZ: 0.0168785825 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232821 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Creature. Monster. Abomination. + GMNotes: '' + GUID: 0e80a5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Avian Thrall + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.29272318 + posY: 1.70912266 + posZ: 13.0629282 + rotX: 359.920135 + rotY: 269.999939 + rotZ: 0.0168786459 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232811 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: d56ff7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Beyond the Veil + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.917338 + posY: 1.55012894 + posZ: 8.039298 + rotX: 359.920135 + rotY: 269.999969 + rotZ: 0.01687837 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232811 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: 9cb0b3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Beyond the Veil + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.89250565 + posY: 1.70636082 + posZ: 8.19774 + rotX: 359.920135 + rotY: 269.999969 + rotZ: 0.01687832 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232811 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: d56ff7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Beyond the Veil + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.89250565 + posY: 1.72360778 + posZ: 8.19774 + rotX: 359.920837 + rotY: 269.999969 + rotZ: 0.0158282 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232810 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: de3bd5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Visions of Futures Past + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.43124938 + posY: 1.55177522 + posZ: 11.3293571 + rotX: 359.920135 + rotY: 269.999969 + rotZ: 0.0168769564 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232810 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: 42d459 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Visions of Futures Past + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.15239716 + posY: 1.70869577 + posZ: 11.50471 + rotX: 359.920135 + rotY: 269.999969 + rotZ: 0.01687689 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232810 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: de3bd5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Visions of Futures Past + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.15239716 + posY: 1.72595167 + posZ: 11.50471 + rotX: 359.9199 + rotY: 269.999969 + rotZ: 0.0165576525 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233011 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: "\tHex. Hazard." + GMNotes: '' + GUID: b3e2e4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Vortex of Time + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.61408854 + posY: 1.55063963 + posZ: 3.60348773 + rotX: 359.920135 + rotY: 269.999756 + rotZ: 0.016877573 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233011 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: "\tHex. Hazard." + GMNotes: '' + GUID: 2b6ae2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Vortex of Time + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.61183763 + posY: 1.70675254 + posZ: 3.11805844 + rotX: 359.920135 + rotY: 269.999756 + rotZ: 0.0168777537 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233011 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: "\tHex. Hazard." + GMNotes: '' + GUID: b3e2e4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Vortex of Time + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.706807 + posY: 1.72394443 + posZ: 3.33633471 + rotX: 359.920441 + rotY: 269.999756 + rotZ: 0.0165251251 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233010 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: "\tHex. Hazard." + GMNotes: '' + GUID: e3fba9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Spaces Between + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.347013 + posY: 1.55179513 + posZ: 6.26302242 + rotX: 359.920135 + rotY: 269.999756 + rotZ: 0.0168774389 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233010 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: "\tHex. Hazard." + GMNotes: '' + GUID: 52824c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Spaces Between + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.271914 + posY: 1.70847929 + posZ: 6.58807135 + rotX: 359.920135 + rotY: 269.999756 + rotZ: 0.016877519 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233010 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: "\tHex. Hazard." + GMNotes: '' + GUID: e3fba9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Spaces Between + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.33510113 + posY: 1.850574 + posZ: 11.0064564 + rotX: 359.936066 + rotY: 270.0 + rotZ: 180.005859 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233009 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: "\tHex." + GMNotes: '' + GUID: e3fba9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Rites Howled + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 4.53535938 + posY: 1.5488261 + posZ: 6.54055071 + rotX: 359.920135 + rotY: 269.999817 + rotZ: 0.016878156 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233009 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: "\tHex." + GMNotes: '' + GUID: 4ec8cc + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Rites Howled + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 4.25622129 + posY: 1.705148 + posZ: 6.68588257 + rotX: 359.920135 + rotY: 269.999817 + rotZ: 0.0168782175 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233009 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: "\tHex." + GMNotes: '' + GUID: e3fba9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Rites Howled + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 4.262464 + posY: 1.72240973 + posZ: 6.686818 + rotX: 359.920135 + rotY: 269.999817 + rotZ: 0.0168776587 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233008 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Shoggoth. + GMNotes: '' + GUID: e3fba9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Crazed Shoggoth + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.33122134 + posY: 1.81162786 + posZ: 10.9882507 + rotX: 359.9361 + rotY: 270.000031 + rotZ: 180.013489 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233007 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Sorcerer. + GMNotes: '' + GUID: e3fba9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Devotee of the Key + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 1.68052936 + posY: 1.55288851 + posZ: 6.82079935 + rotX: 359.920135 + rotY: 269.999817 + rotZ: 0.01687835 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233007 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Sorcerer. + GMNotes: '' + GUID: 0f3d39 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Devotee of the Key + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 1.20080113 + posY: 1.71036971 + posZ: 7.1936903 + rotX: 359.920135 + rotY: 269.999817 + rotZ: 0.0168783423 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232814 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Sorcerer. + GMNotes: '' + GUID: e44036 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Wizard of Yog-Sothoth + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.394843 + posY: 1.54970729 + posZ: 4.13393164 + rotX: 359.920135 + rotY: 269.999939 + rotZ: 0.0168757457 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232813 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Monster. Abomination. + GMNotes: '' + GUID: fbe20d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Thrall + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.15501428 + posY: 1.69501209 + posZ: 7.444842 + rotX: 359.935822 + rotY: 269.994781 + rotZ: 7.50431871 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232813 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Monster. Abomination. + GMNotes: '' + GUID: 9b9792 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Thrall + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.32377672 + posY: 1.55104816 + posZ: 8.903832 + rotX: 359.921722 + rotY: 269.997437 + rotZ: 0.008892595 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232813 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Monster. Abomination. + GMNotes: '' + GUID: 76139c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Thrall + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.76801586 + posY: 1.60063446 + posZ: 8.933262 + rotX: 359.9319 + rotY: 269.992828 + rotZ: 0.0655015 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232812 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: "\tPact. Power." + GMNotes: '' + GUID: de3bd5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Light of Aforgomon + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.103076 + posY: 1.5511409 + posZ: 7.621261 + rotX: 359.920135 + rotY: 269.999878 + rotZ: 0.0168763418 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232812 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: "\tPact. Power." + GMNotes: '' + GUID: 6c2f4a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Light of Aforgomon + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.12950444 + posY: 1.70759833 + posZ: 8.101044 + rotX: 359.920135 + rotY: 269.999878 + rotZ: 0.0168764461 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 266218 + 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 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: f5c831 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 266218 + 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 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: 97416f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 266217 + 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 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: 0f4202 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 266217 + 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 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: c70601 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 266216 + 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 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: ab3719 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 266216 + 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 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: 435a47 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 266216 + 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 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: ab3719 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Rotting Remains + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 31.17963 + posY: 1.65808344 + posZ: -33.1674423 + rotX: 359.93277 + rotY: 270.000183 + rotZ: 0.0141536333 + 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: + '2317': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: 6e7cb8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 266219 + 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 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: 8af879 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 266219 + 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 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: 6e7cb8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 266221 + 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 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: 50e716 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 266221 + 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 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: c4ce76 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 266220 + 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 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: ab3719 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 266220 + 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 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: 16d6d6 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '2662': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 232823 +- 232823 +- 232822 +- 232822 +- 232821 +- 232821 +- 232811 +- 232811 +- 232811 +- 232810 +- 232810 +- 232810 +- 233011 +- 233011 +- 233011 +- 233010 +- 233010 +- 233010 +- 233009 +- 233009 +- 233009 +- 233008 +- 233007 +- 233007 +- 232814 +- 232813 +- 232813 +- 232813 +- 232812 +- 232812 +- 266218 +- 266218 +- 266217 +- 266217 +- 266216 +- 266216 +- 266216 +- 266219 +- 266219 +- 266219 +- 266221 +- 266221 +- 266220 +- 266220 +Description: '' +GMNotes: '' +GUID: 1d3069 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Encounter Deck +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.92724729 + posY: 1.84632182 + posZ: 5.757152 + rotX: 359.919739 + rotY: 269.999969 + rotZ: 180.016815 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 6 Where Doom Awaits 022ddf/Deck Hideous Abominations b858d0.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 6 Where Doom Awaits 022ddf/Deck Hideous Abominations b858d0.yaml new file mode 100644 index 000000000..7da929b23 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 6 Where Doom Awaits 022ddf/Deck Hideous Abominations b858d0.yaml @@ -0,0 +1,172 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 232831 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Abomination. + GMNotes: '' + GUID: 919fa0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Servant of the Lurker + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.69560742 + posY: 1.54953551 + posZ: 4.974127 + rotX: 359.920135 + rotY: 269.999939 + rotZ: 0.0168759543 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232830 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Abomination. + GMNotes: '' + GUID: de3bd5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Conglomeration of Spheres + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.816169 + posY: 1.55043364 + posZ: 8.595026 + rotX: 359.920135 + rotY: 269.999878 + rotZ: 0.0168762449 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232830 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Abomination. + GMNotes: '' + GUID: 1b1dd5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Conglomeration of Spheres + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.72422314 + posY: 1.70678663 + posZ: 8.640354 + rotX: 359.920135 + rotY: 269.999878 + rotZ: 0.0168763362 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 232831 +- 232830 +- 232830 +Description: '' +GMNotes: '' +GUID: b858d0 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Hideous Abominations +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.75241661 + posY: 1.66243029 + posZ: 15.1756687 + rotX: 359.919739 + rotY: 269.9998 + rotZ: 0.0168403834 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 7 Lost in Time and Space 684060.ttslua b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 7 Lost in Time and Space 684060.ttslua new file mode 100644 index 000000000..54d591927 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 7 Lost in Time and Space 684060.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.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 Dunwich Legacy df7121/Custom_Model_Bag 7 Lost in Time and Space 684060.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 7 Lost in Time and Space 684060.yaml new file mode 100644 index 000000000..4283cec9d --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 7 Lost in Time and Space 684060.yaml @@ -0,0 +1,77 @@ +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 7 Lost in Time and Space 684060/Custom_Model_Bag Set-aside + 72053e.yaml' +- !include 'Custom_Model_Bag 7 Lost in Time and Space 684060/Deck Encounter Deck 726813.yaml' +- !include 'Custom_Model_Bag 7 Lost in Time and Space 684060/Deck Agenda Deck 18fe65.yaml' +- !include 'Custom_Model_Bag 7 Lost in Time and Space 684060/Deck Act Deck 680d25.yaml' +- !include 'Custom_Model_Bag 7 Lost in Time and Space 684060/Card Scenario aa50e4.yaml' +- !include 'Custom_Model_Bag 7 Lost in Time and Space 684060/Custom_Tile Lost in Time + and Space 64a607.yaml' +- !include 'Custom_Model_Bag 7 Lost in Time and Space 684060/Card Another Dimension + 8662fa.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/829135118403758335/596601A40E86B6A360B58E645E976023DBAD4D85/ + MaterialIndex: 3 + MeshURL: https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj + NormalURL: '' + TypeIndex: 6 +Description: The Dunwich Legacy +GMNotes: '' +GUID: '684060' +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Model_Bag 7 Lost in Time and Space 684060.ttslua' +LuaScriptState: '{"ml":{"18fe65":{"lock":false,"pos":{"x":-2.7246,"y":1.6551,"z":0.3733},"rot":{"x":0.0168,"y":180,"z":0.0803}},"64a607":{"lock":false,"pos":{"x":-4.0506,"y":1.5828,"z":-14.8887},"rot":{"x":359.9197,"y":269.9735,"z":0.0169}},"680d25":{"lock":false,"pos":{"x":-2.6885,"y":1.6535,"z":-5.0485},"rot":{"x":0.0168,"y":179.9999,"z":0.0803}},"72053e":{"lock":false,"pos":{"x":1.6967,"y":1.5583,"z":14.2787},"rot":{"x":359.9551,"y":224.998,"z":0.0687}},"726813":{"lock":false,"pos":{"x":-3.9274,"y":1.8357,"z":5.7571},"rot":{"x":359.9197,"y":270.0001,"z":180.0168}},"8662fa":{"lock":false,"pos":{"x":-30.2243,"y":1.6954,"z":-0.03},"rot":{"x":359.9201,"y":269.9999,"z":0.0169}},"aa50e4":{"lock":false,"pos":{"x":-3.9559,"y":1.6556,"z":-10.4412},"rot":{"x":359.9197,"y":269.9999,"z":0.0168}}}}' +MaterialIndex: -1 +MeshIndex: -1 +Name: Custom_Model_Bag +Nickname: '7: Lost in Time and Space' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 13.8735266 + posY: 1.4539727 + posZ: -28.2194138 + rotX: 359.9201 + rotY: 270.026123 + rotZ: 0.01683755 + scaleX: 2.21 + scaleY: 0.46 + scaleZ: 2.42 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 7 Lost in Time and Space 684060/Card Another Dimension 8662fa.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 7 Lost in Time and Space 684060/Card Another Dimension 8662fa.yaml new file mode 100644 index 000000000..089b58a78 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 7 Lost in Time and Space 684060/Card Another Dimension 8662fa.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 233626 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2336': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296074747/742F5083E0E10E3DD22E671C78F35E6143C744FF/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296074238/FB73285A9ED0D784210E50C6EA17EBC25648D800/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Unfettered by Reality +GMNotes: '' +GUID: 8662fa +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Another Dimension +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -30.2242641 + posY: 1.69535077 + posZ: -0.0299942214 + rotX: 359.9201 + rotY: 269.999878 + rotZ: 0.0168778263 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 7 Lost in Time and Space 684060/Card Scenario aa50e4.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 7 Lost in Time and Space 684060/Card Scenario aa50e4.yaml new file mode 100644 index 000000000..994f4ed42 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 7 Lost in Time and Space 684060/Card Scenario aa50e4.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 233625 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2336': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296074747/742F5083E0E10E3DD22E671C78F35E6143C744FF/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296074238/FB73285A9ED0D784210E50C6EA17EBC25648D800/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Lost in Time and Space +GMNotes: '' +GUID: aa50e4 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Scenario +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.9558866 + posY: 1.655648 + posZ: -10.441186 + rotX: 359.919739 + rotY: 269.999878 + rotZ: 0.016841054 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 7 Lost in Time and Space 684060/Custom_Model_Bag Set-aside 72053e.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 7 Lost in Time and Space 684060/Custom_Model_Bag Set-aside 72053e.yaml new file mode 100644 index 000000000..32db2c685 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 7 Lost in Time and Space 684060/Custom_Model_Bag Set-aside 72053e.yaml @@ -0,0 +1,58 @@ +Autoraise: true +ColorDiffuse: + b: 0.02148666 + g: 0.00100758043 + r: 0.02148666 +ContainedObjects: +- !include 'Custom_Model_Bag Set-aside 72053e/Card Yog-Sothoth e3fba9.yaml' +- !include 'Custom_Model_Bag Set-aside 72053e/Card Tear Through Time b8985b.yaml' +- !include 'Custom_Model_Bag Set-aside 72053e/Card The Edge of the Universe 3bcbc5.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: Lost in Time and Space +GMNotes: '' +GUID: 72053e +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +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.69665539 + posY: 1.558317 + posZ: 14.2787008 + rotX: 359.955139 + rotY: 224.997955 + rotZ: 0.06867925 + scaleX: 2.0 + scaleY: 2.0 + scaleZ: 2.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 7 Lost in Time and Space 684060/Custom_Model_Bag Set-aside 72053e/Card Tear Through Time b8985b.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 7 Lost in Time and Space 684060/Custom_Model_Bag Set-aside 72053e/Card Tear Through Time b8985b.yaml new file mode 100644 index 000000000..d4ab96177 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 7 Lost in Time and Space 684060/Custom_Model_Bag Set-aside 72053e/Card Tear Through Time b8985b.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 233628 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2336': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296074747/742F5083E0E10E3DD22E671C78F35E6143C744FF/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296074238/FB73285A9ED0D784210E50C6EA17EBC25648D800/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: "\tOtherworld." +GMNotes: '' +GUID: b8985b +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Tear Through Time +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -10.0045061 + posY: 3.63045621 + posZ: 16.5341167 + rotX: 359.936066 + rotY: 270.0 + rotZ: 0.0135753928 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 7 Lost in Time and Space 684060/Custom_Model_Bag Set-aside 72053e/Card The Edge of the Universe 3bcbc5.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 7 Lost in Time and Space 684060/Custom_Model_Bag Set-aside 72053e/Card The Edge of the Universe 3bcbc5.yaml new file mode 100644 index 000000000..0c740622e --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 7 Lost in Time and Space 684060/Custom_Model_Bag Set-aside 72053e/Card The Edge of the Universe 3bcbc5.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 233627 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2336': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296074747/742F5083E0E10E3DD22E671C78F35E6143C744FF/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296074238/FB73285A9ED0D784210E50C6EA17EBC25648D800/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: "\tOtherworld." +GMNotes: '' +GUID: 3bcbc5 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: The Edge of the Universe +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -9.735253 + posY: 3.63051939 + posZ: 17.692297 + rotX: 359.920074 + rotY: 270.000031 + rotZ: 0.0168588348 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 7 Lost in Time and Space 684060/Custom_Model_Bag Set-aside 72053e/Card Yog-Sothoth e3fba9.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 7 Lost in Time and Space 684060/Custom_Model_Bag Set-aside 72053e/Card Yog-Sothoth e3fba9.yaml new file mode 100644 index 000000000..8f942291c --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 7 Lost in Time and Space 684060/Custom_Model_Bag Set-aside 72053e/Card Yog-Sothoth e3fba9.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 233012 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: The Lurker Beyond the Threshold +GMNotes: '' +GUID: e3fba9 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Yog-Sothoth +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -10.3234348 + posY: 3.631117 + posZ: 17.4842167 + rotX: 359.936035 + rotY: 269.999939 + rotZ: 0.0134468041 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 7 Lost in Time and Space 684060/Custom_Tile Lost in Time and Space 64a607.ttslua b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 7 Lost in Time and Space 684060/Custom_Tile Lost in Time and Space 64a607.ttslua new file mode 100644 index 000000000..a649f8c03 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 7 Lost in Time and Space 684060/Custom_Tile Lost in Time and Space 64a607.ttslua @@ -0,0 +1,25 @@ +name = 'Lost in Time and Space' + +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 + +function standaloneClick() + Global.call('fillContainer', {object=self, key=name, mode='standalone'}) +end diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 7 Lost in Time and Space 684060/Custom_Tile Lost in Time and Space 64a607.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 7 Lost in Time and Space 684060/Custom_Tile Lost in Time and Space 64a607.yaml new file mode 100644 index 000000000..96c015a67 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 7 Lost in Time and Space 684060/Custom_Tile Lost in Time and Space 64a607.yaml @@ -0,0 +1,42 @@ +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 +GMNotes: '' +GUID: 64a607 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Tile Lost in Time and Space 64a607.ttslua' +LuaScriptState: '' +Name: Custom_Tile +Nickname: Lost in Time and Space +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -4.05060053 + posY: 1.58276021 + posZ: -14.8887005 + rotX: 359.919739 + rotY: 269.97348 + rotZ: 0.01687495 + scaleX: 2.2 + scaleY: 1.0 + scaleZ: 2.2 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 7 Lost in Time and Space 684060/Deck Act Deck 680d25.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 7 Lost in Time and Space 684060/Deck Act Deck 680d25.yaml new file mode 100644 index 000000000..230583e2a --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 7 Lost in Time and Space 684060/Deck Act Deck 680d25.yaml @@ -0,0 +1,215 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 233351 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2333': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296027643/326876D4B46DF777AA1293989DEEE6A810ED027B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999385819527677/3AD8DFFFBFF54DB098AD3E00BB7E75DA0590FE8B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 4 + GMNotes: '' + GUID: 36ab3e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Finding a New Way + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -18.0889053 + posY: 1.58298731 + posZ: 15.4595613 + rotX: 0.0169329587 + rotY: 179.999817 + rotZ: 0.0795364752 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233350 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2333': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296027643/326876D4B46DF777AA1293989DEEE6A810ED027B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999385819527677/3AD8DFFFBFF54DB098AD3E00BB7E75DA0590FE8B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 3 + GMNotes: '' + GUID: 4ff26a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Close the Rift + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -18.13166 + posY: 1.73168981 + posZ: 15.5389347 + rotX: 0.0178304166 + rotY: 180.000137 + rotZ: 0.07938473 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233349 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2333': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296027643/326876D4B46DF777AA1293989DEEE6A810ED027B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999385819527677/3AD8DFFFBFF54DB098AD3E00BB7E75DA0590FE8B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 2 + GMNotes: '' + GUID: 85ddfb + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Into the Beyond + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -17.8573818 + posY: 1.7488178 + posZ: 16.2058125 + rotX: 0.0168605056 + rotY: 180.000183 + rotZ: 0.07988454 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233348 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2333': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296027643/326876D4B46DF777AA1293989DEEE6A810ED027B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999385819527677/3AD8DFFFBFF54DB098AD3E00BB7E75DA0590FE8B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 1 + GMNotes: '' + GUID: 1b5f59 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Out of this World + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -18.2920742 + posY: 1.735714 + posZ: 15.9656506 + rotX: 0.0168787241 + rotY: 180.000137 + rotZ: 0.07989076 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2333': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296027643/326876D4B46DF777AA1293989DEEE6A810ED027B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999385819527677/3AD8DFFFBFF54DB098AD3E00BB7E75DA0590FE8B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 233351 +- 233350 +- 233349 +- 233348 +Description: '' +GMNotes: '' +GUID: 680d25 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Act Deck +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.68847275 + posY: 1.65349436 + posZ: -5.04854536 + rotX: 0.0168351531 + rotY: 179.999878 + rotZ: 0.08025766 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 7 Lost in Time and Space 684060/Deck Agenda Deck 18fe65.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 7 Lost in Time and Space 684060/Deck Agenda Deck 18fe65.yaml new file mode 100644 index 000000000..4b0513ac8 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 7 Lost in Time and Space 684060/Deck Agenda Deck 18fe65.yaml @@ -0,0 +1,215 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 233347 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2333': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296027643/326876D4B46DF777AA1293989DEEE6A810ED027B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999385819527677/3AD8DFFFBFF54DB098AD3E00BB7E75DA0590FE8B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 4 + GMNotes: '' + GUID: c3bf03 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The End of All Things + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -17.4582119 + posY: 1.58181953 + posZ: 14.460371 + rotX: 0.0168703981 + rotY: 180.000122 + rotZ: 0.07987753 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233346 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2333': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296027643/326876D4B46DF777AA1293989DEEE6A810ED027B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999385819527677/3AD8DFFFBFF54DB098AD3E00BB7E75DA0590FE8B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 3 + GMNotes: '' + GUID: '930050' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Breaking Through + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -17.443121 + posY: 1.73048151 + posZ: 14.56105 + rotX: 0.01686063 + rotY: 180.000122 + rotZ: 0.07990243 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233345 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2333': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296027643/326876D4B46DF777AA1293989DEEE6A810ED027B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999385819527677/3AD8DFFFBFF54DB098AD3E00BB7E75DA0590FE8B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 2 + GMNotes: '' + GUID: 19793c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Past, Present and Future + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -17.4985352 + posY: 1.82266557 + posZ: 14.4875374 + rotX: 2.773096 + rotY: 180.002747 + rotZ: 0.0800148 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233344 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2333': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296027643/326876D4B46DF777AA1293989DEEE6A810ED027B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999385819527677/3AD8DFFFBFF54DB098AD3E00BB7E75DA0590FE8B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 1 + GMNotes: '' + GUID: 1b5f59 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: All is One + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -17.518364 + posY: 1.7342459 + posZ: 14.8551722 + rotX: 0.0168792941 + rotY: 180.000122 + rotZ: 0.07989333 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2333': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/782999241296027643/326876D4B46DF777AA1293989DEEE6A810ED027B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999385819527677/3AD8DFFFBFF54DB098AD3E00BB7E75DA0590FE8B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 233347 +- 233346 +- 233345 +- 233344 +Description: '' +GMNotes: '' +GUID: 18fe65 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Agenda Deck +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.72462869 + posY: 1.65513825 + posZ: 0.373304665 + rotX: 0.0168348812 + rotY: 180.000031 + rotZ: 0.0802581459 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 7 Lost in Time and Space 684060/Deck Encounter Deck 726813.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 7 Lost in Time and Space 684060/Deck Encounter Deck 726813.yaml new file mode 100644 index 000000000..5a2de5f6d --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Model_Bag 7 Lost in Time and Space 684060/Deck Encounter Deck 726813.yaml @@ -0,0 +1,1863 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 233022 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: b8e111 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Vast Expanse + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.59488988 + posY: 1.54800773 + posZ: -0.6910548 + rotX: 359.920135 + rotY: 269.999756 + rotZ: 0.0168770663 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233022 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: 9bf115 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Vast Expanse + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.615601 + posY: 1.703763 + posZ: -0.494694948 + rotX: 359.920135 + rotY: 269.999756 + rotZ: 0.0168771055 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233022 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: b8e111 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Vast Expanse + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.6155982 + posY: 1.72101808 + posZ: -0.4947077 + rotX: 359.920563 + rotY: 269.999756 + rotZ: 0.0163997822 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233021 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: bed20e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Wormhole + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.2897706 + posY: 1.54934132 + posZ: 2.39365745 + rotX: 359.920135 + rotY: 269.999756 + rotZ: 0.0168782622 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233021 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: d22809 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Wormhole + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.30081034 + posY: 1.70532167 + posZ: 2.402783 + rotX: 359.920135 + rotY: 269.999756 + rotZ: 0.0168786459 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233020 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: e3fba9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Collapsing Reality + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.35379457 + posY: 1.550382 + posZ: 6.230603 + rotX: 359.920135 + rotY: 269.999664 + rotZ: 0.01687754 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233020 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: ab9229 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Collapsing Reality + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.398031 + posY: 1.70642865 + posZ: 5.915227 + rotX: 359.920135 + rotY: 269.999664 + rotZ: 0.01687751 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233020 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: e3fba9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Collapsing Reality + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.408769 + posY: 1.72366679 + posZ: 5.94847965 + rotX: 359.919556 + rotY: 269.999664 + rotZ: 0.0169323478 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233019 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Yithian. + GMNotes: '' + GUID: 04fae6 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Yithian Starseeker + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.650229 + posY: 1.54849708 + posZ: 1.23274589 + rotX: 359.920135 + rotY: 269.999756 + rotZ: 0.0168776624 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233019 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Yithian. + GMNotes: '' + GUID: 8f9f0a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Yithian Starseeker + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.6179266 + posY: 1.70442426 + posZ: 1.42972481 + rotX: 359.920135 + rotY: 269.999756 + rotZ: 0.01687762 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233018 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Yithian. + GMNotes: '' + GUID: e3fba9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Interstellar Traveler + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.95726347 + posY: 1.71822262 + posZ: 5.151437 + rotX: 359.9361 + rotY: 269.999939 + rotZ: 180.013535 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233018 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Yithian. + GMNotes: '' + GUID: 224e79 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Interstellar Traveler + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.64720035 + posY: 1.64947951 + posZ: 5.562858 + rotX: 359.920135 + rotY: 269.9998 + rotZ: 0.0168766547 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233018 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Yithian. + GMNotes: '' + GUID: 816c6e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Interstellar Traveler + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.142872 + posY: 1.5994879 + posZ: 5.485885 + rotX: 359.920135 + rotY: 269.9998 + rotZ: 0.0168766584 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233017 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Otherworld. Extradimensional. + GMNotes: '' + GUID: a817e8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dimensional Doorway + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.13925815 + posY: 1.81145775 + posZ: 9.44118 + rotX: 359.9361 + rotY: 270.000031 + rotZ: 180.013474 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233016 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Otherworld. Extradimensional. + GMNotes: '' + GUID: c704c2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Steps of Y'hagharl + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.19242978 + posY: 1.80190122 + posZ: 9.970057 + rotX: 359.920135 + rotY: 270.0 + rotZ: 180.016876 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233015 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Otherworld. Extradimensional. + GMNotes: '' + GUID: 9c0430 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Endless Bridge + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.856183 + posY: 1.54751182 + posZ: -1.137705 + rotX: 359.920135 + rotY: 269.999847 + rotZ: 0.016876556 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233015 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Otherworld. Extradimensional. + GMNotes: '' + GUID: 5ccf98 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Endless Bridge + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 4.019457 + posY: 1.7029196 + posZ: -1.10944748 + rotX: 359.920135 + rotY: 269.999817 + rotZ: 0.0168766081 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233014 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Otherworld. Extradimensional. + GMNotes: '' + GUID: 8100cf + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Prismatic Cascade + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.731143 + posY: 1.54877687 + posZ: 2.566369 + rotX: 359.920135 + rotY: 269.999939 + rotZ: 0.0168759022 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233014 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Otherworld. Extradimensional. + GMNotes: '' + GUID: 1b1dac + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Prismatic Cascade + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.92325735 + posY: 1.70436108 + posZ: 2.47072983 + rotX: 359.920135 + rotY: 269.999939 + rotZ: 0.0168758314 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233013 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Otherworld. Extradimensional. + GMNotes: '' + GUID: e3fba9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Tear Through Space + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.61346817 + posY: 1.550228 + posZ: 6.937173 + rotX: 359.920135 + rotY: 269.999939 + rotZ: 0.0168756321 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233013 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Otherworld. Extradimensional. + GMNotes: '' + GUID: 788a8c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Tear Through Space + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.85034347 + posY: 1.70612967 + posZ: 7.146141 + rotX: 359.920135 + rotY: 269.999939 + rotZ: 0.0168754943 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233013 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Otherworld. Extradimensional. + GMNotes: '' + GUID: e3fba9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Tear Through Space + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.85034347 + posY: 1.72339964 + posZ: 7.146141 + rotX: 359.920135 + rotY: 269.999939 + rotZ: 0.0168756321 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233013 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Otherworld. Extradimensional. + GMNotes: '' + GUID: e3fba9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Tear Through Space + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.85034347 + posY: 1.70971835 + posZ: 7.146141 + rotX: 359.919861 + rotY: 269.999939 + rotZ: 0.0163024459 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232811 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: d56ff7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Beyond the Veil + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.917338 + posY: 1.55012894 + posZ: 8.039298 + rotX: 359.920135 + rotY: 269.999969 + rotZ: 0.01687837 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232811 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: 9cb0b3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Beyond the Veil + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.89250565 + posY: 1.70636082 + posZ: 8.19774 + rotX: 359.920135 + rotY: 269.999969 + rotZ: 0.01687832 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232811 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: d56ff7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Beyond the Veil + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.89250565 + posY: 1.72360778 + posZ: 8.19774 + rotX: 359.920837 + rotY: 269.999969 + rotZ: 0.0158282 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232810 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: de3bd5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Visions of Futures Past + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.43124938 + posY: 1.55177522 + posZ: 11.3293571 + rotX: 359.920135 + rotY: 269.999969 + rotZ: 0.0168769564 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232810 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: 42d459 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Visions of Futures Past + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.15239716 + posY: 1.70869577 + posZ: 11.50471 + rotX: 359.920135 + rotY: 269.999969 + rotZ: 0.01687689 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232810 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: de3bd5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Visions of Futures Past + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.15239716 + posY: 1.72595167 + posZ: 11.50471 + rotX: 359.9199 + rotY: 269.999969 + rotZ: 0.0165576525 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232829 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: "\tHex. Obstacle." + GMNotes: '' + GUID: 2d6b0f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Arcane Barrier + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.163001 + posY: 1.550591 + posZ: 6.036887 + rotX: 359.920135 + rotY: 269.9999 + rotZ: 0.0168760177 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232829 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: "\tHex. Obstacle." + GMNotes: '' + GUID: db1aee + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Arcane Barrier + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.36834574 + posY: 1.70658445 + posZ: 6.162498 + rotX: 359.920135 + rotY: 269.9999 + rotZ: 0.01687594 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232828 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: "\tHex. Terror." + GMNotes: '' + GUID: 851dc1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Terror from Beyond + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.0437057 + posY: 1.55163479 + posZ: 9.017338 + rotX: 359.920135 + rotY: 269.999939 + rotZ: 0.0168782789 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232828 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: "\tHex. Terror." + GMNotes: '' + GUID: 8906a9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Terror from Beyond + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.82296681 + posY: 1.708395 + posZ: 9.019801 + rotX: 359.920135 + rotY: 269.999939 + rotZ: 0.0168783069 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232827 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: de3bd5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Pushed into the Beyond + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.622002 + posY: 1.55319154 + posZ: 12.3073425 + rotX: 359.920135 + rotY: 269.9999 + rotZ: 0.0168778151 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232827 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: d91086 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Pushed into the Beyond + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.70456314 + posY: 1.70989764 + posZ: 12.504797 + rotX: 359.920135 + rotY: 269.9999 + rotZ: 0.0168777462 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232831 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Abomination. + GMNotes: '' + GUID: 919fa0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Servant of the Lurker + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.69560742 + posY: 1.54953551 + posZ: 4.974127 + rotX: 359.920135 + rotY: 269.999939 + rotZ: 0.0168759543 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232830 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Abomination. + GMNotes: '' + GUID: de3bd5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Conglomeration of Spheres + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.816169 + posY: 1.55043364 + posZ: 8.595026 + rotX: 359.920135 + rotY: 269.999878 + rotZ: 0.0168762449 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232830 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Abomination. + GMNotes: '' + GUID: 1b1dd5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Conglomeration of Spheres + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.72422314 + posY: 1.70678663 + posZ: 8.640354 + rotX: 359.920135 + rotY: 269.999878 + rotZ: 0.0168763362 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231731 + 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 + UniqueBack: false + Description: Pact. + GMNotes: '' + GUID: ad01d5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Offer of Power + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -20.624012 + posY: 1.58353865 + posZ: 5.391288 + rotX: 359.92038 + rotY: 270.0011 + rotZ: 0.0152683891 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231731 + 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 + UniqueBack: false + Description: Pact. + GMNotes: '' + GUID: 1e4b6f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Offer of Power + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -21.1143684 + posY: 1.74799216 + posZ: 5.51088 + rotX: 359.927856 + rotY: 270.00116 + rotZ: 0.008664682 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231730 + 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 + UniqueBack: false + Description: Monster. Yithian. + GMNotes: '' + GUID: ab3719 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Yithian Observer + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -20.7980976 + posY: 1.58471787 + posZ: 8.655001 + rotX: 359.9206 + rotY: 270.001221 + rotZ: 0.0136531973 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231730 + 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 + UniqueBack: false + Description: Monster. Yithian. + GMNotes: '' + GUID: 4c04b5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Yithian Observer + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -21.04713 + posY: 1.74898231 + posZ: 8.319516 + rotX: 359.925964 + rotY: 270.001221 + rotZ: 0.0171930045 + 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 + UniqueBack: false + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241295993974/70871F727ABBAB3DB22003051B5E1FBF8999AEEB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '2330': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/782999241296009359/3EF850792428E467A4475333CCBBF6E6B5975186/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 233022 +- 233022 +- 233022 +- 233021 +- 233021 +- 233020 +- 233020 +- 233020 +- 233019 +- 233019 +- 233018 +- 233018 +- 233018 +- 233017 +- 233016 +- 233015 +- 233015 +- 233014 +- 233014 +- 233013 +- 233013 +- 233013 +- 233013 +- 232811 +- 232811 +- 232811 +- 232810 +- 232810 +- 232810 +- 232829 +- 232829 +- 232828 +- 232828 +- 232827 +- 232827 +- 232831 +- 232830 +- 232830 +- 231731 +- 231731 +- 231730 +- 231730 +Description: '' +GMNotes: '' +GUID: '726813' +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Encounter Deck +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.92736244 + posY: 1.83566284 + posZ: 5.75707531 + rotX: 359.919739 + rotY: 270.0001 + rotZ: 180.016815 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Tile Dunwich Legacy Campaign Log 3f6ab6.ttslua b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Tile Dunwich Legacy Campaign Log 3f6ab6.ttslua new file mode 100644 index 000000000..360c1c28e --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Tile Dunwich Legacy Campaign Log 3f6ab6.ttslua @@ -0,0 +1,527 @@ +--[[ Character Sheet Template by: MrStump + +You can set up your own character sheet if you follow these steps. + +Step 1) Change the character sheet image + -Right click on the character sheet, click Custom + -Replace the image URL with one for your character sheet + -Click import, make sure your sheet loads + -SAVE THE GAME (the table setup) + -LOAD FROM THAT SAVE YOU JUST MADE + +Step 2) Edit script to fit your character sheet + -Below you will see some general options, and then the big data table + -The data table is what determines how many of which buttons are made + -Checkboxes + -Counters + -Textboxes + -By default, there are 3 of each. You can add more or remove entries + -If you intend to add/remove, be sure only to add/remove ENTRIES + -This is what an entry looks like: + { + pos = {-0.977,0.1,-0.589}, + size = 800, + state = false + }, + -Deleting the whole thing would remove that specific item on the sheet + -Copy and pasting it after another entry would create another + -Each entry type has unique data points (pos, size, state, etc) + -Do not try to add in your own data points or remove them individually + -There is a summary of what each point does at the top of its category + +Step 3) Save and check script changes + -Hit Save & Apply in the script window to save your code + -You can edit your code as needed and Save+Apply as often as needed + -When you are finished, make disableSave = false below then Save+apply + -This enables saving, so your sheet will remember whats on it. + +Bonus) Finding/Editing Positions for elements + I have included a tool to get positions for buttons in {x,y,z} form + Place it where you want the center of your element to be + Then copy the table from the notes (lower right of screen) + You can highlight it and CTRL+C + Paste it into the data table where needed (pos=) + If you want to manually tweek the values: + {0,0,0} is the center of the character sheet + {1,0,0} is right, {-1,0,0} is left + {0,0,-1} is up, {0,0,1} is down + 0.1 for Y is the height off of the page. + If it was 0, it would be down inside the model of the sheet + +Begin editing below: ]] + +--Set this to true while editing and false when you have finished +disableSave = false +--Remember to set this to false once you are done making changes +--Then, after you save & apply it, save your game too + +--Color information for button text (r,g,b, values of 0-1) +buttonFontColor = {0,0,0} +--Color information for button background +buttonColor = {1,1,1} +--Change scale of button (Avoid changing if possible) +buttonScale = {0.1,0.1,0.1} + +--This is the button placement information +defaultButtonData = { + --Add checkboxes + checkbox = { + --[[ + pos = the position (pasted from the helper tool) + size = height/width/font_size for checkbox + state = default starting value for checkbox (true=checked, false=not) + ]] + --First checkbox +-- { +-- pos = {-0.62,0.1,0.056}, +-- size = 400, +-- state = false +-- }, + --Second checkbox +-- { +-- pos = {-0.629,0.1,0.199}, +-- size = 400, +-- state = false +-- }, + --Third checkbox +-- { +-- pos = {-0.594,0.1,0.355}, +-- size = 400, +-- state = false +-- }, + --End of checkboxes + }, + --Add counters that have a + and - button + counter = { + --[[ + pos = the position (pasted from the helper tool) + size = height/width/font_size for counter + value = default starting value for counter + hideBG = if background of counter is hidden (true=hidden, false=not) + ]] + --Slot one counter 1 + { + pos = {-0.7,0.1,-0.45}, + size = 400, + value = 0, + hideBG = true + }, + --Slot one counter 2 + { + pos = {-0.52,0.1,-0.45}, + size = 400, + value = 0, + hideBG = true + }, + --Slot one xp 1 + { + pos = {-0.517,0.1,-0.55}, + size = 300, + value = 0, + hideBG = true + }, + --Slot two counter 1 + { + pos = {-0.274,0.1,-0.445}, + size = 400, + value = 0, + hideBG = true + }, + --Slot two counter 2 + { + pos = {-0.074,0.1,-0.445}, + size = 400, + value = 0, + hideBG = true + }, + --Slot two xp 1 + { + pos = {-0.061,0.1,-0.54}, + size = 300, + value = 0, + hideBG = true + }, + --Slot three counter 1 + { + pos = {0.153,0.1,-0.44}, + size = 400, + value = 0, + hideBG = true + }, + --Slot three counter 2 + { + pos = {0.379,0.1,-0.44}, + size = 400, + value = 0, + hideBG = true + }, + --Slot three xp 1 + { + pos = {0.38,0.1,-0.54}, + size = 300, + value = 0, + hideBG = true + }, + --Slot four counter 1 + { + pos = {0.614,0.1,-0.44}, + size = 400, + value = 0, + hideBG = true + }, + --Slot four counter 2 + { + pos = {0.82,0.1,-0.44}, + size = 400, + value = 0, + hideBG = true + }, + --Slot four xp 1 + { + pos = {0.827,0.1,-0.54}, + size = 300, + value = 0, + hideBG = true + }, + --End of counters + }, + --Add editable text boxes + textbox = { + --[[ + pos = the position (pasted from the helper tool) + rows = how many lines of text you want for this box + width = how wide the text box is + font_size = size of text. This and "rows" effect overall height + label = what is shown when there is no text. "" = nothing + value = text entered into box. "" = nothing + alignment = Number to indicate how you want text aligned + (1=Automatic, 2=Left, 3=Center, 4=Right, 5=Justified) + ]] + --Slot one player + { + pos = {-0.637,0.1,-0.70}, + rows = 1, + width = 2000, + font_size = 150, + label = "Click to type", + value = "", + alignment = 2 + }, + --Slot one investigator + { + pos = {-0.637,0.1,-0.625}, + rows = 1, + width = 2000, + font_size = 150, + label = "Click to type", + value = "", + alignment = 2 + }, + --Slot one story + { + pos = {-0.637,0.1,-0.25}, + rows = 7, + width = 2000, + font_size = 150, + label = "Click to type", + value = "", + alignment = 2 + }, + --Slot two player + { + pos = {-0.2,0.1,-0.70}, + rows = 1, + width = 2000, + font_size = 150, + label = "Click to type", + value = "", + alignment = 2 + }, + --Slot two investigator + { + pos = {-0.2,0.1,-0.625}, + rows = 1, + width = 2000, + font_size = 150, + label = "Click to type", + value = "", + alignment = 2 + }, + --Slot two story + { + pos = {-0.2,0.1,-0.25}, + rows = 7, + width = 2000, + font_size = 150, + label = "Click to type", + value = "", + alignment = 2 + }, + --Slot three player + { + pos = {0.241,0.1,-0.70}, + rows = 1, + width = 2000, + font_size = 150, + label = "Click to type", + value = "", + alignment = 2 + }, + --Slot three investigator + { + pos = {0.237,0.1,-0.625}, + rows = 1, + width = 2000, + font_size = 150, + label = "Click to type", + value = "", + alignment = 2 + }, + --Slot three story + { + pos = {0.24,0.1,-0.25}, + rows = 7, + width = 2000, + font_size = 150, + label = "Click to type", + value = "", + alignment = 2 + }, + --Slot four player + { + pos = {0.671,0.1,-0.70}, + rows = 1, + width = 2000, + font_size = 150, + label = "Click to type", + value = "", + alignment = 2 + }, + --Slot four investigator + { + pos = {0.671,0.1,-0.625}, + rows = 1, + width = 2000, + font_size = 150, + label = "Click to type", + value = "", + alignment = 2 + }, + --Slot four story + { + pos = {0.671,0.1,-0.25}, + rows = 7, + width = 2000, + font_size = 150, + label = "Click to type", + value = "", + alignment = 2 + }, + --Campaign Notes + { + pos = {-0.45,0.1,0.55}, + rows =18, + width = 3500, + font_size = 200, + label = "Click to type", + value = "", + alignment = 2 + }, + --Campaign Notes 2 + { + pos = {0.384,0.1,0.228}, + rows = 8, + width = 3500, + font_size = 200, + label = "Click to type", + value = "", + alignment = 2 + }, + --Cultists interrogated + { + pos = {0.384,0.1,0.69}, + rows = 8, + width = 3500, + font_size = 200, + label = "Click to type", + value = "", + alignment = 2 + }, + --End of textboxes + } +} + + + +--Lua beyond this point, I recommend doing something more fun with your life + + + +--Save function +function updateSave() + saved_data = JSON.encode(ref_buttonData) + if disableSave==true then saved_data="" end + self.script_state = saved_data +end + +--Startup procedure +function onload(saved_data) + if disableSave==true then saved_data="" end + if saved_data ~= "" then + local loaded_data = JSON.decode(saved_data) + ref_buttonData = loaded_data + else + ref_buttonData = defaultButtonData + end + + spawnedButtonCount = 0 + createCheckbox() + createCounter() + createTextbox() +end + + + +--Click functions for buttons + + + +--Checks or unchecks the given box +function click_checkbox(tableIndex, buttonIndex) + if ref_buttonData.checkbox[tableIndex].state == true then + ref_buttonData.checkbox[tableIndex].state = false + self.editButton({index=buttonIndex, label=""}) + else + ref_buttonData.checkbox[tableIndex].state = true + self.editButton({index=buttonIndex, label=string.char(10008)}) + end + updateSave() +end + +--Applies value to given counter display +function click_counter(tableIndex, buttonIndex, amount) + ref_buttonData.counter[tableIndex].value = ref_buttonData.counter[tableIndex].value + amount + self.editButton({index=buttonIndex, label=ref_buttonData.counter[tableIndex].value}) + updateSave() +end + +--Updates saved value for given text box +function click_textbox(i, value, selected) + if selected == false then + ref_buttonData.textbox[i].value = value + updateSave() + end +end + +--Dud function for if you have a background on a counter +function click_none() end + + + +--Button creation + + + +--Makes checkboxes +function createCheckbox() + for i, data in ipairs(ref_buttonData.checkbox) do + --Sets up reference function + local buttonNumber = spawnedButtonCount + local funcName = "checkbox"..i + local func = function() click_checkbox(i, buttonNumber) end + self.setVar(funcName, func) + --Sets up label + local label = "" + if data.state==true then label=string.char(10008) end + --Creates button and counts it + self.createButton({ + label=label, click_function=funcName, function_owner=self, + position=data.pos, height=data.size, width=data.size, + font_size=data.size, scale=buttonScale, + color=buttonColor, font_color=buttonFontColor + }) + spawnedButtonCount = spawnedButtonCount + 1 + end +end + +--Makes counters +function createCounter() + for i, data in ipairs(ref_buttonData.counter) do + --Sets up display + local displayNumber = spawnedButtonCount + --Sets up label + local label = data.value + --Sets height/width for display + local size = data.size + if data.hideBG == true then size = 0 end + --Creates button and counts it + self.createButton({ + label=label, click_function="click_none", function_owner=self, + position=data.pos, height=size, width=size, + font_size=data.size, scale=buttonScale, + color=buttonColor, font_color=buttonFontColor + }) + spawnedButtonCount = spawnedButtonCount + 1 + + --Sets up add 1 + local funcName = "counterAdd"..i + local func = function() click_counter(i, displayNumber, 1) end + self.setVar(funcName, func) + --Sets up label + local label = "+" + --Sets up position + local offsetDistance = (data.size/2 + data.size/4) * (buttonScale[1] * 0.002) + local pos = {data.pos[1] + offsetDistance, data.pos[2], data.pos[3]} + --Sets up size + local size = data.size / 2 + --Creates button and counts it + self.createButton({ + label=label, click_function=funcName, function_owner=self, + position=pos, height=size, width=size, + font_size=size, scale=buttonScale, + color=buttonColor, font_color=buttonFontColor + }) + spawnedButtonCount = spawnedButtonCount + 1 + + --Sets up subtract 1 + local funcName = "counterSub"..i + local func = function() click_counter(i, displayNumber, -1) end + self.setVar(funcName, func) + --Sets up label + local label = "-" + --Set up position + local pos = {data.pos[1] - offsetDistance, data.pos[2], data.pos[3]} + --Creates button and counts it + self.createButton({ + label=label, click_function=funcName, function_owner=self, + position=pos, height=size, width=size, + font_size=size, scale=buttonScale, + color=buttonColor, font_color=buttonFontColor + }) + spawnedButtonCount = spawnedButtonCount + 1 + end +end + +function createTextbox() + for i, data in ipairs(ref_buttonData.textbox) do + --Sets up reference function + local funcName = "textbox"..i + local func = function(_,_,val,sel) click_textbox(i,val,sel) end + self.setVar(funcName, func) + + self.createInput({ + input_function = funcName, + function_owner = self, + label = data.label, + alignment = data.alignment, + position = data.pos, + scale = buttonScale, + width = data.width, + height = (data.font_size*data.rows)+24, + font_size = data.font_size, + color = buttonColor, + font_color = buttonFontColor, + value = data.value, + }) + end +end diff --git a/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Tile Dunwich Legacy Campaign Log 3f6ab6.yaml b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Tile Dunwich Legacy Campaign Log 3f6ab6.yaml new file mode 100644 index 000000000..b1be94c53 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Dunwich Legacy df7121/Custom_Tile Dunwich Legacy Campaign Log 3f6ab6.yaml @@ -0,0 +1,266 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.1 + Type: 0 + ImageScalar: 1.0 + ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/959719855118672935/146C19B01EA067D56DF32B9F9B23D0C15C69C323/ + ImageURL: http://cloud-3.steamusercontent.com/ugc/952965089460805886/ED3351E07CA39E86E0ACFA75E23BF8B946DA2EF6/ + WidthScale: 0.0 +Description: '' +GMNotes: '' +GUID: 3f6ab6 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Tile Dunwich Legacy Campaign Log 3f6ab6.ttslua' +LuaScriptState: '{"checkbox":[],"counter":[{"hideBG":true,"pos":[-0.7,0.1,-0.45],"size":400,"value":0},{"hideBG":true,"pos":[-0.52,0.1,-0.45],"size":400,"value":0},{"hideBG":true,"pos":[-0.517,0.1,-0.55],"size":300,"value":0},{"hideBG":true,"pos":[-0.274,0.1,-0.445],"size":400,"value":0},{"hideBG":true,"pos":[-0.074,0.1,-0.445],"size":400,"value":0},{"hideBG":true,"pos":[-0.061,0.1,-0.54],"size":300,"value":0},{"hideBG":true,"pos":[0.153,0.1,-0.44],"size":400,"value":0},{"hideBG":true,"pos":[0.379,0.1,-0.44],"size":400,"value":0},{"hideBG":true,"pos":[0.38,0.1,-0.54],"size":300,"value":0},{"hideBG":true,"pos":[0.614,0.1,-0.44],"size":400,"value":0},{"hideBG":true,"pos":[0.82,0.1,-0.44],"size":400,"value":0},{"hideBG":true,"pos":[0.827,0.1,-0.54],"size":300,"value":0}],"textbox":[{"alignment":2,"font_size":150,"label":"Click + to type","pos":[-0.637,0.1,-0.7],"rows":1,"value":"","width":2000},{"alignment":2,"font_size":150,"label":"Click + to type","pos":[-0.637,0.1,-0.625],"rows":1,"value":"","width":2000},{"alignment":2,"font_size":150,"label":"Click + to type","pos":[-0.637,0.1,-0.25],"rows":7,"value":"","width":2000},{"alignment":2,"font_size":150,"label":"Click + to type","pos":[-0.2,0.1,-0.7],"rows":1,"value":"","width":2000},{"alignment":2,"font_size":150,"label":"Click + to type","pos":[-0.2,0.1,-0.625],"rows":1,"value":"","width":2000},{"alignment":2,"font_size":150,"label":"Click + to type","pos":[-0.2,0.1,-0.25],"rows":7,"value":"","width":2000},{"alignment":2,"font_size":150,"label":"Click + to type","pos":[0.241,0.1,-0.7],"rows":1,"value":"","width":2000},{"alignment":2,"font_size":150,"label":"Click + to type","pos":[0.237,0.1,-0.625],"rows":1,"value":"","width":2000},{"alignment":2,"font_size":150,"label":"Click + to type","pos":[0.24,0.1,-0.25],"rows":7,"value":"","width":2000},{"alignment":2,"font_size":150,"label":"Click + to type","pos":[0.671,0.1,-0.7],"rows":1,"value":"","width":2000},{"alignment":2,"font_size":150,"label":"Click + to type","pos":[0.671,0.1,-0.625],"rows":1,"value":"","width":2000},{"alignment":2,"font_size":150,"label":"Click + to type","pos":[0.671,0.1,-0.25],"rows":7,"value":"","width":2000},{"alignment":2,"font_size":200,"label":"Click + to type","pos":[-0.45,0.1,0.55],"rows":18,"value":"","width":3500},{"alignment":2,"font_size":200,"label":"Click + to type","pos":[0.384,0.1,0.228],"rows":8,"value":"","width":3500},{"alignment":2,"font_size":200,"label":"Click + to type","pos":[0.384,0.1,0.69],"rows":8,"value":"","width":3500}]}' +Name: Custom_Tile +Nickname: Dunwich Legacy Campaign Log +Snap: true +States: + '2': + Autoraise: true + ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 + CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.1 + Type: 0 + ImageScalar: 1.0 + ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/959719855118672935/146C19B01EA067D56DF32B9F9B23D0C15C69C323/ + ImageURL: http://cloud-3.steamusercontent.com/ugc/952965089460806270/411287859209F7707FA87FCFA301C9E855141305/ + WidthScale: 0.0 + Description: '' + GMNotes: '' + GUID: 72c448 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: "--[[ Character Sheet Template by: MrStump\r\n\r\nYou can set\ + \ up your own character sheet if you follow these steps.\r\n\r\nStep 1) Change\ + \ the character sheet image\r\n -Right click on the character sheet, click\ + \ Custom\r\n -Replace the image URL with one for your character sheet\r\n\ + \ -Click import, make sure your sheet loads\r\n -SAVE THE GAME (the table\ + \ setup)\r\n -LOAD FROM THAT SAVE YOU JUST MADE\r\n\r\nStep 2) Edit script\ + \ to fit your character sheet\r\n -Below you will see some general options,\ + \ and then the big data table\r\n -The data table is what determines how\ + \ many of which buttons are made\r\n -Checkboxes\r\n -Counters\r\ + \n -Textboxes\r\n -By default, there are 3 of each. You can add more\ + \ or remove entries\r\n -If you intend to add/remove, be sure only to add/remove\ + \ ENTRIES\r\n -This is what an entry looks like:\r\n {\r\n\ + \ pos = {-0.977,0.1,-0.589},\r\n size = 800,\r\ + \n state = false\r\n },\r\n -Deleting the whole\ + \ thing would remove that specific item on the sheet\r\n -Copy and pasting\ + \ it after another entry would create another\r\n -Each entry type has unique\ + \ data points (pos, size, state, etc)\r\n -Do not try to add in your\ + \ own data points or remove them individually\r\n -There is a summary\ + \ of what each point does at the top of its category\r\n\r\nStep 3) Save and\ + \ check script changes\r\n -Hit Save & Apply in the script window to save\ + \ your code\r\n -You can edit your code as needed and Save+Apply as often\ + \ as needed\r\n -When you are finished, make disableSave = false below then\ + \ Save+apply\r\n -This enables saving, so your sheet will remember whats\ + \ on it.\r\n\r\nBonus) Finding/Editing Positions for elements\r\n I have\ + \ included a tool to get positions for buttons in {x,y,z} form\r\n Place\ + \ it where you want the center of your element to be\r\n Then copy the table\ + \ from the notes (lower right of screen)\r\n You can highlight it and\ + \ CTRL+C\r\n Paste it into the data table where needed (pos=)\r\n If you\ + \ want to manually tweek the values:\r\n {0,0,0} is the center of the\ + \ character sheet\r\n {1,0,0} is right, {-1,0,0} is left\r\n {0,0,-1}\ + \ is up, {0,0,1} is down\r\n 0.1 for Y is the height off of the page.\r\ + \n If it was 0, it would be down inside the model of the sheet\r\n\ + \r\nBegin editing below: ]]\r\n\r\n--Set this to true while editing and false\ + \ when you have finished\r\ndisableSave = false\r\n--Remember to set this to\ + \ false once you are done making changes\r\n--Then, after you save & apply it,\ + \ save your game too\r\n\r\n--Color information for button text (r,g,b, values\ + \ of 0-1)\r\nbuttonFontColor = {0,0,0}\r\n--Color information for button background\r\ + \nbuttonColor = {1,1,1}\r\n--Change scale of button (Avoid changing if possible)\r\ + \nbuttonScale = {0.1,0.1,0.1}\r\n\r\n--This is the button placement information\r\ + \ndefaultButtonData = {\r\n --Add checkboxes\r\n checkbox = {\r\n \ + \ --[[\r\n pos = the position (pasted from the helper tool)\r\n\ + \ size = height/width/font_size for checkbox\r\n state = default\ + \ starting value for checkbox (true=checked, false=not)\r\n ]]\r\n \ + \ --1 checkbox\r\n {\r\n pos = {-0.847,0.1,-0.649},\r\ + \n size = 250,\r\n state = false\r\n },\r\n \ + \ --2 checkbox\r\n {\r\n pos = {-0.514,0.1,-0.733},\r\ + \n size = 250,\r\n state = false\r\n },\r\n \ + \ --3 checkbox\r\n {\r\n pos = {-0.512,0.1,-0.612},\r\ + \n size = 250,\r\n state = false\r\n },\r\n \ + \ --4 checkbox\r\n {\r\n pos = {0.175,0.1,-0.708},\r\ + \n size = 250,\r\n state = false\r\n },\r\n \ + \ --5 checkbox\r\n {\r\n pos = {0.174,0.1,-0.574},\r\ + \n size = 250,\r\n state = false\r\n },\r\n \ + \ --6 checkbox\r\n {\r\n pos = {-0.035,0.1,-0.408},\r\ + \n size = 250,\r\n state = false\r\n },\r\n \ + \ --7 checkbox\r\n {\r\n pos = {-0.818,0.1,-0.373},\r\ + \n size = 250,\r\n state = false\r\n },\r\n \ + \ --8 checkbox\r\n {\r\n pos = {-0.361,0.1,-0.235},\r\ + \n size = 250,\r\n state = false\r\n },\r\n \ + \ --9 checkbox\r\n {\r\n pos = {0.323,0.1,-0.091},\r\ + \n size = 250,\r\n state = false\r\n },\r\n \ + \ --10 checkbox\r\n {\r\n pos = {-0.099,0.1,0.027},\r\ + \n size = 250,\r\n state = false\r\n },\r\n \ + \ --11 checkbox\r\n {\r\n pos = {-0.778,0.1,0.126},\r\ + \n size = 250,\r\n state = false\r\n },\r\n \ + \ --12 checkbox\r\n {\r\n pos = {-0.256,0.1,0.296},\r\ + \n size = 250,\r\n state = false\r\n },\r\n \ + \ --13 checkbox\r\n {\r\n pos = {0.179,0.1,0.461},\r\ + \n size = 250,\r\n state = false\r\n },\r\n \ + \ --14 checkbox\r\n {\r\n pos = {0.289,0.1,0.726},\r\ + \n size = 250,\r\n state = false\r\n },\r\n \ + \ --End of checkboxes\r\n },\r\n --Add counters that have a + and\ + \ - button\r\n counter = {\r\n --[[\r\n pos = the position\ + \ (pasted from the helper tool)\r\n size = height/width/font_size for\ + \ counter\r\n value = default starting value for counter\r\n \ + \ hideBG = if background of counter is hidden (true=hidden, false=not)\r\n \ + \ ]]\r\n --Slot one counter 1\r\n\r\n --End of counters\r\ + \n },\r\n --Add editable text boxes\r\n textbox = {\r\n --[[\r\ + \n pos = the position (pasted from the helper tool)\r\n \ + \ rows = how many lines of text you want for this box\r\n width\ + \ = how wide the text box is\r\n font_size = size of text. This and\ + \ \"rows\" effect overall height\r\n label = what is shown when there\ + \ is no text. \"\" = nothing\r\n value = text entered into box. \"\ + \" = nothing\r\n alignment = Number to indicate how you want text aligned\r\ + \n (1=Automatic, 2=Left, 3=Center, 4=Right, 5=Justified)\r\ + \n ]]\r\n\r\n --Campaign Notes\r\n {\r\n pos\ + \ = {-0.4,0.1,0.652},\r\n rows =6,\r\n width\ + \ = 3500,\r\n font_size = 200,\r\n label = \"\ + Click to type\",\r\n value = \"\",\r\n alignment =\ + \ 2\r\n },\r\n --End of textboxes\r\n }\r\n}\r\n\r\n\r\n\r\n\ + --Lua beyond this point, I recommend doing something more fun with your life\r\ + \n\r\n\r\n\r\n--Save function\r\nfunction updateSave()\r\n saved_data = JSON.encode(ref_buttonData)\r\ + \n if disableSave==true then saved_data=\"\" end\r\n self.script_state\ + \ = saved_data\r\nend\r\n\r\n--Startup procedure\r\nfunction onload(saved_data)\r\ + \n if disableSave==true then saved_data=\"\" end\r\n if saved_data ~=\ + \ \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n \ + \ ref_buttonData = loaded_data\r\n else\r\n ref_buttonData = defaultButtonData\r\ + \n end\r\n\r\n spawnedButtonCount = 0\r\n createCheckbox()\r\n createCounter()\r\ + \n createTextbox()\r\nend\r\n\r\n\r\n\r\n--Click functions for buttons\r\n\ + \r\n\r\n\r\n--Checks or unchecks the given box\r\nfunction click_checkbox(tableIndex,\ + \ buttonIndex)\r\n if ref_buttonData.checkbox[tableIndex].state == true then\r\ + \n ref_buttonData.checkbox[tableIndex].state = false\r\n self.editButton({index=buttonIndex,\ + \ label=\"\"})\r\n else\r\n ref_buttonData.checkbox[tableIndex].state\ + \ = true\r\n self.editButton({index=buttonIndex, label=string.char(10008)})\r\ + \n end\r\n updateSave()\r\nend\r\n\r\n--Applies value to given counter\ + \ display\r\nfunction click_counter(tableIndex, buttonIndex, amount)\r\n \ + \ ref_buttonData.counter[tableIndex].value = ref_buttonData.counter[tableIndex].value\ + \ + amount\r\n self.editButton({index=buttonIndex, label=ref_buttonData.counter[tableIndex].value})\r\ + \n updateSave()\r\nend\r\n\r\n--Updates saved value for given text box\r\n\ + function click_textbox(i, value, selected)\r\n if selected == false then\r\ + \n ref_buttonData.textbox[i].value = value\r\n updateSave()\r\n\ + \ end\r\nend\r\n\r\n--Dud function for if you have a background on a counter\r\ + \nfunction click_none() end\r\n\r\n\r\n\r\n--Button creation\r\n\r\n\r\n\r\n\ + --Makes checkboxes\r\nfunction createCheckbox()\r\n for i, data in ipairs(ref_buttonData.checkbox)\ + \ do\r\n --Sets up reference function\r\n local buttonNumber =\ + \ spawnedButtonCount\r\n local funcName = \"checkbox\"..i\r\n \ + \ local func = function() click_checkbox(i, buttonNumber) end\r\n self.setVar(funcName,\ + \ func)\r\n --Sets up label\r\n local label = \"\"\r\n \ + \ if data.state==true then label=string.char(10008) end\r\n --Creates\ + \ button and counts it\r\n self.createButton({\r\n label=label,\ + \ click_function=funcName, function_owner=self,\r\n position=data.pos,\ + \ height=data.size, width=data.size,\r\n font_size=data.size, scale=buttonScale,\r\ + \n color=buttonColor, font_color=buttonFontColor\r\n })\r\n\ + \ spawnedButtonCount = spawnedButtonCount + 1\r\n end\r\nend\r\n\r\ + \n--Makes counters\r\nfunction createCounter()\r\n for i, data in ipairs(ref_buttonData.counter)\ + \ do\r\n --Sets up display\r\n local displayNumber = spawnedButtonCount\r\ + \n --Sets up label\r\n local label = data.value\r\n --Sets\ + \ height/width for display\r\n local size = data.size\r\n if data.hideBG\ + \ == true then size = 0 end\r\n --Creates button and counts it\r\n \ + \ self.createButton({\r\n label=label, click_function=\"click_none\"\ + , function_owner=self,\r\n position=data.pos, height=size, width=size,\r\ + \n font_size=data.size, scale=buttonScale,\r\n color=buttonColor,\ + \ font_color=buttonFontColor\r\n })\r\n spawnedButtonCount = spawnedButtonCount\ + \ + 1\r\n\r\n --Sets up add 1\r\n local funcName = \"counterAdd\"\ + ..i\r\n local func = function() click_counter(i, displayNumber, 1) end\r\ + \n self.setVar(funcName, func)\r\n --Sets up label\r\n \ + \ local label = \"+\"\r\n --Sets up position\r\n local offsetDistance\ + \ = (data.size/2 + data.size/4) * (buttonScale[1] * 0.002)\r\n local\ + \ pos = {data.pos[1] + offsetDistance, data.pos[2], data.pos[3]}\r\n \ + \ --Sets up size\r\n local size = data.size / 2\r\n --Creates\ + \ button and counts it\r\n self.createButton({\r\n label=label,\ + \ click_function=funcName, function_owner=self,\r\n position=pos,\ + \ height=size, width=size,\r\n font_size=size, scale=buttonScale,\r\ + \n color=buttonColor, font_color=buttonFontColor\r\n })\r\n\ + \ spawnedButtonCount = spawnedButtonCount + 1\r\n\r\n --Sets up\ + \ subtract 1\r\n local funcName = \"counterSub\"..i\r\n local\ + \ func = function() click_counter(i, displayNumber, -1) end\r\n self.setVar(funcName,\ + \ func)\r\n --Sets up label\r\n local label = \"-\"\r\n \ + \ --Set up position\r\n local pos = {data.pos[1] - offsetDistance, data.pos[2],\ + \ data.pos[3]}\r\n --Creates button and counts it\r\n self.createButton({\r\ + \n label=label, click_function=funcName, function_owner=self,\r\n\ + \ position=pos, height=size, width=size,\r\n font_size=size,\ + \ scale=buttonScale,\r\n color=buttonColor, font_color=buttonFontColor\r\ + \n })\r\n spawnedButtonCount = spawnedButtonCount + 1\r\n end\r\ + \nend\r\n\r\nfunction createTextbox()\r\n for i, data in ipairs(ref_buttonData.textbox)\ + \ do\r\n --Sets up reference function\r\n local funcName = \"\ + textbox\"..i\r\n local func = function(_,_,val,sel) click_textbox(i,val,sel)\ + \ end\r\n self.setVar(funcName, func)\r\n\r\n self.createInput({\r\ + \n input_function = funcName,\r\n function_owner = self,\r\ + \n label = data.label,\r\n alignment = data.alignment,\r\ + \n position = data.pos,\r\n scale = buttonScale,\r\ + \n width = data.width,\r\n height = (data.font_size*data.rows)+24,\r\ + \n font_size = data.font_size,\r\n color \ + \ = buttonColor,\r\n font_color = buttonFontColor,\r\n \ + \ value = data.value,\r\n })\r\n end\r\nend\r\n" + LuaScriptState: '{"checkbox":[{"pos":[-0.847,0.1,-0.649],"size":250,"state":false},{"pos":[-0.514,0.1,-0.733],"size":250,"state":false},{"pos":[-0.512,0.1,-0.612],"size":250,"state":false},{"pos":[0.175,0.1,-0.708],"size":250,"state":false},{"pos":[0.174,0.1,-0.574],"size":250,"state":false},{"pos":[-0.035,0.1,-0.408],"size":250,"state":false},{"pos":[-0.818,0.1,-0.373],"size":250,"state":false},{"pos":[-0.361,0.1,-0.235],"size":250,"state":false},{"pos":[0.323,0.1,-0.091],"size":250,"state":false},{"pos":[-0.099,0.1,0.027],"size":250,"state":false},{"pos":[-0.778,0.1,0.126],"size":250,"state":false},{"pos":[-0.256,0.1,0.296],"size":250,"state":false},{"pos":[0.179,0.1,0.461],"size":250,"state":false},{"pos":[0.289,0.1,0.726],"size":250,"state":false}],"counter":[],"textbox":[{"alignment":2,"font_size":200,"label":"Click + to type","pos":[-0.4,0.1,0.652],"rows":6,"value":"","width":3500}]}' + Name: Custom_Tile + Nickname: Dunwich Legacy Campaign Log + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -1.29986572 + posY: 1.47544122 + posZ: -26.76136 + rotX: 359.920135 + rotY: 269.991638 + rotZ: 0.0168838967 + scaleX: 6.5 + scaleY: 1.0 + scaleZ: 6.5 + XmlUI: '' +Sticky: true +Tooltip: true +Transform: + posX: 1.12509859 + posY: 1.47257757 + posZ: -24.871809 + rotX: 359.920135 + rotY: 269.9925 + rotZ: 0.0168820545 + scaleX: 6.5 + scaleY: 1.0 + scaleZ: 6.5 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 03b888.ttslua b/unpacked/Custom_Model_Bag The Forgotten Age 03b888.ttslua new file mode 100644 index 000000000..5dff2f1d7 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Forgotten Age 03b888.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,3,7}, rotation={0,0,0}, height=700, width=2000, + font_size=700, 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 +12 + 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=800, width=800, + 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,3,7}, rotation={0,0,0}, height=700, width=2000, + font_size=700, color={0,0,0}, font_color={1,1,1} + }) + self.createButton({ + label="Submit", click_function="buttonClick_submit", function_owner=self, + position={0,3,-7}, rotation={0,0,0}, height=700, width=2000, + font_size=700, color={0,0,0}, font_color={1,1,1} + }) +-- self.createButton({ +-- label="Reset", click_function="buttonClick_reset", function_owner=self, +-- position={3,2.5,6}, rotation={0,0,0}, height=550, width=1100, +-- font_size=400, 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={2.4,3,7}, rotation={0,0,0}, height=850, width=2000, + font_size=700, color={0,0,0}, font_color={1,1,1} + }) + self.createButton({ + label="Recall", click_function="buttonClick_recall", function_owner=self, + position={-2.4,3,7}, rotation={0,0,0}, height=850, width=2200, + font_size=700, 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.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 \ No newline at end of file diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 03b888.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 03b888.yaml new file mode 100644 index 000000000..dd4a26f87 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Forgotten Age 03b888.yaml @@ -0,0 +1,96 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +ContainedObjects: +- !include 'Custom_Model_Bag The Forgotten Age 03b888/Custom_Model Survivor turn token + 0745af.yaml' +- !include 'Custom_Model_Bag The Forgotten Age 03b888/Card Ursula Downs 0cce7f.yaml' +- !include 'Custom_Model_Bag The Forgotten Age 03b888/Custom_Model_Bag starter deck + & cards 1842b6.yaml' +- !include 'Custom_Model_Bag The Forgotten Age 03b888/Custom_Model Turn token 1f8fcf.yaml' +- !include 'Custom_Model_Bag The Forgotten Age 03b888/Custom_Model Survivor turn token + 24660b.yaml' +- !include 'Custom_Model_Bag The Forgotten Age 03b888/Custom_Model Survivor turn token + 3c3607.yaml' +- !include 'Custom_Model_Bag The Forgotten Age 03b888/Custom_Model_Bag starter deck + & cards 4722e6.yaml' +- !include 'Custom_Model_Bag The Forgotten Age 03b888/Card Calvin Wright 480119.yaml' +- !include 'Custom_Model_Bag The Forgotten Age 03b888/Custom_Model_Bag starter deck + & cards 5c7b14.yaml' +- !include 'Custom_Model_Bag The Forgotten Age 03b888/Card Finn Edwards 663b02.yaml' +- !include 'Custom_Model_Bag The Forgotten Age 03b888/Custom_Model_Bag starter deck + & cards 698808.yaml' +- !include 'Custom_Model_Bag The Forgotten Age 03b888/Card Leo Anderson 6c2d02.yaml' +- !include 'Custom_Model_Bag The Forgotten Age 03b888/Custom_Model Survivor turn token + 7069c2.yaml' +- !include 'Custom_Model_Bag The Forgotten Age 03b888/Custom_Model Turn token 757716.yaml' +- !include 'Custom_Model_Bag The Forgotten Age 03b888/Custom_Model Survivor turn token + 7ae4a4.yaml' +- !include 'Custom_Model_Bag The Forgotten Age 03b888/Custom_Model Survivor turn token + 7d0121.yaml' +- !include 'Custom_Model_Bag The Forgotten Age 03b888/Card Finn Edwards 8d356b.yaml' +- !include 'Custom_Model_Bag The Forgotten Age 03b888/Custom_Model Survivor turn token + 90165e.yaml' +- !include 'Custom_Model_Bag The Forgotten Age 03b888/Custom_Model_Bag starter deck + & cards 9c5af7.yaml' +- !include 'Custom_Model_Bag The Forgotten Age 03b888/Custom_Model Survivor turn token + a52a3a.yaml' +- !include 'Custom_Model_Bag The Forgotten Age 03b888/Custom_Model Turn token b6b36e.yaml' +- !include 'Custom_Model_Bag The Forgotten Age 03b888/Card Calvin Wright bab94a.yaml' +- !include 'Custom_Model_Bag The Forgotten Age 03b888/Custom_Model Turn token be44cf.yaml' +- !include 'Custom_Model_Bag The Forgotten Age 03b888/Custom_Model Turn token c1bb90.yaml' +- !include 'Custom_Model_Bag The Forgotten Age 03b888/Custom_Model Survivor turn token + cf0fa6.yaml' +- !include 'Custom_Model_Bag The Forgotten Age 03b888/Card Ursula Downs d742cb.yaml' +- !include 'Custom_Model_Bag The Forgotten Age 03b888/Card Father Mateo dd4921.yaml' +- !include 'Custom_Model_Bag The Forgotten Age 03b888/Card Father Mateo e0aba2.yaml' +- !include 'Custom_Model_Bag The Forgotten Age 03b888/Custom_Model Turn token e4c465.yaml' +- !include 'Custom_Model_Bag The Forgotten Age 03b888/Card Leo Anderson ef40fe.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/762723517669830426/AAB750A408E887633F25AFDFB194C50A9A1518DF/ + MaterialIndex: 3 + MeshURL: https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/core_h_MSH.obj + NormalURL: '' + TypeIndex: 6 +Description: '' +GMNotes: '' +GUID: 03b888 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Model_Bag The Forgotten Age 03b888.ttslua' +LuaScriptState: '{"ml":{"0745af":{"lock":false,"pos":{"x":-16.64,"y":1.3615,"z":-62.4609},"rot":{"x":0.0208,"y":269.9999,"z":0.0168}},"0cce7f":{"lock":false,"pos":{"x":-22.6169,"y":1.3714,"z":-61.2414},"rot":{"x":0.0168,"y":180.0103,"z":359.9792}},"1842b6":{"lock":false,"pos":{"x":-26.3,"y":1.2757,"z":-53.4369},"rot":{"x":359.9792,"y":90,"z":359.9832}},"1f8fcf":{"lock":false,"pos":{"x":-16.6403,"y":1.3596,"z":-69.0603},"rot":{"x":0.0208,"y":270.0005,"z":0.0168}},"24660b":{"lock":false,"pos":{"x":-16.6401,"y":1.3642,"z":-53.3904},"rot":{"x":0.0208,"y":270.0003,"z":0.0168}},"3c3607":{"lock":false,"pos":{"x":-16.6401,"y":1.3619,"z":-61.231},"rot":{"x":0.0208,"y":269.9996,"z":0.0168}},"4722e6":{"lock":false,"pos":{"x":-26.3001,"y":1.2734,"z":-61.241},"rot":{"x":359.9792,"y":89.9815,"z":359.9832}},"480119":{"lock":false,"pos":{"x":-19.2998,"y":1.3657,"z":-84.8182},"rot":{"x":0.0208,"y":269.9681,"z":0.0168}},"5c7b14":{"lock":false,"pos":{"x":-26.3002,"y":1.2711,"z":-69.0606},"rot":{"x":359.9792,"y":90.01,"z":359.9832}},"663b02":{"lock":false,"pos":{"x":-19.2959,"y":1.3703,"z":-69.0607},"rot":{"x":0.0208,"y":270.0186,"z":0.0168}},"698808":{"lock":false,"pos":{"x":-26.2996,"y":1.2665,"z":-84.818},"rot":{"x":359.9792,"y":90,"z":359.9832}},"6c2d02":{"lock":false,"pos":{"x":-22.6139,"y":1.3737,"z":-53.4381},"rot":{"x":0.0168,"y":180.0103,"z":359.9792}},"7069c2":{"lock":false,"pos":{"x":-16.6401,"y":1.3569,"z":-78.1756},"rot":{"x":0.0208,"y":270.0007,"z":0.0168}},"757716":{"lock":false,"pos":{"x":-16.6401,"y":1.36,"z":-67.8206},"rot":{"x":0.0208,"y":270.0006,"z":0.0168}},"7ae4a4":{"lock":false,"pos":{"x":-16.6401,"y":1.3622,"z":-60.001},"rot":{"x":0.0208,"y":269.9997,"z":0.0168}},"7d0121":{"lock":false,"pos":{"x":-16.6403,"y":1.3576,"z":-75.7054},"rot":{"x":0.0208,"y":269.9821,"z":0.0168}},"8d356b":{"lock":false,"pos":{"x":-22.6157,"y":1.3691,"z":-69.0756},"rot":{"x":0.0168,"y":180.0007,"z":359.9792}},"90165e":{"lock":false,"pos":{"x":-16.6401,"y":1.3638,"z":-54.6207},"rot":{"x":0.0208,"y":270.0002,"z":0.0168}},"9c5af7":{"lock":false,"pos":{"x":-26.3002,"y":1.2688,"z":-76.9456},"rot":{"x":359.9792,"y":90,"z":359.9832}},"a52a3a":{"lock":false,"pos":{"x":-16.6396,"y":1.3573,"z":-76.9456},"rot":{"x":0.0208,"y":270.0006,"z":0.0168}},"b6b36e":{"lock":false,"pos":{"x":-16.6401,"y":1.3592,"z":-70.2906},"rot":{"x":0.0208,"y":269.9988,"z":0.0168}},"bab94a":{"lock":false,"pos":{"x":-22.6169,"y":1.3645,"z":-84.8185},"rot":{"x":0.0168,"y":180.0103,"z":359.9792}},"be44cf":{"lock":false,"pos":{"x":-16.6394,"y":1.3546,"z":-86.0186},"rot":{"x":0.0208,"y":270.0175,"z":0.0168}},"c1bb90":{"lock":false,"pos":{"x":-16.6402,"y":1.355,"z":-84.8182},"rot":{"x":0.0208,"y":270.0004,"z":0.0168}},"cf0fa6":{"lock":false,"pos":{"x":-16.6401,"y":1.3645,"z":-52.152},"rot":{"x":0.0208,"y":270.0002,"z":0.0168}},"d742cb":{"lock":false,"pos":{"x":-19.3001,"y":1.3726,"z":-61.2332},"rot":{"x":0.0208,"y":270.0181,"z":0.0168}},"dd4921":{"lock":false,"pos":{"x":-22.6157,"y":1.3668,"z":-76.946},"rot":{"x":0.0168,"y":180.0103,"z":359.9792}},"e0aba2":{"lock":false,"pos":{"x":-19.2936,"y":1.368,"z":-76.9415},"rot":{"x":0.0208,"y":269.9998,"z":0.0168}},"e4c465":{"lock":false,"pos":{"x":-16.6386,"y":1.3554,"z":-83.5415},"rot":{"x":0.0209,"y":269.8152,"z":0.0167}},"ef40fe":{"lock":false,"pos":{"x":-19.3,"y":1.3749,"z":-53.4358},"rot":{"x":0.0208,"y":269.9813,"z":0.0168}}}}' +MaterialIndex: -1 +MeshIndex: -1 +Name: Custom_Model_Bag +Nickname: The Forgotten Age +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -9.742978 + posY: 1.30202961 + posZ: -69.2888641 + rotX: 0.02081206 + rotY: 269.99353 + rotZ: 0.01676812 + scaleX: 0.5 + scaleY: 0.139652729 + scaleZ: 0.5 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 03b888/Card Calvin Wright 480119.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 03b888/Card Calvin Wright 480119.yaml new file mode 100644 index 000000000..06f3cb2de --- /dev/null +++ b/unpacked/Custom_Model_Bag The Forgotten Age 03b888/Card Calvin Wright 480119.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 261820 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2618': + BackIsHidden: true + BackURL: https://i.imgur.com/vB84qMp.jpg + FaceURL: https://i.imgur.com/WPYBga4.jpg + NumHeight: 3 + NumWidth: 7 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: '480119' +Grid: false +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Calvin Wright +SidewaysCard: false +Snap: false +Sticky: true +Tooltip: true +Transform: + posX: -19.2998 + posY: 1.36572659 + posZ: -84.8182 + rotX: 0.02081999 + rotY: 269.96814 + rotZ: 0.016758237 + scaleX: 0.6 + scaleY: 1.0 + scaleZ: 0.6 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 03b888/Card Calvin Wright bab94a.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 03b888/Card Calvin Wright bab94a.yaml new file mode 100644 index 000000000..d4a15c2d3 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Forgotten Age 03b888/Card Calvin Wright bab94a.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 271720 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2717': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1011562618093845464/80687C9319FA2015F3D9F7CBEB4C55FBF045B27D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1011562618093845971/A678BD374EC4DE672206B5EF7EB57DC885BC839C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: The Haunted +GMNotes: '' +GUID: bab94a +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Calvin Wright +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -22.6169 + posY: 1.36452186 + posZ: -84.8185 + rotX: 0.0167755187 + rotY: 180.0103 + rotZ: 359.9792 + scaleX: 1.1 + scaleY: 1.0 + scaleZ: 1.1 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 03b888/Card Father Mateo dd4921.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 03b888/Card Father Mateo dd4921.yaml new file mode 100644 index 000000000..5a4909a23 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Forgotten Age 03b888/Card Father Mateo dd4921.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 271619 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2716': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1011562618093845464/80687C9319FA2015F3D9F7CBEB4C55FBF045B27D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1011562618093845971/A678BD374EC4DE672206B5EF7EB57DC885BC839C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: The Priest +GMNotes: '' +GUID: dd4921 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Father Mateo +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -22.6157 + posY: 1.36682665 + posZ: -76.946 + rotX: 0.0167754982 + rotY: 180.010239 + rotZ: 359.9792 + scaleX: 1.1 + scaleY: 1.0 + scaleZ: 1.1 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 03b888/Card Father Mateo e0aba2.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 03b888/Card Father Mateo e0aba2.yaml new file mode 100644 index 000000000..f61684409 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Forgotten Age 03b888/Card Father Mateo e0aba2.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 262119 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2621': + BackIsHidden: true + BackURL: https://i.imgur.com/vB84qMp.jpg + FaceURL: https://i.imgur.com/WPYBga4.jpg + NumHeight: 3 + NumWidth: 7 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: e0aba2 +Grid: false +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Father Mateo +SidewaysCard: false +Snap: false +Sticky: true +Tooltip: true +Transform: + posX: -19.2936 + posY: 1.36803448 + posZ: -76.9415 + rotX: 0.02081042 + rotY: 269.999756 + rotZ: 0.0167699326 + scaleX: 0.6 + scaleY: 1.0 + scaleZ: 0.6 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 03b888/Card Finn Edwards 663b02.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 03b888/Card Finn Edwards 663b02.yaml new file mode 100644 index 000000000..59faa4bb6 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Forgotten Age 03b888/Card Finn Edwards 663b02.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 261918 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2619': + BackIsHidden: true + BackURL: https://i.imgur.com/vB84qMp.jpg + FaceURL: https://i.imgur.com/WPYBga4.jpg + NumHeight: 3 + NumWidth: 7 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 663b02 +Grid: false +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Finn Edwards +SidewaysCard: false +Snap: false +Sticky: true +Tooltip: true +Transform: + posX: -19.2959 + posY: 1.37034047 + posZ: -69.0607 + rotX: 0.0208050758 + rotY: 270.018646 + rotZ: 0.0167766958 + scaleX: 0.6 + scaleY: 1.0 + scaleZ: 0.6 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 03b888/Card Finn Edwards 8d356b.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 03b888/Card Finn Edwards 8d356b.yaml new file mode 100644 index 000000000..668000393 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Forgotten Age 03b888/Card Finn Edwards 8d356b.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 271518 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2715': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1011562618093845464/80687C9319FA2015F3D9F7CBEB4C55FBF045B27D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1011562618093845971/A678BD374EC4DE672206B5EF7EB57DC885BC839C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: The Bootlegger +GMNotes: '' +GUID: 8d356b +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Finn Edwards +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -22.6157 + posY: 1.36913049 + posZ: -69.0756 + rotX: 0.0167721361 + rotY: 180.000656 + rotZ: 359.9792 + scaleX: 1.1 + scaleY: 1.0 + scaleZ: 1.1 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 03b888/Card Leo Anderson 6c2d02.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 03b888/Card Leo Anderson 6c2d02.yaml new file mode 100644 index 000000000..e8c3a34bb --- /dev/null +++ b/unpacked/Custom_Model_Bag The Forgotten Age 03b888/Card Leo Anderson 6c2d02.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 271316 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2713': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1011562618093845464/80687C9319FA2015F3D9F7CBEB4C55FBF045B27D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1011562618093845971/A678BD374EC4DE672206B5EF7EB57DC885BC839C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: The Expedition Leader +GMNotes: '' +GUID: 6c2d02 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Leo Anderson +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -22.6139 + posY: 1.37370837 + posZ: -53.4381 + rotX: 0.0167755671 + rotY: 180.010239 + rotZ: 359.9792 + scaleX: 1.1 + scaleY: 1.0 + scaleZ: 1.1 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 03b888/Card Leo Anderson ef40fe.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 03b888/Card Leo Anderson ef40fe.yaml new file mode 100644 index 000000000..27ed40684 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Forgotten Age 03b888/Card Leo Anderson ef40fe.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 262016 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2620': + BackIsHidden: true + BackURL: https://i.imgur.com/vB84qMp.jpg + FaceURL: https://i.imgur.com/WPYBga4.jpg + NumHeight: 3 + NumWidth: 7 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: ef40fe +Grid: false +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Leo Anderson +SidewaysCard: false +Snap: false +Sticky: true +Tooltip: true +Transform: + posX: -19.3 + posY: 1.37491262 + posZ: -53.4358 + rotX: 0.0208158251 + rotY: 269.9813 + rotZ: 0.0167633742 + scaleX: 0.6 + scaleY: 1.0 + scaleZ: 0.6 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 03b888/Card Ursula Downs 0cce7f.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 03b888/Card Ursula Downs 0cce7f.yaml new file mode 100644 index 000000000..eb0ec234f --- /dev/null +++ b/unpacked/Custom_Model_Bag The Forgotten Age 03b888/Card Ursula Downs 0cce7f.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 271417 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2714': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1011562618093845464/80687C9319FA2015F3D9F7CBEB4C55FBF045B27D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1011562618093845971/A678BD374EC4DE672206B5EF7EB57DC885BC839C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: The Explorer +GMNotes: '' +GUID: 0cce7f +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Ursula Downs +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -22.6169 + posY: 1.37142313 + posZ: -61.2414 + rotX: 0.01677533 + rotY: 180.0103 + rotZ: 359.9792 + scaleX: 1.1 + scaleY: 1.0 + scaleZ: 1.1 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 03b888/Card Ursula Downs d742cb.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 03b888/Card Ursula Downs d742cb.yaml new file mode 100644 index 000000000..1554184ad --- /dev/null +++ b/unpacked/Custom_Model_Bag The Forgotten Age 03b888/Card Ursula Downs d742cb.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 260317 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2603': + BackIsHidden: true + BackURL: https://i.imgur.com/vB84qMp.jpg + FaceURL: https://i.imgur.com/WPYBga4.jpg + NumHeight: 3 + NumWidth: 7 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: d742cb +Grid: false +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Ursula Downs +SidewaysCard: false +Snap: false +Sticky: true +Tooltip: true +Transform: + posX: -19.3001 + posY: 1.37263012 + posZ: -61.2332 + rotX: 0.020805141 + rotY: 270.018127 + rotZ: 0.016776599 + scaleX: 0.6 + scaleY: 1.0 + scaleZ: 0.6 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 03b888/Custom_Model Survivor turn token 0745af.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 03b888/Custom_Model Survivor turn token 0745af.yaml new file mode 100644 index 000000000..603415275 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Forgotten Age 03b888/Custom_Model Survivor turn token 0745af.yaml @@ -0,0 +1,41 @@ +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: '' +GMNotes: '' +GUID: 0745af +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Model +Nickname: Survivor turn token +Snap: true +Sticky: true +Tooltip: false +Transform: + posX: -16.64 + posY: 1.36152315 + posZ: -62.4609 + rotX: 0.02081617 + rotY: 269.999939 + rotZ: 0.0167679824 + scaleX: 0.45 + scaleY: 0.6 + scaleZ: 0.45 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 03b888/Custom_Model Survivor turn token 24660b.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 03b888/Custom_Model Survivor turn token 24660b.yaml new file mode 100644 index 000000000..98c784e61 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Forgotten Age 03b888/Custom_Model Survivor turn token 24660b.yaml @@ -0,0 +1,41 @@ +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: '' +GMNotes: '' +GUID: 24660b +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Model +Nickname: Survivor turn token +Snap: true +Sticky: true +Tooltip: false +Transform: + posX: -16.6401 + posY: 1.3641783 + posZ: -53.3904 + rotX: 0.0208167676 + rotY: 270.0003 + rotZ: 0.01676833 + scaleX: 0.45 + scaleY: 0.6 + scaleZ: 0.45 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 03b888/Custom_Model Survivor turn token 3c3607.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 03b888/Custom_Model Survivor turn token 3c3607.yaml new file mode 100644 index 000000000..7450a170c --- /dev/null +++ b/unpacked/Custom_Model_Bag The Forgotten Age 03b888/Custom_Model Survivor turn token 3c3607.yaml @@ -0,0 +1,41 @@ +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: '' +GMNotes: '' +GUID: 3c3607 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Model +Nickname: Survivor turn token +Snap: true +Sticky: true +Tooltip: false +Transform: + posX: -16.6401 + posY: 1.36188328 + posZ: -61.231 + rotX: 0.02081609 + rotY: 269.999634 + rotZ: 0.01676783 + scaleX: 0.45 + scaleY: 0.6 + scaleZ: 0.45 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 03b888/Custom_Model Survivor turn token 7069c2.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 03b888/Custom_Model Survivor turn token 7069c2.yaml new file mode 100644 index 000000000..7426bc9c2 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Forgotten Age 03b888/Custom_Model Survivor turn token 7069c2.yaml @@ -0,0 +1,41 @@ +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: '' +GMNotes: '' +GUID: 7069c2 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Model +Nickname: Survivor turn token +Snap: true +Sticky: true +Tooltip: false +Transform: + posX: -16.6401024 + posY: 1.35692334 + posZ: -78.1756 + rotX: 0.0208164826 + rotY: 270.000671 + rotZ: 0.01676825 + scaleX: 0.45 + scaleY: 0.6 + scaleZ: 0.45 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 03b888/Custom_Model Survivor turn token 7ae4a4.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 03b888/Custom_Model Survivor turn token 7ae4a4.yaml new file mode 100644 index 000000000..482053939 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Forgotten Age 03b888/Custom_Model Survivor turn token 7ae4a4.yaml @@ -0,0 +1,41 @@ +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: '' +GMNotes: '' +GUID: 7ae4a4 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Model +Nickname: Survivor turn token +Snap: true +Sticky: true +Tooltip: false +Transform: + posX: -16.6401 + posY: 1.36224329 + posZ: -60.001 + rotX: 0.0208161566 + rotY: 269.999725 + rotZ: 0.0167678669 + scaleX: 0.45 + scaleY: 0.6 + scaleZ: 0.45 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 03b888/Custom_Model Survivor turn token 7d0121.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 03b888/Custom_Model Survivor turn token 7d0121.yaml new file mode 100644 index 000000000..cea482d25 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Forgotten Age 03b888/Custom_Model Survivor turn token 7d0121.yaml @@ -0,0 +1,41 @@ +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: '' +GMNotes: '' +GUID: 7d0121 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Model +Nickname: Survivor turn token +Snap: true +Sticky: true +Tooltip: false +Transform: + posX: -16.6403 + posY: 1.35764635 + posZ: -75.7054 + rotX: 0.0208222475 + rotY: 269.982056 + rotZ: 0.01676172 + scaleX: 0.45 + scaleY: 0.6 + scaleZ: 0.45 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 03b888/Custom_Model Survivor turn token 90165e.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 03b888/Custom_Model Survivor turn token 90165e.yaml new file mode 100644 index 000000000..deb3dc2e0 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Forgotten Age 03b888/Custom_Model Survivor turn token 90165e.yaml @@ -0,0 +1,41 @@ +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: '' +GMNotes: '' +GUID: 90165e +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Model +Nickname: Survivor turn token +Snap: true +Sticky: true +Tooltip: false +Transform: + posX: -16.6401024 + posY: 1.36381817 + posZ: -54.6207 + rotX: 0.0208164547 + rotY: 270.000244 + rotZ: 0.0167682022 + scaleX: 0.45 + scaleY: 0.6 + scaleZ: 0.45 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 03b888/Custom_Model Survivor turn token a52a3a.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 03b888/Custom_Model Survivor turn token a52a3a.yaml new file mode 100644 index 000000000..b9c9335dc --- /dev/null +++ b/unpacked/Custom_Model_Bag The Forgotten Age 03b888/Custom_Model Survivor turn token a52a3a.yaml @@ -0,0 +1,41 @@ +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: '' +GMNotes: '' +GUID: a52a3a +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Model +Nickname: Survivor turn token +Snap: true +Sticky: true +Tooltip: false +Transform: + posX: -16.6396 + posY: 1.35728347 + posZ: -76.9456 + rotX: 0.02081678 + rotY: 270.00058 + rotZ: 0.0167683456 + scaleX: 0.45 + scaleY: 0.6 + scaleZ: 0.45 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 03b888/Custom_Model Survivor turn token cf0fa6.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 03b888/Custom_Model Survivor turn token cf0fa6.yaml new file mode 100644 index 000000000..f5a977a80 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Forgotten Age 03b888/Custom_Model Survivor turn token cf0fa6.yaml @@ -0,0 +1,41 @@ +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: '' +GMNotes: '' +GUID: cf0fa6 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Model +Nickname: Survivor turn token +Snap: true +Sticky: true +Tooltip: false +Transform: + posX: -16.6401024 + posY: 1.36454093 + posZ: -52.152 + rotX: 0.0208166558 + rotY: 270.000244 + rotZ: 0.0167680774 + scaleX: 0.45 + scaleY: 0.6 + scaleZ: 0.45 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 03b888/Custom_Model Turn token 1f8fcf.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 03b888/Custom_Model Turn token 1f8fcf.yaml new file mode 100644 index 000000000..7a25ba6b4 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Forgotten Age 03b888/Custom_Model Turn token 1f8fcf.yaml @@ -0,0 +1,41 @@ +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: '' +GMNotes: '' +GUID: 1f8fcf +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Model +Nickname: Turn token +Snap: true +Sticky: true +Tooltip: false +Transform: + posX: -16.6403 + posY: 1.35959148 + posZ: -69.0603 + rotX: 0.0208165385 + rotY: 270.0005 + rotZ: 0.0167682637 + scaleX: 0.45 + scaleY: 0.6 + scaleZ: 0.45 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 03b888/Custom_Model Turn token 757716.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 03b888/Custom_Model Turn token 757716.yaml new file mode 100644 index 000000000..1d026eb4d --- /dev/null +++ b/unpacked/Custom_Model_Bag The Forgotten Age 03b888/Custom_Model Turn token 757716.yaml @@ -0,0 +1,41 @@ +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: '' +GMNotes: '' +GUID: '757716' +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Model +Nickname: Turn token +Snap: true +Sticky: true +Tooltip: false +Transform: + posX: -16.6401 + posY: 1.35995448 + posZ: -67.8206 + rotX: 0.020816274 + rotY: 270.00058 + rotZ: 0.0167678483 + scaleX: 0.45 + scaleY: 0.6 + scaleZ: 0.45 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 03b888/Custom_Model Turn token b6b36e.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 03b888/Custom_Model Turn token b6b36e.yaml new file mode 100644 index 000000000..5218187af --- /dev/null +++ b/unpacked/Custom_Model_Bag The Forgotten Age 03b888/Custom_Model Turn token b6b36e.yaml @@ -0,0 +1,41 @@ +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: '' +GMNotes: '' +GUID: b6b36e +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Model +Nickname: Turn token +Snap: true +Sticky: true +Tooltip: false +Transform: + posX: -16.6401 + posY: 1.35923123 + posZ: -70.2906 + rotX: 0.0208173376 + rotY: 269.99884 + rotZ: 0.01676773 + scaleX: 0.45 + scaleY: 0.6 + scaleZ: 0.45 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 03b888/Custom_Model Turn token be44cf.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 03b888/Custom_Model Turn token be44cf.yaml new file mode 100644 index 000000000..cb969d34f --- /dev/null +++ b/unpacked/Custom_Model_Bag The Forgotten Age 03b888/Custom_Model Turn token be44cf.yaml @@ -0,0 +1,41 @@ +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: '' +GMNotes: '' +GUID: be44cf +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Model +Nickname: Turn token +Snap: true +Sticky: true +Tooltip: false +Transform: + posX: -16.6394 + posY: 1.35462785 + posZ: -86.0186 + rotX: 0.0208109338 + rotY: 270.017456 + rotZ: 0.0167744141 + scaleX: 0.45 + scaleY: 0.6 + scaleZ: 0.45 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 03b888/Custom_Model Turn token c1bb90.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 03b888/Custom_Model Turn token c1bb90.yaml new file mode 100644 index 000000000..da4ec77d4 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Forgotten Age 03b888/Custom_Model Turn token c1bb90.yaml @@ -0,0 +1,41 @@ +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: '' +GMNotes: '' +GUID: c1bb90 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Model +Nickname: Turn token +Snap: true +Sticky: true +Tooltip: false +Transform: + posX: -16.6402016 + posY: 1.35497892 + posZ: -84.8182 + rotX: 0.0208163951 + rotY: 270.0004 + rotZ: 0.0167681687 + scaleX: 0.45 + scaleY: 0.6 + scaleZ: 0.45 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 03b888/Custom_Model Turn token e4c465.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 03b888/Custom_Model Turn token e4c465.yaml new file mode 100644 index 000000000..ce9732142 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Forgotten Age 03b888/Custom_Model Turn token e4c465.yaml @@ -0,0 +1,41 @@ +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: '' +GMNotes: '' +GUID: e4c465 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Model +Nickname: Turn token +Snap: true +Sticky: true +Tooltip: false +Transform: + posX: -16.6386 + posY: 1.35535324 + posZ: -83.5415 + rotX: 0.02087051 + rotY: 269.815247 + rotZ: 0.0167007558 + scaleX: 0.45 + scaleY: 0.6 + scaleZ: 0.45 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 03b888/Custom_Model_Bag starter deck & cards 1842b6.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 03b888/Custom_Model_Bag starter deck & cards 1842b6.yaml new file mode 100644 index 000000000..85d66618a --- /dev/null +++ b/unpacked/Custom_Model_Bag The Forgotten Age 03b888/Custom_Model_Bag starter deck & cards 1842b6.yaml @@ -0,0 +1,58 @@ +Autoraise: true +ColorDiffuse: + b: 0.02148666 + g: 0.00100758043 + r: 0.02148666 +ContainedObjects: +- !include 'Custom_Model_Bag starter deck & cards 1842b6/Card Bought in Blood 275dc3.yaml' +- !include 'Custom_Model_Bag starter deck & cards 1842b6/Card Mitch Brown f91fd9.yaml' +- !include 'Custom_Model_Bag starter deck & cards 1842b6/Deck 5e829c.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: '' +GMNotes: '' +GUID: 1842b6 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +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.27569294 + posZ: -53.4369 + rotX: 359.979156 + rotY: 90.00003 + rotZ: 359.983215 + scaleX: 2.0 + scaleY: 2.0 + scaleZ: 2.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 03b888/Custom_Model_Bag starter deck & cards 1842b6/Card Bought in Blood 275dc3.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 03b888/Custom_Model_Bag starter deck & cards 1842b6/Card Bought in Blood 275dc3.yaml new file mode 100644 index 000000000..283e744dd --- /dev/null +++ b/unpacked/Custom_Model_Bag The Forgotten Age 03b888/Custom_Model_Bag starter deck & cards 1842b6/Card Bought in Blood 275dc3.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 232441 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2324': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 275dc3 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Bought in Blood +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -12.7682714 + posY: 2.52807784 + posZ: -57.57666 + rotX: 1.10229635 + rotY: 270.017639 + rotZ: 359.993073 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 03b888/Custom_Model_Bag starter deck & cards 1842b6/Card Mitch Brown f91fd9.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 03b888/Custom_Model_Bag starter deck & cards 1842b6/Card Mitch Brown f91fd9.yaml new file mode 100644 index 000000000..596121b09 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Forgotten Age 03b888/Custom_Model_Bag starter deck & cards 1842b6/Card Mitch Brown f91fd9.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 232542 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2325': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: f91fd9 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '*Mitch Brown' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -12.1224146 + posY: 2.53191 + posZ: -58.77592 + rotX: 9.615834e-05 + rotY: 270.020142 + rotZ: 359.992 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 03b888/Custom_Model_Bag starter deck & cards 1842b6/Deck 5e829c.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 03b888/Custom_Model_Bag starter deck & cards 1842b6/Deck 5e829c.yaml new file mode 100644 index 000000000..02120672b --- /dev/null +++ b/unpacked/Custom_Model_Bag The Forgotten Age 03b888/Custom_Model_Bag starter deck & cards 1842b6/Deck 5e829c.yaml @@ -0,0 +1,1461 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 209617 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 70f1a6 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Backpack + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 64.5825 + posY: 0.5311376 + posZ: 49.4750481 + rotX: 0.0224776976 + rotY: 269.977722 + rotZ: -0.002901048 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 2abef3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Overpower + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 64.3114 + posY: 0.6711602 + posZ: 49.28422 + rotX: 0.9069308 + rotY: 270.025757 + rotZ: 1.406728 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 967c37 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Emergency Cache + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 64.52832 + posY: 0.6954166 + posZ: 49.4195442 + rotX: -5.89512365e-06 + rotY: 269.999817 + rotZ: 359.991943 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 209615 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: d43eb3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Flashlight + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 64.55497 + posY: 0.6803027 + posZ: 49.60706 + rotX: 359.99054 + rotY: 269.9746 + rotZ: 0.100794479 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 209615 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: d64ce3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Flashlight + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 64.55497 + posY: 0.6787339 + posZ: 49.60706 + rotX: 359.990753 + rotY: 269.97464 + rotZ: 0.09787778 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: ed5ab4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Perception + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 64.68139 + posY: 0.6815769 + posZ: 49.17907 + rotX: 0.0216797367 + rotY: 270.00116 + rotZ: 359.923767 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 210018 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2100': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 480c3e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Decorated Skull + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 35.9255753 + posY: 0.5306365 + posZ: 55.77548 + rotX: -4.727438e-06 + rotY: 269.999969 + rotZ: 359.991943 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 210018 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2100': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: b47d27 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Decorated Skull + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 35.9255753 + posY: 0.6772521 + posZ: 55.77548 + rotX: -5.57120666e-06 + rotY: 270.0 + rotZ: 359.991943 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 210031 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2100': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 47789e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Leo de Luca + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 35.9244728 + posY: 0.694470048 + posZ: 56.1462 + rotX: -5.70961129e-06 + rotY: 270.0 + rotZ: 359.991943 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 209912 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2099': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 4c642d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Elusive + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 35.6917152 + posY: 0.6762246 + posZ: 55.9798965 + rotX: 0.92968446 + rotY: 269.964325 + rotZ: 358.584747 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 209802 + 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/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 7aadd0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Opportunist + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 35.37182 + posY: 0.6791395 + posZ: 55.6645622 + rotX: -0.00171543809 + rotY: 269.998047 + rotZ: 359.969482 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 210021 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2100': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 2ab534 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Switchblade + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 35.7225533 + posY: 0.6814759 + posZ: 55.7704735 + rotX: 0.0007809957 + rotY: 269.9999 + rotZ: 359.9919 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 210023 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2100': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: a493d9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Hard Knocks + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 35.36948 + posY: 0.686396062 + posZ: 56.4834175 + rotX: -4.781633e-06 + rotY: 270.0 + rotZ: 359.991943 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 210028 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2100': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 63e2b2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: .41 Derringer + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 35.8108673 + posY: 0.692823946 + posZ: 55.7628632 + rotX: -5.644578e-06 + rotY: 269.999969 + rotZ: 359.991943 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 226332 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: e79e1f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Venturer + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 21.9517822 + posY: 0.53105396 + posZ: 52.0989 + rotX: 0.00473168353 + rotY: 269.963745 + rotZ: 359.99353 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 1f1b9b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: First Aid + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 21.83944 + posY: 0.669930339 + posZ: 52.2670822 + rotX: -0.00043426812 + rotY: 269.974335 + rotZ: 359.973541 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: caaf18 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Vicious Blow + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 21.7230015 + posY: 0.6928515 + posZ: 52.3832664 + rotX: 0.000108500128 + rotY: 269.9813 + rotZ: 359.987152 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 079506 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dynamite Blast + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 22.1767235 + posY: 0.6770311 + posZ: 52.27376 + rotX: 359.1686 + rotY: 270.039825 + rotZ: 358.7178 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 9300ae + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Trusted + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 21.7793312 + posY: 0.677175343 + posZ: 52.06741 + rotX: 0.3304754 + rotY: 270.0315 + rotZ: 0.512274563 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 82cb76 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Trusted + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 21.7796478 + posY: 0.6804377 + posZ: 52.0680428 + rotX: 359.9925 + rotY: 270.0253 + rotZ: 359.89566 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 820bb6 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Survival Knife + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 22.49623 + posY: 0.6869523 + posZ: 52.532753 + rotX: -8.989637e-06 + rotY: 269.970581 + rotZ: 359.991943 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: ff837e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dodge + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 21.8226261 + posY: 0.693339169 + posZ: 52.1049423 + rotX: -1.48576623e-06 + rotY: 270.02536 + rotZ: 359.991943 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 3499f4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Guard Dog + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 21.3315315 + posY: 0.6507039 + posZ: 52.30338 + rotX: -8.704073e-06 + rotY: 269.970581 + rotZ: 359.991943 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 4ff763 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Physical Training + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 22.1406384 + posY: 0.6603994 + posZ: 52.2218628 + rotX: -9.273949e-06 + rotY: 269.970581 + rotZ: 359.991943 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: cdeda1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: .45 Automatic + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 21.9286175 + posY: 0.6707627 + posZ: 52.0425529 + rotX: 359.987518 + rotY: 269.970642 + rotZ: 359.88324 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 226332 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 9d27b8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Venturer + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 21.5772343 + posY: 0.67970264 + posZ: 51.9017448 + rotX: -0.0011908809 + rotY: 269.9705 + rotZ: 359.960052 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 674d68 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Beat Cop + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 21.9290924 + posY: 0.689471245 + posZ: 51.87653 + rotX: -9.380671e-06 + rotY: 269.971039 + rotZ: 359.991943 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 1cd7d0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Machete + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 21.8929882 + posY: 0.699092 + posZ: 52.1556 + rotX: -9.775875e-06 + rotY: 269.970642 + rotZ: 359.991943 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 3cd794 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Evidence! + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 22.28061 + posY: 0.703133464 + posZ: 53.0457573 + rotX: 359.934723 + rotY: 270.024536 + rotZ: 359.7913 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 7671d6 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Survival Knife + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 21.7182617 + posY: 0.7108194 + posZ: 51.69859 + rotX: 0.0012627925 + rotY: 269.970764 + rotZ: 0.0060835476 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232441 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2324': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 2b90a0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Bought in Blood + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -21.4203815 + posY: 0.806988955 + posZ: -57.0971451 + rotX: 1.00168327e-05 + rotY: 270.016479 + rotZ: 359.9905 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232542 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2325': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 766a47 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '*Mitch Brown' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -20.709919 + posY: 0.814798832 + posZ: -57.61199 + rotX: 0.000114340219 + rotY: 270.020081 + rotZ: 359.9922 + 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 + UniqueBack: false + '2098': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '2099': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '2100': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + 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 + UniqueBack: false + '2324': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '2325': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 209617 +- 209602 +- 209609 +- 209615 +- 209615 +- 209606 +- 210018 +- 210018 +- 210031 +- 209912 +- 209802 +- 210021 +- 210023 +- 210028 +- 226332 +- 226324 +- 226302 +- 226319 +- 226315 +- 226315 +- 226322 +- 226313 +- 226326 +- 226323 +- 226330 +- 226332 +- 226331 +- 226327 +- 226309 +- 226322 +- 232441 +- 232542 +Description: '' +GMNotes: '' +GUID: 5e829c +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -11.2304173 + posY: 2.6538384 + posZ: -58.1798019 + rotX: 0.00114920689 + rotY: 269.999847 + rotZ: 179.991714 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 03b888/Custom_Model_Bag starter deck & cards 4722e6.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 03b888/Custom_Model_Bag starter deck & cards 4722e6.yaml new file mode 100644 index 000000000..d6a5c2165 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Forgotten Age 03b888/Custom_Model_Bag starter deck & cards 4722e6.yaml @@ -0,0 +1,59 @@ +Autoraise: true +ColorDiffuse: + b: 0.02148666 + g: 0.00100758043 + r: 0.02148666 +ContainedObjects: +- !include 'Custom_Model_Bag starter deck & cards 4722e6/Card Jake Williams 7c958e.yaml' +- !include 'Custom_Model_Bag starter deck & cards 4722e6/Card Call of the Unknown + 86feae.yaml' +- !include 'Custom_Model_Bag starter deck & cards 4722e6/Deck 6858ef.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: '' +GMNotes: '' +GUID: 4722e6 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +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.27340865 + posZ: -61.241 + rotX: 359.979156 + rotY: 89.98148 + rotZ: 359.983246 + scaleX: 2.0 + scaleY: 2.0 + scaleZ: 2.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 03b888/Custom_Model_Bag starter deck & cards 4722e6/Card Call of the Unknown 86feae.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 03b888/Custom_Model_Bag starter deck & cards 4722e6/Card Call of the Unknown 86feae.yaml new file mode 100644 index 000000000..4fee66988 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Forgotten Age 03b888/Custom_Model_Bag starter deck & cards 4722e6/Card Call of the Unknown 86feae.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 232744 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2327': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 86feae +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Call of the Unknown +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -11.0108938 + posY: 2.53753424 + posZ: -65.51913 + rotX: 1.08097413e-06 + rotY: 270.020447 + rotZ: 359.991882 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 03b888/Custom_Model_Bag starter deck & cards 4722e6/Card Jake Williams 7c958e.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 03b888/Custom_Model_Bag starter deck & cards 4722e6/Card Jake Williams 7c958e.yaml new file mode 100644 index 000000000..e07cbaaa8 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Forgotten Age 03b888/Custom_Model_Bag starter deck & cards 4722e6/Card Jake Williams 7c958e.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 232643 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2326': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 7c958e +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '*Jake Williams' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -11.3075762 + posY: 2.53744316 + posZ: -64.87481 + rotX: 1.68003317e-06 + rotY: 270.0218 + rotZ: 359.9919 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 03b888/Custom_Model_Bag starter deck & cards 4722e6/Deck 6858ef.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 03b888/Custom_Model_Bag starter deck & cards 4722e6/Deck 6858ef.yaml new file mode 100644 index 000000000..b0d8de4a6 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Forgotten Age 03b888/Custom_Model_Bag starter deck & cards 4722e6/Deck 6858ef.yaml @@ -0,0 +1,1447 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 209617 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: d34367 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Backpack + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 65.8557 + posY: 0.53152585 + posZ: 49.119297 + rotX: 0.003181389 + rotY: 269.975555 + rotZ: 359.987976 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 067dfd + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Unexpected Courage + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 65.6899643 + posY: 0.676443 + posZ: 49.18991 + rotX: 359.96875 + rotY: 270.0016 + rotZ: 0.184058934 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 7c5210 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Unexpected Courage + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 65.68997 + posY: 0.6954489 + posZ: 49.19014 + rotX: -5.92764036e-06 + rotY: 270.0017 + rotZ: 359.991943 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: '936302' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Manual Dexterity + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 65.92195 + posY: 0.6799777 + posZ: 49.1647453 + rotX: 359.859955 + rotY: 270.0032 + rotZ: 359.701538 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: b51cd2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Manual Dexterity + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 65.9218445 + posY: 0.6797724 + posZ: 49.164444 + rotX: -4.739528e-06 + rotY: 270.0017 + rotZ: 359.991943 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 209615 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 454e69 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Flashlight + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 65.85418 + posY: 0.68213284 + posZ: 49.53964 + rotX: -4.01748866e-06 + rotY: 269.97467 + rotZ: 359.991028 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 209615 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 96e00f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Flashlight + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 65.85418 + posY: 0.6873731 + posZ: 49.5396233 + rotX: -8.634036e-06 + rotY: 269.9747 + rotZ: 359.991943 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 20c374 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Perception + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 65.88802 + posY: 0.6937336 + posZ: 49.2992058 + rotX: -5.1422353e-06 + rotY: 270.0017 + rotZ: 359.991943 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: c9b923 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Guts + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 65.82169 + posY: 0.65112865 + posZ: 49.280262 + rotX: -4.65948642e-06 + rotY: 270.0016 + rotZ: 359.991943 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 209612 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 5bf2dd + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Knife + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 65.3617249 + posY: 0.6608426 + posZ: 49.0693359 + rotX: -7.811529e-06 + rotY: 269.974762 + rotZ: 359.991943 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 4b7646 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Emergency Cache + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 65.9214859 + posY: 0.669309855 + posZ: 49.3756638 + rotX: 359.30777 + rotY: 270.0105 + rotZ: 358.835419 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 82b3fa + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Emergency Cache + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 65.47652 + posY: 0.6806301 + posZ: 48.4638023 + rotX: -0.00289803417 + rotY: 269.999847 + rotZ: 359.984528 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 230413 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 0c1a5f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Working a Hunch + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 4.68592548 + posY: 0.531041443 + posZ: 52.30124 + rotX: 0.00339821214 + rotY: 270.010284 + rotZ: 359.985382 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: da3a0f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Hyperawareness + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 4.477862 + posY: 0.6776813 + posZ: 52.7782631 + rotX: -0.00541705545 + rotY: 269.986267 + rotZ: 0.04328657 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 230434 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: bbfba3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dr. Milian Christopher + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 4.687311 + posY: 0.6950749 + posZ: 51.8613472 + rotX: -6.841028e-06 + rotY: 269.989136 + rotZ: 359.991943 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 230404 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: a1b81a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Barricade + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 4.14965725 + posY: 0.673468232 + posZ: 52.22313 + rotX: 1.30327773 + rotY: 270.045776 + rotZ: 1.62612987 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: cdb546 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Magnifying Glass + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 4.56081867 + posY: 0.679280162 + posZ: 52.6504669 + rotX: 359.992 + rotY: 269.986176 + rotZ: 0.0293462425 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 230431 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 5e7501 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Old Book of Lore + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 5.31211 + posY: 0.668661952 + posZ: 52.5047874 + rotX: 358.258453 + rotY: 270.031921 + rotZ: 357.7587 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 230425 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 640ad0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Medical Texts + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 4.601863 + posY: 0.6869287 + posZ: 52.71212 + rotX: -6.73097156e-06 + rotY: 269.986267 + rotZ: 359.991943 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 230433 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 75de07 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '*Dr. Elli Horowitz' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.743013 + posY: 0.6933221 + posZ: 52.2382278 + rotX: -6.31492367e-06 + rotY: 269.989136 + rotZ: 359.991943 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 230433 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: bedd5e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '*Dr. Elli Horowitz' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.743013 + posY: 0.6507147 + posZ: 52.2382278 + rotX: -6.31492367e-06 + rotY: 269.989136 + rotZ: 359.991943 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 230410 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: be4a27 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Unearth the Ancients + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 5.20547056 + posY: 0.6603888 + posZ: 52.3083878 + rotX: -2.994461e-06 + rotY: 270.0103 + rotZ: 359.991943 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 230410 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: e5dc9b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Unearth the Ancients + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 5.20547056 + posY: 0.670073032 + posZ: 52.3083878 + rotX: -2.994461e-06 + rotY: 270.0103 + rotZ: 359.991943 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 230432 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 7dab49 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Tooth of Eztli + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 4.392233 + posY: 0.6743188 + posZ: 52.5010948 + rotX: 1.02448547 + rotY: 269.9659 + rotZ: 358.472565 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 230432 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 115fc5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Tooth of Eztli + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 4.392071 + posY: 0.6834177 + posZ: 52.50135 + rotX: 1.19200659 + rotY: 269.9596 + rotZ: 358.225372 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 12e3b6 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Deduction + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 4.79889727 + posY: 0.6991157 + posZ: 52.0187378 + rotX: -0.00010472443 + rotY: 269.979584 + rotZ: 359.991974 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 230426 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 247c02 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Research Librarian + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 4.16995859 + posY: 0.703227758 + posZ: 52.4805336 + rotX: 0.0137692485 + rotY: 269.9865 + rotZ: 359.990234 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 230408 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: f55033 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Mind over Matter + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 4.843886 + posY: 0.7110102 + posZ: 52.0850677 + rotX: -0.000511072343 + rotY: 270.010254 + rotZ: 359.9915 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 1af276 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '*The Chthonian Stone' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 4.76197767 + posY: 0.719097 + posZ: 52.7089272 + rotX: 0.00590972 + rotY: 269.999176 + rotZ: 0.005026618 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: a2fda9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '*The Chthonian Stone' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 4.76201057 + posY: 0.7376559 + posZ: 52.70894 + rotX: -4.7970575e-06 + rotY: 269.999329 + rotZ: 359.991943 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232643 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2326': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 8dc23a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '*Jake Williams' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -22.312273 + posY: 0.80277586 + posZ: -63.7831078 + rotX: -0.00101204694 + rotY: 270.021637 + rotZ: 359.988953 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232744 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2327': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: cf8ec1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Call of the Unknown + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -22.2905159 + posY: 0.8106792 + posZ: -64.54995 + rotX: 0.0116802678 + rotY: 270.004517 + rotZ: 359.9937 + 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 + 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 + 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 + UniqueBack: false + '2326': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '2327': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 209617 +- 209608 +- 209608 +- 209604 +- 209604 +- 209615 +- 209615 +- 209606 +- 209600 +- 209612 +- 209609 +- 209609 +- 230413 +- 230424 +- 230434 +- 230404 +- 230421 +- 230431 +- 230425 +- 230433 +- 230433 +- 230410 +- 230410 +- 230432 +- 230432 +- 230402 +- 230426 +- 230408 +- 230327 +- 230327 +- 232643 +- 232744 +Description: '' +GMNotes: '' +GUID: 6858ef +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -11.5669937 + posY: 2.65490365 + posZ: -65.69532 + rotX: -0.00112871465 + rotY: 270.000458 + rotZ: 179.98996 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 03b888/Custom_Model_Bag starter deck & cards 5c7b14.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 03b888/Custom_Model_Bag starter deck & cards 5c7b14.yaml new file mode 100644 index 000000000..1f8022eb4 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Forgotten Age 03b888/Custom_Model_Bag starter deck & cards 5c7b14.yaml @@ -0,0 +1,59 @@ +Autoraise: true +ColorDiffuse: + b: 0.02148666 + g: 0.00100758043 + r: 0.02148666 +ContainedObjects: +- !include 'Custom_Model_Bag starter deck & cards 5c7b14/Card Smuggled Goods 0dbf2d.yaml' +- !include 'Custom_Model_Bag starter deck & cards 5c7b14/Card Caught Red-Handed ecd087.yaml' +- !include 'Custom_Model_Bag starter deck & cards 5c7b14/Card Finn''s Trusty .38 848d9c.yaml' +- !include 'Custom_Model_Bag starter deck & cards 5c7b14/Deck d11b1e.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: '' +GMNotes: '' +GUID: 5c7b14 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +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.27111959 + posZ: -69.0606 + rotX: 359.9792 + rotY: 90.01003 + rotZ: 359.983215 + scaleX: 2.0 + scaleY: 2.0 + scaleZ: 2.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 03b888/Custom_Model_Bag starter deck & cards 5c7b14/Card Caught Red-Handed ecd087.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 03b888/Custom_Model_Bag starter deck & cards 5c7b14/Card Caught Red-Handed ecd087.yaml new file mode 100644 index 000000000..216cabdb0 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Forgotten Age 03b888/Custom_Model_Bag starter deck & cards 5c7b14/Card Caught Red-Handed ecd087.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 232240 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: ecd087 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: "Caught Red-Handed\r\n" +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -10.3589468 + posY: 2.53554821 + posZ: -51.23403 + rotX: -0.00494413637 + rotY: 269.999634 + rotZ: 359.9921 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 03b888/Custom_Model_Bag starter deck & cards 5c7b14/Card Finn's Trusty .38 848d9c.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 03b888/Custom_Model_Bag starter deck & cards 5c7b14/Card Finn's Trusty .38 848d9c.yaml new file mode 100644 index 000000000..e1f542eb7 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Forgotten Age 03b888/Custom_Model_Bag starter deck & cards 5c7b14/Card Finn's Trusty .38 848d9c.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 232339 +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/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 848d9c +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Finn's Trusty .38 +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 31.0393867 + posY: 3.40573239 + posZ: -61.2666321 + rotX: 0.0210147481 + rotY: 269.992828 + rotZ: 0.016845718 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 03b888/Custom_Model_Bag starter deck & cards 5c7b14/Card Smuggled Goods 0dbf2d.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 03b888/Custom_Model_Bag starter deck & cards 5c7b14/Card Smuggled Goods 0dbf2d.yaml new file mode 100644 index 000000000..e47513015 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Forgotten Age 03b888/Custom_Model_Bag starter deck & cards 5c7b14/Card Smuggled Goods 0dbf2d.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 232138 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2321': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 0dbf2d +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: "Smuggled Goods\r\n" +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -11.0184746 + posY: 2.48707652 + posZ: -49.5348473 + rotX: -0.00161544653 + rotY: 270.026947 + rotZ: 357.434448 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 03b888/Custom_Model_Bag starter deck & cards 5c7b14/Deck d11b1e.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 03b888/Custom_Model_Bag starter deck & cards 5c7b14/Deck d11b1e.yaml new file mode 100644 index 000000000..c564f1935 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Forgotten Age 03b888/Custom_Model_Bag starter deck & cards 5c7b14/Deck d11b1e.yaml @@ -0,0 +1,1511 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 209615 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 0308c7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Flashlight + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 63.7245178 + posY: 0.531122565 + posZ: 52.327652 + rotX: -8.501468e-06 + rotY: 269.97467 + rotZ: 359.991943 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 209615 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: fe63de + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Flashlight + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 63.7245178 + posY: 0.6777382 + posZ: 52.327652 + rotX: -8.569419e-06 + rotY: 269.97464 + rotZ: 359.991943 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 24d5dd + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Emergency Cache + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 64.250824 + posY: 0.5310433 + posZ: 50.0297 + rotX: 0.0189547818 + rotY: 269.974152 + rotZ: -0.00324516417 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: c5ccaa + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Emergency Cache + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 64.40692 + posY: 0.6755796 + posZ: 50.00008 + rotX: 359.8457 + rotY: 269.972473 + rotZ: 0.4029696 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 209612 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 5fd2ba + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Knife + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 63.1844139 + posY: 0.6794873 + posZ: 53.07958 + rotX: 0.000324241846 + rotY: 269.974762 + rotZ: -0.00119782006 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 209612 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: f69584 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Knife + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 63.18442 + posY: 0.6818826 + posZ: 53.0795746 + rotX: -8.481041e-06 + rotY: 269.974731 + rotZ: 359.991943 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 210018 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2100': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: b36eab + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Decorated Skull + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 39.2265625 + posY: 0.5307252 + posZ: 55.14229 + rotX: -5.64624543e-06 + rotY: 270.0 + rotZ: 359.991943 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 210018 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2100': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: f9ae1b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Decorated Skull + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 39.2265625 + posY: 0.677340865 + posZ: 55.14229 + rotX: -5.132647e-06 + rotY: 269.999969 + rotZ: 359.991943 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 210023 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2100': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 5363cd + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Hard Knocks + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 38.9577522 + posY: 0.6946192 + posZ: 55.0829124 + rotX: -4.896692e-06 + rotY: 270.0 + rotZ: 359.991943 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 210025 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2100': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 73a3dc + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Pickpocketing + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 38.5572166 + posY: 0.68067 + posZ: 55.185215 + rotX: -0.00403814577 + rotY: 270.000061 + rotZ: 0.0163318887 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 210031 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2100': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 46be05 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Leo de Luca + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 38.7246742 + posY: 0.6793895 + posZ: 54.86897 + rotX: -0.003116914 + rotY: 269.999939 + rotZ: 359.97702 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 283902 + 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/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 33527c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Opportunist + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 39.26146 + posY: 0.6812823 + posZ: 54.8068466 + rotX: 0.012248951 + rotY: 269.997559 + rotZ: 359.94043 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 210028 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2100': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: e5930a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: .41 Derringer + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 39.3956642 + posY: 0.6865713 + posZ: 55.2339439 + rotX: -5.401953e-06 + rotY: 270.0 + rotZ: 359.991943 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 210022 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2100': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 5eabc0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Burglary + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 39.0921249 + posY: 0.692913353 + posZ: 55.1253624 + rotX: -6.16026045e-06 + rotY: 269.999969 + rotZ: 359.991943 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 209912 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2099': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 79c228 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Elusive + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 38.68958 + posY: 0.6502556 + posZ: 55.48229 + rotX: -7.32294347e-06 + rotY: 269.981262 + rotZ: 359.991943 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 209911 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2099': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: f38c64 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Eavesdrop + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 38.65652 + posY: 0.6599504 + posZ: 55.40793 + rotX: -7.29417843e-06 + rotY: 269.9813 + rotZ: 359.991943 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 209905 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2099': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 985c85 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '"You handle this one!"' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 38.9903641 + posY: 0.6691791 + posZ: 55.2604523 + rotX: 0.6601626 + rotY: 269.968048 + rotZ: 359.017456 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 209913 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2099': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 9e4f96 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Sneak Attack + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 39.2945328 + posY: 0.678476453 + posZ: 55.1122551 + rotX: 0.0179541465 + rotY: 269.980469 + rotZ: 359.889618 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 209916 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2099': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: b7ffe7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Backstab + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 38.92463 + posY: 0.68903327 + posZ: 54.982933 + rotX: -8.492297e-06 + rotY: 269.981323 + rotZ: 359.991943 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 209911 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2099': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: d914fd + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Eavesdrop + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 38.8561363 + posY: 0.698613763 + posZ: 55.54876 + rotX: -7.335867e-06 + rotY: 269.981323 + rotZ: 359.991943 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 210021 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2100': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: ca9976 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Switchblade + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 39.3285446 + posY: 0.702921867 + posZ: 55.0330124 + rotX: 0.000350643561 + rotY: 269.999969 + rotZ: 359.992828 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 209905 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2099': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 7ac757 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '"You handle this one!"' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 39.1239929 + posY: 0.710508943 + posZ: 55.7375946 + rotX: -0.000288584677 + rotY: 269.981323 + rotZ: 359.979462 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 209617 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 117e5d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Backpack + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 60.6396179 + posY: 0.531336248 + posZ: 49.33428 + rotX: 0.009671773 + rotY: 269.974426 + rotZ: -0.00473900931 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 87cea2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Overpower + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 61.0960236 + posY: 0.6776698 + posZ: 49.02532 + rotX: 0.04149464 + rotY: 270.000641 + rotZ: 359.884064 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 9cfd90 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Perception + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 60.93384 + posY: 0.695437968 + posZ: 49.27071 + rotX: -5.065946e-06 + rotY: 270.001648 + rotZ: 359.991943 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 209723 + 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/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 02b0c3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Rabbit's Foot + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 40.19086 + posY: 0.531376362 + posZ: 49.8589935 + rotX: 0.004306351 + rotY: 269.9833 + rotZ: 359.9932 + 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/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 8c38e6 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dig Deep + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 39.695507 + posY: 0.6779825 + posZ: 50.27236 + rotX: -0.0002801995 + rotY: 269.983337 + rotZ: 0.0536329672 + 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/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: e51c4d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Lucky! + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 40.2589073 + posY: 0.69535464 + posZ: 49.84672 + rotX: -4.09878066e-06 + rotY: 270.007751 + rotZ: 359.991943 + 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/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 0a43d5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Survival Instinct + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 39.83026 + posY: 0.669356346 + posZ: 49.49606 + rotX: 1.50778294 + rotY: 270.055817 + rotZ: 2.32832837 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 209722 + 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/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: e03343 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Scavenging + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 40.0999947 + posY: 0.678872466 + posZ: 50.0179138 + rotX: 359.992249 + rotY: 269.983063 + rotZ: 0.08133962 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232339 + 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/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 2de78d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: "Finn\u2019s Trusty .38" + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -20.8244362 + posY: 0.8014663 + posZ: -50.4956741 + rotX: 0.000656137767 + rotY: 270.0166 + rotZ: 359.992462 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232138 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2321': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: df76fb + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: "Smuggled Goods\r\n" + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -21.0279675 + posY: 0.686230361 + posZ: -46.0588646 + rotX: -2.15402747e-06 + rotY: 270.020325 + rotZ: 359.991943 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232240 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: f9b4fc + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: "Caught Red-Handed\r\n" + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -21.0754452 + posY: 0.686540067 + posZ: -48.2640457 + rotX: -5.097629e-06 + rotY: 269.999725 + rotZ: 359.991943 + 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 + UniqueBack: false + '2097': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '2099': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '2100': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '2321': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '2323': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '2839': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 209615 +- 209615 +- 209609 +- 209609 +- 209612 +- 209612 +- 210018 +- 210018 +- 210023 +- 210025 +- 210031 +- 283902 +- 210028 +- 210022 +- 209912 +- 209911 +- 209905 +- 209913 +- 209916 +- 209911 +- 210021 +- 209905 +- 209617 +- 209602 +- 209606 +- 209723 +- 209731 +- 209710 +- 209700 +- 209722 +- 232339 +- 232138 +- 232240 +Description: '' +GMNotes: '' +GUID: d11b1e +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 31.0653248 + posY: 3.53343439 + posZ: -60.0780869 + rotX: 0.0228752717 + rotY: 269.997223 + rotZ: 180.0264 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 03b888/Custom_Model_Bag starter deck & cards 698808.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 03b888/Custom_Model_Bag starter deck & cards 698808.yaml new file mode 100644 index 000000000..2c40a905f --- /dev/null +++ b/unpacked/Custom_Model_Bag The Forgotten Age 03b888/Custom_Model_Bag starter deck & cards 698808.yaml @@ -0,0 +1,60 @@ +Autoraise: true +ColorDiffuse: + b: 0.02148666 + g: 0.00100758043 + r: 0.02148666 +ContainedObjects: +- !include 'Custom_Model_Bag starter deck & cards 698808/Card Until the End of Time + 41a9ec.yaml' +- !include 'Custom_Model_Bag starter deck & cards 698808/Card Voice of the Messenger + f93ea8.yaml' +- !include 'Custom_Model_Bag starter deck & cards 698808/Deck 94f407.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: '' +GMNotes: '' +GUID: '698808' +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +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.26650727 + posZ: -84.818 + rotX: 359.9792 + rotY: 90.0 + rotZ: 359.983215 + scaleX: 2.0 + scaleY: 2.0 + scaleZ: 2.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 03b888/Custom_Model_Bag starter deck & cards 698808/Card Until the End of Time 41a9ec.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 03b888/Custom_Model_Bag starter deck & cards 698808/Card Until the End of Time 41a9ec.yaml new file mode 100644 index 000000000..40c910e3a --- /dev/null +++ b/unpacked/Custom_Model_Bag The Forgotten Age 03b888/Custom_Model_Bag starter deck & cards 698808/Card Until the End of Time 41a9ec.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 231900 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2319': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 41a9ec +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Until the End of Time +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -11.16342 + posY: 2.53430223 + posZ: -42.5140839 + rotX: 8.157957e-06 + rotY: 270.032867 + rotZ: 359.9919 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 03b888/Custom_Model_Bag starter deck & cards 698808/Card Voice of the Messenger f93ea8.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 03b888/Custom_Model_Bag starter deck & cards 698808/Card Voice of the Messenger f93ea8.yaml new file mode 100644 index 000000000..ca7a25c23 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Forgotten Age 03b888/Custom_Model_Bag starter deck & cards 698808/Card Voice of the Messenger f93ea8.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 232001 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2320': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: f93ea8 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Voice of the Messenger +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -10.9068165 + posY: 2.53447413 + posZ: -43.7403526 + rotX: -1.60528616e-05 + rotY: 270.031738 + rotZ: 359.9919 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 03b888/Custom_Model_Bag starter deck & cards 698808/Deck 94f407.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 03b888/Custom_Model_Bag starter deck & cards 698808/Deck 94f407.yaml new file mode 100644 index 000000000..0da167057 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Forgotten Age 03b888/Custom_Model_Bag starter deck & cards 698808/Deck 94f407.yaml @@ -0,0 +1,1447 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 368512 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3685': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 0ab3f1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Knife + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 29.3477154 + posY: 1.70220709 + posZ: -47.8309441 + rotX: 0.0210443884 + rotY: 270.002563 + rotZ: 180.017639 + 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: + '3688': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 1fe462 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Last Chance + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.3627625 + posY: 2.71723318 + posZ: -72.27231 + rotX: 0.0208230074 + rotY: 270.002655 + rotZ: 180.016815 + 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: + '3688': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: e8ea95 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Cunning Distraction + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.3627625 + posY: 2.66723323 + posZ: -72.27231 + rotX: 0.0208230056 + rotY: 270.002655 + rotZ: 180.016815 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 078efb + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Survival Instinct + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.3627625 + posY: 2.66723323 + posZ: -72.27231 + rotX: 0.0208230056 + rotY: 270.002655 + rotZ: 180.016815 + 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: + '3685': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: acb83a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Unexpected Courage + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.3627625 + posY: 2.66723323 + posZ: -72.27231 + rotX: 0.0208230056 + rotY: 270.002655 + rotZ: 180.016815 + 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: + '3688': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 1fe462 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Last Chance + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.3627625 + posY: 2.66723323 + posZ: -72.27231 + rotX: 0.0208230056 + rotY: 270.002655 + rotZ: 180.016815 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 88d3c0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '"Look what I found!"' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.3627625 + posY: 2.66723323 + posZ: -72.27231 + rotX: 0.0208230056 + rotY: 270.002655 + rotZ: 180.016815 + 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: + '3685': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: bb1cce + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Flashlight + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.3627625 + posY: 2.71723318 + posZ: -72.27231 + rotX: 0.0208230074 + rotY: 270.002655 + rotZ: 180.016815 + 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: + '3685': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 679b13 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Manual Dexterity + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.3627625 + posY: 2.66723323 + posZ: -72.27231 + rotX: 0.0208230056 + rotY: 270.002655 + rotZ: 180.016815 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 593deb + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Leather Coat + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.3627625 + posY: 2.66723323 + posZ: -72.27231 + rotX: 0.0208230056 + rotY: 270.002655 + rotZ: 180.016815 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: f474b1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Stray Cat + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.3627625 + posY: 2.66723323 + posZ: -72.27231 + rotX: 0.0208230056 + rotY: 270.002655 + rotZ: 180.016815 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: f34090 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Rabbit's Foot + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.3627625 + posY: 2.66723323 + posZ: -72.27231 + rotX: 0.0208230056 + rotY: 270.002655 + rotZ: 180.016815 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: f93ea8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Voice of the Messenger + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.3627625 + posY: 2.66723323 + posZ: -72.27231 + rotX: 0.0208230056 + rotY: 270.002655 + rotZ: 180.016815 + 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: + '3685': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 8f7289 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Guts + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.3627625 + posY: 2.66723323 + posZ: -72.27231 + rotX: 0.0208230056 + rotY: 270.002655 + rotZ: 180.016815 + 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: + '3685': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: c6ac19 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Perception + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.3627625 + posY: 2.66723323 + posZ: -72.27231 + rotX: 0.0208230056 + rotY: 270.002655 + rotZ: 180.016815 + 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: + '3685': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: acb83a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Unexpected Courage + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.3627625 + posY: 2.71723318 + posZ: -72.27231 + rotX: 0.0208230074 + rotY: 270.002655 + rotZ: 180.016815 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 1b76c9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Scavenging + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.3627625 + posY: 2.66723323 + posZ: -72.27231 + rotX: 0.0208230056 + rotY: 270.002655 + rotZ: 180.016815 + 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: + '3685': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 5ab9f4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Overpower + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.3627625 + posY: 2.66723323 + posZ: -72.27231 + rotX: 0.0208230056 + rotY: 270.002655 + rotZ: 180.016815 + 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: + '3688': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 30f90b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Improvised Weapon + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.3627625 + posY: 2.66723323 + posZ: -72.27231 + rotX: 0.0208230056 + rotY: 270.002655 + rotZ: 180.016815 + 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: + '3685': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 0ab3f1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Knife + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.3627625 + posY: 2.71723318 + posZ: -72.27231 + rotX: 0.0208230074 + rotY: 270.002655 + rotZ: 180.016815 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: fc9e1b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dig Deep + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.3627625 + posY: 2.66723323 + posZ: -72.27231 + rotX: 0.0208230056 + rotY: 270.002655 + rotZ: 180.016815 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: ce0dd5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Lucky! + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.3627625 + posY: 2.66723323 + posZ: -72.27231 + rotX: 0.0208230056 + rotY: 270.002655 + rotZ: 180.016815 + 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: + '3685': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 510c0d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Emergency Cache + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.3627625 + posY: 2.71723318 + posZ: -72.27231 + rotX: 0.0208230074 + rotY: 270.002655 + rotZ: 180.016815 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 48e103 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Baseball Bat + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.3627625 + posY: 2.66723323 + posZ: -72.27231 + rotX: 0.0208230056 + rotY: 270.002655 + rotZ: 180.016815 + 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: + '3688': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: f0e425 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dumb Luck + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.3627625 + posY: 2.66723323 + posZ: -72.27231 + rotX: 0.0208230056 + rotY: 270.002655 + rotZ: 180.016815 + 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: + '3688': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: f0e425 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dumb Luck + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.3627625 + posY: 2.71723318 + posZ: -72.27231 + rotX: 0.0208230074 + rotY: 270.002655 + rotZ: 180.016815 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 376608 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 6656ad + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ward of Protection + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.3627625 + posY: 2.66723323 + posZ: -72.27231 + rotX: 0.0208230056 + rotY: 270.002655 + rotZ: 180.016815 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 376700 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 41a9ec + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Until the End of Time + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.3627625 + posY: 2.66723323 + posZ: -72.27231 + rotX: 0.0208230056 + rotY: 270.002655 + rotZ: 180.016815 + 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: + '3685': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 510c0d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Emergency Cache + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.3627625 + posY: 2.66723323 + posZ: -72.27231 + rotX: 0.0208230056 + rotY: 270.002655 + rotZ: 180.016815 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 368517 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3685': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: f59085 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Backpack + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.3627625 + posY: 2.66723323 + posZ: -72.27231 + rotX: 0.0208230056 + rotY: 270.002655 + rotZ: 180.016815 + 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: + '3688': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 30f90b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Improvised Weapon + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.3627625 + posY: 2.71723318 + posZ: -72.27231 + rotX: 0.0208230074 + rotY: 270.002655 + rotZ: 180.016815 + 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: + '3685': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: bb1cce + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Flashlight + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.3627625 + posY: 2.66723323 + posZ: -72.27231 + rotX: 0.0208230056 + rotY: 270.002655 + rotZ: 180.016815 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '3685': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '3688': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '3765': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '3766': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956214701/377534905048B61E88314A81F482DD31D6B54038/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '3767': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 368512 +- 368804 +- 368819 +- 368800 +- 368508 +- 368804 +- 368816 +- 368515 +- 368504 +- 368820 +- 368824 +- 368823 +- 376501 +- 368500 +- 368506 +- 368508 +- 368822 +- 368502 +- 368811 +- 368512 +- 368831 +- 368810 +- 368509 +- 368830 +- 368814 +- 368814 +- 376608 +- 376700 +- 368509 +- 368517 +- 368811 +- 368515 +Description: '' +GMNotes: '' +GUID: 94f407 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -41.0023651 + posY: 3.53699255 + posZ: -77.56541 + rotX: 0.0208639912 + rotY: 270.0021 + rotZ: 180.017212 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 03b888/Custom_Model_Bag starter deck & cards 9c5af7.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 03b888/Custom_Model_Bag starter deck & cards 9c5af7.yaml new file mode 100644 index 000000000..f0950f19b --- /dev/null +++ b/unpacked/Custom_Model_Bag The Forgotten Age 03b888/Custom_Model_Bag starter deck & cards 9c5af7.yaml @@ -0,0 +1,58 @@ +Autoraise: true +ColorDiffuse: + b: 0.02148666 + g: 0.00100758043 + r: 0.02148666 +ContainedObjects: +- !include 'Custom_Model_Bag starter deck & cards 9c5af7/Card Serpents of Yig 14c396.yaml' +- !include 'Custom_Model_Bag starter deck & cards 9c5af7/Card The Codex of Ages 0e4a82.yaml' +- !include 'Custom_Model_Bag starter deck & cards 9c5af7/Deck b18aec.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: '' +GMNotes: '' +GUID: 9c5af7 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +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.00005 + rotZ: 359.983215 + scaleX: 2.0 + scaleY: 2.0 + scaleZ: 2.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 03b888/Custom_Model_Bag starter deck & cards 9c5af7/Card Serpents of Yig 14c396.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 03b888/Custom_Model_Bag starter deck & cards 9c5af7/Card Serpents of Yig 14c396.yaml new file mode 100644 index 000000000..ae248febf --- /dev/null +++ b/unpacked/Custom_Model_Bag The Forgotten Age 03b888/Custom_Model_Bag starter deck & cards 9c5af7/Card Serpents of Yig 14c396.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 232837 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 14c396 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Serpents of Yig +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -11.581955 + posY: 2.53863573 + posZ: -73.35877 + rotX: 5.829256e-06 + rotY: 270.016663 + rotZ: 359.9919 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 03b888/Custom_Model_Bag starter deck & cards 9c5af7/Card The Codex of Ages 0e4a82.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 03b888/Custom_Model_Bag starter deck & cards 9c5af7/Card The Codex of Ages 0e4a82.yaml new file mode 100644 index 000000000..864b9d473 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Forgotten Age 03b888/Custom_Model_Bag starter deck & cards 9c5af7/Card The Codex of Ages 0e4a82.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 232936 +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/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 0e4a82 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '*The Codex of Ages' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -11.7608643 + posY: 2.53870487 + posZ: -73.83848 + rotX: 2.38018583e-05 + rotY: 270.020416 + rotZ: 359.991852 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 03b888/Custom_Model_Bag starter deck & cards 9c5af7/Deck b18aec.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 03b888/Custom_Model_Bag starter deck & cards 9c5af7/Deck b18aec.yaml new file mode 100644 index 000000000..585986a33 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Forgotten Age 03b888/Custom_Model_Bag starter deck & cards 9c5af7/Deck b18aec.yaml @@ -0,0 +1,1440 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 2c68eb + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Manual Dexterity + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 64.56845 + posY: 0.531845 + posZ: 47.2077026 + rotX: 1.70129408e-06 + rotY: 270.00177 + rotZ: 359.9921 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 8139d9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Manual Dexterity + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 64.56846 + posY: 0.681293845 + posZ: 47.20771 + rotX: -0.003189825 + rotY: 270.001831 + rotZ: 359.991272 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: '371494' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Unexpected Courage + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 64.67516 + posY: 0.695752144 + posZ: 47.03149 + rotX: -5.2043506e-06 + rotY: 270.0017 + rotZ: 359.991943 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 096032 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Unexpected Courage + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 64.67516 + posY: 0.682078838 + posZ: 47.03149 + rotX: -5.2043506e-06 + rotY: 270.0017 + rotZ: 359.991943 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 209617 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: d28b77 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Backpack + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 64.81078 + posY: 0.6651202 + posZ: 46.68989 + rotX: 358.417633 + rotY: 269.9333 + rotZ: 2.76360583 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: e42071 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Guts + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 64.86168 + posY: 0.675943136 + posZ: 47.4485359 + rotX: 358.849457 + rotY: 270.025177 + rotZ: 358.2768 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 7ca08b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Guts + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 64.86055 + posY: 0.6876672 + posZ: 47.4469223 + rotX: -4.53150369e-06 + rotY: 270.001556 + rotZ: 359.991943 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: c6ac19 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Perception + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 64.6599655 + posY: 0.69208163 + posZ: 47.63071 + rotX: 359.987823 + rotY: 269.985657 + rotZ: 359.983246 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: c214e5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '*The Chthonian Stone' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -28.4634514 + posY: 0.531384647 + posZ: 49.4387 + rotX: 0.007148017 + rotY: 269.99942 + rotZ: 359.994141 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 48fe71 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '*The Chthonian Stone' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -28.4634571 + posY: 0.6802931 + posZ: 49.4387131 + rotX: -0.003230111 + rotY: 269.999359 + rotZ: 359.989655 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 08656f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Mists of R'lyeh + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -16.5068779 + posY: 0.6957895 + posZ: 46.8218536 + rotX: -4.88793739e-06 + rotY: 269.999329 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 0e3452 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Mists of R'lyeh + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -16.5068779 + posY: 0.6821162 + posZ: 46.8218536 + rotX: -4.88793739e-06 + rotY: 269.999329 + rotZ: 359.991943 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: b70bab + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dark Prophecy + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -16.982811 + posY: 0.6799124 + posZ: 47.3673134 + rotX: 0.00163469033 + rotY: 269.97052 + rotZ: -0.000483796175 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: f4ea21 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dark Prophecy + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -16.9827976 + posY: 0.6826929 + posZ: 47.3673 + rotX: -1.05550271e-05 + rotY: 269.97052 + rotZ: 359.991943 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 1418e2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Drawn to the Flame + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -16.4774914 + posY: 0.6878606 + posZ: 46.1258469 + rotX: -1.03007287e-05 + rotY: 269.97052 + rotZ: 359.991943 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 7201b5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Blinding Light + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -16.7535038 + posY: 0.694122255 + posZ: 46.58991 + rotX: -1.10811316e-05 + rotY: 269.97052 + rotZ: 359.991943 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: ff55ca + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ward of Protection + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -16.725956 + posY: 0.6515414 + posZ: 46.3995 + rotX: -8.72575e-06 + rotY: 269.9738 + rotZ: 359.991943 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: c37f94 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Fearless + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -16.50512 + posY: 0.6611717 + posZ: 46.7834244 + rotX: -8.745344e-06 + rotY: 269.971069 + rotZ: 359.991943 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 9e4505 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Arcane Studies + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -17.235302 + posY: 0.6679585 + posZ: 46.5890465 + rotX: 0.92966187 + rotY: 269.977325 + rotZ: 358.8375 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 7307c4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Arcane Initiate + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -17.3565025 + posY: 0.681317866 + posZ: 46.212738 + rotX: 0.00120184186 + rotY: 269.9993 + rotZ: 359.985382 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 27dab4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Shrivelling + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -17.1738 + posY: 0.6890031 + posZ: 46.90624 + rotX: 0.00116565661 + rotY: 269.999573 + rotZ: 359.986542 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: fa1d67 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Holy Rosary + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -16.4334126 + posY: 0.6965158 + posZ: 45.7661552 + rotX: 359.95343 + rotY: 269.849365 + rotZ: 0.0895784944 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 8a927c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Scrying + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -17.4949 + posY: 0.704477549 + posZ: 46.746006 + rotX: 0.00146316714 + rotY: 269.998138 + rotZ: 359.989838 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 209615 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 0308c7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Flashlight + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 63.7245178 + posY: 0.531122565 + posZ: 52.327652 + rotX: -8.501468e-06 + rotY: 269.97467 + rotZ: 359.991943 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 209615 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: fe63de + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Flashlight + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 63.7245178 + posY: 0.6777382 + posZ: 52.327652 + rotX: -8.569419e-06 + rotY: 269.97464 + rotZ: 359.991943 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 24d5dd + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Emergency Cache + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 64.250824 + posY: 0.5310433 + posZ: 50.0297 + rotX: 0.0189547818 + rotY: 269.974152 + rotZ: -0.00324516417 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: c5ccaa + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Emergency Cache + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 64.40692 + posY: 0.6755796 + posZ: 50.00008 + rotX: 359.8457 + rotY: 269.972473 + rotZ: 0.4029696 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 209612 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: f69584 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Knife + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 63.18442 + posY: 0.6818826 + posZ: 53.0795746 + rotX: -8.481041e-06 + rotY: 269.974731 + rotZ: 359.991943 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: '599209' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Protective Incantation (1) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 50.1035728 + posY: 1.3443954 + posZ: 29.1598129 + rotX: -0.00123781548 + rotY: 270.000122 + rotZ: -0.00186235365 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 07bc04 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Grotesque Statue (4) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 50.32168 + posY: 1.35401464 + posZ: 29.0250187 + rotX: -0.0007794521 + rotY: 269.999939 + rotZ: -0.0008919025 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232936 + 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/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 0e4a82 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '*The Codex of Ages' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -20.9252529 + posY: 0.8086668 + posZ: -71.93422 + rotX: 0.000707607658 + rotY: 270.0204 + rotZ: 359.992432 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232837 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: dd909f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Serpents of Yig + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -21.2029743 + posY: 0.811404347 + posZ: -72.20151 + rotX: -3.827302e-05 + rotY: 270.0169 + rotZ: -0.00115664129 + 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 + 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 + UniqueBack: false + '2328': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '2329': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 209604 +- 209604 +- 209608 +- 209608 +- 209617 +- 209600 +- 209600 +- 209606 +- 230327 +- 230327 +- 230326 +- 230326 +- 230309 +- 230309 +- 230304 +- 230311 +- 230308 +- 230303 +- 230324 +- 230318 +- 230328 +- 230323 +- 230319 +- 209615 +- 209615 +- 209609 +- 209609 +- 209612 +- 230333 +- 230356 +- 232936 +- 232837 +Description: '' +GMNotes: '' +GUID: b18aec +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -11.40637 + posY: 2.65593 + posZ: -73.05786 + rotX: -0.00108676718 + rotY: 270.000031 + rotZ: 179.991608 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0ff458.ttslua b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458.ttslua new file mode 100644 index 000000000..402d5e04d --- /dev/null +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458.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,5,6}, rotation={0,0,0}, height=500, width=1200, + font_size=350, 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 + 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) 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={1.5,5,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.2,5,6}, rotation={0,0,0}, height=500, width=1200, + font_size=350, color={0,0,0}, font_color={1,1,1} + }) + self.createButton({ + label="Reset", click_function="buttonClick_reset", function_owner=self, + position={-4,5,6}, rotation={0,0,0}, height=500, width=1000, + font_size=350, 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={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={-6,1,0}, rotation={0,90,0}, height=500, width=1200, +-- font_size=350, 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 \ No newline at end of file diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0ff458.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458.yaml new file mode 100644 index 000000000..406bf53a1 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458.yaml @@ -0,0 +1,75 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +ContainedObjects: +- !include 'Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 1 The Untamed + Wilds e90956.yaml' +- !include 'Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 2 The Doom + of Eztli 065ce1.yaml' +- !include 'Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 3 Threads of + Fate 11f5c8.yaml' +- !include 'Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 4 The Boundary + Beyond 0ec59f.yaml' +- !include 'Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 5 Heart of + the Elders Part 1 2bfe00.yaml' +- !include 'Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 5 Heart of + the Elders Part 2 5b2403.yaml' +- !include 'Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 6 The City + of Archives 3170ce.yaml' +- !include 'Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 7 The Depths + of Yoth 85286a.yaml' +- !include 'Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 8 Shattered + Aeons 737c5d.yaml' +- !include 'Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 9 Secret Scenario + c52079.yaml' +- !include 'Custom_Model_Bag The Forgotten Age 0ff458/Deck Supplies 05e6aa.yaml' +- !include 'Custom_Model_Bag The Forgotten Age 0ff458/Custom_Tile Forgotten Age Campaign + Log 48b154.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/762723517669830426/AAB750A408E887633F25AFDFB194C50A9A1518DF/ + MaterialIndex: 3 + MeshURL: https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/core_h_MSH.obj + NormalURL: '' + TypeIndex: 6 +Description: '' +GMNotes: '' +GUID: 0ff458 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Model_Bag The Forgotten Age 0ff458.ttslua' +LuaScriptState: '{"ml":{"05e6aa":{"lock":false,"pos":{"x":3.2076,"y":1.5459,"z":-36.0018},"rot":{"x":359.9201,"y":269.9973,"z":0.0169}},"065ce1":{"lock":false,"pos":{"x":12.2503,"y":1.4727,"z":27.9864},"rot":{"x":359.9201,"y":270.067,"z":0.0168}},"0ec59f":{"lock":false,"pos":{"x":12.2521,"y":1.468,"z":11.9864},"rot":{"x":359.9201,"y":270.0266,"z":0.0168}},"11f5c8":{"lock":false,"pos":{"x":12.2499,"y":1.4703,"z":19.9864},"rot":{"x":359.9201,"y":270.0197,"z":0.0168}},"2bfe00":{"lock":false,"pos":{"x":12.25,"y":1.4656,"z":3.9863},"rot":{"x":359.9201,"y":270.0261,"z":0.0168}},"3170ce":{"lock":false,"pos":{"x":12.2501,"y":1.4609,"z":-12.0136},"rot":{"x":359.9201,"y":270.0067,"z":0.0169}},"48b154":{"lock":false,"pos":{"x":-1.3535,"y":1.4756,"z":-26.6032},"rot":{"x":359.9201,"y":270.002,"z":0.0169}},"5b2403":{"lock":false,"pos":{"x":12.2496,"y":1.4633,"z":-4.0137},"rot":{"x":359.9201,"y":270.0024,"z":0.0169}},"737c5d":{"lock":false,"pos":{"x":12.2496,"y":1.4562,"z":-28.0137},"rot":{"x":359.9201,"y":270.0025,"z":0.0169}},"85286a":{"lock":false,"pos":{"x":12.2505,"y":1.4585,"z":-20.0137},"rot":{"x":359.9201,"y":270.0099,"z":0.0169}},"c52079":{"lock":false,"pos":{"x":12.2504,"y":1.4538,"z":-36.0138},"rot":{"x":359.9201,"y":270.0046,"z":0.0169}},"e90956":{"lock":false,"pos":{"x":12.2494,"y":1.475,"z":35.9864},"rot":{"x":359.9201,"y":270.1032,"z":0.0167}}}}' +MaterialIndex: -1 +MeshIndex: -1 +Name: Custom_Model_Bag +Nickname: The Forgotten Age +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 51.6561928 + posY: 1.40948653 + posZ: -13.718379 + rotX: 359.920135 + rotY: 270.005981 + rotZ: 0.0168636981 + scaleX: 1.0 + scaleY: 0.139652729 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 1 The Untamed Wilds e90956.ttslua b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 1 The Untamed Wilds e90956.ttslua new file mode 100644 index 000000000..46067f58e --- /dev/null +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 1 The Untamed Wilds e90956.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.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.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 Forgotten Age 0ff458/Custom_Model_Bag 1 The Untamed Wilds e90956.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 1 The Untamed Wilds e90956.yaml new file mode 100644 index 000000000..a8d1ba931 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 1 The Untamed Wilds e90956.yaml @@ -0,0 +1,71 @@ +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 1 The Untamed Wilds e90956/Deck Exploration Deck 3b6513.yaml' +- !include 'Custom_Model_Bag 1 The Untamed Wilds e90956/Card Expedition Camp 2ada4f.yaml' +- !include 'Custom_Model_Bag 1 The Untamed Wilds e90956/Card Scenario 7f1614.yaml' +- !include 'Custom_Model_Bag 1 The Untamed Wilds e90956/Custom_Tile The Forgotten + Age e95200.yaml' +- !include 'Custom_Model_Bag 1 The Untamed Wilds e90956/Deck Agenda Deck f67ad1.yaml' +- !include 'Custom_Model_Bag 1 The Untamed Wilds e90956/Deck Act Deck 0ec5b4.yaml' +- !include 'Custom_Model_Bag 1 The Untamed Wilds e90956/Deck Encounter Deck 47909c.yaml' +- !include 'Custom_Model_Bag 1 The Untamed Wilds e90956/Custom_Model_Bag Set-aside + a45247.yaml' +- !include 'Custom_Model_Bag 1 The Untamed Wilds e90956/Card Visual Exploration Reference + b1982f.yaml' +CustomMesh: + CastShadows: true + ColliderURL: '' + Convex: true + DiffuseURL: http://cloud-3.steamusercontent.com/ugc/829135118403837985/8C4DB16D46E6F3439DD0CB20677B2360AC48AC38/ + MaterialIndex: 3 + MeshURL: https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj + NormalURL: '' + TypeIndex: 6 +Description: The Forgotten Age +GMNotes: '' +GUID: e90956 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Model_Bag 1 The Untamed Wilds e90956.ttslua' +LuaScriptState: '{"ml":{"0ec5b4":{"lock":false,"pos":{"x":-2.6885,"y":1.6535,"z":-5.0485},"rot":{"x":0.0168,"y":179.9949,"z":0.0803}},"2ada4f":{"lock":false,"pos":{"x":-17.12,"y":1.6771,"z":-0.03},"rot":{"x":359.9201,"y":269.9967,"z":0.0169}},"3b6513":{"lock":false,"pos":{"x":-12.3571,"y":1.6774,"z":7.4662},"rot":{"x":359.9201,"y":269.9999,"z":180.0169}},"47909c":{"lock":false,"pos":{"x":-3.9277,"y":1.7184,"z":5.7571},"rot":{"x":359.9197,"y":269.9958,"z":180.0168}},"7f1614":{"lock":false,"pos":{"x":-3.956,"y":1.6556,"z":-10.4412},"rot":{"x":359.9197,"y":270.0032,"z":0.0168}},"a45247":{"lock":false,"pos":{"x":1.6965,"y":1.5583,"z":14.2787},"rot":{"x":359.9551,"y":224.998,"z":0.0687}},"b1982f":{"lock":false,"pos":{"x":-11.8428,"y":1.6685,"z":-13.8781},"rot":{"x":0.0169,"y":180.0139,"z":180.0799}},"e95200":{"lock":false,"pos":{"x":-3.9363,"y":1.5826,"z":-14.9317},"rot":{"x":359.9197,"y":270.0018,"z":0.0168}},"f67ad1":{"lock":false,"pos":{"x":-2.7247,"y":1.664,"z":0.3733},"rot":{"x":0.0168,"y":180,"z":0.0803}}}}' +MaterialIndex: -1 +MeshIndex: -1 +Name: Custom_Model_Bag +Nickname: '1: The Untamed Wilds' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 12.2494068 + posY: 1.47502887 + posZ: 35.9863548 + rotX: 359.9201 + rotY: 270.103241 + rotZ: 0.0167309325 + scaleX: 2.21 + scaleY: 0.46 + scaleZ: 2.42 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 1 The Untamed Wilds e90956/Card Expedition Camp 2ada4f.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 1 The Untamed Wilds e90956/Card Expedition Camp 2ada4f.yaml new file mode 100644 index 000000000..37b6ce2e6 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 1 The Untamed Wilds e90956/Card Expedition Camp 2ada4f.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 129849 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '1298': + BackIsHidden: true + BackURL: https://i.imgur.com/RpzEfmS.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393194495/027101CA5C626EBA0E4F76F3F15569329F81DE3C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Campsite. Jungle. +GMNotes: '' +GUID: 2ada4f +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Expedition Camp +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -17.12 + posY: 1.67707765 + posZ: -0.0299997721 + rotX: 359.9201 + rotY: 269.9967 + rotZ: 0.01687473 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 1 The Untamed Wilds e90956/Card Scenario 7f1614.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 1 The Untamed Wilds e90956/Card Scenario 7f1614.yaml new file mode 100644 index 000000000..03562cced --- /dev/null +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 1 The Untamed Wilds e90956/Card Scenario 7f1614.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 129842 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '1298': + BackIsHidden: true + BackURL: https://i.imgur.com/RpzEfmS.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393194495/027101CA5C626EBA0E4F76F3F15569329F81DE3C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: The Untamed Wilds +GMNotes: '' +GUID: 7f1614 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Scenario +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.95600033 + posY: 1.65564823 + posZ: -10.4412022 + rotX: 359.919739 + rotY: 270.003235 + rotZ: 0.01683037 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 1 The Untamed Wilds e90956/Card Visual Exploration Reference b1982f.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 1 The Untamed Wilds e90956/Card Visual Exploration Reference b1982f.yaml new file mode 100644 index 000000000..7baa572d9 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 1 The Untamed Wilds e90956/Card Visual Exploration Reference b1982f.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 278500 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2785': + BackIsHidden: false + BackURL: https://i.imgur.com/3x23Tmh.jpg + FaceURL: https://i.imgur.com/3x23Tmh.jpg + NumHeight: 2 + NumWidth: 2 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: b1982f +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Visual Exploration Reference +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -11.8427725 + posY: 1.66846418 + posZ: -13.8780594 + rotX: 0.016851332 + rotY: 180.013947 + rotZ: 180.0799 + scaleX: 2.0 + scaleY: 1.0 + scaleZ: 2.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 1 The Untamed Wilds e90956/Custom_Model_Bag Set-aside a45247.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 1 The Untamed Wilds e90956/Custom_Model_Bag Set-aside a45247.yaml new file mode 100644 index 000000000..7ad25fccc --- /dev/null +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 1 The Untamed Wilds e90956/Custom_Model_Bag Set-aside a45247.yaml @@ -0,0 +1,60 @@ +Autoraise: true +ColorDiffuse: + b: 0.02148666 + g: 0.00100758043 + r: 0.02148666 +ContainedObjects: +- !include 'Custom_Model_Bag Set-aside a45247/Deck Poisoned 3d0267.yaml' +- !include 'Custom_Model_Bag Set-aside a45247/Deck Agents of Yig e4b4c7.yaml' +- !include 'Custom_Model_Bag Set-aside a45247/Card Alejandro Vela 1b9dbf.yaml' +- !include 'Custom_Model_Bag Set-aside a45247/Card Ichtaca 73d855.yaml' +- !include 'Custom_Model_Bag Set-aside a45247/Deck Ruins e596ac.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 Untamed Wilds +GMNotes: '' +GUID: a45247 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +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.696501 + posY: 1.55831647 + posZ: 14.2787027 + rotX: 359.955139 + rotY: 224.997986 + rotZ: 0.06868644 + scaleX: 2.0 + scaleY: 2.0 + scaleZ: 2.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 1 The Untamed Wilds e90956/Custom_Model_Bag Set-aside a45247/Card Alejandro Vela 1b9dbf.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 1 The Untamed Wilds e90956/Custom_Model_Bag Set-aside a45247/Card Alejandro Vela 1b9dbf.yaml new file mode 100644 index 000000000..5bff475b3 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 1 The Untamed Wilds e90956/Custom_Model_Bag Set-aside a45247/Card Alejandro Vela 1b9dbf.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 12250 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '122': + BackIsHidden: true + BackURL: https://i.imgur.com/RpzEfmS.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393194495/027101CA5C626EBA0E4F76F3F15569329F81DE3C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Ally. Wayfarer. +GMNotes: '' +GUID: 1b9dbf +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Alejandro Vela +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 14.4168072 + posY: 3.58592534 + posZ: -2.4909234 + rotX: 359.9403 + rotY: 269.999023 + rotZ: 180.014465 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 1 The Untamed Wilds e90956/Custom_Model_Bag Set-aside a45247/Card Ichtaca 73d855.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 1 The Untamed Wilds e90956/Custom_Model_Bag Set-aside a45247/Card Ichtaca 73d855.yaml new file mode 100644 index 000000000..afb1bf1c0 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 1 The Untamed Wilds e90956/Custom_Model_Bag Set-aside a45247/Card Ichtaca 73d855.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 12251 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '122': + BackIsHidden: true + BackURL: https://i.imgur.com/RpzEfmS.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393194495/027101CA5C626EBA0E4F76F3F15569329F81DE3C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Humanoid. Eztli. Elite. +GMNotes: '' +GUID: 73d855 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Ichtaca +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 14.4166508 + posY: 3.586076 + posZ: -1.36061716 + rotX: 359.93576 + rotY: 270.000061 + rotZ: 180.018646 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 1 The Untamed Wilds e90956/Custom_Model_Bag Set-aside a45247/Deck Agents of Yig e4b4c7.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 1 The Untamed Wilds e90956/Custom_Model_Bag Set-aside a45247/Deck Agents of Yig e4b4c7.yaml new file mode 100644 index 000000000..514f4ce8b --- /dev/null +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 1 The Untamed Wilds e90956/Custom_Model_Bag Set-aside a45247/Deck Agents of Yig e4b4c7.yaml @@ -0,0 +1,301 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: false + CardID: 12312 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Humanoid. Monster. Serpent. + GMNotes: '' + GUID: 7a7539 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Brood of Yig + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 20.6489639 + posY: 1.524212 + posZ: -10.3480968 + rotX: 359.920135 + rotY: 270.000031 + rotZ: 180.016861 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: false + CardID: 12313 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Humanoid. Monster. Serpent. + GMNotes: '' + GUID: 906ef2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Serpent from Yoth + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.6581974 + posY: 1.52977014 + posZ: -10.3658247 + rotX: 359.920135 + rotY: 270.000183 + rotZ: 180.016876 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: false + CardID: 12314 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Curse. + GMNotes: '' + GUID: 5b28aa + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Curse of Yig + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 15.9007368 + posY: 1.531576 + posZ: -7.81919 + rotX: 359.920135 + rotY: 269.999878 + rotZ: 180.016876 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: false + CardID: 12314 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Curse. + GMNotes: '' + GUID: 866eba + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Curse of Yig + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.1932964 + posY: 1.53207755 + posZ: -4.73090649 + rotX: 359.920135 + rotY: 270.0017 + rotZ: 180.016876 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: false + CardID: 12312 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Humanoid. Monster. Serpent. + GMNotes: '' + GUID: 5ef7c7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Brood of Yig + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 20.8280125 + posY: 1.52490973 + posZ: -7.13009644 + rotX: 359.920135 + rotY: 269.999878 + rotZ: 180.016876 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: false + CardID: 12312 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Humanoid. Monster. Serpent. + GMNotes: '' + GUID: 61dec3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Brood of Yig + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 20.5438557 + posY: 1.5261687 + posZ: -4.200535 + rotX: 359.920135 + rotY: 270.018951 + rotZ: 180.01683 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '123': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 12312 +- 12313 +- 12314 +- 12314 +- 12312 +- 12312 +Description: '' +GMNotes: '' +GUID: e4b4c7 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Agents of Yig +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 14.2118082 + posY: 3.58489513 + posZ: -1.09091473 + rotX: 359.966217 + rotY: 269.9868 + rotZ: 0.0209782645 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 1 The Untamed Wilds e90956/Custom_Model_Bag Set-aside a45247/Deck Poisoned 3d0267.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 1 The Untamed Wilds e90956/Custom_Model_Bag Set-aside a45247/Deck Poisoned 3d0267.yaml new file mode 100644 index 000000000..578283006 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 1 The Untamed Wilds e90956/Custom_Model_Bag Set-aside a45247/Deck Poisoned 3d0267.yaml @@ -0,0 +1,215 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 12331 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Poision. + GMNotes: '' + GUID: 34788c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Poisoned + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 14.2591763 + posY: 1.53508246 + posZ: 5.90330172 + rotX: 359.920135 + rotY: 269.9985 + rotZ: 0.0168719534 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12331 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Poision. + GMNotes: '' + GUID: 68fd1b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Poisoned + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 14.5289545 + posY: 1.53380692 + posZ: 2.849627 + rotX: 359.920135 + rotY: 270.000061 + rotZ: 0.0168700274 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12331 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Poision. + GMNotes: '' + GUID: 866eba + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Poisoned + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 14.491477 + posY: 1.53300107 + posZ: -0.06510341 + rotX: 359.920135 + rotY: 269.9999 + rotZ: 0.0168701559 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12331 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Poision. + GMNotes: '' + GUID: 1f5327 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Poisoned + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 10.2967625 + posY: 1.53969979 + posZ: 2.82389736 + rotX: 359.920135 + rotY: 269.999878 + rotZ: 0.0168667473 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '123': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 12331 +- 12331 +- 12331 +- 12331 +Description: '' +GMNotes: '' +GUID: 3d0267 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Poisoned +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 14.1623344 + posY: 3.581511 + posZ: -1.77232087 + rotX: 359.936 + rotY: 270.000244 + rotZ: 0.0192842036 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 1 The Untamed Wilds e90956/Custom_Model_Bag Set-aside a45247/Deck Ruins e596ac.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 1 The Untamed Wilds e90956/Custom_Model_Bag Set-aside a45247/Deck Ruins e596ac.yaml new file mode 100644 index 000000000..6b9a65c0e --- /dev/null +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 1 The Untamed Wilds e90956/Custom_Model_Bag Set-aside a45247/Deck Ruins e596ac.yaml @@ -0,0 +1,179 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 12304 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Ancient. Ruins. + GMNotes: '' + GUID: 866eba + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Overgrown Ruins + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 15.816083 + posY: 1.52782047 + posZ: -11.3872824 + rotX: 359.920135 + rotY: 269.9997 + rotZ: 0.0168750789 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12252 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '122': + BackIsHidden: true + BackURL: https://i.imgur.com/RpzEfmS.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393194495/027101CA5C626EBA0E4F76F3F15569329F81DE3C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Ancient. Ruins. + GMNotes: '' + GUID: 17871b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ruins of Eztli + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 15.81557 + posY: 1.52868307 + posZ: -8.459711 + rotX: 359.920135 + rotY: 269.999878 + rotZ: 0.0168647133 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12303 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Ancient. Ruins. + GMNotes: '' + GUID: 9eb622 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Temple of the Fang + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 15.9005156 + posY: 1.52957141 + posZ: -5.040958 + rotX: 359.920135 + rotY: 269.999939 + rotZ: 0.0168751888 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '122': + BackIsHidden: true + BackURL: https://i.imgur.com/RpzEfmS.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393194495/027101CA5C626EBA0E4F76F3F15569329F81DE3C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + '123': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 12304 +- 12252 +- 12303 +Description: '' +GMNotes: '' +GUID: e596ac +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Ruins +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 14.3189535 + posY: 3.590437 + posZ: -1.05086291 + rotX: 359.935455 + rotY: 269.999939 + rotZ: 180.009521 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 1 The Untamed Wilds e90956/Custom_Tile The Forgotten Age e95200.ttslua b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 1 The Untamed Wilds e90956/Custom_Tile The Forgotten Age e95200.ttslua new file mode 100644 index 000000000..75c4561fb --- /dev/null +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 1 The Untamed Wilds e90956/Custom_Tile The Forgotten Age e95200.ttslua @@ -0,0 +1,21 @@ +name = 'The Forgotten Age' + +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 The Forgotten Age 0ff458/Custom_Model_Bag 1 The Untamed Wilds e90956/Custom_Tile The Forgotten Age e95200.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 1 The Untamed Wilds e90956/Custom_Tile The Forgotten Age e95200.yaml new file mode 100644 index 000000000..209d6e0d3 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 1 The Untamed Wilds e90956/Custom_Tile The Forgotten Age e95200.yaml @@ -0,0 +1,42 @@ +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 +GMNotes: '' +GUID: e95200 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Tile The Forgotten Age e95200.ttslua' +LuaScriptState: '' +Name: Custom_Tile +Nickname: The Forgotten Age +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.9363 + posY: 1.58258748 + posZ: -14.9317026 + rotX: 359.919739 + rotY: 270.00177 + rotZ: 0.016831927 + scaleX: 2.2 + scaleY: 1.0 + scaleZ: 2.2 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 1 The Untamed Wilds e90956/Deck Act Deck 0ec5b4.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 1 The Untamed Wilds e90956/Deck Act Deck 0ec5b4.yaml new file mode 100644 index 000000000..b1882dfbd --- /dev/null +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 1 The Untamed Wilds e90956/Deck Act Deck 0ec5b4.yaml @@ -0,0 +1,215 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 129848 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1298': + BackIsHidden: true + BackURL: https://i.imgur.com/RpzEfmS.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393194495/027101CA5C626EBA0E4F76F3F15569329F81DE3C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 3 + GMNotes: '' + GUID: 54ef29 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Guarded Ruins + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 21.6614437 + posY: 1.53104651 + posZ: 28.5049324 + rotX: -0.00482139457 + rotY: 180.026764 + rotZ: 0.06951033 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 129847 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1298': + BackIsHidden: true + BackURL: https://i.imgur.com/RpzEfmS.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393194495/027101CA5C626EBA0E4F76F3F15569329F81DE3C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 3 + GMNotes: '' + GUID: 79390e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Search for the Ruins + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 19.1650028 + posY: 1.53459513 + posZ: 28.4393082 + rotX: 0.001792943 + rotY: 180.004059 + rotZ: 0.073478654 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 129846 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1298': + BackIsHidden: true + BackURL: https://i.imgur.com/RpzEfmS.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393194495/027101CA5C626EBA0E4F76F3F15569329F81DE3C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 2 + GMNotes: '' + GUID: 487d1f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Huntress of the Eztli + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 17.23927 + posY: 1.53755915 + posZ: 28.3845139 + rotX: 0.0169017818 + rotY: 180.009354 + rotZ: 0.07939934 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 129845 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1298': + BackIsHidden: true + BackURL: https://i.imgur.com/RpzEfmS.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393194495/027101CA5C626EBA0E4F76F3F15569329F81DE3C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 1 + GMNotes: '' + GUID: b77109 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Exploring the Rainforest + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.99791 + posY: 1.6783663 + posZ: 28.22906 + rotX: 0.003301443 + rotY: 180.007874 + rotZ: 0.0557166263 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '1298': + BackIsHidden: true + BackURL: https://i.imgur.com/RpzEfmS.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393194495/027101CA5C626EBA0E4F76F3F15569329F81DE3C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 129848 +- 129847 +- 129846 +- 129845 +Description: The Untamed Wilds +GMNotes: '' +GUID: 0ec5b4 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Act Deck +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.6885 + posY: 1.6534946 + posZ: -5.048501 + rotX: 0.0168450456 + rotY: 179.994949 + rotZ: 0.0802581161 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 1 The Untamed Wilds e90956/Deck Agenda Deck f67ad1.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 1 The Untamed Wilds e90956/Deck Agenda Deck f67ad1.yaml new file mode 100644 index 000000000..ea52532ed --- /dev/null +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 1 The Untamed Wilds e90956/Deck Agenda Deck f67ad1.yaml @@ -0,0 +1,129 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 129844 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1298': + BackIsHidden: true + BackURL: https://i.imgur.com/RpzEfmS.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393194495/027101CA5C626EBA0E4F76F3F15569329F81DE3C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 2 + GMNotes: '' + GUID: 9a2bf1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Intruders + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 21.1104183 + posY: 1.5306313 + posZ: 23.37943 + rotX: 0.0123635288 + rotY: 179.993927 + rotZ: 0.08141511 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 129843 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1298': + BackIsHidden: true + BackURL: https://i.imgur.com/RpzEfmS.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393194495/027101CA5C626EBA0E4F76F3F15569329F81DE3C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 1 + GMNotes: '' + GUID: 9f7d9a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Expedition into the Wild + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 20.8002033 + posY: 1.671269 + posZ: 23.5407677 + rotX: 0.011571357 + rotY: 179.999268 + rotZ: 0.04976594 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '1298': + BackIsHidden: true + BackURL: https://i.imgur.com/RpzEfmS.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393194495/027101CA5C626EBA0E4F76F3F15569329F81DE3C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 129844 +- 129843 +Description: The Untamed Wilds +GMNotes: '' +GUID: f67ad1 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Agenda Deck +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.72470021 + posY: 1.66397738 + posZ: 0.373299658 + rotX: 0.0168383718 + rotY: 179.999969 + rotZ: 0.08026078 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 1 The Untamed Wilds e90956/Deck Encounter Deck 47909c.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 1 The Untamed Wilds e90956/Deck Encounter Deck 47909c.yaml new file mode 100644 index 000000000..56647d18c --- /dev/null +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 1 The Untamed Wilds e90956/Deck Encounter Deck 47909c.yaml @@ -0,0 +1,910 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 234310 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2343': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Blunder. + GMNotes: '' + GUID: e7d6b8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Lost in the Wilds + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 15.89565 + posY: 1.75985289 + posZ: 19.9271946 + rotX: 359.936249 + rotY: 270.0 + rotZ: 180.015274 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234305 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2343': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Obstacle. + GMNotes: '' + GUID: cfda2a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Overgrowth + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 15.0333614 + posY: 1.66552389 + posZ: 11.9619 + rotX: 359.904572 + rotY: 269.869263 + rotZ: 186.274734 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234307 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2343': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Creature. Serpent. + GMNotes: '' + GUID: d595ee + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Pit Viper + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 15.0402374 + posY: 1.53887033 + posZ: 13.2226467 + rotX: 359.9164 + rotY: 269.744324 + rotZ: 180.037964 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234330 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2343': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Poison. + GMNotes: '' + GUID: b4f854 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Creeping Poison + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 15.0408926 + posY: 1.58861125 + posZ: 14.2148619 + rotX: 359.6073 + rotY: 269.976349 + rotZ: 179.9605 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3620 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: e0f4c0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ancient Evils + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 15.0294085 + posY: 1.63807809 + posZ: 15.2815094 + rotX: 359.907074 + rotY: 269.944946 + rotZ: 179.980331 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234307 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2343': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Creature. Serpent. + GMNotes: '' + GUID: '062575' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Pit Viper + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 15.0406446 + posY: 1.68712056 + posZ: 16.3631287 + rotX: 359.865173 + rotY: 270.1318 + rotZ: 179.9135 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234316 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2343': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Scheme. + GMNotes: '' + GUID: 74a02c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Arrows from the Trees + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 15.0362377 + posY: 1.54002869 + posZ: 17.4618282 + rotX: 359.906647 + rotY: 269.72226 + rotZ: 180.040283 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234315 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2343': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Humanoid. Eztli. + GMNotes: '' + GUID: '571733' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Eztli Guardian + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 15.0323992 + posY: 1.62501061 + posZ: 18.5260124 + rotX: 359.957764 + rotY: 270.003845 + rotZ: 179.098114 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234310 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2343': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Blunder. + GMNotes: '' + GUID: dc5b1e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Lost in the Wilds + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 15.0304356 + posY: 1.60478032 + posZ: 20.6871033 + rotX: 0.002369809 + rotY: 269.961517 + rotZ: 181.150177 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234330 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2343': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Poison. + GMNotes: '' + GUID: 8e8fef + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Creeping Poison + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 15.0381222 + posY: 1.69295347 + posZ: 21.7326851 + rotX: 359.964142 + rotY: 269.885468 + rotZ: 181.804733 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234307 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2343': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Creature. Serpent. + GMNotes: '' + GUID: f460e3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Pit Viper + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 15.0393229 + posY: 1.58563912 + posZ: 22.8579235 + rotX: 359.984619 + rotY: 270.257355 + rotZ: 182.257446 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234311 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2343': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Blunder. + GMNotes: '' + GUID: '632986' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Low on Supplies + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 15.03363 + posY: 1.67412364 + posZ: 23.89569 + rotX: 359.920441 + rotY: 270.0528 + rotZ: 181.290054 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234309 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2343': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Hazard. Poison. + GMNotes: '' + GUID: fa161c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Snake Bite + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 15.0313215 + posY: 1.556055 + posZ: 25.031847 + rotX: 359.94043 + rotY: 270.672424 + rotZ: 180.713547 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234306 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2343': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Power. + GMNotes: '' + GUID: 53458a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Voice of the Jungle + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 15.0414839 + posY: 1.77112675 + posZ: 26.0508881 + rotX: 359.971252 + rotY: 270.1607 + rotZ: 185.215027 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234315 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2343': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Humanoid. Eztli. + GMNotes: '' + GUID: 1ff419 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Eztli Guardian + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 15.0506458 + posY: 1.57885468 + posZ: 31.3340149 + rotX: 359.921478 + rotY: 270.229736 + rotZ: 178.1797 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234308 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2343': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Creature. Serpent. + GMNotes: '' + GUID: cd0a26 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Boa Constrictor + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 15.0380659 + posY: 1.71232235 + posZ: 27.0513725 + rotX: 0.139405787 + rotY: 270.228668 + rotZ: 184.357849 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234309 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2343': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Hazard. Poison. + GMNotes: '' + GUID: '180783' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Snake Bite + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 15.0440493 + posY: 1.54387832 + posZ: 28.20497 + rotX: 359.942719 + rotY: 269.6857 + rotZ: 179.990753 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3620 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: 1921c5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ancient Evils + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 15.0439529 + posY: 1.77373576 + posZ: 29.21374 + rotX: 359.990875 + rotY: 270.2174 + rotZ: 178.704239 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234306 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2343': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Power. + GMNotes: '' + GUID: 866eba + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Voice of the Jungle + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 15.0478268 + posY: 1.65865207 + posZ: 30.26626 + rotX: 359.969055 + rotY: 270.156036 + rotZ: 178.282867 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3620 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: 61e841 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ancient Evils + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 15.0386972 + posY: 1.71724439 + posZ: 19.5921726 + rotX: 359.942474 + rotY: 270.29892 + rotZ: 185.101028 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2343': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 234310 +- 234305 +- 234307 +- 234330 +- 3620 +- 234307 +- 234316 +- 234315 +- 234310 +- 234330 +- 234307 +- 234311 +- 234309 +- 234306 +- 234315 +- 234308 +- 234309 +- 3620 +- 234306 +- 3620 +Description: The Untamed Wilds +GMNotes: '' +GUID: 47909c +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Encounter Deck +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.92770028 + posY: 1.71841526 + posZ: 5.7571 + rotX: 359.919739 + rotY: 269.995819 + rotZ: 180.016846 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 1 The Untamed Wilds e90956/Deck Exploration Deck 3b6513.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 1 The Untamed Wilds e90956/Deck Exploration Deck 3b6513.yaml new file mode 100644 index 000000000..8cfc4efcf --- /dev/null +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 1 The Untamed Wilds e90956/Deck Exploration Deck 3b6513.yaml @@ -0,0 +1,480 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 234209 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2342': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Hazard. Poison. + GMNotes: '' + GUID: 866eba + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Snake Bite + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 11.2726269 + posY: 1.5429318 + posZ: 18.420332 + rotX: 359.920135 + rotY: 269.999969 + rotZ: 0.0168675967 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234205 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2342': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Obstacle. + GMNotes: '' + GUID: 996dbb + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Overgrowth + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 11.27371 + posY: 1.54229438 + posZ: 16.2607861 + rotX: 359.920135 + rotY: 269.999939 + rotZ: 0.01687273 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 129969 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1299': + BackIsHidden: true + BackURL: https://i.imgur.com/RpzEfmS.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393194495/027101CA5C626EBA0E4F76F3F15569329F81DE3C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Jungle. + GMNotes: '' + GUID: '746983' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: River Canyon + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 11.274806 + posY: 1.541657 + posZ: 14.101285 + rotX: 359.920135 + rotY: 269.999969 + rotZ: 0.01686662 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234201 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2342': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Jungle. + GMNotes: '' + GUID: 9b2074 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: "Serpent\u2019s Haven" + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 11.27716 + posY: 1.54101765 + posZ: 11.9413958 + rotX: 359.920135 + rotY: 269.999939 + rotZ: 0.0168710053 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234202 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2342': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Jungle. + GMNotes: '' + GUID: 1ec75c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Circuitous Trail + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 11.2782621 + posY: 1.54038012 + posZ: 9.781899 + rotX: 359.920135 + rotY: 270.0 + rotZ: 0.0168728661 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 129968 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1299': + BackIsHidden: true + BackURL: https://i.imgur.com/RpzEfmS.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393194495/027101CA5C626EBA0E4F76F3F15569329F81DE3C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Jungle. + GMNotes: '' + GUID: 3b9b1a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Path of Thorns + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 11.2794609 + posY: 1.53974223 + posZ: 7.62156534 + rotX: 359.920135 + rotY: 269.999969 + rotZ: 0.0168695748 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234211 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2342': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Blunder. + GMNotes: '' + GUID: 90ed0e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Low on Supplies + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 11.2804728 + posY: 1.53910482 + posZ: 5.46129847 + rotX: 359.920135 + rotY: 270.0 + rotZ: 0.0168690123 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234200 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2342': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Jungle. + GMNotes: '' + GUID: '227273' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Rope Bridge + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 11.2815819 + posY: 1.53846741 + posZ: 3.30180287 + rotX: 359.920135 + rotY: 269.999969 + rotZ: 0.0168669336 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234210 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2342': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Blunder. + GMNotes: '' + GUID: f8b917 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Lost in the Wilds + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 11.282711 + posY: 1.53783 + posZ: 1.14229488 + rotX: 359.920135 + rotY: 269.999939 + rotZ: 0.0168704521 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234216 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2342': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Scheme. + GMNotes: '' + GUID: ca2654 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Arrows from the Trees + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -12.5256929 + posY: 1.80141866 + posZ: 8.207595 + rotX: 359.933563 + rotY: 269.999939 + rotZ: 0.0129984329 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '1299': + BackIsHidden: true + BackURL: https://i.imgur.com/RpzEfmS.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393194495/027101CA5C626EBA0E4F76F3F15569329F81DE3C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + '2342': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 234209 +- 234205 +- 129969 +- 234201 +- 234202 +- 129968 +- 234211 +- 234200 +- 234210 +- 234216 +Description: The Untamed Wilds +GMNotes: '' +GUID: 3b6513 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Exploration Deck +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -12.3570871 + posY: 1.67739594 + posZ: 7.46622467 + 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 The Forgotten Age 0ff458/Custom_Model_Bag 2 The Doom of Eztli 065ce1.ttslua b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 2 The Doom of Eztli 065ce1.ttslua new file mode 100644 index 000000000..46067f58e --- /dev/null +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 2 The Doom of Eztli 065ce1.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.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.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 Forgotten Age 0ff458/Custom_Model_Bag 2 The Doom of Eztli 065ce1.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 2 The Doom of Eztli 065ce1.yaml new file mode 100644 index 000000000..cc8e9bab1 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 2 The Doom of Eztli 065ce1.yaml @@ -0,0 +1,71 @@ +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 2 The Doom of Eztli 065ce1/Deck Exploration Deck be9001.yaml' +- !include 'Custom_Model_Bag 2 The Doom of Eztli 065ce1/Card Entryway e5f222.yaml' +- !include 'Custom_Model_Bag 2 The Doom of Eztli 065ce1/Card Scenario 964bf2.yaml' +- !include 'Custom_Model_Bag 2 The Doom of Eztli 065ce1/Custom_Tile The Doom of Eztli + 294ec4.yaml' +- !include 'Custom_Model_Bag 2 The Doom of Eztli 065ce1/Card Visual Exploration Reference + cf966e.yaml' +- !include 'Custom_Model_Bag 2 The Doom of Eztli 065ce1/Deck Agenda Deck e692a1.yaml' +- !include 'Custom_Model_Bag 2 The Doom of Eztli 065ce1/Deck Act Deck 1210d6.yaml' +- !include 'Custom_Model_Bag 2 The Doom of Eztli 065ce1/Deck Encounter Deck c4d867.yaml' +- !include 'Custom_Model_Bag 2 The Doom of Eztli 065ce1/Custom_Model_Bag Set-aside + a45247.yaml' +CustomMesh: + CastShadows: true + ColliderURL: '' + Convex: true + DiffuseURL: http://cloud-3.steamusercontent.com/ugc/829135118403839444/432258D9780AC1720265C8C7CA2F2EDBCA159117/ + MaterialIndex: 3 + MeshURL: https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj + NormalURL: '' + TypeIndex: 6 +Description: The Forgotten Age +GMNotes: '' +GUID: 065ce1 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Model_Bag 2 The Doom of Eztli 065ce1.ttslua' +LuaScriptState: '{"ml":{"1210d6":{"lock":false,"pos":{"x":-2.6885,"y":1.655,"z":-5.0485},"rot":{"x":0.0168,"y":179.9939,"z":0.0803}},"294ec4":{"lock":false,"pos":{"x":-4.6804,"y":1.5837,"z":-14.8422},"rot":{"x":359.9197,"y":270.0308,"z":0.0168}},"964bf2":{"lock":false,"pos":{"x":-3.956,"y":1.6556,"z":-10.4411},"rot":{"x":359.9197,"y":270.0006,"z":0.0168}},"a45247":{"lock":false,"pos":{"x":1.6966,"y":1.5583,"z":14.2787},"rot":{"x":359.9551,"y":224.998,"z":0.0687}},"be9001":{"lock":false,"pos":{"x":-12.61,"y":1.6778,"z":7.5169},"rot":{"x":359.9201,"y":270,"z":180.0169}},"c4d867":{"lock":false,"pos":{"x":-3.9277,"y":1.7664,"z":5.7571},"rot":{"x":359.9197,"y":270.0023,"z":180.0168}},"cf966e":{"lock":false,"pos":{"x":-13.016,"y":1.6697,"z":-15.3163},"rot":{"x":359.9201,"y":269.9992,"z":180.0169}},"e5f222":{"lock":false,"pos":{"x":-17.12,"y":1.6771,"z":-0.03},"rot":{"x":359.9201,"y":269.9998,"z":0.0169}},"e692a1":{"lock":false,"pos":{"x":-2.7247,"y":1.664,"z":0.3733},"rot":{"x":0.0168,"y":179.9969,"z":0.0803}}}}' +MaterialIndex: -1 +MeshIndex: -1 +Name: Custom_Model_Bag +Nickname: '2: The Doom of Eztli' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 12.2503014 + posY: 1.47267222 + posZ: 27.98636 + rotX: 359.9201 + rotY: 270.067 + rotZ: 0.0167803522 + scaleX: 2.21 + scaleY: 0.46 + scaleZ: 2.42 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 2 The Doom of Eztli 065ce1/Card Entryway e5f222.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 2 The Doom of Eztli 065ce1/Card Entryway e5f222.yaml new file mode 100644 index 000000000..3286eeacb --- /dev/null +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 2 The Doom of Eztli 065ce1/Card Entryway e5f222.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 272659 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2726': + BackIsHidden: true + BackURL: https://i.imgur.com/RpzEfmS.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393194495/027101CA5C626EBA0E4F76F3F15569329F81DE3C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Ancient. Ruins. +GMNotes: '' +GUID: e5f222 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Entryway +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -17.12 + posY: 1.67707765 + posZ: -0.0299998857 + rotX: 359.9201 + rotY: 269.999817 + rotZ: 0.0168675166 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 2 The Doom of Eztli 065ce1/Card Scenario 964bf2.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 2 The Doom of Eztli 065ce1/Card Scenario 964bf2.yaml new file mode 100644 index 000000000..e17e841e3 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 2 The Doom of Eztli 065ce1/Card Scenario 964bf2.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 272353 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2723': + BackIsHidden: true + BackURL: https://i.imgur.com/RpzEfmS.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393194495/027101CA5C626EBA0E4F76F3F15569329F81DE3C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: The Doom of Eztli +GMNotes: '' +GUID: 964bf2 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Scenario +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.95600057 + posY: 1.65564811 + posZ: -10.4411011 + rotX: 359.919739 + rotY: 270.0006 + rotZ: 0.0168307833 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 2 The Doom of Eztli 065ce1/Card Visual Exploration Reference cf966e.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 2 The Doom of Eztli 065ce1/Card Visual Exploration Reference cf966e.yaml new file mode 100644 index 000000000..59e3758ab --- /dev/null +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 2 The Doom of Eztli 065ce1/Card Visual Exploration Reference cf966e.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 265801 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2658': + BackIsHidden: false + BackURL: https://i.imgur.com/3x23Tmh.jpg + FaceURL: https://i.imgur.com/3x23Tmh.jpg + NumHeight: 2 + NumWidth: 2 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: cf966e +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Visual Exploration Reference +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -13.0159855 + posY: 1.66967666 + posZ: -15.3163052 + rotX: 359.9201 + rotY: 269.999176 + rotZ: 180.016876 + scaleX: 2.0 + scaleY: 1.0 + scaleZ: 2.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 2 The Doom of Eztli 065ce1/Custom_Model_Bag Set-aside a45247.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 2 The Doom of Eztli 065ce1/Custom_Model_Bag Set-aside a45247.yaml new file mode 100644 index 000000000..56d03af4b --- /dev/null +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 2 The Doom of Eztli 065ce1/Custom_Model_Bag Set-aside a45247.yaml @@ -0,0 +1,59 @@ +Autoraise: true +ColorDiffuse: + b: 0.02148666 + g: 0.00100758043 + r: 0.02148666 +ContainedObjects: +- !include 'Custom_Model_Bag Set-aside a45247/Deck Poisoned 72d903.yaml' +- !include 'Custom_Model_Bag Set-aside a45247/Card Chamber of Time 2be806.yaml' +- !include 'Custom_Model_Bag Set-aside a45247/Card Harbinger of Valusia c6b3fc.yaml' +- !include 'Custom_Model_Bag Set-aside a45247/Card Relic of Ages 8df4a7.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 Doom of Eztli +GMNotes: '' +GUID: a45247 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +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.69660091 + posY: 1.55831647 + posZ: 14.2787018 + rotX: 359.955139 + rotY: 224.997986 + rotZ: 0.0686845 + scaleX: 2.0 + scaleY: 2.0 + scaleZ: 2.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 2 The Doom of Eztli 065ce1/Custom_Model_Bag Set-aside a45247/Card Chamber of Time 2be806.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 2 The Doom of Eztli 065ce1/Custom_Model_Bag Set-aside a45247/Card Chamber of Time 2be806.yaml new file mode 100644 index 000000000..f7e5e071e --- /dev/null +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 2 The Doom of Eztli 065ce1/Custom_Model_Bag Set-aside a45247/Card Chamber of Time 2be806.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 12267 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '122': + BackIsHidden: true + BackURL: https://i.imgur.com/RpzEfmS.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393194495/027101CA5C626EBA0E4F76F3F15569329F81DE3C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Forgotten. Ruins. +GMNotes: '' +GUID: 2be806 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Chamber of Time +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 27.1478119 + posY: 2.34983039 + posZ: -5.84402943 + rotX: 359.920135 + rotY: 269.979553 + rotZ: 0.0168974269 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 2 The Doom of Eztli 065ce1/Custom_Model_Bag Set-aside a45247/Card Harbinger of Valusia c6b3fc.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 2 The Doom of Eztli 065ce1/Custom_Model_Bag Set-aside a45247/Card Harbinger of Valusia c6b3fc.yaml new file mode 100644 index 000000000..f6f80db68 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 2 The Doom of Eztli 065ce1/Custom_Model_Bag Set-aside a45247/Card Harbinger of Valusia c6b3fc.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 12261 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '122': + BackIsHidden: true + BackURL: https://i.imgur.com/RpzEfmS.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393194495/027101CA5C626EBA0E4F76F3F15569329F81DE3C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Humanoid. Monster. Serpent. Elite. +GMNotes: '' +GUID: c6b3fc +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Harbinger of Valusia +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 26.3076515 + posY: 2.34827781 + posZ: -2.98612881 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 2 The Doom of Eztli 065ce1/Custom_Model_Bag Set-aside a45247/Card Relic of Ages 8df4a7.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 2 The Doom of Eztli 065ce1/Custom_Model_Bag Set-aside a45247/Card Relic of Ages 8df4a7.yaml new file mode 100644 index 000000000..5b7190c4d --- /dev/null +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 2 The Doom of Eztli 065ce1/Custom_Model_Bag Set-aside a45247/Card Relic of Ages 8df4a7.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 12260 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '122': + BackIsHidden: true + BackURL: https://i.imgur.com/RpzEfmS.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393194495/027101CA5C626EBA0E4F76F3F15569329F81DE3C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Item. Relic. +GMNotes: '' +GUID: 8df4a7 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Relic of Ages +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 27.819952 + posY: 2.3465414 + posZ: -2.4303503 + rotX: 359.919983 + rotY: 270.001617 + rotZ: 0.0168982539 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 2 The Doom of Eztli 065ce1/Custom_Model_Bag Set-aside a45247/Deck Poisoned 72d903.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 2 The Doom of Eztli 065ce1/Custom_Model_Bag Set-aside a45247/Deck Poisoned 72d903.yaml new file mode 100644 index 000000000..5a360c63b --- /dev/null +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 2 The Doom of Eztli 065ce1/Custom_Model_Bag Set-aside a45247/Deck Poisoned 72d903.yaml @@ -0,0 +1,215 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 12331 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Poision. + GMNotes: '' + GUID: 34788c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Poisoned + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 11.4578314 + posY: 1.68947327 + posZ: 17.1507 + rotX: 359.9202 + rotY: 270.003632 + rotZ: 180.0213 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12331 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Poision. + GMNotes: '' + GUID: 1f5327 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Poisoned + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 9.969702 + posY: 1.54690182 + posZ: 16.1472836 + rotX: 359.920135 + rotY: 269.999268 + rotZ: 180.016876 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12331 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Poision. + GMNotes: '' + GUID: 36f746 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Poisoned + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 13.8789606 + posY: 1.54154682 + posZ: 16.4704456 + rotX: 359.920135 + rotY: 269.999756 + rotZ: 180.016876 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12331 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Poision. + GMNotes: '' + GUID: 866eba + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Poisoned + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 12.2225285 + posY: 1.54461586 + posZ: 19.0498734 + rotX: 359.920135 + rotY: 270.000122 + rotZ: 180.016876 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '123': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 12331 +- 12331 +- 12331 +- 12331 +Description: '' +GMNotes: '' +GUID: 72d903 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Poisoned +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 24.8021164 + posY: 2.34937859 + posZ: -11.6310005 + rotX: 0.07986333 + rotY: 270.000031 + rotZ: 0.0335824937 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 2 The Doom of Eztli 065ce1/Custom_Tile The Doom of Eztli 294ec4.ttslua b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 2 The Doom of Eztli 065ce1/Custom_Tile The Doom of Eztli 294ec4.ttslua new file mode 100644 index 000000000..25a046b6a --- /dev/null +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 2 The Doom of Eztli 065ce1/Custom_Tile The Doom of Eztli 294ec4.ttslua @@ -0,0 +1,25 @@ +name = 'The Doom of Eztli' + +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 + +function standaloneClick() + Global.call('fillContainer', {object=self, key=name, mode='standalone'}) +end \ No newline at end of file diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/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 0ff458/Custom_Model_Bag 2 The Doom of Eztli 065ce1/Custom_Tile The Doom of Eztli 294ec4.yaml new file mode 100644 index 000000000..4ad8ab17d --- /dev/null +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 2 The Doom of Eztli 065ce1/Custom_Tile The Doom of Eztli 294ec4.yaml @@ -0,0 +1,42 @@ +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 +GMNotes: '' +GUID: 294ec4 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Tile The Doom of Eztli 294ec4.ttslua' +LuaScriptState: '' +Name: Custom_Tile +Nickname: The Doom of Eztli +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -4.680401 + posY: 1.58365619 + posZ: -14.8422012 + rotX: 359.919739 + rotY: 270.030762 + rotZ: 0.0167920329 + scaleX: 2.2 + scaleY: 1.0 + scaleZ: 2.2 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 2 The Doom of Eztli 065ce1/Deck Act Deck 1210d6.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 2 The Doom of Eztli 065ce1/Deck Act Deck 1210d6.yaml new file mode 100644 index 000000000..096de4fe5 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 2 The Doom of Eztli 065ce1/Deck Act Deck 1210d6.yaml @@ -0,0 +1,172 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 272258 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '122': + BackIsHidden: true + BackURL: https://i.imgur.com/RpzEfmS.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393194495/027101CA5C626EBA0E4F76F3F15569329F81DE3C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 3 + GMNotes: '' + GUID: 89593e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Escape the Ruins + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 20.9742775 + posY: 1.52579248 + posZ: 7.653823 + rotX: -0.00557566667 + rotY: 180.027969 + rotZ: 0.07212971 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 272257 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '122': + BackIsHidden: true + BackURL: https://i.imgur.com/RpzEfmS.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393194495/027101CA5C626EBA0E4F76F3F15569329F81DE3C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 2 + GMNotes: '' + GUID: 6a9acd + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Magic and Science + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 17.5392418 + posY: 1.53090942 + posZ: 7.418527 + rotX: 0.0144970613 + rotY: 180.008881 + rotZ: 0.0789601 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 272256 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '122': + BackIsHidden: true + BackURL: https://i.imgur.com/RpzEfmS.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393194495/027101CA5C626EBA0E4F76F3F15569329F81DE3C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 1 + GMNotes: '' + GUID: 87937f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Into the Ruins + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 17.53083 + posY: 1.67148471 + posZ: 7.08296728 + rotX: 0.0060929046 + rotY: 180.0017 + rotZ: 0.06185895 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2722': + BackIsHidden: true + BackURL: https://i.imgur.com/RpzEfmS.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393194495/027101CA5C626EBA0E4F76F3F15569329F81DE3C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 272258 +- 272257 +- 272256 +Description: The Doom of Eztli +GMNotes: '' +GUID: 1210d6 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Act Deck +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.6885 + posY: 1.65499735 + posZ: -5.048501 + rotX: 0.01684583 + rotY: 179.993881 + rotZ: 0.0802592 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 2 The Doom of Eztli 065ce1/Deck Agenda Deck e692a1.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 2 The Doom of Eztli 065ce1/Deck Agenda Deck e692a1.yaml new file mode 100644 index 000000000..fec3ce1d9 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 2 The Doom of Eztli 065ce1/Deck Agenda Deck e692a1.yaml @@ -0,0 +1,129 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 272755 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '122': + BackIsHidden: true + BackURL: https://i.imgur.com/RpzEfmS.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393194495/027101CA5C626EBA0E4F76F3F15569329F81DE3C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 2 + GMNotes: '' + GUID: a5a713 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Temple Warden + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 17.6361237 + posY: 1.529548 + posZ: 3.26793265 + rotX: 0.0141855543 + rotY: 179.9912 + rotZ: 0.0787512362 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 272754 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '122': + BackIsHidden: true + BackURL: https://i.imgur.com/RpzEfmS.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393194495/027101CA5C626EBA0E4F76F3F15569329F81DE3C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 1 + GMNotes: '' + GUID: 2376d1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Something Stirs... + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 17.5913353 + posY: 1.67019665 + posZ: 3.26883125 + rotX: 0.00854187 + rotY: 179.998856 + rotZ: 0.0512899831 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2727': + BackIsHidden: true + BackURL: https://i.imgur.com/RpzEfmS.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393194495/027101CA5C626EBA0E4F76F3F15569329F81DE3C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 272755 +- 272754 +Description: The Doom of Eztli +GMNotes: '' +GUID: e692a1 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Agenda Deck +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.72470021 + posY: 1.66397727 + posZ: 0.373299658 + rotX: 0.0168425925 + rotY: 179.9969 + rotZ: 0.0802613348 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 2 The Doom of Eztli 065ce1/Deck Encounter Deck c4d867.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 2 The Doom of Eztli 065ce1/Deck Encounter Deck c4d867.yaml new file mode 100644 index 000000000..5c1c003be --- /dev/null +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 2 The Doom of Eztli 065ce1/Deck Encounter Deck c4d867.yaml @@ -0,0 +1,1297 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 3622 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: 03a265 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Obscuring Fog + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 15.806448 + posY: 1.85052454 + posZ: 32.29509 + rotX: 359.919922 + rotY: 269.974823 + rotZ: 179.960815 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 278612 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Humanoid. Monster. Serpent. + GMNotes: '' + GUID: 5ef7c7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Brood of Yig + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 13.7089119 + posY: 1.72047341 + posZ: 22.0980377 + rotX: 359.905426 + rotY: 269.907135 + rotZ: 184.248077 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 278612 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Humanoid. Monster. Serpent. + GMNotes: '' + GUID: 61dec3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Brood of Yig + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 13.70224 + posY: 1.797829 + posZ: 22.82678 + rotX: 359.8723 + rotY: 270.029266 + rotZ: 180.668976 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 278612 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Humanoid. Monster. Serpent. + GMNotes: '' + GUID: 7a7539 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Brood of Yig + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 13.6936722 + posY: 1.6035223 + posZ: 23.6322727 + rotX: 359.834961 + rotY: 270.06308 + rotZ: 182.033951 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 278613 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Humanoid. Monster. Serpent. + GMNotes: '' + GUID: 906ef2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Serpent from Yoth + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 13.6822758 + posY: 1.66992009 + posZ: 24.3526478 + rotX: 359.808533 + rotY: 270.032532 + rotZ: 180.256485 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 278614 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Curse. + GMNotes: '' + GUID: 5b28aa + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Curse of Yig + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 13.6776571 + posY: 1.73762047 + posZ: 25.0405121 + rotX: 359.9115 + rotY: 270.095062 + rotZ: 180.90799 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 278614 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Curse. + GMNotes: '' + GUID: c713cd + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Curse of Yig + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 13.6845779 + posY: 1.54799008 + posZ: 25.7952347 + rotX: 359.94986 + rotY: 270.182739 + rotZ: 180.145157 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 278627 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Humanoid. Monster. Serpent. + GMNotes: '' + GUID: 6b107c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Fang of Yig + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 13.6882267 + posY: 1.62154353 + posZ: 26.5129738 + rotX: 0.0621420369 + rotY: 270.0591 + rotZ: 182.1118 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 278627 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Humanoid. Monster. Serpent. + GMNotes: '' + GUID: 15b8ac + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Fang of Yig + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 13.6919708 + posY: 1.716494 + posZ: 27.2024555 + rotX: 0.0595757 + rotY: 269.950043 + rotZ: 185.922577 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 278628 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Curse. + GMNotes: '' + GUID: 9542e8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Snakescourge + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 13.6960773 + posY: 1.854653 + posZ: 27.9044113 + rotX: 0.485570371 + rotY: 270.1671 + rotZ: 188.732178 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 278628 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Curse. + GMNotes: '' + GUID: '660874' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Snakescourge + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 13.7094173 + posY: 1.54552054 + posZ: 28.6975765 + rotX: 359.9222 + rotY: 269.862762 + rotZ: 180.027252 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3622 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: '356046' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Obscuring Fog + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 13.7152653 + posY: 1.74208164 + posZ: 29.4288464 + rotX: 359.993561 + rotY: 269.678955 + rotZ: 179.054825 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 278629 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Power. + GMNotes: '' + GUID: 007882 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Serpent's Call + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 13.70481 + posY: 1.6825273 + posZ: 29.9720612 + rotX: 359.9303 + rotY: 269.95575 + rotZ: 178.3686 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 278620 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Hex. + GMNotes: '' + GUID: 5ae819 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Lost in Time + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 13.71012 + posY: 1.85596478 + posZ: 30.7266445 + rotX: 359.9242 + rotY: 270.0864 + rotZ: 176.758026 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 278620 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Hex. + GMNotes: '' + GUID: 0b6951 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Lost in Time + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 13.6987457 + posY: 1.77389467 + posZ: 31.6118774 + rotX: 359.8707 + rotY: 269.445374 + rotZ: 176.8896 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 278619 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Hex. + GMNotes: '' + GUID: ed5961 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: A Tear in Time + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 13.693799 + posY: 1.69781876 + posZ: 32.3577461 + rotX: 359.8517 + rotY: 269.919067 + rotZ: 177.1136 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 278619 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Hex. + GMNotes: '' + GUID: b2f948 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: A Tear in Time + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 13.7079716 + posY: 1.62943578 + posZ: 33.0001755 + rotX: 0.010430526 + rotY: 270.033966 + rotZ: 179.382278 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3621 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: fb311c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Crypt Chill + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 13.699461 + posY: 1.56158125 + posZ: 33.73215 + rotX: 359.921326 + rotY: 270.1057 + rotZ: 179.25589 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 278619 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Hex. + GMNotes: '' + GUID: 29e1ba + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: A Tear in Time + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 13.6837664 + posY: 1.7905941 + posZ: 34.43357 + rotX: 359.879974 + rotY: 269.54187 + rotZ: 180.0687 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 278617 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Trap. + GMNotes: '' + GUID: 2a4bf1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Final Mistake + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 13.685648 + posY: 1.86786485 + posZ: 35.1491 + rotX: 359.517151 + rotY: 270.118958 + rotZ: 188.1089 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 278617 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Trap. + GMNotes: '' + GUID: fc2fb1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Final Mistake + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 13.6829519 + posY: 1.94290268 + posZ: 35.7729874 + rotX: 359.5334 + rotY: 269.988464 + rotZ: 188.014679 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 278618 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Trap. + GMNotes: '' + GUID: c092e1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Entombed + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 13.6901875 + posY: 1.65321863 + posZ: 36.4719276 + rotX: 359.8726 + rotY: 269.9926 + rotZ: 180.383743 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 278630 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Poison. + GMNotes: '' + GUID: b4f854 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Creeping Poison + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 13.689682 + posY: 1.65134609 + posZ: 37.2095642 + rotX: 359.9268 + rotY: 270.003 + rotZ: 185.493332 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 278630 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Poison. + GMNotes: '' + GUID: 8e8fef + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Creeping Poison + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 13.6858082 + posY: 1.92851424 + posZ: 37.938015 + rotX: 359.930969 + rotY: 270.080444 + rotZ: 175.5382 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 278621 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Omen. Terror. + GMNotes: '' + GUID: 1fbcc6 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ill Omen + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 13.6916475 + posY: 1.56255913 + posZ: 38.71898 + rotX: 359.928864 + rotY: 270.009644 + rotZ: 180.727219 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 278622 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Terror. + GMNotes: '' + GUID: 6e0cb5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ancestral Fear + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 13.696022 + posY: 1.949654 + posZ: 39.4349823 + rotX: 359.942719 + rotY: 270.080048 + rotZ: 174.407028 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 278622 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Terror. + GMNotes: '' + GUID: 6dd1d9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ancestral Fear + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 13.7004852 + posY: 1.86076629 + posZ: 40.13339 + rotX: 359.9605 + rotY: 270.088135 + rotZ: 178.422684 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 278623 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Hazard. + GMNotes: '' + GUID: 866eba + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Deep Dark + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 13.6935682 + posY: 1.68550646 + posZ: 40.9293671 + rotX: 1.86459875 + rotY: 0.0198633987 + rotZ: 179.924881 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 278623 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Hazard. + GMNotes: '' + GUID: 16ec42 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Deep Dark + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 13.6991739 + posY: 1.61262822 + posZ: 41.6429443 + rotX: 1.83762145 + rotY: 359.978973 + rotZ: 179.999054 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2786': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 3622 +- 278612 +- 278612 +- 278612 +- 278613 +- 278614 +- 278614 +- 278627 +- 278627 +- 278628 +- 278628 +- 3622 +- 278629 +- 278620 +- 278620 +- 278619 +- 278619 +- 3621 +- 278619 +- 278617 +- 278617 +- 278618 +- 278630 +- 278630 +- 278621 +- 278622 +- 278622 +- 278623 +- 278623 +Description: The Doom of Eztli +GMNotes: '' +GUID: c4d867 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Encounter Deck +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.92770076 + posY: 1.76638043 + posZ: 5.757101 + rotX: 359.919739 + rotY: 270.002258 + rotZ: 180.01683 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 2 The Doom of Eztli 065ce1/Deck Exploration Deck be9001.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 2 The Doom of Eztli 065ce1/Deck Exploration Deck be9001.yaml new file mode 100644 index 000000000..5fbfe88d2 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 2 The Doom of Eztli 065ce1/Deck Exploration Deck be9001.yaml @@ -0,0 +1,487 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 278518 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Trap. + GMNotes: '' + GUID: 866eba + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Entombed + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 6.36193371 + posY: 1.55296516 + posZ: 19.6589336 + rotX: 359.920135 + rotY: 270.000061 + rotZ: 180.016876 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 278523 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Hazard. + GMNotes: '' + GUID: 609c9e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Deep Dark + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 6.24254274 + posY: 1.61205041 + posZ: 16.8414879 + rotX: 357.721771 + rotY: 270.011353 + rotZ: 180.0193 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 272466 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '122': + BackIsHidden: true + BackURL: https://i.imgur.com/RpzEfmS.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393194495/027101CA5C626EBA0E4F76F3F15569329F81DE3C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Ancient. Ruins. + GMNotes: '' + GUID: 43dc89 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Secret Passage + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 13.7512875 + posY: 1.53944254 + posZ: 8.719887 + rotX: 359.920135 + rotY: 270.000031 + rotZ: 180.016876 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 272465 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '122': + BackIsHidden: true + BackURL: https://i.imgur.com/RpzEfmS.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393194495/027101CA5C626EBA0E4F76F3F15569329F81DE3C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Ancient. Ruins. + GMNotes: '' + GUID: fbe6e8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Underground Ruins + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 10.1865339 + posY: 1.54456449 + posZ: 9.236705 + rotX: 359.920135 + rotY: 270.000061 + rotZ: 180.016876 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 272464 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '122': + BackIsHidden: true + BackURL: https://i.imgur.com/RpzEfmS.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393194495/027101CA5C626EBA0E4F76F3F15569329F81DE3C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Ancient. Ruins. + GMNotes: '' + GUID: 70904c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Burial Pit + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 10.1905727 + posY: 1.5453366 + posZ: 11.877697 + rotX: 359.920135 + rotY: 270.000031 + rotZ: 180.016876 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 272462 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '122': + BackIsHidden: true + BackURL: https://i.imgur.com/RpzEfmS.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393194495/027101CA5C626EBA0E4F76F3F15569329F81DE3C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Ancient. Ruins. + GMNotes: '' + GUID: 58bf8d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ancient Hall + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 14.0102024 + posY: 1.53996265 + posZ: 11.7115736 + rotX: 359.920135 + rotY: 270.000061 + rotZ: 180.016876 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 278517 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Trap. + GMNotes: '' + GUID: 2a4bf1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Final Mistake + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 10.0720034 + posY: 1.54742432 + posZ: 18.40666 + rotX: 359.920135 + rotY: 270.0001 + rotZ: 180.016861 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3621 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: b78c3b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Crypt Chill + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 9.948489 + posY: 1.54666245 + posZ: 15.2343493 + rotX: 359.920135 + rotY: 270.000031 + rotZ: 180.016876 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 272463 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '122': + BackIsHidden: true + BackURL: https://i.imgur.com/RpzEfmS.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393194495/027101CA5C626EBA0E4F76F3F15569329F81DE3C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Ancient. Ruins. + GMNotes: '' + GUID: da2655 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Grand Chamber + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 14.228734 + posY: 1.54077959 + posZ: 15.5206165 + rotX: 359.9201 + rotY: 270.01593 + rotZ: 180.016846 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 278521 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Omen. Terror. + GMNotes: '' + GUID: e7fd35 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ill Omen + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 13.7845449 + posY: 1.54221225 + posZ: 18.2831421 + rotX: 359.920135 + rotY: 270.000061 + rotZ: 180.016876 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2724': + BackIsHidden: true + BackURL: https://i.imgur.com/RpzEfmS.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393194495/027101CA5C626EBA0E4F76F3F15569329F81DE3C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + '2785': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 278518 +- 278523 +- 272466 +- 272465 +- 272464 +- 272462 +- 278517 +- 3621 +- 272463 +- 278521 +Description: The Doom of Eztli +GMNotes: '' +GUID: be9001 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Exploration Deck +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -12.6100454 + posY: 1.6777637 + posZ: 7.51686 + rotX: 359.9201 + rotY: 270.000031 + rotZ: 180.016876 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 3 Threads of Fate 11f5c8.ttslua b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 3 Threads of Fate 11f5c8.ttslua new file mode 100644 index 000000000..54d591927 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 3 Threads of Fate 11f5c8.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.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 Forgotten Age 0ff458/Custom_Model_Bag 3 Threads of Fate 11f5c8.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 3 Threads of Fate 11f5c8.yaml new file mode 100644 index 000000000..3c23147d0 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 3 Threads of Fate 11f5c8.yaml @@ -0,0 +1,90 @@ +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 3 Threads of Fate 11f5c8/Custom_Model_Bag Set-aside a45247.yaml' +- !include 'Custom_Model_Bag 3 Threads of Fate 11f5c8/Deck Encouter Deck 2a0b69.yaml' +- !include 'Custom_Model_Bag 3 Threads of Fate 11f5c8/Deck Agenda Deck ea713e.yaml' +- !include 'Custom_Model_Bag 3 Threads of Fate 11f5c8/Deck Act cd 02aa53.yaml' +- !include 'Custom_Model_Bag 3 Threads of Fate 11f5c8/Deck Act 3 ef 1f183b.yaml' +- !include 'Custom_Model_Bag 3 Threads of Fate 11f5c8/Deck Act ab 187b63.yaml' +- !include 'Custom_Model_Bag 3 Threads of Fate 11f5c8/Card Scenario 6c4c60.yaml' +- !include 'Custom_Model_Bag 3 Threads of Fate 11f5c8/Custom_Tile Threads of Fate + 7a95f6.yaml' +- !include 'Custom_Model_Bag 3 Threads of Fate 11f5c8/Card Curiositie Shoppe fbfaec.yaml' +- !include 'Custom_Model_Bag 3 Threads of Fate 11f5c8/Custom_Tile 061a07.yaml' +- !include 'Custom_Model_Bag 3 Threads of Fate 11f5c8/Custom_Tile 7234af.yaml' +- !include 'Custom_Model_Bag 3 Threads of Fate 11f5c8/Card Miskatonic University a5509c.yaml' +- !include 'Custom_Model_Bag 3 Threads of Fate 11f5c8/Card Northside f1a25d.yaml' +- !include 'Custom_Model_Bag 3 Threads of Fate 11f5c8/Custom_Tile 5789a0.yaml' +- !include 'Custom_Model_Bag 3 Threads of Fate 11f5c8/Custom_Tile adebd8.yaml' +- !include 'Custom_Model_Bag 3 Threads of Fate 11f5c8/Custom_Tile 99909c.yaml' +- !include 'Custom_Model_Bag 3 Threads of Fate 11f5c8/Card Rivertown 784ebd.yaml' +- !include 'Custom_Model_Bag 3 Threads of Fate 11f5c8/Card Downtown 0ef190.yaml' +- !include 'Custom_Model_Bag 3 Threads of Fate 11f5c8/Custom_Tile 07f90c.yaml' +- !include 'Custom_Model_Bag 3 Threads of Fate 11f5c8/Card Easttown 292569.yaml' +- !include 'Custom_Model_Bag 3 Threads of Fate 11f5c8/Custom_Tile 34e74c.yaml' +- !include 'Custom_Model_Bag 3 Threads of Fate 11f5c8/Card Velma''s Diner 1568bc.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/829135118403839974/CC6146930DEE648CB01668F72A0B5026F8471375/ + MaterialIndex: 3 + MeshURL: https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj + NormalURL: '' + TypeIndex: 6 +Description: The Forgotten Age +GMNotes: '' +GUID: 11f5c8 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Model_Bag 3 Threads of Fate 11f5c8.ttslua' +LuaScriptState: '{"ml":{"02aa53":{"lock":false,"pos":{"x":-2.6886,"y":1.6372,"z":-5.0485},"rot":{"x":0.0168,"y":179.9936,"z":0.0803}},"061a07":{"lock":false,"pos":{"x":-20.4536,"y":1.61,"z":-0.1113},"rot":{"x":0.0799,"y":89.9883,"z":359.9831}},"07f90c":{"lock":false,"pos":{"x":-27.1247,"y":1.6171,"z":-7.6321},"rot":{"x":359.9201,"y":270.0081,"z":0.0169}},"0ef190":{"lock":false,"pos":{"x":-23.6787,"y":1.684,"z":-7.7},"rot":{"x":359.9201,"y":269.9941,"z":0.0169}},"1568bc":{"lock":false,"pos":{"x":-36.7733,"y":1.7022,"z":-7.7},"rot":{"x":359.9201,"y":269.9987,"z":0.0169}},"187b63":{"lock":false,"pos":{"x":-5.2163,"y":1.7408,"z":-5.0999},"rot":{"x":0.0169,"y":179.9892,"z":0.0802}},"1f183b":{"lock":false,"pos":{"x":-0.0422,"y":1.6336,"z":-4.8813},"rot":{"x":0.0168,"y":179.9948,"z":0.0803}},"292569":{"lock":false,"pos":{"x":-30.226,"y":1.6931,"z":-7.7001},"rot":{"x":359.9201,"y":269.9972,"z":0.0169}},"2a0b69":{"lock":false,"pos":{"x":-3.9277,"y":1.7717,"z":5.7572},"rot":{"x":359.9197,"y":270.011,"z":180.0168}},"34e74c":{"lock":false,"pos":{"x":-33.506,"y":1.626,"z":-7.4641},"rot":{"x":359.9201,"y":270.002,"z":0.0169}},"5789a0":{"lock":false,"pos":{"x":-23.6765,"y":1.6134,"z":-3.83},"rot":{"x":359.9832,"y":0.0179,"z":359.9201}},"6c4c60":{"lock":false,"pos":{"x":-3.956,"y":1.6556,"z":-10.4412},"rot":{"x":359.9197,"y":269.998,"z":0.0168}},"7234af":{"lock":false,"pos":{"x":-23.6765,"y":1.6157,"z":3.86},"rot":{"x":359.9832,"y":0.0184,"z":359.92}},"784ebd":{"lock":false,"pos":{"x":-30.2243,"y":1.6954,"z":-0.03},"rot":{"x":359.9201,"y":269.9987,"z":0.0169}},"7a95f6":{"lock":false,"pos":{"x":-3.9866,"y":1.5827,"z":-14.6355},"rot":{"x":359.9197,"y":270.0305,"z":0.0168}},"99909c":{"lock":false,"pos":{"x":-30.2243,"y":1.6225,"z":-3.83},"rot":{"x":359.9832,"y":0.0181,"z":359.9201}},"a45247":{"lock":false,"pos":{"x":1.6966,"y":1.5583,"z":14.2787},"rot":{"x":359.9551,"y":224.998,"z":0.0687}},"a5509c":{"lock":false,"pos":{"x":-23.6766,"y":1.6885,"z":7.57},"rot":{"x":359.9201,"y":269.9997,"z":0.0169}},"adebd8":{"lock":false,"pos":{"x":-27.4881,"y":1.621,"z":4.1396},"rot":{"x":359.9554,"y":225.0122,"z":0.0684}},"ea713e":{"lock":false,"pos":{"x":-2.7247,"y":1.6566,"z":0.3733},"rot":{"x":0.0168,"y":180.0257,"z":0.0803}},"f1a25d":{"lock":false,"pos":{"x":-23.6766,"y":1.6862,"z":-0.03},"rot":{"x":359.9201,"y":270.001,"z":0.0169}},"fbfaec":{"lock":false,"pos":{"x":-17.1199,"y":1.6771,"z":-0.0301},"rot":{"x":359.9201,"y":270.0056,"z":0.0169}}}}' +MaterialIndex: -1 +MeshIndex: -1 +Name: Custom_Model_Bag +Nickname: '3: Threads of Fate' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 12.2498751 + posY: 1.47031677 + posZ: 19.9864311 + rotX: 359.9201 + rotY: 270.019684 + rotZ: 0.0168462433 + scaleX: 2.21 + scaleY: 0.46 + scaleZ: 2.42 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 3 Threads of Fate 11f5c8/Card Curiositie Shoppe fbfaec.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 3 Threads of Fate 11f5c8/Card Curiositie Shoppe fbfaec.yaml new file mode 100644 index 000000000..1ff5f9936 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 3 Threads of Fate 11f5c8/Card Curiositie Shoppe fbfaec.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 278539 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2785': + BackIsHidden: true + BackURL: https://i.imgur.com/No3PMAy.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159325148/B25E4760A8FFC5A71DFA1DE038D6CA8A74C7AE0C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Arkham. +GMNotes: '' +GUID: fbfaec +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Curiositie Shoppe +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -17.1198978 + posY: 1.67707753 + posZ: -0.030100286 + rotX: 359.9201 + rotY: 270.0056 + rotZ: 0.0168678164 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 3 Threads of Fate 11f5c8/Card Downtown 0ef190.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 3 Threads of Fate 11f5c8/Card Downtown 0ef190.yaml new file mode 100644 index 000000000..44208666e --- /dev/null +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 3 Threads of Fate 11f5c8/Card Downtown 0ef190.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 3522 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '35': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/87094793642556387/D32E204C37FB97BB2F7B5A72C1CB867181533D5C/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642555419/98C6688D4F868ABA23FF62848E773F55962361C5/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 0ef190 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Downtown +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -23.6786976 + posY: 1.683965 + posZ: -7.70000029 + rotX: 359.9201 + rotY: 269.99408 + rotZ: 0.0168842524 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 3 Threads of Fate 11f5c8/Card Easttown 292569.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 3 Threads of Fate 11f5c8/Card Easttown 292569.yaml new file mode 100644 index 000000000..86bf13136 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 3 Threads of Fate 11f5c8/Card Easttown 292569.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 3524 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '35': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/87094793642556387/D32E204C37FB97BB2F7B5A72C1CB867181533D5C/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642555419/98C6688D4F868ABA23FF62848E773F55962361C5/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: '292569' +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Easttown +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -30.226 + posY: 1.69309461 + posZ: -7.700101 + rotX: 359.9201 + rotY: 269.997162 + rotZ: 0.0168802347 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 3 Threads of Fate 11f5c8/Card Miskatonic University a5509c.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 3 Threads of Fate 11f5c8/Card Miskatonic University a5509c.yaml new file mode 100644 index 000000000..0871963b6 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 3 Threads of Fate 11f5c8/Card Miskatonic University a5509c.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 3521 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '35': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/87094793642556387/D32E204C37FB97BB2F7B5A72C1CB867181533D5C/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642555419/98C6688D4F868ABA23FF62848E773F55962361C5/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: a5509c +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Miskatonic University +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -23.6765976 + posY: 1.68845844 + posZ: 7.56999969 + rotX: 359.9201 + rotY: 269.9997 + rotZ: 0.0168759748 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 3 Threads of Fate 11f5c8/Card Northside f1a25d.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 3 Threads of Fate 11f5c8/Card Northside f1a25d.yaml new file mode 100644 index 000000000..cf0da3c87 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 3 Threads of Fate 11f5c8/Card Northside f1a25d.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 3526 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '35': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/87094793642556387/D32E204C37FB97BB2F7B5A72C1CB867181533D5C/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642555419/98C6688D4F868ABA23FF62848E773F55962361C5/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: f1a25d +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Northside +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -23.6766 + posY: 1.68622053 + posZ: -0.0300005078 + rotX: 359.9201 + rotY: 270.001038 + rotZ: 0.0168748144 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 3 Threads of Fate 11f5c8/Card Rivertown 784ebd.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 3 Threads of Fate 11f5c8/Card Rivertown 784ebd.yaml new file mode 100644 index 000000000..2aefc57ad --- /dev/null +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 3 Threads of Fate 11f5c8/Card Rivertown 784ebd.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 3517 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '35': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/87094793642556387/D32E204C37FB97BB2F7B5A72C1CB867181533D5C/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642555419/98C6688D4F868ABA23FF62848E773F55962361C5/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 784ebd +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Rivertown +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -30.2243 + posY: 1.69535089 + posZ: -0.0300004631 + rotX: 359.9201 + rotY: 269.998657 + rotZ: 0.0168783125 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 3 Threads of Fate 11f5c8/Card Scenario 6c4c60.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 3 Threads of Fate 11f5c8/Card Scenario 6c4c60.yaml new file mode 100644 index 000000000..2cdd3de7b --- /dev/null +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 3 Threads of Fate 11f5c8/Card Scenario 6c4c60.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 272710 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2727': + BackIsHidden: true + BackURL: https://i.imgur.com/No3PMAy.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159325148/B25E4760A8FFC5A71DFA1DE038D6CA8A74C7AE0C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Threads of Fate +GMNotes: '' +GUID: 6c4c60 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Scenario +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.95600057 + posY: 1.655648 + posZ: -10.4412022 + rotX: 359.919739 + rotY: 269.998 + rotZ: 0.0168443732 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 3 Threads of Fate 11f5c8/Card Velma's Diner 1568bc.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 3 Threads of Fate 11f5c8/Card Velma's Diner 1568bc.yaml new file mode 100644 index 000000000..83c7a4917 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 3 Threads of Fate 11f5c8/Card Velma's Diner 1568bc.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 272338 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2723': + BackIsHidden: true + BackURL: https://i.imgur.com/No3PMAy.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159325148/B25E4760A8FFC5A71DFA1DE038D6CA8A74C7AE0C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Arkham. +GMNotes: '' +GUID: 1568bc +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Velma's Diner +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -36.7733 + posY: 1.70222449 + posZ: -7.70000124 + rotX: 359.9201 + rotY: 269.998749 + rotZ: 0.0168765951 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 3 Threads of Fate 11f5c8/Custom_Model_Bag Set-aside a45247.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 3 Threads of Fate 11f5c8/Custom_Model_Bag Set-aside a45247.yaml new file mode 100644 index 000000000..69ee558ee --- /dev/null +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 3 Threads of Fate 11f5c8/Custom_Model_Bag Set-aside a45247.yaml @@ -0,0 +1,59 @@ +Autoraise: true +ColorDiffuse: + b: 0.02148666 + g: 0.00100758043 + r: 0.02148666 +ContainedObjects: +- !include 'Custom_Model_Bag Set-aside a45247/Card Expedition Journal 891282.yaml' +- !include 'Custom_Model_Bag Set-aside a45247/Card Ichtaca d6cd01.yaml' +- !include 'Custom_Model_Bag Set-aside a45247/Card Town Hall 7c92d8.yaml' +- !include 'Custom_Model_Bag Set-aside a45247/Card Alejandro Vela 1b9dbf.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: Threads of Fate +GMNotes: '' +GUID: a45247 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +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.69660091 + posY: 1.55831659 + posZ: 14.2787018 + rotX: 359.955139 + rotY: 224.998 + rotZ: 0.06867385 + scaleX: 2.0 + scaleY: 2.0 + scaleZ: 2.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 3 Threads of Fate 11f5c8/Custom_Model_Bag Set-aside a45247/Card Alejandro Vela 1b9dbf.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 3 Threads of Fate 11f5c8/Custom_Model_Bag Set-aside a45247/Card Alejandro Vela 1b9dbf.yaml new file mode 100644 index 000000000..d1b04538d --- /dev/null +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 3 Threads of Fate 11f5c8/Custom_Model_Bag Set-aside a45247/Card Alejandro Vela 1b9dbf.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 12250 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '122': + BackIsHidden: true + BackURL: https://i.imgur.com/RpzEfmS.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393194495/027101CA5C626EBA0E4F76F3F15569329F81DE3C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Ally. Wayfarer. +GMNotes: '' +GUID: 1b9dbf +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Alejandro Vela +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 42.04668 + posY: 3.54093671 + posZ: -14.5910444 + rotX: 359.919739 + rotY: 269.984131 + rotZ: 0.0170255117 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 3 Threads of Fate 11f5c8/Custom_Model_Bag Set-aside a45247/Card Expedition Journal 891282.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 3 Threads of Fate 11f5c8/Custom_Model_Bag Set-aside a45247/Card Expedition Journal 891282.yaml new file mode 100644 index 000000000..41f511ce9 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 3 Threads of Fate 11f5c8/Custom_Model_Bag Set-aside a45247/Card Expedition Journal 891282.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 12245 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '122': + BackIsHidden: true + BackURL: https://i.imgur.com/No3PMAy.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159325148/B25E4760A8FFC5A71DFA1DE038D6CA8A74C7AE0C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Item. Tome. +GMNotes: '' +GUID: '891282' +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Expedition Journal +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 8.444989 + posY: 3.4894433 + posZ: -20.73397 + rotX: 359.920135 + rotY: 269.999939 + rotZ: 0.016866453 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 3 Threads of Fate 11f5c8/Custom_Model_Bag Set-aside a45247/Card Ichtaca d6cd01.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 3 Threads of Fate 11f5c8/Custom_Model_Bag Set-aside a45247/Card Ichtaca d6cd01.yaml new file mode 100644 index 000000000..5c58ca916 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 3 Threads of Fate 11f5c8/Custom_Model_Bag Set-aside a45247/Card Ichtaca d6cd01.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 12244 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '122': + BackIsHidden: true + BackURL: https://i.imgur.com/No3PMAy.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159325148/B25E4760A8FFC5A71DFA1DE038D6CA8A74C7AE0C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: The forgotten Guardian +GMNotes: '' +GUID: d6cd01 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Ichtaca +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 36.9891548 + posY: 4.39081335 + posZ: -14.1146631 + rotX: 359.920135 + rotY: 269.999573 + rotZ: 0.01686621 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 3 Threads of Fate 11f5c8/Custom_Model_Bag Set-aside a45247/Card Town Hall 7c92d8.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 3 Threads of Fate 11f5c8/Custom_Model_Bag Set-aside a45247/Card Town Hall 7c92d8.yaml new file mode 100644 index 000000000..5732a7710 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 3 Threads of Fate 11f5c8/Custom_Model_Bag Set-aside a45247/Card Town Hall 7c92d8.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 12240 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '122': + BackIsHidden: true + BackURL: https://i.imgur.com/No3PMAy.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159325148/B25E4760A8FFC5A71DFA1DE038D6CA8A74C7AE0C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Arkham. +GMNotes: '' +GUID: 7c92d8 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Town Hall +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.252224 + posY: 2.32003021 + posZ: -23.8836956 + rotX: 359.920135 + rotY: 269.9999 + rotZ: 0.01686557 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 3 Threads of Fate 11f5c8/Custom_Tile 061a07.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 3 Threads of Fate 11f5c8/Custom_Tile 061a07.yaml new file mode 100644 index 000000000..ef728a725 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 3 Threads of Fate 11f5c8/Custom_Tile 061a07.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 061a07 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.4536 + posY: 1.60998881 + posZ: -0.11130029 + rotX: 0.07989101 + rotY: 89.98829 + rotZ: 359.9831 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 3 Threads of Fate 11f5c8/Custom_Tile 07f90c.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 3 Threads of Fate 11f5c8/Custom_Tile 07f90c.yaml new file mode 100644 index 000000000..f07ef18d0 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 3 Threads of Fate 11f5c8/Custom_Tile 07f90c.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 07f90c +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.1247 + posY: 1.61707652 + posZ: -7.63210058 + rotX: 359.9201 + rotY: 270.008057 + rotZ: 0.0168887619 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 3 Threads of Fate 11f5c8/Custom_Tile 34e74c.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 3 Threads of Fate 11f5c8/Custom_Tile 34e74c.yaml new file mode 100644 index 000000000..d4b351b7c --- /dev/null +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 3 Threads of Fate 11f5c8/Custom_Tile 34e74c.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 34e74c +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.506 + posY: 1.62602425 + posZ: -7.46410131 + rotX: 359.9201 + rotY: 270.002 + rotZ: 0.0168992523 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 3 Threads of Fate 11f5c8/Custom_Tile 5789a0.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 3 Threads of Fate 11f5c8/Custom_Tile 5789a0.yaml new file mode 100644 index 000000000..ebe050c05 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 3 Threads of Fate 11f5c8/Custom_Tile 5789a0.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 5789a0 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.6765 + posY: 1.613388 + posZ: -3.83 + rotX: 359.983154 + rotY: 0.01791852 + rotZ: 359.920074 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 3 Threads of Fate 11f5c8/Custom_Tile 7234af.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 3 Threads of Fate 11f5c8/Custom_Tile 7234af.yaml new file mode 100644 index 000000000..4b6d1cc0d --- /dev/null +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 3 Threads of Fate 11f5c8/Custom_Tile 7234af.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 7234af +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.6765 + posY: 1.61565232 + posZ: 3.86000013 + rotX: 359.983154 + rotY: 0.018422924 + rotZ: 359.920044 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 3 Threads of Fate 11f5c8/Custom_Tile 99909c.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 3 Threads of Fate 11f5c8/Custom_Tile 99909c.yaml new file mode 100644 index 000000000..8be2ebd4f --- /dev/null +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 3 Threads of Fate 11f5c8/Custom_Tile 99909c.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 99909c +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.62251842 + posZ: -3.83 + rotX: 359.983154 + rotY: 0.018120816 + rotZ: 359.920074 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 3 Threads of Fate 11f5c8/Custom_Tile adebd8.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 3 Threads of Fate 11f5c8/Custom_Tile adebd8.yaml new file mode 100644 index 000000000..4f1dcd129 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 3 Threads of Fate 11f5c8/Custom_Tile adebd8.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: adebd8 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.4881 + posY: 1.62104952 + posZ: 4.13960028 + rotX: 359.9554 + rotY: 225.012192 + rotZ: 0.06839469 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 3 Threads of Fate 11f5c8/Custom_Tile Threads of Fate 7a95f6.ttslua b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 3 Threads of Fate 11f5c8/Custom_Tile Threads of Fate 7a95f6.ttslua new file mode 100644 index 000000000..aa256f497 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 3 Threads of Fate 11f5c8/Custom_Tile Threads of Fate 7a95f6.ttslua @@ -0,0 +1,25 @@ +name = 'Threads of Fate' + +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 + +function standaloneClick() + Global.call('fillContainer', {object=self, key=name, mode='standalone'}) +end \ No newline at end of file diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 3 Threads of Fate 11f5c8/Custom_Tile Threads of Fate 7a95f6.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 3 Threads of Fate 11f5c8/Custom_Tile Threads of Fate 7a95f6.yaml new file mode 100644 index 000000000..0db6c12d7 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 3 Threads of Fate 11f5c8/Custom_Tile Threads of Fate 7a95f6.yaml @@ -0,0 +1,42 @@ +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 +GMNotes: '' +GUID: 7a95f6 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Tile Threads of Fate 7a95f6.ttslua' +LuaScriptState: '' +Name: Custom_Tile +Nickname: Threads of Fate +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.9866 + posY: 1.58274508 + posZ: -14.6355047 + rotX: 359.919739 + rotY: 270.030457 + rotZ: 0.0167952012 + scaleX: 2.2 + scaleY: 1.0 + scaleZ: 2.2 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 3 Threads of Fate 11f5c8/Deck Act 3 ef 1f183b.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 3 Threads of Fate 11f5c8/Deck Act 3 ef 1f183b.yaml new file mode 100644 index 000000000..1ac536408 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 3 Threads of Fate 11f5c8/Deck Act 3 ef 1f183b.yaml @@ -0,0 +1,387 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 272637 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '122': + BackIsHidden: true + BackURL: https://i.imgur.com/No3PMAy.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159325148/B25E4760A8FFC5A71DFA1DE038D6CA8A74C7AE0C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 3e + GMNotes: '' + GUID: d27333 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Brother Is Revealed + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 9.552063 + posY: 1.53898811 + posZ: -2.93501186 + rotX: 0.0137467552 + rotY: 179.999619 + rotZ: 0.07853291 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 272636 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '122': + BackIsHidden: true + BackURL: https://i.imgur.com/No3PMAy.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159325148/B25E4760A8FFC5A71DFA1DE038D6CA8A74C7AE0C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 3e + GMNotes: '' + GUID: 054826 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Strange Occurrences + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 9.249267 + posY: 1.67965424 + posZ: -2.69725323 + rotX: 0.0145516861 + rotY: 180.000748 + rotZ: 0.0453580655 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 272633 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '122': + BackIsHidden: true + BackURL: https://i.imgur.com/No3PMAy.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159325148/B25E4760A8FFC5A71DFA1DE038D6CA8A74C7AE0C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 2e + GMNotes: '' + GUID: 3f9aaf + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Cave of Darkness + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 11.79353 + posY: 1.53761852 + posZ: -3.0093956 + rotX: 0.09115311 + rotY: 180.000809 + rotZ: 0.09489679 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 272632 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '122': + BackIsHidden: true + BackURL: https://i.imgur.com/No3PMAy.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159325148/B25E4760A8FFC5A71DFA1DE038D6CA8A74C7AE0C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 2e + GMNotes: '' + GUID: 926c99 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Cave of Darkness + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 11.6614723 + posY: 1.68644738 + posZ: -2.6914463 + rotX: 359.947418 + rotY: 180.003357 + rotZ: 0.273162454 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 272634 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '122': + BackIsHidden: true + BackURL: https://i.imgur.com/No3PMAy.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159325148/B25E4760A8FFC5A71DFA1DE038D6CA8A74C7AE0C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 2e + GMNotes: '' + GUID: 1a31dd + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Strange Relics + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 14.4925146 + posY: 1.53204739 + posZ: -3.18631721 + rotX: 0.014882517 + rotY: 179.999741 + rotZ: 0.0789640844 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 272635 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '122': + BackIsHidden: true + BackURL: https://i.imgur.com/No3PMAy.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159325148/B25E4760A8FFC5A71DFA1DE038D6CA8A74C7AE0C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 2e + GMNotes: '' + GUID: c8b7a2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Strange Relics + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 14.3872938 + posY: 1.672596 + posZ: -2.71494627 + rotX: 0.0110301636 + rotY: 180.000458 + rotZ: 0.0673584938 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 272631 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '122': + BackIsHidden: true + BackURL: https://i.imgur.com/No3PMAy.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159325148/B25E4760A8FFC5A71DFA1DE038D6CA8A74C7AE0C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 1e + GMNotes: '' + GUID: 3757b7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Guardian's Inquiry + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 17.8795986 + posY: 1.52719247 + posZ: -3.60169554 + rotX: 0.0143925976 + rotY: 179.999741 + rotZ: 0.07879912 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 272630 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '122': + BackIsHidden: true + BackURL: https://i.imgur.com/No3PMAy.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159325148/B25E4760A8FFC5A71DFA1DE038D6CA8A74C7AE0C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 1e + GMNotes: '' + GUID: 28ebe1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Trial of the Huntress + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 17.75559 + posY: 1.66777039 + posZ: -3.24657822 + rotX: 0.0133957956 + rotY: 180.000381 + rotZ: 0.06486681 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2726': + BackIsHidden: true + BackURL: https://i.imgur.com/No3PMAy.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159325148/B25E4760A8FFC5A71DFA1DE038D6CA8A74C7AE0C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 272637 +- 272636 +- 272633 +- 272632 +- 272634 +- 272635 +- 272631 +- 272630 +Description: Threads of Fate +GMNotes: '' +GUID: 1f183b +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Act 3 e/f +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -0.0421996 + posY: 1.63355923 + posZ: -4.8813 + rotX: 0.01684259 + rotY: 179.994751 + rotZ: 0.0802555755 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 3 Threads of Fate 11f5c8/Deck Act ab 187b63.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 3 Threads of Fate 11f5c8/Deck Act ab 187b63.yaml new file mode 100644 index 000000000..a3c89f3b0 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 3 Threads of Fate 11f5c8/Deck Act ab 187b63.yaml @@ -0,0 +1,387 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 272421 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '122': + BackIsHidden: true + BackURL: https://i.imgur.com/No3PMAy.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159325148/B25E4760A8FFC5A71DFA1DE038D6CA8A74C7AE0C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 3a + GMNotes: '' + GUID: a69973 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Recover the Relic + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 13.0192356 + posY: 1.53489184 + posZ: -0.601639032 + rotX: 0.0164665822 + rotY: 179.999908 + rotZ: 0.07964289 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 272420 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '122': + BackIsHidden: true + BackURL: https://i.imgur.com/No3PMAy.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159325148/B25E4760A8FFC5A71DFA1DE038D6CA8A74C7AE0C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 3a + GMNotes: '' + GUID: adcbb0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Find the Relic + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 12.9562569 + posY: 1.675601 + posZ: -0.305101067 + rotX: 0.00540494267 + rotY: 179.9997 + rotZ: 0.07706478 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 272417 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '122': + BackIsHidden: true + BackURL: https://i.imgur.com/No3PMAy.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159325148/B25E4760A8FFC5A71DFA1DE038D6CA8A74C7AE0C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 2a + GMNotes: '' + GUID: 6ffd6d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: At the Exhibit + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.1455135 + posY: 1.53084791 + posZ: 1.02999556 + rotX: 0.0148179624 + rotY: 180.014053 + rotZ: 0.07519608 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 272419 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '122': + BackIsHidden: true + BackURL: https://i.imgur.com/No3PMAy.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159325148/B25E4760A8FFC5A71DFA1DE038D6CA8A74C7AE0C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 2a + GMNotes: '' + GUID: f7b446 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Harlan's Curse + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.03892 + posY: 1.67141306 + posZ: 1.06383777 + rotX: 0.03363227 + rotY: 180.031876 + rotZ: 0.05948886 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 272416 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '122': + BackIsHidden: true + BackURL: https://i.imgur.com/No3PMAy.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159325148/B25E4760A8FFC5A71DFA1DE038D6CA8A74C7AE0C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 2a + GMNotes: '' + GUID: 029812 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: At the Exhibit + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 20.76428 + posY: 1.5245986 + posZ: 1.08705747 + rotX: 0.0164899267 + rotY: 180.004883 + rotZ: 0.07944611 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 272418 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '122': + BackIsHidden: true + BackURL: https://i.imgur.com/No3PMAy.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159325148/B25E4760A8FFC5A71DFA1DE038D6CA8A74C7AE0C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 2a + GMNotes: '' + GUID: '586028' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Harlan's Curse + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 20.4802628 + posY: 1.66593564 + posZ: 1.50339055 + rotX: 359.9892 + rotY: 179.991165 + rotZ: 0.0650342554 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 272415 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '122': + BackIsHidden: true + BackURL: https://i.imgur.com/No3PMAy.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159325148/B25E4760A8FFC5A71DFA1DE038D6CA8A74C7AE0C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 1a + GMNotes: '' + GUID: a6d241 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Harlan Is in Danger! + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 23.4510746 + posY: 1.52089441 + posZ: 1.20929 + rotX: 0.0167503487 + rotY: 179.9996 + rotZ: 0.0795340538 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 272414 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '122': + BackIsHidden: true + BackURL: https://i.imgur.com/No3PMAy.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159325148/B25E4760A8FFC5A71DFA1DE038D6CA8A74C7AE0C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 1a + GMNotes: '' + GUID: e2806c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Relic is Missing! + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 23.22046 + posY: 1.661715 + posZ: 1.70795751 + rotX: 0.00133004121 + rotY: 180.000137 + rotZ: 0.06815777 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2724': + BackIsHidden: true + BackURL: https://i.imgur.com/No3PMAy.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159325148/B25E4760A8FFC5A71DFA1DE038D6CA8A74C7AE0C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 272421 +- 272420 +- 272417 +- 272419 +- 272416 +- 272418 +- 272415 +- 272414 +Description: Threads of Fate +GMNotes: '' +GUID: 187b63 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Act a/b +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -5.21633959 + posY: 1.74078822 + posZ: -5.09985542 + rotX: 0.0168592054 + rotY: 179.9892 + rotZ: 0.08024839 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 3 Threads of Fate 11f5c8/Deck Act cd 02aa53.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 3 Threads of Fate 11f5c8/Deck Act cd 02aa53.yaml new file mode 100644 index 000000000..899c80a2c --- /dev/null +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 3 Threads of Fate 11f5c8/Deck Act cd 02aa53.yaml @@ -0,0 +1,387 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 272229 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '122': + BackIsHidden: true + BackURL: https://i.imgur.com/No3PMAy.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159325148/B25E4760A8FFC5A71DFA1DE038D6CA8A74C7AE0C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 3c + GMNotes: '' + GUID: c21ad7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Alejandro's Plight + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 13.6250725 + posY: 1.53277516 + posZ: -4.50813866 + rotX: 0.0107580079 + rotY: 180.000214 + rotZ: 0.07781033 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 272228 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '122': + BackIsHidden: true + BackURL: https://i.imgur.com/No3PMAy.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159325148/B25E4760A8FFC5A71DFA1DE038D6CA8A74C7AE0C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 3c + GMNotes: '' + GUID: 14f8f1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Alejandro's Prison + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 13.7458324 + posY: 1.66789 + posZ: -4.535748 + rotX: 0.0195854045 + rotY: 180.000168 + rotZ: 0.07469279 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 272227 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '122': + BackIsHidden: true + BackURL: https://i.imgur.com/No3PMAy.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159325148/B25E4760A8FFC5A71DFA1DE038D6CA8A74C7AE0C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 2c + GMNotes: '' + GUID: 21cd56 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Friends in High Places + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.7634869 + posY: 1.52829683 + posZ: -4.858791 + rotX: 0.0171134938 + rotY: 180.016571 + rotZ: 0.07474506 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 272226 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '122': + BackIsHidden: true + BackURL: https://i.imgur.com/No3PMAy.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159325148/B25E4760A8FFC5A71DFA1DE038D6CA8A74C7AE0C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 2c + GMNotes: '' + GUID: 1588b6 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Friends in High Places + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.56625 + posY: 1.6690743 + posZ: -4.422589 + rotX: 0.0280124433 + rotY: 180.022949 + rotZ: 0.0544671 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 272225 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '122': + BackIsHidden: true + BackURL: https://i.imgur.com/No3PMAy.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159325148/B25E4760A8FFC5A71DFA1DE038D6CA8A74C7AE0C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 2c + GMNotes: '' + GUID: 7edfb0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: At the Station + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 19.4478722 + posY: 1.52468193 + posZ: -4.71229458 + rotX: 0.0142649068 + rotY: 179.999191 + rotZ: 0.0788442641 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 272224 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '122': + BackIsHidden: true + BackURL: https://i.imgur.com/No3PMAy.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159325148/B25E4760A8FFC5A71DFA1DE038D6CA8A74C7AE0C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 2c + GMNotes: '' + GUID: 34409b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: At the Station + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 19.2347183 + posY: 1.66532922 + posZ: -4.386163 + rotX: 0.0131844673 + rotY: 179.999741 + rotZ: 0.056899678 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 272222 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '122': + BackIsHidden: true + BackURL: https://i.imgur.com/No3PMAy.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159325148/B25E4760A8FFC5A71DFA1DE038D6CA8A74C7AE0C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 1c + GMNotes: '' + GUID: 1ee0f0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Search for Alejandro + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 22.2906837 + posY: 1.52066576 + posZ: -4.922313 + rotX: 0.01472353 + rotY: 179.999329 + rotZ: 0.07895376 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 272223 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '122': + BackIsHidden: true + BackURL: https://i.imgur.com/No3PMAy.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159325148/B25E4760A8FFC5A71DFA1DE038D6CA8A74C7AE0C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 1c + GMNotes: '' + GUID: e59778 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Missing Persons + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 22.07975 + posY: 1.66131914 + posZ: -4.505468 + rotX: 0.011646769 + rotY: 180.000137 + rotZ: 0.05788763 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2722': + BackIsHidden: true + BackURL: https://i.imgur.com/No3PMAy.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159325148/B25E4760A8FFC5A71DFA1DE038D6CA8A74C7AE0C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 272229 +- 272228 +- 272227 +- 272226 +- 272225 +- 272224 +- 272222 +- 272223 +Description: Threads of Fate +GMNotes: '' +GUID: 02aa53 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Act c/d +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.68859982 + posY: 1.63721693 + posZ: -5.04850054 + rotX: 0.0168442763 + rotY: 179.9936 + rotZ: 0.0802551 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 3 Threads of Fate 11f5c8/Deck Agenda Deck ea713e.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 3 Threads of Fate 11f5c8/Deck Agenda Deck ea713e.yaml new file mode 100644 index 000000000..504d671ec --- /dev/null +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 3 Threads of Fate 11f5c8/Deck Agenda Deck ea713e.yaml @@ -0,0 +1,172 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 272913 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '122': + BackIsHidden: true + BackURL: https://i.imgur.com/No3PMAy.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159325148/B25E4760A8FFC5A71DFA1DE038D6CA8A74C7AE0C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 3 + GMNotes: '' + GUID: 35fe2f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Hidden Entanglements + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 21.2839222 + posY: 1.52665079 + posZ: 10.9049978 + rotX: 0.0116022779 + rotY: 179.996353 + rotZ: 0.07834647 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 272912 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '122': + BackIsHidden: true + BackURL: https://i.imgur.com/No3PMAy.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159325148/B25E4760A8FFC5A71DFA1DE038D6CA8A74C7AE0C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 2 + GMNotes: '' + GUID: d3d027 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Behind the Curtain + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 21.5493641 + posY: 1.66657627 + posZ: 11.0041924 + rotX: 0.0153606609 + rotY: 179.999374 + rotZ: 0.105749391 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 272911 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '122': + BackIsHidden: true + BackURL: https://i.imgur.com/No3PMAy.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159325148/B25E4760A8FFC5A71DFA1DE038D6CA8A74C7AE0C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 1 + GMNotes: '' + GUID: 0dc453 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Three Fates + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 21.1601372 + posY: 1.68476951 + posZ: 10.8793163 + rotX: 0.0409882031 + rotY: 180.011032 + rotZ: 0.110247135 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2729': + BackIsHidden: true + BackURL: https://i.imgur.com/No3PMAy.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159325148/B25E4760A8FFC5A71DFA1DE038D6CA8A74C7AE0C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 272913 +- 272912 +- 272911 +Description: Threads of Fate +GMNotes: '' +GUID: ea713e +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Agenda Deck +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.72469974 + posY: 1.65664113 + posZ: 0.373300284 + rotX: 0.0167991184 + rotY: 180.025742 + rotZ: 0.0802655444 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 3 Threads of Fate 11f5c8/Deck Encouter Deck 2a0b69.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 3 Threads of Fate 11f5c8/Deck Encouter Deck 2a0b69.yaml new file mode 100644 index 000000000..da5fd8d2e --- /dev/null +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 3 Threads of Fate 11f5c8/Deck Encouter Deck 2a0b69.yaml @@ -0,0 +1,1347 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 3627 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: dd287a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: On Wings of Darkness + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 15.2792578 + posY: 1.68537843 + posZ: 26.4769516 + rotX: 359.91864 + rotY: 269.99823 + rotZ: 180.0236 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3627 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: b06ff1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: On Wings of Darkness + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 14.7774372 + posY: 1.628057 + posZ: 31.0906715 + rotX: 359.920044 + rotY: 269.992737 + rotZ: 4.6098547 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3623 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Cultist. + GMNotes: '' + GUID: c70e63 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Acolyte + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 14.7774458 + posY: 1.56010187 + posZ: 38.38555 + rotX: 359.3881 + rotY: 359.9874 + rotZ: 359.9204 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3626 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Nightgaunt. + GMNotes: '' + GUID: '476433' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Hunting Nightgaunt + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 14.7770777 + posY: 1.66064644 + posZ: 36.5581169 + rotX: 359.9198 + rotY: 270.02002 + rotZ: 6.28108 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3626 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Nightgaunt. + GMNotes: '' + GUID: b124ef + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Hunting Nightgaunt + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 14.7770147 + posY: 1.6338309 + posZ: 34.7323723 + rotX: 359.918884 + rotY: 269.9867 + rotZ: 4.847489 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3605 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: b6793f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: False Lead + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 14.7773724 + posY: 1.62753284 + posZ: 29.26748 + rotX: 359.920044 + rotY: 270.0065 + rotZ: 4.617925 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3628 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Obstacle. + GMNotes: '' + GUID: 9449d7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Locked Door + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 14.7774429 + posY: 1.62717223 + posZ: 27.44811 + rotX: 359.9196 + rotY: 269.985474 + rotZ: 4.62420225 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3628 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Obstacle. + GMNotes: '' + GUID: 1340ff + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Locked Door + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 14.77727 + posY: 1.62659431 + posZ: 25.6280022 + rotX: 359.921021 + rotY: 269.9887 + rotZ: 4.63850832 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3605 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: de1cd2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: False Lead + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 14.77745 + posY: 1.62588787 + posZ: 23.8021126 + rotX: 359.9203 + rotY: 270.000061 + rotZ: 4.59708071 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3604 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Curse. + GMNotes: '' + GUID: 46af71 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Hunting Shadow + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 14.7772818 + posY: 1.62565958 + posZ: 21.9825974 + rotX: 359.919281 + rotY: 269.989044 + rotZ: 4.627021 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3604 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Curse. + GMNotes: '' + GUID: e98498 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Hunting Shadow + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 14.7771912 + posY: 1.62496769 + posZ: 20.1623 + rotX: 359.9208 + rotY: 269.999023 + rotZ: 4.642937 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3604 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Curse. + GMNotes: '' + GUID: caabe8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Hunting Shadow + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 14.777566 + posY: 1.624156 + posZ: 18.33311 + rotX: 359.920166 + rotY: 269.978729 + rotZ: 4.59061146 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3623 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Cultist. + GMNotes: '' + GUID: 4072d7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Acolyte + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 15.226614 + posY: 1.53816819 + posZ: 11.4850111 + rotX: 359.9174 + rotY: 269.999268 + rotZ: 180.021957 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3624 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Cultist. + GMNotes: '' + GUID: 159f90 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Wizard of the Order + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 15.2280426 + posY: 1.67157507 + posZ: 13.8723755 + rotX: 359.9213 + rotY: 269.996033 + rotZ: 172.928375 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3625 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: df668b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Mysterious Chanting + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 15.220583 + posY: 1.6722033 + posZ: 15.0525141 + rotX: 359.920746 + rotY: 269.999268 + rotZ: 172.906967 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3625 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: 6f5b7b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Mysterious Chanting + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 15.22197 + posY: 1.67282546 + posZ: 16.2301865 + rotX: 359.9204 + rotY: 270.002625 + rotZ: 172.900238 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12424 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '124': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Humanoid. Cultist. + GMNotes: '' + GUID: 1f4f54 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Brotherhood Cultist + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 15.2245464 + posY: 1.673097 + posZ: 17.4103661 + rotX: 359.920929 + rotY: 269.999268 + rotZ: 172.892532 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12424 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '124': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Humanoid. Cultist. + GMNotes: '' + GUID: 62cc1f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Brotherhood Cultist + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 15.2258987 + posY: 1.67372775 + posZ: 18.5867043 + rotX: 359.918762 + rotY: 269.97168 + rotZ: 172.895432 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12425 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '124': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Scheme. + GMNotes: '' + GUID: 04e5d3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Shadowed + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 15.2246714 + posY: 1.67393708 + posZ: 19.76591 + rotX: 359.920715 + rotY: 269.9828 + rotZ: 172.886765 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12425 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '124': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Scheme. + GMNotes: '' + GUID: 89f4f6 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Shadowed + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 15.2244244 + posY: 1.80961633 + posZ: 20.9542446 + rotX: 359.911743 + rotY: 269.982361 + rotZ: 180.133133 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12426 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '124': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Hex. + GMNotes: '' + GUID: d6a48e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Words of Power + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 15.2256632 + posY: 1.67663741 + posZ: 22.1221333 + rotX: 359.8909 + rotY: 270.0346 + rotZ: 187.206131 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12426 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '124': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Hex. + GMNotes: '' + GUID: 866eba + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Words of Power + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 15.2251244 + posY: 1.54160774 + posZ: 23.2864742 + rotX: 359.9159 + rotY: 269.842346 + rotZ: 180.023392 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 272642 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '122': + BackIsHidden: true + BackURL: https://i.imgur.com/No3PMAy.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159325148/B25E4760A8FFC5A71DFA1DE038D6CA8A74C7AE0C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Mystery. + GMNotes: '' + GUID: dd17ff + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Nobody's Home + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 15.2223587 + posY: 1.6899904 + posZ: 30.3729839 + rotX: 359.918365 + rotY: 269.955 + rotZ: 180.018066 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 272642 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '122': + BackIsHidden: true + BackURL: https://i.imgur.com/No3PMAy.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159325148/B25E4760A8FFC5A71DFA1DE038D6CA8A74C7AE0C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Mystery. + GMNotes: '' + GUID: e417e8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Nobody's Home + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 15.22342 + posY: 1.544118 + posZ: 31.56866 + rotX: 359.91983 + rotY: 270.000763 + rotZ: 180.0163 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 272643 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '122': + BackIsHidden: true + BackURL: https://i.imgur.com/No3PMAy.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159325148/B25E4760A8FFC5A71DFA1DE038D6CA8A74C7AE0C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Hex. + GMNotes: '' + GUID: '776222' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Conspiracy of Blood + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 15.2247591 + posY: 1.67399156 + posZ: 24.4824257 + rotX: 359.922729 + rotY: 269.964478 + rotZ: 172.983078 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 272643 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '122': + BackIsHidden: true + BackURL: https://i.imgur.com/No3PMAy.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159325148/B25E4760A8FFC5A71DFA1DE038D6CA8A74C7AE0C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Hex. + GMNotes: '' + GUID: f6e2b8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Conspiracy of Blood + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 15.223237 + posY: 1.67479253 + posZ: 25.6643066 + rotX: 359.9176 + rotY: 269.972717 + rotZ: 172.935471 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 272641 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '122': + BackIsHidden: true + BackURL: https://i.imgur.com/No3PMAy.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159325148/B25E4760A8FFC5A71DFA1DE038D6CA8A74C7AE0C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Scheme. + GMNotes: '' + GUID: af5c41 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Secret Must Be Kept + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 15.2229862 + posY: 1.8100853 + posZ: 26.8348656 + rotX: 359.9058 + rotY: 269.9762 + rotZ: 180.023865 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 272641 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '122': + BackIsHidden: true + BackURL: https://i.imgur.com/No3PMAy.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159325148/B25E4760A8FFC5A71DFA1DE038D6CA8A74C7AE0C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Scheme. + GMNotes: '' + GUID: 8d1b30 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Secret Must Be Kept + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 15.2238312 + posY: 1.67543757 + posZ: 28.0053711 + rotX: 359.881226 + rotY: 270.1048 + rotZ: 187.034821 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 272641 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '122': + BackIsHidden: true + BackURL: https://i.imgur.com/No3PMAy.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159325148/B25E4760A8FFC5A71DFA1DE038D6CA8A74C7AE0C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Scheme. + GMNotes: '' + GUID: e24635 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Secret Must Be Kept + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 15.2234335 + posY: 1.5433799 + posZ: 29.1925087 + rotX: 359.91803 + rotY: 269.897369 + rotZ: 180.007065 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3623 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Cultist. + GMNotes: '' + GUID: c70e63 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Acolyte + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 15.2262573 + posY: 1.66964519 + posZ: 12.6893129 + rotX: 359.9217 + rotY: 270.002869 + rotZ: 173.009644 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '124': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + '2726': + BackIsHidden: true + BackURL: https://i.imgur.com/No3PMAy.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159325148/B25E4760A8FFC5A71DFA1DE038D6CA8A74C7AE0C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 3627 +- 3627 +- 3623 +- 3626 +- 3626 +- 3605 +- 3628 +- 3628 +- 3605 +- 3604 +- 3604 +- 3604 +- 3623 +- 3624 +- 3625 +- 3625 +- 12424 +- 12424 +- 12425 +- 12425 +- 12426 +- 12426 +- 272642 +- 272642 +- 272643 +- 272643 +- 272641 +- 272641 +- 272641 +- 3623 +Description: Threads of Fate +GMNotes: '' +GUID: 2a0b69 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Encouter Deck +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.9277 + posY: 1.77170992 + posZ: 5.75720072 + rotX: 359.919739 + rotY: 270.011 + rotZ: 180.016815 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 4 The Boundary Beyond 0ec59f.ttslua b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 4 The Boundary Beyond 0ec59f.ttslua new file mode 100644 index 000000000..46067f58e --- /dev/null +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 4 The Boundary Beyond 0ec59f.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.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.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 Forgotten Age 0ff458/Custom_Model_Bag 4 The Boundary Beyond 0ec59f.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 4 The Boundary Beyond 0ec59f.yaml new file mode 100644 index 000000000..86db4bc6e --- /dev/null +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 4 The Boundary Beyond 0ec59f.yaml @@ -0,0 +1,84 @@ +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 4 The Boundary Beyond 0ec59f/Custom_Tile The Boundary + Beyond 010761.yaml' +- !include 'Custom_Model_Bag 4 The Boundary Beyond 0ec59f/Card Relic of Ages 22aed2.yaml' +- !include 'Custom_Model_Bag 4 The Boundary Beyond 0ec59f/Deck Encounter Deck 354fdf.yaml' +- !include 'Custom_Model_Bag 4 The Boundary Beyond 0ec59f/Custom_Tile 3b6840.yaml' +- !include 'Custom_Model_Bag 4 The Boundary Beyond 0ec59f/Card Chapultepec Park 4fce07.yaml' +- !include 'Custom_Model_Bag 4 The Boundary Beyond 0ec59f/Custom_Tile 55a1cc.yaml' +- !include 'Custom_Model_Bag 4 The Boundary Beyond 0ec59f/Deck Agenda Deck 5dbf9f.yaml' +- !include 'Custom_Model_Bag 4 The Boundary Beyond 0ec59f/Card Metropolitan Cathedral + 67b662.yaml' +- !include 'Custom_Model_Bag 4 The Boundary Beyond 0ec59f/Custom_Tile 7234af.yaml' +- !include 'Custom_Model_Bag 4 The Boundary Beyond 0ec59f/Deck Act Deck 896136.yaml' +- !include 'Custom_Model_Bag 4 The Boundary Beyond 0ec59f/Custom_Tile 929e75.yaml' +- !include 'Custom_Model_Bag 4 The Boundary Beyond 0ec59f/Custom_Tile a08ca6.yaml' +- !include 'Custom_Model_Bag 4 The Boundary Beyond 0ec59f/Custom_Model_Bag Set-aside + a45247.yaml' +- !include 'Custom_Model_Bag 4 The Boundary Beyond 0ec59f/Deck Exploration Deck a6deb8.yaml' +- !include 'Custom_Model_Bag 4 The Boundary Beyond 0ec59f/Bag Encounter Setup b198c8.yaml' +- !include 'Custom_Model_Bag 4 The Boundary Beyond 0ec59f/Custom_Tile bc76d7.yaml' +- !include 'Custom_Model_Bag 4 The Boundary Beyond 0ec59f/Card Xochimilco bfd8f6.yaml' +- !include 'Custom_Model_Bag 4 The Boundary Beyond 0ec59f/Custom_Tile c1ff41.yaml' +- !include 'Custom_Model_Bag 4 The Boundary Beyond 0ec59f/Card Temple Ruins c26773.yaml' +- !include "Custom_Model_Bag 4 The Boundary Beyond 0ec59f/Card Z\xF3calo c4a174.yaml" +- !include "Custom_Model_Bag 4 The Boundary Beyond 0ec59f/Card Coyoac\xE1n f06df7.yaml" +- !include 'Custom_Model_Bag 4 The Boundary Beyond 0ec59f/Card Scenario fd8c43.yaml' +CustomMesh: + CastShadows: true + ColliderURL: '' + Convex: true + DiffuseURL: http://cloud-3.steamusercontent.com/ugc/829135118403840631/1B0AABC0BB6DF40216C8987436788AA6C44A6232/ + MaterialIndex: 3 + MeshURL: https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj + NormalURL: '' + TypeIndex: 6 +Description: The Forgotten Age +GMNotes: '' +GUID: 0ec59f +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Model_Bag 4 The Boundary Beyond 0ec59f.ttslua' +LuaScriptState: '{"ml":{"010761":{"lock":false,"pos":{"x":-4.3394,"y":1.5832,"z":-14.8563},"rot":{"x":359.9197,"y":270.0297,"z":0.0168}},"22aed2":{"lock":false,"pos":{"x":-3.9662,"y":1.6631,"z":15.0186},"rot":{"x":359.9197,"y":269.9999,"z":0.0168}},"354fdf":{"lock":false,"pos":{"x":-3.9277,"y":1.6757,"z":5.7572},"rot":{"x":359.9178,"y":269.9999,"z":180.0176}},"3b6840":{"lock":false,"pos":{"x":-23.6765,"y":1.6157,"z":3.86},"rot":{"x":0.0169,"y":179.9999,"z":0.08}},"4fce07":{"lock":false,"pos":{"x":-23.6765,"y":1.6885,"z":7.57},"rot":{"x":359.9201,"y":269.9944,"z":0.0169}},"55a1cc":{"lock":false,"pos":{"x":-20.6854,"y":1.6103,"z":-0.1589},"rot":{"x":0.0799,"y":89.9999,"z":359.9831}},"5dbf9f":{"lock":false,"pos":{"x":-2.7247,"y":1.6566,"z":0.3733},"rot":{"x":0.0169,"y":179.9644,"z":0.0803}},"67b662":{"lock":false,"pos":{"x":-30.2242,"y":1.6931,"z":-7.7},"rot":{"x":359.9201,"y":269.9987,"z":0.0169}},"7234af":{"lock":false,"pos":{"x":-23.6765,"y":1.6134,"z":-3.83},"rot":{"x":0.0169,"y":179.9999,"z":0.08}},"896136":{"lock":false,"pos":{"x":-2.6885,"y":1.655,"z":-5.0485},"rot":{"x":0.0169,"y":179.9694,"z":0.0803}},"929e75":{"lock":false,"pos":{"x":-27.5017,"y":1.6188,"z":-3.4612},"rot":{"x":0.0684,"y":135.0003,"z":0.0445}},"a08ca6":{"lock":false,"pos":{"x":-26.72,"y":1.6187,"z":-0.1747},"rot":{"x":0.0799,"y":89.9999,"z":359.9831}},"a45247":{"lock":false,"pos":{"x":1.6966,"y":1.5583,"z":14.279},"rot":{"x":359.9551,"y":224.998,"z":0.0687}},"a6deb8":{"lock":false,"pos":{"x":-12.8992,"y":1.7102,"z":7.5718},"rot":{"x":359.9201,"y":270,"z":180.0169}},"b198c8":{"lock":false,"pos":{"x":-3.922,"y":1.5614,"z":5.7517},"rot":{"x":359.9139,"y":270.0125,"z":0.0184}},"bc76d7":{"lock":false,"pos":{"x":-26.9092,"y":1.6168,"z":-7.5041},"rot":{"x":0.0799,"y":89.9998,"z":359.9831}},"bfd8f6":{"lock":false,"pos":{"x":-17.1199,"y":1.6771,"z":-0.03},"rot":{"x":359.9201,"y":269.9987,"z":0.0169}},"c1ff41":{"lock":false,"pos":{"x":-19.9987,"y":1.6083,"z":-3.8139},"rot":{"x":359.9554,"y":224.9997,"z":0.0685}},"c26773":{"lock":false,"pos":{"x":-30.2242,"y":1.6954,"z":-0.03},"rot":{"x":359.9201,"y":269.9987,"z":0.0169}},"c4a174":{"lock":false,"pos":{"x":-23.6765,"y":1.684,"z":-7.7},"rot":{"x":359.9201,"y":269.9989,"z":0.0169}},"f06df7":{"lock":false,"pos":{"x":-23.6764,"y":1.6862,"z":-0.03},"rot":{"x":359.9201,"y":269.9988,"z":0.0169}},"fd8c43":{"lock":false,"pos":{"x":-3.956,"y":1.6556,"z":-10.4412},"rot":{"x":359.9197,"y":269.9998,"z":0.0168}}}}' +MaterialIndex: -1 +MeshIndex: -1 +Name: Custom_Model_Bag +Nickname: '4: The Boundary Beyond' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 12.2520952 + posY: 1.46795809 + posZ: 11.9863577 + rotX: 359.9201 + rotY: 270.026581 + rotZ: 0.0168365575 + scaleX: 2.21 + scaleY: 0.46 + scaleZ: 2.42 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 4 The Boundary Beyond 0ec59f/Bag Encounter Setup b198c8.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 4 The Boundary Beyond 0ec59f/Bag Encounter Setup b198c8.yaml new file mode 100644 index 000000000..7a5bf335b --- /dev/null +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 4 The Boundary Beyond 0ec59f/Bag Encounter Setup b198c8.yaml @@ -0,0 +1,38 @@ +Autoraise: true +ColorDiffuse: + b: 0.0 + g: 0.0 + r: 0.0 +ContainedObjects: +- !include 'Bag Encounter Setup b198c8/Deck No Conditions a3d14f.yaml' +- !include 'Bag Encounter Setup b198c8/Deck 2 or more Tablet Token a0bda5.yaml' +- !include 'Bag Encounter Setup b198c8/Deck 2 or more Cultist Token f8af22.yaml' +Description: The Boundary Beyond +GMNotes: '' +GUID: b198c8 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +MeshIndex: -1 +Name: Bag +Nickname: Encounter Setup +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.92197371 + posY: 1.56128478 + posZ: 5.75168371 + rotX: 359.923279 + rotY: 270.011047 + rotZ: 0.0193623081 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 4 The Boundary Beyond 0ec59f/Bag Encounter Setup b198c8/Deck 2 or more Cultist Token f8af22.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 4 The Boundary Beyond 0ec59f/Bag Encounter Setup b198c8/Deck 2 or more Cultist Token f8af22.yaml new file mode 100644 index 000000000..6b074682e --- /dev/null +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 4 The Boundary Beyond 0ec59f/Bag Encounter Setup b198c8/Deck 2 or more Cultist Token f8af22.yaml @@ -0,0 +1,566 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 3623 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Cultist. + GMNotes: '' + GUID: c70e63 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Acolyte + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 14.0180979 + posY: 1.540675 + posZ: 23.9794312 + rotX: 359.917175 + rotY: 270.008575 + rotZ: 0.016331356 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3625 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: 6f5b7b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Mysterious Chanting + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 14.0306559 + posY: 1.57698381 + posZ: 23.4485016 + rotX: 0.07159344 + rotY: 270.0374 + rotZ: 0.07703698 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3625 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: df668b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Mysterious Chanting + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 14.025507 + posY: 1.72275281 + posZ: 23.3227425 + rotX: 0.0896152258 + rotY: 269.988922 + rotZ: 0.337046146 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3624 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Cultist. + GMNotes: '' + GUID: 159f90 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Wizard of the Order + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 13.90611 + posY: 1.8628031 + posZ: 23.4777489 + rotX: 0.0483727828 + rotY: 270.055542 + rotZ: 0.2720729 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 13024 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '130': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Humanoid. Cultist. + GMNotes: '' + GUID: 1f4f54 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Brotherhood Cultist + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 13.79588 + posY: 1.68455446 + posZ: 23.236578 + rotX: 359.9403 + rotY: 269.9751 + rotZ: 359.98053 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3623 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Cultist. + GMNotes: '' + GUID: 4072d7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Acolyte + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 13.7510338 + posY: 1.69026661 + posZ: 23.1290646 + rotX: 359.943359 + rotY: 269.9891 + rotZ: 359.956757 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3623 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Cultist. + GMNotes: '' + GUID: 518ed8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Acolyte + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 13.8314705 + posY: 1.69276619 + posZ: 23.3003654 + rotX: 359.93927 + rotY: 269.990356 + rotZ: 359.988617 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 13026 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '130': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Hex. + GMNotes: '' + GUID: 866eba + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Words of Power + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 13.8268127 + posY: 1.69796276 + posZ: 23.0609379 + rotX: 359.937134 + rotY: 270.001038 + rotZ: 0.0184948687 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 13026 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '130': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Hex. + GMNotes: '' + GUID: d6a48e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Words of Power + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 13.70053 + posY: 1.656468 + posZ: 22.7383823 + rotX: 359.937622 + rotY: 269.999023 + rotZ: 0.0209377967 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 13025 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '130': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Scheme. + GMNotes: '' + GUID: 89f4f6 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Shadowed + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 13.3783665 + posY: 1.673184 + posZ: 22.5703945 + rotX: 359.921143 + rotY: 270.022461 + rotZ: 359.8628 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 13025 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '130': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Scheme. + GMNotes: '' + GUID: 04e5d3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Shadowed + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 13.8364229 + posY: 1.67490935 + posZ: 22.6495781 + rotX: 359.9277 + rotY: 269.93866 + rotZ: 0.0419656746 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 13024 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '130': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Humanoid. Cultist. + GMNotes: '' + GUID: 62cc1f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Brotherhood Cultist + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 13.9812231 + posY: 1.68286824 + posZ: 22.5393581 + rotX: 359.928955 + rotY: 269.984222 + rotZ: 0.03128931 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '130': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 3623 +- 3625 +- 3625 +- 3624 +- 13024 +- 3623 +- 3623 +- 13026 +- 13026 +- 13025 +- 13025 +- 13024 +Description: The Boundary Beyond +GMNotes: '' +GUID: f8af22 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: 2 or more Cultist Token +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 14.3947086 + posY: 3.58913732 + posZ: 1.37886715 + rotX: 0.02354505 + rotY: 270.013031 + rotZ: 357.3279 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 4 The Boundary Beyond 0ec59f/Bag Encounter Setup b198c8/Deck 2 or more Tablet Token a0bda5.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 4 The Boundary Beyond 0ec59f/Bag Encounter Setup b198c8/Deck 2 or more Tablet Token a0bda5.yaml new file mode 100644 index 000000000..0a055fe85 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 4 The Boundary Beyond 0ec59f/Bag Encounter Setup b198c8/Deck 2 or more Tablet Token a0bda5.yaml @@ -0,0 +1,437 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 13215 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '132': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Humanoid. Eztli. + GMNotes: '' + GUID: 1ff419 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Eztli Guardian + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 10.993351 + posY: 1.54639018 + posZ: 19.256876 + rotX: 359.920135 + rotY: 270.000061 + rotZ: 180.016876 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 13216 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '132': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Scheme. + GMNotes: '' + GUID: 74a02c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Arrows from the Trees + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 10.9933558 + posY: 1.54702616 + posZ: 21.41606 + rotX: 359.920135 + rotY: 270.000061 + rotZ: 180.016876 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 13216 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '132': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Scheme. + GMNotes: '' + GUID: 2ebadd + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Arrows from the Trees + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 10.9934 + posY: 1.54766178 + posZ: 23.5752373 + rotX: 359.920135 + rotY: 270.000061 + rotZ: 180.016876 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 13127 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '131': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Humanoid. Monster. Serpent. + GMNotes: '' + GUID: 6b107c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Fang of Yig + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 10.9934406 + posY: 1.54829752 + posZ: 25.7344074 + rotX: 359.920135 + rotY: 270.0001 + rotZ: 180.016876 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 13127 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '131': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Humanoid. Monster. Serpent. + GMNotes: '' + GUID: cfdbd5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Fang of Yig + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 10.9934349 + posY: 1.54893339 + posZ: 27.89354 + rotX: 359.920135 + rotY: 270.0001 + rotZ: 180.016876 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 13128 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '131': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Curse. + GMNotes: '' + GUID: 9542e8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Snakescourge + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 10.9934769 + posY: 1.54956913 + posZ: 30.052702 + rotX: 359.920135 + rotY: 270.000031 + rotZ: 180.016876 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 13215 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '132': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Humanoid. Eztli. + GMNotes: '' + GUID: '571733' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Eztli Guardian + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 10.9935331 + posY: 1.55020523 + posZ: 32.2131042 + rotX: 359.920135 + rotY: 270.000122 + rotZ: 180.016876 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 13128 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '131': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Curse. + GMNotes: '' + GUID: '660874' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Snakescourge + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 10.99351 + posY: 1.55084121 + posZ: 34.3734436 + rotX: 359.920135 + rotY: 270.000061 + rotZ: 180.016876 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 13129 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '131': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Power. + GMNotes: '' + GUID: 866eba + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Serpent's Call + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 10.9935551 + posY: 1.55147719 + posZ: 36.5325775 + rotX: 359.920135 + rotY: 270.000122 + rotZ: 180.016876 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '131': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + '132': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 13215 +- 13216 +- 13216 +- 13127 +- 13127 +- 13128 +- 13215 +- 13128 +- 13129 +Description: The Boundary Beyond +GMNotes: '' +GUID: a0bda5 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: 2 or more Tablet Token +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.9497814 + posY: 3.49514842 + posZ: -0.9235245 + rotX: 359.920135 + rotY: 270.000183 + rotZ: 180.016861 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 4 The Boundary Beyond 0ec59f/Bag Encounter Setup b198c8/Deck No Conditions a3d14f.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 4 The Boundary Beyond 0ec59f/Bag Encounter Setup b198c8/Deck No Conditions a3d14f.yaml new file mode 100644 index 000000000..ba993fa44 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 4 The Boundary Beyond 0ec59f/Bag Encounter Setup b198c8/Deck No Conditions a3d14f.yaml @@ -0,0 +1,480 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 13715 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '137': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Humanoid. Eztli. + GMNotes: '' + GUID: 1ff419 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Eztli Guardian + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 10.1043568 + posY: 1.67475927 + posZ: 31.3909588 + rotX: 359.919128 + rotY: 270.010559 + rotZ: 180.0145 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 13715 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '137': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Humanoid. Eztli. + GMNotes: '' + GUID: '571733' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Eztli Guardian + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 9.947364 + posY: 1.54805291 + posZ: 29.5380669 + rotX: 359.9201 + rotY: 270.035583 + rotZ: 0.0168177448 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 13716 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '137': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Scheme. + GMNotes: '' + GUID: 866eba + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Arrows from the Trees + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 9.945243 + posY: 1.549959 + posZ: 36.02324 + rotX: 359.983582 + rotY: 359.98822 + rotZ: 359.9203 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 13716 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '137': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Scheme. + GMNotes: '' + GUID: 74a02c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Arrows from the Trees + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 9.945252 + posY: 1.64380741 + posZ: 33.8722229 + rotX: 359.9198 + rotY: 269.934357 + rotZ: 5.055903 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 13024 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '130': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Humanoid. Cultist. + GMNotes: '' + GUID: 1f4f54 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Brotherhood Cultist + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 9.946936 + posY: 1.54741788 + posZ: 27.37862 + rotX: 359.9201 + rotY: 270.042542 + rotZ: 0.016810175 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 13026 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '130': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Hex. + GMNotes: '' + GUID: 83df61 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Words of Power + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 9.94642 + posY: 1.54678249 + posZ: 25.2187614 + rotX: 359.9201 + rotY: 270.048126 + rotZ: 0.0168007556 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 13026 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '130': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Hex. + GMNotes: '' + GUID: d6a48e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Words of Power + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 9.94564 + posY: 1.54614758 + posZ: 23.0584831 + rotX: 359.9201 + rotY: 270.0464 + rotZ: 0.0168072525 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 13025 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '130': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Scheme. + GMNotes: '' + GUID: 89f4f6 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Shadowed + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 9.945004 + posY: 1.5455122 + posZ: 20.8977928 + rotX: 359.9201 + rotY: 270.04425 + rotZ: 0.016811898 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 13025 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '130': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Scheme. + GMNotes: '' + GUID: 04e5d3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Shadowed + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 9.944292 + posY: 1.54487717 + posZ: 18.7377529 + rotX: 359.9201 + rotY: 270.052124 + rotZ: 0.016791312 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 13024 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '130': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Humanoid. Cultist. + GMNotes: '' + GUID: 62cc1f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Brotherhood Cultist + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 9.943207 + posY: 1.54424238 + posZ: 16.57749 + rotX: 359.9201 + rotY: 270.063171 + rotZ: 0.01678325 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '130': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + '137': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 13715 +- 13715 +- 13716 +- 13716 +- 13024 +- 13026 +- 13026 +- 13025 +- 13025 +- 13024 +Description: The Boundary Beyond +GMNotes: '' +GUID: a3d14f +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: No Conditions +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 20.2710953 + posY: 3.50101852 + posZ: 2.43439412 + rotX: 359.920135 + rotY: 270.0047 + rotZ: 180.016861 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 4 The Boundary Beyond 0ec59f/Card Chapultepec Park 4fce07.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 4 The Boundary Beyond 0ec59f/Card Chapultepec Park 4fce07.yaml new file mode 100644 index 000000000..878b5615d --- /dev/null +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 4 The Boundary Beyond 0ec59f/Card Chapultepec Park 4fce07.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 278621 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2786': + BackIsHidden: true + BackURL: https://i.imgur.com/ZgjFcAU.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/976604071425301191/B229EEF649F55376607371CA92C41F117D0862DC/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Mexico City. Present-Day. +GMNotes: '' +GUID: 4fce07 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Chapultepec Park +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -23.6765 + posY: 1.6884582 + posZ: 7.56999969 + rotX: 359.9201 + rotY: 269.994354 + rotZ: 0.0168843847 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 4 The Boundary Beyond 0ec59f/Card Coyoacán f06df7.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 4 The Boundary Beyond 0ec59f/Card Coyoacán f06df7.yaml new file mode 100644 index 000000000..d3a8679ee --- /dev/null +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 4 The Boundary Beyond 0ec59f/Card Coyoacán f06df7.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 279324 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2793': + BackIsHidden: true + BackURL: https://i.imgur.com/ZgjFcAU.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/976604071425301191/B229EEF649F55376607371CA92C41F117D0862DC/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Mexico City. Present-Day. +GMNotes: '' +GUID: f06df7 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: "Coyoac\xE1n" +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -23.6764 + posY: 1.68622017 + posZ: -0.0300004724 + rotX: 359.9201 + rotY: 269.9988 + rotZ: 0.01687799 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 4 The Boundary Beyond 0ec59f/Card Metropolitan Cathedral 67b662.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 4 The Boundary Beyond 0ec59f/Card Metropolitan Cathedral 67b662.yaml new file mode 100644 index 000000000..a00cb0e62 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 4 The Boundary Beyond 0ec59f/Card Metropolitan Cathedral 67b662.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 278820 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2788': + BackIsHidden: true + BackURL: https://i.imgur.com/ZgjFcAU.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/976604071425301191/B229EEF649F55376607371CA92C41F117D0862DC/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Mexico City. Present-Day. +GMNotes: '' +GUID: 67b662 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Metropolitan Cathedral +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -30.2242 + posY: 1.69309223 + posZ: -7.700001 + rotX: 359.9201 + rotY: 269.998657 + rotZ: 0.0168774966 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 4 The Boundary Beyond 0ec59f/Card Relic of Ages 22aed2.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 4 The Boundary Beyond 0ec59f/Card Relic of Ages 22aed2.yaml new file mode 100644 index 000000000..e87a51b84 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 4 The Boundary Beyond 0ec59f/Card Relic of Ages 22aed2.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 274142 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2741': + BackIsHidden: true + BackURL: https://i.imgur.com/ZgjFcAU.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/976604071425301191/B229EEF649F55376607371CA92C41F117D0862DC/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Item. Relic. +GMNotes: '' +GUID: 22aed2 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Relic of Ages +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.96620059 + posY: 1.66314375 + posZ: 15.0186024 + rotX: 359.919739 + rotY: 269.999878 + rotZ: 0.0168414712 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 4 The Boundary Beyond 0ec59f/Card Scenario fd8c43.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 4 The Boundary Beyond 0ec59f/Card Scenario fd8c43.yaml new file mode 100644 index 000000000..937978d02 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 4 The Boundary Beyond 0ec59f/Card Scenario fd8c43.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 274112 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2741': + BackIsHidden: true + BackURL: https://i.imgur.com/ZgjFcAU.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/976604071425301191/B229EEF649F55376607371CA92C41F117D0862DC/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: The Boundary Beyond +GMNotes: '' +GUID: fd8c43 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Scenario +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.956 + posY: 1.65564823 + posZ: -10.4412012 + rotX: 359.919739 + rotY: 269.999756 + rotZ: 0.0168414135 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 4 The Boundary Beyond 0ec59f/Card Temple Ruins c26773.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 4 The Boundary Beyond 0ec59f/Card Temple Ruins c26773.yaml new file mode 100644 index 000000000..03c4f813f --- /dev/null +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 4 The Boundary Beyond 0ec59f/Card Temple Ruins c26773.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 279219 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2792': + BackIsHidden: true + BackURL: https://i.imgur.com/ZgjFcAU.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/976604071425301191/B229EEF649F55376607371CA92C41F117D0862DC/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Mexico City. Present-Day. +GMNotes: '' +GUID: c26773 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Temple Ruins +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -30.2242 + posY: 1.69535065 + posZ: -0.03000033 + rotX: 359.9201 + rotY: 269.998657 + rotZ: 0.0168782678 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 4 The Boundary Beyond 0ec59f/Card Xochimilco bfd8f6.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 4 The Boundary Beyond 0ec59f/Card Xochimilco bfd8f6.yaml new file mode 100644 index 000000000..e7de283c0 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 4 The Boundary Beyond 0ec59f/Card Xochimilco bfd8f6.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 279123 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2791': + BackIsHidden: true + BackURL: https://i.imgur.com/ZgjFcAU.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/976604071425301191/B229EEF649F55376607371CA92C41F117D0862DC/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Mexico City. Present-Day. +GMNotes: '' +GUID: bfd8f6 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Xochimilco +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -17.1199 + posY: 1.67707765 + posZ: -0.0299998857 + rotX: 359.9201 + rotY: 269.998718 + rotZ: 0.0168776661 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 4 The Boundary Beyond 0ec59f/Card Zócalo c4a174.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 4 The Boundary Beyond 0ec59f/Card Zócalo c4a174.yaml new file mode 100644 index 000000000..b8f83f93c --- /dev/null +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 4 The Boundary Beyond 0ec59f/Card Zócalo c4a174.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 278622 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2786': + BackIsHidden: true + BackURL: https://i.imgur.com/ZgjFcAU.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/976604071425301191/B229EEF649F55376607371CA92C41F117D0862DC/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Mexico City. Present-Day. +GMNotes: '' +GUID: c4a174 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: "Z\xF3calo" +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -23.6765 + posY: 1.68396187 + posZ: -7.70000029 + rotX: 359.9201 + rotY: 269.9989 + rotZ: 0.0168778058 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 4 The Boundary Beyond 0ec59f/Custom_Model_Bag Set-aside a45247.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 4 The Boundary Beyond 0ec59f/Custom_Model_Bag Set-aside a45247.yaml new file mode 100644 index 000000000..8d64d8e11 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 4 The Boundary Beyond 0ec59f/Custom_Model_Bag Set-aside a45247.yaml @@ -0,0 +1,59 @@ +Autoraise: true +ColorDiffuse: + b: 0.02148666 + g: 0.00100758043 + r: 0.02148666 +ContainedObjects: +- !include 'Custom_Model_Bag Set-aside a45247/Deck Poisoned 60d826.yaml' +- !include 'Custom_Model_Bag Set-aside a45247/Card Padma Amrita 18f1d9.yaml' +- !include 'Custom_Model_Bag Set-aside a45247/Card Harbinger of Valusia c6b3fc.yaml' +- !include 'Custom_Model_Bag Set-aside a45247/Bag Agenda 3 & Act 3 f9e913.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 Boundary Beyond +GMNotes: '' +GUID: a45247 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +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.69660163 + posY: 1.55831671 + posZ: 14.2790041 + rotX: 359.955139 + rotY: 224.997971 + rotZ: 0.0686702058 + scaleX: 2.0 + scaleY: 2.0 + scaleZ: 2.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 4 The Boundary Beyond 0ec59f/Custom_Model_Bag Set-aside a45247/Bag Agenda 3 & Act 3 f9e913.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 4 The Boundary Beyond 0ec59f/Custom_Model_Bag Set-aside a45247/Bag Agenda 3 & Act 3 f9e913.yaml new file mode 100644 index 000000000..74762fa9b --- /dev/null +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 4 The Boundary Beyond 0ec59f/Custom_Model_Bag Set-aside a45247/Bag Agenda 3 & Act 3 f9e913.yaml @@ -0,0 +1,37 @@ +Autoraise: true +ColorDiffuse: + b: 0.012186016 + g: 0.015811326 + r: 0.0191637632 +ContainedObjects: +- !include 'Bag Agenda 3 & Act 3 f9e913/Card Time Collapsing a92fa6.yaml' +- !include 'Bag Agenda 3 & Act 3 f9e913/Card The Return Trip d43edb.yaml' +Description: '' +GMNotes: '' +GUID: f9e913 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +MeshIndex: -1 +Name: Bag +Nickname: Agenda 3 & Act 3 +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 1.70261407 + posY: 3.46977854 + posZ: 14.279767 + rotX: 359.959778 + rotY: 224.997513 + rotZ: 0.05136383 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 4 The Boundary Beyond 0ec59f/Custom_Model_Bag Set-aside a45247/Bag Agenda 3 & Act 3 f9e913/Card The Return Trip d43edb.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 4 The Boundary Beyond 0ec59f/Custom_Model_Bag Set-aside a45247/Bag Agenda 3 & Act 3 f9e913/Card The Return Trip d43edb.yaml new file mode 100644 index 000000000..39b1f9d29 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 4 The Boundary Beyond 0ec59f/Custom_Model_Bag Set-aside a45247/Bag Agenda 3 & Act 3 f9e913/Card The Return Trip d43edb.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 278918 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2789': + BackIsHidden: true + BackURL: https://i.imgur.com/ZgjFcAU.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/976604071425301191/B229EEF649F55376607371CA92C41F117D0862DC/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Act 3 +GMNotes: '' +GUID: d43edb +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: The Return Trip +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 1.7497015 + posY: 3.70757484 + posZ: 4.031766 + rotX: 1.95797491 + rotY: 179.980927 + rotZ: 359.081024 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 4 The Boundary Beyond 0ec59f/Custom_Model_Bag Set-aside a45247/Bag Agenda 3 & Act 3 f9e913/Card Time Collapsing a92fa6.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 4 The Boundary Beyond 0ec59f/Custom_Model_Bag Set-aside a45247/Bag Agenda 3 & Act 3 f9e913/Card Time Collapsing a92fa6.yaml new file mode 100644 index 000000000..3aae2c7f6 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 4 The Boundary Beyond 0ec59f/Custom_Model_Bag Set-aside a45247/Bag Agenda 3 & Act 3 f9e913/Card Time Collapsing a92fa6.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 278715 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2787': + BackIsHidden: true + BackURL: https://i.imgur.com/ZgjFcAU.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/976604071425301191/B229EEF649F55376607371CA92C41F117D0862DC/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Agenda 3 +GMNotes: '' +GUID: a92fa6 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Time Collapsing +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 1.771578 + posY: 3.72151256 + posZ: 4.373027 + rotX: 0.395919323 + rotY: 180.000275 + rotZ: 359.148865 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 4 The Boundary Beyond 0ec59f/Custom_Model_Bag Set-aside a45247/Card Harbinger of Valusia c6b3fc.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 4 The Boundary Beyond 0ec59f/Custom_Model_Bag Set-aside a45247/Card Harbinger of Valusia c6b3fc.yaml new file mode 100644 index 000000000..b029340f9 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 4 The Boundary Beyond 0ec59f/Custom_Model_Bag Set-aside a45247/Card Harbinger of Valusia c6b3fc.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 12261 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '122': + BackIsHidden: true + BackURL: https://i.imgur.com/RpzEfmS.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393194495/027101CA5C626EBA0E4F76F3F15569329F81DE3C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Humanoid. Monster. Serpent. Elite. +GMNotes: '' +GUID: c6b3fc +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Harbinger of Valusia +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 81.24369 + posY: 3.476086 + posZ: -36.6555977 + rotX: 359.9875 + rotY: 270.0001 + rotZ: 359.9847 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 4 The Boundary Beyond 0ec59f/Custom_Model_Bag Set-aside a45247/Card Padma Amrita 18f1d9.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 4 The Boundary Beyond 0ec59f/Custom_Model_Bag Set-aside a45247/Card Padma Amrita 18f1d9.yaml new file mode 100644 index 000000000..573c96331 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 4 The Boundary Beyond 0ec59f/Custom_Model_Bag Set-aside a45247/Card Padma Amrita 18f1d9.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 12737 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/ZgjFcAU.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/976604071425301191/B229EEF649F55376607371CA92C41F117D0862DC/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Humanoid. Serpent. Servitor. Elite. +GMNotes: '' +GUID: 18f1d9 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Padma Amrita +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 26.4357948 + posY: 3.5645926 + posZ: -7.717667 + rotX: 359.93277 + rotY: 270.0 + rotZ: 0.014198469 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 4 The Boundary Beyond 0ec59f/Custom_Model_Bag Set-aside a45247/Deck Poisoned 60d826.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 4 The Boundary Beyond 0ec59f/Custom_Model_Bag Set-aside a45247/Deck Poisoned 60d826.yaml new file mode 100644 index 000000000..f6a824f48 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 4 The Boundary Beyond 0ec59f/Custom_Model_Bag Set-aside a45247/Deck Poisoned 60d826.yaml @@ -0,0 +1,215 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 12831 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '128': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Poision. + GMNotes: '' + GUID: 1f5327 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Poisoned + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 9.957203 + posY: 1.53244984 + posZ: -23.4042568 + rotX: 359.920135 + rotY: 269.999878 + rotZ: 0.0168677736 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12831 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '128': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Poision. + GMNotes: '' + GUID: 54126a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Poisoned + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 14.9373636 + posY: 1.5269165 + posZ: -18.616787 + rotX: 359.920135 + rotY: 270.0004 + rotZ: 0.01686534 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12831 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '128': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Poision. + GMNotes: '' + GUID: 866eba + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Poisoned + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 13.6783838 + posY: 1.52784228 + posZ: -21.4339046 + rotX: 359.920135 + rotY: 270.001434 + rotZ: 0.01686727 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12831 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '128': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Poision. + GMNotes: '' + GUID: 34788c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Poisoned + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 10.837163 + posY: 1.53244984 + posZ: -19.2381878 + rotX: 359.920135 + rotY: 269.999878 + rotZ: 0.01687073 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '128': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 12831 +- 12831 +- 12831 +- 12831 +Description: '' +GMNotes: '' +GUID: 60d826 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Poisoned +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.3003483 + posY: 3.58332229 + posZ: -14.66857 + rotX: 359.914124 + rotY: 269.99942 + rotZ: 0.0179751012 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 4 The Boundary Beyond 0ec59f/Custom_Tile 3b6840.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 4 The Boundary Beyond 0ec59f/Custom_Tile 3b6840.yaml new file mode 100644 index 000000000..523ec6acc --- /dev/null +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 4 The Boundary Beyond 0ec59f/Custom_Tile 3b6840.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 3b6840 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.6765 + posY: 1.61565208 + posZ: 3.85999966 + rotX: 0.0168719925 + rotY: 179.999832 + rotZ: 0.07994022 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 4 The Boundary Beyond 0ec59f/Custom_Tile 55a1cc.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 4 The Boundary Beyond 0ec59f/Custom_Tile 55a1cc.yaml new file mode 100644 index 000000000..5eb2301f6 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 4 The Boundary Beyond 0ec59f/Custom_Tile 55a1cc.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 55a1cc +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.6854 + posY: 1.61029792 + posZ: -0.158900231 + rotX: 0.07989453 + rotY: 89.9999161 + rotZ: 359.9831 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 4 The Boundary Beyond 0ec59f/Custom_Tile 7234af.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 4 The Boundary Beyond 0ec59f/Custom_Tile 7234af.yaml new file mode 100644 index 000000000..f1dd8e5c0 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 4 The Boundary Beyond 0ec59f/Custom_Tile 7234af.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 7234af +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.6765 + posY: 1.6133877 + posZ: -3.83000016 + rotX: 0.0168719571 + rotY: 179.9999 + rotZ: 0.0799397454 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 4 The Boundary Beyond 0ec59f/Custom_Tile 929e75.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 4 The Boundary Beyond 0ec59f/Custom_Tile 929e75.yaml new file mode 100644 index 000000000..9961c7e19 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 4 The Boundary Beyond 0ec59f/Custom_Tile 929e75.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 929e75 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.5017 + posY: 1.61883032 + posZ: -3.46120024 + rotX: 0.0684307963 + rotY: 135.000259 + rotZ: 0.0445624 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 4 The Boundary Beyond 0ec59f/Custom_Tile a08ca6.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 4 The Boundary Beyond 0ec59f/Custom_Tile a08ca6.yaml new file mode 100644 index 000000000..c8f72224b --- /dev/null +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 4 The Boundary Beyond 0ec59f/Custom_Tile a08ca6.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: a08ca6 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.72 + posY: 1.618708 + posZ: -0.17470029 + rotX: 0.0798943639 + rotY: 89.9999161 + rotZ: 359.9831 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 4 The Boundary Beyond 0ec59f/Custom_Tile bc76d7.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 4 The Boundary Beyond 0ec59f/Custom_Tile bc76d7.yaml new file mode 100644 index 000000000..d05f2746c --- /dev/null +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 4 The Boundary Beyond 0ec59f/Custom_Tile bc76d7.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: bc76d7 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.9092 + posY: 1.61681378 + posZ: -7.50410128 + rotX: 0.07989429 + rotY: 89.9998 + rotZ: 359.9831 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 4 The Boundary Beyond 0ec59f/Custom_Tile c1ff41.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 4 The Boundary Beyond 0ec59f/Custom_Tile c1ff41.yaml new file mode 100644 index 000000000..ce7c3853e --- /dev/null +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 4 The Boundary Beyond 0ec59f/Custom_Tile c1ff41.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: c1ff41 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: -19.9986973 + posY: 1.608264 + posZ: -3.81389976 + rotX: 359.955444 + rotY: 224.9999 + rotZ: 0.06840709 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 4 The Boundary Beyond 0ec59f/Custom_Tile The Boundary Beyond 010761.ttslua b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 4 The Boundary Beyond 0ec59f/Custom_Tile The Boundary Beyond 010761.ttslua new file mode 100644 index 000000000..88130bf52 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 4 The Boundary Beyond 0ec59f/Custom_Tile The Boundary Beyond 010761.ttslua @@ -0,0 +1,25 @@ +name = 'The Boundary Beyond' + +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 + +function standaloneClick() + Global.call('fillContainer', {object=self, key=name, mode='standalone'}) +end \ No newline at end of file diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 4 The Boundary Beyond 0ec59f/Custom_Tile The Boundary Beyond 010761.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 4 The Boundary Beyond 0ec59f/Custom_Tile The Boundary Beyond 010761.yaml new file mode 100644 index 000000000..4288ba90f --- /dev/null +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 4 The Boundary Beyond 0ec59f/Custom_Tile The Boundary Beyond 010761.yaml @@ -0,0 +1,42 @@ +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 +GMNotes: '' +GUID: '010761' +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Tile The Boundary Beyond 010761.ttslua' +LuaScriptState: '' +Name: Custom_Tile +Nickname: The Boundary Beyond +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -4.33940029 + posY: 1.58317423 + posZ: -14.8563051 + rotX: 359.919739 + rotY: 270.029724 + rotZ: 0.0167963244 + scaleX: 2.2 + scaleY: 1.0 + scaleZ: 2.2 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 4 The Boundary Beyond 0ec59f/Deck Act Deck 896136.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 4 The Boundary Beyond 0ec59f/Deck Act Deck 896136.yaml new file mode 100644 index 000000000..a8f56a1a4 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 4 The Boundary Beyond 0ec59f/Deck Act Deck 896136.yaml @@ -0,0 +1,129 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 278917 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/ZgjFcAU.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/976604071425301191/B229EEF649F55376607371CA92C41F117D0862DC/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 2 + GMNotes: '' + GUID: bdadde + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Past and Present + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 11.6766415 + posY: 1.53887749 + posZ: 6.64122343 + rotX: 0.0158113912 + rotY: 180.000473 + rotZ: 0.0791463852 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 278916 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/ZgjFcAU.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/976604071425301191/B229EEF649F55376607371CA92C41F117D0862DC/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 1 + GMNotes: '' + GUID: 6f3fa1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Crossing the Threshold + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 11.69102 + posY: 1.6794461 + posZ: 6.57155 + rotX: 0.007887707 + rotY: 180.0014 + rotZ: 0.0753182247 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2789': + BackIsHidden: true + BackURL: https://i.imgur.com/ZgjFcAU.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/976604071425301191/B229EEF649F55376607371CA92C41F117D0862DC/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 278917 +- 278916 +Description: The Boundary Beyond +GMNotes: '' +GUID: '896136' +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Act Deck +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.68829632 + posY: 1.662333 + posZ: -5.048545 + rotX: 0.0168339815 + rotY: 179.999954 + rotZ: 0.08026161 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 4 The Boundary Beyond 0ec59f/Deck Agenda Deck 5dbf9f.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 4 The Boundary Beyond 0ec59f/Deck Agenda Deck 5dbf9f.yaml new file mode 100644 index 000000000..db8a639b8 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 4 The Boundary Beyond 0ec59f/Deck Agenda Deck 5dbf9f.yaml @@ -0,0 +1,129 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 278714 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/ZgjFcAU.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/976604071425301191/B229EEF649F55376607371CA92C41F117D0862DC/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 2 + GMNotes: '' + GUID: c988f8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Barrier Is Thin + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 11.4132347 + posY: 1.54029453 + posZ: 10.1718607 + rotX: 0.0153185455 + rotY: 179.995316 + rotZ: 0.0824876055 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 278713 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/ZgjFcAU.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/976604071425301191/B229EEF649F55376607371CA92C41F117D0862DC/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 1 + GMNotes: '' + GUID: 9e6717 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Boundary, Broken + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 11.3226671 + posY: 1.68101621 + posZ: 10.1957331 + rotX: 0.00498115877 + rotY: 179.99234 + rotZ: 0.08270454 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2787': + BackIsHidden: true + BackURL: https://i.imgur.com/ZgjFcAU.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/976604071425301191/B229EEF649F55376607371CA92C41F117D0862DC/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 278714 +- 278713 +Description: The Boundary Beyond +GMNotes: '' +GUID: 5dbf9f +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Agenda Deck +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.72449732 + posY: 1.66397691 + posZ: 0.373257875 + rotX: 0.0168338548 + rotY: 179.999954 + rotZ: 0.08026169 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 4 The Boundary Beyond 0ec59f/Deck Encounter Deck 354fdf.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 4 The Boundary Beyond 0ec59f/Deck Encounter Deck 354fdf.yaml new file mode 100644 index 000000000..2f0ac744c --- /dev/null +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 4 The Boundary Beyond 0ec59f/Deck Encounter Deck 354fdf.yaml @@ -0,0 +1,573 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 274240 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/ZgjFcAU.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/976604071425301191/B229EEF649F55376607371CA92C41F117D0862DC/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Hex. + GMNotes: '' + GUID: 03fa5a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Window to Another Time + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 13.13529 + posY: 1.53786564 + posZ: 10.3618279 + rotX: 359.915955 + rotY: 269.988922 + rotZ: 0.0229208674 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274241 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/ZgjFcAU.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/976604071425301191/B229EEF649F55376607371CA92C41F117D0862DC/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Hex. + GMNotes: '' + GUID: 93c195 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Timeline Destabilization + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 13.1684628 + posY: 1.67889786 + posZ: 10.4964 + rotX: 359.938629 + rotY: 270.012817 + rotZ: 0.0153127741 + 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: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/ZgjFcAU.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/976604071425301191/B229EEF649F55376607371CA92C41F117D0862DC/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Humanoid. Monster. Serpent. + GMNotes: '' + GUID: 737ecd + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: "Serpent of Tenochtitl\xE1n" + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 13.1456146 + posY: 1.69680488 + posZ: 10.2775631 + rotX: 359.938934 + rotY: 270.0387 + rotZ: 0.06967427 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12920 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '129': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Hex. + GMNotes: '' + GUID: 866eba + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Lost in Time + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 13.31812 + posY: 1.6821599 + posZ: 10.3424854 + rotX: 359.933441 + rotY: 270.0019 + rotZ: 0.0155096743 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274240 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/ZgjFcAU.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/976604071425301191/B229EEF649F55376607371CA92C41F117D0862DC/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Hex. + GMNotes: '' + GUID: 7fee93 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Window to Another Time + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 13.1755095 + posY: 1.68116271 + posZ: 10.3327322 + rotX: 359.936554 + rotY: 269.99823 + rotZ: 0.0113047566 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274241 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/ZgjFcAU.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/976604071425301191/B229EEF649F55376607371CA92C41F117D0862DC/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Hex. + GMNotes: '' + GUID: 1461d8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Timeline Destabilization + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 13.1901512 + posY: 1.68344331 + posZ: 10.0567408 + rotX: 359.9358 + rotY: 270.000549 + rotZ: 0.020479165 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12919 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '129': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Hex. + GMNotes: '' + GUID: 29e1ba + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: A Tear in Time + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 13.2299023 + posY: 1.69042778 + posZ: 10.1391592 + rotX: 359.9408 + rotY: 270.030853 + rotZ: 0.06654764 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 278530 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '128': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Poison. + GMNotes: '' + GUID: 8e8fef + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Creeping Poison + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 13.158947 + posY: 1.69551063 + posZ: 10.0546179 + rotX: 359.938751 + rotY: 269.946564 + rotZ: 0.0536971 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 278530 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '128': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Poison. + GMNotes: '' + GUID: b4f854 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Creeping Poison + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 13.1079111 + posY: 1.65422022 + posZ: 9.902078 + rotX: 359.939026 + rotY: 269.9613 + rotZ: 0.0452685729 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274239 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/ZgjFcAU.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/976604071425301191/B229EEF649F55376607371CA92C41F117D0862DC/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Humanoid. Cultist. + GMNotes: '' + GUID: 0ce1b4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Hand of the Brotherhood + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 13.0876379 + posY: 1.67804039 + posZ: 10.7264729 + rotX: 359.621643 + rotY: 269.998932 + rotZ: 0.7602124 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274239 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/ZgjFcAU.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/976604071425301191/B229EEF649F55376607371CA92C41F117D0862DC/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Humanoid. Cultist. + GMNotes: '' + GUID: e64c28 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Hand of the Brotherhood + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 13.10145 + posY: 1.67121959 + posZ: 10.1285248 + rotX: 359.932068 + rotY: 270.001282 + rotZ: 0.0145172719 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12919 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '129': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Hex. + GMNotes: '' + GUID: b2f948 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: A Tear in Time + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 12.8975773 + posY: 1.68115616 + posZ: 10.3713484 + rotX: 359.932526 + rotY: 269.999756 + rotZ: 0.0129084755 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '129': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + '2742': + BackIsHidden: true + BackURL: https://i.imgur.com/ZgjFcAU.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/976604071425301191/B229EEF649F55376607371CA92C41F117D0862DC/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + '2785': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 274240 +- 274241 +- 274238 +- 12920 +- 274240 +- 274241 +- 12919 +- 278530 +- 278530 +- 274239 +- 274239 +- 12919 +Description: The Boundary Beyond +GMNotes: '' +GUID: 354fdf +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Encounter Deck +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.927703 + posY: 1.67572415 + posZ: 5.75719452 + rotX: 359.920319 + rotY: 269.999878 + rotZ: 180.02063 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 4 The Boundary Beyond 0ec59f/Deck Exploration Deck a6deb8.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 4 The Boundary Beyond 0ec59f/Deck Exploration Deck a6deb8.yaml new file mode 100644 index 000000000..3cd782a4c --- /dev/null +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 4 The Boundary Beyond 0ec59f/Deck Exploration Deck a6deb8.yaml @@ -0,0 +1,738 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 279041 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/ZgjFcAU.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/976604071425301191/B229EEF649F55376607371CA92C41F117D0862DC/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Hex. + GMNotes: '' + GUID: 677b10 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Timeline Destabilization + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 21.780489 + posY: 1.52131522 + posZ: -4.78711176 + rotX: 359.913483 + rotY: 270.00116 + rotZ: 0.011759582 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 279027 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/ZgjFcAU.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/976604071425301191/B229EEF649F55376607371CA92C41F117D0862DC/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: "Ancient. Tenochtitl\xE1n." + GMNotes: '' + GUID: c097d8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: "Temples of Tenochtitl\xE1n" + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 21.62861 + posY: 1.662124 + posZ: -5.10955524 + rotX: 359.938171 + rotY: 269.997223 + rotZ: 0.01380541 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 279040 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/ZgjFcAU.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/976604071425301191/B229EEF649F55376607371CA92C41F117D0862DC/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Hex. + GMNotes: '' + GUID: 71244a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Window to Another Time + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 21.678381 + posY: 1.68119812 + posZ: -5.10391951 + rotX: 359.939941 + rotY: 270.006439 + rotZ: 0.0288234279 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 279028 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/ZgjFcAU.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/976604071425301191/B229EEF649F55376607371CA92C41F117D0862DC/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: "Ancient. Tenochtitl\xE1n." + GMNotes: '' + GUID: b8d52b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: "Temples of Tenochtitl\xE1n" + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 21.82856 + posY: 1.6704365 + posZ: -4.700986 + rotX: 359.869751 + rotY: 270.127045 + rotZ: 359.914429 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 279029 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/ZgjFcAU.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/976604071425301191/B229EEF649F55376607371CA92C41F117D0862DC/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: "Ancient. Tenochtitl\xE1n." + GMNotes: '' + GUID: cd7bd2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Chapultepec Hill + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 21.7942886 + posY: 1.6681608 + posZ: -4.946166 + rotX: 359.949524 + rotY: 270.0507 + rotZ: 0.0921567455 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12920 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '129': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Hex. + GMNotes: '' + GUID: 5ae819 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Lost in Time + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 21.8332825 + posY: 1.66837752 + posZ: -4.58937645 + rotX: 359.953735 + rotY: 270.001465 + rotZ: 359.8838 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 279033 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/ZgjFcAU.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/976604071425301191/B229EEF649F55376607371CA92C41F117D0862DC/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: "Ancient. Tenochtitl\xE1n." + GMNotes: '' + GUID: e3a79d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Lake Xochimilco + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 21.7868061 + posY: 1.67169511 + posZ: -4.48429441 + rotX: 359.875549 + rotY: 270.031555 + rotZ: 359.825928 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 279031 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/ZgjFcAU.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/976604071425301191/B229EEF649F55376607371CA92C41F117D0862DC/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: "Ancient. Tenochtitl\xE1n." + GMNotes: '' + GUID: 0cec33 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: "Canals of Tenochtitl\xE1n" + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 21.7200527 + posY: 1.68046629 + posZ: -4.408122 + rotX: 359.94577 + rotY: 270.009277 + rotZ: 0.0277835671 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12919 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '129': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Hex. + GMNotes: '' + GUID: 29e1ba + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: A Tear in Time + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 21.2942085 + posY: 1.63641942 + posZ: -4.60643959 + rotX: 359.934784 + rotY: 270.000427 + rotZ: 0.009153306 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 279030 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/ZgjFcAU.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/976604071425301191/B229EEF649F55376607371CA92C41F117D0862DC/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: "Ancient. Tenochtitl\xE1n." + GMNotes: '' + GUID: b5d586 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Chapultepec Hill + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 21.469099 + posY: 1.65502024 + posZ: -4.59810734 + rotX: 359.950623 + rotY: 270.00296 + rotZ: 0.1217366 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 279025 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/ZgjFcAU.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/976604071425301191/B229EEF649F55376607371CA92C41F117D0862DC/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: "Ancient. Tenochtitl\xE1n." + GMNotes: '' + GUID: f3c531 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Templo Mayor + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 21.7041988 + posY: 1.6591264 + posZ: -5.15682459 + rotX: 359.937683 + rotY: 270.033539 + rotZ: 0.07293368 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 279035 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/ZgjFcAU.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/976604071425301191/B229EEF649F55376607371CA92C41F117D0862DC/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: "Ancient. Tenochtitl\xE1n." + GMNotes: '' + GUID: 4a2616 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Sacred Woods + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 21.6837864 + posY: 1.66483259 + posZ: -4.59824228 + rotX: 359.978546 + rotY: 270.00708 + rotZ: 359.908875 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 279034 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/ZgjFcAU.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/976604071425301191/B229EEF649F55376607371CA92C41F117D0862DC/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: "Ancient. Tenochtitl\xE1n." + GMNotes: '' + GUID: 11e31d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Lake Xochimilco + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 21.6593933 + posY: 1.67673659 + posZ: -5.118068 + rotX: 359.94516 + rotY: 270.041016 + rotZ: 0.118374586 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 279026 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/ZgjFcAU.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/976604071425301191/B229EEF649F55376607371CA92C41F117D0862DC/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: "Ancient. Tenochtitl\xE1n." + GMNotes: '' + GUID: a17423 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Templo Mayor + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 21.6951122 + posY: 1.68562257 + posZ: -4.767711 + rotX: 359.939 + rotY: 270.015045 + rotZ: 0.03795022 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 279032 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/ZgjFcAU.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/976604071425301191/B229EEF649F55376607371CA92C41F117D0862DC/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: "Ancient. Tenochtitl\xE1n." + GMNotes: '' + GUID: 72cf4d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: "Canals of Tenochtitl\xE1n" + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 21.71115 + posY: 1.69335246 + posZ: -4.36818361 + rotX: 359.950348 + rotY: 270.032135 + rotZ: 0.06737757 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 279036 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/ZgjFcAU.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/976604071425301191/B229EEF649F55376607371CA92C41F117D0862DC/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: "Ancient. Tenochtitl\xE1n." + GMNotes: '' + GUID: 72603b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Sacred Woods + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 21.933033 + posY: 1.70294988 + posZ: -4.820063 + rotX: 359.922546 + rotY: 270.0321 + rotZ: 0.07233702 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '129': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + '2790': + BackIsHidden: true + BackURL: https://i.imgur.com/ZgjFcAU.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/976604071425301191/B229EEF649F55376607371CA92C41F117D0862DC/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 279041 +- 279027 +- 279040 +- 279028 +- 279029 +- 12920 +- 279033 +- 279031 +- 12919 +- 279030 +- 279025 +- 279035 +- 279034 +- 279026 +- 279032 +- 279036 +Description: The Boundary Beyond +GMNotes: '' +GUID: a6deb8 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Exploration Deck +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -12.8992 + posY: 1.71015978 + posZ: 7.571801 + 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 The Forgotten Age 0ff458/Custom_Model_Bag 5 Heart of the Elders Part 1 2bfe00.ttslua b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 5 Heart of the Elders Part 1 2bfe00.ttslua new file mode 100644 index 000000000..46067f58e --- /dev/null +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 5 Heart of the Elders Part 1 2bfe00.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.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.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 Forgotten Age 0ff458/Custom_Model_Bag 5 Heart of the Elders Part 1 2bfe00.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 5 Heart of the Elders Part 1 2bfe00.yaml new file mode 100644 index 000000000..79013801b --- /dev/null +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 5 Heart of the Elders Part 1 2bfe00.yaml @@ -0,0 +1,80 @@ +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 5 Heart of the Elders Part 1 2bfe00/Card Visual Exploration + Reference c0ecac.yaml' +- !include 'Custom_Model_Bag 5 Heart of the Elders Part 1 2bfe00/Card Visual Exploration + Reference b1982f.yaml' +- !include 'Custom_Model_Bag 5 Heart of the Elders Part 1 2bfe00/Card Mouth of K''n-yan + 97335d.yaml' +- !include 'Custom_Model_Bag 5 Heart of the Elders Part 1 2bfe00/Deck Part 1 Ruins + 115824.yaml' +- !include 'Custom_Model_Bag 5 Heart of the Elders Part 1 2bfe00/Deck Exploration + Deck Part 1 6aea4b.yaml' +- !include 'Custom_Model_Bag 5 Heart of the Elders Part 1 2bfe00/Custom_Model_Bag + Set-aside a45247.yaml' +- !include 'Custom_Model_Bag 5 Heart of the Elders Part 1 2bfe00/Deck Encounter Deck + Part 1 3c7ec7.yaml' +- !include 'Custom_Model_Bag 5 Heart of the Elders Part 1 2bfe00/Deck Agenda Deck + Part 1 ff42ca.yaml' +- !include 'Custom_Model_Bag 5 Heart of the Elders Part 1 2bfe00/Deck Act Deck Part + 1 1ba19a.yaml' +- !include 'Custom_Model_Bag 5 Heart of the Elders Part 1 2bfe00/Card Scenario 8f1f3c.yaml' +- !include 'Custom_Model_Bag 5 Heart of the Elders Part 1 2bfe00/Custom_Tile Heart + of the Elders 493cb1.yaml' +CustomMesh: + CastShadows: true + ColliderURL: '' + Convex: true + DiffuseURL: http://cloud-3.steamusercontent.com/ugc/829135118403841262/FFBEF9E92E19FE25E9603C5645F1F33812D86180/ + MaterialIndex: 3 + MeshURL: https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj + NormalURL: '' + TypeIndex: 6 +Description: The Forgotten Age +GMNotes: '' +GUID: 2bfe00 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Model_Bag 5 Heart of the Elders Part 1 2bfe00.ttslua' +LuaScriptState: '{"ml":{"115824":{"lock":false,"pos":{"x":-12.3099,"y":1.6795,"z":7.5954},"rot":{"x":359.9201,"y":270,"z":180.0169}},"1ba19a":{"lock":false,"pos":{"x":-2.6884,"y":1.6623,"z":-5.0485},"rot":{"x":0.0168,"y":180.0003,"z":0.0803}},"3c7ec7":{"lock":false,"pos":{"x":-3.9274,"y":1.7557,"z":5.7572},"rot":{"x":359.9197,"y":270.0017,"z":180.0168}},"493cb1":{"lock":false,"pos":{"x":-3.9176,"y":1.5823,"z":-15.877},"rot":{"x":359.9197,"y":269.9936,"z":0.0168}},"6aea4b":{"lock":false,"pos":{"x":-3.8453,"y":1.6664,"z":10.3835},"rot":{"x":359.9197,"y":269.9999,"z":180.0168}},"8f1f3c":{"lock":false,"pos":{"x":-3.9559,"y":1.6556,"z":-10.4412},"rot":{"x":359.9197,"y":269.9961,"z":0.0168}},"97335d":{"lock":false,"pos":{"x":-17.12,"y":1.6771,"z":-0.03},"rot":{"x":359.9201,"y":269.9998,"z":0.0169}},"a45247":{"lock":false,"pos":{"x":1.6933,"y":1.5583,"z":14.2793},"rot":{"x":359.9551,"y":224.9978,"z":0.0687}},"b1982f":{"lock":false,"pos":{"x":-12.1766,"y":1.6688,"z":-14.398},"rot":{"x":0.0169,"y":179.9995,"z":180.0799}},"c0ecac":{"lock":false,"pos":{"x":-12.2234,"y":1.6708,"z":-7.7581},"rot":{"x":359.9201,"y":269.9925,"z":180.0169}},"ff42ca":{"lock":false,"pos":{"x":-2.7187,"y":1.664,"z":0.3792},"rot":{"x":0.017,"y":179.8649,"z":0.0802}}}}' +MaterialIndex: -1 +MeshIndex: -1 +Name: Custom_Model_Bag +Nickname: '5: Heart of the Elders Part 1' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 12.2499952 + posY: 1.46560538 + posZ: 3.98634982 + rotX: 359.9201 + rotY: 270.026123 + rotZ: 0.0168376453 + scaleX: 2.21 + scaleY: 0.46 + scaleZ: 2.42 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 5 Heart of the Elders Part 1 2bfe00/Card Mouth of K'n-yan 97335d.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 5 Heart of the Elders Part 1 2bfe00/Card Mouth of K'n-yan 97335d.yaml new file mode 100644 index 000000000..468ef1417 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 5 Heart of the Elders Part 1 2bfe00/Card Mouth of K'n-yan 97335d.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 12714 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/dduEXOZ.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949584217499447778/D520DDC422F8941F9935AAD9075566696E799853/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 97335d +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Mouth of K'n-yan +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -17.12 + posY: 1.67707765 + posZ: -0.0299998783 + rotX: 359.9201 + rotY: 269.999817 + rotZ: 0.0168707836 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 5 Heart of the Elders Part 1 2bfe00/Card Scenario 8f1f3c.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 5 Heart of the Elders Part 1 2bfe00/Card Scenario 8f1f3c.yaml new file mode 100644 index 000000000..6c6c42aa8 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 5 Heart of the Elders Part 1 2bfe00/Card Scenario 8f1f3c.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 12713 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/dduEXOZ.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949584217499447778/D520DDC422F8941F9935AAD9075566696E799853/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Heart of the Elders +GMNotes: '' +GUID: 8f1f3c +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Scenario +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.95590019 + posY: 1.655648 + posZ: -10.4412022 + rotX: 359.919739 + rotY: 269.996124 + rotZ: 0.0168399476 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 5 Heart of the Elders Part 1 2bfe00/Card Visual Exploration Reference b1982f.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 5 Heart of the Elders Part 1 2bfe00/Card Visual Exploration Reference b1982f.yaml new file mode 100644 index 000000000..b5713a143 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 5 Heart of the Elders Part 1 2bfe00/Card Visual Exploration Reference b1982f.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 278500 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2785': + BackIsHidden: false + BackURL: https://i.imgur.com/3x23Tmh.jpg + FaceURL: https://i.imgur.com/3x23Tmh.jpg + NumHeight: 2 + NumWidth: 2 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: b1982f +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Visual Exploration Reference +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -12.1765566 + posY: 1.66877651 + posZ: -14.3979988 + rotX: 0.0168710854 + rotY: 179.999481 + rotZ: 180.0799 + scaleX: 2.0 + scaleY: 1.0 + scaleZ: 2.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 5 Heart of the Elders Part 1 2bfe00/Card Visual Exploration Reference c0ecac.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 5 Heart of the Elders Part 1 2bfe00/Card Visual Exploration Reference c0ecac.yaml new file mode 100644 index 000000000..14f3c570c --- /dev/null +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 5 Heart of the Elders Part 1 2bfe00/Card Visual Exploration Reference c0ecac.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 265802 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2658': + BackIsHidden: false + BackURL: https://i.imgur.com/3x23Tmh.jpg + FaceURL: https://i.imgur.com/3x23Tmh.jpg + NumHeight: 2 + NumWidth: 2 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: c0ecac +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Visual Exploration Reference +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -12.2234221 + posY: 1.67079711 + posZ: -7.75806427 + rotX: 359.9201 + rotY: 269.992462 + rotZ: 180.016876 + scaleX: 2.0 + scaleY: 1.0 + scaleZ: 2.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/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 0ff458/Custom_Model_Bag 5 Heart of the Elders Part 1 2bfe00/Custom_Model_Bag Set-aside a45247.yaml new file mode 100644 index 000000000..28af05504 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 5 Heart of the Elders Part 1 2bfe00/Custom_Model_Bag Set-aside a45247.yaml @@ -0,0 +1,270 @@ +Autoraise: true +ColorDiffuse: + b: 0.02148666 + g: 0.00100758043 + r: 0.02148666 +ContainedObjects: +- Autoraise: true + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: + - Autoraise: true + CardID: 13231 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '132': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Poision. + GMNotes: '' + GUID: 866eba + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Poisoned + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.1899414 + posY: 1.53866589 + posZ: 17.62787 + rotX: 359.920135 + rotY: 270.0001 + rotZ: 180.016876 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' + - Autoraise: true + CardID: 13231 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '132': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Poision. + GMNotes: '' + GUID: a3bc36 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Poisoned + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.72637 + posY: 1.53720629 + posZ: 15.2102079 + rotX: 359.920135 + rotY: 269.999878 + rotZ: 180.016876 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' + - Autoraise: true + CardID: 13231 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '132': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Poision. + GMNotes: '' + GUID: 34788c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Poisoned + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 20.55905 + posY: 1.5317899 + posZ: 14.9614468 + rotX: 359.920135 + rotY: 269.9986 + rotZ: 180.016876 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' + - Autoraise: true + CardID: 13231 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '132': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Poision. + GMNotes: '' + GUID: 1f5327 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Poisoned + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 19.6766071 + posY: 1.53383923 + posZ: 17.7433376 + rotX: 359.920135 + rotY: 269.9992 + rotZ: 180.016876 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' + CustomDeck: + '132': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + DeckIDs: + - 13231 + - 13231 + - 13231 + - 13231 + Description: '' + GMNotes: '' + GUID: df48ee + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Deck + Nickname: Poisoned + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 44.3641357 + posY: 3.408578 + posZ: 48.6190834 + rotX: 0.0129437847 + rotY: 269.999817 + rotZ: 180.014343 + 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: Heart of the Elders +GMNotes: '' +GUID: a45247 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +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.69330084 + posY: 1.55832124 + posZ: 14.2793016 + rotX: 359.955139 + rotY: 224.997772 + rotZ: 0.0686862543 + scaleX: 2.0 + scaleY: 2.0 + scaleZ: 2.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 5 Heart of the Elders Part 1 2bfe00/Custom_Tile Heart of the Elders 493cb1.ttslua b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 5 Heart of the Elders Part 1 2bfe00/Custom_Tile Heart of the Elders 493cb1.ttslua new file mode 100644 index 000000000..4f3609807 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 5 Heart of the Elders Part 1 2bfe00/Custom_Tile Heart of the Elders 493cb1.ttslua @@ -0,0 +1,25 @@ +name = 'Heart of the Elders' + +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 + +function standaloneClick() + Global.call('fillContainer', {object=self, key=name, mode='standalone'}) +end \ No newline at end of file diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/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 0ff458/Custom_Model_Bag 5 Heart of the Elders Part 1 2bfe00/Custom_Tile Heart of the Elders 493cb1.yaml new file mode 100644 index 000000000..ad3a5ddf3 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 5 Heart of the Elders Part 1 2bfe00/Custom_Tile Heart of the Elders 493cb1.yaml @@ -0,0 +1,42 @@ +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 +GMNotes: '' +GUID: 493cb1 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Tile Heart of the Elders 493cb1.ttslua' +LuaScriptState: '' +Name: Custom_Tile +Nickname: Heart of the Elders +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.91760087 + posY: 1.58228362 + posZ: -15.8770027 + rotX: 359.919739 + rotY: 269.9936 + rotZ: 0.0168434177 + scaleX: 2.2 + scaleY: 1.0 + scaleZ: 2.2 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 5 Heart of the Elders Part 1 2bfe00/Deck Act Deck Part 1 1ba19a.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 5 Heart of the Elders Part 1 2bfe00/Deck Act Deck Part 1 1ba19a.yaml new file mode 100644 index 000000000..564833c57 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 5 Heart of the Elders Part 1 2bfe00/Deck Act Deck Part 1 1ba19a.yaml @@ -0,0 +1,129 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 12718 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/dduEXOZ.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949584217499447778/D520DDC422F8941F9935AAD9075566696E799853/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 2 + GMNotes: '' + GUID: 178da9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Opening the Maw + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 29.059639 + posY: 1.34624743 + posZ: 48.45711 + rotX: 0.0131843267 + rotY: 180.000168 + rotZ: 359.977753 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12717 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/dduEXOZ.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949584217499447778/D520DDC422F8941F9935AAD9075566696E799853/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 1 + GMNotes: '' + GUID: 9e2e37 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Search for Pattern + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 29.1977234 + posY: 1.48644829 + posZ: 48.735733 + rotX: 0.0137309479 + rotY: 179.999954 + rotZ: 359.9901 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/dduEXOZ.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949584217499447778/D520DDC422F8941F9935AAD9075566696E799853/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 12718 +- 12717 +Description: Heart of the Elders +GMNotes: '' +GUID: 1ba19a +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Act Deck Part 1 +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.6884 + posY: 1.66233325 + posZ: -5.048501 + rotX: 0.0168378837 + rotY: 180.000259 + rotZ: 0.080261685 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 5 Heart of the Elders Part 1 2bfe00/Deck Agenda Deck Part 1 ff42ca.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 5 Heart of the Elders Part 1 2bfe00/Deck Agenda Deck Part 1 ff42ca.yaml new file mode 100644 index 000000000..2219849bc --- /dev/null +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 5 Heart of the Elders Part 1 2bfe00/Deck Agenda Deck Part 1 ff42ca.yaml @@ -0,0 +1,129 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 12716 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/dduEXOZ.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949584217499447778/D520DDC422F8941F9935AAD9075566696E799853/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 2 + GMNotes: '' + GUID: 61410b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Setting Sun + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 32.5706749 + posY: 1.34862185 + posZ: 52.3054428 + rotX: 0.011754347 + rotY: 180.000229 + rotZ: 359.977234 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12715 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/dduEXOZ.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949584217499447778/D520DDC422F8941F9935AAD9075566696E799853/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 1 + GMNotes: '' + GUID: 1893f1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Jungle's Heart + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 32.4125824 + posY: 1.48863351 + posZ: 52.2773361 + rotX: 0.0201728065 + rotY: 180.0001 + rotZ: 359.972168 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/dduEXOZ.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949584217499447778/D520DDC422F8941F9935AAD9075566696E799853/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 12716 +- 12715 +Description: Heart of the Elders +GMNotes: '' +GUID: ff42ca +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Agenda Deck Part 1 +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.71870017 + posY: 1.66397059 + posZ: 0.379199654 + rotX: 0.0170269124 + rotY: 179.864914 + rotZ: 0.08022077 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 5 Heart of the Elders Part 1 2bfe00/Deck Encounter Deck Part 1 3c7ec7.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 5 Heart of the Elders Part 1 2bfe00/Deck Encounter Deck Part 1 3c7ec7.yaml new file mode 100644 index 000000000..15aa6fe7c --- /dev/null +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 5 Heart of the Elders Part 1 2bfe00/Deck Encounter Deck Part 1 3c7ec7.yaml @@ -0,0 +1,1232 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 12729 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/dduEXOZ.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949584217499447778/D520DDC422F8941F9935AAD9075566696E799853/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Hazard. + GMNotes: '' + GUID: 763f2b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ants! + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 21.63523 + posY: 1.63666213 + posZ: 57.8703957 + rotX: 0.0208980255 + rotY: 270.0043 + rotZ: 180.015778 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12728 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/dduEXOZ.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949584217499447778/D520DDC422F8941F9935AAD9075566696E799853/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Monster. Serpent. + GMNotes: '' + GUID: 85007f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Basilisk + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 13.9386454 + posY: 1.816492 + posZ: -7.474878 + rotX: 359.920868 + rotY: 269.92572 + rotZ: 187.266479 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12728 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/dduEXOZ.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949584217499447778/D520DDC422F8941F9935AAD9075566696E799853/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Monster. Serpent. + GMNotes: '' + GUID: 9989f2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Basilisk + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 13.9369049 + posY: 1.71803546 + posZ: -6.696216 + rotX: 359.9011 + rotY: 270.0829 + rotZ: 187.259811 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12727 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/dduEXOZ.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949584217499447778/D520DDC422F8941F9935AAD9075566696E799853/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Creature. Flora. + GMNotes: '' + GUID: '894376' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Apex Strangleweed + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 13.9344358 + posY: 1.6377368 + posZ: -5.91985559 + rotX: 359.923584 + rotY: 269.9566 + rotZ: 185.49437 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12727 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/dduEXOZ.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949584217499447778/D520DDC422F8941F9935AAD9075566696E799853/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Creature. Flora. + GMNotes: '' + GUID: af5d2c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Apex Strangleweed + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 13.9311085 + posY: 1.709406 + posZ: -5.1433897 + rotX: 359.9193 + rotY: 270.0043 + rotZ: 185.487885 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12724 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/dduEXOZ.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949584217499447778/D520DDC422F8941F9935AAD9075566696E799853/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Hazard. + GMNotes: '' + GUID: 6550e9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Poisonous Spores + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 13.9277344 + posY: 1.63708925 + posZ: -4.36516857 + rotX: 359.9214 + rotY: 270.02655 + rotZ: 185.50528 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12724 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/dduEXOZ.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949584217499447778/D520DDC422F8941F9935AAD9075566696E799853/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Hazard. + GMNotes: '' + GUID: 98a6eb + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Poisonous Spores + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 13.9263582 + posY: 1.66882074 + posZ: -3.6125493 + rotX: 359.922516 + rotY: 269.969482 + rotZ: 186.817627 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12724 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/dduEXOZ.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949584217499447778/D520DDC422F8941F9935AAD9075566696E799853/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Hazard. + GMNotes: '' + GUID: 05d368 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Poisonous Spores + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 13.9235039 + posY: 1.53593874 + posZ: -2.43811178 + rotX: 359.9176 + rotY: 270.020081 + rotZ: 180.019073 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12723 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/dduEXOZ.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949584217499447778/D520DDC422F8941F9935AAD9075566696E799853/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Trap. + GMNotes: '' + GUID: 58ab68 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Pitfall + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 13.9135132 + posY: 1.695333 + posZ: -1.2657429 + rotX: 359.920471 + rotY: 270.054047 + rotZ: 180.706711 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 13110 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '131': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Blunder. + GMNotes: '' + GUID: e7d6b8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Lost in the Wilds + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 13.9113579 + posY: 1.75634408 + posZ: -0.510776341 + rotX: 359.9278 + rotY: 270.027924 + rotZ: 180.724747 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 13110 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '131': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Blunder. + GMNotes: '' + GUID: f8b917 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Lost in the Wilds + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 13.9112806 + posY: 1.53689086 + posZ: 0.2544346 + rotX: 359.928345 + rotY: 270.025757 + rotZ: 180.042938 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 13009 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '130': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Hazard. Poison. + GMNotes: '' + GUID: fa161c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Snake Bite + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 13.9071741 + posY: 1.61497867 + posZ: 0.994266152 + rotX: 359.9322 + rotY: 270.016 + rotZ: 179.9502 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12729 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/dduEXOZ.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949584217499447778/D520DDC422F8941F9935AAD9075566696E799853/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Hazard. + GMNotes: '' + GUID: 6d682c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ants! + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 13.9027491 + posY: 1.68044388 + posZ: 1.74030638 + rotX: 359.285217 + rotY: 269.708923 + rotZ: 183.493484 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 13009 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '130': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Hazard. Poison. + GMNotes: '' + GUID: '180783' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Snake Bite + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 13.93088 + posY: 1.9894495 + posZ: 2.24091649 + rotX: 359.3314 + rotY: 269.825928 + rotZ: 172.0522 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 13009 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '130': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Hazard. Poison. + GMNotes: '' + GUID: a8fd9c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Snake Bite + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 13.9271832 + posY: 1.86213243 + posZ: 3.00561023 + rotX: 359.304657 + rotY: 269.800171 + rotZ: 172.042679 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 278706 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '128': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Power. + GMNotes: '' + GUID: e821da + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Voice of the Jungle + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 13.9275141 + posY: 1.92489743 + posZ: 3.77227259 + rotX: 359.352081 + rotY: 269.94632 + rotZ: 172.142776 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 278706 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '128': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Power. + GMNotes: '' + GUID: 53458a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Voice of the Jungle + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 13.9235954 + posY: 1.54583025 + posZ: 4.380256 + rotX: 359.916321 + rotY: 269.5181 + rotZ: 179.607147 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 13230 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '132': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Poison. + GMNotes: '' + GUID: b4f854 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Creeping Poison + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 13.9201126 + posY: 1.614681 + posZ: 5.14929676 + rotX: 359.900269 + rotY: 269.7371 + rotZ: 179.552979 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 13007 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '130': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Creature. Serpent. + GMNotes: '' + GUID: 70f9aa + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Pit Viper + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 13.9210224 + posY: 1.66146851 + posZ: 5.9229126 + rotX: 0.144874588 + rotY: 269.919922 + rotZ: 179.955734 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 13230 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '132': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Poison. + GMNotes: '' + GUID: 8e8fef + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Creeping Poison + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 13.9229012 + posY: 1.74922872 + posZ: 7.31235456 + rotX: 359.9557 + rotY: 269.892456 + rotZ: 173.7313 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 13008 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '130': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Creature. Serpent. + GMNotes: '' + GUID: 9a4243 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Boa Constrictor + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 13.922019 + posY: 1.64561284 + posZ: 8.082075 + rotX: 359.7124 + rotY: 269.9747 + rotZ: 179.445221 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 13007 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '130': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Creature. Serpent. + GMNotes: '' + GUID: '062575' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Pit Viper + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 13.9238253 + posY: 1.55921507 + posZ: 8.845411 + rotX: 359.913147 + rotY: 269.9133 + rotZ: 178.902237 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 13007 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '130': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Creature. Serpent. + GMNotes: '' + GUID: f460e3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Pit Viper + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 13.9165983 + posY: 1.74688959 + posZ: 9.63225 + rotX: 359.6403 + rotY: 269.89328 + rotZ: 169.748962 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 13111 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '131': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Blunder. + GMNotes: '' + GUID: '632986' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Low on Supplies + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 13.9207869 + posY: 1.69410431 + posZ: 10.3939714 + rotX: 359.9591 + rotY: 270.01297 + rotZ: 179.618286 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 278705 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '128': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Obstacle. + GMNotes: '' + GUID: 866eba + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Overgrowth + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 13.9169159 + posY: 1.772701 + posZ: 11.1651249 + rotX: -0.00406563 + rotY: 269.975464 + rotZ: 179.668579 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 278705 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '128': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Obstacle. + GMNotes: '' + GUID: cfda2a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Overgrowth + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 13.9067879 + posY: 1.54003322 + posZ: 11.7880545 + rotX: 359.919617 + rotY: 270.000946 + rotZ: 180.012283 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12723 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/dduEXOZ.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949584217499447778/D520DDC422F8941F9935AAD9075566696E799853/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Trap. + GMNotes: '' + GUID: ab80bf + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Pitfall + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 13.9299431 + posY: 1.9260751 + posZ: -1.92565477 + rotX: 359.924866 + rotY: 270.002777 + rotZ: 178.515778 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/dduEXOZ.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949584217499447778/D520DDC422F8941F9935AAD9075566696E799853/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + '130': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + '131': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + '132': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + '2787': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 12729 +- 12728 +- 12728 +- 12727 +- 12727 +- 12724 +- 12724 +- 12724 +- 12723 +- 13110 +- 13110 +- 13009 +- 12729 +- 13009 +- 13009 +- 278706 +- 278706 +- 13230 +- 13007 +- 13230 +- 13008 +- 13007 +- 13007 +- 13111 +- 278705 +- 278705 +- 12723 +Description: Heart of the Elders +GMNotes: '' +GUID: 3c7ec7 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Encounter Deck Part 1 +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.92740059 + posY: 1.755721 + posZ: 5.7572 + rotX: 359.919739 + rotY: 270.0017 + rotZ: 180.01683 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 5 Heart of the Elders Part 1 2bfe00/Deck Exploration Deck Part 1 6aea4b.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 5 Heart of the Elders Part 1 2bfe00/Deck Exploration Deck Part 1 6aea4b.yaml new file mode 100644 index 000000000..2fc2fbddf --- /dev/null +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 5 Heart of the Elders Part 1 2bfe00/Deck Exploration Deck Part 1 6aea4b.yaml @@ -0,0 +1,494 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 12968 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '129': + BackIsHidden: true + BackURL: https://i.imgur.com/RpzEfmS.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393194495/027101CA5C626EBA0E4F76F3F15569329F81DE3C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Jungle. + GMNotes: '' + GUID: 964bf2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Path of Thorns + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.6885719 + posY: 1.53131866 + posZ: -4.96276 + rotX: 359.920135 + rotY: 270.000031 + rotZ: 180.016876 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 278802 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '128': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Jungle. + GMNotes: '' + GUID: 43b8f7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Circuitous Trail + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.6885433 + posY: 1.53195453 + posZ: -2.8036375 + rotX: 359.920135 + rotY: 270.0 + rotZ: 180.016876 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12969 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '129': + BackIsHidden: true + BackURL: https://i.imgur.com/RpzEfmS.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393194495/027101CA5C626EBA0E4F76F3F15569329F81DE3C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Jungle. + GMNotes: '' + GUID: a242fd + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: River Canyon + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.688549 + posY: 1.53259039 + posZ: -0.6445118 + rotX: 359.920135 + rotY: 270.000031 + rotZ: 180.016876 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 278801 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '128': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Jungle. + GMNotes: '' + GUID: '878051' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: "Serpent\u2019s Haven" + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.6885376 + posY: 1.533226 + posZ: 1.514632 + rotX: 359.920135 + rotY: 270.0001 + rotZ: 180.016876 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 278800 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '128': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Jungle. + GMNotes: '' + GUID: 4c7796 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Rope Bridge + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.688509 + posY: 1.533862 + posZ: 3.673788 + rotX: 359.920135 + rotY: 270.000061 + rotZ: 180.016876 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12725 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/dduEXOZ.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949584217499447778/D520DDC422F8941F9935AAD9075566696E799853/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Jungle. + GMNotes: '' + GUID: 7b73a5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Time-Wracked Woods + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.68857 + posY: 1.53449762 + posZ: 5.832949 + rotX: 359.920135 + rotY: 270.000031 + rotZ: 180.016876 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12723 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/dduEXOZ.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949584217499447778/D520DDC422F8941F9935AAD9075566696E799853/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Trap. + GMNotes: '' + GUID: ab80bf + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Pitfall + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.6886082 + posY: 1.53513348 + posZ: 7.992072 + rotX: 359.920135 + rotY: 270.000061 + rotZ: 180.016876 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12729 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/dduEXOZ.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949584217499447778/D520DDC422F8941F9935AAD9075566696E799853/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Hazard. + GMNotes: '' + GUID: 763f2b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ants! + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.68849 + posY: 1.53576934 + posZ: 10.1512289 + rotX: 359.920135 + rotY: 270.000061 + rotZ: 180.016876 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 13111 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '131': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Blunder. + GMNotes: '' + GUID: 866eba + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Low on Supplies + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.6885262 + posY: 1.536405 + posZ: 12.3103857 + rotX: 359.920135 + rotY: 270.000031 + rotZ: 180.016876 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 13110 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '131': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Blunder. + GMNotes: '' + GUID: dc5b1e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Lost in the Wilds + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.6885624 + posY: 1.537041 + posZ: 14.4695 + rotX: 359.920135 + rotY: 270.000031 + rotZ: 180.016876 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/dduEXOZ.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949584217499447778/D520DDC422F8941F9935AAD9075566696E799853/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + '129': + BackIsHidden: true + BackURL: https://i.imgur.com/RpzEfmS.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393194495/027101CA5C626EBA0E4F76F3F15569329F81DE3C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + '131': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + '2788': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 12968 +- 278802 +- 12969 +- 278801 +- 278800 +- 12725 +- 12723 +- 12729 +- 13111 +- 13110 +Description: Heart of the Elders +GMNotes: '' +GUID: 6aea4b +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Exploration Deck Part 1 +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.84530067 + posY: 1.66636479 + posZ: 10.3835011 + rotX: 359.919739 + rotY: 269.999939 + rotZ: 180.01683 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 5 Heart of the Elders Part 1 2bfe00/Deck Part 1 Ruins 115824.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 5 Heart of the Elders Part 1 2bfe00/Deck Part 1 Ruins 115824.yaml new file mode 100644 index 000000000..893106ece --- /dev/null +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 5 Heart of the Elders Part 1 2bfe00/Deck Part 1 Ruins 115824.yaml @@ -0,0 +1,179 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 12726 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/dduEXOZ.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949584217499447778/D520DDC422F8941F9935AAD9075566696E799853/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Ancient. Ruins. + GMNotes: '' + GUID: 0673f6 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Stone Altar + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 18.6551666 + posY: 1.35083735 + posZ: 67.15366 + rotX: 0.02080787 + rotY: 270.0 + rotZ: 180.016769 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 278604 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '128': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Ancient. Ruins. + GMNotes: '' + GUID: 72be38 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Overgrown Ruins + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 18.7671089 + posY: 1.351754 + posZ: 70.14613 + rotX: 0.020808585 + rotY: 270.000031 + rotZ: 180.016769 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 278603 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '128': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Ancient. Ruins. + GMNotes: '' + GUID: e42c09 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Temple of the Fang + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 18.4005814 + posY: 1.35246432 + posZ: 73.02778 + rotX: 0.0208077952 + rotY: 270.000031 + rotZ: 180.016769 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/dduEXOZ.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949584217499447778/D520DDC422F8941F9935AAD9075566696E799853/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + '2786': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 12726 +- 278604 +- 278603 +Description: Heart of the Elders +GMNotes: '' +GUID: '115824' +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Part 1 Ruins +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -12.3099213 + posY: 1.67949533 + posZ: 7.59536 + rotX: 359.9201 + rotY: 269.999969 + rotZ: 180.016876 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 5 Heart of the Elders Part 2 5b2403.ttslua b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 5 Heart of the Elders Part 2 5b2403.ttslua new file mode 100644 index 000000000..46067f58e --- /dev/null +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 5 Heart of the Elders Part 2 5b2403.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.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.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 Forgotten Age 0ff458/Custom_Model_Bag 5 Heart of the Elders Part 2 5b2403.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 5 Heart of the Elders Part 2 5b2403.yaml new file mode 100644 index 000000000..96d00711f --- /dev/null +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 5 Heart of the Elders Part 2 5b2403.yaml @@ -0,0 +1,72 @@ +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 5 Heart of the Elders Part 2 5b2403/Deck Agenda Deck + Part 2 88bd9e.yaml' +- !include 'Custom_Model_Bag 5 Heart of the Elders Part 2 5b2403/Deck Act Deck Part + 2 df31c5.yaml' +- !include 'Custom_Model_Bag 5 Heart of the Elders Part 2 5b2403/Card Scenario 4662da.yaml' +- !include 'Custom_Model_Bag 5 Heart of the Elders Part 2 5b2403/Deck Encounter Deck + Part 2 10ce27.yaml' +- !include 'Custom_Model_Bag 5 Heart of the Elders Part 2 5b2403/Custom_Model_Bag + Set-aside 340f04.yaml' +- !include 'Custom_Model_Bag 5 Heart of the Elders Part 2 5b2403/Deck Exploration + Deck 30a2e4.yaml' +- !include 'Custom_Model_Bag 5 Heart of the Elders Part 2 5b2403/Card Mouth of K''n-yan + 6ee3ce.yaml' +CustomMesh: + CastShadows: true + ColliderURL: '' + Convex: true + DiffuseURL: http://cloud-3.steamusercontent.com/ugc/829135118403841262/FFBEF9E92E19FE25E9603C5645F1F33812D86180/ + MaterialIndex: 3 + MeshURL: https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj + NormalURL: '' + TypeIndex: 6 +Description: The Forgotten Age +GMNotes: '' +GUID: 5b2403 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Model_Bag 5 Heart of the Elders Part 2 5b2403.ttslua' +LuaScriptState: '{"ml":{"10ce27":{"lock":false,"pos":{"x":-3.9274,"y":1.7717,"z":5.7571},"rot":{"x":359.9197,"y":270.0076,"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.6964,"y":1.5583,"z":14.2788},"rot":{"x":359.9551,"y":224.998,"z":0.0687}},"4662da":{"lock":false,"pos":{"x":-3.9559,"y":1.6556,"z":-10.4412},"rot":{"x":359.9197,"y":269.9961,"z":0.0168}},"6ee3ce":{"lock":false,"pos":{"x":-17.1199,"y":1.6771,"z":-0.03},"rot":{"x":359.9201,"y":269.9997,"z":0.0169}},"88bd9e":{"lock":false,"pos":{"x":-2.7207,"y":1.664,"z":0.3785},"rot":{"x":0.017,"y":179.883,"z":0.0802}},"df31c5":{"lock":false,"pos":{"x":-2.6884,"y":1.6623,"z":-5.0485},"rot":{"x":0.0168,"y":180.0008,"z":0.0803}}}}' +MaterialIndex: -1 +MeshIndex: -1 +Name: Custom_Model_Bag +Nickname: '5: Heart of the Elders Part 2' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 12.2495975 + posY: 1.46325016 + posZ: -4.013653 + rotX: 359.920135 + rotY: 270.0024 + rotZ: 0.0168705266 + scaleX: 2.21 + scaleY: 0.46 + scaleZ: 2.42 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 5 Heart of the Elders Part 2 5b2403/Card Mouth of K'n-yan 6ee3ce.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 5 Heart of the Elders Part 2 5b2403/Card Mouth of K'n-yan 6ee3ce.yaml new file mode 100644 index 000000000..ce726d106 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 5 Heart of the Elders Part 2 5b2403/Card Mouth of K'n-yan 6ee3ce.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 12714 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/dduEXOZ.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949584217499447778/D520DDC422F8941F9935AAD9075566696E799853/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 6ee3ce +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Mouth of K'n-yan +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -17.1199 + posY: 1.67707753 + posZ: -0.0299998075 + rotX: 359.9201 + rotY: 269.999664 + rotZ: 0.0168686882 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 5 Heart of the Elders Part 2 5b2403/Card Scenario 4662da.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 5 Heart of the Elders Part 2 5b2403/Card Scenario 4662da.yaml new file mode 100644 index 000000000..f98bdb17a --- /dev/null +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 5 Heart of the Elders Part 2 5b2403/Card Scenario 4662da.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 12713 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/dduEXOZ.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949584217499447778/D520DDC422F8941F9935AAD9075566696E799853/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Heart of the Elders +GMNotes: '' +GUID: 4662da +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Scenario +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.95590043 + posY: 1.655648 + posZ: -10.4412022 + rotX: 359.919739 + rotY: 269.9961 + rotZ: 0.0168399829 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/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 0ff458/Custom_Model_Bag 5 Heart of the Elders Part 2 5b2403/Custom_Model_Bag Set-aside 340f04.yaml new file mode 100644 index 000000000..bc850d151 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 5 Heart of the Elders Part 2 5b2403/Custom_Model_Bag Set-aside 340f04.yaml @@ -0,0 +1,58 @@ +Autoraise: true +ColorDiffuse: + b: 0.02148666 + g: 0.00100758043 + r: 0.02148666 +ContainedObjects: +- !include 'Custom_Model_Bag Set-aside 340f04/Deck Poisoned 96ca06.yaml' +- !include 'Custom_Model_Bag Set-aside 340f04/Card Descent to Yoth d00ab9.yaml' +- !include 'Custom_Model_Bag Set-aside 340f04/Card Harbinger of Valusia c6b3fc.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: Heart of the Elders +GMNotes: '' +GUID: 340f04 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +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.55831707 + posZ: 14.2788019 + rotX: 359.955139 + rotY: 224.998 + rotZ: 0.06868421 + scaleX: 2.0 + scaleY: 2.0 + scaleZ: 2.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 5 Heart of the Elders Part 2 5b2403/Custom_Model_Bag Set-aside 340f04/Card Descent to Yoth d00ab9.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 5 Heart of the Elders Part 2 5b2403/Custom_Model_Bag Set-aside 340f04/Card Descent to Yoth d00ab9.yaml new file mode 100644 index 000000000..9f4055ecd --- /dev/null +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 5 Heart of the Elders Part 2 5b2403/Custom_Model_Bag Set-aside 340f04/Card Descent to Yoth d00ab9.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 12735 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/dduEXOZ.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949584217499447778/D520DDC422F8941F9935AAD9075566696E799853/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Ancient. Cave. +GMNotes: '' +GUID: d00ab9 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Descent to Yoth +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 21.20712 + posY: 3.58474684 + posZ: 36.47215 + rotX: 359.936035 + rotY: 269.999847 + rotZ: 0.0130319437 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 5 Heart of the Elders Part 2 5b2403/Custom_Model_Bag Set-aside 340f04/Card Harbinger of Valusia c6b3fc.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 5 Heart of the Elders Part 2 5b2403/Custom_Model_Bag Set-aside 340f04/Card Harbinger of Valusia c6b3fc.yaml new file mode 100644 index 000000000..9dac4bcc2 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 5 Heart of the Elders Part 2 5b2403/Custom_Model_Bag Set-aside 340f04/Card Harbinger of Valusia c6b3fc.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 12261 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '122': + BackIsHidden: true + BackURL: https://i.imgur.com/RpzEfmS.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393194495/027101CA5C626EBA0E4F76F3F15569329F81DE3C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Humanoid. Monster. Serpent. Elite. +GMNotes: '' +GUID: c6b3fc +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Harbinger of Valusia +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 75.00718 + posY: 3.62668061 + posZ: -32.3164139 + rotX: 359.9925 + rotY: 270.000244 + rotZ: -0.002086219 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 5 Heart of the Elders Part 2 5b2403/Custom_Model_Bag Set-aside 340f04/Deck Poisoned 96ca06.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 5 Heart of the Elders Part 2 5b2403/Custom_Model_Bag Set-aside 340f04/Deck Poisoned 96ca06.yaml new file mode 100644 index 000000000..b926f84c6 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 5 Heart of the Elders Part 2 5b2403/Custom_Model_Bag Set-aside 340f04/Deck Poisoned 96ca06.yaml @@ -0,0 +1,215 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 13231 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '132': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Poision. + GMNotes: '' + GUID: 307d63 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Poisoned + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 25.8267365 + posY: 1.7189846 + posZ: 41.51654 + rotX: 359.98288 + rotY: 269.999451 + rotZ: 180.003647 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 13231 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '132': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Poision. + GMNotes: '' + GUID: 1f5327 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Poisoned + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 27.6812859 + posY: 1.34835076 + posZ: 47.4602852 + rotX: 0.02080861 + rotY: 270.000549 + rotZ: 180.016769 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 13231 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '132': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Poision. + GMNotes: '' + GUID: 866eba + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Poisoned + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 31.855545 + posY: 1.34968209 + posZ: 46.8291321 + rotX: 0.0208098032 + rotY: 269.9991 + rotZ: 180.016769 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 13231 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '132': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Poision. + GMNotes: '' + GUID: 34788c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Poisoned + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 32.15816 + posY: 1.35051644 + posZ: 49.3038177 + rotX: 0.0208101012 + rotY: 269.998779 + rotZ: 180.016769 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '132': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 13231 +- 13231 +- 13231 +- 13231 +Description: '' +GMNotes: '' +GUID: 96ca06 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Poisoned +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 21.884407 + posY: 3.59001184 + posZ: 35.3039474 + rotX: 359.935852 + rotY: 269.999878 + rotZ: 180.013535 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 5 Heart of the Elders Part 2 5b2403/Deck Act Deck Part 2 df31c5.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 5 Heart of the Elders Part 2 5b2403/Deck Act Deck Part 2 df31c5.yaml new file mode 100644 index 000000000..243dfbb8a --- /dev/null +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 5 Heart of the Elders Part 2 5b2403/Deck Act Deck Part 2 df31c5.yaml @@ -0,0 +1,129 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 12722 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/dduEXOZ.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949584217499447778/D520DDC422F8941F9935AAD9075566696E799853/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 2 + GMNotes: '' + GUID: 2927d8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Descent into Dark + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 34.4976 + posY: 1.34827352 + posZ: 48.40124 + rotX: 0.0159096029 + rotY: 180.0007 + rotZ: 359.977539 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12721 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/dduEXOZ.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949584217499447778/D520DDC422F8941F9935AAD9075566696E799853/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 1 + GMNotes: '' + GUID: 89e433 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Cavern of the Forgotten Age + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 34.59942 + posY: 1.4887203 + posZ: 48.5581055 + rotX: 0.005896638 + rotY: 180.001022 + rotZ: 359.976929 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/dduEXOZ.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949584217499447778/D520DDC422F8941F9935AAD9075566696E799853/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 12722 +- 12721 +Description: Heart of the Elders +GMNotes: '' +GUID: df31c5 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Act Deck Part 2 +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.6884 + posY: 1.66233325 + posZ: -5.048501 + rotX: 0.016835928 + rotY: 180.000809 + rotZ: 0.08025938 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 5 Heart of the Elders Part 2 5b2403/Deck Agenda Deck Part 2 88bd9e.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 5 Heart of the Elders Part 2 5b2403/Deck Agenda Deck Part 2 88bd9e.yaml new file mode 100644 index 000000000..13ae83036 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 5 Heart of the Elders Part 2 5b2403/Deck Agenda Deck Part 2 88bd9e.yaml @@ -0,0 +1,129 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 12720 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/dduEXOZ.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949584217499447778/D520DDC422F8941F9935AAD9075566696E799853/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 2 + GMNotes: '' + GUID: 0bbb1e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Eyes in the Dark + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 29.17712 + posY: 1.34748173 + posZ: 52.4936676 + rotX: 0.013827729 + rotY: 180.000015 + rotZ: 359.978241 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12719 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/dduEXOZ.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949584217499447778/D520DDC422F8941F9935AAD9075566696E799853/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 1 + GMNotes: '' + GUID: 0d3b97 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Lonely Caverns + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 29.464098 + posY: 1.4878161 + posZ: 52.3556633 + rotX: 0.00584288 + rotY: 180.000061 + rotZ: -0.00173077255 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/dduEXOZ.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949584217499447778/D520DDC422F8941F9935AAD9075566696E799853/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 12720 +- 12719 +Description: Heart of the Elders +GMNotes: '' +GUID: 88bd9e +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Agenda Deck Part 2 +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.72070026 + posY: 1.66397309 + posZ: 0.3784998 + rotX: 0.0170016885 + rotY: 179.883041 + rotZ: 0.08022849 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 5 Heart of the Elders Part 2 5b2403/Deck Encounter Deck Part 2 10ce27.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 5 Heart of the Elders Part 2 5b2403/Deck Encounter Deck Part 2 10ce27.yaml new file mode 100644 index 000000000..9022ee971 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 5 Heart of the Elders Part 2 5b2403/Deck Encounter Deck Part 2 10ce27.yaml @@ -0,0 +1,1368 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 278512 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '128': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Humanoid. Monster. Serpent. + GMNotes: '' + GUID: 7a7539 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Brood of Yig + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 23.3615475 + posY: 1.66455138 + posZ: 51.98281 + rotX: 0.0205019619 + rotY: 269.9804 + rotZ: 180.019409 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 278512 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '128': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Humanoid. Monster. Serpent. + GMNotes: '' + GUID: 61dec3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Brood of Yig + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 21.6806526 + posY: 1.570273 + posZ: 43.3835068 + rotX: 359.985077 + rotY: 269.09256 + rotZ: 179.6049 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 278513 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '128': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Humanoid. Monster. Serpent. + GMNotes: '' + GUID: 906ef2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Serpent from Yoth + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 21.6683273 + posY: 1.64611864 + posZ: 44.0666733 + rotX: 0.177112013 + rotY: 269.4646 + rotZ: 179.829865 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 278514 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '128': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Curse. + GMNotes: '' + GUID: 5b28aa + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Curse of Yig + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 21.667532 + posY: 1.3453908 + posZ: 45.1775551 + rotX: 0.00489932531 + rotY: 270.035919 + rotZ: 180.0191 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 278514 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '128': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Curse. + GMNotes: '' + GUID: 048d89 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Curse of Yig + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 21.6324329 + posY: 1.49665356 + posZ: 45.5449028 + rotX: 359.984 + rotY: 269.243469 + rotZ: 179.8756 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234227 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2342': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Humanoid. Monster. Serpent. + GMNotes: '' + GUID: 6b107c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Fang of Yig + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 21.633419 + posY: 1.49531925 + posZ: 46.1551476 + rotX: 0.466567039 + rotY: 269.737579 + rotZ: 180.2926 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234227 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2342': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Humanoid. Monster. Serpent. + GMNotes: '' + GUID: c025cd + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Fang of Yig + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 21.6654587 + posY: 1.61015666 + posZ: 47.5933075 + rotX: 359.922668 + rotY: 271.0606 + rotZ: 177.8453 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234228 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2342': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Curse. + GMNotes: '' + GUID: 9542e8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Snakescourge + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 21.6758175 + posY: 1.50894654 + posZ: 48.3291321 + rotX: 358.4099 + rotY: 269.990143 + rotZ: 177.309341 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234228 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2342': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Curse. + GMNotes: '' + GUID: '660874' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Snakescourge + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 21.6640282 + posY: 1.41746163 + posZ: 49.0473671 + rotX: 359.981384 + rotY: 270.1164 + rotZ: 176.1523 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 278512 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '128': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Humanoid. Monster. Serpent. + GMNotes: '' + GUID: 5ef7c7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Brood of Yig + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 21.8127785 + posY: 1.88145459 + posZ: 54.18234 + rotX: 2.23313951 + rotY: 1.65713489 + rotZ: 180.2965 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234229 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2342': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Power. + GMNotes: '' + GUID: c71fb1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Serpent's Call + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 21.6800117 + posY: 1.87295866 + posZ: 49.3921471 + rotX: 0.0246719234 + rotY: 269.927032 + rotZ: 179.201736 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 13230 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '132': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Poison. + GMNotes: '' + GUID: b4f854 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Creeping Poison + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 21.65038 + posY: 1.53870583 + posZ: 50.0825539 + rotX: 0.0272913035 + rotY: 270.138519 + rotZ: 169.754929 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 13230 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '132': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Poison. + GMNotes: '' + GUID: 8e8fef + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Creeping Poison + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 21.6741638 + posY: 1.48871422 + posZ: 50.7356339 + rotX: 0.1974458 + rotY: 269.716858 + rotZ: 174.59491 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 13021 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '130': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Omen. Terror. + GMNotes: '' + GUID: 1fbcc6 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ill Omen + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 21.6122074 + posY: 1.55211258 + posZ: 51.5955734 + rotX: 5.50539732 + rotY: 359.7815 + rotZ: 180.208084 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 13021 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '130': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Omen. Terror. + GMNotes: '' + GUID: e7fd35 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ill Omen + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 21.6396046 + posY: 1.71756077 + posZ: 52.239006 + rotX: 2.35815263 + rotY: 359.648529 + rotZ: 180.3155 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 13022 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '130': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Terror. + GMNotes: '' + GUID: 6e0cb5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ancestral Fear + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 21.6317577 + posY: 1.76105881 + posZ: 52.9207039 + rotX: 2.3989625 + rotY: 359.72525 + rotZ: 180.315033 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 13022 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '130': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Terror. + GMNotes: '' + GUID: 6dd1d9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ancestral Fear + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 21.7137165 + posY: 1.66347289 + posZ: 53.58292 + rotX: 0.09330871 + rotY: 359.76236 + rotZ: 180.76062 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 13023 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '130': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Hazard. + GMNotes: '' + GUID: 084cff + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Deep Dark + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 21.6922913 + posY: 1.46688366 + posZ: 54.7209969 + rotX: 1.83770943 + rotY: 359.624451 + rotZ: 180.126862 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 13023 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '130': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Hazard. + GMNotes: '' + GUID: 16ec42 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Deep Dark + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 21.6409454 + posY: 1.55764878 + posZ: 55.5264778 + rotX: 358.6371 + rotY: 0.8055696 + rotZ: 179.3475 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 13117 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '131': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Trap. + GMNotes: '' + GUID: fc2fb1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Final Mistake + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 21.6594524 + posY: 1.63017821 + posZ: 56.9019775 + rotX: 359.508179 + rotY: 0.479866683 + rotZ: 179.778381 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 13117 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '131': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Trap. + GMNotes: '' + GUID: 2a4bf1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Final Mistake + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 21.6854572 + posY: 1.380447 + posZ: 56.1139641 + rotX: 1.09047806 + rotY: 359.800781 + rotZ: 180.0819 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 13118 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '131': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Trap. + GMNotes: '' + GUID: c092e1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Entombed + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 22.1515789 + posY: 1.97349 + posZ: 59.32522 + rotX: 2.54638386 + rotY: 0.37408638 + rotZ: 180.2359 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12736 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/dduEXOZ.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949584217499447778/D520DDC422F8941F9935AAD9075566696E799853/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Hazard. + GMNotes: '' + GUID: 7cfc06 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: No Turning Back + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 21.6749325 + posY: 1.49658561 + posZ: 58.97729 + rotX: 359.685 + rotY: 0.4067363 + rotZ: 179.87117 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12736 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/dduEXOZ.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949584217499447778/D520DDC422F8941F9935AAD9075566696E799853/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Hazard. + GMNotes: '' + GUID: 3c278f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: No Turning Back + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 21.6763477 + posY: 1.81633711 + posZ: 59.67555 + rotX: 2.14723778 + rotY: 0.565860748 + rotZ: 179.6218 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12723 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/dduEXOZ.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949584217499447778/D520DDC422F8941F9935AAD9075566696E799853/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Trap. + GMNotes: '' + GUID: 58ab68 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Pitfall + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 21.6865482 + posY: 1.71479523 + posZ: 61.0497475 + rotX: 2.14695477 + rotY: 0.5230023 + rotZ: 179.620178 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12723 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/dduEXOZ.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949584217499447778/D520DDC422F8941F9935AAD9075566696E799853/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Trap. + GMNotes: '' + GUID: ab80bf + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Pitfall + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 21.68106 + posY: 1.66748524 + posZ: 60.3590431 + rotX: 2.08248973 + rotY: 0.5942196 + rotZ: 179.710754 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12724 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/dduEXOZ.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949584217499447778/D520DDC422F8941F9935AAD9075566696E799853/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Hazard. + GMNotes: '' + GUID: 54b136 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Poisonous Spores + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 21.6775131 + posY: 1.39801288 + posZ: 61.6939468 + rotX: 358.2464 + rotY: 0.0512622 + rotZ: 180.008575 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12724 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/dduEXOZ.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949584217499447778/D520DDC422F8941F9935AAD9075566696E799853/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Hazard. + GMNotes: '' + GUID: 98a6eb + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Poisonous Spores + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 21.675621 + posY: 1.457281 + posZ: 62.39886 + rotX: 358.257965 + rotY: 0.10391634 + rotZ: 180.016418 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12724 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/dduEXOZ.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949584217499447778/D520DDC422F8941F9935AAD9075566696E799853/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Hazard. + GMNotes: '' + GUID: 05d368 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Poisonous Spores + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 21.675539 + posY: 1.39088273 + posZ: 63.0696068 + rotX: 358.567383 + rotY: 0.007443549 + rotZ: 180.033386 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 13118 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '131': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Trap. + GMNotes: '' + GUID: 866eba + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Entombed + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 21.6745644 + posY: 1.614824 + posZ: 58.287674 + rotX: 3.92742419 + rotY: 0.607156038 + rotZ: 179.841873 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/dduEXOZ.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949584217499447778/D520DDC422F8941F9935AAD9075566696E799853/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + '130': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + '131': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + '132': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + '2342': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + '2785': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 278512 +- 278512 +- 278513 +- 278514 +- 278514 +- 234227 +- 234227 +- 234228 +- 234228 +- 278512 +- 234229 +- 13230 +- 13230 +- 13021 +- 13021 +- 13022 +- 13022 +- 13023 +- 13023 +- 13117 +- 13117 +- 13118 +- 12736 +- 12736 +- 12723 +- 12723 +- 12724 +- 12724 +- 12724 +- 13118 +Description: Heart of the Elders +GMNotes: '' +GUID: 10ce27 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Encounter Deck Part 2 +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.92740035 + posY: 1.77170956 + posZ: 5.75709963 + rotX: 359.919739 + rotY: 270.007568 + rotZ: 180.01683 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 5 Heart of the Elders Part 2 5b2403/Deck Exploration Deck 30a2e4.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 5 Heart of the Elders Part 2 5b2403/Deck Exploration Deck 30a2e4.yaml new file mode 100644 index 000000000..b4069eb6e --- /dev/null +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 5 Heart of the Elders Part 2 5b2403/Deck Exploration Deck 30a2e4.yaml @@ -0,0 +1,444 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 12733 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/dduEXOZ.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949584217499447778/D520DDC422F8941F9935AAD9075566696E799853/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Ancient. Cave. + GMNotes: '' + GUID: f68247 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Perilous Gulch + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 28.7910137 + posY: 1.525263 + posZ: 31.7695389 + rotX: 359.920135 + rotY: 269.999969 + rotZ: 180.016876 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12723 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/dduEXOZ.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949584217499447778/D520DDC422F8941F9935AAD9075566696E799853/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Trap. + GMNotes: '' + GUID: ab80bf + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Pitfall + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 28.7910423 + posY: 1.52589881 + posZ: 33.92885 + rotX: 359.920135 + rotY: 269.999939 + rotZ: 180.016876 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12732 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/dduEXOZ.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949584217499447778/D520DDC422F8941F9935AAD9075566696E799853/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Ancient. Cave. + GMNotes: '' + GUID: a5cee7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dark Hollow + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 28.7911053 + posY: 1.52653456 + posZ: 36.08823 + rotX: 359.920135 + rotY: 270.0001 + rotZ: 180.016876 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 13023 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '130': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Hazard. + GMNotes: '' + GUID: 866eba + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Deep Dark + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 28.791111 + posY: 1.52717042 + posZ: 38.2473831 + rotX: 359.920135 + rotY: 270.0 + rotZ: 180.016876 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 13117 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '131': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Trap. + GMNotes: '' + GUID: 2a4bf1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Final Mistake + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 28.7906971 + posY: 1.57453823 + posZ: 40.4070435 + rotX: -1.44553724e-07 + rotY: 270.0 + rotZ: 179.999924 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12736 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/dduEXOZ.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949584217499447778/D520DDC422F8941F9935AAD9075566696E799853/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Hazard. + GMNotes: '' + GUID: '198394' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: No Turning Back + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 28.7906857 + posY: 1.57453871 + posZ: 42.5661354 + rotX: 1.10538778e-08 + rotY: 270.0 + rotZ: 180.000153 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12730 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/dduEXOZ.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949584217499447778/D520DDC422F8941F9935AAD9075566696E799853/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Ancient. Cave. + GMNotes: '' + GUID: 8a0365 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Vast Passages + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 28.7905712 + posY: 1.3479532 + posZ: 44.7251129 + rotX: 0.0208087675 + rotY: 269.999969 + rotZ: 180.016769 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12731 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/dduEXOZ.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949584217499447778/D520DDC422F8941F9935AAD9075566696E799853/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Ancient. Cave. + GMNotes: '' + GUID: 7216f5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Hall of Idolatry + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 28.7906 + posY: 1.34858513 + posZ: 46.88424 + rotX: 0.0208087172 + rotY: 270.0 + rotZ: 180.016769 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12734 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/dduEXOZ.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949584217499447778/D520DDC422F8941F9935AAD9075566696E799853/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Ancient. Cave. + GMNotes: '' + GUID: f759d9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Crystal Pillars + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 28.7906132 + posY: 1.34921718 + posZ: 49.0433273 + rotX: 0.0208079554 + rotY: 269.999969 + rotZ: 180.016769 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/dduEXOZ.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949584217499447778/D520DDC422F8941F9935AAD9075566696E799853/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + '130': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + '131': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 12733 +- 12723 +- 12732 +- 13023 +- 13117 +- 12736 +- 12730 +- 12731 +- 12734 +Description: Heart of the Elders +GMNotes: '' +GUID: 30a2e4 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Exploration Deck +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -12.7589779 + posY: 1.67266572 + posZ: 7.598019 + rotX: 359.9201 + rotY: 270.000244 + rotZ: 180.016876 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 6 The City of Archives 3170ce.ttslua b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 6 The City of Archives 3170ce.ttslua new file mode 100644 index 000000000..46067f58e --- /dev/null +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 6 The City of Archives 3170ce.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.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.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 Forgotten Age 0ff458/Custom_Model_Bag 6 The City of Archives 3170ce.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 6 The City of Archives 3170ce.yaml new file mode 100644 index 000000000..c0bb97ddc --- /dev/null +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 6 The City of Archives 3170ce.yaml @@ -0,0 +1,88 @@ +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 6 The City of Archives 3170ce/Custom_Model_Bag Set-aside + a45247.yaml' +- !include 'Custom_Model_Bag 6 The City of Archives 3170ce/Bag Resisted the Yithian + 8f462b.yaml' +- !include 'Custom_Model_Bag 6 The City of Archives 3170ce/Bag Cooperated with Yithian + 412d82.yaml' +- !include 'Custom_Model_Bag 6 The City of Archives 3170ce/Deck Encounter Deck a7cb09.yaml' +- !include 'Custom_Model_Bag 6 The City of Archives 3170ce/Deck Act Deck f96416.yaml' +- !include 'Custom_Model_Bag 6 The City of Archives 3170ce/Deck Agenda Deck 3f3f05.yaml' +- !include 'Custom_Model_Bag 6 The City of Archives 3170ce/Card Scenario e9b3c5.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 Halls of Pnakotus + ed1363.yaml' +- !include 'Custom_Model_Bag 6 The City of Archives 3170ce/Custom_Tile 7234af.yaml' +- !include 'Custom_Model_Bag 6 The City of Archives 3170ce/Card Halls of Pnakotus + 121209.yaml' +- !include 'Custom_Model_Bag 6 The City of Archives 3170ce/Card Halls of Pnakotus + 20f554.yaml' +- !include 'Custom_Model_Bag 6 The City of Archives 3170ce/Custom_Tile 80b566.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 + 80ce22.yaml' +- !include 'Custom_Model_Bag 6 The City of Archives 3170ce/Card Body of a Yithian + 3dce5b.yaml' +- !include 'Custom_Model_Bag 6 The City of Archives 3170ce/Card Body of a Yithian + 1f68fb.yaml' +- !include 'Custom_Model_Bag 6 The City of Archives 3170ce/Card Body of a Yithian + 3deaa9.yaml' +CustomMesh: + CastShadows: true + ColliderURL: '' + Convex: true + DiffuseURL: http://cloud-3.steamusercontent.com/ugc/829135118403842326/1ADEC65C19EB86C89BAE6AEB5C169F8FE445314A/ + MaterialIndex: 3 + MeshURL: https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj + NormalURL: '' + TypeIndex: 6 +Description: The Forgotten Age +GMNotes: '' +GUID: 3170ce +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Model_Bag 6 The City of Archives 3170ce.ttslua' +LuaScriptState: '{"ml":{"121209":{"lock":false,"pos":{"x":-23.6766,"y":1.6885,"z":7.57},"rot":{"x":359.9201,"y":270.0088,"z":0.0169}},"1f68fb":{"lock":false,"pos":{"x":-54.9973,"y":1.7324,"z":8.511},"rot":{"x":0.0169,"y":180.009,"z":0.0799}},"20f554":{"lock":false,"pos":{"x":-23.6766,"y":1.684,"z":-7.7},"rot":{"x":359.9201,"y":270.002,"z":0.0169}},"2fb6dc":{"lock":false,"pos":{"x":-3.9281,"y":1.5824,"z":-15.5368},"rot":{"x":359.9197,"y":270.0274,"z":0.0168}},"3dce5b":{"lock":false,"pos":{"x":-55.0555,"y":1.7245,"z":-18.6656},"rot":{"x":0.0169,"y":180.0082,"z":0.0799}},"3deaa9":{"lock":false,"pos":{"x":-32.9161,"y":1.707,"z":26.6217},"rot":{"x":359.9201,"y":269.9998,"z":0.0169}},"3f3f05":{"lock":false,"pos":{"x":-2.7248,"y":1.6566,"z":0.3733},"rot":{"x":0.0168,"y":180.0145,"z":0.0803}},"412d82":{"lock":false,"pos":{"x":0.5822,"y":1.3953,"z":-1.0302},"rot":{"x":359.9832,"y":0.0027,"z":359.9197}},"7234af":{"lock":false,"pos":{"x":-20.4629,"y":1.6112,"z":3.9167},"rot":{"x":359.9316,"y":315.0153,"z":359.9554}},"80b566":{"lock":false,"pos":{"x":-20.5734,"y":1.6091,"z":-3.8425},"rot":{"x":0.0446,"y":45.0002,"z":359.9316}},"80ce22":{"lock":false,"pos":{"x":-22.9044,"y":1.6773,"z":-26.6479},"rot":{"x":0.0799,"y":90,"z":359.9831}},"8f462b":{"lock":false,"pos":{"x":0.6305,"y":1.3961,"z":1.918},"rot":{"x":359.9832,"y":0.0003,"z":359.9197}},"a45247":{"lock":false,"pos":{"x":1.6965,"y":1.5583,"z":14.2787},"rot":{"x":359.9551,"y":224.998,"z":0.0687}},"a7cb09":{"lock":false,"pos":{"x":-3.9274,"y":1.7877,"z":5.7571},"rot":{"x":359.9197,"y":269.9976,"z":180.0168}},"e9b3c5":{"lock":false,"pos":{"x":-3.9559,"y":1.6556,"z":-10.4412},"rot":{"x":359.9197,"y":269.9989,"z":0.0168}},"ed1363":{"lock":false,"pos":{"x":-17.1199,"y":1.6771,"z":-0.03},"rot":{"x":359.9201,"y":270.0022,"z":0.0169}},"f893ca":{"lock":false,"pos":{"x":-23.6765,"y":1.6145,"z":-0.03},"rot":{"x":0.0169,"y":179.9998,"z":0.0799}},"f96416":{"lock":false,"pos":{"x":-2.6886,"y":1.655,"z":-5.0485},"rot":{"x":0.0168,"y":180.0296,"z":0.0803}}}}' +MaterialIndex: -1 +MeshIndex: -1 +Name: Custom_Model_Bag +Nickname: '6: The City of Archives' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 12.2501 + posY: 1.46089375 + posZ: -12.013649 + rotX: 359.920135 + rotY: 270.0067 + rotZ: 0.0168645568 + scaleX: 2.21 + scaleY: 0.46 + scaleZ: 2.42 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 6 The City of Archives 3170ce/Bag Cooperated with Yithian 412d82.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 6 The City of Archives 3170ce/Bag Cooperated with Yithian 412d82.yaml new file mode 100644 index 000000000..400c009b2 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 6 The City of Archives 3170ce/Bag Cooperated with Yithian 412d82.yaml @@ -0,0 +1,38 @@ +Autoraise: true +ColorDiffuse: + b: 0.277527153 + g: 0.0509799719 + r: 0.6313726 +ContainedObjects: +- !include 'Bag Cooperated with Yithian 412d82/Card Yithian Observer 7ed452.yaml' +- !include 'Bag Cooperated with Yithian 412d82/Deck 8020e5.yaml' +- !include 'Bag Cooperated with Yithian 412d82/Card Interview Room 508f85.yaml' +Description: The City of Archives +GMNotes: '' +GUID: 412d82 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +MeshIndex: -1 +Name: Bag +Nickname: Cooperated with Yithian +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 0.582200468 + posY: 1.39530885 + posZ: -1.03019977 + rotX: 359.983154 + rotY: 0.00269277324 + rotZ: 359.919678 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 6 The City of Archives 3170ce/Bag Cooperated with Yithian 412d82/Card Interview Room 508f85.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 6 The City of Archives 3170ce/Bag Cooperated with Yithian 412d82/Card Interview Room 508f85.yaml new file mode 100644 index 000000000..cd91a2133 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 6 The City of Archives 3170ce/Bag Cooperated with Yithian 412d82/Card Interview Room 508f85.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 12716 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/m12nk5a.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/954090355584194829/C6D55DDE5652940B4D5CE3163BD9CEDA16237961/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Ancient. Pnakotus. +GMNotes: '' +GUID: 508f85 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Interview Room +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 2.700494 + posY: 3.10488963 + posZ: -4.17964 + rotX: 358.3921 + rotY: 269.9539 + rotZ: 6.545246 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 6 The City of Archives 3170ce/Bag Cooperated with Yithian 412d82/Card Yithian Observer 7ed452.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 6 The City of Archives 3170ce/Bag Cooperated with Yithian 412d82/Card Yithian Observer 7ed452.yaml new file mode 100644 index 000000000..39fe7d6c7 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 6 The City of Archives 3170ce/Bag Cooperated with Yithian 412d82/Card Yithian Observer 7ed452.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 3631 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: Monster. Yithian. +GMNotes: '' +GUID: 7ed452 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Yithian Observer +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 4.59048128 + posY: 2.04284978 + posZ: -23.1938744 + rotX: -8.198605e-07 + rotY: 269.999451 + rotZ: -3.899223e-06 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 6 The City of Archives 3170ce/Bag Cooperated with Yithian 412d82/Deck 8020e5.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 6 The City of Archives 3170ce/Bag Cooperated with Yithian 412d82/Deck 8020e5.yaml new file mode 100644 index 000000000..2d5831fec --- /dev/null +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 6 The City of Archives 3170ce/Bag Cooperated with Yithian 412d82/Deck 8020e5.yaml @@ -0,0 +1,129 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 12718 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/m12nk5a.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/954090355584194829/C6D55DDE5652940B4D5CE3163BD9CEDA16237961/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Ancient. Pnakotus. + GMNotes: '' + GUID: 1dc722 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Interview Room + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -0.187917039 + posY: 1.178925 + posZ: -14.3586855 + rotX: 359.990417 + rotY: 269.998749 + rotZ: 180.018982 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12717 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/m12nk5a.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/954090355584194829/C6D55DDE5652940B4D5CE3163BD9CEDA16237961/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Ancient. Pnakotus. + GMNotes: '' + GUID: 2fa9e0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Interview Room + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -0.204295412 + posY: 1.03445578 + posZ: -13.8839521 + rotX: -0.004436437 + rotY: 270.001526 + rotZ: 180.001144 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/m12nk5a.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/954090355584194829/C6D55DDE5652940B4D5CE3163BD9CEDA16237961/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 12718 +- 12717 +Description: '' +GMNotes: '' +GUID: 8020e5 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 2.149057 + posY: 3.10568953 + posZ: -4.230118 + rotX: 1.02682519 + rotY: 270.094421 + rotZ: 0.100695543 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 6 The City of Archives 3170ce/Bag Resisted the Yithian 8f462b.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 6 The City of Archives 3170ce/Bag Resisted the Yithian 8f462b.yaml new file mode 100644 index 000000000..574f14675 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 6 The City of Archives 3170ce/Bag Resisted the Yithian 8f462b.yaml @@ -0,0 +1,38 @@ +Autoraise: true +ColorDiffuse: + b: 0.277527124 + g: 0.05097995 + r: 0.6313726 +ContainedObjects: +- !include 'Bag Resisted the Yithian 8f462b/Card Yithian Observer f51f2d.yaml' +- !include 'Bag Resisted the Yithian 8f462b/Deck 730c62.yaml' +- !include 'Bag Resisted the Yithian 8f462b/Card Interview Room 2fa9e0.yaml' +Description: The City of Archives +GMNotes: '' +GUID: 8f462b +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +MeshIndex: -1 +Name: Bag +Nickname: Resisted the Yithian +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 0.6305009 + posY: 1.39610755 + posZ: 1.91800082 + rotX: 359.983154 + rotY: 0.000328062044 + rotZ: 359.919678 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 6 The City of Archives 3170ce/Bag Resisted the Yithian 8f462b/Card Interview Room 2fa9e0.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 6 The City of Archives 3170ce/Bag Resisted the Yithian 8f462b/Card Interview Room 2fa9e0.yaml new file mode 100644 index 000000000..9e16861ad --- /dev/null +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 6 The City of Archives 3170ce/Bag Resisted the Yithian 8f462b/Card Interview Room 2fa9e0.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 12717 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/m12nk5a.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/954090355584194829/C6D55DDE5652940B4D5CE3163BD9CEDA16237961/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Ancient. Pnakotus. +GMNotes: '' +GUID: 2fa9e0 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Interview Room +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 0.540886164 + posY: 3.08395863 + posZ: -7.48341942 + rotX: 357.6946 + rotY: 269.973877 + rotZ: 180.516617 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 6 The City of Archives 3170ce/Bag Resisted the Yithian 8f462b/Card Yithian Observer f51f2d.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 6 The City of Archives 3170ce/Bag Resisted the Yithian 8f462b/Card Yithian Observer f51f2d.yaml new file mode 100644 index 000000000..89f8ebae8 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 6 The City of Archives 3170ce/Bag Resisted the Yithian 8f462b/Card Yithian Observer f51f2d.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 3631 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: Monster. Yithian. +GMNotes: '' +GUID: f51f2d +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Yithian Observer +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 0.5578298 + posY: 2.13483834 + posZ: -28.8028755 + rotX: 0.00108600012 + rotY: 269.9852 + rotZ: 4.89601469 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 6 The City of Archives 3170ce/Bag Resisted the Yithian 8f462b/Deck 730c62.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 6 The City of Archives 3170ce/Bag Resisted the Yithian 8f462b/Deck 730c62.yaml new file mode 100644 index 000000000..e5a81d020 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 6 The City of Archives 3170ce/Bag Resisted the Yithian 8f462b/Deck 730c62.yaml @@ -0,0 +1,129 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 12718 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/m12nk5a.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/954090355584194829/C6D55DDE5652940B4D5CE3163BD9CEDA16237961/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Ancient. Pnakotus. + GMNotes: '' + GUID: 1dc722 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Interview Room + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -0.185881 + posY: 1.17947125 + posZ: -14.5142879 + rotX: 359.993134 + rotY: 270.0043 + rotZ: 180.014084 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12716 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/m12nk5a.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/954090355584194829/C6D55DDE5652940B4D5CE3163BD9CEDA16237961/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Ancient. Pnakotus. + GMNotes: '' + GUID: 4440de + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Interview Room + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.006562538 + posY: 1.03449857 + posZ: -14.2600317 + rotX: -0.00209562737 + rotY: 270.002716 + rotZ: 179.99884 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/m12nk5a.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/954090355584194829/C6D55DDE5652940B4D5CE3163BD9CEDA16237961/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 12718 +- 12716 +Description: '' +GMNotes: '' +GUID: 730c62 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 0.180348665 + posY: 3.08699346 + posZ: -7.826302 + rotX: 359.4643 + rotY: 269.952942 + rotZ: 3.68419075 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 6 The City of Archives 3170ce/Card Body of a Yithian 1f68fb.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 6 The City of Archives 3170ce/Card Body of a Yithian 1f68fb.yaml new file mode 100644 index 000000000..4941dc39c --- /dev/null +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 6 The City of Archives 3170ce/Card Body of a Yithian 1f68fb.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 273215 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2732': + BackIsHidden: true + BackURL: https://i.imgur.com/m12nk5a.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/954090355584194829/C6D55DDE5652940B4D5CE3163BD9CEDA16237961/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Monster. Yithian. +GMNotes: '' +GUID: 1f68fb +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Body of a Yithian +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -54.9973 + posY: 1.73240173 + posZ: 8.511003 + rotX: 0.01685756 + rotY: 180.009 + rotZ: 0.0798888952 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 6 The City of Archives 3170ce/Card Body of a Yithian 3dce5b.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 6 The City of Archives 3170ce/Card Body of a Yithian 3dce5b.yaml new file mode 100644 index 000000000..cfd439b3b --- /dev/null +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 6 The City of Archives 3170ce/Card Body of a Yithian 3dce5b.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 273415 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2734': + BackIsHidden: true + BackURL: https://i.imgur.com/m12nk5a.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/954090355584194829/C6D55DDE5652940B4D5CE3163BD9CEDA16237961/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Monster. Yithian. +GMNotes: '' +GUID: 3dce5b +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Body of a Yithian +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -55.0555 + posY: 1.72448015 + posZ: -18.6656 + rotX: 0.0168593843 + rotY: 180.008209 + rotZ: 0.0798847154 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 6 The City of Archives 3170ce/Card Body of a Yithian 3deaa9.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 6 The City of Archives 3170ce/Card Body of a Yithian 3deaa9.yaml new file mode 100644 index 000000000..19b2b0ec2 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 6 The City of Archives 3170ce/Card Body of a Yithian 3deaa9.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 273515 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2735': + BackIsHidden: true + BackURL: https://i.imgur.com/m12nk5a.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/954090355584194829/C6D55DDE5652940B4D5CE3163BD9CEDA16237961/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Monster. Yithian. +GMNotes: '' +GUID: 3deaa9 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Body of a Yithian +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -32.9161034 + posY: 1.70695281 + posZ: 26.6217 + rotX: 359.9201 + rotY: 269.999817 + rotZ: 0.01688156 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 6 The City of Archives 3170ce/Card Body of a Yithian 80ce22.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 6 The City of Archives 3170ce/Card Body of a Yithian 80ce22.yaml new file mode 100644 index 000000000..b7806ae46 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 6 The City of Archives 3170ce/Card Body of a Yithian 80ce22.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 273715 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2737': + BackIsHidden: true + BackURL: https://i.imgur.com/m12nk5a.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/954090355584194829/C6D55DDE5652940B4D5CE3163BD9CEDA16237961/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Monster. Yithian. +GMNotes: '' +GUID: 80ce22 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Body of a Yithian +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -22.9044 + posY: 1.67730749 + posZ: -26.6479015 + rotX: 0.07987769 + rotY: 90.0000153 + rotZ: 359.983124 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 6 The City of Archives 3170ce/Card Halls of Pnakotus 121209.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 6 The City of Archives 3170ce/Card Halls of Pnakotus 121209.yaml new file mode 100644 index 000000000..02e6cd062 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 6 The City of Archives 3170ce/Card Halls of Pnakotus 121209.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 273121 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2731': + BackIsHidden: true + BackURL: https://i.imgur.com/m12nk5a.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/954090355584194829/C6D55DDE5652940B4D5CE3163BD9CEDA16237961/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Ancient. Pnakotus. +GMNotes: '' +GUID: '121209' +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Halls of Pnakotus +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -23.6766 + posY: 1.68845844 + posZ: 7.56999874 + rotX: 359.9201 + rotY: 270.0088 + rotZ: 0.0168642253 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 6 The City of Archives 3170ce/Card Halls of Pnakotus 20f554.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 6 The City of Archives 3170ce/Card Halls of Pnakotus 20f554.yaml new file mode 100644 index 000000000..a4f349396 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 6 The City of Archives 3170ce/Card Halls of Pnakotus 20f554.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 273320 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2733': + BackIsHidden: true + BackURL: https://i.imgur.com/m12nk5a.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/954090355584194829/C6D55DDE5652940B4D5CE3163BD9CEDA16237961/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Ancient. Pnakotus. +GMNotes: '' +GUID: 20f554 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Halls of Pnakotus +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -23.6766 + posY: 1.683962 + posZ: -7.70000029 + rotX: 359.9201 + rotY: 270.002 + rotZ: 0.0168736149 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 6 The City of Archives 3170ce/Card Halls of Pnakotus ed1363.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 6 The City of Archives 3170ce/Card Halls of Pnakotus ed1363.yaml new file mode 100644 index 000000000..5738503df --- /dev/null +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 6 The City of Archives 3170ce/Card Halls of Pnakotus ed1363.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 274119 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2741': + BackIsHidden: true + BackURL: https://i.imgur.com/m12nk5a.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/954090355584194829/C6D55DDE5652940B4D5CE3163BD9CEDA16237961/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Ancient. Pnakotus. +GMNotes: '' +GUID: ed1363 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Halls of Pnakotus +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -17.1199 + posY: 1.67707765 + posZ: -0.030000262 + rotX: 359.9201 + rotY: 270.002167 + rotZ: 0.016874427 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 6 The City of Archives 3170ce/Card Scenario e9b3c5.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 6 The City of Archives 3170ce/Card Scenario e9b3c5.yaml new file mode 100644 index 000000000..30a71e300 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 6 The City of Archives 3170ce/Card Scenario e9b3c5.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 274008 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2740': + BackIsHidden: true + BackURL: https://i.imgur.com/m12nk5a.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/954090355584194829/C6D55DDE5652940B4D5CE3163BD9CEDA16237961/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: The City of Archives +GMNotes: '' +GUID: e9b3c5 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Scenario +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.95590043 + posY: 1.655648 + posZ: -10.4412022 + rotX: 359.919739 + rotY: 269.9989 + rotZ: 0.0168428421 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 6 The City of Archives 3170ce/Custom_Model_Bag Set-aside a45247.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 6 The City of Archives 3170ce/Custom_Model_Bag Set-aside a45247.yaml new file mode 100644 index 000000000..62b9e88ae --- /dev/null +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 6 The City of Archives 3170ce/Custom_Model_Bag Set-aside a45247.yaml @@ -0,0 +1,58 @@ +Autoraise: true +ColorDiffuse: + b: 0.02148666 + g: 0.00100758043 + r: 0.02148666 +ContainedObjects: +- !include 'Custom_Model_Bag Set-aside a45247/Deck 0ee8e4.yaml' +- !include 'Custom_Model_Bag Set-aside a45247/Card The Custodian 8399dd.yaml' +- !include 'Custom_Model_Bag Set-aside a45247/Deck 36837b.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 City of Archives +GMNotes: '' +GUID: a45247 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +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.69650042 + posY: 1.55831718 + posZ: 14.2787018 + rotX: 359.955139 + rotY: 224.997955 + rotZ: 0.0686747655 + scaleX: 2.0 + scaleY: 2.0 + scaleZ: 2.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 6 The City of Archives 3170ce/Custom_Model_Bag Set-aside a45247/Card The Custodian 8399dd.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 6 The City of Archives 3170ce/Custom_Model_Bag Set-aside a45247/Card The Custodian 8399dd.yaml new file mode 100644 index 000000000..6e711b252 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 6 The City of Archives 3170ce/Custom_Model_Bag Set-aside a45247/Card The Custodian 8399dd.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 12727 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/m12nk5a.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/954090355584194829/C6D55DDE5652940B4D5CE3163BD9CEDA16237961/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Ally. Yithian +GMNotes: '' +GUID: 8399dd +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: The Custodian +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 18.5580273 + posY: 3.58025813 + posZ: 8.054754 + rotX: 359.9365 + rotY: 269.9994 + rotZ: 0.01493363 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 6 The City of Archives 3170ce/Custom_Model_Bag Set-aside a45247/Deck 0ee8e4.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 6 The City of Archives 3170ce/Custom_Model_Bag Set-aside a45247/Deck 0ee8e4.yaml new file mode 100644 index 000000000..79062204a --- /dev/null +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 6 The City of Archives 3170ce/Custom_Model_Bag Set-aside a45247/Deck 0ee8e4.yaml @@ -0,0 +1,258 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 12722 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/m12nk5a.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/954090355584194829/C6D55DDE5652940B4D5CE3163BD9CEDA16237961/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Ancient. Pnakotus. + GMNotes: '' + GUID: 896e92 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Great Library + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 11.0500259 + posY: 1.0317136 + posZ: -5.71258259 + rotX: 1.37613574e-06 + rotY: 270.017151 + rotZ: 5.18401e-06 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12723 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/m12nk5a.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/954090355584194829/C6D55DDE5652940B4D5CE3163BD9CEDA16237961/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Ancient. Pnakotus. + GMNotes: '' + GUID: 3bef41 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Yithian Orrery + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 10.7729616 + posY: 1.03171372 + posZ: -8.332472 + rotX: -2.16198873e-06 + rotY: 270.022369 + rotZ: -1.8384319e-06 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12724 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/m12nk5a.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/954090355584194829/C6D55DDE5652940B4D5CE3163BD9CEDA16237961/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Ancient. Pnakotus. + GMNotes: '' + GUID: 2566f1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Laboratory of the Great Race + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 10.4276886 + posY: 1.0317136 + posZ: -10.8958921 + rotX: -2.16243848e-06 + rotY: 270.0086 + rotZ: 5.85321777e-06 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12726 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/m12nk5a.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/954090355584194829/C6D55DDE5652940B4D5CE3163BD9CEDA16237961/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Ancient. Pnakotus. + GMNotes: '' + GUID: 18494c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Towers of Pnakotus + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 10.0621881 + posY: 1.03171349 + posZ: -13.6747341 + rotX: -2.05180822e-06 + rotY: 270.0088 + rotZ: 5.494461e-06 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12725 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/m12nk5a.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/954090355584194829/C6D55DDE5652940B4D5CE3163BD9CEDA16237961/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Ancient. Pnakotus. + GMNotes: '' + GUID: b80a66 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Deconstruction Room + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 9.800234 + posY: 1.03171372 + posZ: -15.9426584 + rotX: -7.7644296e-07 + rotY: 269.994141 + rotZ: -1.13451051e-06 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/m12nk5a.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/954090355584194829/C6D55DDE5652940B4D5CE3163BD9CEDA16237961/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 12722 +- 12723 +- 12724 +- 12726 +- 12725 +Description: '' +GMNotes: '' +GUID: 0ee8e4 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 18.2441673 + posY: 3.57963777 + posZ: 8.040808 + rotX: 359.940674 + rotY: 270.000763 + rotZ: 0.0124814082 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 6 The City of Archives 3170ce/Custom_Model_Bag Set-aside a45247/Deck 36837b.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 6 The City of Archives 3170ce/Custom_Model_Bag Set-aside a45247/Deck 36837b.yaml new file mode 100644 index 000000000..3d184f4b4 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 6 The City of Archives 3170ce/Custom_Model_Bag Set-aside a45247/Deck 36837b.yaml @@ -0,0 +1,215 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 12735 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/m12nk5a.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/954090355584194829/C6D55DDE5652940B4D5CE3163BD9CEDA16237961/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Madness. Paradox. + GMNotes: '' + GUID: 9bed6a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Out of Body Experience + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 4.39472628 + posY: 1.0316751 + posZ: 5.45066071 + rotX: -0.00197790656 + rotY: 270.013062 + rotZ: -0.0008120919 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12735 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/m12nk5a.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/954090355584194829/C6D55DDE5652940B4D5CE3163BD9CEDA16237961/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Madness. Paradox. + GMNotes: '' + GUID: 5660fe + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Out of Body Experience + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 4.24349451 + posY: 1.16729391 + posZ: 5.374152 + rotX: 359.989 + rotY: 270.013123 + rotZ: 0.004039499 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12735 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/m12nk5a.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/954090355584194829/C6D55DDE5652940B4D5CE3163BD9CEDA16237961/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Madness. Paradox. + GMNotes: '' + GUID: 4c0c10 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Out of Body Experience + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 4.243276 + posY: 1.19447672 + posZ: 5.37378931 + rotX: 0.239552125 + rotY: 270.017151 + rotZ: 0.393619955 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12735 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/m12nk5a.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/954090355584194829/C6D55DDE5652940B4D5CE3163BD9CEDA16237961/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Madness. Paradox. + GMNotes: '' + GUID: 9bed6a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Out of Body Experience + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 4.24330664 + posY: 1.18377662 + posZ: 5.37384558 + rotX: 0.20245266 + rotY: 270.016418 + rotZ: 0.33219105 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/m12nk5a.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/954090355584194829/C6D55DDE5652940B4D5CE3163BD9CEDA16237961/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 12735 +- 12735 +- 12735 +- 12735 +Description: '' +GMNotes: '' +GUID: 36837b +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 18.334465 + posY: 3.57825136 + posZ: 7.02103472 + rotX: 359.9362 + rotY: 269.9998 + rotZ: 0.01346411 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 6 The City of Archives 3170ce/Custom_Tile 7234af.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 6 The City of Archives 3170ce/Custom_Tile 7234af.yaml new file mode 100644 index 000000000..22cf7fe05 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 6 The City of Archives 3170ce/Custom_Tile 7234af.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 7234af +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.4629 + posY: 1.611188 + posZ: 3.9167 + rotX: 359.93158 + rotY: 315.015259 + rotZ: 359.9554 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 6 The City of Archives 3170ce/Custom_Tile 80b566.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 6 The City of Archives 3170ce/Custom_Tile 80b566.yaml new file mode 100644 index 000000000..931440013 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 6 The City of Archives 3170ce/Custom_Tile 80b566.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 80b566 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.5734 + posY: 1.60905731 + posZ: -3.84249973 + rotX: 0.0445661061 + rotY: 45.0002327 + rotZ: 359.9316 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 6 The City of Archives 3170ce/Custom_Tile f893ca.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 6 The City of Archives 3170ce/Custom_Tile f893ca.yaml new file mode 100644 index 000000000..2c52c6189 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 6 The City of Archives 3170ce/Custom_Tile f893ca.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: f893ca +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.6765 + posY: 1.61450672 + posZ: -0.0299999211 + rotX: 0.0168720391 + rotY: 179.9998 + rotZ: 0.0799395442 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 6 The City of Archives 3170ce/Custom_Tile The City of Archives 2fb6dc.ttslua b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 6 The City of Archives 3170ce/Custom_Tile The City of Archives 2fb6dc.ttslua new file mode 100644 index 000000000..787f8705f --- /dev/null +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 6 The City of Archives 3170ce/Custom_Tile The City of Archives 2fb6dc.ttslua @@ -0,0 +1,25 @@ +name = 'The City of Archives' + +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 + +function standaloneClick() + Global.call('fillContainer', {object=self, key=name, mode='standalone'}) +end \ No newline at end of file diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/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 0ff458/Custom_Model_Bag 6 The City of Archives 3170ce/Custom_Tile The City of Archives 2fb6dc.yaml new file mode 100644 index 000000000..a8313c93a --- /dev/null +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 6 The City of Archives 3170ce/Custom_Tile The City of Archives 2fb6dc.yaml @@ -0,0 +1,42 @@ +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 +GMNotes: '' +GUID: 2fb6dc +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Tile The City of Archives 2fb6dc.ttslua' +LuaScriptState: '' +Name: Custom_Tile +Nickname: The City of Archives +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.92810059 + posY: 1.5823983 + posZ: -15.5368032 + rotX: 359.919739 + rotY: 270.027374 + rotZ: 0.0167994946 + scaleX: 2.2 + scaleY: 1.0 + scaleZ: 2.2 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 6 The City of Archives 3170ce/Deck Act Deck f96416.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 6 The City of Archives 3170ce/Deck Act Deck f96416.yaml new file mode 100644 index 000000000..aebef04ac --- /dev/null +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 6 The City of Archives 3170ce/Deck Act Deck f96416.yaml @@ -0,0 +1,172 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 274214 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/m12nk5a.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/954090355584194829/C6D55DDE5652940B4D5CE3163BD9CEDA16237961/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 3 + GMNotes: '' + GUID: caba36 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Repossession + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.74367929 + posY: 1.03225756 + posZ: 0.5122502 + rotX: 0.02031675 + rotY: 180.027115 + rotZ: 359.974365 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274213 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/m12nk5a.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/954090355584194829/C6D55DDE5652940B4D5CE3163BD9CEDA16237961/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 2 + GMNotes: '' + GUID: '794903' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Restricted Access + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.67323852 + posY: 1.19357657 + posZ: 0.279100418 + rotX: 0.0320033729 + rotY: 180.087677 + rotZ: 359.071716 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274212 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/m12nk5a.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/954090355584194829/C6D55DDE5652940B4D5CE3163BD9CEDA16237961/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 1 + GMNotes: '' + GUID: 1f68fb + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Exploring Pnakotus + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.83896875 + posY: 1.19416034 + posZ: 0.454556078 + rotX: -9.888183e-06 + rotY: 180.010162 + rotZ: 359.989838 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2742': + BackIsHidden: true + BackURL: https://i.imgur.com/m12nk5a.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/954090355584194829/C6D55DDE5652940B4D5CE3163BD9CEDA16237961/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 274214 +- 274213 +- 274212 +Description: The City of Archives +GMNotes: '' +GUID: f96416 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Act Deck +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.6886 + posY: 1.65499747 + posZ: -5.04850054 + rotX: 0.0167936459 + rotY: 180.029633 + rotZ: 0.08026677 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 6 The City of Archives 3170ce/Deck Agenda Deck 3f3f05.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 6 The City of Archives 3170ce/Deck Agenda Deck 3f3f05.yaml new file mode 100644 index 000000000..d352c5b9a --- /dev/null +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 6 The City of Archives 3170ce/Deck Agenda Deck 3f3f05.yaml @@ -0,0 +1,172 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 273611 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/m12nk5a.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/954090355584194829/C6D55DDE5652940B4D5CE3163BD9CEDA16237961/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 3 + GMNotes: '' + GUID: ef8642 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Humanity Fading + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.499694 + posY: 1.03163254 + posZ: -2.86706138 + rotX: -0.00490327226 + rotY: 90.13882 + rotZ: -0.00327335228 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 273610 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/m12nk5a.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/954090355584194829/C6D55DDE5652940B4D5CE3163BD9CEDA16237961/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 2 + GMNotes: '' + GUID: 2d1eec + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Lost Memories + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.661793 + posY: 1.17649138 + posZ: -2.75829816 + rotX: 0.000500940834 + rotY: 89.9988 + rotZ: 359.992371 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 273609 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/m12nk5a.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/954090355584194829/C6D55DDE5652940B4D5CE3163BD9CEDA16237961/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 1 + GMNotes: '' + GUID: 7347f2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: City of the Great Race + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 13.3694477 + posY: 1.23719287 + posZ: 7.165426 + rotX: 0.00528656458 + rotY: 180.010529 + rotZ: 1.73296046 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2736': + BackIsHidden: true + BackURL: https://i.imgur.com/m12nk5a.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/954090355584194829/C6D55DDE5652940B4D5CE3163BD9CEDA16237961/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 273611 +- 273610 +- 273609 +Description: The City of Archives +GMNotes: '' +GUID: 3f3f05 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Agenda Deck +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.7248 + posY: 1.65664124 + posZ: 0.373300254 + rotX: 0.0168147869 + rotY: 180.014511 + rotZ: 0.0802620053 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 6 The City of Archives 3170ce/Deck Encounter Deck a7cb09.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 6 The City of Archives 3170ce/Deck Encounter Deck a7cb09.yaml new file mode 100644 index 000000000..9188b982c --- /dev/null +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 6 The City of Archives 3170ce/Deck Encounter Deck a7cb09.yaml @@ -0,0 +1,1439 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 273828 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/m12nk5a.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/954090355584194829/C6D55DDE5652940B4D5CE3163BD9CEDA16237961/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Monster. Yithian. + GMNotes: '' + GUID: 0fcf87 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Keeper of the Great Library + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 6.08216 + posY: 1.03139889 + posZ: -4.538208 + rotX: 359.992859 + rotY: 270.042 + rotZ: -0.002447898 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 273828 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/m12nk5a.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/954090355584194829/C6D55DDE5652940B4D5CE3163BD9CEDA16237961/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Monster. Yithian. + GMNotes: '' + GUID: b35444 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Keeper of the Great Library + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 5.747976 + posY: 1.16677582 + posZ: -4.670897 + rotX: 0.00341014354 + rotY: 270.042084 + rotZ: -0.001525404 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 273829 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/m12nk5a.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/954090355584194829/C6D55DDE5652940B4D5CE3163BD9CEDA16237961/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Monster. Yithian. + GMNotes: '' + GUID: ff0f15 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Scientist of Yith + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 5.821424 + posY: 1.03154647 + posZ: -7.434626 + rotX: -0.0005549941 + rotY: 269.983734 + rotZ: -0.0006570094 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 273829 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/m12nk5a.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/954090355584194829/C6D55DDE5652940B4D5CE3163BD9CEDA16237961/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Monster. Yithian. + GMNotes: '' + GUID: e6edac + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Scientist of Yith + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 6.06386137 + posY: 1.16711652 + posZ: -7.433848 + rotX: 359.98645 + rotY: 269.983856 + rotZ: -0.00398831256 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 273831 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/m12nk5a.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/954090355584194829/C6D55DDE5652940B4D5CE3163BD9CEDA16237961/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Power. Terror. + GMNotes: '' + GUID: '621078' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Yithian Presence + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 5.546133 + posY: 1.0316366 + posZ: -12.8457718 + rotX: -0.003637671 + rotY: 269.999451 + rotZ: -0.00115017546 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 273831 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/m12nk5a.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/954090355584194829/C6D55DDE5652940B4D5CE3163BD9CEDA16237961/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Power. Terror. + GMNotes: '' + GUID: 470a03 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Yithian Presence + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 4.984016 + posY: 1.08128452 + posZ: -12.8986444 + rotX: 0.000686795858 + rotY: 269.9995 + rotZ: 0.0052263 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 273831 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/m12nk5a.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/954090355584194829/C6D55DDE5652940B4D5CE3163BD9CEDA16237961/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Power. Terror. + GMNotes: '' + GUID: a9b607 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Yithian Presence + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 5.083335 + posY: 1.22745264 + posZ: -12.9766245 + rotX: 0.004935532 + rotY: 270.000061 + rotZ: 0.00712594949 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 273830 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/m12nk5a.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/954090355584194829/C6D55DDE5652940B4D5CE3163BD9CEDA16237961/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Monster. Yithian. + GMNotes: '' + GUID: 312d52 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Scholar from Yith + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 5.7201457 + posY: 1.0312022 + posZ: -10.1646366 + rotX: -0.00117114093 + rotY: 269.0418 + rotZ: 359.9927 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 273830 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/m12nk5a.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/954090355584194829/C6D55DDE5652940B4D5CE3163BD9CEDA16237961/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Monster. Yithian. + GMNotes: '' + GUID: b0b1bb + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Scholar from Yith + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 5.364162 + posY: 1.16657257 + posZ: -10.3275385 + rotX: 0.009794812 + rotY: 269.04187 + rotZ: -0.00485869264 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 273830 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/m12nk5a.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/954090355584194829/C6D55DDE5652940B4D5CE3163BD9CEDA16237961/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Monster. Yithian. + GMNotes: '' + GUID: 312d52 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Scholar from Yith + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 5.81621075 + posY: 1.19393659 + posZ: -10.2641258 + rotX: 359.805847 + rotY: 269.0401 + rotZ: 0.3251073 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 273832 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/m12nk5a.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/954090355584194829/C6D55DDE5652940B4D5CE3163BD9CEDA16237961/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Injury. Terror. + GMNotes: '' + GUID: 66f462 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Cruel Interrogations + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 1.49438441 + posY: 1.03133786 + posZ: -4.773218 + rotX: -0.00193225988 + rotY: 269.665649 + rotZ: -0.000723834848 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 273832 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/m12nk5a.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/954090355584194829/C6D55DDE5652940B4D5CE3163BD9CEDA16237961/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Injury. Terror. + GMNotes: '' + GUID: e32948 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Cruel Interrogations + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 1.33184016 + posY: 1.16693735 + posZ: -4.62288666 + rotX: 359.9905 + rotY: 269.665527 + rotZ: 359.983917 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 273832 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/m12nk5a.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/954090355584194829/C6D55DDE5652940B4D5CE3163BD9CEDA16237961/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Injury. Terror. + GMNotes: '' + GUID: dea5d3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Cruel Interrogations + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 1.331532 + posY: 1.193645 + posZ: -4.622326 + rotX: 0.3819103 + rotY: 269.657776 + rotZ: 359.3895 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 273834 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/m12nk5a.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/954090355584194829/C6D55DDE5652940B4D5CE3163BD9CEDA16237961/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Hex. + GMNotes: '' + GUID: 41e5c9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Captive Mind + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 5.02178049 + posY: 1.17323041 + posZ: -3.49302173 + rotX: 0.00106126571 + rotY: 270.033081 + rotZ: 179.98175 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 273834 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/m12nk5a.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/954090355584194829/C6D55DDE5652940B4D5CE3163BD9CEDA16237961/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Hex. + GMNotes: '' + GUID: dedf7d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Captive Mind + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 5.30059 + posY: 1.03444111 + posZ: -3.554872 + rotX: -0.0003018715 + rotY: 270.002747 + rotZ: 179.994263 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 273833 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/m12nk5a.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/954090355584194829/C6D55DDE5652940B4D5CE3163BD9CEDA16237961/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Terror. + GMNotes: '' + GUID: 470d38 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Lost Humanity + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 1.313938 + posY: 1.031667 + posZ: -7.75112534 + rotX: -0.00231866655 + rotY: 270.000732 + rotZ: -0.000953371869 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 273833 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/m12nk5a.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/954090355584194829/C6D55DDE5652940B4D5CE3163BD9CEDA16237961/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Terror. + GMNotes: '' + GUID: e8f268 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Lost Humanity + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 1.63801014 + posY: 1.166907 + posZ: -8.107931 + rotX: 359.976349 + rotY: 270.0011 + rotZ: 0.01784639 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3619 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: '260768' + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dissonant Voices + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -19.1363125 + posY: 1.231699 + posZ: -7.400251 + rotX: -0.000820844667 + rotY: 270.0089 + rotZ: -0.000237511369 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3617 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: da8001 + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Rotting Remains + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -19.2726822 + posY: 1.23161709 + posZ: -4.69493532 + rotX: -0.00461160857 + rotY: 269.9793 + rotZ: -0.00137890945 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3619 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: f1a34d + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dissonant Voices + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -19.9809151 + posY: 1.28156877 + posZ: -7.79831076 + rotX: 0.011735606 + rotY: 270.009033 + rotZ: 0.00468536 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3618 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: 27c05d + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Frozen in Fear + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -18.967617 + posY: 1.231716 + posZ: -10.49529 + rotX: -3.11068325e-05 + rotY: 270.0013 + rotZ: -7.22032553e-07 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3617 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: 18e09c + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Rotting Remains + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -20.3450146 + posY: 1.28128624 + posZ: -4.537053 + rotX: 0.006250872 + rotY: 269.979126 + rotZ: -0.00126227119 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3618 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: c40f57 + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Frozen in Fear + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -19.6207886 + posY: 1.28169692 + posZ: -10.6840782 + rotX: -3.134726e-05 + rotY: 270.000763 + rotZ: 3.597804e-06 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3617 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: aa3d47 + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Rotting Remains + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -21.5193939 + posY: 1.337018 + posZ: -4.78068352 + rotX: 0.0181244723 + rotY: 269.978149 + rotZ: 0.00253973226 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3622 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: 03a265 + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Obscuring Fog + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -17.4148483 + posY: 1.23167741 + posZ: 5.99956274 + rotX: -0.000976656 + rotY: 269.9857 + rotZ: 0.005132819 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3622 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: '356046' + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Obscuring Fog + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -17.4060268 + posY: 1.37945676 + posZ: 6.40290833 + rotX: -0.0007180891 + rotY: 270.000427 + rotZ: 0.00573350256 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3621 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: b78c3b + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Crypt Chill + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -20.9259262 + posY: 1.23167884 + posZ: 6.982535 + rotX: -0.00255119917 + rotY: 269.983215 + rotZ: -0.000175039211 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3621 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: fb311c + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Crypt Chill + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -21.2322311 + posY: 1.37918484 + posZ: 7.16166067 + rotX: 359.988861 + rotY: 269.991547 + rotZ: 0.0295213945 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3632 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Pact. + GMNotes: '' + GUID: 153bb1 + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Offer of Power + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -20.47173 + posY: 1.23165572 + posZ: -6.579107 + rotX: -0.0019128432 + rotY: 269.991058 + rotZ: 0.00126636925 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3632 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Pact. + GMNotes: '' + GUID: 7c5c91 + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Offer of Power + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -20.5700569 + posY: 1.47729576 + posZ: -6.416937 + rotX: 0.007625266 + rotY: 269.9922 + rotZ: 354.008667 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3628 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Obstacle. + GMNotes: '' + GUID: 9449d7 + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Locked Door + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -21.2385483 + posY: 1.231653 + posZ: 10.5873995 + rotX: -0.00300062378 + rotY: 270.038849 + rotZ: -0.00198885379 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3628 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Obstacle. + GMNotes: '' + GUID: 1340ff + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Locked Door + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -21.3002548 + posY: 1.37891018 + posZ: 10.607831 + rotX: 359.985657 + rotY: 270.026245 + rotZ: 0.0447875448 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3631 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Yithian. + GMNotes: '' + GUID: 3c1a8d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Yithian Observer + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -6.242802 + posY: 2.045673 + posZ: -16.8768578 + rotX: -6.91232742e-08 + rotY: 269.997253 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2738': + BackIsHidden: true + BackURL: https://i.imgur.com/m12nk5a.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/954090355584194829/C6D55DDE5652940B4D5CE3163BD9CEDA16237961/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 273828 +- 273828 +- 273829 +- 273829 +- 273831 +- 273831 +- 273831 +- 273830 +- 273830 +- 273830 +- 273832 +- 273832 +- 273832 +- 273834 +- 273834 +- 273833 +- 273833 +- 3619 +- 3617 +- 3619 +- 3618 +- 3617 +- 3618 +- 3617 +- 3622 +- 3622 +- 3621 +- 3621 +- 3632 +- 3632 +- 3628 +- 3628 +- 3631 +Description: The City of Archives +GMNotes: '' +GUID: a7cb09 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Encounter Deck +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.9274 + posY: 1.78769791 + posZ: 5.75710058 + rotX: 359.919739 + rotY: 269.99762 + rotZ: 180.016815 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 7 The Depths of Yoth 85286a.ttslua b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 7 The Depths of Yoth 85286a.ttslua new file mode 100644 index 000000000..46067f58e --- /dev/null +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 7 The Depths of Yoth 85286a.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.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.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 Forgotten Age 0ff458/Custom_Model_Bag 7 The Depths of Yoth 85286a.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 7 The Depths of Yoth 85286a.yaml new file mode 100644 index 000000000..2ea583577 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 7 The Depths of Yoth 85286a.yaml @@ -0,0 +1,73 @@ +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 7 The Depths of Yoth 85286a/Card Steps of Yoth f7ca01.yaml' +- !include 'Custom_Model_Bag 7 The Depths of Yoth 85286a/Deck Locations feb7ac.yaml' +- !include 'Custom_Model_Bag 7 The Depths of Yoth 85286a/Custom_Model_Bag Set-aside + a45247.yaml' +- !include 'Custom_Model_Bag 7 The Depths of Yoth 85286a/Deck Encounter Deck 089fc0.yaml' +- !include 'Custom_Model_Bag 7 The Depths of Yoth 85286a/Deck Agenda Deck 8bdaaa.yaml' +- !include 'Custom_Model_Bag 7 The Depths of Yoth 85286a/Card Journey to the Nexus + 34eda1.yaml' +- !include 'Custom_Model_Bag 7 The Depths of Yoth 85286a/Custom_Token Scenario - EasyStandard + dd61f1.yaml' +- !include 'Custom_Model_Bag 7 The Depths of Yoth 85286a/Custom_Token Scenario - HardExpert + 2da146.yaml' +- !include 'Custom_Model_Bag 7 The Depths of Yoth 85286a/Custom_Tile The Depths of + Yoth 7aa4e3.yaml' +CustomMesh: + CastShadows: true + ColliderURL: '' + Convex: true + DiffuseURL: http://cloud-3.steamusercontent.com/ugc/829135118403842883/BEFF26A25AF021C148755FE88A4C39CBEFC49A89/ + MaterialIndex: 3 + MeshURL: https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj + NormalURL: '' + TypeIndex: 6 +Description: The Forgotten Age +GMNotes: '' +GUID: 85286a +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Model_Bag 7 The Depths of Yoth 85286a.ttslua' +LuaScriptState: '{"ml":{"089fc0":{"lock":false,"pos":{"x":-3.9276,"y":1.825,"z":5.7571},"rot":{"x":359.9197,"y":269.9919,"z":180.0169}},"2da146":{"lock":false,"pos":{"x":-5.5444,"y":1.7335,"z":-10.4706},"rot":{"x":3.5279,"y":269.9998,"z":0.017}},"34eda1":{"lock":false,"pos":{"x":-2.6886,"y":1.6555,"z":-5.0485},"rot":{"x":0.0168,"y":180,"z":0.0803}},"7aa4e3":{"lock":false,"pos":{"x":-3.8408,"y":1.5825,"z":-14.6727},"rot":{"x":359.9197,"y":270.0325,"z":0.0168}},"8bdaaa":{"lock":false,"pos":{"x":-2.7247,"y":1.6606,"z":0.3733},"rot":{"x":0.0169,"y":179.9701,"z":0.0803}},"a45247":{"lock":false,"pos":{"x":1.6966,"y":1.5583,"z":14.2787},"rot":{"x":359.9551,"y":224.998,"z":0.0687}},"dd61f1":{"lock":false,"pos":{"x":-3.9579,"y":1.6339,"z":-10.4412},"rot":{"x":359.9163,"y":269.9963,"z":0.0158}},"f7ca01":{"lock":false,"pos":{"x":-12.9526,"y":1.6739,"z":9.0683},"rot":{"x":359.9201,"y":269.9996,"z":0.0169}},"feb7ac":{"lock":false,"pos":{"x":-12.9247,"y":1.6608,"z":11.7984},"rot":{"x":359.9201,"y":270,"z":0.0169}}}}' +MaterialIndex: -1 +MeshIndex: -1 +Name: Custom_Model_Bag +Nickname: '7: The Depths of Yoth' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 12.2504969 + posY: 1.45853734 + posZ: -20.0136547 + rotX: 359.9201 + rotY: 270.0099 + rotZ: 0.0168602783 + scaleX: 2.21 + scaleY: 0.46 + scaleZ: 2.42 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 7 The Depths of Yoth 85286a/Card Journey to the Nexus 34eda1.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 7 The Depths of Yoth 85286a/Card Journey to the Nexus 34eda1.yaml new file mode 100644 index 000000000..0f82ffa92 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 7 The Depths of Yoth 85286a/Card Journey to the Nexus 34eda1.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 274120 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2741': + BackIsHidden: true + BackURL: https://i.imgur.com/VfZuXd1.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/943959879361281633/780B963F4F774A497E33388A89027A83EF0AD8E3/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Act 1 +GMNotes: '' +GUID: 34eda1 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Journey to the Nexus +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.6886 + posY: 1.6554575 + posZ: -5.048501 + rotX: 0.0168381464 + rotY: 179.999969 + rotZ: 0.0802583247 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 7 The Depths of Yoth 85286a/Card Steps of Yoth f7ca01.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 7 The Depths of Yoth 85286a/Card Steps of Yoth f7ca01.yaml new file mode 100644 index 000000000..b3579db9d --- /dev/null +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 7 The Depths of Yoth 85286a/Card Steps of Yoth f7ca01.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 274321 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2743': + BackIsHidden: true + BackURL: https://i.imgur.com/VfZuXd1.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/943959879361281633/780B963F4F774A497E33388A89027A83EF0AD8E3/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Ancient. Forgotten. Yoth. +GMNotes: '' +GUID: f7ca01 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Steps of Yoth +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -12.9525976 + posY: 1.67394567 + posZ: 9.0683 + rotX: 359.9201 + rotY: 269.999573 + rotZ: 0.0168705359 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 7 The Depths of Yoth 85286a/Custom_Model_Bag Set-aside a45247.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 7 The Depths of Yoth 85286a/Custom_Model_Bag Set-aside a45247.yaml new file mode 100644 index 000000000..5967f2c0f --- /dev/null +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 7 The Depths of Yoth 85286a/Custom_Model_Bag Set-aside a45247.yaml @@ -0,0 +1,60 @@ +Autoraise: true +ColorDiffuse: + b: 0.02148666 + g: 0.00100758043 + r: 0.02148666 +ContainedObjects: +- !include 'Custom_Model_Bag Set-aside a45247/Custom_Tile 53f6b5.yaml' +- !include 'Custom_Model_Bag Set-aside a45247/Deck Poisoned 9a1273.yaml' +- !include 'Custom_Model_Bag Set-aside a45247/Card Yig e1be04.yaml' +- !include 'Custom_Model_Bag Set-aside a45247/Card Relic of Ages d1206b.yaml' +- !include 'Custom_Model_Bag Set-aside a45247/Card Harbinger of Valusia c6b3fc.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 City of Archives +GMNotes: '' +GUID: a45247 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +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.69660091 + posY: 1.55831647 + posZ: 14.2787027 + rotX: 359.955139 + rotY: 224.997986 + rotZ: 0.0686840639 + scaleX: 2.0 + scaleY: 2.0 + scaleZ: 2.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 7 The Depths of Yoth 85286a/Custom_Model_Bag Set-aside a45247/Card Harbinger of Valusia c6b3fc.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 7 The Depths of Yoth 85286a/Custom_Model_Bag Set-aside a45247/Card Harbinger of Valusia c6b3fc.yaml new file mode 100644 index 000000000..041f91f66 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 7 The Depths of Yoth 85286a/Custom_Model_Bag Set-aside a45247/Card Harbinger of Valusia c6b3fc.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 14261 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '142': + BackIsHidden: true + BackURL: https://i.imgur.com/RpzEfmS.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393194495/027101CA5C626EBA0E4F76F3F15569329F81DE3C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Humanoid. Monster. Serpent. Elite. +GMNotes: '' +GUID: c6b3fc +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Harbinger of Valusia +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 8.803751 + posY: 3.4942584 + posZ: -4.236747 + rotX: 359.920135 + rotY: 269.999969 + rotZ: 0.0168681778 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 7 The Depths of Yoth 85286a/Custom_Model_Bag Set-aside a45247/Card Relic of Ages d1206b.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 7 The Depths of Yoth 85286a/Custom_Model_Bag Set-aside a45247/Card Relic of Ages d1206b.yaml new file mode 100644 index 000000000..01fcc6bb7 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 7 The Depths of Yoth 85286a/Custom_Model_Bag Set-aside a45247/Card Relic of Ages d1206b.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 12738 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/VfZuXd1.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/943959879361281633/780B963F4F774A497E33388A89027A83EF0AD8E3/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Item. Relic. +GMNotes: '' +GUID: d1206b +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Relic of Ages +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 8.900408 + posY: 3.49503183 + posZ: -1.15160322 + rotX: 359.920135 + rotY: 269.999939 + rotZ: 0.0168755222 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 7 The Depths of Yoth 85286a/Custom_Model_Bag Set-aside a45247/Card Yig e1be04.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 7 The Depths of Yoth 85286a/Custom_Model_Bag Set-aside a45247/Card Yig e1be04.yaml new file mode 100644 index 000000000..d19c334c5 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 7 The Depths of Yoth 85286a/Custom_Model_Bag Set-aside a45247/Card Yig e1be04.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 12731 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/VfZuXd1.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/943959879361281633/780B963F4F774A497E33388A89027A83EF0AD8E3/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Ancient One. Serpent. Elite. +GMNotes: '' +GUID: e1be04 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Yig +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 12.5170107 + posY: 3.48997879 + posZ: -1.18948746 + rotX: 359.920135 + rotY: 269.9999 + rotZ: 0.01686506 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 7 The Depths of Yoth 85286a/Custom_Model_Bag Set-aside a45247/Custom_Tile 53f6b5.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 7 The Depths of Yoth 85286a/Custom_Model_Bag Set-aside a45247/Custom_Tile 53f6b5.yaml new file mode 100644 index 000000000..a1dfac3cd --- /dev/null +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 7 The Depths of Yoth 85286a/Custom_Model_Bag Set-aside a45247/Custom_Tile 53f6b5.yaml @@ -0,0 +1,42 @@ +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: '' +GMNotes: '' +GUID: 53f6b5 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Tile +Nickname: '' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 12.4407015 + posY: 3.513117 + posZ: -4.687938 + rotX: 359.923126 + rotY: 270.0204 + rotZ: 0.01591505 + scaleX: 0.81 + scaleY: 1.0 + scaleZ: 0.81 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 7 The Depths of Yoth 85286a/Custom_Model_Bag Set-aside a45247/Deck Poisoned 9a1273.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 7 The Depths of Yoth 85286a/Custom_Model_Bag Set-aside a45247/Deck Poisoned 9a1273.yaml new file mode 100644 index 000000000..31da2f6f8 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 7 The Depths of Yoth 85286a/Custom_Model_Bag Set-aside a45247/Deck Poisoned 9a1273.yaml @@ -0,0 +1,215 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 13731 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '137': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Poision. + GMNotes: '' + GUID: 1f5327 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Poisoned + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 17.8318443 + posY: 1.52774835 + posZ: -2.08907533 + rotX: 359.920135 + rotY: 269.999634 + rotZ: 0.0168754943 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 13731 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '137': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Poision. + GMNotes: '' + GUID: 866eba + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Poisoned + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.0896778 + posY: 1.53092682 + posZ: 0.4571478 + rotX: 359.920135 + rotY: 269.999817 + rotZ: 0.0168732945 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 13731 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '137': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Poision. + GMNotes: '' + GUID: 34788c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Poisoned + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.7947655 + posY: 1.53077567 + posZ: 3.28200245 + rotX: 359.920135 + rotY: 269.999817 + rotZ: 0.0168702025 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 13731 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '137': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Poision. + GMNotes: '' + GUID: d3659f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Poisoned + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 13.355545 + posY: 1.535611 + posZ: 3.42066741 + rotX: 359.920135 + rotY: 269.9998 + rotZ: 0.0168706831 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '137': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 13731 +- 13731 +- 13731 +- 13731 +Description: '' +GMNotes: '' +GUID: 9a1273 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Poisoned +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 12.8332386 + posY: 3.58258748 + posZ: -4.703856 + rotX: 359.919556 + rotY: 270.0 + rotZ: 0.0170751885 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 7 The Depths of Yoth 85286a/Custom_Tile The Depths of Yoth 7aa4e3.ttslua b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 7 The Depths of Yoth 85286a/Custom_Tile The Depths of Yoth 7aa4e3.ttslua new file mode 100644 index 000000000..7d9affdc4 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 7 The Depths of Yoth 85286a/Custom_Tile The Depths of Yoth 7aa4e3.ttslua @@ -0,0 +1,25 @@ +name = 'The Depths of Yoth' + +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 + +function standaloneClick() + Global.call('fillContainer', {object=self, key=name, mode='standalone'}) +end \ No newline at end of file diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/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 0ff458/Custom_Model_Bag 7 The Depths of Yoth 85286a/Custom_Tile The Depths of Yoth 7aa4e3.yaml new file mode 100644 index 000000000..33ffb1a67 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 7 The Depths of Yoth 85286a/Custom_Tile The Depths of Yoth 7aa4e3.yaml @@ -0,0 +1,42 @@ +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 +GMNotes: '' +GUID: 7aa4e3 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Tile The Depths of Yoth 7aa4e3.ttslua' +LuaScriptState: '' +Name: Custom_Tile +Nickname: The Depths of Yoth +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.84080052 + posY: 1.58252978 + posZ: -14.6727028 + rotX: 359.919739 + rotY: 270.032532 + rotZ: 0.0167908352 + scaleX: 2.2 + scaleY: 1.0 + scaleZ: 2.2 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 7 The Depths of Yoth 85286a/Custom_Token Scenario - EasyStandard dd61f1.ttslua b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 7 The Depths of Yoth 85286a/Custom_Token Scenario - EasyStandard dd61f1.ttslua new file mode 100644 index 000000000..1c555f04c --- /dev/null +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 7 The Depths of Yoth 85286a/Custom_Token Scenario - EasyStandard dd61f1.ttslua @@ -0,0 +1,132 @@ +MIN_VALUE = -99 +MAX_VALUE = 999 + +function onload(saved_data) + light_mode = false + val = 0 + + if saved_data ~= "" then + local loaded_data = JSON.decode(saved_data) + light_mode = loaded_data[1] + val = loaded_data[2] + end + + createAll() +end + +function updateSave() + local data_to_save = {light_mode, val} + saved_data = JSON.encode(data_to_save) + self.script_state = saved_data +end + +function createAll() + s_color = {0.5, 0.5, 0.5, 95} + + if light_mode then + f_color = {0,0,0,98} + else + f_color = {0,0,0,100} + end + + + + self.createButton({ + label=tostring(val), + click_function="add_subtract", + function_owner=self, + position={0,0.05,1.45}, + height=600, + width=1000, + alignment = 3, + scale={x=1, y=1, z=1}, + font_size=350, + font_color=f_color, + color={0,0,0,0} + }) + + + + + if light_mode then + lightButtonText = "[ Set dark ]" + else + lightButtonText = "[ Set light ]" + end + +end + +function removeAll() + self.removeInput(0) + self.removeInput(1) + self.removeButton(0) + self.removeButton(1) + self.removeButton(2) +end + +function reloadAll() + removeAll() + createAll() + + updateSave() +end + +function swap_fcolor(_obj, _color, alt_click) + light_mode = not light_mode + reloadAll() +end + +function swap_align(_obj, _color, alt_click) + center_mode = not center_mode + reloadAll() +end + +function editName(_obj, _string, value) + self.setName(value) + setTooltips() +end + +function add_subtract(_obj, _color, alt_click) + mod = alt_click and -1 or 1 + new_value = math.min(math.max(val + mod, MIN_VALUE), MAX_VALUE) + if val ~= new_value then + val = new_value + updateVal() + updateSave() + end +end + +function updateVal() + + self.editButton({ + index = 0, + label = tostring(val), + + }) +end + +function reset_val() + val = 0 + updateVal() + updateSave() +end + +function setTooltips() + self.editInput({ + index = 0, + value = self.getName(), + tooltip = ttText + }) + self.editButton({ + index = 0, + value = tostring(val), + tooltip = ttText + }) +end + +function null() +end + +function keepSample(_obj, _string, value) + reloadAll() +end \ No newline at end of file diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 7 The Depths of Yoth 85286a/Custom_Token Scenario - EasyStandard dd61f1.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 7 The Depths of Yoth 85286a/Custom_Token Scenario - EasyStandard dd61f1.yaml new file mode 100644 index 000000000..dd34b91ea --- /dev/null +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 7 The Depths of Yoth 85286a/Custom_Token Scenario - EasyStandard dd61f1.yaml @@ -0,0 +1,43 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +CustomImage: + CustomToken: + MergeDistancePixels: 5.0 + Stackable: false + Thickness: 0.1 + ImageScalar: 1.0 + ImageSecondaryURL: '' + ImageURL: https://i.imgur.com/3d7nLz2.jpg + WidthScale: 0.0 +Description: 'Left click - Increase + + Right click - Decrease' +GMNotes: '' +GUID: dd61f1 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Token Scenario - EasyStandard dd61f1.ttslua' +LuaScriptState: '[true,0]' +Name: Custom_Token +Nickname: Scenario - Easy/Standard +Snap: true +Sticky: true +Tooltip: false +Transform: + posX: -3.95790362 + posY: 1.63386142 + posZ: -10.4412251 + rotX: 359.9163 + rotY: 269.9963 + rotZ: 0.0157556124 + scaleX: 0.7 + scaleY: 1.0 + scaleZ: 0.7 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 7 The Depths of Yoth 85286a/Custom_Token Scenario - HardExpert 2da146.ttslua b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 7 The Depths of Yoth 85286a/Custom_Token Scenario - HardExpert 2da146.ttslua new file mode 100644 index 000000000..1c555f04c --- /dev/null +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 7 The Depths of Yoth 85286a/Custom_Token Scenario - HardExpert 2da146.ttslua @@ -0,0 +1,132 @@ +MIN_VALUE = -99 +MAX_VALUE = 999 + +function onload(saved_data) + light_mode = false + val = 0 + + if saved_data ~= "" then + local loaded_data = JSON.decode(saved_data) + light_mode = loaded_data[1] + val = loaded_data[2] + end + + createAll() +end + +function updateSave() + local data_to_save = {light_mode, val} + saved_data = JSON.encode(data_to_save) + self.script_state = saved_data +end + +function createAll() + s_color = {0.5, 0.5, 0.5, 95} + + if light_mode then + f_color = {0,0,0,98} + else + f_color = {0,0,0,100} + end + + + + self.createButton({ + label=tostring(val), + click_function="add_subtract", + function_owner=self, + position={0,0.05,1.45}, + height=600, + width=1000, + alignment = 3, + scale={x=1, y=1, z=1}, + font_size=350, + font_color=f_color, + color={0,0,0,0} + }) + + + + + if light_mode then + lightButtonText = "[ Set dark ]" + else + lightButtonText = "[ Set light ]" + end + +end + +function removeAll() + self.removeInput(0) + self.removeInput(1) + self.removeButton(0) + self.removeButton(1) + self.removeButton(2) +end + +function reloadAll() + removeAll() + createAll() + + updateSave() +end + +function swap_fcolor(_obj, _color, alt_click) + light_mode = not light_mode + reloadAll() +end + +function swap_align(_obj, _color, alt_click) + center_mode = not center_mode + reloadAll() +end + +function editName(_obj, _string, value) + self.setName(value) + setTooltips() +end + +function add_subtract(_obj, _color, alt_click) + mod = alt_click and -1 or 1 + new_value = math.min(math.max(val + mod, MIN_VALUE), MAX_VALUE) + if val ~= new_value then + val = new_value + updateVal() + updateSave() + end +end + +function updateVal() + + self.editButton({ + index = 0, + label = tostring(val), + + }) +end + +function reset_val() + val = 0 + updateVal() + updateSave() +end + +function setTooltips() + self.editInput({ + index = 0, + value = self.getName(), + tooltip = ttText + }) + self.editButton({ + index = 0, + value = tostring(val), + tooltip = ttText + }) +end + +function null() +end + +function keepSample(_obj, _string, value) + reloadAll() +end \ No newline at end of file diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 7 The Depths of Yoth 85286a/Custom_Token Scenario - HardExpert 2da146.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 7 The Depths of Yoth 85286a/Custom_Token Scenario - HardExpert 2da146.yaml new file mode 100644 index 000000000..1a7602949 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 7 The Depths of Yoth 85286a/Custom_Token Scenario - HardExpert 2da146.yaml @@ -0,0 +1,43 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +CustomImage: + CustomToken: + MergeDistancePixels: 5.0 + Stackable: false + Thickness: 0.1 + ImageScalar: 1.0 + ImageSecondaryURL: '' + ImageURL: https://i.imgur.com/Wpl1xb9.jpg + WidthScale: 0.0 +Description: 'Left click - Increase + + Right click - Decrease' +GMNotes: '' +GUID: 2da146 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Token Scenario - HardExpert 2da146.ttslua' +LuaScriptState: '[true,0]' +Name: Custom_Token +Nickname: Scenario - Hard/Expert +Snap: true +Sticky: true +Tooltip: false +Transform: + posX: -5.544427 + posY: 1.733477 + posZ: -10.4706326 + rotX: 3.52788162 + rotY: 269.999817 + rotZ: 0.01702246 + scaleX: 0.7 + scaleY: 1.0 + scaleZ: 0.7 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 7 The Depths of Yoth 85286a/Deck Agenda Deck 8bdaaa.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 7 The Depths of Yoth 85286a/Deck Agenda Deck 8bdaaa.yaml new file mode 100644 index 000000000..e959cf084 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 7 The Depths of Yoth 85286a/Deck Agenda Deck 8bdaaa.yaml @@ -0,0 +1,344 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 274219 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/VfZuXd1.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/943959879361281633/780B963F4F774A497E33388A89027A83EF0AD8E3/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 7 + GMNotes: '' + GUID: eefdee + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: VENGEANCE + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.80703282 + posY: 1.33694077 + posZ: 49.4608765 + rotX: 0.009410943 + rotY: 180.000488 + rotZ: 359.975464 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274218 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/VfZuXd1.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/943959879361281633/780B963F4F774A497E33388A89027A83EF0AD8E3/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 6 + GMNotes: '' + GUID: 05dbc3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Red Depths + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 5.871912 + posY: 1.33782113 + posZ: 49.6357765 + rotX: -0.00261619966 + rotY: 180.002731 + rotZ: 359.970917 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274217 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/VfZuXd1.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/943959879361281633/780B963F4F774A497E33388A89027A83EF0AD8E3/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agend 5 + GMNotes: '' + GUID: bd6405 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Fury That Shakes the Earth + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 9.352386 + posY: 1.33939326 + posZ: 49.5475 + rotX: 0.0113848336 + rotY: 180.000381 + rotZ: 359.97583 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274216 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/VfZuXd1.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/943959879361281633/780B963F4F774A497E33388A89027A83EF0AD8E3/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 4 + GMNotes: '' + GUID: c2af87 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: City of Blood + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 12.21979 + posY: 1.3406384 + posZ: 49.84476 + rotX: 0.0178700164 + rotY: 179.999786 + rotZ: 359.9784 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274215 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/VfZuXd1.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/943959879361281633/780B963F4F774A497E33388A89027A83EF0AD8E3/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 3 + GMNotes: '' + GUID: 7275cb + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Endless Caverns + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 15.6455288 + posY: 1.34169233 + posZ: 49.776 + rotX: 0.00768059958 + rotY: 179.999741 + rotZ: 359.97403 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274214 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/VfZuXd1.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/943959879361281633/780B963F4F774A497E33388A89027A83EF0AD8E3/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 2 + GMNotes: '' + GUID: 7381f6 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Horrific Descent + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 18.5796585 + posY: 1.34291494 + posZ: 49.8592567 + rotX: 0.0172280166 + rotY: 180.015976 + rotZ: 359.9661 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274213 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/VfZuXd1.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/943959879361281633/780B963F4F774A497E33388A89027A83EF0AD8E3/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 1 + GMNotes: '' + GUID: 56b578 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Descent Begins + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 18.72539 + posY: 1.48340607 + posZ: 49.9728165 + rotX: 0.008278536 + rotY: 180.04454 + rotZ: 359.9573 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2742': + BackIsHidden: true + BackURL: https://i.imgur.com/VfZuXd1.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/943959879361281633/780B963F4F774A497E33388A89027A83EF0AD8E3/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 274219 +- 274218 +- 274217 +- 274216 +- 274215 +- 274214 +- 274213 +Description: The City of Archives +GMNotes: '' +GUID: 8bdaaa +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Agenda Deck +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.7247 + posY: 1.66062987 + posZ: 0.373299748 + rotX: 0.0168795362 + rotY: 179.970139 + rotZ: 0.0802508444 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 7 The Depths of Yoth 85286a/Deck Encounter Deck 089fc0.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 7 The Depths of Yoth 85286a/Deck Encounter Deck 089fc0.yaml new file mode 100644 index 000000000..fcad1828d --- /dev/null +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 7 The Depths of Yoth 85286a/Deck Encounter Deck 089fc0.yaml @@ -0,0 +1,1798 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 12912 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '129': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Humanoid. Monster. Serpent. + GMNotes: '' + GUID: 7a7539 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Brood of Yig + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 19.3024445 + posY: 1.94622731 + posZ: 13.0074615 + rotX: 359.9249 + rotY: 270.005157 + rotZ: 180.01976 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12912 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '129': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Humanoid. Monster. Serpent. + GMNotes: '' + GUID: 61dec3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Brood of Yig + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 5.516137 + posY: 1.42866349 + posZ: 46.63404 + rotX: 0.0336772129 + rotY: 270.127258 + rotZ: 180.6525 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 13623 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '136': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Hazard. + GMNotes: '' + GUID: 76f023 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Deep Dark + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 13.3893652 + posY: 1.409237 + posZ: 45.5716934 + rotX: 0.0761211738 + rotY: 269.9513 + rotZ: 180.518982 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12913 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '129': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Humanoid. Monster. Serpent. + GMNotes: '' + GUID: 906ef2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Serpent from Yoth + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 5.512546 + posY: 1.49347317 + posZ: 47.67605 + rotX: 0.0774864852 + rotY: 270.085266 + rotZ: 180.485367 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12914 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '129': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Curse. + GMNotes: '' + GUID: 5b28aa + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Curse of Yig + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 5.51845837 + posY: 1.34973919 + posZ: 48.79999 + rotX: 0.0112313656 + rotY: 270.079346 + rotZ: 180.511276 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12914 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '129': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Curse. + GMNotes: '' + GUID: cc86ff + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Curse of Yig + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 5.520464 + posY: 1.39662611 + posZ: 49.8340874 + rotX: 0.116290532 + rotY: 270.0747 + rotZ: 179.972092 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 278527 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '128': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Humanoid. Monster. Serpent. + GMNotes: '' + GUID: 6b107c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Fang of Yig + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 5.52270031 + posY: 1.48190582 + posZ: 50.91536 + rotX: 0.03825952 + rotY: 270.276 + rotZ: 180.761169 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 278529 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '128': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Power. + GMNotes: '' + GUID: 39cc46 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Serpent's Call + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 5.52178049 + posY: 1.34235883 + posZ: 51.9914474 + rotX: 0.0606114529 + rotY: 270.01004 + rotZ: 179.98613 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 13623 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '136': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Hazard. + GMNotes: '' + GUID: 16ec42 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Deep Dark + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 13.38775 + posY: 1.35012567 + posZ: 46.57762 + rotX: -2.80011081e-05 + rotY: 269.965851 + rotZ: 179.6844 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 13623 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '136': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Hazard. + GMNotes: '' + GUID: 866eba + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Deep Dark + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 13.3865175 + posY: 1.478656 + posZ: 47.73055 + rotX: 359.858032 + rotY: 269.968475 + rotZ: 178.962723 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 13730 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '137': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Poison. + GMNotes: '' + GUID: b4f854 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Creeping Poison + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 13.38948 + posY: 1.38714051 + posZ: 48.7719955 + rotX: 0.02023038 + rotY: 270.024658 + rotZ: 177.6995 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 13730 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '137': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Poison. + GMNotes: '' + GUID: 8e8fef + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Creeping Poison + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 13.3924866 + posY: 1.48990285 + posZ: 49.8883171 + rotX: 0.0211527757 + rotY: 269.886444 + rotZ: 177.758392 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274032 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/VfZuXd1.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/943959879361281633/780B963F4F774A497E33388A89027A83EF0AD8E3/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Humanoid. Monster. Serpent. + GMNotes: '' + GUID: 2de72d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Pit Warden + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 13.3929939 + posY: 1.39184523 + posZ: 50.9581757 + rotX: 0.0229661912 + rotY: 270.020264 + rotZ: 177.484451 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274032 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/VfZuXd1.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/943959879361281633/780B963F4F774A497E33388A89027A83EF0AD8E3/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Humanoid. Monster. Serpent. + GMNotes: '' + GUID: 085f52 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Pit Warden + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 13.3902359 + posY: 1.49041116 + posZ: 52.0541878 + rotX: 0.0354712047 + rotY: 269.9482 + rotZ: 177.500092 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 13622 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '136': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Terror. + GMNotes: '' + GUID: 6dd1d9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ancestral Fear + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 10.3726158 + posY: 1.34524572 + posZ: 58.74658 + rotX: 0.009561894 + rotY: 270.0031 + rotZ: 180.018677 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274032 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/VfZuXd1.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/943959879361281633/780B963F4F774A497E33388A89027A83EF0AD8E3/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Humanoid. Monster. Serpent. + GMNotes: '' + GUID: 50b857 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Pit Warden + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 13.39047 + posY: 1.39191079 + posZ: 53.1623459 + rotX: 0.0209117979 + rotY: 269.95932 + rotZ: 177.512985 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274035 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/VfZuXd1.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/943959879361281633/780B963F4F774A497E33388A89027A83EF0AD8E3/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Terror. + GMNotes: '' + GUID: 082086 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Lightless Shadow + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 10.6778078 + posY: 1.51508832 + posZ: 62.8366 + rotX: 6.24076366 + rotY: 270.07962 + rotZ: 180.01918 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 13621 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '136': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Omen. Terror. + GMNotes: '' + GUID: e7fd35 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ill Omen + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 12.4719706 + posY: 1.6257875 + posZ: 58.751133 + rotX: 351.2315 + rotY: 269.958832 + rotZ: 180.035751 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 13622 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '136': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Terror. + GMNotes: '' + GUID: 6e0cb5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ancestral Fear + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 11.4122133 + posY: 1.64564931 + posZ: 58.7497559 + rotX: 5.667333 + rotY: 269.9402 + rotZ: 180.014114 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274035 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/VfZuXd1.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/943959879361281633/780B963F4F774A497E33388A89027A83EF0AD8E3/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Terror. + GMNotes: '' + GUID: 646c0e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Lightless Shadow + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 11.7280531 + posY: 1.679692 + posZ: 62.83565 + rotX: 6.2456665 + rotY: 270.073669 + rotZ: 180.0155 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 13621 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '136': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Omen. Terror. + GMNotes: '' + GUID: 1fbcc6 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ill Omen + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 13.5426149 + posY: 1.60228384 + posZ: 58.75251 + rotX: 351.2315 + rotY: 269.9812 + rotZ: 180.03511 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274035 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/VfZuXd1.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/943959879361281633/780B963F4F774A497E33388A89027A83EF0AD8E3/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Terror. + GMNotes: '' + GUID: 919da4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Lightless Shadow + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 12.7530107 + posY: 1.60639048 + posZ: 62.8367462 + rotX: 9.883252 + rotY: 270.08847 + rotZ: 179.840958 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12912 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '129': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Humanoid. Monster. Serpent. + GMNotes: '' + GUID: 5ef7c7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Brood of Yig + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 18.8245621 + posY: 1.40832162 + posZ: 58.75821 + rotX: 2.219647 + rotY: 270.078766 + rotZ: 180.016953 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 278528 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '128': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Curse. + GMNotes: '' + GUID: '660874' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Snakescourge + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 23.07458 + posY: 1.40856862 + posZ: 58.741333 + rotX: 1.03274238 + rotY: 270.064575 + rotZ: 180.125671 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 278528 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '128': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Curse. + GMNotes: '' + GUID: 9542e8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Snakescourge + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 20.9546356 + posY: 1.562452 + posZ: 58.75754 + rotX: 2.20969868 + rotY: 270.067078 + rotZ: 180.0156 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 278527 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '128': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Humanoid. Monster. Serpent. + GMNotes: '' + GUID: 3b00a0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Fang of Yig + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 22.0138245 + posY: 1.34931374 + posZ: 58.7456856 + rotX: 0.00281400466 + rotY: 269.969727 + rotZ: 180.020065 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 13511 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '135': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Blunder. + GMNotes: '' + GUID: '632986' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Low on Supplies + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 17.756094 + posY: 1.72914386 + posZ: 58.7547646 + rotX: 355.000153 + rotY: 270.0602 + rotZ: 180.01178 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 13511 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '135': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Blunder. + GMNotes: '' + GUID: 8bc688 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Low on Supplies + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 19.88114 + posY: 1.47124541 + posZ: 58.7579575 + rotX: 2.24134541 + rotY: 270.050751 + rotZ: 180.01152 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 13510 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '135': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Blunder. + GMNotes: '' + GUID: e7d6b8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Lost in the Wilds + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.708252 + posY: 1.695657 + posZ: 58.7552757 + rotX: 354.94278 + rotY: 270.0547 + rotZ: 180.016541 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 13510 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '135': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Blunder. + GMNotes: '' + GUID: f8b917 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Lost in the Wilds + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 14.593317 + posY: 1.5805546 + posZ: 58.7534676 + rotX: 351.4231 + rotY: 270.003052 + rotZ: 180.025711 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274036 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/VfZuXd1.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/943959879361281633/780B963F4F774A497E33388A89027A83EF0AD8E3/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Terror. + GMNotes: '' + GUID: 5d4479 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Bathophobia + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 14.9385853 + posY: 1.3484062 + posZ: 62.8048553 + rotX: 359.9662 + rotY: 269.959778 + rotZ: 180.049835 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274033 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/VfZuXd1.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/943959879361281633/780B963F4F774A497E33388A89027A83EF0AD8E3/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Monster. + GMNotes: '' + GUID: bd44d1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Eater of the Depths + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 13.8331871 + posY: 1.51006067 + posZ: 62.83743 + rotX: 9.817248 + rotY: 270.069763 + rotZ: 178.710709 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274036 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/VfZuXd1.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/943959879361281633/780B963F4F774A497E33388A89027A83EF0AD8E3/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Terror. + GMNotes: '' + GUID: e75e4c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Bathophobia + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 17.02178 + posY: 1.6328299 + posZ: 62.82912 + rotX: 0.6155151 + rotY: 269.729553 + rotZ: 180.0952 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274036 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/VfZuXd1.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/943959879361281633/780B963F4F774A497E33388A89027A83EF0AD8E3/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Terror. + GMNotes: '' + GUID: b4f8c3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Bathophobia + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.001997 + posY: 1.49390161 + posZ: 62.80343 + rotX: 359.832855 + rotY: 269.676147 + rotZ: 179.231 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274034 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/VfZuXd1.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/943959879361281633/780B963F4F774A497E33388A89027A83EF0AD8E3/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Scheme. + GMNotes: '' + GUID: a1b639 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Children of Valusia + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 22.3317986 + posY: 1.53279376 + posZ: 62.831913 + rotX: 355.82132 + rotY: 270.086182 + rotZ: 180.024216 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274034 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/VfZuXd1.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/943959879361281633/780B963F4F774A497E33388A89027A83EF0AD8E3/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Scheme. + GMNotes: '' + GUID: 0e4387 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Children of Valusia + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 21.27518 + posY: 1.3498714 + posZ: 62.83573 + rotX: 359.992371 + rotY: 269.99408 + rotZ: 180.025711 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274034 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/VfZuXd1.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/943959879361281633/780B963F4F774A497E33388A89027A83EF0AD8E3/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Scheme. + GMNotes: '' + GUID: ae8867 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Children of Valusia + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 20.2075882 + posY: 1.42591381 + posZ: 62.836647 + rotX: 0.0592274666 + rotY: 269.981262 + rotZ: 180.0339 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274037 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/VfZuXd1.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/943959879361281633/780B963F4F774A497E33388A89027A83EF0AD8E3/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Scheme. + GMNotes: '' + GUID: be7bde + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Serpent's Ire + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 19.1543674 + posY: 1.49891162 + posZ: 62.8367157 + rotX: 0.2319314 + rotY: 270.0312 + rotZ: 180.072266 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274037 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/VfZuXd1.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/943959879361281633/780B963F4F774A497E33388A89027A83EF0AD8E3/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Scheme. + GMNotes: '' + GUID: '766633' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Serpent's Ire + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 18.06691 + posY: 1.76673758 + posZ: 62.8334465 + rotX: 0.6173516 + rotY: 269.728 + rotZ: 180.086319 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 13510 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '135': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Blunder. + GMNotes: '' + GUID: dc5b1e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Lost in the Wilds + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 15.6605654 + posY: 1.66348648 + posZ: 58.75396 + rotX: 354.9234 + rotY: 270.0735 + rotZ: 180.017853 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '129': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + '135': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + '136': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + '137': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + '2740': + BackIsHidden: true + BackURL: https://i.imgur.com/VfZuXd1.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/943959879361281633/780B963F4F774A497E33388A89027A83EF0AD8E3/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + '2785': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 12912 +- 12912 +- 13623 +- 12913 +- 12914 +- 12914 +- 278527 +- 278529 +- 13623 +- 13623 +- 13730 +- 13730 +- 274032 +- 274032 +- 13622 +- 274032 +- 274035 +- 13621 +- 13622 +- 274035 +- 13621 +- 274035 +- 12912 +- 278528 +- 278528 +- 278527 +- 13511 +- 13511 +- 13510 +- 13510 +- 274036 +- 274033 +- 274036 +- 274036 +- 274034 +- 274034 +- 274034 +- 274037 +- 274037 +- 13510 +Description: The City of Archives +GMNotes: '' +GUID: 089fc0 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Encounter Deck +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.92760062 + posY: 1.82500458 + posZ: 5.7571 + rotX: 359.919739 + rotY: 269.991943 + rotZ: 180.016861 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 7 The Depths of Yoth 85286a/Deck Locations feb7ac.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 7 The Depths of Yoth 85286a/Deck Locations feb7ac.yaml new file mode 100644 index 000000000..7d1fa225e --- /dev/null +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 7 The Depths of Yoth 85286a/Deck Locations feb7ac.yaml @@ -0,0 +1,430 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 274425 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/VfZuXd1.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/943959879361281633/780B963F4F774A497E33388A89027A83EF0AD8E3/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Ancient. Cave. Yoth. + GMNotes: '' + GUID: c870e9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Caverns of Yoth + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 23.59382 + posY: 1.64415479 + posZ: 24.4902153 + rotX: 359.920441 + rotY: 270.0006 + rotZ: 180.017288 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274422 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/VfZuXd1.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/943959879361281633/780B963F4F774A497E33388A89027A83EF0AD8E3/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Ancient. Cave. Yoth. + GMNotes: '' + GUID: e4e4d3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: City of the Serpents + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 13.6564693 + posY: 1.45062959 + posZ: 63.516964 + rotX: 3.86173987 + rotY: 0.0199059546 + rotZ: 0.0193387344 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274423 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/VfZuXd1.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/943959879361281633/780B963F4F774A497E33388A89027A83EF0AD8E3/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Ancient. Cave. Yoth. + GMNotes: '' + GUID: 2c8131 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Hall of Heresy + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 13.6582432 + posY: 1.34445572 + posZ: 61.3539352 + rotX: 359.982635 + rotY: 0.0100833056 + rotZ: 0.0200124029 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274424 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/VfZuXd1.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/943959879361281633/780B963F4F774A497E33388A89027A83EF0AD8E3/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Ancient. Cave. Yoth. + GMNotes: '' + GUID: 1cc0b2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Crumbling Precipice + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 13.6552849 + posY: 1.52258515 + posZ: 59.1888466 + rotX: 1.1782757 + rotY: 0.04519955 + rotZ: 0.0222965367 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274428 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/VfZuXd1.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/943959879361281633/780B963F4F774A497E33388A89027A83EF0AD8E3/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Ancient. Cave. Yoth. + GMNotes: '' + GUID: a0bede + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Broken Passage + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 13.6566563 + posY: 1.44841921 + posZ: 57.0316925 + rotX: 3.85028315 + rotY: 359.970764 + rotZ: 0.0177362133 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274429 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/VfZuXd1.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/943959879361281633/780B963F4F774A497E33388A89027A83EF0AD8E3/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Ancient. Cave. Yoth. + GMNotes: '' + GUID: f639f9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Abandoned Site + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 13.6574841 + posY: 1.34251881 + posZ: 54.85804 + rotX: 359.974976 + rotY: 359.9324 + rotZ: 0.0219990369 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274430 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/VfZuXd1.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/943959879361281633/780B963F4F774A497E33388A89027A83EF0AD8E3/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Ancient. Cave. Yoth. + GMNotes: '' + GUID: 9b12cf + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Bright Canyon + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 13.6586485 + posY: 1.447068 + posZ: 52.6925354 + rotX: 356.12915 + rotY: 359.962769 + rotZ: 0.0306123272 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274426 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/VfZuXd1.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/943959879361281633/780B963F4F774A497E33388A89027A83EF0AD8E3/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Ancient. Cave. Yoth. + GMNotes: '' + GUID: ef24b4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Forked Path + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 13.6566954 + posY: 1.34068835 + posZ: 48.3823166 + rotX: 0.0190358441 + rotY: 269.9751 + rotZ: 0.0234521925 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274427 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/VfZuXd1.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/943959879361281633/780B963F4F774A497E33388A89027A83EF0AD8E3/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Ancient. Cave. Yoth. + GMNotes: '' + GUID: 2d59e1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Bridge over N'kai + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 13.6488037 + posY: 1.34006739 + posZ: 46.214817 + rotX: 0.0208055414 + rotY: 270.000031 + rotZ: 0.01677201 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2744': + BackIsHidden: true + BackURL: https://i.imgur.com/VfZuXd1.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/943959879361281633/780B963F4F774A497E33388A89027A83EF0AD8E3/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 274425 +- 274422 +- 274423 +- 274424 +- 274428 +- 274429 +- 274430 +- 274426 +- 274427 +Description: The City of Archives +GMNotes: '' +GUID: feb7ac +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Locations +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -12.9246683 + posY: 1.66080046 + posZ: 11.7983685 + rotX: 359.9201 + rotY: 269.999969 + rotZ: 0.0168691445 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 8 Shattered Aeons 737c5d.ttslua b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 8 Shattered Aeons 737c5d.ttslua new file mode 100644 index 000000000..46067f58e --- /dev/null +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 8 Shattered Aeons 737c5d.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.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.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 Forgotten Age 0ff458/Custom_Model_Bag 8 Shattered Aeons 737c5d.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 8 Shattered Aeons 737c5d.yaml new file mode 100644 index 000000000..521f338f0 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 8 Shattered Aeons 737c5d.yaml @@ -0,0 +1,68 @@ +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 8 Shattered Aeons 737c5d/Card Nexus of N''kai 594b02.yaml' +- !include 'Custom_Model_Bag 8 Shattered Aeons 737c5d/Deck Exploration Deck 8eca57.yaml' +- !include 'Custom_Model_Bag 8 Shattered Aeons 737c5d/Deck Agenda Deck 8dd6ee.yaml' +- !include 'Custom_Model_Bag 8 Shattered Aeons 737c5d/Bag Encounter setup 32b13c.yaml' +- !include 'Custom_Model_Bag 8 Shattered Aeons 737c5d/Custom_Model_Bag Set-aside a45247.yaml' +- !include 'Custom_Model_Bag 8 Shattered Aeons 737c5d/Card Scenario 9c631d.yaml' +- !include 'Custom_Model_Bag 8 Shattered Aeons 737c5d/Deck Act Deck 459d60.yaml' +- !include 'Custom_Model_Bag 8 Shattered Aeons 737c5d/Custom_Tile Shattered Aeons + 6dc72a.yaml' +CustomMesh: + CastShadows: true + ColliderURL: '' + Convex: true + DiffuseURL: http://cloud-3.steamusercontent.com/ugc/829135118403843449/90C950E8240AA2D78D24505833CB75D9F382B5FD/ + MaterialIndex: 3 + MeshURL: https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj + NormalURL: '' + TypeIndex: 6 +Description: The Forgotten Age +GMNotes: '' +GUID: 737c5d +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Model_Bag 8 Shattered Aeons 737c5d.ttslua' +LuaScriptState: '{"ml":{"32b13c":{"lock":false,"pos":{"x":-3.922,"y":1.4036,"z":5.7517},"rot":{"x":359.9197,"y":270.0125,"z":0.0168}},"459d60":{"lock":false,"pos":{"x":-2.6885,"y":1.6535,"z":-5.0485},"rot":{"x":0.0168,"y":180.0198,"z":0.0803}},"594b02":{"lock":false,"pos":{"x":-17.1177,"y":1.6771,"z":-0.0277},"rot":{"x":359.9201,"y":270.0425,"z":0.0168}},"6dc72a":{"lock":false,"pos":{"x":-3.8603,"y":1.5825,"z":-14.7527},"rot":{"x":359.9197,"y":270.0045,"z":0.0168}},"8dd6ee":{"lock":false,"pos":{"x":-2.7247,"y":1.6566,"z":0.3733},"rot":{"x":0.0168,"y":179.9981,"z":0.0803}},"8eca57":{"lock":false,"pos":{"x":-13.0966,"y":1.6849,"z":7.4101},"rot":{"x":359.9201,"y":270,"z":180.0169}},"9c631d":{"lock":false,"pos":{"x":-3.956,"y":1.6556,"z":-10.4412},"rot":{"x":359.9197,"y":270,"z":0.0168}},"a45247":{"lock":false,"pos":{"x":1.6939,"y":1.5583,"z":14.2736},"rot":{"x":359.9551,"y":224.9988,"z":0.0687}}}}' +MaterialIndex: -1 +MeshIndex: -1 +Name: Custom_Model_Bag +Nickname: '8: Shattered Aeons' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 12.2495995 + posY: 1.45618331 + posZ: -28.0136547 + rotX: 359.920135 + rotY: 270.002533 + rotZ: 0.01686981 + scaleX: 2.21 + scaleY: 0.46 + scaleZ: 2.42 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 8 Shattered Aeons 737c5d/Bag Encounter setup 32b13c.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 8 Shattered Aeons 737c5d/Bag Encounter setup 32b13c.yaml new file mode 100644 index 000000000..6302cf0b6 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 8 Shattered Aeons 737c5d/Bag Encounter setup 32b13c.yaml @@ -0,0 +1,38 @@ +Autoraise: true +ColorDiffuse: + b: 0.0 + g: 0.0 + r: 0.0 +ContainedObjects: +- !include 'Bag Encounter setup 32b13c/Deck Encounter Deck 50d5fa.yaml' +- !include 'Bag Encounter setup 32b13c/Deck Agents of Yig 3d09ca.yaml' +- !include 'Bag Encounter setup 32b13c/Deck Dark Cult cdef57.yaml' +Description: Shattered Aeons +GMNotes: '' +GUID: 32b13c +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +MeshIndex: -1 +Name: Bag +Nickname: Encounter setup +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.92199969 + posY: 1.40361142 + posZ: 5.7517 + rotX: 359.919678 + rotY: 270.012451 + rotZ: 0.016837256 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 8 Shattered Aeons 737c5d/Bag Encounter setup 32b13c/Deck Agents of Yig 3d09ca.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 8 Shattered Aeons 737c5d/Bag Encounter setup 32b13c/Deck Agents of Yig 3d09ca.yaml new file mode 100644 index 000000000..2910024e6 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 8 Shattered Aeons 737c5d/Bag Encounter setup 32b13c/Deck Agents of Yig 3d09ca.yaml @@ -0,0 +1,301 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 12312 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Humanoid. Monster. Serpent. + GMNotes: '' + GUID: 5ef7c7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Brood of Yig + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 21.1297264 + posY: 1.67001271 + posZ: -5.226075 + rotX: 359.9207 + rotY: 269.974243 + rotZ: 180.0188 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12313 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Humanoid. Monster. Serpent. + GMNotes: '' + GUID: 906ef2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Serpent from Yoth + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 25.68037 + posY: 1.51731741 + posZ: -9.940582 + rotX: 359.920135 + rotY: 270.000244 + rotZ: 180.016876 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12314 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Curse. + GMNotes: '' + GUID: 866eba + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Curse of Yig + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 21.5109253 + posY: 1.52333367 + posZ: -9.248998 + rotX: 359.920135 + rotY: 270.000244 + rotZ: 180.016876 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12314 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Curse. + GMNotes: '' + GUID: 5b28aa + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Curse of Yig + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 25.108654 + posY: 1.51899815 + posZ: -6.9797163 + rotX: 359.921356 + rotY: 269.997528 + rotZ: 180.019638 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12312 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Humanoid. Monster. Serpent. + GMNotes: '' + GUID: 61dec3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Brood of Yig + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 25.98268 + posY: 1.59294879 + posZ: -4.865534 + rotX: 359.919 + rotY: 270.011475 + rotZ: 176.041733 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12312 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Humanoid. Monster. Serpent. + GMNotes: '' + GUID: 7a7539 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Brood of Yig + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 26.2606525 + posY: 1.51881242 + posZ: -2.1165204 + rotX: 359.920135 + rotY: 269.994354 + rotZ: 180.016891 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '123': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 12312 +- 12313 +- 12314 +- 12314 +- 12312 +- 12312 +Description: '' +GMNotes: '' +GUID: 3d09ca +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Agents of Yig +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 23.0496387 + posY: 3.50760722 + posZ: -0.965381265 + rotX: 359.920074 + rotY: 270.008484 + rotZ: 180.016617 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 8 Shattered Aeons 737c5d/Bag Encounter setup 32b13c/Deck Dark Cult cdef57.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 8 Shattered Aeons 737c5d/Bag Encounter setup 32b13c/Deck Dark Cult cdef57.yaml new file mode 100644 index 000000000..d0727293e --- /dev/null +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 8 Shattered Aeons 737c5d/Bag Encounter setup 32b13c/Deck Dark Cult cdef57.yaml @@ -0,0 +1,301 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 3625 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: 6f5b7b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Mysterious Chanting + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 12.5142145 + posY: 1.53647661 + posZ: 2.36558628 + rotX: 359.920258 + rotY: 270.0 + rotZ: 0.01683283 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3625 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: df668b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Mysterious Chanting + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 12.514267 + posY: 1.53583336 + posZ: 0.206504539 + rotX: 359.919952 + rotY: 270.001862 + rotZ: 0.0169177242 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3624 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Cultist. + GMNotes: '' + GUID: 159f90 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Wizard of the Order + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 12.5142221 + posY: 1.53520167 + posZ: -1.95260739 + rotX: 359.920135 + rotY: 270.001923 + rotZ: 0.0168681741 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3623 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Cultist. + GMNotes: '' + GUID: c70e63 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Acolyte + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 12.5143232 + posY: 1.53456581 + posZ: -4.1117816 + rotX: 359.920135 + rotY: 270.0015 + rotZ: 0.0168712121 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3623 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Cultist. + GMNotes: '' + GUID: 4072d7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Acolyte + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 12.5142813 + posY: 1.53393018 + posZ: -6.27092171 + rotX: 359.920135 + rotY: 270.0031 + rotZ: 0.016867768 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3623 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Cultist. + GMNotes: '' + GUID: 9f0f8b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Acolyte + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 12.5141277 + posY: 1.53329456 + posZ: -8.430151 + rotX: 359.920135 + rotY: 270.0003 + rotZ: 0.0168648083 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 3625 +- 3625 +- 3624 +- 3623 +- 3623 +- 3623 +Description: '' +GMNotes: '' +GUID: cdef57 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Dark Cult +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 21.7391338 + posY: 3.510646 + posZ: 3.14941835 + rotX: 359.920135 + rotY: 270.000275 + rotZ: 180.016876 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 8 Shattered Aeons 737c5d/Bag Encounter setup 32b13c/Deck Encounter Deck 50d5fa.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 8 Shattered Aeons 737c5d/Bag Encounter setup 32b13c/Deck Encounter Deck 50d5fa.yaml new file mode 100644 index 000000000..d955afeab --- /dev/null +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 8 Shattered Aeons 737c5d/Bag Encounter setup 32b13c/Deck Encounter Deck 50d5fa.yaml @@ -0,0 +1,1003 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 12319 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Hex. + GMNotes: '' + GUID: b2f948 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: A Tear in Time + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 14.2435417 + posY: 2.05554557 + posZ: 6.656936 + rotX: 359.9691 + rotY: 270.049072 + rotZ: 8.936655 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3620 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: e0f4c0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ancient Evils + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 14.2427759 + posY: 1.98545742 + posZ: 5.70839167 + rotX: 359.9694 + rotY: 270.0482 + rotZ: 8.997805 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12319 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Hex. + GMNotes: '' + GUID: 29e1ba + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: A Tear in Time + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 14.2417774 + posY: 1.91550851 + posZ: 4.75896263 + rotX: 359.949066 + rotY: 270.009247 + rotZ: 4.0654 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12320 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Hex. + GMNotes: '' + GUID: 4c388f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Lost in Time + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 14.2422619 + posY: 1.84498954 + posZ: 3.81299376 + rotX: 359.970825 + rotY: 270.0382 + rotZ: 9.42581749 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12320 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Hex. + GMNotes: '' + GUID: 5ae819 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Lost in Time + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 14.2413292 + posY: 1.76763535 + posZ: 2.86446714 + rotX: 359.952026 + rotY: 269.988983 + rotZ: 4.493436 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12324 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Humanoid. Cultist. + GMNotes: '' + GUID: 1f4f54 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Brotherhood Cultist + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 14.2413731 + posY: 1.67174113 + posZ: 0.9559 + rotX: 359.899475 + rotY: 270.028473 + rotZ: 0.2646401 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 260414 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2604': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/4vUPeDS.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: 7d2583 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Creeping Darkness + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 14.2418728 + posY: 1.68498755 + posZ: 1.91136682 + rotX: 359.952576 + rotY: 269.98822 + rotZ: 5.52172232 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12324 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Humanoid. Cultist. + GMNotes: '' + GUID: 62cc1f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Brotherhood Cultist + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 14.2405825 + posY: 1.64787316 + posZ: 0.0042505716 + rotX: 359.938934 + rotY: 269.988342 + rotZ: 6.088321 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12325 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Scheme. + GMNotes: '' + GUID: 04e5d3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Shadowed + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 14.2397566 + posY: 1.60353673 + posZ: -0.943261266 + rotX: 359.910828 + rotY: 270.039978 + rotZ: 3.55279565 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12325 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Scheme. + GMNotes: '' + GUID: 89f4f6 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Shadowed + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 14.24017 + posY: 1.62191141 + posZ: -1.89458287 + rotX: 359.9026 + rotY: 269.992981 + rotZ: 358.224854 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12326 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Hex. + GMNotes: '' + GUID: d6a48e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Words of Power + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 14.2402267 + posY: 1.61922574 + posZ: -2.84155488 + rotX: 359.944427 + rotY: 270.048157 + rotZ: 4.63448143 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12326 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Hex. + GMNotes: '' + GUID: 866eba + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Words of Power + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 14.2403984 + posY: 1.58477628 + posZ: -3.79593635 + rotX: 359.9227 + rotY: 269.991272 + rotZ: 2.78614783 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12319 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Hex. + GMNotes: '' + GUID: 577ace + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: A Tear in Time + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 14.240592 + posY: 1.61333609 + posZ: -4.743002 + rotX: 359.9209 + rotY: 270.043457 + rotZ: 357.550018 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 260410 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2604': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/4vUPeDS.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: false + Description: Monster. Extradimensional. + GMNotes: '' + GUID: 4dfc1c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Temporal Devourer + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 14.2395391 + posY: 1.614984 + posZ: -5.699944 + rotX: 359.9204 + rotY: 270.048126 + rotZ: 0.03486335 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 260410 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2604': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/4vUPeDS.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: false + Description: Monster. Extradimensional. + GMNotes: '' + GUID: cc5c21 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Temporal Devourer + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 14.2399073 + posY: 1.68979609 + posZ: -6.66092443 + rotX: 359.9187 + rotY: 270.0006 + rotZ: 354.7279 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 260412 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2604': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/4vUPeDS.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: 35d4c5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Wracked by Time + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 14.2400169 + posY: 1.7469759 + posZ: -7.619828 + rotX: 359.919617 + rotY: 270.0534 + rotZ: 1.52427816 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 260412 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2604': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/4vUPeDS.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: b9445f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Wracked by Time + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 14.2402077 + posY: 1.79468131 + posZ: -8.582459 + rotX: 359.91864 + rotY: 270.006927 + rotZ: 1.97823858 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 260413 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2604': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/4vUPeDS.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: 46f30b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Shattered Ages + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 14.2400331 + posY: 1.83533144 + posZ: -9.542278 + rotX: 359.919159 + rotY: 270.051453 + rotZ: 1.97817612 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 260413 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2604': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/4vUPeDS.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: 4bb510 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Shattered Ages + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 14.2401762 + posY: 1.86901724 + posZ: -10.5055151 + rotX: 359.9186 + rotY: 270.00708 + rotZ: 2.46186256 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 260414 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2604': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/4vUPeDS.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: bcc344 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Creeping Darkness + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 14.24001 + posY: 1.90125418 + posZ: -11.4660025 + rotX: 359.918671 + rotY: 270.0233 + rotZ: 2.461839 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 260415 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2604': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/4vUPeDS.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: abd75a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Between Worlds + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 14.24038 + posY: 1.93093932 + posZ: -12.4297686 + rotX: 359.92 + rotY: 269.988464 + rotZ: 357.337555 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3620 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: 61e841 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ancient Evils + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 14.2407446 + posY: 2.04679012 + posZ: -13.3797922 + rotX: 359.91925 + rotY: 269.9799 + rotZ: 357.3376 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '123': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + '2604': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/4vUPeDS.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: false + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 12319 +- 3620 +- 12319 +- 12320 +- 12320 +- 12324 +- 260414 +- 12324 +- 12325 +- 12325 +- 12326 +- 12326 +- 12319 +- 260410 +- 260410 +- 260412 +- 260412 +- 260413 +- 260413 +- 260414 +- 260415 +- 3620 +Description: '' +GMNotes: '' +GUID: 50d5fa +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Encounter Deck +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 21.08235 + posY: 3.63484788 + posZ: 6.419316 + rotX: 358.409 + rotY: 269.926727 + rotZ: 183.089615 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 8 Shattered Aeons 737c5d/Card Nexus of N'kai 594b02.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 8 Shattered Aeons 737c5d/Card Nexus of N'kai 594b02.yaml new file mode 100644 index 000000000..1c29b2a47 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 8 Shattered Aeons 737c5d/Card Nexus of N'kai 594b02.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 260102 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2601': + BackIsHidden: true + BackURL: https://i.imgur.com/bQUL7Ev.jpg + FaceURL: https://i.imgur.com/Kw5u56P.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: true +Description: Unravelling the Threads +GMNotes: '' +GUID: 594b02 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Nexus of N'kai +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -17.1177 + posY: 1.67707515 + posZ: -0.0276993271 + rotX: 359.9201 + rotY: 270.04248 + rotZ: 0.0168103017 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 8 Shattered Aeons 737c5d/Card Scenario 9c631d.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 8 Shattered Aeons 737c5d/Card Scenario 9c631d.yaml new file mode 100644 index 000000000..48031490e --- /dev/null +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 8 Shattered Aeons 737c5d/Card Scenario 9c631d.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 260101 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2601': + BackIsHidden: true + BackURL: https://i.imgur.com/bQUL7Ev.jpg + FaceURL: https://i.imgur.com/Kw5u56P.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: true +Description: Shattered Aeons +GMNotes: '' +GUID: 9c631d +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Scenario +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.956001 + posY: 1.65564811 + posZ: -10.4412031 + rotX: 359.919739 + rotY: 270.0 + rotZ: 0.01683267 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 8 Shattered Aeons 737c5d/Custom_Model_Bag Set-aside a45247.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 8 Shattered Aeons 737c5d/Custom_Model_Bag Set-aside a45247.yaml new file mode 100644 index 000000000..953a731c0 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 8 Shattered Aeons 737c5d/Custom_Model_Bag Set-aside a45247.yaml @@ -0,0 +1,62 @@ +Autoraise: true +ColorDiffuse: + b: 0.02148666 + g: 0.00100758043 + r: 0.02148666 +ContainedObjects: +- !include 'Custom_Model_Bag Set-aside a45247/Deck Act Deck bc2f1f.yaml' +- !include 'Custom_Model_Bag Set-aside a45247/Card A Pocket in Time bbfc9c.yaml' +- !include 'Custom_Model_Bag Set-aside a45247/Deck Locations b74ed7.yaml' +- !include 'Custom_Model_Bag Set-aside a45247/Card Relic of Ages 3ff610.yaml' +- !include 'Custom_Model_Bag Set-aside a45247/Card Formless Spawn eeff54.yaml' +- !include 'Custom_Model_Bag Set-aside a45247/Card Ichtaca 7727b0.yaml' +- !include 'Custom_Model_Bag Set-aside a45247/Card Alejandro Vela 7f1430.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: Shattered Aeons +GMNotes: '' +GUID: a45247 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +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.69390106 + posY: 1.55831885 + posZ: 14.2736 + rotX: 359.955139 + rotY: 224.99881 + rotZ: 0.0686836839 + scaleX: 2.0 + scaleY: 2.0 + scaleZ: 2.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 8 Shattered Aeons 737c5d/Custom_Model_Bag Set-aside a45247/Card A Pocket in Time bbfc9c.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 8 Shattered Aeons 737c5d/Custom_Model_Bag Set-aside a45247/Card A Pocket in Time bbfc9c.yaml new file mode 100644 index 000000000..0f0cf7c7b --- /dev/null +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 8 Shattered Aeons 737c5d/Custom_Model_Bag Set-aside a45247/Card A Pocket in Time bbfc9c.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 260409 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2604': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/4vUPeDS.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: bbfc9c +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: A Pocket in Time +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 13.3874683 + posY: 3.49190235 + posZ: -10.5786972 + rotX: 359.920135 + rotY: 269.999939 + rotZ: 0.0168709084 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 8 Shattered Aeons 737c5d/Custom_Model_Bag Set-aside a45247/Card Alejandro Vela 7f1430.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 8 Shattered Aeons 737c5d/Custom_Model_Bag Set-aside a45247/Card Alejandro Vela 7f1430.yaml new file mode 100644 index 000000000..f5963e5a3 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 8 Shattered Aeons 737c5d/Custom_Model_Bag Set-aside a45247/Card Alejandro Vela 7f1430.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 260104 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2601': + BackIsHidden: true + BackURL: https://i.imgur.com/bQUL7Ev.jpg + FaceURL: https://i.imgur.com/Kw5u56P.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: true +Description: Or, Is HE? +GMNotes: '' +GUID: 7f1430 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Alejandro Vela +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 15.3576937 + posY: 3.48457336 + posZ: -4.42710829 + rotX: 359.920135 + rotY: 270.000183 + rotZ: 0.0168734454 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 8 Shattered Aeons 737c5d/Custom_Model_Bag Set-aside a45247/Card Formless Spawn eeff54.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 8 Shattered Aeons 737c5d/Custom_Model_Bag Set-aside a45247/Card Formless Spawn eeff54.yaml new file mode 100644 index 000000000..59190f9b0 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 8 Shattered Aeons 737c5d/Custom_Model_Bag Set-aside a45247/Card Formless Spawn eeff54.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 260411 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2604': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/4vUPeDS.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: false +Description: From the Abyss +GMNotes: '' +GUID: eeff54 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Formless Spawn +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 14.5826454 + posY: 3.580844 + posZ: -8.739596 + rotX: 359.919739 + rotY: 269.999756 + rotZ: 0.0175482612 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 8 Shattered Aeons 737c5d/Custom_Model_Bag Set-aside a45247/Card Ichtaca 7727b0.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 8 Shattered Aeons 737c5d/Custom_Model_Bag Set-aside a45247/Card Ichtaca 7727b0.yaml new file mode 100644 index 000000000..e258064ba --- /dev/null +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 8 Shattered Aeons 737c5d/Custom_Model_Bag Set-aside a45247/Card Ichtaca 7727b0.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 260103 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2601': + BackIsHidden: true + BackURL: https://i.imgur.com/bQUL7Ev.jpg + FaceURL: https://i.imgur.com/Kw5u56P.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: true +Description: Scion of Yig +GMNotes: '' +GUID: 7727b0 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Ichtaca +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 15.6777477 + posY: 3.485201 + posZ: -0.778587759 + rotX: 359.920135 + rotY: 269.999878 + rotZ: 0.0168651938 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 8 Shattered Aeons 737c5d/Custom_Model_Bag Set-aside a45247/Card Relic of Ages 3ff610.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 8 Shattered Aeons 737c5d/Custom_Model_Bag Set-aside a45247/Card Relic of Ages 3ff610.yaml new file mode 100644 index 000000000..4349aae43 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 8 Shattered Aeons 737c5d/Custom_Model_Bag Set-aside a45247/Card Relic of Ages 3ff610.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 265400 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2654': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: https://i.imgur.com/mtzND71.jpg + NumHeight: 2 + NumWidth: 2 + UniqueBack: false +Description: Unleash the Timestream +GMNotes: '' +GUID: 3ff610 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Relic of Ages +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.66615 + posY: 2.591367 + posZ: -21.8968563 + rotX: 0.0 + rotY: 270.0 + rotZ: 12.6888008 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 8 Shattered Aeons 737c5d/Custom_Model_Bag Set-aside a45247/Deck Act Deck bc2f1f.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 8 Shattered Aeons 737c5d/Custom_Model_Bag Set-aside a45247/Deck Act Deck bc2f1f.yaml new file mode 100644 index 000000000..fffa315a5 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 8 Shattered Aeons 737c5d/Custom_Model_Bag Set-aside a45247/Deck Act Deck bc2f1f.yaml @@ -0,0 +1,129 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 265314 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2653': + BackIsHidden: true + BackURL: https://i.imgur.com/bQUL7Ev.jpg + FaceURL: https://i.imgur.com/Kw5u56P.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: true + Description: Act 4 + GMNotes: '' + GUID: 89f177 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Timelock + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.8913364 + posY: 1.52813411 + posZ: -5.13127851 + rotX: 0.0157396868 + rotY: 180.000519 + rotZ: 0.07944975 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265315 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2653': + BackIsHidden: true + BackURL: https://i.imgur.com/bQUL7Ev.jpg + FaceURL: https://i.imgur.com/Kw5u56P.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: true + Description: Act 4 + GMNotes: '' + GUID: 7f2934 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Paradise Lost + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.9254036 + posY: 1.668675 + posZ: -5.17471838 + rotX: 0.007634804 + rotY: 179.998672 + rotZ: 0.08231339 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2653': + BackIsHidden: true + BackURL: https://i.imgur.com/bQUL7Ev.jpg + FaceURL: https://i.imgur.com/Kw5u56P.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 265314 +- 265315 +Description: Shattered Aeons +GMNotes: '' +GUID: bc2f1f +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Act Deck +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 11.3475809 + posY: 2.30646563 + posZ: 25.83137 + rotX: 0.01703713 + rotY: 180.000671 + rotZ: 0.0804636851 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 8 Shattered Aeons 737c5d/Custom_Model_Bag Set-aside a45247/Deck Locations b74ed7.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 8 Shattered Aeons 737c5d/Custom_Model_Bag Set-aside a45247/Deck Locations b74ed7.yaml new file mode 100644 index 000000000..4a0cd556d --- /dev/null +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 8 Shattered Aeons 737c5d/Custom_Model_Bag Set-aside a45247/Deck Locations b74ed7.yaml @@ -0,0 +1,301 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 260403 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2604': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/4vUPeDS.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: false + Description: Shattered. Ancient. + GMNotes: '' + GUID: d6d845 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ruins of New York + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 21.5857773 + posY: 1.669701 + posZ: -4.55569553 + rotX: 359.9226 + rotY: 269.9737 + rotZ: 179.974045 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 260404 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2604': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/4vUPeDS.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: false + Description: Shattered. Ancient. + GMNotes: '' + GUID: 3b6d9c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Pnakotus + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 21.6347485 + posY: 1.66690481 + posZ: -4.727943 + rotX: 359.916962 + rotY: 269.996338 + rotZ: 180.0202 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 260401 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2604': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/4vUPeDS.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: false + Description: Shattered. Ancient. + GMNotes: '' + GUID: '353475' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Valusia + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 21.0797234 + posY: 1.66187584 + posZ: -7.739165 + rotX: 359.922882 + rotY: 270.000122 + rotZ: 0.013106918 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 260405 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2604': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/4vUPeDS.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: false + Description: Shattered. Present-Day. + GMNotes: '' + GUID: 512f93 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Plateau of Leng + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 21.5697346 + posY: 1.68156517 + posZ: -8.452749 + rotX: 359.918854 + rotY: 269.999847 + rotZ: 180.018677 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 260406 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2604': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/4vUPeDS.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: false + Description: Shattered. Ancient. + GMNotes: '' + GUID: 555dff + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Mu + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 21.5912437 + posY: 1.6637224 + posZ: -8.836566 + rotX: 359.9248 + rotY: 270.007874 + rotZ: 180.0313 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 260408 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2604': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/4vUPeDS.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: false + Description: Shattered. Ancient. + GMNotes: '' + GUID: 7e6245 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Atlantis + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 21.5867252 + posY: 1.52339029 + posZ: -8.528642 + rotX: 359.917145 + rotY: 269.992218 + rotZ: 180.023727 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2604': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/4vUPeDS.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 260403 +- 260404 +- 260401 +- 260405 +- 260406 +- 260408 +Description: Shattered Aeons +GMNotes: '' +GUID: b74ed7 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Locations +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 18.32502 + posY: 3.48508048 + posZ: -13.3060989 + rotX: 359.920135 + rotY: 269.9999 + rotZ: 0.0168680064 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 8 Shattered Aeons 737c5d/Custom_Tile Shattered Aeons 6dc72a.ttslua b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 8 Shattered Aeons 737c5d/Custom_Tile Shattered Aeons 6dc72a.ttslua new file mode 100644 index 000000000..b78ce3eb4 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 8 Shattered Aeons 737c5d/Custom_Tile Shattered Aeons 6dc72a.ttslua @@ -0,0 +1,21 @@ +name = 'Shattered Aeons' + +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 Forgotten Age 0ff458/Custom_Model_Bag 8 Shattered Aeons 737c5d/Custom_Tile Shattered Aeons 6dc72a.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 8 Shattered Aeons 737c5d/Custom_Tile Shattered Aeons 6dc72a.yaml new file mode 100644 index 000000000..a28492892 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 8 Shattered Aeons 737c5d/Custom_Tile Shattered Aeons 6dc72a.yaml @@ -0,0 +1,42 @@ +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 +GMNotes: '' +GUID: 6dc72a +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Tile Shattered Aeons 6dc72a.ttslua' +LuaScriptState: '' +Name: Custom_Tile +Nickname: Shattered Aeons +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.8603 + posY: 1.58253384 + posZ: -14.7527018 + rotX: 359.919739 + rotY: 270.004456 + rotZ: 0.016829202 + scaleX: 2.2 + scaleY: 1.0 + scaleZ: 2.2 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 8 Shattered Aeons 737c5d/Deck Act Deck 459d60.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 8 Shattered Aeons 737c5d/Deck Act Deck 459d60.yaml new file mode 100644 index 000000000..b524f7c75 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 8 Shattered Aeons 737c5d/Deck Act Deck 459d60.yaml @@ -0,0 +1,215 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 265316 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2653': + BackIsHidden: true + BackURL: https://i.imgur.com/bQUL7Ev.jpg + FaceURL: https://i.imgur.com/Kw5u56P.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: true + Description: Act 4 + GMNotes: '' + GUID: ebb16e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Mend the Shatter + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 10.16151 + posY: 1.54476941 + posZ: 19.3643551 + rotX: 0.01597352 + rotY: 179.998734 + rotZ: 0.08117862 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265313 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2653': + BackIsHidden: true + BackURL: https://i.imgur.com/bQUL7Ev.jpg + FaceURL: https://i.imgur.com/Kw5u56P.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: true + Description: Act 3 + GMNotes: '' + GUID: 716efa + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Ythian Relic + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 10.6716547 + posY: 1.57854986 + posZ: 19.3256378 + rotX: 359.864868 + rotY: 179.983032 + rotZ: 0.9585274 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265311 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2653': + BackIsHidden: true + BackURL: https://i.imgur.com/bQUL7Ev.jpg + FaceURL: https://i.imgur.com/Kw5u56P.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: true + Description: Act 2 + GMNotes: '' + GUID: b0369d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Search for the Brotherhood + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.2523918 + posY: 1.5361371 + posZ: 19.3147926 + rotX: 0.0114282435 + rotY: 179.999664 + rotZ: 0.0785257742 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265309 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2653': + BackIsHidden: true + BackURL: https://i.imgur.com/bQUL7Ev.jpg + FaceURL: https://i.imgur.com/Kw5u56P.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: true + Description: Act 1 + GMNotes: '' + GUID: 7f17c8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Worlds Beyond + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.56236 + posY: 1.67597449 + posZ: 19.441433 + rotX: 0.01433581 + rotY: 180.0007 + rotZ: 0.11103677 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2653': + BackIsHidden: true + BackURL: https://i.imgur.com/bQUL7Ev.jpg + FaceURL: https://i.imgur.com/Kw5u56P.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 265316 +- 265313 +- 265311 +- 265309 +Description: Shattered Aeons +GMNotes: '' +GUID: 459d60 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Act Deck +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.6885 + posY: 1.65349448 + posZ: -5.048502 + rotX: 0.0168093871 + rotY: 180.019821 + rotZ: 0.08026675 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 8 Shattered Aeons 737c5d/Deck Agenda Deck 8dd6ee.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 8 Shattered Aeons 737c5d/Deck Agenda Deck 8dd6ee.yaml new file mode 100644 index 000000000..e1039cf08 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 8 Shattered Aeons 737c5d/Deck Agenda Deck 8dd6ee.yaml @@ -0,0 +1,172 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 265307 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2653': + BackIsHidden: true + BackURL: https://i.imgur.com/bQUL7Ev.jpg + FaceURL: https://i.imgur.com/Kw5u56P.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: true + Description: Agenda 3 + GMNotes: '' + GUID: 6bc8a2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Snapped Threads + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 13.3056755 + posY: 1.54107141 + posZ: 23.20903 + rotX: -0.004078572 + rotY: 179.999908 + rotZ: 0.0729383156 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265306 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2653': + BackIsHidden: true + BackURL: https://i.imgur.com/bQUL7Ev.jpg + FaceURL: https://i.imgur.com/Kw5u56P.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: true + Description: Agenda 2 + GMNotes: '' + GUID: b22648 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Pendulous Threads + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.29512 + posY: 1.53712261 + posZ: 23.057375 + rotX: 0.008808389 + rotY: 179.999878 + rotZ: 0.07757143 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265305 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2653': + BackIsHidden: true + BackURL: https://i.imgur.com/bQUL7Ev.jpg + FaceURL: https://i.imgur.com/Kw5u56P.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: true + Description: Agenda 1 + GMNotes: '' + GUID: 49a6b7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Threads of Time + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.7109718 + posY: 1.67669749 + posZ: 22.8521957 + rotX: 0.0207414 + rotY: 180.0005 + rotZ: 0.09330256 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2653': + BackIsHidden: true + BackURL: https://i.imgur.com/bQUL7Ev.jpg + FaceURL: https://i.imgur.com/Kw5u56P.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 265307 +- 265306 +- 265305 +Description: Shattered Aeons +GMNotes: '' +GUID: 8dd6ee +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Agenda Deck +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.72470021 + posY: 1.656641 + posZ: 0.373299628 + rotX: 0.01684012 + rotY: 179.998138 + rotZ: 0.08026117 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 8 Shattered Aeons 737c5d/Deck Exploration Deck 8eca57.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 8 Shattered Aeons 737c5d/Deck Exploration Deck 8eca57.yaml new file mode 100644 index 000000000..d21dd4e06 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 8 Shattered Aeons 737c5d/Deck Exploration Deck 8eca57.yaml @@ -0,0 +1,308 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 260415 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2604': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/4vUPeDS.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: fbb723 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Between Worlds + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 17.00073 + posY: 1.68112183 + posZ: 12.4789543 + rotX: 359.917419 + rotY: 269.963226 + rotZ: 180.04361 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3620 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: 1921c5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ancient Evils + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 14.138133 + posY: 1.53545058 + posZ: 6.5808444 + rotX: 359.9201 + rotY: 270.03598 + rotZ: 0.0168170333 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 260402 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2604': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/4vUPeDS.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: false + Description: Otherworld. + GMNotes: '' + GUID: 623fb1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: "Shores of R\u2019lyeh" + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 14.2602177 + posY: 1.536085 + posZ: 9.31301 + rotX: 359.920135 + rotY: 269.999664 + rotZ: 0.01687562 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 260412 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2604': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/4vUPeDS.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: b9445f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Wracked by Time + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 17.880022 + posY: 1.5300436 + posZ: 5.934117 + rotX: 359.9201 + rotY: 269.99942 + rotZ: 0.0168677736 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 260400 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2604': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/4vUPeDS.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: false + Description: Otherworld. + GMNotes: '' + GUID: 5db6b7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Yuggoth + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 14.254365 + posY: 1.53437984 + posZ: 3.49465466 + rotX: 359.920135 + rotY: 269.999817 + rotZ: 0.0168673974 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 260407 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2604': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/4vUPeDS.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: false + Description: Otherworld. + GMNotes: '' + GUID: 59695a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: City of the Unseen + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 17.0563126 + posY: 1.67809594 + posZ: 12.4299488 + rotX: 359.9368 + rotY: 270.002563 + rotZ: 0.0168719329 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2604': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/4vUPeDS.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: false + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 260415 +- 3620 +- 260402 +- 260412 +- 260400 +- 260407 +Description: Shattered Aeons +GMNotes: '' +GUID: 8eca57 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Exploration Deck +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -13.0965815 + posY: 1.68485963 + posZ: 7.410071 + rotX: 359.9201 + rotY: 270.000031 + rotZ: 180.016876 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 9 Secret Scenario c52079.ttslua b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 9 Secret Scenario c52079.ttslua new file mode 100644 index 000000000..46067f58e --- /dev/null +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 9 Secret Scenario c52079.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.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.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 Forgotten Age 0ff458/Custom_Model_Bag 9 Secret Scenario c52079.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 9 Secret Scenario c52079.yaml new file mode 100644 index 000000000..0c7b94cac --- /dev/null +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 9 Secret Scenario c52079.yaml @@ -0,0 +1,70 @@ +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 9 Secret Scenario c52079/Card Visual Exploration Reference + cf966e.yaml' +- !include 'Custom_Model_Bag 9 Secret Scenario c52079/Card Entryway e5f222.yaml' +- !include 'Custom_Model_Bag 9 Secret Scenario c52079/Deck Exploration Deck 6811b1.yaml' +- !include 'Custom_Model_Bag 9 Secret Scenario c52079/Deck Encounter Deck 7ea307.yaml' +- !include 'Custom_Model_Bag 9 Secret Scenario c52079/Custom_Model_Bag Set-aside a45247.yaml' +- !include 'Custom_Model_Bag 9 Secret Scenario c52079/Deck Act Deck 39c8c7.yaml' +- !include 'Custom_Model_Bag 9 Secret Scenario c52079/Deck Agenda Deck a1b7d3.yaml' +- !include 'Custom_Model_Bag 9 Secret Scenario c52079/Custom_Tile Shattered Aeons + c286ca.yaml' +- !include 'Custom_Model_Bag 9 Secret Scenario c52079/Card Scenario ac5f51.yaml' +CustomMesh: + CastShadows: true + ColliderURL: '' + Convex: true + DiffuseURL: http://cloud-3.steamusercontent.com/ugc/829135118403843449/90C950E8240AA2D78D24505833CB75D9F382B5FD/ + MaterialIndex: 3 + MeshURL: https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj + NormalURL: '' + TypeIndex: 6 +Description: The Forgotten Age +GMNotes: '' +GUID: c52079 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Model_Bag 9 Secret Scenario c52079.ttslua' +LuaScriptState: '{"ml":{"39c8c7":{"lock":false,"pos":{"x":-2.6885,"y":1.655,"z":-5.0485},"rot":{"x":0.0168,"y":179.9932,"z":0.0803}},"6811b1":{"lock":false,"pos":{"x":-12.8423,"y":1.6781,"z":7.602},"rot":{"x":359.9201,"y":270.0317,"z":180.0168}},"7ea307":{"lock":false,"pos":{"x":-3.9277,"y":1.7664,"z":5.7571},"rot":{"x":359.9197,"y":269.9897,"z":180.0169}},"a1b7d3":{"lock":false,"pos":{"x":-2.7247,"y":1.664,"z":0.3733},"rot":{"x":0.0168,"y":179.9988,"z":0.0803}},"a45247":{"lock":false,"pos":{"x":1.6855,"y":1.5583,"z":14.2799},"rot":{"x":359.9551,"y":224.9958,"z":0.0687}},"ac5f51":{"lock":false,"pos":{"x":-3.9559,"y":1.6556,"z":-10.4366},"rot":{"x":359.9197,"y":270.0039,"z":0.0168}},"c286ca":{"lock":false,"pos":{"x":-3.8394,"y":1.5825,"z":-14.9056},"rot":{"x":359.9197,"y":270.0045,"z":0.0168}},"cf966e":{"lock":false,"pos":{"x":-12.8747,"y":1.6695,"z":-15.3625},"rot":{"x":359.9201,"y":269.9698,"z":180.0169}},"e5f222":{"lock":false,"pos":{"x":-17.12,"y":1.6771,"z":-0.03},"rot":{"x":359.9201,"y":269.9998,"z":0.0169}}}}' +MaterialIndex: -1 +MeshIndex: -1 +Name: Custom_Model_Bag +Nickname: '9: Secret Scenario' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 12.2504215 + posY: 1.45382607 + posZ: -36.0138321 + rotX: 359.920135 + rotY: 270.004639 + rotZ: 0.0168642625 + scaleX: 2.21 + scaleY: 0.46 + scaleZ: 2.42 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 9 Secret Scenario c52079/Card Entryway e5f222.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 9 Secret Scenario c52079/Card Entryway e5f222.yaml new file mode 100644 index 000000000..c74cf26ad --- /dev/null +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 9 Secret Scenario c52079/Card Entryway e5f222.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 12259 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '122': + BackIsHidden: true + BackURL: https://i.imgur.com/RpzEfmS.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393194495/027101CA5C626EBA0E4F76F3F15569329F81DE3C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: "Ancient. Ruins.\r\n" +GMNotes: '' +GUID: e5f222 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Entryway +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -17.12 + posY: 1.67707777 + posZ: -0.0299998764 + rotX: 359.9201 + rotY: 269.9998 + rotZ: 0.0168690551 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 9 Secret Scenario c52079/Card Scenario ac5f51.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 9 Secret Scenario c52079/Card Scenario ac5f51.yaml new file mode 100644 index 000000000..59ff6d095 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 9 Secret Scenario c52079/Card Scenario ac5f51.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 260100 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2601': + BackIsHidden: true + BackURL: https://i.imgur.com/bQUL7Ev.jpg + FaceURL: https://i.imgur.com/Kw5u56P.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: true +Description: Turn Back Time +GMNotes: '' +GUID: ac5f51 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Scenario +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.95590043 + posY: 1.6556493 + posZ: -10.4366016 + rotX: 359.919739 + rotY: 270.0039 + rotZ: 0.0168289244 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 9 Secret Scenario c52079/Card Visual Exploration Reference cf966e.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 9 Secret Scenario c52079/Card Visual Exploration Reference cf966e.yaml new file mode 100644 index 000000000..7cbfb736f --- /dev/null +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 9 Secret Scenario c52079/Card Visual Exploration Reference cf966e.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 265801 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2658': + BackIsHidden: false + BackURL: https://i.imgur.com/3x23Tmh.jpg + FaceURL: https://i.imgur.com/3x23Tmh.jpg + NumHeight: 2 + NumWidth: 2 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: cf966e +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Visual Exploration Reference +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -12.8747454 + posY: 1.66946614 + posZ: -15.3625059 + rotX: 359.9201 + rotY: 269.9698 + rotZ: 180.016922 + scaleX: 2.0 + scaleY: 1.0 + scaleZ: 2.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 9 Secret Scenario c52079/Custom_Model_Bag Set-aside a45247.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 9 Secret Scenario c52079/Custom_Model_Bag Set-aside a45247.yaml new file mode 100644 index 000000000..4f3fd35f6 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 9 Secret Scenario c52079/Custom_Model_Bag Set-aside a45247.yaml @@ -0,0 +1,58 @@ +Autoraise: true +ColorDiffuse: + b: 0.02148666 + g: 0.00100758043 + r: 0.02148666 +ContainedObjects: +- !include 'Custom_Model_Bag Set-aside a45247/Card Harbinger of Valusia c6b3fc.yaml' +- !include 'Custom_Model_Bag Set-aside a45247/Card Chamber of Time 89a5b3.yaml' +- !include 'Custom_Model_Bag Set-aside a45247/Deck Poisoned 0e3441.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: Turn Back Time +GMNotes: '' +GUID: a45247 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +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.685501 + posY: 1.55833268 + posZ: 14.2799015 + rotX: 359.955139 + rotY: 224.995834 + rotZ: 0.0686853752 + scaleX: 2.0 + scaleY: 2.0 + scaleZ: 2.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 9 Secret Scenario c52079/Custom_Model_Bag Set-aside a45247/Card Chamber of Time 89a5b3.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 9 Secret Scenario c52079/Custom_Model_Bag Set-aside a45247/Card Chamber of Time 89a5b3.yaml new file mode 100644 index 000000000..86e1ef8c1 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 9 Secret Scenario c52079/Custom_Model_Bag Set-aside a45247/Card Chamber of Time 89a5b3.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 12267 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '122': + BackIsHidden: true + BackURL: https://i.imgur.com/RpzEfmS.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393194495/027101CA5C626EBA0E4F76F3F15569329F81DE3C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Forgotten. Ruins. +GMNotes: '' +GUID: 89a5b3 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Chamber of Time +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 4.69591236 + posY: 3.50630522 + posZ: 19.710556 + rotX: 359.920135 + rotY: 269.999969 + rotZ: 0.0168720167 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 9 Secret Scenario c52079/Custom_Model_Bag Set-aside a45247/Card Harbinger of Valusia c6b3fc.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 9 Secret Scenario c52079/Custom_Model_Bag Set-aside a45247/Card Harbinger of Valusia c6b3fc.yaml new file mode 100644 index 000000000..c657b71fd --- /dev/null +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 9 Secret Scenario c52079/Custom_Model_Bag Set-aside a45247/Card Harbinger of Valusia c6b3fc.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 12261 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '122': + BackIsHidden: true + BackURL: https://i.imgur.com/RpzEfmS.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393194495/027101CA5C626EBA0E4F76F3F15569329F81DE3C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Humanoid. Monster. Serpent. Elite. +GMNotes: '' +GUID: c6b3fc +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Harbinger of Valusia +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 8.740903 + posY: 3.59725213 + posZ: 19.51127 + rotX: 359.919739 + rotY: 270.0002 + rotZ: 0.0169708058 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 9 Secret Scenario c52079/Custom_Model_Bag Set-aside a45247/Deck Poisoned 0e3441.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 9 Secret Scenario c52079/Custom_Model_Bag Set-aside a45247/Deck Poisoned 0e3441.yaml new file mode 100644 index 000000000..34f80e115 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 9 Secret Scenario c52079/Custom_Model_Bag Set-aside a45247/Deck Poisoned 0e3441.yaml @@ -0,0 +1,215 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 12331 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Poision. + GMNotes: '' + GUID: 866eba + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Poisoned + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 14.3769016 + posY: 1.68233645 + posZ: 6.47687674 + rotX: 359.903168 + rotY: 270.056732 + rotZ: 180.05098 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12331 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Poision. + GMNotes: '' + GUID: 1f5327 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Poisoned + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 14.0089264 + posY: 1.6965065 + posZ: 6.43507147 + rotX: 359.918976 + rotY: 269.9983 + rotZ: 180.019 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12331 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Poision. + GMNotes: '' + GUID: 34788c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Poisoned + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 14.416831 + posY: 1.68174326 + posZ: 6.6175704 + rotX: 359.966248 + rotY: 270.0058 + rotZ: 180.028076 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12331 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Poision. + GMNotes: '' + GUID: a23736 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Poisoned + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 14.2237415 + posY: 1.53795516 + posZ: 6.47681761 + rotX: 359.91153 + rotY: 269.958862 + rotZ: 180.018951 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '123': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 12331 +- 12331 +- 12331 +- 12331 +Description: '' +GMNotes: '' +GUID: 0e3441 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Poisoned +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 9.428901 + posY: 3.6021874 + posZ: 17.4215164 + rotX: 359.9195 + rotY: 269.983459 + rotZ: 180.017288 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 9 Secret Scenario c52079/Custom_Tile Shattered Aeons c286ca.ttslua b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 9 Secret Scenario c52079/Custom_Tile Shattered Aeons c286ca.ttslua new file mode 100644 index 000000000..b78ce3eb4 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 9 Secret Scenario c52079/Custom_Tile Shattered Aeons c286ca.ttslua @@ -0,0 +1,21 @@ +name = 'Shattered Aeons' + +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 Forgotten Age 0ff458/Custom_Model_Bag 9 Secret Scenario c52079/Custom_Tile Shattered Aeons c286ca.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 9 Secret Scenario c52079/Custom_Tile Shattered Aeons c286ca.yaml new file mode 100644 index 000000000..a859484d8 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 9 Secret Scenario c52079/Custom_Tile Shattered Aeons c286ca.yaml @@ -0,0 +1,42 @@ +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 +GMNotes: '' +GUID: c286ca +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Tile Shattered Aeons c286ca.ttslua' +LuaScriptState: '' +Name: Custom_Tile +Nickname: Shattered Aeons +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.83940053 + posY: 1.58245945 + posZ: -14.9056025 + rotX: 359.919739 + rotY: 270.004517 + rotZ: 0.01682949 + scaleX: 2.2 + scaleY: 1.0 + scaleZ: 2.2 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 9 Secret Scenario c52079/Deck Act Deck 39c8c7.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 9 Secret Scenario c52079/Deck Act Deck 39c8c7.yaml new file mode 100644 index 000000000..8eb7caeef --- /dev/null +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 9 Secret Scenario c52079/Deck Act Deck 39c8c7.yaml @@ -0,0 +1,172 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 265312 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2653': + BackIsHidden: true + BackURL: https://i.imgur.com/bQUL7Ev.jpg + FaceURL: https://i.imgur.com/Kw5u56P.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: true + Description: Act 3 + GMNotes: '' + GUID: d207f8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Moment of Doom + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 20.3658257 + posY: 1.53108823 + posZ: 21.340292 + rotX: 0.0152501138 + rotY: 179.994064 + rotZ: 0.0801607743 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265310 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2653': + BackIsHidden: true + BackURL: https://i.imgur.com/bQUL7Ev.jpg + FaceURL: https://i.imgur.com/Kw5u56P.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: true + Description: Act 2 + GMNotes: '' + GUID: ae522c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Chamber of Still Remains + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 20.15816 + posY: 1.671884 + posZ: 21.1945381 + rotX: 0.008750819 + rotY: 179.9941 + rotZ: 0.0656479 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265308 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2653': + BackIsHidden: true + BackURL: https://i.imgur.com/bQUL7Ev.jpg + FaceURL: https://i.imgur.com/Kw5u56P.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: true + Description: Act 1 + GMNotes: '' + GUID: 3065a4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Into the Ruins Once Again + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 20.25757 + posY: 1.68924689 + posZ: 21.2406559 + rotX: 0.0161557775 + rotY: 179.9981 + rotZ: 0.079244256 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2653': + BackIsHidden: true + BackURL: https://i.imgur.com/bQUL7Ev.jpg + FaceURL: https://i.imgur.com/Kw5u56P.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 265312 +- 265310 +- 265308 +Description: Turn Back Time +GMNotes: '' +GUID: 39c8c7 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Act Deck +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.6885 + posY: 1.65499723 + posZ: -5.048501 + rotX: 0.0168470871 + rotY: 179.99324 + rotZ: 0.08025913 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 9 Secret Scenario c52079/Deck Agenda Deck a1b7d3.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 9 Secret Scenario c52079/Deck Agenda Deck a1b7d3.yaml new file mode 100644 index 000000000..35edbb1a1 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 9 Secret Scenario c52079/Deck Agenda Deck a1b7d3.yaml @@ -0,0 +1,129 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 12255 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '122': + BackIsHidden: true + BackURL: https://i.imgur.com/RpzEfmS.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393194495/027101CA5C626EBA0E4F76F3F15569329F81DE3C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 2 + GMNotes: '' + GUID: 964bf2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Temple Warden + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 21.1666088 + posY: 1.52831423 + posZ: 15.8555937 + rotX: 0.0125691975 + rotY: 179.9988 + rotZ: 0.0781431347 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12254 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '122': + BackIsHidden: true + BackURL: https://i.imgur.com/RpzEfmS.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393194495/027101CA5C626EBA0E4F76F3F15569329F81DE3C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 1 + GMNotes: '' + GUID: 2376d1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Something Stirs... + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 21.0289516 + posY: 1.66881812 + posZ: 15.9099808 + rotX: 0.0165792778 + rotY: 179.99649 + rotZ: 0.05861627 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '122': + BackIsHidden: true + BackURL: https://i.imgur.com/RpzEfmS.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393194495/027101CA5C626EBA0E4F76F3F15569329F81DE3C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 12255 +- 12254 +Description: The Doom of Eztli +GMNotes: '' +GUID: a1b7d3 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Agenda Deck +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.72470021 + posY: 1.66397715 + posZ: 0.373299658 + rotX: 0.0168389678 + rotY: 179.99884 + rotZ: 0.08025918 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 9 Secret Scenario c52079/Deck Encounter Deck 7ea307.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 9 Secret Scenario c52079/Deck Encounter Deck 7ea307.yaml new file mode 100644 index 000000000..6939a625f --- /dev/null +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 9 Secret Scenario c52079/Deck Encounter Deck 7ea307.yaml @@ -0,0 +1,1297 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 278630 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Poison. + GMNotes: '' + GUID: b4f854 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Creeping Poison + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.4834652 + posY: 1.60065126 + posZ: -16.38162 + rotX: 359.951874 + rotY: 269.859741 + rotZ: 180.32164 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3621 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: b78c3b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Crypt Chill + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.4796467 + posY: 1.6157136 + posZ: -15.6346226 + rotX: 359.947632 + rotY: 269.994843 + rotZ: 175.681885 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3622 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: '356046' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Obscuring Fog + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.4486618 + posY: 1.62288189 + posZ: -14.8169975 + rotX: 359.9199 + rotY: 269.91748 + rotZ: 180.1598 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3622 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: 03a265 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Obscuring Fog + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.446373 + posY: 1.67417371 + posZ: -14.1030846 + rotX: 359.9007 + rotY: 269.856354 + rotZ: 180.115067 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 278622 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Terror. + GMNotes: '' + GUID: 6dd1d9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ancestral Fear + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.4356 + posY: 1.723433 + posZ: -13.2561178 + rotX: 359.879974 + rotY: 269.888519 + rotZ: 180.004425 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 278622 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Terror. + GMNotes: '' + GUID: 6e0cb5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ancestral Fear + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.4200859 + posY: 1.52950418 + posZ: -12.5654678 + rotX: 359.919159 + rotY: 269.869873 + rotZ: 180.029251 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 278621 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Omen. Terror. + GMNotes: '' + GUID: 5fdae0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ill Omen + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.4389858 + posY: 1.8386482 + posZ: -11.8523006 + rotX: 0.245286286 + rotY: 269.861328 + rotZ: 176.692963 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 278623 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Hazard. + GMNotes: '' + GUID: 16ec42 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Deep Dark + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.4118633 + posY: 1.72612655 + posZ: -11.0997581 + rotX: 359.699127 + rotY: 270.002838 + rotZ: 177.225876 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 278623 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Hazard. + GMNotes: '' + GUID: '433337' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Deep Dark + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.4318943 + posY: 1.91543 + posZ: -10.471818 + rotX: 359.574921 + rotY: 269.539856 + rotZ: 176.993652 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 278618 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Trap. + GMNotes: '' + GUID: eb767b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Entombed + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.42206 + posY: 1.837889 + posZ: -9.693237 + rotX: 358.9769 + rotY: 270.031677 + rotZ: 178.376877 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 278617 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Trap. + GMNotes: '' + GUID: fc2fb1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Final Mistake + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.446928 + posY: 1.53058326 + posZ: -9.041479 + rotX: 359.919281 + rotY: 269.9371 + rotZ: 180.02533 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 278617 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Trap. + GMNotes: '' + GUID: 26d7ee + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Final Mistake + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.4439182 + posY: 1.90073943 + posZ: -8.215854 + rotX: 359.3526 + rotY: 269.840546 + rotZ: 177.504318 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 278620 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Hex. + GMNotes: '' + GUID: 5ae819 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Lost in Time + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.4494228 + posY: 1.83150017 + posZ: -7.53556442 + rotX: 0.216729045 + rotY: 269.860016 + rotZ: 182.732162 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 278620 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Hex. + GMNotes: '' + GUID: e20708 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Lost in Time + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.4434929 + posY: 1.6045934 + posZ: -6.874951 + rotX: 359.946 + rotY: 270.029877 + rotZ: 176.045959 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 278619 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Hex. + GMNotes: '' + GUID: 8bdf6d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: A Tear in Time + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.4452362 + posY: 1.61676717 + posZ: -6.19357347 + rotX: 0.151400492 + rotY: 270.186127 + rotZ: 175.789429 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 278630 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Poison. + GMNotes: '' + GUID: 8e8fef + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Creeping Poison + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.4479218 + posY: 1.7384522 + posZ: -5.37776661 + rotX: 0.1738273 + rotY: 269.908447 + rotZ: 174.567459 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 278619 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Hex. + GMNotes: '' + GUID: b2f948 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: A Tear in Time + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.4475 + posY: 1.63262331 + posZ: -4.566716 + rotX: 359.918762 + rotY: 270.093048 + rotZ: 174.674316 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 278619 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Hex. + GMNotes: '' + GUID: 29e1ba + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: A Tear in Time + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.42504 + posY: 1.93359292 + posZ: -4.054735 + rotX: 359.8934 + rotY: 270.5788 + rotZ: 183.73 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 278627 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Humanoid. Monster. Serpent. + GMNotes: '' + GUID: 6b107c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Fang of Yig + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.4297714 + posY: 1.75883126 + posZ: -3.21902466 + rotX: 359.9094 + rotY: 269.922546 + rotZ: 180.290543 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 278627 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Humanoid. Monster. Serpent. + GMNotes: '' + GUID: 7e9aa9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Fang of Yig + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.42297 + posY: 1.81903851 + posZ: -2.536522 + rotX: 0.0319214761 + rotY: 270.247437 + rotZ: 180.029877 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 278628 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Curse. + GMNotes: '' + GUID: 9542e8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Snakescourge + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.4540977 + posY: 1.87277472 + posZ: -1.87795568 + rotX: 0.2538952 + rotY: 270.020477 + rotZ: 179.884644 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 278628 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Curse. + GMNotes: '' + GUID: '660874' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Snakescourge + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.4396687 + posY: 1.53314555 + posZ: -1.01205289 + rotX: 359.9213 + rotY: 269.974426 + rotZ: 180.010056 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 278629 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Power. + GMNotes: '' + GUID: 1fab82 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Serpent's Call + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.4519119 + posY: 1.732544 + posZ: -0.376765221 + rotX: 0.418441862 + rotY: 270.251343 + rotZ: 180.41571 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 278612 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Humanoid. Monster. Serpent. + GMNotes: '' + GUID: 5ef7c7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Brood of Yig + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.4554176 + posY: 1.66619134 + posZ: 0.313166648 + rotX: 359.879883 + rotY: 270.085052 + rotZ: 177.385864 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 278612 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Humanoid. Monster. Serpent. + GMNotes: '' + GUID: 7a7539 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Brood of Yig + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.4549 + posY: 1.7690568 + posZ: 1.80044317 + rotX: 359.883636 + rotY: 271.32373 + rotZ: 178.782242 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 278612 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Humanoid. Monster. Serpent. + GMNotes: '' + GUID: 61dec3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Brood of Yig + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.4722767 + posY: 1.6810813 + posZ: 2.50913286 + rotX: 359.775543 + rotY: 271.2417 + rotZ: 173.90242 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 278613 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Humanoid. Monster. Serpent. + GMNotes: '' + GUID: 906ef2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Serpent from Yoth + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.4879475 + posY: 1.6662513 + posZ: 3.22732735 + rotX: 359.768738 + rotY: 271.253174 + rotZ: 185.323959 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 278614 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Curse. + GMNotes: '' + GUID: 5b28aa + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Curse of Yig + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.50416 + posY: 1.65013027 + posZ: 3.94053531 + rotX: 359.923981 + rotY: 271.153564 + rotZ: 173.8129 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 278614 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Curse. + GMNotes: '' + GUID: 866eba + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Curse of Yig + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.5178585 + posY: 1.63135421 + posZ: 4.66110468 + rotX: 359.9266 + rotY: 271.084442 + rotZ: 185.13324 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2786': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 278630 +- 3621 +- 3622 +- 3622 +- 278622 +- 278622 +- 278621 +- 278623 +- 278623 +- 278618 +- 278617 +- 278617 +- 278620 +- 278620 +- 278619 +- 278630 +- 278619 +- 278619 +- 278627 +- 278627 +- 278628 +- 278628 +- 278629 +- 278612 +- 278612 +- 278612 +- 278613 +- 278614 +- 278614 +Description: Turn Back Time +GMNotes: '' +GUID: 7ea307 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Encounter Deck +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.92770052 + posY: 1.76638055 + posZ: 5.7571 + rotX: 359.919739 + rotY: 269.989746 + rotZ: 180.016861 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 9 Secret Scenario c52079/Deck Exploration Deck 6811b1.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 9 Secret Scenario c52079/Deck Exploration Deck 6811b1.yaml new file mode 100644 index 000000000..75fce97bf --- /dev/null +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Model_Bag 9 Secret Scenario c52079/Deck Exploration Deck 6811b1.yaml @@ -0,0 +1,487 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 12262 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '122': + BackIsHidden: true + BackURL: https://i.imgur.com/RpzEfmS.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393194495/027101CA5C626EBA0E4F76F3F15569329F81DE3C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Ancient. Ruins. + GMNotes: '' + GUID: 47a8eb + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ancient Hall + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 18.7252655 + posY: 1.65628529 + posZ: 9.761856 + rotX: 359.925446 + rotY: 270.042175 + rotZ: 179.980621 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12263 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '122': + BackIsHidden: true + BackURL: https://i.imgur.com/RpzEfmS.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393194495/027101CA5C626EBA0E4F76F3F15569329F81DE3C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Ancient. Ruins. + GMNotes: '' + GUID: 959b4f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Grand Chamber + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 19.6072369 + posY: 1.52884412 + posZ: 10.039341 + rotX: 359.9201 + rotY: 269.999817 + rotZ: 0.0168474168 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12264 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '122': + BackIsHidden: true + BackURL: https://i.imgur.com/RpzEfmS.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393194495/027101CA5C626EBA0E4F76F3F15569329F81DE3C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Ancient. Ruins. + GMNotes: '' + GUID: 3615aa + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Burial Pit + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 19.6081181 + posY: 1.52820742 + posZ: 7.880275 + rotX: 359.920135 + rotY: 269.999817 + rotZ: 0.0168970563 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12265 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '122': + BackIsHidden: true + BackURL: https://i.imgur.com/RpzEfmS.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393194495/027101CA5C626EBA0E4F76F3F15569329F81DE3C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Ancient. Ruins. + GMNotes: '' + GUID: fbe6e8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Underground Ruins + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 19.610178 + posY: 1.52756917 + posZ: 5.721166 + rotX: 359.920135 + rotY: 269.9987 + rotZ: 0.0168688186 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12266 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '122': + BackIsHidden: true + BackURL: https://i.imgur.com/RpzEfmS.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393194495/027101CA5C626EBA0E4F76F3F15569329F81DE3C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Ancient. Ruins. + GMNotes: '' + GUID: 43dc89 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Secret Passage + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 19.6112289 + posY: 1.52693129 + posZ: 3.562065 + rotX: 359.9201 + rotY: 269.9975 + rotZ: 0.0168758184 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 278521 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Omen. Terror. + GMNotes: '' + GUID: 1fbcc6 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ill Omen + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 19.6121826 + posY: 1.52629387 + posZ: 1.40129352 + rotX: 359.920135 + rotY: 269.999817 + rotZ: 0.0168683752 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 278518 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Trap. + GMNotes: '' + GUID: c092e1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Entombed + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 19.6130543 + posY: 1.52566242 + posZ: -0.760005653 + rotX: 359.92038 + rotY: 270.000031 + rotZ: 0.0168468822 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3621 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: fb311c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Crypt Chill + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 19.6140041 + posY: 1.52501953 + posZ: -2.91906023 + rotX: 359.9201 + rotY: 269.999756 + rotZ: 0.0168370083 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 278523 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Hazard. + GMNotes: '' + GUID: 8a4a35 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Deep Dark + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 19.6149178 + posY: 1.524383 + posZ: -5.078145 + rotX: 359.920135 + rotY: 269.998749 + rotZ: 0.0168843176 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 278517 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Trap. + GMNotes: '' + GUID: d338b7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Final Mistake + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 19.6159668 + posY: 1.52374327 + posZ: -7.237273 + rotX: 359.92 + rotY: 269.995728 + rotZ: 0.0168876182 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '122': + BackIsHidden: true + BackURL: https://i.imgur.com/RpzEfmS.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393194495/027101CA5C626EBA0E4F76F3F15569329F81DE3C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + '2785': + BackIsHidden: true + BackURL: https://i.imgur.com/oRohMct.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/916924328393200377/279E9C8DF7927446A8F622451D79EB33E5D4F237/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 12262 +- 12263 +- 12264 +- 12265 +- 12266 +- 278521 +- 278518 +- 3621 +- 278523 +- 278517 +Description: The Doom of Eztli +GMNotes: '' +GUID: 6811b1 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Exploration Deck +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -12.8423033 + posY: 1.67811263 + posZ: 7.60199165 + rotX: 359.9201 + rotY: 270.0317 + rotZ: 180.016815 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Tile Forgotten Age Campaign Log 48b154.ttslua b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Tile Forgotten Age Campaign Log 48b154.ttslua new file mode 100644 index 000000000..09839a12d --- /dev/null +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Tile Forgotten Age Campaign Log 48b154.ttslua @@ -0,0 +1,549 @@ +--[[ Character Sheet Template by: MrStump + +You can set up your own character sheet if you follow these steps. + +Step 1) Change the character sheet image + -Right click on the character sheet, click Custom + -Replace the image URL with one for your character sheet + -Click import, make sure your sheet loads + -SAVE THE GAME (the table setup) + -LOAD FROM THAT SAVE YOU JUST MADE + +Step 2) Edit script to fit your character sheet + -Below you will see some general options, and then the big data table + -The data table is what determines how many of which buttons are made + -Checkboxes + -Counters + -Textboxes + -By default, there are 3 of each. You can add more or remove entries + -If you intend to add/remove, be sure only to add/remove ENTRIES + -This is what an entry looks like: + { + pos = {-0.977,0.1,-0.589}, + size = 800, + state = false + }, + -Deleting the whole thing would remove that specific item on the sheet + -Copy and pasting it after another entry would create another + -Each entry type has unique data points (pos, size, state, etc) + -Do not try to add in your own data points or remove them individually + -There is a summary of what each point does at the top of its category + +Step 3) Save and check script changes + -Hit Save & Apply in the script window to save your code + -You can edit your code as needed and Save+Apply as often as needed + -When you are finished, make disableSave = false below then Save+apply + -This enables saving, so your sheet will remember whats on it. + +Bonus) Finding/Editing Positions for elements + I have included a tool to get positions for buttons in {x,y,z} form + Place it where you want the center of your element to be + Then copy the table from the notes (lower right of screen) + You can highlight it and CTRL+C + Paste it into the data table where needed (pos=) + If you want to manually tweek the values: + {0,0,0} is the center of the character sheet + {1,0,0} is right, {-1,0,0} is left + {0,0,-1} is up, {0,0,1} is down + 0.1 for Y is the height off of the page. + If it was 0, it would be down inside the model of the sheet + +Begin editing below: ]] + +--Set this to true while editing and false when you have finished +disableSave = false +--Remember to set this to false once you are done making changes +--Then, after you save & apply it, save your game too + +--Color information for button text (r,g,b, values of 0-1) +buttonFontColor = {0,0,0} +--Color information for button background +buttonColor = {1,1,1} +--Change scale of button (Avoid changing if possible) +buttonScale = {0.1,0.1,0.1} + +--This is the button placement information +defaultButtonData = { + --Add checkboxes + checkbox = { + --[[ + pos = the position (pasted from the helper tool) + size = height/width/font_size for checkbox + state = default starting value for checkbox (true=checked, false=not) + ]] + + --End of checkboxes + }, + --Add counters that have a + and - button + counter = { + --[[ + pos = the position (pasted from the helper tool) + size = height/width/font_size for counter + value = default starting value for counter + hideBG = if background of counter is hidden (true=hidden, false=not) + ]] + --Slot one counter 1 + { + pos = {-0.7,0.1,-0.45}, + size = 400, + value = 0, + hideBG = true + }, + --Slot one counter 2 + { + pos = {-0.52,0.1,-0.45}, + size = 400, + value = 0, + hideBG = true + }, + --Slot one xp 1 + { + pos = {-0.517,0.1,-0.55}, + size = 300, + value = 0, + hideBG = true + }, + --Slot two counter 1 + { + pos = {-0.274,0.1,-0.445}, + size = 400, + value = 0, + hideBG = true + }, + --Slot two counter 2 + { + pos = {-0.074,0.1,-0.445}, + size = 400, + value = 0, + hideBG = true + }, + --Slot two xp 1 + { + pos = {-0.061,0.1,-0.54}, + size = 300, + value = 0, + hideBG = true + }, + --Slot three counter 1 + { + pos = {0.153,0.1,-0.44}, + size = 400, + value = 0, + hideBG = true + }, + --Slot three counter 2 + { + pos = {0.379,0.1,-0.44}, + size = 400, + value = 0, + hideBG = true + }, + --Slot three xp 1 + { + pos = {0.38,0.1,-0.54}, + size = 300, + value = 0, + hideBG = true + }, + --Slot four counter 1 + { + pos = {0.614,0.1,-0.44}, + size = 400, + value = 0, + hideBG = true + }, + --Slot four counter 2 + { + pos = {0.82,0.1,-0.44}, + size = 400, + value = 0, + hideBG = true + }, + --Slot four xp 1 + { + pos = {0.827,0.1,-0.54}, + size = 300, + value = 0, + hideBG = true + }, + --Yig's Fury + { + pos = {0.097,0.1,0.88}, + size = 500, + value = 0, + hideBG = true + }, + + --End of counters + }, + --Add editable text boxes + textbox = { + --[[ + pos = the position (pasted from the helper tool) + rows = how many lines of text you want for this box + width = how wide the text box is + font_size = size of text. This and "rows" effect overall height + label = what is shown when there is no text. "" = nothing + value = text entered into box. "" = nothing + alignment = Number to indicate how you want text aligned + (1=Automatic, 2=Left, 3=Center, 4=Right, 5=Justified) + ]] + --Slot one player + { + pos = {-0.637,0.1,-0.70}, + rows = 1, + width = 2000, + font_size = 150, + label = "Click to type", + value = "", + alignment = 2 + }, + --Slot one investigator + { + pos = {-0.637,0.1,-0.625}, + rows = 1, + width = 2000, + font_size = 150, + label = "Click to type", + value = "", + alignment = 2 + }, + --Slot one story + { + pos = {-0.637,0.1,-0.25}, + rows = 7, + width = 2000, + font_size = 150, + label = "Click to type", + value = "", + alignment = 2 + }, + --Slot one Supplies + { + pos = {-0.637,0.1,0.05}, + rows = 7, + width = 2000, + font_size = 150, + label = "Click to type", + value = "", + alignment = 2 + }, + --Slot two player + { + pos = {-0.2,0.1,-0.70}, + rows = 1, + width = 2000, + font_size = 150, + label = "Click to type", + value = "", + alignment = 2 + }, + --Slot two investigator + { + pos = {-0.2,0.1,-0.625}, + rows = 1, + width = 2000, + font_size = 150, + label = "Click to type", + value = "", + alignment = 2 + }, + --Slot two story + { + pos = {-0.2,0.1,-0.25}, + rows = 7, + width = 2000, + font_size = 150, + label = "Click to type", + value = "", + alignment = 2 + }, + --Slot two supplies + { + pos = {-0.2,0.1,0.05}, + rows = 7, + width = 2000, + font_size = 150, + label = "Click to type", + value = "", + alignment = 2 + }, + --Slot three player + { + pos = {0.241,0.1,-0.70}, + rows = 1, + width = 2000, + font_size = 150, + label = "Click to type", + value = "", + alignment = 2 + }, + --Slot three investigator + { + pos = {0.237,0.1,-0.625}, + rows = 1, + width = 2000, + font_size = 150, + label = "Click to type", + value = "", + alignment = 2 + }, + --Slot three story + { + pos = {0.24,0.1,-0.25}, + rows = 7, + width = 2000, + font_size = 150, + label = "Click to type", + value = "", + alignment = 2 + }, + --Slot three supplies + { + pos = {0.24,0.1,0.05}, + rows = 7, + width = 2000, + font_size = 150, + label = "Click to type", + value = "", + alignment = 2 + }, + --Slot four player + { + pos = {0.671,0.1,-0.70}, + rows = 1, + width = 2000, + font_size = 150, + label = "Click to type", + value = "", + alignment = 2 + }, + --Slot four investigator + { + pos = {0.671,0.1,-0.625}, + rows = 1, + width = 2000, + font_size = 150, + label = "Click to type", + value = "", + alignment = 2 + }, + --Slot four story + { + pos = {0.671,0.1,-0.25}, + rows = 7, + width = 2000, + font_size = 150, + label = "Click to type", + value = "", + alignment = 2 + }, + --Slot four supplies + { + pos = {0.671,0.1,0.05}, + rows = 7, + width = 2000, + font_size = 150, + label = "Click to type", + value = "", + alignment = 2 + }, + --Campaign Notes 1 + { + pos = {-0.475,0.1,0.62}, + rows =12, + width = 3200, + font_size = 200, + label = "Click to type", + value = "", + alignment = 2 + }, + --Campaign Notes 2 + { + pos = {0.527,0.1,0.507}, + rows = 12, + width = 3500, + font_size = 150, + label = "Click to type", + value = "", + alignment = 2 + }, + + --End of textboxes + } +} + + + +--Lua beyond this point, I recommend doing something more fun with your life + + + +--Save function +function updateSave() + saved_data = JSON.encode(ref_buttonData) + if disableSave==true then saved_data="" end + self.script_state = saved_data +end + +--Startup procedure +function onload(saved_data) + if disableSave==true then saved_data="" end + if saved_data ~= "" then + local loaded_data = JSON.decode(saved_data) + ref_buttonData = loaded_data + else + ref_buttonData = defaultButtonData + end + + spawnedButtonCount = 0 + createCheckbox() + createCounter() + createTextbox() +end + + + +--Click functions for buttons + + + +--Checks or unchecks the given box +function click_checkbox(tableIndex, buttonIndex) + if ref_buttonData.checkbox[tableIndex].state == true then + ref_buttonData.checkbox[tableIndex].state = false + self.editButton({index=buttonIndex, label=""}) + else + ref_buttonData.checkbox[tableIndex].state = true + self.editButton({index=buttonIndex, label=string.char(10008)}) + end + updateSave() +end + +--Applies value to given counter display +function click_counter(tableIndex, buttonIndex, amount) + ref_buttonData.counter[tableIndex].value = ref_buttonData.counter[tableIndex].value + amount + self.editButton({index=buttonIndex, label=ref_buttonData.counter[tableIndex].value}) + updateSave() +end + +--Updates saved value for given text box +function click_textbox(i, value, selected) + if selected == false then + ref_buttonData.textbox[i].value = value + updateSave() + end +end + +--Dud function for if you have a background on a counter +function click_none() end + + + +--Button creation + + + +--Makes checkboxes +function createCheckbox() + for i, data in ipairs(ref_buttonData.checkbox) do + --Sets up reference function + local buttonNumber = spawnedButtonCount + local funcName = "checkbox"..i + local func = function() click_checkbox(i, buttonNumber) end + self.setVar(funcName, func) + --Sets up label + local label = "" + if data.state==true then label=string.char(10008) end + --Creates button and counts it + self.createButton({ + label=label, click_function=funcName, function_owner=self, + position=data.pos, height=data.size, width=data.size, + font_size=data.size, scale=buttonScale, + color=buttonColor, font_color=buttonFontColor + }) + spawnedButtonCount = spawnedButtonCount + 1 + end +end + +--Makes counters +function createCounter() + for i, data in ipairs(ref_buttonData.counter) do + --Sets up display + local displayNumber = spawnedButtonCount + --Sets up label + local label = data.value + --Sets height/width for display + local size = data.size + if data.hideBG == true then size = 0 end + --Creates button and counts it + self.createButton({ + label=label, click_function="click_none", function_owner=self, + position=data.pos, height=size, width=size, + font_size=data.size, scale=buttonScale, + color=buttonColor, font_color=buttonFontColor + }) + spawnedButtonCount = spawnedButtonCount + 1 + + --Sets up add 1 + local funcName = "counterAdd"..i + local func = function() click_counter(i, displayNumber, 1) end + self.setVar(funcName, func) + --Sets up label + local label = "+" + --Sets up position + local offsetDistance = (data.size/2 + data.size/4) * (buttonScale[1] * 0.002) + local pos = {data.pos[1] + offsetDistance, data.pos[2], data.pos[3]} + --Sets up size + local size = data.size / 2 + --Creates button and counts it + self.createButton({ + label=label, click_function=funcName, function_owner=self, + position=pos, height=size, width=size, + font_size=size, scale=buttonScale, + color=buttonColor, font_color=buttonFontColor + }) + spawnedButtonCount = spawnedButtonCount + 1 + + --Sets up subtract 1 + local funcName = "counterSub"..i + local func = function() click_counter(i, displayNumber, -1) end + self.setVar(funcName, func) + --Sets up label + local label = "-" + --Set up position + local pos = {data.pos[1] - offsetDistance, data.pos[2], data.pos[3]} + --Creates button and counts it + self.createButton({ + label=label, click_function=funcName, function_owner=self, + position=pos, height=size, width=size, + font_size=size, scale=buttonScale, + color=buttonColor, font_color=buttonFontColor + }) + spawnedButtonCount = spawnedButtonCount + 1 + end +end + +function createTextbox() + for i, data in ipairs(ref_buttonData.textbox) do + --Sets up reference function + local funcName = "textbox"..i + local func = function(_,_,val,sel) click_textbox(i,val,sel) end + self.setVar(funcName, func) + + self.createInput({ + input_function = funcName, + function_owner = self, + label = data.label, + alignment = data.alignment, + position = data.pos, + scale = buttonScale, + width = data.width, + height = (data.font_size*data.rows)+24, + font_size = data.font_size, + color = buttonColor, + font_color = buttonFontColor, + value = data.value, + }) + end +end diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Tile Forgotten Age Campaign Log 48b154.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Tile Forgotten Age Campaign Log 48b154.yaml new file mode 100644 index 000000000..a4907923d --- /dev/null +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Custom_Tile Forgotten Age Campaign Log 48b154.yaml @@ -0,0 +1,271 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.1 + Type: 0 + ImageScalar: 1.0 + ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/959719855119695252/F9415595789317D4FAB83601CD43D165168FBA46/ + ImageURL: http://cloud-3.steamusercontent.com/ugc/952965089460824307/74E973C4213D897D27B483857BD249C1044B7A57/ + WidthScale: 0.0 +Description: '' +GMNotes: '' +GUID: 48b154 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Tile Forgotten Age Campaign Log 48b154.ttslua' +LuaScriptState: '{"checkbox":[],"counter":[{"hideBG":true,"pos":[-0.7,0.1,-0.45],"size":400,"value":0},{"hideBG":true,"pos":[-0.52,0.1,-0.45],"size":400,"value":0},{"hideBG":true,"pos":[-0.517,0.1,-0.55],"size":300,"value":0},{"hideBG":true,"pos":[-0.274,0.1,-0.445],"size":400,"value":0},{"hideBG":true,"pos":[-0.074,0.1,-0.445],"size":400,"value":0},{"hideBG":true,"pos":[-0.061,0.1,-0.54],"size":300,"value":0},{"hideBG":true,"pos":[0.153,0.1,-0.44],"size":400,"value":0},{"hideBG":true,"pos":[0.379,0.1,-0.44],"size":400,"value":0},{"hideBG":true,"pos":[0.38,0.1,-0.54],"size":300,"value":0},{"hideBG":true,"pos":[0.614,0.1,-0.44],"size":400,"value":0},{"hideBG":true,"pos":[0.82,0.1,-0.44],"size":400,"value":0},{"hideBG":true,"pos":[0.827,0.1,-0.54],"size":300,"value":0},{"hideBG":true,"pos":[0.097,0.1,0.88],"size":500,"value":0}],"textbox":[{"alignment":2,"font_size":150,"label":"Click + to type","pos":[-0.637,0.1,-0.7],"rows":1,"value":"","width":2000},{"alignment":2,"font_size":150,"label":"Click + to type","pos":[-0.637,0.1,-0.625],"rows":1,"value":"","width":2000},{"alignment":2,"font_size":150,"label":"Click + to type","pos":[-0.637,0.1,-0.25],"rows":7,"value":"","width":2000},{"alignment":2,"font_size":150,"label":"Click + to type","pos":[-0.637,0.1,0.05],"rows":7,"value":"","width":2000},{"alignment":2,"font_size":150,"label":"Click + to type","pos":[-0.2,0.1,-0.7],"rows":1,"value":"","width":2000},{"alignment":2,"font_size":150,"label":"Click + to type","pos":[-0.2,0.1,-0.625],"rows":1,"value":"","width":2000},{"alignment":2,"font_size":150,"label":"Click + to type","pos":[-0.2,0.1,-0.25],"rows":7,"value":"","width":2000},{"alignment":2,"font_size":150,"label":"Click + to type","pos":[-0.2,0.1,0.05],"rows":7,"value":"","width":2000},{"alignment":2,"font_size":150,"label":"Click + to type","pos":[0.241,0.1,-0.7],"rows":1,"value":"","width":2000},{"alignment":2,"font_size":150,"label":"Click + to type","pos":[0.237,0.1,-0.625],"rows":1,"value":"","width":2000},{"alignment":2,"font_size":150,"label":"Click + to type","pos":[0.24,0.1,-0.25],"rows":7,"value":"","width":2000},{"alignment":2,"font_size":150,"label":"Click + to type","pos":[0.24,0.1,0.05],"rows":7,"value":"","width":2000},{"alignment":2,"font_size":150,"label":"Click + to type","pos":[0.671,0.1,-0.7],"rows":1,"value":"","width":2000},{"alignment":2,"font_size":150,"label":"Click + to type","pos":[0.671,0.1,-0.625],"rows":1,"value":"","width":2000},{"alignment":2,"font_size":150,"label":"Click + to type","pos":[0.671,0.1,-0.25],"rows":7,"value":"","width":2000},{"alignment":2,"font_size":150,"label":"Click + to type","pos":[0.671,0.1,0.05],"rows":7,"value":"","width":2000},{"alignment":2,"font_size":200,"label":"Click + to type","pos":[-0.475,0.1,0.62],"rows":12,"value":"","width":3200},{"alignment":2,"font_size":150,"label":"Click + to type","pos":[0.527,0.1,0.507],"rows":12,"value":"","width":3500}]}' +Name: Custom_Tile +Nickname: Forgotten Age Campaign Log +Snap: true +States: + '2': + Autoraise: true + ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 + CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.1 + Type: 0 + ImageScalar: 1.0 + ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/959719855119695252/F9415595789317D4FAB83601CD43D165168FBA46/ + ImageURL: http://cloud-3.steamusercontent.com/ugc/952965089460824587/CD096F002FD4C67E424C2DE3CABC60B220C8B1AB/ + WidthScale: 0.0 + Description: '' + GMNotes: '' + GUID: 353dc4 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: "--[[ Character Sheet Template by: MrStump\r\n\r\nYou can set\ + \ up your own character sheet if you follow these steps.\r\n\r\nStep 1) Change\ + \ the character sheet image\r\n -Right click on the character sheet, click\ + \ Custom\r\n -Replace the image URL with one for your character sheet\r\n\ + \ -Click import, make sure your sheet loads\r\n -SAVE THE GAME (the table\ + \ setup)\r\n -LOAD FROM THAT SAVE YOU JUST MADE\r\n\r\nStep 2) Edit script\ + \ to fit your character sheet\r\n -Below you will see some general options,\ + \ and then the big data table\r\n -The data table is what determines how\ + \ many of which buttons are made\r\n -Checkboxes\r\n -Counters\r\ + \n -Textboxes\r\n -By default, there are 3 of each. You can add more\ + \ or remove entries\r\n -If you intend to add/remove, be sure only to add/remove\ + \ ENTRIES\r\n -This is what an entry looks like:\r\n {\r\n\ + \ pos = {-0.977,0.1,-0.589},\r\n size = 800,\r\ + \n state = false\r\n },\r\n -Deleting the whole\ + \ thing would remove that specific item on the sheet\r\n -Copy and pasting\ + \ it after another entry would create another\r\n -Each entry type has unique\ + \ data points (pos, size, state, etc)\r\n -Do not try to add in your\ + \ own data points or remove them individually\r\n -There is a summary\ + \ of what each point does at the top of its category\r\n\r\nStep 3) Save and\ + \ check script changes\r\n -Hit Save & Apply in the script window to save\ + \ your code\r\n -You can edit your code as needed and Save+Apply as often\ + \ as needed\r\n -When you are finished, make disableSave = false below then\ + \ Save+apply\r\n -This enables saving, so your sheet will remember whats\ + \ on it.\r\n\r\nBonus) Finding/Editing Positions for elements\r\n I have\ + \ included a tool to get positions for buttons in {x,y,z} form\r\n Place\ + \ it where you want the center of your element to be\r\n Then copy the table\ + \ from the notes (lower right of screen)\r\n You can highlight it and\ + \ CTRL+C\r\n Paste it into the data table where needed (pos=)\r\n If you\ + \ want to manually tweek the values:\r\n {0,0,0} is the center of the\ + \ character sheet\r\n {1,0,0} is right, {-1,0,0} is left\r\n {0,0,-1}\ + \ is up, {0,0,1} is down\r\n 0.1 for Y is the height off of the page.\r\ + \n If it was 0, it would be down inside the model of the sheet\r\n\ + \r\nBegin editing below: ]]\r\n\r\n--Set this to true while editing and false\ + \ when you have finished\r\ndisableSave = false\r\n--Remember to set this to\ + \ false once you are done making changes\r\n--Then, after you save & apply it,\ + \ save your game too\r\n\r\n--Color information for button text (r,g,b, values\ + \ of 0-1)\r\nbuttonFontColor = {0,0,0}\r\n--Color information for button background\r\ + \nbuttonColor = {1,1,1}\r\n--Change scale of button (Avoid changing if possible)\r\ + \nbuttonScale = {0.1,0.1,0.1}\r\n\r\n--This is the button placement information\r\ + \ndefaultButtonData = {\r\n --Add checkboxes\r\n checkbox = {\r\n \ + \ --[[\r\n pos = the position (pasted from the helper tool)\r\n\ + \ size = height/width/font_size for checkbox\r\n state = default\ + \ starting value for checkbox (true=checked, false=not)\r\n ]]\r\n \ + \ --1 checkbox\r\n {\r\n pos = {0.065,0.1,-0.867},\r\ + \n size = 250,\r\n state = false\r\n },\r\n \ + \ --2 checkbox\r\n {\r\n pos = {0.101,0.1,-0.764},\r\ + \n size = 250,\r\n state = false\r\n },\r\n \ + \ --3 checkbox\r\n {\r\n pos = {0.135,0.1,-0.669},\r\ + \n size = 250,\r\n state = false\r\n },\r\n \ + \ --4 checkbox\r\n {\r\n pos = {0.123,0.1,-0.57},\r\ + \n size = 250,\r\n state = false\r\n },\r\n \ + \ --5 checkbox\r\n {\r\n pos = {0.133,0.1,-0.483},\r\ + \n size = 250,\r\n state = false\r\n },\r\n \ + \ --6 checkbox\r\n {\r\n pos = {0.134,0.1,-0.387},\r\ + \n size = 250,\r\n state = false\r\n },\r\n \ + \ --7 checkbox\r\n {\r\n pos = {0.095,0.1,-0.303},\r\ + \n size = 250,\r\n state = false\r\n },\r\n \ + \ --8 checkbox\r\n {\r\n pos = {0.118,0.1,-0.2},\r\n\ + \ size = 250,\r\n state = false\r\n },\r\n \ + \ --9 checkbox\r\n {\r\n pos = {0.219,0.1,-0.099},\r\ + \n size = 250,\r\n state = false\r\n },\r\n \ + \ --10 checkbox\r\n {\r\n pos = {0.207,0.1,-0.008},\r\ + \n size = 250,\r\n state = false\r\n },\r\n \ + \ --11 checkbox\r\n {\r\n pos = {0.152,0.1,0.074},\r\ + \n size = 250,\r\n state = false\r\n },\r\n \ + \ --12 checkbox\r\n {\r\n pos = {0.139,0.1,0.164},\r\ + \n size = 250,\r\n state = false\r\n },\r\n \ + \ --13 checkbox\r\n {\r\n pos = {0.117,0.1,0.251},\r\ + \n size = 250,\r\n state = false\r\n },\r\n \ + \ --14 checkbox\r\n {\r\n pos = {0.098,0.1,0.347},\r\ + \n size = 250,\r\n state = false\r\n },\r\n \ + \ --15 checkbox\r\n {\r\n pos = {0.063,0.1,0.433},\r\ + \n size = 250,\r\n state = false\r\n },\r\n \ + \ --End of checkboxes\r\n },\r\n --Add counters that have a + and\ + \ - button\r\n counter = {\r\n --[[\r\n pos = the position\ + \ (pasted from the helper tool)\r\n size = height/width/font_size for\ + \ counter\r\n value = default starting value for counter\r\n \ + \ hideBG = if background of counter is hidden (true=hidden, false=not)\r\n \ + \ ]]\r\n --Slot one counter 1\r\n\r\n --End of counters\r\ + \n },\r\n --Add editable text boxes\r\n textbox = {\r\n --[[\r\ + \n pos = the position (pasted from the helper tool)\r\n \ + \ rows = how many lines of text you want for this box\r\n width\ + \ = how wide the text box is\r\n font_size = size of text. This and\ + \ \"rows\" effect overall height\r\n label = what is shown when there\ + \ is no text. \"\" = nothing\r\n value = text entered into box. \"\ + \" = nothing\r\n alignment = Number to indicate how you want text aligned\r\ + \n (1=Automatic, 2=Left, 3=Center, 4=Right, 5=Justified)\r\ + \n ]]\r\n\r\n --Campaign Notes\r\n {\r\n pos\ + \ = {0.05,0.1,0.851},\r\n rows =5,\r\n width\ + \ = 3800,\r\n font_size = 200,\r\n label = \"\ + Click to type\",\r\n value = \"\",\r\n alignment =\ + \ 2\r\n },\r\n --End of textboxes\r\n }\r\n}\r\n\r\n\r\n\r\n\ + --Lua beyond this point, I recommend doing something more fun with your life\r\ + \n\r\n\r\n\r\n--Save function\r\nfunction updateSave()\r\n saved_data = JSON.encode(ref_buttonData)\r\ + \n if disableSave==true then saved_data=\"\" end\r\n self.script_state\ + \ = saved_data\r\nend\r\n\r\n--Startup procedure\r\nfunction onload(saved_data)\r\ + \n if disableSave==true then saved_data=\"\" end\r\n if saved_data ~=\ + \ \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n \ + \ ref_buttonData = loaded_data\r\n else\r\n ref_buttonData = defaultButtonData\r\ + \n end\r\n\r\n spawnedButtonCount = 0\r\n createCheckbox()\r\n createCounter()\r\ + \n createTextbox()\r\nend\r\n\r\n\r\n\r\n--Click functions for buttons\r\n\ + \r\n\r\n\r\n--Checks or unchecks the given box\r\nfunction click_checkbox(tableIndex,\ + \ buttonIndex)\r\n if ref_buttonData.checkbox[tableIndex].state == true then\r\ + \n ref_buttonData.checkbox[tableIndex].state = false\r\n self.editButton({index=buttonIndex,\ + \ label=\"\"})\r\n else\r\n ref_buttonData.checkbox[tableIndex].state\ + \ = true\r\n self.editButton({index=buttonIndex, label=string.char(10008)})\r\ + \n end\r\n updateSave()\r\nend\r\n\r\n--Applies value to given counter\ + \ display\r\nfunction click_counter(tableIndex, buttonIndex, amount)\r\n \ + \ ref_buttonData.counter[tableIndex].value = ref_buttonData.counter[tableIndex].value\ + \ + amount\r\n self.editButton({index=buttonIndex, label=ref_buttonData.counter[tableIndex].value})\r\ + \n updateSave()\r\nend\r\n\r\n--Updates saved value for given text box\r\n\ + function click_textbox(i, value, selected)\r\n if selected == false then\r\ + \n ref_buttonData.textbox[i].value = value\r\n updateSave()\r\n\ + \ end\r\nend\r\n\r\n--Dud function for if you have a background on a counter\r\ + \nfunction click_none() end\r\n\r\n\r\n\r\n--Button creation\r\n\r\n\r\n\r\n\ + --Makes checkboxes\r\nfunction createCheckbox()\r\n for i, data in ipairs(ref_buttonData.checkbox)\ + \ do\r\n --Sets up reference function\r\n local buttonNumber =\ + \ spawnedButtonCount\r\n local funcName = \"checkbox\"..i\r\n \ + \ local func = function() click_checkbox(i, buttonNumber) end\r\n self.setVar(funcName,\ + \ func)\r\n --Sets up label\r\n local label = \"\"\r\n \ + \ if data.state==true then label=string.char(10008) end\r\n --Creates\ + \ button and counts it\r\n self.createButton({\r\n label=label,\ + \ click_function=funcName, function_owner=self,\r\n position=data.pos,\ + \ height=data.size, width=data.size,\r\n font_size=data.size, scale=buttonScale,\r\ + \n color=buttonColor, font_color=buttonFontColor\r\n })\r\n\ + \ spawnedButtonCount = spawnedButtonCount + 1\r\n end\r\nend\r\n\r\ + \n--Makes counters\r\nfunction createCounter()\r\n for i, data in ipairs(ref_buttonData.counter)\ + \ do\r\n --Sets up display\r\n local displayNumber = spawnedButtonCount\r\ + \n --Sets up label\r\n local label = data.value\r\n --Sets\ + \ height/width for display\r\n local size = data.size\r\n if data.hideBG\ + \ == true then size = 0 end\r\n --Creates button and counts it\r\n \ + \ self.createButton({\r\n label=label, click_function=\"click_none\"\ + , function_owner=self,\r\n position=data.pos, height=size, width=size,\r\ + \n font_size=data.size, scale=buttonScale,\r\n color=buttonColor,\ + \ font_color=buttonFontColor\r\n })\r\n spawnedButtonCount = spawnedButtonCount\ + \ + 1\r\n\r\n --Sets up add 1\r\n local funcName = \"counterAdd\"\ + ..i\r\n local func = function() click_counter(i, displayNumber, 1) end\r\ + \n self.setVar(funcName, func)\r\n --Sets up label\r\n \ + \ local label = \"+\"\r\n --Sets up position\r\n local offsetDistance\ + \ = (data.size/2 + data.size/4) * (buttonScale[1] * 0.002)\r\n local\ + \ pos = {data.pos[1] + offsetDistance, data.pos[2], data.pos[3]}\r\n \ + \ --Sets up size\r\n local size = data.size / 2\r\n --Creates\ + \ button and counts it\r\n self.createButton({\r\n label=label,\ + \ click_function=funcName, function_owner=self,\r\n position=pos,\ + \ height=size, width=size,\r\n font_size=size, scale=buttonScale,\r\ + \n color=buttonColor, font_color=buttonFontColor\r\n })\r\n\ + \ spawnedButtonCount = spawnedButtonCount + 1\r\n\r\n --Sets up\ + \ subtract 1\r\n local funcName = \"counterSub\"..i\r\n local\ + \ func = function() click_counter(i, displayNumber, -1) end\r\n self.setVar(funcName,\ + \ func)\r\n --Sets up label\r\n local label = \"-\"\r\n \ + \ --Set up position\r\n local pos = {data.pos[1] - offsetDistance, data.pos[2],\ + \ data.pos[3]}\r\n --Creates button and counts it\r\n self.createButton({\r\ + \n label=label, click_function=funcName, function_owner=self,\r\n\ + \ position=pos, height=size, width=size,\r\n font_size=size,\ + \ scale=buttonScale,\r\n color=buttonColor, font_color=buttonFontColor\r\ + \n })\r\n spawnedButtonCount = spawnedButtonCount + 1\r\n end\r\ + \nend\r\n\r\nfunction createTextbox()\r\n for i, data in ipairs(ref_buttonData.textbox)\ + \ do\r\n --Sets up reference function\r\n local funcName = \"\ + textbox\"..i\r\n local func = function(_,_,val,sel) click_textbox(i,val,sel)\ + \ end\r\n self.setVar(funcName, func)\r\n\r\n self.createInput({\r\ + \n input_function = funcName,\r\n function_owner = self,\r\ + \n label = data.label,\r\n alignment = data.alignment,\r\ + \n position = data.pos,\r\n scale = buttonScale,\r\ + \n width = data.width,\r\n height = (data.font_size*data.rows)+24,\r\ + \n font_size = data.font_size,\r\n color \ + \ = buttonColor,\r\n font_color = buttonFontColor,\r\n \ + \ value = data.value,\r\n })\r\n end\r\nend\r\n" + LuaScriptState: '{"checkbox":[{"pos":[0.065,0.1,-0.867],"size":250,"state":false},{"pos":[0.101,0.1,-0.764],"size":250,"state":false},{"pos":[0.135,0.1,-0.669],"size":250,"state":false},{"pos":[0.123,0.1,-0.57],"size":250,"state":false},{"pos":[0.133,0.1,-0.483],"size":250,"state":false},{"pos":[0.134,0.1,-0.387],"size":250,"state":false},{"pos":[0.095,0.1,-0.303],"size":250,"state":false},{"pos":[0.118,0.1,-0.2],"size":250,"state":false},{"pos":[0.219,0.1,-0.099],"size":250,"state":false},{"pos":[0.207,0.1,-0.008],"size":250,"state":false},{"pos":[0.152,0.1,0.074],"size":250,"state":false},{"pos":[0.139,0.1,0.164],"size":250,"state":false},{"pos":[0.117,0.1,0.251],"size":250,"state":false},{"pos":[0.098,0.1,0.347],"size":250,"state":false},{"pos":[0.063,0.1,0.433],"size":250,"state":false}],"counter":[],"textbox":[{"alignment":2,"font_size":200,"label":"Click + to type","pos":[0.05,0.1,0.851],"rows":5,"value":"","width":3800}]}' + Name: Custom_Tile + Nickname: Forgotten Age Campaign Log + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -12.7223864 + posY: 1.2605859 + posZ: 52.395546 + rotX: 0.0208084248 + rotY: 270.000061 + rotZ: 0.0167715941 + scaleX: 6.5 + scaleY: 1.0 + scaleZ: 6.5 + XmlUI: '' +Sticky: true +Tooltip: true +Transform: + posX: -1.35352552 + posY: 1.47556615 + posZ: -26.6031837 + rotX: 359.920135 + rotY: 270.001953 + rotZ: 0.0168674216 + scaleX: 6.5 + scaleY: 1.0 + scaleZ: 6.5 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Deck Supplies 05e6aa.yaml b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Deck Supplies 05e6aa.yaml new file mode 100644 index 000000000..efdd546cc --- /dev/null +++ b/unpacked/Custom_Model_Bag The Forgotten Age 0ff458/Deck Supplies 05e6aa.yaml @@ -0,0 +1,534 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 269800 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: 31df72 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -12.4372721 + posY: 1.55637085 + posZ: -30.3668957 + rotX: 359.920135 + rotY: 269.997284 + rotZ: 0.01687943 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 269801 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: 31df72 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -12.4372721 + posY: 1.55637085 + posZ: -30.3668957 + rotX: 359.920135 + rotY: 269.997284 + rotZ: 0.01687943 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 269802 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: 31df72 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -12.4372721 + posY: 1.55637085 + posZ: -30.3668957 + rotX: 359.920135 + rotY: 269.997284 + rotZ: 0.01687943 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 269803 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: 31df72 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -12.4372721 + posY: 1.55637085 + posZ: -30.3668957 + rotX: 359.920135 + rotY: 269.997284 + rotZ: 0.01687943 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 269804 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: 31df72 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -12.4372721 + posY: 1.55637085 + posZ: -30.3668957 + rotX: 359.920135 + rotY: 269.997284 + rotZ: 0.01687943 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 269805 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: 31df72 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -12.4372721 + posY: 1.55637085 + posZ: -30.3668957 + rotX: 359.920135 + rotY: 269.997284 + rotZ: 0.01687943 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 269806 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: 31df72 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -12.4372721 + posY: 1.55637085 + posZ: -30.3668957 + rotX: 359.920135 + rotY: 269.997284 + rotZ: 0.01687943 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 269807 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: 31df72 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -12.4372721 + posY: 1.55637085 + posZ: -30.3668957 + rotX: 359.920135 + rotY: 269.997284 + rotZ: 0.01687943 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 269808 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: 31df72 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -12.4372721 + posY: 1.55637085 + posZ: -30.3668957 + rotX: 359.920135 + rotY: 269.997284 + rotZ: 0.01687943 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 269809 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: 31df72 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -12.4372721 + posY: 1.55637085 + posZ: -30.3668957 + rotX: 359.920135 + rotY: 269.997284 + rotZ: 0.01687943 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 269810 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: 31df72 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -12.4372721 + posY: 1.55637085 + posZ: -30.3668957 + rotX: 359.920135 + rotY: 269.997284 + rotZ: 0.01687943 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 269811 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: 31df72 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -12.4372721 + posY: 1.55637085 + posZ: -30.3668957 + rotX: 359.920135 + rotY: 269.997284 + rotZ: 0.01687943 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 269812 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: 31df72 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -12.4372721 + posY: 1.55637085 + posZ: -30.3668957 + rotX: 359.920135 + rotY: 269.997284 + rotZ: 0.01687943 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 269813 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: 31df72 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -12.4372721 + posY: 1.55637085 + posZ: -30.3668957 + rotX: 359.920135 + rotY: 269.997284 + rotZ: 0.01687943 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2698': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/784110538848643525/00E7055EEEB7036DABD3911594D8EBF4024A03CA/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784110538848643525/00E7055EEEB7036DABD3911594D8EBF4024A03CA/ + NumHeight: 4 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 269800 +- 269801 +- 269802 +- 269803 +- 269804 +- 269805 +- 269806 +- 269807 +- 269808 +- 269809 +- 269810 +- 269811 +- 269812 +- 269813 +Description: Add to your saved objects as you progress through the campaign as a reminder + of the supplies you've purchased! +GMNotes: '' +GUID: 05e6aa +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Supplies +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 3.207602 + posY: 1.5458926 + posZ: -36.0018234 + rotX: 359.920135 + rotY: 269.997284 + rotZ: 0.016882848 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c.ttslua b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c.ttslua new file mode 100644 index 000000000..5ff76a978 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c.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,5,6}, rotation={0,0,0}, height=500, width=1200, + font_size=350, 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={1.5,5,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.2,5,6}, rotation={0,0,0}, height=500, width=1200, + font_size=350, color={0,0,0}, font_color={1,1,1} + }) + self.createButton({ + label="Reset", click_function="buttonClick_reset", function_owner=self, + position={-4,5,6}, rotation={0,0,0}, height=500, width=1000, + font_size=350, 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={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={-6,1,0}, rotation={0,90,0}, height=500, width=1200, +-- font_size=350, 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 \ No newline at end of file diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c.yaml new file mode 100644 index 000000000..eb77def8b --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c.yaml @@ -0,0 +1,70 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +ContainedObjects: +- !include 'Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 3 Echoes + of the Past 42d2dc.yaml' +- !include 'Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 2 The Last + King 6730a1.yaml' +- !include 'Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 1 Curtain + Call 83ccd4.yaml' +- !include 'Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Tile Carcosa Campaign + Log ae8317.yaml' +- !include 'Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 5 A Phantom + of Truth bd4167.yaml' +- !include 'Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 8 Dim Carcosa + ce5d30.yaml' +- !include 'Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 7 Black Stars + Rise dd8b0d.yaml' +- !include 'Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable + Oath e7efa6.yaml' +- !include 'Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 6 The Pallid + Mask eb48ff.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/762723517667645467/CDF71CF96691CEF2E690F71332479ACBA0697864/ + MaterialIndex: 3 + MeshURL: https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/core_h_MSH.obj + NormalURL: '' + TypeIndex: 6 +Description: '' +GMNotes: '' +GUID: 1b887c +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Model_Bag The Path to Carcosa 1b887c.ttslua' +LuaScriptState: '{"ml":{"42d2dc":{"lock":false,"pos":{"x":12.2504,"y":1.4684,"z":13.438},"rot":{"x":359.9201,"y":270.0118,"z":0.0169}},"6730a1":{"lock":false,"pos":{"x":12.2502,"y":1.4709,"z":22.0782},"rot":{"x":359.9201,"y":270.0175,"z":0.0168}},"83ccd4":{"lock":false,"pos":{"x":12.2515,"y":1.4735,"z":30.8271},"rot":{"x":359.9201,"y":270.0338,"z":0.0168}},"ae8317":{"lock":false,"pos":{"x":-1.3869,"y":1.4756,"z":-26.5424},"rot":{"x":359.9201,"y":270.0018,"z":0.0169}},"bd4167":{"lock":false,"pos":{"x":12.2498,"y":1.4633,"z":-3.9192},"rot":{"x":359.9201,"y":270.0253,"z":0.0168}},"ce5d30":{"lock":false,"pos":{"x":12.2503,"y":1.4556,"z":-30.0549},"rot":{"x":359.9201,"y":269.993,"z":0.0169}},"dd8b0d":{"lock":false,"pos":{"x":12.2511,"y":1.4582,"z":-21.3057},"rot":{"x":359.9201,"y":270.0436,"z":0.0168}},"e7efa6":{"lock":false,"pos":{"x":12.2492,"y":1.4658,"z":4.6891},"rot":{"x":359.9201,"y":270.044,"z":0.0168}},"eb48ff":{"lock":false,"pos":{"x":12.2496,"y":1.4607,"z":-12.6656},"rot":{"x":359.9201,"y":270.0235,"z":0.0168}}}}' +MaterialIndex: -1 +MeshIndex: -1 +Name: Custom_Model_Bag +Nickname: The Path to Carcosa +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 51.6553841 + posY: 1.40953743 + posZ: 0.140025035 + rotX: 359.920135 + rotY: 269.998779 + rotZ: 0.0168746971 + scaleX: 1.0 + scaleY: 0.139652729 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 1 Curtain Call 83ccd4.ttslua b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 1 Curtain Call 83ccd4.ttslua new file mode 100644 index 000000000..46067f58e --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 1 Curtain Call 83ccd4.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.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.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 Path to Carcosa 1b887c/Custom_Model_Bag 1 Curtain Call 83ccd4.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 1 Curtain Call 83ccd4.yaml new file mode 100644 index 000000000..4e443bd05 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 1 Curtain Call 83ccd4.yaml @@ -0,0 +1,82 @@ +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 1 Curtain Call 83ccd4/Custom_Model_Bag Set-aside 0d3181.yaml' +- !include 'Custom_Model_Bag 1 Curtain Call 83ccd4/Deck Encounter Deck 355df1.yaml' +- !include 'Custom_Model_Bag 1 Curtain Call 83ccd4/Deck Agenda Deck 344f37.yaml' +- !include 'Custom_Model_Bag 1 Curtain Call 83ccd4/Deck Act Deck 919566.yaml' +- !include 'Custom_Model_Bag 1 Curtain Call 83ccd4/Card Scenario aa08d4.yaml' +- !include 'Custom_Model_Bag 1 Curtain Call 83ccd4/Custom_Tile The Path to Carcosa + 16562e.yaml' +- !include 'Custom_Model_Bag 1 Curtain Call 83ccd4/Card Balcony 3e4d11.yaml' +- !include 'Custom_Model_Bag 1 Curtain Call 83ccd4/Card Theatre 592384.yaml' +- !include 'Custom_Model_Bag 1 Curtain Call 83ccd4/Card Lobby 67a96b.yaml' +- !include 'Custom_Model_Bag 1 Curtain Call 83ccd4/Card Backstage 37e3f9.yaml' +- !include 'Custom_Model_Bag 1 Curtain Call 83ccd4/Custom_Tile 4906e9.yaml' +- !include 'Custom_Model_Bag 1 Curtain Call 83ccd4/Custom_Tile 57f68a.yaml' +- !include 'Custom_Model_Bag 1 Curtain Call 83ccd4/Custom_Tile 9b59f2.yaml' +- !include 'Custom_Model_Bag 1 Curtain Call 83ccd4/Custom_Tile 44b0c5.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/829135118403810276/57FC71DFBA9F9BE0025EAEF61842D62D593876F9/ + MaterialIndex: 3 + MeshURL: https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj + NormalURL: '' + TypeIndex: 6 +Description: '' +GMNotes: '' +GUID: 83ccd4 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Model_Bag 1 Curtain Call 83ccd4.ttslua' +LuaScriptState: '{"ml":{"0d3181":{"lock":false,"pos":{"x":1.6967,"y":1.5583,"z":14.2786},"rot":{"x":359.9551,"y":224.998,"z":0.0687}},"16562e":{"lock":false,"pos":{"x":-3.8355,"y":1.5823,"z":-15.4104},"rot":{"x":359.9197,"y":269.9812,"z":0.0169}},"344f37":{"lock":false,"pos":{"x":-2.7246,"y":1.664,"z":0.3733},"rot":{"x":0.0168,"y":180,"z":0.0803}},"355df1":{"lock":false,"pos":{"x":-3.9274,"y":1.7824,"z":5.7572},"rot":{"x":359.9197,"y":269.9998,"z":180.0168}},"37e3f9":{"lock":false,"pos":{"x":-23.6766,"y":1.684,"z":-7.7},"rot":{"x":359.9201,"y":269.9999,"z":0.0169}},"3e4d11":{"lock":false,"pos":{"x":-17.1199,"y":1.6771,"z":-0.0301},"rot":{"x":359.9201,"y":269.9998,"z":0.0169}},"44b0c5":{"lock":false,"pos":{"x":-20.5401,"y":1.6102,"z":0.1872},"rot":{"x":0.0799,"y":90.0061,"z":359.9831}},"4906e9":{"lock":false,"pos":{"x":-23.6765,"y":1.6134,"z":-3.83},"rot":{"x":359.9831,"y":0.0003,"z":359.92}},"57f68a":{"lock":false,"pos":{"x":-23.6765,"y":1.6157,"z":3.86},"rot":{"x":359.9831,"y":0.0002,"z":359.9201}},"592384":{"lock":false,"pos":{"x":-23.6765,"y":1.6862,"z":-0.03},"rot":{"x":359.9201,"y":269.9999,"z":0.0169}},"67a96b":{"lock":false,"pos":{"x":-23.6766,"y":1.6885,"z":7.57},"rot":{"x":359.9201,"y":270,"z":0.0169}},"919566":{"lock":false,"pos":{"x":-2.6884,"y":1.6543,"z":-5.0485},"rot":{"x":0.0168,"y":180.0001,"z":0.0803}},"9b59f2":{"lock":false,"pos":{"x":-20.3102,"y":1.6109,"z":3.7456},"rot":{"x":359.9316,"y":315,"z":359.9554}},"aa08d4":{"lock":false,"pos":{"x":-3.9558,"y":1.6556,"z":-10.4412},"rot":{"x":359.9197,"y":270,"z":0.0168}}}}' +MaterialIndex: -1 +MeshIndex: -1 +Name: Custom_Model_Bag +Nickname: '1: Curtain Call' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 14.4786463 + posY: 1.46988487 + posZ: 29.0926266 + rotX: 359.9201 + rotY: 270.033752 + rotZ: 0.0168262 + scaleX: 2.21 + scaleY: 0.46 + scaleZ: 2.42 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 1 Curtain Call 83ccd4/Card Backstage 37e3f9.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 1 Curtain Call 83ccd4/Card Backstage 37e3f9.yaml new file mode 100644 index 000000000..59cbc98e7 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 1 Curtain Call 83ccd4/Card Backstage 37e3f9.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 232004 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378685352/22FD056BAF1966FE2D1AC46FC1BF90C1A03A1404/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378686413/C1688C1A909FDC7357EB3EEFADAB1FBD5818BD3E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 37e3f9 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Backstage +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -23.6766167 + posY: 1.683962 + posZ: -7.69999552 + rotX: 359.9201 + rotY: 269.999878 + rotZ: 0.0168756079 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 1 Curtain Call 83ccd4/Card Balcony 3e4d11.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 1 Curtain Call 83ccd4/Card Balcony 3e4d11.yaml new file mode 100644 index 000000000..bd1277ce6 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 1 Curtain Call 83ccd4/Card Balcony 3e4d11.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 232003 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378685352/22FD056BAF1966FE2D1AC46FC1BF90C1A03A1404/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378686413/C1688C1A909FDC7357EB3EEFADAB1FBD5818BD3E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 3e4d11 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Balcony +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -17.11992 + posY: 1.67707765 + posZ: -0.03005336 + rotX: 359.9201 + rotY: 269.9998 + rotZ: 0.01687651 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 1 Curtain Call 83ccd4/Card Lobby 67a96b.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 1 Curtain Call 83ccd4/Card Lobby 67a96b.yaml new file mode 100644 index 000000000..65a86f3c4 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 1 Curtain Call 83ccd4/Card Lobby 67a96b.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 232002 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378685352/22FD056BAF1966FE2D1AC46FC1BF90C1A03A1404/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378686413/C1688C1A909FDC7357EB3EEFADAB1FBD5818BD3E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 67a96b +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Lobby +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -23.6765671 + posY: 1.68845832 + posZ: 7.570007 + rotX: 359.9201 + rotY: 270.0 + rotZ: 0.0168768354 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 1 Curtain Call 83ccd4/Card Scenario aa08d4.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 1 Curtain Call 83ccd4/Card Scenario aa08d4.yaml new file mode 100644 index 000000000..736dd4866 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 1 Curtain Call 83ccd4/Card Scenario aa08d4.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 232011 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378685352/22FD056BAF1966FE2D1AC46FC1BF90C1A03A1404/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378686413/C1688C1A909FDC7357EB3EEFADAB1FBD5818BD3E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Curtain Call +GMNotes: '' +GUID: aa08d4 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Scenario +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.955834 + posY: 1.655648 + posZ: -10.4411535 + rotX: 359.919739 + rotY: 270.0 + rotZ: 0.01683331 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 1 Curtain Call 83ccd4/Card Theatre 592384.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 1 Curtain Call 83ccd4/Card Theatre 592384.yaml new file mode 100644 index 000000000..c4042dcec --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 1 Curtain Call 83ccd4/Card Theatre 592384.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 232001 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378685352/22FD056BAF1966FE2D1AC46FC1BF90C1A03A1404/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378686413/C1688C1A909FDC7357EB3EEFADAB1FBD5818BD3E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: '592384' +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Theatre +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -23.676548 + posY: 1.68622053 + posZ: -0.0299945343 + rotX: 359.9201 + rotY: 269.999939 + rotZ: 0.0168781038 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 1 Curtain Call 83ccd4/Custom_Model_Bag Set-aside 0d3181.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 1 Curtain Call 83ccd4/Custom_Model_Bag Set-aside 0d3181.yaml new file mode 100644 index 000000000..cf99a1e4b --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 1 Curtain Call 83ccd4/Custom_Model_Bag Set-aside 0d3181.yaml @@ -0,0 +1,59 @@ +Autoraise: true +ColorDiffuse: + b: 0.02148666 + g: 0.00100758043 + r: 0.02148666 +ContainedObjects: +- !include 'Custom_Model_Bag Set-aside 0d3181/Deck Backstage Doorway 7865e0.yaml' +- !include 'Custom_Model_Bag Set-aside 0d3181/Deck Lobby Doorway d1d7e7.yaml' +- !include 'Custom_Model_Bag Set-aside 0d3181/Card Royal Emissary 58a463.yaml' +- !include 'Custom_Model_Bag Set-aside 0d3181/Card The Man in the Pallid Mask 6720ef.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: Curtain Call +GMNotes: '' +GUID: 0d3181 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +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.69672489 + posY: 1.5583173 + posZ: 14.2786388 + rotX: 359.9551 + rotY: 224.997971 + rotZ: 0.06867673 + scaleX: 2.0 + scaleY: 2.0 + scaleZ: 2.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 1 Curtain Call 83ccd4/Custom_Model_Bag Set-aside 0d3181/Card Royal Emissary 58a463.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 1 Curtain Call 83ccd4/Custom_Model_Bag Set-aside 0d3181/Card Royal Emissary 58a463.yaml new file mode 100644 index 000000000..7f127aa1f --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 1 Curtain Call 83ccd4/Custom_Model_Bag Set-aside 0d3181/Card Royal Emissary 58a463.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 232201 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: Messenger from Aldebaran +GMNotes: '' +GUID: 58a463 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Royal Emissary +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -63.8863258 + posY: 3.691039 + posZ: -22.277216 + rotX: 359.924652 + rotY: 269.999176 + rotZ: 0.0155627662 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 1 Curtain Call 83ccd4/Custom_Model_Bag Set-aside 0d3181/Card The Man in the Pallid Mask 6720ef.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 1 Curtain Call 83ccd4/Custom_Model_Bag Set-aside 0d3181/Card The Man in the Pallid Mask 6720ef.yaml new file mode 100644 index 000000000..9d2bb08a6 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 1 Curtain Call 83ccd4/Custom_Model_Bag Set-aside 0d3181/Card The Man in the Pallid Mask 6720ef.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Humanoid. Elite. +GMNotes: '' +GUID: 6720ef +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: The Man in the Pallid Mask +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -63.2297058 + posY: 3.69034266 + posZ: -20.9524555 + rotX: 359.9364 + rotY: 270.0 + rotZ: 0.0133595308 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 1 Curtain Call 83ccd4/Custom_Model_Bag Set-aside 0d3181/Deck Backstage Doorway 7865e0.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 1 Curtain Call 83ccd4/Custom_Model_Bag Set-aside 0d3181/Deck Backstage Doorway 7865e0.yaml new file mode 100644 index 000000000..0497eb63a --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 1 Curtain Call 83ccd4/Custom_Model_Bag Set-aside 0d3181/Deck Backstage Doorway 7865e0.yaml @@ -0,0 +1,172 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 232010 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378685352/22FD056BAF1966FE2D1AC46FC1BF90C1A03A1404/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378686413/C1688C1A909FDC7357EB3EEFADAB1FBD5818BD3E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Private. + GMNotes: '' + GUID: e83ec9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Backstage Doorway + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -68.9734344 + posY: 1.64448786 + posZ: -16.5750523 + rotX: 359.9202 + rotY: 270.0005 + rotZ: 0.0159941129 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232009 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378685352/22FD056BAF1966FE2D1AC46FC1BF90C1A03A1404/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378686413/C1688C1A909FDC7357EB3EEFADAB1FBD5818BD3E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Private. + GMNotes: '' + GUID: b75450 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Backstage Doorway + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -68.86457 + posY: 1.8074044 + posZ: -16.84065 + rotX: 359.964966 + rotY: 270.000275 + rotZ: 0.15069145 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232008 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378685352/22FD056BAF1966FE2D1AC46FC1BF90C1A03A1404/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378686413/C1688C1A909FDC7357EB3EEFADAB1FBD5818BD3E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Private. + GMNotes: '' + GUID: 0797a9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Backstage Doorway + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -68.9427643 + posY: 1.82297826 + posZ: -16.6185379 + rotX: 359.920715 + rotY: 270.0002 + rotZ: 0.01611315 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378685352/22FD056BAF1966FE2D1AC46FC1BF90C1A03A1404/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378686413/C1688C1A909FDC7357EB3EEFADAB1FBD5818BD3E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 232010 +- 232009 +- 232008 +Description: '' +GMNotes: '' +GUID: 7865e0 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Backstage Doorway +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -63.51758 + posY: 3.70609426 + posZ: -20.6026573 + rotX: 359.91983 + rotY: 270.001434 + rotZ: 0.0168735217 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 1 Curtain Call 83ccd4/Custom_Model_Bag Set-aside 0d3181/Deck Lobby Doorway d1d7e7.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 1 Curtain Call 83ccd4/Custom_Model_Bag Set-aside 0d3181/Deck Lobby Doorway d1d7e7.yaml new file mode 100644 index 000000000..8b7e07414 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 1 Curtain Call 83ccd4/Custom_Model_Bag Set-aside 0d3181/Deck Lobby Doorway d1d7e7.yaml @@ -0,0 +1,172 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 232007 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378685352/22FD056BAF1966FE2D1AC46FC1BF90C1A03A1404/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378686413/C1688C1A909FDC7357EB3EEFADAB1FBD5818BD3E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Private. + GMNotes: '' + GUID: 5134e0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Lobby Doorway + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -64.46025 + posY: 1.63455057 + posZ: -30.92889 + rotX: 359.898315 + rotY: 270.042236 + rotZ: 359.9904 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232006 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378685352/22FD056BAF1966FE2D1AC46FC1BF90C1A03A1404/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378686413/C1688C1A909FDC7357EB3EEFADAB1FBD5818BD3E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Private. + GMNotes: '' + GUID: 7605cf + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Lobby Doorway + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -64.0923 + posY: 1.87486124 + posZ: -30.6986828 + rotX: 359.91153 + rotY: 270.0594 + rotZ: 353.10556 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232005 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378685352/22FD056BAF1966FE2D1AC46FC1BF90C1A03A1404/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378686413/C1688C1A909FDC7357EB3EEFADAB1FBD5818BD3E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Private. + GMNotes: '' + GUID: 5c1254 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Lobby Doorway + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -64.23145 + posY: 1.82666051 + posZ: -30.41579 + rotX: 359.9109 + rotY: 269.991516 + rotZ: 357.803558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378685352/22FD056BAF1966FE2D1AC46FC1BF90C1A03A1404/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378686413/C1688C1A909FDC7357EB3EEFADAB1FBD5818BD3E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 232007 +- 232006 +- 232005 +Description: '' +GMNotes: '' +GUID: d1d7e7 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Lobby Doorway +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -63.61445 + posY: 3.705878 + posZ: -22.0357628 + rotX: 359.920135 + rotY: 270.025177 + rotZ: 0.0168754887 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 1 Curtain Call 83ccd4/Custom_Tile 44b0c5.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 1 Curtain Call 83ccd4/Custom_Tile 44b0c5.yaml new file mode 100644 index 000000000..c2ad9e6f9 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 1 Curtain Call 83ccd4/Custom_Tile 44b0c5.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 44b0c5 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Tile +Nickname: '' +Snap: true +States: + '1': + 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: '' + GMNotes: '' + GUID: 7234af + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Custom_Tile + Nickname: '' + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -20.4630013 + posY: 1.61011219 + posZ: 0.263299972 + rotX: 359.9201 + rotY: 269.994446 + rotZ: 0.0169059914 + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.5401 + posY: 1.61019731 + posZ: 0.187199727 + rotX: 0.07989617 + rotY: 90.00613 + rotZ: 359.983124 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 1 Curtain Call 83ccd4/Custom_Tile 4906e9.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 1 Curtain Call 83ccd4/Custom_Tile 4906e9.yaml new file mode 100644 index 000000000..444fd3ef4 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 1 Curtain Call 83ccd4/Custom_Tile 4906e9.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 4906e9 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.613388 + posZ: -3.83000064 + rotX: 359.983124 + rotY: 0.000341806532 + rotZ: 359.920044 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 1 Curtain Call 83ccd4/Custom_Tile 57f68a.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 1 Curtain Call 83ccd4/Custom_Tile 57f68a.yaml new file mode 100644 index 000000000..59e79806e --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 1 Curtain Call 83ccd4/Custom_Tile 57f68a.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 57f68a +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.6765 + posY: 1.61565232 + posZ: 3.86000013 + rotX: 359.983124 + rotY: 0.000222451054 + rotZ: 359.920074 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 1 Curtain Call 83ccd4/Custom_Tile 9b59f2.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 1 Curtain Call 83ccd4/Custom_Tile 9b59f2.yaml new file mode 100644 index 000000000..d71ecb52b --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 1 Curtain Call 83ccd4/Custom_Tile 9b59f2.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 9b59f2 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.3102 + posY: 1.61092472 + posZ: 3.74560046 + rotX: 359.93158 + rotY: 315.0 + rotZ: 359.955444 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 1 Curtain Call 83ccd4/Custom_Tile The Path to Carcosa 16562e.ttslua b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 1 Curtain Call 83ccd4/Custom_Tile The Path to Carcosa 16562e.ttslua new file mode 100644 index 000000000..978a9d2b5 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 1 Curtain Call 83ccd4/Custom_Tile The Path to Carcosa 16562e.ttslua @@ -0,0 +1,21 @@ +name = 'The Path to Carcosa' + +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 Path to Carcosa 1b887c/Custom_Model_Bag 1 Curtain Call 83ccd4/Custom_Tile The Path to Carcosa 16562e.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 1 Curtain Call 83ccd4/Custom_Tile The Path to Carcosa 16562e.yaml new file mode 100644 index 000000000..8161de44d --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 1 Curtain Call 83ccd4/Custom_Tile The Path to Carcosa 16562e.yaml @@ -0,0 +1,42 @@ +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 +GMNotes: '' +GUID: 16562e +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Tile The Path to Carcosa 16562e.ttslua' +LuaScriptState: '' +Name: Custom_Tile +Nickname: The Path to Carcosa +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.83550024 + posY: 1.58230555 + posZ: -15.4104023 + rotX: 359.919739 + rotY: 269.9812 + rotZ: 0.0168639552 + scaleX: 2.2 + scaleY: 1.0 + scaleZ: 2.2 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 1 Curtain Call 83ccd4/Deck Act Deck 919566.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 1 Curtain Call 83ccd4/Deck Act Deck 919566.yaml new file mode 100644 index 000000000..b37200454 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 1 Curtain Call 83ccd4/Deck Act Deck 919566.yaml @@ -0,0 +1,258 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 231706 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2317': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378732934/F41E84FCDC0AB52634348C439A6D1A725CEB8115/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378736378/628E179D5305E95AFC25D86526320A24F8B27391/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 3 + GMNotes: '' + GUID: 5c5a28 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Curtain Call + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -62.9992752 + posY: 1.63407075 + posZ: -23.66045 + rotX: 0.0170145351 + rotY: 179.992645 + rotZ: 0.0790209249 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231705 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2317': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378732934/F41E84FCDC0AB52634348C439A6D1A725CEB8115/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378736378/628E179D5305E95AFC25D86526320A24F8B27391/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 2 + GMNotes: '' + GUID: a4f850 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Stranger + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -62.92845 + posY: 1.78945589 + posZ: -23.7653828 + rotX: 0.0165706947 + rotY: 179.994614 + rotZ: 0.07189061 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231704 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2317': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378732934/F41E84FCDC0AB52634348C439A6D1A725CEB8115/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378736378/628E179D5305E95AFC25D86526320A24F8B27391/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 2 + GMNotes: '' + GUID: 2e25bf + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Stranger + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -62.9571228 + posY: 1.81255591 + posZ: -23.2298717 + rotX: 0.0160033926 + rotY: 180.002319 + rotZ: 0.0799214244 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231703 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2317': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378732934/F41E84FCDC0AB52634348C439A6D1A725CEB8115/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378736378/628E179D5305E95AFC25D86526320A24F8B27391/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 2 + GMNotes: '' + GUID: 94060e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Stranger + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.0425262 + posY: 1.79912484 + posZ: -22.6836262 + rotX: 0.0102636954 + rotY: 179.985733 + rotZ: 0.0801323354 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231702 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2317': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378732934/F41E84FCDC0AB52634348C439A6D1A725CEB8115/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378736378/628E179D5305E95AFC25D86526320A24F8B27391/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 1 + GMNotes: '' + GUID: eeaa39 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Awakening + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -62.75405 + posY: 1.79654717 + posZ: -23.6259918 + rotX: 0.0172705445 + rotY: 180.000214 + rotZ: 0.07949278 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2317': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378732934/F41E84FCDC0AB52634348C439A6D1A725CEB8115/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378736378/628E179D5305E95AFC25D86526320A24F8B27391/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 231706 +- 231705 +- 231704 +- 231703 +- 231702 +Description: '' +GMNotes: '' +GUID: '919566' +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Act Deck +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.68841386 + posY: 1.654325 + posZ: -5.04852438 + rotX: 0.0168349165 + rotY: 180.000061 + rotZ: 0.08025842 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 1 Curtain Call 83ccd4/Deck Agenda Deck 344f37.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 1 Curtain Call 83ccd4/Deck Agenda Deck 344f37.yaml new file mode 100644 index 000000000..1be889674 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 1 Curtain Call 83ccd4/Deck Agenda Deck 344f37.yaml @@ -0,0 +1,129 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 231701 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2317': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378732934/F41E84FCDC0AB52634348C439A6D1A725CEB8115/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378736378/628E179D5305E95AFC25D86526320A24F8B27391/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 2 + GMNotes: '' + GUID: 62cc79 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Encore + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.6231956 + posY: 1.64404368 + posZ: 7.325429 + rotX: 0.0159791522 + rotY: 180.965317 + rotZ: 0.07806935 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231700 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2317': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378732934/F41E84FCDC0AB52634348C439A6D1A725CEB8115/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378736378/628E179D5305E95AFC25D86526320A24F8B27391/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 1 + GMNotes: '' + GUID: d122dd + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Third Act + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.6134148 + posY: 1.78935122 + posZ: 7.064174 + rotX: 0.0200005248 + rotY: 180.0098 + rotZ: 0.06410008 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2317': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378732934/F41E84FCDC0AB52634348C439A6D1A725CEB8115/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378736378/628E179D5305E95AFC25D86526320A24F8B27391/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 231701 +- 231700 +Description: '' +GMNotes: '' +GUID: 344f37 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Agenda Deck +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.72458148 + posY: 1.66397727 + posZ: 0.3733304 + rotX: 0.01683501 + rotY: 180.0 + rotZ: 0.08025855 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 1 Curtain Call 83ccd4/Deck Encounter Deck 355df1.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 1 Curtain Call 83ccd4/Deck Encounter Deck 355df1.yaml new file mode 100644 index 000000000..0b31b0d88 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 1 Curtain Call 83ccd4/Deck Encounter Deck 355df1.yaml @@ -0,0 +1,1433 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 232216 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Pact. + GMNotes: '' + GUID: 7a6d8c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Twisted to His Will + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -40.06019 + posY: 1.60829687 + posZ: -2.629929 + rotX: 359.920044 + rotY: 270.0098 + rotZ: 0.01704826 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232216 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Pact. + GMNotes: '' + GUID: a6af6b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Twisted to His Will + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -40.14995 + posY: 1.78357077 + posZ: -2.83012843 + rotX: 0.5782123 + rotY: 270.002 + rotZ: 0.0179315973 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232215 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: a0d34f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Spires of Carcosa + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -39.56787 + posY: 1.7705667 + posZ: -2.61933255 + rotX: 359.921173 + rotY: 270.003662 + rotZ: 0.0159180127 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232215 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: a0d34f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Spires of Carcosa + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -40.2772331 + posY: 1.7794143 + posZ: -2.527565 + rotX: 359.919922 + rotY: 270.003967 + rotZ: 0.01670667 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232214 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: 0afc45 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Black Stars Rise + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -39.95644 + posY: 1.771017 + posZ: -2.60974526 + rotX: 359.919952 + rotY: 270.027344 + rotZ: 0.0162861571 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232214 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: 0afc45 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Black Stars Rise + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -40.21685 + posY: 1.76258183 + posZ: -3.051078 + rotX: 359.919678 + rotY: 270.027161 + rotZ: 0.0155659933 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232209 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: 837dc0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Descent into Madness + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -8.254647 + posY: 1.56856728 + posZ: 13.1639223 + rotX: 359.9206 + rotY: 270.010376 + rotZ: 0.0141025912 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232209 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: b5a670 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Descent into Madness + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -7.994349 + posY: 1.72873139 + posZ: 13.4239607 + rotX: 359.910156 + rotY: 270.010345 + rotZ: 359.9914 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232206 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: a13701 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Whispers in Your Head (Doubt) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -8.13497 + posY: 1.73145211 + posZ: 13.3962345 + rotX: 359.9188 + rotY: 270.00116 + rotZ: 0.0158020761 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232205 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: 42b8dc + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Whispers in Your Head (Anxiety) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -7.656395 + posY: 1.73211765 + posZ: 13.2479944 + rotX: 359.900421 + rotY: 270.000153 + rotZ: 0.006056429 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232207 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: ec66a0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Whispers in Your Head (Dread) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -8.143007 + posY: 1.71549714 + posZ: 12.48624 + rotX: 359.929932 + rotY: 270.014252 + rotZ: 0.007635473 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232208 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: 4bea40 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Whispers in Your Head (Dismay) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -7.971472 + posY: 1.718169 + posZ: 13.2703743 + rotX: 359.920532 + rotY: 269.99942 + rotZ: 0.0161604 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232218 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Curse. Geist. + GMNotes: '' + GUID: 2d32e4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Spirit's Torment + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -31.05811 + posY: 1.5943135 + posZ: -7.30223 + rotX: 359.920715 + rotY: 269.999756 + rotZ: 0.013130011 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232218 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Curse. Geist. + GMNotes: '' + GUID: 9349fd + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Spirit's Torment + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -31.1989822 + posY: 1.74595857 + posZ: -7.23980331 + rotX: 359.950958 + rotY: 269.999573 + rotZ: -0.00464719161 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232217 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Geist. + GMNotes: '' + GUID: 1ae587 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Poltergeist + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -30.9912872 + posY: 1.5951972 + posZ: -3.82445621 + rotX: 359.9241 + rotY: 269.9814 + rotZ: 0.0137564549 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232217 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Geist. + GMNotes: '' + GUID: 459f5a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Poltergeist + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -30.9757233 + posY: 1.74052989 + posZ: -3.8652792 + rotX: 359.957245 + rotY: 269.972046 + rotZ: 0.00526940031 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 266318 + 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 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: f5c831 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 266318 + 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 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: 97416f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 266317 + 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 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: 0f4202 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 266317 + 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 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: c70601 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 266316 + 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 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: ab3719 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 266316 + 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 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: 435a47 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 266316 + 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 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: ab3719 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 266412 + 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 + UniqueBack: false + Description: Creature. + GMNotes: '' + GUID: ab3719 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Swarm of Rats + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 15.456192 + posY: 1.53138053 + posZ: -0.8908986 + rotX: 359.92038 + rotY: 270.0 + rotZ: 0.0147123663 + 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: + '2317': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Creature. + GMNotes: '' + GUID: a2cf85 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Swarm of Rats + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 15.4186563 + posY: 1.68472993 + posZ: -0.738109052 + rotX: 359.913422 + rotY: 270.000122 + rotZ: 0.0100070881 + 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: + '2317': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Creature. + GMNotes: '' + GUID: ab3719 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Swarm of Rats + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 15.4186554 + posY: 1.69875109 + posZ: -0.738129 + rotX: 359.918427 + rotY: 270.0001 + rotZ: 0.0155182732 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232224 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Pact. + GMNotes: '' + GUID: e20141 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The King's Edict + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -45.28207 + posY: 1.61571622 + posZ: -1.99931252 + rotX: 359.920471 + rotY: 269.999542 + rotZ: 0.0138937524 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232224 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Pact. + GMNotes: '' + GUID: '522968' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The King's Edict + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -45.3332253 + posY: 1.76760066 + posZ: -1.86887467 + rotX: 359.932678 + rotY: 269.9998 + rotZ: -0.00222653663 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232223 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Cultist. + GMNotes: '' + GUID: 0bf1f8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Agent of the King + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -45.31658 + posY: 1.77869308 + posZ: -1.76723373 + rotX: 359.925659 + rotY: 270.030243 + rotZ: 359.9921 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232222 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Cultist. + GMNotes: '' + GUID: 8ada81 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Fanatic + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -46.03409 + posY: 1.61745238 + posZ: 0.648399532 + rotX: 359.9214 + rotY: 269.999054 + rotZ: 0.00768406037 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232222 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Cultist. + GMNotes: '' + GUID: dcaaad + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Fanatic + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -45.8543549 + posY: 1.76917815 + posZ: 0.300536335 + rotX: 359.907532 + rotY: 269.998657 + rotZ: 0.0211735331 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232222 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Cultist. + GMNotes: '' + GUID: 8ada81 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Fanatic + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -45.8543625 + posY: 1.80176485 + posZ: 0.3005505 + rotX: 359.920227 + rotY: 269.998779 + rotZ: 0.0167158749 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '2663': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '2664': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 232216 +- 232216 +- 232215 +- 232215 +- 232214 +- 232214 +- 232209 +- 232209 +- 232206 +- 232205 +- 232207 +- 232208 +- 232218 +- 232218 +- 232217 +- 232217 +- 266318 +- 266318 +- 266317 +- 266317 +- 266316 +- 266316 +- 266316 +- 266412 +- 266412 +- 266412 +- 232224 +- 232224 +- 232223 +- 232222 +- 232222 +- 232222 +Description: '' +GMNotes: '' +GUID: 355df1 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Encounter Deck +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.92736125 + posY: 1.78236854 + posZ: 5.7571516 + rotX: 359.919739 + rotY: 269.999847 + rotZ: 180.016846 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 2 The Last King 6730a1.ttslua b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 2 The Last King 6730a1.ttslua new file mode 100644 index 000000000..46067f58e --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 2 The Last King 6730a1.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.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.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 Path to Carcosa 1b887c/Custom_Model_Bag 2 The Last King 6730a1.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 2 The Last King 6730a1.yaml new file mode 100644 index 000000000..e0b47b3b3 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 2 The Last King 6730a1.yaml @@ -0,0 +1,91 @@ +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 2 The Last King 6730a1/Custom_Model_Bag Set-aside 1cbe12.yaml' +- !include 'Custom_Model_Bag 2 The Last King 6730a1/Deck Encounter Deck 0e3277.yaml' +- !include 'Custom_Model_Bag 2 The Last King 6730a1/Deck Agenda Deck f00abc.yaml' +- !include 'Custom_Model_Bag 2 The Last King 6730a1/Card Discovering the Truth 3da436.yaml' +- !include 'Custom_Model_Bag 2 The Last King 6730a1/Card Scenario dd2d33.yaml' +- !include 'Custom_Model_Bag 2 The Last King 6730a1/Custom_Tile The Last King 857d0d.yaml' +- !include 'Custom_Model_Bag 2 The Last King 6730a1/Deck Sickening Reality dda125.yaml' +- !include 'Custom_Model_Bag 2 The Last King 6730a1/Deck Bystanders a2d9f5.yaml' +- !include 'Custom_Model_Bag 2 The Last King 6730a1/Card Dining Room aa08d4.yaml' +- !include 'Custom_Model_Bag 2 The Last King 6730a1/Custom_Tile 657fc6.yaml' +- !include 'Custom_Model_Bag 2 The Last King 6730a1/Card Ballroom c605d3.yaml' +- !include 'Custom_Model_Bag 2 The Last King 6730a1/Custom_Tile 472b87.yaml' +- !include 'Custom_Model_Bag 2 The Last King 6730a1/Card Living Room b3c25b.yaml' +- !include 'Custom_Model_Bag 2 The Last King 6730a1/Custom_Tile 01b9fa.yaml' +- !include 'Custom_Model_Bag 2 The Last King 6730a1/Card Courtyard 981fa3.yaml' +- !include 'Custom_Model_Bag 2 The Last King 6730a1/Custom_Tile dfdabe.yaml' +- !include 'Custom_Model_Bag 2 The Last King 6730a1/Card Foyer 4b6478.yaml' +- !include 'Custom_Model_Bag 2 The Last King 6730a1/Custom_Tile 7234af.yaml' +- !include 'Custom_Model_Bag 2 The Last King 6730a1/Custom_Tile d4d0a1.yaml' +- !include 'Custom_Model_Bag 2 The Last King 6730a1/Custom_Tile 170d3d.yaml' +- !include 'Custom_Model_Bag 2 The Last King 6730a1/Custom_Tile b25fa2.yaml' +- !include 'Custom_Model_Bag 2 The Last King 6730a1/Custom_Tile f935dd.yaml' +- !include 'Custom_Model_Bag 2 The Last King 6730a1/Card Gallery cce10d.yaml' +- !include 'Custom_Model_Bag 2 The Last King 6730a1/Notecard Errata f66b3b.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/829135118403810904/B3BE128EB4A69B8B76FF2F51B330B81FE36F2101/ + MaterialIndex: 3 + MeshURL: https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj + NormalURL: '' + TypeIndex: 6 +Description: '' +GMNotes: '' +GUID: 6730a1 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Model_Bag 2 The Last King 6730a1.ttslua' +LuaScriptState: '{"ml":{"01b9fa":{"lock":false,"pos":{"x":-23.6765,"y":1.6134,"z":-3.83},"rot":{"x":359.9831,"y":0.0002,"z":359.9201}},"0e3277":{"lock":false,"pos":{"x":-3.9275,"y":1.7291,"z":5.7572},"rot":{"x":359.9197,"y":270.0004,"z":180.0168}},"170d3d":{"lock":false,"pos":{"x":-20.0997,"y":1.6105,"z":3.2408},"rot":{"x":359.9554,"y":224.9999,"z":0.0684}},"1cbe12":{"lock":false,"pos":{"x":1.696,"y":1.5583,"z":14.2787},"rot":{"x":359.9551,"y":224.998,"z":0.0687}},"3da436":{"lock":false,"pos":{"x":-2.6883,"y":1.6555,"z":-5.0487},"rot":{"x":0.0163,"y":180.3896,"z":0.0804}},"472b87":{"lock":false,"pos":{"x":-27.4076,"y":1.6185,"z":-3.9855},"rot":{"x":359.9316,"y":315,"z":359.9554}},"4b6478":{"lock":false,"pos":{"x":-30.2243,"y":1.6954,"z":-0.03},"rot":{"x":359.9201,"y":270,"z":0.0169}},"657fc6":{"lock":false,"pos":{"x":-20.5635,"y":1.6124,"z":7.5489},"rot":{"x":359.9201,"y":269.9948,"z":0.0169}},"7234af":{"lock":false,"pos":{"x":-26.7542,"y":1.6189,"z":0.1696},"rot":{"x":359.9201,"y":269.9948,"z":0.0169}},"857d0d":{"lock":false,"pos":{"x":-4.2848,"y":1.5829,"z":-15.6021},"rot":{"x":359.9197,"y":269.9998,"z":0.0168}},"981fa3":{"lock":false,"pos":{"x":-23.6765,"y":1.6862,"z":-0.03},"rot":{"x":359.9201,"y":270,"z":0.0169}},"a2d9f5":{"lock":false,"pos":{"x":-11.8925,"y":1.6719,"z":11.1211},"rot":{"x":359.9201,"y":269.9998,"z":0.0169}},"aa08d4":{"lock":false,"pos":{"x":-17.12,"y":1.6793,"z":7.57},"rot":{"x":359.9201,"y":270,"z":0.0169}},"b25fa2":{"lock":false,"pos":{"x":-20.004,"y":1.6083,"z":-3.8134},"rot":{"x":359.9316,"y":315,"z":359.9554}},"b3c25b":{"lock":false,"pos":{"x":-23.6766,"y":1.684,"z":-7.7},"rot":{"x":359.9201,"y":269.9999,"z":0.0169}},"c605d3":{"lock":false,"pos":{"x":-23.6765,"y":1.6885,"z":7.57},"rot":{"x":359.9201,"y":269.9998,"z":0.0169}},"cce10d":{"lock":false,"pos":{"x":-17.1201,"y":1.6748,"z":-7.7},"rot":{"x":359.9201,"y":269.9999,"z":0.0169}},"d4d0a1":{"lock":false,"pos":{"x":-27.2821,"y":1.6207,"z":3.8853},"rot":{"x":359.9554,"y":224.9999,"z":0.0684}},"dd2d33":{"lock":false,"pos":{"x":-3.956,"y":1.6556,"z":-10.4412},"rot":{"x":359.9197,"y":270.0001,"z":0.0168}},"dda125":{"lock":false,"pos":{"x":-11.9758,"y":1.6824,"z":14.6596},"rot":{"x":359.9201,"y":270.0001,"z":180.0169}},"dfdabe":{"lock":false,"pos":{"x":-23.6765,"y":1.6157,"z":3.86},"rot":{"x":359.9831,"y":0.0002,"z":359.92}},"f00abc":{"lock":false,"pos":{"x":-2.7246,"y":1.664,"z":0.3733},"rot":{"x":0.0168,"y":180.0003,"z":0.0803}},"f66b3b":{"lock":false,"pos":{"x":-11.375,"y":1.5603,"z":-23.9299},"rot":{"x":0.0799,"y":89.9999,"z":359.9831}},"f935dd":{"lock":false,"pos":{"x":-20.4019,"y":1.6078,"z":-7.3231},"rot":{"x":359.9201,"y":269.9875,"z":0.0169}}}}' +MaterialIndex: -1 +MeshIndex: -1 +Name: Custom_Model_Bag +Nickname: '2: The Last King' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 14.4774227 + posY: 1.46743166 + posZ: 20.8382244 + rotX: 359.9201 + rotY: 270.0175 + rotZ: 0.0168501865 + scaleX: 2.21 + scaleY: 0.46 + scaleZ: 2.42 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 2 The Last King 6730a1/Card Ballroom c605d3.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 2 The Last King 6730a1/Card Ballroom c605d3.yaml new file mode 100644 index 000000000..07f4ebb8a --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 2 The Last King 6730a1/Card Ballroom c605d3.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 232013 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378685352/22FD056BAF1966FE2D1AC46FC1BF90C1A03A1404/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378686413/C1688C1A909FDC7357EB3EEFADAB1FBD5818BD3E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: c605d3 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Ballroom +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -23.6765 + posY: 1.6884582 + posZ: 7.56999969 + rotX: 359.9201 + rotY: 269.9998 + rotZ: 0.0168768186 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 2 The Last King 6730a1/Card Courtyard 981fa3.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 2 The Last King 6730a1/Card Courtyard 981fa3.yaml new file mode 100644 index 000000000..0cbf20763 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 2 The Last King 6730a1/Card Courtyard 981fa3.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 232016 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378685352/22FD056BAF1966FE2D1AC46FC1BF90C1A03A1404/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378686413/C1688C1A909FDC7357EB3EEFADAB1FBD5818BD3E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 981fa3 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Courtyard +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -23.6765 + posY: 1.68622029 + posZ: -0.0300005171 + rotX: 359.9201 + rotY: 269.999939 + rotZ: 0.01687632 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 2 The Last King 6730a1/Card Dining Room aa08d4.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 2 The Last King 6730a1/Card Dining Room aa08d4.yaml new file mode 100644 index 000000000..5086e37e9 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 2 The Last King 6730a1/Card Dining Room aa08d4.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 232017 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378685352/22FD056BAF1966FE2D1AC46FC1BF90C1A03A1404/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378686413/C1688C1A909FDC7357EB3EEFADAB1FBD5818BD3E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: aa08d4 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Dining Room +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -17.12 + posY: 1.67931569 + posZ: 7.56999969 + rotX: 359.9201 + rotY: 270.000031 + rotZ: 0.01687659 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 2 The Last King 6730a1/Card Discovering the Truth 3da436.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 2 The Last King 6730a1/Card Discovering the Truth 3da436.yaml new file mode 100644 index 000000000..86f37ac89 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 2 The Last King 6730a1/Card Discovering the Truth 3da436.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 231709 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2317': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378732934/F41E84FCDC0AB52634348C439A6D1A725CEB8115/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378736378/628E179D5305E95AFC25D86526320A24F8B27391/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Act 1 +GMNotes: '' +GUID: 3da436 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Discovering the Truth +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.6883 + posY: 1.655457 + posZ: -5.0487 + rotX: 0.01628891 + rotY: 180.389572 + rotZ: 0.08037001 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 2 The Last King 6730a1/Card Foyer 4b6478.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 2 The Last King 6730a1/Card Foyer 4b6478.yaml new file mode 100644 index 000000000..06ab58054 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 2 The Last King 6730a1/Card Foyer 4b6478.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 232012 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378685352/22FD056BAF1966FE2D1AC46FC1BF90C1A03A1404/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378686413/C1688C1A909FDC7357EB3EEFADAB1FBD5818BD3E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 4b6478 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Foyer +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -30.2243 + posY: 1.69535077 + posZ: -0.0300004911 + rotX: 359.9201 + rotY: 270.0 + rotZ: 0.0168761648 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 2 The Last King 6730a1/Card Gallery cce10d.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 2 The Last King 6730a1/Card Gallery cce10d.yaml new file mode 100644 index 000000000..52f59fb75 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 2 The Last King 6730a1/Card Gallery cce10d.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 232015 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378685352/22FD056BAF1966FE2D1AC46FC1BF90C1A03A1404/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378686413/C1688C1A909FDC7357EB3EEFADAB1FBD5818BD3E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: cce10d +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Gallery +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -17.1201 + posY: 1.67481935 + posZ: -7.70000029 + rotX: 359.9201 + rotY: 269.999847 + rotZ: 0.0168764424 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 2 The Last King 6730a1/Card Living Room b3c25b.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 2 The Last King 6730a1/Card Living Room b3c25b.yaml new file mode 100644 index 000000000..5ac9550ed --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 2 The Last King 6730a1/Card Living Room b3c25b.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 232014 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378685352/22FD056BAF1966FE2D1AC46FC1BF90C1A03A1404/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378686413/C1688C1A909FDC7357EB3EEFADAB1FBD5818BD3E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: b3c25b +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Living Room +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -23.6765976 + posY: 1.683962 + posZ: -7.70000029 + rotX: 359.9201 + rotY: 269.9999 + rotZ: 0.0168763064 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 2 The Last King 6730a1/Card Scenario dd2d33.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 2 The Last King 6730a1/Card Scenario dd2d33.yaml new file mode 100644 index 000000000..7724b551d --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 2 The Last King 6730a1/Card Scenario dd2d33.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 232000 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378685352/22FD056BAF1966FE2D1AC46FC1BF90C1A03A1404/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378686413/C1688C1A909FDC7357EB3EEFADAB1FBD5818BD3E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: The Last King +GMNotes: '' +GUID: dd2d33 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Scenario +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.95600033 + posY: 1.65564811 + posZ: -10.4412012 + rotX: 359.919739 + rotY: 270.0001 + rotZ: 0.0168405939 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 2 The Last King 6730a1/Custom_Model_Bag Set-aside 1cbe12.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 2 The Last King 6730a1/Custom_Model_Bag Set-aside 1cbe12.yaml new file mode 100644 index 000000000..07b849909 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 2 The Last King 6730a1/Custom_Model_Bag Set-aside 1cbe12.yaml @@ -0,0 +1,97 @@ +Autoraise: true +ColorDiffuse: + b: 0.02148666 + g: 0.00100758043 + r: 0.02148666 +ContainedObjects: +- Autoraise: true + CardID: 232202 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Mercurial and Mischevious + GMNotes: '' + GUID: bac668 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dianne Devine + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -18.4624 + posY: 3.63299751 + posZ: -4.180754 + rotX: 359.917419 + rotY: 270.000916 + rotZ: 0.0170463361 + 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: The Last King +GMNotes: '' +GUID: 1cbe12 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +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.69600081 + posY: 1.558317 + posZ: 14.2787027 + rotX: 359.955139 + rotY: 224.997971 + rotZ: 0.06867166 + scaleX: 2.0 + scaleY: 2.0 + scaleZ: 2.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 2 The Last King 6730a1/Custom_Tile 01b9fa.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 2 The Last King 6730a1/Custom_Tile 01b9fa.yaml new file mode 100644 index 000000000..0254f008d --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 2 The Last King 6730a1/Custom_Tile 01b9fa.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 01b9fa +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.6765 + posY: 1.61338806 + posZ: -3.8300004 + rotX: 359.983124 + rotY: 0.000279304775 + rotZ: 359.920074 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 2 The Last King 6730a1/Custom_Tile 170d3d.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 2 The Last King 6730a1/Custom_Tile 170d3d.yaml new file mode 100644 index 000000000..9be4cfa6c --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 2 The Last King 6730a1/Custom_Tile 170d3d.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 170d3d +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.099699 + posY: 1.61048222 + posZ: 3.24080014 + rotX: 359.955444 + rotY: 224.9999 + rotZ: 0.06840411 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 2 The Last King 6730a1/Custom_Tile 472b87.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 2 The Last King 6730a1/Custom_Tile 472b87.yaml new file mode 100644 index 000000000..ddcce74f5 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 2 The Last King 6730a1/Custom_Tile 472b87.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 472b87 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.4076 + posY: 1.61854494 + posZ: -3.98550034 + rotX: 359.93158 + rotY: 315.0 + rotZ: 359.955444 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 2 The Last King 6730a1/Custom_Tile 657fc6.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 2 The Last King 6730a1/Custom_Tile 657fc6.yaml new file mode 100644 index 000000000..fcba90c1a --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 2 The Last King 6730a1/Custom_Tile 657fc6.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 657fc6 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.5635 + posY: 1.61239755 + posZ: 7.54889965 + rotX: 359.9201 + rotY: 269.994781 + rotZ: 0.0169071872 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 2 The Last King 6730a1/Custom_Tile 7234af.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 2 The Last King 6730a1/Custom_Tile 7234af.yaml new file mode 100644 index 000000000..c7084a188 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 2 The Last King 6730a1/Custom_Tile 7234af.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 7234af +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.7542 + posY: 1.618857 + posZ: 0.169599771 + rotX: 359.9201 + rotY: 269.9948 + rotZ: 0.0169076566 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 2 The Last King 6730a1/Custom_Tile b25fa2.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 2 The Last King 6730a1/Custom_Tile b25fa2.yaml new file mode 100644 index 000000000..55f6ff97a --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 2 The Last King 6730a1/Custom_Tile b25fa2.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: b25fa2 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.004 + posY: 1.60827172 + posZ: -3.8134 + rotX: 359.93158 + rotY: 315.0 + rotZ: 359.955444 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 2 The Last King 6730a1/Custom_Tile d4d0a1.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 2 The Last King 6730a1/Custom_Tile d4d0a1.yaml new file mode 100644 index 000000000..c48153ff7 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 2 The Last King 6730a1/Custom_Tile d4d0a1.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: d4d0a1 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.2821 + posY: 1.62068737 + posZ: 3.8853004 + rotX: 359.955444 + rotY: 224.9999 + rotZ: 0.0684040561 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 2 The Last King 6730a1/Custom_Tile dfdabe.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 2 The Last King 6730a1/Custom_Tile dfdabe.yaml new file mode 100644 index 000000000..64e034754 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 2 The Last King 6730a1/Custom_Tile dfdabe.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: dfdabe +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.6765 + posY: 1.61565232 + posZ: 3.86000013 + rotX: 359.983124 + rotY: 0.000178328963 + rotZ: 359.920074 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 2 The Last King 6730a1/Custom_Tile f935dd.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 2 The Last King 6730a1/Custom_Tile f935dd.yaml new file mode 100644 index 000000000..7a7ef578c --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 2 The Last King 6730a1/Custom_Tile f935dd.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: f935dd +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.4019 + posY: 1.607793 + posZ: -7.3231 + rotX: 359.9201 + rotY: 269.987427 + rotZ: 0.0169147681 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 2 The Last King 6730a1/Custom_Tile The Last King 857d0d.ttslua b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 2 The Last King 6730a1/Custom_Tile The Last King 857d0d.ttslua new file mode 100644 index 000000000..c9acd00d0 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 2 The Last King 6730a1/Custom_Tile The Last King 857d0d.ttslua @@ -0,0 +1,25 @@ +name = 'The Last King' + +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 + +function standaloneClick() + Global.call('fillContainer', {object=self, key=name, mode='standalone'}) +end \ No newline at end of file diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 2 The Last King 6730a1/Custom_Tile The Last King 857d0d.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 2 The Last King 6730a1/Custom_Tile The Last King 857d0d.yaml new file mode 100644 index 000000000..dbe89d34f --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 2 The Last King 6730a1/Custom_Tile The Last King 857d0d.yaml @@ -0,0 +1,42 @@ +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 +GMNotes: '' +GUID: 857d0d +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Tile The Last King 857d0d.ttslua' +LuaScriptState: '' +Name: Custom_Tile +Nickname: The Last King +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -4.284801 + posY: 1.58287859 + posZ: -15.6021013 + rotX: 359.919739 + rotY: 269.999817 + rotZ: 0.01683819 + scaleX: 2.2 + scaleY: 1.0 + scaleZ: 2.2 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 2 The Last King 6730a1/Deck Agenda Deck f00abc.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 2 The Last King 6730a1/Deck Agenda Deck f00abc.yaml new file mode 100644 index 000000000..93d9102c1 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 2 The Last King 6730a1/Deck Agenda Deck f00abc.yaml @@ -0,0 +1,129 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 231708 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2317': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378732934/F41E84FCDC0AB52634348C439A6D1A725CEB8115/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378736378/628E179D5305E95AFC25D86526320A24F8B27391/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 2 + GMNotes: '' + GUID: '798037' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Terrifying Truth + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -60.58086 + posY: 1.64276075 + posZ: 17.59479 + rotX: 0.0304258857 + rotY: 170.782959 + rotZ: 0.06843461 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231707 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2317': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378732934/F41E84FCDC0AB52634348C439A6D1A725CEB8115/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378736378/628E179D5305E95AFC25D86526320A24F8B27391/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 1 + GMNotes: '' + GUID: 70d1f2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Fashionably Late + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -60.429882 + posY: 1.78762019 + posZ: 17.2758675 + rotX: 0.015762331 + rotY: 179.994644 + rotZ: 0.07067809 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2317': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378732934/F41E84FCDC0AB52634348C439A6D1A725CEB8115/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378736378/628E179D5305E95AFC25D86526320A24F8B27391/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 231708 +- 231707 +Description: '' +GMNotes: '' +GUID: f00abc +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Agenda Deck +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.7246 + posY: 1.66397715 + posZ: 0.373300225 + rotX: 0.0168347228 + rotY: 180.000259 + rotZ: 0.0802579746 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 2 The Last King 6730a1/Deck Bystanders a2d9f5.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 2 The Last King 6730a1/Deck Bystanders a2d9f5.yaml new file mode 100644 index 000000000..f5973943c --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 2 The Last King 6730a1/Deck Bystanders a2d9f5.yaml @@ -0,0 +1,258 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 232052 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378685352/22FD056BAF1966FE2D1AC46FC1BF90C1A03A1404/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378686413/C1688C1A909FDC7357EB3EEFADAB1FBD5818BD3E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Talented Entertainer + GMNotes: '' + GUID: 560b08 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ashleigh Clarke + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -24.9959469 + posY: 1.58886766 + posZ: 2.733978 + rotX: 359.9202 + rotY: 269.9997 + rotZ: 0.01637834 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232051 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378685352/22FD056BAF1966FE2D1AC46FC1BF90C1A03A1404/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378686413/C1688C1A909FDC7357EB3EEFADAB1FBD5818BD3E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Impassioned Producer + GMNotes: '' + GUID: a6a957 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Sebastien Moreau + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -24.889698 + posY: 1.74999762 + posZ: 2.996538 + rotX: 359.921875 + rotY: 269.999725 + rotZ: 0.0139834387 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232050 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378685352/22FD056BAF1966FE2D1AC46FC1BF90C1A03A1404/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378686413/C1688C1A909FDC7357EB3EEFADAB1FBD5818BD3E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Costume Designer + GMNotes: '' + GUID: ce986e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ishimaru Haruko + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -24.3762417 + posY: 1.76662624 + posZ: 2.888781 + rotX: 359.918823 + rotY: 269.999725 + rotZ: 0.0149787869 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232049 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378685352/22FD056BAF1966FE2D1AC46FC1BF90C1A03A1404/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378686413/C1688C1A909FDC7357EB3EEFADAB1FBD5818BD3E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Dignified Financier + GMNotes: '' + GUID: a1145d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Jordan Perry + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -24.66908 + posY: 1.75318277 + posZ: 2.24145 + rotX: 359.920319 + rotY: 269.9997 + rotZ: 0.01660872 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232048 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378685352/22FD056BAF1966FE2D1AC46FC1BF90C1A03A1404/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378686413/C1688C1A909FDC7357EB3EEFADAB1FBD5818BD3E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Sociable Hostess + GMNotes: '' + GUID: aa08d4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Constance Dumaine + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -24.8349228 + posY: 1.75145817 + posZ: 2.52668071 + rotX: 359.920441 + rotY: 269.999969 + rotZ: 0.0164702125 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378685352/22FD056BAF1966FE2D1AC46FC1BF90C1A03A1404/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378686413/C1688C1A909FDC7357EB3EEFADAB1FBD5818BD3E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 232052 +- 232051 +- 232050 +- 232049 +- 232048 +Description: '' +GMNotes: '' +GUID: a2d9f5 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Bystanders +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -11.892498 + posY: 1.67193961 + posZ: 11.1211 + rotX: 359.9201 + rotY: 269.999725 + rotZ: 0.0168765429 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 2 The Last King 6730a1/Deck Encounter Deck 0e3277.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 2 The Last King 6730a1/Deck Encounter Deck 0e3277.yaml new file mode 100644 index 000000000..bdcc9a431 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 2 The Last King 6730a1/Deck Encounter Deck 0e3277.yaml @@ -0,0 +1,996 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 232204 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: 62736c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Tough Crowd + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -19.2509537 + posY: 1.82136452 + posZ: 10.4195251 + rotX: 359.943665 + rotY: 269.999664 + rotZ: 180.022064 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232204 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: de32ec + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Tough Crowd + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 17.4420319 + posY: 1.68660319 + posZ: 14.0227976 + rotX: 359.9281 + rotY: 269.997772 + rotZ: 0.0118490057 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232203 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: f89d68 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Fine Dining + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.80756 + posY: 1.5353328 + posZ: 18.971468 + rotX: 359.9206 + rotY: 269.992676 + rotZ: 0.0138819059 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232203 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: d7ccce + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Fine Dining + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.9983463 + posY: 1.6891315 + posZ: 18.7847252 + rotX: 359.925781 + rotY: 269.992676 + rotZ: 0.009532106 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232221 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Pact. + GMNotes: '' + GUID: c189a5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dance of the Yellow King + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -33.0721054 + posY: 1.59816492 + posZ: -3.9468503 + rotX: 359.920135 + rotY: 270.00177 + rotZ: 0.0167396571 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232221 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Pact. + GMNotes: '' + GUID: 74b258 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dance of the Yellow King + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -32.95977 + posY: 1.76483011 + posZ: -3.889132 + rotX: 359.9195 + rotY: 270.001862 + rotZ: 0.0146204839 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232220 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Lunatic. + GMNotes: '' + GUID: bce7b8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Young Psychopath + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -32.2588272 + posY: 1.596186 + posZ: -6.7895093 + rotX: 359.920227 + rotY: 269.9985 + rotZ: 0.0162243973 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232220 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Lunatic. + GMNotes: '' + GUID: 40c629 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Young Psychopath + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -32.21109 + posY: 1.762528 + posZ: -6.736423 + rotX: 359.9219 + rotY: 269.998535 + rotZ: 0.0156734586 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232219 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Lunatic. + GMNotes: '' + GUID: 006497 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Maniac + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -33.0786972 + posY: 1.5994426 + posZ: 0.4528645 + rotX: 359.920441 + rotY: 269.9931 + rotZ: 0.0150249889 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232219 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Lunatic. + GMNotes: '' + GUID: 068703 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Maniac + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -33.03474 + posY: 1.73884428 + posZ: 0.8094432 + rotX: 359.959045 + rotY: 270.001862 + rotZ: -0.00308930734 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232227 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Creature. + GMNotes: '' + GUID: 3fac08 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Roach Swarm + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -41.80118 + posY: 1.61098814 + posZ: -1.53446472 + rotX: 359.9206 + rotY: 269.975952 + rotZ: 0.01309729 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232227 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Creature. + GMNotes: '' + GUID: 8ccfdd + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Roach Swarm + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -41.75242 + posY: 1.76184118 + posZ: -1.60954678 + rotX: 359.930359 + rotY: 269.976074 + rotZ: 0.004112804 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232226 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: b4ebc7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Corrosion + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -45.6514969 + posY: 1.61713815 + posZ: 1.27763367 + rotX: 359.921082 + rotY: 269.975647 + rotZ: 0.009976891 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232226 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: dc5296 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Corrosion + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -45.5141678 + posY: 1.76896763 + posZ: 1.02962911 + rotX: 359.909271 + rotY: 269.9754 + rotZ: 0.0175973848 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232225 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: 2b74e5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ooze and Filth + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -46.103035 + posY: 1.61935973 + posZ: 6.519607 + rotX: 359.920624 + rotY: 269.9756 + rotZ: 0.0131920464 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232225 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: 9f5a02 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ooze and Filth + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -45.99835 + posY: 1.77182579 + posZ: 6.51029634 + rotX: 359.9096 + rotY: 269.975525 + rotZ: 0.0131797241 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232229 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Omen. Pact. + GMNotes: '' + GUID: 70009a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Pale Mask Beckons + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -28.2434616 + posY: 1.5971483 + posZ: 15.4716158 + rotX: 359.920166 + rotY: 270.021973 + rotZ: 0.01652023 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232228 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Pact. + GMNotes: '' + GUID: c023fe + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Marked by the Sign + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -28.2468338 + posY: 1.76336575 + posZ: 15.2574654 + rotX: 359.9197 + rotY: 270.021973 + rotZ: 0.0146484794 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232228 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Pact. + GMNotes: '' + GUID: 8c321d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Marked by the Sign + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -28.2435665 + posY: 1.77552032 + posZ: 15.0727062 + rotX: 359.91925 + rotY: 270.021973 + rotZ: 0.0173290391 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233219 + 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 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: 6e7cb8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 233219 + 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 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: 8af879 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 233219 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2332': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: 6e7cb8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ancient Evils + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -21.8219948 + posY: 1.58849335 + posZ: 10.1253748 + rotX: 359.933868 + rotY: 270.008453 + rotZ: 180.07785 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '2332': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 232204 +- 232204 +- 232203 +- 232203 +- 232221 +- 232221 +- 232220 +- 232220 +- 232219 +- 232219 +- 232227 +- 232227 +- 232226 +- 232226 +- 232225 +- 232225 +- 232229 +- 232228 +- 232228 +- 233219 +- 233219 +- 233219 +Description: '' +GMNotes: '' +GUID: 0e3277 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Encounter Deck +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.92750025 + posY: 1.729074 + posZ: 5.75720072 + rotX: 359.919739 + rotY: 270.000366 + rotZ: 180.016815 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 2 The Last King 6730a1/Deck Sickening Reality dda125.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 2 The Last King 6730a1/Deck Sickening Reality dda125.yaml new file mode 100644 index 000000000..6b6418bd9 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 2 The Last King 6730a1/Deck Sickening Reality dda125.yaml @@ -0,0 +1,258 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 232053 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378685352/22FD056BAF1966FE2D1AC46FC1BF90C1A03A1404/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378686413/C1688C1A909FDC7357EB3EEFADAB1FBD5818BD3E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: A Little Too Sociable + GMNotes: '' + GUID: 4ecefb + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Constance Dumaine + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -24.9232979 + posY: 1.753775 + posZ: 0.326277971 + rotX: 359.919769 + rotY: 270.000427 + rotZ: 180.017624 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232054 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378685352/22FD056BAF1966FE2D1AC46FC1BF90C1A03A1404/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378686413/C1688C1A909FDC7357EB3EEFADAB1FBD5818BD3E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: An Imposing Presence + GMNotes: '' + GUID: 1b6382 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Jordan Perry + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -24.9744949 + posY: 1.75588524 + posZ: 0.442909718 + rotX: 359.9204 + rotY: 270.000244 + rotZ: 180.017181 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232055 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378685352/22FD056BAF1966FE2D1AC46FC1BF90C1A03A1404/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378686413/C1688C1A909FDC7357EB3EEFADAB1FBD5818BD3E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Just Skin and Bones + GMNotes: '' + GUID: 5f2034 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ishimaru Haruko + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -24.9985275 + posY: 1.769759 + posZ: 1.3053416 + rotX: 359.919739 + rotY: 270.0004 + rotZ: 180.013733 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232056 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378685352/22FD056BAF1966FE2D1AC46FC1BF90C1A03A1404/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378686413/C1688C1A909FDC7357EB3EEFADAB1FBD5818BD3E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Savage Hysteria + GMNotes: '' + GUID: 4fd6d0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Sebastien Moreau + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -0.0113096954 + posY: 1.56856108 + posZ: 42.56954 + rotX: 359.9205 + rotY: 270.000183 + rotZ: 180.0193 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232057 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378685352/22FD056BAF1966FE2D1AC46FC1BF90C1A03A1404/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378686413/C1688C1A909FDC7357EB3EEFADAB1FBD5818BD3E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Songs Die Unheard + GMNotes: '' + GUID: f003bd + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ashleigh Clarke + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -1.03892732 + posY: 1.57140112 + posZ: 47.60818 + rotX: 359.921265 + rotY: 270.000244 + rotZ: 180.024368 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378685352/22FD056BAF1966FE2D1AC46FC1BF90C1A03A1404/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378686413/C1688C1A909FDC7357EB3EEFADAB1FBD5818BD3E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 232053 +- 232054 +- 232055 +- 232056 +- 232057 +Description: '' +GMNotes: '' +GUID: dda125 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Sickening Reality +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -11.9757986 + posY: 1.68243515 + posZ: 14.6596022 + 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 The Path to Carcosa 1b887c/Custom_Model_Bag 2 The Last King 6730a1/Notecard Errata f66b3b.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 2 The Last King 6730a1/Notecard Errata f66b3b.yaml new file mode 100644 index 000000000..817ed5683 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 2 The Last King 6730a1/Notecard Errata f66b3b.yaml @@ -0,0 +1,34 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +Description: "Corrosion (102)\r\nThis card\u2019s [b]Revelation[/b] ability should\ + \ read: \u201CDiscard [b][i]Item[/b][/i] assets from your\r play area and/or from\ + \ your hand\u2026\u201D" +GMNotes: '' +GUID: f66b3b +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Notecard +Nickname: Errata +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -11.3750019 + posY: 1.56032062 + posZ: -23.929903 + rotX: 0.07987837 + rotY: 89.99994 + rotZ: 359.983124 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 3 Echoes of the Past 42d2dc.ttslua b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 3 Echoes of the Past 42d2dc.ttslua new file mode 100644 index 000000000..46067f58e --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 3 Echoes of the Past 42d2dc.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.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.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 Path to Carcosa 1b887c/Custom_Model_Bag 3 Echoes of the Past 42d2dc.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 3 Echoes of the Past 42d2dc.yaml new file mode 100644 index 000000000..11bda05d0 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 3 Echoes of the Past 42d2dc.yaml @@ -0,0 +1,90 @@ +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 3 Echoes of the Past 42d2dc/Custom_Model_Bag Set-aside + 0a79b8.yaml' +- !include 'Custom_Model_Bag 3 Echoes of the Past 42d2dc/Deck Encounter Deck f2ab06.yaml' +- !include 'Custom_Model_Bag 3 Echoes of the Past 42d2dc/Deck Agenda Deck 188399.yaml' +- !include 'Custom_Model_Bag 3 Echoes of the Past 42d2dc/Deck Act Deck 77e479.yaml' +- !include 'Custom_Model_Bag 3 Echoes of the Past 42d2dc/Card Scenario aa08d4.yaml' +- !include 'Custom_Model_Bag 3 Echoes of the Past 42d2dc/Custom_Tile Echoes of the + Past 452210.yaml' +- !include 'Custom_Model_Bag 3 Echoes of the Past 42d2dc/Notecard Errata 1 30a233.yaml' +- !include 'Custom_Model_Bag 3 Echoes of the Past 42d2dc/Deck Third Floor f72ca3.yaml' +- !include 'Custom_Model_Bag 3 Echoes of the Past 42d2dc/Deck Second Floor ba0d96.yaml' +- !include 'Custom_Model_Bag 3 Echoes of the Past 42d2dc/Deck Ground Floor fc0ccf.yaml' +- !include 'Custom_Model_Bag 3 Echoes of the Past 42d2dc/Card Quiet Halls 4e601e.yaml' +- !include 'Custom_Model_Bag 3 Echoes of the Past 42d2dc/Card Quiet Halls 93aee3.yaml' +- !include 'Custom_Model_Bag 3 Echoes of the Past 42d2dc/Custom_Tile 106e0f.yaml' +- !include 'Custom_Model_Bag 3 Echoes of the Past 42d2dc/Card Entry Hall 9be8fd.yaml' +- !include 'Custom_Model_Bag 3 Echoes of the Past 42d2dc/Custom_Tile 68f53e.yaml' +- !include 'Custom_Model_Bag 3 Echoes of the Past 42d2dc/Custom_Tile 740ce6.yaml' +- !include 'Custom_Model_Bag 3 Echoes of the Past 42d2dc/Custom_Tile fe7779.yaml' +- !include 'Custom_Model_Bag 3 Echoes of the Past 42d2dc/Custom_Tile 763978.yaml' +- !include 'Custom_Model_Bag 3 Echoes of the Past 42d2dc/Custom_Tile cb4537.yaml' +- !include 'Custom_Model_Bag 3 Echoes of the Past 42d2dc/Custom_Tile 339e43.yaml' +- !include 'Custom_Model_Bag 3 Echoes of the Past 42d2dc/Custom_Tile 7234af.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/829135118403811527/7F4BB68D974D97E41EADC007DB2C67D958B82D20/ + MaterialIndex: 3 + MeshURL: https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj + NormalURL: '' + TypeIndex: 6 +Description: '' +GMNotes: '' +GUID: 42d2dc +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Model_Bag 3 Echoes of the Past 42d2dc.ttslua' +LuaScriptState: '{"ml":{"0a79b8":{"lock":false,"pos":{"x":1.6965,"y":1.5583,"z":14.2787},"rot":{"x":359.9551,"y":224.9979,"z":0.0687}},"106e0f":{"lock":false,"pos":{"x":-20.5475,"y":1.6102,"z":0.004},"rot":{"x":359.9201,"y":269.9951,"z":0.0169}},"188399":{"lock":false,"pos":{"x":-2.7248,"y":1.6566,"z":0.3733},"rot":{"x":0.0168,"y":179.9998,"z":0.0803}},"30a233":{"lock":false,"pos":{"x":-11.3366,"y":1.5603,"z":-23.6845},"rot":{"x":0.0799,"y":89.9921,"z":359.9831}},"339e43":{"lock":false,"pos":{"x":-17.12,"y":1.6065,"z":3.86},"rot":{"x":359.9831,"y":0.0002,"z":359.92}},"452210":{"lock":false,"pos":{"x":-4.0608,"y":1.5826,"z":-15.3593},"rot":{"x":359.9197,"y":269.9995,"z":0.0168}},"4e601e":{"lock":false,"pos":{"x":-23.6765,"y":1.6862,"z":-0.03},"rot":{"x":359.9201,"y":269.9985,"z":0.0169}},"68f53e":{"lock":false,"pos":{"x":-30.2242,"y":1.6225,"z":-3.83},"rot":{"x":359.9831,"y":0.0001,"z":359.9201}},"7234af":{"lock":false,"pos":{"x":-27.264,"y":1.6194,"z":-0.2535},"rot":{"x":359.9201,"y":269.9951,"z":0.0169}},"740ce6":{"lock":false,"pos":{"x":-30.2242,"y":1.6248,"z":3.86},"rot":{"x":359.9831,"y":0.0002,"z":359.9201}},"763978":{"lock":false,"pos":{"x":-23.6765,"y":1.6134,"z":-3.83},"rot":{"x":359.9831,"y":0.0001,"z":359.9201}},"77e479":{"lock":false,"pos":{"x":-2.6886,"y":1.655,"z":-5.0485},"rot":{"x":0.0168,"y":179.9997,"z":0.0803}},"93aee3":{"lock":false,"pos":{"x":-17.12,"y":1.6771,"z":-0.03},"rot":{"x":359.9201,"y":269.9999,"z":0.0169}},"9be8fd":{"lock":false,"pos":{"x":-30.2243,"y":1.6954,"z":-0.03},"rot":{"x":359.9201,"y":269.9993,"z":0.0169}},"aa08d4":{"lock":false,"pos":{"x":-3.956,"y":1.6556,"z":-10.4412},"rot":{"x":359.9197,"y":269.9999,"z":0.0168}},"ba0d96":{"lock":false,"pos":{"x":-23.6766,"y":1.6902,"z":15.1901},"rot":{"x":359.9201,"y":270,"z":0.0169}},"cb4537":{"lock":false,"pos":{"x":-17.12,"y":1.6042,"z":-3.83},"rot":{"x":359.9831,"y":0.0001,"z":359.9201}},"f2ab06":{"lock":false,"pos":{"x":-3.9276,"y":1.7877,"z":5.7571},"rot":{"x":359.9197,"y":270.0007,"z":180.0168}},"f72ca3":{"lock":false,"pos":{"x":-17.1201,"y":1.6811,"z":15.19},"rot":{"x":359.9201,"y":270.0002,"z":0.0169}},"fc0ccf":{"lock":false,"pos":{"x":-30.2243,"y":1.6994,"z":15.19},"rot":{"x":359.9201,"y":269.9999,"z":0.0169}},"fe7779":{"lock":false,"pos":{"x":-23.6765,"y":1.6157,"z":3.86},"rot":{"x":359.9831,"y":0.0001,"z":359.92}}}}' +MaterialIndex: -1 +MeshIndex: -1 +Name: Custom_Model_Bag +Nickname: '3: Echoes of the Past' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 14.4776087 + posY: 1.46507311 + posZ: 12.68638 + rotX: 359.9201 + rotY: 270.011444 + rotZ: 0.01685851 + scaleX: 2.21 + scaleY: 0.46 + scaleZ: 2.42 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 3 Echoes of the Past 42d2dc/Card Entry Hall 9be8fd.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 3 Echoes of the Past 42d2dc/Card Entry Hall 9be8fd.yaml new file mode 100644 index 000000000..444a85527 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 3 Echoes of the Past 42d2dc/Card Entry Hall 9be8fd.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 232019 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378685352/22FD056BAF1966FE2D1AC46FC1BF90C1A03A1404/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378686413/C1688C1A909FDC7357EB3EEFADAB1FBD5818BD3E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Ground Floor. +GMNotes: '' +GUID: 9be8fd +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Entry Hall +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -30.2242641 + posY: 1.69535077 + posZ: -0.03003415 + rotX: 359.9201 + rotY: 269.999268 + rotZ: 0.0168772973 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 3 Echoes of the Past 42d2dc/Card Quiet Halls 4e601e.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 3 Echoes of the Past 42d2dc/Card Quiet Halls 4e601e.yaml new file mode 100644 index 000000000..4db3e0e4a --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 3 Echoes of the Past 42d2dc/Card Quiet Halls 4e601e.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 232023 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378685352/22FD056BAF1966FE2D1AC46FC1BF90C1A03A1404/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378686413/C1688C1A909FDC7357EB3EEFADAB1FBD5818BD3E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Second Floor. +GMNotes: '' +GUID: 4e601e +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Quiet Halls +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -23.6765461 + posY: 1.68622041 + posZ: -0.0300300922 + rotX: 359.9201 + rotY: 269.998474 + rotZ: 0.0168784223 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 3 Echoes of the Past 42d2dc/Card Quiet Halls 93aee3.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 3 Echoes of the Past 42d2dc/Card Quiet Halls 93aee3.yaml new file mode 100644 index 000000000..a822bff28 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 3 Echoes of the Past 42d2dc/Card Quiet Halls 93aee3.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 232027 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378685352/22FD056BAF1966FE2D1AC46FC1BF90C1A03A1404/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378686413/C1688C1A909FDC7357EB3EEFADAB1FBD5818BD3E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Third Floor. +GMNotes: '' +GUID: 93aee3 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Quiet Halls +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -17.12003 + posY: 1.67707777 + posZ: -0.0300327837 + rotX: 359.9201 + rotY: 269.999878 + rotZ: 0.0168763045 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 3 Echoes of the Past 42d2dc/Card Scenario aa08d4.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 3 Echoes of the Past 42d2dc/Card Scenario aa08d4.yaml new file mode 100644 index 000000000..2ac42def2 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 3 Echoes of the Past 42d2dc/Card Scenario aa08d4.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 232018 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378685352/22FD056BAF1966FE2D1AC46FC1BF90C1A03A1404/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378686413/C1688C1A909FDC7357EB3EEFADAB1FBD5818BD3E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Echoes of the Past +GMNotes: '' +GUID: aa08d4 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Scenario +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.95599 + posY: 1.65564811 + posZ: -10.4411526 + rotX: 359.919739 + rotY: 269.999939 + rotZ: 0.016842138 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 3 Echoes of the Past 42d2dc/Custom_Model_Bag Set-aside 0a79b8.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 3 Echoes of the Past 42d2dc/Custom_Model_Bag Set-aside 0a79b8.yaml new file mode 100644 index 000000000..62ab8c5c8 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 3 Echoes of the Past 42d2dc/Custom_Model_Bag Set-aside 0a79b8.yaml @@ -0,0 +1,61 @@ +Autoraise: true +ColorDiffuse: + b: 0.02148666 + g: 0.00100758043 + r: 0.02148666 +ContainedObjects: +- !include 'Custom_Model_Bag Set-aside 0a79b8/Card Sebastien Moreau 4fd6d0.yaml' +- !include 'Custom_Model_Bag Set-aside 0a79b8/Card Clasp of Black Onyx f295d9.yaml' +- !include 'Custom_Model_Bag Set-aside 0a79b8/Card The Tattered Cloak 5d30a1.yaml' +- !include 'Custom_Model_Bag Set-aside 0a79b8/Card Mr. Peabody 46185e.yaml' +- !include 'Custom_Model_Bag Set-aside 0a79b8/Card Possessed Oathspeaker eb8243.yaml' +- !include 'Custom_Model_Bag Set-aside 0a79b8/Card Hidden Library d81228.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: Echoes of the Past +GMNotes: '' +GUID: 0a79b8 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +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.69654524 + posY: 1.558317 + posZ: 14.2787189 + rotX: 359.955139 + rotY: 224.99794 + rotZ: 0.06867198 + scaleX: 2.0 + scaleY: 2.0 + scaleZ: 2.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 3 Echoes of the Past 42d2dc/Custom_Model_Bag Set-aside 0a79b8/Card Clasp of Black Onyx f295d9.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 3 Echoes of the Past 42d2dc/Custom_Model_Bag Set-aside 0a79b8/Card Clasp of Black Onyx f295d9.yaml new file mode 100644 index 000000000..2e5aef6e6 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 3 Echoes of the Past 42d2dc/Custom_Model_Bag Set-aside 0a79b8/Card Clasp of Black Onyx f295d9.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: A Gift Unlooked For +GMNotes: '' +GUID: f295d9 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Clasp of Black Onyx +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 2.667964 + posY: 3.61657858 + posZ: 39.51474 + rotX: 359.875153 + rotY: 269.988922 + rotZ: 0.0111000445 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 3 Echoes of the Past 42d2dc/Custom_Model_Bag Set-aside 0a79b8/Card Hidden Library d81228.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 3 Echoes of the Past 42d2dc/Custom_Model_Bag Set-aside 0a79b8/Card Hidden Library d81228.yaml new file mode 100644 index 000000000..329f4eaf3 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 3 Echoes of the Past 42d2dc/Custom_Model_Bag Set-aside 0a79b8/Card Hidden Library d81228.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 232031 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378685352/22FD056BAF1966FE2D1AC46FC1BF90C1A03A1404/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378686413/C1688C1A909FDC7357EB3EEFADAB1FBD5818BD3E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: d81228 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Hidden Library +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 2.735579 + posY: 3.61623287 + posZ: 39.2034645 + rotX: 359.964081 + rotY: 270.0115 + rotZ: 0.000191868981 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 3 Echoes of the Past 42d2dc/Custom_Model_Bag Set-aside 0a79b8/Card Mr. Peabody 46185e.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 3 Echoes of the Past 42d2dc/Custom_Model_Bag Set-aside 0a79b8/Card Mr. Peabody 46185e.yaml new file mode 100644 index 000000000..8cf748013 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 3 Echoes of the Past 42d2dc/Custom_Model_Bag Set-aside 0a79b8/Card Mr. Peabody 46185e.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 232431 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2324': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: Historical Society Curator +GMNotes: '' +GUID: 46185e +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Mr. Peabody +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 2.923236 + posY: 3.616156 + posZ: 39.7631035 + rotX: 359.8374 + rotY: 270.001068 + rotZ: 0.0298295617 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 3 Echoes of the Past 42d2dc/Custom_Model_Bag Set-aside 0a79b8/Card Possessed Oathspeaker eb8243.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 3 Echoes of the Past 42d2dc/Custom_Model_Bag Set-aside 0a79b8/Card Possessed Oathspeaker eb8243.yaml new file mode 100644 index 000000000..d699c266b --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 3 Echoes of the Past 42d2dc/Custom_Model_Bag Set-aside 0a79b8/Card Possessed Oathspeaker eb8243.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 232230 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: A Damnable Fate +GMNotes: '' +GUID: eb8243 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Possessed Oathspeaker +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 4.453987 + posY: 3.61144137 + posZ: 39.9879 + rotX: 358.86673 + rotY: 270.016357 + rotZ: 0.0165896118 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 3 Echoes of the Past 42d2dc/Custom_Model_Bag Set-aside 0a79b8/Card Sebastien Moreau 4fd6d0.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 3 Echoes of the Past 42d2dc/Custom_Model_Bag Set-aside 0a79b8/Card Sebastien Moreau 4fd6d0.yaml new file mode 100644 index 000000000..d80043bc5 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 3 Echoes of the Past 42d2dc/Custom_Model_Bag Set-aside 0a79b8/Card Sebastien Moreau 4fd6d0.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 232056 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378685352/22FD056BAF1966FE2D1AC46FC1BF90C1A03A1404/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378686413/C1688C1A909FDC7357EB3EEFADAB1FBD5818BD3E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Savage Hysteria +GMNotes: '' +GUID: 4fd6d0 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Sebastien Moreau +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 2.52583766 + posY: 3.61648 + posZ: 39.2917137 + rotX: 359.91507 + rotY: 269.990936 + rotZ: 0.0133263608 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 3 Echoes of the Past 42d2dc/Custom_Model_Bag Set-aside 0a79b8/Card The Tattered Cloak 5d30a1.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 3 Echoes of the Past 42d2dc/Custom_Model_Bag Set-aside 0a79b8/Card The Tattered Cloak 5d30a1.yaml new file mode 100644 index 000000000..aa6db945d --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 3 Echoes of the Past 42d2dc/Custom_Model_Bag Set-aside 0a79b8/Card The Tattered Cloak 5d30a1.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Regalia Dementia +GMNotes: '' +GUID: 5d30a1 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: The Tattered Cloak +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 2.51336741 + posY: 3.616535 + posZ: 39.2301636 + rotX: 359.919617 + rotY: 270.001465 + rotZ: 0.0169762447 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 3 Echoes of the Past 42d2dc/Custom_Tile 106e0f.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 3 Echoes of the Past 42d2dc/Custom_Tile 106e0f.yaml new file mode 100644 index 000000000..bbd992023 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 3 Echoes of the Past 42d2dc/Custom_Tile 106e0f.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 106e0f +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.5475 + posY: 1.61015356 + posZ: 0.0039997953 + rotX: 359.9201 + rotY: 269.995148 + rotZ: 0.0169073679 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 3 Echoes of the Past 42d2dc/Custom_Tile 339e43.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 3 Echoes of the Past 42d2dc/Custom_Tile 339e43.yaml new file mode 100644 index 000000000..3cd04cbcc --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 3 Echoes of the Past 42d2dc/Custom_Tile 339e43.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 339e43 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.1199989 + posY: 1.6065098 + posZ: 3.86000013 + rotX: 359.983124 + rotY: 0.000187545433 + rotZ: 359.920044 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 3 Echoes of the Past 42d2dc/Custom_Tile 68f53e.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 3 Echoes of the Past 42d2dc/Custom_Tile 68f53e.yaml new file mode 100644 index 000000000..8d7cc2749 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 3 Echoes of the Past 42d2dc/Custom_Tile 68f53e.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 68f53e +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.82999945 + rotX: 359.983124 + rotY: 0.000132068351 + rotZ: 359.920074 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 3 Echoes of the Past 42d2dc/Custom_Tile 7234af.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 3 Echoes of the Past 42d2dc/Custom_Tile 7234af.yaml new file mode 100644 index 000000000..666b17091 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 3 Echoes of the Past 42d2dc/Custom_Tile 7234af.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 7234af +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.264 + posY: 1.61944342 + posZ: -0.253500283 + rotX: 359.9201 + rotY: 269.995148 + rotZ: 0.01690644 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 3 Echoes of the Past 42d2dc/Custom_Tile 740ce6.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 3 Echoes of the Past 42d2dc/Custom_Tile 740ce6.yaml new file mode 100644 index 000000000..cd666fef8 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 3 Echoes of the Past 42d2dc/Custom_Tile 740ce6.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 740ce6 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.62478256 + posZ: 3.86000013 + rotX: 359.983124 + rotY: 0.000210956161 + rotZ: 359.920074 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 3 Echoes of the Past 42d2dc/Custom_Tile 763978.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 3 Echoes of the Past 42d2dc/Custom_Tile 763978.yaml new file mode 100644 index 000000000..8da40d138 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 3 Echoes of the Past 42d2dc/Custom_Tile 763978.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: '763978' +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.6765 + posY: 1.613388 + posZ: -3.83000064 + rotX: 359.983124 + rotY: 0.000118044423 + rotZ: 359.920074 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 3 Echoes of the Past 42d2dc/Custom_Tile cb4537.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 3 Echoes of the Past 42d2dc/Custom_Tile cb4537.yaml new file mode 100644 index 000000000..c20ddf539 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 3 Echoes of the Past 42d2dc/Custom_Tile cb4537.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: cb4537 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.60424542 + posZ: -3.82999969 + rotX: 359.983124 + rotY: 0.00010714752 + rotZ: 359.920074 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 3 Echoes of the Past 42d2dc/Custom_Tile fe7779.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 3 Echoes of the Past 42d2dc/Custom_Tile fe7779.yaml new file mode 100644 index 000000000..91af43d92 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 3 Echoes of the Past 42d2dc/Custom_Tile fe7779.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: fe7779 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.61565244 + posZ: 3.86000037 + rotX: 359.983124 + rotY: 0.000124342332 + rotZ: 359.920044 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 3 Echoes of the Past 42d2dc/Custom_Tile Echoes of the Past 452210.ttslua b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 3 Echoes of the Past 42d2dc/Custom_Tile Echoes of the Past 452210.ttslua new file mode 100644 index 000000000..9852aeb27 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 3 Echoes of the Past 42d2dc/Custom_Tile Echoes of the Past 452210.ttslua @@ -0,0 +1,25 @@ +name = 'Echoes of the Past' + +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 + +function standaloneClick() + Global.call('fillContainer', {object=self, key=name, mode='standalone'}) +end diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 3 Echoes of the Past 42d2dc/Custom_Tile Echoes of the Past 452210.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 3 Echoes of the Past 42d2dc/Custom_Tile Echoes of the Past 452210.yaml new file mode 100644 index 000000000..976883bba --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 3 Echoes of the Past 42d2dc/Custom_Tile Echoes of the Past 452210.yaml @@ -0,0 +1,42 @@ +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 +GMNotes: '' +GUID: '452210' +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Tile Echoes of the Past 452210.ttslua' +LuaScriptState: '' +Name: Custom_Tile +Nickname: Echoes of the Past +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -4.0608 + posY: 1.58263612 + posZ: -15.3593006 + rotX: 359.919739 + rotY: 269.999542 + rotZ: 0.0168385468 + scaleX: 2.2 + scaleY: 1.0 + scaleZ: 2.2 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 3 Echoes of the Past 42d2dc/Deck Act Deck 77e479.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 3 Echoes of the Past 42d2dc/Deck Act Deck 77e479.yaml new file mode 100644 index 000000000..47289afc2 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 3 Echoes of the Past 42d2dc/Deck Act Deck 77e479.yaml @@ -0,0 +1,172 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 231715 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2317': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378732934/F41E84FCDC0AB52634348C439A6D1A725CEB8115/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378736378/628E179D5305E95AFC25D86526320A24F8B27391/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 3 + GMNotes: '' + GUID: 3d6b80 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Oath + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -53.2045174 + posY: 1.6290406 + posZ: 5.590996 + rotX: 0.0252042729 + rotY: 174.0672 + rotZ: 0.0778793 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231714 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2317': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378732934/F41E84FCDC0AB52634348C439A6D1A725CEB8115/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378736378/628E179D5305E95AFC25D86526320A24F8B27391/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 2 + GMNotes: '' + GUID: 452df1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Mistakes of the Past + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -53.3106346 + posY: 1.77511835 + posZ: 5.47950554 + rotX: -0.004284563 + rotY: 180.849213 + rotZ: 0.0517339781 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231713 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2317': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378732934/F41E84FCDC0AB52634348C439A6D1A725CEB8115/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378736378/628E179D5305E95AFC25D86526320A24F8B27391/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 1 + GMNotes: '' + GUID: 3da436 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Race for Answers + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -53.257782 + posY: 1.79245424 + posZ: 5.53867865 + rotX: -0.003062586 + rotY: 180.178726 + rotZ: 0.0659932643 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2317': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378732934/F41E84FCDC0AB52634348C439A6D1A725CEB8115/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378736378/628E179D5305E95AFC25D86526320A24F8B27391/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 231715 +- 231714 +- 231713 +Description: '' +GMNotes: '' +GUID: 77e479 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Act Deck +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.68857145 + posY: 1.65499735 + posZ: -5.04852438 + rotX: 0.0168352555 + rotY: 179.999741 + rotZ: 0.08025868 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 3 Echoes of the Past 42d2dc/Deck Agenda Deck 188399.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 3 Echoes of the Past 42d2dc/Deck Agenda Deck 188399.yaml new file mode 100644 index 000000000..eff7208e7 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 3 Echoes of the Past 42d2dc/Deck Agenda Deck 188399.yaml @@ -0,0 +1,172 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 231712 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2317': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378732934/F41E84FCDC0AB52634348C439A6D1A725CEB8115/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378736378/628E179D5305E95AFC25D86526320A24F8B27391/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 3 + GMNotes: '' + GUID: ae6790 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Secrets Better Left Hidden + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -57.3113937 + posY: 1.63446677 + posZ: 4.80537176 + rotX: 0.0167405345 + rotY: 180.0065 + rotZ: 0.07151149 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231711 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2317': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378732934/F41E84FCDC0AB52634348C439A6D1A725CEB8115/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378736378/628E179D5305E95AFC25D86526320A24F8B27391/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 2 + GMNotes: '' + GUID: 25a10f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ransacking the Manor + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -57.1309547 + posY: 1.77995825 + posZ: 4.98149061 + rotX: 359.981323 + rotY: 180.048416 + rotZ: 0.05862128 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231710 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2317': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378732934/F41E84FCDC0AB52634348C439A6D1A725CEB8115/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378736378/628E179D5305E95AFC25D86526320A24F8B27391/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 1 + GMNotes: '' + GUID: 3da436 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Truth is Hidden + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -57.2520866 + posY: 1.79770637 + posZ: 4.529267 + rotX: -0.00182255078 + rotY: 179.422211 + rotZ: 0.06521147 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2317': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378732934/F41E84FCDC0AB52634348C439A6D1A725CEB8115/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378736378/628E179D5305E95AFC25D86526320A24F8B27391/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 231712 +- 231711 +- 231710 +Description: '' +GMNotes: '' +GUID: '188399' +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Agenda Deck +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.72475243 + posY: 1.65664124 + posZ: 0.373330683 + rotX: 0.01683511 + rotY: 179.999832 + rotZ: 0.08025831 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 3 Echoes of the Past 42d2dc/Deck Encounter Deck f2ab06.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 3 Echoes of the Past 42d2dc/Deck Encounter Deck f2ab06.yaml new file mode 100644 index 000000000..651cb85ac --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 3 Echoes of the Past 42d2dc/Deck Encounter Deck f2ab06.yaml @@ -0,0 +1,1483 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 232236 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Scheme. + GMNotes: '' + GUID: bec6ce + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Cult's Search + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -14.6870451 + posY: 1.92823112 + posZ: 5.285528 + rotX: 359.9532 + rotY: 269.994019 + rotZ: 179.973236 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232236 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Scheme. + GMNotes: '' + GUID: '829090' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Cult's Search + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -0.276322931 + posY: 1.72082257 + posZ: -2.44649863 + rotX: 359.943573 + rotY: 270.0 + rotZ: 0.01258099 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232235 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Scheme. + GMNotes: '' + GUID: 77144e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Led Astray + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.79898667 + posY: 1.54987514 + posZ: 1.89306128 + rotX: 359.9202 + rotY: 269.999939 + rotZ: 0.0166225228 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232235 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Scheme. + GMNotes: '' + GUID: 42def5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Led Astray + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.07061386 + posY: 1.71259284 + posZ: 2.361349 + rotX: 359.937317 + rotY: 270.0 + rotZ: 0.005581428 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232235 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Scheme. + GMNotes: '' + GUID: 77144e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Led Astray + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.070633 + posY: 1.7265588 + posZ: 2.36134481 + rotX: 359.9364 + rotY: 270.0 + rotZ: 0.0118426653 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232234 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Cultist. + GMNotes: '' + GUID: 7d4b6a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Seeker of Carcosa + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -0.325364053 + posY: 1.55484188 + posZ: 4.13476 + rotX: 359.920624 + rotY: 269.998962 + rotZ: 0.0134161934 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232234 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Cultist. + GMNotes: '' + GUID: 596a2f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Seeker of Carcosa + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -0.538002253 + posY: 1.713114 + posZ: 4.117489 + rotX: 359.930542 + rotY: 269.998962 + rotZ: 0.0134416306 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232234 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Cultist. + GMNotes: '' + GUID: 7d4b6a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Seeker of Carcosa + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -0.389602721 + posY: 1.71785784 + posZ: 4.305204 + rotX: 359.9395 + rotY: 270.000916 + rotZ: 0.007991079 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232224 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Pact. + GMNotes: '' + GUID: e20141 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The King's Edict + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -45.28207 + posY: 1.61571622 + posZ: -1.99931252 + rotX: 359.920471 + rotY: 269.999542 + rotZ: 0.0138937524 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232224 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Pact. + GMNotes: '' + GUID: '522968' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The King's Edict + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -45.3332253 + posY: 1.76760066 + posZ: -1.86887467 + rotX: 359.932678 + rotY: 269.9998 + rotZ: -0.00222653663 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232223 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Cultist. + GMNotes: '' + GUID: 0bf1f8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Agent of the King + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -45.31658 + posY: 1.77869308 + posZ: -1.76723373 + rotX: 359.925659 + rotY: 270.030243 + rotZ: 359.9921 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232222 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Cultist. + GMNotes: '' + GUID: 8ada81 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Fanatic + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -46.03409 + posY: 1.61745238 + posZ: 0.648399532 + rotX: 359.9214 + rotY: 269.999054 + rotZ: 0.00768406037 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232222 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Cultist. + GMNotes: '' + GUID: dcaaad + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Fanatic + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -45.8543549 + posY: 1.76917815 + posZ: 0.300536335 + rotX: 359.907532 + rotY: 269.998657 + rotZ: 0.0211735331 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232222 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Cultist. + GMNotes: '' + GUID: 8ada81 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Fanatic + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -45.8543625 + posY: 1.80176485 + posZ: 0.3005505 + rotX: 359.920227 + rotY: 269.998779 + rotZ: 0.0167158749 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232209 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: 837dc0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Descent into Madness + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -8.254647 + posY: 1.56856728 + posZ: 13.1639223 + rotX: 359.9206 + rotY: 270.010376 + rotZ: 0.0141025912 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232209 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: b5a670 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Descent into Madness + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -7.994349 + posY: 1.72873139 + posZ: 13.4239607 + rotX: 359.910156 + rotY: 270.010345 + rotZ: 359.9914 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232206 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: a13701 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Whispers in Your Head (Doubt) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -8.13497 + posY: 1.73145211 + posZ: 13.3962345 + rotX: 359.9188 + rotY: 270.00116 + rotZ: 0.0158020761 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232205 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: 42b8dc + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Whispers in Your Head (Anxiety) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -7.656395 + posY: 1.73211765 + posZ: 13.2479944 + rotX: 359.900421 + rotY: 270.000153 + rotZ: 0.006056429 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232207 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: ec66a0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Whispers in Your Head (Dread) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -8.143007 + posY: 1.71549714 + posZ: 12.48624 + rotX: 359.929932 + rotY: 270.014252 + rotZ: 0.007635473 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232208 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: 4bea40 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Whispers in Your Head (Dismay) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -7.971472 + posY: 1.718169 + posZ: 13.2703743 + rotX: 359.920532 + rotY: 269.99942 + rotZ: 0.0161604 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233304 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2333': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 057d5f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: False Lead + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -53.54308 + posY: 1.62451649 + posZ: -11.2746916 + rotX: 359.920532 + rotY: 269.9984 + rotZ: 0.014669626 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233303 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2333': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Curse. + GMNotes: '' + GUID: ab3719 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Hunting Shadow + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -52.364975 + posY: 1.6682601 + posZ: -11.7168121 + rotX: 359.41153 + rotY: 269.984528 + rotZ: 0.0011950793 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233304 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2333': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 2ceae2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: False Lead + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -53.0138245 + posY: 1.65927637 + posZ: -11.4785194 + rotX: 359.593231 + rotY: 269.994843 + rotZ: 0.220773071 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233303 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2333': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Curse. + GMNotes: '' + GUID: ea8fcf + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Hunting Shadow + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -52.1424561 + posY: 1.859812 + posZ: -11.6784887 + rotX: 359.687439 + rotY: 269.995239 + rotZ: 0.227207974 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233303 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2333': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Curse. + GMNotes: '' + GUID: 14bfaf + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Hunting Shadow + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -52.0490036 + posY: 2.00849 + posZ: -11.7814016 + rotX: 359.721832 + rotY: 269.999054 + rotZ: 0.220546484 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232727 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2327': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Obstacle. + GMNotes: '' + GUID: ab3719 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Locked Door + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -28.08896 + posY: 1.58746386 + posZ: -16.0177059 + rotX: 359.922 + rotY: 270.000977 + rotZ: 0.003688245 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232727 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2327': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Obstacle. + GMNotes: '' + GUID: 4904d0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Locked Door + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -28.3078022 + posY: 1.73284411 + posZ: -16.36894 + rotX: 359.955627 + rotY: 269.999725 + rotZ: 0.0165289789 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233624 + 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 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: d63054 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Mysterious Chanting + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -14.9937792 + posY: 1.57623422 + posZ: 7.191085 + rotX: 359.920227 + rotY: 270.005066 + rotZ: 0.01624975 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233624 + 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 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: b347d1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Mysterious Chanting + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -15.1765862 + posY: 1.7388649 + posZ: 7.12856245 + rotX: 359.9205 + rotY: 270.005066 + rotZ: 0.011837706 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233623 + 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 + UniqueBack: false + Description: Humanoid. Cultist. + GMNotes: '' + GUID: d36612 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Wizard of the Order + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -15.1335211 + posY: 1.7306242 + posZ: 15.1695614 + rotX: 359.933441 + rotY: 269.998932 + rotZ: 180.028931 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233622 + 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 + UniqueBack: false + Description: Humanoid. Cultist. + GMNotes: '' + GUID: 50fdc5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Acolyte + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -15.3295956 + posY: 1.62976587 + posZ: 15.9645061 + rotX: 0.0716057643 + rotY: 270.000061 + rotZ: 359.982727 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233622 + 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 + UniqueBack: false + Description: Humanoid. Cultist. + GMNotes: '' + GUID: 4911f2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Acolyte + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -15.3297215 + posY: 1.77588809 + posZ: 15.9645157 + rotX: 0.07387834 + rotY: 269.998474 + rotZ: 359.992645 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233622 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2336': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Cultist. + GMNotes: '' + GUID: ab3719 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Acolyte + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -14.0641346 + posY: 1.57524788 + posZ: 4.4694705 + rotX: 359.936523 + rotY: 270.025024 + rotZ: 180.114365 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '2327': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '2333': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '2336': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 232236 +- 232236 +- 232235 +- 232235 +- 232235 +- 232234 +- 232234 +- 232234 +- 232224 +- 232224 +- 232223 +- 232222 +- 232222 +- 232222 +- 232209 +- 232209 +- 232206 +- 232205 +- 232207 +- 232208 +- 233304 +- 233303 +- 233304 +- 233303 +- 233303 +- 232727 +- 232727 +- 233624 +- 233624 +- 233623 +- 233622 +- 233622 +- 233622 +Description: '' +GMNotes: '' +GUID: f2ab06 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Encounter Deck +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.927625 + posY: 1.78769827 + posZ: 5.7571373 + rotX: 359.919739 + rotY: 270.000671 + rotZ: 180.016815 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 3 Echoes of the Past 42d2dc/Deck Ground Floor fc0ccf.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 3 Echoes of the Past 42d2dc/Deck Ground Floor fc0ccf.yaml new file mode 100644 index 000000000..0176c042e --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 3 Echoes of the Past 42d2dc/Deck Ground Floor fc0ccf.yaml @@ -0,0 +1,172 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 232022 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378685352/22FD056BAF1966FE2D1AC46FC1BF90C1A03A1404/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378686413/C1688C1A909FDC7357EB3EEFADAB1FBD5818BD3E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Ground Floor. + GMNotes: '' + GUID: c7a098 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Historical Society + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -58.06227 + posY: 1.63409388 + posZ: -0.204048946 + rotX: 359.920349 + rotY: 269.995575 + rotZ: 0.0217136 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232021 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378685352/22FD056BAF1966FE2D1AC46FC1BF90C1A03A1404/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378686413/C1688C1A909FDC7357EB3EEFADAB1FBD5818BD3E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Ground Floor. + GMNotes: '' + GUID: ffd0fb + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Historical Society + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -57.9735222 + posY: 1.77315891 + posZ: 0.229370639 + rotX: 359.907166 + rotY: 270.011627 + rotZ: 359.987274 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232020 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378685352/22FD056BAF1966FE2D1AC46FC1BF90C1A03A1404/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378686413/C1688C1A909FDC7357EB3EEFADAB1FBD5818BD3E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Ground Floor. + GMNotes: '' + GUID: aa08d4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Historical Society + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -57.4723434 + posY: 1.79620588 + posZ: -0.320317358 + rotX: 359.920837 + rotY: 270.0035 + rotZ: 0.0156368613 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378685352/22FD056BAF1966FE2D1AC46FC1BF90C1A03A1404/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378686413/C1688C1A909FDC7357EB3EEFADAB1FBD5818BD3E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 232022 +- 232021 +- 232020 +Description: '' +GMNotes: '' +GUID: fc0ccf +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Ground Floor +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -30.2243137 + posY: 1.69937241 + posZ: 15.1900082 + rotX: 359.9201 + rotY: 269.999878 + rotZ: 0.0168774687 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 3 Echoes of the Past 42d2dc/Deck Second Floor ba0d96.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 3 Echoes of the Past 42d2dc/Deck Second Floor ba0d96.yaml new file mode 100644 index 000000000..c626bf0c2 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 3 Echoes of the Past 42d2dc/Deck Second Floor ba0d96.yaml @@ -0,0 +1,172 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 232026 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378685352/22FD056BAF1966FE2D1AC46FC1BF90C1A03A1404/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378686413/C1688C1A909FDC7357EB3EEFADAB1FBD5818BD3E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Second Floor. + GMNotes: '' + GUID: ab6a72 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Historical Society + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -58.9967537 + posY: 1.6357621 + posZ: 1.00545037 + rotX: 359.920959 + rotY: 270.004761 + rotZ: 0.0160553828 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232025 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378685352/22FD056BAF1966FE2D1AC46FC1BF90C1A03A1404/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378686413/C1688C1A909FDC7357EB3EEFADAB1FBD5818BD3E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Second Floor. + GMNotes: '' + GUID: 40f79d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Historical Society + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -58.8852272 + posY: 1.78114378 + posZ: 1.147304 + rotX: 359.917084 + rotY: 270.000519 + rotZ: -0.00145125971 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232024 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378685352/22FD056BAF1966FE2D1AC46FC1BF90C1A03A1404/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378686413/C1688C1A909FDC7357EB3EEFADAB1FBD5818BD3E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Second Floor. + GMNotes: '' + GUID: aa08d4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Historical Society + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -58.4277763 + posY: 1.79799128 + posZ: 1.17521942 + rotX: 359.9215 + rotY: 270.0065 + rotZ: 0.0133985858 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378685352/22FD056BAF1966FE2D1AC46FC1BF90C1A03A1404/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378686413/C1688C1A909FDC7357EB3EEFADAB1FBD5818BD3E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 232026 +- 232025 +- 232024 +Description: '' +GMNotes: '' +GUID: ba0d96 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Second Floor +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -23.6765976 + posY: 1.69024217 + posZ: 15.19012 + rotX: 359.9201 + rotY: 270.0 + rotZ: 0.01687673 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 3 Echoes of the Past 42d2dc/Deck Third Floor f72ca3.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 3 Echoes of the Past 42d2dc/Deck Third Floor f72ca3.yaml new file mode 100644 index 000000000..2c828e1b3 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 3 Echoes of the Past 42d2dc/Deck Third Floor f72ca3.yaml @@ -0,0 +1,172 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 232030 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378685352/22FD056BAF1966FE2D1AC46FC1BF90C1A03A1404/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378686413/C1688C1A909FDC7357EB3EEFADAB1FBD5818BD3E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Third Floor. + GMNotes: '' + GUID: 55844c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Historical Society + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -59.42817 + posY: 1.636429 + posZ: 1.32442439 + rotX: 359.920166 + rotY: 270.017029 + rotZ: 0.0150468722 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232029 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378685352/22FD056BAF1966FE2D1AC46FC1BF90C1A03A1404/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378686413/C1688C1A909FDC7357EB3EEFADAB1FBD5818BD3E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Third Floor. + GMNotes: '' + GUID: b352f8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Historical Society + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -59.6435165 + posY: 1.781832 + posZ: 1.2527982 + rotX: 359.920471 + rotY: 270.014923 + rotZ: 0.00181702862 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232028 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378685352/22FD056BAF1966FE2D1AC46FC1BF90C1A03A1404/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378686413/C1688C1A909FDC7357EB3EEFADAB1FBD5818BD3E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Third Floor. + GMNotes: '' + GUID: 0cf5d5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Historical Society + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -59.5653725 + posY: 1.79953706 + posZ: 1.286078 + rotX: 359.926819 + rotY: 270.0386 + rotZ: -0.00136351085 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378685352/22FD056BAF1966FE2D1AC46FC1BF90C1A03A1404/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378686413/C1688C1A909FDC7357EB3EEFADAB1FBD5818BD3E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 232030 +- 232029 +- 232028 +Description: '' +GMNotes: '' +GUID: f72ca3 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Third Floor +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -17.1200829 + posY: 1.68109953 + posZ: 15.1900072 + rotX: 359.9201 + rotY: 270.000153 + rotZ: 0.0168773066 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 3 Echoes of the Past 42d2dc/Notecard Errata 1 30a233.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 3 Echoes of the Past 42d2dc/Notecard Errata 1 30a233.yaml new file mode 100644 index 000000000..aeeb19f77 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 3 Echoes of the Past 42d2dc/Notecard Errata 1 30a233.yaml @@ -0,0 +1,105 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +Description: "Agenda 1a\u2014The Truth is Hidden (121)\r\nAgenda 2a\u2014Ransacking\ + \ the Manor (122)\r\nAgenda 3a\u2014Secrets Better Left Hidden (123)\r\nThe first\ + \ ability on each of these agendas should read: \u201CSkip the \u2018Place\r 1 doom\ + \ on the current agenda\u2019 step of the Mythos phase.\u201D" +GMNotes: '' +GUID: 30a233 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Notecard +Nickname: Errata 1 +Snap: true +States: + '2': + Autoraise: true + ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 + Description: "Historical Society ([i]Historical Museum[/i]) (130 & 132)\r\nThis\ + \ location\u2019s ability should read: \u201CWhile investigating this location,\ + \ your intellect\uF252\r cannot be increased." + GMNotes: '' + GUID: c7fbc9 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Notecard + Nickname: Errata 2 + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -45.76462 + posY: 1.61939013 + posZ: 13.8555393 + rotX: 0.07987877 + rotY: 90.00009 + rotZ: 359.983124 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' + '3': + Autoraise: true + ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 + Description: "The final bullet point in Resolution 2 should read:\n\u201CThen,\ + \ add 2 Elder Thing\uF25E tokens\nto\r the chaos bag.\u201D" + GMNotes: '' + GUID: 523ef3 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Notecard + Nickname: Errata 3 + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -45.76461 + posY: 1.61939 + posZ: 13.8555365 + rotX: 0.0798784345 + rotY: 90.00013 + rotZ: 359.983124 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +Sticky: true +Tooltip: true +Transform: + posX: -11.3366442 + posY: 1.56033957 + posZ: -23.6845245 + rotX: 0.07987695 + rotY: 89.99208 + rotZ: 359.983124 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6.ttslua b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6.ttslua new file mode 100644 index 000000000..46067f58e --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6.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.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.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 Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6.yaml new file mode 100644 index 000000000..437a4ca5e --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6.yaml @@ -0,0 +1,100 @@ +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 4 The Unspeakable Oath e7efa6/Custom_Model_Bag Set-aside + 7c1343.yaml' +- !include 'Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Deck Lunatic Pile 58fc68.yaml' +- !include 'Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Deck Monster Pile 0463eb.yaml' +- !include 'Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Deck Encounter Deck 0b6538.yaml' +- !include 'Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Deck Agenda Deck 5762df.yaml' +- !include 'Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Deck Act Deck 249fd3.yaml' +- !include 'Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Card Scenario aa08d4.yaml' +- !include 'Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Tile The Unspeakable + Oath 87f45e.yaml' +- !include 'Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Bag New Chaos Token d78c73.yaml' +- !include 'Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Notecard Errata 1 163466.yaml' +- !include 'Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Card Garden c9897f.yaml' +- !include 'Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Tile 1811ea.yaml' +- !include 'Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Card Yard b37d1d.yaml' +- !include 'Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Tile bec080.yaml' +- !include 'Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Card Asylum Halls dcc1bf.yaml' +- !include 'Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Tile f33a5f.yaml' +- !include 'Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Card Mess Hall e35136.yaml' +- !include 'Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Tile 02d2b1.yaml' +- !include 'Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Tile 7b12e0.yaml' +- !include 'Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Card Kitchen e6a875.yaml' +- !include 'Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Card Asylum Halls 576595.yaml' +- !include 'Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Tile 7234af.yaml' +- !include 'Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Card Asylum Halls 189f42.yaml' +- !include 'Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Card Basement Hall 589ff6.yaml' +- !include 'Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Tile 3efbe9.yaml' +- !include 'Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Card Infirmary 416548.yaml' +- !include 'Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Card Asylum Halls f99530.yaml' +- !include 'Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Model_Bag 1 Return + to The Gathering 41ebd8.yaml' +- !include 'Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Model_Bag 2 Return + to The Midnight Masks bcc86c.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/829135118403812400/DFF987791CDBED91D3B8DDB158B6FB0C417C6B37/ + MaterialIndex: 3 + MeshURL: https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj + NormalURL: '' + TypeIndex: 6 +Description: '' +GMNotes: '' +GUID: e7efa6 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Model_Bag 4 The Unspeakable Oath e7efa6.ttslua' +LuaScriptState: '{"ml":{"02d2b1":{"lock":false,"pos":{"x":-30.2242,"y":1.6248,"z":3.86},"rot":{"x":0.0169,"y":179.9999,"z":0.0799}},"0463eb":{"lock":false,"pos":{"x":-5.9557,"y":1.6809,"z":15.3656},"rot":{"x":359.9197,"y":270,"z":180.0168}},"0b6538":{"lock":false,"pos":{"x":-3.9277,"y":1.7344,"z":5.7572},"rot":{"x":359.9197,"y":269.9998,"z":180.0168}},"163466":{"lock":false,"pos":{"x":-11.1348,"y":1.5601,"z":-23.4519},"rot":{"x":0.0799,"y":90.0023,"z":359.9831}},"1811ea":{"lock":false,"pos":{"x":-20.2365,"y":1.6098,"z":0.1355},"rot":{"x":359.9201,"y":269.9744,"z":0.0169}},"189f42":{"lock":false,"pos":{"x":-31.7541,"y":1.8411,"z":-7.6825},"rot":{"x":359.9572,"y":269.9969,"z":0.0169}},"249fd3":{"lock":false,"pos":{"x":-2.6885,"y":1.6543,"z":-5.0485},"rot":{"x":0.0168,"y":180.0012,"z":0.0803}},"3efbe9":{"lock":false,"pos":{"x":-30.2242,"y":1.6203,"z":-11.51},"rot":{"x":0.0169,"y":180,"z":0.08}},"416548":{"lock":false,"pos":{"x":-30.2243,"y":1.6909,"z":-15.28},"rot":{"x":359.9201,"y":269.9998,"z":0.0169}},"5762df":{"lock":false,"pos":{"x":-2.7248,"y":1.6566,"z":0.3733},"rot":{"x":0.0168,"y":180.0001,"z":0.0803}},"576595":{"lock":false,"pos":{"x":-30.2243,"y":1.6931,"z":-7.7},"rot":{"x":359.9211,"y":269.9999,"z":0.0182}},"589ff6":{"lock":false,"pos":{"x":-36.7733,"y":1.7022,"z":-7.7},"rot":{"x":359.9201,"y":269.9998,"z":0.0169}},"58fc68":{"lock":false,"pos":{"x":-2.2261,"y":1.6757,"z":15.5638},"rot":{"x":359.9197,"y":270,"z":180.0168}},"7234af":{"lock":false,"pos":{"x":-33.5176,"y":1.626,"z":-7.5064},"rot":{"x":359.9201,"y":270.0873,"z":0.0168}},"7b12e0":{"lock":false,"pos":{"x":-30.2242,"y":1.627,"z":11.46},"rot":{"x":0.0169,"y":180.0001,"z":0.0799}},"7c1343":{"lock":false,"pos":{"x":1.6967,"y":1.5583,"z":14.2787},"rot":{"x":359.9551,"y":224.998,"z":0.0687}},"87f45e":{"lock":false,"pos":{"x":-3.2772,"y":1.5818,"z":-14.9074},"rot":{"x":359.921,"y":270.0005,"z":0.0192}},"aa08d4":{"lock":false,"pos":{"x":-3.9559,"y":1.6556,"z":-10.4413},"rot":{"x":359.9197,"y":269.9996,"z":0.0168}},"b37d1d":{"lock":false,"pos":{"x":-23.6765,"y":1.6862,"z":-0.03},"rot":{"x":359.9201,"y":270,"z":0.0169}},"bec080":{"lock":false,"pos":{"x":-26.8343,"y":1.6189,"z":0.0207},"rot":{"x":359.9201,"y":269.9,"z":0.017}},"c9897f":{"lock":false,"pos":{"x":-17.12,"y":1.6771,"z":-0.03},"rot":{"x":359.9201,"y":269.9999,"z":0.0169}},"d78c73":{"lock":false,"pos":{"x":-5.5446,"y":1.4913,"z":-14.7034},"rot":{"x":359.9832,"y":359.972,"z":5.7946}},"dcc1bf":{"lock":false,"pos":{"x":-31.8093,"y":1.8413,"z":-0.0414},"rot":{"x":5.205,"y":269.9743,"z":0.0041}},"e35136":{"lock":false,"pos":{"x":-30.2243,"y":1.6976,"z":7.57},"rot":{"x":359.9201,"y":269.9999,"z":0.0169}},"e6a875":{"lock":false,"pos":{"x":-30.2243,"y":1.6998,"z":15.19},"rot":{"x":359.9201,"y":269.9999,"z":0.0169}},"f33a5f":{"lock":false,"pos":{"x":-30.2242,"y":1.6225,"z":-3.83},"rot":{"x":0.0169,"y":179.9999,"z":0.0799}},"f99530":{"lock":false,"pos":{"x":-30.2242,"y":1.6954,"z":-0.0302},"rot":{"x":359.9211,"y":270.0014,"z":0.018}}}}' +MaterialIndex: -1 +MeshIndex: -1 +Name: Custom_Model_Bag +Nickname: '4: The Unspeakable Oath' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 14.4764786 + posY: 1.46262 + posZ: 4.431979 + rotX: 359.9201 + rotY: 270.044342 + rotZ: 0.016812481 + scaleX: 2.21 + scaleY: 0.46 + scaleZ: 2.42 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Bag New Chaos Token d78c73.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Bag New Chaos Token d78c73.yaml new file mode 100644 index 000000000..a92edb1ad --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Bag New Chaos Token d78c73.yaml @@ -0,0 +1,39 @@ +Autoraise: true +ColorDiffuse: + b: 0.07843693 + g: 0.07843693 + r: 0.302167624 +ContainedObjects: +- !include 'Bag New Chaos Token d78c73/Custom_Tile 1df0a5.yaml' +- !include 'Bag New Chaos Token d78c73/Custom_Tile 984eec.yaml' +- !include 'Bag New Chaos Token d78c73/Custom_Tile a7a9cb.yaml' +- !include 'Bag New Chaos Token d78c73/Custom_Tile 8af600.yaml' +Description: The Unspeakable Oath +GMNotes: '' +GUID: d78c73 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +MeshIndex: -1 +Name: Bag +Nickname: New Chaos Token +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -5.54458857 + posY: 1.491261 + posZ: -14.7033577 + rotX: 359.9832 + rotY: 359.971954 + rotZ: 5.79455566 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Bag New Chaos Token d78c73/Custom_Tile 1df0a5.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Bag New Chaos Token d78c73/Custom_Tile 1df0a5.yaml new file mode 100644 index 000000000..654ffdc97 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Bag New Chaos Token d78c73/Custom_Tile 1df0a5.yaml @@ -0,0 +1,42 @@ +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: '' +GMNotes: '' +GUID: 1df0a5 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Tile +Nickname: '' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -62.96481 + posY: 3.47066259 + posZ: 14.1127386 + rotX: 0.341532826 + rotY: 270.030334 + rotZ: 4.300973 + scaleX: 0.81 + scaleY: 1.0 + scaleZ: 0.81 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Bag New Chaos Token d78c73/Custom_Tile 8af600.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Bag New Chaos Token d78c73/Custom_Tile 8af600.yaml new file mode 100644 index 000000000..63bbffd28 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Bag New Chaos Token d78c73/Custom_Tile 8af600.yaml @@ -0,0 +1,42 @@ +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: '' +GMNotes: '' +GUID: 8af600 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Tile +Nickname: '' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 17.1395283 + posY: 3.456952 + posZ: -1.43054438 + rotX: 355.226349 + rotY: 269.8188 + rotZ: 4.68344069 + scaleX: 0.81 + scaleY: 1.0 + scaleZ: 0.81 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Bag New Chaos Token d78c73/Custom_Tile 984eec.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Bag New Chaos Token d78c73/Custom_Tile 984eec.yaml new file mode 100644 index 000000000..a42f1f857 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Bag New Chaos Token d78c73/Custom_Tile 984eec.yaml @@ -0,0 +1,42 @@ +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: '' +GMNotes: '' +GUID: 984eec +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Tile +Nickname: '' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 12.8530817 + posY: 3.428565 + posZ: -3.38562751 + rotX: 359.9201 + rotY: 270.0238 + rotZ: 0.016849542 + scaleX: 0.81 + scaleY: 1.0 + scaleZ: 0.81 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Bag New Chaos Token d78c73/Custom_Tile a7a9cb.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Bag New Chaos Token d78c73/Custom_Tile a7a9cb.yaml new file mode 100644 index 000000000..71c665e47 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Bag New Chaos Token d78c73/Custom_Tile a7a9cb.yaml @@ -0,0 +1,42 @@ +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: '' +GMNotes: '' +GUID: a7a9cb +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Tile +Nickname: '' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 14.4742517 + posY: 3.42676187 + posZ: -1.83419693 + rotX: 359.920135 + rotY: 270.015076 + rotZ: 0.0168510415 + scaleX: 0.81 + scaleY: 1.0 + scaleZ: 0.81 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Card Asylum Halls 189f42.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Card Asylum Halls 189f42.yaml new file mode 100644 index 000000000..2e0ce8b97 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Card Asylum Halls 189f42.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 232037 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378685352/22FD056BAF1966FE2D1AC46FC1BF90C1A03A1404/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378686413/C1688C1A909FDC7357EB3EEFADAB1FBD5818BD3E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Eastern Patient Wing +GMNotes: '' +GUID: 189f42 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Asylum Halls +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -31.7540779 + posY: 1.84106469 + posZ: -7.682527 + rotX: 359.957184 + rotY: 269.996948 + rotZ: 0.0168695562 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Card Asylum Halls 576595.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Card Asylum Halls 576595.yaml new file mode 100644 index 000000000..aca5c1a4d --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Card Asylum Halls 576595.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 232036 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378685352/22FD056BAF1966FE2D1AC46FC1BF90C1A03A1404/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378686413/C1688C1A909FDC7357EB3EEFADAB1FBD5818BD3E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Eastern Patient Wing +GMNotes: '' +GUID: '576595' +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Asylum Halls +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -30.2243347 + posY: 1.69314289 + posZ: -7.7 + rotX: 359.921051 + rotY: 269.9999 + rotZ: 0.0181826223 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Card Asylum Halls dcc1bf.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Card Asylum Halls dcc1bf.yaml new file mode 100644 index 000000000..be7049042 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Card Asylum Halls dcc1bf.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 232035 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378685352/22FD056BAF1966FE2D1AC46FC1BF90C1A03A1404/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378686413/C1688C1A909FDC7357EB3EEFADAB1FBD5818BD3E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Western Patient Wing +GMNotes: '' +GUID: dcc1bf +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Asylum Halls +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -31.80928 + posY: 1.84127653 + posZ: -0.0413955823 + rotX: 5.2050457 + rotY: 269.974274 + rotZ: 0.00407393137 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Card Asylum Halls f99530.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Card Asylum Halls f99530.yaml new file mode 100644 index 000000000..f5036deb8 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Card Asylum Halls f99530.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 232034 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378685352/22FD056BAF1966FE2D1AC46FC1BF90C1A03A1404/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378686413/C1688C1A909FDC7357EB3EEFADAB1FBD5818BD3E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Western Patient Wing +GMNotes: '' +GUID: f99530 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Asylum Halls +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -30.2241783 + posY: 1.69539928 + posZ: -0.0301680118 + rotX: 359.921051 + rotY: 270.001434 + rotZ: 0.0180483 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Card Basement Hall 589ff6.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Card Basement Hall 589ff6.yaml new file mode 100644 index 000000000..ec97269f5 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Card Basement Hall 589ff6.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 232043 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378685352/22FD056BAF1966FE2D1AC46FC1BF90C1A03A1404/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378686413/C1688C1A909FDC7357EB3EEFADAB1FBD5818BD3E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Arkham Asylum. +GMNotes: '' +GUID: 589ff6 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Basement Hall +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -36.7732849 + posY: 1.70222437 + posZ: -7.69999456 + rotX: 359.9201 + rotY: 269.9998 + rotZ: 0.0168773234 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Card Garden c9897f.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Card Garden c9897f.yaml new file mode 100644 index 000000000..601c4dde8 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Card Garden c9897f.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 232042 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378685352/22FD056BAF1966FE2D1AC46FC1BF90C1A03A1404/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378686413/C1688C1A909FDC7357EB3EEFADAB1FBD5818BD3E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Arkham Asylum. +GMNotes: '' +GUID: c9897f +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Garden +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -17.12003 + posY: 1.67707777 + posZ: -0.02999459 + rotX: 359.9201 + rotY: 269.999939 + rotZ: 0.0168763828 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Card Infirmary 416548.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Card Infirmary 416548.yaml new file mode 100644 index 000000000..f18d69baa --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Card Infirmary 416548.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 232040 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378685352/22FD056BAF1966FE2D1AC46FC1BF90C1A03A1404/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378686413/C1688C1A909FDC7357EB3EEFADAB1FBD5818BD3E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Arkham Asylum. +GMNotes: '' +GUID: '416548' +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Infirmary +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -30.2242756 + posY: 1.69086027 + posZ: -15.2800293 + rotX: 359.9201 + rotY: 269.999847 + rotZ: 0.0168775022 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Card Kitchen e6a875.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Card Kitchen e6a875.yaml new file mode 100644 index 000000000..2f32c3010 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Card Kitchen e6a875.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 232038 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378685352/22FD056BAF1966FE2D1AC46FC1BF90C1A03A1404/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378686413/C1688C1A909FDC7357EB3EEFADAB1FBD5818BD3E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Arkham Asylum. +GMNotes: '' +GUID: e6a875 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Kitchen +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -30.2243137 + posY: 1.69983256 + posZ: 15.1900082 + rotX: 359.9201 + rotY: 269.999939 + rotZ: 0.0168757457 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Card Mess Hall e35136.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Card Mess Hall e35136.yaml new file mode 100644 index 000000000..c6334dcf8 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Card Mess Hall e35136.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 232039 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378685352/22FD056BAF1966FE2D1AC46FC1BF90C1A03A1404/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378686413/C1688C1A909FDC7357EB3EEFADAB1FBD5818BD3E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Arkham Asylum. +GMNotes: '' +GUID: e35136 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Mess Hall +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -30.2242813 + posY: 1.69758868 + posZ: 7.570005 + rotX: 359.9201 + rotY: 269.999939 + rotZ: 0.0168779436 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Card Scenario aa08d4.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Card Scenario aa08d4.yaml new file mode 100644 index 000000000..4235a0f8c --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Card Scenario aa08d4.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 232032 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378685352/22FD056BAF1966FE2D1AC46FC1BF90C1A03A1404/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378686413/C1688C1A909FDC7357EB3EEFADAB1FBD5818BD3E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: The Unspeakable Oath +GMNotes: '' +GUID: aa08d4 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Scenario +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.95591235 + posY: 1.655648 + posZ: -10.4412508 + rotX: 359.919739 + rotY: 269.999573 + rotZ: 0.01684139 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Card Yard b37d1d.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Card Yard b37d1d.yaml new file mode 100644 index 000000000..9ec91c710 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Card Yard b37d1d.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 232041 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378685352/22FD056BAF1966FE2D1AC46FC1BF90C1A03A1404/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378686413/C1688C1A909FDC7357EB3EEFADAB1FBD5818BD3E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Arkham Asylum. +GMNotes: '' +GUID: b37d1d +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Yard +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -23.67655 + posY: 1.68622041 + posZ: -0.0299942847 + rotX: 359.9201 + rotY: 270.0 + rotZ: 0.0168754887 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Model_Bag 1 Return to The Gathering 41ebd8.ttslua b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Model_Bag 1 Return to The Gathering 41ebd8.ttslua new file mode 100644 index 000000000..46067f58e --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Model_Bag 1 Return to The Gathering 41ebd8.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.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.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 Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Model_Bag 1 Return to The Gathering 41ebd8.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Model_Bag 1 Return to The Gathering 41ebd8.yaml new file mode 100644 index 000000000..92ca938ae --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Model_Bag 1 Return to The Gathering 41ebd8.yaml @@ -0,0 +1,89 @@ +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 1 Return to The Gathering 41ebd8/Custom_Model_Bag Set-aside + 7a167a.yaml' +- !include 'Custom_Model_Bag 1 Return to The Gathering 41ebd8/Deck Encounter Deck + f98bcc.yaml' +- !include 'Custom_Model_Bag 1 Return to The Gathering 41ebd8/Deck Agenda Deck 9af3a1.yaml' +- !include 'Custom_Model_Bag 1 Return to The Gathering 41ebd8/Deck Act Deck b053dc.yaml' +- !include 'Custom_Model_Bag 1 Return to The Gathering 41ebd8/Custom_Tile Core Difficulty + 527f29.yaml' +- !include 'Custom_Model_Bag 1 Return to The Gathering 41ebd8/Card Scenario 254c1f.yaml' +- !include 'Custom_Model_Bag 1 Return to The Gathering 41ebd8/Card Setup 5229a9.yaml' +- !include 'Custom_Model_Bag 1 Return to The Gathering 41ebd8/Card Bedroom 2c2e26.yaml' +- !include 'Custom_Model_Bag 1 Return to The Gathering 41ebd8/Card Bathroom f28a24.yaml' +- !include 'Custom_Model_Bag 1 Return to The Gathering 41ebd8/Card Study 670914.yaml' +- !include 'Custom_Model_Bag 1 Return to The Gathering 41ebd8/Custom_Tile 6ec50e.yaml' +- !include 'Custom_Model_Bag 1 Return to The Gathering 41ebd8/Custom_Tile 37ba8d.yaml' +- !include 'Custom_Model_Bag 1 Return to The Gathering 41ebd8/Custom_Tile 7234af.yaml' +- !include 'Custom_Model_Bag 1 Return to The Gathering 41ebd8/Card Guest Hall c1f7de.yaml' +- !include 'Custom_Model_Bag 1 Return to The Gathering 41ebd8/Custom_Tile 7f8292.yaml' +- !include 'Custom_Model_Bag 1 Return to The Gathering 41ebd8/Card Attic 377b20.yaml' +- !include 'Custom_Model_Bag 1 Return to The Gathering 41ebd8/Card Attic cfcb21.yaml' +- !include 'Custom_Model_Bag 1 Return to The Gathering 41ebd8/Card Cellar b3ccaf.yaml' +- !include 'Custom_Model_Bag 1 Return to The Gathering 41ebd8/Card Cellar 5d3bcc.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/829135118401843935/5E922675A618CAE8EA8B94D72EE8D35837043AB8/ + MaterialIndex: 3 + MeshURL: https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj + NormalURL: '' + TypeIndex: 6 +Description: Return to the Night of the Zealot +GMNotes: '' +GUID: 41ebd8 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Model_Bag 1 Return to The Gathering 41ebd8.ttslua' +LuaScriptState: '{"ml":{"254c1f":{"lock":false,"pos":{"x":-3.956,"y":1.6556,"z":-10.4412},"rot":{"x":359.9197,"y":269.9999,"z":0.0168}},"2c2e26":{"lock":false,"pos":{"x":-30.2243,"y":1.6976,"z":7.57},"rot":{"x":359.9201,"y":270.002,"z":0.0169}},"377b20":{"lock":false,"pos":{"x":-17.1199,"y":1.6749,"z":-7.6999},"rot":{"x":359.9206,"y":270.0247,"z":0.018}},"37ba8d":{"lock":false,"pos":{"x":-26.7344,"y":1.6198,"z":3.3625},"rot":{"x":0.0684,"y":134.9986,"z":0.0446}},"5229a9":{"lock":false,"pos":{"x":-0.2945,"y":1.6505,"z":-10.4523},"rot":{"x":359.9197,"y":269.9999,"z":0.0168}},"527f29":{"lock":false,"pos":{"x":-4.0721,"y":1.583,"z":-14.3202},"rot":{"x":359.9197,"y":270.0043,"z":0.0168}},"5d3bcc":{"lock":false,"pos":{"x":-30.2071,"y":1.693,"z":-7.6951},"rot":{"x":359.9211,"y":268.7832,"z":0.0156}},"670914":{"lock":false,"pos":{"x":-17.12,"y":1.6793,"z":7.57},"rot":{"x":359.9201,"y":269.9998,"z":0.0169}},"6ec50e":{"lock":false,"pos":{"x":-23.6765,"y":1.6157,"z":3.86},"rot":{"x":0.0169,"y":179.9999,"z":0.08}},"7234af":{"lock":false,"pos":{"x":-20.5608,"y":1.6112,"z":3.4492},"rot":{"x":359.9554,"y":224.9951,"z":0.0684}},"7a167a":{"lock":false,"pos":{"x":1.696,"y":1.5583,"z":14.2788},"rot":{"x":359.9551,"y":224.9981,"z":0.0687}},"7f8292":{"lock":false,"pos":{"x":-23.6764,"y":1.6134,"z":-3.83},"rot":{"x":0.0169,"y":179.9998,"z":0.08}},"9af3a1":{"lock":false,"pos":{"x":-2.7248,"y":1.6566,"z":0.3733},"rot":{"x":0.0168,"y":180.0006,"z":0.0803}},"b053dc":{"lock":false,"pos":{"x":-2.689,"y":1.655,"z":-5.0488},"rot":{"x":0.0168,"y":180.0131,"z":0.0803}},"b3ccaf":{"lock":false,"pos":{"x":-31.9435,"y":1.8269,"z":-7.7342},"rot":{"x":4.6861,"y":270.0046,"z":0.119}},"c1f7de":{"lock":false,"pos":{"x":-23.6765,"y":1.6862,"z":-0.03},"rot":{"x":359.9201,"y":270.0075,"z":0.0169}},"cfcb21":{"lock":false,"pos":{"x":-18.8609,"y":1.8082,"z":-7.7211},"rot":{"x":4.7376,"y":270.007,"z":0.0117}},"f28a24":{"lock":false,"pos":{"x":-23.6766,"y":1.6885,"z":7.57},"rot":{"x":359.9201,"y":269.9953,"z":0.0169}},"f98bcc":{"lock":false,"pos":{"x":-3.9275,"y":1.7717,"z":5.7571},"rot":{"x":359.9197,"y":270,"z":180.0168}}}}' +MaterialIndex: -1 +MeshIndex: -1 +Name: Custom_Model_Bag +Nickname: '1: Return to The Gathering' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 12.0527163 + posY: 1.82133186 + posZ: 7.298885 + rotX: 359.875916 + rotY: 270.014069 + rotZ: 359.0472 + scaleX: 2.21 + scaleY: 0.46 + scaleZ: 2.42 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Model_Bag 1 Return to The Gathering 41ebd8/Card Attic 377b20.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Model_Bag 1 Return to The Gathering 41ebd8/Card Attic 377b20.yaml new file mode 100644 index 000000000..83ad20709 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Model_Bag 1 Return to The Gathering 41ebd8/Card Attic 377b20.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 232329 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2323': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775106514377430450/FDA37585F019D453CF383D975CF1AB631ECF64B7/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377431393/4752E394498B81694A370AA6BB05BC5A4E55FD30/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 377b20 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Attic +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -17.119873 + posY: 1.67485929 + posZ: -7.699877 + rotX: 359.9206 + rotY: 270.0247 + rotZ: 0.0179981142 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Model_Bag 1 Return to The Gathering 41ebd8/Card Attic cfcb21.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Model_Bag 1 Return to The Gathering 41ebd8/Card Attic cfcb21.yaml new file mode 100644 index 000000000..11e9e4981 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Model_Bag 1 Return to The Gathering 41ebd8/Card Attic cfcb21.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 232302 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2323': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775106514377430450/FDA37585F019D453CF383D975CF1AB631ECF64B7/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377431393/4752E394498B81694A370AA6BB05BC5A4E55FD30/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: cfcb21 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Attic +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -18.8608837 + posY: 1.80815065 + posZ: -7.721059 + rotX: 4.73758125 + rotY: 270.007019 + rotZ: 0.0116811125 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Model_Bag 1 Return to The Gathering 41ebd8/Card Bathroom f28a24.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Model_Bag 1 Return to The Gathering 41ebd8/Card Bathroom f28a24.yaml new file mode 100644 index 000000000..13ead7d9d --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Model_Bag 1 Return to The Gathering 41ebd8/Card Bathroom f28a24.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 232327 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2323': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775106514377430450/FDA37585F019D453CF383D975CF1AB631ECF64B7/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377431393/4752E394498B81694A370AA6BB05BC5A4E55FD30/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: f28a24 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Bathroom +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -23.6765671 + posY: 1.6884582 + posZ: 7.57000542 + rotX: 359.9201 + rotY: 269.995331 + rotZ: 0.0168846957 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Model_Bag 1 Return to The Gathering 41ebd8/Card Bedroom 2c2e26.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Model_Bag 1 Return to The Gathering 41ebd8/Card Bedroom 2c2e26.yaml new file mode 100644 index 000000000..83a1708e3 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Model_Bag 1 Return to The Gathering 41ebd8/Card Bedroom 2c2e26.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 232326 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2323': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775106514377430450/FDA37585F019D453CF383D975CF1AB631ECF64B7/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377431393/4752E394498B81694A370AA6BB05BC5A4E55FD30/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 2c2e26 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Bedroom +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -30.2242832 + posY: 1.6975888 + posZ: 7.57000542 + rotX: 359.9201 + rotY: 270.001953 + rotZ: 0.0168749485 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Model_Bag 1 Return to The Gathering 41ebd8/Card Cellar 5d3bcc.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Model_Bag 1 Return to The Gathering 41ebd8/Card Cellar 5d3bcc.yaml new file mode 100644 index 000000000..e72993753 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Model_Bag 1 Return to The Gathering 41ebd8/Card Cellar 5d3bcc.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 232331 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2323': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775106514377430450/FDA37585F019D453CF383D975CF1AB631ECF64B7/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377431393/4752E394498B81694A370AA6BB05BC5A4E55FD30/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 5d3bcc +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Cellar +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -30.2070923 + posY: 1.69302225 + posZ: -7.69511557 + rotX: 359.921082 + rotY: 268.783173 + rotZ: 0.0155696878 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Model_Bag 1 Return to The Gathering 41ebd8/Card Cellar b3ccaf.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Model_Bag 1 Return to The Gathering 41ebd8/Card Cellar b3ccaf.yaml new file mode 100644 index 000000000..d34c1e27e --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Model_Bag 1 Return to The Gathering 41ebd8/Card Cellar b3ccaf.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 232303 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2323': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775106514377430450/FDA37585F019D453CF383D975CF1AB631ECF64B7/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377431393/4752E394498B81694A370AA6BB05BC5A4E55FD30/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: b3ccaf +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Cellar +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -31.9435215 + posY: 1.82686436 + posZ: -7.73423529 + rotX: 4.68613 + rotY: 270.004578 + rotZ: 0.11901354 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Model_Bag 1 Return to The Gathering 41ebd8/Card Guest Hall c1f7de.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Model_Bag 1 Return to The Gathering 41ebd8/Card Guest Hall c1f7de.yaml new file mode 100644 index 000000000..da2c31046 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Model_Bag 1 Return to The Gathering 41ebd8/Card Guest Hall c1f7de.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 232325 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2323': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775106514377430450/FDA37585F019D453CF383D975CF1AB631ECF64B7/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377431393/4752E394498B81694A370AA6BB05BC5A4E55FD30/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: c1f7de +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Guest Hall +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -23.676548 + posY: 1.68622041 + posZ: -0.02999468 + rotX: 359.9201 + rotY: 270.0075 + rotZ: 0.0168661475 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Model_Bag 1 Return to The Gathering 41ebd8/Card Scenario 254c1f.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Model_Bag 1 Return to The Gathering 41ebd8/Card Scenario 254c1f.yaml new file mode 100644 index 000000000..cd5bad594 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Model_Bag 1 Return to The Gathering 41ebd8/Card Scenario 254c1f.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 232100 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2321': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775106514377428854/F01972D15C2B4CFCB8CA72006B7E00D243683AFA/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377429266/856DF4A8D87D7B6CB71572D20908D35F4182AC45/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: The Gathering +GMNotes: '' +GUID: 254c1f +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Scenario +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.95599174 + posY: 1.65564823 + posZ: -10.4411535 + rotX: 359.919739 + rotY: 269.999939 + rotZ: 0.0168425515 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Model_Bag 1 Return to The Gathering 41ebd8/Card Setup 5229a9.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Model_Bag 1 Return to The Gathering 41ebd8/Card Setup 5229a9.yaml new file mode 100644 index 000000000..020b4953c --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Model_Bag 1 Return to The Gathering 41ebd8/Card Setup 5229a9.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 232118 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2321': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775106514377428854/F01972D15C2B4CFCB8CA72006B7E00D243683AFA/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377429266/856DF4A8D87D7B6CB71572D20908D35F4182AC45/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Return to The Gathering +GMNotes: '' +GUID: 5229a9 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Setup +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -0.294468671 + posY: 1.65051615 + posZ: -10.4522753 + rotX: 359.919739 + rotY: 269.999939 + rotZ: 0.0168411 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Model_Bag 1 Return to The Gathering 41ebd8/Card Study 670914.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Model_Bag 1 Return to The Gathering 41ebd8/Card Study 670914.yaml new file mode 100644 index 000000000..d81c76c13 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Model_Bag 1 Return to The Gathering 41ebd8/Card Study 670914.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 232324 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2323': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775106514377430450/FDA37585F019D453CF383D975CF1AB631ECF64B7/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377431393/4752E394498B81694A370AA6BB05BC5A4E55FD30/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Aberrant Gateway +GMNotes: '' +GUID: '670914' +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Study +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -17.1199646 + posY: 1.67931557 + posZ: 7.56998158 + rotX: 359.9201 + rotY: 269.999817 + rotZ: 0.0168774333 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Model_Bag 1 Return to The Gathering 41ebd8/Custom_Model_Bag Set-aside 7a167a.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Model_Bag 1 Return to The Gathering 41ebd8/Custom_Model_Bag Set-aside 7a167a.yaml new file mode 100644 index 000000000..bee07a629 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Model_Bag 1 Return to The Gathering 41ebd8/Custom_Model_Bag Set-aside 7a167a.yaml @@ -0,0 +1,61 @@ +Autoraise: true +ColorDiffuse: + b: 0.02148666 + g: 0.00100758043 + r: 0.02148666 +ContainedObjects: +- !include 'Custom_Model_Bag Set-aside 7a167a/Card Lita Chantler af188b.yaml' +- !include 'Custom_Model_Bag Set-aside 7a167a/Card Ghoul Priest ab3719.yaml' +- !include 'Custom_Model_Bag Set-aside 7a167a/Card Parlor 377b20.yaml' +- !include 'Custom_Model_Bag Set-aside 7a167a/Card Deep Below Your House 377b20.yaml' +- !include 'Custom_Model_Bag Set-aside 7a167a/Card Far Above Your House 377b20.yaml' +- !include 'Custom_Model_Bag Set-aside 7a167a/Card Hole in the Wall c5fc31.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: '' +GMNotes: '' +GUID: 7a167a +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +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.69598842 + posY: 1.55831814 + posZ: 14.27876 + rotX: 359.955139 + rotY: 224.998077 + rotZ: 0.06867281 + scaleX: 2.0 + scaleY: 2.0 + scaleZ: 2.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Model_Bag 1 Return to The Gathering 41ebd8/Custom_Model_Bag Set-aside 7a167a/Card Deep Below Your House 377b20.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Model_Bag 1 Return to The Gathering 41ebd8/Custom_Model_Bag Set-aside 7a167a/Card Deep Below Your House 377b20.yaml new file mode 100644 index 000000000..500ffb3e0 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Model_Bag 1 Return to The Gathering 41ebd8/Custom_Model_Bag Set-aside 7a167a/Card Deep Below Your House 377b20.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 232340 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2323': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775106514377430450/FDA37585F019D453CF383D975CF1AB631ECF64B7/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377431393/4752E394498B81694A370AA6BB05BC5A4E55FD30/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 377b20 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Deep Below Your House +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 34.788578 + posY: 2.50427771 + posZ: -37.25269 + rotX: 359.983276 + rotY: 269.999451 + rotZ: 0.00353678875 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Model_Bag 1 Return to The Gathering 41ebd8/Custom_Model_Bag Set-aside 7a167a/Card Far Above Your House 377b20.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Model_Bag 1 Return to The Gathering 41ebd8/Custom_Model_Bag Set-aside 7a167a/Card Far Above Your House 377b20.yaml new file mode 100644 index 000000000..391d101ff --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Model_Bag 1 Return to The Gathering 41ebd8/Custom_Model_Bag Set-aside 7a167a/Card Far Above Your House 377b20.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 232330 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2323': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775106514377430450/FDA37585F019D453CF383D975CF1AB631ECF64B7/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377431393/4752E394498B81694A370AA6BB05BC5A4E55FD30/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 377b20 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Far Above Your House +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.2233067 + posY: 2.53132367 + posZ: -19.0974445 + rotX: 359.983246 + rotY: 269.999664 + rotZ: 0.003538302 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Model_Bag 1 Return to The Gathering 41ebd8/Custom_Model_Bag Set-aside 7a167a/Card Ghoul Priest ab3719.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Model_Bag 1 Return to The Gathering 41ebd8/Custom_Model_Bag Set-aside 7a167a/Card Ghoul Priest ab3719.yaml new file mode 100644 index 000000000..b42ade58b --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Model_Bag 1 Return to The Gathering 41ebd8/Custom_Model_Bag Set-aside 7a167a/Card Ghoul Priest ab3719.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 231700 +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 + UniqueBack: false +Description: Humanoid. Monster. Ghoul. Elite. +GMNotes: '' +GUID: ab3719 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Ghoul Priest +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 7.79273129 + posY: 3.60550761 + posZ: 26.71949 + rotX: 359.9191 + rotY: 269.999725 + rotZ: 0.0170720164 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Model_Bag 1 Return to The Gathering 41ebd8/Custom_Model_Bag Set-aside 7a167a/Card Hole in the Wall c5fc31.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Model_Bag 1 Return to The Gathering 41ebd8/Custom_Model_Bag Set-aside 7a167a/Card Hole in the Wall c5fc31.yaml new file mode 100644 index 000000000..c367be6b7 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Model_Bag 1 Return to The Gathering 41ebd8/Custom_Model_Bag Set-aside 7a167a/Card Hole in the Wall c5fc31.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 232328 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2323': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775106514377430450/FDA37585F019D453CF383D975CF1AB631ECF64B7/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377431393/4752E394498B81694A370AA6BB05BC5A4E55FD30/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: c5fc31 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Hole in the Wall +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 1.69642222 + posY: 3.72846365 + posZ: 14.2788372 + rotX: 359.94812 + rotY: 224.998062 + rotZ: 0.0583304428 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Model_Bag 1 Return to The Gathering 41ebd8/Custom_Model_Bag Set-aside 7a167a/Card Lita Chantler af188b.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Model_Bag 1 Return to The Gathering 41ebd8/Custom_Model_Bag Set-aside 7a167a/Card Lita Chantler af188b.yaml new file mode 100644 index 000000000..cfcac7e1d --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Model_Bag 1 Return to The Gathering 41ebd8/Custom_Model_Bag Set-aside 7a167a/Card Lita Chantler af188b.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 231850 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: The Zealot +GMNotes: '' +GUID: af188b +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Lita Chantler +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 7.45915365 + posY: 3.60572672 + posZ: 26.2033443 + rotX: 359.93222 + rotY: 269.992767 + rotZ: 0.0270068236 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Model_Bag 1 Return to The Gathering 41ebd8/Custom_Model_Bag Set-aside 7a167a/Card Parlor 377b20.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Model_Bag 1 Return to The Gathering 41ebd8/Custom_Model_Bag Set-aside 7a167a/Card Parlor 377b20.yaml new file mode 100644 index 000000000..882300a79 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Model_Bag 1 Return to The Gathering 41ebd8/Custom_Model_Bag Set-aside 7a167a/Card Parlor 377b20.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 232304 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2323': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775106514377430450/FDA37585F019D453CF383D975CF1AB631ECF64B7/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377431393/4752E394498B81694A370AA6BB05BC5A4E55FD30/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 377b20 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Parlor +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 8.794919 + posY: 3.60436845 + posZ: 26.1716137 + rotX: 359.9196 + rotY: 270.001678 + rotZ: 0.01614667 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Model_Bag 1 Return to The Gathering 41ebd8/Custom_Tile 37ba8d.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Model_Bag 1 Return to The Gathering 41ebd8/Custom_Tile 37ba8d.yaml new file mode 100644 index 000000000..0e64d3702 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Model_Bag 1 Return to The Gathering 41ebd8/Custom_Tile 37ba8d.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 37ba8d +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.7343826 + posY: 1.61976969 + posZ: 3.362501 + rotX: 0.06843118 + rotY: 134.998642 + rotZ: 0.0445600376 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Model_Bag 1 Return to The Gathering 41ebd8/Custom_Tile 6ec50e.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Model_Bag 1 Return to The Gathering 41ebd8/Custom_Tile 6ec50e.yaml new file mode 100644 index 000000000..42d909158 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Model_Bag 1 Return to The Gathering 41ebd8/Custom_Tile 6ec50e.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 6ec50e +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.6764927 + posY: 1.61565208 + posZ: 3.85999823 + rotX: 0.0168720186 + rotY: 179.999878 + rotZ: 0.07995177 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Model_Bag 1 Return to The Gathering 41ebd8/Custom_Tile 7234af.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Model_Bag 1 Return to The Gathering 41ebd8/Custom_Tile 7234af.yaml new file mode 100644 index 000000000..201f99034 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Model_Bag 1 Return to The Gathering 41ebd8/Custom_Tile 7234af.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 7234af +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.56077 + posY: 1.6111865 + posZ: 3.44922042 + rotX: 359.955444 + rotY: 224.995117 + rotZ: 0.06841106 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Model_Bag 1 Return to The Gathering 41ebd8/Custom_Tile 7f8292.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Model_Bag 1 Return to The Gathering 41ebd8/Custom_Tile 7f8292.yaml new file mode 100644 index 000000000..e248aa18a --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Model_Bag 1 Return to The Gathering 41ebd8/Custom_Tile 7f8292.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 7f8292 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.6764221 + posY: 1.61338758 + posZ: -3.83002019 + rotX: 0.01687236 + rotY: 179.999832 + rotZ: 0.07997054 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Model_Bag 1 Return to The Gathering 41ebd8/Custom_Tile Core Difficulty 527f29.ttslua b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Model_Bag 1 Return to The Gathering 41ebd8/Custom_Tile Core Difficulty 527f29.ttslua new file mode 100644 index 000000000..c7ea585c8 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Model_Bag 1 Return to The Gathering 41ebd8/Custom_Tile Core Difficulty 527f29.ttslua @@ -0,0 +1,21 @@ +name = 'Core Set' + +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 The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Model_Bag 1 Return to The Gathering 41ebd8/Custom_Tile Core Difficulty 527f29.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Model_Bag 1 Return to The Gathering 41ebd8/Custom_Tile Core Difficulty 527f29.yaml new file mode 100644 index 000000000..aad6e2e5e --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Model_Bag 1 Return to The Gathering 41ebd8/Custom_Tile Core Difficulty 527f29.yaml @@ -0,0 +1,42 @@ +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 +GMNotes: '' +GUID: 527f29 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Tile Core Difficulty 527f29.ttslua' +LuaScriptState: '' +Name: Custom_Tile +Nickname: Core Difficulty +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -4.0721 + posY: 1.58295739 + posZ: -14.3202019 + rotX: 359.919739 + rotY: 270.004272 + rotZ: 0.0168318544 + scaleX: 2.2 + scaleY: 1.0 + scaleZ: 2.2 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Model_Bag 1 Return to The Gathering 41ebd8/Deck Act Deck b053dc.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Model_Bag 1 Return to The Gathering 41ebd8/Deck Act Deck b053dc.yaml new file mode 100644 index 000000000..14db02135 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Model_Bag 1 Return to The Gathering 41ebd8/Deck Act Deck b053dc.yaml @@ -0,0 +1,172 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 232406 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2324': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775106514377428854/F01972D15C2B4CFCB8CA72006B7E00D243683AFA/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377429266/856DF4A8D87D7B6CB71572D20908D35F4182AC45/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 3 + GMNotes: '' + GUID: '633954' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: What Have You Done? + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.0536842 + posY: 1.54011273 + posZ: 31.34863 + rotX: 0.0105464933 + rotY: 180.030472 + rotZ: 0.0720803 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232405 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2324': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775106514377428854/F01972D15C2B4CFCB8CA72006B7E00D243683AFA/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377429266/856DF4A8D87D7B6CB71572D20908D35F4182AC45/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 2 + GMNotes: '' + GUID: 3ea05e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Barrier + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.2235432 + posY: 1.68532252 + posZ: 31.0495453 + rotX: -0.00531547936 + rotY: 180.0322 + rotZ: 0.0185572281 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232419 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2324': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775106514377428854/F01972D15C2B4CFCB8CA72006B7E00D243683AFA/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377429266/856DF4A8D87D7B6CB71572D20908D35F4182AC45/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 1 + GMNotes: '' + GUID: fba792 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Mysterious Gateway + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.68852329 + posY: 1.82238781 + posZ: -5.0485816 + rotX: 0.0360360667 + rotY: 179.999908 + rotZ: 0.0682327747 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2324': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775106514377428854/F01972D15C2B4CFCB8CA72006B7E00D243683AFA/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377429266/856DF4A8D87D7B6CB71572D20908D35F4182AC45/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 232406 +- 232405 +- 232419 +Description: '' +GMNotes: '' +GUID: b053dc +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Act Deck +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.68897271 + posY: 1.654998 + posZ: -5.04881239 + rotX: 0.0168166086 + rotY: 180.013138 + rotZ: 0.08026154 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Model_Bag 1 Return to The Gathering 41ebd8/Deck Agenda Deck 9af3a1.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Model_Bag 1 Return to The Gathering 41ebd8/Deck Agenda Deck 9af3a1.yaml new file mode 100644 index 000000000..601afd305 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Model_Bag 1 Return to The Gathering 41ebd8/Deck Agenda Deck 9af3a1.yaml @@ -0,0 +1,172 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 232403 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2324': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775106514377428854/F01972D15C2B4CFCB8CA72006B7E00D243683AFA/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377429266/856DF4A8D87D7B6CB71572D20908D35F4182AC45/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 3 + GMNotes: '' + GUID: 3c8849 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: They're Getting Out! + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 10.750123 + posY: 1.69330168 + posZ: 34.5822639 + rotX: 358.0147 + rotY: 180.207428 + rotZ: 355.322632 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232402 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2324': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775106514377428854/F01972D15C2B4CFCB8CA72006B7E00D243683AFA/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377429266/856DF4A8D87D7B6CB71572D20908D35F4182AC45/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 2 + GMNotes: '' + GUID: c593b7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Rise of the Ghouls + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 10.6825838 + posY: 1.893647 + posZ: 34.7332954 + rotX: 359.8063 + rotY: 180.017151 + rotZ: 355.3215 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232401 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2324': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775106514377428854/F01972D15C2B4CFCB8CA72006B7E00D243683AFA/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377429266/856DF4A8D87D7B6CB71572D20908D35F4182AC45/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 1 + GMNotes: '' + GUID: '633954' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: What's Going On?! + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 10.5238991 + posY: 1.72700119 + posZ: 34.16916 + rotX: 0.0166657362 + rotY: 179.994751 + rotZ: 0.07937047 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2324': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775106514377428854/F01972D15C2B4CFCB8CA72006B7E00D243683AFA/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377429266/856DF4A8D87D7B6CB71572D20908D35F4182AC45/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 232403 +- 232402 +- 232401 +Description: '' +GMNotes: '' +GUID: 9af3a1 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Agenda Deck +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.72475171 + posY: 1.65664124 + posZ: 0.373330623 + rotX: 0.0168339387 + rotY: 180.000626 + rotZ: 0.08025854 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Model_Bag 1 Return to The Gathering 41ebd8/Deck Encounter Deck f98bcc.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Model_Bag 1 Return to The Gathering 41ebd8/Deck Encounter Deck f98bcc.yaml new file mode 100644 index 000000000..084aff17b --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Model_Bag 1 Return to The Gathering 41ebd8/Deck Encounter Deck f98bcc.yaml @@ -0,0 +1,1333 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 231739 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 5b4ef3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Chill from Below + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -25.5324268 + posY: 1.59864092 + posZ: 33.35978 + rotX: 359.920135 + rotY: 269.999817 + rotZ: 0.0168426409 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231739 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: fa916a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Chill from Below + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -25.095953 + posY: 1.76498652 + posZ: 33.6871719 + rotX: 359.9181 + rotY: 269.999878 + rotZ: 0.0131390868 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231739 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 5b4ef3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Chill from Below + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -25.0959339 + posY: 1.77885532 + posZ: 33.68717 + rotX: 359.920319 + rotY: 269.999878 + rotZ: 0.0163987149 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231738 + 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 + UniqueBack: false + Description: Humanoid. Monster. Ghoul. + GMNotes: '' + GUID: cadd49 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: "Acolyte of Um\xF4rdhoth" + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -25.8445168 + posY: 1.59990489 + posZ: 36.2778969 + rotX: 359.920441 + rotY: 269.995728 + rotZ: 0.01474889 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231737 + 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 + UniqueBack: false + Description: Humanoid. Monster. Ghoul. + GMNotes: '' + GUID: ab3719 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Grave-Eater + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -25.9238586 + posY: 1.60099757 + posZ: 39.56222 + rotX: 359.9203 + rotY: 270.005859 + rotZ: 0.0158384759 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231737 + 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 + UniqueBack: false + Description: Humanoid. Monster. Ghoul. + GMNotes: '' + GUID: 4d726b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Grave-Eater + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -26.18154 + posY: 1.76863384 + posZ: 39.29493 + rotX: 359.92218 + rotY: 270.005859 + rotZ: 0.0167646986 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231737 + 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 + UniqueBack: false + Description: Humanoid. Monster. Ghoul. + GMNotes: '' + GUID: ab3719 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Grave-Eater + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -26.055315 + posY: 1.78233588 + posZ: 39.3050423 + rotX: 359.920074 + rotY: 270.005859 + rotZ: 0.0165559836 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231749 + 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 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: 891dd5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Zealot's Seal + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -24.9986839 + posY: 1.76613092 + posZ: 29.5493069 + rotX: 359.922241 + rotY: 270.000183 + rotZ: 180.01796 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231749 + 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 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: ab3719 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Zealot's Seal + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -25.0776443 + posY: 1.59972811 + posZ: 29.644537 + rotX: 359.9202 + rotY: 270.000244 + rotZ: 180.0174 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231748 + 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 + UniqueBack: false + Description: Humanoid. Monster. Ghoul. + GMNotes: '' + GUID: b29f35 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ghoul from the Depths + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -26.28309 + posY: 1.76587307 + posZ: 37.53138 + rotX: 359.937531 + rotY: 269.999878 + rotZ: 180.015259 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231747 + 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 + UniqueBack: false + Description: Humanoid. Monster. Ghoul. + GMNotes: '' + GUID: 832d7e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Corpse-Hungry Ghoul + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -26.24879 + posY: 1.76663435 + posZ: 36.66365 + rotX: 359.935333 + rotY: 270.0 + rotZ: 180.018082 + 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 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: 50e716 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: c4ce76 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: ab3719 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: 16d6d6 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: 6e7cb8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: 8af879 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: 6e7cb8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: f5c831 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: 97416f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: 0f4202 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: c70601 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: ab3719 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: 435a47 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: ab3719 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 231712 + 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 + UniqueBack: false + Description: Creature. + GMNotes: '' + GUID: ab3719 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Swarm of Rats + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 15.456192 + posY: 1.53138053 + posZ: -0.8908986 + rotX: 359.92038 + rotY: 270.0 + rotZ: 0.0147123663 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231712 + 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 + UniqueBack: false + Description: Creature. + GMNotes: '' + GUID: a2cf85 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Swarm of Rats + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 15.4186563 + posY: 1.68472993 + posZ: -0.738109052 + rotX: 359.913422 + rotY: 270.000122 + rotZ: 0.0100070881 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231712 + 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 + UniqueBack: false + Description: Creature. + GMNotes: '' + GUID: ab3719 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Swarm of Rats + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 15.4186554 + posY: 1.69875109 + posZ: -0.738129 + rotX: 359.918427 + rotY: 270.0001 + rotZ: 0.0155182732 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231702 + 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 + UniqueBack: false + Description: Humanoid. Monster. Ghoul. + GMNotes: '' + GUID: ab3719 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Icy Ghoul + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 12.6636543 + posY: 1.54657423 + posZ: 37.5398254 + rotX: 359.920532 + rotY: 269.9993 + rotZ: 0.0137309171 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231701 + 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 + UniqueBack: false + Description: Humanoid. Monster. Ghoul. + GMNotes: '' + GUID: cab587 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Flesh-Eater + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 13.0099249 + posY: 1.69600558 + posZ: 37.5811234 + rotX: 359.925934 + rotY: 269.999084 + rotZ: 0.0123997116 + 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 + UniqueBack: false +DeckIDs: +- 231739 +- 231739 +- 231739 +- 231738 +- 231737 +- 231737 +- 231737 +- 231749 +- 231749 +- 231748 +- 231747 +- 231721 +- 231721 +- 231720 +- 231720 +- 231719 +- 231719 +- 231719 +- 231718 +- 231718 +- 231717 +- 231717 +- 231716 +- 231716 +- 231716 +- 231712 +- 231712 +- 231712 +- 231702 +- 231701 +Description: '' +GMNotes: '' +GUID: f98bcc +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Encounter Deck +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.927452 + posY: 1.77170956 + posZ: 5.75709343 + rotX: 359.919739 + rotY: 270.0 + rotZ: 180.016815 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Model_Bag 2 Return to The Midnight Masks bcc86c.ttslua b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Model_Bag 2 Return to The Midnight Masks bcc86c.ttslua new file mode 100644 index 000000000..46067f58e --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Model_Bag 2 Return to The Midnight Masks bcc86c.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.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.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 Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Model_Bag 2 Return to The Midnight Masks bcc86c.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Model_Bag 2 Return to The Midnight Masks bcc86c.yaml new file mode 100644 index 000000000..eb48e9364 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Model_Bag 2 Return to The Midnight Masks bcc86c.yaml @@ -0,0 +1,116 @@ +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 2 Return to The Midnight Masks bcc86c/Custom_Model_Bag + Set-aside e4821e.yaml' +- !include 'Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Deck Encounter + Deck 28e161.yaml' +- !include 'Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Bag Agenda decks + pick 1 b99f05.yaml' +- !include 'Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Card Uncovering + the Conspiracy f859a4.yaml' +- !include 'Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Card Scenario a22908.yaml' +- !include 'Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Card Setup 250d52.yaml' +- !include 'Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Custom_Tile Core + Difficulty 47f3de.yaml' +- !include 'Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Custom_Tile 2432ab.yaml' +- !include 'Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Card Downtown 08e13b.yaml' +- !include 'Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Card Downtown 1aa7cb.yaml' +- !include 'Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Custom_Tile 261175.yaml' +- !include 'Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Custom_Tile 453ebf.yaml' +- !include 'Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Card Northside + 86faac.yaml' +- !include 'Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Card Northside + 8aa8fd.yaml' +- !include 'Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Card Easttown e9bb0a.yaml' +- !include 'Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Card Easttown 88245c.yaml' +- !include 'Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Custom_Tile 5eee6e.yaml' +- !include 'Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Custom_Tile b42670.yaml' +- !include 'Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Card Rivertown + da0b77.yaml' +- !include 'Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Card Rivertown + 86b480.yaml' +- !include 'Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Card Graveyard + e1b8fc.yaml' +- !include 'Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Card Your House + b28633.yaml' +- !include 'Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Card Southside + 076b61.yaml' +- !include 'Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Card St. Mary''s + Hospital fac63b.yaml' +- !include 'Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Card Southside + 377b20.yaml' +- !include 'Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Custom_Tile 7234af.yaml' +- !include 'Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Custom_Tile 40c3a4.yaml' +- !include 'Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Custom_Tile e26fc3.yaml' +- !include 'Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Custom_Tile 81d86f.yaml' +- !include 'Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Card Miskatonic + University e0962c.yaml' +- !include 'Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Custom_Tile 814638.yaml' +- !include 'Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Card Miskatonic + University cedb0a.yaml' +- !include 'Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Custom_Tile 9afc26.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/829135118401844462/DB9EB90FAED569A6844CB68AC0A60F99BE1AC2A1/ + MaterialIndex: 3 + MeshURL: https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj + NormalURL: '' + TypeIndex: 6 +Description: Return to the Night of the Zealot +GMNotes: '' +GUID: bcc86c +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Model_Bag 2 Return to The Midnight Masks bcc86c.ttslua' +LuaScriptState: '{"ml":{"076b61":{"lock":false,"pos":{"x":-30.2241,"y":1.6954,"z":-0.0301},"rot":{"x":359.9206,"y":270.0013,"z":0.0179}},"08e13b":{"lock":false,"pos":{"x":-17.1199,"y":1.6771,"z":-0.03},"rot":{"x":359.9202,"y":269.9998,"z":0.0159}},"1aa7cb":{"lock":false,"pos":{"x":-15.4694,"y":1.8129,"z":-0.0417},"rot":{"x":354.8361,"y":269.993,"z":0.0102}},"2432ab":{"lock":false,"pos":{"x":0.2826,"y":1.5763,"z":-16.3088},"rot":{"x":359.9197,"y":270.0286,"z":0.0168}},"250d52":{"lock":false,"pos":{"x":-6.1919,"y":1.7607,"z":-10.4684},"rot":{"x":3.6723,"y":270.0193,"z":0.0167}},"261175":{"lock":false,"pos":{"x":-17.12,"y":1.6042,"z":-3.83},"rot":{"x":0.0169,"y":179.9968,"z":0.0799}},"28e161":{"lock":false,"pos":{"x":-3.9274,"y":1.7344,"z":5.7571},"rot":{"x":359.9197,"y":270,"z":180.0168}},"377b20":{"lock":false,"pos":{"x":-31.8945,"y":1.8341,"z":-0.002},"rot":{"x":4.9358,"y":269.9872,"z":0.0038}},"40c3a4":{"lock":false,"pos":{"x":-26.9844,"y":1.618,"z":-3.9073},"rot":{"x":0.0446,"y":45.0001,"z":359.9316}},"453ebf":{"lock":false,"pos":{"x":-17.1202,"y":1.6065,"z":3.8581},"rot":{"x":0.0169,"y":179.997,"z":0.0799}},"47f3de":{"lock":false,"pos":{"x":-3.3583,"y":1.5815,"z":-15.9833},"rot":{"x":359.9197,"y":270.0041,"z":0.0168}},"5eee6e":{"lock":false,"pos":{"x":-23.6765,"y":1.6134,"z":-3.83},"rot":{"x":0.0169,"y":179.9969,"z":0.0799}},"7234af":{"lock":false,"pos":{"x":-26.7605,"y":1.6188,"z":-0.014},"rot":{"x":359.9201,"y":269.9854,"z":0.0169}},"814638":{"lock":false,"pos":{"x":-20.2732,"y":1.612,"z":7.649},"rot":{"x":0.0797,"y":90.0001,"z":359.9679}},"81d86f":{"lock":false,"pos":{"x":-26.9036,"y":1.6213,"z":7.6326},"rot":{"x":0.0799,"y":89.9999,"z":359.9831}},"86b480":{"lock":false,"pos":{"x":-23.6782,"y":1.6862,"z":-0.0298},"rot":{"x":359.9203,"y":270.0107,"z":0.0152}},"86faac":{"lock":false,"pos":{"x":-15.735,"y":1.7293,"z":7.6008},"rot":{"x":359.9195,"y":269.9996,"z":0.0167}},"88245c":{"lock":false,"pos":{"x":-17.12,"y":1.6748,"z":-7.7},"rot":{"x":359.92,"y":270.0002,"z":0.0163}},"8aa8fd":{"lock":false,"pos":{"x":-17.12,"y":1.6793,"z":7.57},"rot":{"x":359.9201,"y":270,"z":0.0168}},"9afc26":{"lock":false,"pos":{"x":-23.6765,"y":1.6157,"z":3.86},"rot":{"x":0.0169,"y":179.9968,"z":0.0799}},"a22908":{"lock":false,"pos":{"x":-3.9558,"y":1.6556,"z":-10.4414},"rot":{"x":359.9193,"y":270.0122,"z":0.0159}},"b28633":{"lock":false,"pos":{"x":-30.2243,"y":1.6931,"z":-7.7002},"rot":{"x":359.9201,"y":269.9996,"z":0.0169}},"b42670":{"lock":false,"pos":{"x":-20.2002,"y":1.6087,"z":-3.4434},"rot":{"x":0.0684,"y":135.0001,"z":0.0446}},"b99f05":{"lock":false,"pos":{"x":-2.7249,"y":1.4004,"z":0.3734},"rot":{"x":359.9832,"y":0,"z":359.9197}},"cedb0a":{"lock":false,"pos":{"x":-22.2395,"y":1.7728,"z":7.6364},"rot":{"x":0.7464,"y":269.9932,"z":359.9065}},"da0b77":{"lock":false,"pos":{"x":-21.9405,"y":1.815,"z":-0.0836},"rot":{"x":355.0874,"y":270.0023,"z":0.0167}},"e0962c":{"lock":false,"pos":{"x":-23.6771,"y":1.7063,"z":7.5699},"rot":{"x":0.5733,"y":270.0044,"z":0.0177}},"e1b8fc":{"lock":false,"pos":{"x":-23.6766,"y":1.684,"z":-7.7},"rot":{"x":359.9201,"y":269.9985,"z":0.0169}},"e26fc3":{"lock":false,"pos":{"x":-26.3742,"y":1.6195,"z":4.2633},"rot":{"x":0.0446,"y":45,"z":359.9316}},"e4821e":{"lock":false,"pos":{"x":1.696,"y":1.5583,"z":14.2787},"rot":{"x":359.9551,"y":224.998,"z":0.0687}},"e9bb0a":{"lock":false,"pos":{"x":-15.488,"y":1.8123,"z":-7.6626},"rot":{"x":354.7832,"y":269.998,"z":0.0046}},"f859a4":{"lock":false,"pos":{"x":-2.6886,"y":1.6555,"z":-5.0485},"rot":{"x":0.0168,"y":180.002,"z":0.0803}},"fac63b":{"lock":false,"pos":{"x":-30.2242,"y":1.6976,"z":7.57},"rot":{"x":359.9201,"y":269.9998,"z":0.0169}}}}' +MaterialIndex: -1 +MeshIndex: -1 +Name: Custom_Model_Bag +Nickname: '2: Return to The Midnight Masks' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 12.0573606 + posY: 1.67227435 + posZ: 0.0148266787 + rotX: 359.910217 + rotY: 270.149933 + rotZ: 4.22494364 + scaleX: 2.21 + scaleY: 0.46 + scaleZ: 2.42 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Bag Agenda decks pick 1 b99f05.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Bag Agenda decks pick 1 b99f05.yaml new file mode 100644 index 000000000..d6f34c014 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Bag Agenda decks pick 1 b99f05.yaml @@ -0,0 +1,37 @@ +Autoraise: true +ColorDiffuse: + b: 0.24999994 + g: 0.24999994 + r: 0.24999994 +ContainedObjects: +- !include 'Bag Agenda decks pick 1 b99f05/Deck Agenda Deck 22482b.yaml' +- !include 'Bag Agenda decks pick 1 b99f05/Deck Agenda Deck d6c0a2.yaml' +Description: '' +GMNotes: '' +GUID: b99f05 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +MeshIndex: -1 +Name: Bag +Nickname: Agenda decks pick 1 +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.72493625 + posY: 1.40035391 + posZ: 0.373369545 + rotX: 359.983154 + rotY: 2.00176164e-05 + rotZ: 359.919678 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Bag Agenda decks pick 1 b99f05/Deck Agenda Deck 22482b.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Bag Agenda decks pick 1 b99f05/Deck Agenda Deck 22482b.yaml new file mode 100644 index 000000000..d146a31d8 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Bag Agenda decks pick 1 b99f05/Deck Agenda Deck 22482b.yaml @@ -0,0 +1,136 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 232409 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2324': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775106514377428854/F01972D15C2B4CFCB8CA72006B7E00D243683AFA/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377429266/856DF4A8D87D7B6CB71572D20908D35F4182AC45/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 2 + GMNotes: '' + GUID: '633954' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Time is Running Short + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 10.9444427 + posY: 1.54599309 + posZ: 27.2540646 + rotX: 0.0168595426 + rotY: 180.000336 + rotZ: 0.0800404847 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232108 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2321': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775106514377428854/F01972D15C2B4CFCB8CA72006B7E00D243683AFA/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377429266/856DF4A8D87D7B6CB71572D20908D35F4182AC45/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 1 + GMNotes: '' + GUID: 1c19e2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Predator or Prey? + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 10.6250229 + posY: 1.70773172 + posZ: 27.3578815 + rotX: 0.0151049038 + rotY: 180.000015 + rotZ: 0.06792285 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2321': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775106514377428854/F01972D15C2B4CFCB8CA72006B7E00D243683AFA/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377429266/856DF4A8D87D7B6CB71572D20908D35F4182AC45/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + '2324': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775106514377428854/F01972D15C2B4CFCB8CA72006B7E00D243683AFA/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377429266/856DF4A8D87D7B6CB71572D20908D35F4182AC45/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 232409 +- 232108 +Description: '' +GMNotes: '' +GUID: 22482b +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Agenda Deck +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 9.417931 + posY: 3.62742257 + posZ: 20.2837448 + rotX: 359.567841 + rotY: 180.001862 + rotZ: 359.483948 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Bag Agenda decks pick 1 b99f05/Deck Agenda Deck d6c0a2.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Bag Agenda decks pick 1 b99f05/Deck Agenda Deck d6c0a2.yaml new file mode 100644 index 000000000..760e72e1f --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Bag Agenda decks pick 1 b99f05/Deck Agenda Deck d6c0a2.yaml @@ -0,0 +1,136 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 232409 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2324': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775106514377428854/F01972D15C2B4CFCB8CA72006B7E00D243683AFA/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377429266/856DF4A8D87D7B6CB71572D20908D35F4182AC45/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 2 + GMNotes: '' + GUID: 62f2fe + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Time is Running Short + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 13.8283167 + posY: 1.54321682 + posZ: 31.5596867 + rotX: 0.0170884542 + rotY: 179.992371 + rotZ: 0.07847351 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232122 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2321': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775106514377428854/F01972D15C2B4CFCB8CA72006B7E00D243683AFA/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377429266/856DF4A8D87D7B6CB71572D20908D35F4182AC45/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 1 + GMNotes: '' + GUID: f364ec + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Predator or Prey? + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 13.75223 + posY: 1.70390022 + posZ: 31.1540852 + rotX: 0.0235319715 + rotY: 180.006 + rotZ: 0.07413736 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2321': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775106514377428854/F01972D15C2B4CFCB8CA72006B7E00D243683AFA/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377429266/856DF4A8D87D7B6CB71572D20908D35F4182AC45/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + '2324': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775106514377428854/F01972D15C2B4CFCB8CA72006B7E00D243683AFA/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377429266/856DF4A8D87D7B6CB71572D20908D35F4182AC45/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 232409 +- 232122 +Description: '' +GMNotes: '' +GUID: d6c0a2 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Agenda Deck +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 9.430542 + posY: 3.62111044 + posZ: 24.5329437 + rotX: 0.0168795958 + rotY: 180.000015 + rotZ: 0.04602737 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Card Downtown 08e13b.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Card Downtown 08e13b.yaml new file mode 100644 index 000000000..4e7269678 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Card Downtown 08e13b.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 232311 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2323': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775106514377430450/FDA37585F019D453CF383D975CF1AB631ECF64B7/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377431393/4752E394498B81694A370AA6BB05BC5A4E55FD30/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Arkham. +GMNotes: '' +GUID: 08e13b +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Downtown +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -17.1199169 + posY: 1.67706406 + posZ: -0.0300263856 + rotX: 359.920227 + rotY: 269.999756 + rotZ: 0.0158634186 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Card Downtown 1aa7cb.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Card Downtown 1aa7cb.yaml new file mode 100644 index 000000000..778c93435 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Card Downtown 1aa7cb.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 232312 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2323': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775106514377430450/FDA37585F019D453CF383D975CF1AB631ECF64B7/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377431393/4752E394498B81694A370AA6BB05BC5A4E55FD30/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Arkham. +GMNotes: '' +GUID: 1aa7cb +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Downtown +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -15.4694481 + posY: 1.81293118 + posZ: -0.04169801 + rotX: 354.8361 + rotY: 269.993 + rotZ: 0.0102233849 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Card Easttown 88245c.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Card Easttown 88245c.yaml new file mode 100644 index 000000000..a6f61e183 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Card Easttown 88245c.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 232332 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2323': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775106514377430450/FDA37585F019D453CF383D975CF1AB631ECF64B7/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377431393/4752E394498B81694A370AA6BB05BC5A4E55FD30/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Arkham. +GMNotes: '' +GUID: 88245c +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Easttown +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -17.12 + posY: 1.6748122 + posZ: -7.70003271 + rotX: 359.919952 + rotY: 270.000153 + rotZ: 0.0162758026 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Card Easttown e9bb0a.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Card Easttown e9bb0a.yaml new file mode 100644 index 000000000..e7f8f2ba7 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Card Easttown e9bb0a.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 232313 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2323': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775106514377430450/FDA37585F019D453CF383D975CF1AB631ECF64B7/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377431393/4752E394498B81694A370AA6BB05BC5A4E55FD30/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Arkham. +GMNotes: '' +GUID: e9bb0a +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Easttown +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -15.4879637 + posY: 1.81227112 + posZ: -7.6626277 + rotX: 354.7832 + rotY: 269.998047 + rotZ: 0.00464755762 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Card Graveyard e1b8fc.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Card Graveyard e1b8fc.yaml new file mode 100644 index 000000000..78bf8334b --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Card Graveyard e1b8fc.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 232314 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2323': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775106514377430450/FDA37585F019D453CF383D975CF1AB631ECF64B7/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377431393/4752E394498B81694A370AA6BB05BC5A4E55FD30/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Arkham. +GMNotes: '' +GUID: e1b8fc +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Graveyard +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -23.6766186 + posY: 1.683962 + posZ: -7.699995 + rotX: 359.9201 + rotY: 269.998535 + rotZ: 0.0168777853 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Card Miskatonic University cedb0a.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Card Miskatonic University cedb0a.yaml new file mode 100644 index 000000000..8316a479e --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Card Miskatonic University cedb0a.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 232334 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2323': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775106514377430450/FDA37585F019D453CF383D975CF1AB631ECF64B7/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377431393/4752E394498B81694A370AA6BB05BC5A4E55FD30/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Arkham. +GMNotes: '' +GUID: cedb0a +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Miskatonic University +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -22.239521 + posY: 1.77279 + posZ: 7.6363945 + rotX: 0.746352732 + rotY: 269.993225 + rotZ: 359.906464 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Card Miskatonic University e0962c.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Card Miskatonic University e0962c.yaml new file mode 100644 index 000000000..166354f14 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Card Miskatonic University e0962c.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 232310 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2323': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775106514377430450/FDA37585F019D453CF383D975CF1AB631ECF64B7/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377431393/4752E394498B81694A370AA6BB05BC5A4E55FD30/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Arkham. +GMNotes: '' +GUID: e0962c +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Miskatonic University +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -23.6771317 + posY: 1.7062993 + posZ: 7.56986856 + rotX: 0.5733223 + rotY: 270.004425 + rotZ: 0.0176554024 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Card Northside 86faac.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Card Northside 86faac.yaml new file mode 100644 index 000000000..4df5fc374 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Card Northside 86faac.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 232333 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2323': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775106514377430450/FDA37585F019D453CF383D975CF1AB631ECF64B7/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377431393/4752E394498B81694A370AA6BB05BC5A4E55FD30/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Arkham. +GMNotes: '' +GUID: 86faac +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Northside +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -15.7350473 + posY: 1.7293061 + posZ: 7.60080433 + rotX: 359.919525 + rotY: 269.999634 + rotZ: 0.0166708529 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Card Northside 8aa8fd.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Card Northside 8aa8fd.yaml new file mode 100644 index 000000000..abfc63535 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Card Northside 8aa8fd.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 232315 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2323': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775106514377430450/FDA37585F019D453CF383D975CF1AB631ECF64B7/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377431393/4752E394498B81694A370AA6BB05BC5A4E55FD30/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Arkham. +GMNotes: '' +GUID: 8aa8fd +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Northside +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -17.11997 + posY: 1.67931414 + posZ: 7.569991 + rotX: 359.9201 + rotY: 269.999969 + rotZ: 0.0167735219 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Card Rivertown 86b480.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Card Rivertown 86b480.yaml new file mode 100644 index 000000000..9e76d7827 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Card Rivertown 86b480.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 232335 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2323': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775106514377430450/FDA37585F019D453CF383D975CF1AB631ECF64B7/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377431393/4752E394498B81694A370AA6BB05BC5A4E55FD30/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Arkham. Central. +GMNotes: '' +GUID: 86b480 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Rivertown +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -23.67815 + posY: 1.68619883 + posZ: -0.0297946874 + rotX: 359.9203 + rotY: 270.010742 + rotZ: 0.0152434381 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Card Rivertown da0b77.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Card Rivertown da0b77.yaml new file mode 100644 index 000000000..0b65fac15 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Card Rivertown da0b77.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 232306 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2323': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775106514377430450/FDA37585F019D453CF383D975CF1AB631ECF64B7/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377431393/4752E394498B81694A370AA6BB05BC5A4E55FD30/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Arkham. Central. +GMNotes: '' +GUID: da0b77 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Rivertown +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -21.9404964 + posY: 1.81501663 + posZ: -0.08357754 + rotX: 355.0874 + rotY: 270.002258 + rotZ: 0.0167108253 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Card Scenario a22908.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Card Scenario a22908.yaml new file mode 100644 index 000000000..73965b7bd --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Card Scenario a22908.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 232107 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2321': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775106514377428854/F01972D15C2B4CFCB8CA72006B7E00D243683AFA/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377429266/856DF4A8D87D7B6CB71572D20908D35F4182AC45/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: The Midnight Masks +GMNotes: '' +GUID: a22908 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Scenario +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.955802 + posY: 1.65563357 + posZ: -10.4414139 + rotX: 359.919342 + rotY: 270.012238 + rotZ: 0.01593819 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Card Setup 250d52.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Card Setup 250d52.yaml new file mode 100644 index 000000000..ecdf4c01e --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Card Setup 250d52.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 232120 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2321': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775106514377428854/F01972D15C2B4CFCB8CA72006B7E00D243683AFA/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377429266/856DF4A8D87D7B6CB71572D20908D35F4182AC45/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Return to The Midnight Masks +GMNotes: '' +GUID: 250d52 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Setup +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -6.191948 + posY: 1.76072752 + posZ: -10.4684277 + rotX: 3.67230463 + rotY: 270.019318 + rotZ: 0.01667771 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Card Southside 076b61.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Card Southside 076b61.yaml new file mode 100644 index 000000000..9e719f051 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Card Southside 076b61.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 232308 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2323': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775106514377430450/FDA37585F019D453CF383D975CF1AB631ECF64B7/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377431393/4752E394498B81694A370AA6BB05BC5A4E55FD30/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Arkham. +GMNotes: '' +GUID: 076b61 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Southside +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -30.2241478 + posY: 1.69538391 + posZ: -0.0300749633 + rotX: 359.920563 + rotY: 270.0013 + rotZ: 0.0178522561 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Card Southside 377b20.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Card Southside 377b20.yaml new file mode 100644 index 000000000..1dbafa860 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Card Southside 377b20.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 232307 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2323': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775106514377430450/FDA37585F019D453CF383D975CF1AB631ECF64B7/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377431393/4752E394498B81694A370AA6BB05BC5A4E55FD30/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Arkham. +GMNotes: '' +GUID: 377b20 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Southside +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -31.8944569 + posY: 1.83410668 + posZ: -0.00203668652 + rotX: 4.93579531 + rotY: 269.9872 + rotZ: 0.00381407631 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Card St. Mary's Hospital fac63b.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Card St. Mary's Hospital fac63b.yaml new file mode 100644 index 000000000..868c4ea96 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Card St. Mary's Hospital fac63b.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 232309 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2323': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775106514377430450/FDA37585F019D453CF383D975CF1AB631ECF64B7/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377431393/4752E394498B81694A370AA6BB05BC5A4E55FD30/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Arkham. +GMNotes: '' +GUID: fac63b +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: St. Mary's Hospital +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -30.224205 + posY: 1.69758856 + posZ: 7.56998873 + rotX: 359.9201 + rotY: 269.999756 + rotZ: 0.0168755949 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Card Uncovering the Conspiracy f859a4.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Card Uncovering the Conspiracy f859a4.yaml new file mode 100644 index 000000000..fcd6e6912 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Card Uncovering the Conspiracy f859a4.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 232410 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2324': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775106514377428854/F01972D15C2B4CFCB8CA72006B7E00D243683AFA/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377429266/856DF4A8D87D7B6CB71572D20908D35F4182AC45/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Act 1 +GMNotes: '' +GUID: f859a4 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Uncovering the Conspiracy +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.68857241 + posY: 1.6554575 + posZ: -5.04852438 + rotX: 0.01683199 + rotY: 180.002029 + rotZ: 0.08025899 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Card Your House b28633.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Card Your House b28633.yaml new file mode 100644 index 000000000..473536e62 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Card Your House b28633.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 232305 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2323': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775106514377430450/FDA37585F019D453CF383D975CF1AB631ECF64B7/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377431393/4752E394498B81694A370AA6BB05BC5A4E55FD30/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Arkham. +GMNotes: '' +GUID: b28633 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Your House +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -30.2243328 + posY: 1.69309235 + posZ: -7.7002306 + rotX: 359.9201 + rotY: 269.999634 + rotZ: 0.0168766249 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Custom_Model_Bag Set-aside e4821e.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Custom_Model_Bag Set-aside e4821e.yaml new file mode 100644 index 000000000..ecc9f9aa2 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Custom_Model_Bag Set-aside e4821e.yaml @@ -0,0 +1,57 @@ +Autoraise: true +ColorDiffuse: + b: 0.02148666 + g: 0.00100758043 + r: 0.02148666 +ContainedObjects: +- !include 'Custom_Model_Bag Set-aside e4821e/Deck Cultist Deck 69032d.yaml' +- !include 'Custom_Model_Bag Set-aside e4821e/Card Ghoul Priest ab3719.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: '' +GMNotes: '' +GUID: e4821e +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +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.69601381 + posY: 1.55831718 + posZ: 14.2787428 + rotX: 359.955139 + rotY: 224.997986 + rotZ: 0.06867723 + scaleX: 2.0 + scaleY: 2.0 + scaleZ: 2.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Custom_Model_Bag Set-aside e4821e/Card Ghoul Priest ab3719.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Custom_Model_Bag Set-aside e4821e/Card Ghoul Priest ab3719.yaml new file mode 100644 index 000000000..5d8203736 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Custom_Model_Bag Set-aside e4821e/Card Ghoul Priest ab3719.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 231700 +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 + UniqueBack: false +Description: Humanoid. Monster. Ghoul. Elite. +GMNotes: '' +GUID: ab3719 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Ghoul Priest +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.5442963 + posY: 2.54775 + posZ: -17.93338 + rotX: 359.920135 + rotY: 270.002869 + rotZ: 0.016871985 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Custom_Model_Bag Set-aside e4821e/Deck Cultist Deck 69032d.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Custom_Model_Bag Set-aside e4821e/Deck Cultist Deck 69032d.yaml new file mode 100644 index 000000000..6a9025b11 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Custom_Model_Bag Set-aside e4821e/Deck Cultist Deck 69032d.yaml @@ -0,0 +1,387 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 231745 + 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 + UniqueBack: false + Description: The Inquisitive Historian + GMNotes: '' + GUID: 2f6d5c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Alma Hill + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -26.8877316 + posY: 1.60149372 + posZ: 36.9405861 + rotX: 359.9215 + rotY: 269.9995 + rotZ: 0.0105527695 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231744 + 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 + UniqueBack: false + Description: The Crooked Cop + GMNotes: '' + GUID: 33870a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Billy Cooper + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -26.5962849 + posY: 1.74649262 + posZ: 36.55487 + rotX: 359.927429 + rotY: 270.000427 + rotZ: 0.009708078 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231743 + 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 + UniqueBack: false + Description: Your Next-Door Neighbor + GMNotes: '' + GUID: ab3719 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Jeremiah Pierce + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -26.8742352 + posY: 1.76448214 + posZ: 37.0487061 + rotX: 359.9221 + rotY: 269.999573 + rotZ: 0.015274873 + 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/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: The Mortician + GMNotes: '' + GUID: ab3719 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ruth Turner + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -6.18538 + posY: 1.72525084 + posZ: -7.613346 + rotX: 359.936371 + rotY: 270.0 + rotZ: 180.013824 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231708 + 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 + UniqueBack: false + Description: The Collector + GMNotes: '' + GUID: ec86a2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Victoria Devereux + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -6.151805 + posY: 1.71143651 + posZ: -8.111477 + rotX: 359.944366 + rotY: 270.016357 + rotZ: 180.000565 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231707 + 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 + UniqueBack: false + Description: The Occult Professor + GMNotes: '' + GUID: ad2df0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Peter Warren + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -6.05293274 + posY: 1.72509432 + posZ: -7.78916073 + rotX: 359.937225 + rotY: 269.999817 + rotZ: 180.015381 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231706 + 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 + UniqueBack: false + Description: The Undertaker + GMNotes: '' + GUID: a12fd2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Herman Collins + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -5.95645571 + posY: 1.70735312 + posZ: -8.194746 + rotX: 359.924164 + rotY: 269.999878 + rotZ: 180.026428 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231705 + 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 + UniqueBack: false + Description: The Cannibal + GMNotes: '' + GUID: ab3719 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '"Wolf-Man" Drew' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -6.351678 + posY: 1.56253266 + posZ: -7.93774748 + rotX: 359.92038 + rotY: 269.999969 + rotZ: 180.018967 + 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 + UniqueBack: false +DeckIDs: +- 231745 +- 231744 +- 231743 +- 231709 +- 231708 +- 231707 +- 231706 +- 231705 +Description: '' +GMNotes: '' +GUID: 69032d +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Cultist Deck +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 20.41708 + posY: 2.50763583 + posZ: -25.3189049 + rotX: 359.920135 + rotY: 269.999634 + rotZ: 0.0168782417 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Custom_Tile 2432ab.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Custom_Tile 2432ab.yaml new file mode 100644 index 000000000..6da425c64 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Custom_Tile 2432ab.yaml @@ -0,0 +1,42 @@ +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: '' +GMNotes: '' +GUID: 2432ab +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Tile +Nickname: '' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 0.28255567 + posY: 1.57627332 + posZ: -16.30877 + rotX: 359.919739 + rotY: 270.028625 + rotZ: 0.0167879257 + scaleX: 0.81 + scaleY: 1.0 + scaleZ: 0.81 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Custom_Tile 261175.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Custom_Tile 261175.yaml new file mode 100644 index 000000000..c1af2469a --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Custom_Tile 261175.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: '261175' +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.1199989 + posY: 1.60424507 + posZ: -3.83000016 + rotX: 0.01687633 + rotY: 179.9968 + rotZ: 0.07994496 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Custom_Tile 40c3a4.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Custom_Tile 40c3a4.yaml new file mode 100644 index 000000000..62a620cb4 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Custom_Tile 40c3a4.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 40c3a4 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.9844 + posY: 1.61797786 + posZ: -3.90730023 + rotX: 0.0445657559 + rotY: 45.00008 + rotZ: 359.9316 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Custom_Tile 453ebf.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Custom_Tile 453ebf.yaml new file mode 100644 index 000000000..fcdf075c0 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Custom_Tile 453ebf.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 453ebf +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.1201973 + posY: 1.60650921 + posZ: 3.8581 + rotX: 0.0168759674 + rotY: 179.997025 + rotZ: 0.0799459144 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Custom_Tile 5eee6e.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Custom_Tile 5eee6e.yaml new file mode 100644 index 000000000..83b28b02e --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Custom_Tile 5eee6e.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 5eee6e +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.6765 + posY: 1.6133877 + posZ: -3.83 + rotX: 0.0168760419 + rotY: 179.996857 + rotZ: 0.07993916 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Custom_Tile 7234af.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Custom_Tile 7234af.yaml new file mode 100644 index 000000000..508e21515 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Custom_Tile 7234af.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 7234af +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.76046 + posY: 1.618812 + posZ: -0.0139673278 + rotX: 359.9201 + rotY: 269.985443 + rotZ: 0.0169191435 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Custom_Tile 814638.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Custom_Tile 814638.yaml new file mode 100644 index 000000000..818b93cae --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Custom_Tile 814638.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: '814638' +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.273222 + posY: 1.61196709 + posZ: 7.64900637 + rotX: 0.07965159 + rotY: 90.0001 + rotZ: 359.967865 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Custom_Tile 81d86f.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Custom_Tile 81d86f.yaml new file mode 100644 index 000000000..0f548ee5c --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Custom_Tile 81d86f.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 81d86f +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.9036 + posY: 1.62126315 + posZ: 7.6326 + rotX: 0.0798944 + rotY: 89.99991 + rotZ: 359.9831 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Custom_Tile 9afc26.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Custom_Tile 9afc26.yaml new file mode 100644 index 000000000..75da19e57 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Custom_Tile 9afc26.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 9afc26 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.6765 + posY: 1.6156522 + posZ: 3.85999966 + rotX: 0.0168762244 + rotY: 179.996841 + rotZ: 0.07993933 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Custom_Tile b42670.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Custom_Tile b42670.yaml new file mode 100644 index 000000000..10a4df14c --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Custom_Tile b42670.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: b42670 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.2002 + posY: 1.60865414 + posZ: -3.44340014 + rotX: 0.06843118 + rotY: 135.000092 + rotZ: 0.0445619226 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Custom_Tile e26fc3.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Custom_Tile e26fc3.yaml new file mode 100644 index 000000000..a02af946b --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Custom_Tile e26fc3.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: e26fc3 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.3742 + posY: 1.619533 + posZ: 4.263301 + rotX: 0.04456582 + rotY: 45.0000267 + rotZ: 359.9316 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Custom_Tile Core Difficulty 47f3de.ttslua b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Custom_Tile Core Difficulty 47f3de.ttslua new file mode 100644 index 000000000..c7ea585c8 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Custom_Tile Core Difficulty 47f3de.ttslua @@ -0,0 +1,21 @@ +name = 'Core Set' + +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 The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Custom_Tile Core Difficulty 47f3de.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Custom_Tile Core Difficulty 47f3de.yaml new file mode 100644 index 000000000..1d8ae46dd --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Custom_Tile Core Difficulty 47f3de.yaml @@ -0,0 +1,42 @@ +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 +GMNotes: '' +GUID: 47f3de +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Tile Core Difficulty 47f3de.ttslua' +LuaScriptState: '' +Name: Custom_Tile +Nickname: Core Difficulty +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.35830069 + posY: 1.58146894 + posZ: -15.9833021 + rotX: 359.919739 + rotY: 270.00412 + rotZ: 0.0168320648 + scaleX: 2.2 + scaleY: 1.0 + scaleZ: 2.2 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Deck Encounter Deck 28e161.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Deck Encounter Deck 28e161.yaml new file mode 100644 index 000000000..ef0bce99f --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Model_Bag 2 Return to The Midnight Masks bcc86c/Deck Encounter Deck 28e161.yaml @@ -0,0 +1,1032 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 231742 + 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 + UniqueBack: false + Description: Item. Mask. + GMNotes: '' + GUID: 7b7c88 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: "Mask of Um\xF4rdhoth" + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -27.3313046 + posY: 1.60303676 + posZ: 40.0525627 + rotX: 359.919617 + rotY: 269.972717 + rotZ: 0.0103522725 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231742 + 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 + UniqueBack: false + Description: Item. Mask. + GMNotes: '' + GUID: 62b6cd + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: "Mask of Um\xF4rdhoth" + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -27.2997189 + posY: 1.748332 + posZ: 39.7179947 + rotX: 359.942841 + rotY: 270.004272 + rotZ: 0.00302965054 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231741 + 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 + UniqueBack: false + Description: Monster. Servitor. Cultist. + GMNotes: '' + GUID: 53b9cb + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Corpse-Taker + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -27.2525177 + posY: 1.76590574 + posZ: 39.58632 + rotX: 359.924469 + rotY: 270.042847 + rotZ: 359.986053 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231740 + 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 + UniqueBack: false + Description: Humanoid. Cultist. + GMNotes: '' + GUID: ab3719 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Disciple of the Devourer + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -26.841526 + posY: 1.60154414 + posZ: 37.0518341 + rotX: 359.9202 + rotY: 270.005066 + rotZ: 0.0162651874 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231740 + 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 + UniqueBack: false + Description: Humanoid. Cultist. + GMNotes: '' + GUID: 0abaca + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Disciple of the Devourer + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -27.3358841 + posY: 1.76970363 + posZ: 37.12298 + rotX: 359.9229 + rotY: 270.005157 + rotZ: 0.0140643651 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231740 + 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 + UniqueBack: false + Description: Humanoid. Cultist. + GMNotes: '' + GUID: ab3719 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Disciple of the Devourer + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -27.0939522 + posY: 1.78332663 + posZ: 37.4462624 + rotX: 359.919922 + rotY: 270.005157 + rotZ: 0.01614685 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231746 + 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 + UniqueBack: false + Description: Power. Scheme. + GMNotes: '' + GUID: ef3cf9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Masked Horrors + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 13.2175608 + posY: 1.532942 + posZ: -6.174621 + rotX: 359.920319 + rotY: 270.018463 + rotZ: 0.00230178959 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231746 + 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 + UniqueBack: false + Description: Power. Scheme. + GMNotes: '' + GUID: 912e54 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Masked Horrors + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 13.2623234 + posY: 1.67859507 + posZ: -6.394501 + rotX: 359.92392 + rotY: 269.982178 + rotZ: 0.0657594 + 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 + UniqueBack: false + Description: Obstacle. + GMNotes: '' + GUID: ab3719 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Locked Door + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -17.60739 + posY: 1.58022821 + posZ: 8.422101 + rotX: 359.920349 + rotY: 269.999756 + rotZ: 0.0154577158 + 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 + UniqueBack: false + Description: Obstacle. + GMNotes: '' + GUID: 4904d0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Locked Door + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -18.06458 + posY: 1.74395728 + posZ: 8.675678 + rotX: 359.928467 + rotY: 269.9997 + rotZ: 0.006147271 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231726 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 1e04da + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: On Wings of Darkness + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -13.4282417 + posY: 1.70155811 + posZ: 13.7778349 + rotX: 359.535278 + rotY: 269.9516 + rotZ: 181.449341 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231726 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 1d0c1c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: On Wings of Darkness + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -15.7923059 + posY: 1.73901558 + posZ: 4.52112341 + rotX: 359.919861 + rotY: 269.999969 + rotZ: 0.0123590212 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231725 + 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 + UniqueBack: false + Description: Monster. Nightgaunt. + GMNotes: '' + GUID: ab3719 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Hunting Nightgaunt + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -16.52605 + posY: 1.57874775 + posZ: 8.559591 + rotX: 359.920471 + rotY: 270.0019 + rotZ: 0.0145635763 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231725 + 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 + UniqueBack: false + Description: Monster. Nightgaunt. + GMNotes: '' + GUID: b75b70 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Hunting Nightgaunt + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -13.47085 + posY: 1.72509861 + posZ: 13.60628 + rotX: 359.9252 + rotY: 269.9989 + rotZ: 0.0176846832 + 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 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: 50e716 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: c4ce76 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: ab3719 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: 16d6d6 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 231704 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 057d5f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: False Lead + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 25.12937 + posY: 1.52805436 + posZ: 33.6414566 + rotX: 359.920532 + rotY: 269.9922 + rotZ: 0.0141133359 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231704 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 2ceae2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: False Lead + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 25.1391239 + posY: 1.683543 + posZ: 33.4398346 + rotX: 359.926178 + rotY: 269.992523 + rotZ: 0.011026796 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231703 + 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 + UniqueBack: false + Description: Curse. + GMNotes: '' + GUID: ea8fcf + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Hunting Shadow + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 25.5329266 + posY: 1.694792 + posZ: 33.29811 + rotX: 359.920532 + rotY: 269.992462 + rotZ: 0.0159023385 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231703 + 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 + UniqueBack: false + Description: Curse. + GMNotes: '' + GUID: ab3719 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Hunting Shadow + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 19.12706 + posY: 1.70121276 + posZ: 36.15682 + rotX: 359.937378 + rotY: 270.0 + rotZ: 180.0152 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231703 + 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 + UniqueBack: false + Description: Curse. + GMNotes: '' + GUID: 14bfaf + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Hunting Shadow + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 18.6906662 + posY: 1.54066241 + posZ: 36.2848244 + rotX: 359.920227 + rotY: 270.000275 + rotZ: 180.017624 + 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 + UniqueBack: false +DeckIDs: +- 231742 +- 231742 +- 231741 +- 231740 +- 231740 +- 231740 +- 231746 +- 231746 +- 231727 +- 231727 +- 231726 +- 231726 +- 231725 +- 231725 +- 231721 +- 231721 +- 231720 +- 231720 +- 231704 +- 231704 +- 231703 +- 231703 +- 231703 +Description: '' +GMNotes: '' +GUID: 28e161 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Encounter Deck +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.92735457 + posY: 1.73440325 + posZ: 5.7570734 + rotX: 359.919739 + rotY: 270.000031 + rotZ: 180.016815 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Model_Bag Set-aside 7c1343.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Model_Bag Set-aside 7c1343.yaml new file mode 100644 index 000000000..c8e3857e6 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Model_Bag Set-aside 7c1343.yaml @@ -0,0 +1,58 @@ +Autoraise: true +ColorDiffuse: + b: 0.02148666 + g: 0.00100758043 + r: 0.02148666 +ContainedObjects: +- !include 'Custom_Model_Bag Set-aside 7c1343/Card Constance Dumaine 4ecefb.yaml' +- !include 'Custom_Model_Bag Set-aside 7c1343/Deck Patient Confinement a3c5c5.yaml' +- !include 'Custom_Model_Bag Set-aside 7c1343/Card Daniel Chesterfield a71dcd.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 Unspeakable Oath +GMNotes: '' +GUID: 7c1343 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +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.696697 + posY: 1.55831647 + posZ: 14.2787075 + rotX: 359.955139 + rotY: 224.997971 + rotZ: 0.06867306 + scaleX: 2.0 + scaleY: 2.0 + scaleZ: 2.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Model_Bag Set-aside 7c1343/Card Constance Dumaine 4ecefb.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Model_Bag Set-aside 7c1343/Card Constance Dumaine 4ecefb.yaml new file mode 100644 index 000000000..dbe8b9ebf --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Model_Bag Set-aside 7c1343/Card Constance Dumaine 4ecefb.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 232053 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378685352/22FD056BAF1966FE2D1AC46FC1BF90C1A03A1404/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378686413/C1688C1A909FDC7357EB3EEFADAB1FBD5818BD3E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: A Little Too Sociable +GMNotes: '' +GUID: 4ecefb +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Constance Dumaine +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -16.6918659 + posY: 3.63396883 + posZ: 7.67763138 + rotX: 359.932556 + rotY: 269.9999 + rotZ: 0.0136237908 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Model_Bag Set-aside 7c1343/Card Daniel Chesterfield a71dcd.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Model_Bag Set-aside 7c1343/Card Daniel Chesterfield a71dcd.yaml new file mode 100644 index 000000000..024cc83a4 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Model_Bag Set-aside 7c1343/Card Daniel Chesterfield a71dcd.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 232033 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378685352/22FD056BAF1966FE2D1AC46FC1BF90C1A03A1404/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378686413/C1688C1A909FDC7357EB3EEFADAB1FBD5818BD3E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: a71dcd +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Daniel Chesterfield +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -16.4356937 + posY: 3.63402057 + posZ: 8.965443 + rotX: 359.92 + rotY: 269.999847 + rotZ: 0.0167166758 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Model_Bag Set-aside 7c1343/Deck Patient Confinement a3c5c5.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Model_Bag Set-aside 7c1343/Deck Patient Confinement a3c5c5.yaml new file mode 100644 index 000000000..ca6e80b66 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Model_Bag Set-aside 7c1343/Deck Patient Confinement a3c5c5.yaml @@ -0,0 +1,215 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 232047 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378685352/22FD056BAF1966FE2D1AC46FC1BF90C1A03A1404/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378686413/C1688C1A909FDC7357EB3EEFADAB1FBD5818BD3E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Arkham Asylum. + GMNotes: '' + GUID: 4bab65 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Patient Confinement + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -62.029686 + posY: 1.6411705 + posZ: 5.16846943 + rotX: 359.920563 + rotY: 269.996521 + rotZ: 0.0135507425 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232046 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378685352/22FD056BAF1966FE2D1AC46FC1BF90C1A03A1404/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378686413/C1688C1A909FDC7357EB3EEFADAB1FBD5818BD3E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Arkham Asylum. + GMNotes: '' + GUID: 1acf71 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Patient Confinement + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -61.6057358 + posY: 1.790447 + posZ: 4.994902 + rotX: 359.923553 + rotY: 269.99646 + rotZ: 0.009098181 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232044 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378685352/22FD056BAF1966FE2D1AC46FC1BF90C1A03A1404/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378686413/C1688C1A909FDC7357EB3EEFADAB1FBD5818BD3E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Arkham Asylum. + GMNotes: '' + GUID: 728ae0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Patient Confinement + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -61.8114777 + posY: 1.80829954 + posZ: 5.23499727 + rotX: 359.919037 + rotY: 269.996735 + rotZ: 0.0148136932 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232045 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378685352/22FD056BAF1966FE2D1AC46FC1BF90C1A03A1404/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378686413/C1688C1A909FDC7357EB3EEFADAB1FBD5818BD3E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Arkham Asylum. + GMNotes: '' + GUID: 8dcf73 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Patient Confinement + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -62.11177 + posY: 1.79498875 + posZ: 5.652425 + rotX: 359.925018 + rotY: 269.996643 + rotZ: 0.006248708 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378685352/22FD056BAF1966FE2D1AC46FC1BF90C1A03A1404/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378686413/C1688C1A909FDC7357EB3EEFADAB1FBD5818BD3E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 232047 +- 232046 +- 232044 +- 232045 +Description: '' +GMNotes: '' +GUID: a3c5c5 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Patient Confinement +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -16.5260448 + posY: 3.632531 + posZ: 9.303376 + rotX: 359.9197 + rotY: 270.000519 + rotZ: 0.0174281672 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Tile 02d2b1.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Tile 02d2b1.yaml new file mode 100644 index 000000000..bd316d37d --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Tile 02d2b1.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 02d2b1 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.62478256 + posZ: 3.86000037 + rotX: 0.0168719273 + rotY: 179.9999 + rotZ: 0.07993949 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Tile 1811ea.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Tile 1811ea.yaml new file mode 100644 index 000000000..e76adb9e3 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Tile 1811ea.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 1811ea +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.2365 + posY: 1.60975873 + posZ: 0.1355 + rotX: 359.9201 + rotY: 269.974426 + rotZ: 0.0169342179 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Tile 3efbe9.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Tile 3efbe9.yaml new file mode 100644 index 000000000..1d326b732 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Tile 3efbe9.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 3efbe9 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.62025654 + posZ: -11.5100021 + rotX: 0.0168718472 + rotY: 179.999985 + rotZ: 0.07995081 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Tile 7234af.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Tile 7234af.yaml new file mode 100644 index 000000000..2d20a5a94 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Tile 7234af.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 7234af +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.5176 + posY: 1.62602806 + posZ: -7.5064044 + rotX: 359.920074 + rotY: 270.087341 + rotZ: 0.0167780016 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Tile 7b12e0.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Tile 7b12e0.yaml new file mode 100644 index 000000000..df5503baa --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Tile 7b12e0.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 7b12e0 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.62702024 + posZ: 11.460001 + rotX: 0.0168716963 + rotY: 180.000076 + rotZ: 0.07993594 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Tile bec080.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Tile bec080.yaml new file mode 100644 index 000000000..d364bcff1 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Tile bec080.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: bec080 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.8343 + posY: 1.61892509 + posZ: 0.0206983145 + rotX: 359.920135 + rotY: 269.899963 + rotZ: 0.0170386266 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Tile f33a5f.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Tile f33a5f.yaml new file mode 100644 index 000000000..e53028b93 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Tile f33a5f.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: f33a5f +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.622518 + posZ: -3.83000016 + rotX: 0.0168717951 + rotY: 179.999939 + rotZ: 0.07993977 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Tile The Unspeakable Oath 87f45e.ttslua b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Tile The Unspeakable Oath 87f45e.ttslua new file mode 100644 index 000000000..f7109dddb --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Tile The Unspeakable Oath 87f45e.ttslua @@ -0,0 +1,25 @@ +name = 'The Unspeakable Oath' + +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 + +function standaloneClick() + Global.call('fillContainer', {object=self, key=name, mode='standalone'}) +end diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Tile The Unspeakable Oath 87f45e.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Tile The Unspeakable Oath 87f45e.yaml new file mode 100644 index 000000000..9112812e6 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Custom_Tile The Unspeakable Oath 87f45e.yaml @@ -0,0 +1,42 @@ +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 +GMNotes: '' +GUID: 87f45e +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Tile The Unspeakable Oath 87f45e.ttslua' +LuaScriptState: '' +Name: Custom_Tile +Nickname: The Unspeakable Oath +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.277217 + posY: 1.58178139 + posZ: -14.9073963 + rotX: 359.921 + rotY: 270.000549 + rotZ: 0.0192169156 + scaleX: 2.2 + scaleY: 1.0 + scaleZ: 2.2 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Deck Act Deck 249fd3.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Deck Act Deck 249fd3.yaml new file mode 100644 index 000000000..03ee83d1a --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Deck Act Deck 249fd3.yaml @@ -0,0 +1,258 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 231723 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2317': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378732934/F41E84FCDC0AB52634348C439A6D1A725CEB8115/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378736378/628E179D5305E95AFC25D86526320A24F8B27391/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 4 + GMNotes: '' + GUID: b42f4b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: No Asylum + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -56.40788 + posY: 1.638262 + posZ: 21.75536 + rotX: 0.0178973246 + rotY: 180.915833 + rotZ: 0.07635428 + 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: http://cloud-3.steamusercontent.com/ugc/775107058378732934/F41E84FCDC0AB52634348C439A6D1A725CEB8115/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378736378/628E179D5305E95AFC25D86526320A24F8B27391/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 3 + GMNotes: '' + GUID: 08b672 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Planning the Escape + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -56.24748 + posY: 1.78397787 + posZ: 21.7169037 + rotX: -0.000468099228 + rotY: 180.9055 + rotZ: 0.04363663 + 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: http://cloud-3.steamusercontent.com/ugc/775107058378732934/F41E84FCDC0AB52634348C439A6D1A725CEB8115/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378736378/628E179D5305E95AFC25D86526320A24F8B27391/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 2 + GMNotes: '' + GUID: 7f4366 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: "\u201CThe Really Bad Ones\u201D (v. II)" + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 21.7814465 + posY: 1.6907748 + posZ: 17.20093 + rotX: 0.0173080526 + rotY: 179.999756 + rotZ: 0.07813687 + 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: http://cloud-3.steamusercontent.com/ugc/775107058378732934/F41E84FCDC0AB52634348C439A6D1A725CEB8115/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378736378/628E179D5305E95AFC25D86526320A24F8B27391/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 2 + GMNotes: '' + GUID: '200091' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: "\u201CThe Really Bad Ones\u201D (v. I)" + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 21.5610638 + posY: 1.67736626 + posZ: 17.3017483 + rotX: 0.0166587587 + rotY: 180.00412 + rotZ: 0.08101142 + 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: http://cloud-3.steamusercontent.com/ugc/775107058378732934/F41E84FCDC0AB52634348C439A6D1A725CEB8115/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378736378/628E179D5305E95AFC25D86526320A24F8B27391/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 1 + GMNotes: '' + GUID: 38bfee + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Arkham Asylum + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 21.8880615 + posY: 1.6750412 + posZ: 17.58139 + rotX: 0.0184818059 + rotY: 180.00264 + rotZ: 0.0784868747 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2317': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378732934/F41E84FCDC0AB52634348C439A6D1A725CEB8115/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378736378/628E179D5305E95AFC25D86526320A24F8B27391/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 231723 +- 231722 +- 231721 +- 231720 +- 231719 +Description: '' +GMNotes: '' +GUID: 249fd3 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Act Deck +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.68845749 + posY: 1.65432513 + posZ: -5.04854 + rotX: 0.0168335717 + rotY: 180.001175 + rotZ: 0.08025741 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Deck Agenda Deck 5762df.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Deck Agenda Deck 5762df.yaml new file mode 100644 index 000000000..f267a9c1e --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Deck Agenda Deck 5762df.yaml @@ -0,0 +1,172 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 231718 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2317': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378732934/F41E84FCDC0AB52634348C439A6D1A725CEB8115/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378736378/628E179D5305E95AFC25D86526320A24F8B27391/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 3 + GMNotes: '' + GUID: 3da436 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: His Domain + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -52.6241646 + posY: 1.631147 + posZ: 15.7456436 + rotX: 0.0188051127 + rotY: 179.420029 + rotZ: 0.0749951154 + 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: http://cloud-3.steamusercontent.com/ugc/775107058378732934/F41E84FCDC0AB52634348C439A6D1A725CEB8115/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378736378/628E179D5305E95AFC25D86526320A24F8B27391/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 2 + GMNotes: '' + GUID: 87b92e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Torturous Descent + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -52.59952 + posY: 1.7766974 + posZ: 15.44898 + rotX: 359.991516 + rotY: 180.812073 + rotZ: 0.0514248535 + 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: http://cloud-3.steamusercontent.com/ugc/775107058378732934/F41E84FCDC0AB52634348C439A6D1A725CEB8115/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378736378/628E179D5305E95AFC25D86526320A24F8B27391/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 1 + GMNotes: '' + GUID: 3a6817 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Locked Inside + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -52.63774 + posY: 1.79435837 + posZ: 15.3395376 + rotX: -0.00479935063 + rotY: 180.857269 + rotZ: 0.0636481047 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2317': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378732934/F41E84FCDC0AB52634348C439A6D1A725CEB8115/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378736378/628E179D5305E95AFC25D86526320A24F8B27391/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 231718 +- 231717 +- 231716 +Description: '' +GMNotes: '' +GUID: 5762df +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Agenda Deck +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.72475362 + posY: 1.65664124 + posZ: 0.37333107 + rotX: 0.0168349165 + rotY: 180.000076 + rotZ: 0.08025772 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Deck Encounter Deck 0b6538.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Deck Encounter Deck 0b6538.yaml new file mode 100644 index 000000000..f49445aea --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Deck Encounter Deck 0b6538.yaml @@ -0,0 +1,1039 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 234229 + 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 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: 4cf636 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Yellow Sign + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -18.2012749 + posY: 1.58148372 + posZ: 10.016777 + rotX: 359.920746 + rotY: 269.996552 + rotZ: 0.0126871429 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234229 + 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 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: 74a845 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Yellow Sign + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -18.39433 + posY: 1.745 + posZ: 9.752235 + rotX: 359.928131 + rotY: 269.996552 + rotZ: 0.0164207779 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232242 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: b71468 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Walls Closing In + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.54436564 + posY: 1.55997086 + posZ: 6.254395 + rotX: 359.920471 + rotY: 269.999847 + rotZ: 0.0146010369 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232242 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: bf3597 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Walls Closing In + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.87291741 + posY: 1.723301 + posZ: 6.52010441 + rotX: 359.950134 + rotY: 270.0 + rotZ: 359.993256 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232242 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: 3dc93f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Walls Closing In + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.87291765 + posY: 1.73298216 + posZ: 6.52010441 + rotX: 359.941467 + rotY: 270.0 + rotZ: 0.00588421756 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232241 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: e0308c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Gift of Madness (Misery) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -11.3649063 + posY: 1.92373645 + posZ: 4.830825 + rotX: 359.93103 + rotY: 269.9936 + rotZ: 180.020752 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232240 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: 2a874d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Gift of Madness (Pity) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -11.5246515 + posY: 1.91444921 + posZ: 5.059258 + rotX: 359.936829 + rotY: 270.0005 + rotZ: 180.016266 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232239 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Item. Clothing. + GMNotes: '' + GUID: 33902b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Straitjacket + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -7.722154 + posY: 1.564322 + posZ: 1.57734609 + rotX: 359.921356 + rotY: 269.999817 + rotZ: 0.00828568 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232239 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Item. Clothing. + GMNotes: '' + GUID: ab6c60 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Straitjacket + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -7.87944937 + posY: 1.71659434 + posZ: 1.40013671 + rotX: 359.954651 + rotY: 269.999847 + rotZ: 0.009591736 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232221 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Pact. + GMNotes: '' + GUID: c189a5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dance of the Yellow King + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -33.0721054 + posY: 1.59816492 + posZ: -3.9468503 + rotX: 359.920135 + rotY: 270.00177 + rotZ: 0.0167396571 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232221 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Pact. + GMNotes: '' + GUID: 74b258 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dance of the Yellow King + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -32.95977 + posY: 1.76483011 + posZ: -3.889132 + rotX: 359.9195 + rotY: 270.001862 + rotZ: 0.0146204839 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232209 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: 837dc0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Descent into Madness + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -8.254647 + posY: 1.56856728 + posZ: 13.1639223 + rotX: 359.9206 + rotY: 270.010376 + rotZ: 0.0141025912 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232209 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: b5a670 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Descent into Madness + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -7.994349 + posY: 1.72873139 + posZ: 13.4239607 + rotX: 359.910156 + rotY: 270.010345 + rotZ: 359.9914 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232206 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: a13701 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Whispers in Your Head (Doubt) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -8.13497 + posY: 1.73145211 + posZ: 13.3962345 + rotX: 359.9188 + rotY: 270.00116 + rotZ: 0.0158020761 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232205 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: 42b8dc + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Whispers in Your Head (Anxiety) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -7.656395 + posY: 1.73211765 + posZ: 13.2479944 + rotX: 359.900421 + rotY: 270.000153 + rotZ: 0.006056429 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232207 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: ec66a0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Whispers in Your Head (Dread) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -8.143007 + posY: 1.71549714 + posZ: 12.48624 + rotX: 359.929932 + rotY: 270.014252 + rotZ: 0.007635473 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232208 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: 4bea40 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Whispers in Your Head (Dismay) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -7.971472 + posY: 1.718169 + posZ: 13.2703743 + rotX: 359.920532 + rotY: 269.99942 + rotZ: 0.0161604 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232227 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Creature. + GMNotes: '' + GUID: 3fac08 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Roach Swarm + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -41.80118 + posY: 1.61098814 + posZ: -1.53446472 + rotX: 359.9206 + rotY: 269.975952 + rotZ: 0.01309729 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232227 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Creature. + GMNotes: '' + GUID: 8ccfdd + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Roach Swarm + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -41.75242 + posY: 1.76184118 + posZ: -1.60954678 + rotX: 359.930359 + rotY: 269.976074 + rotZ: 0.004112804 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232226 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: b4ebc7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Corrosion + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -45.6514969 + posY: 1.61713815 + posZ: 1.27763367 + rotX: 359.921082 + rotY: 269.975647 + rotZ: 0.009976891 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232226 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: dc5296 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Corrosion + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -45.5141678 + posY: 1.76896763 + posZ: 1.02962911 + rotX: 359.909271 + rotY: 269.9754 + rotZ: 0.0175973848 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232225 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: 2b74e5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ooze and Filth + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -46.103035 + posY: 1.61935973 + posZ: 6.519607 + rotX: 359.920624 + rotY: 269.9756 + rotZ: 0.0131920464 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232225 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: 9f5a02 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ooze and Filth + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -45.99835 + posY: 1.77182579 + posZ: 6.51029634 + rotX: 359.9096 + rotY: 269.975525 + rotZ: 0.0131797241 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '2342': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 234229 +- 234229 +- 232242 +- 232242 +- 232242 +- 232241 +- 232240 +- 232239 +- 232239 +- 232221 +- 232221 +- 232209 +- 232209 +- 232206 +- 232205 +- 232207 +- 232208 +- 232227 +- 232227 +- 232226 +- 232226 +- 232225 +- 232225 +Description: '' +GMNotes: '' +GUID: 0b6538 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Encounter Deck +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.92773438 + posY: 1.73440373 + posZ: 5.75715351 + 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 The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Deck Lunatic Pile 58fc68.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Deck Lunatic Pile 58fc68.yaml new file mode 100644 index 000000000..ac4f76bf0 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Deck Lunatic Pile 58fc68.yaml @@ -0,0 +1,344 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 232238 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Lunatic. + GMNotes: '' + GUID: f9cf86 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Mad Patient + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.9700546 + posY: 1.64379764 + posZ: 5.069023 + rotX: 359.920959 + rotY: 269.998444 + rotZ: 0.0104306182 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232238 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Lunatic. + GMNotes: '' + GUID: 6b7d78 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Mad Patient + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -64.38912 + posY: 1.794112 + posZ: 5.06262445 + rotX: 359.941956 + rotY: 269.9981 + rotZ: 0.01294072 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232238 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Lunatic. + GMNotes: '' + GUID: 9cc0d7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Mad Patient + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.662 + posY: 1.81080055 + posZ: 5.01623631 + rotX: 359.920959 + rotY: 269.998718 + rotZ: 0.01512498 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232220 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Lunatic. + GMNotes: '' + GUID: bce7b8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Young Psychopath + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -64.023 + posY: 1.79765129 + posZ: 5.178009 + rotX: 359.922241 + rotY: 270.0011 + rotZ: 0.0136726061 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232220 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Lunatic. + GMNotes: '' + GUID: 40c629 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Young Psychopath + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -64.0621262 + posY: 1.79571545 + posZ: 5.27301741 + rotX: 359.9225 + rotY: 270.0011 + rotZ: 0.0129900705 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232219 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Lunatic. + GMNotes: '' + GUID: 006497 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Maniac + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -64.1285 + posY: 1.79845762 + posZ: 5.192053 + rotX: 359.9223 + rotY: 270.00116 + rotZ: 0.0137170348 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232219 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Lunatic. + GMNotes: '' + GUID: 068703 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Maniac + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.5555267 + posY: 1.80274832 + posZ: 5.529881 + rotX: 359.9176 + rotY: 270.001343 + rotZ: 0.0127297053 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 232238 +- 232238 +- 232238 +- 232220 +- 232220 +- 232219 +- 232219 +Description: '' +GMNotes: '' +GUID: 58fc68 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Lunatic Pile +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.226135 + posY: 1.67573082 + posZ: 15.5637741 + rotX: 359.919739 + rotY: 270.0 + rotZ: 180.01683 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Deck Monster Pile 0463eb.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Deck Monster Pile 0463eb.yaml new file mode 100644 index 000000000..7cf6530c1 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Deck Monster Pile 0463eb.yaml @@ -0,0 +1,351 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 234228 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2342': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Byakhee. + GMNotes: '' + GUID: 6fc5fa + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Screeching Byakhee + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.3958664 + posY: 1.64078927 + posZ: -2.559044 + rotX: 359.920166 + rotY: 270.001282 + rotZ: 0.0118927006 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234228 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2342': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Byakhee. + GMNotes: '' + GUID: ab3719 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Screeching Byakhee + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.3439331 + posY: 1.78621328 + posZ: -2.73121858 + rotX: 359.941925 + rotY: 270.003632 + rotZ: 0.0006905831 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232212 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Elite. + GMNotes: '' + GUID: 83c7c3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Beast of Aldebaran + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.69652 + posY: 1.80399883 + posZ: -1.99516463 + rotX: 359.9419 + rotY: 270.0011 + rotZ: -0.003694706 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232213 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. + GMNotes: '' + GUID: d46d72 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Spawn of Hali + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -61.51563 + posY: 1.77209353 + posZ: -2.87078738 + rotX: 355.0253 + rotY: 270.156067 + rotZ: 359.963623 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232213 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. + GMNotes: '' + GUID: e9dc22 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Spawn of Hali + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -61.97952 + posY: 1.80097163 + posZ: -3.47925 + rotX: 355.029083 + rotY: 270.009338 + rotZ: -0.00201351428 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232237 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Abomination. + GMNotes: '' + GUID: dd1c0a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Asylum Gorger + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.73442 + posY: 1.79567409 + posZ: -2.44873524 + rotX: 359.918884 + rotY: 269.99884 + rotZ: 0.0158655383 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232237 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Abomination. + GMNotes: '' + GUID: e66648 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Asylum Gorger + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.37584 + posY: 1.8001101 + posZ: -2.682107 + rotX: 359.9214 + rotY: 269.99884 + rotZ: 0.0151741663 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '2342': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 234228 +- 234228 +- 232212 +- 232213 +- 232213 +- 232237 +- 232237 +Description: '' +GMNotes: '' +GUID: 0463eb +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Monster Pile +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -5.95566654 + posY: 1.68089652 + posZ: 15.3656454 + rotX: 359.919739 + rotY: 269.999969 + rotZ: 180.01683 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Notecard Errata 1 163466.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Notecard Errata 1 163466.yaml new file mode 100644 index 000000000..7dedfec38 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 4 The Unspeakable Oath e7efa6/Notecard Errata 1 163466.yaml @@ -0,0 +1,107 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +Description: "Corrosion (102)\r\nThis card\u2019s [b]Revelation[/b] ability should\ + \ read: \u201CDiscard [b][i]Item[/b][/i] assets from your\r play area and/or from\ + \ your hand\u2026\u201D" +GMNotes: '' +GUID: '163466' +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Notecard +Nickname: Errata 1 +Snap: true +States: + '2': + Autoraise: true + ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 + Description: "Patient Confinement (178-181)\r\nEach of these locations should\ + \ not have the \u201C[i][b]Arkham Asylum[/i][/b]\u201D trait." + GMNotes: '' + GUID: 350a26 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Notecard + Nickname: Errata 2 + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -45.1834373 + posY: 1.6157639 + posZ: 4.29240656 + rotX: 0.07987894 + rotY: 90.00033 + rotZ: 359.983124 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' + '3': + Autoraise: true + ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 + Description: "\rThe first part of the interlude should read:\r\n\u201CIf an investigator\ + \ resigned with the asset version of Daniel Chesterfield\r under his or her\ + \ control, proceed to [b]Daniel Survived.[/b]\r\nIf the enemy version of Daniel\ + \ Chesterfield was in play when the scenario\r ended, proceed to [b]Daniel Was\ + \ Possessed.[/b]\r\nIf neither of the above are true, proceed to [b]Daniel Did\ + \ Not Survive.\u201D[/b]" + GMNotes: '' + GUID: d7c7a8 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Notecard + Nickname: Errata 3 + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -45.1834373 + posY: 1.6157639 + posZ: 4.29240656 + rotX: 0.0798777938 + rotY: 90.0004044 + rotZ: 359.983124 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +Sticky: true +Tooltip: true +Transform: + posX: -11.134779 + posY: 1.56012666 + posZ: -23.4519024 + rotX: 0.07987961 + rotY: 90.00235 + rotZ: 359.983124 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 5 A Phantom of Truth bd4167.ttslua b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 5 A Phantom of Truth bd4167.ttslua new file mode 100644 index 000000000..46067f58e --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 5 A Phantom of Truth bd4167.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.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.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 Path to Carcosa 1b887c/Custom_Model_Bag 5 A Phantom of Truth bd4167.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 5 A Phantom of Truth bd4167.yaml new file mode 100644 index 000000000..2558ee8a8 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 5 A Phantom of Truth bd4167.yaml @@ -0,0 +1,106 @@ +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 5 A Phantom of Truth bd4167/Custom_Model_Bag Set-aside + 45cbf9.yaml' +- !include 'Custom_Model_Bag 5 A Phantom of Truth bd4167/Deck Encounter Deck 77cab6.yaml' +- !include 'Custom_Model_Bag 5 A Phantom of Truth bd4167/Deck Agenda Deck 09597e.yaml' +- !include 'Custom_Model_Bag 5 A Phantom of Truth bd4167/Bag Doubt or Equal 5358e2.yaml' +- !include 'Custom_Model_Bag 5 A Phantom of Truth bd4167/Bag Conviction 3e55d1.yaml' +- !include 'Custom_Model_Bag 5 A Phantom of Truth bd4167/Card Scenario b52eaf.yaml' +- !include 'Custom_Model_Bag 5 A Phantom of Truth bd4167/Custom_Tile A Phantom of + Truth b20b8d.yaml' +- !include 'Custom_Model_Bag 5 A Phantom of Truth bd4167/Custom_Tile 0f0b44.yaml' +- !include "Custom_Model_Bag 5 A Phantom of Truth bd4167/Card P\xE8re Lachaise Cemetery\ + \ 79ea7b.yaml" +- !include 'Custom_Model_Bag 5 A Phantom of Truth bd4167/Card Canal Saint-Martin 065c64.yaml' +- !include 'Custom_Model_Bag 5 A Phantom of Truth bd4167/Card Grand Guignol 31bba7.yaml' +- !include 'Custom_Model_Bag 5 A Phantom of Truth bd4167/Custom_Tile 603ed0.yaml' +- !include 'Custom_Model_Bag 5 A Phantom of Truth bd4167/Custom_Tile 197e00.yaml' +- !include 'Custom_Model_Bag 5 A Phantom of Truth bd4167/Custom_Tile 06f9fa.yaml' +- !include 'Custom_Model_Bag 5 A Phantom of Truth bd4167/Custom_Tile 2ea277.yaml' +- !include 'Custom_Model_Bag 5 A Phantom of Truth bd4167/Custom_Tile 240f42.yaml' +- !include 'Custom_Model_Bag 5 A Phantom of Truth bd4167/Card Le Marais 8c21dc.yaml' +- !include 'Custom_Model_Bag 5 A Phantom of Truth bd4167/Card Le Marais 191fba.yaml' +- !include 'Custom_Model_Bag 5 A Phantom of Truth bd4167/Custom_Tile 09b690.yaml' +- !include 'Custom_Model_Bag 5 A Phantom of Truth bd4167/Card Notre-Dame 7b7fad.yaml' +- !include 'Custom_Model_Bag 5 A Phantom of Truth bd4167/Custom_Tile f95052.yaml' +- !include 'Custom_Model_Bag 5 A Phantom of Truth bd4167/Card Montmartre bf452a.yaml' +- !include 'Custom_Model_Bag 5 A Phantom of Truth bd4167/Custom_Tile 8612e0.yaml' +- !include "Custom_Model_Bag 5 A Phantom of Truth bd4167/Card Op\xE9ra Garnier 78e730.yaml" +- !include 'Custom_Model_Bag 5 A Phantom of Truth bd4167/Card Montmartre 49daa1.yaml' +- !include 'Custom_Model_Bag 5 A Phantom of Truth bd4167/Custom_Tile cc943e.yaml' +- !include "Custom_Model_Bag 5 A Phantom of Truth bd4167/Card Op\xE9ra Garnier 403e57.yaml" +- !include 'Custom_Model_Bag 5 A Phantom of Truth bd4167/Card Gare d''Orsay 1af959.yaml' +- !include 'Custom_Model_Bag 5 A Phantom of Truth bd4167/Custom_Tile e5b752.yaml' +- !include 'Custom_Model_Bag 5 A Phantom of Truth bd4167/Card Gardens of Luxembourg + 17ba38.yaml' +- !include 'Custom_Model_Bag 5 A Phantom of Truth bd4167/Custom_Tile 7234af.yaml' +- !include 'Custom_Model_Bag 5 A Phantom of Truth bd4167/Custom_Tile fb0cd1.yaml' +- !include 'Custom_Model_Bag 5 A Phantom of Truth bd4167/Custom_Tile 4a4785.yaml' +- !include 'Custom_Model_Bag 5 A Phantom of Truth bd4167/Custom_Tile e3c737.yaml' +- !include 'Custom_Model_Bag 5 A Phantom of Truth bd4167/Card Montparnasse a7a582.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/829135118403813279/41EDC839C0D0ED4B7B712990A3D7D3FF80C59D18/ + MaterialIndex: 3 + MeshURL: https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj + NormalURL: '' + TypeIndex: 6 +Description: '' +GMNotes: '' +GUID: bd4167 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Model_Bag 5 A Phantom of Truth bd4167.ttslua' +LuaScriptState: '{"ml":{"065c64":{"lock":false,"pos":{"x":-17.12,"y":1.6748,"z":-7.7001},"rot":{"x":359.9201,"y":269.9992,"z":0.0169}},"06f9fa":{"lock":false,"pos":{"x":-19.8902,"y":1.6082,"z":-3.4866},"rot":{"x":0.0684,"y":135,"z":0.0446}},"09597e":{"lock":false,"pos":{"x":-2.7247,"y":1.6566,"z":0.3734},"rot":{"x":0.0168,"y":180.0004,"z":0.0803}},"09b690":{"lock":false,"pos":{"x":-27.0584,"y":1.617,"z":-7.5965},"rot":{"x":359.9202,"y":269.9941,"z":0.0164}},"0f0b44":{"lock":false,"pos":{"x":-17.12,"y":1.602,"z":-11.51},"rot":{"x":359.9831,"y":0.0004,"z":359.9201}},"17ba38":{"lock":false,"pos":{"x":-30.2243,"y":1.6954,"z":-0.03},"rot":{"x":359.9201,"y":270,"z":0.0169}},"191fba":{"lock":false,"pos":{"x":-25.0739,"y":1.773,"z":-7.7009},"rot":{"x":359.1676,"y":270.0221,"z":0.0181}},"197e00":{"lock":false,"pos":{"x":-19.8141,"y":1.6101,"z":3.4298},"rot":{"x":0.0446,"y":45.0001,"z":359.9316}},"1af959":{"lock":false,"pos":{"x":-30.2243,"y":1.6976,"z":7.57},"rot":{"x":359.9201,"y":269.9999,"z":0.0169}},"240f42":{"lock":false,"pos":{"x":-21.1406,"y":1.6076,"z":-11.3468},"rot":{"x":0.0684,"y":135.0005,"z":0.0446}},"2ea277":{"lock":false,"pos":{"x":-20.5441,"y":1.6079,"z":-7.5006},"rot":{"x":0.0799,"y":90.0186,"z":359.9831}},"31bba7":{"lock":false,"pos":{"x":-17.1199,"y":1.6793,"z":7.57},"rot":{"x":359.9201,"y":269.9998,"z":0.0169}},"3e55d1":{"lock":false,"pos":{"x":1.5609,"y":1.3939,"z":-1.1516},"rot":{"x":359.9196,"y":269.9993,"z":0.0169}},"403e57":{"lock":false,"pos":{"x":-25.09,"y":1.7792,"z":7.5693},"rot":{"x":359.1401,"y":269.9818,"z":0.0167}},"45cbf9":{"lock":false,"pos":{"x":1.6964,"y":1.5583,"z":14.2788},"rot":{"x":359.9551,"y":224.9924,"z":0.0687}},"49daa1":{"lock":false,"pos":{"x":-25.1038,"y":1.7366,"z":0.001},"rot":{"x":0.0426,"y":270.0369,"z":359.7644}},"4a4785":{"lock":false,"pos":{"x":-33.1186,"y":1.6264,"z":-4.4252},"rot":{"x":359.9315,"y":315.0001,"z":359.9554}},"5358e2":{"lock":false,"pos":{"x":1.6368,"y":1.3948,"z":2.1657},"rot":{"x":359.9196,"y":269.9966,"z":0.0169}},"603ed0":{"lock":false,"pos":{"x":-20.318,"y":1.612,"z":7.5175},"rot":{"x":0.0799,"y":90.0123,"z":359.9831}},"7234af":{"lock":false,"pos":{"x":-33.3511,"y":1.628,"z":-0.0848},"rot":{"x":359.9201,"y":269.9947,"z":0.0169}},"77cab6":{"lock":false,"pos":{"x":-3.9276,"y":1.7451,"z":5.7571},"rot":{"x":359.9197,"y":269.9997,"z":180.0168}},"78e730":{"lock":false,"pos":{"x":-23.6765,"y":1.7096,"z":7.5708},"rot":{"x":359.1426,"y":269.9768,"z":0.017}},"79ea7b":{"lock":false,"pos":{"x":-17.1201,"y":1.6726,"z":-15.28},"rot":{"x":359.9201,"y":270,"z":0.0169}},"7b7fad":{"lock":false,"pos":{"x":-30.2243,"y":1.6931,"z":-7.7001},"rot":{"x":359.9201,"y":269.9998,"z":0.0169}},"8612e0":{"lock":false,"pos":{"x":-23.6765,"y":1.6157,"z":3.86},"rot":{"x":0.0169,"y":179.9967,"z":0.0799}},"8c21dc":{"lock":false,"pos":{"x":-23.6756,"y":1.7044,"z":-7.6999},"rot":{"x":359.1705,"y":269.998,"z":0.0171}},"a7a582":{"lock":false,"pos":{"x":-36.7731,"y":1.7045,"z":-0.03},"rot":{"x":359.9201,"y":269.9995,"z":0.0169}},"b20b8d":{"lock":false,"pos":{"x":-4.3295,"y":1.5831,"z":-14.994},"rot":{"x":359.9197,"y":269.9786,"z":0.0169}},"b52eaf":{"lock":false,"pos":{"x":-3.956,"y":1.6556,"z":-10.4412},"rot":{"x":359.9197,"y":269.9999,"z":0.0168}},"bf452a":{"lock":false,"pos":{"x":-23.6765,"y":1.6862,"z":-0.0301},"rot":{"x":359.9201,"y":269.9981,"z":0.0166}},"cc943e":{"lock":false,"pos":{"x":-26.9121,"y":1.6212,"z":7.3868},"rot":{"x":359.9201,"y":269.9945,"z":0.0167}},"e3c737":{"lock":false,"pos":{"x":-33.4568,"y":1.6293,"z":3.7544},"rot":{"x":359.9554,"y":224.9999,"z":0.0684}},"e5b752":{"lock":false,"pos":{"x":-30.2242,"y":1.6248,"z":3.86},"rot":{"x":359.9831,"y":0.0002,"z":359.9201}},"f95052":{"lock":false,"pos":{"x":-23.6768,"y":1.6134,"z":-3.8319},"rot":{"x":0.0169,"y":179.9968,"z":0.0799}},"fb0cd1":{"lock":false,"pos":{"x":-30.2242,"y":1.6225,"z":-3.83},"rot":{"x":359.9831,"y":0.0002,"z":359.9201}}}}' +MaterialIndex: -1 +MeshIndex: -1 +Name: Custom_Model_Bag +Nickname: '5: A Phantom of Truth' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 14.4770451 + posY: 1.46026134 + posZ: -3.68976831 + rotX: 359.920135 + rotY: 269.9994 + rotZ: 0.0168749746 + scaleX: 2.21 + scaleY: 0.46 + scaleZ: 2.42 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 5 A Phantom of Truth bd4167/Bag Conviction 3e55d1.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 5 A Phantom of Truth bd4167/Bag Conviction 3e55d1.yaml new file mode 100644 index 000000000..9cbd642fc --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 5 A Phantom of Truth bd4167/Bag Conviction 3e55d1.yaml @@ -0,0 +1,38 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +ContainedObjects: +- !include 'Bag Conviction 3e55d1/Deck Act Deck 24ccf0.yaml' +- !include 'Bag Conviction 3e55d1/Deck Add to Encounter Deck ff44db.yaml' +Description: If Doubt is LESS than Conviction, use contents in this bag and discard + the Doubt Bag. +GMNotes: '' +GUID: 3e55d1 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +MeshIndex: -1 +Name: Bag +Nickname: Conviction +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 1.5608629 + posY: 1.3939023 + posZ: -1.1515646 + rotX: 359.919647 + rotY: 269.9993 + rotZ: 0.016874101 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 5 A Phantom of Truth bd4167/Bag Conviction 3e55d1/Deck Act Deck 24ccf0.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 5 A Phantom of Truth bd4167/Bag Conviction 3e55d1/Deck Act Deck 24ccf0.yaml new file mode 100644 index 000000000..424c34bc8 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 5 A Phantom of Truth bd4167/Bag Conviction 3e55d1/Deck Act Deck 24ccf0.yaml @@ -0,0 +1,129 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 231730 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2317': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378732934/F41E84FCDC0AB52634348C439A6D1A725CEB8115/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378736378/628E179D5305E95AFC25D86526320A24F8B27391/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 2 + GMNotes: '' + GUID: 09a07b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Stalked by Shadows + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -55.1437454 + posY: 1.632565 + posZ: 8.723942 + rotX: 0.0179829281 + rotY: 179.999237 + rotZ: 0.07318324 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231728 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2317': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378732934/F41E84FCDC0AB52634348C439A6D1A725CEB8115/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378736378/628E179D5305E95AFC25D86526320A24F8B27391/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 1 + GMNotes: '' + GUID: be1a27 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Parisian Conspiracy (v. II) + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -55.09867 + posY: 1.77147961 + posZ: 8.791027 + rotX: 0.00141109922 + rotY: 180.009415 + rotZ: 0.0744360238 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2317': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378732934/F41E84FCDC0AB52634348C439A6D1A725CEB8115/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378736378/628E179D5305E95AFC25D86526320A24F8B27391/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 231730 +- 231728 +Description: '' +GMNotes: '' +GUID: 24ccf0 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Act Deck +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -18.9077644 + posY: 3.63329339 + posZ: 50.4298248 + rotX: 0.303814739 + rotY: 179.98436 + rotZ: 356.3394 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 5 A Phantom of Truth bd4167/Bag Conviction 3e55d1/Deck Add to Encounter Deck ff44db.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 5 A Phantom of Truth bd4167/Bag Conviction 3e55d1/Deck Add to Encounter Deck ff44db.yaml new file mode 100644 index 000000000..4012b06af --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 5 A Phantom of Truth bd4167/Bag Conviction 3e55d1/Deck Add to Encounter Deck ff44db.yaml @@ -0,0 +1,265 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 232244 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: a37e3d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Twin Suns + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -55.23408 + posY: 1.63680243 + posZ: 22.5220261 + rotX: 359.9206 + rotY: 270.0359 + rotZ: 0.0131973652 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232244 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: 75bda2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Twin Suns + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -55.3894768 + posY: 1.78688729 + posZ: 22.5528183 + rotX: 359.913055 + rotY: 270.036 + rotZ: 0.0118823405 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233303 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2333': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Curse. + GMNotes: '' + GUID: 14bfaf + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Hunting Shadow + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -55.3906364 + posY: 1.7999748 + posZ: 22.4357738 + rotX: 359.935547 + rotY: 269.998047 + rotZ: 0.0137602035 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233303 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2333': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Curse. + GMNotes: '' + GUID: ea8fcf + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Hunting Shadow + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -54.9424629 + posY: 1.78586733 + posZ: 22.85021 + rotX: 359.933777 + rotY: 269.998047 + rotZ: 0.013384806 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233303 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2333': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Curse. + GMNotes: '' + GUID: ab3719 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Hunting Shadow + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -55.5731125 + posY: 1.80023932 + posZ: 23.0756874 + rotX: 359.920074 + rotY: 269.9969 + rotZ: 0.01577925 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '2333': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 232244 +- 232244 +- 233303 +- 233303 +- 233303 +Description: '' +GMNotes: '' +GUID: ff44db +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Add to Encounter Deck +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -18.581995 + posY: 3.62424254 + posZ: 51.1032448 + rotX: 0.742718637 + rotY: 269.962158 + rotZ: 356.438477 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 5 A Phantom of Truth bd4167/Bag Doubt or Equal 5358e2.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 5 A Phantom of Truth bd4167/Bag Doubt or Equal 5358e2.yaml new file mode 100644 index 000000000..f4f750c1f --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 5 A Phantom of Truth bd4167/Bag Doubt or Equal 5358e2.yaml @@ -0,0 +1,38 @@ +Autoraise: true +ColorDiffuse: + b: 0.7439022 + g: 0.485998869 + r: 0.653287649 +ContainedObjects: +- !include 'Bag Doubt or Equal 5358e2/Deck Act Deck 2152d3.yaml' +- !include 'Bag Doubt or Equal 5358e2/Deck Add to Encounter Deck 90bef0.yaml' +Description: If Doubt is EQUAL or GREATER than Conviction, use contents in this bag + and discard the Conviction Bag. +GMNotes: '' +GUID: 5358e2 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +MeshIndex: -1 +Name: Bag +Nickname: Doubt or Equal +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 1.63680565 + posY: 1.39477086 + posZ: 2.16567755 + rotX: 359.919647 + rotY: 269.996582 + rotZ: 0.016878223 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 5 A Phantom of Truth bd4167/Bag Doubt or Equal 5358e2/Deck Act Deck 2152d3.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 5 A Phantom of Truth bd4167/Bag Doubt or Equal 5358e2/Deck Act Deck 2152d3.yaml new file mode 100644 index 000000000..276f787e2 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 5 A Phantom of Truth bd4167/Bag Doubt or Equal 5358e2/Deck Act Deck 2152d3.yaml @@ -0,0 +1,129 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 231729 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2317': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378732934/F41E84FCDC0AB52634348C439A6D1A725CEB8115/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378736378/628E179D5305E95AFC25D86526320A24F8B27391/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 2 + GMNotes: '' + GUID: '402117' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Pursuing Shadows + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -55.9649658 + posY: 1.63628089 + posZ: 17.2992916 + rotX: 0.0173009317 + rotY: 180.0032 + rotZ: 0.0761844143 + 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: http://cloud-3.steamusercontent.com/ugc/775107058378732934/F41E84FCDC0AB52634348C439A6D1A725CEB8115/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378736378/628E179D5305E95AFC25D86526320A24F8B27391/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 1 + GMNotes: '' + GUID: 136abe + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Parisian Conspiracy (v. I) + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -56.1029739 + posY: 1.78162134 + posZ: 17.0385456 + rotX: 0.01009753 + rotY: 179.995316 + rotZ: 0.0713474154 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2317': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378732934/F41E84FCDC0AB52634348C439A6D1A725CEB8115/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378736378/628E179D5305E95AFC25D86526320A24F8B27391/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 231729 +- 231727 +Description: '' +GMNotes: '' +GUID: 2152d3 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Act Deck +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -19.3044071 + posY: 3.63372445 + posZ: 54.2607079 + rotX: 0.427462816 + rotY: 179.979263 + rotZ: 356.337433 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 5 A Phantom of Truth bd4167/Bag Doubt or Equal 5358e2/Deck Add to Encounter Deck 90bef0.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 5 A Phantom of Truth bd4167/Bag Doubt or Equal 5358e2/Deck Add to Encounter Deck 90bef0.yaml new file mode 100644 index 000000000..fa9b4a19e --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 5 A Phantom of Truth bd4167/Bag Doubt or Equal 5358e2/Deck Add to Encounter Deck 90bef0.yaml @@ -0,0 +1,222 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 232214 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: 0afc45 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Black Stars Rise + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -54.59636 + posY: 1.63750076 + posZ: 28.67429 + rotX: 359.922638 + rotY: 269.999939 + rotZ: 0.000312584831 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232214 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: f1bceb + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Black Stars Rise + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -54.9407959 + posY: 1.78279 + posZ: 28.244215 + rotX: 359.962463 + rotY: 269.99292 + rotZ: 0.0245836619 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233304 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2333': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 057d5f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: False Lead + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -54.21003 + posY: 1.90468991 + posZ: 28.7906151 + rotX: 1.40169573 + rotY: 269.901031 + rotZ: 357.5793 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233304 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2333': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 2ceae2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: False Lead + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -54.42537 + posY: 1.867599 + posZ: 29.50204 + rotX: 357.297 + rotY: 269.991028 + rotZ: 0.0185051076 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '2333': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 232214 +- 232214 +- 233304 +- 233304 +Description: '' +GMNotes: '' +GUID: 90bef0 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Add to Encounter Deck +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -18.8938389 + posY: 3.651049 + posZ: 54.64583 + rotX: 0.868308961 + rotY: 269.97403 + rotZ: 357.555969 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 5 A Phantom of Truth bd4167/Card Canal Saint-Martin 065c64.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 5 A Phantom of Truth bd4167/Card Canal Saint-Martin 065c64.yaml new file mode 100644 index 000000000..ff65a7e6e --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 5 A Phantom of Truth bd4167/Card Canal Saint-Martin 065c64.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 231910 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378686851/006B65A59360F63826342C2B1A062C1AD727BD53/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378687267/945F8EF94DC605E0731E37C1BCD3FE65FCB86D02/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Paris. +GMNotes: '' +GUID: 065c64 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Canal Saint-Martin +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -17.1199875 + posY: 1.67481923 + posZ: -7.70005369 + rotX: 359.9201 + rotY: 269.999176 + rotZ: 0.016876556 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 5 A Phantom of Truth bd4167/Card Gardens of Luxembourg 17ba38.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 5 A Phantom of Truth bd4167/Card Gardens of Luxembourg 17ba38.yaml new file mode 100644 index 000000000..a1719320d --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 5 A Phantom of Truth bd4167/Card Gardens of Luxembourg 17ba38.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 231914 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378686851/006B65A59360F63826342C2B1A062C1AD727BD53/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378687267/945F8EF94DC605E0731E37C1BCD3FE65FCB86D02/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Paris. +GMNotes: '' +GUID: 17ba38 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Gardens of Luxembourg +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -30.2242641 + posY: 1.69535077 + posZ: -0.0300093815 + rotX: 359.9201 + rotY: 270.0 + rotZ: 0.0168762412 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 5 A Phantom of Truth bd4167/Card Gare d'Orsay 1af959.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 5 A Phantom of Truth bd4167/Card Gare d'Orsay 1af959.yaml new file mode 100644 index 000000000..e1a1453a4 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 5 A Phantom of Truth bd4167/Card Gare d'Orsay 1af959.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 231908 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378686851/006B65A59360F63826342C2B1A062C1AD727BD53/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378687267/945F8EF94DC605E0731E37C1BCD3FE65FCB86D02/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Paris. Rail. +GMNotes: '' +GUID: 1af959 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Gare d'Orsay +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -30.2242813 + posY: 1.69758868 + posZ: 7.57 + rotX: 359.9201 + rotY: 269.999939 + rotZ: 0.0168763027 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 5 A Phantom of Truth bd4167/Card Grand Guignol 31bba7.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 5 A Phantom of Truth bd4167/Card Grand Guignol 31bba7.yaml new file mode 100644 index 000000000..aa8cb2955 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 5 A Phantom of Truth bd4167/Card Grand Guignol 31bba7.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 231905 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378686851/006B65A59360F63826342C2B1A062C1AD727BD53/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378687267/945F8EF94DC605E0731E37C1BCD3FE65FCB86D02/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Theatre of the Great Puppet +GMNotes: '' +GUID: 31bba7 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Grand Guignol +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -17.1199379 + posY: 1.67931557 + posZ: 7.569976 + rotX: 359.9201 + rotY: 269.9998 + rotZ: 0.0168773457 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 5 A Phantom of Truth bd4167/Card Le Marais 191fba.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 5 A Phantom of Truth bd4167/Card Le Marais 191fba.yaml new file mode 100644 index 000000000..878bfdaf3 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 5 A Phantom of Truth bd4167/Card Le Marais 191fba.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 231912 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378686851/006B65A59360F63826342C2B1A062C1AD727BD53/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378687267/945F8EF94DC605E0731E37C1BCD3FE65FCB86D02/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Paris. Rail. +GMNotes: '' +GUID: 191fba +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Le Marais +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -25.0739212 + posY: 1.77296591 + posZ: -7.700883 + rotX: 359.167572 + rotY: 270.022125 + rotZ: 0.0180939045 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 5 A Phantom of Truth bd4167/Card Le Marais 8c21dc.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 5 A Phantom of Truth bd4167/Card Le Marais 8c21dc.yaml new file mode 100644 index 000000000..554ac9e89 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 5 A Phantom of Truth bd4167/Card Le Marais 8c21dc.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 231911 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378686851/006B65A59360F63826342C2B1A062C1AD727BD53/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378687267/945F8EF94DC605E0731E37C1BCD3FE65FCB86D02/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Paris. Rail. +GMNotes: '' +GUID: 8c21dc +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Le Marais +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -23.6755867 + posY: 1.70437515 + posZ: -7.69990063 + rotX: 359.170532 + rotY: 269.998016 + rotZ: 0.0171195 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 5 A Phantom of Truth bd4167/Card Montmartre 49daa1.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 5 A Phantom of Truth bd4167/Card Montmartre 49daa1.yaml new file mode 100644 index 000000000..0e9e0c369 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 5 A Phantom of Truth bd4167/Card Montmartre 49daa1.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 231903 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378686851/006B65A59360F63826342C2B1A062C1AD727BD53/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378687267/945F8EF94DC605E0731E37C1BCD3FE65FCB86D02/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Paris. Rail. +GMNotes: '' +GUID: 49daa1 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Montmartre +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -25.1037636 + posY: 1.73657191 + posZ: 0.000960650563 + rotX: 0.04264994 + rotY: 270.036865 + rotZ: 359.764374 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 5 A Phantom of Truth bd4167/Card Montmartre bf452a.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 5 A Phantom of Truth bd4167/Card Montmartre bf452a.yaml new file mode 100644 index 000000000..e6f779914 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 5 A Phantom of Truth bd4167/Card Montmartre bf452a.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 231904 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378686851/006B65A59360F63826342C2B1A062C1AD727BD53/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378687267/945F8EF94DC605E0731E37C1BCD3FE65FCB86D02/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Paris. Rail. +GMNotes: '' +GUID: bf452a +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Montmartre +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -23.6765 + posY: 1.68621528 + posZ: -0.0301341619 + rotX: 359.920135 + rotY: 269.998077 + rotZ: 0.0165526755 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 5 A Phantom of Truth bd4167/Card Montparnasse a7a582.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 5 A Phantom of Truth bd4167/Card Montparnasse a7a582.yaml new file mode 100644 index 000000000..b262c12fd --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 5 A Phantom of Truth bd4167/Card Montparnasse a7a582.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 231902 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378686851/006B65A59360F63826342C2B1A062C1AD727BD53/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378687267/945F8EF94DC605E0731E37C1BCD3FE65FCB86D02/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Paris. Rail. +GMNotes: '' +GUID: a7a582 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Montparnasse +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -36.7731171 + posY: 1.70448279 + posZ: -0.0300298743 + rotX: 359.9201 + rotY: 269.999542 + rotZ: 0.0168768466 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 5 A Phantom of Truth bd4167/Card Notre-Dame 7b7fad.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 5 A Phantom of Truth bd4167/Card Notre-Dame 7b7fad.yaml new file mode 100644 index 000000000..ff0885a85 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 5 A Phantom of Truth bd4167/Card Notre-Dame 7b7fad.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 231913 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378686851/006B65A59360F63826342C2B1A062C1AD727BD53/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378687267/945F8EF94DC605E0731E37C1BCD3FE65FCB86D02/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Paris. Rail. +GMNotes: '' +GUID: 7b7fad +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Notre-Dame +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -30.2243328 + posY: 1.69309235 + posZ: -7.700052 + rotX: 359.9201 + rotY: 269.999817 + rotZ: 0.0168765727 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 5 A Phantom of Truth bd4167/Card Opéra Garnier 403e57.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 5 A Phantom of Truth bd4167/Card Opéra Garnier 403e57.yaml new file mode 100644 index 000000000..43a35b2dc --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 5 A Phantom of Truth bd4167/Card Opéra Garnier 403e57.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 231906 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378686851/006B65A59360F63826342C2B1A062C1AD727BD53/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378687267/945F8EF94DC605E0731E37C1BCD3FE65FCB86D02/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Paris. Rail. +GMNotes: '' +GUID: 403e57 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: "Op\xE9ra Garnier" +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -25.0899677 + posY: 1.77922165 + posZ: 7.56932735 + rotX: 359.140137 + rotY: 269.98175 + rotZ: 0.0166735966 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 5 A Phantom of Truth bd4167/Card Opéra Garnier 78e730.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 5 A Phantom of Truth bd4167/Card Opéra Garnier 78e730.yaml new file mode 100644 index 000000000..138a9081e --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 5 A Phantom of Truth bd4167/Card Opéra Garnier 78e730.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 231907 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378686851/006B65A59360F63826342C2B1A062C1AD727BD53/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378687267/945F8EF94DC605E0731E37C1BCD3FE65FCB86D02/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Paris. Rail. +GMNotes: '' +GUID: 78e730 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: "Op\xE9ra Garnier" +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -23.6764965 + posY: 1.70963144 + posZ: 7.57079124 + rotX: 359.142639 + rotY: 269.976837 + rotZ: 0.01703349 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 5 A Phantom of Truth bd4167/Card Père Lachaise Cemetery 79ea7b.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 5 A Phantom of Truth bd4167/Card Père Lachaise Cemetery 79ea7b.yaml new file mode 100644 index 000000000..29be49996 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 5 A Phantom of Truth bd4167/Card Père Lachaise Cemetery 79ea7b.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 231909 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378686851/006B65A59360F63826342C2B1A062C1AD727BD53/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378687267/945F8EF94DC605E0731E37C1BCD3FE65FCB86D02/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Paris. +GMNotes: '' +GUID: 79ea7b +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: "P\xE8re Lachaise Cemetery" +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -17.1201458 + posY: 1.67258739 + posZ: -15.2799988 + rotX: 359.9201 + rotY: 270.000031 + rotZ: 0.01687651 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 5 A Phantom of Truth bd4167/Card Scenario b52eaf.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 5 A Phantom of Truth bd4167/Card Scenario b52eaf.yaml new file mode 100644 index 000000000..bdf3e06d6 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 5 A Phantom of Truth bd4167/Card Scenario b52eaf.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 231900 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378686851/006B65A59360F63826342C2B1A062C1AD727BD53/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378687267/945F8EF94DC605E0731E37C1BCD3FE65FCB86D02/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: A Phantom of Truth +GMNotes: '' +GUID: b52eaf +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Scenario +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.955993 + posY: 1.65564811 + posZ: -10.4411526 + rotX: 359.919739 + rotY: 269.9999 + rotZ: 0.0168423746 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 5 A Phantom of Truth bd4167/Custom_Model_Bag Set-aside 45cbf9.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 5 A Phantom of Truth bd4167/Custom_Model_Bag Set-aside 45cbf9.yaml new file mode 100644 index 000000000..356c512c0 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 5 A Phantom of Truth bd4167/Custom_Model_Bag Set-aside 45cbf9.yaml @@ -0,0 +1,58 @@ +Autoraise: true +ColorDiffuse: + b: 0.02148666 + g: 0.00100758043 + r: 0.02148666 +ContainedObjects: +- !include 'Custom_Model_Bag Set-aside 45cbf9/Card Jordan Perry 1b6382.yaml' +- !include 'Custom_Model_Bag Set-aside 45cbf9/Card The Organist a0a6a4.yaml' +- !include 'Custom_Model_Bag Set-aside 45cbf9/Deck Lost Soul e50068.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: A Phantom of Truth +GMNotes: '' +GUID: 45cbf9 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +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.696421 + posY: 1.55831671 + posZ: 14.2788305 + rotX: 359.955139 + rotY: 224.992447 + rotZ: 0.0686864853 + scaleX: 2.0 + scaleY: 2.0 + scaleZ: 2.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 5 A Phantom of Truth bd4167/Custom_Model_Bag Set-aside 45cbf9/Card Jordan Perry 1b6382.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 5 A Phantom of Truth bd4167/Custom_Model_Bag Set-aside 45cbf9/Card Jordan Perry 1b6382.yaml new file mode 100644 index 000000000..f436dd88b --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 5 A Phantom of Truth bd4167/Custom_Model_Bag Set-aside 45cbf9/Card Jordan Perry 1b6382.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 232054 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378685352/22FD056BAF1966FE2D1AC46FC1BF90C1A03A1404/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378686413/C1688C1A909FDC7357EB3EEFADAB1FBD5818BD3E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: An Imposing Presence +GMNotes: '' +GUID: 1b6382 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Jordan Perry +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -17.5568485 + posY: 2.591597 + posZ: 7.59434843 + rotX: 359.920135 + rotY: 269.9999 + rotZ: 0.0168708228 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 5 A Phantom of Truth bd4167/Custom_Model_Bag Set-aside 45cbf9/Card The Organist a0a6a4.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 5 A Phantom of Truth bd4167/Custom_Model_Bag Set-aside 45cbf9/Card The Organist a0a6a4.yaml new file mode 100644 index 000000000..7c30f6e8e --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 5 A Phantom of Truth bd4167/Custom_Model_Bag Set-aside 45cbf9/Card The Organist a0a6a4.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 231901 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378686851/006B65A59360F63826342C2B1A062C1AD727BD53/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378687267/945F8EF94DC605E0731E37C1BCD3FE65FCB86D02/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Humanoid. Avatar. Elite. +GMNotes: '' +GUID: a0a6a4 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: The Organist +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -15.4115114 + posY: 2.589492 + posZ: 8.643575 + rotX: 359.920135 + rotY: 269.997375 + rotZ: 0.01687357 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 5 A Phantom of Truth bd4167/Custom_Model_Bag Set-aside 45cbf9/Deck Lost Soul e50068.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 5 A Phantom of Truth bd4167/Custom_Model_Bag Set-aside 45cbf9/Deck Lost Soul e50068.yaml new file mode 100644 index 000000000..b0db0e3c8 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 5 A Phantom of Truth bd4167/Custom_Model_Bag Set-aside 45cbf9/Deck Lost Soul e50068.yaml @@ -0,0 +1,215 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- 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 + UniqueBack: false + Description: Madness. Pact. + GMNotes: '' + GUID: febed7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Lost Soul + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -31.715395 + posY: 1.58042014 + posZ: -57.703846 + rotX: 359.9204 + rotY: 269.999939 + rotZ: 0.015114977 + 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 + UniqueBack: false + Description: Madness. Pact. + GMNotes: '' + GUID: 44bb66 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Lost Soul + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -31.4223785 + posY: 1.73920166 + posZ: -57.4752235 + rotX: 359.940552 + rotY: 270.0 + rotZ: 0.00620982237 + 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 + UniqueBack: false + Description: Madness. Pact. + GMNotes: '' + GUID: febed7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Lost Soul + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -31.42236 + posY: 1.75321162 + posZ: -57.4752274 + rotX: 359.937042 + rotY: 270.0 + rotZ: 0.0121888816 + 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 + UniqueBack: false + Description: Madness. Pact. + GMNotes: '' + GUID: febed7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Lost Soul + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -31.4223747 + posY: 1.74227989 + posZ: -57.4752235 + rotX: 359.93692 + rotY: 270.0 + rotZ: 0.0123915635 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2323': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 232348 +- 232348 +- 232348 +- 232348 +Description: '' +GMNotes: '' +GUID: e50068 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Lost Soul +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -1.58450341 + posY: 3.638369 + posZ: 46.5909729 + rotX: 359.924438 + rotY: 269.9998 + rotZ: 0.0165921859 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 5 A Phantom of Truth bd4167/Custom_Tile 06f9fa.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 5 A Phantom of Truth bd4167/Custom_Tile 06f9fa.yaml new file mode 100644 index 000000000..b8580c11c --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 5 A Phantom of Truth bd4167/Custom_Tile 06f9fa.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 06f9fa +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: -19.8901978 + posY: 1.60820925 + posZ: -3.4866004 + rotX: 0.06843132 + rotY: 135.000015 + rotZ: 0.0445620939 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 5 A Phantom of Truth bd4167/Custom_Tile 09b690.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 5 A Phantom of Truth bd4167/Custom_Tile 09b690.yaml new file mode 100644 index 000000000..b0b9714f7 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 5 A Phantom of Truth bd4167/Custom_Tile 09b690.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 09b690 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.058382 + posY: 1.61699271 + posZ: -7.596466 + rotX: 359.920166 + rotY: 269.99408 + rotZ: 0.01644845 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 5 A Phantom of Truth bd4167/Custom_Tile 0f0b44.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 5 A Phantom of Truth bd4167/Custom_Tile 0f0b44.yaml new file mode 100644 index 000000000..dfee0a310 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 5 A Phantom of Truth bd4167/Custom_Tile 0f0b44.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 0f0b44 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.119997 + posY: 1.6019839 + posZ: -11.5100031 + rotX: 359.983124 + rotY: 0.000373160263 + rotZ: 359.920074 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 5 A Phantom of Truth bd4167/Custom_Tile 197e00.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 5 A Phantom of Truth bd4167/Custom_Tile 197e00.yaml new file mode 100644 index 000000000..7102b8ff9 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 5 A Phantom of Truth bd4167/Custom_Tile 197e00.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 197e00 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: -19.8141 + posY: 1.61013985 + posZ: 3.42980051 + rotX: 0.044565767 + rotY: 45.00013 + rotZ: 359.9316 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 5 A Phantom of Truth bd4167/Custom_Tile 240f42.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 5 A Phantom of Truth bd4167/Custom_Tile 240f42.yaml new file mode 100644 index 000000000..bcd2b9b2e --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 5 A Phantom of Truth bd4167/Custom_Tile 240f42.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 240f42 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: -21.1406 + posY: 1.60763824 + posZ: -11.3468018 + rotX: 0.06842996 + rotY: 135.000458 + rotZ: 0.04455908 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 5 A Phantom of Truth bd4167/Custom_Tile 2ea277.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 5 A Phantom of Truth bd4167/Custom_Tile 2ea277.yaml new file mode 100644 index 000000000..77cd3fca1 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 5 A Phantom of Truth bd4167/Custom_Tile 2ea277.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 2ea277 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.5441475 + posY: 1.60793912 + posZ: -7.50062227 + rotX: 0.0798997656 + rotY: 90.0186 + rotZ: 359.983124 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 5 A Phantom of Truth bd4167/Custom_Tile 4a4785.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 5 A Phantom of Truth bd4167/Custom_Tile 4a4785.yaml new file mode 100644 index 000000000..5d6e038fb --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 5 A Phantom of Truth bd4167/Custom_Tile 4a4785.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 4a4785 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.1186 + posY: 1.62637913 + posZ: -4.4251585 + rotX: 359.931549 + rotY: 315.0001 + rotZ: 359.955444 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 5 A Phantom of Truth bd4167/Custom_Tile 603ed0.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 5 A Phantom of Truth bd4167/Custom_Tile 603ed0.yaml new file mode 100644 index 000000000..6fa679173 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 5 A Phantom of Truth bd4167/Custom_Tile 603ed0.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 603ed0 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.31799 + posY: 1.612046 + posZ: 7.51749134 + rotX: 0.07989779 + rotY: 90.0123 + rotZ: 359.9831 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 5 A Phantom of Truth bd4167/Custom_Tile 7234af.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 5 A Phantom of Truth bd4167/Custom_Tile 7234af.yaml new file mode 100644 index 000000000..bc6c4db5b --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 5 A Phantom of Truth bd4167/Custom_Tile 7234af.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 7234af +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.35113 + posY: 1.62798119 + posZ: -0.0847774148 + rotX: 359.9201 + rotY: 269.9947 + rotZ: 0.016925564 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 5 A Phantom of Truth bd4167/Custom_Tile 8612e0.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 5 A Phantom of Truth bd4167/Custom_Tile 8612e0.yaml new file mode 100644 index 000000000..469953520 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 5 A Phantom of Truth bd4167/Custom_Tile 8612e0.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 8612e0 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.6765 + posY: 1.615652 + posZ: 3.86000013 + rotX: 0.01687639 + rotY: 179.99675 + rotZ: 0.07993938 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 5 A Phantom of Truth bd4167/Custom_Tile cc943e.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 5 A Phantom of Truth bd4167/Custom_Tile cc943e.yaml new file mode 100644 index 000000000..794617ebf --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 5 A Phantom of Truth bd4167/Custom_Tile cc943e.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: cc943e +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.91209 + posY: 1.62120175 + posZ: 7.386776 + rotX: 359.920135 + rotY: 269.9945 + rotZ: 0.0167428162 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 5 A Phantom of Truth bd4167/Custom_Tile e3c737.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 5 A Phantom of Truth bd4167/Custom_Tile e3c737.yaml new file mode 100644 index 000000000..ce9cea106 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 5 A Phantom of Truth bd4167/Custom_Tile e3c737.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: e3c737 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.4568329 + posY: 1.629259 + posZ: 3.754418 + rotX: 359.955444 + rotY: 224.999908 + rotZ: 0.068388164 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 5 A Phantom of Truth bd4167/Custom_Tile e5b752.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 5 A Phantom of Truth bd4167/Custom_Tile e5b752.yaml new file mode 100644 index 000000000..7b5f40394 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 5 A Phantom of Truth bd4167/Custom_Tile e5b752.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: e5b752 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.62478268 + posZ: 3.86000013 + rotX: 359.983124 + rotY: 0.000182602322 + rotZ: 359.920074 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 5 A Phantom of Truth bd4167/Custom_Tile f95052.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 5 A Phantom of Truth bd4167/Custom_Tile f95052.yaml new file mode 100644 index 000000000..5ee94241e --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 5 A Phantom of Truth bd4167/Custom_Tile f95052.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: f95052 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.6768 + posY: 1.61338758 + posZ: -3.8319 + rotX: 0.01687631 + rotY: 179.996826 + rotZ: 0.0799385756 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 5 A Phantom of Truth bd4167/Custom_Tile fb0cd1.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 5 A Phantom of Truth bd4167/Custom_Tile fb0cd1.yaml new file mode 100644 index 000000000..276b61998 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 5 A Phantom of Truth bd4167/Custom_Tile fb0cd1.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: fb0cd1 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.62251818 + posZ: -3.82999945 + rotX: 359.983124 + rotY: 0.00023001089 + rotZ: 359.920074 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 5 A Phantom of Truth bd4167/Custom_Tile A Phantom of Truth b20b8d.ttslua b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 5 A Phantom of Truth bd4167/Custom_Tile A Phantom of Truth b20b8d.ttslua new file mode 100644 index 000000000..e092a5769 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 5 A Phantom of Truth bd4167/Custom_Tile A Phantom of Truth b20b8d.ttslua @@ -0,0 +1,25 @@ +name = 'A Phantom of Truth' + +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 + +function standaloneClick() + Global.call('fillContainer', {object=self, key=name, mode='standalone'}) +end diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 5 A Phantom of Truth bd4167/Custom_Tile A Phantom of Truth b20b8d.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 5 A Phantom of Truth bd4167/Custom_Tile A Phantom of Truth b20b8d.yaml new file mode 100644 index 000000000..443473f38 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 5 A Phantom of Truth bd4167/Custom_Tile A Phantom of Truth b20b8d.yaml @@ -0,0 +1,42 @@ +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 +GMNotes: '' +GUID: b20b8d +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Tile A Phantom of Truth b20b8d.ttslua' +LuaScriptState: '' +Name: Custom_Tile +Nickname: A Phantom of Truth +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -4.32950068 + posY: 1.58312 + posZ: -14.9940042 + rotX: 359.919739 + rotY: 269.978638 + rotZ: 0.0168678369 + scaleX: 2.2 + scaleY: 1.0 + scaleZ: 2.2 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 5 A Phantom of Truth bd4167/Deck Agenda Deck 09597e.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 5 A Phantom of Truth bd4167/Deck Agenda Deck 09597e.yaml new file mode 100644 index 000000000..d32d7ce96 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 5 A Phantom of Truth bd4167/Deck Agenda Deck 09597e.yaml @@ -0,0 +1,172 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 231726 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2317': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378732934/F41E84FCDC0AB52634348C439A6D1A725CEB8115/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378736378/628E179D5305E95AFC25D86526320A24F8B27391/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 3 + GMNotes: '' + GUID: 8bd569 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Third Night + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -52.93248 + posY: 1.63504767 + posZ: 27.7619553 + rotX: 0.0174761228 + rotY: 180.845184 + rotZ: 0.07052514 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231725 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2317': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378732934/F41E84FCDC0AB52634348C439A6D1A725CEB8115/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378736378/628E179D5305E95AFC25D86526320A24F8B27391/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 2 + GMNotes: '' + GUID: 90b52d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Second Night + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -52.8240852 + posY: 1.7801497 + posZ: 27.3637714 + rotX: 0.0473652668 + rotY: 179.935669 + rotZ: 0.0746366 + 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: http://cloud-3.steamusercontent.com/ugc/775107058378732934/F41E84FCDC0AB52634348C439A6D1A725CEB8115/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378736378/628E179D5305E95AFC25D86526320A24F8B27391/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 1 + GMNotes: '' + GUID: 3da436 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The First Night + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -53.43126 + posY: 1.79841089 + posZ: 27.2732773 + rotX: 0.017057104 + rotY: 180.007416 + rotZ: 0.076241456 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2317': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378732934/F41E84FCDC0AB52634348C439A6D1A725CEB8115/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378736378/628E179D5305E95AFC25D86526320A24F8B27391/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 231726 +- 231725 +- 231724 +Description: '' +GMNotes: '' +GUID: 09597e +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Agenda Deck +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.72474241 + posY: 1.65664136 + posZ: 0.373430878 + rotX: 0.0168345012 + rotY: 180.000366 + rotZ: 0.08025766 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 5 A Phantom of Truth bd4167/Deck Encounter Deck 77cab6.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 5 A Phantom of Truth bd4167/Deck Encounter Deck 77cab6.yaml new file mode 100644 index 000000000..c8e004499 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 5 A Phantom of Truth bd4167/Deck Encounter Deck 77cab6.yaml @@ -0,0 +1,1125 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 232247 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: '573722' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Frozen in Fear + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -18.63075 + posY: 1.86392987 + posZ: 29.8533134 + rotX: 359.924561 + rotY: 270.009155 + rotZ: 179.970367 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232247 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: f719ae + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Frozen in Fear + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -10.890419 + posY: 1.95210981 + posZ: 42.11201 + rotX: 359.936066 + rotY: 270.000336 + rotZ: 179.794083 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232246 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hex. Terror. + GMNotes: '' + GUID: cf1ccc + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Torturous Chords + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -10.7287369 + posY: 1.92425835 + posZ: 42.0833359 + rotX: 359.936554 + rotY: 270.0015 + rotZ: 180.013855 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232246 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hex. Terror. + GMNotes: '' + GUID: e8845b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Torturous Chords + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -12.5341215 + posY: 1.7453233 + posZ: 37.98386 + rotX: 359.916473 + rotY: 269.998535 + rotZ: 0.00614299066 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232246 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hex. Terror. + GMNotes: '' + GUID: cf1ccc + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Torturous Chords + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -12.5341024 + posY: 1.75921464 + posZ: 37.9838562 + rotX: 359.9205 + rotY: 269.998535 + rotZ: 0.0148495669 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232245 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: '151647' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Deadly Fate + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -11.9223719 + posY: 1.5807929 + posZ: 37.24564 + rotX: 359.920319 + rotY: 269.999878 + rotZ: 0.0156376343 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232245 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: bba9fa + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Deadly Fate + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -12.11165 + posY: 1.7443186 + posZ: 37.3240128 + rotX: 359.925232 + rotY: 269.9989 + rotZ: 0.0106753586 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232245 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: '151647' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Deadly Fate + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -12.1116314 + posY: 1.75823164 + posZ: 37.32401 + rotX: 359.921722 + rotY: 269.9989 + rotZ: 0.0149486512 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232243 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Byakhee. + GMNotes: '' + GUID: 8bb7ff + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Stealthy Byakhee + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -13.2151089 + posY: 1.5825119 + posZ: 37.1510353 + rotX: 359.920868 + rotY: 269.999756 + rotZ: 0.0119971139 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232243 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Byakhee. + GMNotes: '' + GUID: 38cc9a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Stealthy Byakhee + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -12.8213625 + posY: 1.73223686 + posZ: 37.1293068 + rotX: 359.943817 + rotY: 269.999878 + rotZ: -0.004009538 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232216 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Pact. + GMNotes: '' + GUID: 7a6d8c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Twisted to His Will + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -40.06019 + posY: 1.60829687 + posZ: -2.629929 + rotX: 359.920044 + rotY: 270.0098 + rotZ: 0.01704826 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232216 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Pact. + GMNotes: '' + GUID: a6af6b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Twisted to His Will + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -40.14995 + posY: 1.78357077 + posZ: -2.83012843 + rotX: 0.5782123 + rotY: 270.002 + rotZ: 0.0179315973 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232215 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: a0d34f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Spires of Carcosa + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -39.56787 + posY: 1.7705667 + posZ: -2.61933255 + rotX: 359.921173 + rotY: 270.003662 + rotZ: 0.0159180127 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232215 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: a0d34f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Spires of Carcosa + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -40.2772331 + posY: 1.7794143 + posZ: -2.527565 + rotX: 359.919922 + rotY: 270.003967 + rotZ: 0.01670667 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232211 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Pact. + GMNotes: '' + GUID: 60d096 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Hunted by Byakhee + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -42.38965 + posY: 1.614579 + posZ: 7.717301 + rotX: 359.920258 + rotY: 269.999359 + rotZ: 0.01605293 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232211 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Pact. + GMNotes: '' + GUID: 5e7c00 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Hunted by Byakhee + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -42.4008026 + posY: 1.775796 + posZ: 7.818656 + rotX: 359.9184 + rotY: 269.9989 + rotZ: 0.0150963822 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232210 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Byakhee. + GMNotes: '' + GUID: b323c1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Swift Byakhee + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -42.0870323 + posY: 1.79262948 + posZ: 7.32864046 + rotX: 359.920349 + rotY: 269.997162 + rotZ: 0.01657234 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232210 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Byakhee. + GMNotes: '' + GUID: b323c1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Swift Byakhee + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -42.47628 + posY: 1.76898062 + posZ: 7.469135 + rotX: 359.919647 + rotY: 269.997253 + rotZ: 0.0159163754 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232229 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Omen. Pact. + GMNotes: '' + GUID: 70009a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Pale Mask Beckons + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -28.2434616 + posY: 1.5971483 + posZ: 15.4716158 + rotX: 359.920166 + rotY: 270.021973 + rotZ: 0.01652023 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232228 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Pact. + GMNotes: '' + GUID: c023fe + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Marked by the Sign + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -28.2468338 + posY: 1.76336575 + posZ: 15.2574654 + rotX: 359.9197 + rotY: 270.021973 + rotZ: 0.0146484794 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232228 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Pact. + GMNotes: '' + GUID: 8c321d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Marked by the Sign + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -28.2435665 + posY: 1.77552032 + posZ: 15.0727062 + rotX: 359.91925 + rotY: 270.021973 + rotZ: 0.0173290391 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234229 + 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 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: 4cf636 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Yellow Sign + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -18.2012749 + posY: 1.58148372 + posZ: 10.016777 + rotX: 359.920746 + rotY: 269.996552 + rotZ: 0.0126871429 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234229 + 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 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: 74a845 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Yellow Sign + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -18.39433 + posY: 1.745 + posZ: 9.752235 + rotX: 359.928131 + rotY: 269.996552 + rotZ: 0.0164207779 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234228 + 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 + UniqueBack: false + Description: Monster. Byakhee. + GMNotes: '' + GUID: ab3719 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Screeching Byakhee + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -18.9733372 + posY: 1.58185852 + posZ: 7.530837 + rotX: 359.920441 + rotY: 269.999878 + rotZ: 0.0146859353 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234228 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2342': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Byakhee. + GMNotes: '' + GUID: 6fc5fa + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Screeching Byakhee + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -18.4653873 + posY: 1.59000814 + posZ: 28.9711189 + rotX: 359.922852 + rotY: 270.003235 + rotZ: 180.034988 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '2342': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 232247 +- 232247 +- 232246 +- 232246 +- 232246 +- 232245 +- 232245 +- 232245 +- 232243 +- 232243 +- 232216 +- 232216 +- 232215 +- 232215 +- 232211 +- 232211 +- 232210 +- 232210 +- 232229 +- 232228 +- 232228 +- 234229 +- 234229 +- 234228 +- 234228 +Description: '' +GMNotes: '' +GUID: 77cab6 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Encounter Deck +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.92758679 + posY: 1.74506259 + posZ: 5.7571435 + rotX: 359.919739 + rotY: 269.9997 + rotZ: 180.016815 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 6 The Pallid Mask eb48ff.ttslua b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 6 The Pallid Mask eb48ff.ttslua new file mode 100644 index 000000000..46067f58e --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 6 The Pallid Mask eb48ff.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.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.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 Path to Carcosa 1b887c/Custom_Model_Bag 6 The Pallid Mask eb48ff.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 6 The Pallid Mask eb48ff.yaml new file mode 100644 index 000000000..b75e5bd19 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 6 The Pallid Mask eb48ff.yaml @@ -0,0 +1,78 @@ +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 6 The Pallid Mask eb48ff/Custom_Model_Bag Set-aside e48bc9.yaml' +- !include 'Custom_Model_Bag 6 The Pallid Mask eb48ff/Bag Tomb of Shadows and Blocked + Passage 99e694.yaml' +- !include 'Custom_Model_Bag 6 The Pallid Mask eb48ff/Deck Encounter Deck b63667.yaml' +- !include 'Custom_Model_Bag 6 The Pallid Mask eb48ff/Deck Act Deck 8d2dcc.yaml' +- !include 'Custom_Model_Bag 6 The Pallid Mask eb48ff/Deck Agenda Deck fed701.yaml' +- !include 'Custom_Model_Bag 6 The Pallid Mask eb48ff/Card Scenario b52eaf.yaml' +- !include 'Custom_Model_Bag 6 The Pallid Mask eb48ff/Custom_Tile The Pallid Mask + bb070d.yaml' +- !include 'Custom_Model_Bag 6 The Pallid Mask eb48ff/Deck Catacombs Deck 628da0.yaml' +- !include 'Custom_Model_Bag 6 The Pallid Mask eb48ff/Notecard Errata 1 a4f23d.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/829135118403813848/1B592465CAE8F5B7E3D5DAC560DFA8DED4ED5BB8/ + MaterialIndex: 3 + MeshURL: https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj + NormalURL: '' + TypeIndex: 6 +Description: '' +GMNotes: '' +GUID: eb48ff +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Model_Bag 6 The Pallid Mask eb48ff.ttslua' +LuaScriptState: '{"ml":{"628da0":{"lock":false,"pos":{"x":-17.1203,"y":1.6795,"z":11.4606},"rot":{"x":359.9201,"y":270.0028,"z":0.0169}},"8d2dcc":{"lock":false,"pos":{"x":-2.6886,"y":1.6535,"z":-5.0485},"rot":{"x":0.0168,"y":179.9999,"z":0.0803}},"99e694":{"lock":false,"pos":{"x":-3.5154,"y":1.4058,"z":15.1085},"rot":{"x":359.9196,"y":269.9993,"z":0.0169}},"a4f23d":{"lock":false,"pos":{"x":-11.2044,"y":1.5602,"z":-23.5972},"rot":{"x":0.0799,"y":89.9885,"z":359.9831}},"b52eaf":{"lock":false,"pos":{"x":-3.956,"y":1.6556,"z":-10.4412},"rot":{"x":359.9197,"y":270.0001,"z":0.0168}},"b63667":{"lock":false,"pos":{"x":-3.9277,"y":1.7717,"z":5.7572},"rot":{"x":359.9197,"y":270.0051,"z":180.0168}},"bb070d":{"lock":false,"pos":{"x":-4.3035,"y":1.5832,"z":-14.589},"rot":{"x":359.9197,"y":269.9802,"z":0.0169}},"e48bc9":{"lock":false,"pos":{"x":1.6964,"y":1.5583,"z":14.2788},"rot":{"x":359.9551,"y":224.9979,"z":0.0687}},"fed701":{"lock":false,"pos":{"x":-2.7248,"y":1.664,"z":0.3733},"rot":{"x":0.0168,"y":180.0001,"z":0.0803}}}}' +MaterialIndex: -1 +MeshIndex: -1 +Name: Custom_Model_Bag +Nickname: '6: The Pallid Mask' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 14.4768553 + posY: 1.45780826 + posZ: -11.94181 + rotX: 359.920135 + rotY: 270.006256 + rotZ: 0.0168652274 + scaleX: 2.21 + scaleY: 0.46 + scaleZ: 2.42 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 6 The Pallid Mask eb48ff/Bag Tomb of Shadows and Blocked Passage 99e694.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 6 The Pallid Mask eb48ff/Bag Tomb of Shadows and Blocked Passage 99e694.yaml new file mode 100644 index 000000000..3b0231132 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 6 The Pallid Mask eb48ff/Bag Tomb of Shadows and Blocked Passage 99e694.yaml @@ -0,0 +1,37 @@ +Autoraise: true +ColorDiffuse: + b: 0.0 + g: 0.366520882 + r: 0.7058823 +ContainedObjects: +- !include 'Bag Tomb of Shadows and Blocked Passage 99e694/Card Catacombs 8bcab3.yaml' +- !include 'Bag Tomb of Shadows and Blocked Passage 99e694/Card Catacombs 405a46.yaml' +Description: '' +GMNotes: '' +GUID: 99e694 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +MeshIndex: -1 +Name: Bag +Nickname: Tomb of Shadows and Blocked Passage +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.51535988 + posY: 1.405791 + posZ: 15.1085367 + rotX: 359.919647 + rotY: 269.999268 + rotZ: 0.0168743413 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 6 The Pallid Mask eb48ff/Bag Tomb of Shadows and Blocked Passage 99e694/Card Catacombs 405a46.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 6 The Pallid Mask eb48ff/Bag Tomb of Shadows and Blocked Passage 99e694/Card Catacombs 405a46.yaml new file mode 100644 index 000000000..c074b38c5 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 6 The Pallid Mask eb48ff/Bag Tomb of Shadows and Blocked Passage 99e694/Card Catacombs 405a46.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 231926 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378686851/006B65A59360F63826342C2B1A062C1AD727BD53/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378687267/945F8EF94DC605E0731E37C1BCD3FE65FCB86D02/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 405a46 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Catacombs +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -28.2470112 + posY: 3.62380266 + posZ: 32.0343781 + rotX: 2.43799162 + rotY: 269.951874 + rotZ: 358.40683 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 6 The Pallid Mask eb48ff/Bag Tomb of Shadows and Blocked Passage 99e694/Card Catacombs 8bcab3.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 6 The Pallid Mask eb48ff/Bag Tomb of Shadows and Blocked Passage 99e694/Card Catacombs 8bcab3.yaml new file mode 100644 index 000000000..6e1b6694b --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 6 The Pallid Mask eb48ff/Bag Tomb of Shadows and Blocked Passage 99e694/Card Catacombs 8bcab3.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 231925 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378686851/006B65A59360F63826342C2B1A062C1AD727BD53/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378687267/945F8EF94DC605E0731E37C1BCD3FE65FCB86D02/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 8bcab3 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Catacombs +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -28.7294884 + posY: 3.60639143 + posZ: 31.1715 + rotX: 1.9970541 + rotY: 270.042236 + rotZ: 1.6211772 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 6 The Pallid Mask eb48ff/Card Scenario b52eaf.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 6 The Pallid Mask eb48ff/Card Scenario b52eaf.yaml new file mode 100644 index 000000000..8980446a7 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 6 The Pallid Mask eb48ff/Card Scenario b52eaf.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 231915 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378686851/006B65A59360F63826342C2B1A062C1AD727BD53/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378687267/945F8EF94DC605E0731E37C1BCD3FE65FCB86D02/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: The Pallid Mask +GMNotes: '' +GUID: b52eaf +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Scenario +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.956079 + posY: 1.65564823 + posZ: -10.4412737 + rotX: 359.919739 + rotY: 270.000671 + rotZ: 0.016840104 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 6 The Pallid Mask eb48ff/Custom_Model_Bag Set-aside e48bc9.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 6 The Pallid Mask eb48ff/Custom_Model_Bag Set-aside e48bc9.yaml new file mode 100644 index 000000000..f094fe679 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 6 The Pallid Mask eb48ff/Custom_Model_Bag Set-aside e48bc9.yaml @@ -0,0 +1,97 @@ +Autoraise: true +ColorDiffuse: + b: 0.02148666 + g: 0.00100758043 + r: 0.02148666 +ContainedObjects: +- Autoraise: true + CardID: 232055 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378685352/22FD056BAF1966FE2D1AC46FC1BF90C1A03A1404/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378686413/C1688C1A909FDC7357EB3EEFADAB1FBD5818BD3E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Just Skin and Bones + GMNotes: '' + GUID: 5f2034 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ishimaru Haruko + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -26.83504 + posY: 3.65269661 + posZ: 23.9388142 + rotX: 359.936737 + rotY: 270.0001 + rotZ: 0.0134890685 + 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: '' +GMNotes: '' +GUID: e48bc9 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +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.69638014 + posY: 1.5583179 + posZ: 14.2788429 + rotX: 359.955139 + rotY: 224.99794 + rotZ: 0.06867327 + scaleX: 2.0 + scaleY: 2.0 + scaleZ: 2.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 6 The Pallid Mask eb48ff/Custom_Tile The Pallid Mask bb070d.ttslua b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 6 The Pallid Mask eb48ff/Custom_Tile The Pallid Mask bb070d.ttslua new file mode 100644 index 000000000..9607689ac --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 6 The Pallid Mask eb48ff/Custom_Tile The Pallid Mask bb070d.ttslua @@ -0,0 +1,25 @@ +name = 'The Pallid Mask' + +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 + +function standaloneClick() + Global.call('fillContainer', {object=self, key=name, mode='standalone'}) +end diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 6 The Pallid Mask eb48ff/Custom_Tile The Pallid Mask bb070d.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 6 The Pallid Mask eb48ff/Custom_Tile The Pallid Mask bb070d.yaml new file mode 100644 index 000000000..238a0bb49 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 6 The Pallid Mask eb48ff/Custom_Tile The Pallid Mask bb070d.yaml @@ -0,0 +1,42 @@ +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 +GMNotes: '' +GUID: bb070d +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Tile The Pallid Mask bb070d.ttslua' +LuaScriptState: '' +Name: Custom_Tile +Nickname: The Pallid Mask +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -4.30350065 + posY: 1.58320272 + posZ: -14.589 + rotX: 359.919739 + rotY: 269.9802 + rotZ: 0.0168654956 + scaleX: 2.2 + scaleY: 1.0 + scaleZ: 2.2 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 6 The Pallid Mask eb48ff/Deck Act Deck 8d2dcc.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 6 The Pallid Mask eb48ff/Deck Act Deck 8d2dcc.yaml new file mode 100644 index 000000000..42ca0eed8 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 6 The Pallid Mask eb48ff/Deck Act Deck 8d2dcc.yaml @@ -0,0 +1,215 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 231736 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2317': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378732934/F41E84FCDC0AB52634348C439A6D1A725CEB8115/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378736378/628E179D5305E95AFC25D86526320A24F8B27391/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 3 + GMNotes: '' + GUID: 3da436 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Leading the Way + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -47.9311829 + posY: 1.62405694 + posZ: 13.7867193 + rotX: 359.920532 + rotY: 269.993683 + rotZ: 0.0138145285 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231735 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2317': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378732934/F41E84FCDC0AB52634348C439A6D1A725CEB8115/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378736378/628E179D5305E95AFC25D86526320A24F8B27391/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 3 + GMNotes: '' + GUID: 571edb + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Way Out + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -48.37364 + posY: 1.769891 + posZ: 14.1123562 + rotX: 359.9178 + rotY: 270.0008 + rotZ: 0.00116688618 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231734 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2317': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378732934/F41E84FCDC0AB52634348C439A6D1A725CEB8115/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378736378/628E179D5305E95AFC25D86526320A24F8B27391/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 2 + GMNotes: '' + GUID: 850fd2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Path is Barred + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -47.7022438 + posY: 1.78678882 + posZ: 14.0187254 + rotX: 359.921051 + rotY: 270.001831 + rotZ: 0.0143777952 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231733 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2317': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378732934/F41E84FCDC0AB52634348C439A6D1A725CEB8115/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378736378/628E179D5305E95AFC25D86526320A24F8B27391/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 1 + GMNotes: '' + GUID: 78351c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Through the Catacombs + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -29.2305489 + posY: 1.75466788 + posZ: 39.26993 + rotX: 0.0181267411 + rotY: 179.994919 + rotZ: 0.061301142 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2317': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378732934/F41E84FCDC0AB52634348C439A6D1A725CEB8115/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378736378/628E179D5305E95AFC25D86526320A24F8B27391/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 231736 +- 231735 +- 231734 +- 231733 +Description: '' +GMNotes: '' +GUID: 8d2dcc +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Act Deck +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.68857145 + posY: 1.65349448 + posZ: -5.048524 + rotX: 0.016834965 + rotY: 179.999863 + rotZ: 0.0802582 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 6 The Pallid Mask eb48ff/Deck Agenda Deck fed701.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 6 The Pallid Mask eb48ff/Deck Agenda Deck fed701.yaml new file mode 100644 index 000000000..d2f1e6782 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 6 The Pallid Mask eb48ff/Deck Agenda Deck fed701.yaml @@ -0,0 +1,136 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 231732 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2317': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378732934/F41E84FCDC0AB52634348C439A6D1A725CEB8115/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378736378/628E179D5305E95AFC25D86526320A24F8B27391/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 2 + GMNotes: '' + GUID: 0437b7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Empire of the Undead + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -56.2522125 + posY: 1.638733 + posZ: 24.4151363 + rotX: 0.01758345 + rotY: 180.0001 + rotZ: 0.07377631 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232531 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2325': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378732934/F41E84FCDC0AB52634348C439A6D1A725CEB8115/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378736378/628E179D5305E95AFC25D86526320A24F8B27391/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 1 + GMNotes: '' + GUID: 64d9ff + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Empire of the Dead + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -56.12177 + posY: 1.783801 + posZ: 24.46747 + rotX: 0.0048886463 + rotY: 179.999466 + rotZ: 0.07867141 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2317': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378732934/F41E84FCDC0AB52634348C439A6D1A725CEB8115/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378736378/628E179D5305E95AFC25D86526320A24F8B27391/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + '2325': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378732934/F41E84FCDC0AB52634348C439A6D1A725CEB8115/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378736378/628E179D5305E95AFC25D86526320A24F8B27391/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 231732 +- 232531 +Description: '' +GMNotes: '' +GUID: fed701 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Agenda Deck +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.72475219 + posY: 1.6639775 + posZ: 0.373330623 + rotX: 0.01683481 + rotY: 180.000122 + rotZ: 0.08025803 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 6 The Pallid Mask eb48ff/Deck Catacombs Deck 628da0.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 6 The Pallid Mask eb48ff/Deck Catacombs Deck 628da0.yaml new file mode 100644 index 000000000..e6a49a4a7 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 6 The Pallid Mask eb48ff/Deck Catacombs Deck 628da0.yaml @@ -0,0 +1,559 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 231924 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378686851/006B65A59360F63826342C2B1A062C1AD727BD53/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378687267/945F8EF94DC605E0731E37C1BCD3FE65FCB86D02/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: f1237c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Catacombs + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 11.0293474 + posY: 1.76226366 + posZ: 63.857502 + rotX: 359.936768 + rotY: 269.995453 + rotZ: 0.0161490813 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231923 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378686851/006B65A59360F63826342C2B1A062C1AD727BD53/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378687267/945F8EF94DC605E0731E37C1BCD3FE65FCB86D02/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: c3151e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Catacombs + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 10.6958141 + posY: 1.78758347 + posZ: 62.7899 + rotX: 359.921661 + rotY: 270.012268 + rotZ: 0.0213665068 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231922 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378686851/006B65A59360F63826342C2B1A062C1AD727BD53/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378687267/945F8EF94DC605E0731E37C1BCD3FE65FCB86D02/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 30c7a6 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Catacombs + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 10.44015 + posY: 1.79798508 + posZ: 63.9999542 + rotX: 359.920929 + rotY: 270.000122 + rotZ: 0.0157662053 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231922 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378686851/006B65A59360F63826342C2B1A062C1AD727BD53/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378687267/945F8EF94DC605E0731E37C1BCD3FE65FCB86D02/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 5efda5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Catacombs + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 10.5757217 + posY: 1.79163516 + posZ: 63.6631622 + rotX: 359.935669 + rotY: 269.944855 + rotZ: 0.0440920219 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231921 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378686851/006B65A59360F63826342C2B1A062C1AD727BD53/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378687267/945F8EF94DC605E0731E37C1BCD3FE65FCB86D02/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 0e3d00 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Catacombs + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 10.5668249 + posY: 1.81684554 + posZ: 62.8901443 + rotX: 359.9202 + rotY: 270.006317 + rotZ: 0.0229011271 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231921 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378686851/006B65A59360F63826342C2B1A062C1AD727BD53/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378687267/945F8EF94DC605E0731E37C1BCD3FE65FCB86D02/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 66b81f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Catacombs + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 10.43266 + posY: 1.82691252 + posZ: 63.670414 + rotX: 359.920227 + rotY: 269.9984 + rotZ: 0.01663173 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231920 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378686851/006B65A59360F63826342C2B1A062C1AD727BD53/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378687267/945F8EF94DC605E0731E37C1BCD3FE65FCB86D02/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 29170f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Catacombs + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 10.5162258 + posY: 1.83632493 + posZ: 63.1583023 + rotX: 359.920135 + rotY: 270.020752 + rotZ: 0.01646304 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231919 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378686851/006B65A59360F63826342C2B1A062C1AD727BD53/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378687267/945F8EF94DC605E0731E37C1BCD3FE65FCB86D02/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: b08255 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Catacombs + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 10.808157 + posY: 1.84557986 + posZ: 63.0735664 + rotX: 359.920258 + rotY: 270.013763 + rotZ: 0.0194874946 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231918 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378686851/006B65A59360F63826342C2B1A062C1AD727BD53/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378687267/945F8EF94DC605E0731E37C1BCD3FE65FCB86D02/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 3fb3fc + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Catacombs + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 10.5719376 + posY: 1.85575271 + posZ: 63.7792778 + rotX: 359.919861 + rotY: 270.023376 + rotZ: 0.0175360031 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231917 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378686851/006B65A59360F63826342C2B1A062C1AD727BD53/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378687267/945F8EF94DC605E0731E37C1BCD3FE65FCB86D02/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 7c7f4a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Catacombs + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 10.8657742 + posY: 1.87644315 + posZ: 63.6845551 + rotX: 359.952057 + rotY: 269.998749 + rotZ: 359.3564 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231917 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378686851/006B65A59360F63826342C2B1A062C1AD727BD53/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378687267/945F8EF94DC605E0731E37C1BCD3FE65FCB86D02/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 80cf41 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Catacombs + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 10.6051016 + posY: 2.082475 + posZ: 63.4215965 + rotX: 359.9359 + rotY: 269.996 + rotZ: 349.0041 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231916 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378686851/006B65A59360F63826342C2B1A062C1AD727BD53/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378687267/945F8EF94DC605E0731E37C1BCD3FE65FCB86D02/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: f5ce90 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Catacombs + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -17.1183758 + posY: 1.81244552 + posZ: 11.46135 + rotX: 358.314819 + rotY: 270.0153 + rotZ: 358.755432 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378686851/006B65A59360F63826342C2B1A062C1AD727BD53/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378687267/945F8EF94DC605E0731E37C1BCD3FE65FCB86D02/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 231924 +- 231923 +- 231922 +- 231922 +- 231921 +- 231921 +- 231920 +- 231919 +- 231918 +- 231917 +- 231917 +- 231916 +Description: '' +GMNotes: '' +GUID: 628da0 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Catacombs Deck +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -17.1202946 + posY: 1.67954326 + posZ: 11.4605751 + rotX: 359.9201 + rotY: 270.0028 + rotZ: 0.0168714859 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 6 The Pallid Mask eb48ff/Deck Encounter Deck b63667.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 6 The Pallid Mask eb48ff/Deck Encounter Deck b63667.yaml new file mode 100644 index 000000000..7101b1b6c --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 6 The Pallid Mask eb48ff/Deck Encounter Deck b63667.yaml @@ -0,0 +1,1347 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 232253 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: bce5af + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Pit Below + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.843965 + posY: 1.97558427 + posZ: 10.3819656 + rotX: 358.513428 + rotY: 269.983765 + rotZ: 181.264175 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232253 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: 7485f9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Pit Below + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -48.25734 + posY: 1.77486193 + posZ: 15.3361855 + rotX: 359.923584 + rotY: 270.000549 + rotZ: 0.0109576834 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232253 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: c4f060 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Pit Below + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -48.85194 + posY: 1.793224 + posZ: 15.9210033 + rotX: 359.920746 + rotY: 270.0011 + rotZ: 0.006754283 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232252 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: '836888' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Shadow Behind You + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -49.24664 + posY: 1.7801038 + posZ: 15.6132717 + rotX: 359.919769 + rotY: 270.000824 + rotZ: 0.0140478471 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232252 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: 18dba0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Shadow Behind You + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -48.2603455 + posY: 1.7765677 + posZ: 15.0191879 + rotX: 359.9172 + rotY: 270.0005 + rotZ: 0.0170973819 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232252 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: ecffec + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Shadow Behind You + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -48.989624 + posY: 1.78041208 + posZ: 15.4959621 + rotX: 359.91922 + rotY: 270.000671 + rotZ: 0.0154045662 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232251 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: e6dd53 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Eyes in the Walls + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -48.771656 + posY: 1.8193301 + posZ: 15.4524479 + rotX: 359.9791 + rotY: 269.9861 + rotZ: 3.27984023 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232251 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: 69d084 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Eyes in the Walls + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -48.11059 + posY: 1.88440979 + posZ: 14.9442043 + rotX: 359.9208 + rotY: 270.006836 + rotZ: 355.686371 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232251 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: 6feaea + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Eyes in the Walls + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -48.6217155 + posY: 1.74860907 + posZ: 15.1442318 + rotX: 359.919739 + rotY: 270.0005 + rotZ: 0.0157718826 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232250 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. + GMNotes: '' + GUID: 9f4458 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Corpse Dweller + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -48.4790535 + posY: 1.75817943 + posZ: 15.6686058 + rotX: 359.920441 + rotY: 270.0004 + rotZ: 0.0141908955 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232250 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. + GMNotes: '' + GUID: be97e0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Corpse Dweller + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -48.54849 + posY: 1.76772237 + posZ: 14.9710321 + rotX: 359.922 + rotY: 269.999878 + rotZ: 0.0164778139 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232250 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. + GMNotes: '' + GUID: 0c3204 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Corpse Dweller + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -48.52884 + posY: 1.77721107 + posZ: 14.4849377 + rotX: 359.919922 + rotY: 269.999817 + rotZ: 0.0140857678 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232249 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Lunatic. + GMNotes: '' + GUID: b8c2bf + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Catacombs Docent + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -48.4759254 + posY: 1.78672206 + posZ: 14.6517134 + rotX: 359.9166 + rotY: 269.9999 + rotZ: 0.02004741 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232249 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Lunatic. + GMNotes: '' + GUID: ec9c97 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Catacombs Docent + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -48.623394 + posY: 1.797036 + posZ: 15.7104177 + rotX: 359.919556 + rotY: 270.000336 + rotZ: 0.01419024 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232249 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Lunatic. + GMNotes: '' + GUID: f99335 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Catacombs Docent + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -49.0414429 + posY: 1.80698717 + posZ: 14.6634 + rotX: 359.920532 + rotY: 269.999725 + rotZ: 0.0152241988 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 266815 + 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 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: ab3719 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Grasping Hands + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 12.0789223 + posY: 1.538257 + posZ: 6.558776 + rotX: 359.9207 + rotY: 270.0 + rotZ: 0.0130352853 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 266815 + 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 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: 272ea4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Grasping Hands + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 11.5948715 + posY: 1.6933527 + posZ: 6.733804 + rotX: 359.940033 + rotY: 270.0 + rotZ: 359.9941 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 266815 + 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 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: ab3719 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Grasping Hands + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 11.6057749 + posY: 1.707567 + posZ: 6.731648 + rotX: 359.9248 + rotY: 270.000153 + rotZ: 0.0111529948 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 266814 + 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 + UniqueBack: false + Description: Humanoid. Monster. Ghoul. + GMNotes: '' + GUID: 99efa0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ravenous Ghoul + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 11.9229918 + posY: 1.70898592 + posZ: 13.9219513 + rotX: 359.952728 + rotY: 269.999939 + rotZ: 179.966141 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 266813 + 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 + UniqueBack: false + Description: Humanoid. Monster. Ghoul. + GMNotes: '' + GUID: b87089 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ghoul Minion + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 12.0413847 + posY: 1.540466 + posZ: 13.7902546 + rotX: 359.920441 + rotY: 270.000244 + rotZ: 0.0148255695 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 266813 + 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 + UniqueBack: false + Description: Humanoid. Monster. Ghoul. + GMNotes: '' + GUID: 30bb55 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ghoul Minion + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 11.6936331 + posY: 1.696078 + posZ: 13.6986961 + rotX: 359.923462 + rotY: 270.000183 + rotZ: 0.006271487 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 266813 + 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 + UniqueBack: false + Description: Humanoid. Monster. Ghoul. + GMNotes: '' + GUID: b87089 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ghoul Minion + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 11.6935387 + posY: 1.70997131 + posZ: 13.6987247 + rotX: 359.923828 + rotY: 270.0 + rotZ: 0.0162566788 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232218 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Curse. Geist. + GMNotes: '' + GUID: 2d32e4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Spirit's Torment + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -31.05811 + posY: 1.5943135 + posZ: -7.30223 + rotX: 359.920715 + rotY: 269.999756 + rotZ: 0.013130011 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232218 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Curse. Geist. + GMNotes: '' + GUID: 9349fd + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Spirit's Torment + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -31.1989822 + posY: 1.74595857 + posZ: -7.23980331 + rotX: 359.950958 + rotY: 269.999573 + rotZ: -0.00464719161 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232217 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Geist. + GMNotes: '' + GUID: 1ae587 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Poltergeist + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -30.9912872 + posY: 1.5951972 + posZ: -3.82445621 + rotX: 359.9241 + rotY: 269.9814 + rotZ: 0.0137564549 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232217 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Geist. + GMNotes: '' + GUID: 459f5a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Poltergeist + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -30.9757233 + posY: 1.74052989 + posZ: -3.8652792 + rotX: 359.957245 + rotY: 269.972046 + rotZ: 0.00526940031 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 266921 + 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 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: 50e716 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 266921 + 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 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: c4ce76 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 266920 + 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 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: ab3719 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 266920 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2669': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: 16d6d6 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Crypt Chill + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -26.75599 + posY: 1.9206053 + posZ: 29.01444 + rotX: 359.936584 + rotY: 270.0 + rotZ: 0.0127795413 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '2668': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '2669': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 232253 +- 232253 +- 232253 +- 232252 +- 232252 +- 232252 +- 232251 +- 232251 +- 232251 +- 232250 +- 232250 +- 232250 +- 232249 +- 232249 +- 232249 +- 266815 +- 266815 +- 266815 +- 266814 +- 266813 +- 266813 +- 266813 +- 232218 +- 232218 +- 232217 +- 232217 +- 266921 +- 266921 +- 266920 +- 266920 +Description: '' +GMNotes: '' +GUID: b63667 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Encounter Deck +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.927736 + posY: 1.77171016 + posZ: 5.757153 + rotX: 359.919739 + rotY: 270.005066 + rotZ: 180.016815 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 6 The Pallid Mask eb48ff/Notecard Errata 1 a4f23d.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 6 The Pallid Mask eb48ff/Notecard Errata 1 a4f23d.yaml new file mode 100644 index 000000000..d9bf2c60a --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 6 The Pallid Mask eb48ff/Notecard Errata 1 a4f23d.yaml @@ -0,0 +1,70 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +Description: "Candlelit Tunnels (252)\r\nThis location\u2019s ability should read:\ + \ \u201C\u2026If you succeed, look at the revealed\r side of any Catacombs location\ + \ in play.\u201D\r" +GMNotes: '' +GUID: a4f23d +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Notecard +Nickname: Errata 1 +Snap: true +States: + '2': + Autoraise: true + ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 + Description: "Catacombs Docent (258)\r\nThis enemy\u2019s ability should read:\ + \ \u201C\u2026If you succeed, look at the revealed side\r of any Catacombs location\ + \ in play.\u201D" + GMNotes: '' + GUID: 2009a2 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Notecard + Nickname: Errata 2 + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -11.1196289 + posY: 1.55997 + posZ: -23.9119034 + rotX: 0.07987453 + rotY: 89.98849 + rotZ: 359.983124 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +Sticky: true +Tooltip: true +Transform: + posX: -11.2044039 + posY: 1.5601809 + posZ: -23.5971889 + rotX: 0.07987485 + rotY: 89.9884644 + rotZ: 359.983124 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 7 Black Stars Rise dd8b0d.ttslua b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 7 Black Stars Rise dd8b0d.ttslua new file mode 100644 index 000000000..46067f58e --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 7 Black Stars Rise dd8b0d.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.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.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 Path to Carcosa 1b887c/Custom_Model_Bag 7 Black Stars Rise dd8b0d.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 7 Black Stars Rise dd8b0d.yaml new file mode 100644 index 000000000..532531d0b --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 7 Black Stars Rise dd8b0d.yaml @@ -0,0 +1,92 @@ +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 7 Black Stars Rise dd8b0d/Card Ch\u0153ur Gothique b52eaf.yaml" +- !include "Custom_Model_Bag 7 Black Stars Rise dd8b0d/Card Ch\u0153ur Gothique c7ee02.yaml" +- !include 'Custom_Model_Bag 7 Black Stars Rise dd8b0d/Deck Encounter Deck c380e4.yaml' +- !include 'Custom_Model_Bag 7 Black Stars Rise dd8b0d/Card Scenario 1163a0.yaml' +- !include 'Custom_Model_Bag 7 Black Stars Rise dd8b0d/Bag New Chaos Token 425d3a.yaml' +- !include 'Custom_Model_Bag 7 Black Stars Rise dd8b0d/Custom_Tile Black Stars Rise + 20c21d.yaml' +- !include 'Custom_Model_Bag 7 Black Stars Rise dd8b0d/Bag Setup Randomizer 7c8232.yaml' +- !include 'Custom_Model_Bag 7 Black Stars Rise dd8b0d/Card Outer Wall 014bd6.yaml' +- !include 'Custom_Model_Bag 7 Black Stars Rise dd8b0d/Card Outer Wall db972a.yaml' +- !include 'Custom_Model_Bag 7 Black Stars Rise dd8b0d/Custom_Tile 93d8de.yaml' +- !include 'Custom_Model_Bag 7 Black Stars Rise dd8b0d/Custom_Tile 5b38c6.yaml' +- !include 'Custom_Model_Bag 7 Black Stars Rise dd8b0d/Card North Tower 69eae5.yaml' +- !include 'Custom_Model_Bag 7 Black Stars Rise dd8b0d/Card North Tower c0362a.yaml' +- !include 'Custom_Model_Bag 7 Black Stars Rise dd8b0d/Custom_Tile d4528c.yaml' +- !include 'Custom_Model_Bag 7 Black Stars Rise dd8b0d/Custom_Tile 73720d.yaml' +- !include 'Custom_Model_Bag 7 Black Stars Rise dd8b0d/Card Grand Rue 20de8b.yaml' +- !include 'Custom_Model_Bag 7 Black Stars Rise dd8b0d/Custom_Tile 8d134d.yaml' +- !include "Custom_Model_Bag 7 Black Stars Rise dd8b0d/Card Porte de l'Avanc\xE9e\ + \ c647a3.yaml" +- !include 'Custom_Model_Bag 7 Black Stars Rise dd8b0d/Custom_Tile 5bebe6.yaml' +- !include 'Custom_Model_Bag 7 Black Stars Rise dd8b0d/Card Broken Steps 38d12d.yaml' +- !include 'Custom_Model_Bag 7 Black Stars Rise dd8b0d/Card Broken Steps c2651e.yaml' +- !include 'Custom_Model_Bag 7 Black Stars Rise dd8b0d/Custom_Tile 04d6e6.yaml' +- !include 'Custom_Model_Bag 7 Black Stars Rise dd8b0d/Card Abbey Church 106f19.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/829135118403814480/CDA3DBA7096E5B2991FFB02DF86453D4B8784CDD/ + MaterialIndex: 3 + MeshURL: https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj + NormalURL: '' + TypeIndex: 6 +Description: '' +GMNotes: '' +GUID: dd8b0d +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Model_Bag 7 Black Stars Rise dd8b0d.ttslua' +LuaScriptState: '{"ml":{"014bd6":{"lock":false,"pos":{"x":-25.1033,"y":1.7317,"z":-15.3069},"rot":{"x":359.9212,"y":270.0016,"z":0.0164}},"04d6e6":{"lock":false,"pos":{"x":-23.6765,"y":1.6157,"z":3.86},"rot":{"x":0.0169,"y":179.9999,"z":0.0799}},"106f19":{"lock":false,"pos":{"x":-23.6766,"y":1.6885,"z":7.57},"rot":{"x":359.9201,"y":269.9999,"z":0.0169}},"1163a0":{"lock":false,"pos":{"x":-3.956,"y":1.6556,"z":-10.4412},"rot":{"x":359.9197,"y":269.9999,"z":0.0168}},"20c21d":{"lock":false,"pos":{"x":-3.6194,"y":1.5818,"z":-15.7683},"rot":{"x":359.92,"y":269.9998,"z":0.0142}},"20de8b":{"lock":false,"pos":{"x":-30.2243,"y":1.6931,"z":-7.7},"rot":{"x":359.9201,"y":269.9999,"z":0.0169}},"38d12d":{"lock":false,"pos":{"x":-23.6762,"y":1.6862,"z":-0.0302},"rot":{"x":359.9201,"y":270.0013,"z":0.0166}},"425d3a":{"lock":false,"pos":{"x":-5.9607,"y":1.4852,"z":-15.0445},"rot":{"x":359.9839,"y":359.9654,"z":5.3841}},"5b38c6":{"lock":false,"pos":{"x":-23.6766,"y":1.6122,"z":-7.7},"rot":{"x":359.9551,"y":225.2476,"z":0.0682}},"5bebe6":{"lock":false,"pos":{"x":-23.6765,"y":1.6134,"z":-3.83},"rot":{"x":0.0169,"y":179.9999,"z":0.0799}},"69eae5":{"lock":false,"pos":{"x":-18.5817,"y":1.7825,"z":-7.6924},"rot":{"x":0.1249,"y":269.9906,"z":359.9901}},"73720d":{"lock":false,"pos":{"x":-26.9588,"y":1.6168,"z":-7.6633},"rot":{"x":359.9201,"y":270.0027,"z":0.0169}},"7c8232":{"lock":false,"pos":{"x":1.0476,"y":1.3951,"z":0.5264},"rot":{"x":359.9196,"y":269.9857,"z":0.0169}},"8d134d":{"lock":false,"pos":{"x":-33.6312,"y":1.6262,"z":-7.6001},"rot":{"x":0.0799,"y":90,"z":359.9831}},"93d8de":{"lock":false,"pos":{"x":-23.6765,"y":1.6111,"z":-11.51},"rot":{"x":0.0169,"y":179.9999,"z":0.0799}},"b52eaf":{"lock":false,"pos":{"x":-2.8742,"y":1.6617,"z":15.2703},"rot":{"x":359.9198,"y":269.9966,"z":0.0165}},"c0362a":{"lock":false,"pos":{"x":-17.1182,"y":1.7151,"z":-7.6998},"rot":{"x":358.4415,"y":269.9998,"z":0.0171}},"c2651e":{"lock":false,"pos":{"x":-25.0901,"y":1.7362,"z":-0.0141},"rot":{"x":359.9211,"y":270.0266,"z":0.0163}},"c380e4":{"lock":false,"pos":{"x":-3.9277,"y":1.7717,"z":5.7572},"rot":{"x":359.9197,"y":269.9998,"z":180.0168}},"c647a3":{"lock":false,"pos":{"x":-36.7733,"y":1.7022,"z":-7.7},"rot":{"x":359.9201,"y":269.9999,"z":0.0169}},"c7ee02":{"lock":false,"pos":{"x":-4.3053,"y":1.7116,"z":15.2833},"rot":{"x":0.0807,"y":270.0334,"z":359.9872}},"d4528c":{"lock":false,"pos":{"x":-20.4212,"y":1.6077,"z":-7.6621},"rot":{"x":359.9189,"y":270.0012,"z":0.0204}},"db972a":{"lock":false,"pos":{"x":-23.6765,"y":1.6817,"z":-15.2798},"rot":{"x":359.9201,"y":270.0009,"z":0.0165}}}}' +MaterialIndex: -1 +MeshIndex: -1 +Name: Custom_Model_Bag +Nickname: '7: Black Stars Rise' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 14.4782705 + posY: 1.45544958 + posZ: -20.093565 + rotX: 359.9201 + rotY: 270.043274 + rotZ: 0.01681349 + scaleX: 2.21 + scaleY: 0.46 + scaleZ: 2.42 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Bag New Chaos Token 425d3a.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Bag New Chaos Token 425d3a.yaml new file mode 100644 index 000000000..a1860a869 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Bag New Chaos Token 425d3a.yaml @@ -0,0 +1,39 @@ +Autoraise: true +ColorDiffuse: + b: 0.07843696 + g: 0.07843696 + r: 0.302167654 +ContainedObjects: +- !include 'Bag New Chaos Token 425d3a/Custom_Tile 81a1d7.yaml' +- !include 'Bag New Chaos Token 425d3a/Custom_Tile 2460df.yaml' +- !include 'Bag New Chaos Token 425d3a/Custom_Tile 1df0a5.yaml' +- !include 'Bag New Chaos Token 425d3a/Custom_Tile a7a9cb.yaml' +Description: Black Stars Rise +GMNotes: '' +GUID: 425d3a +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +MeshIndex: -1 +Name: Bag +Nickname: New Chaos Token +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -5.960708 + posY: 1.48524952 + posZ: -15.044508 + rotX: 359.9839 + rotY: 359.965363 + rotZ: 5.38407469 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Bag New Chaos Token 425d3a/Custom_Tile 1df0a5.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Bag New Chaos Token 425d3a/Custom_Tile 1df0a5.yaml new file mode 100644 index 000000000..317c3dc56 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Bag New Chaos Token 425d3a/Custom_Tile 1df0a5.yaml @@ -0,0 +1,42 @@ +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: '' +GMNotes: '' +GUID: 1df0a5 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Tile +Nickname: '' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 30.839592 + posY: 3.403213 + posZ: -14.5263281 + rotX: 359.9201 + rotY: 270.021667 + rotZ: 0.0168507081 + scaleX: 0.81 + scaleY: 1.0 + scaleZ: 0.81 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Bag New Chaos Token 425d3a/Custom_Tile 2460df.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Bag New Chaos Token 425d3a/Custom_Tile 2460df.yaml new file mode 100644 index 000000000..99ff089cd --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Bag New Chaos Token 425d3a/Custom_Tile 2460df.yaml @@ -0,0 +1,42 @@ +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: '' +GMNotes: '' +GUID: 2460df +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Tile +Nickname: '' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 30.5323277 + posY: 3.40431118 + posZ: -12.2516136 + rotX: 359.920135 + rotY: 269.985352 + rotZ: 0.0169038028 + scaleX: 0.81 + scaleY: 1.0 + scaleZ: 0.81 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Bag New Chaos Token 425d3a/Custom_Tile 81a1d7.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Bag New Chaos Token 425d3a/Custom_Tile 81a1d7.yaml new file mode 100644 index 000000000..8a97c7b12 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Bag New Chaos Token 425d3a/Custom_Tile 81a1d7.yaml @@ -0,0 +1,42 @@ +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/4WRD42n.png + WidthScale: 0.0 +Description: '' +GMNotes: '' +GUID: 81a1d7 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Tile +Nickname: '' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 33.16232 + posY: 3.40100765 + posZ: -11.0178375 + rotX: 359.920135 + rotY: 270.0178 + rotZ: 0.0168543924 + scaleX: 0.81 + scaleY: 1.0 + scaleZ: 0.81 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Bag New Chaos Token 425d3a/Custom_Tile a7a9cb.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Bag New Chaos Token 425d3a/Custom_Tile a7a9cb.yaml new file mode 100644 index 000000000..51e389e8c --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Bag New Chaos Token 425d3a/Custom_Tile a7a9cb.yaml @@ -0,0 +1,42 @@ +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: '' +GMNotes: '' +GUID: a7a9cb +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Tile +Nickname: '' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 32.76118 + posY: 3.48943424 + posZ: -13.8503752 + rotX: 0.050603386 + rotY: 270.0141 + rotZ: 356.085236 + scaleX: 0.81 + scaleY: 1.0 + scaleZ: 0.81 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Bag Setup Randomizer 7c8232.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Bag Setup Randomizer 7c8232.yaml new file mode 100644 index 000000000..95d0484f9 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Bag Setup Randomizer 7c8232.yaml @@ -0,0 +1,38 @@ +Autoraise: true +ColorDiffuse: + b: 0.05098012 + g: 0.6313726 + r: 0.169647187 +ContainedObjects: +- !include 'Bag Setup Randomizer 7c8232/Bag Setup Bag b29b71.yaml' +- !include 'Bag Setup Randomizer 7c8232/Bag Setup Bag d14543.yaml' +Description: Shuffle the bag, draw one of the two bags, and auto-place. Discard the + other chest. DO NOT FLIP AGENDA CARDS UNLESS INSTRUCTED. +GMNotes: '' +GUID: 7c8232 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +MeshIndex: -1 +Name: Bag +Nickname: Setup Randomizer +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 1.04764175 + posY: 1.39511454 + posZ: 0.5263549 + rotX: 359.919647 + rotY: 269.985718 + rotZ: 0.0168938413 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Bag Setup Randomizer 7c8232/Bag Setup Bag b29b71.ttslua b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Bag Setup Randomizer 7c8232/Bag Setup Bag b29b71.ttslua new file mode 100644 index 000000000..4d4017455 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Bag Setup Randomizer 7c8232/Bag Setup Bag b29b71.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 Path to Carcosa 1b887c/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Bag Setup Randomizer 7c8232/Bag Setup Bag b29b71.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Bag Setup Randomizer 7c8232/Bag Setup Bag b29b71.yaml new file mode 100644 index 000000000..b7a6d6a68 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Bag Setup Randomizer 7c8232/Bag Setup Bag b29b71.yaml @@ -0,0 +1,38 @@ +Autoraise: true +ColorDiffuse: + b: 0.0 + g: 0.0 + r: 0.0 +ContainedObjects: +- !include 'Bag Setup Bag b29b71/Custom_Model_Bag Set-aside bb455a.yaml' +- !include 'Bag Setup Bag b29b71/Deck Agenda Deck ''c'' c01144.yaml' +- !include 'Bag Setup Bag b29b71/Deck Agenda Deck ''a'' 59cd0a.yaml' +Description: '' +GMNotes: '' +GUID: b29b71 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Bag Setup Bag b29b71.ttslua' +LuaScriptState: '{"ml":{"59cd0a":{"lock":false,"pos":{"x":-2.7247,"y":1.6566,"z":0.3733},"rot":{"x":0.0168,"y":179.9996,"z":0.0803}},"bb455a":{"lock":false,"pos":{"x":1.6962,"y":1.5583,"z":14.2786},"rot":{"x":359.9551,"y":225.0057,"z":0.0687}},"c01144":{"lock":false,"pos":{"x":-2.6885,"y":1.655,"z":-5.0485},"rot":{"x":0.0168,"y":179.9971,"z":0.0803}}}}' +MaterialIndex: -1 +MeshIndex: -1 +Name: Bag +Nickname: Setup Bag +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 1.52287376 + posY: 3.4723134 + posZ: 0.05655287 + rotX: 0.550244451 + rotY: 89.99178 + rotZ: 359.4202 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Bag Setup Randomizer 7c8232/Bag Setup Bag b29b71/Custom_Model_Bag Set-aside bb455a.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Bag Setup Randomizer 7c8232/Bag Setup Bag b29b71/Custom_Model_Bag Set-aside bb455a.yaml new file mode 100644 index 000000000..7f707a691 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Bag Setup Randomizer 7c8232/Bag Setup Bag b29b71/Custom_Model_Bag Set-aside bb455a.yaml @@ -0,0 +1,65 @@ +Autoraise: true +ColorDiffuse: + b: 0.02148666 + g: 0.00100758043 + r: 0.02148666 +ContainedObjects: +- !include 'Custom_Model_Bag Set-aside bb455a/Card Ashleigh Clarke 27b476.yaml' +- !include 'Custom_Model_Bag Set-aside bb455a/Card Chapel of St. Aubert e75ba8.yaml' +- !include 'Custom_Model_Bag Set-aside bb455a/Card Abbey Tower b52eaf.yaml' +- !include 'Custom_Model_Bag Set-aside bb455a/Card Knight''s Hall 0a231c.yaml' +- !include 'Custom_Model_Bag Set-aside bb455a/Card Cloister 230c98.yaml' +- !include 'Custom_Model_Bag Set-aside bb455a/Deck Rift Seeker 8a6fbf.yaml' +- !include 'Custom_Model_Bag Set-aside bb455a/Deck Tidal Terror ee8a4c.yaml' +- !include 'Custom_Model_Bag Set-aside bb455a/Card Beast of Aldebaran 83c7c3.yaml' +- !include 'Custom_Model_Bag Set-aside bb455a/Card Open The Path Above 8df522.yaml' +- !include 'Custom_Model_Bag Set-aside bb455a/Card Open The Path Below 975cbd.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: Black Stars Rise +GMNotes: '' +GUID: bb455a +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +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.69623554 + posY: 1.55831683 + posZ: 14.27862 + rotX: 359.955139 + rotY: 225.005737 + rotZ: 0.06866485 + scaleX: 2.0 + scaleY: 2.0 + scaleZ: 2.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Bag Setup Randomizer 7c8232/Bag Setup Bag b29b71/Custom_Model_Bag Set-aside bb455a/Card Abbey Tower b52eaf.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Bag Setup Randomizer 7c8232/Bag Setup Bag b29b71/Custom_Model_Bag Set-aside bb455a/Card Abbey Tower b52eaf.yaml new file mode 100644 index 000000000..1a5d13bcd --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Bag Setup Randomizer 7c8232/Bag Setup Bag b29b71/Custom_Model_Bag Set-aside bb455a/Card Abbey Tower b52eaf.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 231944 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378686851/006B65A59360F63826342C2B1A062C1AD727BD53/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378687267/945F8EF94DC605E0731E37C1BCD3FE65FCB86D02/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: b52eaf +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Abbey Tower +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -37.7420578 + posY: 2.7760334 + posZ: 6.55100727 + rotX: 359.920135 + rotY: 269.996338 + rotZ: 0.0168615989 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Bag Setup Randomizer 7c8232/Bag Setup Bag b29b71/Custom_Model_Bag Set-aside bb455a/Card Ashleigh Clarke 27b476.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Bag Setup Randomizer 7c8232/Bag Setup Bag b29b71/Custom_Model_Bag Set-aside bb455a/Card Ashleigh Clarke 27b476.yaml new file mode 100644 index 000000000..fbc3ada53 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Bag Setup Randomizer 7c8232/Bag Setup Bag b29b71/Custom_Model_Bag Set-aside bb455a/Card Ashleigh Clarke 27b476.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 232057 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378685352/22FD056BAF1966FE2D1AC46FC1BF90C1A03A1404/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378686413/C1688C1A909FDC7357EB3EEFADAB1FBD5818BD3E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Songs Die Unheard +GMNotes: '' +GUID: 27b476 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Ashleigh Clarke +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -28.8715858 + posY: 2.60826683 + posZ: 7.79729748 + rotX: 359.920135 + rotY: 270.0062 + rotZ: 0.0168674588 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Bag Setup Randomizer 7c8232/Bag Setup Bag b29b71/Custom_Model_Bag Set-aside bb455a/Card Beast of Aldebaran 83c7c3.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Bag Setup Randomizer 7c8232/Bag Setup Bag b29b71/Custom_Model_Bag Set-aside bb455a/Card Beast of Aldebaran 83c7c3.yaml new file mode 100644 index 000000000..28fd00fb3 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Bag Setup Randomizer 7c8232/Bag Setup Bag b29b71/Custom_Model_Bag Set-aside bb455a/Card Beast of Aldebaran 83c7c3.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 232212 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: Monster. Elite. +GMNotes: '' +GUID: 83c7c3 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Beast of Aldebaran +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -41.08759 + posY: 3.6914804 + posZ: 42.7638969 + rotX: 359.932617 + rotY: 270.000275 + rotZ: 0.014240928 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Bag Setup Randomizer 7c8232/Bag Setup Bag b29b71/Custom_Model_Bag Set-aside bb455a/Card Chapel of St. Aubert e75ba8.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Bag Setup Randomizer 7c8232/Bag Setup Bag b29b71/Custom_Model_Bag Set-aside bb455a/Card Chapel of St. Aubert e75ba8.yaml new file mode 100644 index 000000000..cad78b3bb --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Bag Setup Randomizer 7c8232/Bag Setup Bag b29b71/Custom_Model_Bag Set-aside bb455a/Card Chapel of St. Aubert e75ba8.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 231941 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378686851/006B65A59360F63826342C2B1A062C1AD727BD53/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378687267/945F8EF94DC605E0731E37C1BCD3FE65FCB86D02/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: e75ba8 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Chapel of St. Aubert +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -43.458416 + posY: 2.62946081 + posZ: 15.33103 + rotX: 359.920135 + rotY: 270.001465 + rotZ: 0.0168730244 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Bag Setup Randomizer 7c8232/Bag Setup Bag b29b71/Custom_Model_Bag Set-aside bb455a/Card Cloister 230c98.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Bag Setup Randomizer 7c8232/Bag Setup Bag b29b71/Custom_Model_Bag Set-aside bb455a/Card Cloister 230c98.yaml new file mode 100644 index 000000000..0277a974f --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Bag Setup Randomizer 7c8232/Bag Setup Bag b29b71/Custom_Model_Bag Set-aside bb455a/Card Cloister 230c98.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 231939 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378686851/006B65A59360F63826342C2B1A062C1AD727BD53/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378687267/945F8EF94DC605E0731E37C1BCD3FE65FCB86D02/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 230c98 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Cloister +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -43.89491 + posY: 2.63011074 + posZ: 11.4727907 + rotX: 359.920135 + rotY: 269.9903 + rotZ: 0.0168942288 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Bag Setup Randomizer 7c8232/Bag Setup Bag b29b71/Custom_Model_Bag Set-aside bb455a/Card Knight's Hall 0a231c.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Bag Setup Randomizer 7c8232/Bag Setup Bag b29b71/Custom_Model_Bag Set-aside bb455a/Card Knight's Hall 0a231c.yaml new file mode 100644 index 000000000..4fcf7bc1c --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Bag Setup Randomizer 7c8232/Bag Setup Bag b29b71/Custom_Model_Bag Set-aside bb455a/Card Knight's Hall 0a231c.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 231940 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378686851/006B65A59360F63826342C2B1A062C1AD727BD53/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378687267/945F8EF94DC605E0731E37C1BCD3FE65FCB86D02/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 0a231c +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Knight's Hall +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -45.19811 + posY: 2.63121438 + posZ: 10.2488852 + rotX: 359.920135 + rotY: 269.990448 + rotZ: 0.0168906134 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Bag Setup Randomizer 7c8232/Bag Setup Bag b29b71/Custom_Model_Bag Set-aside bb455a/Card Open The Path Above 8df522.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Bag Setup Randomizer 7c8232/Bag Setup Bag b29b71/Custom_Model_Bag Set-aside bb455a/Card Open The Path Above 8df522.yaml new file mode 100644 index 000000000..8014d2505 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Bag Setup Randomizer 7c8232/Bag Setup Bag b29b71/Custom_Model_Bag Set-aside bb455a/Card Open The Path Above 8df522.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 231746 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2317': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378732934/F41E84FCDC0AB52634348C439A6D1A725CEB8115/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378736378/628E179D5305E95AFC25D86526320A24F8B27391/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Act 3c +GMNotes: '' +GUID: 8df522 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Open The Path Above +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -41.8936 + posY: 3.67922831 + posZ: 41.9221535 + rotX: 0.0202098917 + rotY: 180.002319 + rotZ: 0.09243081 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Bag Setup Randomizer 7c8232/Bag Setup Bag b29b71/Custom_Model_Bag Set-aside bb455a/Card Open The Path Below 975cbd.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Bag Setup Randomizer 7c8232/Bag Setup Bag b29b71/Custom_Model_Bag Set-aside bb455a/Card Open The Path Below 975cbd.yaml new file mode 100644 index 000000000..3b7e4b49a --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Bag Setup Randomizer 7c8232/Bag Setup Bag b29b71/Custom_Model_Bag Set-aside bb455a/Card Open The Path Below 975cbd.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 231745 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2317': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378732934/F41E84FCDC0AB52634348C439A6D1A725CEB8115/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378736378/628E179D5305E95AFC25D86526320A24F8B27391/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Act 3a +GMNotes: '' +GUID: 975cbd +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Open The Path Below +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -42.2071762 + posY: 3.67962313 + posZ: 42.04427 + rotX: 0.0140484674 + rotY: 179.995468 + rotZ: 0.0861102641 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Bag Setup Randomizer 7c8232/Bag Setup Bag b29b71/Custom_Model_Bag Set-aside bb455a/Deck Rift Seeker 8a6fbf.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Bag Setup Randomizer 7c8232/Bag Setup Bag b29b71/Custom_Model_Bag Set-aside bb455a/Deck Rift Seeker 8a6fbf.yaml new file mode 100644 index 000000000..534d39064 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Bag Setup Randomizer 7c8232/Bag Setup Bag b29b71/Custom_Model_Bag Set-aside bb455a/Deck Rift Seeker 8a6fbf.yaml @@ -0,0 +1,129 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 232255 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Byakhee. Cultist. + GMNotes: '' + GUID: bce5af + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Rift Seeker + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -46.7024 + posY: 1.62950861 + posZ: 38.0417137 + rotX: 359.92038 + rotY: 269.990875 + rotZ: 0.0152692748 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232255 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Byakhee. Cultist. + GMNotes: '' + GUID: 2e6d15 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Rift Seeker + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -47.0491676 + posY: 1.78549123 + posZ: 37.973793 + rotX: 359.9229 + rotY: 269.9911 + rotZ: 0.008166183 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 232255 +- 232255 +Description: '' +GMNotes: '' +GUID: 8a6fbf +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Rift Seeker +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -44.938343 + posY: 2.80085921 + posZ: -0.134649679 + rotX: 359.920135 + rotY: 269.991 + rotZ: 0.0168905631 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Bag Setup Randomizer 7c8232/Bag Setup Bag b29b71/Custom_Model_Bag Set-aside bb455a/Deck Tidal Terror ee8a4c.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Bag Setup Randomizer 7c8232/Bag Setup Bag b29b71/Custom_Model_Bag Set-aside bb455a/Deck Tidal Terror ee8a4c.yaml new file mode 100644 index 000000000..3a7639873 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Bag Setup Randomizer 7c8232/Bag Setup Bag b29b71/Custom_Model_Bag Set-aside bb455a/Deck Tidal Terror ee8a4c.yaml @@ -0,0 +1,129 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 232254 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. + GMNotes: '' + GUID: bce5af + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Tidal Terror + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -46.57753 + posY: 1.62922227 + posZ: 37.6414337 + rotX: 359.920319 + rotY: 269.9862 + rotZ: 0.01562833 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232254 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. + GMNotes: '' + GUID: '617504' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Tidal Terror + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -46.40976 + posY: 1.78506875 + posZ: 37.83598 + rotX: 359.9558 + rotY: 269.9981 + rotZ: 0.00534029258 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 232254 +- 232254 +Description: '' +GMNotes: '' +GUID: ee8a4c +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Tidal Terror +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -38.1936836 + posY: 2.6280756 + posZ: 6.172742 + rotX: 359.920135 + rotY: 269.9864 + rotZ: 0.0168951042 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Bag Setup Randomizer 7c8232/Bag Setup Bag b29b71/Deck Agenda Deck 'a' 59cd0a.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Bag Setup Randomizer 7c8232/Bag Setup Bag b29b71/Deck Agenda Deck 'a' 59cd0a.yaml new file mode 100644 index 000000000..fc0a21fa2 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Bag Setup Randomizer 7c8232/Bag Setup Bag b29b71/Deck Agenda Deck 'a' 59cd0a.yaml @@ -0,0 +1,172 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 231740 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2317': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378732934/F41E84FCDC0AB52634348C439A6D1A725CEB8115/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378736378/628E179D5305E95AFC25D86526320A24F8B27391/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 3a + GMNotes: '' + GUID: f9d5b6 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The City Floods + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -37.2869263 + posY: 1.618127 + posZ: 44.020752 + rotX: 0.0171997454 + rotY: 179.999985 + rotZ: 0.0770106539 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231739 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2317': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378732934/F41E84FCDC0AB52634348C439A6D1A725CEB8115/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378736378/628E179D5305E95AFC25D86526320A24F8B27391/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 2a + GMNotes: '' + GUID: 374aae + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Let The Storm Rage + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -37.2554321 + posY: 1.76348293 + posZ: 43.68916 + rotX: 0.0195151046 + rotY: 179.999451 + rotZ: 0.0525940172 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231737 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2317': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378732934/F41E84FCDC0AB52634348C439A6D1A725CEB8115/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378736378/628E179D5305E95AFC25D86526320A24F8B27391/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 1a + GMNotes: '' + GUID: 06b34f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Tide Rises + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -37.3933868 + posY: 1.79661691 + posZ: 43.69701 + rotX: 0.01795653 + rotY: 179.999771 + rotZ: 0.0786588043 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2317': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378732934/F41E84FCDC0AB52634348C439A6D1A725CEB8115/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378736378/628E179D5305E95AFC25D86526320A24F8B27391/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 231740 +- 231739 +- 231737 +Description: '' +GMNotes: '' +GUID: 59cd0a +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Agenda Deck 'a' +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.72467947 + posY: 1.656641 + posZ: 0.373315424 + rotX: 0.0168354865 + rotY: 179.999649 + rotZ: 0.0802581161 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Bag Setup Randomizer 7c8232/Bag Setup Bag b29b71/Deck Agenda Deck 'c' c01144.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Bag Setup Randomizer 7c8232/Bag Setup Bag b29b71/Deck Agenda Deck 'c' c01144.yaml new file mode 100644 index 000000000..47a557e02 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Bag Setup Randomizer 7c8232/Bag Setup Bag b29b71/Deck Agenda Deck 'c' c01144.yaml @@ -0,0 +1,172 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 231744 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2317': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378732934/F41E84FCDC0AB52634348C439A6D1A725CEB8115/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378736378/628E179D5305E95AFC25D86526320A24F8B27391/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 3c + GMNotes: '' + GUID: 76a442 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Swallowed Sky + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -37.7221527 + posY: 1.61715519 + posZ: 38.7808266 + rotX: 0.017452959 + rotY: 179.997147 + rotZ: 0.07527307 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231742 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2317': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378732934/F41E84FCDC0AB52634348C439A6D1A725CEB8115/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378736378/628E179D5305E95AFC25D86526320A24F8B27391/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 2c + GMNotes: '' + GUID: 60178d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Entity Above + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -37.42563 + posY: 1.76232934 + posZ: 39.0847855 + rotX: 0.020126259 + rotY: 179.9992 + rotZ: 0.06266748 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231741 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2317': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378732934/F41E84FCDC0AB52634348C439A6D1A725CEB8115/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378736378/628E179D5305E95AFC25D86526320A24F8B27391/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 1c + GMNotes: '' + GUID: c25af7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Ritual Begins + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -37.854744 + posY: 1.79568648 + posZ: 38.33475 + rotX: 0.0166016426 + rotY: 179.999161 + rotZ: 0.07943133 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2317': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378732934/F41E84FCDC0AB52634348C439A6D1A725CEB8115/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378736378/628E179D5305E95AFC25D86526320A24F8B27391/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 231744 +- 231742 +- 231741 +Description: '' +GMNotes: '' +GUID: c01144 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Agenda Deck 'c' +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.68849921 + posY: 1.65499711 + posZ: -5.048539 + rotX: 0.0168390255 + rotY: 179.997116 + rotZ: 0.080257155 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Bag Setup Randomizer 7c8232/Bag Setup Bag d14543.ttslua b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Bag Setup Randomizer 7c8232/Bag Setup Bag d14543.ttslua new file mode 100644 index 000000000..4d4017455 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Bag Setup Randomizer 7c8232/Bag Setup Bag d14543.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 Path to Carcosa 1b887c/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Bag Setup Randomizer 7c8232/Bag Setup Bag d14543.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Bag Setup Randomizer 7c8232/Bag Setup Bag d14543.yaml new file mode 100644 index 000000000..53cf750ce --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Bag Setup Randomizer 7c8232/Bag Setup Bag d14543.yaml @@ -0,0 +1,38 @@ +Autoraise: true +ColorDiffuse: + b: 0.0 + g: 0.0 + r: 0.0 +ContainedObjects: +- !include 'Bag Setup Bag d14543/Custom_Model_Bag Set-aside 62a4f3.yaml' +- !include 'Bag Setup Bag d14543/Deck Agenda Deck ''c'' f812d6.yaml' +- !include 'Bag Setup Bag d14543/Deck Agenda Deck ''a'' 29532d.yaml' +Description: '' +GMNotes: '' +GUID: d14543 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Bag Setup Bag d14543.ttslua' +LuaScriptState: '{"ml":{"29532d":{"lock":false,"pos":{"x":-2.7247,"y":1.6566,"z":0.3733},"rot":{"x":0.0168,"y":180.0005,"z":0.0803}},"62a4f3":{"lock":false,"pos":{"x":1.6963,"y":1.5583,"z":14.2784},"rot":{"x":359.9551,"y":224.998,"z":0.0687}},"f812d6":{"lock":false,"pos":{"x":-2.6885,"y":1.655,"z":-5.0485},"rot":{"x":0.0168,"y":179.9996,"z":0.0803}}}}' +MaterialIndex: -1 +MeshIndex: -1 +Name: Bag +Nickname: Setup Bag +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 0.506046534 + posY: 3.43636441 + posZ: 0.585547447 + rotX: 357.4414 + rotY: 90.02475 + rotZ: 0.247634858 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Bag Setup Randomizer 7c8232/Bag Setup Bag d14543/Custom_Model_Bag Set-aside 62a4f3.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Bag Setup Randomizer 7c8232/Bag Setup Bag d14543/Custom_Model_Bag Set-aside 62a4f3.yaml new file mode 100644 index 000000000..f4df783e5 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Bag Setup Randomizer 7c8232/Bag Setup Bag d14543/Custom_Model_Bag Set-aside 62a4f3.yaml @@ -0,0 +1,65 @@ +Autoraise: true +ColorDiffuse: + b: 0.02148666 + g: 0.00100758043 + r: 0.02148666 +ContainedObjects: +- !include 'Custom_Model_Bag Set-aside 62a4f3/Card Ashleigh Clarke f003bd.yaml' +- !include 'Custom_Model_Bag Set-aside 62a4f3/Card Chapel of St. Aubert 79421c.yaml' +- !include 'Custom_Model_Bag Set-aside 62a4f3/Card Abbey Tower 2f3d21.yaml' +- !include 'Custom_Model_Bag Set-aside 62a4f3/Card Knight''s Hall 0a231c.yaml' +- !include 'Custom_Model_Bag Set-aside 62a4f3/Card Cloister b52eaf.yaml' +- !include 'Custom_Model_Bag Set-aside 62a4f3/Deck Rift Seeker 050765.yaml' +- !include 'Custom_Model_Bag Set-aside 62a4f3/Deck Tidal Terror 79e245.yaml' +- !include 'Custom_Model_Bag Set-aside 62a4f3/Card Beast of Aldebaran 83c7c3.yaml' +- !include 'Custom_Model_Bag Set-aside 62a4f3/Card Open The Path Above e572ec.yaml' +- !include 'Custom_Model_Bag Set-aside 62a4f3/Card Open The Path Below 3da436.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: Black Stars Rise +GMNotes: '' +GUID: 62a4f3 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +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.69631779 + posY: 1.5583179 + posZ: 14.2784138 + rotX: 359.955139 + rotY: 224.997971 + rotZ: 0.0686735 + scaleX: 2.0 + scaleY: 2.0 + scaleZ: 2.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Bag Setup Randomizer 7c8232/Bag Setup Bag d14543/Custom_Model_Bag Set-aside 62a4f3/Card Abbey Tower 2f3d21.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Bag Setup Randomizer 7c8232/Bag Setup Bag d14543/Custom_Model_Bag Set-aside 62a4f3/Card Abbey Tower 2f3d21.yaml new file mode 100644 index 000000000..fd95d8c8b --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Bag Setup Randomizer 7c8232/Bag Setup Bag d14543/Custom_Model_Bag Set-aside 62a4f3/Card Abbey Tower 2f3d21.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 231943 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378686851/006B65A59360F63826342C2B1A062C1AD727BD53/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378687267/945F8EF94DC605E0731E37C1BCD3FE65FCB86D02/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 2f3d21 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Abbey Tower +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -42.3307724 + posY: 2.625956 + posZ: 6.30763674 + rotX: 359.920135 + rotY: 269.9996 + rotZ: 0.0168621372 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Bag Setup Randomizer 7c8232/Bag Setup Bag d14543/Custom_Model_Bag Set-aside 62a4f3/Card Ashleigh Clarke f003bd.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Bag Setup Randomizer 7c8232/Bag Setup Bag d14543/Custom_Model_Bag Set-aside 62a4f3/Card Ashleigh Clarke f003bd.yaml new file mode 100644 index 000000000..22fcf8eb5 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Bag Setup Randomizer 7c8232/Bag Setup Bag d14543/Custom_Model_Bag Set-aside 62a4f3/Card Ashleigh Clarke f003bd.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 232057 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378685352/22FD056BAF1966FE2D1AC46FC1BF90C1A03A1404/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378686413/C1688C1A909FDC7357EB3EEFADAB1FBD5818BD3E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Songs Die Unheard +GMNotes: '' +GUID: f003bd +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Ashleigh Clarke +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -31.0557957 + posY: 2.76851726 + posZ: 6.830996 + rotX: 359.9201 + rotY: 270.006226 + rotZ: 0.0168683939 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Bag Setup Randomizer 7c8232/Bag Setup Bag d14543/Custom_Model_Bag Set-aside 62a4f3/Card Beast of Aldebaran 83c7c3.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Bag Setup Randomizer 7c8232/Bag Setup Bag d14543/Custom_Model_Bag Set-aside 62a4f3/Card Beast of Aldebaran 83c7c3.yaml new file mode 100644 index 000000000..8239050a5 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Bag Setup Randomizer 7c8232/Bag Setup Bag d14543/Custom_Model_Bag Set-aside 62a4f3/Card Beast of Aldebaran 83c7c3.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 232212 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: Monster. Elite. +GMNotes: '' +GUID: 83c7c3 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Beast of Aldebaran +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -43.4053726 + posY: 3.67668629 + posZ: 26.0377789 + rotX: 359.919434 + rotY: 270.000336 + rotZ: 0.01691208 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Bag Setup Randomizer 7c8232/Bag Setup Bag d14543/Custom_Model_Bag Set-aside 62a4f3/Card Chapel of St. Aubert 79421c.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Bag Setup Randomizer 7c8232/Bag Setup Bag d14543/Custom_Model_Bag Set-aside 62a4f3/Card Chapel of St. Aubert 79421c.yaml new file mode 100644 index 000000000..55d696619 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Bag Setup Randomizer 7c8232/Bag Setup Bag d14543/Custom_Model_Bag Set-aside 62a4f3/Card Chapel of St. Aubert 79421c.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 231942 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378686851/006B65A59360F63826342C2B1A062C1AD727BD53/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378687267/945F8EF94DC605E0731E37C1BCD3FE65FCB86D02/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 79421c +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Chapel of St. Aubert +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -45.7281723 + posY: 2.630664 + posZ: 11.6448479 + rotX: 359.920135 + rotY: 269.999573 + rotZ: 0.01687661 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Bag Setup Randomizer 7c8232/Bag Setup Bag d14543/Custom_Model_Bag Set-aside 62a4f3/Card Cloister b52eaf.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Bag Setup Randomizer 7c8232/Bag Setup Bag d14543/Custom_Model_Bag Set-aside 62a4f3/Card Cloister b52eaf.yaml new file mode 100644 index 000000000..df6f63d3d --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Bag Setup Randomizer 7c8232/Bag Setup Bag d14543/Custom_Model_Bag Set-aside 62a4f3/Card Cloister b52eaf.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 231939 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378686851/006B65A59360F63826342C2B1A062C1AD727BD53/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378687267/945F8EF94DC605E0731E37C1BCD3FE65FCB86D02/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: b52eaf +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Cloister +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -42.81974 + posY: 2.62673664 + posZ: 8.685712 + rotX: 359.920135 + rotY: 269.985474 + rotZ: 0.0168991163 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Bag Setup Randomizer 7c8232/Bag Setup Bag d14543/Custom_Model_Bag Set-aside 62a4f3/Card Knight's Hall 0a231c.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Bag Setup Randomizer 7c8232/Bag Setup Bag d14543/Custom_Model_Bag Set-aside 62a4f3/Card Knight's Hall 0a231c.yaml new file mode 100644 index 000000000..7d0d31254 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Bag Setup Randomizer 7c8232/Bag Setup Bag d14543/Custom_Model_Bag Set-aside 62a4f3/Card Knight's Hall 0a231c.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 231940 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378686851/006B65A59360F63826342C2B1A062C1AD727BD53/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378687267/945F8EF94DC605E0731E37C1BCD3FE65FCB86D02/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 0a231c +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Knight's Hall +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -44.5852127 + posY: 2.6296773 + posZ: 8.392064 + rotX: 359.920135 + rotY: 269.987732 + rotZ: 0.0168928374 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Bag Setup Randomizer 7c8232/Bag Setup Bag d14543/Custom_Model_Bag Set-aside 62a4f3/Card Open The Path Above e572ec.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Bag Setup Randomizer 7c8232/Bag Setup Bag d14543/Custom_Model_Bag Set-aside 62a4f3/Card Open The Path Above e572ec.yaml new file mode 100644 index 000000000..fb6737791 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Bag Setup Randomizer 7c8232/Bag Setup Bag d14543/Custom_Model_Bag Set-aside 62a4f3/Card Open The Path Above e572ec.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 231746 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2317': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378732934/F41E84FCDC0AB52634348C439A6D1A725CEB8115/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378736378/628E179D5305E95AFC25D86526320A24F8B27391/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Act 3c +GMNotes: '' +GUID: e572ec +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Open The Path Above +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -43.3147545 + posY: 3.69180274 + posZ: 25.1093674 + rotX: 0.0168995224 + rotY: 179.996872 + rotZ: 0.0800601244 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Bag Setup Randomizer 7c8232/Bag Setup Bag d14543/Custom_Model_Bag Set-aside 62a4f3/Card Open The Path Below 3da436.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Bag Setup Randomizer 7c8232/Bag Setup Bag d14543/Custom_Model_Bag Set-aside 62a4f3/Card Open The Path Below 3da436.yaml new file mode 100644 index 000000000..5fabd2895 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Bag Setup Randomizer 7c8232/Bag Setup Bag d14543/Custom_Model_Bag Set-aside 62a4f3/Card Open The Path Below 3da436.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 231745 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2317': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378732934/F41E84FCDC0AB52634348C439A6D1A725CEB8115/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378736378/628E179D5305E95AFC25D86526320A24F8B27391/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Act 3a +GMNotes: '' +GUID: 3da436 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Open The Path Below +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -43.80164 + posY: 3.69263 + posZ: 25.9713154 + rotX: 0.0169084538 + rotY: 180.0002 + rotZ: 0.08001749 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Bag Setup Randomizer 7c8232/Bag Setup Bag d14543/Custom_Model_Bag Set-aside 62a4f3/Deck Rift Seeker 050765.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Bag Setup Randomizer 7c8232/Bag Setup Bag d14543/Custom_Model_Bag Set-aside 62a4f3/Deck Rift Seeker 050765.yaml new file mode 100644 index 000000000..882286734 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Bag Setup Randomizer 7c8232/Bag Setup Bag d14543/Custom_Model_Bag Set-aside 62a4f3/Deck Rift Seeker 050765.yaml @@ -0,0 +1,129 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 232255 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Byakhee. Cultist. + GMNotes: '' + GUID: bce5af + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Rift Seeker + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -48.72014 + posY: 1.62640011 + posZ: 18.477726 + rotX: 359.921173 + rotY: 269.9741 + rotZ: 0.0181691013 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232255 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Byakhee. Cultist. + GMNotes: '' + GUID: 2e6d15 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Rift Seeker + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -48.5824242 + posY: 1.80049467 + posZ: 18.8632278 + rotX: 359.913239 + rotY: 270.0101 + rotZ: 1.52548885 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 232255 +- 232255 +Description: '' +GMNotes: '' +GUID: '050765' +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Rift Seeker +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -39.123024 + posY: 2.626025 + posZ: -3.327134 + rotX: 359.920135 + rotY: 269.97406 + rotZ: 0.0169115327 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Bag Setup Randomizer 7c8232/Bag Setup Bag d14543/Custom_Model_Bag Set-aside 62a4f3/Deck Tidal Terror 79e245.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Bag Setup Randomizer 7c8232/Bag Setup Bag d14543/Custom_Model_Bag Set-aside 62a4f3/Deck Tidal Terror 79e245.yaml new file mode 100644 index 000000000..e89731005 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Bag Setup Randomizer 7c8232/Bag Setup Bag d14543/Custom_Model_Bag Set-aside 62a4f3/Deck Tidal Terror 79e245.yaml @@ -0,0 +1,129 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 232254 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. + GMNotes: '' + GUID: bce5af + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Tidal Terror + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -48.270546 + posY: 1.62647545 + posZ: 20.67408 + rotX: 359.921265 + rotY: 269.987549 + rotZ: 0.008430139 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232254 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. + GMNotes: '' + GUID: '617504' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Tidal Terror + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -48.63482 + posY: 1.77213728 + posZ: 20.5973949 + rotX: 359.944763 + rotY: 270.000183 + rotZ: 0.0122908484 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 232254 +- 232254 +Description: '' +GMNotes: '' +GUID: 79e245 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Tidal Terror +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -38.8907852 + posY: 2.62723613 + posZ: 4.74787951 + rotX: 359.920135 + rotY: 269.987518 + rotZ: 0.0168920364 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Bag Setup Randomizer 7c8232/Bag Setup Bag d14543/Deck Agenda Deck 'a' 29532d.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Bag Setup Randomizer 7c8232/Bag Setup Bag d14543/Deck Agenda Deck 'a' 29532d.yaml new file mode 100644 index 000000000..f7442b13f --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Bag Setup Randomizer 7c8232/Bag Setup Bag d14543/Deck Agenda Deck 'a' 29532d.yaml @@ -0,0 +1,172 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 231740 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2317': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378732934/F41E84FCDC0AB52634348C439A6D1A725CEB8115/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378736378/628E179D5305E95AFC25D86526320A24F8B27391/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 3a + GMNotes: '' + GUID: 317b57 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The City Floods + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -38.3885 + posY: 1.61532688 + posZ: 29.35475 + rotX: 0.0174146947 + rotY: 180.001465 + rotZ: 0.07364686 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231738 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2317': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378732934/F41E84FCDC0AB52634348C439A6D1A725CEB8115/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378736378/628E179D5305E95AFC25D86526320A24F8B27391/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 2a + GMNotes: '' + GUID: 92b2ed + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Let The Storm Rage + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -38.40302 + posY: 1.7606318 + posZ: 29.1550312 + rotX: 0.00535119465 + rotY: 179.9988 + rotZ: 0.0580718778 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231737 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2317': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378732934/F41E84FCDC0AB52634348C439A6D1A725CEB8115/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378736378/628E179D5305E95AFC25D86526320A24F8B27391/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 1a + GMNotes: '' + GUID: '108932' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Tide Rises + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -38.32237 + posY: 1.79377937 + posZ: 29.5801926 + rotX: 0.0172863621 + rotY: 180.003265 + rotZ: 0.0793241 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2317': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378732934/F41E84FCDC0AB52634348C439A6D1A725CEB8115/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378736378/628E179D5305E95AFC25D86526320A24F8B27391/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 231740 +- 231738 +- 231737 +Description: '' +GMNotes: '' +GUID: 29532d +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Agenda Deck 'a' +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.72466946 + posY: 1.656641 + posZ: 0.373313218 + rotX: 0.01683393 + rotY: 180.000473 + rotZ: 0.0802586153 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Bag Setup Randomizer 7c8232/Bag Setup Bag d14543/Deck Agenda Deck 'c' f812d6.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Bag Setup Randomizer 7c8232/Bag Setup Bag d14543/Deck Agenda Deck 'c' f812d6.yaml new file mode 100644 index 000000000..3f19f5230 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Bag Setup Randomizer 7c8232/Bag Setup Bag d14543/Deck Agenda Deck 'c' f812d6.yaml @@ -0,0 +1,172 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 231744 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2317': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378732934/F41E84FCDC0AB52634348C439A6D1A725CEB8115/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378736378/628E179D5305E95AFC25D86526320A24F8B27391/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 3c + GMNotes: '' + GUID: 9ea66d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Swallowed Sky + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -38.8236275 + posY: 1.6143955 + posZ: 24.1147652 + rotX: 0.01726846 + rotY: 179.998856 + rotZ: 0.07521419 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231743 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2317': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378732934/F41E84FCDC0AB52634348C439A6D1A725CEB8115/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378736378/628E179D5305E95AFC25D86526320A24F8B27391/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 2c + GMNotes: '' + GUID: 8228d2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Entity Above + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -38.7080269 + posY: 1.75972593 + posZ: 24.2387352 + rotX: 0.0238773953 + rotY: 180.001541 + rotZ: 0.0547805019 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231741 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2317': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378732934/F41E84FCDC0AB52634348C439A6D1A725CEB8115/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378736378/628E179D5305E95AFC25D86526320A24F8B27391/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 1c + GMNotes: '' + GUID: 97bb2d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Ritual Begins + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -38.668602 + posY: 1.79270935 + posZ: 24.0473614 + rotX: 0.0176480673 + rotY: 180.001266 + rotZ: 0.07967886 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2317': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378732934/F41E84FCDC0AB52634348C439A6D1A725CEB8115/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378736378/628E179D5305E95AFC25D86526320A24F8B27391/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 231744 +- 231743 +- 231741 +Description: '' +GMNotes: '' +GUID: f812d6 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Agenda Deck 'c' +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.68848968 + posY: 1.65499723 + posZ: -5.04854155 + rotX: 0.0168354977 + rotY: 179.999573 + rotZ: 0.08025833 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Card Abbey Church 106f19.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Card Abbey Church 106f19.yaml new file mode 100644 index 000000000..d3516235a --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Card Abbey Church 106f19.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 231936 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378686851/006B65A59360F63826342C2B1A062C1AD727BD53/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378687267/945F8EF94DC605E0731E37C1BCD3FE65FCB86D02/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 106f19 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Abbey Church +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -23.6765671 + posY: 1.68845832 + posZ: 7.570005 + rotX: 359.9201 + rotY: 269.9999 + rotZ: 0.01687589 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Card Broken Steps 38d12d.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Card Broken Steps 38d12d.yaml new file mode 100644 index 000000000..c49fefbf9 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Card Broken Steps 38d12d.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 231935 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378686851/006B65A59360F63826342C2B1A062C1AD727BD53/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378687267/945F8EF94DC605E0731E37C1BCD3FE65FCB86D02/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 38d12d +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Broken Steps +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -23.676239 + posY: 1.686215 + posZ: -0.030235976 + rotX: 359.920135 + rotY: 270.001282 + rotZ: 0.01655332 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Card Broken Steps c2651e.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Card Broken Steps c2651e.yaml new file mode 100644 index 000000000..8f803a204 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Card Broken Steps c2651e.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 231934 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378686851/006B65A59360F63826342C2B1A062C1AD727BD53/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378687267/945F8EF94DC605E0731E37C1BCD3FE65FCB86D02/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: c2651e +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Broken Steps +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -25.0900955 + posY: 1.73617208 + posZ: -0.0141232982 + rotX: 359.921143 + rotY: 270.0266 + rotZ: 0.0163396169 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Card Chœur Gothique b52eaf.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Card Chœur Gothique b52eaf.yaml new file mode 100644 index 000000000..69949d9da --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Card Chœur Gothique b52eaf.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 231938 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378686851/006B65A59360F63826342C2B1A062C1AD727BD53/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378687267/945F8EF94DC605E0731E37C1BCD3FE65FCB86D02/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: b52eaf +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: "Ch\u0153ur Gothique" +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.87421083 + posY: 1.661683 + posZ: 15.270278 + rotX: 359.9198 + rotY: 269.9966 + rotZ: 0.0165115632 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Card Chœur Gothique c7ee02.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Card Chœur Gothique c7ee02.yaml new file mode 100644 index 000000000..38439b2ad --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Card Chœur Gothique c7ee02.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 231937 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378686851/006B65A59360F63826342C2B1A062C1AD727BD53/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378687267/945F8EF94DC605E0731E37C1BCD3FE65FCB86D02/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: c7ee02 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: "Ch\u0153ur Gothique" +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -4.30533838 + posY: 1.71164572 + posZ: 15.2833252 + rotX: 0.0807334259 + rotY: 270.0334 + rotZ: 359.987183 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Card Grand Rue 20de8b.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Card Grand Rue 20de8b.yaml new file mode 100644 index 000000000..3c0ab3942 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Card Grand Rue 20de8b.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 231929 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378686851/006B65A59360F63826342C2B1A062C1AD727BD53/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378687267/945F8EF94DC605E0731E37C1BCD3FE65FCB86D02/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 20de8b +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Grand Rue +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -30.2243328 + posY: 1.69309235 + posZ: -7.699997 + rotX: 359.9201 + rotY: 269.999939 + rotZ: 0.01687629 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Card North Tower 69eae5.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Card North Tower 69eae5.yaml new file mode 100644 index 000000000..77f59ee1b --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Card North Tower 69eae5.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 231932 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378686851/006B65A59360F63826342C2B1A062C1AD727BD53/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378687267/945F8EF94DC605E0731E37C1BCD3FE65FCB86D02/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 69eae5 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: North Tower +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -18.5816956 + posY: 1.78245652 + posZ: -7.69242144 + rotX: 0.124942452 + rotY: 269.9906 + rotZ: 359.990143 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Card North Tower c0362a.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Card North Tower c0362a.yaml new file mode 100644 index 000000000..641a8c68b --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Card North Tower c0362a.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 231933 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378686851/006B65A59360F63826342C2B1A062C1AD727BD53/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378687267/945F8EF94DC605E0731E37C1BCD3FE65FCB86D02/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: c0362a +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: North Tower +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -17.1181946 + posY: 1.71512246 + posZ: -7.69980669 + rotX: 358.4415 + rotY: 269.999847 + rotZ: 0.0170693 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Card Outer Wall 014bd6.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Card Outer Wall 014bd6.yaml new file mode 100644 index 000000000..153e3f433 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Card Outer Wall 014bd6.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 231930 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378686851/006B65A59360F63826342C2B1A062C1AD727BD53/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378687267/945F8EF94DC605E0731E37C1BCD3FE65FCB86D02/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 014bd6 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Outer Wall +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -25.10326 + posY: 1.73168063 + posZ: -15.3068628 + rotX: 359.921173 + rotY: 270.001617 + rotZ: 0.0163686611 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Card Outer Wall db972a.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Card Outer Wall db972a.yaml new file mode 100644 index 000000000..285d56b17 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Card Outer Wall db972a.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 231931 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378686851/006B65A59360F63826342C2B1A062C1AD727BD53/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378687267/945F8EF94DC605E0731E37C1BCD3FE65FCB86D02/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: db972a +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Outer Wall +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -23.6765041 + posY: 1.68172467 + posZ: -15.2798309 + rotX: 359.920135 + rotY: 270.0009 + rotZ: 0.0165320951 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Card Porte de l'Avancée c647a3.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Card Porte de l'Avancée c647a3.yaml new file mode 100644 index 000000000..fb9af2d0b --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Card Porte de l'Avancée c647a3.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 231928 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378686851/006B65A59360F63826342C2B1A062C1AD727BD53/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378687267/945F8EF94DC605E0731E37C1BCD3FE65FCB86D02/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: c647a3 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: "Porte de l'Avanc\xE9e" +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -36.7732849 + posY: 1.70222449 + posZ: -7.699995 + rotX: 359.9201 + rotY: 269.999939 + rotZ: 0.0168761518 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Card Scenario 1163a0.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Card Scenario 1163a0.yaml new file mode 100644 index 000000000..5c2fc0887 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Card Scenario 1163a0.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 231927 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378686851/006B65A59360F63826342C2B1A062C1AD727BD53/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378687267/945F8EF94DC605E0731E37C1BCD3FE65FCB86D02/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Black Stars Rise +GMNotes: '' +GUID: 1163a0 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Scenario +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.95599413 + posY: 1.65564823 + posZ: -10.4411554 + rotX: 359.919739 + rotY: 269.999939 + rotZ: 0.0168412775 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Custom_Tile 04d6e6.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Custom_Tile 04d6e6.yaml new file mode 100644 index 000000000..fe28997ab --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Custom_Tile 04d6e6.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 04d6e6 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.6765 + posY: 1.6156522 + posZ: 3.86000037 + rotX: 0.01687203 + rotY: 179.9999 + rotZ: 0.07994025 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Custom_Tile 5b38c6.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Custom_Tile 5b38c6.yaml new file mode 100644 index 000000000..b3c784ee5 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Custom_Tile 5b38c6.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 5b38c6 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Tile +Nickname: '' +Snap: false +States: + '1': + 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: '' + GMNotes: '' + GUID: 010936 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Custom_Tile + Nickname: '' + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -23.6765461 + posY: 1.6122483 + posZ: -7.70003462 + rotX: 359.9201 + rotY: 270.0275 + rotZ: 0.0168342367 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' + '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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Custom_Tile + Nickname: '' + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -23.6765461 + posY: 1.6122483 + posZ: -7.700035 + rotX: 359.9201 + rotY: 270.027466 + rotZ: 0.01682319 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +Sticky: true +Tooltip: true +Transform: + posX: -23.6766 + posY: 1.61224842 + posZ: -7.70000124 + rotX: 359.955139 + rotY: 225.247574 + rotZ: 0.0682304 + scaleX: 0.8 + scaleY: 1.0 + scaleZ: 0.8 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Custom_Tile 5bebe6.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Custom_Tile 5bebe6.yaml new file mode 100644 index 000000000..57c40068f --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Custom_Tile 5bebe6.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 5bebe6 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.6133877 + posZ: -3.8300004 + rotX: 0.016872026 + rotY: 179.999878 + rotZ: 0.07994935 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Custom_Tile 73720d.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Custom_Tile 73720d.yaml new file mode 100644 index 000000000..c0c881d1e --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Custom_Tile 73720d.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 73720d +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.9588 + posY: 1.616836 + posZ: -7.663303 + rotX: 359.9201 + rotY: 270.0027 + rotZ: 0.01689755 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Custom_Tile 8d134d.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Custom_Tile 8d134d.yaml new file mode 100644 index 000000000..9065e6353 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Custom_Tile 8d134d.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 8d134d +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.6312 + posY: 1.626159 + posZ: -7.600103 + rotX: 0.0798944756 + rotY: 89.99996 + rotZ: 359.9831 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Custom_Tile 93d8de.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Custom_Tile 93d8de.yaml new file mode 100644 index 000000000..3604acec9 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Custom_Tile 93d8de.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 93d8de +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.6765 + posY: 1.61112618 + posZ: -11.510004 + rotX: 0.01687204 + rotY: 179.999878 + rotZ: 0.0799363 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Custom_Tile d4528c.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Custom_Tile d4528c.yaml new file mode 100644 index 000000000..14edabd55 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Custom_Tile d4528c.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: d4528c +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.4211788 + posY: 1.60772967 + posZ: -7.66208839 + rotX: 359.9189 + rotY: 270.0012 + rotZ: 0.020364549 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Custom_Tile Black Stars Rise 20c21d.ttslua b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Custom_Tile Black Stars Rise 20c21d.ttslua new file mode 100644 index 000000000..78350373e --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Custom_Tile Black Stars Rise 20c21d.ttslua @@ -0,0 +1,25 @@ +name = 'Black Stars Rise' + +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 + +function standaloneClick() + Global.call('fillContainer', {object=self, key=name, mode='standalone'}) +end diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Custom_Tile Black Stars Rise 20c21d.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Custom_Tile Black Stars Rise 20c21d.yaml new file mode 100644 index 000000000..998556d64 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Custom_Tile Black Stars Rise 20c21d.yaml @@ -0,0 +1,42 @@ +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 +GMNotes: '' +GUID: 20c21d +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Tile Black Stars Rise 20c21d.ttslua' +LuaScriptState: '' +Name: Custom_Tile +Nickname: Black Stars Rise +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.61939931 + posY: 1.58184016 + posZ: -15.7683392 + rotX: 359.920044 + rotY: 269.999756 + rotZ: 0.0142153185 + scaleX: 2.2 + scaleY: 1.0 + scaleZ: 2.2 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Deck Encounter Deck c380e4.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Deck Encounter Deck c380e4.yaml new file mode 100644 index 000000000..a84e445e8 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 7 Black Stars Rise dd8b0d/Deck Encounter Deck c380e4.yaml @@ -0,0 +1,1347 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 232257 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: bce5af + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Worlds Merge + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -11.9503422 + posY: 1.89901769 + posZ: 16.4559956 + rotX: 359.937775 + rotY: 269.9995 + rotZ: 180.015778 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232257 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: f0fa86 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Worlds Merge + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -8.183512 + posY: 1.73751938 + posZ: 36.8471451 + rotX: 359.927124 + rotY: 269.999146 + rotZ: 0.0183420554 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232257 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: bce5af + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Worlds Merge + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -8.116457 + posY: 1.75397313 + posZ: 37.0509529 + rotX: 359.936 + rotY: 270.0 + rotZ: 0.0131659834 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232256 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: bce5af + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Crashing Floods + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -7.29582834 + posY: 1.57416618 + posZ: 36.66085 + rotX: 359.920349 + rotY: 269.999939 + rotZ: 0.0153257009 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232256 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: f76046 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Crashing Floods + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -7.260278 + posY: 1.73602772 + posZ: 36.60649 + rotX: 359.924561 + rotY: 269.9991 + rotZ: 0.0114589455 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232256 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: bce5af + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Crashing Floods + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -7.26025867 + posY: 1.74993169 + posZ: 36.6064873 + rotX: 359.918884 + rotY: 269.9991 + rotZ: 0.0164478477 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232229 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Omen. Pact. + GMNotes: '' + GUID: 70009a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Pale Mask Beckons + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -28.2434616 + posY: 1.5971483 + posZ: 15.4716158 + rotX: 359.920166 + rotY: 270.021973 + rotZ: 0.01652023 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232228 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Pact. + GMNotes: '' + GUID: c023fe + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Marked by the Sign + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -28.2468338 + posY: 1.76336575 + posZ: 15.2574654 + rotX: 359.9197 + rotY: 270.021973 + rotZ: 0.0146484794 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232228 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Pact. + GMNotes: '' + GUID: 8c321d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Marked by the Sign + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -28.2435665 + posY: 1.77552032 + posZ: 15.0727062 + rotX: 359.91925 + rotY: 270.021973 + rotZ: 0.0173290391 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232216 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Pact. + GMNotes: '' + GUID: 7a6d8c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Twisted to His Will + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -40.06019 + posY: 1.60829687 + posZ: -2.629929 + rotX: 359.920044 + rotY: 270.0098 + rotZ: 0.01704826 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232216 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Pact. + GMNotes: '' + GUID: a6af6b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Twisted to His Will + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -40.14995 + posY: 1.78357077 + posZ: -2.83012843 + rotX: 0.5782123 + rotY: 270.002 + rotZ: 0.0179315973 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232215 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: a0d34f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Spires of Carcosa + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -39.56787 + posY: 1.7705667 + posZ: -2.61933255 + rotX: 359.921173 + rotY: 270.003662 + rotZ: 0.0159180127 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232215 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: a0d34f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Spires of Carcosa + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -40.2772331 + posY: 1.7794143 + posZ: -2.527565 + rotX: 359.919922 + rotY: 270.003967 + rotZ: 0.01670667 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232214 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: 0afc45 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Black Stars Rise + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -39.95644 + posY: 1.771017 + posZ: -2.60974526 + rotX: 359.919952 + rotY: 270.027344 + rotZ: 0.0162861571 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232214 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: 0afc45 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Black Stars Rise + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -40.21685 + posY: 1.76258183 + posZ: -3.051078 + rotX: 359.919678 + rotY: 270.027161 + rotZ: 0.0155659933 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232211 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Pact. + GMNotes: '' + GUID: 60d096 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Hunted by Byakhee + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -42.38965 + posY: 1.614579 + posZ: 7.717301 + rotX: 359.920258 + rotY: 269.999359 + rotZ: 0.01605293 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232211 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Pact. + GMNotes: '' + GUID: 5e7c00 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Hunted by Byakhee + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -42.4008026 + posY: 1.775796 + posZ: 7.818656 + rotX: 359.9184 + rotY: 269.9989 + rotZ: 0.0150963822 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232210 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Byakhee. + GMNotes: '' + GUID: b323c1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Swift Byakhee + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -42.0870323 + posY: 1.79262948 + posZ: 7.32864046 + rotX: 359.920349 + rotY: 269.997162 + rotZ: 0.01657234 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232210 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Byakhee. + GMNotes: '' + GUID: b323c1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Swift Byakhee + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -42.47628 + posY: 1.76898062 + posZ: 7.469135 + rotX: 359.919647 + rotY: 269.997253 + rotZ: 0.0159163754 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233624 + 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 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: d63054 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Mysterious Chanting + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -14.9937792 + posY: 1.57623422 + posZ: 7.191085 + rotX: 359.920227 + rotY: 270.005066 + rotZ: 0.01624975 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233624 + 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 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: b347d1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Mysterious Chanting + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -15.1765862 + posY: 1.7388649 + posZ: 7.12856245 + rotX: 359.9205 + rotY: 270.005066 + rotZ: 0.011837706 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233623 + 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 + UniqueBack: false + Description: Humanoid. Cultist. + GMNotes: '' + GUID: d36612 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Wizard of the Order + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -15.1335211 + posY: 1.7306242 + posZ: 15.1695614 + rotX: 359.933441 + rotY: 269.998932 + rotZ: 180.028931 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233622 + 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 + UniqueBack: false + Description: Humanoid. Cultist. + GMNotes: '' + GUID: 50fdc5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Acolyte + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -15.3295956 + posY: 1.62976587 + posZ: 15.9645061 + rotX: 0.0716057643 + rotY: 270.000061 + rotZ: 359.982727 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233622 + 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 + UniqueBack: false + Description: Humanoid. Cultist. + GMNotes: '' + GUID: 4911f2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Acolyte + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -15.3297215 + posY: 1.77588809 + posZ: 15.9645157 + rotX: 0.07387834 + rotY: 269.998474 + rotZ: 359.992645 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233622 + 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 + UniqueBack: false + Description: Humanoid. Cultist. + GMNotes: '' + GUID: ab3719 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Acolyte + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -15.9929094 + posY: 1.58014917 + posZ: 15.8832378 + rotX: 359.920624 + rotY: 270.0 + rotZ: 0.0137184272 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232213 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. + GMNotes: '' + GUID: e9dc22 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Spawn of Hali + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -41.0218 + posY: 1.61205661 + posZ: 5.752819 + rotX: 359.920532 + rotY: 270.00177 + rotZ: 0.013646706 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232213 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. + GMNotes: '' + GUID: d46d72 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Spawn of Hali + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -40.7112732 + posY: 1.76276219 + posZ: 5.71570444 + rotX: 359.92627 + rotY: 270.001953 + rotZ: 0.00491145067 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233219 + 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 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: 6e7cb8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 233219 + 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 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: 8af879 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 233219 + 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 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: 6e7cb8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' +CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '2332': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '2336': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 232257 +- 232257 +- 232257 +- 232256 +- 232256 +- 232256 +- 232229 +- 232228 +- 232228 +- 232216 +- 232216 +- 232215 +- 232215 +- 232214 +- 232214 +- 232211 +- 232211 +- 232210 +- 232210 +- 233624 +- 233624 +- 233623 +- 233622 +- 233622 +- 233622 +- 232213 +- 232213 +- 233219 +- 233219 +- 233219 +Description: '' +GMNotes: '' +GUID: c380e4 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Encounter Deck +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.927733 + posY: 1.77171 + posZ: 5.75715446 + 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 The Path to Carcosa 1b887c/Custom_Model_Bag 8 Dim Carcosa ce5d30.ttslua b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 8 Dim Carcosa ce5d30.ttslua new file mode 100644 index 000000000..46067f58e --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 8 Dim Carcosa ce5d30.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.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.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 Path to Carcosa 1b887c/Custom_Model_Bag 8 Dim Carcosa ce5d30.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 8 Dim Carcosa ce5d30.yaml new file mode 100644 index 000000000..7ad35c51c --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 8 Dim Carcosa ce5d30.yaml @@ -0,0 +1,76 @@ +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 8 Dim Carcosa ce5d30/Bag Starting Locations 85e306.yaml' +- !include 'Custom_Model_Bag 8 Dim Carcosa ce5d30/Deck Locations fbd1ad.yaml' +- !include 'Custom_Model_Bag 8 Dim Carcosa ce5d30/Custom_Model_Bag Set-aside 714050.yaml' +- !include 'Custom_Model_Bag 8 Dim Carcosa ce5d30/Deck Agenda Deck ebe737.yaml' +- !include 'Custom_Model_Bag 8 Dim Carcosa ce5d30/Deck Encounter Deck 546046.yaml' +- !include 'Custom_Model_Bag 8 Dim Carcosa ce5d30/Card Scenario b52eaf.yaml' +- !include 'Custom_Model_Bag 8 Dim Carcosa ce5d30/Bag Act Decks 285de7.yaml' +- !include 'Custom_Model_Bag 8 Dim Carcosa ce5d30/Custom_Tile Dim Carcosa 9afdfd.yaml' +- !include 'Custom_Model_Bag 8 Dim Carcosa ce5d30/Notecard Errata 1 d28c77.yaml' +- !include 'Custom_Model_Bag 8 Dim Carcosa ce5d30/Custom_Tile d6e210.yaml' +- !include 'Custom_Model_Bag 8 Dim Carcosa ce5d30/Custom_Tile add354.yaml' +- !include 'Custom_Model_Bag 8 Dim Carcosa ce5d30/Custom_Tile 868a4d.yaml' +- !include 'Custom_Model_Bag 8 Dim Carcosa ce5d30/Custom_Tile e96c38.yaml' +- !include 'Custom_Model_Bag 8 Dim Carcosa ce5d30/Custom_Tile 258731.yaml' +- !include 'Custom_Model_Bag 8 Dim Carcosa ce5d30/Custom_Tile c8ff2d.yaml' +- !include 'Custom_Model_Bag 8 Dim Carcosa ce5d30/Custom_Tile 691fe9.yaml' +- !include 'Custom_Model_Bag 8 Dim Carcosa ce5d30/Custom_Tile 739c55.yaml' +CustomMesh: + CastShadows: true + ColliderURL: '' + Convex: true + DiffuseURL: http://cloud-3.steamusercontent.com/ugc/829135118403815273/01C48D5C39A6A8CB725FA737D21D3B5388B64A4C/ + MaterialIndex: 3 + MeshURL: https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj + NormalURL: '' + TypeIndex: 6 +Description: '' +GMNotes: '' +GUID: ce5d30 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Model_Bag 8 Dim Carcosa ce5d30.ttslua' +LuaScriptState: '{"ml":{"258731":{"lock":false,"pos":{"x":-30.2242,"y":1.6248,"z":3.86},"rot":{"x":0.0169,"y":179.9773,"z":0.0799}},"285de7":{"lock":false,"pos":{"x":-2.6888,"y":1.3987,"z":-5.0485},"rot":{"x":359.9196,"y":269.9985,"z":0.0169}},"546046":{"lock":false,"pos":{"x":-3.9277,"y":1.8037,"z":5.7572},"rot":{"x":359.9197,"y":269.9997,"z":180.0168}},"691fe9":{"lock":false,"pos":{"x":-33.3428,"y":1.6291,"z":3.818},"rot":{"x":359.9554,"y":225.0049,"z":0.0684}},"714050":{"lock":false,"pos":{"x":1.6965,"y":1.5583,"z":14.2786},"rot":{"x":359.9551,"y":224.998,"z":0.0687}},"739c55":{"lock":false,"pos":{"x":-39.985,"y":1.6372,"z":-0.0256},"rot":{"x":0.0799,"y":90.0027,"z":359.9831}},"85e306":{"lock":false,"pos":{"x":1.2838,"y":1.3944,"z":-0.7698},"rot":{"x":359.9196,"y":270.0006,"z":0.0169}},"868a4d":{"lock":false,"pos":{"x":-20.1755,"y":1.6096,"z":-0.0593},"rot":{"x":0.0799,"y":90.0026,"z":359.9831}},"9afdfd":{"lock":false,"pos":{"x":-3.7313,"y":1.5823,"z":-14.7936},"rot":{"x":359.9197,"y":269.9989,"z":0.0168}},"add354":{"lock":false,"pos":{"x":-27.0048,"y":1.6202,"z":3.6609},"rot":{"x":0.0684,"y":134.9998,"z":0.0446}},"b52eaf":{"lock":false,"pos":{"x":-3.956,"y":1.6556,"z":-10.4412},"rot":{"x":359.9197,"y":269.9998,"z":0.0168}},"c8ff2d":{"lock":false,"pos":{"x":-33.276,"y":1.6267,"z":-3.9922},"rot":{"x":0.0683,"y":135.1402,"z":0.0447}},"d28c77":{"lock":false,"pos":{"x":-11.2153,"y":1.5602,"z":-23.7336},"rot":{"x":0.0799,"y":89.9926,"z":359.9831}},"d6e210":{"lock":false,"pos":{"x":-26.4601,"y":1.6173,"z":-3.7355},"rot":{"x":359.9554,"y":224.9996,"z":0.0684}},"e96c38":{"lock":false,"pos":{"x":-30.2243,"y":1.6225,"z":-3.8299},"rot":{"x":0.0169,"y":179.9773,"z":0.0799}},"ebe737":{"lock":false,"pos":{"x":-2.7248,"y":1.6566,"z":0.3733},"rot":{"x":0.0168,"y":179.9989,"z":0.0803}},"fbd1ad":{"lock":false,"pos":{"x":1.3125,"y":1.6514,"z":1.9228},"rot":{"x":359.9197,"y":269.9998,"z":0.0168}}}}' +MaterialIndex: -1 +MeshIndex: -1 +Name: Custom_Model_Bag +Nickname: '8: Dim Carcosa' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 14.4775181 + posY: 1.45299637 + posZ: -28.3482456 + rotX: 359.920135 + rotY: 269.993042 + rotZ: 0.0168840066 + scaleX: 2.21 + scaleY: 0.46 + scaleZ: 2.42 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 8 Dim Carcosa ce5d30/Bag Act Decks 285de7.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 8 Dim Carcosa ce5d30/Bag Act Decks 285de7.yaml new file mode 100644 index 000000000..0033cc827 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 8 Dim Carcosa ce5d30/Bag Act Decks 285de7.yaml @@ -0,0 +1,39 @@ +Autoraise: true +ColorDiffuse: + b: 0.0 + g: 0.366520882 + r: 0.7058823 +ContainedObjects: +- !include 'Bag Act Decks 285de7/Bag Equal Doubt and Conviction, min. 6 total f22eb2.yaml' +- !include 'Bag Act Decks 285de7/Deck Act Deck (v. III) e95232.yaml' +- !include 'Bag Act Decks 285de7/Deck Act Deck (v. II) 80dc14.yaml' +- !include 'Bag Act Decks 285de7/Deck Act Deck (v. I) cab03e.yaml' +Description: Use whichever one matches your doubt and conviction +GMNotes: '' +GUID: 285de7 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +MeshIndex: -1 +Name: Bag +Nickname: Act Decks +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.68875432 + posY: 1.39871013 + posZ: -5.04849052 + rotX: 359.919647 + rotY: 269.9985 + rotZ: 0.0168771371 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 8 Dim Carcosa ce5d30/Bag Act Decks 285de7/Bag Equal Doubt and Conviction, min. 6 total f22eb2.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 8 Dim Carcosa ce5d30/Bag Act Decks 285de7/Bag Equal Doubt and Conviction, min. 6 total f22eb2.yaml new file mode 100644 index 000000000..41a722658 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 8 Dim Carcosa ce5d30/Bag Act Decks 285de7/Bag Equal Doubt and Conviction, min. 6 total f22eb2.yaml @@ -0,0 +1,39 @@ +Autoraise: true +ColorDiffuse: + b: 0.0 + g: 0.366520882 + r: 0.7058823 +ContainedObjects: +- !include 'Bag Equal Doubt and Conviction, min. 6 total f22eb2/Deck Act Deck (v. + III) 56fab9.yaml' +- !include 'Bag Equal Doubt and Conviction, min. 6 total f22eb2/Deck Act Deck (v. + II) 94d969.yaml' +Description: Pick whichever one you want! +GMNotes: '' +GUID: f22eb2 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +MeshIndex: -1 +Name: Bag +Nickname: 'Equal Doubt and Conviction, min. 6 total:' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -18.22005 + posY: 3.23727846 + posZ: 39.0300255 + rotX: 357.2658 + rotY: 0.119692065 + rotZ: 0.8103297 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 8 Dim Carcosa ce5d30/Bag Act Decks 285de7/Bag Equal Doubt and Conviction, min. 6 total f22eb2/Deck Act Deck (v. II) 94d969.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 8 Dim Carcosa ce5d30/Bag Act Decks 285de7/Bag Equal Doubt and Conviction, min. 6 total f22eb2/Deck Act Deck (v. II) 94d969.yaml new file mode 100644 index 000000000..46160b990 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 8 Dim Carcosa ce5d30/Bag Act Decks 285de7/Bag Equal Doubt and Conviction, min. 6 total f22eb2/Deck Act Deck (v. II) 94d969.yaml @@ -0,0 +1,172 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 231754 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2317': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378732934/F41E84FCDC0AB52634348C439A6D1A725CEB8115/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378736378/628E179D5305E95AFC25D86526320A24F8B27391/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 3 + GMNotes: '' + GUID: '629941' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The King in Tatters + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -51.425663 + posY: 1.62678182 + posZ: 6.261938 + rotX: 0.016233895 + rotY: 179.982056 + rotZ: 0.07539939 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231752 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2317': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378732934/F41E84FCDC0AB52634348C439A6D1A725CEB8115/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378736378/628E179D5305E95AFC25D86526320A24F8B27391/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 2 + GMNotes: '' + GUID: 649b4f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Search For the Stranger (v. II) + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -51.3585472 + posY: 1.7720803 + posZ: 6.23349237 + rotX: 0.008392779 + rotY: 179.986313 + rotZ: 0.035238307 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231750 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2317': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378732934/F41E84FCDC0AB52634348C439A6D1A725CEB8115/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378736378/628E179D5305E95AFC25D86526320A24F8B27391/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 1 + GMNotes: '' + GUID: 99d2b8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: In Lost Carcosa + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -51.4867935 + posY: 1.78953612 + posZ: 5.99776 + rotX: 0.0165161956 + rotY: 179.994919 + rotZ: 0.07832204 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2317': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378732934/F41E84FCDC0AB52634348C439A6D1A725CEB8115/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378736378/628E179D5305E95AFC25D86526320A24F8B27391/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 231754 +- 231752 +- 231750 +Description: 6+ total, more Doubt than Conviction +GMNotes: '' +GUID: 94d969 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Act Deck (v. II) +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -62.1845474 + posY: 3.703895 + posZ: 6.646026 + rotX: 359.628052 + rotY: 179.969421 + rotZ: 1.41081536 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 8 Dim Carcosa ce5d30/Bag Act Decks 285de7/Bag Equal Doubt and Conviction, min. 6 total f22eb2/Deck Act Deck (v. III) 56fab9.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 8 Dim Carcosa ce5d30/Bag Act Decks 285de7/Bag Equal Doubt and Conviction, min. 6 total f22eb2/Deck Act Deck (v. III) 56fab9.yaml new file mode 100644 index 000000000..be3886e2c --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 8 Dim Carcosa ce5d30/Bag Act Decks 285de7/Bag Equal Doubt and Conviction, min. 6 total f22eb2/Deck Act Deck (v. III) 56fab9.yaml @@ -0,0 +1,172 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 231754 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2317': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378732934/F41E84FCDC0AB52634348C439A6D1A725CEB8115/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378736378/628E179D5305E95AFC25D86526320A24F8B27391/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 3 + GMNotes: '' + GUID: '629941' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The King in Tatters + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -50.4310875 + posY: 1.62355936 + posZ: 0.156143531 + rotX: 0.0170595013 + rotY: 179.973053 + rotZ: 0.078828 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231753 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2317': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378732934/F41E84FCDC0AB52634348C439A6D1A725CEB8115/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378736378/628E179D5305E95AFC25D86526320A24F8B27391/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 2 + GMNotes: '' + GUID: e90cf9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Search For the Stranger (v. III) + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -50.1188354 + posY: 1.78419518 + posZ: -0.198043808 + rotX: 0.0175960977 + rotY: 179.995438 + rotZ: 0.07639478 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231750 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2317': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378732934/F41E84FCDC0AB52634348C439A6D1A725CEB8115/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378736378/628E179D5305E95AFC25D86526320A24F8B27391/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 1 + GMNotes: '' + GUID: 99d2b8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: In Lost Carcosa + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -50.2528076 + posY: 1.78613138 + posZ: 0.07602682 + rotX: 0.0190153774 + rotY: 179.998825 + rotZ: 0.09153093 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2317': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378732934/F41E84FCDC0AB52634348C439A6D1A725CEB8115/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378736378/628E179D5305E95AFC25D86526320A24F8B27391/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 231754 +- 231753 +- 231750 +Description: 6+ Total, more Conviction than Doubt +GMNotes: '' +GUID: 56fab9 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Act Deck (v. III) +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -62.72531 + posY: 3.72763038 + posZ: 6.278695 + rotX: 0.0332518779 + rotY: 179.973068 + rotZ: 0.05889239 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 8 Dim Carcosa ce5d30/Bag Act Decks 285de7/Deck Act Deck (v. I) cab03e.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 8 Dim Carcosa ce5d30/Bag Act Decks 285de7/Deck Act Deck (v. I) cab03e.yaml new file mode 100644 index 000000000..c12c23a75 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 8 Dim Carcosa ce5d30/Bag Act Decks 285de7/Deck Act Deck (v. I) cab03e.yaml @@ -0,0 +1,179 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 231754 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2317': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378732934/F41E84FCDC0AB52634348C439A6D1A725CEB8115/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378736378/628E179D5305E95AFC25D86526320A24F8B27391/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 3 + GMNotes: '' + GUID: '629941' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The King in Tatters + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -52.2852135 + posY: 1.629431 + posZ: 11.4131088 + rotX: 0.0183685571 + rotY: 179.97403 + rotZ: 0.07457866 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232651 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2326': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378732934/F41E84FCDC0AB52634348C439A6D1A725CEB8115/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378736378/628E179D5305E95AFC25D86526320A24F8B27391/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 2 + GMNotes: '' + GUID: 09f32d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Search For the Stranger (v. I) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -52.13235 + posY: 1.77463567 + posZ: 11.6877031 + rotX: 0.0230847634 + rotY: 179.992 + rotZ: 0.046987325 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231750 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2317': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378732934/F41E84FCDC0AB52634348C439A6D1A725CEB8115/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378736378/628E179D5305E95AFC25D86526320A24F8B27391/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 1 + GMNotes: '' + GUID: 99d2b8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: In Lost Carcosa + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -51.9490433 + posY: 1.79173779 + posZ: 11.3203526 + rotX: 0.0213156 + rotY: 179.9918 + rotZ: 0.08036492 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2317': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378732934/F41E84FCDC0AB52634348C439A6D1A725CEB8115/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378736378/628E179D5305E95AFC25D86526320A24F8B27391/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + '2326': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378732934/F41E84FCDC0AB52634348C439A6D1A725CEB8115/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378736378/628E179D5305E95AFC25D86526320A24F8B27391/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 231754 +- 232651 +- 231750 +Description: 5 or less total Doubt and Conviction +GMNotes: '' +GUID: cab03e +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Act Deck (v. I) +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -18.127409 + posY: 3.60962367 + posZ: 41.56709 + rotX: 357.547363 + rotY: 180.014847 + rotZ: 359.3577 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 8 Dim Carcosa ce5d30/Bag Act Decks 285de7/Deck Act Deck (v. II) 80dc14.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 8 Dim Carcosa ce5d30/Bag Act Decks 285de7/Deck Act Deck (v. II) 80dc14.yaml new file mode 100644 index 000000000..2b840009c --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 8 Dim Carcosa ce5d30/Bag Act Decks 285de7/Deck Act Deck (v. II) 80dc14.yaml @@ -0,0 +1,172 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 231754 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2317': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378732934/F41E84FCDC0AB52634348C439A6D1A725CEB8115/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378736378/628E179D5305E95AFC25D86526320A24F8B27391/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 3 + GMNotes: '' + GUID: '629941' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The King in Tatters + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -51.425663 + posY: 1.62678182 + posZ: 6.261938 + rotX: 0.016233895 + rotY: 179.982056 + rotZ: 0.07539939 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231752 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2317': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378732934/F41E84FCDC0AB52634348C439A6D1A725CEB8115/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378736378/628E179D5305E95AFC25D86526320A24F8B27391/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 2 + GMNotes: '' + GUID: 649b4f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Search For the Stranger (v. II) + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -51.3585472 + posY: 1.7720803 + posZ: 6.23349237 + rotX: 0.008392779 + rotY: 179.986313 + rotZ: 0.035238307 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231750 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2317': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378732934/F41E84FCDC0AB52634348C439A6D1A725CEB8115/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378736378/628E179D5305E95AFC25D86526320A24F8B27391/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 1 + GMNotes: '' + GUID: 99d2b8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: In Lost Carcosa + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -51.4867935 + posY: 1.78953612 + posZ: 5.99776 + rotX: 0.0165161956 + rotY: 179.994919 + rotZ: 0.07832204 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2317': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378732934/F41E84FCDC0AB52634348C439A6D1A725CEB8115/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378736378/628E179D5305E95AFC25D86526320A24F8B27391/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 231754 +- 231752 +- 231750 +Description: 6+ total, more Doubt than Conviction +GMNotes: '' +GUID: 80dc14 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Act Deck (v. II) +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -19.0826321 + posY: 3.599072 + posZ: 40.70335 + rotX: 359.58783 + rotY: 180.02121 + rotZ: 356.893524 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 8 Dim Carcosa ce5d30/Bag Act Decks 285de7/Deck Act Deck (v. III) e95232.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 8 Dim Carcosa ce5d30/Bag Act Decks 285de7/Deck Act Deck (v. III) e95232.yaml new file mode 100644 index 000000000..419abda67 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 8 Dim Carcosa ce5d30/Bag Act Decks 285de7/Deck Act Deck (v. III) e95232.yaml @@ -0,0 +1,172 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 231754 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2317': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378732934/F41E84FCDC0AB52634348C439A6D1A725CEB8115/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378736378/628E179D5305E95AFC25D86526320A24F8B27391/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 3 + GMNotes: '' + GUID: '629941' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The King in Tatters + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -50.4310875 + posY: 1.62355936 + posZ: 0.156143531 + rotX: 0.0170595013 + rotY: 179.973053 + rotZ: 0.078828 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231753 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2317': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378732934/F41E84FCDC0AB52634348C439A6D1A725CEB8115/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378736378/628E179D5305E95AFC25D86526320A24F8B27391/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 2 + GMNotes: '' + GUID: e90cf9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Search For the Stranger (v. III) + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -50.1188354 + posY: 1.78419518 + posZ: -0.198043808 + rotX: 0.0175960977 + rotY: 179.995438 + rotZ: 0.07639478 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231750 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2317': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378732934/F41E84FCDC0AB52634348C439A6D1A725CEB8115/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378736378/628E179D5305E95AFC25D86526320A24F8B27391/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 1 + GMNotes: '' + GUID: 99d2b8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: In Lost Carcosa + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -50.2528076 + posY: 1.78613138 + posZ: 0.07602682 + rotX: 0.0190153774 + rotY: 179.998825 + rotZ: 0.09153093 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2317': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378732934/F41E84FCDC0AB52634348C439A6D1A725CEB8115/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378736378/628E179D5305E95AFC25D86526320A24F8B27391/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 231754 +- 231753 +- 231750 +Description: 6+ Total, more Conviction than Doubt +GMNotes: '' +GUID: e95232 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Act Deck (v. III) +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -18.2156963 + posY: 3.64713454 + posZ: 40.22149 + rotX: 0.909755468 + rotY: 179.967789 + rotZ: 357.556976 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 8 Dim Carcosa ce5d30/Bag Starting Locations 85e306.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 8 Dim Carcosa ce5d30/Bag Starting Locations 85e306.yaml new file mode 100644 index 000000000..31972363e --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 8 Dim Carcosa ce5d30/Bag Starting Locations 85e306.yaml @@ -0,0 +1,40 @@ +Autoraise: true +ColorDiffuse: + b: 0.0 + g: 0.0 + r: 0.0 +ContainedObjects: +- !include 'Bag Starting Locations 85e306/Deck Bleak Plains 7ff02d.yaml' +- !include 'Bag Starting Locations 85e306/Deck 23d93a.yaml' +- !include 'Bag Starting Locations 85e306/Deck Ruins of Carcosa e5cbf3.yaml' +- !include 'Bag Starting Locations 85e306/Deck Depths of Demhe 8a5aff.yaml' +Description: Shuffle each of the four location piles and randomly put one into play, + and set the remaining copies aside out of play. +GMNotes: '' +GUID: 85e306 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +MeshIndex: -1 +Name: Bag +Nickname: Starting Locations +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 1.2838341 + posY: 1.39440274 + posZ: -0.7698433 + rotX: 359.919647 + rotY: 270.0006 + rotZ: 0.0168727413 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 8 Dim Carcosa ce5d30/Bag Starting Locations 85e306/Deck 23d93a.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 8 Dim Carcosa ce5d30/Bag Starting Locations 85e306/Deck 23d93a.yaml new file mode 100644 index 000000000..0d12e6b9d --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 8 Dim Carcosa ce5d30/Bag Starting Locations 85e306/Deck 23d93a.yaml @@ -0,0 +1,172 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 231953 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378686851/006B65A59360F63826342C2B1A062C1AD727BD53/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378687267/945F8EF94DC605E0731E37C1BCD3FE65FCB86D02/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Otherworld. + GMNotes: '' + GUID: a36819 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dim Streets + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -5.602935 + posY: 1.57085276 + posZ: 33.6489334 + rotX: 359.921082 + rotY: 270.0011 + rotZ: 0.0102269836 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231954 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378686851/006B65A59360F63826342C2B1A062C1AD727BD53/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378687267/945F8EF94DC605E0731E37C1BCD3FE65FCB86D02/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Otherworld. + GMNotes: '' + GUID: 309dcd + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dim Streets + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -5.60269833 + posY: 1.70787287 + posZ: 33.6480026 + rotX: 359.972565 + rotY: 270.001923 + rotZ: 359.891846 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231952 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378686851/006B65A59360F63826342C2B1A062C1AD727BD53/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378687267/945F8EF94DC605E0731E37C1BCD3FE65FCB86D02/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Otherworld. + GMNotes: '' + GUID: f897e5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dim Streets + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -5.6028986 + posY: 1.73829353 + posZ: 33.6482773 + rotX: 359.9222 + rotY: 269.999756 + rotZ: 0.015897233 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378686851/006B65A59360F63826342C2B1A062C1AD727BD53/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378687267/945F8EF94DC605E0731E37C1BCD3FE65FCB86D02/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 231953 +- 231954 +- 231952 +Description: '' +GMNotes: '' +GUID: 23d93a +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -30.224268 + posY: 3.77062654 + posZ: -0.0300033931 + rotX: 359.985016 + rotY: 270.001129 + rotZ: 0.0136114368 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 8 Dim Carcosa ce5d30/Bag Starting Locations 85e306/Deck Bleak Plains 7ff02d.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 8 Dim Carcosa ce5d30/Bag Starting Locations 85e306/Deck Bleak Plains 7ff02d.yaml new file mode 100644 index 000000000..911108315 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 8 Dim Carcosa ce5d30/Bag Starting Locations 85e306/Deck Bleak Plains 7ff02d.yaml @@ -0,0 +1,129 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 231947 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378686851/006B65A59360F63826342C2B1A062C1AD727BD53/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378687267/945F8EF94DC605E0731E37C1BCD3FE65FCB86D02/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Otherworld. + GMNotes: '' + GUID: 468c5f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Bleak Plains + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -23.6974163 + posY: 1.59583151 + posZ: 32.5184135 + rotX: 359.922577 + rotY: 270.0007 + rotZ: 0.01467829 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231948 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378686851/006B65A59360F63826342C2B1A062C1AD727BD53/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378687267/945F8EF94DC605E0731E37C1BCD3FE65FCB86D02/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Otherworld. + GMNotes: '' + GUID: ccd8f5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Bleak Plains + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -23.3781872 + posY: 1.70958352 + posZ: 32.30068 + rotX: 358.16745 + rotY: 269.980774 + rotZ: 0.8031423 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378686851/006B65A59360F63826342C2B1A062C1AD727BD53/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378687267/945F8EF94DC605E0731E37C1BCD3FE65FCB86D02/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 231947 +- 231948 +Description: '' +GMNotes: '' +GUID: 7ff02d +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Bleak Plains +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -30.2242737 + posY: 3.77796245 + posZ: -0.030003164 + rotX: 359.984924 + rotY: 270.000031 + rotZ: 0.0136169074 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 8 Dim Carcosa ce5d30/Bag Starting Locations 85e306/Deck Depths of Demhe 8a5aff.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 8 Dim Carcosa ce5d30/Bag Starting Locations 85e306/Deck Depths of Demhe 8a5aff.yaml new file mode 100644 index 000000000..e49063b65 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 8 Dim Carcosa ce5d30/Bag Starting Locations 85e306/Deck Depths of Demhe 8a5aff.yaml @@ -0,0 +1,129 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 231955 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378686851/006B65A59360F63826342C2B1A062C1AD727BD53/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378687267/945F8EF94DC605E0731E37C1BCD3FE65FCB86D02/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Otherworld. + GMNotes: '' + GUID: 01030c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Depths of Demhe + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -21.5778542 + posY: 1.59401619 + posZ: 36.431263 + rotX: 359.920227 + rotY: 269.999939 + rotZ: 0.0158797055 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231956 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378686851/006B65A59360F63826342C2B1A062C1AD727BD53/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378687267/945F8EF94DC605E0731E37C1BCD3FE65FCB86D02/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Otherworld. + GMNotes: '' + GUID: a53069 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Depths of Demhe + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -21.50017 + posY: 1.73942137 + posZ: 36.47755 + rotX: 359.915649 + rotY: 270.0006 + rotZ: 0.000135550043 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378686851/006B65A59360F63826342C2B1A062C1AD727BD53/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378687267/945F8EF94DC605E0731E37C1BCD3FE65FCB86D02/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 231955 +- 231956 +Description: '' +GMNotes: '' +GUID: 8a5aff +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Depths of Demhe +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -30.22526 + posY: 3.23860455 + posZ: -0.02978911 + rotX: 359.984955 + rotY: 270.000061 + rotZ: 0.0135815088 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 8 Dim Carcosa ce5d30/Bag Starting Locations 85e306/Deck Ruins of Carcosa e5cbf3.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 8 Dim Carcosa ce5d30/Bag Starting Locations 85e306/Deck Ruins of Carcosa e5cbf3.yaml new file mode 100644 index 000000000..8866805b9 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 8 Dim Carcosa ce5d30/Bag Starting Locations 85e306/Deck Ruins of Carcosa e5cbf3.yaml @@ -0,0 +1,172 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 231951 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378686851/006B65A59360F63826342C2B1A062C1AD727BD53/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378687267/945F8EF94DC605E0731E37C1BCD3FE65FCB86D02/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Otherworld. + GMNotes: '' + GUID: ea3b91 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ruins of Carcosa + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -22.92964 + posY: 1.5937041 + posZ: 28.9959183 + rotX: 359.920349 + rotY: 269.9998 + rotZ: 0.0153476419 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231949 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378686851/006B65A59360F63826342C2B1A062C1AD727BD53/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378687267/945F8EF94DC605E0731E37C1BCD3FE65FCB86D02/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Otherworld. + GMNotes: '' + GUID: aa7e10 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ruins of Carcosa + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -23.1247711 + posY: 1.755088 + posZ: 28.9446888 + rotX: 359.9404 + rotY: 270.0 + rotZ: 0.0121237421 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231950 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378686851/006B65A59360F63826342C2B1A062C1AD727BD53/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378687267/945F8EF94DC605E0731E37C1BCD3FE65FCB86D02/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Otherworld. + GMNotes: '' + GUID: 79295e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ruins of Carcosa + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -5.60114765 + posY: 1.73108768 + posZ: 23.98645 + rotX: 359.9389 + rotY: 270.000183 + rotZ: 0.00380836241 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378686851/006B65A59360F63826342C2B1A062C1AD727BD53/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378687267/945F8EF94DC605E0731E37C1BCD3FE65FCB86D02/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 231951 +- 231949 +- 231950 +Description: '' +GMNotes: '' +GUID: e5cbf3 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Ruins of Carcosa +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -30.224268 + posY: 3.77062631 + posZ: -0.0300033987 + rotX: 359.985016 + rotY: 270.0003 + rotZ: 0.0135877151 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 8 Dim Carcosa ce5d30/Card Scenario b52eaf.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 8 Dim Carcosa ce5d30/Card Scenario b52eaf.yaml new file mode 100644 index 000000000..6f8412fd4 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 8 Dim Carcosa ce5d30/Card Scenario b52eaf.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 231945 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378686851/006B65A59360F63826342C2B1A062C1AD727BD53/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378687267/945F8EF94DC605E0731E37C1BCD3FE65FCB86D02/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Dim Carcosa +GMNotes: '' +GUID: b52eaf +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Scenario +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.955992 + posY: 1.65564811 + posZ: -10.4411554 + rotX: 359.919739 + rotY: 269.999847 + rotZ: 0.0168411136 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 8 Dim Carcosa ce5d30/Custom_Model_Bag Set-aside 714050.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 8 Dim Carcosa ce5d30/Custom_Model_Bag Set-aside 714050.yaml new file mode 100644 index 000000000..29df17aa0 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 8 Dim Carcosa ce5d30/Custom_Model_Bag Set-aside 714050.yaml @@ -0,0 +1,59 @@ +Autoraise: true +ColorDiffuse: + b: 0.02148666 + g: 0.00100758043 + r: 0.02148666 +ContainedObjects: +- !include 'Custom_Model_Bag Set-aside 714050/Bag The Tattered King 6358c5.yaml' +- !include 'Custom_Model_Bag Set-aside 714050/Bag Lord of Carcosa 7df9a1.yaml' +- !include 'Custom_Model_Bag Set-aside 714050/Bag The King in Yellow 3baf0e.yaml' +- !include 'Custom_Model_Bag Set-aside 714050/Card Beast of Aldebaran 83c7c3.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: Dim Carcosa +GMNotes: '' +GUID: '714050' +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +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.69653738 + posY: 1.55831647 + posZ: 14.2785788 + rotX: 359.955139 + rotY: 224.997971 + rotZ: 0.068672955 + scaleX: 2.0 + scaleY: 2.0 + scaleZ: 2.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 8 Dim Carcosa ce5d30/Custom_Model_Bag Set-aside 714050/Bag Lord of Carcosa 7df9a1.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 8 Dim Carcosa ce5d30/Custom_Model_Bag Set-aside 714050/Bag Lord of Carcosa 7df9a1.yaml new file mode 100644 index 000000000..11f5342fa --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 8 Dim Carcosa ce5d30/Custom_Model_Bag Set-aside 714050/Bag Lord of Carcosa 7df9a1.yaml @@ -0,0 +1,77 @@ +Autoraise: true +ColorDiffuse: + b: 0.2560976 + g: 0.9920437 + r: 1.0 +ContainedObjects: +- Autoraise: true + CardID: 232259 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Lord of Carcosa + GMNotes: '' + GUID: 5276ed + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Hastur + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -28.84366 + posY: 3.64523244 + posZ: 23.7113132 + rotX: 358.7962 + rotY: 269.989624 + rotZ: 3.08997846 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +Description: '' +GMNotes: '' +GUID: 7df9a1 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +MeshIndex: -1 +Name: Bag +Nickname: Lord of Carcosa +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -22.5792942 + posY: 3.38823223 + posZ: 25.80425 + rotX: 359.975 + rotY: 359.993866 + rotZ: 359.9368 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 8 Dim Carcosa ce5d30/Custom_Model_Bag Set-aside 714050/Bag The King in Yellow 3baf0e.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 8 Dim Carcosa ce5d30/Custom_Model_Bag Set-aside 714050/Bag The King in Yellow 3baf0e.yaml new file mode 100644 index 000000000..1cd0021f5 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 8 Dim Carcosa ce5d30/Custom_Model_Bag Set-aside 714050/Bag The King in Yellow 3baf0e.yaml @@ -0,0 +1,77 @@ +Autoraise: true +ColorDiffuse: + b: 0.256097645 + g: 0.9920437 + r: 1.0 +ContainedObjects: +- Autoraise: true + CardID: 232258 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: The King in Yellow + GMNotes: '' + GUID: bce5af + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Hastur + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -65.14686 + posY: 3.6819582 + posZ: 16.2590427 + rotX: 357.814362 + rotY: 269.9367 + rotZ: 2.209997 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +Description: '' +GMNotes: '' +GUID: 3baf0e +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +MeshIndex: -1 +Name: Bag +Nickname: The King in Yellow +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -22.6787586 + posY: 3.38920474 + posZ: 26.48397 + rotX: 359.938049 + rotY: 359.984467 + rotZ: 359.840332 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 8 Dim Carcosa ce5d30/Custom_Model_Bag Set-aside 714050/Bag The Tattered King 6358c5.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 8 Dim Carcosa ce5d30/Custom_Model_Bag Set-aside 714050/Bag The Tattered King 6358c5.yaml new file mode 100644 index 000000000..13ce87381 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 8 Dim Carcosa ce5d30/Custom_Model_Bag Set-aside 714050/Bag The Tattered King 6358c5.yaml @@ -0,0 +1,77 @@ +Autoraise: true +ColorDiffuse: + b: 0.2560976 + g: 0.9920437 + r: 1.0 +ContainedObjects: +- Autoraise: true + CardID: 232260 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: The Tattered King + GMNotes: '' + GUID: 4475b1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Hastur + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -26.1907215 + posY: 3.628876 + posZ: 21.339592 + rotX: 358.461182 + rotY: 269.937134 + rotZ: 3.128103 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +Description: '' +GMNotes: '' +GUID: 6358c5 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +MeshIndex: -1 +Name: Bag +Nickname: The Tattered King +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -23.1777153 + posY: 3.38121772 + posZ: 26.1751213 + rotX: 359.864868 + rotY: 0.0592801943 + rotZ: 0.994646966 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 8 Dim Carcosa ce5d30/Custom_Model_Bag Set-aside 714050/Card Beast of Aldebaran 83c7c3.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 8 Dim Carcosa ce5d30/Custom_Model_Bag Set-aside 714050/Card Beast of Aldebaran 83c7c3.yaml new file mode 100644 index 000000000..e9107a8d7 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 8 Dim Carcosa ce5d30/Custom_Model_Bag Set-aside 714050/Card Beast of Aldebaran 83c7c3.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 232212 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: Monster. Elite. +GMNotes: '' +GUID: 83c7c3 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Beast of Aldebaran +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 1.696426 + posY: 3.72838259 + posZ: 14.2788391 + rotX: 359.948 + rotY: 224.998062 + rotZ: 0.05835601 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 8 Dim Carcosa ce5d30/Custom_Tile 258731.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 8 Dim Carcosa ce5d30/Custom_Tile 258731.yaml new file mode 100644 index 000000000..fed66a1ec --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 8 Dim Carcosa ce5d30/Custom_Tile 258731.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: '258731' +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.2241573 + posY: 1.62478268 + posZ: 3.85998464 + rotX: 0.0169035532 + rotY: 179.977341 + rotZ: 0.07994419 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 8 Dim Carcosa ce5d30/Custom_Tile 691fe9.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 8 Dim Carcosa ce5d30/Custom_Tile 691fe9.yaml new file mode 100644 index 000000000..016c38949 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 8 Dim Carcosa ce5d30/Custom_Tile 691fe9.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 691fe9 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.3427734 + posY: 1.6291188 + posZ: 3.81799221 + rotX: 359.955444 + rotY: 225.004852 + rotZ: 0.06841373 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 8 Dim Carcosa ce5d30/Custom_Tile 739c55.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 8 Dim Carcosa ce5d30/Custom_Tile 739c55.yaml new file mode 100644 index 000000000..cfe1941d4 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 8 Dim Carcosa ce5d30/Custom_Tile 739c55.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 739c55 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: -39.9849777 + posY: 1.63724923 + posZ: -0.0255514868 + rotX: 0.07989528 + rotY: 90.00267 + rotZ: 359.9831 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 8 Dim Carcosa ce5d30/Custom_Tile 868a4d.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 8 Dim Carcosa ce5d30/Custom_Tile 868a4d.yaml new file mode 100644 index 000000000..855a6bd9e --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 8 Dim Carcosa ce5d30/Custom_Tile 868a4d.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 868a4d +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.1755219 + posY: 1.60961652 + posZ: -0.05933434 + rotX: 0.07989502 + rotY: 90.0026245 + rotZ: 359.9831 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 8 Dim Carcosa ce5d30/Custom_Tile add354.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 8 Dim Carcosa ce5d30/Custom_Tile add354.yaml new file mode 100644 index 000000000..cc1d47af0 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 8 Dim Carcosa ce5d30/Custom_Tile add354.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: add354 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.0048141 + posY: 1.62023461 + posZ: 3.660944 + rotX: 0.06843093 + rotY: 134.9998 + rotZ: 0.0445614047 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 8 Dim Carcosa ce5d30/Custom_Tile c8ff2d.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 8 Dim Carcosa ce5d30/Custom_Tile c8ff2d.yaml new file mode 100644 index 000000000..74b0f9769 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 8 Dim Carcosa ce5d30/Custom_Tile c8ff2d.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: c8ff2d +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.2759781 + posY: 1.62672579 + posZ: -3.99223232 + rotX: 0.06832409 + rotY: 135.140152 + rotZ: 0.0447295681 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 8 Dim Carcosa ce5d30/Custom_Tile d6e210.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 8 Dim Carcosa ce5d30/Custom_Tile d6e210.yaml new file mode 100644 index 000000000..f5ea6c4e4 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 8 Dim Carcosa ce5d30/Custom_Tile d6e210.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: d6e210 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.4601288 + posY: 1.61729717 + posZ: -3.73546076 + rotX: 359.955444 + rotY: 224.999588 + rotZ: 0.06840513 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 8 Dim Carcosa ce5d30/Custom_Tile e96c38.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 8 Dim Carcosa ce5d30/Custom_Tile e96c38.yaml new file mode 100644 index 000000000..a2c785dda --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 8 Dim Carcosa ce5d30/Custom_Tile e96c38.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: e96c38 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.62251818 + posZ: -3.82992816 + rotX: 0.0169035755 + rotY: 179.97731 + rotZ: 0.0799445137 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 8 Dim Carcosa ce5d30/Custom_Tile Dim Carcosa 9afdfd.ttslua b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 8 Dim Carcosa ce5d30/Custom_Tile Dim Carcosa 9afdfd.ttslua new file mode 100644 index 000000000..710b4a84e --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 8 Dim Carcosa ce5d30/Custom_Tile Dim Carcosa 9afdfd.ttslua @@ -0,0 +1,25 @@ +name = 'Dim Carcosa' + +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 + +function standaloneClick() + Global.call('fillContainer', {object=self, key=name, mode='standalone'}) +end diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 8 Dim Carcosa ce5d30/Custom_Tile Dim Carcosa 9afdfd.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 8 Dim Carcosa ce5d30/Custom_Tile Dim Carcosa 9afdfd.yaml new file mode 100644 index 000000000..4e9545a06 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 8 Dim Carcosa ce5d30/Custom_Tile Dim Carcosa 9afdfd.yaml @@ -0,0 +1,42 @@ +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 +GMNotes: '' +GUID: 9afdfd +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Tile Dim Carcosa 9afdfd.ttslua' +LuaScriptState: '' +Name: Custom_Tile +Nickname: Dim Carcosa +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.73130155 + posY: 1.582341 + posZ: -14.7936106 + rotX: 359.919739 + rotY: 269.9989 + rotZ: 0.01683921 + scaleX: 2.2 + scaleY: 1.0 + scaleZ: 2.2 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 8 Dim Carcosa ce5d30/Deck Agenda Deck ebe737.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 8 Dim Carcosa ce5d30/Deck Agenda Deck ebe737.yaml new file mode 100644 index 000000000..0dc996098 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 8 Dim Carcosa ce5d30/Deck Agenda Deck ebe737.yaml @@ -0,0 +1,172 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 231749 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2317': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378732934/F41E84FCDC0AB52634348C439A6D1A725CEB8115/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378736378/628E179D5305E95AFC25D86526320A24F8B27391/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: 'Agenda ' + GMNotes: '' + GUID: c1397c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Madness Dies + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -48.19565 + posY: 1.62247419 + posZ: 7.251039 + rotX: 0.0169690885 + rotY: 180.920578 + rotZ: 0.07551854 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231748 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2317': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378732934/F41E84FCDC0AB52634348C439A6D1A725CEB8115/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378736378/628E179D5305E95AFC25D86526320A24F8B27391/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 2 + GMNotes: '' + GUID: 09a5e0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Madness Drowns + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -48.22564 + posY: 1.76786089 + posZ: 7.382757 + rotX: 0.0304357037 + rotY: 180.023148 + rotZ: 0.07329072 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231747 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2317': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378732934/F41E84FCDC0AB52634348C439A6D1A725CEB8115/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378736378/628E179D5305E95AFC25D86526320A24F8B27391/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 1 + GMNotes: '' + GUID: 3da436 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Madness Coils + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -48.3123741 + posY: 1.785375 + posZ: 6.84433 + rotX: 0.01081464 + rotY: 180.006546 + rotZ: 0.07941174 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2317': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378732934/F41E84FCDC0AB52634348C439A6D1A725CEB8115/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378736378/628E179D5305E95AFC25D86526320A24F8B27391/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 231749 +- 231748 +- 231747 +Description: '' +GMNotes: '' +GUID: ebe737 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Agenda Deck +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.72475386 + posY: 1.65664124 + posZ: 0.373331726 + rotX: 0.0168364681 + rotY: 179.998917 + rotZ: 0.0802572742 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 8 Dim Carcosa ce5d30/Deck Encounter Deck 546046.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 8 Dim Carcosa ce5d30/Deck Encounter Deck 546046.yaml new file mode 100644 index 000000000..09fec84ac --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 8 Dim Carcosa ce5d30/Deck Encounter Deck 546046.yaml @@ -0,0 +1,1605 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 234229 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2342': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: 4cf636 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Yellow Sign + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -21.308609 + posY: 1.97501338 + posZ: 33.1643181 + rotX: 359.936218 + rotY: 269.999939 + rotZ: 180.014038 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234229 + 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 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: 74a845 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Yellow Sign + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -18.39433 + posY: 1.745 + posZ: 9.752235 + rotX: 359.928131 + rotY: 269.996552 + rotZ: 0.0164207779 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234228 + 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 + UniqueBack: false + Description: Monster. Byakhee. + GMNotes: '' + GUID: ab3719 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Screeching Byakhee + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -18.9733372 + posY: 1.58185852 + posZ: 7.530837 + rotX: 359.920441 + rotY: 269.999878 + rotZ: 0.0146859353 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234228 + 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 + UniqueBack: false + Description: Monster. Byakhee. + GMNotes: '' + GUID: 6fc5fa + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Screeching Byakhee + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -18.7373314 + posY: 1.73706949 + posZ: 7.34839153 + rotX: 359.923981 + rotY: 269.9999 + rotZ: 0.0115116611 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232268 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hex. Terror. + GMNotes: '' + GUID: b1fe02 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Possession (Murderous) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.2899819 + posY: 1.98361123 + posZ: 37.732872 + rotX: 359.95343 + rotY: 269.998962 + rotZ: 181.528839 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232267 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hex. Terror. + GMNotes: '' + GUID: f5c5c4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Possession (Torturous) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.5915995 + posY: 1.93822253 + posZ: 38.52549 + rotX: 359.955963 + rotY: 269.915771 + rotZ: 180.22345 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232266 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hex. Terror. + GMNotes: '' + GUID: bce5af + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Possession (Traitorous) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.5400688 + posY: 1.90004408 + posZ: 38.18977 + rotX: 359.452545 + rotY: 270.032623 + rotZ: 178.640411 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232265 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: bce5af + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Final Act + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.222007483 + posY: 1.91862786 + posZ: 38.675518 + rotX: 359.955017 + rotY: 269.99295 + rotZ: 180.007324 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232264 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: bce5af + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Realm of Madness + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -4.18937874 + posY: 1.56797123 + posZ: 30.3007717 + rotX: 359.920258 + rotY: 269.998749 + rotZ: 0.0159036145 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232264 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: 8fcde7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Realm of Madness + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -4.130993 + posY: 1.72906506 + posZ: 30.25037 + rotX: 359.938873 + rotY: 270.0 + rotZ: 0.0100132488 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232263 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Curse. Terror. + GMNotes: '' + GUID: bce5af + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dismal Curse + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -4.53505564 + posY: 1.56818 + posZ: 29.43088 + rotX: 359.920441 + rotY: 269.999939 + rotZ: 0.0147806508 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232263 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Curse. Terror. + GMNotes: '' + GUID: 8bf800 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dismal Curse + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -4.95459 + posY: 1.72939789 + posZ: 29.5860748 + rotX: 359.930542 + rotY: 269.9987 + rotZ: 0.00481055444 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232263 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Curse. Terror. + GMNotes: '' + GUID: bce5af + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dismal Curse + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -4.948645 + posY: 1.74341035 + posZ: 29.5864925 + rotX: 359.9231 + rotY: 269.9987 + rotZ: 0.01338054 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232262 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Byakhee. + GMNotes: '' + GUID: bce5af + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Winged One + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.400121242 + posY: 1.85907924 + posZ: 37.5909958 + rotX: 359.935974 + rotY: 270.0 + rotZ: 180.015518 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232261 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. + GMNotes: '' + GUID: bce5af + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Creature Out of Demhe + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.995727062 + posY: 1.84892666 + posZ: 38.1687965 + rotX: 359.9324 + rotY: 270.00946 + rotZ: 180.021774 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232209 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: 837dc0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Descent into Madness + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -8.254647 + posY: 1.56856728 + posZ: 13.1639223 + rotX: 359.9206 + rotY: 270.010376 + rotZ: 0.0141025912 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232209 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: b5a670 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Descent into Madness + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -7.994349 + posY: 1.72873139 + posZ: 13.4239607 + rotX: 359.910156 + rotY: 270.010345 + rotZ: 359.9914 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232206 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: a13701 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Whispers in Your Head (Doubt) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -8.13497 + posY: 1.73145211 + posZ: 13.3962345 + rotX: 359.9188 + rotY: 270.00116 + rotZ: 0.0158020761 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232205 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: 42b8dc + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Whispers in Your Head (Anxiety) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -7.656395 + posY: 1.73211765 + posZ: 13.2479944 + rotX: 359.900421 + rotY: 270.000153 + rotZ: 0.006056429 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232207 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: ec66a0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Whispers in Your Head (Dread) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -8.143007 + posY: 1.71549714 + posZ: 12.48624 + rotX: 359.929932 + rotY: 270.014252 + rotZ: 0.007635473 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232208 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: 4bea40 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Whispers in Your Head (Dismay) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -7.971472 + posY: 1.718169 + posZ: 13.2703743 + rotX: 359.920532 + rotY: 269.99942 + rotZ: 0.0161604 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232224 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Pact. + GMNotes: '' + GUID: e20141 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The King's Edict + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -45.28207 + posY: 1.61571622 + posZ: -1.99931252 + rotX: 359.920471 + rotY: 269.999542 + rotZ: 0.0138937524 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232224 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Pact. + GMNotes: '' + GUID: '522968' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The King's Edict + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -45.3332253 + posY: 1.76760066 + posZ: -1.86887467 + rotX: 359.932678 + rotY: 269.9998 + rotZ: -0.00222653663 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232223 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Cultist. + GMNotes: '' + GUID: 0bf1f8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Agent of the King + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -45.31658 + posY: 1.77869308 + posZ: -1.76723373 + rotX: 359.925659 + rotY: 270.030243 + rotZ: 359.9921 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232222 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Cultist. + GMNotes: '' + GUID: 8ada81 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Fanatic + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -46.03409 + posY: 1.61745238 + posZ: 0.648399532 + rotX: 359.9214 + rotY: 269.999054 + rotZ: 0.00768406037 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232222 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Cultist. + GMNotes: '' + GUID: dcaaad + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Fanatic + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -45.8543549 + posY: 1.76917815 + posZ: 0.300536335 + rotX: 359.907532 + rotY: 269.998657 + rotZ: 0.0211735331 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232222 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Cultist. + GMNotes: '' + GUID: 8ada81 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Fanatic + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -45.8543625 + posY: 1.80176485 + posZ: 0.3005505 + rotX: 359.920227 + rotY: 269.998779 + rotZ: 0.0167158749 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232213 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. + GMNotes: '' + GUID: e9dc22 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Spawn of Hali + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -41.0218 + posY: 1.61205661 + posZ: 5.752819 + rotX: 359.920532 + rotY: 270.00177 + rotZ: 0.013646706 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232213 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. + GMNotes: '' + GUID: d46d72 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Spawn of Hali + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -40.7112732 + posY: 1.76276219 + posZ: 5.71570444 + rotX: 359.92627 + rotY: 270.001953 + rotZ: 0.00491145067 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 269618 + 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 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: f5c831 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 269618 + 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 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: 97416f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 269617 + 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 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: 0f4202 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 269617 + 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 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: c70601 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 269616 + 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 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: ab3719 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 269616 + 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 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: 435a47 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 269616 + 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 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: ab3719 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' +CustomDeck: + '2322': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378761608/B291D276D6FF71FDB43B69DE7507D56767BE975E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '2342': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '2696': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775106514377430057/E4E5A51434CEF23EF5D04A104F352520304AA550/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 234229 +- 234229 +- 234228 +- 234228 +- 232268 +- 232267 +- 232266 +- 232265 +- 232264 +- 232264 +- 232263 +- 232263 +- 232263 +- 232262 +- 232261 +- 232209 +- 232209 +- 232206 +- 232205 +- 232207 +- 232208 +- 232224 +- 232224 +- 232223 +- 232222 +- 232222 +- 232222 +- 232213 +- 232213 +- 269618 +- 269618 +- 269617 +- 269617 +- 269616 +- 269616 +- 269616 +Description: '' +GMNotes: '' +GUID: '546046' +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Encounter Deck +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.92773414 + posY: 1.8036865 + posZ: 5.757155 + rotX: 359.919739 + rotY: 269.999725 + rotZ: 180.016815 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 8 Dim Carcosa ce5d30/Deck Locations fbd1ad.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 8 Dim Carcosa ce5d30/Deck Locations fbd1ad.yaml new file mode 100644 index 000000000..aa35f6ce7 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 8 Dim Carcosa ce5d30/Deck Locations fbd1ad.yaml @@ -0,0 +1,172 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 231958 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378686851/006B65A59360F63826342C2B1A062C1AD727BD53/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378687267/945F8EF94DC605E0731E37C1BCD3FE65FCB86D02/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Otherworld. + GMNotes: '' + GUID: 2957b5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Palace of the King + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -16.5657425 + posY: 1.58459747 + posZ: 28.1434612 + rotX: 359.9202 + rotY: 269.999969 + rotZ: 0.01639441 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231957 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378686851/006B65A59360F63826342C2B1A062C1AD727BD53/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378687267/945F8EF94DC605E0731E37C1BCD3FE65FCB86D02/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Otherworld. + GMNotes: '' + GUID: 1622d3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dark Spires + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -16.4692364 + posY: 1.74573135 + posZ: 28.4192219 + rotX: 359.921875 + rotY: 269.999939 + rotZ: 0.0138689764 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231946 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378686851/006B65A59360F63826342C2B1A062C1AD727BD53/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378687267/945F8EF94DC605E0731E37C1BCD3FE65FCB86D02/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Otherworld. + GMNotes: '' + GUID: 82360a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Shores of Hali + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -16.686058 + posY: 1.763217 + posZ: 27.87672 + rotX: 359.920074 + rotY: 269.999969 + rotZ: 0.01658565 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/775107058378686851/006B65A59360F63826342C2B1A062C1AD727BD53/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107058378687267/945F8EF94DC605E0731E37C1BCD3FE65FCB86D02/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 231958 +- 231957 +- 231946 +Description: '' +GMNotes: '' +GUID: fbd1ad +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Locations +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 1.31254721 + posY: 1.65144145 + posZ: 1.92283738 + rotX: 359.919739 + rotY: 269.999817 + rotZ: 0.01684135 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 8 Dim Carcosa ce5d30/Notecard Errata 1 d28c77.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 8 Dim Carcosa ce5d30/Notecard Errata 1 d28c77.yaml new file mode 100644 index 000000000..739aebca2 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Model_Bag 8 Dim Carcosa ce5d30/Notecard Errata 1 d28c77.yaml @@ -0,0 +1,70 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +Description: "Madness Dies (319)\r\nThis act\u2019s second ability should read: \u201C\ + Hastur cannot be defeated unless an\r\ninvestigator \u2018knows the secret.\u2019\ + \u201D\r" +GMNotes: '' +GUID: d28c77 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Notecard +Nickname: Errata 1 +Snap: true +States: + '2': + Autoraise: true + ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 + Description: "Realm of Madness (338)\r\nThis card\u2019s [b][i]Revelation[/b][/i]\ + \ ability should read: \u201CDiscard cards from your play\r area and/or from\ + \ your hand\u2026\u201D" + GMNotes: '' + GUID: eb3493 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Notecard + Nickname: Errata 2 + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -48.2198257 + posY: 1.61588192 + posZ: -9.68225 + rotX: 0.07987787 + rotY: 89.9996262 + rotZ: 359.983124 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +Sticky: true +Tooltip: true +Transform: + posX: -11.21533 + posY: 1.560156 + posZ: -23.7335644 + rotX: 0.07987638 + rotY: 89.99257 + rotZ: 359.983124 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Tile Carcosa Campaign Log ae8317.ttslua b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Tile Carcosa Campaign Log ae8317.ttslua new file mode 100644 index 000000000..493fdf517 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Tile Carcosa Campaign Log ae8317.ttslua @@ -0,0 +1,613 @@ +--[[ Character Sheet Template by: MrStump + +You can set up your own character sheet if you follow these steps. + +Step 1) Change the character sheet image + -Right click on the character sheet, click Custom + -Replace the image URL with one for your character sheet + -Click import, make sure your sheet loads + -SAVE THE GAME (the table setup) + -LOAD FROM THAT SAVE YOU JUST MADE + +Step 2) Edit script to fit your character sheet + -Below you will see some general options, and then the big data table + -The data table is what determines how many of which buttons are made + -Checkboxes + -Counters + -Textboxes + -By default, there are 3 of each. You can add more or remove entries + -If you intend to add/remove, be sure only to add/remove ENTRIES + -This is what an entry looks like: + { + pos = {-0.977,0.1,-0.589}, + size = 800, + state = false + }, + -Deleting the whole thing would remove that specific item on the sheet + -Copy and pasting it after another entry would create another + -Each entry type has unique data points (pos, size, state, etc) + -Do not try to add in your own data points or remove them individually + -There is a summary of what each point does at the top of its category + +Step 3) Save and check script changes + -Hit Save & Apply in the script window to save your code + -You can edit your code as needed and Save+Apply as often as needed + -When you are finished, make disableSave = false below then Save+apply + -This enables saving, so your sheet will remember whats on it. + +Bonus) Finding/Editing Positions for elements + I have included a tool to get positions for buttons in {x,y,z} form + Place it where you want the center of your element to be + Then copy the table from the notes (lower right of screen) + You can highlight it and CTRL+C + Paste it into the data table where needed (pos=) + If you want to manually tweek the values: + {0,0,0} is the center of the character sheet + {1,0,0} is right, {-1,0,0} is left + {0,0,-1} is up, {0,0,1} is down + 0.1 for Y is the height off of the page. + If it was 0, it would be down inside the model of the sheet + +Begin editing below: ]] + +--Set this to true while editing and false when you have finished +disableSave = false +--Remember to set this to false once you are done making changes +--Then, after you save & apply it, save your game too + +--Color information for button text (r,g,b, values of 0-1) +buttonFontColor = {0,0,0} +--Color information for button background +buttonColor = {1,1,1} +--Change scale of button (Avoid changing if possible) +buttonScale = {0.1,0.1,0.1} + +--This is the button placement information +defaultButtonData = { + --Add checkboxes + checkbox = { + --[[ + pos = the position (pasted from the helper tool) + size = height/width/font_size for checkbox + state = default starting value for checkbox (true=checked, false=not) + ]] + --Doubt 1 + { + pos = {-0.482,0.1,0.776}, + size = 200, + state = false + }, + --Doubt 2 + { + pos = {-0.43,0.1,0.776}, + size = 200, + state = false + }, + --Doubt 3 + { + pos = {-0.38,0.1,0.775}, + size = 200, + state = false + }, + --Doubt 4 + { + pos = {-0.325,0.1,0.778}, + size = 200, + state = false + }, + --Doubt 5 + { + pos = {-0.27,0.1,0.779}, + size = 200, + state = false + }, + --Doubt 6 + { + pos = {-0.219,0.1,0.778}, + size = 200, + state = false + }, + --Doubt 7 + { + pos = {-0.168,0.1,0.782}, + size = 200, + state = false + }, + --Doubt 8 + { + pos = {-0.111,0.1,0.783}, + size = 200, + state = false + }, + --Conviction 1 + { + pos = {-0.736,0.1,0.868}, + size = 200, + state = false + }, + --Conviction 2 + { + pos = {-0.68,0.1,0.869}, + size = 200, + state = false + }, + --Conviction 3 + { + pos = {-0.626,0.1,0.869}, + size = 200, + state = false + }, + --Conviction 4 + { + pos = {-0.574,0.1,0.874}, + size = 200, + state = false + }, + --Conviction 5 + { + pos = {-0.519,0.1,0.874}, + size = 200, + state = false + }, + --Conviction 6 + { + pos = {-0.467,0.1,0.879}, + size = 200, + state = false + }, + --Conviction 7 + { + pos = {-0.416,0.1,0.876}, + size = 200, + state = false + }, + --Conviction 8 + { + pos = {-0.357,0.1,0.879}, + size = 200, + state = false + }, + --End of checkboxes + }, + --Add counters that have a + and - button + counter = { + --[[ + pos = the position (pasted from the helper tool) + size = height/width/font_size for counter + value = default starting value for counter + hideBG = if background of counter is hidden (true=hidden, false=not) + ]] + --Slot one counter 1 + { + pos = {-0.7,0.1,-0.45}, + size = 400, + value = 0, + hideBG = true + }, + --Slot one counter 2 + { + pos = {-0.52,0.1,-0.45}, + size = 400, + value = 0, + hideBG = true + }, + --Slot one xp 1 + { + pos = {-0.517,0.1,-0.55}, + size = 300, + value = 0, + hideBG = true + }, + --Slot two counter 1 + { + pos = {-0.274,0.1,-0.445}, + size = 400, + value = 0, + hideBG = true + }, + --Slot two counter 2 + { + pos = {-0.074,0.1,-0.445}, + size = 400, + value = 0, + hideBG = true + }, + --Slot two xp 1 + { + pos = {-0.061,0.1,-0.54}, + size = 300, + value = 0, + hideBG = true + }, + --Slot three counter 1 + { + pos = {0.153,0.1,-0.44}, + size = 400, + value = 0, + hideBG = true + }, + --Slot three counter 2 + { + pos = {0.379,0.1,-0.44}, + size = 400, + value = 0, + hideBG = true + }, + --Slot three xp 1 + { + pos = {0.38,0.1,-0.54}, + size = 300, + value = 0, + hideBG = true + }, + --Slot four counter 1 + { + pos = {0.614,0.1,-0.44}, + size = 400, + value = 0, + hideBG = true + }, + --Slot four counter 2 + { + pos = {0.82,0.1,-0.44}, + size = 400, + value = 0, + hideBG = true + }, + --Slot four xp 1 + { + pos = {0.827,0.1,-0.54}, + size = 300, + value = 0, + hideBG = true + }, + --Chasing The Stranger + { + pos = {0.414,0.1,0.106}, + size = 500, + value = 0, + hideBG = true + }, + + --End of counters + }, + --Add editable text boxes + textbox = { + --[[ + pos = the position (pasted from the helper tool) + rows = how many lines of text you want for this box + width = how wide the text box is + font_size = size of text. This and "rows" effect overall height + label = what is shown when there is no text. "" = nothing + value = text entered into box. "" = nothing + alignment = Number to indicate how you want text aligned + (1=Automatic, 2=Left, 3=Center, 4=Right, 5=Justified) + ]] + --Slot one player + { + pos = {-0.637,0.1,-0.70}, + rows = 1, + width = 2000, + font_size = 150, + label = "Click to type", + value = "", + alignment = 2 + }, + --Slot one investigator + { + pos = {-0.637,0.1,-0.625}, + rows = 1, + width = 2000, + font_size = 150, + label = "Click to type", + value = "", + alignment = 2 + }, + --Slot one story + { + pos = {-0.637,0.1,-0.32}, + rows = 5, + width = 2000, + font_size = 100, + label = "Click to type", + value = "", + alignment = 2 + }, + --Slot two player + { + pos = {-0.2,0.1,-0.70}, + rows = 1, + width = 2000, + font_size = 150, + label = "Click to type", + value = "", + alignment = 2 + }, + --Slot two investigator + { + pos = {-0.2,0.1,-0.625}, + rows = 1, + width = 2000, + font_size = 150, + label = "Click to type", + value = "", + alignment = 2 + }, + --Slot two story + { + pos = {-0.2,0.1,-0.32}, + rows = 5, + width = 2000, + font_size = 100, + label = "Click to type", + value = "", + alignment = 2 + }, + --Slot three player + { + pos = {0.241,0.1,-0.70}, + rows = 1, + width = 2000, + font_size = 150, + label = "Click to type", + value = "", + alignment = 2 + }, + --Slot three investigator + { + pos = {0.237,0.1,-0.625}, + rows = 1, + width = 2000, + font_size = 150, + label = "Click to type", + value = "", + alignment = 2 + }, + --Slot three story + { + pos = {0.24,0.1,-0.32}, + rows = 5, + width = 2000, + font_size = 100, + label = "Click to type", + value = "", + alignment = 2 + }, + --Slot four player + { + pos = {0.671,0.1,-0.70}, + rows = 1, + width = 2000, + font_size = 150, + label = "Click to type", + value = "", + alignment = 2 + }, + --Slot four investigator + { + pos = {0.671,0.1,-0.625}, + rows = 1, + width = 2000, + font_size = 150, + label = "Click to type", + value = "", + alignment = 2 + }, + --Slot four story + { + pos = {0.671,0.1,-0.32}, + rows = 5, + width = 2000, + font_size = 100, + label = "Click to type", + value = "", + alignment = 2 + }, + --Campaign Notes + { + pos = {-0.38,0.1,0.339}, + rows =16, + width = 3200, + font_size = 200, + label = "Click to type", + value = "", + alignment = 2 + }, + --VIPs Interviewed + { + pos = {0.43,0.1,0.338}, + rows = 6, + width = 3500, + font_size = 150, + label = "Click to type", + value = "", + alignment = 2 + }, + --VIPs Slain + { + pos = {0.43,0.1,0.643}, + rows = 6, + width = 3500, + font_size = 150, + label = "Click to type", + value = "", + alignment = 2 + }, + --End of textboxes + } +} + + + +--Lua beyond this point, I recommend doing something more fun with your life + + + +--Save function +function updateSave() + saved_data = JSON.encode(ref_buttonData) + if disableSave==true then saved_data="" end + self.script_state = saved_data +end + +--Startup procedure +function onload(saved_data) + if disableSave==true then saved_data="" end + if saved_data ~= "" then + local loaded_data = JSON.decode(saved_data) + ref_buttonData = loaded_data + else + ref_buttonData = defaultButtonData + end + + spawnedButtonCount = 0 + createCheckbox() + createCounter() + createTextbox() +end + + + +--Click functions for buttons + + + +--Checks or unchecks the given box +function click_checkbox(tableIndex, buttonIndex) + if ref_buttonData.checkbox[tableIndex].state == true then + ref_buttonData.checkbox[tableIndex].state = false + self.editButton({index=buttonIndex, label=""}) + else + ref_buttonData.checkbox[tableIndex].state = true + self.editButton({index=buttonIndex, label=string.char(10008)}) + end + updateSave() +end + +--Applies value to given counter display +function click_counter(tableIndex, buttonIndex, amount) + ref_buttonData.counter[tableIndex].value = ref_buttonData.counter[tableIndex].value + amount + self.editButton({index=buttonIndex, label=ref_buttonData.counter[tableIndex].value}) + updateSave() +end + +--Updates saved value for given text box +function click_textbox(i, value, selected) + if selected == false then + ref_buttonData.textbox[i].value = value + updateSave() + end +end + +--Dud function for if you have a background on a counter +function click_none() end + + + +--Button creation + + + +--Makes checkboxes +function createCheckbox() + for i, data in ipairs(ref_buttonData.checkbox) do + --Sets up reference function + local buttonNumber = spawnedButtonCount + local funcName = "checkbox"..i + local func = function() click_checkbox(i, buttonNumber) end + self.setVar(funcName, func) + --Sets up label + local label = "" + if data.state==true then label=string.char(10008) end + --Creates button and counts it + self.createButton({ + label=label, click_function=funcName, function_owner=self, + position=data.pos, height=data.size, width=data.size, + font_size=data.size, scale=buttonScale, + color=buttonColor, font_color=buttonFontColor + }) + spawnedButtonCount = spawnedButtonCount + 1 + end +end + +--Makes counters +function createCounter() + for i, data in ipairs(ref_buttonData.counter) do + --Sets up display + local displayNumber = spawnedButtonCount + --Sets up label + local label = data.value + --Sets height/width for display + local size = data.size + if data.hideBG == true then size = 0 end + --Creates button and counts it + self.createButton({ + label=label, click_function="click_none", function_owner=self, + position=data.pos, height=size, width=size, + font_size=data.size, scale=buttonScale, + color=buttonColor, font_color=buttonFontColor + }) + spawnedButtonCount = spawnedButtonCount + 1 + + --Sets up add 1 + local funcName = "counterAdd"..i + local func = function() click_counter(i, displayNumber, 1) end + self.setVar(funcName, func) + --Sets up label + local label = "+" + --Sets up position + local offsetDistance = (data.size/2 + data.size/4) * (buttonScale[1] * 0.002) + local pos = {data.pos[1] + offsetDistance, data.pos[2], data.pos[3]} + --Sets up size + local size = data.size / 2 + --Creates button and counts it + self.createButton({ + label=label, click_function=funcName, function_owner=self, + position=pos, height=size, width=size, + font_size=size, scale=buttonScale, + color=buttonColor, font_color=buttonFontColor + }) + spawnedButtonCount = spawnedButtonCount + 1 + + --Sets up subtract 1 + local funcName = "counterSub"..i + local func = function() click_counter(i, displayNumber, -1) end + self.setVar(funcName, func) + --Sets up label + local label = "-" + --Set up position + local pos = {data.pos[1] - offsetDistance, data.pos[2], data.pos[3]} + --Creates button and counts it + self.createButton({ + label=label, click_function=funcName, function_owner=self, + position=pos, height=size, width=size, + font_size=size, scale=buttonScale, + color=buttonColor, font_color=buttonFontColor + }) + spawnedButtonCount = spawnedButtonCount + 1 + end +end + +function createTextbox() + for i, data in ipairs(ref_buttonData.textbox) do + --Sets up reference function + local funcName = "textbox"..i + local func = function(_,_,val,sel) click_textbox(i,val,sel) end + self.setVar(funcName, func) + + self.createInput({ + input_function = funcName, + function_owner = self, + label = data.label, + alignment = data.alignment, + position = data.pos, + scale = buttonScale, + width = data.width, + height = (data.font_size*data.rows)+24, + font_size = data.font_size, + color = buttonColor, + font_color = buttonFontColor, + value = data.value, + }) + end +end diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Tile Carcosa Campaign Log ae8317.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Tile Carcosa Campaign Log ae8317.yaml new file mode 100644 index 000000000..d9c86fbb3 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 1b887c/Custom_Tile Carcosa Campaign Log ae8317.yaml @@ -0,0 +1,254 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.1 + Type: 0 + ImageScalar: 1.0 + ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/959719855119681662/AE2992DEADE3B91D3B4EF7CCFAFE2C8C546C778C/ + ImageURL: http://cloud-3.steamusercontent.com/ugc/952965089460818573/DCD92CF4945E80C9C8AF03B39B5DAE7576EAF2FC/ + WidthScale: 0.0 +Description: '' +GMNotes: '' +GUID: ae8317 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Tile Carcosa Campaign Log ae8317.ttslua' +LuaScriptState: '{"checkbox":[{"pos":[-0.482,0.1,0.776],"size":200,"state":false},{"pos":[-0.43,0.1,0.776],"size":200,"state":false},{"pos":[-0.38,0.1,0.775],"size":200,"state":false},{"pos":[-0.325,0.1,0.778],"size":200,"state":false},{"pos":[-0.27,0.1,0.779],"size":200,"state":false},{"pos":[-0.219,0.1,0.778],"size":200,"state":false},{"pos":[-0.168,0.1,0.782],"size":200,"state":false},{"pos":[-0.111,0.1,0.783],"size":200,"state":false},{"pos":[-0.736,0.1,0.868],"size":200,"state":false},{"pos":[-0.68,0.1,0.869],"size":200,"state":false},{"pos":[-0.626,0.1,0.869],"size":200,"state":false},{"pos":[-0.574,0.1,0.874],"size":200,"state":false},{"pos":[-0.519,0.1,0.874],"size":200,"state":false},{"pos":[-0.467,0.1,0.879],"size":200,"state":false},{"pos":[-0.416,0.1,0.876],"size":200,"state":false},{"pos":[-0.357,0.1,0.879],"size":200,"state":false}],"counter":[{"hideBG":true,"pos":[-0.7,0.1,-0.45],"size":400,"value":0},{"hideBG":true,"pos":[-0.52,0.1,-0.45],"size":400,"value":0},{"hideBG":true,"pos":[-0.517,0.1,-0.55],"size":300,"value":0},{"hideBG":true,"pos":[-0.274,0.1,-0.445],"size":400,"value":0},{"hideBG":true,"pos":[-0.074,0.1,-0.445],"size":400,"value":0},{"hideBG":true,"pos":[-0.061,0.1,-0.54],"size":300,"value":0},{"hideBG":true,"pos":[0.153,0.1,-0.44],"size":400,"value":0},{"hideBG":true,"pos":[0.379,0.1,-0.44],"size":400,"value":0},{"hideBG":true,"pos":[0.38,0.1,-0.54],"size":300,"value":0},{"hideBG":true,"pos":[0.614,0.1,-0.44],"size":400,"value":0},{"hideBG":true,"pos":[0.82,0.1,-0.44],"size":400,"value":0},{"hideBG":true,"pos":[0.827,0.1,-0.54],"size":300,"value":0},{"hideBG":true,"pos":[0.414,0.1,0.106],"size":500,"value":0}],"textbox":[{"alignment":2,"font_size":150,"label":"Click + to type","pos":[-0.637,0.1,-0.7],"rows":1,"value":"","width":2000},{"alignment":2,"font_size":150,"label":"Click + to type","pos":[-0.637,0.1,-0.625],"rows":1,"value":"","width":2000},{"alignment":2,"font_size":100,"label":"Click + to type","pos":[-0.637,0.1,-0.32],"rows":5,"value":"","width":2000},{"alignment":2,"font_size":150,"label":"Click + to type","pos":[-0.2,0.1,-0.7],"rows":1,"value":"","width":2000},{"alignment":2,"font_size":150,"label":"Click + to type","pos":[-0.2,0.1,-0.625],"rows":1,"value":"","width":2000},{"alignment":2,"font_size":100,"label":"Click + to type","pos":[-0.2,0.1,-0.32],"rows":5,"value":"","width":2000},{"alignment":2,"font_size":150,"label":"Click + to type","pos":[0.241,0.1,-0.7],"rows":1,"value":"","width":2000},{"alignment":2,"font_size":150,"label":"Click + to type","pos":[0.237,0.1,-0.625],"rows":1,"value":"","width":2000},{"alignment":2,"font_size":100,"label":"Click + to type","pos":[0.24,0.1,-0.32],"rows":5,"value":"","width":2000},{"alignment":2,"font_size":150,"label":"Click + to type","pos":[0.671,0.1,-0.7],"rows":1,"value":"","width":2000},{"alignment":2,"font_size":150,"label":"Click + to type","pos":[0.671,0.1,-0.625],"rows":1,"value":"","width":2000},{"alignment":2,"font_size":100,"label":"Click + to type","pos":[0.671,0.1,-0.32],"rows":5,"value":"","width":2000},{"alignment":2,"font_size":200,"label":"Click + to type","pos":[-0.38,0.1,0.339],"rows":16,"value":"","width":3200},{"alignment":2,"font_size":150,"label":"Click + to type","pos":[0.43,0.1,0.338],"rows":6,"value":"","width":3500},{"alignment":2,"font_size":150,"label":"Click + to type","pos":[0.43,0.1,0.643],"rows":6,"value":"","width":3500}]}' +Name: Custom_Tile +Nickname: Carcosa Campaign Log +Snap: true +States: + '2': + Autoraise: true + ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 + CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.1 + Type: 0 + ImageScalar: 1.0 + ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/959719855119681662/AE2992DEADE3B91D3B4EF7CCFAFE2C8C546C778C/ + ImageURL: http://cloud-3.steamusercontent.com/ugc/952965089460818908/B6D16CCAB2915F634AA4B04AB4A72A20D2EF38AD/ + WidthScale: 0.0 + Description: '' + GMNotes: '' + GUID: 3ebd39 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: "--[[ Character Sheet Template by: MrStump\r\n\r\nYou can set\ + \ up your own character sheet if you follow these steps.\r\n\r\nStep 1) Change\ + \ the character sheet image\r\n -Right click on the character sheet, click\ + \ Custom\r\n -Replace the image URL with one for your character sheet\r\n\ + \ -Click import, make sure your sheet loads\r\n -SAVE THE GAME (the table\ + \ setup)\r\n -LOAD FROM THAT SAVE YOU JUST MADE\r\n\r\nStep 2) Edit script\ + \ to fit your character sheet\r\n -Below you will see some general options,\ + \ and then the big data table\r\n -The data table is what determines how\ + \ many of which buttons are made\r\n -Checkboxes\r\n -Counters\r\ + \n -Textboxes\r\n -By default, there are 3 of each. You can add more\ + \ or remove entries\r\n -If you intend to add/remove, be sure only to add/remove\ + \ ENTRIES\r\n -This is what an entry looks like:\r\n {\r\n\ + \ pos = {-0.977,0.1,-0.589},\r\n size = 800,\r\ + \n state = false\r\n },\r\n -Deleting the whole\ + \ thing would remove that specific item on the sheet\r\n -Copy and pasting\ + \ it after another entry would create another\r\n -Each entry type has unique\ + \ data points (pos, size, state, etc)\r\n -Do not try to add in your\ + \ own data points or remove them individually\r\n -There is a summary\ + \ of what each point does at the top of its category\r\n\r\nStep 3) Save and\ + \ check script changes\r\n -Hit Save & Apply in the script window to save\ + \ your code\r\n -You can edit your code as needed and Save+Apply as often\ + \ as needed\r\n -When you are finished, make disableSave = false below then\ + \ Save+apply\r\n -This enables saving, so your sheet will remember whats\ + \ on it.\r\n\r\nBonus) Finding/Editing Positions for elements\r\n I have\ + \ included a tool to get positions for buttons in {x,y,z} form\r\n Place\ + \ it where you want the center of your element to be\r\n Then copy the table\ + \ from the notes (lower right of screen)\r\n You can highlight it and\ + \ CTRL+C\r\n Paste it into the data table where needed (pos=)\r\n If you\ + \ want to manually tweek the values:\r\n {0,0,0} is the center of the\ + \ character sheet\r\n {1,0,0} is right, {-1,0,0} is left\r\n {0,0,-1}\ + \ is up, {0,0,1} is down\r\n 0.1 for Y is the height off of the page.\r\ + \n If it was 0, it would be down inside the model of the sheet\r\n\ + \r\nBegin editing below: ]]\r\n\r\n--Set this to true while editing and false\ + \ when you have finished\r\ndisableSave = false\r\n--Remember to set this to\ + \ false once you are done making changes\r\n--Then, after you save & apply it,\ + \ save your game too\r\n\r\n--Color information for button text (r,g,b, values\ + \ of 0-1)\r\nbuttonFontColor = {0,0,0}\r\n--Color information for button background\r\ + \nbuttonColor = {1,1,1}\r\n--Change scale of button (Avoid changing if possible)\r\ + \nbuttonScale = {0.1,0.1,0.1}\r\n\r\n--This is the button placement information\r\ + \ndefaultButtonData = {\r\n --Add checkboxes\r\n checkbox = {\r\n \ + \ --[[\r\n pos = the position (pasted from the helper tool)\r\n\ + \ size = height/width/font_size for checkbox\r\n state = default\ + \ starting value for checkbox (true=checked, false=not)\r\n ]]\r\n \ + \ --1 checkbox\r\n {\r\n pos = {-0.678,0.1,-0.147},\r\ + \n size = 250,\r\n state = false\r\n },\r\n \ + \ --2 checkbox\r\n {\r\n pos = {-0.656,0.1,-0.049},\r\ + \n size = 250,\r\n state = false\r\n },\r\n \ + \ --3 checkbox\r\n {\r\n pos = {-0.629,0.1,0.148},\r\ + \n size = 250,\r\n state = false\r\n },\r\n \ + \ --4 checkbox\r\n {\r\n pos = {-0.615,0.1,0.248},\r\ + \n size = 250,\r\n state = false\r\n },\r\n \ + \ --5 checkbox\r\n {\r\n pos = {-0.588,0.1,0.44},\r\ + \n size = 250,\r\n state = false\r\n },\r\n \ + \ --6 checkbox\r\n {\r\n pos = {-0.573,0.1,0.54},\r\ + \n size = 250,\r\n state = false\r\n },\r\n \ + \ --7 checkbox\r\n {\r\n pos = {-0.561,0.1,0.624},\r\ + \n size = 250,\r\n state = false\r\n },\r\n \ + \ --8 checkbox\r\n {\r\n pos = {-0.546,0.1,0.723},\r\ + \n size = 250,\r\n state = false\r\n },\r\n\r\n\ + \ --End of checkboxes\r\n },\r\n --Add counters that have a + and\ + \ - button\r\n counter = {\r\n --[[\r\n pos = the position\ + \ (pasted from the helper tool)\r\n size = height/width/font_size for\ + \ counter\r\n value = default starting value for counter\r\n \ + \ hideBG = if background of counter is hidden (true=hidden, false=not)\r\n \ + \ ]]\r\n --Slot one counter 1\r\n\r\n --End of counters\r\ + \n },\r\n --Add editable text boxes\r\n textbox = {\r\n --[[\r\ + \n pos = the position (pasted from the helper tool)\r\n \ + \ rows = how many lines of text you want for this box\r\n width\ + \ = how wide the text box is\r\n font_size = size of text. This and\ + \ \"rows\" effect overall height\r\n label = what is shown when there\ + \ is no text. \"\" = nothing\r\n value = text entered into box. \"\ + \" = nothing\r\n alignment = Number to indicate how you want text aligned\r\ + \n (1=Automatic, 2=Left, 3=Center, 4=Right, 5=Justified)\r\ + \n ]]\r\n\r\n --Campaign Notes\r\n {\r\n pos\ + \ = {0.5,0.1,-0.637},\r\n rows =6,\r\n width\ + \ = 3500,\r\n font_size = 200,\r\n label = \"\ + Click to type\",\r\n value = \"\",\r\n alignment =\ + \ 2\r\n },\r\n --End of textboxes\r\n }\r\n}\r\n\r\n\r\n\r\n\ + --Lua beyond this point, I recommend doing something more fun with your life\r\ + \n\r\n\r\n\r\n--Save function\r\nfunction updateSave()\r\n saved_data = JSON.encode(ref_buttonData)\r\ + \n if disableSave==true then saved_data=\"\" end\r\n self.script_state\ + \ = saved_data\r\nend\r\n\r\n--Startup procedure\r\nfunction onload(saved_data)\r\ + \n if disableSave==true then saved_data=\"\" end\r\n if saved_data ~=\ + \ \"\" then\r\n local loaded_data = JSON.decode(saved_data)\r\n \ + \ ref_buttonData = loaded_data\r\n else\r\n ref_buttonData = defaultButtonData\r\ + \n end\r\n\r\n spawnedButtonCount = 0\r\n createCheckbox()\r\n createCounter()\r\ + \n createTextbox()\r\nend\r\n\r\n\r\n\r\n--Click functions for buttons\r\n\ + \r\n\r\n\r\n--Checks or unchecks the given box\r\nfunction click_checkbox(tableIndex,\ + \ buttonIndex)\r\n if ref_buttonData.checkbox[tableIndex].state == true then\r\ + \n ref_buttonData.checkbox[tableIndex].state = false\r\n self.editButton({index=buttonIndex,\ + \ label=\"\"})\r\n else\r\n ref_buttonData.checkbox[tableIndex].state\ + \ = true\r\n self.editButton({index=buttonIndex, label=string.char(10008)})\r\ + \n end\r\n updateSave()\r\nend\r\n\r\n--Applies value to given counter\ + \ display\r\nfunction click_counter(tableIndex, buttonIndex, amount)\r\n \ + \ ref_buttonData.counter[tableIndex].value = ref_buttonData.counter[tableIndex].value\ + \ + amount\r\n self.editButton({index=buttonIndex, label=ref_buttonData.counter[tableIndex].value})\r\ + \n updateSave()\r\nend\r\n\r\n--Updates saved value for given text box\r\n\ + function click_textbox(i, value, selected)\r\n if selected == false then\r\ + \n ref_buttonData.textbox[i].value = value\r\n updateSave()\r\n\ + \ end\r\nend\r\n\r\n--Dud function for if you have a background on a counter\r\ + \nfunction click_none() end\r\n\r\n\r\n\r\n--Button creation\r\n\r\n\r\n\r\n\ + --Makes checkboxes\r\nfunction createCheckbox()\r\n for i, data in ipairs(ref_buttonData.checkbox)\ + \ do\r\n --Sets up reference function\r\n local buttonNumber =\ + \ spawnedButtonCount\r\n local funcName = \"checkbox\"..i\r\n \ + \ local func = function() click_checkbox(i, buttonNumber) end\r\n self.setVar(funcName,\ + \ func)\r\n --Sets up label\r\n local label = \"\"\r\n \ + \ if data.state==true then label=string.char(10008) end\r\n --Creates\ + \ button and counts it\r\n self.createButton({\r\n label=label,\ + \ click_function=funcName, function_owner=self,\r\n position=data.pos,\ + \ height=data.size, width=data.size,\r\n font_size=data.size, scale=buttonScale,\r\ + \n color=buttonColor, font_color=buttonFontColor\r\n })\r\n\ + \ spawnedButtonCount = spawnedButtonCount + 1\r\n end\r\nend\r\n\r\ + \n--Makes counters\r\nfunction createCounter()\r\n for i, data in ipairs(ref_buttonData.counter)\ + \ do\r\n --Sets up display\r\n local displayNumber = spawnedButtonCount\r\ + \n --Sets up label\r\n local label = data.value\r\n --Sets\ + \ height/width for display\r\n local size = data.size\r\n if data.hideBG\ + \ == true then size = 0 end\r\n --Creates button and counts it\r\n \ + \ self.createButton({\r\n label=label, click_function=\"click_none\"\ + , function_owner=self,\r\n position=data.pos, height=size, width=size,\r\ + \n font_size=data.size, scale=buttonScale,\r\n color=buttonColor,\ + \ font_color=buttonFontColor\r\n })\r\n spawnedButtonCount = spawnedButtonCount\ + \ + 1\r\n\r\n --Sets up add 1\r\n local funcName = \"counterAdd\"\ + ..i\r\n local func = function() click_counter(i, displayNumber, 1) end\r\ + \n self.setVar(funcName, func)\r\n --Sets up label\r\n \ + \ local label = \"+\"\r\n --Sets up position\r\n local offsetDistance\ + \ = (data.size/2 + data.size/4) * (buttonScale[1] * 0.002)\r\n local\ + \ pos = {data.pos[1] + offsetDistance, data.pos[2], data.pos[3]}\r\n \ + \ --Sets up size\r\n local size = data.size / 2\r\n --Creates\ + \ button and counts it\r\n self.createButton({\r\n label=label,\ + \ click_function=funcName, function_owner=self,\r\n position=pos,\ + \ height=size, width=size,\r\n font_size=size, scale=buttonScale,\r\ + \n color=buttonColor, font_color=buttonFontColor\r\n })\r\n\ + \ spawnedButtonCount = spawnedButtonCount + 1\r\n\r\n --Sets up\ + \ subtract 1\r\n local funcName = \"counterSub\"..i\r\n local\ + \ func = function() click_counter(i, displayNumber, -1) end\r\n self.setVar(funcName,\ + \ func)\r\n --Sets up label\r\n local label = \"-\"\r\n \ + \ --Set up position\r\n local pos = {data.pos[1] - offsetDistance, data.pos[2],\ + \ data.pos[3]}\r\n --Creates button and counts it\r\n self.createButton({\r\ + \n label=label, click_function=funcName, function_owner=self,\r\n\ + \ position=pos, height=size, width=size,\r\n font_size=size,\ + \ scale=buttonScale,\r\n color=buttonColor, font_color=buttonFontColor\r\ + \n })\r\n spawnedButtonCount = spawnedButtonCount + 1\r\n end\r\ + \nend\r\n\r\nfunction createTextbox()\r\n for i, data in ipairs(ref_buttonData.textbox)\ + \ do\r\n --Sets up reference function\r\n local funcName = \"\ + textbox\"..i\r\n local func = function(_,_,val,sel) click_textbox(i,val,sel)\ + \ end\r\n self.setVar(funcName, func)\r\n\r\n self.createInput({\r\ + \n input_function = funcName,\r\n function_owner = self,\r\ + \n label = data.label,\r\n alignment = data.alignment,\r\ + \n position = data.pos,\r\n scale = buttonScale,\r\ + \n width = data.width,\r\n height = (data.font_size*data.rows)+24,\r\ + \n font_size = data.font_size,\r\n color \ + \ = buttonColor,\r\n font_color = buttonFontColor,\r\n \ + \ value = data.value,\r\n })\r\n end\r\nend\r\n" + LuaScriptState: '{"checkbox":[{"pos":[-0.678,0.1,-0.147],"size":250,"state":false},{"pos":[-0.656,0.1,-0.049],"size":250,"state":false},{"pos":[-0.629,0.1,0.148],"size":250,"state":false},{"pos":[-0.615,0.1,0.248],"size":250,"state":false},{"pos":[-0.588,0.1,0.44],"size":250,"state":false},{"pos":[-0.573,0.1,0.54],"size":250,"state":false},{"pos":[-0.561,0.1,0.624],"size":250,"state":false},{"pos":[-0.546,0.1,0.723],"size":250,"state":false}],"counter":[],"textbox":[{"alignment":2,"font_size":200,"label":"Click + to type","pos":[0.5,0.1,-0.637],"rows":6,"value":"","width":3500}]}' + Name: Custom_Tile + Nickname: Carcosa Campaign Log + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -12.8512821 + posY: 1.26532757 + posZ: 68.75398 + rotX: 0.0208080783 + rotY: 270.001282 + rotZ: 0.0167726446 + scaleX: 6.5 + scaleY: 1.0 + scaleZ: 6.5 + XmlUI: '' +Sticky: true +Tooltip: true +Transform: + posX: 1.92610049 + posY: 1.47147357 + posZ: -24.875824 + rotX: 359.920135 + rotY: 270.0053 + rotZ: 0.0168639868 + scaleX: 6.5 + scaleY: 1.0 + scaleZ: 6.5 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 899c3a.ttslua b/unpacked/Custom_Model_Bag The Path to Carcosa 899c3a.ttslua new file mode 100644 index 000000000..5dff2f1d7 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 899c3a.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,3,7}, rotation={0,0,0}, height=700, width=2000, + font_size=700, 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 +12 + 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=800, width=800, + 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,3,7}, rotation={0,0,0}, height=700, width=2000, + font_size=700, color={0,0,0}, font_color={1,1,1} + }) + self.createButton({ + label="Submit", click_function="buttonClick_submit", function_owner=self, + position={0,3,-7}, rotation={0,0,0}, height=700, width=2000, + font_size=700, color={0,0,0}, font_color={1,1,1} + }) +-- self.createButton({ +-- label="Reset", click_function="buttonClick_reset", function_owner=self, +-- position={3,2.5,6}, rotation={0,0,0}, height=550, width=1100, +-- font_size=400, 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={2.4,3,7}, rotation={0,0,0}, height=850, width=2000, + font_size=700, color={0,0,0}, font_color={1,1,1} + }) + self.createButton({ + label="Recall", click_function="buttonClick_recall", function_owner=self, + position={-2.4,3,7}, rotation={0,0,0}, height=850, width=2200, + font_size=700, 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.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 \ No newline at end of file diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 899c3a.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 899c3a.yaml new file mode 100644 index 000000000..9b04188a8 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 899c3a.yaml @@ -0,0 +1,106 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +ContainedObjects: +- !include 'Custom_Model_Bag The Path to Carcosa 899c3a/Card Mark Harrigan 02bcb4.yaml' +- !include 'Custom_Model_Bag The Path to Carcosa 899c3a/Card William Yorick 069e1b.yaml' +- !include 'Custom_Model_Bag The Path to Carcosa 899c3a/Custom_Model Survivor turn + token 08cb35.yaml' +- !include 'Custom_Model_Bag The Path to Carcosa 899c3a/Custom_Model Survivor turn + token 0b9ee6.yaml' +- !include 'Custom_Model_Bag The Path to Carcosa 899c3a/Card Sefina Rosseau 233795.yaml' +- !include 'Custom_Model_Bag The Path to Carcosa 899c3a/Card Lola Hayes 235bfb.yaml' +- !include 'Custom_Model_Bag The Path to Carcosa 899c3a/Custom_Model Survivor turn + token 27e41e.yaml' +- !include 'Custom_Model_Bag The Path to Carcosa 899c3a/Custom_Model Survivor turn + token 2ce03d.yaml' +- !include 'Custom_Model_Bag The Path to Carcosa 899c3a/Custom_Model_Bag starter deck + & cards 3d3e9c.yaml' +- !include 'Custom_Model_Bag The Path to Carcosa 899c3a/Custom_Model_Bag starter deck + & cards 3da38f.yaml' +- !include 'Custom_Model_Bag The Path to Carcosa 899c3a/Custom_Model Survivor turn + token 435797.yaml' +- !include 'Custom_Model_Bag The Path to Carcosa 899c3a/Custom_Model_Bag starter deck + & cards 454573.yaml' +- !include 'Custom_Model_Bag The Path to Carcosa 899c3a/Card Minh Thi Phan 462941.yaml' +- !include 'Custom_Model_Bag The Path to Carcosa 899c3a/Custom_Model Turn token 4fe415.yaml' +- !include 'Custom_Model_Bag The Path to Carcosa 899c3a/Custom_Model_Bag starter deck + & cards 5b1faf.yaml' +- !include 'Custom_Model_Bag The Path to Carcosa 899c3a/Card Mark Harrigan 5c5d3e.yaml' +- !include 'Custom_Model_Bag The Path to Carcosa 899c3a/Custom_Model Survivor turn + token 681694.yaml' +- !include 'Custom_Model_Bag The Path to Carcosa 899c3a/Custom_Model Survivor turn + token 69a43c.yaml' +- !include 'Custom_Model_Bag The Path to Carcosa 899c3a/Card Sefina Rosseau 74d0ca.yaml' +- !include 'Custom_Model_Bag The Path to Carcosa 899c3a/Card William Yorick 754ca1.yaml' +- !include 'Custom_Model_Bag The Path to Carcosa 899c3a/Custom_Model Survivor turn + token 7b85f6.yaml' +- !include 'Custom_Model_Bag The Path to Carcosa 899c3a/Custom_Model Survivor turn + token 9248cf.yaml' +- !include 'Custom_Model_Bag The Path to Carcosa 899c3a/Custom_Model Survivor turn + token 98d426.yaml' +- !include 'Custom_Model_Bag The Path to Carcosa 899c3a/Card Lola Hayes ac8f67.yaml' +- !include 'Custom_Model_Bag The Path to Carcosa 899c3a/Card Akachi Onyele b4a171.yaml' +- !include 'Custom_Model_Bag The Path to Carcosa 899c3a/Custom_Model Turn token b967c9.yaml' +- !include 'Custom_Model_Bag The Path to Carcosa 899c3a/Custom_Model_Bag starter deck + & cards baeea0.yaml' +- !include 'Custom_Model_Bag The Path to Carcosa 899c3a/Card Minh Thi Phan bc93c3.yaml' +- !include 'Custom_Model_Bag The Path to Carcosa 899c3a/Card Akachi Onyele bd9bda.yaml' +- !include 'Custom_Model_Bag The Path to Carcosa 899c3a/Custom_Model_Bag starter deck + & cards c55d46.yaml' +- !include 'Custom_Model_Bag The Path to Carcosa 899c3a/Custom_Model Turn token cd74de.yaml' +- !include 'Custom_Model_Bag The Path to Carcosa 899c3a/Custom_Model Turn token dd6f2b.yaml' +- !include 'Custom_Model_Bag The Path to Carcosa 899c3a/Custom_Model Survivor turn + token df03fb.yaml' +- !include 'Custom_Model_Bag The Path to Carcosa 899c3a/Custom_Model Turn token e2df57.yaml' +- !include 'Custom_Model_Bag The Path to Carcosa 899c3a/Custom_Model Turn token eb9c85.yaml' +- !include 'Custom_Model_Bag The Path to Carcosa 899c3a/Custom_Model Survivor turn + token eed875.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/762723517667645467/CDF71CF96691CEF2E690F71332479ACBA0697864/ + MaterialIndex: 3 + MeshURL: https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/core_h_MSH.obj + NormalURL: '' + TypeIndex: 6 +Description: '' +GMNotes: '' +GUID: 899c3a +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Model_Bag The Path to Carcosa 899c3a.ttslua' +LuaScriptState: '{"ml":{"02bcb4":{"lock":false,"pos":{"x":-22.6128,"y":1.3747,"z":-49.959},"rot":{"x":0.0168,"y":180.0104,"z":359.9792}},"069e1b":{"lock":false,"pos":{"x":-22.6158,"y":1.3655,"z":-81.3393},"rot":{"x":0.0168,"y":180.0104,"z":359.9792}},"08cb35":{"lock":false,"pos":{"x":-16.6389,"y":1.3625,"z":-58.9818},"rot":{"x":0.0208,"y":270.0182,"z":0.0168}},"0b9ee6":{"lock":false,"pos":{"x":-16.6392,"y":1.3587,"z":-72.2263},"rot":{"x":0.0208,"y":270.0002,"z":0.0168}},"233795":{"lock":false,"pos":{"x":-19.2948,"y":1.3714,"z":-65.5815},"rot":{"x":0.0208,"y":269.9567,"z":0.0168}},"235bfb":{"lock":false,"pos":{"x":-22.6157,"y":1.3632,"z":-89.174},"rot":{"x":0.0168,"y":180.0105,"z":359.9792}},"27e41e":{"lock":false,"pos":{"x":-16.6385,"y":1.3583,"z":-73.4665},"rot":{"x":0.0208,"y":270.0004,"z":0.0168}},"2ce03d":{"lock":false,"pos":{"x":-16.639,"y":1.3656,"z":-48.6729},"rot":{"x":0.0208,"y":270.0002,"z":0.0168}},"3d3e9c":{"lock":false,"pos":{"x":-26.2985,"y":1.2675,"z":-81.3388},"rot":{"x":359.9792,"y":90.018,"z":359.9832}},"3da38f":{"lock":false,"pos":{"x":-26.299,"y":1.2744,"z":-57.7619},"rot":{"x":359.9792,"y":89.9998,"z":359.9832}},"435797":{"lock":false,"pos":{"x":-16.639,"y":1.3652,"z":-49.9113},"rot":{"x":0.0208,"y":270.0002,"z":0.0168}},"454573":{"lock":false,"pos":{"x":-26.2991,"y":1.2698,"z":-73.4665},"rot":{"x":359.9792,"y":90.0003,"z":359.9832}},"462941":{"lock":false,"pos":{"x":-22.6158,"y":1.3724,"z":-57.7623},"rot":{"x":0.0168,"y":180.0002,"z":359.9792}},"4fe415":{"lock":false,"pos":{"x":-16.6392,"y":1.3606,"z":-65.5811},"rot":{"x":0.0208,"y":270.0002,"z":0.0168}},"5b1faf":{"lock":false,"pos":{"x":-26.2989,"y":1.2767,"z":-49.9578},"rot":{"x":359.9792,"y":89.9999,"z":359.9832}},"5c5d3e":{"lock":false,"pos":{"x":-19.2989,"y":1.3759,"z":-49.9567},"rot":{"x":0.0208,"y":269.9878,"z":0.0168}},"681694":{"lock":false,"pos":{"x":-16.6383,"y":1.3534,"z":-90.3836},"rot":{"x":0.0208,"y":270.009,"z":0.0168}},"69a43c":{"lock":false,"pos":{"x":-16.6406,"y":1.3541,"z":-87.9074},"rot":{"x":0.0209,"y":269.8033,"z":0.0167}},"74d0ca":{"lock":false,"pos":{"x":-22.6146,"y":1.3701,"z":-65.5964},"rot":{"x":0.0168,"y":180.0104,"z":359.9792}},"754ca1":{"lock":false,"pos":{"x":-19.2987,"y":1.3667,"z":-81.339},"rot":{"x":0.0208,"y":269.9901,"z":0.0168}},"7b85f6":{"lock":false,"pos":{"x":-16.6384,"y":1.3537,"z":-89.1537},"rot":{"x":0.0208,"y":270.0001,"z":0.0168}},"9248cf":{"lock":false,"pos":{"x":-16.639,"y":1.3579,"z":-74.6965},"rot":{"x":0.0208,"y":269.9992,"z":0.0168}},"98d426":{"lock":false,"pos":{"x":-16.639,"y":1.3648,"z":-51.1416},"rot":{"x":0.0208,"y":269.9988,"z":0.0168}},"ac8f67":{"lock":false,"pos":{"x":-19.2985,"y":1.3645,"z":-89.1737},"rot":{"x":0.0208,"y":269.9649,"z":0.0167}},"b4a171":{"lock":false,"pos":{"x":-19.2925,"y":1.3691,"z":-73.4624},"rot":{"x":0.0208,"y":269.9995,"z":0.0168}},"b967c9":{"lock":false,"pos":{"x":-16.6391,"y":1.356,"z":-81.339},"rot":{"x":0.0208,"y":269.9989,"z":0.0168}},"baeea0":{"lock":false,"pos":{"x":-26.2991,"y":1.2721,"z":-65.5814},"rot":{"x":359.9792,"y":89.9999,"z":359.9832}},"bc93c3":{"lock":false,"pos":{"x":-19.299,"y":1.3736,"z":-57.7542},"rot":{"x":0.0208,"y":270.0007,"z":0.0168}},"bd9bda":{"lock":false,"pos":{"x":-22.6146,"y":1.3678,"z":-73.4669},"rot":{"x":0.0168,"y":180.0104,"z":359.9792}},"c55d46":{"lock":false,"pos":{"x":-26.2984,"y":1.2652,"z":-89.1737},"rot":{"x":359.9792,"y":89.9836,"z":359.9832}},"cd74de":{"lock":false,"pos":{"x":-16.639,"y":1.361,"z":-64.3414},"rot":{"x":0.0208,"y":270.0003,"z":0.0168}},"dd6f2b":{"lock":false,"pos":{"x":-16.6381,"y":1.3556,"z":-82.5394},"rot":{"x":0.0208,"y":270.0164,"z":0.0168}},"df03fb":{"lock":false,"pos":{"x":-16.639,"y":1.3629,"z":-57.7519},"rot":{"x":0.0208,"y":269.9988,"z":0.0168}},"e2df57":{"lock":false,"pos":{"x":-16.639,"y":1.3603,"z":-66.8114},"rot":{"x":0.0208,"y":269.9986,"z":0.0168}},"eb9c85":{"lock":false,"pos":{"x":-16.6386,"y":1.3564,"z":-80.069},"rot":{"x":0.0208,"y":269.9867,"z":0.0168}},"eed875":{"lock":false,"pos":{"x":-16.6415,"y":1.3633,"z":-56.517},"rot":{"x":0.0208,"y":269.9107,"z":0.0167}}}}' +MaterialIndex: -1 +MeshIndex: -1 +Name: Custom_Model_Bag +Nickname: The Path to Carcosa +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -9.742768 + posY: 1.30398881 + posZ: -62.5954056 + rotX: 0.02081226 + rotY: 269.9932 + rotZ: 0.01676782 + scaleX: 0.5 + scaleY: 0.139652729 + scaleZ: 0.5 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 899c3a/Card Akachi Onyele b4a171.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 899c3a/Card Akachi Onyele b4a171.yaml new file mode 100644 index 000000000..f0d070ac5 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 899c3a/Card Akachi Onyele b4a171.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 259813 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2598': + BackIsHidden: true + BackURL: https://i.imgur.com/vB84qMp.jpg + FaceURL: https://i.imgur.com/WPYBga4.jpg + NumHeight: 3 + NumWidth: 7 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: b4a171 +Grid: false +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Akachi Onyele +SidewaysCard: false +Snap: false +Sticky: true +Tooltip: true +Transform: + posX: -19.2925 + posY: 1.36905324 + posZ: -73.4624 + rotX: 0.0208106134 + rotY: 269.999542 + rotZ: 0.0167698488 + scaleX: 0.6 + scaleY: 1.0 + scaleZ: 0.6 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 899c3a/Card Akachi Onyele bd9bda.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 899c3a/Card Akachi Onyele bd9bda.yaml new file mode 100644 index 000000000..e5d351f0a --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 899c3a/Card Akachi Onyele bd9bda.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 271013 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2710': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1011562618093845464/80687C9319FA2015F3D9F7CBEB4C55FBF045B27D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1011562618093845971/A678BD374EC4DE672206B5EF7EB57DC885BC839C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: The Shaman +GMNotes: '' +GUID: bd9bda +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Akachi Onyele +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -22.6146 + posY: 1.36784542 + posZ: -73.4669 + rotX: 0.016775528 + rotY: 180.010437 + rotZ: 359.9792 + scaleX: 1.1 + scaleY: 1.0 + scaleZ: 1.1 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 899c3a/Card Lola Hayes 235bfb.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 899c3a/Card Lola Hayes 235bfb.yaml new file mode 100644 index 000000000..7094a5a45 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 899c3a/Card Lola Hayes 235bfb.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 271215 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2712': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1011562618093845464/80687C9319FA2015F3D9F7CBEB4C55FBF045B27D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1011562618093845971/A678BD374EC4DE672206B5EF7EB57DC885BC839C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: The Actress +GMNotes: '' +GUID: 235bfb +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Lola Hayes +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -22.6157 + posY: 1.36324739 + posZ: -89.174 + rotX: 0.0167755745 + rotY: 180.010468 + rotZ: 359.9792 + scaleX: 1.1 + scaleY: 1.0 + scaleZ: 1.1 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 899c3a/Card Lola Hayes ac8f67.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 899c3a/Card Lola Hayes ac8f67.yaml new file mode 100644 index 000000000..cf4f1e379 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 899c3a/Card Lola Hayes ac8f67.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 259915 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2599': + BackIsHidden: true + BackURL: https://i.imgur.com/vB84qMp.jpg + FaceURL: https://i.imgur.com/WPYBga4.jpg + NumHeight: 3 + NumWidth: 7 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: ac8f67 +Grid: false +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Lola Hayes +SidewaysCard: false +Snap: false +Sticky: true +Tooltip: true +Transform: + posX: -19.2985 + posY: 1.36445212 + posZ: -89.1737 + rotX: 0.0208207872 + rotY: 269.9649 + rotZ: 0.0167573169 + scaleX: 0.6 + scaleY: 1.0 + scaleZ: 0.6 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 899c3a/Card Mark Harrigan 02bcb4.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 899c3a/Card Mark Harrigan 02bcb4.yaml new file mode 100644 index 000000000..2148f72e9 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 899c3a/Card Mark Harrigan 02bcb4.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 270710 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2707': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1011562618093845464/80687C9319FA2015F3D9F7CBEB4C55FBF045B27D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1011562618093845971/A678BD374EC4DE672206B5EF7EB57DC885BC839C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: The Soldier +GMNotes: '' +GUID: 02bcb4 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Mark Harrigan +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -22.6128 + posY: 1.37472713 + posZ: -49.959 + rotX: 0.0167753119 + rotY: 180.010361 + rotZ: 359.9792 + scaleX: 1.1 + scaleY: 1.0 + scaleZ: 1.1 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 899c3a/Card Mark Harrigan 5c5d3e.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 899c3a/Card Mark Harrigan 5c5d3e.yaml new file mode 100644 index 000000000..ee49f6ba4 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 899c3a/Card Mark Harrigan 5c5d3e.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 259610 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2596': + BackIsHidden: true + BackURL: https://i.imgur.com/vB84qMp.jpg + FaceURL: https://i.imgur.com/WPYBga4.jpg + NumHeight: 3 + NumWidth: 7 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 5c5d3e +Grid: false +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Mark Harrigan +SidewaysCard: false +Snap: false +Sticky: true +Tooltip: true +Transform: + posX: -19.2989 + posY: 1.3759315 + posZ: -49.9567 + rotX: 0.0208136477 + rotY: 269.987823 + rotZ: 0.0167658534 + scaleX: 0.6 + scaleY: 1.0 + scaleZ: 0.6 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 899c3a/Card Minh Thi Phan 462941.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 899c3a/Card Minh Thi Phan 462941.yaml new file mode 100644 index 000000000..ce670cccc --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 899c3a/Card Minh Thi Phan 462941.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 270811 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2708': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1011562618093845464/80687C9319FA2015F3D9F7CBEB4C55FBF045B27D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1011562618093845971/A678BD374EC4DE672206B5EF7EB57DC885BC839C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: The Secretary +GMNotes: '' +GUID: '462941' +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Minh Thi Phan +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -22.6158 + posY: 1.372442 + posZ: -57.7623 + rotX: 0.0167718958 + rotY: 180.000122 + rotZ: 359.9792 + scaleX: 1.1 + scaleY: 1.0 + scaleZ: 1.1 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 899c3a/Card Minh Thi Phan bc93c3.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 899c3a/Card Minh Thi Phan bc93c3.yaml new file mode 100644 index 000000000..19f867833 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 899c3a/Card Minh Thi Phan bc93c3.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 259711 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2597': + BackIsHidden: true + BackURL: https://i.imgur.com/vB84qMp.jpg + FaceURL: https://i.imgur.com/WPYBga4.jpg + NumHeight: 3 + NumWidth: 7 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: bc93c3 +Grid: false +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Minh Thi Phan +SidewaysCard: false +Snap: false +Sticky: true +Tooltip: true +Transform: + posX: -19.299 + posY: 1.373649 + posZ: -57.7542 + rotX: 0.0208104 + rotY: 270.000732 + rotZ: 0.0167705268 + scaleX: 0.6 + scaleY: 1.0 + scaleZ: 0.6 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 899c3a/Card Sefina Rosseau 233795.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 899c3a/Card Sefina Rosseau 233795.yaml new file mode 100644 index 000000000..fe1a23a51 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 899c3a/Card Sefina Rosseau 233795.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 259512 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2595': + BackIsHidden: true + BackURL: https://i.imgur.com/vB84qMp.jpg + FaceURL: https://i.imgur.com/WPYBga4.jpg + NumHeight: 3 + NumWidth: 7 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: '233795' +Grid: false +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Sefina Rosseau +SidewaysCard: false +Snap: false +Sticky: true +Tooltip: true +Transform: + posX: -19.2948 + posY: 1.37135923 + posZ: -65.5815 + rotX: 0.0208231434 + rotY: 269.9567 + rotZ: 0.0167542938 + scaleX: 0.6 + scaleY: 1.0 + scaleZ: 0.6 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 899c3a/Card Sefina Rosseau 74d0ca.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 899c3a/Card Sefina Rosseau 74d0ca.yaml new file mode 100644 index 000000000..bf4417120 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 899c3a/Card Sefina Rosseau 74d0ca.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 270912 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2709': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1011562618093845464/80687C9319FA2015F3D9F7CBEB4C55FBF045B27D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1011562618093845971/A678BD374EC4DE672206B5EF7EB57DC885BC839C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: The Painter +GMNotes: '' +GUID: 74d0ca +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Sefina Rosseau +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -22.6146 + posY: 1.37014925 + posZ: -65.5964 + rotX: 0.0167756435 + rotY: 180.010345 + rotZ: 359.9792 + scaleX: 1.1 + scaleY: 1.0 + scaleZ: 1.1 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 899c3a/Card William Yorick 069e1b.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 899c3a/Card William Yorick 069e1b.yaml new file mode 100644 index 000000000..03ab21460 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 899c3a/Card William Yorick 069e1b.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 271114 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2711': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1011562618093845464/80687C9319FA2015F3D9F7CBEB4C55FBF045B27D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1011562618093845971/A678BD374EC4DE672206B5EF7EB57DC885BC839C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: The Gravedigger +GMNotes: '' +GUID: 069e1b +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: William Yorick +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -22.6158 + posY: 1.36554062 + posZ: -81.3393 + rotX: 0.0167756584 + rotY: 180.010315 + rotZ: 359.9792 + scaleX: 1.1 + scaleY: 1.0 + scaleZ: 1.1 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 899c3a/Card William Yorick 754ca1.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 899c3a/Card William Yorick 754ca1.yaml new file mode 100644 index 000000000..b99a7856f --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 899c3a/Card William Yorick 754ca1.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 259414 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2594': + BackIsHidden: true + BackURL: https://i.imgur.com/vB84qMp.jpg + FaceURL: https://i.imgur.com/WPYBga4.jpg + NumHeight: 3 + NumWidth: 7 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 754ca1 +Grid: false +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: William Yorick +SidewaysCard: false +Snap: false +Sticky: true +Tooltip: true +Transform: + posX: -19.2987 + posY: 1.36674559 + posZ: -81.339 + rotX: 0.020813521 + rotY: 269.990143 + rotZ: 0.0167662818 + scaleX: 0.6 + scaleY: 1.0 + scaleZ: 0.6 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 899c3a/Custom_Model Survivor turn token 08cb35.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 899c3a/Custom_Model Survivor turn token 08cb35.yaml new file mode 100644 index 000000000..a690b4ad3 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 899c3a/Custom_Model Survivor turn token 08cb35.yaml @@ -0,0 +1,41 @@ +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: '' +GMNotes: '' +GUID: 08cb35 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Model +Nickname: Survivor turn token +Snap: true +Sticky: true +Tooltip: false +Transform: + posX: -16.6389 + posY: 1.362542 + posZ: -58.9818 + rotX: 0.0208111312 + rotY: 270.0182 + rotZ: 0.0167741627 + scaleX: 0.45 + scaleY: 0.6 + scaleZ: 0.45 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 899c3a/Custom_Model Survivor turn token 0b9ee6.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 899c3a/Custom_Model Survivor turn token 0b9ee6.yaml new file mode 100644 index 000000000..2ed527a6e --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 899c3a/Custom_Model Survivor turn token 0b9ee6.yaml @@ -0,0 +1,41 @@ +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: '' +GMNotes: '' +GUID: 0b9ee6 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Model +Nickname: Survivor turn token +Snap: true +Sticky: true +Tooltip: false +Transform: + posX: -16.6392 + posY: 1.35866511 + posZ: -72.2263 + rotX: 0.0208167043 + rotY: 270.000122 + rotZ: 0.0167676136 + scaleX: 0.45 + scaleY: 0.6 + scaleZ: 0.45 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 899c3a/Custom_Model Survivor turn token 27e41e.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 899c3a/Custom_Model Survivor turn token 27e41e.yaml new file mode 100644 index 000000000..034827cf5 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 899c3a/Custom_Model Survivor turn token 27e41e.yaml @@ -0,0 +1,41 @@ +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: '' +GMNotes: '' +GUID: 27e41e +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Model +Nickname: Survivor turn token +Snap: true +Sticky: true +Tooltip: false +Transform: + posX: -16.6385 + posY: 1.35830224 + posZ: -73.4665 + rotX: 0.0208155029 + rotY: 270.000366 + rotZ: 0.0167680755 + scaleX: 0.45 + scaleY: 0.6 + scaleZ: 0.45 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 899c3a/Custom_Model Survivor turn token 2ce03d.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 899c3a/Custom_Model Survivor turn token 2ce03d.yaml new file mode 100644 index 000000000..08524660a --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 899c3a/Custom_Model Survivor turn token 2ce03d.yaml @@ -0,0 +1,41 @@ +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: '' +GMNotes: '' +GUID: 2ce03d +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Model +Nickname: Survivor turn token +Snap: true +Sticky: true +Tooltip: false +Transform: + posX: -16.639 + posY: 1.3655597 + posZ: -48.6729 + rotX: 0.0208155662 + rotY: 270.0002 + rotZ: 0.0167680643 + scaleX: 0.45 + scaleY: 0.6 + scaleZ: 0.45 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 899c3a/Custom_Model Survivor turn token 435797.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 899c3a/Custom_Model Survivor turn token 435797.yaml new file mode 100644 index 000000000..044ee7c61 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 899c3a/Custom_Model Survivor turn token 435797.yaml @@ -0,0 +1,41 @@ +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: '' +GMNotes: '' +GUID: '435797' +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Model +Nickname: Survivor turn token +Snap: true +Sticky: true +Tooltip: false +Transform: + posX: -16.639 + posY: 1.36519706 + posZ: -49.9113 + rotX: 0.0208164044 + rotY: 270.000183 + rotZ: 0.0167680252 + scaleX: 0.45 + scaleY: 0.6 + scaleZ: 0.45 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 899c3a/Custom_Model Survivor turn token 681694.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 899c3a/Custom_Model Survivor turn token 681694.yaml new file mode 100644 index 000000000..2ac8d7e90 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 899c3a/Custom_Model Survivor turn token 681694.yaml @@ -0,0 +1,41 @@ +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/950722873599303195/BAB8BB40C755C099128931212969243EFF56ED39/ + MaterialIndex: 3 + MeshURL: https://pastebin.com/raw/ALrYhQGb + NormalURL: '' + TypeIndex: 4 +Description: '' +GMNotes: '' +GUID: '681694' +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Model +Nickname: Survivor turn token +Snap: true +Sticky: true +Tooltip: false +Transform: + posX: -16.6383 + posY: 1.35335064 + posZ: -90.3836 + rotX: 0.020814348 + rotY: 270.009 + rotZ: 0.01677132 + scaleX: 0.45 + scaleY: 0.6 + scaleZ: 0.45 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 899c3a/Custom_Model Survivor turn token 69a43c.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 899c3a/Custom_Model Survivor turn token 69a43c.yaml new file mode 100644 index 000000000..9cf5b8866 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 899c3a/Custom_Model Survivor turn token 69a43c.yaml @@ -0,0 +1,41 @@ +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/950722873599303195/BAB8BB40C755C099128931212969243EFF56ED39/ + MaterialIndex: 3 + MeshURL: https://pastebin.com/raw/ALrYhQGb + NormalURL: '' + TypeIndex: 4 +Description: '' +GMNotes: '' +GUID: 69a43c +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Model +Nickname: Survivor turn token +Snap: true +Sticky: true +Tooltip: false +Transform: + posX: -16.6406 + posY: 1.35407448 + posZ: -87.9074 + rotX: 0.0208737757 + rotY: 269.8033 + rotZ: 0.01669645 + scaleX: 0.45 + scaleY: 0.6 + scaleZ: 0.45 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 899c3a/Custom_Model Survivor turn token 7b85f6.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 899c3a/Custom_Model Survivor turn token 7b85f6.yaml new file mode 100644 index 000000000..7d51b69f3 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 899c3a/Custom_Model Survivor turn token 7b85f6.yaml @@ -0,0 +1,41 @@ +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/950722873599303195/BAB8BB40C755C099128931212969243EFF56ED39/ + MaterialIndex: 3 + MeshURL: https://pastebin.com/raw/ALrYhQGb + NormalURL: '' + TypeIndex: 4 +Description: '' +GMNotes: '' +GUID: 7b85f6 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Model +Nickname: Survivor turn token +Snap: true +Sticky: true +Tooltip: false +Transform: + posX: -16.6384 + posY: 1.35371053 + posZ: -89.1537 + rotX: 0.0208166018 + rotY: 270.000122 + rotZ: 0.0167680252 + scaleX: 0.45 + scaleY: 0.6 + scaleZ: 0.45 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 899c3a/Custom_Model Survivor turn token 9248cf.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 899c3a/Custom_Model Survivor turn token 9248cf.yaml new file mode 100644 index 000000000..dea77e792 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 899c3a/Custom_Model Survivor turn token 9248cf.yaml @@ -0,0 +1,41 @@ +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: '' +GMNotes: '' +GUID: 9248cf +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Model +Nickname: Survivor turn token +Snap: true +Sticky: true +Tooltip: false +Transform: + posX: -16.639 + posY: 1.3579421 + posZ: -74.6965 + rotX: 0.0208157785 + rotY: 269.9992 + rotZ: 0.016767744 + scaleX: 0.45 + scaleY: 0.6 + scaleZ: 0.45 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 899c3a/Custom_Model Survivor turn token 98d426.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 899c3a/Custom_Model Survivor turn token 98d426.yaml new file mode 100644 index 000000000..bb00b769b --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 899c3a/Custom_Model Survivor turn token 98d426.yaml @@ -0,0 +1,41 @@ +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: '' +GMNotes: '' +GUID: 98d426 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Model +Nickname: Survivor turn token +Snap: true +Sticky: true +Tooltip: false +Transform: + posX: -16.639 + posY: 1.36483693 + posZ: -51.1416 + rotX: 0.0208162684 + rotY: 269.9988 + rotZ: 0.01676783 + scaleX: 0.45 + scaleY: 0.6 + scaleZ: 0.45 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 899c3a/Custom_Model Survivor turn token df03fb.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 899c3a/Custom_Model Survivor turn token df03fb.yaml new file mode 100644 index 000000000..fb49d38c2 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 899c3a/Custom_Model Survivor turn token df03fb.yaml @@ -0,0 +1,41 @@ +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: '' +GMNotes: '' +GUID: df03fb +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Model +Nickname: Survivor turn token +Snap: true +Sticky: true +Tooltip: false +Transform: + posX: -16.639 + posY: 1.362902 + posZ: -57.7519 + rotX: 0.0208168589 + rotY: 269.998779 + rotZ: 0.0167671777 + scaleX: 0.45 + scaleY: 0.6 + scaleZ: 0.45 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 899c3a/Custom_Model Survivor turn token eed875.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 899c3a/Custom_Model Survivor turn token eed875.yaml new file mode 100644 index 000000000..eed38eab5 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 899c3a/Custom_Model Survivor turn token eed875.yaml @@ -0,0 +1,41 @@ +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: '' +GMNotes: '' +GUID: eed875 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Model +Nickname: Survivor turn token +Snap: true +Sticky: true +Tooltip: false +Transform: + posX: -16.6415 + posY: 1.36326265 + posZ: -56.517 + rotX: 0.0208425764 + rotY: 269.910736 + rotZ: 0.0167354867 + scaleX: 0.45 + scaleY: 0.6 + scaleZ: 0.45 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 899c3a/Custom_Model Turn token 4fe415.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 899c3a/Custom_Model Turn token 4fe415.yaml new file mode 100644 index 000000000..b94ffac41 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 899c3a/Custom_Model Turn token 4fe415.yaml @@ -0,0 +1,41 @@ +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: '' +GMNotes: '' +GUID: 4fe415 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Model +Nickname: Turn token +Snap: true +Sticky: true +Tooltip: false +Transform: + posX: -16.6392 + posY: 1.36061037 + posZ: -65.5811 + rotX: 0.0208164342 + rotY: 270.000122 + rotZ: 0.01676809 + scaleX: 0.45 + scaleY: 0.6 + scaleZ: 0.45 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 899c3a/Custom_Model Turn token b967c9.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 899c3a/Custom_Model Turn token b967c9.yaml new file mode 100644 index 000000000..ed1ce891b --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 899c3a/Custom_Model Turn token b967c9.yaml @@ -0,0 +1,41 @@ +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: '' +GMNotes: '' +GUID: b967c9 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Model +Nickname: Turn token +Snap: true +Sticky: true +Tooltip: false +Transform: + posX: -16.6391 + posY: 1.35599768 + posZ: -81.339 + rotX: 0.0208164267 + rotY: 269.998932 + rotZ: 0.0167677719 + scaleX: 0.45 + scaleY: 0.6 + scaleZ: 0.45 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 899c3a/Custom_Model Turn token cd74de.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 899c3a/Custom_Model Turn token cd74de.yaml new file mode 100644 index 000000000..ad758ac45 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 899c3a/Custom_Model Turn token cd74de.yaml @@ -0,0 +1,41 @@ +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: '' +GMNotes: '' +GUID: cd74de +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Model +Nickname: Turn token +Snap: true +Sticky: true +Tooltip: false +Transform: + posX: -16.639 + posY: 1.36097324 + posZ: -64.3414 + rotX: 0.02081562 + rotY: 270.000336 + rotZ: 0.01676802 + scaleX: 0.45 + scaleY: 0.6 + scaleZ: 0.45 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 899c3a/Custom_Model Turn token dd6f2b.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 899c3a/Custom_Model Turn token dd6f2b.yaml new file mode 100644 index 000000000..619239e3d --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 899c3a/Custom_Model Turn token dd6f2b.yaml @@ -0,0 +1,41 @@ +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: '' +GMNotes: '' +GUID: dd6f2b +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Model +Nickname: Turn token +Snap: true +Sticky: true +Tooltip: false +Transform: + posX: -16.6381 + posY: 1.35564673 + posZ: -82.5394 + rotX: 0.0208116882 + rotY: 270.016418 + rotZ: 0.0167741179 + scaleX: 0.45 + scaleY: 0.6 + scaleZ: 0.45 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 899c3a/Custom_Model Turn token e2df57.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 899c3a/Custom_Model Turn token e2df57.yaml new file mode 100644 index 000000000..1a5114411 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 899c3a/Custom_Model Turn token e2df57.yaml @@ -0,0 +1,41 @@ +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: '' +GMNotes: '' +GUID: e2df57 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Model +Nickname: Turn token +Snap: true +Sticky: true +Tooltip: false +Transform: + posX: -16.639 + posY: 1.36025023 + posZ: -66.8114 + rotX: 0.0208160449 + rotY: 269.998566 + rotZ: 0.0167674385 + scaleX: 0.45 + scaleY: 0.6 + scaleZ: 0.45 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 899c3a/Custom_Model Turn token eb9c85.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 899c3a/Custom_Model Turn token eb9c85.yaml new file mode 100644 index 000000000..a2516f798 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 899c3a/Custom_Model Turn token eb9c85.yaml @@ -0,0 +1,41 @@ +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: '' +GMNotes: '' +GUID: eb9c85 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Model +Nickname: Turn token +Snap: true +Sticky: true +Tooltip: false +Transform: + posX: -16.6386 + posY: 1.35636961 + posZ: -80.069 + rotX: 0.0208197851 + rotY: 269.986664 + rotZ: 0.0167631339 + scaleX: 0.45 + scaleY: 0.6 + scaleZ: 0.45 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 899c3a/Custom_Model_Bag starter deck & cards 3d3e9c.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 899c3a/Custom_Model_Bag starter deck & cards 3d3e9c.yaml new file mode 100644 index 000000000..95537309a --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 899c3a/Custom_Model_Bag starter deck & cards 3d3e9c.yaml @@ -0,0 +1,58 @@ +Autoraise: true +ColorDiffuse: + b: 0.02148666 + g: 0.00100758043 + r: 0.02148666 +ContainedObjects: +- !include 'Custom_Model_Bag starter deck & cards 3d3e9c/Card Bury Them Deep e6efe6.yaml' +- !include 'Custom_Model_Bag starter deck & cards 3d3e9c/Card Graveyard Ghouls 80b7c6.yaml' +- !include 'Custom_Model_Bag starter deck & cards 3d3e9c/Deck 9bda55.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: '' +GMNotes: '' +GUID: 3d3e9c +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +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.2985 + posY: 1.267526 + posZ: -81.3388 + rotX: 359.9792 + rotY: 90.01797 + rotZ: 359.983215 + scaleX: 2.0 + scaleY: 2.0 + scaleZ: 2.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 899c3a/Custom_Model_Bag starter deck & cards 3d3e9c/Card Bury Them Deep e6efe6.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 899c3a/Custom_Model_Bag starter deck & cards 3d3e9c/Card Bury Them Deep e6efe6.yaml new file mode 100644 index 000000000..5509848e1 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 899c3a/Custom_Model_Bag starter deck & cards 3d3e9c/Card Bury Them Deep e6efe6.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 230518 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: e6efe6 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Bury Them Deep +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 11.577034 + posY: 2.48602819 + posZ: -42.15953 + rotX: -0.00192995532 + rotY: 270.0266 + rotZ: 357.4355 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 899c3a/Custom_Model_Bag starter deck & cards 3d3e9c/Card Graveyard Ghouls 80b7c6.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 899c3a/Custom_Model_Bag starter deck & cards 3d3e9c/Card Graveyard Ghouls 80b7c6.yaml new file mode 100644 index 000000000..b2a2c01d2 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 899c3a/Custom_Model_Bag starter deck & cards 3d3e9c/Card Graveyard Ghouls 80b7c6.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 230619 +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 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 80b7c6 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Graveyard Ghouls +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 11.2200012 + posY: 2.53440046 + posZ: -43.2727 + rotX: 1.2458092e-05 + rotY: 270.0202 + rotZ: 359.9919 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 899c3a/Custom_Model_Bag starter deck & cards 3d3e9c/Deck 9bda55.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 899c3a/Custom_Model_Bag starter deck & cards 3d3e9c/Deck 9bda55.yaml new file mode 100644 index 000000000..e214f8321 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 899c3a/Custom_Model_Bag starter deck & cards 3d3e9c/Deck 9bda55.yaml @@ -0,0 +1,1447 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 368509 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3685': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 510c0d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Emergency Cache + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.3627625 + posY: 2.66723323 + posZ: -72.27231 + rotX: 0.0208230056 + rotY: 270.002655 + rotZ: 180.016815 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 86ee68 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Machete + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.3627625 + posY: 2.66723323 + posZ: -72.27231 + rotX: 0.0208230056 + rotY: 270.002655 + rotZ: 180.016815 + 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: + '3685': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: bb1cce + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Flashlight + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.3627625 + posY: 2.66723323 + posZ: -72.27231 + rotX: 0.0208230056 + rotY: 270.002655 + rotZ: 180.016815 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 48e103 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Baseball Bat + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.3627625 + posY: 2.66723323 + posZ: -72.27231 + rotX: 0.0208230056 + rotY: 270.002655 + rotZ: 180.016815 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 368802 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 334f03 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Resourceful + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.3627625 + posY: 2.71723318 + posZ: -72.27231 + rotX: 0.0208230074 + rotY: 270.002655 + rotZ: 180.016815 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 80b7c6 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Graveyard Ghouls + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.3627625 + posY: 2.66723323 + posZ: -72.27231 + rotX: 0.0208230056 + rotY: 270.002655 + rotZ: 180.016815 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 1165db + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Physical Training + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.3627625 + posY: 2.66723323 + posZ: -72.27231 + rotX: 0.0208230056 + rotY: 270.002655 + rotZ: 180.016815 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: f34090 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Rabbit's Foot + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.3627625 + posY: 2.66723323 + posZ: -72.27231 + rotX: 0.0208230056 + rotY: 270.002655 + rotZ: 180.016815 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: ce0dd5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Lucky! + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.3627625 + posY: 2.66723323 + posZ: -72.27231 + rotX: 0.0208230056 + rotY: 270.002655 + rotZ: 180.016815 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 1b76c9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Scavenging + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.3627625 + posY: 2.66723323 + posZ: -72.27231 + rotX: 0.0208230056 + rotY: 270.002655 + rotZ: 180.016815 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 593deb + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Leather Coat + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.3627625 + posY: 2.66723323 + posZ: -72.27231 + rotX: 0.0208230056 + rotY: 270.002655 + rotZ: 180.016815 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: fc9e1b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dig Deep + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.3627625 + posY: 2.66723323 + posZ: -72.27231 + rotX: 0.0208230056 + rotY: 270.002655 + rotZ: 180.016815 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 12660b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: .45 Automatic + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.3627625 + posY: 2.66723323 + posZ: -72.27231 + rotX: 0.0208230056 + rotY: 270.002655 + rotZ: 180.016815 + 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: + '3685': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 0ab3f1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Knife + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.3627625 + posY: 2.71723318 + posZ: -72.27231 + rotX: 0.0208230074 + rotY: 270.002655 + rotZ: 180.016815 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 5cd622 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: First Aid + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.3627625 + posY: 2.66723323 + posZ: -72.27231 + rotX: 0.0208230056 + rotY: 270.002655 + rotZ: 180.016815 + 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: + '3688': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: e66002 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Lantern + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.3627625 + posY: 2.66723323 + posZ: -72.27231 + rotX: 0.0208230056 + rotY: 270.002655 + rotZ: 180.016815 + 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: + '3685': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 0ab3f1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Knife + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.3627625 + posY: 2.66723323 + posZ: -72.27231 + rotX: 0.0208230056 + rotY: 270.002655 + rotZ: 180.016815 + 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: + '3685': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 510c0d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Emergency Cache + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.3627625 + posY: 2.71723318 + posZ: -72.27231 + rotX: 0.0208230074 + rotY: 270.002655 + rotZ: 180.016815 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: '889121' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Vicious Blow + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.3627625 + posY: 2.66723323 + posZ: -72.27231 + rotX: 0.0208230056 + rotY: 270.002655 + rotZ: 180.016815 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 08bdf1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Guard Dog + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.3627625 + posY: 2.66723323 + posZ: -72.27231 + rotX: 0.0208230056 + rotY: 270.002655 + rotZ: 180.016815 + 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: + '3688': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 3fe6de + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Gravedigger's Shovel + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.3627625 + posY: 2.71723318 + posZ: -72.27231 + rotX: 0.0208230074 + rotY: 270.002655 + rotZ: 180.016815 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 078efb + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Survival Instinct + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.3627625 + posY: 2.66723323 + posZ: -72.27231 + rotX: 0.0208230056 + rotY: 270.002655 + rotZ: 180.016815 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 368802 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 334f03 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Resourceful + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.3627625 + posY: 2.66723323 + posZ: -72.27231 + rotX: 0.0208230056 + rotY: 270.002655 + rotZ: 180.016815 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: e0dff3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dodge + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.3627625 + posY: 2.66723323 + posZ: -72.27231 + rotX: 0.0208230056 + rotY: 270.002655 + rotZ: 180.016815 + 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: + '3685': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: bb1cce + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Flashlight + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.3627625 + posY: 2.71723318 + posZ: -72.27231 + rotX: 0.0208230074 + rotY: 270.002655 + rotZ: 180.016815 + 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: + '3688': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 3fe6de + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Gravedigger's Shovel + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.3627625 + posY: 2.66723323 + posZ: -72.27231 + rotX: 0.0208230056 + rotY: 270.002655 + rotZ: 180.016815 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 88d3c0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '"Look what I found!"' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.3627625 + posY: 2.66723323 + posZ: -72.27231 + rotX: 0.0208230056 + rotY: 270.002655 + rotZ: 180.016815 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: f474b1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Stray Cat + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.3627625 + posY: 2.66723323 + posZ: -72.27231 + rotX: 0.0208230056 + rotY: 270.002655 + rotZ: 180.016815 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 373918 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: e6efe6 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Bury Them Deep + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.3627625 + posY: 2.66723323 + posZ: -72.27231 + rotX: 0.0208230056 + rotY: 270.002655 + rotZ: 180.016815 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 7d4749 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Beat Cop + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.3627625 + posY: 2.66723323 + posZ: -72.27231 + rotX: 0.0208230056 + rotY: 270.002655 + rotZ: 180.016815 + 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: + '3688': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: e66002 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Lantern + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.3627625 + posY: 2.71723318 + posZ: -72.27231 + rotX: 0.0208230074 + rotY: 270.002655 + rotZ: 180.016815 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 2db518 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Evidence! + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.3627625 + posY: 2.66723323 + posZ: -72.27231 + rotX: 0.0208230056 + rotY: 270.002655 + rotZ: 180.016815 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2263': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956212466/C93A881D22B4F7E429025CFAE677DC2EB341D6A6/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '3685': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '3688': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '3738': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '3739': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 368509 +- 226327 +- 368515 +- 368830 +- 368802 +- 373819 +- 226323 +- 368823 +- 368810 +- 368822 +- 368820 +- 368831 +- 226330 +- 368512 +- 226324 +- 368827 +- 368512 +- 368509 +- 226302 +- 226326 +- 368829 +- 368800 +- 368802 +- 226313 +- 368515 +- 368829 +- 368816 +- 368824 +- 373918 +- 226331 +- 368827 +- 226309 +Description: '' +GMNotes: '' +GUID: 9bda55 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 51.8123474 + posY: 3.54328465 + posZ: -50.26118 + rotX: 0.0210310612 + rotY: 270.002563 + rotZ: 180.016724 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 899c3a/Custom_Model_Bag starter deck & cards 3da38f.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 899c3a/Custom_Model_Bag starter deck & cards 3da38f.yaml new file mode 100644 index 000000000..0b16f59ee --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 899c3a/Custom_Model_Bag starter deck & cards 3da38f.yaml @@ -0,0 +1,58 @@ +Autoraise: true +ColorDiffuse: + b: 0.02148666 + g: 0.00100758043 + r: 0.02148666 +ContainedObjects: +- !include 'Custom_Model_Bag starter deck & cards 3da38f/Card The King in Yellow 016b72.yaml' +- !include 'Custom_Model_Bag starter deck & cards 3da38f/Card Analytical Mind 7b6ab5.yaml' +- !include 'Custom_Model_Bag starter deck & cards 3da38f/Deck bb6caf.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: '' +GMNotes: '' +GUID: 3da38f +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +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.299 + posY: 1.274427 + posZ: -57.7619 + rotX: 359.979156 + rotY: 89.99977 + rotZ: 359.983215 + scaleX: 2.0 + scaleY: 2.0 + scaleZ: 2.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 899c3a/Custom_Model_Bag starter deck & cards 3da38f/Card Analytical Mind 7b6ab5.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 899c3a/Custom_Model_Bag starter deck & cards 3da38f/Card Analytical Mind 7b6ab5.yaml new file mode 100644 index 000000000..97c3566c9 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 899c3a/Custom_Model_Bag starter deck & cards 3da38f/Card Analytical Mind 7b6ab5.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 231232 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2312': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 7b6ab5 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Analytical Mind +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 11.649827 + posY: 2.53762317 + posZ: -66.20741 + rotX: -8.731587e-06 + rotY: 270.021149 + rotZ: 359.9919 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 899c3a/Custom_Model_Bag starter deck & cards 3da38f/Card The King in Yellow 016b72.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 899c3a/Custom_Model_Bag starter deck & cards 3da38f/Card The King in Yellow 016b72.yaml new file mode 100644 index 000000000..7da5d639a --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 899c3a/Custom_Model_Bag starter deck & cards 3da38f/Card The King in Yellow 016b72.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 231133 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2311': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 016b72 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '*The King in Yellow' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 11.5127373 + posY: 2.53753686 + posZ: -65.58947 + rotX: 4.4827284e-06 + rotY: 270.021179 + rotZ: 359.9919 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 899c3a/Custom_Model_Bag starter deck & cards 3da38f/Deck bb6caf.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 899c3a/Custom_Model_Bag starter deck & cards 3da38f/Deck bb6caf.yaml new file mode 100644 index 000000000..0726ab25b --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 899c3a/Custom_Model_Bag starter deck & cards 3da38f/Deck bb6caf.yaml @@ -0,0 +1,1447 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 209615 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 35fe60 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Flashlight + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 62.8003464 + posY: 0.531714559 + posZ: 48.1147652 + rotX: -8.348472e-06 + rotY: 269.9747 + rotZ: 359.991943 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 209615 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: d6fd7c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Flashlight + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 62.800354 + posY: 0.6783302 + posZ: 48.11477 + rotX: -8.922935e-06 + rotY: 269.97467 + rotZ: 359.991943 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 209612 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: af7171 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Knife + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 63.1660233 + posY: 0.6956752 + posZ: 47.5808144 + rotX: -7.813196e-06 + rotY: 269.974731 + rotZ: 359.991943 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 209612 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 74f815 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Knife + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 63.166 + posY: 0.6840366 + posZ: 47.580864 + rotX: 0.0109439828 + rotY: 269.974548 + rotZ: 359.964172 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 01e244 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Unexpected Courage + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 62.75067 + posY: 0.670665 + posZ: 47.6655769 + rotX: 1.16786671 + rotY: 270.0349 + rotZ: 2.133475 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 7882ec + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Unexpected Courage + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 62.7518654 + posY: 0.682643056 + posZ: 47.6674728 + rotX: -5.62915329e-06 + rotY: 270.001617 + rotZ: 359.991943 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 94058f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Deduction + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -10.08242 + posY: 0.5321291 + posZ: 42.1593056 + rotX: 0.0208581239 + rotY: 269.9853 + rotZ: -0.00485414453 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 230425 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: '459440' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Medical Texts + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -9.790144 + posY: 0.6731929 + posZ: 42.03278 + rotX: 359.22464 + rotY: 269.972534 + rotZ: 1.26332164 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 230415 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: e1c30b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: No Stone Unturned + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -10.371913 + posY: 0.696386 + posZ: 42.57199 + rotX: -4.269285e-06 + rotY: 270.010254 + rotZ: 359.991943 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 230415 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: eb13cc + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: No Stone Unturned + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -10.373394 + posY: 0.670874059 + posZ: 42.574482 + rotX: 1.64352417 + rotY: 269.949554 + rotZ: 357.317078 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 230408 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 3e7a06 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Mind over Matter + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -9.790639 + posY: 0.6796973 + posZ: 42.2187462 + rotX: 0.0246154144 + rotY: 270.011 + rotZ: 0.08257543 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 230413 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: a8dcc4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Working a Hunch + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -9.878312 + posY: 0.6834089 + posZ: 42.26689 + rotX: -3.68231576e-06 + rotY: 270.0103 + rotZ: 359.991943 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 230429 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 89c006 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Fieldwork + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -10.0241156 + posY: 0.688371241 + posZ: 42.48725 + rotX: -6.67385848e-06 + rotY: 269.986267 + rotZ: 359.991943 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 230429 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 6b775f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Fieldwork + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -10.0241156 + posY: 0.6946979 + posZ: 42.48725 + rotX: -6.67385848e-06 + rotY: 269.986267 + rotZ: 359.991943 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 230431 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 58aede + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Old Book of Lore + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -10.3140774 + posY: 0.652121067 + posZ: 42.26924 + rotX: -6.528367e-06 + rotY: 269.986267 + rotZ: 359.991943 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 230434 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: b1a8ff + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dr. Milian Christopher + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -10.1404085 + posY: 0.661729932 + posZ: 42.8051147 + rotX: -6.5046047e-06 + rotY: 269.989136 + rotZ: 359.991943 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: b38d77 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Hyperawareness + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -10.4006805 + posY: 0.672584236 + posZ: 42.1331558 + rotX: -0.00210948451 + rotY: 269.986145 + rotZ: 359.932434 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: c90840 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Magnifying Glass + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -9.73047 + posY: 0.6684845 + posZ: 42.55049 + rotX: 358.4575 + rotY: 270.0258 + rotZ: 357.5594 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 230420 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 70fae7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Archaic Glyphs + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -9.673218 + posY: 0.6908843 + posZ: 41.8724251 + rotX: -6.6967873e-06 + rotY: 269.986267 + rotZ: 359.991943 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234233 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2311': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 274daa + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '*The King in Yellow' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.24874377 + posY: 0.802951634 + posZ: -64.47136 + rotX: 0.002446869 + rotY: 270.036163 + rotZ: 0.003966794 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234332 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2312': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: b66fd5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Analytical Mind + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.37369967 + posY: 0.810689867 + posZ: -64.81998 + rotX: 0.000182099335 + rotY: 270.021423 + rotZ: 359.9919 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: f34090 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: dd130e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 1b76c9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: ce0dd5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 48e103 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 88d3c0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: f474b1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 593deb + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 078efb + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: fc9e1b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: b1cf06 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Hiding Spot + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -32.3816261 + posY: 1.37460172 + posZ: -47.2214355 + rotX: 0.009442727 + rotY: 270.0416 + rotZ: 180.021637 + 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 + 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 + UniqueBack: false + '2342': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '2343': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '3688': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672864134253/9A6E0399D3624C5FFBD6CAFE5D4B988436CC65AC/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 209615 +- 209615 +- 209612 +- 209612 +- 209608 +- 209608 +- 230402 +- 230425 +- 230415 +- 230415 +- 230408 +- 230413 +- 230429 +- 230429 +- 230431 +- 230434 +- 230424 +- 230421 +- 230420 +- 234233 +- 234332 +- 368823 +- 368808 +- 368822 +- 368810 +- 368830 +- 368816 +- 368824 +- 368820 +- 368800 +- 368831 +- 368808 +Description: '' +GMNotes: '' +GUID: bb6caf +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 51.5658264 + posY: 3.500432 + posZ: -72.3145 + rotX: 0.0205725115 + rotY: 270.0013 + rotZ: 0.0174057577 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 899c3a/Custom_Model_Bag starter deck & cards 454573.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 899c3a/Custom_Model_Bag starter deck & cards 454573.yaml new file mode 100644 index 000000000..0514a4a78 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 899c3a/Custom_Model_Bag starter deck & cards 454573.yaml @@ -0,0 +1,58 @@ +Autoraise: true +ColorDiffuse: + b: 0.02148666 + g: 0.00100758043 + r: 0.02148666 +ContainedObjects: +- !include 'Custom_Model_Bag starter deck & cards 454573/Card Spirit-Speaker a33470.yaml' +- !include 'Custom_Model_Bag starter deck & cards 454573/Card Angered Spirits d8705c.yaml' +- !include 'Custom_Model_Bag starter deck & cards 454573/Deck 948267.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: '' +GMNotes: '' +GUID: '454573' +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +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.2991 + posY: 1.26982987 + posZ: -73.4665 + rotX: 359.979156 + rotY: 90.00036 + rotZ: 359.983215 + scaleX: 2.0 + scaleY: 2.0 + scaleZ: 2.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 899c3a/Custom_Model_Bag starter deck & cards 454573/Card Angered Spirits d8705c.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 899c3a/Custom_Model_Bag starter deck & cards 454573/Card Angered Spirits d8705c.yaml new file mode 100644 index 000000000..ab368a256 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 899c3a/Custom_Model_Bag starter deck & cards 454573/Card Angered Spirits d8705c.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 231417 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2314': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: d8705c +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Angered Spirits +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 11.4682789 + posY: 2.538603 + posZ: -73.1386948 + rotX: 0.0005109652 + rotY: 270.0112 + rotZ: 359.99234 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 899c3a/Custom_Model_Bag starter deck & cards 454573/Card Spirit-Speaker a33470.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 899c3a/Custom_Model_Bag starter deck & cards 454573/Card Spirit-Speaker a33470.yaml new file mode 100644 index 000000000..c1b8d36dc --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 899c3a/Custom_Model_Bag starter deck & cards 454573/Card Spirit-Speaker a33470.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 231316 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2313': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: a33470 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Spirit-Speaker +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 11.8307447 + posY: 2.53858614 + posZ: -73.00601 + rotX: -5.86014721e-05 + rotY: 270.028748 + rotZ: 359.9915 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 899c3a/Custom_Model_Bag starter deck & cards 454573/Deck 948267.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 899c3a/Custom_Model_Bag starter deck & cards 454573/Deck 948267.yaml new file mode 100644 index 000000000..ce2b0a9ab --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 899c3a/Custom_Model_Bag starter deck & cards 454573/Deck 948267.yaml @@ -0,0 +1,1447 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 209615 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 0308c7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Flashlight + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 63.7245178 + posY: 0.531122565 + posZ: 52.327652 + rotX: -8.501468e-06 + rotY: 269.97467 + rotZ: 359.991943 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 209615 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: fe63de + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Flashlight + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 63.7245178 + posY: 0.6777382 + posZ: 52.327652 + rotX: -8.569419e-06 + rotY: 269.97464 + rotZ: 359.991943 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 24d5dd + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Emergency Cache + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 64.250824 + posY: 0.5310433 + posZ: 50.0297 + rotX: 0.0189547818 + rotY: 269.974152 + rotZ: -0.00324516417 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: c5ccaa + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Emergency Cache + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 64.40692 + posY: 0.6755796 + posZ: 50.00008 + rotX: 359.8457 + rotY: 269.972473 + rotZ: 0.4029696 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 209612 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 5fd2ba + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Knife + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 63.1844139 + posY: 0.6794873 + posZ: 53.07958 + rotX: 0.000324241846 + rotY: 269.974762 + rotZ: -0.00119782006 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 209612 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: f69584 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Knife + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 63.18442 + posY: 0.6818826 + posZ: 53.0795746 + rotX: -8.481041e-06 + rotY: 269.974731 + rotZ: 359.991943 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 9c9687 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Guts + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 68.8785553 + posY: 0.531663 + posZ: 47.3887329 + rotX: 0.007160506 + rotY: 270.0017 + rotZ: 359.994171 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 3704e1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Guts + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 68.87855 + posY: 0.6805145 + posZ: 47.3887444 + rotX: -0.003235647 + rotY: 270.001648 + rotZ: 359.989655 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 67718b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Manual Dexterity + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 68.6664047 + posY: 0.6956568 + posZ: 47.70739 + rotX: -5.464068e-06 + rotY: 270.001648 + rotZ: 359.991943 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 0440de + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Perception + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 68.6657257 + posY: 0.6780955 + posZ: 47.2629471 + rotX: 0.681489348 + rotY: 270.015869 + rotZ: 1.01783633 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 03615c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Perception + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 68.6656647 + posY: 0.678492844 + posZ: 47.2628632 + rotX: 0.7379005 + rotY: 270.017548 + rotZ: 1.10182953 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: fb9dda + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Unexpected Courage + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 68.40276 + posY: 0.6820386 + posZ: 48.20719 + rotX: 0.00153513881 + rotY: 270.001648 + rotZ: -0.00295476755 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: cae2ed + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Unexpected Courage + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 68.40278 + posY: 0.687559962 + posZ: 48.2071762 + rotX: -5.366101e-06 + rotY: 270.001648 + rotZ: 359.991943 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 230420 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: e6f0b3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Archaic Glyphs + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 5.04824448 + posY: 0.531983435 + posZ: 44.48343 + rotX: -0.00499958 + rotY: 269.986969 + rotZ: 359.982452 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 3c6faf + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Scrying + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -11.9877892 + posY: 0.5312745 + posZ: 49.13132 + rotX: 0.012736992 + rotY: 269.992676 + rotZ: 0.0008817364 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 74ae74 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Fearless + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -12.3968229 + posY: 0.6681264 + posZ: 49.3720169 + rotX: 1.30202591 + rotY: 269.927216 + rotZ: 358.098938 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: '182432' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Forbidden Knowledge + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -12.1454153 + posY: 0.695446551 + posZ: 49.2595444 + rotX: -4.46563627e-06 + rotY: 269.999329 + rotZ: 359.991943 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: ae5410 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Arcane Initiate + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -12.4269218 + posY: 0.681511343 + posZ: 49.5104179 + rotX: -0.000947328168 + rotY: 269.9994 + rotZ: 0.0107307695 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 4b012e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Blinding Light + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -11.98797 + posY: 0.680011749 + posZ: 48.85712 + rotX: 0.002878429 + rotY: 269.963654 + rotZ: 359.991577 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: fbd8ac + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Holy Rosary + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -12.3348112 + posY: 0.665648758 + posZ: 49.6117325 + rotX: 1.6913774 + rotY: 269.935638 + rotZ: 357.198883 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: e25a72 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Astral Travel + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -12.1454172 + posY: 0.687381446 + posZ: 49.53361 + rotX: -1.05079189e-05 + rotY: 269.9637 + rotZ: 359.991943 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 4b434b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Astral Travel + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -12.1466227 + posY: 0.6836604 + posZ: 49.5357666 + rotX: 1.36756158 + rotY: 269.917328 + rotZ: 357.661957 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 34216f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Alchemical Transmutation + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -12.082408 + posY: 0.6511749 + posZ: 49.0054436 + rotX: -4.38226e-06 + rotY: 269.999329 + rotZ: 359.991943 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 329acb + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Alchemical Transmutation + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -12.082407 + posY: 0.660859048 + posZ: 49.00544 + rotX: -4.38226e-06 + rotY: 269.999329 + rotZ: 359.991943 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: bac512 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Uncage the Soul + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -11.829072 + posY: 0.6651581 + posZ: 49.50003 + rotX: 358.9075 + rotY: 269.986237 + rotZ: 358.149231 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 214ae5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Uncage the Soul + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -11.83013 + posY: 0.680153131 + posZ: 49.4983063 + rotX: -1.0416622e-05 + rotY: 269.9637 + rotZ: 359.991943 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 95a604 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Shrivelling + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -12.5515947 + posY: 0.6899244 + posZ: 48.7065544 + rotX: -4.22092671e-06 + rotY: 269.999329 + rotZ: 359.991943 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 31e35f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ward of Protection + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -11.6081018 + posY: 0.699511468 + posZ: 49.2252 + rotX: -9.950131e-06 + rotY: 269.963745 + rotZ: 359.991943 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 2068c3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Arcane Studies + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -12.3020744 + posY: 0.7036061 + posZ: 48.89477 + rotX: 0.00245427643 + rotY: 269.999329 + rotZ: 359.993256 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: '696412' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Drawn to the Flame + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -11.6716146 + posY: 0.711302459 + posZ: 49.39778 + rotX: 0.000939595862 + rotY: 269.963684 + rotZ: 359.990173 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231316 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2313': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 3b4073 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Spirit-Speaker + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.06329966 + posY: 0.8037952 + posZ: -72.27996 + rotX: -0.000138898307 + rotY: 270.030731 + rotZ: 359.991974 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231417 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2314': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: b7385e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Angered Spirits + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.58626175 + posY: 0.811712 + posZ: -73.14256 + rotX: -0.000307537353 + rotY: 270.0113 + rotZ: 359.9911 + 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 + 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 + 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 + UniqueBack: false + '2313': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '2314': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 209615 +- 209615 +- 209609 +- 209609 +- 209612 +- 209612 +- 209600 +- 209600 +- 209604 +- 209606 +- 209606 +- 209608 +- 209608 +- 230420 +- 230319 +- 230303 +- 230316 +- 230318 +- 230311 +- 230323 +- 230312 +- 230312 +- 230320 +- 230320 +- 230305 +- 230305 +- 230328 +- 230308 +- 230324 +- 230304 +- 231316 +- 231417 +Description: '' +GMNotes: '' +GUID: '948267' +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 11.3418932 + posY: 2.65599537 + posZ: -73.59111 + rotX: -8.725833e-05 + rotY: 270.000031 + rotZ: 179.991913 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 899c3a/Custom_Model_Bag starter deck & cards 5b1faf.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 899c3a/Custom_Model_Bag starter deck & cards 5b1faf.yaml new file mode 100644 index 000000000..59862c281 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 899c3a/Custom_Model_Bag starter deck & cards 5b1faf.yaml @@ -0,0 +1,59 @@ +Autoraise: true +ColorDiffuse: + b: 0.02148666 + g: 0.00100758043 + r: 0.02148666 +ContainedObjects: +- !include 'Custom_Model_Bag starter deck & cards 5b1faf/Card Shell Shock bcf406.yaml' +- !include 'Custom_Model_Bag starter deck & cards 5b1faf/Card The Home Front b80459.yaml' +- !include 'Custom_Model_Bag starter deck & cards 5b1faf/Card Sophie f8c873.yaml' +- !include 'Custom_Model_Bag starter deck & cards 5b1faf/Deck 7a7ad5.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: '' +GMNotes: '' +GUID: 5b1faf +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +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.2989 + posY: 1.27671146 + posZ: -49.9578 + rotX: 359.979156 + rotY: 89.99988 + rotZ: 359.983246 + scaleX: 2.0 + scaleY: 2.0 + scaleZ: 2.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 899c3a/Custom_Model_Bag starter deck & cards 5b1faf/Card Shell Shock bcf406.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 899c3a/Custom_Model_Bag starter deck & cards 5b1faf/Card Shell Shock bcf406.yaml new file mode 100644 index 000000000..0193d3c8d --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 899c3a/Custom_Model_Bag starter deck & cards 5b1faf/Card Shell Shock bcf406.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 231031 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2310': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: bcf406 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Shell Shock +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 11.8503056 + posY: 2.536579 + posZ: -58.77871 + rotX: -5.433177e-05 + rotY: 270.02182 + rotZ: 359.991943 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 899c3a/Custom_Model_Bag starter deck & cards 5b1faf/Card Sophie f8c873.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 899c3a/Custom_Model_Bag starter deck & cards 5b1faf/Card Sophie f8c873.yaml new file mode 100644 index 000000000..b5a2b23af --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 899c3a/Custom_Model_Bag starter deck & cards 5b1faf/Card Sophie f8c873.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 270164 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2701': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/960860341956230050/FB390FF37A182334B982AA19488275BB5C6E2219/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: f8c873 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Sophie +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 51.035675 + posY: 3.411893 + posZ: -65.0169754 + rotX: 0.0220049378 + rotY: 269.999451 + rotZ: 0.0181961823 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 899c3a/Custom_Model_Bag starter deck & cards 5b1faf/Card The Home Front b80459.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 899c3a/Custom_Model_Bag starter deck & cards 5b1faf/Card The Home Front b80459.yaml new file mode 100644 index 000000000..6ca4df557 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 899c3a/Custom_Model_Bag starter deck & cards 5b1faf/Card The Home Front b80459.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 230930 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2309': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: b80459 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: The Home Front +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 12.0288057 + posY: 2.52829027 + posZ: -58.18026 + rotX: 1.35126579 + rotY: 270.020325 + rotZ: 359.9935 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 899c3a/Custom_Model_Bag starter deck & cards 5b1faf/Deck 7a7ad5.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 899c3a/Custom_Model_Bag starter deck & cards 5b1faf/Deck 7a7ad5.yaml new file mode 100644 index 000000000..2ba29ef7e --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 899c3a/Custom_Model_Bag starter deck & cards 5b1faf/Deck 7a7ad5.yaml @@ -0,0 +1,1511 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 209615 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 0308c7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Flashlight + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 63.7245178 + posY: 0.531122565 + posZ: 52.327652 + rotX: -8.501468e-06 + rotY: 269.97467 + rotZ: 359.991943 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 209615 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: fe63de + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Flashlight + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 63.7245178 + posY: 0.6777382 + posZ: 52.327652 + rotX: -8.569419e-06 + rotY: 269.97464 + rotZ: 359.991943 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 24d5dd + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Emergency Cache + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 64.250824 + posY: 0.5310433 + posZ: 50.0297 + rotX: 0.0189547818 + rotY: 269.974152 + rotZ: -0.00324516417 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: c5ccaa + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Emergency Cache + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 64.40692 + posY: 0.6755796 + posZ: 50.00008 + rotX: 359.8457 + rotY: 269.972473 + rotZ: 0.4029696 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 209612 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 5fd2ba + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Knife + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 63.1844139 + posY: 0.6794873 + posZ: 53.07958 + rotX: 0.000324241846 + rotY: 269.974762 + rotZ: -0.00119782006 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 209612 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: f69584 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Knife + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 63.18442 + posY: 0.6818826 + posZ: 53.0795746 + rotX: -8.481041e-06 + rotY: 269.974731 + rotZ: 359.991943 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: b79a41 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Overpower + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 67.09334 + posY: 0.531398 + posZ: 50.3647 + rotX: -6.09355948e-06 + rotY: 270.001648 + rotZ: 359.991943 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 25e320 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Overpower + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 67.09334 + posY: 0.6780137 + posZ: 50.3647 + rotX: -5.417794e-06 + rotY: 270.001617 + rotZ: 359.991943 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 5eca9d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Manual Dexterity + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 67.76814 + posY: 0.6952269 + posZ: 50.76755 + rotX: -5.284809e-06 + rotY: 270.001617 + rotZ: 359.991943 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 209913 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2099': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 553a70 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Sneak Attack + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 36.8158226 + posY: 0.530729353 + posZ: 55.0476646 + rotX: 0.00253007538 + rotY: 269.990143 + rotZ: -0.001737182 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 209912 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2099': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 0d6acb + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Elusive + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 37.29066 + posY: 0.662418246 + posZ: 55.4377937 + rotX: 358.317444 + rotY: 270.046265 + rotZ: 357.437683 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 209916 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2099': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: a57f6f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Backstab + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 36.40089 + posY: 0.694637656 + posZ: 54.95258 + rotX: -7.826537e-06 + rotY: 269.981323 + rotZ: 359.991943 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 209719 + 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/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 7cbc17 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Cunning Distraction + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 37.5550423 + posY: 0.6641423 + posZ: 55.26701 + rotX: 358.016724 + rotY: 270.0757 + rotZ: 357.5552 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 230404 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: d483a2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Barricade + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 52.0351563 + posY: 0.6801734 + posZ: 43.7650948 + rotX: 359.985382 + rotY: 270.01 + rotZ: 359.9236 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 751cbf + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Vicious Blow + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 21.0372753 + posY: 0.6741665 + posZ: 53.05345 + rotX: 358.895325 + rotY: 269.946747 + rotZ: 1.94047773 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: c63d6c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Evidence! + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 21.2438679 + posY: 0.686786 + posZ: 53.7168159 + rotX: -1.65043457e-06 + rotY: 270.0254 + rotZ: 359.991943 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 1dff4c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dodge + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 20.6762428 + posY: 0.6930674 + posZ: 54.0400124 + rotX: -1.51202983e-06 + rotY: 270.02536 + rotZ: 359.991943 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: '556905' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dodge + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 20.6762428 + posY: 0.6504599 + posZ: 54.04001 + rotX: -1.51202983e-06 + rotY: 270.02536 + rotZ: 359.991943 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: '917429' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '"Let me handle this!"' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 20.8815479 + posY: 0.6601733 + posZ: 53.8315353 + rotX: -1.81385212e-06 + rotY: 270.025421 + rotZ: 359.991943 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 226329 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 1f4f7c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: True Grit + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 21.0623684 + posY: 0.670519352 + posZ: 53.3954239 + rotX: 359.786041 + rotY: 269.96582 + rotZ: 0.383330524 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 226329 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: dacffa + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: True Grit + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 21.0622387 + posY: 0.6795978 + posZ: 53.39583 + rotX: -8.40308348e-06 + rotY: 269.970581 + rotZ: 359.991943 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: '641644' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: .32 Colt + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 21.1399441 + posY: 0.6892238 + posZ: 53.638092 + rotX: -8.973795e-06 + rotY: 269.970581 + rotZ: 359.991943 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 1fc063 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: .32 Colt + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 21.1408329 + posY: 0.695146 + posZ: 53.6393929 + rotX: 359.0837 + rotY: 269.991638 + rotZ: 358.582245 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 0af786 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: First Aid + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 21.03914 + posY: 0.7029687 + posZ: 52.7815 + rotX: -0.004708395 + rotY: 269.97052 + rotZ: 0.00111422129 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: f319b9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Physical Training + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 20.5921021 + posY: 0.710782468 + posZ: 53.789032 + rotX: -5.17433546e-06 + rotY: 269.970642 + rotZ: 359.98996 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: b3a768 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Beat Cop + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 20.9598484 + posY: 0.7185446 + posZ: 53.7890434 + rotX: 0.000277565647 + rotY: 269.970947 + rotZ: 359.9926 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 845b6d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Guard Dog + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 20.7754936 + posY: 0.7262876 + posZ: 53.37311 + rotX: -0.000595949 + rotY: 269.9706 + rotZ: -0.00536868 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: aefb46 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '"Let me handle this!"' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 21.0127068 + posY: 0.7340193 + posZ: 53.66654 + rotX: 0.000530267658 + rotY: 270.0253 + rotZ: 359.991455 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: f77c91 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: .45 Automatic + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 20.82811 + posY: 0.741117656 + posZ: 54.2453842 + rotX: -0.00500148628 + rotY: 269.970642 + rotZ: 359.9018 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 49aa75 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Machete + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 20.9334812 + posY: 0.749446332 + posZ: 53.56061 + rotX: -0.00113899284 + rotY: 269.970642 + rotZ: 359.992645 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231031 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2310': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: '397184' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Shell Shock + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.19781613 + posY: 0.8024609 + posZ: -57.1710854 + rotX: 359.95166 + rotY: 270.021973 + rotZ: -0.00308150868 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 230930 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2309': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 60d5ca + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Home Front + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.32650614 + posY: 0.809748 + posZ: -57.0700073 + rotX: 359.871368 + rotY: 270.013916 + rotZ: 359.990326 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231700 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2317': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/949588657199730735/4C06A4CE852C9C60EADABCD44E7C90358605C119/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949588657199729998/FCB94FEED272E2799EF9E25423EC1802C939D59A/ + NumHeight: 2 + NumWidth: 2 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: e38bb6 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '*Sophie' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.055032 + posY: 0.8175999 + posZ: -57.14558 + rotX: 359.971741 + rotY: 269.974152 + rotZ: 359.993073 + 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 + UniqueBack: false + '2097': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '2099': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + 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 + 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 + UniqueBack: false + '2309': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '2310': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '2317': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/949588657199730735/4C06A4CE852C9C60EADABCD44E7C90358605C119/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949588657199729998/FCB94FEED272E2799EF9E25423EC1802C939D59A/ + NumHeight: 2 + NumWidth: 2 + UniqueBack: false +DeckIDs: +- 209615 +- 209615 +- 209609 +- 209609 +- 209612 +- 209612 +- 209602 +- 209602 +- 209604 +- 209913 +- 209912 +- 209916 +- 209719 +- 230404 +- 226302 +- 226309 +- 226313 +- 226313 +- 226305 +- 226329 +- 226329 +- 226328 +- 226328 +- 226324 +- 226323 +- 226331 +- 226326 +- 226305 +- 226330 +- 226327 +- 231031 +- 230930 +- 231700 +Description: '' +GMNotes: '' +GUID: 7a7ad5 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.7663383 + posY: 2.659244 + posZ: -58.69908 + rotX: 5.75184131e-05 + rotY: 270.0 + rotZ: 179.9948 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 899c3a/Custom_Model_Bag starter deck & cards baeea0.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 899c3a/Custom_Model_Bag starter deck & cards baeea0.yaml new file mode 100644 index 000000000..6396a9d8b --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 899c3a/Custom_Model_Bag starter deck & cards baeea0.yaml @@ -0,0 +1,58 @@ +Autoraise: true +ColorDiffuse: + b: 0.02148666 + g: 0.00100758043 + r: 0.02148666 +ContainedObjects: +- !include 'Custom_Model_Bag starter deck & cards baeea0/Card Star of Hyades 1890d0.yaml' +- !include 'Custom_Model_Bag starter deck & cards baeea0/Deck 9d1b37.yaml' +- !include 'Custom_Model_Bag starter deck & cards baeea0/Deck b0613c.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: '' +GMNotes: '' +GUID: baeea0 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +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.2991 + posY: 1.27213848 + posZ: -65.5814 + rotX: 359.979156 + rotY: 89.99995 + rotZ: 359.983215 + scaleX: 2.0 + scaleY: 2.0 + scaleZ: 2.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 899c3a/Custom_Model_Bag starter deck & cards baeea0/Card Star of Hyades 1890d0.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 899c3a/Custom_Model_Bag starter deck & cards baeea0/Card Star of Hyades 1890d0.yaml new file mode 100644 index 000000000..ab7d342a8 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 899c3a/Custom_Model_Bag starter deck & cards baeea0/Card Star of Hyades 1890d0.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 230715 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2307': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 1890d0 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Star of Hyades +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 12.0536613 + posY: 2.53540158 + posZ: -50.43265 + rotX: -0.000315523561 + rotY: 269.993 + rotZ: 359.991974 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 899c3a/Custom_Model_Bag starter deck & cards baeea0/Deck 9d1b37.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 899c3a/Custom_Model_Bag starter deck & cards baeea0/Deck 9d1b37.yaml new file mode 100644 index 000000000..4def8c62f --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 899c3a/Custom_Model_Bag starter deck & cards baeea0/Deck 9d1b37.yaml @@ -0,0 +1,172 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 230814 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: '170538' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 230814 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: dfd48b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 230814 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: '170538' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' +CustomDeck: + '2308': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 230814 +- 230814 +- 230814 +Description: '' +GMNotes: '' +GUID: 9d1b37 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 11.5792418 + posY: 2.53505182 + posZ: -51.1693878 + rotX: -4.58269678e-05 + rotY: 270.0 + rotZ: 359.991882 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 899c3a/Custom_Model_Bag starter deck & cards baeea0/Deck b0613c.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 899c3a/Custom_Model_Bag starter deck & cards baeea0/Deck b0613c.yaml new file mode 100644 index 000000000..ced424edd --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 899c3a/Custom_Model_Bag starter deck & cards baeea0/Deck b0613c.yaml @@ -0,0 +1,1547 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: '908897' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Arcane Initiate + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -27.7682838 + posY: 0.526886165 + posZ: 80.10783 + rotX: 0.0167626627 + rotY: 270.005371 + rotZ: 359.993347 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: a82870 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Shrivelling + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -27.6929836 + posY: 0.6679055 + posZ: 79.79498 + rotX: 359.2265 + rotY: 269.985657 + rotZ: 1.51193392 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: c59a81 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Drawn to the Flame + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -27.13957 + posY: 0.69114095 + posZ: 79.91666 + rotX: -1.00285051e-05 + rotY: 269.9637 + rotZ: 359.991943 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 8f8646 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Fearless + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -27.543251 + posY: 0.6776444 + posZ: 80.08715 + rotX: 0.04207595 + rotY: 269.970856 + rotZ: 359.977936 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: ec0fba + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Arcane Studies + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -27.59329 + posY: 0.6757082 + posZ: 79.93542 + rotX: 0.0228669867 + rotY: 269.998627 + rotZ: 359.914185 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 6cc0d7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Holy Rosary + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -27.5677452 + posY: 0.6762076 + posZ: 80.17629 + rotX: 359.5172 + rotY: 270.0059 + rotZ: 359.2449 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 810fa7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ward of Protection + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -27.2662411 + posY: 0.6831082 + posZ: 79.95975 + rotX: -1.06250627e-05 + rotY: 269.9637 + rotZ: 359.991943 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 5d88fb + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Scrying + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -27.6933823 + posY: 0.6894251 + posZ: 80.030426 + rotX: -4.381843e-06 + rotY: 269.999329 + rotZ: 359.991943 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: b3baf1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Blinding Light + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -27.8427944 + posY: 0.6468288 + posZ: 79.95063 + rotX: -1.0971492e-05 + rotY: 269.9637 + rotZ: 359.991943 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 209910 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2099': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: da8fed + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Sleight of Hand + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 38.7800636 + posY: 0.6598691 + posZ: 55.9862137 + rotX: -8.210068e-06 + rotY: 269.9813 + rotZ: 359.991943 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 209910 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2099': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: b2647d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Sleight of Hand + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 37.5582771 + posY: 0.6724141 + posZ: 56.177227 + rotX: -0.000162167809 + rotY: 270.0065 + rotZ: 359.9798 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 210026 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2100': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 275c37 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Stealth + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 37.59177 + posY: 0.679587543 + posZ: 56.2051544 + rotX: 0.00173229421 + rotY: 269.999969 + rotZ: 359.9914 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 210026 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2100': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 018865 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Stealth + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 37.591774 + posY: 0.689618 + posZ: 56.2051544 + rotX: -0.000113417664 + rotY: 270.0001 + rotZ: 359.991669 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 209906 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2099': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 7b10af + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Daring Maneuver + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 38.1985855 + posY: 0.6984966 + posZ: 56.38385 + rotX: -7.708976e-06 + rotY: 269.9813 + rotZ: 359.991943 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 209906 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2099': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 31ff63 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Daring Maneuver + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 38.1985855 + posY: 0.708156466 + posZ: 56.38385 + rotX: -7.708976e-06 + rotY: 269.9813 + rotZ: 359.991943 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 209802 + 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/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 073a4a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Opportunist + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 38.6559944 + posY: 0.7105143 + posZ: 55.7163277 + rotX: -0.00323154242 + rotY: 269.998016 + rotZ: -0.0037243187 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 209916 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2099': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: '904381' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Backstab + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 38.7434921 + posY: 0.7182077 + posZ: 56.3999443 + rotX: -0.000418634649 + rotY: 269.9812 + rotZ: 359.989838 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 210023 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2100': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: '192806' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Hard Knocks + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 38.7142639 + posY: 0.725935459 + posZ: 56.32383 + rotX: -0.000422191079 + rotY: 269.9999 + rotZ: 359.990417 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 210028 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2100': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: d66f5b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: .41 Derringer + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 37.90566 + posY: 0.73371464 + posZ: 56.37403 + rotX: -0.000227919212 + rotY: 270.000061 + rotZ: 359.99118 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 209913 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2099': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: e787ed + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Sneak Attack + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 37.9914742 + posY: 0.741484165 + posZ: 56.02283 + rotX: -0.0006274676 + rotY: 269.981384 + rotZ: 359.9924 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 209912 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2099': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: '696410' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Elusive + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 38.1062927 + posY: 0.749162555 + posZ: 56.47456 + rotX: -0.0001598491 + rotY: 269.981384 + rotZ: 359.990875 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 210021 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2100': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: ae075b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Switchblade + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 37.73466 + posY: 0.756892741 + posZ: 56.3238258 + rotX: -0.000243445131 + rotY: 270.000061 + rotZ: 359.99115 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 210031 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2100': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: '226555' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Leo de Luca + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 38.4235764 + posY: 0.7881741 + posZ: 56.2230034 + rotX: 0.0002631553 + rotY: 269.999939 + rotZ: 359.9914 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 210025 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2100': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: cf799e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Pickpocketing + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 37.9624 + posY: 0.7933971 + posZ: 56.1725121 + rotX: 0.6319722 + rotY: 270.013367 + rotZ: 0.873983145 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 209615 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 0308c7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Flashlight + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 63.7245178 + posY: 0.531122565 + posZ: 52.327652 + rotX: -8.501468e-06 + rotY: 269.97467 + rotZ: 359.991943 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 209615 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: fe63de + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Flashlight + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 63.7245178 + posY: 0.6777382 + posZ: 52.327652 + rotX: -8.569419e-06 + rotY: 269.97464 + rotZ: 359.991943 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 24d5dd + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Emergency Cache + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 64.250824 + posY: 0.5310433 + posZ: 50.0297 + rotX: 0.0189547818 + rotY: 269.974152 + rotZ: -0.00324516417 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: c5ccaa + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Emergency Cache + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 64.40692 + posY: 0.6755796 + posZ: 50.00008 + rotX: 359.8457 + rotY: 269.972473 + rotZ: 0.4029696 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 209612 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 5fd2ba + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Knife + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 63.1844139 + posY: 0.6794873 + posZ: 53.07958 + rotX: 0.000324241846 + rotY: 269.974762 + rotZ: -0.00119782006 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 209612 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: f69584 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Knife + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 63.18442 + posY: 0.6818826 + posZ: 53.0795746 + rotX: -8.481041e-06 + rotY: 269.974731 + rotZ: 359.991943 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 230715 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2307': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: f044d6 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Star of Hyades + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.60132 + posY: 0.8013541 + posZ: -50.5119362 + rotX: -0.000357984623 + rotY: 269.9931 + rotZ: 359.9911 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 230814 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: '170538' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 230814 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: dfd48b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 230814 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2308': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: '170538' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Painted World + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 7.48852539 + posY: 0.6302006 + posZ: -51.9392853 + rotX: -0.0006575984 + rotY: 269.970917 + rotZ: -0.002133784 + 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 + UniqueBack: false + '2098': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '2099': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '2100': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + 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 + UniqueBack: false + '2307': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '2308': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 230318 +- 230328 +- 230304 +- 230303 +- 230324 +- 230323 +- 230308 +- 230319 +- 230311 +- 209910 +- 209910 +- 210026 +- 210026 +- 209906 +- 209906 +- 209802 +- 209916 +- 210023 +- 210028 +- 209913 +- 209912 +- 210021 +- 210031 +- 210025 +- 209615 +- 209615 +- 209609 +- 209609 +- 209612 +- 209612 +- 230715 +- 230814 +- 230814 +- 230814 +Description: '' +GMNotes: '' +GUID: b0613c +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 9.77442 + posY: 2.65679431 + posZ: -50.83049 + rotX: 1.42699862 + rotY: 269.999023 + rotZ: 179.992554 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 899c3a/Custom_Model_Bag starter deck & cards c55d46.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 899c3a/Custom_Model_Bag starter deck & cards c55d46.yaml new file mode 100644 index 000000000..c932af97d --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 899c3a/Custom_Model_Bag starter deck & cards c55d46.yaml @@ -0,0 +1,59 @@ +Autoraise: true +ColorDiffuse: + b: 0.02148666 + g: 0.00100758043 + r: 0.02148666 +ContainedObjects: +- !include 'Custom_Model_Bag starter deck & cards c55d46/Deck 441037.yaml' +- !include 'Custom_Model_Bag starter deck & cards c55d46/Deck 3a149f.yaml' +- !include 'Custom_Model_Bag starter deck & cards c55d46/Deck 111873.yaml' +- !include 'Custom_Model_Bag starter deck & cards c55d46/Custom_Tile Neutral dc4d49.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: '' +GMNotes: '' +GUID: c55d46 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +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.2984 + posY: 1.26523256 + posZ: -89.1737 + rotX: 359.979156 + rotY: 89.98358 + rotZ: 359.983246 + scaleX: 2.0 + scaleY: 2.0 + scaleZ: 2.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 899c3a/Custom_Model_Bag starter deck & cards c55d46/Custom_Tile Neutral dc4d49.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 899c3a/Custom_Model_Bag starter deck & cards c55d46/Custom_Tile Neutral dc4d49.yaml new file mode 100644 index 000000000..83a99c18a --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 899c3a/Custom_Model_Bag starter deck & cards c55d46/Custom_Tile Neutral dc4d49.yaml @@ -0,0 +1,258 @@ +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: http://cloud-3.steamusercontent.com/ugc/959720256696004758/052722844D720D00D869C705F6E1F566FE3DB81E/ + ImageURL: http://cloud-3.steamusercontent.com/ugc/959720256696004758/052722844D720D00D869C705F6E1F566FE3DB81E/ + WidthScale: 0.0 +Description: '' +GMNotes: '' +GUID: dc4d49 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Tile +Nickname: Neutral +Snap: true +States: + '2': + Autoraise: true + ColorDiffuse: + b: 0.1866838 + g: 0.1866838 + r: 0.52787447 + CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.1 + Type: 2 + ImageScalar: 1.0 + ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/852725391212695569/1ECCA5DF02907E62EB9CBE3DD7938B4578FD8643/ + ImageURL: http://cloud-3.steamusercontent.com/ugc/852725391212695174/9F749C3F7802D9A6ADAE3DA8B1B6D61C432D8558/ + WidthScale: 0.0 + Description: '' + GMNotes: '' + GUID: 3f4cc2 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Custom_Tile + Nickname: Survivor + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 48.81907 + posY: 1.2827431 + posZ: -86.88261 + rotX: 0.0208144654 + rotY: 269.979919 + rotZ: 0.0167654976 + scaleX: 0.8 + scaleY: 1.0 + scaleZ: 0.8 + XmlUI: '' + '3': + Autoraise: true + ColorDiffuse: + b: 0.149916649 + g: 0.4651566 + r: 0.179213941 + CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.1 + Type: 2 + ImageScalar: 1.0 + ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/852725391212696260/6B058874739C9857CCE9A01586B6283EAF45DBC6/ + ImageURL: http://cloud-3.steamusercontent.com/ugc/852725391212695987/FF1E8C63CA2E62A99EF0451C6B608DB7BCCDCDF7/ + WidthScale: 0.0 + Description: '' + GMNotes: '' + GUID: 8a18b8 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Custom_Tile + Nickname: Rogue + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 5.60568428 + posY: 0.40833208 + posZ: -80.17587 + rotX: -7.450509e-06 + rotY: 269.9788 + rotZ: 359.991943 + scaleX: 0.8 + scaleY: 1.0 + scaleZ: 0.8 + XmlUI: '' + '4': + Autoraise: true + ColorDiffuse: + b: 0.520906031 + g: 0.243227154 + r: 0.193294525 + CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.1 + Type: 2 + ImageScalar: 1.0 + ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/852725391212691723/19AA1846168EA893CC781C0F6462F86A3F25A6AF/ + ImageURL: http://cloud-3.steamusercontent.com/ugc/852725391212691367/D9A3CF595E140B23AD15D2DB5483C47B39EB68E1/ + WidthScale: 0.0 + Description: '' + GMNotes: '' + GUID: 4685e0 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Custom_Tile + Nickname: Guardian + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 5.60568428 + posY: 0.40833205 + posZ: -80.17587 + rotX: -5.844681e-06 + rotY: 269.9788 + rotZ: 359.991943 + scaleX: 0.8 + scaleY: 1.0 + scaleZ: 0.8 + XmlUI: '' + '5': + Autoraise: true + ColorDiffuse: + b: 0.180286109 + g: 0.321400464 + r: 0.541811764 + CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.1 + Type: 2 + ImageScalar: 1.0 + ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/852725391212694374/2BF8FF8EB305346864ED92FAF0F4F3AB553EB533/ + ImageURL: http://cloud-3.steamusercontent.com/ugc/852725391212693890/EE4BBEAD8E2CB53ED0A19BA6CB54227E5A211DEB/ + WidthScale: 0.0 + Description: '' + GMNotes: '' + GUID: f88498 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Custom_Tile + Nickname: Seeker + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 5.60568428 + posY: 0.40833205 + posZ: -80.17587 + rotX: -7.061559e-06 + rotY: 269.9788 + rotZ: 359.991943 + scaleX: 0.8 + scaleY: 1.0 + scaleZ: 0.8 + XmlUI: '' + '6': + Autoraise: true + ColorDiffuse: + b: 0.472125232 + g: 0.153807551 + r: 0.353789359 + CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.1 + Type: 2 + ImageScalar: 1.0 + ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/852725391212693153/2CEC9B34B5B750B61EF385CC94289E016014CDFA/ + ImageURL: http://cloud-3.steamusercontent.com/ugc/852725391212692804/26C0E975869805D8533983F353CAD8EAC2D3EDD7/ + WidthScale: 0.0 + Description: '' + GMNotes: '' + GUID: 4437f7 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Custom_Tile + Nickname: Mystic + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 5.60568428 + posY: 0.40833208 + posZ: -80.17587 + rotX: -7.4092377e-06 + rotY: 269.9788 + rotZ: 359.991943 + scaleX: 0.8 + scaleY: 1.0 + scaleZ: 0.8 + XmlUI: '' +Sticky: true +Tooltip: true +Transform: + posX: 52.0675163 + posY: 3.33401847 + posZ: -86.95895 + rotX: 0.02035495 + rotY: 269.97998 + rotZ: 0.0169131123 + scaleX: 0.8 + scaleY: 1.0 + scaleZ: 0.8 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 899c3a/Custom_Model_Bag starter deck & cards c55d46/Deck 111873.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 899c3a/Custom_Model_Bag starter deck & cards c55d46/Deck 111873.yaml new file mode 100644 index 000000000..dabdca0a5 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 899c3a/Custom_Model_Bag starter deck & cards c55d46/Deck 111873.yaml @@ -0,0 +1,1755 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 209615 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 0308c7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Flashlight + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 63.7245178 + posY: 0.531122565 + posZ: 52.327652 + rotX: -8.501468e-06 + rotY: 269.97467 + rotZ: 359.991943 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 209615 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: fe63de + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Flashlight + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 63.7245178 + posY: 0.6777382 + posZ: 52.327652 + rotX: -8.569419e-06 + rotY: 269.97464 + rotZ: 359.991943 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 24d5dd + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Emergency Cache + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 64.250824 + posY: 0.5310433 + posZ: 50.0297 + rotX: 0.0189547818 + rotY: 269.974152 + rotZ: -0.00324516417 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: c5ccaa + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Emergency Cache + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 64.40692 + posY: 0.6755796 + posZ: 50.00008 + rotX: 359.8457 + rotY: 269.972473 + rotZ: 0.4029696 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 209612 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 5fd2ba + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Knife + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 63.1844139 + posY: 0.6794873 + posZ: 53.07958 + rotX: 0.000324241846 + rotY: 269.974762 + rotZ: -0.00119782006 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 209612 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: f69584 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Knife + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 63.18442 + posY: 0.6818826 + posZ: 53.0795746 + rotX: -8.481041e-06 + rotY: 269.974731 + rotZ: 359.991943 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: a44e67 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Perception + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 65.30272 + posY: 0.531392634 + posZ: 50.4042625 + rotX: -5.35359459e-06 + rotY: 270.001678 + rotZ: 359.991943 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 3b46f4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Perception + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 65.30272 + posY: 0.6780083 + posZ: 50.4042664 + rotX: -5.58913234e-06 + rotY: 270.001648 + rotZ: 359.991943 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: bb76ff + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Overpower + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 65.667305 + posY: 0.6952948 + posZ: 50.2864838 + rotX: -5.12806128e-06 + rotY: 270.001648 + rotZ: 359.991943 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: aa7df0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Overpower + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 65.667305 + posY: 0.6816215 + posZ: 50.2864838 + rotX: -5.12806128e-06 + rotY: 270.001648 + rotZ: 359.991943 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 9713b1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Unexpected Courage + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 65.24217 + posY: 0.6784735 + posZ: 50.512558 + rotX: 359.9904 + rotY: 270.0016 + rotZ: 0.101489834 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 52b4dd + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Unexpected Courage + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 65.2422 + posY: 0.682243049 + posZ: 50.5127029 + rotX: -5.073033e-06 + rotY: 270.001648 + rotZ: 359.991943 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: e8f3a1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Manual Dexterity + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 68.1752853 + posY: 0.6898692 + posZ: -32.10238 + rotX: -0.00301543484 + rotY: 269.973938 + rotZ: 359.99057 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: e8f3a1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Manual Dexterity + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 68.7112961 + posY: 0.7008435 + posZ: -32.53088 + rotX: -0.004462051 + rotY: 269.974 + rotZ: 359.991943 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 177e41 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Machete + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 20.11576 + posY: 0.5309991 + posZ: 52.8980064 + rotX: 0.000328018243 + rotY: 269.970581 + rotZ: -0.003721667 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: f8f8c0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dodge + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 20.1157551 + posY: 0.678006 + posZ: 53.2778549 + rotX: 0.00137855683 + rotY: 270.0254 + rotZ: 359.9788 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 9f3a49 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: First Aid + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 20.1967812 + posY: 0.6950129 + posZ: 52.2922478 + rotX: -8.826635e-06 + rotY: 269.970581 + rotZ: 359.991943 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 0e9857 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: .45 Automatic + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 19.6722145 + posY: 0.6808095 + posZ: 52.94874 + rotX: -0.00240553729 + rotY: 269.9702 + rotZ: 0.0335718356 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 226329 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 9d46c4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: True Grit + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 20.7270088 + posY: 0.679404855 + posZ: 53.030674 + rotX: 0.0016478874 + rotY: 269.9704 + rotZ: 0.0197983738 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: a3a076 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Vicious Blow + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 20.034462 + posY: 0.679703951 + posZ: 52.9967651 + rotX: 0.3352987 + rotY: 269.977783 + rotZ: 359.443451 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: bfd54e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Beat Cop + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 20.5224476 + posY: 0.6869348 + posZ: 52.65782 + rotX: -8.240917e-06 + rotY: 269.971039 + rotZ: 359.991943 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 230431 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 00d237 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Old Book of Lore + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -9.469301 + posY: 0.5319155 + posZ: 42.9366035 + rotX: 0.0244679153 + rotY: 269.983582 + rotZ: 0.00163300056 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 230415 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 303e6f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: No Stone Unturned + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -9.649897 + posY: 0.674022 + posZ: 43.0149879 + rotX: 0.443309754 + rotY: 269.998535 + rotZ: 359.2533 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 230413 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 3f14af + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Working a Hunch + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -9.219906 + posY: 0.696298957 + posZ: 43.1905441 + rotX: -4.59570356e-06 + rotY: 270.0103 + rotZ: 359.991943 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 230404 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 19e465 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Barricade + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -10.0082235 + posY: 0.675187767 + posZ: 42.97833 + rotX: 1.24482 + rotY: 269.9758 + rotZ: 358.455963 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 0a2995 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Magnifying Glass + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -9.761742 + posY: 0.6796823 + posZ: 42.9076767 + rotX: -0.003149421 + rotY: 269.986145 + rotZ: 359.9187 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: b25e3c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Deduction + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -9.469347 + posY: 0.683305562 + posZ: 43.0226059 + rotX: -0.000115456627 + rotY: 269.979584 + rotZ: 359.991943 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 230434 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 6e7d31 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dr. Milian Christopher + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -9.806474 + posY: 0.688308 + posZ: 42.9377632 + rotX: -6.743061e-06 + rotY: 269.989136 + rotZ: 359.991943 + 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/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: '838975' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Lucky! + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 42.13739 + posY: 0.68546325 + posZ: 63.1193848 + rotX: -4.163397e-06 + rotY: 270.007751 + rotZ: 359.991943 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 209724 + 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/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 9230ce + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Stray Cat + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 41.8912544 + posY: 0.5295194 + posZ: 63.01959 + rotX: 0.0045750197 + rotY: 269.983337 + rotZ: 359.993256 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 209708 + 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/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 1a2d1e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Hiding Spot + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 41.8013077 + posY: 0.672275662 + posZ: 63.4214439 + rotX: 1.13548434 + rotY: 269.972351 + rotZ: 358.00708 + 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/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: a049bd + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Survival Instinct + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 41.8690529 + posY: 0.6781782 + posZ: 62.9757271 + rotX: 359.985352 + rotY: 270.0105 + rotZ: 359.8615 + 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/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 2e70fa + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '"Look what I found"' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 41.95817 + posY: 0.693437159 + posZ: 63.49379 + rotX: -3.917854e-06 + rotY: 270.007751 + rotZ: 359.991943 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 209720 + 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/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 55d5b8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Leather Coat + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 41.86974 + posY: 0.6686768 + posZ: 62.6590042 + rotX: 0.02647098 + rotY: 269.982574 + rotZ: 0.0144579979 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 209719 + 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/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: feffb4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Cunning Distraction + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 42.09242 + posY: 0.6775347 + posZ: 62.8813057 + rotX: 0.0233482011 + rotY: 270.007 + rotZ: 359.911041 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231535 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 274daa + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Crisis of Identity + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 6.48780966 + posY: 0.4805672 + posZ: -83.88897 + rotX: -1.45658453e-06 + rotY: 270.021057 + rotZ: 359.991943 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231535 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 367aac + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Crisis of Identity + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 6.36442661 + posY: 0.627180755 + posZ: -83.87339 + rotX: -1.86304419e-06 + rotY: 270.0211 + rotZ: 359.991943 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231634 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 9aee7f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 231634 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 9ef062 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' +CustomDeck: + '2096': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956216650/56BA7AB3BBDC1F3C1EA8709F0761D4846B45AF83/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '2097': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860672861853482/578CFD93B087B0ADA085E7A99062E6191772D6BD/ + NumHeight: 7 + NumWidth: 10 + 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 + 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 + UniqueBack: false + '2315': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '2316': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 209615 +- 209615 +- 209609 +- 209609 +- 209612 +- 209612 +- 209606 +- 209606 +- 209602 +- 209602 +- 209608 +- 209608 +- 209604 +- 209604 +- 226327 +- 226313 +- 226324 +- 226330 +- 226329 +- 226302 +- 226331 +- 230431 +- 230415 +- 230413 +- 230404 +- 230421 +- 230402 +- 230434 +- 209710 +- 209724 +- 209708 +- 209700 +- 209716 +- 209720 +- 209719 +- 231535 +- 231535 +- 231634 +- 231634 +Description: '' +GMNotes: '' +GUID: '111873' +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.9139051 + posY: 2.694181 + posZ: -79.74418 + rotX: 0.0001032076 + rotY: 269.999969 + rotZ: 179.994522 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 899c3a/Custom_Model_Bag starter deck & cards c55d46/Deck 3a149f.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 899c3a/Custom_Model_Bag starter deck & cards c55d46/Deck 3a149f.yaml new file mode 100644 index 000000000..26be8420d --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 899c3a/Custom_Model_Bag starter deck & cards c55d46/Deck 3a149f.yaml @@ -0,0 +1,129 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 231634 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 9aee7f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: 231634 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 9ef062 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' +CustomDeck: + '2316': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 231634 +- 231634 +Description: '' +GMNotes: '' +GUID: 3a149f +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.9130239 + posY: 2.54180145 + posZ: -80.2191849 + rotX: 0.000105060433 + rotY: 269.997864 + rotZ: 359.991943 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Path to Carcosa 899c3a/Custom_Model_Bag starter deck & cards c55d46/Deck 441037.yaml b/unpacked/Custom_Model_Bag The Path to Carcosa 899c3a/Custom_Model_Bag starter deck & cards c55d46/Deck 441037.yaml new file mode 100644 index 000000000..70dac1dcd --- /dev/null +++ b/unpacked/Custom_Model_Bag The Path to Carcosa 899c3a/Custom_Model_Bag starter deck & cards c55d46/Deck 441037.yaml @@ -0,0 +1,129 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 231535 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 274daa + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Crisis of Identity + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 6.48780966 + posY: 0.4805672 + posZ: -83.88897 + rotX: -1.45658453e-06 + rotY: 270.021057 + rotZ: 359.991943 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231535 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 367aac + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Crisis of Identity + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 6.36442661 + posY: 0.627180755 + posZ: -83.87339 + rotX: -1.86304419e-06 + rotY: 270.0211 + rotZ: 359.991943 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2315': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960860341956229149/FC980D306FA8FE74C552981167CBDF4305821B31/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 231535 +- 231535 +Description: '' +GMNotes: '' +GUID: '441037' +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.7960234 + posY: 2.54170012 + posZ: -79.48093 + rotX: 6.659143e-05 + rotY: 270.020325 + rotZ: 359.9918 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837.yaml new file mode 100644 index 000000000..7a90adb71 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837.yaml @@ -0,0 +1,144 @@ +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 791837/Bag Secret Objectives & Ultimatums + b2077d.yaml' +- !include 'Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Winter Winds + 754057.yaml' +- !include 'Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Thing in + the Woods c90c49.yaml' +- !include 'Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Svalbard + Event 7bc42b.yaml' +- !include 'Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Stranger Things + 408301.yaml' +- !include 'Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Red Room + fa4327.yaml' +- !include 'Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Strange Aeons + 2abdd6.yaml' +- !include 'Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Stolen + Baillius bfefd4.yaml' +- !include 'Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Parallel Universe + 28e0a1.yaml' +- !include 'Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Pensher + Wyrm 504f38.yaml' +- !include 'Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Outsider + 3c175c.yaml' +- !include 'Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Of Sphinx and + Sands eeeb50.yaml' +- !include "Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Masks of Nyarlathotep\ + \ \u2013 New York 94a1f8.yaml" +- !include 'Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag North Country + Cycle aaceca.yaml' +- !include 'Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Nephew + Calls 3ddd12.yaml' +- !include 'Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The London + set 0f96ac.yaml' +- !include 'Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Limens + of Belief ad7b6c.yaml' +- !include 'Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Last Call at + Roxie''s c6a1ca.yaml' +- !include 'Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Knightfall + df62e8.yaml' +- !include "Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Kiedy sny Staj\u0105\ + \ si\u0119 Rzeczywi\u015Bci\u0105 acdf16.yaml" +- !include 'Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Jenny''s Choice + a61b48.yaml' +- !include 'Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Into the Shadowlands + 019847.yaml' +- !include 'Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag 68380c.yaml' +- !include 'Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Happy''s Funhouse + e7d9f8.yaml' +- !include 'Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Grand Oak + Hotel 4255b1.yaml' +- !include 'Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Forbidding + Desert cf02f2.yaml' +- !include 'Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Festival + 29d22a.yaml' +- !include 'Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Dying Star + bcfff6.yaml' +- !include 'Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Delta Green + Convergence ac164e.yaml' +- !include 'Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Curse of + Amulotep 0d7a8d.yaml' +- !include 'Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Consternation + on the Constellation 0ec730.yaml' +- !include 'Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Colour + out of Space 5b81ff.yaml' +- !include 'Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Collector + 9810eb.yaml' +- !include 'Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Bridge of Sighs + 578e97.yaml' +- !include 'Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Blood Spilled + in Salem 4237da.yaml' +- !include 'Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Approaching + Storm 0fad66.yaml' +- !include 'Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Against the + Wendigo 4d5fa0.yaml' +- !include 'Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Curse of the + Rougarou db7039.yaml' +- !include 'Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Carnevale of + Horrors 23dd51.yaml' +- !include 'Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Labyrinths + of Lunacy 4c173f.yaml' +- !include 'Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Murder at the + Excelsior Hotel 01d780.yaml' +- !include 'Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Guardians of + the Abyss ee987d.yaml' +- !include 'Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Blob that + Ate Everything 4dee5a.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: '' +GMNotes: '' +GUID: '791837' +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +MeshIndex: -1 +Name: Custom_Model_Bag +Nickname: The Side Missions +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 32.3002243 + posY: 1.871186 + posZ: 0.139984444 + rotX: 359.920135 + rotY: 269.997864 + rotZ: 0.0168762766 + scaleX: 5.0 + scaleY: 5.0 + scaleZ: 5.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Bag Secret Objectives & Ultimatums b2077d.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Bag Secret Objectives & Ultimatums b2077d.yaml new file mode 100644 index 000000000..7ea2e8f77 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Bag Secret Objectives & Ultimatums b2077d.yaml @@ -0,0 +1,41 @@ +Autoraise: true +ColorDiffuse: + b: 0.0 + g: 0.0 + r: 0.0 +ContainedObjects: +- !include 'Bag Secret Objectives & Ultimatums b2077d/Notecard HOW TO USE SECRET OBJ. + f3dfc9.yaml' +- !include 'Bag Secret Objectives & Ultimatums b2077d/Deck 5f3cba.yaml' +- !include 'Bag Secret Objectives & Ultimatums b2077d/Deck 1e8a13.yaml' +- !include 'Bag Secret Objectives & Ultimatums b2077d/Notecard HOW TO USE ULTIMATUMS + ed4645.yaml' +Description: '' +GMNotes: '' +GUID: b2077d +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +MeshIndex: -1 +Name: Bag +Nickname: Secret Objectives & Ultimatums +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 18.5561562 + posY: 2.27709126 + posZ: -10.92607 + rotX: 359.993958 + rotY: 2.55166688e-05 + rotZ: 359.9714 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Bag Secret Objectives & Ultimatums b2077d/Deck 1e8a13.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Bag Secret Objectives & Ultimatums b2077d/Deck 1e8a13.yaml new file mode 100644 index 000000000..cbbac44c8 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Bag Secret Objectives & Ultimatums b2077d/Deck 1e8a13.yaml @@ -0,0 +1,548 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 33100 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '331': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/976605526724051130/604A4D98487815A81408F37D5FD4BD5201DDF087/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/976605526724050690/73976114CA4EE3BB8BB03159476CAFAB63F551D3/ + NumHeight: 4 + NumWidth: 6 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 5249d8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -5.28552 + posY: 1.18186891 + posZ: -0.071601294 + rotX: -0.000602881541 + rotY: 179.999969 + rotZ: 179.996765 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 33101 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '331': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/976605526724051130/604A4D98487815A81408F37D5FD4BD5201DDF087/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/976605526724050690/73976114CA4EE3BB8BB03159476CAFAB63F551D3/ + NumHeight: 4 + NumWidth: 6 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 9e01c2 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 7.35361 + posY: 1.15243661 + posZ: 2.88382149 + rotX: 0.00242724619 + rotY: 180.002121 + rotZ: 0.5426368 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 33102 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '331': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/976605526724051130/604A4D98487815A81408F37D5FD4BD5201DDF087/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/976605526724050690/73976114CA4EE3BB8BB03159476CAFAB63F551D3/ + NumHeight: 4 + NumWidth: 6 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 5249d8 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 7.282809 + posY: 1.168238 + posZ: 2.709967 + rotX: 0.00194272655 + rotY: 180.003586 + rotZ: 0.7061489 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 33103 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '331': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/976605526724051130/604A4D98487815A81408F37D5FD4BD5201DDF087/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/976605526724050690/73976114CA4EE3BB8BB03159476CAFAB63F551D3/ + NumHeight: 4 + NumWidth: 6 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 5249d8 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 6.59459734 + posY: 1.18017638 + posZ: 2.55350113 + rotX: 0.0379076153 + rotY: 179.953415 + rotZ: 359.9774 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 33104 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '331': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/976605526724051130/604A4D98487815A81408F37D5FD4BD5201DDF087/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/976605526724050690/73976114CA4EE3BB8BB03159476CAFAB63F551D3/ + NumHeight: 4 + NumWidth: 6 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 5249d8 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 7.368428 + posY: 1.22450531 + posZ: 3.031967 + rotX: 0.005974165 + rotY: 180.00856 + rotZ: 358.929565 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 33105 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '331': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/976605526724051130/604A4D98487815A81408F37D5FD4BD5201DDF087/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/976605526724050690/73976114CA4EE3BB8BB03159476CAFAB63F551D3/ + NumHeight: 4 + NumWidth: 6 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 5249d8 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 7.052122 + posY: 1.18113351 + posZ: 3.016002 + rotX: -0.0005948959 + rotY: 180.0325 + rotZ: -0.00372294453 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 33106 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '331': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/976605526724051130/604A4D98487815A81408F37D5FD4BD5201DDF087/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/976605526724050690/73976114CA4EE3BB8BB03159476CAFAB63F551D3/ + NumHeight: 4 + NumWidth: 6 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 5249d8 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 7.28407431 + posY: 1.16965234 + posZ: 3.20454383 + rotX: -0.000677955744 + rotY: 180.001938 + rotZ: 359.507629 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 33107 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '331': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/976605526724051130/604A4D98487815A81408F37D5FD4BD5201DDF087/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/976605526724050690/73976114CA4EE3BB8BB03159476CAFAB63F551D3/ + NumHeight: 4 + NumWidth: 6 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 5249d8 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 7.09101868 + posY: 1.18575871 + posZ: 2.90155268 + rotX: 0.0005172629 + rotY: 180.004822 + rotZ: 0.120746911 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 33108 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '331': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/976605526724051130/604A4D98487815A81408F37D5FD4BD5201DDF087/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/976605526724050690/73976114CA4EE3BB8BB03159476CAFAB63F551D3/ + NumHeight: 4 + NumWidth: 6 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 5249d8 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 7.35365534 + posY: 1.125502 + posZ: 2.61661339 + rotX: 0.00187181146 + rotY: 180.005173 + rotZ: 0.5429629 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 33109 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '331': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/976605526724051130/604A4D98487815A81408F37D5FD4BD5201DDF087/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/976605526724050690/73976114CA4EE3BB8BB03159476CAFAB63F551D3/ + NumHeight: 4 + NumWidth: 6 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 5249d8 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 7.277207 + posY: 1.13920844 + posZ: 2.88317 + rotX: -0.002832947 + rotY: 180.002136 + rotZ: 359.447083 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 33110 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '331': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/976605526724051130/604A4D98487815A81408F37D5FD4BD5201DDF087/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/976605526724050690/73976114CA4EE3BB8BB03159476CAFAB63F551D3/ + NumHeight: 4 + NumWidth: 6 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 5249d8 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 7.352886 + posY: 1.16246665 + posZ: 2.79709458 + rotX: 0.00112222019 + rotY: 179.999588 + rotZ: 0.06620721 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 33111 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '331': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/976605526724051130/604A4D98487815A81408F37D5FD4BD5201DDF087/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/976605526724050690/73976114CA4EE3BB8BB03159476CAFAB63F551D3/ + NumHeight: 4 + NumWidth: 6 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 5249d8 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 7.1579175 + posY: 1.23136532 + posZ: 2.80799484 + rotX: 0.00369784585 + rotY: 180.004562 + rotZ: 358.573364 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '331': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/976605526724051130/604A4D98487815A81408F37D5FD4BD5201DDF087/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/976605526724050690/73976114CA4EE3BB8BB03159476CAFAB63F551D3/ + NumHeight: 4 + NumWidth: 6 + UniqueBack: false +DeckIDs: +- 33100 +- 33101 +- 33102 +- 33103 +- 33104 +- 33105 +- 33106 +- 33107 +- 33108 +- 33109 +- 33110 +- 33111 +Description: '' +GMNotes: '' +GUID: 1e8a13 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -20.8082867 + posY: 3.032816 + posZ: -5.15515041 + rotX: 1.60318314e-06 + rotY: 180.005478 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Bag Secret Objectives & Ultimatums b2077d/Deck 5f3cba.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Bag Secret Objectives & Ultimatums b2077d/Deck 5f3cba.yaml new file mode 100644 index 000000000..54422e117 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Bag Secret Objectives & Ultimatums b2077d/Deck 5f3cba.yaml @@ -0,0 +1,1297 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 33000 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '330': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/976605526724071043/C8D7BE5AC836B4FBE1E6F4D4C52F8B85FE53CAC8/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/976605526721823383/9C6FEA16C9541D3D98EB4CF0B636B9CF030F249E/ + NumHeight: 5 + NumWidth: 8 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 0e05f2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -4.685193 + posY: 1.40403569 + posZ: 3.6671567 + rotX: -0.000363378 + rotY: 180.0 + rotZ: 180.003937 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 33001 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '330': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/976605526724071043/C8D7BE5AC836B4FBE1E6F4D4C52F8B85FE53CAC8/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/976605526721823383/9C6FEA16C9541D3D98EB4CF0B636B9CF030F249E/ + NumHeight: 5 + NumWidth: 8 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 63bde8 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -5.62518072 + posY: 1.17050874 + posZ: 0.3185133 + rotX: 359.9881 + rotY: 180.000977 + rotZ: 0.000145474231 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 33002 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: 0e05f2 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 8.36917e-09 + posY: 1.16970241 + posZ: 5.946697e-08 + rotX: -1.07883977e-06 + rotY: 0.00376580725 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 33003 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: 0e05f2 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 8.36917e-09 + posY: 1.16970241 + posZ: 5.946697e-08 + rotX: -1.07883977e-06 + rotY: 0.00376580725 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 33004 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: 0e05f2 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 8.36917e-09 + posY: 1.16970241 + posZ: 5.946697e-08 + rotX: -1.07883977e-06 + rotY: 0.00376580725 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 33005 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: 0e05f2 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 8.36917e-09 + posY: 1.16970241 + posZ: 5.946697e-08 + rotX: -1.07883977e-06 + rotY: 0.00376580725 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 33006 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: 0e05f2 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 8.36917e-09 + posY: 1.16970241 + posZ: 5.946697e-08 + rotX: -1.07883977e-06 + rotY: 0.00376580725 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 33007 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: 0e05f2 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 8.36917e-09 + posY: 1.16970241 + posZ: 5.946697e-08 + rotX: -1.07883977e-06 + rotY: 0.00376580725 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 33008 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: 0e05f2 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 8.36917e-09 + posY: 1.16970241 + posZ: 5.946697e-08 + rotX: -1.07883977e-06 + rotY: 0.00376580725 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 33009 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: 0e05f2 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 8.36917e-09 + posY: 1.16970241 + posZ: 5.946697e-08 + rotX: -1.07883977e-06 + rotY: 0.00376580725 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 33010 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: 0e05f2 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 8.36917e-09 + posY: 1.16970241 + posZ: 5.946697e-08 + rotX: -1.07883977e-06 + rotY: 0.00376580725 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 33011 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: 0e05f2 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 8.36917e-09 + posY: 1.16970241 + posZ: 5.946697e-08 + rotX: -1.07883977e-06 + rotY: 0.00376580725 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 33012 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: 0e05f2 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 8.36917e-09 + posY: 1.16970241 + posZ: 5.946697e-08 + rotX: -1.07883977e-06 + rotY: 0.00376580725 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 33013 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: 0e05f2 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 8.36917e-09 + posY: 1.16970241 + posZ: 5.946697e-08 + rotX: -1.07883977e-06 + rotY: 0.00376580725 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 33014 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: 0e05f2 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 8.36917e-09 + posY: 1.16970241 + posZ: 5.946697e-08 + rotX: -1.07883977e-06 + rotY: 0.00376580725 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 33015 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: 0e05f2 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 8.36917e-09 + posY: 1.16970241 + posZ: 5.946697e-08 + rotX: -1.07883977e-06 + rotY: 0.00376580725 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 33016 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: 0e05f2 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 8.36917e-09 + posY: 1.16970241 + posZ: 5.946697e-08 + rotX: -1.07883977e-06 + rotY: 0.00376580725 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 33017 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: 0e05f2 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 8.36917e-09 + posY: 1.16970241 + posZ: 5.946697e-08 + rotX: -1.07883977e-06 + rotY: 0.00376580725 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 33018 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: 0e05f2 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 8.36917e-09 + posY: 1.16970241 + posZ: 5.946697e-08 + rotX: -1.07883977e-06 + rotY: 0.00376580725 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 33019 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: 0e05f2 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 8.36917e-09 + posY: 1.16970241 + posZ: 5.946697e-08 + rotX: -1.07883977e-06 + rotY: 0.00376580725 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 33020 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: 0e05f2 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 8.36917e-09 + posY: 1.16970241 + posZ: 5.946697e-08 + rotX: -1.07883977e-06 + rotY: 0.00376580725 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 33021 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: 0e05f2 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 8.36917e-09 + posY: 1.16970241 + posZ: 5.946697e-08 + rotX: -1.07883977e-06 + rotY: 0.00376580725 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 33022 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: 0e05f2 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 8.36917e-09 + posY: 1.16970241 + posZ: 5.946697e-08 + rotX: -1.07883977e-06 + rotY: 0.00376580725 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 33023 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: 0e05f2 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 8.36917e-09 + posY: 1.16970241 + posZ: 5.946697e-08 + rotX: -1.07883977e-06 + rotY: 0.00376580725 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 33024 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: 0e05f2 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 8.36917e-09 + posY: 1.16970241 + posZ: 5.946697e-08 + rotX: -1.07883977e-06 + rotY: 0.00376580725 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 33025 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: 0e05f2 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 8.36917e-09 + posY: 1.16970241 + posZ: 5.946697e-08 + rotX: -1.07883977e-06 + rotY: 0.00376580725 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 33026 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: 0e05f2 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 8.36917e-09 + posY: 1.16970241 + posZ: 5.946697e-08 + rotX: -1.07883977e-06 + rotY: 0.00376580725 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 33027 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: 0e05f2 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 8.36917e-09 + posY: 1.16970241 + posZ: 5.946697e-08 + rotX: -1.07883977e-06 + rotY: 0.00376580725 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 33028 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: 0e05f2 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 8.36917e-09 + posY: 1.16970241 + posZ: 5.946697e-08 + rotX: -1.07883977e-06 + rotY: 0.00376580725 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 33029 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: 0e05f2 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 8.36917e-09 + posY: 1.16970241 + posZ: 5.946697e-08 + rotX: -1.07883977e-06 + rotY: 0.00376580725 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 33030 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: 0e05f2 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 8.36917e-09 + posY: 1.16970241 + posZ: 5.946697e-08 + rotX: -1.07883977e-06 + rotY: 0.00376580725 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 33031 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: 0e05f2 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 8.36917e-09 + posY: 1.16970241 + posZ: 5.946697e-08 + rotX: -1.07883977e-06 + rotY: 0.00376580725 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 33032 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: 0e05f2 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 8.36917e-09 + posY: 1.16970241 + posZ: 5.946697e-08 + rotX: -1.07883977e-06 + rotY: 0.00376580725 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 33034 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '330': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/976605526724071043/C8D7BE5AC836B4FBE1E6F4D4C52F8B85FE53CAC8/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/976605526721823383/9C6FEA16C9541D3D98EB4CF0B636B9CF030F249E/ + NumHeight: 5 + NumWidth: 8 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 0e05f2 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -0.3260079 + posY: 1.03162014 + posZ: -3.647439 + rotX: -0.00445017731 + rotY: -0.00133068953 + rotZ: 0.0004605112 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 33033 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '330': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/976605526724071043/C8D7BE5AC836B4FBE1E6F4D4C52F8B85FE53CAC8/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/976605526721823383/9C6FEA16C9541D3D98EB4CF0B636B9CF030F249E/ + NumHeight: 5 + NumWidth: 8 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 9537b5 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -0.48127073 + posY: 1.17643881 + posZ: -3.5733602 + rotX: 0.00133565883 + rotY: -0.0006434482 + rotZ: 0.00116366043 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '330': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/976605526724071043/C8D7BE5AC836B4FBE1E6F4D4C52F8B85FE53CAC8/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/976605526721823383/9C6FEA16C9541D3D98EB4CF0B636B9CF030F249E/ + NumHeight: 5 + NumWidth: 8 + UniqueBack: false +DeckIDs: +- 33000 +- 33001 +- 33002 +- 33003 +- 33004 +- 33005 +- 33006 +- 33007 +- 33008 +- 33009 +- 33010 +- 33011 +- 33012 +- 33013 +- 33014 +- 33015 +- 33016 +- 33017 +- 33018 +- 33019 +- 33020 +- 33021 +- 33022 +- 33023 +- 33024 +- 33025 +- 33026 +- 33027 +- 33028 +- 33029 +- 33030 +- 33031 +- 33032 +- 33034 +- 33033 +Description: '' +GMNotes: '' +GUID: 5f3cba +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -20.71608 + posY: 3.15539336 + posZ: -1.368239 + rotX: -1.72287088e-07 + rotY: 180.0208 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Bag Secret Objectives & Ultimatums b2077d/Notecard HOW TO USE SECRET OBJ. f3dfc9.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Bag Secret Objectives & Ultimatums b2077d/Notecard HOW TO USE SECRET OBJ. f3dfc9.yaml new file mode 100644 index 000000000..f77468729 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Bag Secret Objectives & Ultimatums b2077d/Notecard HOW TO USE SECRET OBJ. f3dfc9.yaml @@ -0,0 +1,40 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +Description: ' + + + At the start of each scenario, each investigator is dealt 2 secret objectives, they + choose one. If they complete their secret objective at any time during the scenario, + they add the card to their PERSONAL victory display. + + + ' +GMNotes: '' +GUID: f3dfc9 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Notecard +Nickname: HOW TO USE SECRET OBJ. +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -34.0734749 + posY: 3.08088231 + posZ: -3.60996342 + rotX: 0.7153859 + rotY: -0.00300805271 + rotZ: 359.0569 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Bag Secret Objectives & Ultimatums b2077d/Notecard HOW TO USE ULTIMATUMS ed4645.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Bag Secret Objectives & Ultimatums b2077d/Notecard HOW TO USE ULTIMATUMS ed4645.yaml new file mode 100644 index 000000000..db4101cdd --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Bag Secret Objectives & Ultimatums b2077d/Notecard HOW TO USE ULTIMATUMS ed4645.yaml @@ -0,0 +1,36 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +Description: ' + + At the start of each scenario, investigators may collectively choose to draw a random + ultimatum. These ultimatums significantly ramp up the difficulty of the game, but + reward them should they overcome the challenges.' +GMNotes: '' +GUID: ed4645 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Notecard +Nickname: HOW TO USE ULTIMATUMS +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 32.715477 + posY: 3.56582546 + posZ: -1.35685515 + rotX: 1.23975611 + rotY: 0.0006242705 + rotZ: 0.145385459 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag 68380c.ttslua b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag 68380c.ttslua new file mode 100644 index 000000000..5534586ac --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag 68380c.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.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 \ No newline at end of file diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag 68380c.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag 68380c.yaml new file mode 100644 index 000000000..d51014c07 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag 68380c.yaml @@ -0,0 +1,92 @@ +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 68380c/Custom_PDF Campaign Guide f8c00e.yaml' +- !include 'Custom_Model_Bag 68380c/Custom_Tile 1ae977.yaml' +- !include 'Custom_Model_Bag 68380c/Card 268bd8.yaml' +- !include 'Custom_Model_Bag 68380c/Custom_Tile 35c492.yaml' +- !include 'Custom_Model_Bag 68380c/Card 4011a5.yaml' +- !include 'Custom_Model_Bag 68380c/Custom_Model_Bag Set-Aside 505e6c.yaml' +- !include 'Custom_Model_Bag 68380c/Card 5bb7d0.yaml' +- !include 'Custom_Model_Bag 68380c/Custom_Tile 5d070a.yaml' +- !include 'Custom_Model_Bag 68380c/Custom_Tile 6645cd.yaml' +- !include 'Custom_Model_Bag 68380c/Custom_Tile 668f68.yaml' +- !include 'Custom_Model_Bag 68380c/Card 6f1efa.yaml' +- !include 'Custom_Model_Bag 68380c/Custom_Tile 7234af.yaml' +- !include 'Custom_Model_Bag 68380c/Custom_Tile 759ab6.yaml' +- !include 'Custom_Model_Bag 68380c/Card 7b91a3.yaml' +- !include 'Custom_Model_Bag 68380c/DeckCustom Encounter Deck 8944d1.yaml' +- !include 'Custom_Model_Bag 68380c/CardCustom Scenario 98b72e.yaml' +- !include 'Custom_Model_Bag 68380c/Card a4612b.yaml' +- !include 'Custom_Model_Bag 68380c/Custom_Tile b04a1a.yaml' +- !include 'Custom_Model_Bag 68380c/Custom_Tile The Initiation bbb70a.yaml' +- !include 'Custom_Model_Bag 68380c/Deck Roles cce0e0.yaml' +- !include 'Custom_Model_Bag 68380c/Custom_Tile d26316.yaml' +- !include 'Custom_Model_Bag 68380c/Card dbbfa0.yaml' +- !include 'Custom_Model_Bag 68380c/Deck Agenda Deck def2f5.yaml' +- !include 'Custom_Model_Bag 68380c/Bag Individual Act Decks e9d947.yaml' +- !include 'Custom_Model_Bag 68380c/Card ff4d6f.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/1016065907889320438/3DC5DD89D5DB56BE6EFDAC4A96E8063765576EA1/ + MaterialIndex: 3 + MeshURL: https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj + NormalURL: '' + TypeIndex: 6 +Description: '' +GMNotes: '' +GUID: 68380c +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Model_Bag 68380c.ttslua' +LuaScriptState: '{"ml":{"1ae977":{"lock":false,"pos":{"x":-33.4282,"y":1.6258,"z":-7.7062},"rot":{"x":0.0799,"y":90.0006,"z":359.9831}},"268bd8":{"lock":false,"pos":{"x":-30.2243,"y":1.6937,"z":-15.28},"rot":{"x":359.9201,"y":269.996,"z":180.0169}},"35c492":{"lock":false,"pos":{"x":-17.1199,"y":1.6042,"z":-3.83},"rot":{"x":0.0169,"y":179.9977,"z":0.0799}},"4011a5":{"lock":false,"pos":{"x":-17.1199,"y":1.6799,"z":-0.03},"rot":{"x":359.9201,"y":269.9961,"z":180.0169}},"505e6c":{"lock":false,"pos":{"x":1.6965,"y":1.5583,"z":14.2788},"rot":{"x":359.9551,"y":224.998,"z":0.0687}},"5bb7d0":{"lock":false,"pos":{"x":-23.6765,"y":1.6868,"z":-7.7},"rot":{"x":359.9201,"y":269.9953,"z":180.0169}},"5d070a":{"lock":false,"pos":{"x":-30.2242,"y":1.6203,"z":-11.51},"rot":{"x":359.9832,"y":0.0096,"z":359.9201}},"6645cd":{"lock":false,"pos":{"x":-23.6764,"y":1.6134,"z":-3.83},"rot":{"x":0.0169,"y":179.9981,"z":0.0799}},"668f68":{"lock":false,"pos":{"x":-26.9665,"y":1.6168,"z":-7.7199},"rot":{"x":0.0799,"y":90.0006,"z":359.9831}},"6f1efa":{"lock":false,"pos":{"x":-36.7733,"y":1.705,"z":-7.7},"rot":{"x":359.9201,"y":269.996,"z":180.0169}},"7234af":{"lock":false,"pos":{"x":-17.1199,"y":1.6065,"z":3.8598},"rot":{"x":0.0169,"y":179.9981,"z":0.0799}},"759ab6":{"lock":false,"pos":{"x":-20.2426,"y":1.6075,"z":-7.7066},"rot":{"x":0.0799,"y":90.0007,"z":359.9831}},"7b91a3":{"lock":false,"pos":{"x":-23.6765,"y":1.689,"z":-0.03},"rot":{"x":359.9201,"y":269.996,"z":180.0169}},"8944d1":{"lock":false,"pos":{"x":-3.9275,"y":1.7237,"z":5.7573},"rot":{"x":359.9197,"y":270.0005,"z":180.0168}},"98b72e":{"lock":false,"pos":{"x":-3.9559,"y":1.6585,"z":-10.4431},"rot":{"x":359.9197,"y":269.9995,"z":180.0168}},"a4612b":{"lock":false,"pos":{"x":-17.12,"y":1.6821,"z":7.57},"rot":{"x":359.9201,"y":269.9962,"z":180.0169}},"b04a1a":{"lock":false,"pos":{"x":-20.2608,"y":1.6098,"z":0.0434},"rot":{"x":0.0799,"y":90.0006,"z":359.9831}},"bbb70a":{"lock":false,"pos":{"x":-3.8027,"y":1.5824,"z":-14.9354},"rot":{"x":359.9197,"y":270.031,"z":0.0168}},"cce0e0":{"lock":false,"pos":{"x":-12.0115,"y":1.671,"z":7.4502},"rot":{"x":359.9201,"y":270.0065,"z":0.0169}},"d26316":{"lock":false,"pos":{"x":-26.8215,"y":1.6154,"z":-11.8145},"rot":{"x":0.045,"y":45.3509,"z":359.9319}},"dbbfa0":{"lock":false,"pos":{"x":-30.2243,"y":1.6959,"z":-7.7},"rot":{"x":359.9201,"y":269.9789,"z":180.0169}},"def2f5":{"lock":false,"pos":{"x":-2.7248,"y":1.664,"z":0.3734},"rot":{"x":359.9197,"y":270.001,"z":180.0168}},"e9d947":{"lock":false,"pos":{"x":-2.6895,"y":1.3987,"z":-5.0483},"rot":{"x":359.9832,"y":0.0002,"z":359.9197}},"ff4d6f":{"lock":false,"pos":{"x":-17.12,"y":1.6776,"z":-7.7},"rot":{"x":359.9201,"y":269.996,"z":180.0169}}}}' +MaterialIndex: -1 +MeshIndex: -1 +Name: Custom_Model_Bag +Nickname: '' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 15.8070135 + posY: 2.46652579 + posZ: -14.1542282 + rotX: 359.983246 + rotY: 269.9972 + rotZ: 0.00353887049 + scaleX: 2.21 + scaleY: 0.46 + scaleZ: 2.42 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag 68380c/Bag Individual Act Decks e9d947.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag 68380c/Bag Individual Act Decks e9d947.yaml new file mode 100644 index 000000000..e3bd78a67 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag 68380c/Bag Individual Act Decks e9d947.yaml @@ -0,0 +1,40 @@ +Autoraise: true +ColorDiffuse: + b: 0.0 + g: 0.0 + r: 0.0 +ContainedObjects: +- !include 'Bag Individual Act Decks e9d947/Deck The Invoker 346fee.yaml' +- !include 'Bag Individual Act Decks e9d947/Deck The Occultist 7a6c52.yaml' +- !include 'Bag Individual Act Decks e9d947/Deck The Envoy 55073d.yaml' +- !include 'Bag Individual Act Decks e9d947/Deck The Expendable 90bcc2.yaml' +- !include 'Bag Individual Act Decks e9d947/Deck The Offering fd76f0.yaml' +Description: '' +GMNotes: '' +GUID: e9d947 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +MeshIndex: -1 +Name: Bag +Nickname: Individual Act Decks +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.68949986 + posY: 1.39871049 + posZ: -5.04830027 + rotX: 359.983154 + rotY: 0.000172333268 + rotZ: 359.919678 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag 68380c/Bag Individual Act Decks e9d947/Deck The Envoy 55073d.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag 68380c/Bag Individual Act Decks e9d947/Deck The Envoy 55073d.yaml new file mode 100644 index 000000000..f93082ce0 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag 68380c/Bag Individual Act Decks e9d947/Deck The Envoy 55073d.yaml @@ -0,0 +1,172 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 102 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/788633557745841494/EE40BE77FC533E72EAA42315121D5119A47C9602/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/788633557745842381/C8E82A96F06BF357A91E8B94227981D1AC001396/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: d5b4ac + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -43.37031 + posY: 1.945004 + posZ: 15.1900692 + rotX: 358.036652 + rotY: 269.992065 + rotZ: 180.017166 + scaleX: 0.783099234 + scaleY: 1.0 + scaleZ: 0.783099234 + XmlUI: '' +- Autoraise: true + CardID: 101 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/788633557745841494/EE40BE77FC533E72EAA42315121D5119A47C9602/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/788633557745842381/C8E82A96F06BF357A91E8B94227981D1AC001396/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: e49d46 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -43.3678665 + posY: 1.96913946 + posZ: 15.18969 + rotX: 357.155365 + rotY: 269.9976 + rotZ: 180.011749 + scaleX: 0.783099234 + scaleY: 1.0 + scaleZ: 0.783099234 + XmlUI: '' +- Autoraise: true + CardID: 100 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/788633557745841494/EE40BE77FC533E72EAA42315121D5119A47C9602/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/788633557745842381/C8E82A96F06BF357A91E8B94227981D1AC001396/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 6f26c3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -43.3696938 + posY: 1.80382121 + posZ: 15.1901751 + rotX: 356.206024 + rotY: 269.936035 + rotZ: 180.011459 + scaleX: 0.783099234 + scaleY: 1.0 + scaleZ: 0.783099234 + XmlUI: '' +CustomDeck: + '1': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/788633557745841494/EE40BE77FC533E72EAA42315121D5119A47C9602/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/788633557745842381/C8E82A96F06BF357A91E8B94227981D1AC001396/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 102 +- 101 +- 100 +Description: '' +GMNotes: '' +GUID: 55073d +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: The Envoy +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.68833017 + posY: 3.73858619 + posZ: -5.048411 + rotX: 3.33870935 + rotY: 270.026123 + rotZ: 179.963226 + scaleX: 0.783099234 + scaleY: 1.0 + scaleZ: 0.783099234 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag 68380c/Bag Individual Act Decks e9d947/Deck The Expendable 90bcc2.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag 68380c/Bag Individual Act Decks e9d947/Deck The Expendable 90bcc2.yaml new file mode 100644 index 000000000..dadcbbd9a --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag 68380c/Bag Individual Act Decks e9d947/Deck The Expendable 90bcc2.yaml @@ -0,0 +1,172 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 105 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/788633557745841494/EE40BE77FC533E72EAA42315121D5119A47C9602/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/788633557745842381/C8E82A96F06BF357A91E8B94227981D1AC001396/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 5b64dc + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -43.36999 + posY: 1.887156 + posZ: 11.4600086 + rotX: 359.921967 + rotY: 269.991821 + rotZ: 180.018311 + scaleX: 0.783099234 + scaleY: 1.0 + scaleZ: 0.783099234 + XmlUI: '' +- Autoraise: true + CardID: 104 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/788633557745841494/EE40BE77FC533E72EAA42315121D5119A47C9602/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/788633557745842381/C8E82A96F06BF357A91E8B94227981D1AC001396/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: e3bc15 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -43.3700066 + posY: 1.86958683 + posZ: 11.4599886 + rotX: 359.934174 + rotY: 269.9907 + rotZ: 180.026169 + scaleX: 0.783099234 + scaleY: 1.0 + scaleZ: 0.783099234 + XmlUI: '' +- Autoraise: true + CardID: 103 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/788633557745841494/EE40BE77FC533E72EAA42315121D5119A47C9602/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/788633557745842381/C8E82A96F06BF357A91E8B94227981D1AC001396/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 6f26c3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -43.3700027 + posY: 1.719836 + posZ: 11.4600086 + rotX: 359.9206 + rotY: 269.9713 + rotZ: 180.01918 + scaleX: 0.783099234 + scaleY: 1.0 + scaleZ: 0.783099234 + XmlUI: '' +CustomDeck: + '1': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/788633557745841494/EE40BE77FC533E72EAA42315121D5119A47C9602/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/788633557745842381/C8E82A96F06BF357A91E8B94227981D1AC001396/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 105 +- 104 +- 103 +Description: '' +GMNotes: '' +GUID: 90bcc2 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: The Expendable +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.68853927 + posY: 3.738022 + posZ: -5.04848671 + rotX: 359.937164 + rotY: 269.968567 + rotZ: 179.967117 + scaleX: 0.783099234 + scaleY: 1.0 + scaleZ: 0.783099234 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag 68380c/Bag Individual Act Decks e9d947/Deck The Invoker 346fee.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag 68380c/Bag Individual Act Decks e9d947/Deck The Invoker 346fee.yaml new file mode 100644 index 000000000..b812be638 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag 68380c/Bag Individual Act Decks e9d947/Deck The Invoker 346fee.yaml @@ -0,0 +1,172 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 107 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/788633557745841494/EE40BE77FC533E72EAA42315121D5119A47C9602/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/788633557745842381/C8E82A96F06BF357A91E8B94227981D1AC001396/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 97283e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 9.699033 + posY: 1.70329058 + posZ: -7.122725 + rotX: 359.9234 + rotY: 270.004333 + rotZ: 180.0174 + scaleX: 0.783099234 + scaleY: 1.0 + scaleZ: 0.783099234 + XmlUI: '' +- Autoraise: true + CardID: 106 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/788633557745841494/EE40BE77FC533E72EAA42315121D5119A47C9602/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/788633557745842381/C8E82A96F06BF357A91E8B94227981D1AC001396/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 6f26c3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -45.92875 + posY: 1.86696458 + posZ: 5.832898 + rotX: 359.929138 + rotY: 270.002258 + rotZ: 180.013916 + scaleX: 0.783099234 + scaleY: 1.0 + scaleZ: 0.783099234 + XmlUI: '' +- Autoraise: true + CardID: 108 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/788633557745841494/EE40BE77FC533E72EAA42315121D5119A47C9602/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/788633557745842381/C8E82A96F06BF357A91E8B94227981D1AC001396/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: b4842b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -45.9200325 + posY: 1.721707 + posZ: 5.80781841 + rotX: 359.916443 + rotY: 269.991028 + rotZ: 180.017563 + scaleX: 0.783099234 + scaleY: 1.0 + scaleZ: 0.783099234 + XmlUI: '' +CustomDeck: + '1': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/788633557745841494/EE40BE77FC533E72EAA42315121D5119A47C9602/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/788633557745842381/C8E82A96F06BF357A91E8B94227981D1AC001396/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 107 +- 106 +- 108 +Description: '' +GMNotes: '' +GUID: 346fee +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: The Invoker +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.68853927 + posY: 3.73802185 + posZ: -5.04848671 + rotX: 359.937225 + rotY: 270.016479 + rotZ: 179.967026 + scaleX: 0.783099234 + scaleY: 1.0 + scaleZ: 0.783099234 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag 68380c/Bag Individual Act Decks e9d947/Deck The Occultist 7a6c52.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag 68380c/Bag Individual Act Decks e9d947/Deck The Occultist 7a6c52.yaml new file mode 100644 index 000000000..e94b78efe --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag 68380c/Bag Individual Act Decks e9d947/Deck The Occultist 7a6c52.yaml @@ -0,0 +1,172 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 110 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/788633557745841494/EE40BE77FC533E72EAA42315121D5119A47C9602/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/788633557745842381/C8E82A96F06BF357A91E8B94227981D1AC001396/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 1f45cc + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -43.3662338 + posY: 1.9080348 + posZ: 3.86030531 + rotX: 1.03257775 + rotY: 270.03418 + rotZ: 180.0119 + scaleX: 0.783099234 + scaleY: 1.0 + scaleZ: 0.783099234 + XmlUI: '' +- Autoraise: true + CardID: 111 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/788633557745841494/EE40BE77FC533E72EAA42315121D5119A47C9602/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/788633557745842381/C8E82A96F06BF357A91E8B94227981D1AC001396/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: f92796 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -43.3700142 + posY: 1.86742187 + posZ: 3.859974 + rotX: 359.934357 + rotY: 270.003876 + rotZ: 180.020737 + scaleX: 0.783099234 + scaleY: 1.0 + scaleZ: 0.783099234 + XmlUI: '' +- Autoraise: true + CardID: 109 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/788633557745841494/EE40BE77FC533E72EAA42315121D5119A47C9602/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/788633557745842381/C8E82A96F06BF357A91E8B94227981D1AC001396/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 6f26c3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -43.3699379 + posY: 1.71758449 + posZ: 3.86000872 + rotX: 359.920776 + rotY: 270.0022 + rotZ: 180.019714 + scaleX: 0.783099234 + scaleY: 1.0 + scaleZ: 0.783099234 + XmlUI: '' +CustomDeck: + '1': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/788633557745841494/EE40BE77FC533E72EAA42315121D5119A47C9602/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/788633557745842381/C8E82A96F06BF357A91E8B94227981D1AC001396/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 110 +- 111 +- 109 +Description: '' +GMNotes: '' +GUID: 7a6c52 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: The Occultist +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.68853927 + posY: 3.73803329 + posZ: -5.04848671 + rotX: 359.9372 + rotY: 270.000031 + rotZ: 179.967087 + scaleX: 0.783099234 + scaleY: 1.0 + scaleZ: 0.783099234 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag 68380c/Bag Individual Act Decks e9d947/Deck The Offering fd76f0.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag 68380c/Bag Individual Act Decks e9d947/Deck The Offering fd76f0.yaml new file mode 100644 index 000000000..c920d8b8e --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag 68380c/Bag Individual Act Decks e9d947/Deck The Offering fd76f0.yaml @@ -0,0 +1,172 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 112 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/788633557745841494/EE40BE77FC533E72EAA42315121D5119A47C9602/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/788633557745842381/C8E82A96F06BF357A91E8B94227981D1AC001396/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 6f26c3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -45.66184 + posY: 1.91127837 + posZ: 1.21113586 + rotX: 358.5527 + rotY: 269.996948 + rotZ: 180.005737 + scaleX: 0.783099234 + scaleY: 1.0 + scaleZ: 0.783099234 + XmlUI: '' +- Autoraise: true + CardID: 114 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/788633557745841494/EE40BE77FC533E72EAA42315121D5119A47C9602/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/788633557745842381/C8E82A96F06BF357A91E8B94227981D1AC001396/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 74523c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -45.730175 + posY: 1.898241 + posZ: 0.7805057 + rotX: 359.953583 + rotY: 270.0315 + rotZ: 178.87674 + scaleX: 0.783099234 + scaleY: 1.0 + scaleZ: 0.783099234 + XmlUI: '' +- Autoraise: true + CardID: 113 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/788633557745841494/EE40BE77FC533E72EAA42315121D5119A47C9602/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/788633557745842381/C8E82A96F06BF357A91E8B94227981D1AC001396/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 4cbd54 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -45.5491 + posY: 1.71968949 + posZ: 0.62215966 + rotX: 359.922577 + rotY: 269.7454 + rotZ: 180.015778 + scaleX: 0.783099234 + scaleY: 1.0 + scaleZ: 0.783099234 + XmlUI: '' +CustomDeck: + '1': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/788633557745841494/EE40BE77FC533E72EAA42315121D5119A47C9602/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/788633557745842381/C8E82A96F06BF357A91E8B94227981D1AC001396/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 112 +- 114 +- 113 +Description: '' +GMNotes: '' +GUID: fd76f0 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: The Offering +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.68853927 + posY: 3.73802185 + posZ: -5.048486 + rotX: 359.9372 + rotY: 269.999969 + rotZ: 179.967041 + scaleX: 0.783099234 + scaleY: 1.0 + scaleZ: 0.783099234 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag 68380c/Card 268bd8.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag 68380c/Card 268bd8.yaml new file mode 100644 index 000000000..fdb9f4447 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag 68380c/Card 268bd8.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 200 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/788633557745886171/FA62DE604ADF62E6A6116D77866AF44035510775/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/788633557745885464/83513A9E24665271BF7652F32F59FC88D374EEB9/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 268bd8 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -30.2243 + posY: 1.69368327 + posZ: -15.2800026 + rotX: 359.9201 + rotY: 269.996 + rotZ: 180.016876 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag 68380c/Card 4011a5.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag 68380c/Card 4011a5.yaml new file mode 100644 index 000000000..b1ccf5a7d --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag 68380c/Card 4011a5.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 202 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/788633557745886171/FA62DE604ADF62E6A6116D77866AF44035510775/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/788633557745885464/83513A9E24665271BF7652F32F59FC88D374EEB9/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 4011a5 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -17.1199 + posY: 1.67990053 + posZ: -0.0299997646 + rotX: 359.9201 + rotY: 269.996033 + rotZ: 180.016876 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag 68380c/Card 5bb7d0.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag 68380c/Card 5bb7d0.yaml new file mode 100644 index 000000000..87bc8b16c --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag 68380c/Card 5bb7d0.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 204 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/788633557745886171/FA62DE604ADF62E6A6116D77866AF44035510775/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/788633557745885464/83513A9E24665271BF7652F32F59FC88D374EEB9/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 5bb7d0 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -23.6765 + posY: 1.68678463 + posZ: -7.700001 + rotX: 359.9201 + rotY: 269.9953 + rotZ: 180.016876 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag 68380c/Card 6f1efa.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag 68380c/Card 6f1efa.yaml new file mode 100644 index 000000000..44161de18 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag 68380c/Card 6f1efa.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 205 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/788633557745886171/FA62DE604ADF62E6A6116D77866AF44035510775/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/788633557745885464/83513A9E24665271BF7652F32F59FC88D374EEB9/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 6f1efa +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -36.7733 + posY: 1.70504737 + posZ: -7.70000124 + rotX: 359.9201 + rotY: 269.996033 + rotZ: 180.016876 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag 68380c/Card 7b91a3.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag 68380c/Card 7b91a3.yaml new file mode 100644 index 000000000..afa2e44ae --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag 68380c/Card 7b91a3.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 203 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/788633557745886171/FA62DE604ADF62E6A6116D77866AF44035510775/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/788633557745885464/83513A9E24665271BF7652F32F59FC88D374EEB9/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 7b91a3 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -23.6765 + posY: 1.68904328 + posZ: -0.02999958 + rotX: 359.9201 + rotY: 269.995972 + rotZ: 180.016876 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag 68380c/Card a4612b.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag 68380c/Card a4612b.yaml new file mode 100644 index 000000000..d9b2fde62 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag 68380c/Card a4612b.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 207 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/788633557745886171/FA62DE604ADF62E6A6116D77866AF44035510775/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/788633557745885464/83513A9E24665271BF7652F32F59FC88D374EEB9/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: a4612b +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -17.12 + posY: 1.68213856 + posZ: 7.57 + rotX: 359.9201 + rotY: 269.996155 + rotZ: 180.016876 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag 68380c/Card dbbfa0.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag 68380c/Card dbbfa0.yaml new file mode 100644 index 000000000..573a0438d --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag 68380c/Card dbbfa0.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 201 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/788633557745886171/FA62DE604ADF62E6A6116D77866AF44035510775/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/788633557745885464/83513A9E24665271BF7652F32F59FC88D374EEB9/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: dbbfa0 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -30.2243 + posY: 1.69591522 + posZ: -7.7 + rotX: 359.9201 + rotY: 269.9789 + rotZ: 180.016891 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag 68380c/Card ff4d6f.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag 68380c/Card ff4d6f.yaml new file mode 100644 index 000000000..15c7b3f87 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag 68380c/Card ff4d6f.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 206 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/788633557745886171/FA62DE604ADF62E6A6116D77866AF44035510775/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/788633557745885464/83513A9E24665271BF7652F32F59FC88D374EEB9/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: ff4d6f +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -17.12 + posY: 1.67764223 + posZ: -7.70000172 + rotX: 359.9201 + rotY: 269.995972 + rotZ: 180.016876 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag 68380c/CardCustom Scenario 98b72e.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag 68380c/CardCustom Scenario 98b72e.yaml new file mode 100644 index 000000000..d1cd86a0f --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag 68380c/CardCustom Scenario 98b72e.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 400 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '4': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/788633557745913993/F237F6CA5C4DED8942959421282367428BAA949E/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/788633557745913505/FF66027BC405E15FD168B273A1ACB4BEBCA5081D/ + NumHeight: 1 + NumWidth: 1 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 98b72e +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: CardCustom +Nickname: Scenario +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.95590067 + posY: 1.65847039 + posZ: -10.4431009 + rotX: 359.919739 + rotY: 269.999542 + rotZ: 180.01683 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag 68380c/Custom_Model_Bag Set-Aside 505e6c.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag 68380c/Custom_Model_Bag Set-Aside 505e6c.yaml new file mode 100644 index 000000000..cfc381b18 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag 68380c/Custom_Model_Bag Set-Aside 505e6c.yaml @@ -0,0 +1,57 @@ +Autoraise: true +ColorDiffuse: + b: 0.02148666 + g: 0.00100758043 + r: 0.02148666 +ContainedObjects: +- !include 'Custom_Model_Bag Set-Aside 505e6c/Deck fc05f7.yaml' +- !include 'Custom_Model_Bag Set-Aside 505e6c/Card 40fdf1.yaml' +CustomMesh: + CastShadows: true + ColliderURL: '' + Convex: true + DiffuseURL: http://i.imgur.com/yVhOLYs.jpg + MaterialIndex: 1 + MeshURL: https://paste.ee/r/ylQzQ + NormalURL: http://i.imgur.com/f1ogHo6.jpg + TypeIndex: 6 +Description: '' +GMNotes: '' +GUID: 505e6c +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +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.69650078 + posY: 1.558317 + posZ: 14.2788029 + rotX: 359.955139 + rotY: 224.997986 + rotZ: 0.0686712041 + scaleX: 2.0 + scaleY: 2.0 + scaleZ: 2.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag 68380c/Custom_Model_Bag Set-Aside 505e6c/Card 40fdf1.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag 68380c/Custom_Model_Bag Set-Aside 505e6c/Card 40fdf1.yaml new file mode 100644 index 000000000..37b28cebf --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag 68380c/Custom_Model_Bag Set-Aside 505e6c/Card 40fdf1.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 529 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '5': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/788633557745935933/00A07FDC14D1E0EF77D6A2A314E3779A36B7049D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/788633557745934848/1343ACA785A5EC527F7F55CC5C98A454398ECBB0/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 40fdf1 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -7.85147142 + posY: 3.08655977 + posZ: 5.116166 + rotX: -5.94977755e-05 + rotY: 300.0033 + rotZ: 1.13206152e-05 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag 68380c/Custom_Model_Bag Set-Aside 505e6c/Deck fc05f7.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag 68380c/Custom_Model_Bag Set-Aside 505e6c/Deck fc05f7.yaml new file mode 100644 index 000000000..c49f6665a --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag 68380c/Custom_Model_Bag Set-Aside 505e6c/Deck fc05f7.yaml @@ -0,0 +1,387 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 507 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/788633557745935933/00A07FDC14D1E0EF77D6A2A314E3779A36B7049D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/788633557745934848/1343ACA785A5EC527F7F55CC5C98A454398ECBB0/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 40fdf1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 7.804749 + posY: 1.19525766 + posZ: 1.19081986 + rotX: 0.0190201085 + rotY: 180.059357 + rotZ: 179.9849 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 506 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/788633557745935933/00A07FDC14D1E0EF77D6A2A314E3779A36B7049D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/788633557745934848/1343ACA785A5EC527F7F55CC5C98A454398ECBB0/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 40fdf1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 7.613367 + posY: 1.18889737 + posZ: 1.48828042 + rotX: -0.00227429043 + rotY: 179.999588 + rotZ: 179.997 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 505 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/788633557745935933/00A07FDC14D1E0EF77D6A2A314E3779A36B7049D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/788633557745934848/1343ACA785A5EC527F7F55CC5C98A454398ECBB0/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 40fdf1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 7.75397539 + posY: 1.18394363 + posZ: 1.15980935 + rotX: 359.984 + rotY: 180.019684 + rotZ: 180.002548 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 504 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/788633557745935933/00A07FDC14D1E0EF77D6A2A314E3779A36B7049D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/788633557745934848/1343ACA785A5EC527F7F55CC5C98A454398ECBB0/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 40fdf1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 7.76012754 + posY: 1.18130159 + posZ: 1.01706719 + rotX: 0.0007330392 + rotY: 180.001526 + rotZ: 180.0017 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 503 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/788633557745935933/00A07FDC14D1E0EF77D6A2A314E3779A36B7049D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/788633557745934848/1343ACA785A5EC527F7F55CC5C98A454398ECBB0/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 40fdf1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 7.746368 + posY: 1.18331409 + posZ: 0.997205734 + rotX: -0.00248008082 + rotY: 179.9957 + rotZ: 180.0014 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 502 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/788633557745935933/00A07FDC14D1E0EF77D6A2A314E3779A36B7049D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/788633557745934848/1343ACA785A5EC527F7F55CC5C98A454398ECBB0/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 40fdf1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 7.534797 + posY: 1.19688416 + posZ: 1.36689758 + rotX: -0.005576195 + rotY: 180.002136 + rotZ: 179.993225 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 501 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/788633557745935933/00A07FDC14D1E0EF77D6A2A314E3779A36B7049D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/788633557745934848/1343ACA785A5EC527F7F55CC5C98A454398ECBB0/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 3104e0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 7.67076731 + posY: 1.17945158 + posZ: 0.757262 + rotX: 0.00526241073 + rotY: 179.998566 + rotZ: 180.018173 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 500 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/788633557745935933/00A07FDC14D1E0EF77D6A2A314E3779A36B7049D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/788633557745934848/1343ACA785A5EC527F7F55CC5C98A454398ECBB0/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 40fdf1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 15.6323833 + posY: 1.64991593 + posZ: -0.5181488 + rotX: 359.917847 + rotY: 270.000122 + rotZ: 0.0162788741 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '5': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/788633557745935933/00A07FDC14D1E0EF77D6A2A314E3779A36B7049D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/788633557745934848/1343ACA785A5EC527F7F55CC5C98A454398ECBB0/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 507 +- 506 +- 505 +- 504 +- 503 +- 502 +- 501 +- 500 +Description: '' +GMNotes: '' +GUID: fc05f7 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 22.0388336 + posY: 3.50420761 + posZ: -28.9088249 + rotX: 359.920135 + rotY: 270.000061 + rotZ: 0.01687656 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag 68380c/Custom_PDF Campaign Guide f8c00e.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag 68380c/Custom_PDF Campaign Guide f8c00e.yaml new file mode 100644 index 000000000..3b39ba69a --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag 68380c/Custom_PDF Campaign Guide f8c00e.yaml @@ -0,0 +1,37 @@ +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/788633557746033014/E2E2119AB5765CAE1D41F0C81EBD62AA3AF8330F/ +Description: '' +GMNotes: '' +GUID: f8c00e +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_PDF +Nickname: Campaign Guide +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 12.250577 + posY: 1.93446577 + posZ: 13.4375763 + rotX: 359.921021 + rotY: 270.0034 + rotZ: 359.982361 + scaleX: 3.31565976 + scaleY: 1.0 + scaleZ: 3.31565976 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag 68380c/Custom_Tile 1ae977.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag 68380c/Custom_Tile 1ae977.yaml new file mode 100644 index 000000000..215d5a468 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag 68380c/Custom_Tile 1ae977.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 1ae977 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.4282 + posY: 1.62584472 + posZ: -7.706201 + rotX: 0.07989463 + rotY: 90.0006561 + rotZ: 359.9831 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag 68380c/Custom_Tile 35c492.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag 68380c/Custom_Tile 35c492.yaml new file mode 100644 index 000000000..de42fe322 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag 68380c/Custom_Tile 35c492.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 35c492 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.1198978 + posY: 1.60424507 + posZ: -3.83000016 + rotX: 0.01687521 + rotY: 179.99765 + rotZ: 0.07994527 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag 68380c/Custom_Tile 5d070a.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag 68380c/Custom_Tile 5d070a.yaml new file mode 100644 index 000000000..fe6adbbd0 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag 68380c/Custom_Tile 5d070a.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 5d070a +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.620257 + posZ: -11.51 + rotX: 359.983154 + rotY: 0.009635047 + rotZ: 359.920044 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag 68380c/Custom_Tile 6645cd.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag 68380c/Custom_Tile 6645cd.yaml new file mode 100644 index 000000000..510ab871a --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag 68380c/Custom_Tile 6645cd.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 6645cd +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.6764 + posY: 1.61338782 + posZ: -3.83 + rotX: 0.0168743562 + rotY: 179.9981 + rotZ: 0.07993914 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag 68380c/Custom_Tile 668f68.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag 68380c/Custom_Tile 668f68.yaml new file mode 100644 index 000000000..7184b550a --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag 68380c/Custom_Tile 668f68.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 668f68 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.9665 + posY: 1.61683023 + posZ: -7.71990156 + rotX: 0.0798944 + rotY: 90.0005646 + rotZ: 359.9831 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag 68380c/Custom_Tile 7234af.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag 68380c/Custom_Tile 7234af.yaml new file mode 100644 index 000000000..46cc24f05 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag 68380c/Custom_Tile 7234af.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 7234af +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.1199 + posY: 1.60650945 + posZ: 3.85979986 + rotX: 0.0168743338 + rotY: 179.9981 + rotZ: 0.0799395 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag 68380c/Custom_Tile 759ab6.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag 68380c/Custom_Tile 759ab6.yaml new file mode 100644 index 000000000..12ed5ecee --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag 68380c/Custom_Tile 759ab6.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 759ab6 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.2426 + posY: 1.60745811 + posZ: -7.70660162 + rotX: 0.07989453 + rotY: 90.00068 + rotZ: 359.9831 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag 68380c/Custom_Tile b04a1a.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag 68380c/Custom_Tile b04a1a.yaml new file mode 100644 index 000000000..ecd3c85d3 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag 68380c/Custom_Tile b04a1a.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: b04a1a +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.2608 + posY: 1.60976565 + posZ: 0.0433999635 + rotX: 0.07989453 + rotY: 90.00054 + rotZ: 359.9831 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag 68380c/Custom_Tile d26316.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag 68380c/Custom_Tile d26316.yaml new file mode 100644 index 000000000..d9680cb4e --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag 68380c/Custom_Tile d26316.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: d26316 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.8215 + posY: 1.61542249 + posZ: -11.8145 + rotX: 0.0449836031 + rotY: 45.35085 + rotZ: 359.9319 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag 68380c/Custom_Tile The Initiation bbb70a.ttslua b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag 68380c/Custom_Tile The Initiation bbb70a.ttslua new file mode 100644 index 000000000..497ce1745 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag 68380c/Custom_Tile The Initiation bbb70a.ttslua @@ -0,0 +1,25 @@ +name = 'The Initiation' + +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 + +function standaloneClick() + Global.call('fillContainer', {object=self, key=name, mode='standalone'}) +end diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag 68380c/Custom_Tile The Initiation bbb70a.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag 68380c/Custom_Tile The Initiation bbb70a.yaml new file mode 100644 index 000000000..3defe27f5 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag 68380c/Custom_Tile The Initiation bbb70a.yaml @@ -0,0 +1,42 @@ +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: http://cloud-3.steamusercontent.com/ugc/949588657194710961/D864BCCCC1C811EC7F0AED69D1C30C678D3D9FC9/ + ImageURL: http://cloud-3.steamusercontent.com/ugc/965354846165100486/3DC8FCEF364B30758B09EF96AF9458F2B8E64D56/ + WidthScale: 0.0 +Description: click to set chaos token difficulty +GMNotes: '' +GUID: bbb70a +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Tile The Initiation bbb70a.ttslua' +LuaScriptState: '' +Name: Custom_Tile +Nickname: The Initiation +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.80270028 + posY: 1.58239937 + posZ: -14.9354038 + rotX: 359.919739 + rotY: 270.031036 + rotZ: 0.0167942345 + scaleX: 2.2 + scaleY: 1.0 + scaleZ: 2.2 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag 68380c/Deck Agenda Deck def2f5.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag 68380c/Deck Agenda Deck def2f5.yaml new file mode 100644 index 000000000..c51f133c3 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag 68380c/Deck Agenda Deck def2f5.yaml @@ -0,0 +1,172 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 116 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/788633557745841494/EE40BE77FC533E72EAA42315121D5119A47C9602/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/788633557745842381/C8E82A96F06BF357A91E8B94227981D1AC001396/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: ac4cc5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -33.4083138 + posY: 1.86669087 + posZ: 4.084464 + rotX: 0.0110821165 + rotY: 179.961578 + rotZ: 180.064056 + scaleX: 0.783099234 + scaleY: 1.0 + scaleZ: 0.783099234 + XmlUI: '' +- Autoraise: true + CardID: 115 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/788633557745841494/EE40BE77FC533E72EAA42315121D5119A47C9602/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/788633557745842381/C8E82A96F06BF357A91E8B94227981D1AC001396/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 6f26c3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -6.76561737 + posY: 1.17323577 + posZ: 0.05978197 + rotX: 359.992 + rotY: 179.985016 + rotZ: 180.012253 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 117 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/788633557745841494/EE40BE77FC533E72EAA42315121D5119A47C9602/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/788633557745842381/C8E82A96F06BF357A91E8B94227981D1AC001396/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: f05a1e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -7.02985859 + posY: 1.034526 + posZ: -0.09515581 + rotX: 0.000172732922 + rotY: 179.9965 + rotZ: 180.000443 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '1': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/788633557745841494/EE40BE77FC533E72EAA42315121D5119A47C9602/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/788633557745842381/C8E82A96F06BF357A91E8B94227981D1AC001396/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 116 +- 115 +- 117 +Description: '' +GMNotes: '' +GUID: def2f5 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Agenda Deck +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.72480035 + posY: 1.66398108 + posZ: 0.37340045 + rotX: 359.919739 + rotY: 270.000977 + rotZ: 180.01683 + scaleX: 0.783099234 + scaleY: 1.0 + scaleZ: 0.783099234 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag 68380c/Deck Roles cce0e0.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag 68380c/Deck Roles cce0e0.yaml new file mode 100644 index 000000000..85b9dea20 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag 68380c/Deck Roles cce0e0.yaml @@ -0,0 +1,258 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 304 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/788633557745904727/C63C2F64FD36C52E3789FE0AF90911B9C720A8DC/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/788633557745903100/6199F54B776928872CA54A30177D86526BF57929/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 213b85 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.39631653 + posY: 1.03164709 + posZ: 0.212218851 + rotX: 0.0006539054 + rotY: 180.0 + rotZ: -0.004412694 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 303 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/788633557745904727/C63C2F64FD36C52E3789FE0AF90911B9C720A8DC/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/788633557745903100/6199F54B776928872CA54A30177D86526BF57929/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: ba65dc + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 6.480454 + posY: 1.03160429 + posZ: -0.699747443 + rotX: 359.993774 + rotY: 180.000015 + rotZ: 0.00319826882 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 302 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/788633557745904727/C63C2F64FD36C52E3789FE0AF90911B9C720A8DC/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/788633557745903100/6199F54B776928872CA54A30177D86526BF57929/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: c25a58 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 10.1751261 + posY: 1.03165567 + posZ: 0.138327822 + rotX: 0.000605026959 + rotY: 180.0 + rotZ: -0.00389001821 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 301 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/788633557745904727/C63C2F64FD36C52E3789FE0AF90911B9C720A8DC/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/788633557745903100/6199F54B776928872CA54A30177D86526BF57929/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 969a34 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 9.829711 + posY: 1.03169692 + posZ: 4.012135 + rotX: -0.000740984629 + rotY: 180.000061 + rotZ: -0.000317312224 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 300 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/788633557745904727/C63C2F64FD36C52E3789FE0AF90911B9C720A8DC/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/788633557745903100/6199F54B776928872CA54A30177D86526BF57929/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 7ac3bf + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 12.0186758 + posY: 1.69882274 + posZ: -1.76365435 + rotX: 359.919037 + rotY: 270.016052 + rotZ: 0.899788737 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '3': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/788633557745904727/C63C2F64FD36C52E3789FE0AF90911B9C720A8DC/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/788633557745903100/6199F54B776928872CA54A30177D86526BF57929/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 304 +- 303 +- 302 +- 301 +- 300 +Description: Select one and add to your deck +GMNotes: '' +GUID: cce0e0 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Roles +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -12.0114975 + posY: 1.67102468 + posZ: 7.4502 + rotX: 359.9201 + rotY: 270.006439 + rotZ: 0.016867321 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag 68380c/DeckCustom Encounter Deck 8944d1.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag 68380c/DeckCustom Encounter Deck 8944d1.yaml new file mode 100644 index 000000000..35fc9af11 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag 68380c/DeckCustom Encounter Deck 8944d1.yaml @@ -0,0 +1,786 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 511 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: 40fdf1 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.16072146e-07 + posY: 1.04493046 + posZ: 1.48063577e-07 + rotX: -2.98125588e-06 + rotY: 180.0 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 512 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: 40fdf1 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.16072146e-07 + posY: 1.04493046 + posZ: 1.48063577e-07 + rotX: -2.98125588e-06 + rotY: 180.0 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 522 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: 40fdf1 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.16072146e-07 + posY: 1.04493046 + posZ: 1.48063577e-07 + rotX: -2.98125588e-06 + rotY: 180.0 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 527 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: 40fdf1 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.16072146e-07 + posY: 1.04493046 + posZ: 1.48063577e-07 + rotX: -2.98125588e-06 + rotY: 180.0 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 518 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: 40fdf1 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.16072146e-07 + posY: 1.04493046 + posZ: 1.48063577e-07 + rotX: -2.98125588e-06 + rotY: 180.0 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 517 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: 40fdf1 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.16072146e-07 + posY: 1.04493046 + posZ: 1.48063577e-07 + rotX: -2.98125588e-06 + rotY: 180.0 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 510 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: 40fdf1 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.16072146e-07 + posY: 1.04493046 + posZ: 1.48063577e-07 + rotX: -2.98125588e-06 + rotY: 180.0 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 508 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/788633557745935933/00A07FDC14D1E0EF77D6A2A314E3779A36B7049D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/788633557745934848/1343ACA785A5EC527F7F55CC5C98A454398ECBB0/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 40fdf1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 6.57608032 + posY: 1.28832209 + posZ: 4.489351 + rotX: 2.73051628e-05 + rotY: 119.793419 + rotZ: 179.999954 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 515 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: 40fdf1 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.16072146e-07 + posY: 1.04493046 + posZ: 1.48063577e-07 + rotX: -2.98125588e-06 + rotY: 180.0 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 509 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: 40fdf1 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.16072146e-07 + posY: 1.04493046 + posZ: 1.48063577e-07 + rotX: -2.98125588e-06 + rotY: 180.0 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 513 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: 40fdf1 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.16072146e-07 + posY: 1.04493046 + posZ: 1.48063577e-07 + rotX: -2.98125588e-06 + rotY: 180.0 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 528 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: 40fdf1 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.16072146e-07 + posY: 1.04493046 + posZ: 1.48063577e-07 + rotX: -2.98125588e-06 + rotY: 180.0 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 520 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: 40fdf1 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.16072146e-07 + posY: 1.04493046 + posZ: 1.48063577e-07 + rotX: -2.98125588e-06 + rotY: 180.0 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 516 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: 40fdf1 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.16072146e-07 + posY: 1.04493046 + posZ: 1.48063577e-07 + rotX: -2.98125588e-06 + rotY: 180.0 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 525 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: 40fdf1 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.16072146e-07 + posY: 1.04493046 + posZ: 1.48063577e-07 + rotX: -2.98125588e-06 + rotY: 180.0 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 521 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: 40fdf1 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.16072146e-07 + posY: 1.04493046 + posZ: 1.48063577e-07 + rotX: -2.98125588e-06 + rotY: 180.0 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 523 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: 40fdf1 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.16072146e-07 + posY: 1.04493046 + posZ: 1.48063577e-07 + rotX: -2.98125588e-06 + rotY: 180.0 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 526 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: 40fdf1 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.16072146e-07 + posY: 1.04493046 + posZ: 1.48063577e-07 + rotX: -2.98125588e-06 + rotY: 180.0 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 519 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: 40fdf1 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.16072146e-07 + posY: 1.04493046 + posZ: 1.48063577e-07 + rotX: -2.98125588e-06 + rotY: 180.0 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 514 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: 40fdf1 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.16072146e-07 + posY: 1.04493046 + posZ: 1.48063577e-07 + rotX: -2.98125588e-06 + rotY: 180.0 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 524 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: 40fdf1 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.16072146e-07 + posY: 1.04493046 + posZ: 1.48063577e-07 + rotX: -2.98125588e-06 + rotY: 180.0 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '5': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/788633557745935933/00A07FDC14D1E0EF77D6A2A314E3779A36B7049D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/788633557745934848/1343ACA785A5EC527F7F55CC5C98A454398ECBB0/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 511 +- 512 +- 522 +- 527 +- 518 +- 517 +- 510 +- 508 +- 515 +- 509 +- 513 +- 528 +- 520 +- 516 +- 525 +- 521 +- 523 +- 526 +- 519 +- 514 +- 524 +Description: '' +GMNotes: '' +GUID: 8944d1 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: DeckCustom +Nickname: Encounter Deck +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.92750025 + posY: 1.72374463 + posZ: 5.757302 + rotX: 359.919739 + rotY: 270.000549 + rotZ: 180.016815 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Against the Wendigo 4d5fa0.ttslua b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Against the Wendigo 4d5fa0.ttslua new file mode 100644 index 000000000..46067f58e --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Against the Wendigo 4d5fa0.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.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.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 791837/Custom_Model_Bag Against the Wendigo 4d5fa0.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Against the Wendigo 4d5fa0.yaml new file mode 100644 index 000000000..cadad2b7d --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Against the Wendigo 4d5fa0.yaml @@ -0,0 +1,91 @@ +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 Against the Wendigo 4d5fa0/ScriptingTrigger 06f882.yaml' +- !include 'Custom_Model_Bag Against the Wendigo 4d5fa0/Bag Investigators (Full) 0c01a1.yaml' +- !include 'Custom_Model_Bag Against the Wendigo 4d5fa0/Card Jetty 0e52c8.yaml' +- !include 'Custom_Model_Bag Against the Wendigo 4d5fa0/Custom_Tile 0f6d69.yaml' +- !include 'Custom_Model_Bag Against the Wendigo 4d5fa0/Card Scenario 1ac3ac.yaml' +- !include 'Custom_Model_Bag Against the Wendigo 4d5fa0/Custom_Tile 1ee2a5.yaml' +- !include 'Custom_Model_Bag Against the Wendigo 4d5fa0/Custom_Tile 201524.yaml' +- !include 'Custom_Model_Bag Against the Wendigo 4d5fa0/Deck Mountain Range 309b74.yaml' +- !include 'Custom_Model_Bag Against the Wendigo 4d5fa0/Card Credits 45ae28.yaml' +- !include 'Custom_Model_Bag Against the Wendigo 4d5fa0/Deck Act Deck 5f661f.yaml' +- !include 'Custom_Model_Bag Against the Wendigo 4d5fa0/Custom_Tile 60ad05.yaml' +- !include 'Custom_Model_Bag Against the Wendigo 4d5fa0/Custom_Model_Bag Set-aside + 6791fd.yaml' +- !include 'Custom_Model_Bag Against the Wendigo 4d5fa0/Card Indian Territory 686672.yaml' +- !include 'Custom_Model_Bag Against the Wendigo 4d5fa0/Deck Encounter Deck 6f2827.yaml' +- !include 'Custom_Model_Bag Against the Wendigo 4d5fa0/Custom_Tile 7234af.yaml' +- !include 'Custom_Model_Bag Against the Wendigo 4d5fa0/Custom_Tile Against the Wendigo + 82e1ed.yaml' +- !include 'Custom_Model_Bag Against the Wendigo 4d5fa0/Custom_Tile 86cbee.yaml' +- !include 'Custom_Model_Bag Against the Wendigo 4d5fa0/Card Fort McDonald 88a1cf.yaml' +- !include 'Custom_Model_Bag Against the Wendigo 4d5fa0/Custom_Tile 9caa1f.yaml' +- !include 'Custom_Model_Bag Against the Wendigo 4d5fa0/Deck Agenda Deck 9e701d.yaml' +- !include 'Custom_Model_Bag Against the Wendigo 4d5fa0/Deck Shuffle and place north + of Jetty a69955.yaml' +- !include 'Custom_Model_Bag Against the Wendigo 4d5fa0/Tablet Against the Wendigo + Campaign Guide ad6736.yaml' +- !include 'Custom_Model_Bag Against the Wendigo 4d5fa0/Deck Locations (random shuffle) + b3ec68.yaml' +- !include 'Custom_Model_Bag Against the Wendigo 4d5fa0/Custom_Tile b6a235.yaml' +- !include 'Custom_Model_Bag Against the Wendigo 4d5fa0/Custom_Tile d807d4.yaml' +- !include 'Custom_Model_Bag Against the Wendigo 4d5fa0/Custom_Tile dda3d5.yaml' +- !include 'Custom_Model_Bag Against the Wendigo 4d5fa0/Custom_Tile e47eca.yaml' +CustomMesh: + CastShadows: true + ColliderURL: '' + Convex: true + DiffuseURL: http://cloud-3.steamusercontent.com/ugc/798737729142901599/7EE6EF24852C443DF5E92CF9498881E321CEE75A/ + MaterialIndex: 3 + MeshURL: https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj + NormalURL: '' + TypeIndex: 6 +Description: '' +GMNotes: '' +GUID: 4d5fa0 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Model_Bag Against the Wendigo 4d5fa0.ttslua' +LuaScriptState: '{"ml":{"06f882":{"lock":true,"pos":{"x":-3.769,"y":4.1352,"z":5.6708},"rot":{"x":0,"y":90,"z":0}},"0c01a1":{"lock":false,"pos":{"x":1.2422,"y":1.3947,"z":0.1206},"rot":{"x":359.9832,"y":0.0007,"z":359.9197}},"0e52c8":{"lock":false,"pos":{"x":-36.7731,"y":1.7045,"z":-0.03},"rot":{"x":359.9201,"y":269.9998,"z":0.0169}},"0f6d69":{"lock":false,"pos":{"x":-20.4015,"y":1.6099,"z":-0.1772},"rot":{"x":0.0799,"y":90.0005,"z":359.9831}},"1ac3ac":{"lock":false,"pos":{"x":-3.956,"y":1.6556,"z":-10.4412},"rot":{"x":359.9197,"y":270.0313,"z":0.0168}},"1ee2a5":{"lock":false,"pos":{"x":-33.3772,"y":1.628,"z":-0.0078},"rot":{"x":0.0799,"y":90.0005,"z":359.9831}},"201524":{"lock":false,"pos":{"x":-17.12,"y":1.6065,"z":3.86},"rot":{"x":0.0168,"y":180.0351,"z":0.08}},"309b74":{"lock":false,"pos":{"x":-12.4322,"y":1.6796,"z":7.3153},"rot":{"x":359.9201,"y":270.0005,"z":0.0169}},"45ae28":{"lock":false,"pos":{"x":-9.3921,"y":1.5611,"z":-27.1341},"rot":{"x":359.9201,"y":270,"z":180.0169}},"5f661f":{"lock":false,"pos":{"x":-2.6885,"y":1.655,"z":-5.0485},"rot":{"x":359.9197,"y":270.0056,"z":0.0168}},"60ad05":{"lock":false,"pos":{"x":-36.7731,"y":1.6317,"z":-3.83},"rot":{"x":0.0168,"y":180.0349,"z":0.0799}},"6791fd":{"lock":false,"pos":{"x":1.6969,"y":1.5583,"z":14.2784},"rot":{"x":359.9551,"y":224.9981,"z":0.0687}},"686672":{"lock":false,"pos":{"x":-36.7732,"y":1.7067,"z":7.57},"rot":{"x":359.9201,"y":269.9997,"z":0.0169}},"6f2827":{"lock":false,"pos":{"x":-3.9277,"y":1.7664,"z":5.7571},"rot":{"x":359.9197,"y":269.9933,"z":180.0168}},"7234af":{"lock":false,"pos":{"x":-36.7731,"y":1.6339,"z":3.86},"rot":{"x":0.0168,"y":180.0342,"z":0.0799}},"82e1ed":{"lock":false,"pos":{"x":-4.0012,"y":1.5828,"z":-14.59},"rot":{"x":359.9197,"y":269.9926,"z":0.0168}},"86cbee":{"lock":false,"pos":{"x":-17.12,"y":1.6042,"z":-3.83},"rot":{"x":0.0168,"y":180.0349,"z":0.08}},"88a1cf":{"lock":false,"pos":{"x":-36.7732,"y":1.7022,"z":-7.7},"rot":{"x":359.9201,"y":269.9997,"z":0.0169}},"9caa1f":{"lock":false,"pos":{"x":-30.2242,"y":1.6248,"z":3.86},"rot":{"x":0.0168,"y":180.0349,"z":0.08}},"9e701d":{"lock":false,"pos":{"x":-2.7247,"y":1.6566,"z":0.3733},"rot":{"x":359.9197,"y":269.9826,"z":0.0169}},"a69955":{"lock":false,"pos":{"x":-30.2242,"y":1.6949,"z":-0.03},"rot":{"x":359.9201,"y":270.0005,"z":0.0169}},"ad6736":{"lock":false,"pos":{"x":-1.1127,"y":1.7619,"z":-27.6436},"rot":{"x":359.9201,"y":269.9693,"z":0.0169}},"b3ec68":{"lock":false,"pos":{"x":-12.7351,"y":1.6676,"z":-7.6861},"rot":{"x":359.9201,"y":270.0001,"z":0.0169}},"b6a235":{"lock":false,"pos":{"x":-23.6765,"y":1.6134,"z":-3.83},"rot":{"x":0.0168,"y":180.0349,"z":0.08}},"d807d4":{"lock":false,"pos":{"x":-26.8814,"y":1.619,"z":-0.0326},"rot":{"x":0.0799,"y":90.0005,"z":359.9831}},"dda3d5":{"lock":false,"pos":{"x":-30.2242,"y":1.6225,"z":-3.83},"rot":{"x":0.0168,"y":180.0349,"z":0.08}},"e47eca":{"lock":false,"pos":{"x":-23.6765,"y":1.6157,"z":3.86},"rot":{"x":0.0168,"y":180.0349,"z":0.08}}}}' +MaterialIndex: -1 +MeshIndex: -1 +Name: Custom_Model_Bag +Nickname: Against the Wendigo +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 + scaleX: 2.21 + scaleY: 0.46 + scaleZ: 2.42 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Against the Wendigo 4d5fa0/Bag Investigators (Full) 0c01a1.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Against the Wendigo 4d5fa0/Bag Investigators (Full) 0c01a1.yaml new file mode 100644 index 000000000..7d692db89 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Against the Wendigo 4d5fa0/Bag Investigators (Full) 0c01a1.yaml @@ -0,0 +1,41 @@ +Autoraise: true +ColorDiffuse: + b: 0.844534934 + g: 0.844534934 + r: 0.9163763 +ContainedObjects: +- !include 'Bag Investigators (Full) 0c01a1/Deck FBI Credentials e07f79.yaml' +- !include 'Bag Investigators (Full) 0c01a1/Bag Mia Takamura 8f0e4d.yaml' +- !include 'Bag Investigators (Full) 0c01a1/Bag Martin Fuller 060381.yaml' +- !include 'Bag Investigators (Full) 0c01a1/Bag Phil Duke 19a84b.yaml' +- !include 'Bag Investigators (Full) 0c01a1/Bag Maxine Benson cfd80b.yaml' +- !include 'Bag Investigators (Full) 0c01a1/Bag Dave Harrison d472ae.yaml' +Description: '' +GMNotes: '' +GUID: 0c01a1 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +MeshIndex: -1 +Name: Bag +Nickname: Investigators (Full) +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 1.24220109 + posY: 1.39472318 + posZ: 0.12060073 + rotX: 359.983154 + rotY: 0.000733251334 + rotZ: 359.919678 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Against the Wendigo 4d5fa0/Bag Investigators (Full) 0c01a1/Bag Dave Harrison d472ae.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Against the Wendigo 4d5fa0/Bag Investigators (Full) 0c01a1/Bag Dave Harrison d472ae.yaml new file mode 100644 index 000000000..ec651cea6 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Against the Wendigo 4d5fa0/Bag Investigators (Full) 0c01a1/Bag Dave Harrison d472ae.yaml @@ -0,0 +1,39 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 0.53 + r: 0.11799977 +ContainedObjects: +- !include 'Bag Dave Harrison d472ae/Card Harrison''s MP5 039291.yaml' +- !include 'Bag Dave Harrison d472ae/Card Anger Issues b67ef8.yaml' +- !include 'Bag Dave Harrison d472ae/Card acefbf.yaml' +- !include 'Bag Dave Harrison d472ae/Card Dave Harrison 359a15.yaml' +Description: '' +GMNotes: '' +GUID: d472ae +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +MeshIndex: -1 +Name: Bag +Nickname: Dave Harrison +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 23.9602814 + posY: 3.14389133 + posZ: 48.1013374 + rotX: 0.6516616 + rotY: 0.0129410764 + rotZ: 358.090057 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Against the Wendigo 4d5fa0/Bag Investigators (Full) 0c01a1/Bag Dave Harrison d472ae/Card acefbf.yaml new file mode 100644 index 000000000..b6d0ae44f --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Against the Wendigo 4d5fa0/Bag Investigators (Full) 0c01a1/Bag Dave Harrison d472ae/Card acefbf.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 200 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/973245240934251782/CBF336735F027D37D8CD0C548C243D2E55F66B98/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/973245240934250642/1544450C9797EF24BEC21F67DBCDFD4BB40E0989/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: acefbf +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 31.0471973 + posY: 2.582908 + posZ: 40.9792671 + rotX: 0.0208098441 + rotY: 269.995148 + rotZ: 0.01676907 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Against the Wendigo 4d5fa0/Bag Investigators (Full) 0c01a1/Bag Dave Harrison d472ae/Card Anger Issues b67ef8.yaml new file mode 100644 index 000000000..65f94da0a --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Against the Wendigo 4d5fa0/Bag Investigators (Full) 0c01a1/Bag Dave Harrison d472ae/Card Anger Issues b67ef8.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 6300 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '63': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960858438788773676/C516A83C2270A3B67D28267979932364168348F1/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: b67ef8 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Anger Issues +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 7.17395 + posY: 3.318967 + posZ: 75.94489 + rotX: 0.0208029468 + rotY: 270.015717 + rotZ: 0.0167844724 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Against the Wendigo 4d5fa0/Bag Investigators (Full) 0c01a1/Bag Dave Harrison d472ae/Card Dave Harrison 359a15.yaml new file mode 100644 index 000000000..ce160f6ed --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Against the Wendigo 4d5fa0/Bag Investigators (Full) 0c01a1/Bag Dave Harrison d472ae/Card Dave Harrison 359a15.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 200 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/973245240934255231/6F32D3D1652830F37ECFDB6986108D6C84C3F11D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/973245240934253846/7437E84E7B1DD0ECD31820654710E80D2E1B2A8A/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 359a15 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Dave Harrison +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 17.9907684 + posY: 3.32319522 + posZ: 76.97105 + rotX: 0.020810375 + rotY: 269.982635 + rotZ: 0.016779162 + scaleX: 0.693170249 + scaleY: 1.0 + scaleZ: 0.693170249 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Against the Wendigo 4d5fa0/Bag Investigators (Full) 0c01a1/Bag Dave Harrison d472ae/Card Harrison's MP5 039291.yaml new file mode 100644 index 000000000..90f165cf5 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Against the Wendigo 4d5fa0/Bag Investigators (Full) 0c01a1/Bag Dave Harrison d472ae/Card Harrison's MP5 039291.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 6303 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '63': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960858438788773676/C516A83C2270A3B67D28267979932364168348F1/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 039291 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Harrison's MP5 +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 6.45659828 + posY: 3.3173964 + posZ: 71.47114 + rotX: 0.0208061934 + rotY: 270.004639 + rotZ: 0.0167768933 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Against the Wendigo 4d5fa0/Bag Investigators (Full) 0c01a1/Bag Martin Fuller 060381.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Against the Wendigo 4d5fa0/Bag Investigators (Full) 0c01a1/Bag Martin Fuller 060381.yaml new file mode 100644 index 000000000..61c2a0a41 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Against the Wendigo 4d5fa0/Bag Investigators (Full) 0c01a1/Bag Martin Fuller 060381.yaml @@ -0,0 +1,39 @@ +Autoraise: true +ColorDiffuse: + b: 0.941 + g: 0.1249998 + r: 0.627 +ContainedObjects: +- !include 'Bag Martin Fuller 060381/Card Between bda031.yaml' +- !include 'Bag Martin Fuller 060381/Card The Holographic Universe af067a.yaml' +- !include 'Bag Martin Fuller 060381/Card 0d7398.yaml' +- !include 'Bag Martin Fuller 060381/Card Martin Fuller 597c69.yaml' +Description: '' +GMNotes: '' +GUID: 060381 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +MeshIndex: -1 +Name: Bag +Nickname: Martin Fuller +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 23.7435741 + posY: 3.15402555 + posZ: 48.14247 + rotX: 0.9900025 + rotY: 359.9602 + rotZ: 359.335083 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Against the Wendigo 4d5fa0/Bag Investigators (Full) 0c01a1/Bag Martin Fuller 060381/Card 0d7398.yaml new file mode 100644 index 000000000..36cdf9af9 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Against the Wendigo 4d5fa0/Bag Investigators (Full) 0c01a1/Bag Martin Fuller 060381/Card 0d7398.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 101 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '1': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/960858438788761020/831136F6BEC64C1F898EA8EF47B10EA59A380BE6/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960858438788759248/A9A298491F67F5DBBC04B1307F55D495C94B593C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 0d7398 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 30.5149956 + posY: 2.58290577 + posZ: 40.506424 + rotX: 0.0208097156 + rotY: 269.995148 + rotZ: 0.0167699866 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Against the Wendigo 4d5fa0/Bag Investigators (Full) 0c01a1/Bag Martin Fuller 060381/Card Between bda031.yaml new file mode 100644 index 000000000..aabd39470 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Against the Wendigo 4d5fa0/Bag Investigators (Full) 0c01a1/Bag Martin Fuller 060381/Card Between bda031.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 6301 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '63': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960858438788773676/C516A83C2270A3B67D28267979932364168348F1/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: bda031 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Between +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -14.2448139 + posY: 3.31039119 + posZ: 85.48382 + rotX: 0.0209856462 + rotY: 269.999329 + rotZ: 0.016547814 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Against the Wendigo 4d5fa0/Bag Investigators (Full) 0c01a1/Bag Martin Fuller 060381/Card Martin Fuller 597c69.yaml new file mode 100644 index 000000000..84cef729c --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Against the Wendigo 4d5fa0/Bag Investigators (Full) 0c01a1/Bag Martin Fuller 060381/Card Martin Fuller 597c69.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 6102 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '61': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/963108334410252567/19A3994FF8F6C9235A1A29C080FA9003D424B969/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/963108334410250512/3A26A0D3A77D481FF486E5FB4D4567DF9E21F78F/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 597c69 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Martin Fuller +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -17.8556557 + posY: 3.30701041 + posZ: 78.4128342 + rotX: 0.0208089445 + rotY: 269.999969 + rotZ: 0.0167786237 + scaleX: 0.693170249 + scaleY: 1.0 + scaleZ: 0.693170249 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Against the Wendigo 4d5fa0/Bag Investigators (Full) 0c01a1/Bag Martin Fuller 060381/Card The Holographic Universe af067a.yaml new file mode 100644 index 000000000..052a67e22 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Against the Wendigo 4d5fa0/Bag Investigators (Full) 0c01a1/Bag Martin Fuller 060381/Card The Holographic Universe af067a.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 6308 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '63': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960858438788773676/C516A83C2270A3B67D28267979932364168348F1/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: af067a +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: The Holographic Universe +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -14.4365139 + posY: 3.30918479 + posZ: 81.5981 + rotX: 0.0209056158 + rotY: 269.993744 + rotZ: 0.0166527983 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Against the Wendigo 4d5fa0/Bag Investigators (Full) 0c01a1/Bag Maxine Benson cfd80b.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Against the Wendigo 4d5fa0/Bag Investigators (Full) 0c01a1/Bag Maxine Benson cfd80b.yaml new file mode 100644 index 000000000..b7c8065bc --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Against the Wendigo 4d5fa0/Bag Investigators (Full) 0c01a1/Bag Maxine Benson cfd80b.yaml @@ -0,0 +1,39 @@ +Autoraise: true +ColorDiffuse: + b: 0.112999775 + g: 0.391999751 + r: 0.9559999 +ContainedObjects: +- !include 'Bag Maxine Benson cfd80b/Card Company Connections cb5f8b.yaml' +- !include 'Bag Maxine Benson cfd80b/Card Vengeful Assassin 83c027.yaml' +- !include 'Bag Maxine Benson cfd80b/Card 6e601f.yaml' +- !include 'Bag Maxine Benson cfd80b/Card Maxine Benson 03052d.yaml' +Description: '' +GMNotes: '' +GUID: cfd80b +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +MeshIndex: -1 +Name: Bag +Nickname: Maxine Benson +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 24.2250214 + posY: 3.12612367 + posZ: 48.09586 + rotX: 0.4745946 + rotY: -0.0009305543 + rotZ: 357.437225 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Against the Wendigo 4d5fa0/Bag Investigators (Full) 0c01a1/Bag Maxine Benson cfd80b/Card 6e601f.yaml new file mode 100644 index 000000000..3f198d146 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Against the Wendigo 4d5fa0/Bag Investigators (Full) 0c01a1/Bag Maxine Benson cfd80b/Card 6e601f.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 102 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '1': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/960858438788761020/831136F6BEC64C1F898EA8EF47B10EA59A380BE6/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960858438788759248/A9A298491F67F5DBBC04B1307F55D495C94B593C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 6e601f +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 31.3609753 + posY: 2.582908 + posZ: 39.36572 + rotX: 0.0208104849 + rotY: 269.995148 + rotZ: 0.0167691018 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Against the Wendigo 4d5fa0/Bag Investigators (Full) 0c01a1/Bag Maxine Benson cfd80b/Card Company Connections cb5f8b.yaml new file mode 100644 index 000000000..29e41ef8c --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Against the Wendigo 4d5fa0/Bag Investigators (Full) 0c01a1/Bag Maxine Benson cfd80b/Card Company Connections cb5f8b.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 6302 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '63': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960858438788773676/C516A83C2270A3B67D28267979932364168348F1/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: cb5f8b +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Company Connections +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -13.6249895 + posY: 3.398403 + posZ: 76.2557755 + rotX: 1.46088052 + rotY: 269.979858 + rotZ: 358.9707 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Against the Wendigo 4d5fa0/Bag Investigators (Full) 0c01a1/Bag Maxine Benson cfd80b/Card Maxine Benson 03052d.yaml new file mode 100644 index 000000000..4faef5238 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Against the Wendigo 4d5fa0/Bag Investigators (Full) 0c01a1/Bag Maxine Benson cfd80b/Card Maxine Benson 03052d.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 6100 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '61': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/963108334410252567/19A3994FF8F6C9235A1A29C080FA9003D424B969/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/963108334410250512/3A26A0D3A77D481FF486E5FB4D4567DF9E21F78F/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 03052d +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Maxine Benson +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -17.04095 + posY: 3.31052423 + posZ: 79.89802 + rotX: 0.0208071619 + rotY: 270.002533 + rotZ: 0.0167766288 + scaleX: 0.693170249 + scaleY: 1.0 + scaleZ: 0.693170249 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Against the Wendigo 4d5fa0/Bag Investigators (Full) 0c01a1/Bag Maxine Benson cfd80b/Card Vengeful Assassin 83c027.yaml new file mode 100644 index 000000000..0154f9b12 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Against the Wendigo 4d5fa0/Bag Investigators (Full) 0c01a1/Bag Maxine Benson cfd80b/Card Vengeful Assassin 83c027.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 6309 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '63': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960858438788773676/C516A83C2270A3B67D28267979932364168348F1/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 83c027 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Vengeful Assassin +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -18.4969978 + posY: 3.30911231 + posZ: 76.88215 + rotX: 0.02080767 + rotY: 270.002747 + rotZ: 0.0167753249 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Against the Wendigo 4d5fa0/Bag Investigators (Full) 0c01a1/Bag Mia Takamura 8f0e4d.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Against the Wendigo 4d5fa0/Bag Investigators (Full) 0c01a1/Bag Mia Takamura 8f0e4d.yaml new file mode 100644 index 000000000..52c977e67 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Against the Wendigo 4d5fa0/Bag Investigators (Full) 0c01a1/Bag Mia Takamura 8f0e4d.yaml @@ -0,0 +1,39 @@ +Autoraise: true +ColorDiffuse: + b: 0.167999774 + g: 0.701 + r: 0.1919998 +ContainedObjects: +- !include 'Bag Mia Takamura 8f0e4d/Card The Bride 0a3e7c.yaml' +- !include 'Bag Mia Takamura 8f0e4d/Card Haunted By Vengeance d1005d.yaml' +- !include 'Bag Mia Takamura 8f0e4d/Card f64ead.yaml' +- !include 'Bag Mia Takamura 8f0e4d/Card Mia Takamura 498a00.yaml' +Description: '' +GMNotes: '' +GUID: 8f0e4d +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +MeshIndex: -1 +Name: Bag +Nickname: Mia Takamura +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 23.64772 + posY: 3.15815234 + posZ: 47.9617233 + rotX: 359.767944 + rotY: 359.9856 + rotZ: 0.0150644341 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Against the Wendigo 4d5fa0/Bag Investigators (Full) 0c01a1/Bag Mia Takamura 8f0e4d/Card f64ead.yaml new file mode 100644 index 000000000..a74653dc0 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Against the Wendigo 4d5fa0/Bag Investigators (Full) 0c01a1/Bag Mia Takamura 8f0e4d/Card f64ead.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 103 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '1': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/960858438788761020/831136F6BEC64C1F898EA8EF47B10EA59A380BE6/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960858438788759248/A9A298491F67F5DBBC04B1307F55D495C94B593C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: f64ead +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 30.6705532 + posY: 2.58290768 + posZ: 41.55053 + rotX: 0.0208099 + rotY: 269.995178 + rotZ: 0.0167706218 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Against the Wendigo 4d5fa0/Bag Investigators (Full) 0c01a1/Bag Mia Takamura 8f0e4d/Card Haunted By Vengeance d1005d.yaml new file mode 100644 index 000000000..761853f70 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Against the Wendigo 4d5fa0/Bag Investigators (Full) 0c01a1/Bag Mia Takamura 8f0e4d/Card Haunted By Vengeance d1005d.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 6304 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '63': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960858438788773676/C516A83C2270A3B67D28267979932364168348F1/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: d1005d +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Haunted By Vengeance +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -17.896904 + posY: 3.37054825 + posZ: 82.1724 + rotX: 0.110450417 + rotY: 270.015717 + rotZ: 355.802979 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Against the Wendigo 4d5fa0/Bag Investigators (Full) 0c01a1/Bag Mia Takamura 8f0e4d/Card Mia Takamura 498a00.yaml new file mode 100644 index 000000000..f06e35eb4 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Against the Wendigo 4d5fa0/Bag Investigators (Full) 0c01a1/Bag Mia Takamura 8f0e4d/Card Mia Takamura 498a00.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 6104 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '61': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/963108334410252567/19A3994FF8F6C9235A1A29C080FA9003D424B969/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/963108334410250512/3A26A0D3A77D481FF486E5FB4D4567DF9E21F78F/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 498a00 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Mia Takamura +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -17.74783 + posY: 3.394201 + posZ: 81.5760956 + rotX: 358.427155 + rotY: 269.914764 + rotZ: 3.5609405 + scaleX: 0.693170249 + scaleY: 1.0 + scaleZ: 0.693170249 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Against the Wendigo 4d5fa0/Bag Investigators (Full) 0c01a1/Bag Mia Takamura 8f0e4d/Card The Bride 0a3e7c.yaml new file mode 100644 index 000000000..3f6f02690 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Against the Wendigo 4d5fa0/Bag Investigators (Full) 0c01a1/Bag Mia Takamura 8f0e4d/Card The Bride 0a3e7c.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 6307 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '63': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960858438788773676/C516A83C2270A3B67D28267979932364168348F1/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: Harbinger of Vengeance +GMNotes: '' +GUID: 0a3e7c +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: The Bride +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -17.9783344 + posY: 3.40178871 + posZ: 81.60005 + rotX: 0.6802456 + rotY: 269.988159 + rotZ: 1.28277087 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Against the Wendigo 4d5fa0/Bag Investigators (Full) 0c01a1/Bag Phil Duke 19a84b.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Against the Wendigo 4d5fa0/Bag Investigators (Full) 0c01a1/Bag Phil Duke 19a84b.yaml new file mode 100644 index 000000000..b322c6e41 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Against the Wendigo 4d5fa0/Bag Investigators (Full) 0c01a1/Bag Phil Duke 19a84b.yaml @@ -0,0 +1,39 @@ +Autoraise: true +ColorDiffuse: + b: 0.0939997658 + g: 0.09999979 + r: 0.856 +ContainedObjects: +- !include 'Bag Phil Duke 19a84b/Card St Christopher''s Pendant 57a01b.yaml' +- !include 'Bag Phil Duke 19a84b/Card Survivor''s Guilt 86aecd.yaml' +- !include 'Bag Phil Duke 19a84b/Card 76d8e1.yaml' +- !include 'Bag Phil Duke 19a84b/Card Phil Duke 74db2c.yaml' +Description: '' +GMNotes: '' +GUID: 19a84b +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +MeshIndex: -1 +Name: Bag +Nickname: Phil Duke +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 24.1417923 + posY: 3.123774 + posZ: 48.3831139 + rotX: 1.63152635 + rotY: 359.9866 + rotZ: 357.88974 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Against the Wendigo 4d5fa0/Bag Investigators (Full) 0c01a1/Bag Phil Duke 19a84b/Card 76d8e1.yaml new file mode 100644 index 000000000..6892e9653 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Against the Wendigo 4d5fa0/Bag Investigators (Full) 0c01a1/Bag Phil Duke 19a84b/Card 76d8e1.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 104 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '1': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/960858438788761020/831136F6BEC64C1F898EA8EF47B10EA59A380BE6/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960858438788759248/A9A298491F67F5DBBC04B1307F55D495C94B593C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 76d8e1 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 30.9104519 + posY: 2.58290839 + posZ: 41.9205246 + rotX: 0.0208097864 + rotY: 269.995148 + rotZ: 0.0167696457 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Against the Wendigo 4d5fa0/Bag Investigators (Full) 0c01a1/Bag Phil Duke 19a84b/Card Phil Duke 74db2c.yaml new file mode 100644 index 000000000..7094c79c0 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Against the Wendigo 4d5fa0/Bag Investigators (Full) 0c01a1/Bag Phil Duke 19a84b/Card Phil Duke 74db2c.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 6101 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '61': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/963108334410252567/19A3994FF8F6C9235A1A29C080FA9003D424B969/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/963108334410250512/3A26A0D3A77D481FF486E5FB4D4567DF9E21F78F/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 74db2c +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Phil Duke +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -20.68218 + posY: 3.309674 + posZ: 82.64597 + rotX: 0.0208189636 + rotY: 269.966156 + rotZ: 0.01675645 + scaleX: 0.693170249 + scaleY: 1.0 + scaleZ: 0.693170249 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Against the Wendigo 4d5fa0/Bag Investigators (Full) 0c01a1/Bag Phil Duke 19a84b/Card St Christopher's Pendant 57a01b.yaml new file mode 100644 index 000000000..e21057cd3 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Against the Wendigo 4d5fa0/Bag Investigators (Full) 0c01a1/Bag Phil Duke 19a84b/Card St Christopher's Pendant 57a01b.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 6305 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '63': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960858438788773676/C516A83C2270A3B67D28267979932364168348F1/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 57a01b +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: St Christopher's Pendant +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -15.9820013 + posY: 3.38694477 + posZ: 78.6173859 + rotX: 2.23649478 + rotY: 269.932373 + rotZ: 358.721436 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Against the Wendigo 4d5fa0/Bag Investigators (Full) 0c01a1/Bag Phil Duke 19a84b/Card Survivor's Guilt 86aecd.yaml new file mode 100644 index 000000000..e1f01d511 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Against the Wendigo 4d5fa0/Bag Investigators (Full) 0c01a1/Bag Phil Duke 19a84b/Card Survivor's Guilt 86aecd.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 6306 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '63': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960858438788773676/C516A83C2270A3B67D28267979932364168348F1/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 86aecd +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Survivor's Guilt +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -19.7382374 + posY: 3.30887485 + posZ: 78.7438354 + rotX: 0.0208196137 + rotY: 269.9624 + rotZ: 0.0167594235 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Against the Wendigo 4d5fa0/Bag Investigators (Full) 0c01a1/Deck FBI Credentials e07f79.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Against the Wendigo 4d5fa0/Bag Investigators (Full) 0c01a1/Deck FBI Credentials e07f79.yaml new file mode 100644 index 000000000..b463d3a6d --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Against the Wendigo 4d5fa0/Bag Investigators (Full) 0c01a1/Deck FBI Credentials e07f79.yaml @@ -0,0 +1,258 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 6803 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '68': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/963108334411866063/E517ED54CE04D297D35948FEACB82A8A92287B6F/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 555fd0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: FBI Credentials + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -16.76662 + posY: 1.33572841 + posZ: 69.12852 + rotX: 0.02079716 + rotY: 270.035645 + rotZ: 0.016785847 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 6803 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '68': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/963108334411866063/E517ED54CE04D297D35948FEACB82A8A92287B6F/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 2e87bf + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: FBI Credentials + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -16.12506 + posY: 1.33519924 + posZ: 66.52461 + rotX: 0.020815758 + rotY: 269.974274 + rotZ: 0.0167646986 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 6803 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '68': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/963108334411866063/E517ED54CE04D297D35948FEACB82A8A92287B6F/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: d48f9a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: FBI Credentials + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -15.8185091 + posY: 1.33452952 + posZ: 63.8565636 + rotX: 0.0208252147 + rotY: 269.938782 + rotZ: 0.0167524666 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 6803 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '68': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/963108334411866063/E517ED54CE04D297D35948FEACB82A8A92287B6F/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 3ba63e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: FBI Credentials + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -19.8283634 + posY: 1.33366573 + posZ: 65.88029 + rotX: 0.0208092947 + rotY: 269.9932 + rotZ: 0.0167706963 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 6803 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '68': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/963108334411866063/E517ED54CE04D297D35948FEACB82A8A92287B6F/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: f80c71 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: FBI Credentials + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -19.3114223 + posY: 1.33308268 + posZ: 63.2469635 + rotX: 0.0208112281 + rotY: 269.991547 + rotZ: 0.0167679079 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '68': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/963108334411866063/E517ED54CE04D297D35948FEACB82A8A92287B6F/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 6803 +- 6803 +- 6803 +- 6803 +- 6803 +Description: '' +GMNotes: '' +GUID: e07f79 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: FBI Credentials +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -6.7684145 + posY: 3.38589931 + posZ: 83.4419556 + rotX: 2.51215744 + rotY: 270.0693 + rotZ: 1.14031339 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Against the Wendigo 4d5fa0/Card Credits 45ae28.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Against the Wendigo 4d5fa0/Card Credits 45ae28.yaml new file mode 100644 index 000000000..94da76ca8 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Against the Wendigo 4d5fa0/Card Credits 45ae28.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 264800 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2648': + BackIsHidden: true + BackURL: https://i.imgur.com/YK8jZEB.jpg + FaceURL: https://i.imgur.com/8EQmSan.jpg + NumHeight: 2 + NumWidth: 2 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 45ae28 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Credits +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -9.392102 + posY: 1.56114948 + posZ: -27.1341038 + rotX: 359.920135 + rotY: 270.0 + rotZ: 180.016861 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Against the Wendigo 4d5fa0/Card Fort McDonald 88a1cf.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Against the Wendigo 4d5fa0/Card Fort McDonald 88a1cf.yaml new file mode 100644 index 000000000..2345aef64 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Against the Wendigo 4d5fa0/Card Fort McDonald 88a1cf.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 265504 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2655': + BackIsHidden: true + BackURL: https://i.imgur.com/2PIDbOe.jpg + FaceURL: https://i.imgur.com/Fm6wzfY.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 88a1cf +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Fort McDonald +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -36.7732 + posY: 1.70222425 + posZ: -7.700001 + rotX: 359.9201 + rotY: 269.9997 + rotZ: 0.0168766249 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Against the Wendigo 4d5fa0/Card Indian Territory 686672.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Against the Wendigo 4d5fa0/Card Indian Territory 686672.yaml new file mode 100644 index 000000000..f5f08eebf --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Against the Wendigo 4d5fa0/Card Indian Territory 686672.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 265512 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2655': + BackIsHidden: true + BackURL: https://i.imgur.com/2PIDbOe.jpg + FaceURL: https://i.imgur.com/Fm6wzfY.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: '686672' +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Indian Territory +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -36.7732 + posY: 1.70672071 + posZ: 7.56999969 + rotX: 359.9201 + rotY: 269.9997 + rotZ: 0.0168766789 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Against the Wendigo 4d5fa0/Card Jetty 0e52c8.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Against the Wendigo 4d5fa0/Card Jetty 0e52c8.yaml new file mode 100644 index 000000000..a9da6dc81 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Against the Wendigo 4d5fa0/Card Jetty 0e52c8.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 265502 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2655': + BackIsHidden: true + BackURL: https://i.imgur.com/2PIDbOe.jpg + FaceURL: https://i.imgur.com/Fm6wzfY.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 0e52c8 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Jetty +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -36.7731 + posY: 1.70448267 + posZ: -0.0300004128 + rotX: 359.9201 + rotY: 269.999817 + rotZ: 0.016876746 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Against the Wendigo 4d5fa0/Card Scenario 1ac3ac.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Against the Wendigo 4d5fa0/Card Scenario 1ac3ac.yaml new file mode 100644 index 000000000..f5674f707 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Against the Wendigo 4d5fa0/Card Scenario 1ac3ac.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 265000 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2650': + BackIsHidden: true + BackURL: https://i.imgur.com/fFBNkRj.jpg + FaceURL: https://i.imgur.com/os2yoP9.jpg + NumHeight: 2 + NumWidth: 2 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 1ac3ac +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Scenario +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.9560008 + posY: 1.65564811 + posZ: -10.4412022 + rotX: 359.919739 + rotY: 270.03125 + rotZ: 0.0167970564 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Against the Wendigo 4d5fa0/Custom_Model_Bag Set-aside 6791fd.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Against the Wendigo 4d5fa0/Custom_Model_Bag Set-aside 6791fd.yaml new file mode 100644 index 000000000..2388da863 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Against the Wendigo 4d5fa0/Custom_Model_Bag Set-aside 6791fd.yaml @@ -0,0 +1,62 @@ +Autoraise: true +ColorDiffuse: + b: 0.02148666 + g: 0.00100758043 + r: 0.02148666 +ContainedObjects: +- !include 'Custom_Model_Bag Set-aside 6791fd/Deck Old Injury 71121c.yaml' +- !include 'Custom_Model_Bag Set-aside 6791fd/Deck Assets 35a314.yaml' +- !include 'Custom_Model_Bag Set-aside 6791fd/Deck Story Cards 0b5e2d.yaml' +- !include 'Custom_Model_Bag Set-aside 6791fd/Deck Bernard''s Fate c0187f.yaml' +- !include 'Custom_Model_Bag Set-aside 6791fd/Deck Sylvia''s Fate fe9b2c.yaml' +- !include 'Custom_Model_Bag Set-aside 6791fd/Deck Norman''s Fate bbb654.yaml' +- !include 'Custom_Model_Bag Set-aside 6791fd/Deck Wendigo''s Myth 0917d6.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: '' +GMNotes: '' +GUID: 6791fd +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +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.69690049 + posY: 1.55831647 + posZ: 14.2784023 + rotX: 359.955139 + rotY: 224.998077 + rotZ: 0.06867429 + scaleX: 2.0 + scaleY: 2.0 + scaleZ: 2.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Against the Wendigo 4d5fa0/Custom_Model_Bag Set-aside 6791fd/Deck Assets 35a314.yaml new file mode 100644 index 000000000..ca19c8ca1 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Against the Wendigo 4d5fa0/Custom_Model_Bag Set-aside 6791fd/Deck Assets 35a314.yaml @@ -0,0 +1,215 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 265406 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2654': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: https://i.imgur.com/lx2gi83.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 49e0bf + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Indian Guide + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -13.9369688 + posY: 1.565338 + posZ: -24.8596783 + rotX: 0.01335979 + rotY: 179.985489 + rotZ: 0.07877733 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265407 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2654': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: https://i.imgur.com/lx2gi83.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: fd15eb + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ithaqua's Knowledge + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -13.8153105 + posY: 1.7057544 + posZ: -25.0008888 + rotX: -0.0019204031 + rotY: 179.998215 + rotZ: 0.08380626 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265405 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2654': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: https://i.imgur.com/lx2gi83.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 44b7e9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Expedition Notebook + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -13.9091377 + posY: 1.72328758 + posZ: -24.96826 + rotX: 0.01563552 + rotY: 179.988724 + rotZ: 0.08154421 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265404 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2654': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: https://i.imgur.com/lx2gi83.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 7fb42e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Tomahawk + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -13.7459326 + posY: 1.70941365 + posZ: -24.8511562 + rotX: 0.00330711366 + rotY: 179.9752 + rotZ: 0.09426054 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2654': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: https://i.imgur.com/lx2gi83.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 265406 +- 265407 +- 265405 +- 265404 +Description: '' +GMNotes: '' +GUID: 35a314 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Assets +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 20.2040119 + posY: 3.57593465 + posZ: 7.92056561 + rotX: 359.9198 + rotY: 270.015045 + rotZ: 0.0172714815 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Against the Wendigo 4d5fa0/Custom_Model_Bag Set-aside 6791fd/Deck Bernard's Fate c0187f.yaml new file mode 100644 index 000000000..d31e82673 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Against the Wendigo 4d5fa0/Custom_Model_Bag Set-aside 6791fd/Deck Bernard's Fate c0187f.yaml @@ -0,0 +1,129 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 265517 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2655': + BackIsHidden: true + BackURL: https://i.imgur.com/2PIDbOe.jpg + FaceURL: https://i.imgur.com/Fm6wzfY.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 3ee13d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -16.5645542 + posY: 1.71133482 + posZ: -27.6223774 + rotX: 0.0101670921 + rotY: 179.985886 + rotZ: 180.097916 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265516 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2655': + BackIsHidden: true + BackURL: https://i.imgur.com/2PIDbOe.jpg + FaceURL: https://i.imgur.com/Fm6wzfY.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 114be3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -16.6185627 + posY: 1.57116115 + posZ: -27.1710644 + rotX: 0.007151388 + rotY: 180.010849 + rotZ: 180.084625 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2655': + BackIsHidden: true + BackURL: https://i.imgur.com/2PIDbOe.jpg + FaceURL: https://i.imgur.com/Fm6wzfY.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 265517 +- 265516 +Description: '' +GMNotes: '' +GUID: c0187f +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Bernard's Fate +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.97455 + posY: 3.59142327 + posZ: 8.001096 + rotX: 359.919678 + rotY: 269.9899 + rotZ: 180.017334 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Against the Wendigo 4d5fa0/Custom_Model_Bag Set-aside 6791fd/Deck Norman's Fate bbb654.yaml new file mode 100644 index 000000000..27e2e9a1b --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Against the Wendigo 4d5fa0/Custom_Model_Bag Set-aside 6791fd/Deck Norman's Fate bbb654.yaml @@ -0,0 +1,129 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 265519 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2655': + BackIsHidden: true + BackURL: https://i.imgur.com/2PIDbOe.jpg + FaceURL: https://i.imgur.com/Fm6wzfY.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 00c966 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -19.8726521 + posY: 1.71607971 + posZ: -28.0085278 + rotX: 0.006583329 + rotY: 180.003586 + rotZ: 180.0955 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265518 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2655': + BackIsHidden: true + BackURL: https://i.imgur.com/2PIDbOe.jpg + FaceURL: https://i.imgur.com/Fm6wzfY.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: ec7d0b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -20.1648827 + posY: 1.57593155 + posZ: -27.7984371 + rotX: 0.0145023745 + rotY: 180.0043 + rotZ: 180.081345 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2655': + BackIsHidden: true + BackURL: https://i.imgur.com/2PIDbOe.jpg + FaceURL: https://i.imgur.com/Fm6wzfY.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 265519 +- 265518 +Description: '' +GMNotes: '' +GUID: bbb654 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Norman's Fate +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 20.486517 + posY: 3.5911808 + posZ: 9.424225 + rotX: 359.91983 + rotY: 269.996826 + rotZ: 180.017212 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Against the Wendigo 4d5fa0/Custom_Model_Bag Set-aside 6791fd/Deck Old Injury 71121c.yaml new file mode 100644 index 000000000..37f418a50 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Against the Wendigo 4d5fa0/Custom_Model_Bag Set-aside 6791fd/Deck Old Injury 71121c.yaml @@ -0,0 +1,215 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 265401 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2654': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: https://i.imgur.com/lx2gi83.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: b2a00a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Old Injury + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -13.8370275 + posY: 1.64114773 + posZ: -25.9498634 + rotX: 0.0175786521 + rotY: 180.001419 + rotZ: 356.070068 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265402 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2654': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: https://i.imgur.com/lx2gi83.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: e4ca7c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Old Injury + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -11.2516718 + posY: 1.64092624 + posZ: -25.3027763 + rotX: 357.094849 + rotY: 179.94873 + rotZ: 0.08009553 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265403 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2654': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: https://i.imgur.com/lx2gi83.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: b7e985 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Old Injury + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -11.7445717 + posY: 1.561306 + posZ: -28.1742363 + rotX: 0.0172670223 + rotY: 179.994751 + rotZ: 0.07970666 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265400 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2654': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: https://i.imgur.com/lx2gi83.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 522f71 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Old Injury + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -15.3229742 + posY: 1.66658056 + posZ: -28.70441 + rotX: 0.9497631 + rotY: 179.944138 + rotZ: 356.140137 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2654': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: https://i.imgur.com/lx2gi83.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 265401 +- 265402 +- 265403 +- 265400 +Description: '' +GMNotes: '' +GUID: 71121c +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Old Injury +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 20.5172482 + posY: 3.57571459 + posZ: 8.815525 + rotX: 359.935455 + rotY: 269.997253 + rotZ: 0.0135970972 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Against the Wendigo 4d5fa0/Custom_Model_Bag Set-aside 6791fd/Deck Story Cards 0b5e2d.yaml new file mode 100644 index 000000000..9614c73f1 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Against the Wendigo 4d5fa0/Custom_Model_Bag Set-aside 6791fd/Deck Story Cards 0b5e2d.yaml @@ -0,0 +1,172 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 265514 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2655': + BackIsHidden: true + BackURL: https://i.imgur.com/2PIDbOe.jpg + FaceURL: https://i.imgur.com/Fm6wzfY.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: cc2a0c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -10.4712791 + posY: 1.719265 + posZ: -31.4951458 + rotX: 0.0161356665 + rotY: 179.991272 + rotZ: 180.061951 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265515 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2655': + BackIsHidden: true + BackURL: https://i.imgur.com/2PIDbOe.jpg + FaceURL: https://i.imgur.com/Fm6wzfY.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: ecd352 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -10.6863613 + posY: 1.70184827 + posZ: -31.2720089 + rotX: 0.015802253 + rotY: 180.000244 + rotZ: 180.057526 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265513 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2655': + BackIsHidden: true + BackURL: https://i.imgur.com/2PIDbOe.jpg + FaceURL: https://i.imgur.com/Fm6wzfY.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 3c4632 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -10.4357271 + posY: 1.56125617 + posZ: -31.3380089 + rotX: 0.0114343092 + rotY: 179.9995 + rotZ: 180.081924 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2655': + BackIsHidden: true + BackURL: https://i.imgur.com/2PIDbOe.jpg + FaceURL: https://i.imgur.com/Fm6wzfY.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 265514 +- 265515 +- 265513 +Description: '' +GMNotes: '' +GUID: 0b5e2d +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Story Cards +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.7323666 + posY: 3.58544612 + posZ: 8.174288 + rotX: 359.915344 + rotY: 269.992065 + rotZ: 180.019516 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Against the Wendigo 4d5fa0/Custom_Model_Bag Set-aside 6791fd/Deck Sylvia's Fate fe9b2c.yaml new file mode 100644 index 000000000..58a48115c --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Against the Wendigo 4d5fa0/Custom_Model_Bag Set-aside 6791fd/Deck Sylvia's Fate fe9b2c.yaml @@ -0,0 +1,129 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 265521 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2655': + BackIsHidden: true + BackURL: https://i.imgur.com/2PIDbOe.jpg + FaceURL: https://i.imgur.com/Fm6wzfY.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 0e52c8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -16.54303 + posY: 1.71071184 + posZ: -30.543541 + rotX: 0.00177708233 + rotY: 180.01889 + rotZ: 180.089722 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265520 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2655': + BackIsHidden: true + BackURL: https://i.imgur.com/2PIDbOe.jpg + FaceURL: https://i.imgur.com/Fm6wzfY.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: d93ccf + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -16.8544235 + posY: 1.57053912 + posZ: -30.5166187 + rotX: 0.0144525208 + rotY: 180.010376 + rotZ: 180.077209 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2655': + BackIsHidden: true + BackURL: https://i.imgur.com/2PIDbOe.jpg + FaceURL: https://i.imgur.com/Fm6wzfY.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 265521 +- 265520 +Description: '' +GMNotes: '' +GUID: fe9b2c +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Sylvia's Fate +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 20.22722 + posY: 3.59134126 + posZ: 8.82879448 + rotX: 359.9196 + rotY: 269.9865 + rotZ: 180.016983 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Against the Wendigo 4d5fa0/Custom_Model_Bag Set-aside 6791fd/Deck Wendigo's Myth 0917d6.yaml new file mode 100644 index 000000000..cf9787b2a --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Against the Wendigo 4d5fa0/Custom_Model_Bag Set-aside 6791fd/Deck Wendigo's Myth 0917d6.yaml @@ -0,0 +1,258 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 265600 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2656': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/DkuBK7s.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: f79b98 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -13.1723452 + posY: 1.56558657 + posZ: -20.3425 + rotX: 0.0161952823 + rotY: 180.00116 + rotZ: 0.0794915 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265601 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2656': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/DkuBK7s.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 8204ea + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -13.2835617 + posY: 1.70646882 + posZ: -20.2346039 + rotX: 0.00453912746 + rotY: 180.001022 + rotZ: 0.0655258 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265602 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2656': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/DkuBK7s.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: f79b98 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -13.07146 + posY: 1.72360051 + posZ: -20.3863564 + rotX: 0.0135545582 + rotY: 180.000931 + rotZ: 0.0703278854 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265603 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2656': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/DkuBK7s.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: f79b98 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -12.9354057 + posY: 1.70965385 + posZ: -20.31162 + rotX: 0.0148929423 + rotY: 180.0013 + rotZ: 0.0739703253 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265633 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2656': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/DkuBK7s.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 87b4c8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -13.0331793 + posY: 1.70771718 + posZ: -20.3505573 + rotX: 0.0145059293 + rotY: 180.0017 + rotZ: 0.08068475 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2656': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/DkuBK7s.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 265600 +- 265601 +- 265602 +- 265603 +- 265633 +Description: '' +GMNotes: '' +GUID: 0917d6 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Wendigo's Myth +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 20.1567879 + posY: 3.57719874 + posZ: 9.30741 + rotX: 359.919525 + rotY: 270.0078 + rotZ: 0.0170342438 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Against the Wendigo 4d5fa0/Custom_Tile 0f6d69.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Against the Wendigo 4d5fa0/Custom_Tile 0f6d69.yaml new file mode 100644 index 000000000..cf3b73a29 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Against the Wendigo 4d5fa0/Custom_Tile 0f6d69.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 0f6d69 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.4015 + posY: 1.60989678 + posZ: -0.177200258 + rotX: 0.07989451 + rotY: 90.0005 + rotZ: 359.9831 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Against the Wendigo 4d5fa0/Custom_Tile 1ee2a5.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Against the Wendigo 4d5fa0/Custom_Tile 1ee2a5.yaml new file mode 100644 index 000000000..e3085b21b --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Against the Wendigo 4d5fa0/Custom_Tile 1ee2a5.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 1ee2a5 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.3772 + posY: 1.62804031 + posZ: -0.007800277 + rotX: 0.07989446 + rotY: 90.0005 + rotZ: 359.9831 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Against the Wendigo 4d5fa0/Custom_Tile 201524.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Against the Wendigo 4d5fa0/Custom_Tile 201524.yaml new file mode 100644 index 000000000..1fa33c52e --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Against the Wendigo 4d5fa0/Custom_Tile 201524.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: '201524' +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.60650945 + posZ: 3.86000061 + rotX: 0.0168228839 + rotY: 180.03508 + rotZ: 0.079949744 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Against the Wendigo 4d5fa0/Custom_Tile 60ad05.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Against the Wendigo 4d5fa0/Custom_Tile 60ad05.yaml new file mode 100644 index 000000000..9ecf7cdee --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Against the Wendigo 4d5fa0/Custom_Tile 60ad05.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 60ad05 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.63165 + posZ: -3.83000016 + rotX: 0.0168230329 + rotY: 180.0349 + rotZ: 0.07995063 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Against the Wendigo 4d5fa0/Custom_Tile 7234af.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Against the Wendigo 4d5fa0/Custom_Tile 7234af.yaml new file mode 100644 index 000000000..d0ece7c4d --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Against the Wendigo 4d5fa0/Custom_Tile 7234af.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 7234af +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.63391435 + posZ: 3.86000037 + rotX: 0.01682396 + rotY: 180.034256 + rotZ: 0.0799479559 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Against the Wendigo 4d5fa0/Custom_Tile 86cbee.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Against the Wendigo 4d5fa0/Custom_Tile 86cbee.yaml new file mode 100644 index 000000000..2c56547dd --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Against the Wendigo 4d5fa0/Custom_Tile 86cbee.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 86cbee +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.119997 + posY: 1.60424507 + posZ: -3.83 + rotX: 0.0168232564 + rotY: 180.034821 + rotZ: 0.07995627 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Against the Wendigo 4d5fa0/Custom_Tile 9caa1f.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Against the Wendigo 4d5fa0/Custom_Tile 9caa1f.yaml new file mode 100644 index 000000000..684561b2b --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Against the Wendigo 4d5fa0/Custom_Tile 9caa1f.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 9caa1f +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.62478244 + posZ: 3.86000061 + rotX: 0.0168232 + rotY: 180.034821 + rotZ: 0.07995031 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Against the Wendigo 4d5fa0/Custom_Tile b6a235.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Against the Wendigo 4d5fa0/Custom_Tile b6a235.yaml new file mode 100644 index 000000000..e7150e7f6 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Against the Wendigo 4d5fa0/Custom_Tile b6a235.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: b6a235 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.6765 + posY: 1.6133877 + posZ: -3.83 + rotX: 0.0168233383 + rotY: 180.034821 + rotZ: 0.07996374 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Against the Wendigo 4d5fa0/Custom_Tile d807d4.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Against the Wendigo 4d5fa0/Custom_Tile d807d4.yaml new file mode 100644 index 000000000..a0fb54f78 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Against the Wendigo 4d5fa0/Custom_Tile d807d4.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: d807d4 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.8814 + posY: 1.618975 + posZ: -0.03260019 + rotX: 0.0798945054 + rotY: 90.0005 + rotZ: 359.9831 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Against the Wendigo 4d5fa0/Custom_Tile dda3d5.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Against the Wendigo 4d5fa0/Custom_Tile dda3d5.yaml new file mode 100644 index 000000000..8b7457089 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Against the Wendigo 4d5fa0/Custom_Tile dda3d5.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: dda3d5 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.62251806 + posZ: -3.83 + rotX: 0.0168231279 + rotY: 180.034882 + rotZ: 0.07994943 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Against the Wendigo 4d5fa0/Custom_Tile e47eca.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Against the Wendigo 4d5fa0/Custom_Tile e47eca.yaml new file mode 100644 index 000000000..9907ed29b --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Against the Wendigo 4d5fa0/Custom_Tile e47eca.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: e47eca +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.6765 + posY: 1.6156522 + posZ: 3.86000037 + rotX: 0.01682316 + rotY: 180.034866 + rotZ: 0.07995032 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Against the Wendigo 4d5fa0/Custom_Tile Against the Wendigo 82e1ed.ttslua b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Against the Wendigo 4d5fa0/Custom_Tile Against the Wendigo 82e1ed.ttslua new file mode 100644 index 000000000..d47035472 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Against the Wendigo 4d5fa0/Custom_Tile Against the Wendigo 82e1ed.ttslua @@ -0,0 +1,21 @@ +name = 'Bread and Circuses' + +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 The Side Missions 791837/Custom_Model_Bag Against the Wendigo 4d5fa0/Custom_Tile Against the Wendigo 82e1ed.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Against the Wendigo 4d5fa0/Custom_Tile Against the Wendigo 82e1ed.yaml new file mode 100644 index 000000000..fdab1c5aa --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Against the Wendigo 4d5fa0/Custom_Tile Against the Wendigo 82e1ed.yaml @@ -0,0 +1,42 @@ +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 +GMNotes: '' +GUID: 82e1ed +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Tile Against the Wendigo 82e1ed.ttslua' +LuaScriptState: '' +Name: Custom_Tile +Nickname: Against the Wendigo +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -4.00120068 + posY: 1.58277881 + posZ: -14.5900021 + rotX: 359.919739 + rotY: 269.9926 + rotZ: 0.0168484338 + scaleX: 2.2 + scaleY: 1.0 + scaleZ: 2.2 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Against the Wendigo 4d5fa0/Deck Act Deck 5f661f.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Against the Wendigo 4d5fa0/Deck Act Deck 5f661f.yaml new file mode 100644 index 000000000..786688cc6 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Against the Wendigo 4d5fa0/Deck Act Deck 5f661f.yaml @@ -0,0 +1,172 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 265105 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/XrbD4Tw.jpg + FaceURL: https://i.imgur.com/TPbHbHV.jpg + NumHeight: 3 + NumWidth: 2 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 96da49 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 14.584609 + posY: 1.52660918 + posZ: -20.3363476 + rotX: 0.002456629 + rotY: 179.999863 + rotZ: 0.07727847 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265103 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/XrbD4Tw.jpg + FaceURL: https://i.imgur.com/TPbHbHV.jpg + NumHeight: 3 + NumWidth: 2 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 9d71af + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 14.7041407 + posY: 1.52534664 + posZ: -24.6753616 + rotX: 0.0115756327 + rotY: 180.000229 + rotZ: 0.07886451 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265101 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/XrbD4Tw.jpg + FaceURL: https://i.imgur.com/TPbHbHV.jpg + NumHeight: 3 + NumWidth: 2 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: b2eb57 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 14.8025436 + posY: 1.66585183 + posZ: -24.8973255 + rotX: 0.0197454877 + rotY: 180.000916 + rotZ: 0.0768766254 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/XrbD4Tw.jpg + FaceURL: https://i.imgur.com/TPbHbHV.jpg + NumHeight: 3 + NumWidth: 2 + UniqueBack: true +DeckIDs: +- 265105 +- 265103 +- 265101 +Description: '' +GMNotes: '' +GUID: 5f661f +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Act Deck +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.6885 + posY: 1.65499735 + posZ: -5.04850149 + rotX: 359.919739 + rotY: 270.0056 + rotZ: 0.0168307945 + scaleX: 0.73 + scaleY: 1.0 + scaleZ: 0.73 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Against the Wendigo 4d5fa0/Deck Agenda Deck 9e701d.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Against the Wendigo 4d5fa0/Deck Agenda Deck 9e701d.yaml new file mode 100644 index 000000000..fb26d988e --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Against the Wendigo 4d5fa0/Deck Agenda Deck 9e701d.yaml @@ -0,0 +1,172 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 265104 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/XrbD4Tw.jpg + FaceURL: https://i.imgur.com/TPbHbHV.jpg + NumHeight: 3 + NumWidth: 2 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: aef4a6 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 8.241792 + posY: 1.53264916 + posZ: -30.7547035 + rotX: 0.006770436 + rotY: 179.985916 + rotZ: 0.08004501 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265102 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/XrbD4Tw.jpg + FaceURL: https://i.imgur.com/TPbHbHV.jpg + NumHeight: 3 + NumWidth: 2 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: '602342' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 8.614923 + posY: 1.67276657 + posZ: -31.0103588 + rotX: 0.00586550776 + rotY: 179.953979 + rotZ: 0.08177879 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265100 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/XrbD4Tw.jpg + FaceURL: https://i.imgur.com/TPbHbHV.jpg + NumHeight: 3 + NumWidth: 2 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 142b14 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.724573 + posY: 1.81919 + posZ: 0.37329933 + rotX: 359.9513 + rotY: 270.000061 + rotZ: 0.0136821009 + scaleX: 0.73 + scaleY: 1.0 + scaleZ: 0.73 + XmlUI: '' +CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/XrbD4Tw.jpg + FaceURL: https://i.imgur.com/TPbHbHV.jpg + NumHeight: 3 + NumWidth: 2 + UniqueBack: true +DeckIDs: +- 265104 +- 265102 +- 265100 +Description: '' +GMNotes: '' +GUID: 9e701d +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Agenda Deck +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.7247 + posY: 1.65664124 + posZ: 0.373299569 + rotX: 359.919739 + rotY: 269.9826 + rotZ: 0.0168629717 + scaleX: 0.73 + scaleY: 1.0 + scaleZ: 0.73 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Against the Wendigo 4d5fa0/Deck Encounter Deck 6f2827.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Against the Wendigo 4d5fa0/Deck Encounter Deck 6f2827.yaml new file mode 100644 index 000000000..482294577 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Against the Wendigo 4d5fa0/Deck Encounter Deck 6f2827.yaml @@ -0,0 +1,1290 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 265631 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2656': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/DkuBK7s.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 536c2f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -10.6081142 + posY: 1.85065544 + posZ: -17.0283947 + rotX: 0.0118074473 + rotY: 180.00148 + rotZ: 0.07353143 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265615 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2656': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/DkuBK7s.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: f79b98 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -11.7224331 + posY: 1.70691943 + posZ: -16.9837666 + rotX: 0.0162555184 + rotY: 180.123138 + rotZ: -0.00439084228 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265629 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2656': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/DkuBK7s.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: c256e0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -10.3827982 + posY: 1.83104146 + posZ: -17.2992668 + rotX: 0.0278747883 + rotY: 180.00116 + rotZ: 0.0958472937 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265630 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2656': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/DkuBK7s.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 5e3d7c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -10.4927158 + posY: 1.84096575 + posZ: -17.1267738 + rotX: 0.0171481054 + rotY: 180.009827 + rotZ: 0.0729737 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265628 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2656': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/DkuBK7s.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 776b84 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -10.9314346 + posY: 1.82222223 + posZ: -16.98193 + rotX: 0.0147738308 + rotY: 180.001434 + rotZ: 0.07261416 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265604 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2656': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/DkuBK7s.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: f79b98 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -11.2020636 + posY: 1.56397009 + posZ: -17.0374088 + rotX: 0.0175395552 + rotY: 180.005829 + rotZ: 0.07010526 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265616 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2656': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/DkuBK7s.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: f79b98 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -11.1990223 + posY: 1.716409 + posZ: -16.9014587 + rotX: 0.009260171 + rotY: 180.063889 + rotZ: 0.0137145668 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265626 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2656': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/DkuBK7s.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: da637f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -11.0799351 + posY: 1.8031435 + posZ: -17.0155048 + rotX: 0.014191092 + rotY: 180.000534 + rotZ: 0.0653160438 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265617 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2656': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/DkuBK7s.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: f79b98 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -11.1391287 + posY: 1.72588658 + posZ: -16.940588 + rotX: 0.0115438811 + rotY: 179.998856 + rotZ: 0.059903346 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265619 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2656': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/DkuBK7s.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: f79b98 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -11.0871754 + posY: 1.74517751 + posZ: -16.8714619 + rotX: 0.014755086 + rotY: 180.0017 + rotZ: 0.07182745 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265606 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2656': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/DkuBK7s.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: f79b98 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -10.0647058 + posY: 1.72101593 + posZ: -17.24704 + rotX: 0.0435075164 + rotY: 179.901978 + rotZ: 5.72147655 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265627 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2656': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/DkuBK7s.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 927ced + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -10.9101038 + posY: 1.81254327 + posZ: -17.1553879 + rotX: 0.0139731448 + rotY: 180.001114 + rotZ: 0.07101253 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265621 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2656': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/DkuBK7s.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: f79b98 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -10.7546425 + posY: 1.76398373 + posZ: -17.0204449 + rotX: 0.0127874846 + rotY: 180.001541 + rotZ: 0.0704234242 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265610 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2656': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/DkuBK7s.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: f79b98 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -10.976366 + posY: 1.71357572 + posZ: -17.2476768 + rotX: 0.0136902276 + rotY: 180.000961 + rotZ: 0.07097512 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265611 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2656': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/DkuBK7s.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: f79b98 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -10.5090561 + posY: 1.71925616 + posZ: -17.1095371 + rotX: 0.0218146183 + rotY: 180.000458 + rotZ: 0.09416061 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265624 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2656': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/DkuBK7s.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: e556b0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -11.0106983 + posY: 1.78367043 + posZ: -17.2784214 + rotX: 0.014149081 + rotY: 180.001114 + rotZ: 0.0702355653 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265622 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2656': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/DkuBK7s.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: f79b98 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -9.75307751 + posY: 1.86945987 + posZ: -14.8983259 + rotX: 0.0123914713 + rotY: 179.999725 + rotZ: 0.0634560958 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265625 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2656': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/DkuBK7s.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 51da1d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -11.1209822 + posY: 1.79352915 + posZ: -17.13826 + rotX: 0.0141256638 + rotY: 180.001083 + rotZ: 0.0699649751 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265620 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2656': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/DkuBK7s.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: f79b98 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -10.7192278 + posY: 1.75428307 + posZ: -17.0810242 + rotX: 0.0124462219 + rotY: 180.005188 + rotZ: 0.07227688 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265612 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2656': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/DkuBK7s.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: f79b98 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -11.0408068 + posY: 1.67750454 + posZ: -17.0968075 + rotX: 0.0138346441 + rotY: 180.000656 + rotZ: 0.07087799 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265609 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2656': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/DkuBK7s.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: f79b98 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -11.06552 + posY: 1.70516121 + posZ: -17.2269363 + rotX: 0.154696479 + rotY: 180.050583 + rotZ: 359.7933 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265608 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2656': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/DkuBK7s.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: f79b98 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -10.0719156 + posY: 1.955308 + posZ: -17.3484955 + rotX: 0.0393504426 + rotY: 179.97 + rotZ: 2.69095087 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265632 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2656': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/DkuBK7s.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 0224ae + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -10.7969713 + posY: 1.86064589 + posZ: -16.9917278 + rotX: 0.0145775536 + rotY: 180.001816 + rotZ: 0.0761349052 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265623 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2656': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/DkuBK7s.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: bee61c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -10.873889 + posY: 1.77380836 + posZ: -17.276247 + rotX: 0.0137760108 + rotY: 180.001 + rotZ: 0.0715662763 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265618 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2656': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/DkuBK7s.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: f79b98 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -10.7091637 + posY: 1.73490882 + posZ: -17.0196152 + rotX: 0.0122056985 + rotY: 180.001526 + rotZ: 0.0715900958 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265607 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2656': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/DkuBK7s.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: dea686 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -10.4156017 + posY: 1.94245458 + posZ: -17.0862141 + rotX: 0.03627745 + rotY: 180.027008 + rotZ: 2.114747 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265614 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2656': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/DkuBK7s.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: f79b98 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -10.79451 + posY: 1.69637513 + posZ: -16.99405 + rotX: 0.0140547119 + rotY: 179.99913 + rotZ: 0.07291281 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265605 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2656': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/DkuBK7s.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: cc57dd + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -10.9826345 + posY: 1.79471433 + posZ: -17.1341572 + rotX: 356.564728 + rotY: 180.023315 + rotZ: 0.402957857 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265613 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2656': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/DkuBK7s.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: f79b98 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -11.2641954 + posY: 1.6874963 + posZ: -17.0183754 + rotX: 0.0143403439 + rotY: 179.999878 + rotZ: 0.0705262348 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2656': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/DkuBK7s.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 265631 +- 265615 +- 265629 +- 265630 +- 265628 +- 265604 +- 265616 +- 265626 +- 265617 +- 265619 +- 265606 +- 265627 +- 265621 +- 265610 +- 265611 +- 265624 +- 265622 +- 265625 +- 265620 +- 265612 +- 265609 +- 265608 +- 265632 +- 265623 +- 265618 +- 265607 +- 265614 +- 265605 +- 265613 +Description: '' +GMNotes: '' +GUID: 6f2827 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Encounter Deck +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.9277 + posY: 1.76638031 + posZ: 5.757101 + rotX: 359.919739 + rotY: 269.993256 + rotZ: 180.01683 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Against the Wendigo 4d5fa0/Deck Locations (random shuffle) b3ec68.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Against the Wendigo 4d5fa0/Deck Locations (random shuffle) b3ec68.yaml new file mode 100644 index 000000000..7782a2db1 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Against the Wendigo 4d5fa0/Deck Locations (random shuffle) b3ec68.yaml @@ -0,0 +1,258 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 265508 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2655': + BackIsHidden: true + BackURL: https://i.imgur.com/2PIDbOe.jpg + FaceURL: https://i.imgur.com/Fm6wzfY.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 6272cc + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Swamp + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.47149754 + posY: 1.5518198 + posZ: -21.21375 + rotX: 0.0167285725 + rotY: 180.001465 + rotZ: 0.07965156 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265510 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2655': + BackIsHidden: true + BackURL: https://i.imgur.com/2PIDbOe.jpg + FaceURL: https://i.imgur.com/Fm6wzfY.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 13b008 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Sinister Taiga + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.61752748 + posY: 1.69260609 + posZ: -20.77361 + rotX: 0.00366885541 + rotY: 180.001175 + rotZ: 0.07321346 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265503 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2655': + BackIsHidden: true + BackURL: https://i.imgur.com/2PIDbOe.jpg + FaceURL: https://i.imgur.com/Fm6wzfY.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: a29217 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Impenetrable Forest + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.93793035 + posY: 1.70897543 + posZ: -21.35919 + rotX: 0.0132774441 + rotY: 179.999527 + rotZ: 0.09234247 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265509 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2655': + BackIsHidden: true + BackURL: https://i.imgur.com/2PIDbOe.jpg + FaceURL: https://i.imgur.com/Fm6wzfY.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 4068ea + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Site of Ancient Stones + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.867111 + posY: 1.69516659 + posZ: -20.75426 + rotX: 0.0121836215 + rotY: 180.0001 + rotZ: 0.102864236 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265511 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2655': + BackIsHidden: true + BackURL: https://i.imgur.com/2PIDbOe.jpg + FaceURL: https://i.imgur.com/Fm6wzfY.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: a421fc + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.28397274 + posY: 1.69379079 + posZ: -21.4160271 + rotX: 0.0173364673 + rotY: 180.000122 + rotZ: 0.07975545 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2655': + BackIsHidden: true + BackURL: https://i.imgur.com/2PIDbOe.jpg + FaceURL: https://i.imgur.com/Fm6wzfY.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 265508 +- 265510 +- 265503 +- 265509 +- 265511 +Description: Shuffle and lay out to the left and right of the Hanninah locations +GMNotes: '' +GUID: b3ec68 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Locations (random shuffle) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -12.7351 + posY: 1.66757667 + posZ: -7.686101 + rotX: 359.9201 + rotY: 270.000061 + rotZ: 0.0168766957 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Against the Wendigo 4d5fa0/Deck Mountain Range 309b74.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Against the Wendigo 4d5fa0/Deck Mountain Range 309b74.yaml new file mode 100644 index 000000000..15ab46400 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Against the Wendigo 4d5fa0/Deck Mountain Range 309b74.yaml @@ -0,0 +1,130 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 265500 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2655': + BackIsHidden: true + BackURL: https://i.imgur.com/2PIDbOe.jpg + FaceURL: https://i.imgur.com/Fm6wzfY.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 17d996 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Mountain Range + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -9.419911 + posY: 1.560614 + posZ: -20.866518 + rotX: 0.0281638689 + rotY: 179.996033 + rotZ: 0.0611889772 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265501 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2655': + BackIsHidden: true + BackURL: https://i.imgur.com/2PIDbOe.jpg + FaceURL: https://i.imgur.com/Fm6wzfY.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 75dc93 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Mountain Range + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -9.547756 + posY: 1.73871994 + posZ: -21.2084332 + rotX: 0.0290053021 + rotY: 180.016754 + rotZ: 357.942261 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2655': + BackIsHidden: true + BackURL: https://i.imgur.com/2PIDbOe.jpg + FaceURL: https://i.imgur.com/Fm6wzfY.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 265500 +- 265501 +Description: randomly remove one from the game, and add the other to the random shuffle + deck +GMNotes: '' +GUID: 309b74 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Mountain Range +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -12.4322 + posY: 1.67958 + posZ: 7.3153 + rotX: 359.9201 + rotY: 270.000549 + rotZ: 0.0168760046 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Against the Wendigo 4d5fa0/Deck Shuffle and place north of Jetty a69955.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Against the Wendigo 4d5fa0/Deck Shuffle and place north of Jetty a69955.yaml new file mode 100644 index 000000000..a771b92f3 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Against the Wendigo 4d5fa0/Deck Shuffle and place north of Jetty a69955.yaml @@ -0,0 +1,172 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 265505 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2655': + BackIsHidden: true + BackURL: https://i.imgur.com/2PIDbOe.jpg + FaceURL: https://i.imgur.com/Fm6wzfY.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 4a9a57 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: North Hanninah + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -13.6874838 + posY: 1.56611693 + posZ: -20.6126518 + rotX: 0.015515497 + rotY: 179.978333 + rotZ: 0.09350779 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265507 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2655': + BackIsHidden: true + BackURL: https://i.imgur.com/2PIDbOe.jpg + FaceURL: https://i.imgur.com/Fm6wzfY.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: b6dfb7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: North Hanninah + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -13.954318 + posY: 1.70705438 + posZ: -20.7125053 + rotX: 0.016482532 + rotY: 179.948883 + rotZ: 0.103121765 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265506 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2655': + BackIsHidden: true + BackURL: https://i.imgur.com/2PIDbOe.jpg + FaceURL: https://i.imgur.com/Fm6wzfY.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 74b4b9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: North Hanninah + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -13.5352058 + posY: 1.72398651 + posZ: -20.8859653 + rotX: 0.0160375051 + rotY: 179.9938 + rotZ: 0.08108111 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2655': + BackIsHidden: true + BackURL: https://i.imgur.com/2PIDbOe.jpg + FaceURL: https://i.imgur.com/Fm6wzfY.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 265505 +- 265507 +- 265506 +Description: '' +GMNotes: '' +GUID: a69955 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Shuffle and place north of Jetty +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -30.2242 + posY: 1.69489062 + posZ: -0.0300003812 + rotX: 359.9201 + rotY: 270.000519 + rotZ: 0.0168756042 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Against the Wendigo 4d5fa0/ScriptingTrigger 06f882.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Against the Wendigo 4d5fa0/ScriptingTrigger 06f882.yaml new file mode 100644 index 000000000..3c17819a5 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Against the Wendigo 4d5fa0/ScriptingTrigger 06f882.yaml @@ -0,0 +1,32 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +Description: '' +GMNotes: '' +GUID: 06f882 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: true +LuaScript: '' +LuaScriptState: '' +Name: ScriptingTrigger +Nickname: '' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.769 + posY: 4.1352 + posZ: 5.6708 + rotX: 0.0 + rotY: 90.00001 + rotZ: 0.0 + scaleX: 3.98790359 + scaleY: 5.1 + scaleZ: 5.42034 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Against the Wendigo 4d5fa0/Tablet Against the Wendigo Campaign Guide ad6736.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Against the Wendigo 4d5fa0/Tablet Against the Wendigo Campaign Guide ad6736.yaml new file mode 100644 index 000000000..a4c875743 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Against the Wendigo 4d5fa0/Tablet Against the Wendigo Campaign Guide ad6736.yaml @@ -0,0 +1,34 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +Description: '' +GMNotes: '' +GUID: ad6736 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Tablet +Nickname: Against the Wendigo Campaign Guide +Snap: true +Sticky: true +Tablet: + PageURL: https://drive.google.com/file/d/1q7MvOv39MZZrL7eIb3DRsPAyjpUX_6rs/view +Tooltip: true +Transform: + posX: -1.11269951 + posY: 1.76192093 + posZ: -27.6436062 + rotX: 359.920135 + rotY: 269.96933 + rotZ: 0.0169162937 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Blood Spilled in Salem 4237da.ttslua b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Blood Spilled in Salem 4237da.ttslua new file mode 100644 index 000000000..46067f58e --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Blood Spilled in Salem 4237da.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.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.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 791837/Custom_Model_Bag Blood Spilled in Salem 4237da.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Blood Spilled in Salem 4237da.yaml new file mode 100644 index 000000000..da6edf8c9 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Blood Spilled in Salem 4237da.yaml @@ -0,0 +1,94 @@ +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 Blood Spilled in Salem 4237da/Deck Set Aside acac22.yaml' +- !include 'Custom_Model_Bag Blood Spilled in Salem 4237da/Deck Atrocities a3dc2f.yaml' +- !include 'Custom_Model_Bag Blood Spilled in Salem 4237da/DeckCustom Encounter Deck + 0eb577.yaml' +- !include 'Custom_Model_Bag Blood Spilled in Salem 4237da/Deck Agenda 479a5a.yaml' +- !include 'Custom_Model_Bag Blood Spilled in Salem 4237da/Deck Act 33b200.yaml' +- !include 'Custom_Model_Bag Blood Spilled in Salem 4237da/Card Scenario ade1bd.yaml' +- !include 'Custom_Model_Bag Blood Spilled in Salem 4237da/Custom_Tile Blood Spilled + in Salem 83b781.yaml' +- !include 'Custom_Model_Bag Blood Spilled in Salem 4237da/Deck a1dbf2.yaml' +- !include 'Custom_Model_Bag Blood Spilled in Salem 4237da/Card 225690.yaml' +- !include 'Custom_Model_Bag Blood Spilled in Salem 4237da/Custom_Tile ee673a.yaml' +- !include 'Custom_Model_Bag Blood Spilled in Salem 4237da/Card 4eeeb3.yaml' +- !include 'Custom_Model_Bag Blood Spilled in Salem 4237da/Custom_Tile 7234af.yaml' +- !include 'Custom_Model_Bag Blood Spilled in Salem 4237da/Card efe8d6.yaml' +- !include 'Custom_Model_Bag Blood Spilled in Salem 4237da/Card ae20a4.yaml' +- !include 'Custom_Model_Bag Blood Spilled in Salem 4237da/Custom_Tile b7e3ad.yaml' +- !include 'Custom_Model_Bag Blood Spilled in Salem 4237da/Custom_Tile 0d9dc2.yaml' +- !include 'Custom_Model_Bag Blood Spilled in Salem 4237da/Custom_Tile d33de6.yaml' +- !include 'Custom_Model_Bag Blood Spilled in Salem 4237da/Card 1dd120.yaml' +- !include 'Custom_Model_Bag Blood Spilled in Salem 4237da/Custom_Tile ed48d8.yaml' +- !include 'Custom_Model_Bag Blood Spilled in Salem 4237da/Card a06ab2.yaml' +- !include 'Custom_Model_Bag Blood Spilled in Salem 4237da/Custom_Tile e90dde.yaml' +- !include 'Custom_Model_Bag Blood Spilled in Salem 4237da/Card baff62.yaml' +- !include 'Custom_Model_Bag Blood Spilled in Salem 4237da/Custom_Tile a08d45.yaml' +- !include 'Custom_Model_Bag Blood Spilled in Salem 4237da/Custom_Tile e1bf6b.yaml' +- !include 'Custom_Model_Bag Blood Spilled in Salem 4237da/Custom_Tile 23bbd8.yaml' +- !include 'Custom_Model_Bag Blood Spilled in Salem 4237da/Custom_Tile fda256.yaml' +- !include 'Custom_Model_Bag Blood Spilled in Salem 4237da/Custom_Tile b4a135.yaml' +- !include 'Custom_Model_Bag Blood Spilled in Salem 4237da/Card 0488ba.yaml' +- !include 'Custom_Model_Bag Blood Spilled in Salem 4237da/Custom_Tile 4aaa9f.yaml' +- !include 'Custom_Model_Bag Blood Spilled in Salem 4237da/Card aa3bc3.yaml' +- !include 'Custom_Model_Bag Blood Spilled in Salem 4237da/Custom_Tile 1e3806.yaml' +- !include 'Custom_Model_Bag Blood Spilled in Salem 4237da/Card 0acbd8.yaml' +- !include 'Custom_Model_Bag Blood Spilled in Salem 4237da/Card Scenario 480533.yaml' +CustomMesh: + CastShadows: true + ColliderURL: '' + Convex: true + DiffuseURL: http://cloud-3.steamusercontent.com/ugc/798737729142918658/204E105211839B1E202E834F4A5C69E8E6A50A28/ + MaterialIndex: 3 + MeshURL: https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj + NormalURL: '' + TypeIndex: 6 +Description: '' +GMNotes: '' +GUID: 4237da +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Model_Bag Blood Spilled in Salem 4237da.ttslua' +LuaScriptState: '{"ml":{"0488ba":{"lock":false,"pos":{"x":-30.2242,"y":1.7004,"z":7.57},"rot":{"x":359.9201,"y":270,"z":180.0169}},"0acbd8":{"lock":false,"pos":{"x":-30.2243,"y":1.6959,"z":-7.7},"rot":{"x":359.9201,"y":270.0001,"z":180.0169}},"0d9dc2":{"lock":false,"pos":{"x":-20.7379,"y":1.6093,"z":-3.7735},"rot":{"x":359.9747,"y":209.9999,"z":0.0776}},"0eb577":{"lock":false,"pos":{"x":-3.9275,"y":1.7611,"z":5.7571},"rot":{"x":359.9197,"y":269.9856,"z":180.0168}},"1dd120":{"lock":false,"pos":{"x":-23.6766,"y":1.6913,"z":7.57},"rot":{"x":359.9201,"y":270.0001,"z":180.0169}},"1e3806":{"lock":false,"pos":{"x":-30.2242,"y":1.6225,"z":-3.83},"rot":{"x":359.9832,"y":0.0096,"z":359.92}},"225690":{"lock":false,"pos":{"x":-17.1199,"y":1.6821,"z":7.57},"rot":{"x":359.9201,"y":269.9999,"z":180.0169}},"23bbd8":{"lock":false,"pos":{"x":-27.2865,"y":1.6195,"z":-0.0152},"rot":{"x":0.0799,"y":89.9999,"z":359.9831}},"33b200":{"lock":false,"pos":{"x":-2.6885,"y":1.6535,"z":-5.0485},"rot":{"x":359.9197,"y":269.9997,"z":0.0168}},"479a5a":{"lock":false,"pos":{"x":-2.7247,"y":1.656,"z":0.3733},"rot":{"x":359.9197,"y":270,"z":0.0168}},"480533":{"lock":false,"pos":{"x":-50.9243,"y":1.7294,"z":8.1784},"rot":{"x":359.9201,"y":269.931,"z":180.017}},"4aaa9f":{"lock":false,"pos":{"x":-30.2242,"y":1.6248,"z":3.86},"rot":{"x":359.9832,"y":0.0095,"z":359.92}},"4eeeb3":{"lock":false,"pos":{"x":-17.12,"y":1.6799,"z":-0.03},"rot":{"x":359.9201,"y":270,"z":180.0169}},"7234af":{"lock":false,"pos":{"x":-17.12,"y":1.6042,"z":-3.83},"rot":{"x":359.9832,"y":0.0095,"z":359.92}},"83b781":{"lock":false,"pos":{"x":-4.3576,"y":1.5832,"z":-14.9888},"rot":{"x":359.9197,"y":270.0004,"z":0.0168}},"a06ab2":{"lock":false,"pos":{"x":-23.6765,"y":1.689,"z":-0.03},"rot":{"x":359.9201,"y":270.0002,"z":180.0169}},"a08d45":{"lock":false,"pos":{"x":-26.798,"y":1.6211,"z":7.6211},"rot":{"x":359.9201,"y":269.9998,"z":0.0169}},"a1dbf2":{"lock":false,"pos":{"x":-9.5286,"y":1.6602,"z":-1.2349},"rot":{"x":359.9201,"y":269.997,"z":180.0169}},"a3dc2f":{"lock":false,"pos":{"x":-4.4458,"y":1.663,"z":14.3162},"rot":{"x":359.9197,"y":269.9745,"z":180.0169}},"aa3bc3":{"lock":false,"pos":{"x":-30.2243,"y":1.6982,"z":-0.03},"rot":{"x":359.9201,"y":270.0001,"z":180.0169}},"acac22":{"lock":false,"pos":{"x":1.6967,"y":1.6368,"z":14.2788},"rot":{"x":359.9552,"y":225,"z":0.0687}},"ade1bd":{"lock":false,"pos":{"x":-3.956,"y":1.6585,"z":-10.4412},"rot":{"x":359.9197,"y":270.0001,"z":180.0168}},"ae20a4":{"lock":false,"pos":{"x":-17.1199,"y":1.6765,"z":-11.51},"rot":{"x":359.9201,"y":270,"z":180.0169}},"b4a135":{"lock":false,"pos":{"x":-26.9258,"y":1.6168,"z":-7.7032},"rot":{"x":359.9201,"y":269.9999,"z":0.0169}},"b7e3ad":{"lock":false,"pos":{"x":-20.2216,"y":1.6119,"z":7.3408},"rot":{"x":359.9201,"y":269.9998,"z":0.0169}},"baff62":{"lock":false,"pos":{"x":-23.6765,"y":1.6868,"z":-7.7},"rot":{"x":359.9201,"y":269.9999,"z":180.0169}},"d33de6":{"lock":false,"pos":{"x":-20.3424,"y":1.6076,"z":-7.7619},"rot":{"x":359.9201,"y":270.002,"z":0.0169}},"e1bf6b":{"lock":false,"pos":{"x":-26.9599,"y":1.6203,"z":3.9439},"rot":{"x":359.9316,"y":315.0001,"z":359.9554}},"e90dde":{"lock":false,"pos":{"x":-24.7567,"y":1.6149,"z":-3.8971},"rot":{"x":359.9832,"y":0.0096,"z":359.92}},"ed48d8":{"lock":false,"pos":{"x":-23.6765,"y":1.6157,"z":3.86},"rot":{"x":359.9832,"y":0.0096,"z":359.92}},"ee673a":{"lock":false,"pos":{"x":-17.12,"y":1.6065,"z":3.86},"rot":{"x":359.9832,"y":0.0096,"z":359.92}},"efe8d6":{"lock":false,"pos":{"x":-17.1201,"y":1.6776,"z":-7.7},"rot":{"x":359.9201,"y":270.0001,"z":180.0169}},"fda256":{"lock":false,"pos":{"x":-27.7376,"y":1.619,"z":-4.1724},"rot":{"x":359.9316,"y":315.0002,"z":359.9554}}}}' +MaterialIndex: -1 +MeshIndex: -1 +Name: Custom_Model_Bag +Nickname: Blood Spilled in Salem +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 49.50003 + posY: 4.38481855 + posZ: -95.97946 + rotX: 0.0208081752 + rotY: 270.000122 + rotZ: 0.0167717673 + scaleX: 2.21 + scaleY: 0.2 + scaleZ: 2.46 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Blood Spilled in Salem 4237da/Card 0488ba.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Blood Spilled in Salem 4237da/Card 0488ba.yaml new file mode 100644 index 000000000..18c47a586 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Blood Spilled in Salem 4237da/Card 0488ba.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 314 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '3': + BackIsHidden: true + BackURL: https://i.imgur.com/a1krSW3.jpg/ + FaceURL: https://i.imgur.com/mwKLjIs.jpg/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 0488ba +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -30.2242 + posY: 1.70041156 + posZ: 7.570001 + 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 The Side Missions 791837/Custom_Model_Bag Blood Spilled in Salem 4237da/Card 0acbd8.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Blood Spilled in Salem 4237da/Card 0acbd8.yaml new file mode 100644 index 000000000..bcdcc8788 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Blood Spilled in Salem 4237da/Card 0acbd8.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 312 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '3': + BackIsHidden: true + BackURL: https://i.imgur.com/a1krSW3.jpg/ + FaceURL: https://i.imgur.com/mwKLjIs.jpg/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 0acbd8 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -30.2243 + posY: 1.69591522 + 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 The Side Missions 791837/Custom_Model_Bag Blood Spilled in Salem 4237da/Card 1dd120.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Blood Spilled in Salem 4237da/Card 1dd120.yaml new file mode 100644 index 000000000..ac33db6bc --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Blood Spilled in Salem 4237da/Card 1dd120.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 313 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '3': + BackIsHidden: true + BackURL: https://i.imgur.com/a1krSW3.jpg/ + FaceURL: https://i.imgur.com/mwKLjIs.jpg/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 1dd120 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -23.6766 + posY: 1.69128132 + posZ: 7.570002 + 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 The Side Missions 791837/Custom_Model_Bag Blood Spilled in Salem 4237da/Card 225690.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Blood Spilled in Salem 4237da/Card 225690.yaml new file mode 100644 index 000000000..1e7fd9cc2 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Blood Spilled in Salem 4237da/Card 225690.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 310 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '3': + BackIsHidden: true + BackURL: https://i.imgur.com/a1krSW3.jpg/ + FaceURL: https://i.imgur.com/mwKLjIs.jpg/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: '225690' +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -17.1198978 + posY: 1.68213844 + posZ: 7.56999969 + rotX: 359.9201 + rotY: 269.999878 + rotZ: 180.016861 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Blood Spilled in Salem 4237da/Card 4eeeb3.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Blood Spilled in Salem 4237da/Card 4eeeb3.yaml new file mode 100644 index 000000000..215f6fd61 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Blood Spilled in Salem 4237da/Card 4eeeb3.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 309 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '3': + BackIsHidden: true + BackURL: https://i.imgur.com/a1krSW3.jpg/ + FaceURL: https://i.imgur.com/mwKLjIs.jpg/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 4eeeb3 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -17.1199989 + posY: 1.67990065 + posZ: -0.0299994368 + 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 The Side Missions 791837/Custom_Model_Bag Blood Spilled in Salem 4237da/Card a06ab2.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Blood Spilled in Salem 4237da/Card a06ab2.yaml new file mode 100644 index 000000000..51acae22c --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Blood Spilled in Salem 4237da/Card a06ab2.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 317 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '3': + BackIsHidden: true + BackURL: https://i.imgur.com/a1krSW3.jpg/ + FaceURL: https://i.imgur.com/mwKLjIs.jpg/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: a06ab2 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -23.6765 + posY: 1.68904328 + posZ: -0.0299994852 + rotX: 359.9201 + rotY: 270.000183 + rotZ: 180.016861 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Blood Spilled in Salem 4237da/Card aa3bc3.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Blood Spilled in Salem 4237da/Card aa3bc3.yaml new file mode 100644 index 000000000..d604de8d3 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Blood Spilled in Salem 4237da/Card aa3bc3.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 315 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '3': + BackIsHidden: true + BackURL: https://i.imgur.com/a1krSW3.jpg/ + FaceURL: https://i.imgur.com/mwKLjIs.jpg/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: aa3bc3 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -30.2243 + posY: 1.69817376 + posZ: -0.0299997274 + 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 The Side Missions 791837/Custom_Model_Bag Blood Spilled in Salem 4237da/Card ae20a4.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Blood Spilled in Salem 4237da/Card ae20a4.yaml new file mode 100644 index 000000000..0b2b0d8a1 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Blood Spilled in Salem 4237da/Card ae20a4.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 322 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '3': + BackIsHidden: true + BackURL: https://i.imgur.com/a1krSW3.jpg/ + FaceURL: https://i.imgur.com/mwKLjIs.jpg/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: ae20a4 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -17.1199 + posY: 1.67652011 + posZ: -11.5100031 + 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 The Side Missions 791837/Custom_Model_Bag Blood Spilled in Salem 4237da/Card baff62.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Blood Spilled in Salem 4237da/Card baff62.yaml new file mode 100644 index 000000000..ea0715f08 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Blood Spilled in Salem 4237da/Card baff62.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 316 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '3': + BackIsHidden: true + BackURL: https://i.imgur.com/a1krSW3.jpg/ + FaceURL: https://i.imgur.com/mwKLjIs.jpg/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: baff62 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -23.6765 + posY: 1.68678474 + posZ: -7.700001 + 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 The Side Missions 791837/Custom_Model_Bag Blood Spilled in Salem 4237da/Card efe8d6.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Blood Spilled in Salem 4237da/Card efe8d6.yaml new file mode 100644 index 000000000..06f83bb87 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Blood Spilled in Salem 4237da/Card efe8d6.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 311 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '3': + BackIsHidden: true + BackURL: https://i.imgur.com/a1krSW3.jpg/ + FaceURL: https://i.imgur.com/mwKLjIs.jpg/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: efe8d6 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -17.1201 + posY: 1.67764235 + posZ: -7.700001 + 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 The Side Missions 791837/Custom_Model_Bag Blood Spilled in Salem 4237da/Card Scenario 480533.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Blood Spilled in Salem 4237da/Card Scenario 480533.yaml new file mode 100644 index 000000000..dd3ca7ef7 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Blood Spilled in Salem 4237da/Card Scenario 480533.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 308 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '3': + BackIsHidden: true + BackURL: https://i.imgur.com/a1krSW3.jpg/ + FaceURL: https://i.imgur.com/mwKLjIs.jpg/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: '480533' +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Scenario +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -50.9243 + posY: 1.72944808 + posZ: 8.1784 + rotX: 359.920135 + rotY: 269.93103 + rotZ: 180.016953 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Blood Spilled in Salem 4237da/Card Scenario ade1bd.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Blood Spilled in Salem 4237da/Card Scenario ade1bd.yaml new file mode 100644 index 000000000..4d745878d --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Blood Spilled in Salem 4237da/Card Scenario ade1bd.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 308 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '3': + BackIsHidden: true + BackURL: https://i.imgur.com/a1krSW3.jpg/ + FaceURL: https://i.imgur.com/mwKLjIs.jpg/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: ade1bd +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Scenario +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.95600176 + posY: 1.65847111 + posZ: -10.4412031 + rotX: 359.919739 + rotY: 270.0001 + rotZ: 180.01683 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Blood Spilled in Salem 4237da/Custom_Tile 0d9dc2.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Blood Spilled in Salem 4237da/Custom_Tile 0d9dc2.yaml new file mode 100644 index 000000000..2d4206c73 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Blood Spilled in Salem 4237da/Custom_Tile 0d9dc2.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 0d9dc2 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.7379 + posY: 1.60930657 + posZ: -3.7735 + rotX: 359.97467 + rotY: 209.999939 + rotZ: 0.07762852 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Blood Spilled in Salem 4237da/Custom_Tile 1e3806.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Blood Spilled in Salem 4237da/Custom_Tile 1e3806.yaml new file mode 100644 index 000000000..2089f3c68 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Blood Spilled in Salem 4237da/Custom_Tile 1e3806.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 1e3806 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.82999945 + rotX: 359.983154 + rotY: 0.009649494 + rotZ: 359.920044 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Blood Spilled in Salem 4237da/Custom_Tile 23bbd8.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Blood Spilled in Salem 4237da/Custom_Tile 23bbd8.yaml new file mode 100644 index 000000000..6ab46d2c7 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Blood Spilled in Salem 4237da/Custom_Tile 23bbd8.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 23bbd8 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.2865 + posY: 1.6195451 + posZ: -0.0152002657 + rotX: 0.0798944 + rotY: 89.9999161 + rotZ: 359.9831 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Blood Spilled in Salem 4237da/Custom_Tile 4aaa9f.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Blood Spilled in Salem 4237da/Custom_Tile 4aaa9f.yaml new file mode 100644 index 000000000..e883eb37e --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Blood Spilled in Salem 4237da/Custom_Tile 4aaa9f.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 4aaa9f +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.62478268 + posZ: 3.86000037 + rotX: 359.983154 + rotY: 0.009516088 + rotZ: 359.920044 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Blood Spilled in Salem 4237da/Custom_Tile 7234af.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Blood Spilled in Salem 4237da/Custom_Tile 7234af.yaml new file mode 100644 index 000000000..bd327a7d3 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Blood Spilled in Salem 4237da/Custom_Tile 7234af.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 7234af +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.119997 + posY: 1.60424542 + posZ: -3.83 + rotX: 359.983154 + rotY: 0.009509903 + rotZ: 359.920044 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Blood Spilled in Salem 4237da/Custom_Tile a08d45.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Blood Spilled in Salem 4237da/Custom_Tile a08d45.yaml new file mode 100644 index 000000000..df8f426f9 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Blood Spilled in Salem 4237da/Custom_Tile a08d45.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: a08d45 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.798 + posY: 1.62111235 + posZ: 7.621099 + rotX: 359.9201 + rotY: 269.999817 + rotZ: 0.0169027988 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Blood Spilled in Salem 4237da/Custom_Tile b4a135.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Blood Spilled in Salem 4237da/Custom_Tile b4a135.yaml new file mode 100644 index 000000000..ecade6602 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Blood Spilled in Salem 4237da/Custom_Tile b4a135.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: b4a135 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.9258 + posY: 1.61677837 + posZ: -7.70320129 + rotX: 359.9201 + rotY: 269.999878 + rotZ: 0.0168999545 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Blood Spilled in Salem 4237da/Custom_Tile b7e3ad.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Blood Spilled in Salem 4237da/Custom_Tile b7e3ad.yaml new file mode 100644 index 000000000..429c7b2ec --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Blood Spilled in Salem 4237da/Custom_Tile b7e3ad.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: b7e3ad +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.2216 + posY: 1.61185956 + posZ: 7.34080029 + rotX: 359.9201 + rotY: 269.9998 + rotZ: 0.01690031 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Blood Spilled in Salem 4237da/Custom_Tile d33de6.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Blood Spilled in Salem 4237da/Custom_Tile d33de6.yaml new file mode 100644 index 000000000..75b05f024 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Blood Spilled in Salem 4237da/Custom_Tile d33de6.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: d33de6 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.3424 + posY: 1.60758078 + posZ: -7.76190138 + rotX: 359.9201 + rotY: 270.002 + rotZ: 0.016893521 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Blood Spilled in Salem 4237da/Custom_Tile e1bf6b.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Blood Spilled in Salem 4237da/Custom_Tile e1bf6b.yaml new file mode 100644 index 000000000..6fafb3c09 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Blood Spilled in Salem 4237da/Custom_Tile e1bf6b.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: e1bf6b +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.9599 + posY: 1.62025547 + posZ: 3.94389987 + rotX: 359.93158 + rotY: 315.0001 + rotZ: 359.955444 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Blood Spilled in Salem 4237da/Custom_Tile e90dde.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Blood Spilled in Salem 4237da/Custom_Tile e90dde.yaml new file mode 100644 index 000000000..4629c46ef --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Blood Spilled in Salem 4237da/Custom_Tile e90dde.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: e90dde +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: -24.7567 + posY: 1.61487448 + posZ: -3.89709973 + rotX: 359.983154 + rotY: 0.00958604 + rotZ: 359.920044 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Blood Spilled in Salem 4237da/Custom_Tile ed48d8.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Blood Spilled in Salem 4237da/Custom_Tile ed48d8.yaml new file mode 100644 index 000000000..a5be582e9 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Blood Spilled in Salem 4237da/Custom_Tile ed48d8.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: ed48d8 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.6765 + posY: 1.6156522 + posZ: 3.86000037 + rotX: 359.983154 + rotY: 0.009627789 + rotZ: 359.920044 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Blood Spilled in Salem 4237da/Custom_Tile ee673a.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Blood Spilled in Salem 4237da/Custom_Tile ee673a.yaml new file mode 100644 index 000000000..52d6b9d96 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Blood Spilled in Salem 4237da/Custom_Tile ee673a.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: ee673a +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.1199989 + posY: 1.60650992 + posZ: 3.86000037 + rotX: 359.983154 + rotY: 0.009578707 + rotZ: 359.920044 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Blood Spilled in Salem 4237da/Custom_Tile fda256.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Blood Spilled in Salem 4237da/Custom_Tile fda256.yaml new file mode 100644 index 000000000..9ea186301 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Blood Spilled in Salem 4237da/Custom_Tile fda256.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: fda256 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.7376 + posY: 1.61895013 + posZ: -4.17240047 + rotX: 359.93158 + rotY: 315.000153 + rotZ: 359.955444 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Blood Spilled in Salem 4237da/Custom_Tile Blood Spilled in Salem 83b781.ttslua b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Blood Spilled in Salem 4237da/Custom_Tile Blood Spilled in Salem 83b781.ttslua new file mode 100644 index 000000000..019f2aa3f --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Blood Spilled in Salem 4237da/Custom_Tile Blood Spilled in Salem 83b781.ttslua @@ -0,0 +1,21 @@ +name = 'Blood Spilled in Salem' + +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 The Side Missions 791837/Custom_Model_Bag Blood Spilled in Salem 4237da/Custom_Tile Blood Spilled in Salem 83b781.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Blood Spilled in Salem 4237da/Custom_Tile Blood Spilled in Salem 83b781.yaml new file mode 100644 index 000000000..f006d366c --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Blood Spilled in Salem 4237da/Custom_Tile Blood Spilled in Salem 83b781.yaml @@ -0,0 +1,42 @@ +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 +GMNotes: '' +GUID: 83b781 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Tile Blood Spilled in Salem 83b781.ttslua' +LuaScriptState: '' +Name: Custom_Tile +Nickname: Blood Spilled in Salem +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -4.35760069 + posY: 1.58316076 + posZ: -14.9888029 + rotX: 359.919739 + rotY: 270.000427 + rotZ: 0.0168372858 + scaleX: 2.2 + scaleY: 1.0 + scaleZ: 2.2 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Blood Spilled in Salem 4237da/Deck a1dbf2.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Blood Spilled in Salem 4237da/Deck a1dbf2.yaml new file mode 100644 index 000000000..dbb12e633 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Blood Spilled in Salem 4237da/Deck a1dbf2.yaml @@ -0,0 +1,387 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 300 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3': + BackIsHidden: true + BackURL: https://i.imgur.com/a1krSW3.jpg/ + FaceURL: https://i.imgur.com/mwKLjIs.jpg/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 1100ac + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -17.1182842 + posY: 1.78195393 + posZ: -15.2801628 + rotX: 358.209045 + rotY: 269.994263 + rotZ: 180.014236 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 301 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3': + BackIsHidden: true + BackURL: https://i.imgur.com/a1krSW3.jpg/ + FaceURL: https://i.imgur.com/mwKLjIs.jpg/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 854af8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -17.1182842 + posY: 1.79550314 + posZ: -15.2801628 + rotX: 358.2058 + rotY: 269.994324 + rotZ: 180.014236 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 302 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3': + BackIsHidden: true + BackURL: https://i.imgur.com/a1krSW3.jpg/ + FaceURL: https://i.imgur.com/mwKLjIs.jpg/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 97bad1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -17.1184864 + posY: 1.77833557 + posZ: -15.2801628 + rotX: 358.2091 + rotY: 269.993 + rotZ: 180.014053 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 303 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3': + BackIsHidden: true + BackURL: https://i.imgur.com/a1krSW3.jpg/ + FaceURL: https://i.imgur.com/mwKLjIs.jpg/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: f48aef + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -17.1225739 + posY: 1.67538142 + posZ: -15.2797079 + rotX: 359.920563 + rotY: 269.953064 + rotZ: 180.017151 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 304 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3': + BackIsHidden: true + BackURL: https://i.imgur.com/a1krSW3.jpg/ + FaceURL: https://i.imgur.com/mwKLjIs.jpg/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 95e5af + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -11.0995522 + posY: 1.66750145 + posZ: -12.8145981 + rotX: 359.901367 + rotY: 269.9885 + rotZ: 180.035965 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 305 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3': + BackIsHidden: true + BackURL: https://i.imgur.com/a1krSW3.jpg/ + FaceURL: https://i.imgur.com/mwKLjIs.jpg/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: a442e3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -11.8700027 + posY: 1.66761351 + posZ: -16.0047 + rotX: 359.905975 + rotY: 270.0031 + rotZ: 180.022751 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 306 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3': + BackIsHidden: true + BackURL: https://i.imgur.com/a1krSW3.jpg/ + FaceURL: https://i.imgur.com/mwKLjIs.jpg/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: '773984' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -11.3358917 + posY: 1.665906 + posZ: -12.5543509 + rotX: 359.896 + rotY: 269.968 + rotZ: 180.120636 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 307 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3': + BackIsHidden: true + BackURL: https://i.imgur.com/a1krSW3.jpg/ + FaceURL: https://i.imgur.com/mwKLjIs.jpg/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 24b017 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -10.89168 + posY: 1.66807866 + posZ: -9.495018 + rotX: 359.9025 + rotY: 270.002747 + rotZ: 180.008789 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '3': + BackIsHidden: true + BackURL: https://i.imgur.com/a1krSW3.jpg/ + FaceURL: https://i.imgur.com/mwKLjIs.jpg/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 300 +- 301 +- 302 +- 303 +- 304 +- 305 +- 306 +- 307 +Description: '' +GMNotes: '' +GUID: a1dbf2 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -9.5286 + posY: 1.66023076 + posZ: -1.23489976 + rotX: 359.9201 + rotY: 269.996979 + rotZ: 180.016876 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Blood Spilled in Salem 4237da/Deck Act 33b200.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Blood Spilled in Salem 4237da/Deck Act 33b200.yaml new file mode 100644 index 000000000..f5d809a3c --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Blood Spilled in Salem 4237da/Deck Act 33b200.yaml @@ -0,0 +1,211 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 203 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2': + BackIsHidden: true + BackURL: https://i.imgur.com/VuuIryb.jpg/ + FaceURL: https://i.imgur.com/sCaPeG9.jpg/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: fb89ee + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.07429338 + posY: 1.03171289 + posZ: -3.0448823 + rotX: -4.170357e-05 + rotY: 179.999741 + rotZ: -1.38909063e-05 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 202 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2': + BackIsHidden: true + BackURL: https://i.imgur.com/VuuIryb.jpg/ + FaceURL: https://i.imgur.com/sCaPeG9.jpg/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 3bce43 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.57785416 + posY: 1.0815351 + posZ: -2.907911 + rotX: -0.00442003459 + rotY: 180.000549 + rotZ: 0.00275635649 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 201 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2': + BackIsHidden: true + BackURL: https://i.imgur.com/VuuIryb.jpg/ + FaceURL: https://i.imgur.com/sCaPeG9.jpg/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: bc3647 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.90081954 + posY: 1.13254917 + posZ: -3.13663244 + rotX: 359.980743 + rotY: 179.998886 + rotZ: 0.0180604681 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 200 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2': + BackIsHidden: true + BackURL: https://i.imgur.com/VuuIryb.jpg/ + FaceURL: https://i.imgur.com/sCaPeG9.jpg/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: c1fd44 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.81627822 + posY: 1.27853858 + posZ: -2.736367 + rotX: 359.9767 + rotY: 179.9986 + rotZ: 0.0177388 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2': + BackIsHidden: true + BackURL: https://i.imgur.com/VuuIryb.jpg/ + FaceURL: https://i.imgur.com/sCaPeG9.jpg/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 203 +- 202 +- 201 +- 200 +Description: Blood spilled in Salem +GMNotes: '' +GUID: 33b200 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Act +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.68850017 + posY: 1.65349436 + posZ: -5.048502 + rotX: 359.919739 + rotY: 269.9997 + rotZ: 0.01683924 + scaleX: 0.7 + scaleY: 1.0 + scaleZ: 0.7 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Blood Spilled in Salem 4237da/Deck Agenda 479a5a.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Blood Spilled in Salem 4237da/Deck Agenda 479a5a.yaml new file mode 100644 index 000000000..77a2bd1b1 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Blood Spilled in Salem 4237da/Deck Agenda 479a5a.yaml @@ -0,0 +1,253 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 208 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2': + BackIsHidden: true + BackURL: https://i.imgur.com/VuuIryb.jpg/ + FaceURL: https://i.imgur.com/sCaPeG9.jpg/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: fb89ee + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -4.185702 + posY: 1.03171158 + posZ: -2.58313632 + rotX: -0.000123629623 + rotY: 179.999756 + rotZ: -3.81126374e-05 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 207 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2': + BackIsHidden: true + BackURL: https://i.imgur.com/VuuIryb.jpg/ + FaceURL: https://i.imgur.com/sCaPeG9.jpg/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 4b9fb9 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -4.75123024 + posY: 1.08097684 + posZ: -2.5813098 + rotX: 0.03935693 + rotY: 180.0048 + rotZ: 0.0242194552 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 206 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2': + BackIsHidden: true + BackURL: https://i.imgur.com/VuuIryb.jpg/ + FaceURL: https://i.imgur.com/sCaPeG9.jpg/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 51d460 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -4.49658775 + posY: 1.22432828 + posZ: -2.438105 + rotX: 359.136475 + rotY: 179.9895 + rotZ: 0.7027727 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 205 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2': + BackIsHidden: true + BackURL: https://i.imgur.com/VuuIryb.jpg/ + FaceURL: https://i.imgur.com/sCaPeG9.jpg/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 58a83e + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.12714148 + posY: 1.35202 + posZ: -2.3526783 + rotX: 359.155945 + rotY: 179.999741 + rotZ: 0.7252924 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 204 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2': + BackIsHidden: true + BackURL: https://i.imgur.com/VuuIryb.jpg/ + FaceURL: https://i.imgur.com/sCaPeG9.jpg/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 16f51e + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.08987236 + posY: 1.39991438 + posZ: -2.16737533 + rotX: 359.1589 + rotY: 180.00795 + rotZ: 0.7296611 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2': + BackIsHidden: true + BackURL: https://i.imgur.com/VuuIryb.jpg/ + FaceURL: https://i.imgur.com/sCaPeG9.jpg/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 208 +- 207 +- 206 +- 205 +- 204 +Description: Blood spilled in Salem +GMNotes: '' +GUID: 479a5a +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Agenda +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.72470045 + posY: 1.655969 + posZ: 0.373299479 + rotX: 359.919739 + rotY: 270.000031 + rotZ: 0.0168388 + scaleX: 0.7 + scaleY: 1.0 + scaleZ: 0.7 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Blood Spilled in Salem 4237da/Deck Atrocities a3dc2f.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Blood Spilled in Salem 4237da/Deck Atrocities a3dc2f.yaml new file mode 100644 index 000000000..db17e88e4 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Blood Spilled in Salem 4237da/Deck Atrocities a3dc2f.yaml @@ -0,0 +1,421 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 139 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/4F45xvz.jpg/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 14bfc4 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 8.136678 + posY: 1.031713 + posZ: -2.2045393 + rotX: -6.192226e-05 + rotY: 179.999832 + rotZ: -2.36848045e-05 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 138 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/4F45xvz.jpg/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 21a5a9 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 8.245219 + posY: 1.17683792 + posZ: -2.31552362 + rotX: -0.00163524132 + rotY: 180.0005 + rotZ: 0.00281586964 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 137 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/4F45xvz.jpg/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 14bfc4 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 8.44051 + posY: 1.194141 + posZ: -2.29795814 + rotX: 0.001313769 + rotY: 180.0222 + rotZ: 359.979126 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 136 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/4F45xvz.jpg/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 14bfc4 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 8.027604 + posY: 1.18045688 + posZ: -2.48420715 + rotX: 0.00508245826 + rotY: 180.0253 + rotZ: 359.98703 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 135 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/4F45xvz.jpg/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 14bfc4 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 7.82863951 + posY: 1.17848635 + posZ: -2.291452 + rotX: 0.00182436674 + rotY: 179.99527 + rotZ: -0.00105102023 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 134 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/4F45xvz.jpg/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 14bfc4 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 8.360235 + posY: 1.18114448 + posZ: -2.11652 + rotX: -0.000123018282 + rotY: 180.000549 + rotZ: 0.000940085156 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 133 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/4F45xvz.jpg/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 14bfc4 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 7.8321023 + posY: 1.18616235 + posZ: -2.457204 + rotX: -0.00451066066 + rotY: 179.989471 + rotZ: 0.00287266029 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 132 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/4F45xvz.jpg/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 14bfc4 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 8.107528 + posY: 1.19246471 + posZ: -2.08752155 + rotX: 0.000441028242 + rotY: 179.9984 + rotZ: -4.68412472e-05 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 131 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/4F45xvz.jpg/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 14bfc4 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 8.339126 + posY: 1.149929 + posZ: -2.30043387 + rotX: -0.000652713759 + rotY: 180.000229 + rotZ: 0.000823136943 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '1': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/4F45xvz.jpg/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 139 +- 138 +- 137 +- 136 +- 135 +- 134 +- 133 +- 132 +- 131 +Description: Blood spilled in Salem +GMNotes: '' +GUID: a3dc2f +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Atrocities +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -4.445801 + posY: 1.66303217 + posZ: 14.3162041 + rotX: 359.919739 + rotY: 269.9745 + rotZ: 180.016861 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Blood Spilled in Salem 4237da/Deck Set Aside acac22.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Blood Spilled in Salem 4237da/Deck Set Aside acac22.yaml new file mode 100644 index 000000000..dc8b48c2f --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Blood Spilled in Salem 4237da/Deck Set Aside acac22.yaml @@ -0,0 +1,386 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 102 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/4F45xvz.jpg/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 14bfc4 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ny-Rakath + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.00299025 + posY: 1.031712 + posZ: 3.967912 + rotX: 2.6514499e-05 + rotY: 179.9999 + rotZ: 1.590087e-05 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 101 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/4F45xvz.jpg/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: a291ab + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Open Rift + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.37623954 + posY: 1.03171289 + posZ: -1.17271161 + rotX: -3.745644e-05 + rotY: 179.999908 + rotZ: -2.78364132e-06 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 100 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/4F45xvz.jpg/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 14bfc4 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Open Rift + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.32781672 + posY: 1.1768378 + posZ: -1.1786474 + rotX: 0.0008991376 + rotY: 179.999954 + rotZ: 0.00364484778 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 323 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3': + BackIsHidden: true + BackURL: https://i.imgur.com/a1krSW3.jpg/ + FaceURL: https://i.imgur.com/mwKLjIs.jpg/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 9c13b0 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 5.762108 + posY: 1.03171289 + posZ: -6.171126 + rotX: -9.82776e-05 + rotY: 179.999725 + rotZ: 2.43912873e-05 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 320 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3': + BackIsHidden: true + BackURL: https://i.imgur.com/a1krSW3.jpg/ + FaceURL: https://i.imgur.com/mwKLjIs.jpg/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 57eb31 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 1.69769728 + posY: 1.03171337 + posZ: -2.4900794 + rotX: -3.83614351e-05 + rotY: 179.999756 + rotZ: 3.034455e-05 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 321 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3': + BackIsHidden: true + BackURL: https://i.imgur.com/a1krSW3.jpg/ + FaceURL: https://i.imgur.com/mwKLjIs.jpg/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 34de21 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 5.906228 + posY: 1.03171194 + posZ: -1.33167934 + rotX: -7.88851248e-05 + rotY: 179.999878 + rotZ: -4.712096e-05 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 319 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3': + BackIsHidden: true + BackURL: https://i.imgur.com/a1krSW3.jpg/ + FaceURL: https://i.imgur.com/mwKLjIs.jpg/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 4eeeb3 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 9.156527 + posY: 1.03171122 + posZ: -1.32795691 + rotX: -7.893415e-05 + rotY: 179.999847 + rotZ: -1.57766754e-05 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 318 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3': + BackIsHidden: true + BackURL: https://i.imgur.com/a1krSW3.jpg/ + FaceURL: https://i.imgur.com/mwKLjIs.jpg/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: f52dcc + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 9.20376 + posY: 1.176832 + posZ: -1.50511122 + rotX: -0.00234237313 + rotY: 180.000443 + rotZ: 0.00213532452 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '1': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/4F45xvz.jpg/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '3': + BackIsHidden: true + BackURL: https://i.imgur.com/a1krSW3.jpg/ + FaceURL: https://i.imgur.com/mwKLjIs.jpg/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 102 +- 101 +- 100 +- 323 +- 320 +- 321 +- 319 +- 318 +Description: Blood spilled in Salem +GMNotes: '' +GUID: acac22 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Set Aside +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 1.69670081 + posY: 1.63675368 + posZ: 14.2788019 + rotX: 359.95517 + rotY: 224.999985 + rotZ: 0.06865249 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Blood Spilled in Salem 4237da/DeckCustom Encounter Deck 0eb577.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Blood Spilled in Salem 4237da/DeckCustom Encounter Deck 0eb577.yaml new file mode 100644 index 000000000..1d7439501 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Blood Spilled in Salem 4237da/DeckCustom Encounter Deck 0eb577.yaml @@ -0,0 +1,1023 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 103 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: 14bfc4 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.41307134e-08 + posY: 1.04493022 + posZ: 3.648122e-07 + rotX: -2.14859974e-05 + rotY: 180.0 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 104 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: 14bfc4 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.41307134e-08 + posY: 1.04493022 + posZ: 3.648122e-07 + rotX: -2.14859974e-05 + rotY: 180.0 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 105 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: 14bfc4 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.41307134e-08 + posY: 1.04493022 + posZ: 3.648122e-07 + rotX: -2.14859974e-05 + rotY: 180.0 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 106 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: 14bfc4 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.41307134e-08 + posY: 1.04493022 + posZ: 3.648122e-07 + rotX: -2.14859974e-05 + rotY: 180.0 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 107 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: 14bfc4 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.41307134e-08 + posY: 1.04493022 + posZ: 3.648122e-07 + rotX: -2.14859974e-05 + rotY: 180.0 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 108 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: 14bfc4 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.41307134e-08 + posY: 1.04493022 + posZ: 3.648122e-07 + rotX: -2.14859974e-05 + rotY: 180.0 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 109 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: 14bfc4 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.41307134e-08 + posY: 1.04493022 + posZ: 3.648122e-07 + rotX: -2.14859974e-05 + rotY: 180.0 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 110 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: 14bfc4 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.41307134e-08 + posY: 1.04493022 + posZ: 3.648122e-07 + rotX: -2.14859974e-05 + rotY: 180.0 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 111 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: 14bfc4 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.41307134e-08 + posY: 1.04493022 + posZ: 3.648122e-07 + rotX: -2.14859974e-05 + rotY: 180.0 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 112 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: 14bfc4 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.41307134e-08 + posY: 1.04493022 + posZ: 3.648122e-07 + rotX: -2.14859974e-05 + rotY: 180.0 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 113 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: 14bfc4 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.41307134e-08 + posY: 1.04493022 + posZ: 3.648122e-07 + rotX: -2.14859974e-05 + rotY: 180.0 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 114 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: 14bfc4 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.41307134e-08 + posY: 1.04493022 + posZ: 3.648122e-07 + rotX: -2.14859974e-05 + rotY: 180.0 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 115 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: 14bfc4 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.41307134e-08 + posY: 1.04493022 + posZ: 3.648122e-07 + rotX: -2.14859974e-05 + rotY: 180.0 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 116 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: 14bfc4 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.41307134e-08 + posY: 1.04493022 + posZ: 3.648122e-07 + rotX: -2.14859974e-05 + rotY: 180.0 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 117 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: 14bfc4 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.41307134e-08 + posY: 1.04493022 + posZ: 3.648122e-07 + rotX: -2.14859974e-05 + rotY: 180.0 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 118 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: 14bfc4 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.41307134e-08 + posY: 1.04493022 + posZ: 3.648122e-07 + rotX: -2.14859974e-05 + rotY: 180.0 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 119 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: 14bfc4 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.41307134e-08 + posY: 1.04493022 + posZ: 3.648122e-07 + rotX: -2.14859974e-05 + rotY: 180.0 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 120 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: 14bfc4 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.41307134e-08 + posY: 1.04493022 + posZ: 3.648122e-07 + rotX: -2.14859974e-05 + rotY: 180.0 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 121 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: 14bfc4 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.41307134e-08 + posY: 1.04493022 + posZ: 3.648122e-07 + rotX: -2.14859974e-05 + rotY: 180.0 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 122 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: 14bfc4 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.41307134e-08 + posY: 1.04493022 + posZ: 3.648122e-07 + rotX: -2.14859974e-05 + rotY: 180.0 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 123 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: 14bfc4 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.41307134e-08 + posY: 1.04493022 + posZ: 3.648122e-07 + rotX: -2.14859974e-05 + rotY: 180.0 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 124 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: 14bfc4 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.41307134e-08 + posY: 1.04493022 + posZ: 3.648122e-07 + rotX: -2.14859974e-05 + rotY: 180.0 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 125 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: 14bfc4 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.41307134e-08 + posY: 1.04493022 + posZ: 3.648122e-07 + rotX: -2.14859974e-05 + rotY: 180.0 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 126 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: 14bfc4 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.41307134e-08 + posY: 1.04493022 + posZ: 3.648122e-07 + rotX: -2.14859974e-05 + rotY: 180.0 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 127 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: 14bfc4 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.41307134e-08 + posY: 1.04493022 + posZ: 3.648122e-07 + rotX: -2.14859974e-05 + rotY: 180.0 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 128 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: 14bfc4 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.41307134e-08 + posY: 1.04493022 + posZ: 3.648122e-07 + rotX: -2.14859974e-05 + rotY: 180.0 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 129 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: 14bfc4 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.41307134e-08 + posY: 1.04493022 + posZ: 3.648122e-07 + rotX: -2.14859974e-05 + rotY: 180.0 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 130 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: 14bfc4 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.41307134e-08 + posY: 1.04493022 + posZ: 3.648122e-07 + rotX: -2.14859974e-05 + rotY: 180.0 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '1': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/4F45xvz.jpg/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 103 +- 104 +- 105 +- 106 +- 107 +- 108 +- 109 +- 110 +- 111 +- 112 +- 113 +- 114 +- 115 +- 116 +- 117 +- 118 +- 119 +- 120 +- 121 +- 122 +- 123 +- 124 +- 125 +- 126 +- 127 +- 128 +- 129 +- 130 +Description: Blood spilled in Salem +GMNotes: '' +GUID: 0eb577 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: DeckCustom +Nickname: Encounter Deck +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.92750072 + posY: 1.7610507 + posZ: 5.75710249 + rotX: 359.919739 + rotY: 269.985626 + rotZ: 180.016846 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Bridge of Sighs 578e97.ttslua b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Bridge of Sighs 578e97.ttslua new file mode 100644 index 000000000..46067f58e --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Bridge of Sighs 578e97.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.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.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 791837/Custom_Model_Bag Bridge of Sighs 578e97.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Bridge of Sighs 578e97.yaml new file mode 100644 index 000000000..a659fb3bb --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Bridge of Sighs 578e97.yaml @@ -0,0 +1,85 @@ +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 Bridge of Sighs 578e97/DeckCustom Set Aside da6072.yaml' +- !include 'Custom_Model_Bag Bridge of Sighs 578e97/Deck Encounter Deck dde586.yaml' +- !include 'Custom_Model_Bag Bridge of Sighs 578e97/Deck Agenda Deck 8f569e.yaml' +- !include 'Custom_Model_Bag Bridge of Sighs 578e97/Deck Act Deck cd676c.yaml' +- !include 'Custom_Model_Bag Bridge of Sighs 578e97/Card Scenario 3dc34f.yaml' +- !include 'Custom_Model_Bag Bridge of Sighs 578e97/Custom_Tile Bridge of Sighs 2d9794.yaml' +- !include 'Custom_Model_Bag Bridge of Sighs 578e97/Card 5a9b00.yaml' +- !include 'Custom_Model_Bag Bridge of Sighs 578e97/Custom_Tile a5b019.yaml' +- !include 'Custom_Model_Bag Bridge of Sighs 578e97/Card 50d3bc.yaml' +- !include 'Custom_Model_Bag Bridge of Sighs 578e97/Custom_Tile 7234af.yaml' +- !include 'Custom_Model_Bag Bridge of Sighs 578e97/Card e7b998.yaml' +- !include 'Custom_Model_Bag Bridge of Sighs 578e97/Custom_Tile 6e4a78.yaml' +- !include 'Custom_Model_Bag Bridge of Sighs 578e97/Card c51bff.yaml' +- !include 'Custom_Model_Bag Bridge of Sighs 578e97/Custom_Tile d7eb78.yaml' +- !include 'Custom_Model_Bag Bridge of Sighs 578e97/Custom_Tile e413cc.yaml' +- !include 'Custom_Model_Bag Bridge of Sighs 578e97/Card 8ed50d.yaml' +- !include 'Custom_Model_Bag Bridge of Sighs 578e97/Custom_Tile fcfbbe.yaml' +- !include 'Custom_Model_Bag Bridge of Sighs 578e97/Card dfff72.yaml' +- !include 'Custom_Model_Bag Bridge of Sighs 578e97/Card 9bcafb.yaml' +- !include 'Custom_Model_Bag Bridge of Sighs 578e97/Card 0d7898.yaml' +- !include 'Custom_Model_Bag Bridge of Sighs 578e97/Card 5d0fdd.yaml' +- !include 'Custom_Model_Bag Bridge of Sighs 578e97/Custom_Tile f90f84.yaml' +- !include 'Custom_Model_Bag Bridge of Sighs 578e97/Custom_Tile d82996.yaml' +- !include 'Custom_Model_Bag Bridge of Sighs 578e97/Custom_Tile bbb99f.yaml' +- !include 'Custom_Model_Bag Bridge of Sighs 578e97/Custom_Tile edb80f.yaml' +- !include 'Custom_Model_Bag Bridge of Sighs 578e97/Deck 3be6e8.yaml' +CustomMesh: + CastShadows: true + ColliderURL: '' + Convex: true + DiffuseURL: http://cloud-3.steamusercontent.com/ugc/798737729142919243/F3ED3E5B6B8725F536FCDA4FB2D40E1D11725037/ + MaterialIndex: 3 + MeshURL: https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj + NormalURL: '' + TypeIndex: 6 +Description: '' +GMNotes: '' +GUID: 578e97 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Model_Bag Bridge of Sighs 578e97.ttslua' +LuaScriptState: '{"ml":{"0d7898":{"lock":false,"pos":{"x":-23.6765,"y":1.6868,"z":-7.7},"rot":{"x":359.9201,"y":269.9998,"z":180.0169}},"2d9794":{"lock":false,"pos":{"x":-4.7969,"y":1.5838,"z":-15.0746},"rot":{"x":359.9197,"y":270.0009,"z":0.0168}},"3be6e8":{"lock":false,"pos":{"x":-10.0797,"y":1.674,"z":-0.4023},"rot":{"x":359.9201,"y":269.9863,"z":0.0169}},"3dc34f":{"lock":false,"pos":{"x":-3.956,"y":1.6556,"z":-10.4412},"rot":{"x":359.9197,"y":269.9974,"z":0.0168}},"50d3bc":{"lock":false,"pos":{"x":-17.12,"y":1.6776,"z":-7.7},"rot":{"x":359.9201,"y":269.9998,"z":180.0169}},"5a9b00":{"lock":false,"pos":{"x":-17.1198,"y":1.6754,"z":-15.2785},"rot":{"x":359.9201,"y":270.0052,"z":180.0169}},"5d0fdd":{"lock":false,"pos":{"x":-23.6766,"y":1.6846,"z":-15.28},"rot":{"x":359.9201,"y":270.005,"z":180.0169}},"6e4a78":{"lock":false,"pos":{"x":-17.12,"y":1.6065,"z":3.86},"rot":{"x":359.9831,"y":0.0003,"z":359.9201}},"7234af":{"lock":false,"pos":{"x":-17.12,"y":1.6042,"z":-3.83},"rot":{"x":359.9831,"y":359.98,"z":359.9201}},"8ed50d":{"lock":false,"pos":{"x":-23.6766,"y":1.6935,"z":15.19},"rot":{"x":359.9201,"y":270.0014,"z":180.0169}},"8f569e":{"lock":false,"pos":{"x":-2.7247,"y":1.6566,"z":0.3733},"rot":{"x":0.0168,"y":180.027,"z":0.0803}},"9bcafb":{"lock":false,"pos":{"x":-23.6764,"y":1.689,"z":-0.03},"rot":{"x":359.9201,"y":269.9999,"z":180.0169}},"a5b019":{"lock":false,"pos":{"x":-17.12,"y":1.602,"z":-11.51},"rot":{"x":359.9831,"y":0.0002,"z":359.92}},"bbb99f":{"lock":false,"pos":{"x":-20.5275,"y":1.6078,"z":-7.7916},"rot":{"x":0.0799,"y":89.9999,"z":359.9831}},"c51bff":{"lock":false,"pos":{"x":-17.12,"y":1.6821,"z":7.57},"rot":{"x":359.9201,"y":270.0001,"z":180.0169}},"cd676c":{"lock":false,"pos":{"x":-2.6885,"y":1.6623,"z":-5.0486},"rot":{"x":0.0168,"y":180.0007,"z":0.0803}},"d7eb78":{"lock":false,"pos":{"x":-19.5006,"y":1.612,"z":11.2137},"rot":{"x":0.0685,"y":134.9717,"z":0.0445}},"d82996":{"lock":false,"pos":{"x":-20.2633,"y":1.6053,"z":-15.0852},"rot":{"x":0.0799,"y":90,"z":359.9831}},"da6072":{"lock":false,"pos":{"x":1.6965,"y":1.6585,"z":14.2788},"rot":{"x":359.9552,"y":224.998,"z":0.0687}},"dde586":{"lock":false,"pos":{"x":-3.9275,"y":1.7237,"z":5.7571},"rot":{"x":359.9197,"y":270.0001,"z":180.0168}},"dfff72":{"lock":false,"pos":{"x":-23.6764,"y":1.6913,"z":7.57},"rot":{"x":359.9201,"y":270,"z":180.0169}},"e413cc":{"lock":false,"pos":{"x":-23.6765,"y":1.6179,"z":11.46},"rot":{"x":359.9832,"y":0.0153,"z":359.9201}},"e7b998":{"lock":false,"pos":{"x":-17.1199,"y":1.6799,"z":-0.03},"rot":{"x":359.9201,"y":270.0052,"z":180.0169}},"edb80f":{"lock":false,"pos":{"x":-20.4959,"y":1.61,"z":-0.1873},"rot":{"x":0.0799,"y":89.9999,"z":359.9831}},"f90f84":{"lock":false,"pos":{"x":-23.6765,"y":1.6111,"z":-11.51},"rot":{"x":359.9831,"y":0,"z":359.9201}},"fcfbbe":{"lock":false,"pos":{"x":-23.6765,"y":1.6157,"z":3.86},"rot":{"x":0.0169,"y":180,"z":0.0799}}}}' +MaterialIndex: -1 +MeshIndex: -1 +Name: Custom_Model_Bag +Nickname: Bridge of Sighs +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 20.5133686 + posY: 2.45324087 + posZ: -90.62729 + rotX: 359.983246 + rotY: 270.0003 + rotZ: 0.00353558268 + scaleX: 2.21 + scaleY: 0.2 + scaleZ: 2.46 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Bridge of Sighs 578e97/Card 0d7898.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Bridge of Sighs 578e97/Card 0d7898.yaml new file mode 100644 index 000000000..c6f7861df --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Bridge of Sighs 578e97/Card 0d7898.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 108814 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '1088': + BackIsHidden: true + BackURL: https://i.imgur.com/hONUji8.jpg/ + FaceURL: https://i.imgur.com/uDAJCIm.jpg/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 0d7898 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -23.6765 + posY: 1.68678474 + posZ: -7.70000267 + rotX: 359.9201 + rotY: 269.9998 + rotZ: 180.016861 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Bridge of Sighs 578e97/Card 50d3bc.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Bridge of Sighs 578e97/Card 50d3bc.yaml new file mode 100644 index 000000000..d12892421 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Bridge of Sighs 578e97/Card 50d3bc.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 108804 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '1088': + BackIsHidden: true + BackURL: https://i.imgur.com/hONUji8.jpg/ + FaceURL: https://i.imgur.com/uDAJCIm.jpg/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 50d3bc +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -17.12 + posY: 1.67764211 + posZ: -7.70000172 + 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 The Side Missions 791837/Custom_Model_Bag Bridge of Sighs 578e97/Card 5a9b00.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Bridge of Sighs 578e97/Card 5a9b00.yaml new file mode 100644 index 000000000..77cc017fc --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Bridge of Sighs 578e97/Card 5a9b00.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 108801 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '1088': + BackIsHidden: true + BackURL: https://i.imgur.com/hONUji8.jpg/ + FaceURL: https://i.imgur.com/uDAJCIm.jpg/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 5a9b00 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -17.1197624 + posY: 1.67541027 + posZ: -15.2785168 + rotX: 359.9201 + rotY: 270.005219 + rotZ: 180.016861 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Bridge of Sighs 578e97/Card 5d0fdd.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Bridge of Sighs 578e97/Card 5d0fdd.yaml new file mode 100644 index 000000000..3c152d769 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Bridge of Sighs 578e97/Card 5d0fdd.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 108800 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '1088': + BackIsHidden: true + BackURL: https://i.imgur.com/hONUji8.jpg/ + FaceURL: https://i.imgur.com/uDAJCIm.jpg/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 5d0fdd +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -23.6765976 + posY: 1.68455291 + posZ: -15.2800016 + rotX: 359.9201 + rotY: 270.004974 + rotZ: 180.016861 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Bridge of Sighs 578e97/Card 8ed50d.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Bridge of Sighs 578e97/Card 8ed50d.yaml new file mode 100644 index 000000000..038305ca1 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Bridge of Sighs 578e97/Card 8ed50d.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 432102 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '4321': + BackIsHidden: true + BackURL: https://i.imgur.com/hONUji8.jpg/ + FaceURL: https://i.imgur.com/uDAJCIm.jpg/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 8ed50d +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -23.6765957 + posY: 1.69352508 + posZ: 15.1900063 + rotX: 359.9201 + rotY: 270.0014 + rotZ: 180.016861 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Bridge of Sighs 578e97/Card 9bcafb.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Bridge of Sighs 578e97/Card 9bcafb.yaml new file mode 100644 index 000000000..730d035a0 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Bridge of Sighs 578e97/Card 9bcafb.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 108803 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '1088': + BackIsHidden: true + BackURL: https://i.imgur.com/hONUji8.jpg/ + FaceURL: https://i.imgur.com/uDAJCIm.jpg/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 9bcafb +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -23.6764 + posY: 1.68904316 + posZ: -0.02999933 + 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 The Side Missions 791837/Custom_Model_Bag Bridge of Sighs 578e97/Card c51bff.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Bridge of Sighs 578e97/Card c51bff.yaml new file mode 100644 index 000000000..3496bd8c6 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Bridge of Sighs 578e97/Card c51bff.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 108809 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '1088': + BackIsHidden: true + BackURL: https://i.imgur.com/hONUji8.jpg/ + FaceURL: https://i.imgur.com/uDAJCIm.jpg/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: c51bff +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -17.12 + posY: 1.68213856 + posZ: 7.5700016 + 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 The Side Missions 791837/Custom_Model_Bag Bridge of Sighs 578e97/Card dfff72.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Bridge of Sighs 578e97/Card dfff72.yaml new file mode 100644 index 000000000..7e628f31a --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Bridge of Sighs 578e97/Card dfff72.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 108812 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '1088': + BackIsHidden: true + BackURL: https://i.imgur.com/hONUji8.jpg/ + FaceURL: https://i.imgur.com/uDAJCIm.jpg/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: dfff72 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -23.6763973 + posY: 1.69128108 + posZ: 7.56996059 + rotX: 359.9201 + rotY: 269.999969 + rotZ: 180.016861 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Bridge of Sighs 578e97/Card e7b998.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Bridge of Sighs 578e97/Card e7b998.yaml new file mode 100644 index 000000000..d73fa4848 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Bridge of Sighs 578e97/Card e7b998.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 108808 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '1088': + BackIsHidden: true + BackURL: https://i.imgur.com/hONUji8.jpg/ + FaceURL: https://i.imgur.com/uDAJCIm.jpg/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: e7b998 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -17.1199 + posY: 1.67990053 + posZ: -0.0299993344 + rotX: 359.9201 + rotY: 270.005249 + rotZ: 180.016861 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Bridge of Sighs 578e97/Card Scenario 3dc34f.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Bridge of Sighs 578e97/Card Scenario 3dc34f.yaml new file mode 100644 index 000000000..26e935492 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Bridge of Sighs 578e97/Card Scenario 3dc34f.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 108807 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '1088': + BackIsHidden: true + BackURL: https://i.imgur.com/hONUji8.jpg/ + FaceURL: https://i.imgur.com/uDAJCIm.jpg/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 3dc34f +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Scenario +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.95600128 + posY: 1.655648 + posZ: -10.441205 + rotX: 359.919739 + rotY: 269.997437 + rotZ: 0.016844742 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Bridge of Sighs 578e97/Custom_Tile 6e4a78.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Bridge of Sighs 578e97/Custom_Tile 6e4a78.yaml new file mode 100644 index 000000000..4eab016b7 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Bridge of Sighs 578e97/Custom_Tile 6e4a78.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 6e4a78 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.1199989 + posY: 1.6065098 + posZ: 3.86000013 + rotX: 359.983124 + rotY: 0.000293063436 + rotZ: 359.920074 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Bridge of Sighs 578e97/Custom_Tile 7234af.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Bridge of Sighs 578e97/Custom_Tile 7234af.yaml new file mode 100644 index 000000000..9509b111b --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Bridge of Sighs 578e97/Custom_Tile 7234af.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 7234af +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.1199989 + posY: 1.60424542 + posZ: -3.82999969 + rotX: 359.9831 + rotY: 359.980042 + rotZ: 359.920074 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Bridge of Sighs 578e97/Custom_Tile a5b019.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Bridge of Sighs 578e97/Custom_Tile a5b019.yaml new file mode 100644 index 000000000..fd001653d --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Bridge of Sighs 578e97/Custom_Tile a5b019.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: a5b019 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.119997 + posY: 1.6019839 + posZ: -11.5100021 + rotX: 359.983124 + rotY: 0.000215894033 + rotZ: 359.920044 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Bridge of Sighs 578e97/Custom_Tile bbb99f.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Bridge of Sighs 578e97/Custom_Tile bbb99f.yaml new file mode 100644 index 000000000..7be216b63 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Bridge of Sighs 578e97/Custom_Tile bbb99f.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: bbb99f +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.5275 + posY: 1.60783029 + posZ: -7.79160261 + rotX: 0.07989427 + rotY: 89.99993 + rotZ: 359.9831 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Bridge of Sighs 578e97/Custom_Tile d7eb78.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Bridge of Sighs 578e97/Custom_Tile d7eb78.yaml new file mode 100644 index 000000000..0cf3bbbe9 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Bridge of Sighs 578e97/Custom_Tile d7eb78.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: d7eb78 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: -19.5005989 + posY: 1.6119945 + posZ: 11.2137022 + rotX: 0.06845284 + rotY: 134.971741 + rotZ: 0.0445272662 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Bridge of Sighs 578e97/Custom_Tile d82996.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Bridge of Sighs 578e97/Custom_Tile d82996.yaml new file mode 100644 index 000000000..716e2c22b --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Bridge of Sighs 578e97/Custom_Tile d82996.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: d82996 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.263298 + posY: 1.60531437 + posZ: -15.0852013 + rotX: 0.07989434 + rotY: 90.00004 + rotZ: 359.9831 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Bridge of Sighs 578e97/Custom_Tile e413cc.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Bridge of Sighs 578e97/Custom_Tile e413cc.yaml new file mode 100644 index 000000000..684f57312 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Bridge of Sighs 578e97/Custom_Tile e413cc.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: e413cc +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.6765 + posY: 1.61789024 + posZ: 11.46 + rotX: 359.983154 + rotY: 0.0152561646 + rotZ: 359.920074 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Bridge of Sighs 578e97/Custom_Tile edb80f.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Bridge of Sighs 578e97/Custom_Tile edb80f.yaml new file mode 100644 index 000000000..cb5e51a99 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Bridge of Sighs 578e97/Custom_Tile edb80f.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: edb80f +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.4959 + posY: 1.61002517 + posZ: -0.187300563 + rotX: 0.07989439 + rotY: 89.9999161 + rotZ: 359.9831 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Bridge of Sighs 578e97/Custom_Tile f90f84.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Bridge of Sighs 578e97/Custom_Tile f90f84.yaml new file mode 100644 index 000000000..3d666a291 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Bridge of Sighs 578e97/Custom_Tile f90f84.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: f90f84 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.6765 + posY: 1.61112654 + posZ: -11.510004 + rotX: 359.983124 + rotY: 4.58500945e-05 + rotZ: 359.920074 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Bridge of Sighs 578e97/Custom_Tile fcfbbe.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Bridge of Sighs 578e97/Custom_Tile fcfbbe.yaml new file mode 100644 index 000000000..2a74897fc --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Bridge of Sighs 578e97/Custom_Tile fcfbbe.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: fcfbbe +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.6765 + posY: 1.61565208 + posZ: 3.86000037 + rotX: 0.0168719627 + rotY: 179.999954 + rotZ: 0.07993567 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Bridge of Sighs 578e97/Custom_Tile Bridge of Sighs 2d9794.ttslua b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Bridge of Sighs 578e97/Custom_Tile Bridge of Sighs 2d9794.ttslua new file mode 100644 index 000000000..aa4315356 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Bridge of Sighs 578e97/Custom_Tile Bridge of Sighs 2d9794.ttslua @@ -0,0 +1,21 @@ +name = 'Bridge of Sighs' + +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 The Side Missions 791837/Custom_Model_Bag Bridge of Sighs 578e97/Custom_Tile Bridge of Sighs 2d9794.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Bridge of Sighs 578e97/Custom_Tile Bridge of Sighs 2d9794.yaml new file mode 100644 index 000000000..f4cd03bf5 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Bridge of Sighs 578e97/Custom_Tile Bridge of Sighs 2d9794.yaml @@ -0,0 +1,42 @@ +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 +GMNotes: '' +GUID: 2d9794 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Tile Bridge of Sighs 2d9794.ttslua' +LuaScriptState: '' +Name: Custom_Tile +Nickname: Bridge of Sighs +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -4.79690075 + posY: 1.58375108 + posZ: -15.0746088 + rotX: 359.919739 + rotY: 270.000854 + rotZ: 0.0168366432 + scaleX: 2.2 + scaleY: 1.0 + scaleZ: 2.2 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Bridge of Sighs 578e97/Deck 3be6e8.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Bridge of Sighs 578e97/Deck 3be6e8.yaml new file mode 100644 index 000000000..d3bab2552 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Bridge of Sighs 578e97/Deck 3be6e8.yaml @@ -0,0 +1,129 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 108815 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1088': + BackIsHidden: true + BackURL: https://i.imgur.com/hONUji8.jpg/ + FaceURL: https://i.imgur.com/uDAJCIm.jpg/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 9ea1ce + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -10.0797281 + posY: 1.66711116 + posZ: -0.40226385 + rotX: 359.9213 + rotY: 269.9864 + rotZ: 0.0177246667 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 108818 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1088': + BackIsHidden: true + BackURL: https://i.imgur.com/hONUji8.jpg/ + FaceURL: https://i.imgur.com/uDAJCIm.jpg/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 79fe62 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -10.4716721 + posY: 1.81287634 + posZ: -0.5992614 + rotX: 359.922272 + rotY: 269.999939 + rotZ: 0.0329398774 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '1088': + BackIsHidden: true + BackURL: https://i.imgur.com/hONUji8.jpg/ + FaceURL: https://i.imgur.com/uDAJCIm.jpg/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 108815 +- 108818 +Description: '' +GMNotes: '' +GUID: 3be6e8 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -10.0796938 + posY: 1.674027 + posZ: -0.402299 + rotX: 359.9201 + rotY: 269.986267 + rotZ: 0.0168865547 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Bridge of Sighs 578e97/Deck Act Deck cd676c.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Bridge of Sighs 578e97/Deck Act Deck cd676c.yaml new file mode 100644 index 000000000..ca55f3a1b --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Bridge of Sighs 578e97/Deck Act Deck cd676c.yaml @@ -0,0 +1,129 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 231800 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/307QLcu.jpg + FaceURL: https://i.imgur.com/YFFKW86.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 2d4179 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -18.738493 + posY: 1.57648289 + posZ: -9.682558 + rotX: 0.0163201913 + rotY: 180.000549 + rotZ: 0.07941115 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231802 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/307QLcu.jpg + FaceURL: https://i.imgur.com/YFFKW86.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: f51905 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -18.7755756 + posY: 1.71715379 + posZ: -9.509042 + rotX: 0.006445997 + rotY: 179.999588 + rotZ: 0.07815903 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/307QLcu.jpg + FaceURL: https://i.imgur.com/YFFKW86.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 231800 +- 231802 +Description: '' +GMNotes: '' +GUID: cd676c +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Act Deck +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.6885 + posY: 1.66233337 + posZ: -5.04860067 + rotX: 0.0168339331 + rotY: 180.000656 + rotZ: 0.08025815 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Bridge of Sighs 578e97/Deck Agenda Deck 8f569e.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Bridge of Sighs 578e97/Deck Agenda Deck 8f569e.yaml new file mode 100644 index 000000000..743dbe8fe --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Bridge of Sighs 578e97/Deck Agenda Deck 8f569e.yaml @@ -0,0 +1,172 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 231803 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/307QLcu.jpg + FaceURL: https://i.imgur.com/YFFKW86.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: '380017' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -20.3161087 + posY: 1.65431035 + posZ: -4.441348 + rotX: 0.6290265 + rotY: 179.958649 + rotZ: 3.08604479 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231804 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/307QLcu.jpg + FaceURL: https://i.imgur.com/YFFKW86.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: afc22d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -20.13465 + posY: 1.78117573 + posZ: -4.52057 + rotX: 0.648276567 + rotY: 180.014542 + rotZ: 3.255237 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231801 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/307QLcu.jpg + FaceURL: https://i.imgur.com/YFFKW86.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: fa1624 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -20.461338 + posY: 1.73842955 + posZ: -4.51482439 + rotX: 0.0170365963 + rotY: 179.951263 + rotZ: 0.08463429 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/307QLcu.jpg + FaceURL: https://i.imgur.com/YFFKW86.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 231803 +- 231804 +- 231801 +Description: '' +GMNotes: '' +GUID: 8f569e +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Agenda Deck +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.7246995 + posY: 1.65664124 + posZ: 0.3733014 + rotX: 0.0167973284 + rotY: 180.027 + rotZ: 0.08026564 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Bridge of Sighs 578e97/Deck Encounter Deck dde586.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Bridge of Sighs 578e97/Deck Encounter Deck dde586.yaml new file mode 100644 index 000000000..e00addb3c --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Bridge of Sighs 578e97/Deck Encounter Deck dde586.yaml @@ -0,0 +1,919 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 3618 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: 27c05d + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Frozen in Fear + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -18.967617 + posY: 1.231716 + posZ: -10.49529 + rotX: -3.11068325e-05 + rotY: 270.0013 + rotZ: -7.22032553e-07 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3622 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: '356046' + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Obscuring Fog + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -17.4060268 + posY: 1.37945676 + posZ: 6.40290833 + rotX: -0.0007180891 + rotY: 270.000427 + rotZ: 0.00573350256 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3620 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: 1921c5 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ancient Evils + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -7.23280954 + posY: 1.52643037 + posZ: 0.9489811 + rotX: 359.988281 + rotY: 269.523743 + rotZ: 179.98201 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3628 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Obstacle. + GMNotes: '' + GUID: 9449d7 + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Locked Door + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -21.2385483 + posY: 1.231653 + posZ: 10.5873995 + rotX: -0.00300062378 + rotY: 270.038849 + rotZ: -0.00198885379 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3618 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: c40f57 + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Frozen in Fear + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -19.6207886 + posY: 1.28169692 + posZ: -10.6840782 + rotX: -3.134726e-05 + rotY: 270.000763 + rotZ: 3.597804e-06 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3617 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: 18e09c + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Rotting Remains + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -20.3450146 + posY: 1.28128624 + posZ: -4.537053 + rotX: 0.006250872 + rotY: 269.979126 + rotZ: -0.00126227119 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 305 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/254843371583115523/E82497980946ECE8E95AADC7220B140E4C0066A8/ + NumHeight: 3 + NumWidth: 5 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 11351e + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -23.390379 + posY: 1.35198784 + posZ: 34.0807076 + rotX: 359.9811 + rotY: 179.568268 + rotZ: 0.000712034467 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3620 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: 61e841 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ancient Evils + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -7.241914 + posY: 1.23447061 + posZ: 0.957268059 + rotX: -0.00325283851 + rotY: 270.0213 + rotZ: 180.001175 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3617 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: aa3d47 + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Rotting Remains + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -21.5193939 + posY: 1.337018 + posZ: -4.78068352 + rotX: 0.0181244723 + rotY: 269.978149 + rotZ: 0.00253973226 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3619 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: '260768' + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dissonant Voices + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -19.1363125 + posY: 1.231699 + posZ: -7.400251 + rotX: -0.000820844667 + rotY: 270.0089 + rotZ: -0.000237511369 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 304 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/254843371583115523/E82497980946ECE8E95AADC7220B140E4C0066A8/ + NumHeight: 3 + NumWidth: 5 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 9db000 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -23.4450111 + posY: 1.497378 + posZ: 34.18325 + rotX: 359.985382 + rotY: 179.5485 + rotZ: 0.03676434 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3622 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: 03a265 + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Obscuring Fog + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -17.4148483 + posY: 1.23167741 + posZ: 5.99956274 + rotX: -0.000976656 + rotY: 269.9857 + rotZ: 0.005132819 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3621 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: b78c3b + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Crypt Chill + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -20.9259262 + posY: 1.23167884 + posZ: 6.982535 + rotX: -0.00255119917 + rotY: 269.983215 + rotZ: -0.000175039211 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3617 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: da8001 + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Rotting Remains + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -19.2726822 + posY: 1.23161709 + posZ: -4.69493532 + rotX: -0.00461160857 + rotY: 269.9793 + rotZ: -0.00137890945 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3628 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Obstacle. + GMNotes: '' + GUID: 1340ff + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Locked Door + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -21.3002548 + posY: 1.37891018 + posZ: 10.607831 + rotX: 359.985657 + rotY: 270.026245 + rotZ: 0.0447875448 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 305 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/254843371583115523/E82497980946ECE8E95AADC7220B140E4C0066A8/ + NumHeight: 3 + NumWidth: 5 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: aaf18e + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -23.4535446 + posY: 1.20590007 + posZ: 34.21433 + rotX: 359.9676 + rotY: 179.82576 + rotZ: 0.005510919 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3620 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: e0f4c0 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ancient Evils + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -7.247365 + posY: 1.38037086 + posZ: 1.02911341 + rotX: -0.005437896 + rotY: 270.4533 + rotZ: 179.987457 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 304 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/254843371583115523/E82497980946ECE8E95AADC7220B140E4C0066A8/ + NumHeight: 3 + NumWidth: 5 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: dd7179 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -23.4238243 + posY: 1.64326465 + posZ: 33.9971123 + rotX: -0.00134709477 + rotY: 180.000626 + rotZ: 0.0529398546 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3619 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: f1a34d + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dissonant Voices + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -19.9809151 + posY: 1.28156877 + posZ: -7.79831076 + rotX: 0.011735606 + rotY: 270.009033 + rotZ: 0.00468536 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3621 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: fb311c + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Crypt Chill + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -21.2322311 + posY: 1.37918484 + posZ: 7.16166067 + rotX: 359.988861 + rotY: 269.991547 + rotZ: 0.0295213945 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 304 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/254843371583115523/E82497980946ECE8E95AADC7220B140E4C0066A8/ + NumHeight: 3 + NumWidth: 5 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 539c59 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -23.42654 + posY: 1.06116283 + posZ: 34.12716 + rotX: 0.0101710148 + rotY: 180.239517 + rotZ: 0.00314495433 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '3': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/254843371583115523/E82497980946ECE8E95AADC7220B140E4C0066A8/ + NumHeight: 3 + NumWidth: 5 + UniqueBack: false + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 3618 +- 3622 +- 3620 +- 3628 +- 3618 +- 3617 +- 305 +- 3620 +- 3617 +- 3619 +- 304 +- 3622 +- 3621 +- 3617 +- 3628 +- 305 +- 3620 +- 304 +- 3619 +- 3621 +- 304 +Description: '' +GMNotes: '' +GUID: dde586 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Encounter Deck +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.927501 + posY: 1.72374451 + posZ: 5.75710344 + rotX: 359.919739 + rotY: 270.000061 + rotZ: 180.016815 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Bridge of Sighs 578e97/DeckCustom Set Aside da6072.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Bridge of Sighs 578e97/DeckCustom Set Aside da6072.yaml new file mode 100644 index 000000000..ec00e6302 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Bridge of Sighs 578e97/DeckCustom Set Aside da6072.yaml @@ -0,0 +1,295 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 108813 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: 3dc34f + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.387748 + posY: 1.04493177 + posZ: 2.86974835 + rotX: 4.7371195e-08 + rotY: 180.0 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 108811 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: 3dc34f + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.387748 + posY: 1.04493177 + posZ: 2.86974835 + rotX: 4.7371195e-08 + rotY: 180.0 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 108805 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1088': + BackIsHidden: true + BackURL: https://i.imgur.com/hONUji8.jpg/ + FaceURL: https://i.imgur.com/uDAJCIm.jpg/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 3889f2 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.12288928 + posY: 1.15275049 + posZ: 2.94005084 + rotX: -4.0769497e-05 + rotY: 180.000137 + rotZ: 180.000381 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 108810 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: 3dc34f + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.387748 + posY: 1.04493177 + posZ: 2.86974835 + rotX: 4.7371195e-08 + rotY: 180.0 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 108816 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: 3dc34f + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.387748 + posY: 1.04493177 + posZ: 2.86974835 + rotX: 4.7371195e-08 + rotY: 180.0 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 108806 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: 3dc34f + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.387748 + posY: 1.04493177 + posZ: 2.86974835 + rotX: 4.7371195e-08 + rotY: 180.0 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 108817 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: 3dc34f + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.387748 + posY: 1.04493177 + posZ: 2.86974835 + rotX: 4.7371195e-08 + rotY: 180.0 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '1088': + BackIsHidden: true + BackURL: https://i.imgur.com/hONUji8.jpg/ + FaceURL: https://i.imgur.com/uDAJCIm.jpg/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 108813 +- 108811 +- 108805 +- 108810 +- 108816 +- 108806 +- 108817 +Description: Bridge of Sighs +GMNotes: '' +GUID: da6072 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: DeckCustom +Nickname: Set Aside +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 1.69650161 + posY: 1.65852332 + posZ: 14.2788048 + rotX: 359.95517 + rotY: 224.997955 + rotZ: 0.06865375 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Carnevale of Horrors 23dd51.ttslua b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Carnevale of Horrors 23dd51.ttslua new file mode 100644 index 000000000..46067f58e --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Carnevale of Horrors 23dd51.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.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.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 791837/Custom_Model_Bag Carnevale of Horrors 23dd51.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Carnevale of Horrors 23dd51.yaml new file mode 100644 index 000000000..cbcbf9ff4 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Carnevale of Horrors 23dd51.yaml @@ -0,0 +1,85 @@ +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 Carnevale of Horrors 23dd51/Card Abbess Allegria Di Biase + 1e7f1b.yaml' +- !include 'Custom_Model_Bag Carnevale of Horrors 23dd51/Card San Marco Basilica 0368c1.yaml' +- !include 'Custom_Model_Bag Carnevale of Horrors 23dd51/Custom_Tile 12d492.yaml' +- !include 'Custom_Model_Bag Carnevale of Horrors 23dd51/Card Abbess Allegria Di Biase + 1e7f1b.yaml' +- !include 'Custom_Model_Bag Carnevale of Horrors 23dd51/Deck 2e4956.yaml' +- !include 'Custom_Model_Bag Carnevale of Horrors 23dd51/Custom_Tile 44b0c5.yaml' +- !include 'Custom_Model_Bag Carnevale of Horrors 23dd51/Deck Encounter Deck 4cc43d.yaml' +- !include 'Custom_Model_Bag Carnevale of Horrors 23dd51/Custom_Tile 4d3553.yaml' +- !include 'Custom_Model_Bag Carnevale of Horrors 23dd51/Deck Act Deck 655937.yaml' +- !include 'Custom_Model_Bag Carnevale of Horrors 23dd51/Custom_Tile 81a6f5.yaml' +- !include 'Custom_Model_Bag Carnevale of Horrors 23dd51/Custom_Tile 949c7d.yaml' +- !include 'Custom_Model_Bag Carnevale of Horrors 23dd51/Custom_Model_Bag Set-aside + a45247.yaml' +- !include 'Custom_Model_Bag Carnevale of Horrors 23dd51/Deck Agenda Deck a49fb6.yaml' +- !include 'Custom_Model_Bag Carnevale of Horrors 23dd51/Custom_Tile Carnevale of + Horrors a5891b.yaml' +- !include 'Custom_Model_Bag Carnevale of Horrors 23dd51/Card Scenario aa7abc.yaml' +- !include 'Custom_Model_Bag Carnevale of Horrors 23dd51/Custom_Tile ab0576.yaml' +- !include 'Custom_Model_Bag Carnevale of Horrors 23dd51/Custom_Tile b676d8.yaml' +- !include 'Custom_Model_Bag Carnevale of Horrors 23dd51/Deck Masked Carnevale-Goer + bb43b8.yaml' +- !include 'Custom_Model_Bag Carnevale of Horrors 23dd51/Deck SetupResolution d5e519.yaml' +- !include 'Custom_Model_Bag Carnevale of Horrors 23dd51/Card Canal-side eb8aad.yaml' +- !include 'Custom_Model_Bag Carnevale of Horrors 23dd51/Custom_Tile fde05d.yaml' +CustomMesh: + CastShadows: true + ColliderURL: '' + Convex: true + DiffuseURL: http://cloud-3.steamusercontent.com/ugc/826883954590151386/AFF80583FAE6A513663D7BA0A36C4EDAC02DCF43/ + MaterialIndex: 3 + MeshURL: https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj + NormalURL: '' + TypeIndex: 6 +Description: Investigators must spend 3XP each to play this side-mission +GMNotes: '' +GUID: 23dd51 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Model_Bag Carnevale of Horrors 23dd51.ttslua' +LuaScriptState: '{"ml":{"0368c1":{"lock":false,"pos":{"x":-17.1201,"y":1.6771,"z":-0.03},"rot":{"x":359.9201,"y":270.0048,"z":0.0169}},"12d492":{"lock":false,"pos":{"x":-30.2242,"y":1.6225,"z":-3.83},"rot":{"x":0.0169,"y":180,"z":0.08}},"1e7f1b":{"lock":false,"pos":{"x":-14.3799,"y":1.7565,"z":-0.214},"rot":{"x":356.8583,"y":270.0027,"z":0.0168}},"2e4956":{"lock":false,"pos":{"x":-11.6656,"y":1.6757,"z":9.0735},"rot":{"x":359.9201,"y":269.9792,"z":0.0169}},"44b0c5":{"lock":false,"pos":{"x":-17.12,"y":1.6042,"z":-3.83},"rot":{"x":359.9831,"y":0.0001,"z":359.92}},"4cc43d":{"lock":false,"pos":{"x":-3.9275,"y":1.7504,"z":5.7571},"rot":{"x":359.9198,"y":269.9697,"z":180.0169}},"4d3553":{"lock":false,"pos":{"x":-17.12,"y":1.6065,"z":3.86},"rot":{"x":359.9831,"y":359.9845,"z":359.92}},"655937":{"lock":false,"pos":{"x":-2.6885,"y":1.655,"z":-5.0485},"rot":{"x":0.0168,"y":180.0419,"z":0.0803}},"81a6f5":{"lock":false,"pos":{"x":-26.8136,"y":1.6167,"z":-7.5513},"rot":{"x":0.0799,"y":90,"z":359.9831}},"949c7d":{"lock":false,"pos":{"x":-30.2242,"y":1.6248,"z":3.86},"rot":{"x":0.0169,"y":180,"z":0.08}},"a45247":{"lock":false,"pos":{"x":1.6967,"y":1.5583,"z":14.2787},"rot":{"x":359.9551,"y":224.998,"z":0.0687}},"a49fb6":{"lock":false,"pos":{"x":-2.7247,"y":1.6566,"z":0.3733},"rot":{"x":0.0169,"y":179.9575,"z":0.0802}},"a5891b":{"lock":false,"pos":{"x":-3.5539,"y":1.5821,"z":-14.78},"rot":{"x":359.9197,"y":270.0027,"z":0.0168}},"aa7abc":{"lock":false,"pos":{"x":-3.956,"y":1.6556,"z":-10.4412},"rot":{"x":359.9197,"y":270.0001,"z":0.0168}},"ab0576":{"lock":false,"pos":{"x":-20.6238,"y":1.6124,"z":7.2554},"rot":{"x":359.9201,"y":269.9998,"z":0.0169}},"b676d8":{"lock":false,"pos":{"x":-20.6237,"y":1.608,"z":-7.5965},"rot":{"x":0.0799,"y":90.0001,"z":359.9831}},"bb43b8":{"lock":false,"pos":{"x":-11.5593,"y":1.6764,"z":11.8573},"rot":{"x":359.9201,"y":270.0077,"z":0.0169}},"d5e519":{"lock":false,"pos":{"x":-3.406,"y":1.5547,"z":-23.1512},"rot":{"x":359.9201,"y":269.9986,"z":0.0169}},"eb8aad":{"lock":false,"pos":{"x":-11.5609,"y":1.6712,"z":6.3668},"rot":{"x":359.9201,"y":269.9869,"z":0.0169}},"fde05d":{"lock":false,"pos":{"x":-27.0646,"y":1.6215,"z":7.5852},"rot":{"x":359.9201,"y":270,"z":0.0169}}}}' +MaterialIndex: -1 +MeshIndex: -1 +Name: Custom_Model_Bag +Nickname: Carnevale of Horrors +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 38.5776978 + posY: 2.53592181 + posZ: -60.8016357 + rotX: 359.983246 + rotY: 270.000061 + rotZ: 0.00353617128 + scaleX: 2.21 + scaleY: 0.46 + scaleZ: 2.42 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Carnevale of Horrors 23dd51/Card Abbess Allegria Di Biase 1e7f1b.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Carnevale of Horrors 23dd51/Card Abbess Allegria Di Biase 1e7f1b.yaml new file mode 100644 index 000000000..ddfde0c67 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Carnevale of Horrors 23dd51/Card Abbess Allegria Di Biase 1e7f1b.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 4000 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '40': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642329861/9768E9FE9C71E74721340D0D81607F534E54A3DE/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: Ally. Believer. +GMNotes: '' +GUID: 1e7f1b +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Abbess Allegria Di Biase +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -14.3863859 + posY: 1.67320716 + posZ: -0.214238271 + rotX: 359.9203 + rotY: 269.991974 + rotZ: 0.0166895054 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Carnevale of Horrors 23dd51/Card Canal-side eb8aad.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Carnevale of Horrors 23dd51/Card Canal-side eb8aad.yaml new file mode 100644 index 000000000..5e6e5289a --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Carnevale of Horrors 23dd51/Card Canal-side eb8aad.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 234508 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2345': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/87094793642370806/651C0A7485AEBE7DF8F893A54A506AFA1165FC3B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642364764/EBA4638B8847E97B3C153A928955F0A536677F8F/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Venice. +GMNotes: '' +GUID: eb8aad +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Canal-side +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -11.5609 + posY: 1.67120957 + posZ: 6.3668 + rotX: 359.9201 + rotY: 269.986877 + rotZ: 0.0168942381 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Carnevale of Horrors 23dd51/Card San Marco Basilica 0368c1.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Carnevale of Horrors 23dd51/Card San Marco Basilica 0368c1.yaml new file mode 100644 index 000000000..74569d6ad --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Carnevale of Horrors 23dd51/Card San Marco Basilica 0368c1.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 234507 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2345': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/87094793642370806/651C0A7485AEBE7DF8F893A54A506AFA1165FC3B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642364764/EBA4638B8847E97B3C153A928955F0A536677F8F/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Venice. +GMNotes: '' +GUID: 0368c1 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: San Marco Basilica +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -17.1246262 + posY: 1.76037788 + posZ: -0.0300844014 + rotX: 2.9829092 + rotY: 270.0044 + rotZ: 0.0166033115 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Carnevale of Horrors 23dd51/Card Scenario aa7abc.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Carnevale of Horrors 23dd51/Card Scenario aa7abc.yaml new file mode 100644 index 000000000..d755c3d7b --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Carnevale of Horrors 23dd51/Card Scenario aa7abc.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 234200 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2342': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/87094793642370806/651C0A7485AEBE7DF8F893A54A506AFA1165FC3B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642364764/EBA4638B8847E97B3C153A928955F0A536677F8F/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Carnevale of Horrors +GMNotes: '' +GUID: aa7abc +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Scenario +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.95590138 + posY: 1.65564811 + posZ: -10.4409571 + rotX: 359.919739 + rotY: 270.005035 + rotZ: 0.01683389 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Carnevale of Horrors 23dd51/Custom_Model_Bag Set-aside a45247.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Carnevale of Horrors 23dd51/Custom_Model_Bag Set-aside a45247.yaml new file mode 100644 index 000000000..4501ed12a --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Carnevale of Horrors 23dd51/Custom_Model_Bag Set-aside a45247.yaml @@ -0,0 +1,57 @@ +Autoraise: true +ColorDiffuse: + b: 0.02148666 + g: 0.00100758043 + r: 0.02148666 +ContainedObjects: +- !include 'Custom_Model_Bag Set-aside a45247/Card Cnidathqua 4d3a26.yaml' +- !include 'Custom_Model_Bag Set-aside a45247/Deck Masks 8bacba.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: Carnevale of Horrors +GMNotes: '' +GUID: a45247 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +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.69670069 + posY: 1.55831683 + posZ: 14.2787018 + rotX: 359.955139 + rotY: 224.997971 + rotZ: 0.06867091 + scaleX: 2.0 + scaleY: 2.0 + scaleZ: 2.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Carnevale of Horrors 23dd51/Custom_Model_Bag Set-aside a45247/Card Cnidathqua 4d3a26.yaml new file mode 100644 index 000000000..c2f853d34 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Carnevale of Horrors 23dd51/Custom_Model_Bag Set-aside a45247/Card Cnidathqua 4d3a26.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 3700 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '37': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642320624/6D56E471941AB4D0DEEDAA5DE4780DFDF303016C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: Monster. Ancient One. Elite. +GMNotes: '' +GUID: 4d3a26 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Cnidathqua +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 18.177803 + posY: 3.58059716 + posZ: 7.50595856 + rotX: 359.932861 + rotY: 270.000458 + rotZ: 0.0171273872 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Carnevale of Horrors 23dd51/Custom_Model_Bag Set-aside a45247/Deck Masks 8bacba.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Carnevale of Horrors 23dd51/Custom_Model_Bag Set-aside a45247/Deck Masks 8bacba.yaml new file mode 100644 index 000000000..b4214c31e --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Carnevale of Horrors 23dd51/Custom_Model_Bag Set-aside a45247/Deck Masks 8bacba.yaml @@ -0,0 +1,207 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 3903 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '39': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642329861/9768E9FE9C71E74721340D0D81607F534E54A3DE/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Item. Mask. + GMNotes: '' + GUID: 080d4a + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Pantalone + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -14.9420662 + posY: 1.401764 + posZ: 8.40665 + rotX: 0.000315335958 + rotY: 269.999847 + rotZ: 180.89122 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3904 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '39': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642329861/9768E9FE9C71E74721340D0D81607F534E54A3DE/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Item. Mask. + GMNotes: '' + GUID: f3b3a9 + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Gilded Volto + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -14.7416964 + posY: 1.41517723 + posZ: 8.305984 + rotX: 0.000924957043 + rotY: 269.9988 + rotZ: 180.896164 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3902 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '39': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642329861/9768E9FE9C71E74721340D0D81607F534E54A3DE/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Item. Mask. + GMNotes: '' + GUID: 0f54e7 + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Medico Della Peste + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -14.8846636 + posY: 1.56614673 + posZ: 8.512352 + rotX: -0.002297078 + rotY: 269.9913 + rotZ: 190.029938 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3901 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '39': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642329861/9768E9FE9C71E74721340D0D81607F534E54A3DE/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Item. Mask. + GMNotes: '' + GUID: a42f33 + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Bauta + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -14.8347235 + posY: 1.38606465 + posZ: 8.175481 + rotX: 359.95166 + rotY: 269.993927 + rotZ: 180.06897 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '39': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642329861/9768E9FE9C71E74721340D0D81607F534E54A3DE/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 3903 +- 3904 +- 3902 +- 3901 +Description: Carnevale of Horrors +GMNotes: '' +GUID: 8bacba +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Masks +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 18.4524345 + posY: 3.586805 + posZ: 7.9178257 + rotX: 359.938934 + rotY: 270.003448 + rotZ: 180.018784 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Carnevale of Horrors 23dd51/Custom_Tile 12d492.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Carnevale of Horrors 23dd51/Custom_Tile 12d492.yaml new file mode 100644 index 000000000..5982b5963 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Carnevale of Horrors 23dd51/Custom_Tile 12d492.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 12d492 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Tile +Nickname: '' +Snap: true +States: + '1': + 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: '' + GMNotes: '' + GUID: 7234af + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Custom_Tile + Nickname: '' + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -19.0311813 + posY: 1.60704362 + posZ: -3.37726927 + rotX: 359.9201 + rotY: 269.994324 + rotZ: 0.0168826636 + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.62251806 + posZ: -3.83 + rotX: 0.0168718919 + rotY: 179.999924 + rotZ: 0.07993943 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Carnevale of Horrors 23dd51/Custom_Tile 44b0c5.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Carnevale of Horrors 23dd51/Custom_Tile 44b0c5.yaml new file mode 100644 index 000000000..c39c80bfc --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Carnevale of Horrors 23dd51/Custom_Tile 44b0c5.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 44b0c5 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Tile +Nickname: '' +Snap: true +States: + '1': + 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: '' + GMNotes: '' + GUID: 7234af + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Custom_Tile + Nickname: '' + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -19.0311813 + posY: 1.60704362 + posZ: -3.37726927 + rotX: 359.9201 + rotY: 269.994324 + rotZ: 0.0168826636 + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.60424554 + posZ: -3.83 + rotX: 359.983124 + rotY: 0.000105927269 + rotZ: 359.920074 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Carnevale of Horrors 23dd51/Custom_Tile 4d3553.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Carnevale of Horrors 23dd51/Custom_Tile 4d3553.yaml new file mode 100644 index 000000000..e3a0cfd3f --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Carnevale of Horrors 23dd51/Custom_Tile 4d3553.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 4d3553 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Tile +Nickname: '' +Snap: true +States: + '1': + 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: '' + GMNotes: '' + GUID: 7234af + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Custom_Tile + Nickname: '' + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -19.0311813 + posY: 1.60704362 + posZ: -3.37726927 + rotX: 359.9201 + rotY: 269.994324 + rotZ: 0.0168826636 + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.60650992 + posZ: 3.86000013 + rotX: 359.9831 + rotY: 359.984528 + rotZ: 359.920074 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Carnevale of Horrors 23dd51/Custom_Tile 81a6f5.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Carnevale of Horrors 23dd51/Custom_Tile 81a6f5.yaml new file mode 100644 index 000000000..a7b981c4f --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Carnevale of Horrors 23dd51/Custom_Tile 81a6f5.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 81a6f5 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Tile +Nickname: '' +Snap: true +States: + '1': + 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: '' + GMNotes: '' + GUID: 7234af + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Custom_Tile + Nickname: '' + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -19.0311813 + posY: 1.60704362 + posZ: -3.37726927 + rotX: 359.9201 + rotY: 269.994324 + rotZ: 0.0168826636 + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.8136 + posY: 1.61666679 + posZ: -7.551301 + rotX: 0.0798945 + rotY: 90.0 + rotZ: 359.9831 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Carnevale of Horrors 23dd51/Custom_Tile 949c7d.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Carnevale of Horrors 23dd51/Custom_Tile 949c7d.yaml new file mode 100644 index 000000000..25771e3b2 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Carnevale of Horrors 23dd51/Custom_Tile 949c7d.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 949c7d +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Tile +Nickname: '' +Snap: true +States: + '1': + 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: '' + GMNotes: '' + GUID: 7234af + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Custom_Tile + Nickname: '' + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -19.0311813 + posY: 1.60704362 + posZ: -3.37726927 + rotX: 359.9201 + rotY: 269.994324 + rotZ: 0.0168826636 + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.62478256 + posZ: 3.86000085 + rotX: 0.0168718323 + rotY: 179.999985 + rotZ: 0.07993617 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Carnevale of Horrors 23dd51/Custom_Tile ab0576.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Carnevale of Horrors 23dd51/Custom_Tile ab0576.yaml new file mode 100644 index 000000000..97d49d88f --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Carnevale of Horrors 23dd51/Custom_Tile ab0576.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: ab0576 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Tile +Nickname: '' +Snap: true +States: + '1': + 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: '' + GMNotes: '' + GUID: 7234af + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Custom_Tile + Nickname: '' + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -19.0311813 + posY: 1.60704362 + posZ: -3.37726927 + rotX: 359.9201 + rotY: 269.994324 + rotZ: 0.0168826636 + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.6238 + posY: 1.61239552 + posZ: 7.25540066 + rotX: 359.9201 + rotY: 269.999756 + rotZ: 0.0168998484 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Carnevale of Horrors 23dd51/Custom_Tile b676d8.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Carnevale of Horrors 23dd51/Custom_Tile b676d8.yaml new file mode 100644 index 000000000..e155a4b86 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Carnevale of Horrors 23dd51/Custom_Tile b676d8.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: b676d8 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Tile +Nickname: '' +Snap: true +States: + '1': + 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: '' + GMNotes: '' + GUID: 7234af + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Custom_Tile + Nickname: '' + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -19.0311813 + posY: 1.60704362 + posZ: -3.37726927 + rotX: 359.9201 + rotY: 269.994324 + rotZ: 0.0168826636 + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.6237 + posY: 1.608022 + posZ: -7.596501 + rotX: 0.07989453 + rotY: 90.00007 + rotZ: 359.9831 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Carnevale of Horrors 23dd51/Custom_Tile fde05d.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Carnevale of Horrors 23dd51/Custom_Tile fde05d.yaml new file mode 100644 index 000000000..11d599ed6 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Carnevale of Horrors 23dd51/Custom_Tile fde05d.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: fde05d +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Tile +Nickname: '' +Snap: true +States: + '1': + 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: '' + GMNotes: '' + GUID: 7234af + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Custom_Tile + Nickname: '' + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -19.0311813 + posY: 1.60704362 + posZ: -3.37726927 + rotX: 359.9201 + rotY: 269.994324 + rotZ: 0.0168826636 + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.0646 + posY: 1.62147367 + posZ: 7.5852 + rotX: 359.9201 + rotY: 269.999939 + rotZ: 0.0168983638 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Carnevale of Horrors 23dd51/Custom_Tile Carnevale of Horrors a5891b.ttslua b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Carnevale of Horrors 23dd51/Custom_Tile Carnevale of Horrors a5891b.ttslua new file mode 100644 index 000000000..6b3e44012 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Carnevale of Horrors 23dd51/Custom_Tile Carnevale of Horrors a5891b.ttslua @@ -0,0 +1,13 @@ +name = 'Carnevale of Horrors' + +function onLoad() + Global.call('createSetupButtons', {object=self, key=name}) +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 diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Carnevale of Horrors 23dd51/Custom_Tile Carnevale of Horrors a5891b.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Carnevale of Horrors 23dd51/Custom_Tile Carnevale of Horrors a5891b.yaml new file mode 100644 index 000000000..8e11140fe --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Carnevale of Horrors 23dd51/Custom_Tile Carnevale of Horrors a5891b.yaml @@ -0,0 +1,42 @@ +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 +GMNotes: '' +GUID: a5891b +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Tile Carnevale of Horrors a5891b.ttslua' +LuaScriptState: '' +Name: Custom_Tile +Nickname: Carnevale of Horrors +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.55390024 + posY: 1.58209658 + posZ: -14.7800016 + rotX: 359.919739 + rotY: 270.0027 + rotZ: 0.0168340728 + scaleX: 2.2 + scaleY: 1.0 + scaleZ: 2.2 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Carnevale of Horrors 23dd51/Deck 2e4956.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Carnevale of Horrors 23dd51/Deck 2e4956.yaml new file mode 100644 index 000000000..2bbb76670 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Carnevale of Horrors 23dd51/Deck 2e4956.yaml @@ -0,0 +1,344 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 234509 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2345': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/87094793642370806/651C0A7485AEBE7DF8F893A54A506AFA1165FC3B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642364764/EBA4638B8847E97B3C153A928955F0A536677F8F/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Venice. + GMNotes: '' + GUID: f2d9d3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Streets of Venice + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -11.747365 + posY: 1.67237759 + posZ: 9.495608 + rotX: 359.914276 + rotY: 269.982147 + rotZ: 0.0237629414 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234513 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2345': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/87094793642370806/651C0A7485AEBE7DF8F893A54A506AFA1165FC3B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642364764/EBA4638B8847E97B3C153A928955F0A536677F8F/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Venice. + GMNotes: '' + GUID: 8d6af5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Flooded Square + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -11.7395535 + posY: 1.81767607 + posZ: 9.351762 + rotX: 359.899078 + rotY: 270.01886 + rotZ: 0.0523137152 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234510 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2345': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/87094793642370806/651C0A7485AEBE7DF8F893A54A506AFA1165FC3B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642364764/EBA4638B8847E97B3C153A928955F0A536677F8F/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Venice. Bridge. + GMNotes: '' + GUID: 2f2498 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Rialto Bridge + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -12.0854568 + posY: 1.83561885 + posZ: 9.121994 + rotX: 359.918365 + rotY: 269.99884 + rotZ: 0.0204047877 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234515 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2345': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/87094793642370806/651C0A7485AEBE7DF8F893A54A506AFA1165FC3B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642364764/EBA4638B8847E97B3C153A928955F0A536677F8F/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Venice. + GMNotes: '' + GUID: '124288' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Guardian + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -11.9377069 + posY: 1.82179582 + posZ: 9.00359249 + rotX: 359.904236 + rotY: 269.994873 + rotZ: 0.0275308024 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234514 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2345': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/87094793642370806/651C0A7485AEBE7DF8F893A54A506AFA1165FC3B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642364764/EBA4638B8847E97B3C153A928955F0A536677F8F/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Venice. Bridge. + GMNotes: '' + GUID: 48d3db + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Accademia Bridge + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -11.7704182 + posY: 1.81965172 + posZ: 9.226203 + rotX: 359.9134 + rotY: 269.997467 + rotZ: 0.0181669053 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234512 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2345': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/87094793642370806/651C0A7485AEBE7DF8F893A54A506AFA1165FC3B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642364764/EBA4638B8847E97B3C153A928955F0A536677F8F/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Venice. Bridge. + GMNotes: '' + GUID: 04cdf3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Bridge of Sighs + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -11.3814936 + posY: 1.82169175 + posZ: 9.216619 + rotX: 359.919037 + rotY: 269.999023 + rotZ: 0.0207705069 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234511 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2345': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/87094793642370806/651C0A7485AEBE7DF8F893A54A506AFA1165FC3B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642364764/EBA4638B8847E97B3C153A928955F0A536677F8F/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Venice. + GMNotes: '' + GUID: 4260f0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Venetian Garden + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -11.6972761 + posY: 1.82716215 + posZ: 9.4662075 + rotX: 359.918427 + rotY: 269.9987 + rotZ: 0.0175046977 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2345': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/87094793642370806/651C0A7485AEBE7DF8F893A54A506AFA1165FC3B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642364764/EBA4638B8847E97B3C153A928955F0A536677F8F/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 234509 +- 234513 +- 234510 +- 234515 +- 234514 +- 234512 +- 234511 +Description: '' +GMNotes: '' +GUID: 2e4956 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -11.6655989 + posY: 1.67568135 + posZ: 9.0735 + rotX: 359.9201 + rotY: 269.979248 + rotZ: 0.0169060677 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Carnevale of Horrors 23dd51/Deck Act Deck 655937.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Carnevale of Horrors 23dd51/Deck Act Deck 655937.yaml new file mode 100644 index 000000000..d6a754b72 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Carnevale of Horrors 23dd51/Deck Act Deck 655937.yaml @@ -0,0 +1,172 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 269906 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2651': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/87094793642370806/651C0A7485AEBE7DF8F893A54A506AFA1165FC3B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642364764/EBA4638B8847E97B3C153A928955F0A536677F8F/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 3 + GMNotes: '' + GUID: e15f60 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Row! + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 27.54018 + posY: 1.51342094 + posZ: -3.36515474 + rotX: 0.0132831708 + rotY: 179.982437 + rotZ: 0.09503044 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 269905 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2651': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/87094793642370806/651C0A7485AEBE7DF8F893A54A506AFA1165FC3B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642364764/EBA4638B8847E97B3C153A928955F0A536677F8F/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 2 + GMNotes: '' + GUID: e76b4f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Get to the Boats! + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 24.3730145 + posY: 1.59269965 + posZ: -2.691619 + rotX: 2.74752235 + rotY: 180.016174 + rotZ: 0.08150694 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 269904 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2651': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/87094793642370806/651C0A7485AEBE7DF8F893A54A506AFA1165FC3B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642364764/EBA4638B8847E97B3C153A928955F0A536677F8F/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 1 + GMNotes: '' + GUID: fda7fe + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Carnevale Conspiracy + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 24.204607 + posY: 1.741171 + posZ: -2.51756978 + rotX: 2.7986486 + rotY: 179.934555 + rotZ: 0.09042084 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2699': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/87094793642370806/651C0A7485AEBE7DF8F893A54A506AFA1165FC3B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642364764/EBA4638B8847E97B3C153A928955F0A536677F8F/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 269906 +- 269905 +- 269904 +Description: Carnevale of Horrors +GMNotes: '' +GUID: '655937' +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Act Deck +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.68849969 + posY: 1.65499723 + posZ: -5.0485 + rotX: 0.0167763159 + rotY: 180.041885 + rotZ: 0.0802699849 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Carnevale of Horrors 23dd51/Deck Agenda Deck a49fb6.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Carnevale of Horrors 23dd51/Deck Agenda Deck a49fb6.yaml new file mode 100644 index 000000000..4b6be305c --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Carnevale of Horrors 23dd51/Deck Agenda Deck a49fb6.yaml @@ -0,0 +1,172 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 269803 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2651': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/87094793642370806/651C0A7485AEBE7DF8F893A54A506AFA1165FC3B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642364764/EBA4638B8847E97B3C153A928955F0A536677F8F/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 3 + GMNotes: '' + GUID: 92e6b7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Chaos in the Carnevale + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 27.407402 + posY: 1.51493168 + posZ: 0.181117237 + rotX: 0.009901583 + rotY: 179.997787 + rotZ: 0.0789340958 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 269802 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2651': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/87094793642370806/651C0A7485AEBE7DF8F893A54A506AFA1165FC3B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642364764/EBA4638B8847E97B3C153A928955F0A536677F8F/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 2 + GMNotes: '' + GUID: b4b83b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Shadow of the Eclipse + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 24.4682827 + posY: 1.51917338 + posZ: 0.341863126 + rotX: 0.014265894 + rotY: 179.999374 + rotZ: 0.07856076 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 269801 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2651': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/87094793642370806/651C0A7485AEBE7DF8F893A54A506AFA1165FC3B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642364764/EBA4638B8847E97B3C153A928955F0A536677F8F/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 1 + GMNotes: '' + GUID: ec65b0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Festivities Begin + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 24.0605373 + posY: 1.659814 + posZ: 0.5514509 + rotX: 0.0119177354 + rotY: 180.0018 + rotZ: 0.0288524665 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2698': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/87094793642370806/651C0A7485AEBE7DF8F893A54A506AFA1165FC3B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642364764/EBA4638B8847E97B3C153A928955F0A536677F8F/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 269803 +- 269802 +- 269801 +Description: Carnevale of Horrors +GMNotes: '' +GUID: a49fb6 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Agenda Deck +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.72469974 + posY: 1.65664113 + posZ: 0.373300433 + rotX: 0.0168945473 + rotY: 179.957489 + rotZ: 0.08024525 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Carnevale of Horrors 23dd51/Deck Encounter Deck 4cc43d.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Carnevale of Horrors 23dd51/Deck Encounter Deck 4cc43d.yaml new file mode 100644 index 000000000..a46b1b9d4 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Carnevale of Horrors 23dd51/Deck Encounter Deck 4cc43d.yaml @@ -0,0 +1,1109 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 3712 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '37': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642320624/6D56E471941AB4D0DEEDAA5DE4780DFDF303016C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Blunder. + GMNotes: '' + GUID: f39f35 + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Lost in Venice + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -15.9259281 + posY: 1.52641475 + posZ: -2.48130512 + rotX: -0.00070781837 + rotY: 270.0011 + rotZ: 180.330429 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3713 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '37': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642320624/6D56E471941AB4D0DEEDAA5DE4780DFDF303016C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Blunder. + GMNotes: '' + GUID: 8f3ad2 + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Lost in Venice + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -15.219142 + posY: 1.52637482 + posZ: -2.13447332 + rotX: 0.00029167044 + rotY: 269.997223 + rotZ: 180.842026 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3714 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '37': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642320624/6D56E471941AB4D0DEEDAA5DE4780DFDF303016C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Blunder. + GMNotes: '' + GUID: ac4b72 + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Lost in Venice + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -15.7360477 + posY: 1.51812291 + posZ: -2.500821 + rotX: -0.0010236213 + rotY: 270.0087 + rotZ: 181.07663 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3715 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '37': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642320624/6D56E471941AB4D0DEEDAA5DE4780DFDF303016C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: 97cc02 + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Watchers' Gaze + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -15.88548 + posY: 1.49761307 + posZ: -2.01502013 + rotX: -0.00167062157 + rotY: 270.00946 + rotZ: 180.297272 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3716 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '37': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642320624/6D56E471941AB4D0DEEDAA5DE4780DFDF303016C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: 10d41c + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Watchers' Gaze + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -15.7946987 + posY: 1.497315 + posZ: -2.32573652 + rotX: -0.000394977047 + rotY: 269.998627 + rotZ: 180.853485 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3717 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '37': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642320624/6D56E471941AB4D0DEEDAA5DE4780DFDF303016C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: fe04b3 + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Watchers' Gaze + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -15.2148905 + posY: 1.48088086 + posZ: -2.38565469 + rotX: -0.00038820022 + rotY: 270.002625 + rotZ: 180.461624 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3721 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '37': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642320624/6D56E471941AB4D0DEEDAA5DE4780DFDF303016C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: 32a6e2 + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Mesmerize + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -15.7603874 + posY: 1.47872412 + posZ: -2.28992748 + rotX: -4.03408048e-05 + rotY: 269.9999 + rotZ: 180.811646 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3722 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '37': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642320624/6D56E471941AB4D0DEEDAA5DE4780DFDF303016C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: 79e1a4 + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Mesmerize + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -15.750433 + posY: 1.52796626 + posZ: -2.54803324 + rotX: 357.2228 + rotY: 270.066681 + rotZ: 179.987625 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3703 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '37': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642320624/6D56E471941AB4D0DEEDAA5DE4780DFDF303016C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Cultist. + GMNotes: '' + GUID: 27fab1 + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Carnevale Sentinel + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -15.6075039 + posY: 1.45183182 + posZ: -2.42943883 + rotX: 1.29666878e-05 + rotY: 270.0 + rotZ: 180.466324 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3704 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '37': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642320624/6D56E471941AB4D0DEEDAA5DE4780DFDF303016C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Cultist. + GMNotes: '' + GUID: dbec9d + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Carnevale Sentinel + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -14.8517389 + posY: 1.51690042 + posZ: -2.06553817 + rotX: 359.99295 + rotY: 270.016083 + rotZ: 184.703857 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3705 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '37': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642320624/6D56E471941AB4D0DEEDAA5DE4780DFDF303016C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Cultist. + GMNotes: '' + GUID: f119dc + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Carnevale Sentinel + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -15.5699024 + posY: 1.6033349 + posZ: -2.02970481 + rotX: 359.991882 + rotY: 269.990021 + rotZ: 190.061508 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3706 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '37': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642320624/6D56E471941AB4D0DEEDAA5DE4780DFDF303016C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Tentacle. + GMNotes: '' + GUID: '649527' + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Writhing Appendage + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -18.9701538 + posY: 1.43150651 + posZ: -7.99135351 + rotX: 0.000267818134 + rotY: 270.000153 + rotZ: 181.0502 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3707 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '37': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642320624/6D56E471941AB4D0DEEDAA5DE4780DFDF303016C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Tentacle. + GMNotes: '' + GUID: e89a0a + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Writhing Appendage + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -18.9070683 + posY: 1.42141747 + posZ: -8.095666 + rotX: -7.41715849e-05 + rotY: 270.0146 + rotZ: 181.1256 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3708 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '37': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642320624/6D56E471941AB4D0DEEDAA5DE4780DFDF303016C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Tentacle. + GMNotes: '' + GUID: b39ab7 + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Writhing Appendage + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -18.8930378 + posY: 1.39427125 + posZ: -7.932404 + rotX: 359.9656 + rotY: 270.014984 + rotZ: 180.023392 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3711 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '37': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642320624/6D56E471941AB4D0DEEDAA5DE4780DFDF303016C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: febff1 + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Mass Hysteria + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -19.2239838 + posY: 1.40185666 + posZ: -7.74751472 + rotX: -0.005253056 + rotY: 270.029755 + rotZ: 180.902954 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3709 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '37': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642320624/6D56E471941AB4D0DEEDAA5DE4780DFDF303016C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: 95047c + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Mass Hysteria + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -18.7957268 + posY: 1.38304126 + posZ: -7.53972626 + rotX: -8.77786e-05 + rotY: 269.999634 + rotZ: 180.367828 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3710 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '37': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642320624/6D56E471941AB4D0DEEDAA5DE4780DFDF303016C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: 27c1bf + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Mass Hysteria + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -19.0537262 + posY: 1.36656833 + posZ: -7.293039 + rotX: -0.0006381625 + rotY: 269.9993 + rotZ: 179.844238 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3718 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '37': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642320624/6D56E471941AB4D0DEEDAA5DE4780DFDF303016C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: 027b2f + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Chaos in the Water + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -18.4968681 + posY: 1.35873663 + posZ: -7.70947647 + rotX: 0.00194527663 + rotY: 269.992859 + rotZ: 180.115082 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3719 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '37': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642320624/6D56E471941AB4D0DEEDAA5DE4780DFDF303016C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: 399d65 + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Chaos in the Water + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -19.433382 + posY: 1.4190892 + posZ: -7.4477067 + rotX: 0.00017678451 + rotY: 269.99707 + rotZ: 181.194244 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3720 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '37': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642320624/6D56E471941AB4D0DEEDAA5DE4780DFDF303016C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: 4448e3 + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Chaos in the Water + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -19.5019665 + posY: 1.40523982 + posZ: -7.55648 + rotX: -0.000234547639 + rotY: 270.001862 + rotZ: 180.649719 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3724 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '37': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642320624/6D56E471941AB4D0DEEDAA5DE4780DFDF303016C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Scheme. + GMNotes: '' + GUID: '453252' + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Abduction + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -22.632988 + posY: 1.231643 + posZ: 5.93134356 + rotX: -0.00215101615 + rotY: 270.0143 + rotZ: -0.00017107313 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3723 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '37': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642320624/6D56E471941AB4D0DEEDAA5DE4780DFDF303016C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Scheme. + GMNotes: '' + GUID: c4701c + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Abduction + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -22.6116524 + posY: 1.37939727 + posZ: 6.31485 + rotX: 359.948669 + rotY: 270.0029 + rotZ: 359.912842 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3726 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '37': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642320624/6D56E471941AB4D0DEEDAA5DE4780DFDF303016C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: 916af7 + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Acrid Miasma + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -22.5659027 + posY: 1.23167384 + posZ: 3.24786544 + rotX: -0.00212180428 + rotY: 269.987122 + rotZ: -0.00125146774 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3725 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '37': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642320624/6D56E471941AB4D0DEEDAA5DE4780DFDF303016C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: 83c3ec + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Acrid Miasma + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -22.71234 + posY: 1.37919855 + posZ: 3.4499 + rotX: 359.989838 + rotY: 270.00885 + rotZ: 0.0292052217 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3701 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '37': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642320624/6D56E471941AB4D0DEEDAA5DE4780DFDF303016C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Deep One. + GMNotes: '' + GUID: 9b0f6c + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Poleman + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -19.06133 + posY: 1.38213992 + posZ: 6.38043642 + rotX: 0.00238529639 + rotY: 270.013367 + rotZ: 179.984879 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3702 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '37': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642320624/6D56E471941AB4D0DEEDAA5DE4780DFDF303016C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Deep One. + GMNotes: '' + GUID: 470ba8 + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Poleman + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -19.3332233 + posY: 1.23450589 + posZ: 6.619837 + rotX: -0.00164669973 + rotY: 269.670227 + rotZ: 180.00087 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '37': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642320624/6D56E471941AB4D0DEEDAA5DE4780DFDF303016C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 3712 +- 3713 +- 3714 +- 3715 +- 3716 +- 3717 +- 3721 +- 3722 +- 3703 +- 3704 +- 3705 +- 3706 +- 3707 +- 3708 +- 3711 +- 3709 +- 3710 +- 3718 +- 3719 +- 3720 +- 3724 +- 3723 +- 3726 +- 3725 +- 3701 +- 3702 +Description: Carnevale of Horrors +GMNotes: '' +GUID: 4cc43d +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Encounter Deck +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.92750025 + posY: 1.75039184 + posZ: 5.75710058 + rotX: 359.919739 + rotY: 269.969727 + rotZ: 180.016861 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Carnevale of Horrors 23dd51/Deck Masked Carnevale-Goer bb43b8.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Carnevale of Horrors 23dd51/Deck Masked Carnevale-Goer bb43b8.yaml new file mode 100644 index 000000000..cc55f50b6 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Carnevale of Horrors 23dd51/Deck Masked Carnevale-Goer bb43b8.yaml @@ -0,0 +1,344 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 234616 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2346': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/87094793642370806/651C0A7485AEBE7DF8F893A54A506AFA1165FC3B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642364764/EBA4638B8847E97B3C153A928955F0A536677F8F/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Carnevale. + GMNotes: '' + GUID: be4dc6 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Masked Carnevale-Goer + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 25.1794186 + posY: 1.52068734 + posZ: 8.88439751 + rotX: 359.918671 + rotY: 270.0005 + rotZ: 0.0165567044 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234620 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2346': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/87094793642370806/651C0A7485AEBE7DF8F893A54A506AFA1165FC3B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642364764/EBA4638B8847E97B3C153A928955F0A536677F8F/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Carnevale. + GMNotes: '' + GUID: '659820' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Masked Carnevale-Goer + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 23.3176689 + posY: 1.64576364 + posZ: 8.302763 + rotX: 4.432067 + rotY: 270.0642 + rotZ: 0.01653068 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234621 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2346': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/87094793642370806/651C0A7485AEBE7DF8F893A54A506AFA1165FC3B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642364764/EBA4638B8847E97B3C153A928955F0A536677F8F/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Carnevale. + GMNotes: '' + GUID: '105277' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Masked Carnevale-Goer + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 21.99391 + posY: 1.52614319 + posZ: 12.0150309 + rotX: 359.921478 + rotY: 269.997864 + rotZ: 0.0191307142 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234622 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2346': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/87094793642370806/651C0A7485AEBE7DF8F893A54A506AFA1165FC3B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642364764/EBA4638B8847E97B3C153A928955F0A536677F8F/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Carnevale. + GMNotes: '' + GUID: 44845f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Masked Carnevale-Goer + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -11.6248846 + posY: 1.809609 + posZ: 11.7102118 + rotX: 359.696228 + rotY: 270.002838 + rotZ: 358.658 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234618 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2346': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/87094793642370806/651C0A7485AEBE7DF8F893A54A506AFA1165FC3B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642364764/EBA4638B8847E97B3C153A928955F0A536677F8F/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Carnevale. + GMNotes: '' + GUID: f64f68 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Masked Carnevale-Goer + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -11.6929932 + posY: 1.67383718 + posZ: 14.665061 + rotX: 359.920258 + rotY: 270.0008 + rotZ: 0.0164641943 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234619 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2346': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/87094793642370806/651C0A7485AEBE7DF8F893A54A506AFA1165FC3B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642364764/EBA4638B8847E97B3C153A928955F0A536677F8F/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Carnevale. + GMNotes: '' + GUID: 0a2381 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Masked Carnevale-Goer + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -11.666996 + posY: 1.81943834 + posZ: 14.7776384 + rotX: 359.9322 + rotY: 269.997681 + rotZ: 359.952057 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234617 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2346': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/87094793642370806/651C0A7485AEBE7DF8F893A54A506AFA1165FC3B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642364764/EBA4638B8847E97B3C153A928955F0A536677F8F/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Carnevale. + GMNotes: '' + GUID: 1d6b52 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Masked Carnevale-Goer + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -11.7733593 + posY: 1.83848667 + posZ: 14.4642506 + rotX: 359.9358 + rotY: 269.9989 + rotZ: 359.824066 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2346': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/87094793642370806/651C0A7485AEBE7DF8F893A54A506AFA1165FC3B/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642364764/EBA4638B8847E97B3C153A928955F0A536677F8F/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 234616 +- 234620 +- 234621 +- 234622 +- 234618 +- 234619 +- 234617 +Description: Carnevale of Horrors +GMNotes: '' +GUID: bb43b8 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Masked Carnevale-Goer +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -11.5595675 + posY: 1.67635322 + posZ: 11.8571711 + rotX: 359.9201 + rotY: 269.988922 + rotZ: 0.0168931615 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Carnevale of Horrors 23dd51/Deck SetupResolution d5e519.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Carnevale of Horrors 23dd51/Deck SetupResolution d5e519.yaml new file mode 100644 index 000000000..86139c78a --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Carnevale of Horrors 23dd51/Deck SetupResolution d5e519.yaml @@ -0,0 +1,344 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 265101 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/cZ3rUH5.jpg + FaceURL: https://i.imgur.com/vLH2OYg.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 810ae4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 17.05098 + posY: 1.680821 + posZ: -5.34100246 + rotX: 359.935242 + rotY: 269.999969 + rotZ: 180.01059 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265112 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/cZ3rUH5.jpg + FaceURL: https://i.imgur.com/vLH2OYg.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: '124422' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 17.10192 + posY: 1.67575192 + posZ: -5.27401733 + rotX: 359.934753 + rotY: 270.0 + rotZ: 180.008926 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265113 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/cZ3rUH5.jpg + FaceURL: https://i.imgur.com/vLH2OYg.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 8c4fa7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 17.185133 + posY: 1.6739769 + posZ: -5.47358561 + rotX: 359.9365 + rotY: 270.000183 + rotZ: 179.911591 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265110 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/cZ3rUH5.jpg + FaceURL: https://i.imgur.com/vLH2OYg.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: b68d07 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -10.316041 + posY: 1.81215644 + posZ: -4.195695 + rotX: 0.8196856 + rotY: 270.0044 + rotZ: 181.290009 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265102 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/cZ3rUH5.jpg + FaceURL: https://i.imgur.com/vLH2OYg.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 2fa708 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -10.0452175 + posY: 1.78026557 + posZ: -3.85832858 + rotX: 359.932922 + rotY: 269.988464 + rotZ: 182.68924 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265111 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/cZ3rUH5.jpg + FaceURL: https://i.imgur.com/vLH2OYg.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 888bfe + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -9.979815 + posY: 1.78225672 + posZ: -3.467246 + rotX: 359.9263 + rotY: 269.987732 + rotZ: 182.577972 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265100 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/cZ3rUH5.jpg + FaceURL: https://i.imgur.com/vLH2OYg.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 8c4fa7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -9.97907 + posY: 1.66900992 + posZ: -3.798508 + rotX: 359.910736 + rotY: 270.021973 + rotZ: 180.009125 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/cZ3rUH5.jpg + FaceURL: https://i.imgur.com/vLH2OYg.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 265101 +- 265112 +- 265113 +- 265110 +- 265102 +- 265111 +- 265100 +Description: '' +GMNotes: '' +GUID: d5e519 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Setup/Resolution +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.40600061 + posY: 1.55468285 + posZ: -23.1512012 + rotX: 359.920135 + rotY: 269.9986 + rotZ: 0.0168786552 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Consternation on the Constellation 0ec730.ttslua b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Consternation on the Constellation 0ec730.ttslua new file mode 100644 index 000000000..46067f58e --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Consternation on the Constellation 0ec730.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.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.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 791837/Custom_Model_Bag Consternation on the Constellation 0ec730.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Consternation on the Constellation 0ec730.yaml new file mode 100644 index 000000000..53382cfe3 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Consternation on the Constellation 0ec730.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 Consternation on the Constellation 0ec730/Deck Setup + 370ae5.yaml' +- !include 'Custom_Model_Bag Consternation on the Constellation 0ec730/Deck Resolution + 011e57.yaml' +- !include 'Custom_Model_Bag Consternation on the Constellation 0ec730/Custom_Model_Bag + Set-aside be5b52.yaml' +- !include 'Custom_Model_Bag Consternation on the Constellation 0ec730/Deck Encounter + Deck a1514c.yaml' +- !include 'Custom_Model_Bag Consternation on the Constellation 0ec730/Deck Agenda + Deck 14fd91.yaml' +- !include 'Custom_Model_Bag Consternation on the Constellation 0ec730/Deck Act Deck + c34f49.yaml' +- !include 'Custom_Model_Bag Consternation on the Constellation 0ec730/Card Scenario + 4339b6.yaml' +- !include 'Custom_Model_Bag Consternation on the Constellation 0ec730/Bag Additional + locations d14543.yaml' +- !include 'Custom_Model_Bag Consternation on the Constellation 0ec730/Custom_Tile 68e1d9.yaml' +- !include 'Custom_Model_Bag Consternation on the Constellation 0ec730/Custom_Tile 7b0f48.yaml' +- !include 'Custom_Model_Bag Consternation on the Constellation 0ec730/Custom_Tile be5d2b.yaml' +- !include 'Custom_Model_Bag Consternation on the Constellation 0ec730/Custom_Tile 4736d9.yaml' +- !include 'Custom_Model_Bag Consternation on the Constellation 0ec730/Card Order + Enforcer bf0eaa.yaml' +- !include 'Custom_Model_Bag Consternation on the Constellation 0ec730/Card Cargo + Room 2f4093.yaml' +- !include 'Custom_Model_Bag Consternation on the Constellation 0ec730/Custom_Tile 8f2b3d.yaml' +- !include 'Custom_Model_Bag Consternation on the Constellation 0ec730/Custom_Tile 7234af.yaml' +- !include 'Custom_Model_Bag Consternation on the Constellation 0ec730/Card Open Water + c5a4bf.yaml' +- !include 'Custom_Model_Bag Consternation on the Constellation 0ec730/Custom_Tile + Consternation on the Constellation bbb70a.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/762723517666349452/B8551E1479CED3BADEF4AF3B0A727EB7768C0289/ + MaterialIndex: 3 + MeshURL: https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj + NormalURL: '' + TypeIndex: 6 +Description: '' +GMNotes: '' +GUID: 0ec730 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Model_Bag Consternation on the Constellation 0ec730.ttslua' +LuaScriptState: '{"ml":{"011e57":{"lock":false,"pos":{"x":7.4136,"y":1.5493,"z":-1.6503},"rot":{"x":359.9201,"y":269.9999,"z":180.0169}},"14fd91":{"lock":false,"pos":{"x":-2.7248,"y":1.6551,"z":0.3733},"rot":{"x":0.0168,"y":180.0145,"z":0.0803}},"2f4093":{"lock":false,"pos":{"x":-30.2242,"y":1.6976,"z":7.57},"rot":{"x":359.9201,"y":269.9995,"z":0.0169}},"370ae5":{"lock":false,"pos":{"x":7.3549,"y":1.5428,"z":0.9084},"rot":{"x":359.9201,"y":270,"z":0.0169}},"4339b6":{"lock":false,"pos":{"x":-3.956,"y":1.6556,"z":-10.4412},"rot":{"x":359.9197,"y":270.0055,"z":0.0168}},"4736d9":{"lock":false,"pos":{"x":-10.0405,"y":1.5945,"z":-3.243},"rot":{"x":359.9201,"y":270.0059,"z":0.0169}},"68e1d9":{"lock":false,"pos":{"x":-10.0449,"y":1.5965,"z":3.4829},"rot":{"x":359.9201,"y":269.9974,"z":0.0169}},"7234af":{"lock":false,"pos":{"x":-33.3859,"y":1.6313,"z":11.159},"rot":{"x":359.9316,"y":315.0293,"z":359.9554}},"7b0f48":{"lock":false,"pos":{"x":-10.0533,"y":1.5959,"z":1.2614},"rot":{"x":359.9201,"y":269.9979,"z":0.0169}},"8f2b3d":{"lock":false,"pos":{"x":-33.341,"y":1.6301,"z":7.293},"rot":{"x":359.9201,"y":270.0001,"z":0.0169}},"a1514c":{"lock":false,"pos":{"x":-3.9277,"y":1.7184,"z":5.7572},"rot":{"x":359.9197,"y":269.9999,"z":180.0168}},"bbb70a":{"lock":false,"pos":{"x":-3.8848,"y":1.5826,"z":-14.7351},"rot":{"x":359.9197,"y":270.0318,"z":0.0168}},"be5b52":{"lock":false,"pos":{"x":1.6968,"y":1.5583,"z":14.2787},"rot":{"x":359.9551,"y":224.9981,"z":0.0687}},"be5d2b":{"lock":false,"pos":{"x":-10.0804,"y":1.5953,"z":-1.0163},"rot":{"x":359.9201,"y":269.9913,"z":0.0169}},"bf0eaa":{"lock":false,"pos":{"x":-30.2261,"y":1.6983,"z":10.1027},"rot":{"x":359.9201,"y":269.9998,"z":0.0169}},"c34f49":{"lock":false,"pos":{"x":-2.6886,"y":1.6535,"z":-5.0485},"rot":{"x":0.0168,"y":180,"z":0.0803}},"c5a4bf":{"lock":false,"pos":{"x":-36.7731,"y":1.709,"z":15.19},"rot":{"x":359.9201,"y":270,"z":0.0169}},"d14543":{"lock":false,"pos":{"x":-12.2221,"y":1.4168,"z":11.1913},"rot":{"x":0.08,"y":89.9905,"z":359.9831}}}}' +MaterialIndex: -1 +MeshIndex: -1 +Name: Custom_Model_Bag +Nickname: Consternation on the Constellation +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 16.4952469 + posY: 3.45468283 + posZ: -31.0068913 + rotX: 359.983246 + rotY: 270.000061 + rotZ: 0.00353695918 + scaleX: 2.21 + scaleY: 0.46 + scaleZ: 2.42 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Consternation on the Constellation 0ec730/Bag Additional locations d14543.ttslua b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Consternation on the Constellation 0ec730/Bag Additional locations d14543.ttslua new file mode 100644 index 000000000..f82d90245 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Consternation on the Constellation 0ec730/Bag Additional locations d14543.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 791837/Custom_Model_Bag Consternation on the Constellation 0ec730/Bag Additional locations d14543.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Consternation on the Constellation 0ec730/Bag Additional locations d14543.yaml new file mode 100644 index 000000000..51bf5a9c7 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Consternation on the Constellation 0ec730/Bag Additional locations d14543.yaml @@ -0,0 +1,54 @@ +Autoraise: true +ColorDiffuse: + b: 0.0 + g: 0.366520882 + r: 0.7058823 +ContainedObjects: +- !include 'Bag Additional locations d14543/Card Bridge 3d2703.yaml' +- !include 'Bag Additional locations d14543/Custom_Tile 7a48d8.yaml' +- !include 'Bag Additional locations d14543/Card Deck Lounge and Theatre b1252d.yaml' +- !include 'Bag Additional locations d14543/Custom_Tile 63a979.yaml' +- !include 'Bag Additional locations d14543/Card Sun Deck 9a3e53.yaml' +- !include 'Bag Additional locations d14543/Custom_Tile a76b5b.yaml' +- !include 'Bag Additional locations d14543/Card Library 766811.yaml' +- !include 'Bag Additional locations d14543/Custom_Tile b76ce7.yaml' +- !include 'Bag Additional locations d14543/Card Passenger Cabins bc2d31.yaml' +- !include 'Bag Additional locations d14543/Custom_Tile dea3d0.yaml' +- !include 'Bag Additional locations d14543/Card Dining Room e56d08.yaml' +- !include 'Bag Additional locations d14543/Custom_Tile d7f943.yaml' +- !include 'Bag Additional locations d14543/Custom_Tile cf5168.yaml' +- !include 'Bag Additional locations d14543/Card Galley c1e108.yaml' +- !include 'Bag Additional locations d14543/Custom_Tile c66ac0.yaml' +- !include 'Bag Additional locations d14543/Custom_Tile 136552.yaml' +- !include 'Bag Additional locations d14543/Card Engine Room 0b9a16.yaml' +- !include 'Bag Additional locations d14543/Custom_Tile 0516fb.yaml' +- !include 'Bag Additional locations d14543/Card Boiler Room 95ae75.yaml' +Description: Place these after you complete the first act +GMNotes: '' +GUID: d14543 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Bag Additional locations d14543.ttslua' +LuaScriptState: '{"ml":{"0516fb":{"lock":false,"pos":{"x":-30.2242,"y":1.6225,"z":-3.83},"rot":{"x":359.9831,"y":359.991,"z":359.9201}},"0b9a16":{"lock":false,"pos":{"x":-30.2242,"y":1.6954,"z":-0.03},"rot":{"x":359.9201,"y":270.0021,"z":0.0169}},"136552":{"lock":false,"pos":{"x":-30.2243,"y":1.6248,"z":3.86},"rot":{"x":359.9831,"y":359.9908,"z":359.9201}},"3d2703":{"lock":false,"pos":{"x":-17.12,"y":1.6771,"z":-0.03},"rot":{"x":359.9201,"y":270.0021,"z":0.0169}},"63a979":{"lock":false,"pos":{"x":-17.1199,"y":1.602,"z":-11.51},"rot":{"x":359.9831,"y":359.9913,"z":359.9201}},"766811":{"lock":false,"pos":{"x":-23.6767,"y":1.6817,"z":-15.2801},"rot":{"x":359.9201,"y":270.0021,"z":0.0169}},"7a48d8":{"lock":false,"pos":{"x":-17.1199,"y":1.6042,"z":-3.83},"rot":{"x":359.9831,"y":359.9906,"z":359.92}},"95ae75":{"lock":false,"pos":{"x":-30.2243,"y":1.6931,"z":-7.7},"rot":{"x":359.9201,"y":270.0022,"z":0.0169}},"9a3e53":{"lock":false,"pos":{"x":-17.1201,"y":1.6726,"z":-15.28},"rot":{"x":359.9201,"y":270.0021,"z":0.0169}},"a76b5b":{"lock":false,"pos":{"x":-20.3998,"y":1.6055,"z":-15.0719},"rot":{"x":359.92,"y":270.4527,"z":0.0163}},"b1252d":{"lock":false,"pos":{"x":-17.1201,"y":1.6748,"z":-7.7},"rot":{"x":359.9201,"y":270.0021,"z":0.0169}},"b76ce7":{"lock":false,"pos":{"x":-23.6764,"y":1.6111,"z":-11.51},"rot":{"x":359.9831,"y":359.9908,"z":359.9201}},"bc2d31":{"lock":false,"pos":{"x":-23.6765,"y":1.684,"z":-7.7},"rot":{"x":359.9201,"y":270.0021,"z":0.0169}},"c1e108":{"lock":false,"pos":{"x":-23.6765,"y":1.6885,"z":7.57},"rot":{"x":359.9201,"y":270.0021,"z":0.0169}},"c66ac0":{"lock":false,"pos":{"x":-26.5181,"y":1.6196,"z":3.8153},"rot":{"x":0.0443,"y":44.7926,"z":359.9314}},"cf5168":{"lock":false,"pos":{"x":-23.6764,"y":1.6157,"z":3.86},"rot":{"x":359.9831,"y":359.9909,"z":359.9201}},"d7f943":{"lock":false,"pos":{"x":-20.3723,"y":1.6099,"z":0.1376},"rot":{"x":359.9201,"y":270.0007,"z":0.0169}},"dea3d0":{"lock":false,"pos":{"x":-23.6764,"y":1.6134,"z":-3.83},"rot":{"x":359.9831,"y":359.9911,"z":359.9201}},"e56d08":{"lock":false,"pos":{"x":-23.6765,"y":1.6862,"z":-0.03},"rot":{"x":359.9201,"y":270.0021,"z":0.0169}}}}' +MaterialIndex: -1 +MeshIndex: -1 +Name: Bag +Nickname: Additional locations +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -12.2220993 + posY: 1.41680551 + posZ: 11.1913013 + rotX: 0.07998718 + rotY: 89.99049 + rotZ: 359.983063 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Consternation on the Constellation 0ec730/Bag Additional locations d14543/Card Boiler Room 95ae75.yaml new file mode 100644 index 000000000..b1cfda04a --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Consternation on the Constellation 0ec730/Bag Additional locations d14543/Card Boiler Room 95ae75.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 232013 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/762723985821544403/0632F8AB805D9C4AE6A7ADDBA8D056853FE2CACE/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723985821544008/1333F8742548AB91B4110616A7B718A94ACF3CE7/ + NumHeight: 5 + NumWidth: 6 + UniqueBack: true +Description: Deck 1. +GMNotes: '' +GUID: 95ae75 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Boiler Room +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -30.2242565 + posY: 1.69309223 + posZ: -7.70001459 + rotX: 359.9201 + rotY: 270.002167 + rotZ: 0.01687397 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Consternation on the Constellation 0ec730/Bag Additional locations d14543/Card Bridge 3d2703.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Consternation on the Constellation 0ec730/Bag Additional locations d14543/Card Bridge 3d2703.yaml new file mode 100644 index 000000000..b06f89dcb --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Consternation on the Constellation 0ec730/Bag Additional locations d14543/Card Bridge 3d2703.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 232021 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/762723985821544403/0632F8AB805D9C4AE6A7ADDBA8D056853FE2CACE/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723985821544008/1333F8742548AB91B4110616A7B718A94ACF3CE7/ + NumHeight: 5 + NumWidth: 6 + UniqueBack: true +Description: Deck 3. +GMNotes: '' +GUID: 3d2703 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Bridge +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -17.12003 + posY: 1.67707777 + posZ: -0.029994674 + rotX: 359.9201 + rotY: 270.002075 + rotZ: 0.0168732163 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Consternation on the Constellation 0ec730/Bag Additional locations d14543/Card Deck Lounge and Theatre b1252d.yaml new file mode 100644 index 000000000..b41bf9e06 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Consternation on the Constellation 0ec730/Bag Additional locations d14543/Card Deck Lounge and Theatre b1252d.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 232019 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/762723985821544403/0632F8AB805D9C4AE6A7ADDBA8D056853FE2CACE/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723985821544008/1333F8742548AB91B4110616A7B718A94ACF3CE7/ + NumHeight: 5 + NumWidth: 6 + UniqueBack: true +Description: Deck 3. +GMNotes: '' +GUID: b1252d +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Deck Lounge and Theatre +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -17.1200981 + posY: 1.67481935 + posZ: -7.69999552 + rotX: 359.9201 + rotY: 270.0021 + rotZ: 0.0168739576 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Consternation on the Constellation 0ec730/Bag Additional locations d14543/Card Dining Room e56d08.yaml new file mode 100644 index 000000000..67a1c4b81 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Consternation on the Constellation 0ec730/Bag Additional locations d14543/Card Dining Room e56d08.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 232016 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/762723985821544403/0632F8AB805D9C4AE6A7ADDBA8D056853FE2CACE/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723985821544008/1333F8742548AB91B4110616A7B718A94ACF3CE7/ + NumHeight: 5 + NumWidth: 6 + UniqueBack: true +Description: Deck 2. +GMNotes: '' +GUID: e56d08 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Dining Room +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -23.67647 + posY: 1.68622029 + posZ: -0.03001125 + rotX: 359.9201 + rotY: 270.0021 + rotZ: 0.0168733373 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Consternation on the Constellation 0ec730/Bag Additional locations d14543/Card Engine Room 0b9a16.yaml new file mode 100644 index 000000000..4502f3d80 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Consternation on the Constellation 0ec730/Bag Additional locations d14543/Card Engine Room 0b9a16.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 232012 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/762723985821544403/0632F8AB805D9C4AE6A7ADDBA8D056853FE2CACE/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723985821544008/1333F8742548AB91B4110616A7B718A94ACF3CE7/ + NumHeight: 5 + NumWidth: 6 + UniqueBack: true +Description: Deck 1. +GMNotes: '' +GUID: 0b9a16 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Engine Room +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -30.224184 + posY: 1.69535065 + posZ: -0.0300111845 + rotX: 359.9201 + rotY: 270.0021 + rotZ: 0.0168732665 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Consternation on the Constellation 0ec730/Bag Additional locations d14543/Card Galley c1e108.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Consternation on the Constellation 0ec730/Bag Additional locations d14543/Card Galley c1e108.yaml new file mode 100644 index 000000000..9ae09e8a3 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Consternation on the Constellation 0ec730/Bag Additional locations d14543/Card Galley c1e108.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 232015 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/762723985821544403/0632F8AB805D9C4AE6A7ADDBA8D056853FE2CACE/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723985821544008/1333F8742548AB91B4110616A7B718A94ACF3CE7/ + NumHeight: 5 + NumWidth: 6 + UniqueBack: true +Description: Deck 2. +GMNotes: '' +GUID: c1e108 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Galley +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -23.6764851 + posY: 1.6884582 + posZ: 7.56998873 + rotX: 359.9201 + rotY: 270.002075 + rotZ: 0.0168731231 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Consternation on the Constellation 0ec730/Bag Additional locations d14543/Card Library 766811.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Consternation on the Constellation 0ec730/Bag Additional locations d14543/Card Library 766811.yaml new file mode 100644 index 000000000..34018ea16 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Consternation on the Constellation 0ec730/Bag Additional locations d14543/Card Library 766811.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 232018 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/762723985821544403/0632F8AB805D9C4AE6A7ADDBA8D056853FE2CACE/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723985821544008/1333F8742548AB91B4110616A7B718A94ACF3CE7/ + NumHeight: 5 + NumWidth: 6 + UniqueBack: true +Description: Deck 2. +GMNotes: '' +GUID: '766811' +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Library +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -23.6767445 + posY: 1.68173027 + posZ: -15.2801189 + rotX: 359.9201 + rotY: 270.002075 + rotZ: 0.01687232 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Consternation on the Constellation 0ec730/Bag Additional locations d14543/Card Passenger Cabins bc2d31.yaml new file mode 100644 index 000000000..5614c7639 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Consternation on the Constellation 0ec730/Bag Additional locations d14543/Card Passenger Cabins bc2d31.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 232017 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/762723985821544403/0632F8AB805D9C4AE6A7ADDBA8D056853FE2CACE/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723985821544008/1333F8742548AB91B4110616A7B718A94ACF3CE7/ + NumHeight: 5 + NumWidth: 6 + UniqueBack: true +Description: Deck 2. +GMNotes: '' +GUID: bc2d31 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Passenger Cabins +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -23.67654 + posY: 1.68396175 + posZ: -7.70001125 + rotX: 359.9201 + rotY: 270.0021 + rotZ: 0.0168732535 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Consternation on the Constellation 0ec730/Bag Additional locations d14543/Card Sun Deck 9a3e53.yaml new file mode 100644 index 000000000..c4e9d8a1b --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Consternation on the Constellation 0ec730/Bag Additional locations d14543/Card Sun Deck 9a3e53.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 232020 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/762723985821544403/0632F8AB805D9C4AE6A7ADDBA8D056853FE2CACE/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723985821544008/1333F8742548AB91B4110616A7B718A94ACF3CE7/ + NumHeight: 5 + NumWidth: 6 + UniqueBack: true +Description: Deck 3. +GMNotes: '' +GUID: 9a3e53 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Sun Deck +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -17.12015 + posY: 1.67258739 + posZ: -15.2799959 + rotX: 359.9201 + rotY: 270.0021 + rotZ: 0.0168734062 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Consternation on the Constellation 0ec730/Bag Additional locations d14543/Custom_Tile 0516fb.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Consternation on the Constellation 0ec730/Bag Additional locations d14543/Custom_Tile 0516fb.yaml new file mode 100644 index 000000000..f99040c3f --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Consternation on the Constellation 0ec730/Bag Additional locations d14543/Custom_Tile 0516fb.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 0516fb +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.62251842 + posZ: -3.829999 + rotX: 359.983124 + rotY: 359.991 + rotZ: 359.920074 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Consternation on the Constellation 0ec730/Bag Additional locations d14543/Custom_Tile 136552.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Consternation on the Constellation 0ec730/Bag Additional locations d14543/Custom_Tile 136552.yaml new file mode 100644 index 000000000..e54af3b13 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Consternation on the Constellation 0ec730/Bag Additional locations d14543/Custom_Tile 136552.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: '136552' +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.6247828 + posZ: 3.86000037 + rotX: 359.983124 + rotY: 359.990845 + rotZ: 359.920074 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Consternation on the Constellation 0ec730/Bag Additional locations d14543/Custom_Tile 63a979.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Consternation on the Constellation 0ec730/Bag Additional locations d14543/Custom_Tile 63a979.yaml new file mode 100644 index 000000000..01133c5a5 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Consternation on the Constellation 0ec730/Bag Additional locations d14543/Custom_Tile 63a979.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 63a979 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.1198978 + posY: 1.60198379 + posZ: -11.5100012 + rotX: 359.983124 + rotY: 359.991272 + rotZ: 359.920074 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Consternation on the Constellation 0ec730/Bag Additional locations d14543/Custom_Tile 7a48d8.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Consternation on the Constellation 0ec730/Bag Additional locations d14543/Custom_Tile 7a48d8.yaml new file mode 100644 index 000000000..d70cb14eb --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Consternation on the Constellation 0ec730/Bag Additional locations d14543/Custom_Tile 7a48d8.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 7a48d8 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.1198959 + posY: 1.60424554 + posZ: -3.82999969 + rotX: 359.983124 + rotY: 359.99057 + rotZ: 359.920044 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Consternation on the Constellation 0ec730/Bag Additional locations d14543/Custom_Tile a76b5b.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Consternation on the Constellation 0ec730/Bag Additional locations d14543/Custom_Tile a76b5b.yaml new file mode 100644 index 000000000..efea91b58 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Consternation on the Constellation 0ec730/Bag Additional locations d14543/Custom_Tile a76b5b.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: a76b5b +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.3997974 + posY: 1.60550833 + posZ: -15.0719023 + rotX: 359.919983 + rotY: 270.452728 + rotZ: 0.0162709691 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Consternation on the Constellation 0ec730/Bag Additional locations d14543/Custom_Tile b76ce7.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Consternation on the Constellation 0ec730/Bag Additional locations d14543/Custom_Tile b76ce7.yaml new file mode 100644 index 000000000..82f28f02b --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Consternation on the Constellation 0ec730/Bag Additional locations d14543/Custom_Tile b76ce7.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: b76ce7 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.6764 + posY: 1.61112642 + posZ: -11.5100012 + rotX: 359.983124 + rotY: 359.990845 + rotZ: 359.920074 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Consternation on the Constellation 0ec730/Bag Additional locations d14543/Custom_Tile c66ac0.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Consternation on the Constellation 0ec730/Bag Additional locations d14543/Custom_Tile c66ac0.yaml new file mode 100644 index 000000000..3a9ac2b8f --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Consternation on the Constellation 0ec730/Bag Additional locations d14543/Custom_Tile c66ac0.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: c66ac0 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.5181 + posY: 1.61960161 + posZ: 3.8153007 + rotX: 0.0443174727 + rotY: 44.7926331 + rotZ: 359.931427 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Consternation on the Constellation 0ec730/Bag Additional locations d14543/Custom_Tile cf5168.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Consternation on the Constellation 0ec730/Bag Additional locations d14543/Custom_Tile cf5168.yaml new file mode 100644 index 000000000..82d46b5f6 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Consternation on the Constellation 0ec730/Bag Additional locations d14543/Custom_Tile cf5168.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: cf5168 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.6764 + posY: 1.6156522 + posZ: 3.860001 + rotX: 359.983124 + rotY: 359.9909 + rotZ: 359.920074 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Consternation on the Constellation 0ec730/Bag Additional locations d14543/Custom_Tile d7f943.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Consternation on the Constellation 0ec730/Bag Additional locations d14543/Custom_Tile d7f943.yaml new file mode 100644 index 000000000..8ea66a368 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Consternation on the Constellation 0ec730/Bag Additional locations d14543/Custom_Tile d7f943.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: d7f943 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.3722973 + posY: 1.60994864 + posZ: 0.137599453 + rotX: 359.9201 + rotY: 270.000732 + rotZ: 0.0168987438 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Consternation on the Constellation 0ec730/Bag Additional locations d14543/Custom_Tile dea3d0.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Consternation on the Constellation 0ec730/Bag Additional locations d14543/Custom_Tile dea3d0.yaml new file mode 100644 index 000000000..b38dba84e --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Consternation on the Constellation 0ec730/Bag Additional locations d14543/Custom_Tile dea3d0.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: dea3d0 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.6764 + posY: 1.61338782 + posZ: -3.830001 + rotX: 359.983124 + rotY: 359.9911 + rotZ: 359.920074 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Consternation on the Constellation 0ec730/Card Cargo Room 2f4093.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Consternation on the Constellation 0ec730/Card Cargo Room 2f4093.yaml new file mode 100644 index 000000000..386bfdd9b --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Consternation on the Constellation 0ec730/Card Cargo Room 2f4093.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 232014 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/762723985821544403/0632F8AB805D9C4AE6A7ADDBA8D056853FE2CACE/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723985821544008/1333F8742548AB91B4110616A7B718A94ACF3CE7/ + NumHeight: 5 + NumWidth: 6 + UniqueBack: true +Description: Deck 1. +GMNotes: '' +GUID: 2f4093 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Cargo Room +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -30.2242 + posY: 1.69758856 + posZ: 7.57 + rotX: 359.9201 + rotY: 269.999451 + rotZ: 0.0168771 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Consternation on the Constellation 0ec730/Card Open Water c5a4bf.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Consternation on the Constellation 0ec730/Card Open Water c5a4bf.yaml new file mode 100644 index 000000000..f2e8b43b9 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Consternation on the Constellation 0ec730/Card Open Water c5a4bf.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 232022 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/762723985821544403/0632F8AB805D9C4AE6A7ADDBA8D056853FE2CACE/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723985821544008/1333F8742548AB91B4110616A7B718A94ACF3CE7/ + NumHeight: 5 + NumWidth: 6 + UniqueBack: true +Description: Ocean. +GMNotes: '' +GUID: c5a4bf +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Open Water +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -36.7731 + posY: 1.70896435 + posZ: 15.1900005 + rotX: 359.9201 + rotY: 270.000031 + rotZ: 0.016876597 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Consternation on the Constellation 0ec730/Card Order Enforcer bf0eaa.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Consternation on the Constellation 0ec730/Card Order Enforcer bf0eaa.yaml new file mode 100644 index 000000000..b38aed767 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Consternation on the Constellation 0ec730/Card Order Enforcer bf0eaa.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 231803 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723985822312693/4158B85B2CFFB04B186E73179B725A8B86994C34/ + NumHeight: 5 + NumWidth: 8 + UniqueBack: false +Description: Humanoid. Cultist. +GMNotes: '' +GUID: bf0eaa +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Order Enforcer +SidewaysCard: false +Snap: false +Sticky: true +Tooltip: true +Transform: + posX: -30.2261 + posY: 1.69833708 + posZ: 10.1027 + rotX: 359.9201 + rotY: 269.999756 + rotZ: 0.0168763082 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Consternation on the Constellation 0ec730/Card Scenario 4339b6.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Consternation on the Constellation 0ec730/Card Scenario 4339b6.yaml new file mode 100644 index 000000000..c19b14b3d --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Consternation on the Constellation 0ec730/Card Scenario 4339b6.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 232006 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/762723985821544403/0632F8AB805D9C4AE6A7ADDBA8D056853FE2CACE/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723985821544008/1333F8742548AB91B4110616A7B718A94ACF3CE7/ + NumHeight: 5 + NumWidth: 6 + UniqueBack: true +Description: Consternation on the Constellation +GMNotes: '' +GUID: 4339b6 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Scenario +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.95600033 + posY: 1.65564811 + posZ: -10.4412012 + rotX: 359.919739 + rotY: 270.0055 + rotZ: 0.0168335736 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Consternation on the Constellation 0ec730/Custom_Model_Bag Set-aside be5b52.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Consternation on the Constellation 0ec730/Custom_Model_Bag Set-aside be5b52.yaml new file mode 100644 index 000000000..95e7c4156 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Consternation on the Constellation 0ec730/Custom_Model_Bag Set-aside be5b52.yaml @@ -0,0 +1,61 @@ +Autoraise: true +ColorDiffuse: + b: 0.02148666 + g: 0.00100758043 + r: 0.02148666 +ContainedObjects: +- !include 'Custom_Model_Bag Set-aside be5b52/Card Inspector Legrasse b1d444.yaml' +- !include 'Custom_Model_Bag Set-aside be5b52/Deck Sinking Ship 281fc8.yaml' +- !include 'Custom_Model_Bag Set-aside be5b52/Deck Deep Ones f8d54f.yaml' +- !include 'Custom_Model_Bag Set-aside be5b52/Card Luther Marsh 13188c.yaml' +- !include 'Custom_Model_Bag Set-aside be5b52/Deck Crates of Goods 2a79ab.yaml' +- !include 'Custom_Model_Bag Set-aside be5b52/Card Lifeboat 4afdfb.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: '' +GMNotes: '' +GUID: be5b52 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +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.69680107 + posY: 1.55831575 + posZ: 14.2787018 + rotX: 359.955139 + rotY: 224.998077 + rotZ: 0.0686731339 + scaleX: 2.0 + scaleY: 2.0 + scaleZ: 2.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Consternation on the Constellation 0ec730/Custom_Model_Bag Set-aside be5b52/Card Inspector Legrasse b1d444.yaml new file mode 100644 index 000000000..a140f3a1d --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Consternation on the Constellation 0ec730/Custom_Model_Bag Set-aside be5b52/Card Inspector Legrasse b1d444.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 231921 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2319': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723985822312693/4158B85B2CFFB04B186E73179B725A8B86994C34/ + NumHeight: 5 + NumWidth: 8 + UniqueBack: false +Description: Ally. Retired. Detective. +GMNotes: '' +GUID: b1d444 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Inspector Legrasse +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -15.7563543 + posY: 2.58903861 + posZ: 0.216824114 + rotX: 359.920135 + rotY: 269.999481 + rotZ: 0.01687806 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Consternation on the Constellation 0ec730/Custom_Model_Bag Set-aside be5b52/Card Lifeboat 4afdfb.yaml new file mode 100644 index 000000000..9f1dd1a47 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Consternation on the Constellation 0ec730/Custom_Model_Bag Set-aside be5b52/Card Lifeboat 4afdfb.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 232023 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/762723985821544403/0632F8AB805D9C4AE6A7ADDBA8D056853FE2CACE/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723985821544008/1333F8742548AB91B4110616A7B718A94ACF3CE7/ + NumHeight: 5 + NumWidth: 6 + UniqueBack: true +Description: Boat. +GMNotes: '' +GUID: 4afdfb +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Lifeboat +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 1.69642222 + posY: 3.72850561 + posZ: 14.2788382 + rotX: 359.94812 + rotY: 224.998062 + rotZ: 0.0583231449 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Consternation on the Constellation 0ec730/Custom_Model_Bag Set-aside be5b52/Card Luther Marsh 13188c.yaml new file mode 100644 index 000000000..df07aced2 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Consternation on the Constellation 0ec730/Custom_Model_Bag Set-aside be5b52/Card Luther Marsh 13188c.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 232024 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/762723985821544403/0632F8AB805D9C4AE6A7ADDBA8D056853FE2CACE/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723985821544008/1333F8742548AB91B4110616A7B718A94ACF3CE7/ + NumHeight: 5 + NumWidth: 6 + UniqueBack: true +Description: Empowered and Enthralled +GMNotes: '' +GUID: 13188c +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Luther Marsh +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.3457787 + posY: 2.63729215 + posZ: -4.593928 + rotX: 357.409851 + rotY: 269.9721 + rotZ: 0.01722391 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Consternation on the Constellation 0ec730/Custom_Model_Bag Set-aside be5b52/Deck Crates of Goods 2a79ab.yaml new file mode 100644 index 000000000..74ac3fecf --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Consternation on the Constellation 0ec730/Custom_Model_Bag Set-aside be5b52/Deck Crates of Goods 2a79ab.yaml @@ -0,0 +1,258 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 232011 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/762723985821544403/0632F8AB805D9C4AE6A7ADDBA8D056853FE2CACE/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723985821544008/1333F8742548AB91B4110616A7B718A94ACF3CE7/ + NumHeight: 5 + NumWidth: 6 + UniqueBack: true + Description: Item. + GMNotes: '' + GUID: 95f3d0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Crate of Goods + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -7.581796 + posY: 1.70417225 + posZ: 12.1773214 + rotX: 359.217 + rotY: 269.9715 + rotZ: 181.385376 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232010 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/762723985821544403/0632F8AB805D9C4AE6A7ADDBA8D056853FE2CACE/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723985821544008/1333F8742548AB91B4110616A7B718A94ACF3CE7/ + NumHeight: 5 + NumWidth: 6 + UniqueBack: true + Description: Item. + GMNotes: '' + GUID: c86ac4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Crate of Goods + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -7.56742239 + posY: 1.70922017 + posZ: 12.4373055 + rotX: 0.389329374 + rotY: 270.044342 + rotZ: 181.263977 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232009 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/762723985821544403/0632F8AB805D9C4AE6A7ADDBA8D056853FE2CACE/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723985821544008/1333F8742548AB91B4110616A7B718A94ACF3CE7/ + NumHeight: 5 + NumWidth: 6 + UniqueBack: true + Description: Item. + GMNotes: '' + GUID: c48ac4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Crate of Goods + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -7.95302343 + posY: 1.72245407 + posZ: 12.6775293 + rotX: 359.774445 + rotY: 269.993225 + rotZ: 181.455444 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232008 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/762723985821544403/0632F8AB805D9C4AE6A7ADDBA8D056853FE2CACE/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723985821544008/1333F8742548AB91B4110616A7B718A94ACF3CE7/ + NumHeight: 5 + NumWidth: 6 + UniqueBack: true + Description: Item. + GMNotes: '' + GUID: 9c11c1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Crate of Goods + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -7.66576 + posY: 1.6990087 + posZ: 12.50183 + rotX: 0.140646547 + rotY: 270.004761 + rotZ: 181.557953 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232007 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/762723985821544403/0632F8AB805D9C4AE6A7ADDBA8D056853FE2CACE/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723985821544008/1333F8742548AB91B4110616A7B718A94ACF3CE7/ + NumHeight: 5 + NumWidth: 6 + UniqueBack: true + Description: Item. + GMNotes: '' + GUID: 004aa1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Crate of Goods + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -7.939932 + posY: 1.57059085 + posZ: 12.3333111 + rotX: 359.921417 + rotY: 270.006836 + rotZ: 180.018417 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/762723985821544403/0632F8AB805D9C4AE6A7ADDBA8D056853FE2CACE/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723985821544008/1333F8742548AB91B4110616A7B718A94ACF3CE7/ + NumHeight: 5 + NumWidth: 6 + UniqueBack: true +DeckIDs: +- 232011 +- 232010 +- 232009 +- 232008 +- 232007 +Description: '' +GMNotes: '' +GUID: 2a79ab +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Crates of Goods +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.763661 + posY: 2.56992221 + posZ: -4.0037756 + rotX: 359.920135 + rotY: 270.0001 + rotZ: 0.016875755 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Consternation on the Constellation 0ec730/Custom_Model_Bag Set-aside be5b52/Deck Deep Ones f8d54f.yaml new file mode 100644 index 000000000..cc053ea82 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Consternation on the Constellation 0ec730/Custom_Model_Bag Set-aside be5b52/Deck Deep Ones f8d54f.yaml @@ -0,0 +1,387 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 231829 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723985822312693/4158B85B2CFFB04B186E73179B725A8B86994C34/ + NumHeight: 5 + NumWidth: 8 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: 88a411 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Call of R'lyeh + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -1.34367573 + posY: 1.55594313 + posZ: 3.37424755 + rotX: 359.920135 + rotY: 270.004425 + rotZ: 0.02205969 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231828 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723985822312693/4158B85B2CFFB04B186E73179B725A8B86994C34/ + NumHeight: 5 + NumWidth: 8 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: 0f1d51 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Call of R'lyeh + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -1.08044839 + posY: 1.70104969 + posZ: 3.422599 + rotX: 359.9107 + rotY: 270.04126 + rotZ: 0.0333406739 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231827 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723985822312693/4158B85B2CFFB04B186E73179B725A8B86994C34/ + NumHeight: 5 + NumWidth: 8 + UniqueBack: false + Description: Monster. Deep One. Elite. + GMNotes: '' + GUID: c865af + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Wake Titan + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -1.40442753 + posY: 1.718977 + posZ: 3.82158279 + rotX: 359.9424 + rotY: 270.0008 + rotZ: 0.0004769095 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231826 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723985822312693/4158B85B2CFFB04B186E73179B725A8B86994C34/ + NumHeight: 5 + NumWidth: 8 + UniqueBack: false + Description: Humanoid. Monster. Deep One. + GMNotes: '' + GUID: 3844f2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Destroyer from the Depths + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -1.48562753 + posY: 1.70576167 + posZ: 4.344625 + rotX: 359.9184 + rotY: 269.999084 + rotZ: 359.8516 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231825 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723985822312693/4158B85B2CFFB04B186E73179B725A8B86994C34/ + NumHeight: 5 + NumWidth: 8 + UniqueBack: false + Description: Humanoid. Monster. Deep One. + GMNotes: '' + GUID: fe525f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Destroyer from the Depths + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -1.12065744 + posY: 1.74502826 + posZ: 3.3858273 + rotX: 359.821442 + rotY: 270.025574 + rotZ: 2.32567787 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231824 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723985822312693/4158B85B2CFFB04B186E73179B725A8B86994C34/ + NumHeight: 5 + NumWidth: 8 + UniqueBack: false + Description: Humanoid. Monster. Deep One. + GMNotes: '' + GUID: 59b24d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Destroyer from the Depths + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -1.23154616 + posY: 1.70589232 + posZ: 3.55250621 + rotX: 359.91684 + rotY: 270.030457 + rotZ: 0.0247294586 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231823 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723985822312693/4158B85B2CFFB04B186E73179B725A8B86994C34/ + NumHeight: 5 + NumWidth: 8 + UniqueBack: false + Description: Humanoid. Monster. Deep One. + GMNotes: '' + GUID: ed037b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dagon Warrior + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -1.50537384 + posY: 1.71098781 + posZ: 3.35595417 + rotX: 359.913635 + rotY: 269.862244 + rotZ: 0.0911951959 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231822 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723985822312693/4158B85B2CFFB04B186E73179B725A8B86994C34/ + NumHeight: 5 + NumWidth: 8 + UniqueBack: false + Description: Humanoid. Monster. Deep One. + GMNotes: '' + GUID: 380a26 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dagon Warrior + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -1.57678831 + posY: 1.71757019 + posZ: 3.52881479 + rotX: 359.929932 + rotY: 270.091919 + rotZ: 359.958527 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723985822312693/4158B85B2CFFB04B186E73179B725A8B86994C34/ + NumHeight: 5 + NumWidth: 8 + UniqueBack: false +DeckIDs: +- 231829 +- 231828 +- 231827 +- 231826 +- 231825 +- 231824 +- 231823 +- 231822 +Description: '' +GMNotes: '' +GUID: f8d54f +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Deep Ones +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -5.396667 + posY: 2.55155683 + posZ: -7.849289 + rotX: 359.9203 + rotY: 270.0056 + rotZ: 0.0168505944 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Consternation on the Constellation 0ec730/Custom_Model_Bag Set-aside be5b52/Deck Sinking Ship 281fc8.yaml new file mode 100644 index 000000000..8e2a577ca --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Consternation on the Constellation 0ec730/Custom_Model_Bag Set-aside be5b52/Deck Sinking Ship 281fc8.yaml @@ -0,0 +1,430 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 231838 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723985822312693/4158B85B2CFFB04B186E73179B725A8B86994C34/ + NumHeight: 5 + NumWidth: 8 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: 782c67 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Swept Away + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 1.570921 + posY: 1.54980159 + posZ: -3.445752 + rotX: 359.917023 + rotY: 269.97522 + rotZ: 0.0186994039 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231837 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723985822312693/4158B85B2CFFB04B186E73179B725A8B86994C34/ + NumHeight: 5 + NumWidth: 8 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: 812b0a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Swept Away + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 1.57739127 + posY: 1.71644676 + posZ: -3.43077159 + rotX: 359.885468 + rotY: 270.030884 + rotZ: 1.14091325 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231836 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723985822312693/4158B85B2CFFB04B186E73179B725A8B86994C34/ + NumHeight: 5 + NumWidth: 8 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: 034daf + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Out of Air + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 1.442941 + posY: 1.75656724 + posZ: -2.921822 + rotX: 359.911865 + rotY: 269.977448 + rotZ: 2.328775 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231835 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723985822312693/4158B85B2CFFB04B186E73179B725A8B86994C34/ + NumHeight: 5 + NumWidth: 8 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: 0dc0c4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Out of Air + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 1.79587555 + posY: 1.69869184 + posZ: -4.15369844 + rotX: 359.9387 + rotY: 270.0149 + rotZ: 0.00200044946 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231834 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723985822312693/4158B85B2CFFB04B186E73179B725A8B86994C34/ + NumHeight: 5 + NumWidth: 8 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: 4b9f0e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Taking on Water + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 1.520066 + posY: 1.69735157 + posZ: -2.86237431 + rotX: 359.924225 + rotY: 269.988464 + rotZ: 359.9927 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231833 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723985822312693/4158B85B2CFFB04B186E73179B725A8B86994C34/ + NumHeight: 5 + NumWidth: 8 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: d132d8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Taking on Water + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 1.6312722 + posY: 1.6997571 + posZ: -3.68433952 + rotX: 359.937378 + rotY: 270.000031 + rotZ: 0.0119135138 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231832 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723985822312693/4158B85B2CFFB04B186E73179B725A8B86994C34/ + NumHeight: 5 + NumWidth: 8 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: 08afce + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Taking on Water + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 1.77701974 + posY: 1.77850974 + posZ: -3.64282012 + rotX: 359.9214 + rotY: 269.982727 + rotZ: 3.57296371 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231831 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723985822312693/4158B85B2CFFB04B186E73179B725A8B86994C34/ + NumHeight: 5 + NumWidth: 8 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: 7c0d8e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Taking on Water + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 1.7771306 + posY: 1.71104908 + posZ: -3.39392018 + rotX: 359.9211 + rotY: 270.0024 + rotZ: 0.00144010736 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231830 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723985822312693/4158B85B2CFFB04B186E73179B725A8B86994C34/ + NumHeight: 5 + NumWidth: 8 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: 380a26 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Taking on Water + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 1.431489 + posY: 1.66889524 + posZ: -3.35971522 + rotX: 359.922272 + rotY: 269.990479 + rotZ: 0.0183904059 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723985822312693/4158B85B2CFFB04B186E73179B725A8B86994C34/ + NumHeight: 5 + NumWidth: 8 + UniqueBack: false +DeckIDs: +- 231838 +- 231837 +- 231836 +- 231835 +- 231834 +- 231833 +- 231832 +- 231831 +- 231830 +Description: '' +GMNotes: '' +GUID: 281fc8 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Sinking Ship +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -8.913773 + posY: 2.56261683 + posZ: -3.12896156 + rotX: 359.920135 + rotY: 269.9995 + rotZ: 0.0168736111 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Consternation on the Constellation 0ec730/Custom_Tile 4736d9.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Consternation on the Constellation 0ec730/Custom_Tile 4736d9.yaml new file mode 100644 index 000000000..04b94524a --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Consternation on the Constellation 0ec730/Custom_Tile 4736d9.yaml @@ -0,0 +1,42 @@ +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: '' +GMNotes: '' +GUID: 4736d9 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Tile +Nickname: '' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -10.0405 + posY: 1.5945462 + posZ: -3.24300051 + rotX: 359.9201 + rotY: 270.006073 + rotZ: 0.01686765 + scaleX: 0.81 + scaleY: 1.0 + scaleZ: 0.81 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Consternation on the Constellation 0ec730/Custom_Tile 68e1d9.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Consternation on the Constellation 0ec730/Custom_Tile 68e1d9.yaml new file mode 100644 index 000000000..c5dc51360 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Consternation on the Constellation 0ec730/Custom_Tile 68e1d9.yaml @@ -0,0 +1,42 @@ +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/VzhJJaH.png + WidthScale: 0.0 +Description: '' +GMNotes: '' +GUID: 68e1d9 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Tile +Nickname: '' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -10.044899 + posY: 1.59653282 + posZ: 3.48290038 + rotX: 359.9201 + rotY: 269.997375 + rotZ: 0.0168778263 + scaleX: 0.81 + scaleY: 1.0 + scaleZ: 0.81 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Consternation on the Constellation 0ec730/Custom_Tile 7234af.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Consternation on the Constellation 0ec730/Custom_Tile 7234af.yaml new file mode 100644 index 000000000..b988ab2e7 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Consternation on the Constellation 0ec730/Custom_Tile 7234af.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 7234af +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.3859 + posY: 1.63134062 + posZ: 11.1590014 + rotX: 359.93158 + rotY: 315.02948 + rotZ: 359.9554 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Consternation on the Constellation 0ec730/Custom_Tile 7b0f48.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Consternation on the Constellation 0ec730/Custom_Tile 7b0f48.yaml new file mode 100644 index 000000000..816c611e1 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Consternation on the Constellation 0ec730/Custom_Tile 7b0f48.yaml @@ -0,0 +1,42 @@ +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/VzhJJaH.png + WidthScale: 0.0 +Description: '' +GMNotes: '' +GUID: 7b0f48 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Tile +Nickname: '' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -10.053299 + posY: 1.5958904 + posZ: 1.2614 + rotX: 359.9201 + rotY: 269.997925 + rotZ: 0.0168791711 + scaleX: 0.81 + scaleY: 1.0 + scaleZ: 0.81 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Consternation on the Constellation 0ec730/Custom_Tile 8f2b3d.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Consternation on the Constellation 0ec730/Custom_Tile 8f2b3d.yaml new file mode 100644 index 000000000..4f70b3618 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Consternation on the Constellation 0ec730/Custom_Tile 8f2b3d.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 8f2b3d +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.341 + posY: 1.63013971 + posZ: 7.29299974 + rotX: 359.9201 + rotY: 270.0 + rotZ: 0.0168992 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Consternation on the Constellation 0ec730/Custom_Tile be5d2b.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Consternation on the Constellation 0ec730/Custom_Tile be5d2b.yaml new file mode 100644 index 000000000..3806a00e8 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Consternation on the Constellation 0ec730/Custom_Tile be5d2b.yaml @@ -0,0 +1,42 @@ +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/1plY463.png + WidthScale: 0.0 +Description: '' +GMNotes: '' +GUID: be5d2b +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Tile +Nickname: '' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -10.0804 + posY: 1.59525752 + posZ: -1.0163 + rotX: 359.9201 + rotY: 269.991272 + rotZ: 0.0168864019 + scaleX: 0.81 + scaleY: 1.0 + scaleZ: 0.81 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Consternation on the Constellation 0ec730/Custom_Tile Consternation on the Constellation bbb70a.ttslua b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Consternation on the Constellation 0ec730/Custom_Tile Consternation on the Constellation bbb70a.ttslua new file mode 100644 index 000000000..9732c81e8 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Consternation on the Constellation 0ec730/Custom_Tile Consternation on the Constellation bbb70a.ttslua @@ -0,0 +1,25 @@ +name = 'Consternation' + +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 + +function standaloneClick() + Global.call('fillContainer', {object=self, key=name, mode='standalone'}) +end diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Consternation on the Constellation 0ec730/Custom_Tile Consternation on the Constellation bbb70a.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Consternation on the Constellation 0ec730/Custom_Tile Consternation on the Constellation bbb70a.yaml new file mode 100644 index 000000000..e28599244 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Consternation on the Constellation 0ec730/Custom_Tile Consternation on the Constellation bbb70a.yaml @@ -0,0 +1,42 @@ +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: http://cloud-3.steamusercontent.com/ugc/949588657194710961/D864BCCCC1C811EC7F0AED69D1C30C678D3D9FC9/ + ImageURL: http://cloud-3.steamusercontent.com/ugc/965354846165100486/3DC8FCEF364B30758B09EF96AF9458F2B8E64D56/ + WidthScale: 0.0 +Description: click to set chaos token difficulty +GMNotes: '' +GUID: bbb70a +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Tile Consternation on the Constellation bbb70a.ttslua' +LuaScriptState: '' +Name: Custom_Tile +Nickname: Consternation on the Constellation +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 26.7377682 + posY: 1.907853 + posZ: 14.3031158 + rotX: 359.920929 + rotY: 270.009064 + rotZ: 0.01180076 + scaleX: 2.2 + scaleY: 1.0 + scaleZ: 2.2 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Consternation on the Constellation 0ec730/Deck Act Deck c34f49.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Consternation on the Constellation 0ec730/Deck Act Deck c34f49.yaml new file mode 100644 index 000000000..d56cb7caf --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Consternation on the Constellation 0ec730/Deck Act Deck c34f49.yaml @@ -0,0 +1,215 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 275207 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2316': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/762723985821543442/C2D6C747A5237101D21219EA1CB3EB6BBBA75740/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723985821543152/59568ADD69C52DF54E884C5AF7E1578433CCBAAB/ + NumHeight: 3 + NumWidth: 3 + UniqueBack: true + Description: Act 3 + GMNotes: '' + GUID: ea88ed + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Plug the Abyss + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.2185735 + posY: 1.55603111 + posZ: 10.9640179 + rotX: 0.0162989423 + rotY: 180.5744 + rotZ: 0.08087179 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 275206 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2316': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/762723985821543442/C2D6C747A5237101D21219EA1CB3EB6BBBA75740/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723985821543152/59568ADD69C52DF54E884C5AF7E1578433CCBAAB/ + NumHeight: 3 + NumWidth: 3 + UniqueBack: true + Description: Act 3 + GMNotes: '' + GUID: d70b5e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Flee the Ship + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.106574386 + posY: 1.71336317 + posZ: 11.00556 + rotX: 359.988861 + rotY: 179.998047 + rotZ: 0.6877558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 275205 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2316': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/762723985821543442/C2D6C747A5237101D21219EA1CB3EB6BBBA75740/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723985821543152/59568ADD69C52DF54E884C5AF7E1578433CCBAAB/ + NumHeight: 3 + NumWidth: 3 + UniqueBack: true + Description: Act 2 + GMNotes: '' + GUID: 5aa059 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Find It First + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.322217822 + posY: 1.71877122 + posZ: 10.7602453 + rotX: 0.0172240585 + rotY: 180.0133 + rotZ: 0.08690393 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 275204 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2316': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/762723985821543442/C2D6C747A5237101D21219EA1CB3EB6BBBA75740/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723985821543152/59568ADD69C52DF54E884C5AF7E1578433CCBAAB/ + NumHeight: 3 + NumWidth: 3 + UniqueBack: true + Description: Act 1 + GMNotes: '' + GUID: 4875f4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Think Fast! + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -0.0549719743 + posY: 1.70558989 + posZ: 10.9403811 + rotX: 0.0142728342 + rotY: 179.997086 + rotZ: 0.05720016 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2752': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/762723985821543442/C2D6C747A5237101D21219EA1CB3EB6BBBA75740/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723985821543152/59568ADD69C52DF54E884C5AF7E1578433CCBAAB/ + NumHeight: 3 + NumWidth: 3 + UniqueBack: true +DeckIDs: +- 275207 +- 275206 +- 275205 +- 275204 +Description: '' +GMNotes: '' +GUID: c34f49 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Act Deck +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.6886 + posY: 1.6534946 + posZ: -5.0485 + rotX: 0.01683514 + rotY: 179.999969 + rotZ: 0.08025759 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Consternation on the Constellation 0ec730/Deck Agenda Deck 14fd91.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Consternation on the Constellation 0ec730/Deck Agenda Deck 14fd91.yaml new file mode 100644 index 000000000..83ca376de --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Consternation on the Constellation 0ec730/Deck Agenda Deck 14fd91.yaml @@ -0,0 +1,215 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 275303 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2316': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/762723985821543442/C2D6C747A5237101D21219EA1CB3EB6BBBA75740/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723985821543152/59568ADD69C52DF54E884C5AF7E1578433CCBAAB/ + NumHeight: 3 + NumWidth: 3 + UniqueBack: true + Description: Agenda 3 + GMNotes: '' + GUID: '837394' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Summon Those Below + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -1.60732949 + posY: 1.56063938 + posZ: 17.8056717 + rotX: 0.0171592645 + rotY: 180.912491 + rotZ: 0.075343594 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 275302 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2316': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/762723985821543442/C2D6C747A5237101D21219EA1CB3EB6BBBA75740/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723985821543152/59568ADD69C52DF54E884C5AF7E1578433CCBAAB/ + NumHeight: 3 + NumWidth: 3 + UniqueBack: true + Description: Agenda 3 + GMNotes: '' + GUID: 032c64 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Punish the Interlopers + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -1.422228 + posY: 1.70626009 + posZ: 17.8672886 + rotX: 0.009199091 + rotY: 180.468018 + rotZ: 0.0548242927 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 275301 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2316': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/762723985821543442/C2D6C747A5237101D21219EA1CB3EB6BBBA75740/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723985821543152/59568ADD69C52DF54E884C5AF7E1578433CCBAAB/ + NumHeight: 3 + NumWidth: 3 + UniqueBack: true + Description: Agenda 2 + GMNotes: '' + GUID: f1dbd7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Search the Ship + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.02703953 + posY: 1.72383761 + posZ: 17.3506527 + rotX: 0.0129359029 + rotY: 180.02504 + rotZ: 0.0486746319 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 275300 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2753': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/762723985821543442/C2D6C747A5237101D21219EA1CB3EB6BBBA75740/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723985821543152/59568ADD69C52DF54E884C5AF7E1578433CCBAAB/ + NumHeight: 3 + NumWidth: 3 + UniqueBack: true + Description: Agenda 1 + GMNotes: '' + GUID: 5aa059 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Captured! + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.68893242 + posY: 1.8750155 + posZ: -5.052891 + rotX: 357.5641 + rotY: 179.999954 + rotZ: 0.0939709842 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2753': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/762723985821543442/C2D6C747A5237101D21219EA1CB3EB6BBBA75740/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723985821543152/59568ADD69C52DF54E884C5AF7E1578433CCBAAB/ + NumHeight: 3 + NumWidth: 3 + UniqueBack: true +DeckIDs: +- 275303 +- 275302 +- 275301 +- 275300 +Description: '' +GMNotes: '' +GUID: 14fd91 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Agenda Deck +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.7248 + posY: 1.65513849 + posZ: 0.3733004 + rotX: 0.0168147627 + rotY: 180.014511 + rotZ: 0.08026186 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Consternation on the Constellation 0ec730/Deck Encounter Deck a1514c.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Consternation on the Constellation 0ec730/Deck Encounter Deck a1514c.yaml new file mode 100644 index 000000000..1c30415d1 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Consternation on the Constellation 0ec730/Deck Encounter Deck a1514c.yaml @@ -0,0 +1,903 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 231820 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723985822312693/4158B85B2CFFB04B186E73179B725A8B86994C34/ + NumHeight: 5 + NumWidth: 8 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: 9ca59b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Clap of Thunder + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -4.714051 + posY: 2.06374836 + posZ: 20.0535164 + rotX: 359.9354 + rotY: 270.030853 + rotZ: 179.988068 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231819 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723985822312693/4158B85B2CFFB04B186E73179B725A8B86994C34/ + NumHeight: 5 + NumWidth: 8 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: 380a26 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Clap of Thunder + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -4.02716637 + posY: 2.053295 + posZ: 19.7486782 + rotX: 359.957642 + rotY: 269.9967 + rotZ: 180.006973 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231818 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723985822312693/4158B85B2CFFB04B186E73179B725A8B86994C34/ + NumHeight: 5 + NumWidth: 8 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: 77b5a8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Rite of the Deep + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -4.8388114 + posY: 2.044285 + posZ: 20.1903172 + rotX: 359.968079 + rotY: 270.016754 + rotZ: 179.9788 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231817 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723985822312693/4158B85B2CFFB04B186E73179B725A8B86994C34/ + NumHeight: 5 + NumWidth: 8 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: 380a26 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Rite of the Deep + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.85263348 + posY: 2.01976967 + posZ: 19.254055 + rotX: 359.927643 + rotY: 270.0041 + rotZ: 178.218277 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231816 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723985822312693/4158B85B2CFFB04B186E73179B725A8B86994C34/ + NumHeight: 5 + NumWidth: 8 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: e0dfd8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Thalassophobia + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -4.455973 + posY: 1.99800861 + posZ: 20.0110817 + rotX: 359.499573 + rotY: 269.924957 + rotZ: 178.546661 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231815 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723985822312693/4158B85B2CFFB04B186E73179B725A8B86994C34/ + NumHeight: 5 + NumWidth: 8 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: 380a26 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Thalassophobia + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -4.242827 + posY: 2.014906 + posZ: 19.2218456 + rotX: 359.93512 + rotY: 269.996063 + rotZ: 180.019592 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231814 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723985822312693/4158B85B2CFFB04B186E73179B725A8B86994C34/ + NumHeight: 5 + NumWidth: 8 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: 636f6e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ocean's Maw + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -4.46659946 + posY: 1.99366868 + posZ: 19.7704182 + rotX: 359.470581 + rotY: 269.988464 + rotZ: 178.783722 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231813 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723985822312693/4158B85B2CFFB04B186E73179B725A8B86994C34/ + NumHeight: 5 + NumWidth: 8 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: 380a26 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ocean's Maw + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -5.18287134 + posY: 1.99618256 + posZ: 19.1255474 + rotX: 359.975525 + rotY: 270.050079 + rotZ: 180.011917 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231812 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723985822312693/4158B85B2CFFB04B186E73179B725A8B86994C34/ + NumHeight: 5 + NumWidth: 8 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: e9be74 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Seasickness + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -4.4476223 + posY: 1.98613048 + posZ: 19.63989 + rotX: 359.923859 + rotY: 269.99 + rotZ: 180.008636 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231811 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723985822312693/4158B85B2CFFB04B186E73179B725A8B86994C34/ + NumHeight: 5 + NumWidth: 8 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: 380a26 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Seasickness + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -4.066835 + posY: 1.97588921 + posZ: 19.1310921 + rotX: 359.936035 + rotY: 270.009552 + rotZ: 179.988647 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231810 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723985822312693/4158B85B2CFFB04B186E73179B725A8B86994C34/ + NumHeight: 5 + NumWidth: 8 + UniqueBack: false + Description: Obstacle. + GMNotes: '' + GUID: d82a49 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Sealed Doors + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -4.780727 + posY: 1.961732 + posZ: 19.7351952 + rotX: 359.4059 + rotY: 270.000549 + rotZ: 179.0031 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231809 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723985822312693/4158B85B2CFFB04B186E73179B725A8B86994C34/ + NumHeight: 5 + NumWidth: 8 + UniqueBack: false + Description: Obstacle. + GMNotes: '' + GUID: 380a26 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Sealed Doors + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -4.40037727 + posY: 1.95715392 + posZ: 19.6767979 + rotX: 359.9469 + rotY: 270.004059 + rotZ: 180.010574 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231808 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723985822312693/4158B85B2CFFB04B186E73179B725A8B86994C34/ + NumHeight: 5 + NumWidth: 8 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: c4ee41 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Lights Out + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -4.656188 + posY: 1.94754863 + posZ: 19.6751518 + rotX: 359.987854 + rotY: 269.961365 + rotZ: 179.99649 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231807 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723985822312693/4158B85B2CFFB04B186E73179B725A8B86994C34/ + NumHeight: 5 + NumWidth: 8 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: 380a26 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Lights Out + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -4.26891756 + posY: 1.93746483 + posZ: 19.119627 + rotX: 359.937927 + rotY: 270.001221 + rotZ: 180.017868 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231806 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723985822312693/4158B85B2CFFB04B186E73179B725A8B86994C34/ + NumHeight: 5 + NumWidth: 8 + UniqueBack: false + Description: Humanoid. Cultist. + GMNotes: '' + GUID: 277af9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Sea Singer + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -4.24348974 + posY: 1.91936493 + posZ: 19.2533016 + rotX: 359.953339 + rotY: 270.005249 + rotZ: 179.96637 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231805 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723985822312693/4158B85B2CFFB04B186E73179B725A8B86994C34/ + NumHeight: 5 + NumWidth: 8 + UniqueBack: false + Description: Humanoid. Cultist. + GMNotes: '' + GUID: 380a26 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Sea Singer + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -5.11304045 + posY: 1.91908121 + posZ: 19.2438984 + rotX: 359.9445 + rotY: 270.0456 + rotZ: 180.009232 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231804 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723985822312693/4158B85B2CFFB04B186E73179B725A8B86994C34/ + NumHeight: 5 + NumWidth: 8 + UniqueBack: false + Description: Humanoid. Cultist. + GMNotes: '' + GUID: 609b0f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Order Enforcer + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -4.410919 + posY: 1.89012778 + posZ: 19.64789 + rotX: 0.08365635 + rotY: 269.9867 + rotZ: 178.545517 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231802 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723985822312693/4158B85B2CFFB04B186E73179B725A8B86994C34/ + NumHeight: 5 + NumWidth: 8 + UniqueBack: false + Description: Humanoid. Cultist. + GMNotes: '' + GUID: 83aa3c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Cultist of the Deep + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -4.509055 + posY: 1.88632572 + posZ: 19.84952 + rotX: 359.373352 + rotY: 269.9969 + rotZ: 179.139786 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231801 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723985822312693/4158B85B2CFFB04B186E73179B725A8B86994C34/ + NumHeight: 5 + NumWidth: 8 + UniqueBack: false + Description: Humanoid. Cultist. + GMNotes: '' + GUID: dd24c4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Cultist of the Deep + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -4.283206 + posY: 1.92323172 + posZ: 19.4188118 + rotX: 359.945 + rotY: 269.997437 + rotZ: 177.799255 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231800 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723985822312693/4158B85B2CFFB04B186E73179B725A8B86994C34/ + NumHeight: 5 + NumWidth: 8 + UniqueBack: false + Description: Humanoid. Cultist. + GMNotes: '' + GUID: da630e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Cultist of the Deep + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -8.569081 + posY: 1.79487216 + posZ: 15.6503735 + rotX: 359.935974 + rotY: 270.000061 + rotZ: 0.0145271635 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723985822312693/4158B85B2CFFB04B186E73179B725A8B86994C34/ + NumHeight: 5 + NumWidth: 8 + UniqueBack: false +DeckIDs: +- 231820 +- 231819 +- 231818 +- 231817 +- 231816 +- 231815 +- 231814 +- 231813 +- 231812 +- 231811 +- 231810 +- 231809 +- 231808 +- 231807 +- 231806 +- 231805 +- 231804 +- 231802 +- 231801 +- 231800 +Description: '' +GMNotes: '' +GUID: a1514c +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Encounter Deck +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.9277 + posY: 1.71841538 + posZ: 5.75720024 + rotX: 359.919739 + rotY: 269.999878 + rotZ: 180.016815 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Consternation on the Constellation 0ec730/Deck Resolution 011e57.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Consternation on the Constellation 0ec730/Deck Resolution 011e57.yaml new file mode 100644 index 000000000..038ead2ea --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Consternation on the Constellation 0ec730/Deck Resolution 011e57.yaml @@ -0,0 +1,172 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 232003 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/762723985821544403/0632F8AB805D9C4AE6A7ADDBA8D056853FE2CACE/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723985821544008/1333F8742548AB91B4110616A7B718A94ACF3CE7/ + NumHeight: 5 + NumWidth: 6 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 7abb7c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Setup 7/8 + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 7.83704853 + posY: 1.71130824 + posZ: 10.8312845 + rotX: 359.934479 + rotY: 269.999878 + rotZ: 180.016251 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232004 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/762723985821544403/0632F8AB805D9C4AE6A7ADDBA8D056853FE2CACE/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723985821544008/1333F8742548AB91B4110616A7B718A94ACF3CE7/ + NumHeight: 5 + NumWidth: 6 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 47e8ab + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Setup 9/10 + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 7.67812729 + posY: 1.69350517 + posZ: 11.0331278 + rotX: 359.955017 + rotY: 270.000336 + rotZ: 180.008621 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232005 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/762723985821544403/0632F8AB805D9C4AE6A7ADDBA8D056853FE2CACE/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723985821544008/1333F8742548AB91B4110616A7B718A94ACF3CE7/ + NumHeight: 5 + NumWidth: 6 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 4e356f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Setup 11/12 + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 7.782685 + posY: 1.54810655 + posZ: 10.63871 + rotX: 359.9222 + rotY: 269.999969 + rotZ: 180.031479 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/762723985821544403/0632F8AB805D9C4AE6A7ADDBA8D056853FE2CACE/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723985821544008/1333F8742548AB91B4110616A7B718A94ACF3CE7/ + NumHeight: 5 + NumWidth: 6 + UniqueBack: true +DeckIDs: +- 232003 +- 232004 +- 232005 +Description: '' +GMNotes: '' +GUID: 011e57 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Resolution +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 7.4136 + posY: 1.54928136 + posZ: -1.65029979 + rotX: 359.920135 + rotY: 269.999939 + rotZ: 180.016861 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Consternation on the Constellation 0ec730/Deck Setup 370ae5.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Consternation on the Constellation 0ec730/Deck Setup 370ae5.yaml new file mode 100644 index 000000000..af823fdf8 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Consternation on the Constellation 0ec730/Deck Setup 370ae5.yaml @@ -0,0 +1,172 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 232002 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/762723985821544403/0632F8AB805D9C4AE6A7ADDBA8D056853FE2CACE/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723985821544008/1333F8742548AB91B4110616A7B718A94ACF3CE7/ + NumHeight: 5 + NumWidth: 6 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 5b0634 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Setup 5/6 + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -9.658071 + posY: 1.707938 + posZ: 20.78384 + rotX: 359.609253 + rotY: 269.997864 + rotZ: 1.40687978 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232001 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/762723985821544403/0632F8AB805D9C4AE6A7ADDBA8D056853FE2CACE/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723985821544008/1333F8742548AB91B4110616A7B718A94ACF3CE7/ + NumHeight: 5 + NumWidth: 6 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: a7211e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Setup 3/4 + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -9.367757 + posY: 1.73587632 + posZ: 20.8121147 + rotX: 359.9519 + rotY: 269.999939 + rotZ: 359.97525 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232000 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/762723985821544403/0632F8AB805D9C4AE6A7ADDBA8D056853FE2CACE/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723985821544008/1333F8742548AB91B4110616A7B718A94ACF3CE7/ + NumHeight: 5 + NumWidth: 6 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 1d3ab9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Setup 1/2 + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -9.46983051 + posY: 1.724483 + posZ: 21.26974 + rotX: 359.924347 + rotY: 270.039 + rotZ: 359.8503 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/762723985821544403/0632F8AB805D9C4AE6A7ADDBA8D056853FE2CACE/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/762723985821544008/1333F8742548AB91B4110616A7B718A94ACF3CE7/ + NumHeight: 5 + NumWidth: 6 + UniqueBack: true +DeckIDs: +- 232002 +- 232001 +- 232000 +Description: '' +GMNotes: '' +GUID: 370ae5 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Setup +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 7.35489941 + posY: 1.54277682 + posZ: 0.908399642 + rotX: 359.920135 + rotY: 270.0 + rotZ: 0.0168770961 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Curse of the Rougarou db7039.ttslua b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Curse of the Rougarou db7039.ttslua new file mode 100644 index 000000000..46067f58e --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Curse of the Rougarou db7039.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.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.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 791837/Custom_Model_Bag Curse of the Rougarou db7039.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Curse of the Rougarou db7039.yaml new file mode 100644 index 000000000..df46de2b4 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Curse of the Rougarou db7039.yaml @@ -0,0 +1,71 @@ +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 Curse of the Rougarou db7039/Bag Curse of the Rougarou + 44573a.yaml' +- !include 'Custom_Model_Bag Curse of the Rougarou db7039/Custom_Model_Bag Set-aside + a45247.yaml' +- !include 'Custom_Model_Bag Curse of the Rougarou db7039/Deck Agenda 917668.yaml' +- !include 'Custom_Model_Bag Curse of the Rougarou db7039/Deck Encounter Deck 134d83.yaml' +- !include 'Custom_Model_Bag Curse of the Rougarou db7039/Deck Act d47bca.yaml' +- !include 'Custom_Model_Bag Curse of the Rougarou db7039/Card Scenario 9d0d56.yaml' +- !include 'Custom_Model_Bag Curse of the Rougarou db7039/Custom_Tile Curse of the + Rougarou cf0c00.yaml' +- !include 'Custom_Model_Bag Curse of the Rougarou db7039/Deck 921551.yaml' +- !include 'Custom_Model_Bag Curse of the Rougarou db7039/Bag Locations 73e53d.yaml' +CustomMesh: + CastShadows: true + ColliderURL: '' + Convex: true + DiffuseURL: http://cloud-3.steamusercontent.com/ugc/826883954590159139/DD8593B1F0B0D531AF8F3A9B6A37568E551B9B03/ + MaterialIndex: 3 + MeshURL: https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj + NormalURL: '' + TypeIndex: 6 +Description: Investigators must spend 1XP each to play this side-mission +GMNotes: '' +GUID: db7039 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Model_Bag Curse of the Rougarou db7039.ttslua' +LuaScriptState: '{"ml":{"134d83":{"lock":false,"pos":{"x":-3.9277,"y":1.7078,"z":5.7571},"rot":{"x":359.9197,"y":269.9877,"z":180.0169}},"44573a":{"lock":false,"pos":{"x":-4.6376,"y":1.407,"z":13.8226},"rot":{"x":359.9831,"y":-0.0009,"z":359.9196}},"73e53d":{"lock":false,"pos":{"x":-11.3273,"y":1.4143,"z":7.0884},"rot":{"x":359.9831,"y":0,"z":359.92}},"917668":{"lock":false,"pos":{"x":-2.7246,"y":1.6566,"z":0.3733},"rot":{"x":0.0168,"y":180.0331,"z":0.0803}},"921551":{"lock":false,"pos":{"x":-3.9083,"y":1.5503,"z":-21.7157},"rot":{"x":359.9201,"y":269.9823,"z":0.0169}},"9d0d56":{"lock":false,"pos":{"x":-3.956,"y":1.6556,"z":-10.4412},"rot":{"x":359.9197,"y":269.9853,"z":0.0169}},"a45247":{"lock":false,"pos":{"x":1.6967,"y":1.5583,"z":14.2787},"rot":{"x":359.9551,"y":224.998,"z":0.0687}},"cf0c00":{"lock":false,"pos":{"x":-3.7325,"y":1.5823,"z":-14.9941},"rot":{"x":359.9197,"y":270.0021,"z":0.0168}},"d47bca":{"lock":false,"pos":{"x":-2.6884,"y":1.6623,"z":-5.0486},"rot":{"x":0.0168,"y":180.0327,"z":0.0803}}}}' +MaterialIndex: -1 +MeshIndex: -1 +Name: Custom_Model_Bag +Nickname: Curse of the Rougarou +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 74.37954 + posY: 4.397388 + posZ: -83.8395538 + rotX: 0.020808734 + rotY: 270.000122 + rotZ: 0.0167711116 + scaleX: 2.21 + scaleY: 0.46 + scaleZ: 2.42 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Curse of the Rougarou db7039/Bag Curse of the Rougarou 44573a.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Curse of the Rougarou db7039/Bag Curse of the Rougarou 44573a.yaml new file mode 100644 index 000000000..10e3c07d7 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Curse of the Rougarou db7039/Bag Curse of the Rougarou 44573a.yaml @@ -0,0 +1,39 @@ +Autoraise: true +ColorDiffuse: + b: 0.73780787 + g: 0.73780787 + r: 0.763066232 +ContainedObjects: +- !include 'Bag Curse of the Rougarou 44573a/Card Curse of the Rougarou 569b06.yaml' +- !include 'Bag Curse of the Rougarou 44573a/Card Monstrous Transformation 96ae32.yaml' +- !include 'Bag Curse of the Rougarou 44573a/Card The Rougarou e86419.yaml' +- !include 'Bag Curse of the Rougarou 44573a/Deck Encounter Deck aaec7e.yaml' +Description: '' +GMNotes: '' +GUID: 44573a +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +MeshIndex: -1 +Name: Bag +Nickname: Curse of the Rougarou +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -4.63760042 + posY: 1.406985 + posZ: 13.8226042 + rotX: 359.983124 + rotY: -0.000899440551 + rotZ: 359.919647 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Curse of the Rougarou db7039/Bag Curse of the Rougarou 44573a/Card Curse of the Rougarou 569b06.yaml new file mode 100644 index 000000000..31cecc012 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Curse of the Rougarou db7039/Bag Curse of the Rougarou 44573a/Card Curse of the Rougarou 569b06.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 8901 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '89': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/138879070086634183/2856A2C2077CFA2C61B9EF2498CAE6865024DB72/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: Curse. +GMNotes: '' +GUID: 569b06 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Curse of the Rougarou +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 48.98335 + posY: 2.31163645 + posZ: -33.2483253 + rotX: 359.920135 + rotY: 270.0 + rotZ: 0.00324349268 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Curse of the Rougarou db7039/Bag Curse of the Rougarou 44573a/Card Monstrous Transformation 96ae32.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Curse of the Rougarou db7039/Bag Curse of the Rougarou 44573a/Card Monstrous Transformation 96ae32.yaml new file mode 100644 index 000000000..929f2bb10 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Curse of the Rougarou db7039/Bag Curse of the Rougarou 44573a/Card Monstrous Transformation 96ae32.yaml @@ -0,0 +1,40 @@ +Autoraise: true +CardID: 7604 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '76': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/138879070086634183/2856A2C2077CFA2C61B9EF2498CAE6865024DB72/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: Talent. +GMNotes: '' +GUID: 96ae32 +Grid: true +GridProjection: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Monstrous Transformation +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -17.7790756 + posY: 3.30343342 + posZ: 16.24 + rotX: 359.877319 + rotY: 269.995422 + rotZ: 359.79184 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Curse of the Rougarou db7039/Bag Curse of the Rougarou 44573a/Card The Rougarou e86419.yaml new file mode 100644 index 000000000..72842976f --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Curse of the Rougarou db7039/Bag Curse of the Rougarou 44573a/Card The Rougarou e86419.yaml @@ -0,0 +1,40 @@ +Autoraise: true +CardID: 7312 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '73': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/138879070086623108/44B0C8898A6D506FF4C651BEB8C15337B2A813F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: Monster. Creature. Elite. +GMNotes: '' +GUID: e86419 +Grid: true +GridProjection: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: The Rougarou +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -17.6702576 + posY: 3.30215549 + posZ: 16.49185 + rotX: 359.8969 + rotY: 270.010529 + rotZ: 359.7615 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Curse of the Rougarou db7039/Bag Curse of the Rougarou 44573a/Deck Encounter Deck aaec7e.yaml new file mode 100644 index 000000000..f0e2fa0a7 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Curse of the Rougarou db7039/Bag Curse of the Rougarou 44573a/Deck Encounter Deck aaec7e.yaml @@ -0,0 +1,662 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 7405 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '74': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/138879070086623108/44B0C8898A6D506FF4C651BEB8C15337B2A813F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 2281d8 + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Insatiable Bloodlust + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -19.3495255 + posY: 1.23167646 + posZ: 3.69282937 + rotX: -0.00126174965 + rotY: 269.970154 + rotZ: -0.000311318232 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 7405 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '74': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/138879070086623108/44B0C8898A6D506FF4C651BEB8C15337B2A813F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 2b1301 + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Insatiable Bloodlust + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -19.286581 + posY: 1.36379623 + posZ: 2.49723 + rotX: -0.0003314776 + rotY: 269.9861 + rotZ: 7.052924 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 7405 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '74': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/138879070086623108/44B0C8898A6D506FF4C651BEB8C15337B2A813F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 20972b + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Insatiable Bloodlust + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -19.339 + posY: 1.36405122 + posZ: 1.30999136 + rotX: 0.0122241182 + rotY: 269.8629 + rotZ: 7.05571175 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 7400 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '74': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/138879070086623108/44B0C8898A6D506FF4C651BEB8C15337B2A813F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 67af79 + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Beast of the Bayou + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -19.30258 + posY: 1.23169959 + posZ: 3.29118037 + rotX: -0.0008314501 + rotY: 270.028839 + rotZ: -0.000969281653 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 7400 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '74': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/138879070086623108/44B0C8898A6D506FF4C651BEB8C15337B2A813F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 00ae1b + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Beast of the Bayou + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -19.0411644 + posY: 1.348672 + posZ: 1.94158089 + rotX: -0.00257989066 + rotY: 270.034973 + rotZ: 6.24002361 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 7407 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '74': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/138879070086623108/44B0C8898A6D506FF4C651BEB8C15337B2A813F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 49a9d3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: On the Prowl + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 36.0386658 + posY: 6.531484 + posZ: -21.4949169 + rotX: 359.920135 + rotY: 270.000122 + rotZ: 0.016873097 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 7407 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '74': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/138879070086623108/44B0C8898A6D506FF4C651BEB8C15337B2A813F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: '528887' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: On the Prowl + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 36.48839 + posY: 7.14805031 + posZ: -21.4128685 + rotX: 359.920135 + rotY: 269.999878 + rotZ: 0.0168647487 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 7407 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '74': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/138879070086623108/44B0C8898A6D506FF4C651BEB8C15337B2A813F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 7fe6c7 + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: On the Prowl + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -18.6998348 + posY: 1.3372066 + posZ: 0.39019835 + rotX: 0.0416601077 + rotY: 270.005371 + rotZ: 0.187582508 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 7407 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '74': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/138879070086623108/44B0C8898A6D506FF4C651BEB8C15337B2A813F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: e37396 + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: On the Prowl + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -18.5877533 + posY: 1.2808677 + posZ: 1.38878667 + rotX: 0.0279756058 + rotY: 269.999481 + rotZ: 0.08262127 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 7407 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '74': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/138879070086623108/44B0C8898A6D506FF4C651BEB8C15337B2A813F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 81741e + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: On the Prowl + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -18.4427681 + posY: 1.23220837 + posZ: 2.08432961 + rotX: 0.0204180088 + rotY: 269.999146 + rotZ: 0.00345057971 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 7403 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '74': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/138879070086623108/44B0C8898A6D506FF4C651BEB8C15337B2A813F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Dark Young. + GMNotes: '' + GUID: db62d1 + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dark Young Host + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -18.7187767 + posY: 1.40583134 + posZ: 6.81874371 + rotX: -0.000200636816 + rotY: 270.001526 + rotZ: 181.50499 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 7406 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '74': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/138879070086623108/44B0C8898A6D506FF4C651BEB8C15337B2A813F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Gug. + GMNotes: '' + GUID: 551a7b + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Marsh Gug + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -19.2555065 + posY: 1.23168707 + posZ: 4.18863058 + rotX: -0.00146826368 + rotY: 270.0 + rotZ: -0.000546841533 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 7406 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '74': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/138879070086623108/44B0C8898A6D506FF4C651BEB8C15337B2A813F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Gug. + GMNotes: '' + GUID: 891bde + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Marsh Gug + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -19.2499828 + posY: 1.37723887 + posZ: 3.93390059 + rotX: -0.00342945987 + rotY: 270.000031 + rotZ: -0.00243303971 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 7409 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '74': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/138879070086623108/44B0C8898A6D506FF4C651BEB8C15337B2A813F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Dhole. + GMNotes: '' + GUID: 4b796e + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Slime-Covered Dhole + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -18.8490238 + posY: 1.23159361 + posZ: 3.97474 + rotX: -0.004219712 + rotY: 269.960663 + rotZ: 0.02648453 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 7409 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '74': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/138879070086623108/44B0C8898A6D506FF4C651BEB8C15337B2A813F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Dhole. + GMNotes: '' + GUID: 259a79 + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Slime-Covered Dhole + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -18.7115135 + posY: 1.37917972 + posZ: 4.061019 + rotX: -0.00415054057 + rotY: 269.904938 + rotZ: 0.114914186 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '74': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/138879070086623108/44B0C8898A6D506FF4C651BEB8C15337B2A813F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 7405 +- 7405 +- 7405 +- 7400 +- 7400 +- 7407 +- 7407 +- 7407 +- 7407 +- 7407 +- 7403 +- 7406 +- 7406 +- 7409 +- 7409 +Description: Curse of the Rougarou +GMNotes: '' +GUID: aaec7e +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Encounter Deck +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 16.789608 + posY: 3.56540322 + posZ: -0.05973324 + rotX: 2.936378 + rotY: 269.970642 + rotZ: 359.2982 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Curse of the Rougarou db7039/Bag Locations 73e53d.ttslua b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Curse of the Rougarou db7039/Bag Locations 73e53d.ttslua new file mode 100644 index 000000000..1cfc46617 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Curse of the Rougarou db7039/Bag Locations 73e53d.ttslua @@ -0,0 +1,5 @@ +function onCollisionEnter(collision_info) + self.shuffle() + self.shuffle() + self.shuffle() +end diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Curse of the Rougarou db7039/Bag Locations 73e53d.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Curse of the Rougarou db7039/Bag Locations 73e53d.yaml new file mode 100644 index 000000000..254e92e6a --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Curse of the Rougarou db7039/Bag Locations 73e53d.yaml @@ -0,0 +1,39 @@ +Autoraise: true +ColorDiffuse: + b: 0.0 + g: 0.4466954 + r: 0.80460757 +ContainedObjects: +- !include 'Bag Locations 73e53d/Deck Wilderness a287d0.yaml' +- !include 'Bag Locations 73e53d/Deck New Orleans d98751.yaml' +- !include 'Bag Locations 73e53d/Deck Unhallowed Land 3c3a20.yaml' +- !include 'Bag Locations 73e53d/Deck Riverside ab7286.yaml' +Description: Curse of the Rougarou +GMNotes: '' +GUID: 73e53d +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Bag Locations 73e53d.ttslua' +LuaScriptState: '' +MaterialIndex: -1 +MeshIndex: -1 +Name: Bag +Nickname: Locations +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -11.3272972 + posY: 1.41434884 + posZ: 7.08840036 + rotX: 359.9831 + rotY: -3.057602e-05 + rotZ: 359.92 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Curse of the Rougarou db7039/Bag Locations 73e53d/Deck New Orleans d98751.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Curse of the Rougarou db7039/Bag Locations 73e53d/Deck New Orleans d98751.yaml new file mode 100644 index 000000000..46fa0f2ba --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Curse of the Rougarou db7039/Bag Locations 73e53d/Deck New Orleans d98751.yaml @@ -0,0 +1,172 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 5601 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '56': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/138879070086620847/83DC8071AC8B3FA65B46B534FE722B43617C2700/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/138879070086619228/A78D316AA65C3087EFC6C696B19611C8A9D5126B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: New Orleans. Bayou. + GMNotes: '' + GUID: 63f502 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Cursed Shores + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 12.5211306 + posY: 1.53488 + posZ: -2.29330063 + rotX: 359.9095 + rotY: 269.9999 + rotZ: 0.0127211306 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 5602 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '56': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/138879070086620847/83DC8071AC8B3FA65B46B534FE722B43617C2700/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/138879070086619228/A78D316AA65C3087EFC6C696B19611C8A9D5126B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: New Orleans. + GMNotes: '' + GUID: 5ab18a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: New Orleans + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 12.3451738 + posY: 1.53612328 + posZ: 0.964896441 + rotX: 359.911743 + rotY: 269.9998 + rotZ: 0.0143730827 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 5603 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '56': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/138879070086620847/83DC8071AC8B3FA65B46B534FE722B43617C2700/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/138879070086619228/A78D316AA65C3087EFC6C696B19611C8A9D5126B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: New Orleans. + GMNotes: '' + GUID: '499281' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: New Orleans + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 11.9989967 + posY: 1.67677665 + posZ: 0.581991255 + rotX: 359.9236 + rotY: 269.9988 + rotZ: 0.0294962823 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '56': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/138879070086620847/83DC8071AC8B3FA65B46B534FE722B43617C2700/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/138879070086619228/A78D316AA65C3087EFC6C696B19611C8A9D5126B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 5601 +- 5602 +- 5603 +Description: '' +GMNotes: '' +GUID: d98751 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: New Orleans +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 18.7106 + posY: 3.49689484 + posZ: 1.51708639 + rotX: 359.920135 + rotY: 269.9909 + rotZ: 0.01688183 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Curse of the Rougarou db7039/Bag Locations 73e53d/Deck Riverside ab7286.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Curse of the Rougarou db7039/Bag Locations 73e53d/Deck Riverside ab7286.yaml new file mode 100644 index 000000000..a582dd5fe --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Curse of the Rougarou db7039/Bag Locations 73e53d/Deck Riverside ab7286.yaml @@ -0,0 +1,172 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 265904 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2659': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/138879070086620847/83DC8071AC8B3FA65B46B534FE722B43617C2700/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/138879070086619228/A78D316AA65C3087EFC6C696B19611C8A9D5126B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Riverside. Bayou. + GMNotes: '' + GUID: e103cf + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Brackish Waters + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 19.6573486 + posY: 1.52216983 + posZ: -12.0479879 + rotX: 359.915039 + rotY: 269.999451 + rotZ: 0.0150706545 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265906 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2659': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/138879070086620847/83DC8071AC8B3FA65B46B534FE722B43617C2700/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/138879070086619228/A78D316AA65C3087EFC6C696B19611C8A9D5126B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Riverside. + GMNotes: '' + GUID: ab9d69 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Riverside + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 19.61433 + posY: 1.66265452 + posZ: -12.0576391 + rotX: 359.922546 + rotY: 269.999573 + rotZ: 0.00743459444 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265905 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2659': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/138879070086620847/83DC8071AC8B3FA65B46B534FE722B43617C2700/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/138879070086619228/A78D316AA65C3087EFC6C696B19611C8A9D5126B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Riverside. + GMNotes: '' + GUID: d5034e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Riverside + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 19.2437172 + posY: 1.6808852 + posZ: -12.168479 + rotX: 359.918121 + rotY: 269.9968 + rotZ: 0.0191028565 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2659': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/138879070086620847/83DC8071AC8B3FA65B46B534FE722B43617C2700/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/138879070086619228/A78D316AA65C3087EFC6C696B19611C8A9D5126B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 265904 +- 265906 +- 265905 +Description: '' +GMNotes: '' +GUID: ab7286 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Riverside +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 26.0014172 + posY: 3.5499332 + posZ: -8.145509 + rotX: 1.458102 + rotY: 270.065674 + rotZ: 3.46298432 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Curse of the Rougarou db7039/Bag Locations 73e53d/Deck Unhallowed Land 3c3a20.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Curse of the Rougarou db7039/Bag Locations 73e53d/Deck Unhallowed Land 3c3a20.yaml new file mode 100644 index 000000000..1988f645e --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Curse of the Rougarou db7039/Bag Locations 73e53d/Deck Unhallowed Land 3c3a20.yaml @@ -0,0 +1,172 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 5310 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '53': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/138879070086620847/83DC8071AC8B3FA65B46B534FE722B43617C2700/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/138879070086619228/A78D316AA65C3087EFC6C696B19611C8A9D5126B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Unhallowed. Bayou. + GMNotes: '' + GUID: 26b322 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Foul Swamp + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.9863338 + posY: 1.52924085 + posZ: 0.3128235 + rotX: 359.900543 + rotY: 270.00058 + rotZ: 0.009245392 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 5311 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '53': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/138879070086620847/83DC8071AC8B3FA65B46B534FE722B43617C2700/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/138879070086619228/A78D316AA65C3087EFC6C696B19611C8A9D5126B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Unhallowed. + GMNotes: '' + GUID: 15983c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Unhallowed Land + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 17.4477234 + posY: 1.52782166 + posZ: -3.612536 + rotX: 359.919128 + rotY: 269.9997 + rotZ: 0.0163991917 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 5312 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '53': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/138879070086620847/83DC8071AC8B3FA65B46B534FE722B43617C2700/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/138879070086619228/A78D316AA65C3087EFC6C696B19611C8A9D5126B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Unhallowed. + GMNotes: '' + GUID: 552a1d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Unhallowed Land + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 17.3968449 + posY: 1.66862917 + posZ: -3.48732448 + rotX: 359.911865 + rotY: 269.9994 + rotZ: 0.00553908246 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '53': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/138879070086620847/83DC8071AC8B3FA65B46B534FE722B43617C2700/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/138879070086619228/A78D316AA65C3087EFC6C696B19611C8A9D5126B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 5310 +- 5311 +- 5312 +Description: '' +GMNotes: '' +GUID: 3c3a20 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Unhallowed Land +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 22.867794 + posY: 3.49186373 + posZ: 4.111368 + rotX: 359.9201 + rotY: 270.0145 + rotZ: 0.0168611277 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Curse of the Rougarou db7039/Bag Locations 73e53d/Deck Wilderness a287d0.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Curse of the Rougarou db7039/Bag Locations 73e53d/Deck Wilderness a287d0.yaml new file mode 100644 index 000000000..189be18b2 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Curse of the Rougarou db7039/Bag Locations 73e53d/Deck Wilderness a287d0.yaml @@ -0,0 +1,172 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 5407 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '54': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/138879070086620847/83DC8071AC8B3FA65B46B534FE722B43617C2700/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/138879070086619228/A78D316AA65C3087EFC6C696B19611C8A9D5126B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Wilderness. Bayou. + GMNotes: '' + GUID: 2b7d4c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Forgotten Marsh + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 15.2204914 + posY: 1.52763963 + posZ: -13.6435575 + rotX: 359.9027 + rotY: 269.999054 + rotZ: 0.0111290533 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 5409 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '54': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/138879070086620847/83DC8071AC8B3FA65B46B534FE722B43617C2700/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/138879070086619228/A78D316AA65C3087EFC6C696B19611C8A9D5126B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Wilderness. + GMNotes: '' + GUID: 03b080 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Wilderness + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 14.490099 + posY: 1.52940607 + posZ: -10.6425247 + rotX: 359.897156 + rotY: 269.999878 + rotZ: 0.008586009 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 5408 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '54': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/138879070086620847/83DC8071AC8B3FA65B46B534FE722B43617C2700/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/138879070086619228/A78D316AA65C3087EFC6C696B19611C8A9D5126B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Wilderness. + GMNotes: '' + GUID: 3c5ea8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Wilderness + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 14.6145668 + posY: 1.52895176 + posZ: -13.23367 + rotX: 359.920135 + rotY: 269.9999 + rotZ: 0.0168667343 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '54': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/138879070086620847/83DC8071AC8B3FA65B46B534FE722B43617C2700/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/138879070086619228/A78D316AA65C3087EFC6C696B19611C8A9D5126B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 5407 +- 5409 +- 5408 +Description: '' +GMNotes: '' +GUID: a287d0 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Wilderness +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 21.59923 + posY: 3.48956871 + posZ: -9.682919 + rotX: 359.920135 + rotY: 269.9915 + rotZ: 0.0168809518 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Curse of the Rougarou db7039/Card Scenario 9d0d56.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Curse of the Rougarou db7039/Card Scenario 9d0d56.yaml new file mode 100644 index 000000000..fda243b2a --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Curse of the Rougarou db7039/Card Scenario 9d0d56.yaml @@ -0,0 +1,42 @@ +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/138879070086620847/83DC8071AC8B3FA65B46B534FE722B43617C2700/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/138879070086619228/A78D316AA65C3087EFC6C696B19611C8A9D5126B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Curse of the Rougarou +GMNotes: '' +GUID: 9d0d56 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Scenario +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.956001 + posY: 1.65564811 + posZ: -10.4412041 + rotX: 359.919739 + rotY: 269.9853 + rotZ: 0.0168560315 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Curse of the Rougarou db7039/Custom_Model_Bag Set-aside a45247.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Curse of the Rougarou db7039/Custom_Model_Bag Set-aside a45247.yaml new file mode 100644 index 000000000..8ddc3b610 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Curse of the Rougarou db7039/Custom_Model_Bag Set-aside a45247.yaml @@ -0,0 +1,58 @@ +Autoraise: true +ColorDiffuse: + b: 0.02148666 + g: 0.00100758043 + r: 0.02148666 +ContainedObjects: +- !include 'Custom_Model_Bag Set-aside a45247/Card Bear Trap 74840a.yaml' +- !include 'Custom_Model_Bag Set-aside a45247/Card Fishing Net c7b748.yaml' +- !include 'Custom_Model_Bag Set-aside a45247/Card Lady Esprit 37a76b.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: Curse of the Rougarou +GMNotes: '' +GUID: a45247 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +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.69670081 + posY: 1.55831563 + posZ: 14.2787008 + rotX: 359.955139 + rotY: 224.998 + rotZ: 0.0686831549 + scaleX: 2.0 + scaleY: 2.0 + scaleZ: 2.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Curse of the Rougarou db7039/Custom_Model_Bag Set-aside a45247/Card Bear Trap 74840a.yaml new file mode 100644 index 000000000..613d1dd72 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Curse of the Rougarou db7039/Custom_Model_Bag Set-aside a45247/Card Bear Trap 74840a.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 7400 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '74': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/138879070086634183/2856A2C2077CFA2C61B9EF2498CAE6865024DB72/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: Trap. +GMNotes: '' +GUID: 74840a +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Bear Trap +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 17.3596077 + posY: 3.57613516 + posZ: -12.289012 + rotX: 359.920715 + rotY: 270.0064 + rotZ: 0.009957658 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Curse of the Rougarou db7039/Custom_Model_Bag Set-aside a45247/Card Fishing Net c7b748.yaml new file mode 100644 index 000000000..bff05d9af --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Curse of the Rougarou db7039/Custom_Model_Bag Set-aside a45247/Card Fishing Net c7b748.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: Trap. +GMNotes: '' +GUID: c7b748 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Fishing Net +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 16.9255981 + posY: 3.5765202 + posZ: -12.6722469 + rotX: 359.919373 + rotY: 270.032959 + rotZ: 0.0169957038 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Curse of the Rougarou db7039/Custom_Model_Bag Set-aside a45247/Card Lady Esprit 37a76b.yaml new file mode 100644 index 000000000..1c6ae1dde --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Curse of the Rougarou db7039/Custom_Model_Bag Set-aside a45247/Card Lady Esprit 37a76b.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 7303 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '73': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/138879070086634183/2856A2C2077CFA2C61B9EF2498CAE6865024DB72/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: Ally. Sorcerer. +GMNotes: '' +GUID: 37a76b +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Lady Esprit +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 16.2550354 + posY: 3.58093786 + posZ: -11.85636 + rotX: 359.931732 + rotY: 270.000244 + rotZ: 0.0143915685 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Curse of the Rougarou db7039/Custom_Tile Curse of the Rougarou cf0c00.ttslua b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Curse of the Rougarou db7039/Custom_Tile Curse of the Rougarou cf0c00.ttslua new file mode 100644 index 000000000..8c433dcd4 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Curse of the Rougarou db7039/Custom_Tile Curse of the Rougarou cf0c00.ttslua @@ -0,0 +1,13 @@ +name = 'Curse of the Rougarou' + +function onLoad() + Global.call('createSetupButtons', {object=self, key=name}) +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 diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Curse of the Rougarou db7039/Custom_Tile Curse of the Rougarou cf0c00.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Curse of the Rougarou db7039/Custom_Tile Curse of the Rougarou cf0c00.yaml new file mode 100644 index 000000000..9e2702b86 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Curse of the Rougarou db7039/Custom_Tile Curse of the Rougarou cf0c00.yaml @@ -0,0 +1,42 @@ +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 +GMNotes: '' +GUID: cf0c00 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Tile Curse of the Rougarou cf0c00.ttslua' +LuaScriptState: '' +Name: Custom_Tile +Nickname: Curse of the Rougarou +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.73250055 + posY: 1.58228374 + posZ: -14.9941006 + rotX: 359.919739 + rotY: 270.002075 + rotZ: 0.0168328863 + scaleX: 2.2 + scaleY: 1.0 + scaleZ: 2.2 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Curse of the Rougarou db7039/Deck 921551.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Curse of the Rougarou db7039/Deck 921551.yaml new file mode 100644 index 000000000..b30521d8b --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Curse of the Rougarou db7039/Deck 921551.yaml @@ -0,0 +1,215 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 60503 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '605': + BackIsHidden: true + BackURL: http://i.imgur.com/UUBjsxW.jpg + FaceURL: http://i.imgur.com/OQsx2AJ.jpg + NumHeight: 2 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: df9762 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -9.651079 + posY: 1.66632116 + posZ: -0.683199167 + rotX: 359.916 + rotY: 270.000519 + rotZ: 0.0268353838 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 60502 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '605': + BackIsHidden: true + BackURL: http://i.imgur.com/UUBjsxW.jpg + FaceURL: http://i.imgur.com/OQsx2AJ.jpg + NumHeight: 2 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 2c9b49 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -9.183704 + posY: 1.82574415 + posZ: -3.838852 + rotX: 359.211365 + rotY: 269.985 + rotZ: 181.298523 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 60501 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '605': + BackIsHidden: true + BackURL: http://i.imgur.com/UUBjsxW.jpg + FaceURL: http://i.imgur.com/OQsx2AJ.jpg + NumHeight: 2 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: de3a2d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -10.7518864 + posY: 1.83166075 + posZ: -24.485857 + rotX: 359.9491 + rotY: 270.00592 + rotZ: 183.673767 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 60500 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '605': + BackIsHidden: true + BackURL: http://i.imgur.com/UUBjsxW.jpg + FaceURL: http://i.imgur.com/OQsx2AJ.jpg + NumHeight: 2 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: dccafc + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -10.680131 + posY: 1.6491406 + posZ: -24.8134022 + rotX: 359.934326 + rotY: 269.999023 + rotZ: 184.477432 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '605': + BackIsHidden: true + BackURL: http://i.imgur.com/UUBjsxW.jpg + FaceURL: http://i.imgur.com/OQsx2AJ.jpg + NumHeight: 2 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 60503 +- 60502 +- 60501 +- 60500 +Description: '' +GMNotes: '' +GUID: '921551' +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.90831351 + posY: 1.55031407 + posZ: -21.7156754 + rotX: 359.920135 + rotY: 269.982269 + rotZ: 0.0168926865 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Curse of the Rougarou db7039/Deck Act d47bca.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Curse of the Rougarou db7039/Deck Act d47bca.yaml new file mode 100644 index 000000000..f04d451b2 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Curse of the Rougarou db7039/Deck Act d47bca.yaml @@ -0,0 +1,125 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 6604 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '66': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/138878581187514194/F3B95F32E3CAFFD36A09054AEE82B4A836D6D425/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/138879070086571028/341DEBA8DACCF6D8F27E19AD24111562E78117C2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 2 + GMNotes: '' + GUID: eb968b + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Hunting the Rougarou + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -15.08824 + posY: 1.2316978 + posZ: 5.94349241 + rotX: -0.00168570026 + rotY: 180.033386 + rotZ: 359.989319 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 6603 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '66': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/138878581187514194/F3B95F32E3CAFFD36A09054AEE82B4A836D6D425/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/138879070086571028/341DEBA8DACCF6D8F27E19AD24111562E78117C2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 1 + GMNotes: '' + GUID: 548a9a + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Finding Lady Esprit + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -15.0268946 + posY: 1.37913668 + posZ: 6.090815 + rotX: 0.0017082165 + rotY: 180.049576 + rotZ: 359.9336 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '66': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/138878581187514194/F3B95F32E3CAFFD36A09054AEE82B4A836D6D425/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/138879070086571028/341DEBA8DACCF6D8F27E19AD24111562E78117C2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 6604 +- 6603 +Description: Curse of the Rougarou +GMNotes: '' +GUID: d47bca +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Act +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.6884 + posY: 1.66233313 + posZ: -5.048602 + rotX: 0.0167921968 + rotY: 180.03273 + rotZ: 0.0802733153 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Curse of the Rougarou db7039/Deck Agenda 917668.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Curse of the Rougarou db7039/Deck Agenda 917668.yaml new file mode 100644 index 000000000..c99087094 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Curse of the Rougarou db7039/Deck Agenda 917668.yaml @@ -0,0 +1,166 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 6702 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '67': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/138878581187514194/F3B95F32E3CAFFD36A09054AEE82B4A836D6D425/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/138879070086571028/341DEBA8DACCF6D8F27E19AD24111562E78117C2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 3 + GMNotes: '' + GUID: 16c364 + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Curse Spreads + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -14.9710331 + posY: 1.23169279 + posZ: 2.06155133 + rotX: -0.0008857122 + rotY: 180.024246 + rotZ: -0.0006241726 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 6701 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '67': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/138878581187514194/F3B95F32E3CAFFD36A09054AEE82B4A836D6D425/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/138879070086571028/341DEBA8DACCF6D8F27E19AD24111562E78117C2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 2 + GMNotes: '' + GUID: ef1ce2 + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Rougarou Feeds + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -15.03472 + posY: 1.37977016 + posZ: 2.3005023 + rotX: 0.0006638235 + rotY: 180.023911 + rotZ: 0.01119711 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 6700 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '67': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/138878581187514194/F3B95F32E3CAFFD36A09054AEE82B4A836D6D425/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/138879070086571028/341DEBA8DACCF6D8F27E19AD24111562E78117C2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 1 + GMNotes: '' + GUID: 0ea5ab + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: A Creature of the Bayou + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -15.2118158 + posY: 1.39688873 + posZ: 2.33433819 + rotX: 359.9605 + rotY: 180.04538 + rotZ: 359.922638 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '67': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/138878581187514194/F3B95F32E3CAFFD36A09054AEE82B4A836D6D425/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/138879070086571028/341DEBA8DACCF6D8F27E19AD24111562E78117C2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 6702 +- 6701 +- 6700 +Description: Curse of the Rougarou +GMNotes: '' +GUID: '917668' +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Agenda +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.7246 + posY: 1.65664089 + posZ: 0.373299718 + rotX: 0.0167921856 + rotY: 180.0331 + rotZ: 0.0802701563 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Curse of the Rougarou db7039/Deck Encounter Deck 134d83.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Curse of the Rougarou db7039/Deck Encounter Deck 134d83.yaml new file mode 100644 index 000000000..bdbc50303 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Curse of the Rougarou db7039/Deck Encounter Deck 134d83.yaml @@ -0,0 +1,781 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 3710 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '37': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/138879070086623108/44B0C8898A6D506FF4C651BEB8C15337B2A813F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: fcd44f + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Spectral Mist + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -20.4167252 + posY: 1.23160374 + posZ: 10.3240051 + rotX: -0.005275788 + rotY: 269.6343 + rotZ: -0.00159484206 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3710 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '37': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/138879070086623108/44B0C8898A6D506FF4C651BEB8C15337B2A813F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: f1b747 + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Spectral Mist + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -21.2866554 + posY: 1.28116059 + posZ: 10.1715851 + rotX: 0.00414084364 + rotY: 269.635284 + rotZ: 0.009243122 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3710 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '37': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/138879070086623108/44B0C8898A6D506FF4C651BEB8C15337B2A813F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: b3b19e + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Spectral Mist + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -21.4046154 + posY: 1.74608767 + posZ: 10.0697241 + rotX: -0.00452423561 + rotY: 269.6341 + rotZ: 0.00116711017 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3702 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '37': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/138879070086623108/44B0C8898A6D506FF4C651BEB8C15337B2A813F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: a7fddb + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Cursed Swamp + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -22.0698471 + posY: 1.231927 + posZ: 8.92402 + rotX: 0.008784935 + rotY: 270.018 + rotZ: 0.001633369 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3702 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '37': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/138879070086623108/44B0C8898A6D506FF4C651BEB8C15337B2A813F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: 005e92 + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Cursed Swamp + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -21.9686 + posY: 1.28124547 + posZ: 7.931979 + rotX: 0.00739351241 + rotY: 270.017975 + rotZ: 0.034007702 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3702 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '37': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/138879070086623108/44B0C8898A6D506FF4C651BEB8C15337B2A813F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: a3621c + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Cursed Swamp + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -22.0263977 + posY: 1.342563 + posZ: 6.861161 + rotX: 0.006094553 + rotY: 270.0258 + rotZ: 0.06655821 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3711 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '37': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/138879070086623108/44B0C8898A6D506FF4C651BEB8C15337B2A813F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Creature. + GMNotes: '' + GUID: b9dfc0 + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Swamp Leech + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -18.8700542 + posY: 1.231666 + posZ: 3.81456161 + rotX: -0.00252019428 + rotY: 269.923462 + rotZ: -0.000927611138 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3711 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '37': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/138879070086623108/44B0C8898A6D506FF4C651BEB8C15337B2A813F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Creature. + GMNotes: '' + GUID: 9d5122 + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Swamp Leech + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -19.1904678 + posY: 1.37718892 + posZ: 4.006807 + rotX: 0.0018006257 + rotY: 269.9235 + rotZ: -0.00523625175 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3711 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '37': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/138879070086623108/44B0C8898A6D506FF4C651BEB8C15337B2A813F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Creature. + GMNotes: '' + GUID: b9dfc0 + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Swamp Leech + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -19.1904716 + posY: 1.39464581 + posZ: 4.006798 + rotX: 0.00032751885 + rotY: 269.9235 + rotZ: -0.0008587106 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3704 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '37': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/138879070086623108/44B0C8898A6D506FF4C651BEB8C15337B2A813F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: 59477d + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dragged Under + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -18.4438171 + posY: 1.32935143 + posZ: 2.35180068 + rotX: 359.983032 + rotY: 270.0263 + rotZ: 354.818146 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3704 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '37': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/138879070086623108/44B0C8898A6D506FF4C651BEB8C15337B2A813F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: '225198' + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dragged Under + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -18.0083637 + posY: 1.2316401 + posZ: 0.7336604 + rotX: -0.00346833747 + rotY: 270.2193 + rotZ: 0.000242476832 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3704 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '37': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/138879070086623108/44B0C8898A6D506FF4C651BEB8C15337B2A813F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: 5c297d + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dragged Under + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -17.98393 + posY: 1.34064281 + posZ: -0.210578531 + rotX: -0.00380434864 + rotY: 270.207855 + rotZ: 0.0200002957 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3704 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '37': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/138879070086623108/44B0C8898A6D506FF4C651BEB8C15337B2A813F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: 78cad4 + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dragged Under + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -18.4687176 + posY: 1.3882364 + posZ: 3.188104 + rotX: 0.00441529043 + rotY: 270.097565 + rotZ: 358.771637 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3708 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '37': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/138879070086623108/44B0C8898A6D506FF4C651BEB8C15337B2A813F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: bddadf + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ripples of the Surface + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -17.3616886 + posY: 1.23178542 + posZ: -1.6808697 + rotX: 0.001712108 + rotY: 269.9996 + rotZ: 359.99295 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3708 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '37': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/138879070086623108/44B0C8898A6D506FF4C651BEB8C15337B2A813F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: '290595' + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ripples of the Surface + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -17.2207775 + posY: 1.27196217 + posZ: -2.74603271 + rotX: 359.84256 + rotY: 270.0082 + rotZ: 0.460585535 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3708 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '37': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/138879070086623108/44B0C8898A6D506FF4C651BEB8C15337B2A813F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: 79bc73 + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ripples of the Surface + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -17.2433758 + posY: 1.41694939 + posZ: -3.2452817 + rotX: 359.909058 + rotY: 270.004364 + rotZ: 0.480743617 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3701 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '37': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/138879070086623108/44B0C8898A6D506FF4C651BEB8C15337B2A813F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Creature. + GMNotes: '' + GUID: eba049 + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Bog Gator + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -18.9308128 + posY: 1.37932611 + posZ: 7.40904331 + rotX: 359.982758 + rotY: 270.0358 + rotZ: 179.987869 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3701 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '37': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/138879070086623108/44B0C8898A6D506FF4C651BEB8C15337B2A813F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Creature. + GMNotes: '' + GUID: fd576f + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Bog Gator + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -18.5939388 + posY: 1.2344662 + posZ: 7.003368 + rotX: -0.004411935 + rotY: 269.993164 + rotZ: 180.00737 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '37': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/138879070086623108/44B0C8898A6D506FF4C651BEB8C15337B2A813F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 3710 +- 3710 +- 3710 +- 3702 +- 3702 +- 3702 +- 3711 +- 3711 +- 3711 +- 3704 +- 3704 +- 3704 +- 3704 +- 3708 +- 3708 +- 3708 +- 3701 +- 3701 +Description: Curse of the Rougarou +GMNotes: '' +GUID: 134d83 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Encounter Deck +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.92770123 + posY: 1.7077564 + posZ: 5.7571 + rotX: 359.919739 + rotY: 269.987671 + rotZ: 180.016861 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Delta Green Convergence ac164e.ttslua b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Delta Green Convergence ac164e.ttslua new file mode 100644 index 000000000..46067f58e --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Delta Green Convergence ac164e.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.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.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 791837/Custom_Model_Bag Delta Green Convergence ac164e.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Delta Green Convergence ac164e.yaml new file mode 100644 index 000000000..edfb45605 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Delta Green Convergence ac164e.yaml @@ -0,0 +1,80 @@ +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 Delta Green Convergence ac164e/Card Merle''s Shut-Eye + Motel 17807e.yaml' +- !include 'Custom_Model_Bag Delta Green Convergence ac164e/Card Scenario Card 1a3caf.yaml' +- !include 'Custom_Model_Bag Delta Green Convergence ac164e/Card The Spivey Home 261874.yaml' +- !include 'Custom_Model_Bag Delta Green Convergence ac164e/Deck Encounter Deck 4a7540.yaml' +- !include 'Custom_Model_Bag Delta Green Convergence ac164e/Custom_Tile Delta Geen + Convergence 520889.yaml' +- !include 'Custom_Model_Bag Delta Green Convergence ac164e/Card Merle''s Shut-Eye + Motel 64b00f.yaml' +- !include 'Custom_Model_Bag Delta Green Convergence ac164e/Custom_Tile 7234af.yaml' +- !include 'Custom_Model_Bag Delta Green Convergence ac164e/Tablet Campaign Log 8985c4.yaml' +- !include 'Custom_Model_Bag Delta Green Convergence ac164e/Deck 8a689d.yaml' +- !include 'Custom_Model_Bag Delta Green Convergence ac164e/Deck Agenda Deck 9dab73.yaml' +- !include 'Custom_Model_Bag Delta Green Convergence ac164e/Custom_Model_Bag Set-aside + a45247.yaml' +- !include 'Custom_Model_Bag Delta Green Convergence ac164e/Card Merle''s Country + Bunker ab39b9.yaml' +- !include 'Custom_Model_Bag Delta Green Convergence ac164e/Card Green Box d2cb13.yaml' +- !include 'Custom_Model_Bag Delta Green Convergence ac164e/Card Town Hall da2cbd.yaml' +- !include 'Custom_Model_Bag Delta Green Convergence ac164e/Deck Act Deck ddc104.yaml' +- !include 'Custom_Model_Bag Delta Green Convergence ac164e/Deck Green Box Deck fe4e96.yaml' +CustomMesh: + CastShadows: true + ColliderURL: '' + Convex: true + DiffuseURL: http://cloud-3.steamusercontent.com/ugc/798737729142900469/BDA1068C5A88459AE805540FE05B8092C4F8F392/ + MaterialIndex: 3 + MeshURL: https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj + NormalURL: '' + TypeIndex: 6 +Description: '' +GMNotes: '' +GUID: ac164e +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Model_Bag Delta Green Convergence ac164e.ttslua' +LuaScriptState: '{"ml":{"17807e":{"lock":false,"pos":{"x":-23.6766,"y":1.6924,"z":11.46},"rot":{"x":359.9201,"y":269.9978,"z":180.0169}},"1a3caf":{"lock":false,"pos":{"x":-3.9559,"y":1.6556,"z":-10.4412},"rot":{"x":359.9197,"y":269.9997,"z":0.0168}},"261874":{"lock":false,"pos":{"x":-17.1201,"y":1.6726,"z":-15.28},"rot":{"x":359.9201,"y":269.9752,"z":0.0169}},"4a7540":{"lock":false,"pos":{"x":-3.9273,"y":1.8143,"z":5.7571},"rot":{"x":359.9197,"y":270.0006,"z":180.0168}},"520889":{"lock":false,"pos":{"x":-3.8323,"y":1.5826,"z":-14.4151},"rot":{"x":359.9197,"y":270.0049,"z":0.0168}},"64b00f":{"lock":false,"pos":{"x":-17.1199,"y":1.6805,"z":11.4595},"rot":{"x":359.9201,"y":269.9902,"z":0.0169}},"7234af":{"lock":false,"pos":{"x":-20.3296,"y":1.6132,"z":11.468},"rot":{"x":359.9201,"y":269.9948,"z":0.0169}},"8985c4":{"lock":false,"pos":{"x":-1.4983,"y":1.762,"z":-29.2296},"rot":{"x":359.9201,"y":269.9695,"z":0.0169}},"8a689d":{"lock":false,"pos":{"x":-17.1197,"y":1.6759,"z":-0.0295},"rot":{"x":359.9201,"y":270,"z":0.0169}},"9dab73":{"lock":false,"pos":{"x":-2.7245,"y":1.664,"z":0.3733},"rot":{"x":359.9197,"y":269.9866,"z":0.0169}},"a45247":{"lock":false,"pos":{"x":1.696,"y":1.5583,"z":14.2787},"rot":{"x":359.9551,"y":224.9981,"z":0.0687}},"ab39b9":{"lock":false,"pos":{"x":-17.1201,"y":1.6816,"z":15.1897},"rot":{"x":359.9201,"y":269.9879,"z":0.0169}},"d2cb13":{"lock":false,"pos":{"x":-12.0254,"y":1.6722,"z":7.5293},"rot":{"x":359.9201,"y":269.9951,"z":0.0169}},"da2cbd":{"lock":false,"pos":{"x":-17.1196,"y":1.6737,"z":-11.5093},"rot":{"x":359.9201,"y":270.0104,"z":0.0169}},"ddc104":{"lock":false,"pos":{"x":-2.6884,"y":1.6563,"z":-5.0485},"rot":{"x":359.9197,"y":269.9859,"z":0.0169}},"fe4e96":{"lock":false,"pos":{"x":-12.0018,"y":1.7846,"z":11.1085},"rot":{"x":359.9201,"y":270.0005,"z":180.0169}}}}' +MaterialIndex: -1 +MeshIndex: -1 +Name: Custom_Model_Bag +Nickname: Delta Green Convergence +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -49.8467941 + posY: 1.97348177 + posZ: -129.002548 + rotX: 0.0208082329 + rotY: 270.001129 + rotZ: 0.0167711973 + scaleX: 2.21 + scaleY: 0.46 + scaleZ: 2.42 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Delta Green Convergence ac164e/Card Green Box d2cb13.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Delta Green Convergence ac164e/Card Green Box d2cb13.yaml new file mode 100644 index 000000000..0f1e5a8b7 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Delta Green Convergence ac164e/Card Green Box d2cb13.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 271606 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2716': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/960858438788739490/A5792592A8F85341987DED0AC682F677E8C70545/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960858438788738306/7BF5BAA12AE5124931C20796A7BF10024FB8AFC7/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Green Box. Out of Town. +GMNotes: '' +GUID: d2cb13 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Green Box +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -12.0254011 + posY: 1.67219961 + posZ: 7.5293 + rotX: 359.9201 + rotY: 269.9951 + rotZ: 0.0168831982 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Delta Green Convergence ac164e/Card Merle's Country Bunker ab39b9.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Delta Green Convergence ac164e/Card Merle's Country Bunker ab39b9.yaml new file mode 100644 index 000000000..1fc6ad453 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Delta Green Convergence ac164e/Card Merle's Country Bunker ab39b9.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 10802 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '108': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/960858438788732971/5F27DFBB6E83390B6330ABE9F4A05014D313806C/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960858438788732117/756D22C0AF60439AA4D9EE85516911C4F534F401/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Groversville. In-town. +GMNotes: '' +GUID: ab39b9 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Merle's Country Bunker +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -17.1201 + posY: 1.68155944 + posZ: 15.1897011 + rotX: 359.9201 + rotY: 269.987946 + rotZ: 0.0168928541 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Delta Green Convergence ac164e/Card Merle's Shut-Eye Motel 17807e.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Delta Green Convergence ac164e/Card Merle's Shut-Eye Motel 17807e.yaml new file mode 100644 index 000000000..68ef6ac17 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Delta Green Convergence ac164e/Card Merle's Shut-Eye Motel 17807e.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 10805 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '108': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/960858438788732971/5F27DFBB6E83390B6330ABE9F4A05014D313806C/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960858438788732117/756D22C0AF60439AA4D9EE85516911C4F534F401/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Groversville. In-town. +GMNotes: '' +GUID: 17807e +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Merle's Shut-Eye Motel +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -23.6766 + posY: 1.69242668 + posZ: 11.460001 + rotX: 359.9201 + rotY: 269.9977 + rotZ: 180.016861 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Delta Green Convergence ac164e/Card Merle's Shut-Eye Motel 64b00f.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Delta Green Convergence ac164e/Card Merle's Shut-Eye Motel 64b00f.yaml new file mode 100644 index 000000000..9aaf32ca3 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Delta Green Convergence ac164e/Card Merle's Shut-Eye Motel 64b00f.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 10701 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '107': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/959733696293096480/3826B02E456BDA4CE87F61046E7A4306F959B8A5/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/959733696293095093/BA0AE36F6BB68822D884A166BB59842EF2BB5773/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Groversville. In-town. +GMNotes: '' +GUID: 64b00f +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Merle's Shut-Eye Motel +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -17.1199 + posY: 1.68046081 + posZ: 11.4595 + rotX: 359.9201 + rotY: 269.990173 + rotZ: 0.0168893263 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Delta Green Convergence ac164e/Card Scenario Card 1a3caf.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Delta Green Convergence ac164e/Card Scenario Card 1a3caf.yaml new file mode 100644 index 000000000..a08f6cc2a --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Delta Green Convergence ac164e/Card Scenario Card 1a3caf.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 201 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/960858438788721419/F6106B7845F5C30757C9E9DC21F30BAE79AA4E47/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960858438788715128/94213F44A42FD55FE1C4C1708B1F813AABE7D935/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Delta Green Convergence +GMNotes: '' +GUID: 1a3caf +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Scenario Card +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.95590019 + posY: 1.655648 + posZ: -10.4412012 + rotX: 359.919739 + rotY: 269.999664 + rotZ: 0.0168411713 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Delta Green Convergence ac164e/Card The Spivey Home 261874.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Delta Green Convergence ac164e/Card The Spivey Home 261874.yaml new file mode 100644 index 000000000..0b5e442c6 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Delta Green Convergence ac164e/Card The Spivey Home 261874.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 10809 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '108': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/960858438788732971/5F27DFBB6E83390B6330ABE9F4A05014D313806C/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960858438788732117/756D22C0AF60439AA4D9EE85516911C4F534F401/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Groversville. In-town. +GMNotes: '' +GUID: '261874' +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: The Spivey Home +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -17.1201 + posY: 1.67258739 + posZ: -15.2800007 + rotX: 359.9201 + rotY: 269.97522 + rotZ: 0.016910512 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Delta Green Convergence ac164e/Card Town Hall da2cbd.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Delta Green Convergence ac164e/Card Town Hall da2cbd.yaml new file mode 100644 index 000000000..c8650a706 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Delta Green Convergence ac164e/Card Town Hall da2cbd.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 10704 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '107': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/959733696293096480/3826B02E456BDA4CE87F61046E7A4306F959B8A5/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/959733696293095093/BA0AE36F6BB68822D884A166BB59842EF2BB5773/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Groversville. In-town. +GMNotes: '' +GUID: da2cbd +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Town Hall +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -17.1196 + posY: 1.673697 + posZ: -11.5093012 + rotX: 359.9201 + rotY: 270.010345 + rotZ: 0.0168616213 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Delta Green Convergence ac164e/Custom_Model_Bag Set-aside a45247.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Delta Green Convergence ac164e/Custom_Model_Bag Set-aside a45247.yaml new file mode 100644 index 000000000..61fa20575 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Delta Green Convergence ac164e/Custom_Model_Bag Set-aside a45247.yaml @@ -0,0 +1,62 @@ +Autoraise: true +ColorDiffuse: + b: 0.02148666 + g: 0.00100758043 + r: 0.02148666 +ContainedObjects: +- !include 'Custom_Model_Bag Set-aside a45247/Deck Assets 63ffae.yaml' +- !include 'Custom_Model_Bag Set-aside a45247/Deck Crop Circles 310b6c.yaml' +- !include 'Custom_Model_Bag Set-aside a45247/Deck Locations f0c29e.yaml' +- !include 'Custom_Model_Bag Set-aside a45247/Deck Enemies d2c1dc.yaml' +- !include 'Custom_Model_Bag Set-aside a45247/Card Protomatter Mass 989196.yaml' +- !include 'Custom_Model_Bag Set-aside a45247/Card Minor Protomatter Spawn 0addaa.yaml' +- !include 'Custom_Model_Bag Set-aside a45247/Card Merle''s Shut-Eye Motel 363f15.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: Delta Green Convergence +GMNotes: '' +GUID: a45247 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +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.6960007 + posY: 1.5583173 + posZ: 14.2787018 + rotX: 359.955139 + rotY: 224.998062 + rotZ: 0.06867246 + scaleX: 2.0 + scaleY: 2.0 + scaleZ: 2.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Delta Green Convergence ac164e/Custom_Model_Bag Set-aside a45247/Card Merle's Shut-Eye Motel 363f15.yaml new file mode 100644 index 000000000..7a017fc9b --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Delta Green Convergence ac164e/Custom_Model_Bag Set-aside a45247/Card Merle's Shut-Eye Motel 363f15.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 10702 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '107': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/959733696293096480/3826B02E456BDA4CE87F61046E7A4306F959B8A5/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/959733696293095093/BA0AE36F6BB68822D884A166BB59842EF2BB5773/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Groversville. In-town. +GMNotes: '' +GUID: 363f15 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Merle's Shut-Eye Motel +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 0.311898649 + posY: 3.72773051 + posZ: 14.1501217 + rotX: 0.0347724445 + rotY: 270.0001 + rotZ: 0.1331041 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Delta Green Convergence ac164e/Custom_Model_Bag Set-aside a45247/Card Minor Protomatter Spawn 0addaa.yaml new file mode 100644 index 000000000..ad50e6380 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Delta Green Convergence ac164e/Custom_Model_Bag Set-aside a45247/Card Minor Protomatter Spawn 0addaa.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 269804 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2698': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/960858438788721419/F6106B7845F5C30757C9E9DC21F30BAE79AA4E47/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960858438788715128/94213F44A42FD55FE1C4C1708B1F813AABE7D935/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Monster. Abomination. +GMNotes: '' +GUID: 0addaa +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Minor Protomatter Spawn +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 15.7498035 + posY: 3.33849216 + posZ: 49.6848335 + rotX: 0.0562324226 + rotY: 269.989258 + rotZ: 176.603775 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Delta Green Convergence ac164e/Custom_Model_Bag Set-aside a45247/Card Protomatter Mass 989196.yaml new file mode 100644 index 000000000..1b2af2b96 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Delta Green Convergence ac164e/Custom_Model_Bag Set-aside a45247/Card Protomatter Mass 989196.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 269802 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2698': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/960858438788721419/F6106B7845F5C30757C9E9DC21F30BAE79AA4E47/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960858438788715128/94213F44A42FD55FE1C4C1708B1F813AABE7D935/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Working Together +GMNotes: '' +GUID: '989196' +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Protomatter Mass +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 15.7070923 + posY: 3.39894128 + posZ: 46.7607079 + rotX: 0.02372548 + rotY: 269.998627 + rotZ: 180.030136 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Delta Green Convergence ac164e/Custom_Model_Bag Set-aside a45247/Deck Assets 63ffae.yaml new file mode 100644 index 000000000..576e7e00d --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Delta Green Convergence ac164e/Custom_Model_Bag Set-aside a45247/Deck Assets 63ffae.yaml @@ -0,0 +1,179 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 901 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '9': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/961984061635587388/47D4970B5F7AF40657A71B2069BD042A0F302810/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 656e55 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: County Medical Examiner + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -20.5133953 + posY: 1.68606365 + posZ: 14.4170961 + rotX: 359.9201 + rotY: 269.997681 + rotZ: 0.01687058 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 902 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '9': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/961984061635587388/47D4970B5F7AF40657A71B2069BD042A0F302810/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: ad37ea + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Detection Solution + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -20.5134315 + posY: 1.68467736 + posZ: 9.709 + rotX: 359.9201 + rotY: 269.997864 + rotZ: 0.0168706086 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 269801 + 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/959733696293150940/2B0B7CE982B6832E0BC17A2B93C9B343727D37B5/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: ef035f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Agent James Derringer + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -20.51334 + posY: 1.68323421 + posZ: 4.808602 + rotX: 359.9201 + rotY: 269.9978 + rotZ: 0.0168719534 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2698': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/959733696293150940/2B0B7CE982B6832E0BC17A2B93C9B343727D37B5/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '9': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/961984061635587388/47D4970B5F7AF40657A71B2069BD042A0F302810/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 901 +- 902 +- 269801 +Description: '' +GMNotes: '' +GUID: 63ffae +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Assets +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 32.8801041 + posY: 3.40058184 + posZ: 55.130455 + rotX: 0.0009198677 + rotY: 269.997864 + rotZ: 0.0169954486 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Delta Green Convergence ac164e/Custom_Model_Bag Set-aside a45247/Deck Crop Circles 310b6c.yaml new file mode 100644 index 000000000..a7afc0fa1 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Delta Green Convergence ac164e/Custom_Model_Bag Set-aside a45247/Deck Crop Circles 310b6c.yaml @@ -0,0 +1,215 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 202 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/960858438788739490/A5792592A8F85341987DED0AC682F677E8C70545/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960858438788738306/7BF5BAA12AE5124931C20796A7BF10024FB8AFC7/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Anomalous. + GMNotes: '' + GUID: d2cb13 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Crop Circle + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -42.02887 + posY: 1.85965574 + posZ: 1.98899424 + rotX: 359.9357 + rotY: 270.015747 + rotZ: 180.042633 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 204 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/960858438788739490/A5792592A8F85341987DED0AC682F677E8C70545/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960858438788738306/7BF5BAA12AE5124931C20796A7BF10024FB8AFC7/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Prosaic. + GMNotes: '' + GUID: 56ea2a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Crop Circle + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -41.67698 + posY: 1.85511339 + posZ: 2.02000332 + rotX: 359.930664 + rotY: 269.996918 + rotZ: 179.994843 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 203 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/960858438788739490/A5792592A8F85341987DED0AC682F677E8C70545/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960858438788738306/7BF5BAA12AE5124931C20796A7BF10024FB8AFC7/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Anomalous. + GMNotes: '' + GUID: beeffb + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Crop Circle + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -41.72264 + posY: 1.87318051 + posZ: 2.43101788 + rotX: 359.9325 + rotY: 269.9964 + rotZ: 179.984451 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 205 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/960858438788739490/A5792592A8F85341987DED0AC682F677E8C70545/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960858438788738306/7BF5BAA12AE5124931C20796A7BF10024FB8AFC7/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Prosaic. + GMNotes: '' + GUID: 9ee13a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Crop Circle + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -41.7113037 + posY: 1.86094713 + posZ: 4.798704 + rotX: 359.919037 + rotY: 269.9994 + rotZ: 0.0165354684 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/960858438788739490/A5792592A8F85341987DED0AC682F677E8C70545/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960858438788738306/7BF5BAA12AE5124931C20796A7BF10024FB8AFC7/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 202 +- 204 +- 203 +- 205 +Description: '' +GMNotes: '' +GUID: 310b6c +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Crop Circles +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 32.88019 + posY: 3.30327654 + posZ: 45.52196 + rotX: 359.9201 + rotY: 269.999878 + rotZ: 0.0168693513 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Delta Green Convergence ac164e/Custom_Model_Bag Set-aside a45247/Deck Enemies d2c1dc.yaml new file mode 100644 index 000000000..8a56b019e --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Delta Green Convergence ac164e/Custom_Model_Bag Set-aside a45247/Deck Enemies d2c1dc.yaml @@ -0,0 +1,401 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 10617 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '106': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960858438788746168/2169E8520EF406C906EA6EA0D245330E3AF7C3B3/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. EBE. Non-terrestrial. + GMNotes: '' + GUID: 663eeb + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Grey + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -27.5964241 + posY: 1.69455421 + posZ: 9.70946 + rotX: 359.9201 + rotY: 269.997833 + rotZ: 0.0168704651 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 10616 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '106': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960858438788746168/2169E8520EF406C906EA6EA0D245330E3AF7C3B3/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. EBE. Non-terrestrial. + GMNotes: '' + GUID: c89395 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Grey + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -27.5963326 + posY: 1.69311118 + posZ: 4.80906248 + rotX: 359.9201 + rotY: 269.997925 + rotZ: 0.01687237 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 10615 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '106': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960858438788746168/2169E8520EF406C906EA6EA0D245330E3AF7C3B3/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. EBE. Non-terrestrial. + GMNotes: '' + GUID: fa4f85 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Grey + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -27.5965176 + posY: 1.69175136 + posZ: 0.190408215 + rotX: 359.9201 + rotY: 269.997864 + rotZ: 0.01687367 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 811 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '8': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/959733696293054941/AEE818AF1D315402984492115223930B0C4D5524/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Human. Elite. + GMNotes: '' + GUID: 9084f4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: NRO Delta Team + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -27.5963955 + posY: 1.84273267 + posZ: 9.709464 + rotX: 359.919067 + rotY: 269.997345 + rotZ: 0.016543299 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 271602 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/960858438788721419/F6106B7845F5C30757C9E9DC21F30BAE79AA4E47/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960858438788715128/94213F44A42FD55FE1C4C1708B1F813AABE7D935/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Monster. Abomination. + GMNotes: '' + GUID: 7cf87e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Protomatter Mass + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -27.5963116 + posY: 1.84116161 + posZ: 9.709427 + rotX: 359.9514 + rotY: 270.0006 + rotZ: 0.0136950864 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 10625 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '106': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960858438788746168/2169E8520EF406C906EA6EA0D245330E3AF7C3B3/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Mi-Go. Non-terrestrial. + GMNotes: '' + GUID: '150332' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Mi-Go Warrior + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -27.5961514 + posY: 1.98146629 + posZ: 9.709452 + rotX: 359.671875 + rotY: 269.9983 + rotZ: -0.00383381313 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 812 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '8': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/959733696293054941/AEE818AF1D315402984492115223930B0C4D5524/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Abomination. Non-terrestrial. + GMNotes: '' + GUID: d295f3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Spawn of Ubbo-Sathla + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -27.595726 + posY: 2.123966 + posZ: 9.709393 + rotX: 359.58844 + rotY: 270.002228 + rotZ: 359.977 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 10624 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '106': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960858438788746168/2169E8520EF406C906EA6EA0D245330E3AF7C3B3/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Mi-Go. Non-terrestrial. + GMNotes: '' + GUID: f1b190 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Mi-Go Scientist + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -27.59634 + posY: 2.055473 + posZ: 4.80906343 + rotX: 359.9201 + rotY: 269.9978 + rotZ: 0.01687392 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '106': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960858438788746168/2169E8520EF406C906EA6EA0D245330E3AF7C3B3/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '2716': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/960858438788721419/F6106B7845F5C30757C9E9DC21F30BAE79AA4E47/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960858438788715128/94213F44A42FD55FE1C4C1708B1F813AABE7D935/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + '8': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/959733696293054941/AEE818AF1D315402984492115223930B0C4D5524/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 10617 +- 10616 +- 10615 +- 811 +- 271602 +- 10625 +- 812 +- 10624 +Description: '' +GMNotes: '' +GUID: d2c1dc +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Enemies +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 33.34141 + posY: 3.38084388 + posZ: 34.3861732 + rotX: 0.0208074711 + rotY: 269.995117 + rotZ: 0.0167726111 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Delta Green Convergence ac164e/Custom_Model_Bag Set-aside a45247/Deck Locations f0c29e.yaml new file mode 100644 index 000000000..34608468d --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Delta Green Convergence ac164e/Custom_Model_Bag Set-aside a45247/Deck Locations f0c29e.yaml @@ -0,0 +1,265 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 208 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/960858438788739490/A5792592A8F85341987DED0AC682F677E8C70545/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960858438788738306/7BF5BAA12AE5124931C20796A7BF10024FB8AFC7/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Groversville. Out-of-town. + GMNotes: '' + GUID: e6565b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Owens Farm + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -34.6416931 + posY: 1.705764 + posZ: 14.4148655 + rotX: 359.9201 + rotY: 269.999969 + rotZ: 0.0168707762 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 209 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/960858438788739490/A5792592A8F85341987DED0AC682F677E8C70545/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960858438788738306/7BF5BAA12AE5124931C20796A7BF10024FB8AFC7/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Groversville. Out-of-town. + GMNotes: '' + GUID: 69d892 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Reservoir + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -34.6416359 + posY: 1.70437753 + posZ: 9.706744 + rotX: 359.9201 + rotY: 269.999939 + rotZ: 0.016869558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 10700 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '107': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/959733696293096480/3826B02E456BDA4CE87F61046E7A4306F959B8A5/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/959733696293095093/BA0AE36F6BB68822D884A166BB59842EF2BB5773/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Outskirts. + GMNotes: '' + GUID: 4e9ea8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Abandoned Barn + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -41.711216 + posY: 1.71561968 + posZ: 14.4071531 + rotX: 359.9201 + rotY: 269.999878 + rotZ: 0.0168675147 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 201 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/960858438788739490/A5792592A8F85341987DED0AC682F677E8C70545/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960858438788738306/7BF5BAA12AE5124931C20796A7BF10024FB8AFC7/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Groversville. Out-of-town. + GMNotes: '' + GUID: f98b3a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Allison Farm + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -41.7114067 + posY: 1.71423364 + posZ: 9.699092 + rotX: 359.9201 + rotY: 269.997437 + rotZ: 0.0168728661 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 207 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/960858438788739490/A5792592A8F85341987DED0AC682F677E8C70545/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960858438788738306/7BF5BAA12AE5124931C20796A7BF10024FB8AFC7/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Groversville. Out-of-town. + GMNotes: '' + GUID: aa0922 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Gum Farm + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -41.71133 + posY: 1.71561337 + posZ: 4.79869843 + rotX: 359.9201 + rotY: 270.0 + rotZ: 180.016876 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '107': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/959733696293096480/3826B02E456BDA4CE87F61046E7A4306F959B8A5/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/959733696293095093/BA0AE36F6BB68822D884A166BB59842EF2BB5773/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + '2': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/960858438788739490/A5792592A8F85341987DED0AC682F677E8C70545/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960858438788738306/7BF5BAA12AE5124931C20796A7BF10024FB8AFC7/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 208 +- 209 +- 10700 +- 201 +- 207 +Description: '' +GMNotes: '' +GUID: f0c29e +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Locations +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 32.88 + posY: 3.30274749 + posZ: 40.90331 + rotX: 359.9201 + rotY: 270.000031 + rotZ: 0.0168693233 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Delta Green Convergence ac164e/Custom_Tile 7234af.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Delta Green Convergence ac164e/Custom_Tile 7234af.yaml new file mode 100644 index 000000000..356fd0d90 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Delta Green Convergence ac164e/Custom_Tile 7234af.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 7234af +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.3296 + posY: 1.61322546 + posZ: 11.4680014 + rotX: 359.9201 + rotY: 269.994781 + rotZ: 0.0169015415 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Delta Green Convergence ac164e/Custom_Tile Delta Geen Convergence 520889.ttslua b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Delta Green Convergence ac164e/Custom_Tile Delta Geen Convergence 520889.ttslua new file mode 100644 index 000000000..77ec0033d --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Delta Green Convergence ac164e/Custom_Tile Delta Geen Convergence 520889.ttslua @@ -0,0 +1,21 @@ +name = 'Delta Green' + +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 The Side Missions 791837/Custom_Model_Bag Delta Green Convergence ac164e/Custom_Tile Delta Geen Convergence 520889.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Delta Green Convergence ac164e/Custom_Tile Delta Geen Convergence 520889.yaml new file mode 100644 index 000000000..4e07bd14d --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Delta Green Convergence ac164e/Custom_Tile Delta Geen Convergence 520889.yaml @@ -0,0 +1,42 @@ +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 +GMNotes: '' +GUID: '520889' +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Tile Delta Geen Convergence 520889.ttslua' +LuaScriptState: '' +Name: Custom_Tile +Nickname: Delta Geen Convergence +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.8323 + posY: 1.58259356 + posZ: -14.4151039 + rotX: 359.919739 + rotY: 270.004944 + rotZ: 0.0168310758 + scaleX: 2.2 + scaleY: 1.0 + scaleZ: 2.2 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Delta Green Convergence ac164e/Deck 8a689d.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Delta Green Convergence ac164e/Deck 8a689d.yaml new file mode 100644 index 000000000..327144ea8 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Delta Green Convergence ac164e/Deck 8a689d.yaml @@ -0,0 +1,265 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 10703 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '107': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/959733696293096480/3826B02E456BDA4CE87F61046E7A4306F959B8A5/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/959733696293095093/BA0AE36F6BB68822D884A166BB59842EF2BB5773/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Groversville. In-town. + GMNotes: '' + GUID: 65e544 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Main Street + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -17.1199512 + posY: 1.67923129 + posZ: 7.569982 + rotX: 359.915222 + rotY: 269.993683 + rotZ: 0.0145743433 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 10807 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '108': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/960858438788732971/5F27DFBB6E83390B6330ABE9F4A05014D313806C/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960858438788732117/756D22C0AF60439AA4D9EE85516911C4F534F401/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Groversville. In-town. + GMNotes: '' + GUID: d5e7e2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Main Street + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -17.1199169 + posY: 1.67814159 + posZ: 3.85997677 + rotX: 359.915375 + rotY: 269.994751 + rotZ: 0.014645 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 10800 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '108': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/960858438788732971/5F27DFBB6E83390B6330ABE9F4A05014D313806C/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960858438788732117/756D22C0AF60439AA4D9EE85516911C4F534F401/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Groversville. In-town. + GMNotes: '' + GUID: 965fe9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Main Street + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -17.119936 + posY: 1.67699826 + posZ: -0.0300189983 + rotX: 359.9155 + rotY: 269.993774 + rotZ: 0.0147087825 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 10801 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '108': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/960858438788732971/5F27DFBB6E83390B6330ABE9F4A05014D313806C/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960858438788732117/756D22C0AF60439AA4D9EE85516911C4F534F401/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Groversville. In-town. + GMNotes: '' + GUID: '939239' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Main Street + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -17.1199684 + posY: 1.67591751 + posZ: -3.830226 + rotX: 359.9206 + rotY: 269.996277 + rotZ: 0.0164781176 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 10806 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '108': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/960858438788732971/5F27DFBB6E83390B6330ABE9F4A05014D313806C/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960858438788732117/756D22C0AF60439AA4D9EE85516911C4F534F401/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Groversville. In-town. + GMNotes: '' + GUID: ecbc1b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Main Street + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -17.1181 + posY: 1.77916133 + posZ: -3.829811 + rotX: 358.214478 + rotY: 270.006561 + rotZ: 0.0135171022 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '107': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/959733696293096480/3826B02E456BDA4CE87F61046E7A4306F959B8A5/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/959733696293095093/BA0AE36F6BB68822D884A166BB59842EF2BB5773/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + '108': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/960858438788732971/5F27DFBB6E83390B6330ABE9F4A05014D313806C/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960858438788732117/756D22C0AF60439AA4D9EE85516911C4F534F401/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 10703 +- 10807 +- 10800 +- 10801 +- 10806 +Description: '' +GMNotes: '' +GUID: 8a689d +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -17.1197 + posY: 1.67594516 + posZ: -0.02950023 + rotX: 359.9201 + rotY: 270.0 + rotZ: 0.0168768652 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Delta Green Convergence ac164e/Deck Act Deck ddc104.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Delta Green Convergence ac164e/Deck Act Deck ddc104.yaml new file mode 100644 index 000000000..46f5ddd0e --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Delta Green Convergence ac164e/Deck Act Deck ddc104.yaml @@ -0,0 +1,308 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 270001 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2700': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/959733696293041173/B0E9589FD6DDC02EE52001DF592D3EF0DF95E113/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/959733696293038799/63628E346E6B7EFC0A62E2E17C4082638DD9F7D2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 5 + GMNotes: '' + GUID: 5341f9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Aftermath + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 23.4226646 + posY: 1.34486723 + posZ: 52.38848 + rotX: 359.9829 + rotY: 269.985657 + rotZ: 0.01027575 + scaleX: 0.7 + scaleY: 1.0 + scaleZ: 0.7 + XmlUI: '' +- Autoraise: true + CardID: 270000 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2700': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/959733696293041173/B0E9589FD6DDC02EE52001DF592D3EF0DF95E113/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/959733696293038799/63628E346E6B7EFC0A62E2E17C4082638DD9F7D2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 4 + GMNotes: '' + GUID: 8f6b8b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Enemy Revealed + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 11.793931 + posY: 1.34053051 + posZ: 50.3102837 + rotX: 0.0272007789 + rotY: 269.985046 + rotZ: 0.0173420329 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 270002 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2700': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/959733696293041173/B0E9589FD6DDC02EE52001DF592D3EF0DF95E113/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/959733696293038799/63628E346E6B7EFC0A62E2E17C4082638DD9F7D2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 4 + GMNotes: '' + GUID: cebce0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: A Negotiated Solution + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 15.4768953 + posY: 1.34179306 + posZ: 50.37059 + rotX: 0.0133059938 + rotY: 269.986847 + rotZ: 0.0148368366 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 270102 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2701': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/961984061635565544/EC17E1B79CACA87B8DE9319BCC2CA9C9C27DAF21/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/961984061635564508/29222A6636BCB919A685D520DF2077612FC17614/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 3 + GMNotes: '' + GUID: acd3c7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Closing In... + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 19.13799 + posY: 1.34318316 + posZ: 50.14636 + rotX: 0.0184510015 + rotY: 269.9856 + rotZ: 0.0157244466 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 270101 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2701': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/961984061635565544/EC17E1B79CACA87B8DE9319BCC2CA9C9C27DAF21/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/961984061635564508/29222A6636BCB919A685D520DF2077612FC17614/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 2 + GMNotes: '' + GUID: 339aa2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '"The Ufo Guy"' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 23.17097 + posY: 1.34457612 + posZ: 50.02812 + rotX: 0.0175164212 + rotY: 269.985229 + rotZ: 0.0162343867 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 270100 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2701': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/961984061635565544/EC17E1B79CACA87B8DE9319BCC2CA9C9C27DAF21/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/961984061635564508/29222A6636BCB919A685D520DF2077612FC17614/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 1 + GMNotes: '' + GUID: 8e86a6 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Groversville + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 23.1777458 + posY: 1.48960149 + posZ: 49.74514 + rotX: 0.01293693 + rotY: 269.9856 + rotZ: 0.0243718829 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2700': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/959733696293041173/B0E9589FD6DDC02EE52001DF592D3EF0DF95E113/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/959733696293038799/63628E346E6B7EFC0A62E2E17C4082638DD9F7D2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + '2701': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/961984061635565544/EC17E1B79CACA87B8DE9319BCC2CA9C9C27DAF21/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/961984061635564508/29222A6636BCB919A685D520DF2077612FC17614/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 270001 +- 270000 +- 270002 +- 270102 +- 270101 +- 270100 +Description: '' +GMNotes: '' +GUID: ddc104 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Act Deck +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.6884 + posY: 1.65632224 + posZ: -5.048502 + rotX: 359.919739 + rotY: 269.9859 + rotZ: 0.01685871 + scaleX: 0.7 + scaleY: 1.0 + scaleZ: 0.7 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Delta Green Convergence ac164e/Deck Agenda Deck 9dab73.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Delta Green Convergence ac164e/Deck Agenda Deck 9dab73.yaml new file mode 100644 index 000000000..611017f41 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Delta Green Convergence ac164e/Deck Agenda Deck 9dab73.yaml @@ -0,0 +1,129 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 269901 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2699': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/961984061635583361/32EC0ADBA41B630009E014D3370F9B0F0069B497/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/961984061635582511/01B0280DDCB130E2752705E00109A28EA76255E1/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 2 + GMNotes: '' + GUID: 72eba2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Time Is Running Out + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 26.502327 + posY: 1.34727585 + posZ: 55.27795 + rotX: 0.0131278457 + rotY: 270.2021 + rotZ: 0.0155735072 + scaleX: 0.7 + scaleY: 1.0 + scaleZ: 0.7 + XmlUI: '' +- Autoraise: true + CardID: 269900 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2699': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/961984061635583361/32EC0ADBA41B630009E014D3370F9B0F0069B497/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/961984061635582511/01B0280DDCB130E2752705E00109A28EA76255E1/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 1 + GMNotes: '' + GUID: 6e31e5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: A Hidden Land + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 26.2229137 + posY: 1.49218106 + posZ: 55.09183 + rotX: 0.02472322 + rotY: 269.992676 + rotZ: 0.0163567439 + scaleX: 0.7 + scaleY: 1.0 + scaleZ: 0.7 + XmlUI: '' +CustomDeck: + '2699': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/961984061635583361/32EC0ADBA41B630009E014D3370F9B0F0069B497/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/961984061635582511/01B0280DDCB130E2752705E00109A28EA76255E1/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 269901 +- 269900 +Description: '' +GMNotes: '' +GUID: 9dab73 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Agenda Deck +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.7245 + posY: 1.66397715 + posZ: 0.373299748 + rotX: 359.919739 + rotY: 269.986572 + rotZ: 0.0168578066 + scaleX: 0.7 + scaleY: 1.0 + scaleZ: 0.7 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Delta Green Convergence ac164e/Deck Encounter Deck 4a7540.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Delta Green Convergence ac164e/Deck Encounter Deck 4a7540.yaml new file mode 100644 index 000000000..5ee59cd90 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Delta Green Convergence ac164e/Deck Encounter Deck 4a7540.yaml @@ -0,0 +1,1684 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 10641 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '106': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960858438788746168/2169E8520EF406C906EA6EA0D245330E3AF7C3B3/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 3d1999 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: UFO Crazy + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -15.3349743 + posY: 1.67886448 + posZ: 14.4911022 + rotX: 359.9201 + rotY: 269.999878 + rotZ: 0.01686742 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 10640 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '106': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960858438788746168/2169E8520EF406C906EA6EA0D245330E3AF7C3B3/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: '532718' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: UFO Crazy + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -15.7658119 + posY: 1.67802227 + posZ: 9.590662 + rotX: 359.9201 + rotY: 269.983917 + rotZ: 0.01689191 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 10642 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '106': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960858438788746168/2169E8520EF406C906EA6EA0D245330E3AF7C3B3/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 2bacc8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: UFO Crazy + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -15.7914181 + posY: 1.67711425 + posZ: 6.38579035 + rotX: 359.9201 + rotY: 269.999329 + rotZ: 0.0168691445 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 822 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '8': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/959733696293054941/AEE818AF1D315402984492115223930B0C4D5524/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 7bd85f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Alien Intel + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -15.5335464 + posY: 1.675611 + posZ: 2.50171781 + rotX: 359.9201 + rotY: 269.999847 + rotZ: 0.0168712027 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 823 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '8': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/959733696293054941/AEE818AF1D315402984492115223930B0C4D5524/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 465e99 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Alien Intel + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -15.1286535 + posY: 1.67382741 + posZ: -1.63794076 + rotX: 359.9201 + rotY: 269.999817 + rotZ: 0.01686754 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 10621 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '106': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960858438788746168/2169E8520EF406C906EA6EA0D245330E3AF7C3B3/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 5446ef + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Lights in the Sky + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -15.1319084 + posY: 1.67192841 + posZ: -8.102413 + rotX: 359.9201 + rotY: 270.0 + rotZ: 0.0168683343 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 10620 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '106': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960858438788746168/2169E8520EF406C906EA6EA0D245330E3AF7C3B3/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 8168a2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Lights in the Sky + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -14.9311724 + posY: 1.67254686 + posZ: -5.05163145 + rotX: 359.9201 + rotY: 269.9997 + rotZ: 0.0168715138 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 818 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '8': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/959733696293054941/AEE818AF1D315402984492115223930B0C4D5524/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 3971f0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: U.A.P. + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -15.8183813 + posY: 1.6741 + posZ: -3.72590518 + rotX: 359.915619 + rotY: 269.99823 + rotZ: 0.0156099908 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 817 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '8': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/959733696293054941/AEE818AF1D315402984492115223930B0C4D5524/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 552d87 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: U.A.P. + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -15.7589407 + posY: 1.81439745 + posZ: -3.38888025 + rotX: 359.91983 + rotY: 270.000824 + rotZ: 359.9757 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 10614 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '106': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960858438788746168/2169E8520EF406C906EA6EA0D245330E3AF7C3B3/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 857e76 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Drive By + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -34.64205 + posY: 1.70293522 + posZ: 4.80645132 + rotX: 359.9201 + rotY: 269.999268 + rotZ: 0.0168719925 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 10612 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '106': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960858438788746168/2169E8520EF406C906EA6EA0D245330E3AF7C3B3/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: f8cf94 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Drive By + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -34.642086 + posY: 1.70576453 + posZ: 14.4149475 + rotX: 359.9201 + rotY: 269.9993 + rotZ: 0.01686999 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 10613 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '106': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960858438788746168/2169E8520EF406C906EA6EA0D245330E3AF7C3B3/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: ae8fc1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Drive By + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -34.6314735 + posY: 1.70436311 + posZ: 9.705807 + rotX: 359.9201 + rotY: 270.0055 + rotZ: 0.016869152 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 801 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '8': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/959733696293054941/AEE818AF1D315402984492115223930B0C4D5524/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 45bf23 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Animal Mutilation + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -34.6421432 + posY: 1.7000885 + posZ: -4.86118746 + rotX: 359.9201 + rotY: 270.0 + rotZ: 0.0168692619 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 800 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '8': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/959733696293054941/AEE818AF1D315402984492115223930B0C4D5524/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: ff6d58 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Animal Mutilation + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -34.64224 + posY: 1.7015754 + posZ: 0.18779923 + rotX: 359.9201 + rotY: 270.0 + rotZ: 0.0168717857 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 809 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '8': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/959733696293054941/AEE818AF1D315402984492115223930B0C4D5524/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 1e2ad4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Missing Time + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -34.642292 + posY: 1.69864142 + posZ: -9.775974 + rotX: 359.9201 + rotY: 269.999817 + rotZ: 0.0168695413 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 810 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '8': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/959733696293054941/AEE818AF1D315402984492115223930B0C4D5524/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: f6e2f7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Missing Time + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -34.64232 + posY: 1.69724846 + posZ: -14.5070686 + rotX: 359.9201 + rotY: 270.0 + rotZ: 0.0168688688 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 821 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '8': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/959733696293054941/AEE818AF1D315402984492115223930B0C4D5524/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 061be3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Abducted + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -41.7114372 + posY: 1.70994389 + posZ: -4.86893749 + rotX: 359.9201 + rotY: 270.0 + rotZ: 0.0168697853 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 820 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '8': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/959733696293054941/AEE818AF1D315402984492115223930B0C4D5524/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: d20785 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Abducted + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -41.7115 + posY: 1.70849669 + posZ: -9.783747 + rotX: 359.9201 + rotY: 270.000061 + rotZ: 0.01686853 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 819 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '8': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/959733696293054941/AEE818AF1D315402984492115223930B0C4D5524/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 477aa0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Abducted + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -41.71161 + posY: 1.70710385 + posZ: -14.5148258 + rotX: 359.9201 + rotY: 270.000183 + rotZ: 0.01686621 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 807 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '8': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/959733696293054941/AEE818AF1D315402984492115223930B0C4D5524/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 25595d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: I Want To Believe + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -27.5964336 + posY: 1.69175124 + posZ: 0.190390438 + rotX: 359.9201 + rotY: 269.999268 + rotZ: 0.0168722458 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 808 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '8': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/959733696293054941/AEE818AF1D315402984492115223930B0C4D5524/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 2604d8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: I Want To Believe + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -27.59634 + posY: 1.69026458 + posZ: -4.858596 + rotX: 359.9201 + rotY: 269.999268 + rotZ: 0.0168696679 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 814 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '8': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/959733696293054941/AEE818AF1D315402984492115223930B0C4D5524/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: d295f3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Stakeout + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -27.5962486 + posY: 1.69311106 + posZ: 4.809045 + rotX: 359.9201 + rotY: 269.999268 + rotZ: 0.0168698821 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 813 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '8': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/959733696293054941/AEE818AF1D315402984492115223930B0C4D5524/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: a379b5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Stakeout + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -27.59634 + posY: 1.69455409 + posZ: 9.709441 + rotX: 359.9201 + rotY: 269.999268 + rotZ: 0.0168683343 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 816 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '8': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/959733696293054941/AEE818AF1D315402984492115223930B0C4D5524/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 4be693 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Truth is Out There + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -27.5964622 + posY: 1.83333278 + posZ: 0.190408424 + rotX: 359.918823 + rotY: 269.999329 + rotZ: 0.01641672 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 815 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '8': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/959733696293054941/AEE818AF1D315402984492115223930B0C4D5524/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 4b5d39 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Truth is Out There + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -27.596489 + posY: 1.840477 + posZ: 0.19041352 + rotX: 359.9191 + rotY: 269.993927 + rotZ: 0.0165893547 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 804 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '8': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/959733696293054941/AEE818AF1D315402984492115223930B0C4D5524/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 80049b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Black Helicopter + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -20.5134335 + posY: 1.68038774 + posZ: -4.85904026 + rotX: 359.9201 + rotY: 269.997284 + rotZ: 0.0168719888 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 802 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '8': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/959733696293054941/AEE818AF1D315402984492115223930B0C4D5524/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: ef00c9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Black Helicopter + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -20.5134182 + posY: 1.67894042 + posZ: -9.773861 + rotX: 359.9201 + rotY: 269.999268 + rotZ: 0.0168695953 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 803 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '8': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/959733696293054941/AEE818AF1D315402984492115223930B0C4D5524/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 00fe22 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Black Helicopter + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -20.5135231 + posY: 1.67754745 + posZ: -14.5049381 + rotX: 359.9201 + rotY: 269.999329 + rotZ: 0.0168699548 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 805 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '8': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/959733696293054941/AEE818AF1D315402984492115223930B0C4D5524/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 5f629b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Disinfo Campaign + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -20.513258 + posY: 1.68323421 + posZ: 4.80858564 + rotX: 359.9201 + rotY: 269.9993 + rotZ: 0.016870819 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 806 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '8': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/959733696293054941/AEE818AF1D315402984492115223930B0C4D5524/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: b33d4b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Disinfo Campaign + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -20.5134449 + posY: 1.68187439 + posZ: 0.18993254 + rotX: 359.9201 + rotY: 269.999268 + rotZ: 0.0168702062 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 10628 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '106': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960858438788746168/2169E8520EF406C906EA6EA0D245330E3AF7C3B3/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: beb1d7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Penomen-X Documentary Team + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -20.5133133 + posY: 1.68606353 + posZ: 14.41708 + rotX: 359.9201 + rotY: 269.9993 + rotZ: 0.01687003 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 10629 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '106': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960858438788746168/2169E8520EF406C906EA6EA0D245330E3AF7C3B3/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 7e5e3f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Penomen-X Documentary Team + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -20.5133514 + posY: 1.68467724 + posZ: 9.708982 + rotX: 359.9201 + rotY: 269.999329 + rotZ: 0.01687019 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 10623 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '106': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960858438788746168/2169E8520EF406C906EA6EA0D245330E3AF7C3B3/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 4a6641 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Men in Black + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -14.9038992 + posY: 1.669992 + posZ: -13.5988588 + rotX: 359.9201 + rotY: 269.999664 + rotZ: 0.016868785 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 10622 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '106': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960858438788746168/2169E8520EF406C906EA6EA0D245330E3AF7C3B3/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: f54d82 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Men in Black + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -15.0350885 + posY: 1.670871 + posZ: -11.2351656 + rotX: 359.9201 + rotY: 269.999664 + rotZ: 0.0168702956 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 10633 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '106': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960858438788746168/2169E8520EF406C906EA6EA0D245330E3AF7C3B3/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 3902e3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Street Gang + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -15.3485241 + posY: 1.67473209 + posZ: 0.3930838 + rotX: 359.9201 + rotY: 270.0 + rotZ: 0.0168698113 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 10634 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '106': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960858438788746168/2169E8520EF406C906EA6EA0D245330E3AF7C3B3/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: faa975 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Street Gang + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -15.3486414 + posY: 1.67334592 + posZ: -4.31499529 + rotX: 359.9201 + rotY: 269.999481 + rotZ: 0.0168703515 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 10635 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '106': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960858438788746168/2169E8520EF406C906EA6EA0D245330E3AF7C3B3/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 63fe91 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Street Gang + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -15.3485441 + posY: 1.67190278 + posZ: -9.215389 + rotX: 359.9201 + rotY: 269.997437 + rotZ: 0.0168710519 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 10630 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '106': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960858438788746168/2169E8520EF406C906EA6EA0D245330E3AF7C3B3/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: fa4f85 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Sheriff Dan Oakley + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -15.1931505 + posY: 1.82086754 + posZ: 4.76073 + rotX: 359.91452 + rotY: 269.991455 + rotZ: 0.011857044 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '106': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960858438788746168/2169E8520EF406C906EA6EA0D245330E3AF7C3B3/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '8': + BackIsHidden: false + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/959733696293054941/AEE818AF1D315402984492115223930B0C4D5524/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 10641 +- 10640 +- 10642 +- 822 +- 823 +- 10621 +- 10620 +- 818 +- 817 +- 10614 +- 10612 +- 10613 +- 801 +- 800 +- 809 +- 810 +- 821 +- 820 +- 819 +- 807 +- 808 +- 814 +- 813 +- 816 +- 815 +- 804 +- 802 +- 803 +- 805 +- 806 +- 10628 +- 10629 +- 10623 +- 10622 +- 10633 +- 10634 +- 10635 +- 10630 +Description: '' +GMNotes: '' +GUID: 4a7540 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Encounter Deck +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.9273 + posY: 1.81434488 + posZ: 5.75710058 + rotX: 359.919739 + rotY: 270.0006 + rotZ: 180.016815 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Delta Green Convergence ac164e/Deck Green Box Deck fe4e96.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Delta Green Convergence ac164e/Deck Green Box Deck fe4e96.yaml new file mode 100644 index 000000000..f1dc70307 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Delta Green Convergence ac164e/Deck Green Box Deck fe4e96.yaml @@ -0,0 +1,1340 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 270218 + 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/960858438788727691/1D7BCD066C5B935DC77BAD2CB64B8BDAEBD0F78C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 18c788 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Re-Animated Corpse + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -41.71144 + posY: 1.709944 + posZ: -4.86893749 + rotX: 359.9201 + rotY: 269.996948 + rotZ: 0.01687264 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 270300 + 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/959733696293150940/2B0B7CE982B6832E0BC17A2B93C9B343727D37B5/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: The Black Book + GMNotes: '' + GUID: e4d543 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Unaussprechlichen Kulten + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -27.5965977 + posY: 1.68742442 + posZ: -14.5044594 + rotX: 359.9201 + rotY: 269.99707 + rotZ: 0.0168754514 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 270306 + 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/959733696293150940/2B0B7CE982B6832E0BC17A2B93C9B343727D37B5/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 33703c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Summoning Stone + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -20.5134258 + posY: 1.68038762 + posZ: -4.859041 + rotX: 359.9201 + rotY: 269.9985 + rotZ: 0.0168723576 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 270305 + 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/959733696293150940/2B0B7CE982B6832E0BC17A2B93C9B343727D37B5/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 5d5cc4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: "Schr\xF6dinger's Parrot" + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -41.7115 + posY: 1.70849681 + posZ: -9.783747 + rotX: 359.9201 + rotY: 269.99707 + rotZ: 0.0168732069 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 270304 + 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/959733696293150940/2B0B7CE982B6832E0BC17A2B93C9B343727D37B5/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 9ab0cf + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Orb of Restoration + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -20.5135231 + posY: 1.68187439 + posZ: 0.189949483 + rotX: 359.9201 + rotY: 269.996277 + rotZ: 0.016874345 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 270229 + 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/960858438788727691/1D7BCD066C5B935DC77BAD2CB64B8BDAEBD0F78C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 46feba + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Wrack + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -20.51343 + posY: 1.68467724 + posZ: 9.709 + rotX: 359.9201 + rotY: 269.9973 + rotZ: 0.0168708619 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 270217 + 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/960858438788727691/1D7BCD066C5B935DC77BAD2CB64B8BDAEBD0F78C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: c92bf8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Quicksilver Pendant + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -34.64227 + posY: 1.69864142 + posZ: -9.775983 + rotX: 359.9201 + rotY: 269.996643 + rotZ: 0.0168737676 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 270200 + 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/960858438788727691/1D7BCD066C5B935DC77BAD2CB64B8BDAEBD0F78C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 02deff + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Alien Autopsy Prop + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -27.5963287 + posY: 1.69311106 + posZ: 4.809062 + rotX: 359.9201 + rotY: 269.9672 + rotZ: 0.0169144385 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 270303 + 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/959733696293150940/2B0B7CE982B6832E0BC17A2B93C9B343727D37B5/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: cad344 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Grey Goo + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -41.7114258 + posY: 1.71423364 + posZ: 9.699097 + rotX: 359.9201 + rotY: 269.996918 + rotZ: 0.016873857 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 270208 + 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/960858438788727691/1D7BCD066C5B935DC77BAD2CB64B8BDAEBD0F78C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 3d3bb3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Deck of Cards + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -27.5964 + posY: 1.69594049 + posZ: 14.4175625 + rotX: 359.9201 + rotY: 269.975037 + rotZ: 0.0169016775 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 270221 + 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/960858438788727691/1D7BCD066C5B935DC77BAD2CB64B8BDAEBD0F78C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 00b35e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Replica Pistol + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -15.4988136 + posY: 1.67337823 + posZ: -4.91625452 + rotX: 359.9201 + rotY: 270.02298 + rotZ: 0.0168391764 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 270227 + 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/960858438788727691/1D7BCD066C5B935DC77BAD2CB64B8BDAEBD0F78C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: b24d2b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Tinfoil Hat + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -15.1425552 + posY: 1.6715337 + posZ: -9.492915 + rotX: 359.9201 + rotY: 269.996826 + rotZ: 0.0168734565 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 270202 + 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/960858438788727691/1D7BCD066C5B935DC77BAD2CB64B8BDAEBD0F78C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: a9650a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Booby Trap + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -41.71133 + posY: 1.71279061 + posZ: 4.79870033 + rotX: 359.9201 + rotY: 270.034119 + rotZ: 0.0168200489 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 270211 + 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/960858438788727691/1D7BCD066C5B935DC77BAD2CB64B8BDAEBD0F78C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 70a6d9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Frozen History + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -34.6424 + posY: 1.6972487 + posZ: -14.5070524 + rotX: 359.9201 + rotY: 270.003876 + rotZ: 0.01686408 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 270203 + 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/960858438788727691/1D7BCD066C5B935DC77BAD2CB64B8BDAEBD0F78C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: '487797' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Bubble Wrap + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -27.59642 + posY: 1.69026458 + posZ: -4.858579 + rotX: 359.9201 + rotY: 269.9963 + rotZ: 0.0168732833 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 270215 + 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/960858438788727691/1D7BCD066C5B935DC77BAD2CB64B8BDAEBD0F78C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Memories of a different reality + GMNotes: '' + GUID: 1dddc2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Mandela Stone + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -34.64213 + posY: 1.70293534 + posZ: 4.806469 + rotX: 359.9201 + rotY: 269.9928 + rotZ: 0.0168768317 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 270214 + 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/960858438788727691/1D7BCD066C5B935DC77BAD2CB64B8BDAEBD0F78C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: The Hunter + GMNotes: '' + GUID: 05f16e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Herne's Rememberance + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -34.6422157 + posY: 1.70437825 + posZ: 9.70687 + rotX: 359.9201 + rotY: 269.990173 + rotZ: 0.0168849677 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 270207 + 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/960858438788727691/1D7BCD066C5B935DC77BAD2CB64B8BDAEBD0F78C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 7d4797 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Crystal Skull + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -34.6422234 + posY: 1.70008874 + posZ: -4.86117125 + rotX: 359.9201 + rotY: 270.001556 + rotZ: 0.0168670584 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 270205 + 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/960858438788727691/1D7BCD066C5B935DC77BAD2CB64B8BDAEBD0F78C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 3a1f1e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Chainsaw + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -34.64232 + posY: 1.70157552 + posZ: 0.187816158 + rotX: 359.9201 + rotY: 269.996918 + rotZ: 0.01687204 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 270302 + 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/959733696293150940/2B0B7CE982B6832E0BC17A2B93C9B343727D37B5/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 9c16e9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Claymore Mine + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -20.5133972 + posY: 1.68606365 + posZ: 14.417099 + rotX: 359.9201 + rotY: 269.996948 + rotZ: 0.0168748628 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 270222 + 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/960858438788727691/1D7BCD066C5B935DC77BAD2CB64B8BDAEBD0F78C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: c5498f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Sacrificial Dagger + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -20.5134983 + posY: 1.67894053 + posZ: -9.773846 + rotX: 359.9201 + rotY: 270.023132 + rotZ: 0.016836917 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 270209 + 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/960858438788727691/1D7BCD066C5B935DC77BAD2CB64B8BDAEBD0F78C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: '476928' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Elixir + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -27.596487 + posY: 1.68881738 + posZ: -9.77338 + rotX: 359.9201 + rotY: 269.986877 + rotZ: 0.0168863945 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 270219 + 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/960858438788727691/1D7BCD066C5B935DC77BAD2CB64B8BDAEBD0F78C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 62c52d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Re-Animated Remnant + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -41.711525 + posY: 1.71143091 + posZ: 0.180046827 + rotX: 359.9201 + rotY: 269.997 + rotZ: 0.01687131 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 270220 + 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/960858438788727691/1D7BCD066C5B935DC77BAD2CB64B8BDAEBD0F78C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: febccf + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Red Sign of Shudde M'ell + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -20.5133381 + posY: 1.68323421 + posZ: 4.808603 + rotX: 359.9201 + rotY: 269.991241 + rotZ: 0.016881058 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 270307 + 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/959733696293150940/2B0B7CE982B6832E0BC17A2B93C9B343727D37B5/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: eef239 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Surveillance Drone + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -14.98941 + posY: 1.66989374 + posZ: -14.3376207 + rotX: 359.9201 + rotY: 269.996918 + rotZ: 0.0168723632 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 270226 + 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/960858438788727691/1D7BCD066C5B935DC77BAD2CB64B8BDAEBD0F78C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Life Beyond Death + GMNotes: '' + GUID: 7c4c04 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '"The Formula"' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -20.5136051 + posY: 1.67754745 + posZ: -14.5049191 + rotX: 359.9201 + rotY: 269.984833 + rotZ: 0.0168907288 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 270212 + 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/960858438788727691/1D7BCD066C5B935DC77BAD2CB64B8BDAEBD0F78C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 12924b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Grenade Launcher + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -34.64217 + posY: 1.70576477 + posZ: 14.4149675 + rotX: 359.9201 + rotY: 269.995422 + rotZ: 0.01687581 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 270210 + 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/960858438788727691/1D7BCD066C5B935DC77BAD2CB64B8BDAEBD0F78C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: d4a801 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Eyeballs in a Jar + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -41.71139 + posY: 1.71561992 + posZ: 14.4071941 + rotX: 359.9201 + rotY: 269.982117 + rotZ: 0.0168942511 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 270204 + 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/960858438788727691/1D7BCD066C5B935DC77BAD2CB64B8BDAEBD0F78C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: b25a8e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Burner Phone + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -27.59642 + posY: 1.69455421 + posZ: 9.709458 + rotX: 359.9201 + rotY: 270.023834 + rotZ: 0.0168353468 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 270201 + 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/960858438788727691/1D7BCD066C5B935DC77BAD2CB64B8BDAEBD0F78C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: cd3957 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Band of Phasing + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 4.31294775 + posY: 1.6593461 + posZ: 67.4870148 + rotX: 0.0204928089 + rotY: 270.000671 + rotZ: 0.0162836015 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2702': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/960858438788727691/1D7BCD066C5B935DC77BAD2CB64B8BDAEBD0F78C/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '2703': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/959733696293150940/2B0B7CE982B6832E0BC17A2B93C9B343727D37B5/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 270218 +- 270300 +- 270306 +- 270305 +- 270304 +- 270229 +- 270217 +- 270200 +- 270303 +- 270208 +- 270221 +- 270227 +- 270202 +- 270211 +- 270203 +- 270215 +- 270214 +- 270207 +- 270205 +- 270302 +- 270222 +- 270209 +- 270219 +- 270220 +- 270307 +- 270226 +- 270212 +- 270210 +- 270204 +- 270201 +Description: '' +GMNotes: '' +GUID: fe4e96 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Green Box Deck +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -12.0018 + posY: 1.78456223 + posZ: 11.1085 + rotX: 359.9201 + rotY: 270.000519 + rotZ: 180.016861 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Delta Green Convergence ac164e/Tablet Campaign Log 8985c4.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Delta Green Convergence ac164e/Tablet Campaign Log 8985c4.yaml new file mode 100644 index 000000000..e68970040 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Delta Green Convergence ac164e/Tablet Campaign Log 8985c4.yaml @@ -0,0 +1,34 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +Description: '' +GMNotes: '' +GUID: 8985c4 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Tablet +Nickname: Campaign Log +Snap: true +Sticky: true +Tablet: + PageURL: https://drive.google.com/file/d/1cgCvJtdae12JdDdoXrCh2gPYxPfbF1UT/view +Tooltip: true +Transform: + posX: -1.4983 + posY: 1.76199126 + posZ: -29.2296047 + rotX: 359.9201 + rotY: 269.969452 + rotZ: 0.0169086084 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Forbidding Desert cf02f2.ttslua b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Forbidding Desert cf02f2.ttslua new file mode 100644 index 000000000..46067f58e --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Forbidding Desert cf02f2.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.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.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 791837/Custom_Model_Bag Forbidding Desert cf02f2.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Forbidding Desert cf02f2.yaml new file mode 100644 index 000000000..059842d68 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Forbidding Desert cf02f2.yaml @@ -0,0 +1,76 @@ +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 Forbidding Desert cf02f2/Bag dice 031d4c.yaml' +- !include 'Custom_Model_Bag Forbidding Desert cf02f2/Deck Encounter Deck e93d9b.yaml' +- !include 'Custom_Model_Bag Forbidding Desert cf02f2/Card Agenda Deck 580f18.yaml' +- !include 'Custom_Model_Bag Forbidding Desert cf02f2/Card Act Deck f66609.yaml' +- !include 'Custom_Model_Bag Forbidding Desert cf02f2/Card d339ec.yaml' +- !include 'Custom_Model_Bag Forbidding Desert cf02f2/Custom_Tile Forbidding Desert + 9cd1ad.yaml' +- !include 'Custom_Model_Bag Forbidding Desert cf02f2/Deck Professions b2e8be.yaml' +- !include 'Custom_Model_Bag Forbidding Desert cf02f2/Deck Relics 38d273.yaml' +- !include 'Custom_Model_Bag Forbidding Desert cf02f2/Deck 93f741.yaml' +- !include 'Custom_Model_Bag Forbidding Desert cf02f2/Deck Remnants a43591.yaml' +- !include 'Custom_Model_Bag Forbidding Desert cf02f2/Deck set-up fa57c6.yaml' +- !include 'Custom_Model_Bag Forbidding Desert cf02f2/Deck Desert Enemies encounter + set 69b245.yaml' +- !include 'Custom_Model_Bag Forbidding Desert cf02f2/Card 2f53ce.yaml' +- !include 'Custom_Model_Bag Forbidding Desert cf02f2/Deck Desert Deck 52e03c.yaml' +- !include 'Custom_Model_Bag Forbidding Desert cf02f2/Card 11c46b.yaml' +CustomMesh: + CastShadows: true + ColliderURL: '' + Convex: true + DiffuseURL: http://cloud-3.steamusercontent.com/ugc/798737729142996228/E20A91464226655E4E2BF3A04376F88558EE1551/ + MaterialIndex: 3 + MeshURL: https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj + NormalURL: '' + TypeIndex: 6 +Description: '' +GMNotes: '' +GUID: cf02f2 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Model_Bag Forbidding Desert cf02f2.ttslua' +LuaScriptState: '{"ml":{"031d4c":{"lock":false,"pos":{"x":-4.2892,"y":1.407,"z":15.4585},"rot":{"x":359.9832,"y":0,"z":359.9197}},"11c46b":{"lock":false,"pos":{"x":-50.9244,"y":1.7266,"z":8.1784},"rot":{"x":359.9201,"y":270.0032,"z":0.0169}},"2f53ce":{"lock":false,"pos":{"x":-11.2595,"y":1.6644,"z":-15.3909},"rot":{"x":359.9201,"y":269.9999,"z":0.0169}},"38d273":{"lock":false,"pos":{"x":-11.912,"y":1.6707,"z":9.6562},"rot":{"x":359.9201,"y":270,"z":0.0169}},"52e03c":{"lock":false,"pos":{"x":-17.12,"y":1.7564,"z":-0.03},"rot":{"x":359.9201,"y":269.9999,"z":180.0169}},"580f18":{"lock":false,"pos":{"x":-2.7244,"y":1.6571,"z":0.3733},"rot":{"x":0.0168,"y":180,"z":0.0803}},"69b245":{"lock":false,"pos":{"x":-11.2983,"y":1.6808,"z":-11.9991},"rot":{"x":359.9201,"y":270.0001,"z":180.0169}},"93f741":{"lock":false,"pos":{"x":-11.7123,"y":1.6694,"z":6.1356},"rot":{"x":359.9201,"y":269.9999,"z":0.0169}},"9cd1ad":{"lock":false,"pos":{"x":-3.0801,"y":1.5813,"z":-15.1761},"rot":{"x":359.9197,"y":270,"z":0.0168}},"a43591":{"lock":false,"pos":{"x":-11.2504,"y":1.6852,"z":2.9954},"rot":{"x":359.9201,"y":270,"z":180.0169}},"b2e8be":{"lock":false,"pos":{"x":-11.4573,"y":1.6723,"z":13.5258},"rot":{"x":359.9201,"y":270,"z":0.0169}},"d339ec":{"lock":false,"pos":{"x":-3.9559,"y":1.6556,"z":-10.4412},"rot":{"x":359.9197,"y":270.0032,"z":0.0168}},"e93d9b":{"lock":false,"pos":{"x":-3.9275,"y":1.7397,"z":5.7571},"rot":{"x":359.9197,"y":270.0125,"z":180.0168}},"f66609":{"lock":false,"pos":{"x":-2.6884,"y":1.6555,"z":-5.0486},"rot":{"x":0.0168,"y":180,"z":0.0803}},"fa57c6":{"lock":false,"pos":{"x":-9.1998,"y":1.652,"z":-0.4244},"rot":{"x":359.9202,"y":269.9965,"z":0.017}}}}' +MaterialIndex: -1 +MeshIndex: -1 +Name: Custom_Model_Bag +Nickname: Forbidding Desert +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 4.41620159 + posY: 8.443473 + posZ: -28.4067516 + rotX: 0.0208087582 + rotY: 270.0 + rotZ: 0.0167710818 + scaleX: 2.21 + scaleY: 0.46 + scaleZ: 2.42 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Forbidding Desert cf02f2/Bag dice 031d4c.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Forbidding Desert cf02f2/Bag dice 031d4c.yaml new file mode 100644 index 000000000..552312919 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Forbidding Desert cf02f2/Bag dice 031d4c.yaml @@ -0,0 +1,41 @@ +Autoraise: true +ColorDiffuse: + b: 0.0 + g: 0.366520882 + r: 0.7058823 +ContainedObjects: +- !include 'Bag dice 031d4c/Custom_Dice b9d4b9.yaml' +- !include 'Bag dice 031d4c/Custom_Dice 999781.yaml' +- !include 'Bag dice 031d4c/Custom_Dice 44d0ba.yaml' +- !include 'Bag dice 031d4c/Custom_Dice 3a4689.yaml' +- !include 'Bag dice 031d4c/Custom_Dice 08e8e9.yaml' +- !include 'Bag dice 031d4c/Custom_Dice ade730.yaml' +Description: '' +GMNotes: '' +GUID: 031d4c +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +MeshIndex: -1 +Name: Bag +Nickname: dice +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -4.289199 + posY: 1.40697861 + posZ: 15.4585028 + rotX: 359.983154 + rotY: -3.1753134e-05 + rotZ: 359.919678 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Forbidding Desert cf02f2/Bag dice 031d4c/Custom_Dice 08e8e9.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Forbidding Desert cf02f2/Bag dice 031d4c/Custom_Dice 08e8e9.yaml new file mode 100644 index 000000000..6b225973d --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Forbidding Desert cf02f2/Bag dice 031d4c/Custom_Dice 08e8e9.yaml @@ -0,0 +1,140 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +CustomImage: + CustomDice: + Type: 5 + ImageScalar: 1.0 + ImageSecondaryURL: '' + ImageURL: http://cloud-3.steamusercontent.com/ugc/492402477285428653/E6D52BCC6BD34982339A29D19B6BC218BB14BC1A/ + WidthScale: 0.0 +Description: '' +GMNotes: '' +GUID: 08e8e9 +Grid: false +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Dice +Nickname: '' +RotationValues: +- Rotation: + x: -11.0 + y: 60.0 + z: 17.0 + Value: 1 +- Rotation: + x: 52.0 + y: -60.0 + z: -17.0 + Value: 2 +- Rotation: + x: -11.0 + y: -180.0 + z: 90.0 + Value: 3 +- Rotation: + x: -11.0 + y: -180.0 + z: 162.0 + Value: 4 +- Rotation: + x: -11.0 + y: -60.0 + z: 234.0 + Value: 5 +- Rotation: + x: -11.0 + y: -180.0 + z: 306.0 + Value: 6 +- Rotation: + x: 52.0 + y: -60.0 + z: 55.0 + Value: 7 +- Rotation: + x: 52.0 + y: -60.0 + z: 198.0 + Value: 8 +- Rotation: + x: 52.0 + y: -60.0 + z: 127.0 + Value: 9 +- Rotation: + x: 52.0 + y: -180.0 + z: -90.0 + Value: 10 +- Rotation: + x: 308.0 + y: 0.0 + z: 90.0 + Value: 11 +- Rotation: + x: 306.0 + y: -240.0 + z: -52.0 + Value: 12 +- Rotation: + x: -52.0 + y: -240.0 + z: 18.0 + Value: 13 +- Rotation: + x: 307.0 + y: 120.0 + z: 233.0 + Value: 14 +- Rotation: + x: 11.0 + y: 120.0 + z: -234.0 + Value: 15 +- Rotation: + x: 11.0 + y: 0.0 + z: 54.0 + Value: 16 +- Rotation: + x: 11.0 + y: -120.0 + z: -17.0 + Value: 17 +- Rotation: + x: 11.0 + y: 0.0 + z: -90.0 + Value: 18 +- Rotation: + x: -52.0 + y: -240.0 + z: -198.0 + Value: 19 +- Rotation: + x: 11.0 + y: 0.0 + z: -162.0 + Value: 20 +Snap: false +Sticky: true +Tooltip: true +Transform: + posX: -21.6434746 + posY: 3.34843183 + posZ: -9.01683 + rotX: 52.62263 + rotY: 266.803833 + rotZ: 341.999817 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Forbidding Desert cf02f2/Bag dice 031d4c/Custom_Dice 3a4689.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Forbidding Desert cf02f2/Bag dice 031d4c/Custom_Dice 3a4689.yaml new file mode 100644 index 000000000..9a958d59a --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Forbidding Desert cf02f2/Bag dice 031d4c/Custom_Dice 3a4689.yaml @@ -0,0 +1,90 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +CustomImage: + CustomDice: + Type: 3 + ImageScalar: 1.0 + ImageSecondaryURL: '' + ImageURL: http://cloud-3.steamusercontent.com/ugc/492402477285423057/830F7132179ACD245704AA969515027819C50421/ + WidthScale: 0.0 +Description: '' +GMNotes: '' +GUID: 3a4689 +Grid: false +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Dice +Nickname: '' +RotationValues: +- Rotation: + x: -38.0 + y: 0.0 + z: 234.0 + Value: 1 +- Rotation: + x: 38.0 + y: 180.0 + z: -233.0 + Value: 2 +- Rotation: + x: -38.0 + y: 0.0 + z: 20.0 + Value: 3 +- Rotation: + x: 38.0 + y: 180.0 + z: -17.0 + Value: 4 +- Rotation: + x: -38.0 + y: 0.0 + z: 90.0 + Value: 5 +- Rotation: + x: 38.0 + y: 180.0 + z: -161.0 + Value: 6 +- Rotation: + x: -38.0 + y: 0.0 + z: 307.0 + Value: 7 +- Rotation: + x: 38.0 + y: 180.0 + z: -304.0 + Value: 8 +- Rotation: + x: -38.0 + y: 0.0 + z: 163.0 + Value: 9 +- Rotation: + x: 38.0 + y: 180.0 + z: -90.0 + Value: 10 +Snap: false +Sticky: true +Tooltip: true +Transform: + posX: -26.3536587 + posY: 3.30381727 + posZ: -9.757118 + rotX: 38.6510544 + rotY: 181.0309 + rotZ: 271.4855 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Forbidding Desert cf02f2/Bag dice 031d4c/Custom_Dice 44d0ba.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Forbidding Desert cf02f2/Bag dice 031d4c/Custom_Dice 44d0ba.yaml new file mode 100644 index 000000000..a8e65e32f --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Forbidding Desert cf02f2/Bag dice 031d4c/Custom_Dice 44d0ba.yaml @@ -0,0 +1,80 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +CustomImage: + CustomDice: + Type: 2 + ImageScalar: 1.0 + ImageSecondaryURL: '' + ImageURL: http://cloud-3.steamusercontent.com/ugc/492402477285420503/85DFB8899F74A606A313425DC4D4D2DC92D083A6/ + WidthScale: 0.0 +Description: '' +GMNotes: '' +GUID: 44d0ba +Grid: false +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Dice +Nickname: '' +RotationValues: +- Rotation: + x: -33.0 + y: 0.0 + z: 90.0 + Value: 1 +- Rotation: + x: -33.0 + y: 0.0 + z: 180.0 + Value: 2 +- Rotation: + x: 33.0 + y: 180.0 + z: -180.0 + Value: 3 +- Rotation: + x: 33.0 + y: 180.0 + z: 90.0 + Value: 4 +- Rotation: + x: 33.0 + y: 180.0 + z: -90.0 + Value: 5 +- Rotation: + x: 33.0 + y: 180.0 + z: 0.0 + Value: 6 +- Rotation: + x: -33.0 + y: 0.0 + z: 0.0 + Value: 7 +- Rotation: + x: -33.0 + y: 0.0 + z: -90.0 + Value: 8 +Snap: false +Sticky: true +Tooltip: true +Transform: + posX: -26.371603 + posY: 3.26696277 + posZ: -11.6779337 + rotX: 326.2638 + rotY: 0.121887192 + rotZ: 269.999878 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Forbidding Desert cf02f2/Bag dice 031d4c/Custom_Dice 999781.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Forbidding Desert cf02f2/Bag dice 031d4c/Custom_Dice 999781.yaml new file mode 100644 index 000000000..3b073d55e --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Forbidding Desert cf02f2/Bag dice 031d4c/Custom_Dice 999781.yaml @@ -0,0 +1,70 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +CustomImage: + CustomDice: + Type: 1 + ImageScalar: 1.0 + ImageSecondaryURL: '' + ImageURL: http://cloud-3.steamusercontent.com/ugc/492402477285417092/F060443E5CFE0E18F257B09A01C257959FC48CF0/ + WidthScale: 0.0 +Description: '' +GMNotes: '' +GUID: '999781' +Grid: false +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Dice +Nickname: '' +RotationValues: +- Rotation: + x: -90.0 + y: 0.0 + z: 0.0 + Value: 1 +- Rotation: + x: 0.0 + y: 0.0 + z: 0.0 + Value: 2 +- Rotation: + x: 0.0 + y: 0.0 + z: -90.0 + Value: 3 +- Rotation: + x: 0.0 + y: 0.0 + z: 90.0 + Value: 4 +- Rotation: + x: 0.0 + y: 0.0 + z: -180.0 + Value: 5 +- Rotation: + x: 90.0 + y: 0.0 + z: 0.0 + Value: 6 +Snap: false +Sticky: true +Tooltip: true +Transform: + posX: -25.2727528 + posY: 3.23530722 + posZ: -11.126955 + rotX: 90.0 + rotY: 0.123480655 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Forbidding Desert cf02f2/Bag dice 031d4c/Custom_Dice ade730.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Forbidding Desert cf02f2/Bag dice 031d4c/Custom_Dice ade730.yaml new file mode 100644 index 000000000..c82b118f6 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Forbidding Desert cf02f2/Bag dice 031d4c/Custom_Dice ade730.yaml @@ -0,0 +1,100 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +CustomImage: + CustomDice: + Type: 4 + ImageScalar: 1.0 + ImageSecondaryURL: '' + ImageURL: http://cloud-3.steamusercontent.com/ugc/492402477285425722/8041F25FF6C9EFB1394827EEACA41C0A12D70D0D/ + WidthScale: 0.0 +Description: '' +GMNotes: '' +GUID: ade730 +Grid: false +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Dice +Nickname: '' +RotationValues: +- Rotation: + x: 27.0 + y: 0.0 + z: 72.0 + Value: 1 +- Rotation: + x: 27.0 + y: 0.0 + z: 144.0 + Value: 2 +- Rotation: + x: 27.0 + y: 0.0 + z: -72.0 + Value: 3 +- Rotation: + x: -27.0 + y: 180.0 + z: 180.0 + Value: 4 +- Rotation: + x: 90.0 + y: 180.0 + z: 0.0 + Value: 5 +- Rotation: + x: 27.0 + y: 0.0 + z: -144.0 + Value: 6 +- Rotation: + x: -27.0 + y: 180.0 + z: 36.0 + Value: 7 +- Rotation: + x: -90.0 + y: 180.0 + z: 0.0 + Value: 8 +- Rotation: + x: 27.0 + y: 0.0 + z: 0.0 + Value: 9 +- Rotation: + x: -27.0 + y: 180.0 + z: 108.0 + Value: 10 +- Rotation: + x: -27.0 + y: 108.0 + z: -36.0 + Value: 11 +- Rotation: + x: -27.0 + y: 36.0 + z: -108.0 + Value: 12 +Snap: false +Sticky: true +Tooltip: true +Transform: + posX: -23.0965233 + posY: 3.32751966 + posZ: -11.3175592 + rotX: 333.4349 + rotY: 48.52947 + rotZ: 252.000183 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Forbidding Desert cf02f2/Bag dice 031d4c/Custom_Dice b9d4b9.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Forbidding Desert cf02f2/Bag dice 031d4c/Custom_Dice b9d4b9.yaml new file mode 100644 index 000000000..dce31e2c9 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Forbidding Desert cf02f2/Bag dice 031d4c/Custom_Dice b9d4b9.yaml @@ -0,0 +1,60 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +CustomImage: + CustomDice: + Type: 0 + ImageScalar: 1.0 + ImageSecondaryURL: '' + ImageURL: http://cloud-3.steamusercontent.com/ugc/492402477285414219/D10E5BA20092D2FA1D478B07AC81A5EF4E95C817/ + WidthScale: 0.0 +Description: '' +GMNotes: '' +GUID: b9d4b9 +Grid: false +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Dice +Nickname: '' +RotationValues: +- Rotation: + x: 18.0 + y: -241.0 + z: -120.0 + Value: 1 +- Rotation: + x: -90.0 + y: -60.0 + z: 0.0 + Value: 2 +- Rotation: + x: 18.0 + y: -121.0 + z: 0.0 + Value: 3 +- Rotation: + x: 18.0 + y: 0.0 + z: -240.0 + Value: 4 +Snap: false +Sticky: true +Tooltip: true +Transform: + posX: -24.395359 + posY: 3.167004 + posZ: -12.3673954 + rotX: 30.3346119 + rotY: 0.4593957 + rotZ: 120.831863 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Forbidding Desert cf02f2/Card 11c46b.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Forbidding Desert cf02f2/Card 11c46b.yaml new file mode 100644 index 000000000..7cb72d322 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Forbidding Desert cf02f2/Card 11c46b.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 2301 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '23': + BackIsHidden: true + BackURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfeW0zVHRMY28xR28 + FaceURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfUElPcDBvZkJURnc + NumHeight: 2 + NumWidth: 4 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 11c46b +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -50.9244 + posY: 1.72662544 + posZ: 8.1784 + rotX: 359.9201 + rotY: 270.003235 + rotZ: 0.0168715958 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Forbidding Desert cf02f2/Card 2f53ce.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Forbidding Desert cf02f2/Card 2f53ce.yaml new file mode 100644 index 000000000..a76c25727 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Forbidding Desert cf02f2/Card 2f53ce.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 2706 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '27': + BackIsHidden: true + BackURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfNjlHVDRwWlh4WDQ + FaceURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfWF9FV2tFVHlyTlE + NumHeight: 2 + NumWidth: 4 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 2f53ce +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -11.2594976 + posY: 1.66438258 + posZ: -15.3909 + rotX: 359.9201 + rotY: 269.999878 + rotZ: 0.0168760084 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Forbidding Desert cf02f2/Card d339ec.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Forbidding Desert cf02f2/Card d339ec.yaml new file mode 100644 index 000000000..c859b43eb --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Forbidding Desert cf02f2/Card d339ec.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 2301 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '23': + BackIsHidden: true + BackURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfeW0zVHRMY28xR28 + FaceURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfUElPcDBvZkJURnc + NumHeight: 2 + NumWidth: 4 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: d339ec +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.95590019 + posY: 1.65564823 + posZ: -10.4412012 + rotX: 359.919739 + rotY: 270.003235 + rotZ: 0.0168366618 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Forbidding Desert cf02f2/Card Act Deck f66609.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Forbidding Desert cf02f2/Card Act Deck f66609.yaml new file mode 100644 index 000000000..8bb713223 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Forbidding Desert cf02f2/Card Act Deck f66609.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 2101 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '21': + BackIsHidden: true + BackURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfRmFHX1VOakxLQ0k + FaceURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfaVdlTFlHdkxyRnc + NumHeight: 2 + NumWidth: 4 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: f66609 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Act Deck +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.68839979 + posY: 1.65545726 + posZ: -5.048601 + rotX: 0.01683505 + rotY: 180.000031 + rotZ: 0.08025755 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Forbidding Desert cf02f2/Card Agenda Deck 580f18.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Forbidding Desert cf02f2/Card Agenda Deck 580f18.yaml new file mode 100644 index 000000000..6b6c5ef5a --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Forbidding Desert cf02f2/Card Agenda Deck 580f18.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 2100 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '21': + BackIsHidden: true + BackURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfRmFHX1VOakxLQ0k + FaceURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfaVdlTFlHdkxyRnc + NumHeight: 2 + NumWidth: 4 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 580f18 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Agenda Deck +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.7244 + posY: 1.6571008 + posZ: 0.37330088 + rotX: 0.0168350358 + rotY: 180.000046 + rotZ: 0.08025759 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Forbidding Desert cf02f2/Custom_Tile Forbidding Desert 9cd1ad.ttslua b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Forbidding Desert cf02f2/Custom_Tile Forbidding Desert 9cd1ad.ttslua new file mode 100644 index 000000000..41688d70d --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Forbidding Desert cf02f2/Custom_Tile Forbidding Desert 9cd1ad.ttslua @@ -0,0 +1,21 @@ +name = 'Forbidding Desert' + +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 The Side Missions 791837/Custom_Model_Bag Forbidding Desert cf02f2/Custom_Tile Forbidding Desert 9cd1ad.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Forbidding Desert cf02f2/Custom_Tile Forbidding Desert 9cd1ad.yaml new file mode 100644 index 000000000..a3a00ac91 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Forbidding Desert cf02f2/Custom_Tile Forbidding Desert 9cd1ad.yaml @@ -0,0 +1,42 @@ +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 +GMNotes: '' +GUID: 9cd1ad +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Tile Forbidding Desert 9cd1ad.ttslua' +LuaScriptState: '' +Name: Custom_Tile +Nickname: Forbidding Desert +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.0801 + posY: 1.58131647 + posZ: -15.1761017 + rotX: 359.919739 + rotY: 270.0 + rotZ: 0.0168379024 + scaleX: 2.2 + scaleY: 1.0 + scaleZ: 2.2 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Forbidding Desert cf02f2/Deck 93f741.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Forbidding Desert cf02f2/Deck 93f741.yaml new file mode 100644 index 000000000..d830c0244 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Forbidding Desert cf02f2/Deck 93f741.yaml @@ -0,0 +1,215 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 2605 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '26': + BackIsHidden: true + BackURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfdWgzNFFabzRrN1E + FaceURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfdkluWU10R04yQnc + NumHeight: 2 + NumWidth: 4 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 0cda41 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -41.9309654 + posY: 1.02897453 + posZ: 20.0701847 + rotX: 359.885 + rotY: 180.0037 + rotZ: 359.968079 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 2604 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '26': + BackIsHidden: true + BackURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfdWgzNFFabzRrN1E + FaceURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfdkluWU10R04yQnc + NumHeight: 2 + NumWidth: 4 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 732d75 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -41.3785744 + posY: 1.03927934 + posZ: 19.9220829 + rotX: 0.315609843 + rotY: 180.0508 + rotZ: 1.0834173 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 2606 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '26': + BackIsHidden: true + BackURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfdWgzNFFabzRrN1E + FaceURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfdkluWU10R04yQnc + NumHeight: 2 + NumWidth: 4 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: '816274' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -41.311882 + posY: 1.2120626 + posZ: 20.1079845 + rotX: 359.97937 + rotY: 179.999054 + rotZ: 1.0580163 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 2607 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '26': + BackIsHidden: true + BackURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfdWgzNFFabzRrN1E + FaceURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfdkluWU10R04yQnc + NumHeight: 2 + NumWidth: 4 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 3ebe56 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -40.920948 + posY: 1.34682763 + posZ: 19.6892166 + rotX: 359.992523 + rotY: 180.00914 + rotZ: 1.215592 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '26': + BackIsHidden: true + BackURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfdWgzNFFabzRrN1E + FaceURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfdkluWU10R04yQnc + NumHeight: 2 + NumWidth: 4 + UniqueBack: true +DeckIDs: +- 2605 +- 2604 +- 2606 +- 2607 +Description: '' +GMNotes: '' +GUID: 93f741 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -11.7123 + posY: 1.66938972 + posZ: 6.135598 + rotX: 359.9201 + rotY: 269.999878 + rotZ: 0.0168765821 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Forbidding Desert cf02f2/Deck Desert Deck 52e03c.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Forbidding Desert cf02f2/Deck Desert Deck 52e03c.yaml new file mode 100644 index 000000000..7ec9a294e --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Forbidding Desert cf02f2/Deck Desert Deck 52e03c.yaml @@ -0,0 +1,1043 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 1802 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '18': + BackIsHidden: true + BackURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfcW5xa3BqWFJzemM + FaceURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfTEhObG5NOG8xNVk + NumHeight: 2 + NumWidth: 4 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 4c67fb + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -36.26547 + posY: 1.29766333 + posZ: -5.506411 + rotX: 0.00045810797 + rotY: 180.000061 + rotZ: 180.004242 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 1905 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '19': + BackIsHidden: true + BackURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfVURJZVNfOUliZ3c + FaceURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfT1dOQWU3UVJGcG8 + NumHeight: 2 + NumWidth: 4 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: a7f5f1 + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.98238564 + posY: 1.20104253 + posZ: 0.303485 + rotX: -0.0006747668 + rotY: 179.999969 + rotZ: 180.000259 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 2002 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '20': + BackIsHidden: true + BackURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfVDBzS0QzS2xTTHc + FaceURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfM2hpZi1xczhGbUE + NumHeight: 2 + NumWidth: 4 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: e4d337 + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -4.098417 + posY: 1.19688964 + posZ: 0.233110487 + rotX: 0.00054299063 + rotY: 180.0 + rotZ: 180.002151 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 1903 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '19': + BackIsHidden: true + BackURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfVURJZVNfOUliZ3c + FaceURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfT1dOQWU3UVJGcG8 + NumHeight: 2 + NumWidth: 4 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: a7f5f1 + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.87536 + posY: 1.1817199 + posZ: 0.315834522 + rotX: -0.0010926635 + rotY: 180.002518 + rotZ: 179.99791 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 2005 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '20': + BackIsHidden: true + BackURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfVDBzS0QzS2xTTHc + FaceURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfM2hpZi1xczhGbUE + NumHeight: 2 + NumWidth: 4 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: e4d337 + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.87701678 + posY: 1.18389392 + posZ: 0.3740225 + rotX: 4.15935538e-05 + rotY: 180.0 + rotZ: 180.004013 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 1906 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '19': + BackIsHidden: true + BackURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfVURJZVNfOUliZ3c + FaceURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfT1dOQWU3UVJGcG8 + NumHeight: 2 + NumWidth: 4 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: a7f5f1 + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -4.053159 + posY: 1.21064544 + posZ: 0.337934047 + rotX: 0.000191555082 + rotY: 179.999969 + rotZ: 180.0016 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 2003 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '20': + BackIsHidden: true + BackURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfVDBzS0QzS2xTTHc + FaceURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfM2hpZi1xczhGbUE + NumHeight: 2 + NumWidth: 4 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: e4d337 + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.972015 + posY: 1.18330634 + posZ: 0.338536561 + rotX: -0.00130287814 + rotY: 180.005371 + rotZ: 179.994736 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 2007 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '20': + BackIsHidden: true + BackURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfVDBzS0QzS2xTTHc + FaceURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfM2hpZi1xczhGbUE + NumHeight: 2 + NumWidth: 4 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: e4d337 + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.915909 + posY: 1.19527709 + posZ: 0.257662147 + rotX: -0.000968377048 + rotY: 180.000641 + rotZ: 179.999878 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 2004 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '20': + BackIsHidden: true + BackURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfVDBzS0QzS2xTTHc + FaceURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfM2hpZi1xczhGbUE + NumHeight: 2 + NumWidth: 4 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: e4d337 + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.894986 + posY: 1.18123078 + posZ: 0.327304 + rotX: 0.000158118273 + rotY: 179.999985 + rotZ: 180.004044 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 1803 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '18': + BackIsHidden: true + BackURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfcW5xa3BqWFJzemM + FaceURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfTEhObG5NOG8xNVk + NumHeight: 2 + NumWidth: 4 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 4c67fb + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -4.00017738 + posY: 1.258955 + posZ: 0.256926537 + rotX: 0.000293403 + rotY: 180.002777 + rotZ: 180.001968 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 1901 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '19': + BackIsHidden: true + BackURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfVURJZVNfOUliZ3c + FaceURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfT1dOQWU3UVJGcG8 + NumHeight: 2 + NumWidth: 4 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: a7f5f1 + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -4.01060724 + posY: 1.16240132 + posZ: 0.36150673 + rotX: -0.0008060881 + rotY: 179.999954 + rotZ: 180.000275 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 1807 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '18': + BackIsHidden: true + BackURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfcW5xa3BqWFJzemM + FaceURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfTEhObG5NOG8xNVk + NumHeight: 2 + NumWidth: 4 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 4c67fb + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.92606759 + posY: 1.29759979 + posZ: 0.188364074 + rotX: 0.00302267261 + rotY: 180.005676 + rotZ: 179.999435 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 1907 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '19': + BackIsHidden: true + BackURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfVURJZVNfOUliZ3c + FaceURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfT1dOQWU3UVJGcG8 + NumHeight: 2 + NumWidth: 4 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: a7f5f1 + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.73420858 + posY: 1.22030377 + posZ: 0.328418 + rotX: -5.18498819e-05 + rotY: 179.9974 + rotZ: 179.9994 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 1800 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '18': + BackIsHidden: true + BackURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfcW5xa3BqWFJzemM + FaceURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfTEhObG5NOG8xNVk + NumHeight: 2 + NumWidth: 4 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 4c67fb + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -4.209548 + posY: 1.229764 + posZ: 0.360611558 + rotX: 0.00278730155 + rotY: 180.018387 + rotZ: 180.026886 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 1806 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '18': + BackIsHidden: true + BackURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfcW5xa3BqWFJzemM + FaceURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfTEhObG5NOG8xNVk + NumHeight: 2 + NumWidth: 4 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 4c67fb + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -4.11021 + posY: 1.28793883 + posZ: 0.325870842 + rotX: 0.000360708829 + rotY: 180.004166 + rotZ: 180.004868 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 1805 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '18': + BackIsHidden: true + BackURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfcW5xa3BqWFJzemM + FaceURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfTEhObG5NOG8xNVk + NumHeight: 2 + NumWidth: 4 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 4c67fb + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -4.08672 + posY: 1.27832723 + posZ: 0.209895357 + rotX: -0.0009810702 + rotY: 180.0083 + rotZ: 179.995056 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 1804 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '18': + BackIsHidden: true + BackURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfcW5xa3BqWFJzemM + FaceURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfTEhObG5NOG8xNVk + NumHeight: 2 + NumWidth: 4 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 4c67fb + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.819679 + posY: 1.2686218 + posZ: 0.234874949 + rotX: 7.367094e-05 + rotY: 179.999741 + rotZ: 179.995346 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 1902 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '19': + BackIsHidden: true + BackURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfVURJZVNfOUliZ3c + FaceURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfT1dOQWU3UVJGcG8 + NumHeight: 2 + NumWidth: 4 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: a7f5f1 + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.76005363 + posY: 1.17203808 + posZ: 0.444868267 + rotX: -0.00147715351 + rotY: 179.999954 + rotZ: 180.001328 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 2006 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '20': + BackIsHidden: true + BackURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfVDBzS0QzS2xTTHc + FaceURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfM2hpZi1xczhGbUE + NumHeight: 2 + NumWidth: 4 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: e4d337 + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -4.13424 + posY: 1.18887365 + posZ: 0.322306871 + rotX: 0.000584243739 + rotY: 180.000656 + rotZ: 180.000778 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 1904 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '19': + BackIsHidden: true + BackURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfVURJZVNfOUliZ3c + FaceURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfT1dOQWU3UVJGcG8 + NumHeight: 2 + NumWidth: 4 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: a7f5f1 + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.84340715 + posY: 1.19131935 + posZ: 0.257930517 + rotX: 0.000259938941 + rotY: 179.999985 + rotZ: 180.004257 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 2001 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '20': + BackIsHidden: true + BackURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfVDBzS0QzS2xTTHc + FaceURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfM2hpZi1xczhGbUE + NumHeight: 2 + NumWidth: 4 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: '762955' + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -4.19446373 + posY: 1.17940962 + posZ: 0.186222792 + rotX: -0.005548054 + rotY: 179.999832 + rotZ: 180.0119 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 1900 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '19': + BackIsHidden: true + BackURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfVURJZVNfOUliZ3c + FaceURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfT1dOQWU3UVJGcG8 + NumHeight: 2 + NumWidth: 4 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: a7f5f1 + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.82875752 + posY: 1.15272808 + posZ: 0.339373231 + rotX: -0.00118967739 + rotY: 179.999954 + rotZ: 180.000916 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 2000 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '20': + BackIsHidden: true + BackURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfVDBzS0QzS2xTTHc + FaceURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfM2hpZi1xczhGbUE + NumHeight: 2 + NumWidth: 4 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: e4d337 + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -4.105979 + posY: 1.034487 + posZ: 0.198335171 + rotX: -0.00256943447 + rotY: 179.999878 + rotZ: 180.001068 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 1801 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '18': + BackIsHidden: true + BackURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfcW5xa3BqWFJzemM + FaceURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfTEhObG5NOG8xNVk + NumHeight: 2 + NumWidth: 4 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 1d5067 + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -4.07736063 + posY: 1.23962355 + posZ: 0.233252972 + rotX: 0.000393335329 + rotY: 180.002716 + rotZ: 180.0013 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '18': + BackIsHidden: true + BackURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfcW5xa3BqWFJzemM + FaceURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfTEhObG5NOG8xNVk + NumHeight: 2 + NumWidth: 4 + UniqueBack: true + '19': + BackIsHidden: true + BackURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfVURJZVNfOUliZ3c + FaceURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfT1dOQWU3UVJGcG8 + NumHeight: 2 + NumWidth: 4 + UniqueBack: true + '20': + BackIsHidden: true + BackURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfVDBzS0QzS2xTTHc + FaceURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfM2hpZi1xczhGbUE + NumHeight: 2 + NumWidth: 4 + UniqueBack: true +DeckIDs: +- 1802 +- 1905 +- 2002 +- 1903 +- 2005 +- 1906 +- 2003 +- 2007 +- 2004 +- 1803 +- 1901 +- 1807 +- 1907 +- 1800 +- 1806 +- 1805 +- 1804 +- 1902 +- 2006 +- 1904 +- 2001 +- 1900 +- 2000 +- 1801 +Description: '' +GMNotes: '' +GUID: 52e03c +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Desert Deck +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -17.12 + posY: 1.75644255 + posZ: -0.0299994014 + 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 The Side Missions 791837/Custom_Model_Bag Forbidding Desert cf02f2/Deck Desert Enemies encounter set 69b245.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Forbidding Desert cf02f2/Deck Desert Enemies encounter set 69b245.yaml new file mode 100644 index 000000000..7194597be --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Forbidding Desert cf02f2/Deck Desert Enemies encounter set 69b245.yaml @@ -0,0 +1,542 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 1303 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '13': + BackIsHidden: true + BackURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfYThxUFEteGNhSlE + FaceURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfUnpKd3F4em13OU0 + NumHeight: 2 + NumWidth: 4 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 1b0a52 + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 33.2210541 + posY: 1.1923883 + posZ: 3.37751579 + rotX: 0.00043311817 + rotY: 180.002243 + rotZ: 0.000158471055 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 1307 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '13': + BackIsHidden: true + BackURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfYThxUFEteGNhSlE + FaceURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfUnpKd3F4em13OU0 + NumHeight: 2 + NumWidth: 4 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 1b0a52 + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 30.3433113 + posY: 1.03170133 + posZ: 3.560192 + rotX: -0.0009315949 + rotY: 180.0016 + rotZ: -0.000131047214 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 1401 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '14': + BackIsHidden: true + BackURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfU1BKZnZLNVZxQk0 + FaceURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfZ09oM0tjdW41cVk + NumHeight: 2 + NumWidth: 4 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: e68e51 + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 33.12961 + posY: 1.17653453 + posZ: 3.55542064 + rotX: 359.9847 + rotY: 179.989182 + rotZ: 359.99118 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 1305 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '13': + BackIsHidden: true + BackURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfYThxUFEteGNhSlE + FaceURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfUnpKd3F4em13OU0 + NumHeight: 2 + NumWidth: 4 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 1b0a52 + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 33.0296745 + posY: 1.15951371 + posZ: 3.55473018 + rotX: 0.00223935046 + rotY: 179.996841 + rotZ: 359.9929 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 1403 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '14': + BackIsHidden: true + BackURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfU1BKZnZLNVZxQk0 + FaceURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfZ09oM0tjdW41cVk + NumHeight: 2 + NumWidth: 4 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 905c6d + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 33.0377922 + posY: 1.18042326 + posZ: 3.53297687 + rotX: 0.008612587 + rotY: 180.029587 + rotZ: 0.00283040851 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 1400 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '14': + BackIsHidden: true + BackURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfU1BKZnZLNVZxQk0 + FaceURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfZ09oM0tjdW41cVk + NumHeight: 2 + NumWidth: 4 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 905c6d + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 32.9331627 + posY: 1.03170776 + posZ: 3.54316449 + rotX: -0.003820717 + rotY: 180.0079 + rotZ: 359.989655 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 1301 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '13': + BackIsHidden: true + BackURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfYThxUFEteGNhSlE + FaceURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfUnpKd3F4em13OU0 + NumHeight: 2 + NumWidth: 4 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 1b0a52 + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 33.05032 + posY: 1.18114078 + posZ: 3.60081 + rotX: -0.000746857841 + rotY: 180.002213 + rotZ: -6.834078e-05 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 1402 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '14': + BackIsHidden: true + BackURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfU1BKZnZLNVZxQk0 + FaceURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfZ09oM0tjdW41cVk + NumHeight: 2 + NumWidth: 4 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 905c6d + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 32.99768 + posY: 1.19409144 + posZ: 3.49376249 + rotX: -0.000453046145 + rotY: 179.992661 + rotZ: 359.985016 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 1306 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '13': + BackIsHidden: true + BackURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfYThxUFEteGNhSlE + FaceURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfUnpKd3F4em13OU0 + NumHeight: 2 + NumWidth: 4 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 0832d5 + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 30.06339 + posY: 1.17662656 + posZ: 3.71049333 + rotX: 359.988556 + rotY: 180.000916 + rotZ: 359.9912 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 1300 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '13': + BackIsHidden: true + BackURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfYThxUFEteGNhSlE + FaceURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfUnpKd3F4em13OU0 + NumHeight: 2 + NumWidth: 4 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 1b0a52 + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 33.2629242 + posY: 1.17842352 + posZ: 3.50115156 + rotX: -0.0012325896 + rotY: 179.990128 + rotZ: 359.988831 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 1302 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '13': + BackIsHidden: true + BackURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfYThxUFEteGNhSlE + FaceURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfUnpKd3F4em13OU0 + NumHeight: 2 + NumWidth: 4 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 1b0a52 + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 33.00453 + posY: 1.1860714 + posZ: 3.55026865 + rotX: -0.00163436192 + rotY: 179.9931 + rotZ: 359.989319 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 1304 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '13': + BackIsHidden: true + BackURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfYThxUFEteGNhSlE + FaceURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfUnpKd3F4em13OU0 + NumHeight: 2 + NumWidth: 4 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 1b0a52 + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 33.09978 + posY: 1.14992082 + posZ: 3.61506438 + rotX: -0.0007188087 + rotY: 180.002213 + rotZ: 5.946129e-05 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '13': + BackIsHidden: true + BackURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfYThxUFEteGNhSlE + FaceURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfUnpKd3F4em13OU0 + NumHeight: 2 + NumWidth: 4 + UniqueBack: true + '14': + BackIsHidden: true + BackURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfU1BKZnZLNVZxQk0 + FaceURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfZ09oM0tjdW41cVk + NumHeight: 2 + NumWidth: 4 + UniqueBack: true +DeckIDs: +- 1303 +- 1307 +- 1401 +- 1305 +- 1403 +- 1400 +- 1301 +- 1402 +- 1306 +- 1300 +- 1302 +- 1304 +Description: '' +GMNotes: '' +GUID: 69b245 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Desert Enemies encounter set +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -11.2983007 + posY: 1.68084669 + posZ: -11.9991007 + 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 The Side Missions 791837/Custom_Model_Bag Forbidding Desert cf02f2/Deck Encounter Deck e93d9b.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Forbidding Desert cf02f2/Deck Encounter Deck e93d9b.yaml new file mode 100644 index 000000000..14dde9423 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Forbidding Desert cf02f2/Deck Encounter Deck e93d9b.yaml @@ -0,0 +1,1020 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 1500 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '15': + BackIsHidden: true + BackURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfNVBUZUpkNjZXTW8 + FaceURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfdE5qQldLVnhhT3M + NumHeight: 2 + NumWidth: 4 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 0ad365 + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.85067749 + posY: 1.2271179 + posZ: -3.64366841 + rotX: -0.0004630355 + rotY: 180.006012 + rotZ: 0.00444251345 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 1507 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '15': + BackIsHidden: true + BackURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfNVBUZUpkNjZXTW8 + FaceURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfdE5qQldLVnhhT3M + NumHeight: 2 + NumWidth: 4 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 0ad365 + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -4.103785 + posY: 1.1595751 + posZ: -3.58130455 + rotX: -0.000918548 + rotY: 179.997986 + rotZ: 0.000100513476 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 1406 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '14': + BackIsHidden: true + BackURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfU1BKZnZLNVZxQk0 + FaceURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfZ09oM0tjdW41cVk + NumHeight: 2 + NumWidth: 4 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 905c6d + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.887729 + posY: 1.18610084 + posZ: -3.403697 + rotX: 4.91438732e-05 + rotY: 180.009 + rotZ: -0.00535951229 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 2702 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: 84b35a + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 1.33495632e-08 + posY: 1.04493058 + posZ: -7.76177558e-08 + rotX: 1.07281573e-06 + rotY: 180.000015 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 149607 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '16': + BackIsHidden: true + BackURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfZmZacXMyZWxuZU0 + FaceURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfOGtBT3YyX0RVMW8 + NumHeight: 2 + NumWidth: 4 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 595c62 + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.65449524 + posY: 1.23667991 + posZ: -3.450152 + rotX: -0.002284203 + rotY: 180.006058 + rotZ: 0.0116447629 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 149600 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '16': + BackIsHidden: true + BackURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfZmZacXMyZWxuZU0 + FaceURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfOGtBT3YyX0RVMW8 + NumHeight: 2 + NumWidth: 4 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 595c62 + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -4.32448339 + posY: 1.1812427 + posZ: -3.870637 + rotX: 0.00546895945 + rotY: 179.996109 + rotZ: 179.980576 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 1505 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '15': + BackIsHidden: true + BackURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfNVBUZUpkNjZXTW8 + FaceURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfdE5qQldLVnhhT3M + NumHeight: 2 + NumWidth: 4 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 0ad365 + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -4.002997 + posY: 1.23980868 + posZ: -4.10549974 + rotX: 0.0242093187 + rotY: 180.019028 + rotZ: 3.65000057 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 149604 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '16': + BackIsHidden: true + BackURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfZmZacXMyZWxuZU0 + FaceURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfOGtBT3YyX0RVMW8 + NumHeight: 2 + NumWidth: 4 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 595c62 + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -4.400344 + posY: 1.26580322 + posZ: -3.61462927 + rotX: -0.0001795439 + rotY: 180.005829 + rotZ: -0.0017897801 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 149603 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '16': + BackIsHidden: true + BackURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfZmZacXMyZWxuZU0 + FaceURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfOGtBT3YyX0RVMW8 + NumHeight: 2 + NumWidth: 4 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 595c62 + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -4.570406 + posY: 1.275481 + posZ: -4.25491333 + rotX: -0.000609125069 + rotY: 180.005981 + rotZ: -0.00233410136 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 1404 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '14': + BackIsHidden: true + BackURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfU1BKZnZLNVZxQk0 + FaceURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfZ09oM0tjdW41cVk + NumHeight: 2 + NumWidth: 4 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 905c6d + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.86496925 + posY: 1.1499846 + posZ: -3.84153652 + rotX: -0.00499851 + rotY: 180.00145 + rotZ: 359.9887 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 2703 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: 84b35a + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 1.33495632e-08 + posY: 1.04493058 + posZ: -7.76177558e-08 + rotX: 1.07281573e-06 + rotY: 180.000015 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 149601 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '16': + BackIsHidden: true + BackURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfZmZacXMyZWxuZU0 + FaceURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfOGtBT3YyX0RVMW8 + NumHeight: 2 + NumWidth: 4 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 595c62 + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -4.63 + posY: 1.29457211 + posZ: -3.699759 + rotX: -0.00124132854 + rotY: 180.006 + rotZ: -0.00113145611 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 1502 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '15': + BackIsHidden: true + BackURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfNVBUZUpkNjZXTW8 + FaceURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfdE5qQldLVnhhT3M + NumHeight: 2 + NumWidth: 4 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 0ad365 + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.71959686 + posY: 1.20775235 + posZ: -3.224228 + rotX: -0.00447635259 + rotY: 180.006088 + rotZ: 0.003981181 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 1407 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '14': + BackIsHidden: true + BackURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfU1BKZnZLNVZxQk0 + FaceURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfZ09oM0tjdW41cVk + NumHeight: 2 + NumWidth: 4 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 905c6d + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -4.50122547 + posY: 1.18112171 + posZ: -3.76419544 + rotX: -0.00133079151 + rotY: 179.997986 + rotZ: -0.00100467762 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 1506 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '15': + BackIsHidden: true + BackURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfNVBUZUpkNjZXTW8 + FaceURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfdE5qQldLVnhhT3M + NumHeight: 2 + NumWidth: 4 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 0ad365 + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.860148 + posY: 1.16915715 + posZ: -3.97019243 + rotX: 0.0005174099 + rotY: 179.998016 + rotZ: 0.0004103913 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 1501 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '15': + BackIsHidden: true + BackURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfNVBUZUpkNjZXTW8 + FaceURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfdE5qQldLVnhhT3M + NumHeight: 2 + NumWidth: 4 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 0ad365 + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -4.218294 + posY: 1.21749222 + posZ: -3.64410448 + rotX: 0.00305631361 + rotY: 180.012482 + rotZ: -0.00409154873 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 1405 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '14': + BackIsHidden: true + BackURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfU1BKZnZLNVZxQk0 + FaceURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfZ09oM0tjdW41cVk + NumHeight: 2 + NumWidth: 4 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 905c6d + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -4.115145 + posY: 1.19244754 + posZ: -3.83387017 + rotX: 0.00590661354 + rotY: 180.0294 + rotZ: 359.987976 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 1504 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '15': + BackIsHidden: true + BackURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfNVBUZUpkNjZXTW8 + FaceURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfdE5qQldLVnhhT3M + NumHeight: 2 + NumWidth: 4 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 0ad365 + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -4.259699 + posY: 1.18853319 + posZ: -3.81154561 + rotX: 0.0162240248 + rotY: 180.037552 + rotZ: 359.968018 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 2701 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: 84b35a + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 1.33495632e-08 + posY: 1.04493058 + posZ: -7.76177558e-08 + rotX: 1.07281573e-06 + rotY: 180.000015 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 1503 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '15': + BackIsHidden: true + BackURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfNVBUZUpkNjZXTW8 + FaceURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfdE5qQldLVnhhT3M + NumHeight: 2 + NumWidth: 4 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 0ad365 + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -4.17371273 + posY: 1.19822073 + posZ: -3.49600887 + rotX: 0.0004707616 + rotY: 180.015 + rotZ: 359.9908 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 149605 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '16': + BackIsHidden: true + BackURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfZmZacXMyZWxuZU0 + FaceURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfOGtBT3YyX0RVMW8 + NumHeight: 2 + NumWidth: 4 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 595c62 + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.9100306 + posY: 1.256144 + posZ: -3.88563585 + rotX: -0.00107990846 + rotY: 180.0058 + rotZ: -0.000288790266 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 2700 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: 84b35a + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 1.33495632e-08 + posY: 1.04493058 + posZ: -7.76177558e-08 + rotX: 1.07281573e-06 + rotY: 180.000015 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 149602 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '16': + BackIsHidden: true + BackURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfZmZacXMyZWxuZU0 + FaceURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfOGtBT3YyX0RVMW8 + NumHeight: 2 + NumWidth: 4 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: da2d93 + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.8418746 + posY: 1.285091 + posZ: -3.526335 + rotX: -0.000638634141 + rotY: 180.005966 + rotZ: 0.00356147881 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 149606 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '16': + BackIsHidden: true + BackURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfZmZacXMyZWxuZU0 + FaceURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfOGtBT3YyX0RVMW8 + NumHeight: 2 + NumWidth: 4 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 595c62 + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -4.57915974 + posY: 1.24645615 + posZ: -3.82795954 + rotX: 0.0002052022 + rotY: 180.005966 + rotZ: -0.005208937 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '14': + BackIsHidden: true + BackURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfU1BKZnZLNVZxQk0 + FaceURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfZ09oM0tjdW41cVk + NumHeight: 2 + NumWidth: 4 + UniqueBack: true + '1496': + BackIsHidden: true + BackURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfZmZacXMyZWxuZU0 + FaceURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfOGtBT3YyX0RVMW8 + NumHeight: 2 + NumWidth: 4 + UniqueBack: true + '15': + BackIsHidden: true + BackURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfNVBUZUpkNjZXTW8 + FaceURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfdE5qQldLVnhhT3M + NumHeight: 2 + NumWidth: 4 + UniqueBack: true + '27': + BackIsHidden: true + BackURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfNjlHVDRwWlh4WDQ + FaceURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfWF9FV2tFVHlyTlE + NumHeight: 2 + NumWidth: 4 + UniqueBack: true +DeckIDs: +- 1500 +- 1507 +- 1406 +- 2702 +- 149607 +- 149600 +- 1505 +- 149604 +- 149603 +- 1404 +- 2703 +- 149601 +- 1502 +- 1407 +- 1506 +- 1501 +- 1405 +- 1504 +- 2701 +- 1503 +- 149605 +- 2700 +- 149602 +- 149606 +Description: '' +GMNotes: '' +GUID: e93d9b +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Encounter Deck +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.92750025 + posY: 1.73973286 + posZ: 5.75710154 + rotX: 359.919739 + rotY: 270.0125 + rotZ: 180.016815 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Forbidding Desert cf02f2/Deck Professions b2e8be.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Forbidding Desert cf02f2/Deck Professions b2e8be.yaml new file mode 100644 index 000000000..f4f319b1f --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Forbidding Desert cf02f2/Deck Professions b2e8be.yaml @@ -0,0 +1,566 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 901 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '9': + BackIsHidden: true + BackURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfNkIzcDRzbDVkSlU + FaceURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfb2o0M2w3R21GVHc + NumHeight: 2 + NumWidth: 4 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 1344fe + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 24.3889256 + posY: 1.03171194 + posZ: -3.625508 + rotX: 0.00032521438 + rotY: 179.998886 + rotZ: 0.00264029857 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 900 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '9': + BackIsHidden: true + BackURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfNkIzcDRzbDVkSlU + FaceURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfb2o0M2w3R21GVHc + NumHeight: 2 + NumWidth: 4 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 687f1f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 24.7839565 + posY: 1.17688322 + posZ: -3.80820584 + rotX: -0.0004720727 + rotY: 179.99469 + rotZ: 0.00535627874 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 902 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '9': + BackIsHidden: true + BackURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfNkIzcDRzbDVkSlU + FaceURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfb2o0M2w3R21GVHc + NumHeight: 2 + NumWidth: 4 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 6e258e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 24.4801235 + posY: 1.194151 + posZ: -3.86994457 + rotX: 0.0002457913 + rotY: 180.0075 + rotZ: -0.005558371 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 903 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '9': + BackIsHidden: true + BackURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfNkIzcDRzbDVkSlU + FaceURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfb2o0M2w3R21GVHc + NumHeight: 2 + NumWidth: 4 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 54a56f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 25.2137032 + posY: 1.18036723 + posZ: -3.71509743 + rotX: 0.0166732576 + rotY: 180.001144 + rotZ: 0.04772252 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 904 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '9': + BackIsHidden: true + BackURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfNkIzcDRzbDVkSlU + FaceURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfb2o0M2w3R21GVHc + NumHeight: 2 + NumWidth: 4 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 0a5200 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 24.4720879 + posY: 1.17847538 + posZ: -3.794253 + rotX: -0.000889993564 + rotY: 180.001175 + rotZ: 0.00029882518 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 905 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '9': + BackIsHidden: true + BackURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfNkIzcDRzbDVkSlU + FaceURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfb2o0M2w3R21GVHc + NumHeight: 2 + NumWidth: 4 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: e2e88d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 25.23161 + posY: 1.18073344 + posZ: -3.92172551 + rotX: 0.0137155522 + rotY: 180.00119 + rotZ: 0.0181422159 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 907 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '9': + BackIsHidden: true + BackURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfNkIzcDRzbDVkSlU + FaceURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfb2o0M2w3R21GVHc + NumHeight: 2 + NumWidth: 4 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 4db49b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 24.346859 + posY: 1.03168523 + posZ: -0.252349645 + rotX: -0.00143652165 + rotY: 179.994354 + rotZ: -0.000702013436 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 906 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '9': + BackIsHidden: true + BackURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfNkIzcDRzbDVkSlU + FaceURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfb2o0M2w3R21GVHc + NumHeight: 2 + NumWidth: 4 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: d9ab4e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 24.5879841 + posY: 1.17678761 + posZ: -0.4768841 + rotX: -0.001298476 + rotY: 180.022141 + rotZ: -0.004334754 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 1000 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '10': + BackIsHidden: true + BackURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfTFhRRWM2aXhzdWs + FaceURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfdlYwd0JCUHlzLWM + NumHeight: 2 + NumWidth: 4 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 0bf9d1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 24.7411613 + posY: 1.19404531 + posZ: -0.4034752 + rotX: 0.000609739567 + rotY: 179.994354 + rotZ: 0.00165632588 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 1001 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '10': + BackIsHidden: true + BackURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfTFhRRWM2aXhzdWs + FaceURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfdlYwd0JCUHlzLWM + NumHeight: 2 + NumWidth: 4 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 69ec9a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 24.966938 + posY: 1.18028235 + posZ: -0.207961351 + rotX: 359.9935 + rotY: 179.994339 + rotZ: 0.00530762831 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 1002 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '10': + BackIsHidden: true + BackURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfTFhRRWM2aXhzdWs + FaceURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfdlYwd0JCUHlzLWM + NumHeight: 2 + NumWidth: 4 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 2be05d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 25.0112762 + posY: 1.17840755 + posZ: -0.320048571 + rotX: 0.0042573344 + rotY: 179.994385 + rotZ: 0.02109391 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 1003 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '10': + BackIsHidden: true + BackURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfTFhRRWM2aXhzdWs + FaceURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfdlYwd0JCUHlzLWM + NumHeight: 2 + NumWidth: 4 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: bff753 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -29.4063339 + posY: 1.26626253 + posZ: -6.715207 + rotX: 357.9908 + rotY: 180.0285 + rotZ: 359.4381 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '10': + BackIsHidden: true + BackURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfTFhRRWM2aXhzdWs + FaceURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfdlYwd0JCUHlzLWM + NumHeight: 2 + NumWidth: 4 + UniqueBack: true + '9': + BackIsHidden: true + BackURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfNkIzcDRzbDVkSlU + FaceURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfb2o0M2w3R21GVHc + NumHeight: 2 + NumWidth: 4 + UniqueBack: true +DeckIDs: +- 901 +- 900 +- 902 +- 903 +- 904 +- 905 +- 907 +- 906 +- 1000 +- 1001 +- 1002 +- 1003 +Description: '' +GMNotes: '' +GUID: b2e8be +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Professions +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -11.457303 + posY: 1.67225468 + posZ: 13.5258007 + rotX: 359.9201 + rotY: 270.0 + rotZ: 0.0168766584 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Forbidding Desert cf02f2/Deck Relics 38d273.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Forbidding Desert cf02f2/Deck Relics 38d273.yaml new file mode 100644 index 000000000..aa211f54c --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Forbidding Desert cf02f2/Deck Relics 38d273.yaml @@ -0,0 +1,215 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 2600 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '26': + BackIsHidden: true + BackURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfdWgzNFFabzRrN1E + FaceURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfdkluWU10R04yQnc + NumHeight: 2 + NumWidth: 4 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 7449ca + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 38.63216 + posY: 1.03165448 + posZ: 8.343765 + rotX: -0.00333924638 + rotY: 179.996475 + rotZ: 0.00233344524 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 2601 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '26': + BackIsHidden: true + BackURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfdWgzNFFabzRrN1E + FaceURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfdkluWU10R04yQnc + NumHeight: 2 + NumWidth: 4 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 3cf82a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 38.32354 + posY: 1.17656016 + posZ: 8.029715 + rotX: 359.99176 + rotY: 179.98526 + rotZ: 359.983856 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 2602 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '26': + BackIsHidden: true + BackURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfdWgzNFFabzRrN1E + FaceURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfdkluWU10R04yQnc + NumHeight: 2 + NumWidth: 4 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: b1372a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 38.5867958 + posY: 1.19406819 + posZ: 9.005826 + rotX: -0.00193732348 + rotY: 179.999756 + rotZ: -0.000603172637 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 2603 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '26': + BackIsHidden: true + BackURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfdWgzNFFabzRrN1E + FaceURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfdkluWU10R04yQnc + NumHeight: 2 + NumWidth: 4 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 0b1689 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 38.2914467 + posY: 1.18046248 + posZ: 8.302364 + rotX: -0.00120557216 + rotY: 179.999222 + rotZ: -0.00305925775 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '26': + BackIsHidden: true + BackURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfdWgzNFFabzRrN1E + FaceURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfdkluWU10R04yQnc + NumHeight: 2 + NumWidth: 4 + UniqueBack: true +DeckIDs: +- 2600 +- 2601 +- 2602 +- 2603 +Description: '' +GMNotes: '' +GUID: 38d273 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Relics +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -11.9120016 + posY: 1.670705 + posZ: 9.656199 + rotX: 359.9201 + rotY: 270.0 + rotZ: 0.0168761481 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Forbidding Desert cf02f2/Deck Remnants a43591.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Forbidding Desert cf02f2/Deck Remnants a43591.yaml new file mode 100644 index 000000000..31b63df82 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Forbidding Desert cf02f2/Deck Remnants a43591.yaml @@ -0,0 +1,544 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 1106 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '11': + BackIsHidden: true + BackURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfcXVheG1mWmEwOGM + FaceURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfSXhSSTg4ZXhqN1k + NumHeight: 2 + NumWidth: 4 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: ad12ca + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 4.09909868 + posY: 1.18177807 + posZ: 15.0928545 + rotX: -0.00173613068 + rotY: 179.997452 + rotZ: 180.0027 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 1104 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '11': + BackIsHidden: true + BackURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfcXVheG1mWmEwOGM + FaceURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfSXhSSTg4ZXhqN1k + NumHeight: 2 + NumWidth: 4 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: ad12ca + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -0.06923534 + posY: 1.19237316 + posZ: -3.395294 + rotX: -0.00146437867 + rotY: 180.000015 + rotZ: -0.000141526078 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 1103 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '11': + BackIsHidden: true + BackURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfcXVheG1mWmEwOGM + FaceURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfSXhSSTg4ZXhqN1k + NumHeight: 2 + NumWidth: 4 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: ad12ca + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -0.442253441 + posY: 1.1498524 + posZ: -3.66419673 + rotX: -0.0004985769 + rotY: 180.000015 + rotZ: -0.00483311061 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 1101 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '11': + BackIsHidden: true + BackURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfcXVheG1mWmEwOGM + FaceURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfSXhSSTg4ZXhqN1k + NumHeight: 2 + NumWidth: 4 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: ad12ca + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -0.4693797 + posY: 1.16921186 + posZ: -3.96937084 + rotX: -0.0015880022 + rotY: 180.000031 + rotZ: -0.00132805342 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 1102 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '11': + BackIsHidden: true + BackURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfcXVheG1mWmEwOGM + FaceURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfSXhSSTg4ZXhqN1k + NumHeight: 2 + NumWidth: 4 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: ad12ca + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.017195737 + posY: 1.15956235 + posZ: -3.44816422 + rotX: -0.00173466257 + rotY: 180.000061 + rotZ: 0.000404580729 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 1005 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '10': + BackIsHidden: true + BackURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfTFhRRWM2aXhzdWs + FaceURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfdlYwd0JCUHlzLWM + NumHeight: 2 + NumWidth: 4 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 0bf9d1 + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -0.204426244 + posY: 1.19407535 + posZ: -3.96900368 + rotX: -0.00439686747 + rotY: 179.987381 + rotZ: -0.00387352472 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 1007 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '10': + BackIsHidden: true + BackURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfTFhRRWM2aXhzdWs + FaceURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfdlYwd0JCUHlzLWM + NumHeight: 2 + NumWidth: 4 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 0bf9d1 + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -0.107990891 + posY: 1.03152823 + posZ: -4.040382 + rotX: -0.00225815317 + rotY: 180.010345 + rotZ: -0.00172422442 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 1004 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '10': + BackIsHidden: true + BackURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfTFhRRWM2aXhzdWs + FaceURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfdlYwd0JCUHlzLWM + NumHeight: 2 + NumWidth: 4 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 0bf9d1 + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -0.247119114 + posY: 1.18046343 + posZ: -3.899427 + rotX: 0.00176655129 + rotY: 180.006958 + rotZ: 359.990265 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 1100 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '11': + BackIsHidden: true + BackURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfcXVheG1mWmEwOGM + FaceURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfSXhSSTg4ZXhqN1k + NumHeight: 2 + NumWidth: 4 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: ad12ca + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.07184985 + posY: 1.178877 + posZ: -3.82969856 + rotX: 0.00263443612 + rotY: 180.009109 + rotZ: 0.0005611623 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 1006 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '10': + BackIsHidden: true + BackURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfTFhRRWM2aXhzdWs + FaceURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfdlYwd0JCUHlzLWM + NumHeight: 2 + NumWidth: 4 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 046824 + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -0.07068862 + posY: 1.17642188 + posZ: -4.18071175 + rotX: 0.0160230845 + rotY: 180.044312 + rotZ: -0.00163087645 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 1105 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '11': + BackIsHidden: true + BackURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfcXVheG1mWmEwOGM + FaceURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfSXhSSTg4ZXhqN1k + NumHeight: 2 + NumWidth: 4 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: ad12ca + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -0.175759509 + posY: 1.18607342 + posZ: -3.53492928 + rotX: -0.000762974261 + rotY: 180.000061 + rotZ: -0.00121518364 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 1107 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '11': + BackIsHidden: true + BackURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfcXVheG1mWmEwOGM + FaceURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfSXhSSTg4ZXhqN1k + NumHeight: 2 + NumWidth: 4 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: ad12ca + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -0.131543547 + posY: 1.1784693 + posZ: -3.72653651 + rotX: -0.00122890761 + rotY: 180.000015 + rotZ: -0.00013604488 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '10': + BackIsHidden: true + BackURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfTFhRRWM2aXhzdWs + FaceURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfdlYwd0JCUHlzLWM + NumHeight: 2 + NumWidth: 4 + UniqueBack: true + '11': + BackIsHidden: true + BackURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfcXVheG1mWmEwOGM + FaceURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfSXhSSTg4ZXhqN1k + NumHeight: 2 + NumWidth: 4 + UniqueBack: true +DeckIDs: +- 1106 +- 1104 +- 1103 +- 1101 +- 1102 +- 1005 +- 1007 +- 1004 +- 1100 +- 1006 +- 1105 +- 1107 +Description: '' +GMNotes: '' +GUID: a43591 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Remnants +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -11.2504015 + posY: 1.68519521 + posZ: 2.99540114 + 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 The Side Missions 791837/Custom_Model_Bag Forbidding Desert cf02f2/Deck set-up fa57c6.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Forbidding Desert cf02f2/Deck set-up fa57c6.yaml new file mode 100644 index 000000000..503a9d4f9 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Forbidding Desert cf02f2/Deck set-up fa57c6.yaml @@ -0,0 +1,427 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 2300 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '23': + BackIsHidden: true + BackURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfeW0zVHRMY28xR28 + FaceURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfUElPcDBvZkJURnc + NumHeight: 2 + NumWidth: 4 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 10e0f1 + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -1.521165 + posY: 1.18234468 + posZ: -31.9236889 + rotX: 0.0005429481 + rotY: 180.000168 + rotZ: 179.999435 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 2407 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '24': + BackIsHidden: true + BackURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfY2V5VEVvWTBGNUU + FaceURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfbDhVa01OTkZ6OVE + NumHeight: 2 + NumWidth: 4 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 987e59 + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.20893526 + posY: 1.0316366 + posZ: -7.427136 + rotX: -0.00355132064 + rotY: 180.002579 + rotZ: -0.0036479577 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 2406 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '24': + BackIsHidden: true + BackURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfY2V5VEVvWTBGNUU + FaceURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfbDhVa01OTkZ6OVE + NumHeight: 2 + NumWidth: 4 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: c4977f + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.59460044 + posY: 1.17648244 + posZ: -7.522385 + rotX: 359.9877 + rotY: 180.008575 + rotZ: 0.02211753 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 2405 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '24': + BackIsHidden: true + BackURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfY2V5VEVvWTBGNUU + FaceURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfbDhVa01OTkZ6OVE + NumHeight: 2 + NumWidth: 4 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 987e59 + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.31560779 + posY: 1.194154 + posZ: -7.573138 + rotX: -0.0009424293 + rotY: 180.000031 + rotZ: 0.000458405062 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 2404 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '24': + BackIsHidden: true + BackURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfY2V5VEVvWTBGNUU + FaceURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfbDhVa01OTkZ6OVE + NumHeight: 2 + NumWidth: 4 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 987e59 + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.44606113 + posY: 1.18042552 + posZ: -7.52681351 + rotX: 0.0009303864 + rotY: 179.9989 + rotZ: 359.993652 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 2403 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '24': + BackIsHidden: true + BackURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfY2V5VEVvWTBGNUU + FaceURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfbDhVa01OTkZ6OVE + NumHeight: 2 + NumWidth: 4 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 987e59 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -9.800318 + posY: 1.81777477 + posZ: -4.161613 + rotX: 359.935883 + rotY: 270.0 + rotZ: 180.008713 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 2402 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '24': + BackIsHidden: true + BackURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfY2V5VEVvWTBGNUU + FaceURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfbDhVa01OTkZ6OVE + NumHeight: 2 + NumWidth: 4 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 987e59 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -10.1747017 + posY: 1.78645074 + posZ: -3.872979 + rotX: 359.9352 + rotY: 270.001221 + rotZ: 182.346 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 2401 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '24': + BackIsHidden: true + BackURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfY2V5VEVvWTBGNUU + FaceURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfbDhVa01OTkZ6OVE + NumHeight: 2 + NumWidth: 4 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 56b2c2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -10.0124378 + posY: 1.81196213 + posZ: -3.90504551 + rotX: 0.2600147 + rotY: 270.005127 + rotZ: 180.44838 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 2400 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '24': + BackIsHidden: true + BackURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfY2V5VEVvWTBGNUU + FaceURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfbDhVa01OTkZ6OVE + NumHeight: 2 + NumWidth: 4 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 987e59 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -9.792303 + posY: 1.66837132 + posZ: -3.76364017 + rotX: 359.918549 + rotY: 269.999878 + rotZ: 180.002991 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '23': + BackIsHidden: true + BackURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfeW0zVHRMY28xR28 + FaceURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfUElPcDBvZkJURnc + NumHeight: 2 + NumWidth: 4 + UniqueBack: true + '24': + BackIsHidden: true + BackURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfY2V5VEVvWTBGNUU + FaceURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfbDhVa01OTkZ6OVE + NumHeight: 2 + NumWidth: 4 + UniqueBack: true +DeckIDs: +- 2300 +- 2407 +- 2406 +- 2405 +- 2404 +- 2403 +- 2402 +- 2401 +- 2400 +Description: '' +GMNotes: '' +GUID: fa57c6 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: set-up +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -9.19980049 + posY: 1.65200877 + posZ: -0.424400717 + rotX: 359.920227 + rotY: 269.9965 + rotZ: 0.01697285 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Guardians of the Abyss ee987d.ttslua b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Guardians of the Abyss ee987d.ttslua new file mode 100644 index 000000000..46067f58e --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Guardians of the Abyss ee987d.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.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.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 791837/Custom_Model_Bag Guardians of the Abyss ee987d.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Guardians of the Abyss ee987d.yaml new file mode 100644 index 000000000..17d0a4917 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Guardians of the Abyss ee987d.yaml @@ -0,0 +1,66 @@ +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 Guardians of the Abyss ee987d/Custom_Model_Bag The Night''s + Usurper 578bcb.yaml' +- !include 'Custom_Model_Bag Guardians of the Abyss ee987d/Card Instructions 57e33a.yaml' +- !include 'Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Tile Guardians of + the Abyss 82e1ed.yaml' +- !include 'Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Eternal + Slumber 9ff406.yaml' +CustomMesh: + CastShadows: true + ColliderURL: '' + Convex: true + DiffuseURL: http://cloud-3.steamusercontent.com/ugc/826883954590180592/50C4420774777AFE0D3168DA24D0E72941862CC4/ + MaterialIndex: 3 + MeshURL: https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj + NormalURL: '' + TypeIndex: 6 +Description: Official side-mission +GMNotes: '' +GUID: ee987d +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Model_Bag Guardians of the Abyss ee987d.ttslua' +LuaScriptState: '{"ml":{"578bcb":{"lock":false,"pos":{"x":-10.5053,"y":1.4873,"z":-30.0198},"rot":{"x":359.9201,"y":269.9998,"z":0.0169}},"57e33a":{"lock":false,"pos":{"x":1.837,"y":1.5434,"z":-24.5812},"rot":{"x":359.9201,"y":270,"z":0.0169}},"82e1ed":{"lock":false,"pos":{"x":-3.7965,"y":1.5822,"z":-15.4413},"rot":{"x":359.9197,"y":269.9945,"z":0.0168}},"9ff406":{"lock":false,"pos":{"x":-10.4343,"y":1.4893,"z":-22.9196},"rot":{"x":359.9201,"y":269.9976,"z":0.0169}}}}' +MaterialIndex: -1 +MeshIndex: -1 +Name: Custom_Model_Bag +Nickname: Guardians of the Abyss +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 78.19602 + posY: 8.468724 + posZ: -33.67526 + rotX: 0.0208086465 + rotY: 270.0 + rotZ: 0.0167711023 + scaleX: 2.21 + scaleY: 0.46 + scaleZ: 2.42 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Guardians of the Abyss ee987d/Card Instructions 57e33a.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Guardians of the Abyss ee987d/Card Instructions 57e33a.yaml new file mode 100644 index 000000000..3601f859c --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Guardians of the Abyss ee987d/Card Instructions 57e33a.yaml @@ -0,0 +1,215 @@ +Autoraise: true +CardID: 262500 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2625': + BackIsHidden: true + BackURL: https://i.imgur.com/I4Lz4UL.jpg + FaceURL: https://i.imgur.com/4wsufph.jpg + NumHeight: 6 + NumWidth: 5 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 57e33a +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Instructions +SidewaysCard: false +Snap: true +States: + '2': + Autoraise: true + CardID: 262501 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2625': + BackIsHidden: true + BackURL: https://i.imgur.com/I4Lz4UL.jpg + FaceURL: https://i.imgur.com/4wsufph.jpg + NumHeight: 6 + NumWidth: 5 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: '865758' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 1.83695364 + posY: 1.54342341 + posZ: -24.5812263 + rotX: 359.920135 + rotY: 269.999969 + rotZ: 0.0168726239 + scaleX: 2.0 + scaleY: 1.0 + scaleZ: 2.0 + XmlUI: '' + '3': + Autoraise: true + CardID: 262502 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2625': + BackIsHidden: true + BackURL: https://i.imgur.com/I4Lz4UL.jpg + FaceURL: https://i.imgur.com/4wsufph.jpg + NumHeight: 6 + NumWidth: 5 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 2778c0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.13000727 + posY: 1.54183459 + posZ: -23.8556557 + rotX: 359.9201 + rotY: 270.0 + rotZ: 0.0168721173 + scaleX: 2.0 + scaleY: 1.0 + scaleZ: 2.0 + XmlUI: '' + '4': + Autoraise: true + CardID: 262503 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2625': + BackIsHidden: true + BackURL: https://i.imgur.com/I4Lz4UL.jpg + FaceURL: https://i.imgur.com/4wsufph.jpg + NumHeight: 6 + NumWidth: 5 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: '565245' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.13000846 + posY: 1.54183447 + posZ: -23.8556576 + rotX: 359.920135 + rotY: 270.0 + rotZ: 0.0168713555 + scaleX: 2.0 + scaleY: 1.0 + scaleZ: 2.0 + XmlUI: '' + '5': + Autoraise: true + CardID: 262504 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2625': + BackIsHidden: true + BackURL: https://i.imgur.com/I4Lz4UL.jpg + FaceURL: https://i.imgur.com/4wsufph.jpg + NumHeight: 6 + NumWidth: 5 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 337b16 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -22.28218 + posY: 1.58621919 + posZ: 6.56322 + rotX: 359.920135 + rotY: 269.999542 + rotZ: 0.01687322 + scaleX: 2.0 + scaleY: 1.0 + scaleZ: 2.0 + XmlUI: '' +Sticky: true +Tooltip: true +Transform: + posX: 1.837001 + posY: 1.54342353 + posZ: -24.5812035 + rotX: 359.920135 + rotY: 269.999969 + rotZ: 0.01687181 + scaleX: 2.0 + scaleY: 1.0 + scaleZ: 2.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Eternal Slumber 9ff406.ttslua b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Eternal Slumber 9ff406.ttslua new file mode 100644 index 000000000..46067f58e --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Eternal Slumber 9ff406.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.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.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 791837/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Eternal Slumber 9ff406.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Eternal Slumber 9ff406.yaml new file mode 100644 index 000000000..7d939ddb2 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Eternal Slumber 9ff406.yaml @@ -0,0 +1,88 @@ +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 Eternal Slumber 9ff406/Card Setup & Resolution 0a7aa9.yaml' +- !include 'Custom_Model_Bag The Eternal Slumber 9ff406/Card Visual Exploration Reference + 7e34fb.yaml' +- !include 'Custom_Model_Bag The Eternal Slumber 9ff406/Deck Brotherhood 2b516a.yaml' +- !include 'Custom_Model_Bag The Eternal Slumber 9ff406/Custom_Tile d5e312.yaml' +- !include 'Custom_Model_Bag The Eternal Slumber 9ff406/Custom_Tile 82ed12.yaml' +- !include 'Custom_Model_Bag The Eternal Slumber 9ff406/Card Temple Courtyard ead562.yaml' +- !include 'Custom_Model_Bag The Eternal Slumber 9ff406/Custom_Tile 046379.yaml' +- !include 'Custom_Model_Bag The Eternal Slumber 9ff406/Custom_Tile 957a1e.yaml' +- !include 'Custom_Model_Bag The Eternal Slumber 9ff406/Card Cairo Bazaar d2de0e.yaml' +- !include 'Custom_Model_Bag The Eternal Slumber 9ff406/Custom_Tile fcb007.yaml' +- !include 'Custom_Model_Bag The Eternal Slumber 9ff406/Card Streets of Cairo 4e1b71.yaml' +- !include 'Custom_Model_Bag The Eternal Slumber 9ff406/Card Museum of Egyptian Antiquities + fb63e7.yaml' +- !include 'Custom_Model_Bag The Eternal Slumber 9ff406/Custom_Tile bb722a.yaml' +- !include 'Custom_Model_Bag The Eternal Slumber 9ff406/Custom_Tile 3e5b77.yaml' +- !include 'Custom_Model_Bag The Eternal Slumber 9ff406/Custom_Tile 446c93.yaml' +- !include 'Custom_Model_Bag The Eternal Slumber 9ff406/Card Outskirts of Cairo 893ca0.yaml' +- !include 'Custom_Model_Bag The Eternal Slumber 9ff406/Custom_Tile 7234af.yaml' +- !include 'Custom_Model_Bag The Eternal Slumber 9ff406/Card Expedition Camp 41f836.yaml' +- !include 'Custom_Model_Bag The Eternal Slumber 9ff406/Deck Agenda Deck 377362.yaml' +- !include 'Custom_Model_Bag The Eternal Slumber 9ff406/Deck Act Deck 4cef7f.yaml' +- !include 'Custom_Model_Bag The Eternal Slumber 9ff406/Deck Encounter Deck 45c2bd.yaml' +- !include 'Custom_Model_Bag The Eternal Slumber 9ff406/Custom_Model_Bag Set-aside + 913835.yaml' +- !include 'Custom_Model_Bag The Eternal Slumber 9ff406/Custom_Token Scenario - EasyStandard + e19c97.yaml' +- !include 'Custom_Model_Bag The Eternal Slumber 9ff406/Custom_Token Scenario - EasyStandard + b7af99.yaml' +CustomMesh: + CastShadows: true + ColliderURL: '' + Convex: true + DiffuseURL: http://cloud-3.steamusercontent.com/ugc/826883954590181911/A707541F9548072CADD7412A8F46104F502A8634/ + MaterialIndex: 3 + MeshURL: https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj + NormalURL: '' + TypeIndex: 6 +Description: Guardians of the Abyss 1 +GMNotes: '' +GUID: 9ff406 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Model_Bag The Eternal Slumber 9ff406.ttslua' +LuaScriptState: '{"ml":{"046379":{"lock":false,"pos":{"x":-20.0426,"y":1.6127,"z":10.9861},"rot":{"x":359.9316,"y":314.9999,"z":359.9555}},"0a7aa9":{"lock":false,"pos":{"x":1.8043,"y":1.5406,"z":-34.3527},"rot":{"x":359.9201,"y":270.0178,"z":0.0168}},"2b516a":{"lock":false,"pos":{"x":-10.8742,"y":1.6707,"z":4.7825},"rot":{"x":359.9201,"y":270.019,"z":0.0168}},"377362":{"lock":false,"pos":{"x":-2.6885,"y":1.655,"z":-5.0485},"rot":{"x":0.0168,"y":179.9996,"z":0.0803}},"3e5b77":{"lock":false,"pos":{"x":-27.2225,"y":1.6216,"z":7.1061},"rot":{"x":359.9201,"y":269.9998,"z":0.0169}},"41f836":{"lock":false,"pos":{"x":-23.6765,"y":1.684,"z":-7.7},"rot":{"x":359.9201,"y":270.0003,"z":0.0169}},"446c93":{"lock":false,"pos":{"x":-23.6765,"y":1.6157,"z":3.86},"rot":{"x":359.9831,"y":0.0061,"z":359.92}},"45c2bd":{"lock":false,"pos":{"x":-3.9277,"y":1.7611,"z":5.7572},"rot":{"x":359.9197,"y":270.0008,"z":180.0168}},"4cef7f":{"lock":false,"pos":{"x":-2.7247,"y":1.6566,"z":0.3733},"rot":{"x":0.0168,"y":180.0078,"z":0.0803}},"4e1b71":{"lock":false,"pos":{"x":-23.6765,"y":1.6885,"z":7.57},"rot":{"x":359.9201,"y":270.0003,"z":0.0169}},"7234af":{"lock":false,"pos":{"x":-23.6765,"y":1.6134,"z":-3.83},"rot":{"x":359.9832,"y":0.006,"z":359.92}},"7e34fb":{"lock":false,"pos":{"x":-11.5408,"y":1.6649,"z":-14.9971},"rot":{"x":0.0169,"y":179.9994,"z":0.0799}},"82ed12":{"lock":false,"pos":{"x":-20.6463,"y":1.6124,"z":7.1657},"rot":{"x":359.9201,"y":270,"z":0.0169}},"893ca0":{"lock":false,"pos":{"x":-23.6765,"y":1.6862,"z":-0.03},"rot":{"x":359.9201,"y":270.0002,"z":0.0169}},"913835":{"lock":false,"pos":{"x":1.6966,"y":1.5583,"z":14.2787},"rot":{"x":359.9551,"y":224.998,"z":0.0687}},"957a1e":{"lock":false,"pos":{"x":-23.6806,"y":1.6179,"z":11.46},"rot":{"x":359.9831,"y":0.006,"z":359.92}},"b7af99":{"lock":false,"pos":{"x":-5.8297,"y":1.7191,"z":-10.4672},"rot":{"x":2.9776,"y":270.0087,"z":0.0167}},"bb722a":{"lock":false,"pos":{"x":-27.3364,"y":1.6207,"z":3.5967},"rot":{"x":359.9316,"y":315.0001,"z":359.9555}},"d2de0e":{"lock":false,"pos":{"x":-23.6765,"y":1.6907,"z":15.19},"rot":{"x":359.9201,"y":269.9996,"z":0.0169}},"d5e312":{"lock":false,"pos":{"x":-20.7701,"y":1.6115,"z":3.6738},"rot":{"x":0.0446,"y":45.0015,"z":359.9315}},"e19c97":{"lock":false,"pos":{"x":-3.956,"y":1.6339,"z":-10.4412},"rot":{"x":359.9182,"y":269.9995,"z":0.0163}},"ead562":{"lock":false,"pos":{"x":-17.12,"y":1.6793,"z":7.57},"rot":{"x":359.9201,"y":269.9907,"z":0.0169}},"fb63e7":{"lock":false,"pos":{"x":-30.2243,"y":1.6976,"z":7.57},"rot":{"x":359.9201,"y":270.0001,"z":0.0169}},"fcb007":{"lock":false,"pos":{"x":-27.5292,"y":1.623,"z":10.5186},"rot":{"x":359.9747,"y":209.9999,"z":0.0777}}}}' +MaterialIndex: -1 +MeshIndex: -1 +Name: Custom_Model_Bag +Nickname: The Eternal Slumber +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -10.4343014 + posY: 1.48930681 + posZ: -22.9196033 + rotX: 359.920135 + rotY: 269.9976 + rotZ: 0.0168746486 + scaleX: 2.21 + scaleY: 0.46 + scaleZ: 2.42 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Eternal Slumber 9ff406/Card Cairo Bazaar d2de0e.yaml new file mode 100644 index 000000000..25051e83b --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Eternal Slumber 9ff406/Card Cairo Bazaar d2de0e.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 270108 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2701': + BackIsHidden: true + BackURL: https://i.imgur.com/r6F1mt2.jpg + FaceURL: https://i.imgur.com/CN9PXUd.jpg + NumHeight: 5 + NumWidth: 10 + UniqueBack: true +Description: Cairo. +GMNotes: '' +GUID: d2de0e +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Cairo Bazaar +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -23.6764984 + posY: 1.690702 + posZ: 15.1900024 + rotX: 359.9201 + rotY: 269.999573 + rotZ: 0.0168704018 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Eternal Slumber 9ff406/Card Expedition Camp 41f836.yaml new file mode 100644 index 000000000..4d97702a7 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Eternal Slumber 9ff406/Card Expedition Camp 41f836.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 270121 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2701': + BackIsHidden: true + BackURL: https://i.imgur.com/r6F1mt2.jpg + FaceURL: https://i.imgur.com/CN9PXUd.jpg + NumHeight: 5 + NumWidth: 10 + UniqueBack: true +Description: Expedition. Cairo. Desert. +GMNotes: '' +GUID: 41f836 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Expedition Camp +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -23.6765 + posY: 1.68396175 + posZ: -7.70000124 + rotX: 359.9201 + rotY: 270.0003 + rotZ: 0.0168662462 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Eternal Slumber 9ff406/Card Museum of Egyptian Antiquities fb63e7.yaml new file mode 100644 index 000000000..c0f5ac969 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Eternal Slumber 9ff406/Card Museum of Egyptian Antiquities fb63e7.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 270109 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2701': + BackIsHidden: true + BackURL: https://i.imgur.com/r6F1mt2.jpg + FaceURL: https://i.imgur.com/CN9PXUd.jpg + NumHeight: 5 + NumWidth: 10 + UniqueBack: true +Description: Cairo. +GMNotes: '' +GUID: fb63e7 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Museum of Egyptian Antiquities +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -30.2243 + posY: 1.69758868 + posZ: 7.57 + rotX: 359.9201 + rotY: 270.000122 + rotZ: 0.016870819 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Eternal Slumber 9ff406/Card Outskirts of Cairo 893ca0.yaml new file mode 100644 index 000000000..6562d814c --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Eternal Slumber 9ff406/Card Outskirts of Cairo 893ca0.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 270110 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2701': + BackIsHidden: true + BackURL: https://i.imgur.com/r6F1mt2.jpg + FaceURL: https://i.imgur.com/CN9PXUd.jpg + NumHeight: 5 + NumWidth: 10 + UniqueBack: true +Description: Cairo. +GMNotes: '' +GUID: 893ca0 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Outskirts of Cairo +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -23.6765 + posY: 1.68622029 + posZ: -0.0299995262 + rotX: 359.9201 + rotY: 270.000244 + rotZ: 0.01686706 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Eternal Slumber 9ff406/Card Setup & Resolution 0a7aa9.yaml new file mode 100644 index 000000000..f431defae --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Eternal Slumber 9ff406/Card Setup & Resolution 0a7aa9.yaml @@ -0,0 +1,129 @@ +Autoraise: true +CardID: 265109 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/JYubVDj.jpg + FaceURL: https://i.imgur.com/4wsufph.jpg + NumHeight: 6 + NumWidth: 5 + UniqueBack: false +Description: The Eternal Slumber +GMNotes: '' +GUID: 0a7aa9 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Setup & Resolution +SidewaysCard: false +Snap: true +States: + '2': + Autoraise: true + CardID: 262605 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2626': + BackIsHidden: true + BackURL: https://i.imgur.com/JYubVDj.jpg + FaceURL: https://i.imgur.com/4wsufph.jpg + NumHeight: 6 + NumWidth: 5 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 2fbdac + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -9.263626 + posY: 1.66594887 + posZ: -0.629726231 + rotX: 359.92038 + rotY: 270.0178 + rotZ: 0.0168150645 + scaleX: 2.0 + scaleY: 1.0 + scaleZ: 2.0 + XmlUI: '' + '3': + Autoraise: true + CardID: 262606 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2626': + BackIsHidden: true + BackURL: https://i.imgur.com/JYubVDj.jpg + FaceURL: https://i.imgur.com/4wsufph.jpg + NumHeight: 6 + NumWidth: 5 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 24e7c6 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -23.7187366 + posY: 2.05428815 + posZ: 2.1679 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 2.0 + scaleY: 1.0 + scaleZ: 2.0 + XmlUI: '' +Sticky: true +Tooltip: true +Transform: + posX: 1.8042978 + posY: 1.54059184 + posZ: -34.35266 + rotX: 359.9201 + rotY: 270.0178 + rotZ: 0.0168475714 + scaleX: 2.0 + scaleY: 1.0 + scaleZ: 2.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Eternal Slumber 9ff406/Card Streets of Cairo 4e1b71.yaml new file mode 100644 index 000000000..a3202f202 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Eternal Slumber 9ff406/Card Streets of Cairo 4e1b71.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 270107 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2701': + BackIsHidden: true + BackURL: https://i.imgur.com/r6F1mt2.jpg + FaceURL: https://i.imgur.com/CN9PXUd.jpg + NumHeight: 5 + NumWidth: 10 + UniqueBack: true +Description: Cairo. +GMNotes: '' +GUID: 4e1b71 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Streets of Cairo +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -23.6765 + posY: 1.6884582 + posZ: 7.5700016 + rotX: 359.9201 + rotY: 270.0003 + rotZ: 0.0168686081 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Eternal Slumber 9ff406/Card Temple Courtyard ead562.yaml new file mode 100644 index 000000000..19859b13d --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Eternal Slumber 9ff406/Card Temple Courtyard ead562.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 270111 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2701': + BackIsHidden: true + BackURL: https://i.imgur.com/r6F1mt2.jpg + FaceURL: https://i.imgur.com/CN9PXUd.jpg + NumHeight: 5 + NumWidth: 10 + UniqueBack: true +Description: Cairo. +GMNotes: '' +GUID: ead562 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Temple Courtyard +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -17.12 + posY: 1.67931557 + posZ: 7.57000065 + rotX: 359.9201 + rotY: 269.990723 + rotZ: 0.0168839619 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Eternal Slumber 9ff406/Card Visual Exploration Reference 7e34fb.yaml new file mode 100644 index 000000000..adccc7cc0 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Eternal Slumber 9ff406/Card Visual Exploration Reference 7e34fb.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 270003 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2700': + BackIsHidden: false + BackURL: https://i.imgur.com/3x23Tmh.jpg + FaceURL: https://i.imgur.com/3x23Tmh.jpg + NumHeight: 2 + NumWidth: 2 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 7e34fb +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Visual Exploration Reference +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -11.540801 + posY: 1.66489065 + posZ: -14.9971018 + rotX: 0.0168724172 + rotY: 179.9994 + rotZ: 0.07989643 + scaleX: 2.0 + scaleY: 1.0 + scaleZ: 2.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Eternal Slumber 9ff406/Custom_Model_Bag Set-aside 913835.yaml new file mode 100644 index 000000000..dc747a269 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Eternal Slumber 9ff406/Custom_Model_Bag Set-aside 913835.yaml @@ -0,0 +1,60 @@ +Autoraise: true +ColorDiffuse: + b: 0.02148666 + g: 0.00100758043 + r: 0.02148666 +ContainedObjects: +- !include 'Custom_Model_Bag Set-aside 913835/Card Neith 7e0c5a.yaml' +- !include 'Custom_Model_Bag Set-aside 913835/Card Ancient Ankh 0ce113.yaml' +- !include 'Custom_Model_Bag Set-aside 913835/Card John & Jessie Burke cfb393.yaml' +- !include 'Custom_Model_Bag Set-aside 913835/Deck Expedition Locations c88e3e.yaml' +- !include 'Custom_Model_Bag Set-aside 913835/Deck Abyssal Revenant ae284e.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 Eternal Slumber +GMNotes: '' +GUID: '913835' +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +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.69660175 + posY: 1.55831671 + posZ: 14.2787056 + rotX: 359.955139 + rotY: 224.997986 + rotZ: 0.06868449 + scaleX: 2.0 + scaleY: 2.0 + scaleZ: 2.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/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 new file mode 100644 index 000000000..d43630f02 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/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 @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 266141 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2661': + BackIsHidden: true + BackURL: https://i.imgur.com/r6F1mt2.jpg + FaceURL: https://i.imgur.com/CN9PXUd.jpg + NumHeight: 5 + NumWidth: 10 + UniqueBack: true +Description: Item. Relic. +GMNotes: '' +GUID: 0ce113 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Ancient Ankh +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 29.9009171 + posY: 2.349629 + posZ: -25.3740463 + rotX: 359.9201 + rotY: 269.999939 + rotZ: 0.0168664977 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/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 new file mode 100644 index 000000000..1ac7ff55c --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/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 @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 266140 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2661': + BackIsHidden: true + BackURL: https://i.imgur.com/r6F1mt2.jpg + FaceURL: https://i.imgur.com/CN9PXUd.jpg + NumHeight: 5 + NumWidth: 10 + UniqueBack: true +Description: Ally. Government. +GMNotes: '' +GUID: cfb393 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: John & Jessie Burke +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 29.4232864 + posY: 2.34941864 + posZ: -28.3495045 + rotX: 359.920135 + rotY: 269.999939 + rotZ: 0.0168735646 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/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 new file mode 100644 index 000000000..834db972a --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/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 @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 266112 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2661': + BackIsHidden: true + BackURL: https://i.imgur.com/r6F1mt2.jpg + FaceURL: https://i.imgur.com/CN9PXUd.jpg + NumHeight: 5 + NumWidth: 10 + UniqueBack: true +Description: "Humanoid. Cultist. \nBrotherhood. " +GMNotes: '' +GUID: 7e0c5a +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Neith +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 35.6403732 + posY: 6.863522 + posZ: -24.5784683 + rotX: 359.983246 + rotY: 270.0 + rotZ: 180.00354 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/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 new file mode 100644 index 000000000..4cc7f0c0f --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/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 @@ -0,0 +1,129 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 266130 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2661': + BackIsHidden: true + BackURL: https://i.imgur.com/r6F1mt2.jpg + FaceURL: https://i.imgur.com/CN9PXUd.jpg + NumHeight: 5 + NumWidth: 10 + UniqueBack: true + Description: Monster. Dreamlands. + GMNotes: '' + GUID: d113d1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Abyssal Revenant + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 12.8868542 + posY: 1.53524256 + posZ: -9.63592 + rotX: 359.920135 + rotY: 270.000061 + rotZ: 180.016876 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 266129 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2661': + BackIsHidden: true + BackURL: https://i.imgur.com/r6F1mt2.jpg + FaceURL: https://i.imgur.com/CN9PXUd.jpg + NumHeight: 5 + NumWidth: 10 + UniqueBack: true + Description: Monster. Dreamlands. + GMNotes: '' + GUID: 173e8a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Abyssal Revenant + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 12.4290123 + posY: 1.53669453 + posZ: -6.87277746 + rotX: 359.920135 + rotY: 270.000031 + rotZ: 180.016876 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2661': + BackIsHidden: true + BackURL: https://i.imgur.com/r6F1mt2.jpg + FaceURL: https://i.imgur.com/CN9PXUd.jpg + NumHeight: 5 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 266130 +- 266129 +Description: The Eternal Slumber +GMNotes: '' +GUID: ae284e +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Abyssal Revenant +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 25.9867821 + posY: 3.14137053 + posZ: -21.4230537 + rotX: 0.0798644647 + rotY: 270.0 + rotZ: 0.00389405154 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/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 new file mode 100644 index 000000000..c09bdcc7a --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/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 @@ -0,0 +1,344 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 266124 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2661': + BackIsHidden: true + BackURL: https://i.imgur.com/r6F1mt2.jpg + FaceURL: https://i.imgur.com/CN9PXUd.jpg + NumHeight: 5 + NumWidth: 10 + UniqueBack: true + Description: Expedition. Desert. + GMNotes: '' + GUID: f8bc37 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dunes of the Sahara + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 9.432801 + posY: 1.540067 + posZ: -0.0191466771 + rotX: 359.920135 + rotY: 269.999939 + rotZ: 0.0168690048 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 266126 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2661': + BackIsHidden: true + BackURL: https://i.imgur.com/r6F1mt2.jpg + FaceURL: https://i.imgur.com/CN9PXUd.jpg + NumHeight: 5 + NumWidth: 10 + UniqueBack: true + Description: Expedition. Desert. Ruins. + GMNotes: '' + GUID: 6dd75b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Faceless Sphinx + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 9.027845 + posY: 1.53989458 + posZ: -2.521847 + rotX: 359.920135 + rotY: 270.000153 + rotZ: 0.0168659054 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 266122 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2661': + BackIsHidden: true + BackURL: https://i.imgur.com/r6F1mt2.jpg + FaceURL: https://i.imgur.com/CN9PXUd.jpg + NumHeight: 5 + NumWidth: 10 + UniqueBack: true + Description: Expedition. Desert. + GMNotes: '' + GUID: f8187f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Nile River + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 8.847852 + posY: 1.539259 + posZ: -5.532118 + rotX: 359.920135 + rotY: 270.0003 + rotZ: 0.0168680269 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 266128 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2661': + BackIsHidden: true + BackURL: https://i.imgur.com/r6F1mt2.jpg + FaceURL: https://i.imgur.com/CN9PXUd.jpg + NumHeight: 5 + NumWidth: 10 + UniqueBack: true + Description: Expedition. Desert. Ruins. + GMNotes: '' + GUID: e5e2f5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Sandswept Ruins + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 9.581833 + posY: 1.53743947 + posZ: -8.236309 + rotX: 359.920135 + rotY: 269.999939 + rotZ: 0.0168666132 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 266123 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2661': + BackIsHidden: true + BackURL: https://i.imgur.com/r6F1mt2.jpg + FaceURL: https://i.imgur.com/CN9PXUd.jpg + NumHeight: 5 + NumWidth: 10 + UniqueBack: true + Description: Expedition. Desert. + GMNotes: '' + GUID: 5ea1c7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Sands of Dashur + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 9.043107 + posY: 1.53752458 + posZ: -10.5098248 + rotX: 359.9205 + rotY: 270.001038 + rotZ: 0.0158642344 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 266125 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2661': + BackIsHidden: true + BackURL: https://i.imgur.com/r6F1mt2.jpg + FaceURL: https://i.imgur.com/CN9PXUd.jpg + NumHeight: 5 + NumWidth: 10 + UniqueBack: true + Description: Expedition. Ruins. + GMNotes: '' + GUID: 46ecbb + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Untouched Vault + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 9.466798 + posY: 1.61486149 + posZ: -12.544281 + rotX: 359.919739 + rotY: 269.995758 + rotZ: 4.145965 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 266127 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2661': + BackIsHidden: true + BackURL: https://i.imgur.com/r6F1mt2.jpg + FaceURL: https://i.imgur.com/CN9PXUd.jpg + NumHeight: 5 + NumWidth: 10 + UniqueBack: true + Description: Expedition. Desert. + GMNotes: '' + GUID: fb6b7a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Desert Oasis + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 12.8333368 + posY: 1.5319407 + posZ: -11.5162144 + rotX: 359.920135 + rotY: 269.999847 + rotZ: 0.0168692414 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2661': + BackIsHidden: true + BackURL: https://i.imgur.com/r6F1mt2.jpg + FaceURL: https://i.imgur.com/CN9PXUd.jpg + NumHeight: 5 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 266124 +- 266126 +- 266122 +- 266128 +- 266123 +- 266125 +- 266127 +Description: The Eternal Slumber +GMNotes: '' +GUID: c88e3e +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Expedition Locations +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 25.2931213 + posY: 3.57013059 + posZ: -6.24852562 + rotX: 359.918976 + rotY: 270.000031 + rotZ: 0.017333325 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Eternal Slumber 9ff406/Custom_Tile 046379.yaml new file mode 100644 index 000000000..e25768114 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Eternal Slumber 9ff406/Custom_Tile 046379.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 046379 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.0425987 + posY: 1.6126833 + posZ: 10.9861021 + rotX: 359.93158 + rotY: 314.9999 + rotZ: 359.955475 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Eternal Slumber 9ff406/Custom_Tile 3e5b77.yaml new file mode 100644 index 000000000..2a696d7b4 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Eternal Slumber 9ff406/Custom_Tile 3e5b77.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 3e5b77 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.2225 + posY: 1.62155282 + posZ: 7.10610056 + rotX: 359.9201 + rotY: 269.999817 + rotZ: 0.0168768447 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Eternal Slumber 9ff406/Custom_Tile 446c93.yaml new file mode 100644 index 000000000..fb05a87b8 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Eternal Slumber 9ff406/Custom_Tile 446c93.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 446c93 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.6765 + posY: 1.6156522 + posZ: 3.86000013 + rotX: 359.983124 + rotY: 0.006084739 + rotZ: 359.92 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Eternal Slumber 9ff406/Custom_Tile 7234af.yaml new file mode 100644 index 000000000..7899408d0 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Eternal Slumber 9ff406/Custom_Tile 7234af.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 7234af +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.6765 + posY: 1.6133877 + posZ: -3.83 + rotX: 359.983154 + rotY: 0.00603015628 + rotZ: 359.92 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Eternal Slumber 9ff406/Custom_Tile 82ed12.yaml new file mode 100644 index 000000000..24813e836 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Eternal Slumber 9ff406/Custom_Tile 82ed12.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 82ed12 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.6463 + posY: 1.61240029 + posZ: 7.16570044 + rotX: 359.9201 + rotY: 269.999969 + rotZ: 0.0168726 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Eternal Slumber 9ff406/Custom_Tile 957a1e.yaml new file mode 100644 index 000000000..0275f2adf --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Eternal Slumber 9ff406/Custom_Tile 957a1e.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 957a1e +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.680584 + posY: 1.61789572 + posZ: 11.4599819 + rotX: 359.983124 + rotY: 0.00596505636 + rotZ: 359.92 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Eternal Slumber 9ff406/Custom_Tile bb722a.yaml new file mode 100644 index 000000000..4530cac84 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Eternal Slumber 9ff406/Custom_Tile bb722a.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: bb722a +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.3364 + posY: 1.620678 + posZ: 3.59669971 + rotX: 359.93158 + rotY: 315.0001 + rotZ: 359.955475 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Eternal Slumber 9ff406/Custom_Tile d5e312.yaml new file mode 100644 index 000000000..353224cad --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Eternal Slumber 9ff406/Custom_Tile d5e312.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: d5e312 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.7700977 + posY: 1.61154473 + posZ: 3.67380023 + rotX: 0.0445727445 + rotY: 45.00147 + rotZ: 359.931549 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Eternal Slumber 9ff406/Custom_Tile fcb007.yaml new file mode 100644 index 000000000..ff44e7377 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Eternal Slumber 9ff406/Custom_Tile fcb007.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: fcb007 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.5292 + posY: 1.62298512 + posZ: 10.5186024 + rotX: 359.97467 + rotY: 209.999878 + rotZ: 0.0776921138 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Eternal Slumber 9ff406/Custom_Token Scenario - EasyStandard b7af99.ttslua new file mode 100644 index 000000000..1c555f04c --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Eternal Slumber 9ff406/Custom_Token Scenario - EasyStandard b7af99.ttslua @@ -0,0 +1,132 @@ +MIN_VALUE = -99 +MAX_VALUE = 999 + +function onload(saved_data) + light_mode = false + val = 0 + + if saved_data ~= "" then + local loaded_data = JSON.decode(saved_data) + light_mode = loaded_data[1] + val = loaded_data[2] + end + + createAll() +end + +function updateSave() + local data_to_save = {light_mode, val} + saved_data = JSON.encode(data_to_save) + self.script_state = saved_data +end + +function createAll() + s_color = {0.5, 0.5, 0.5, 95} + + if light_mode then + f_color = {0,0,0,98} + else + f_color = {0,0,0,100} + end + + + + self.createButton({ + label=tostring(val), + click_function="add_subtract", + function_owner=self, + position={0,0.05,1.45}, + height=600, + width=1000, + alignment = 3, + scale={x=1, y=1, z=1}, + font_size=350, + font_color=f_color, + color={0,0,0,0} + }) + + + + + if light_mode then + lightButtonText = "[ Set dark ]" + else + lightButtonText = "[ Set light ]" + end + +end + +function removeAll() + self.removeInput(0) + self.removeInput(1) + self.removeButton(0) + self.removeButton(1) + self.removeButton(2) +end + +function reloadAll() + removeAll() + createAll() + + updateSave() +end + +function swap_fcolor(_obj, _color, alt_click) + light_mode = not light_mode + reloadAll() +end + +function swap_align(_obj, _color, alt_click) + center_mode = not center_mode + reloadAll() +end + +function editName(_obj, _string, value) + self.setName(value) + setTooltips() +end + +function add_subtract(_obj, _color, alt_click) + mod = alt_click and -1 or 1 + new_value = math.min(math.max(val + mod, MIN_VALUE), MAX_VALUE) + if val ~= new_value then + val = new_value + updateVal() + updateSave() + end +end + +function updateVal() + + self.editButton({ + index = 0, + label = tostring(val), + + }) +end + +function reset_val() + val = 0 + updateVal() + updateSave() +end + +function setTooltips() + self.editInput({ + index = 0, + value = self.getName(), + tooltip = ttText + }) + self.editButton({ + index = 0, + value = tostring(val), + tooltip = ttText + }) +end + +function null() +end + +function keepSample(_obj, _string, value) + reloadAll() +end \ No newline at end of file diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Eternal Slumber 9ff406/Custom_Token Scenario - EasyStandard b7af99.yaml new file mode 100644 index 000000000..178d46dbd --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Eternal Slumber 9ff406/Custom_Token Scenario - EasyStandard b7af99.yaml @@ -0,0 +1,45 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +CustomImage: + CustomToken: + MergeDistancePixels: 5.0 + Stackable: false + Thickness: 0.1 + ImageScalar: 1.0 + ImageSecondaryURL: '' + ImageURL: https://i.imgur.com/FcbXk7y.jpg + WidthScale: 0.0 +Description: 'Left click - Increase + + Right click - Decrease' +GMNotes: '' +GUID: b7af99 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Token Scenario - EasyStandard b7af99.ttslua' +LuaScriptState: '[true,0]' +Name: Custom_Token +Nickname: 'Scenario - Easy/Standard + + ' +Snap: true +Sticky: true +Tooltip: false +Transform: + posX: -5.82969952 + posY: 1.719076 + posZ: -10.46718 + rotX: 2.9775672 + rotY: 270.0087 + rotZ: 0.0167326462 + scaleX: 0.7 + scaleY: 1.0 + scaleZ: 0.7 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Eternal Slumber 9ff406/Custom_Token Scenario - EasyStandard e19c97.ttslua new file mode 100644 index 000000000..1c555f04c --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Eternal Slumber 9ff406/Custom_Token Scenario - EasyStandard e19c97.ttslua @@ -0,0 +1,132 @@ +MIN_VALUE = -99 +MAX_VALUE = 999 + +function onload(saved_data) + light_mode = false + val = 0 + + if saved_data ~= "" then + local loaded_data = JSON.decode(saved_data) + light_mode = loaded_data[1] + val = loaded_data[2] + end + + createAll() +end + +function updateSave() + local data_to_save = {light_mode, val} + saved_data = JSON.encode(data_to_save) + self.script_state = saved_data +end + +function createAll() + s_color = {0.5, 0.5, 0.5, 95} + + if light_mode then + f_color = {0,0,0,98} + else + f_color = {0,0,0,100} + end + + + + self.createButton({ + label=tostring(val), + click_function="add_subtract", + function_owner=self, + position={0,0.05,1.45}, + height=600, + width=1000, + alignment = 3, + scale={x=1, y=1, z=1}, + font_size=350, + font_color=f_color, + color={0,0,0,0} + }) + + + + + if light_mode then + lightButtonText = "[ Set dark ]" + else + lightButtonText = "[ Set light ]" + end + +end + +function removeAll() + self.removeInput(0) + self.removeInput(1) + self.removeButton(0) + self.removeButton(1) + self.removeButton(2) +end + +function reloadAll() + removeAll() + createAll() + + updateSave() +end + +function swap_fcolor(_obj, _color, alt_click) + light_mode = not light_mode + reloadAll() +end + +function swap_align(_obj, _color, alt_click) + center_mode = not center_mode + reloadAll() +end + +function editName(_obj, _string, value) + self.setName(value) + setTooltips() +end + +function add_subtract(_obj, _color, alt_click) + mod = alt_click and -1 or 1 + new_value = math.min(math.max(val + mod, MIN_VALUE), MAX_VALUE) + if val ~= new_value then + val = new_value + updateVal() + updateSave() + end +end + +function updateVal() + + self.editButton({ + index = 0, + label = tostring(val), + + }) +end + +function reset_val() + val = 0 + updateVal() + updateSave() +end + +function setTooltips() + self.editInput({ + index = 0, + value = self.getName(), + tooltip = ttText + }) + self.editButton({ + index = 0, + value = tostring(val), + tooltip = ttText + }) +end + +function null() +end + +function keepSample(_obj, _string, value) + reloadAll() +end \ No newline at end of file diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Eternal Slumber 9ff406/Custom_Token Scenario - EasyStandard e19c97.yaml new file mode 100644 index 000000000..23bf07957 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Eternal Slumber 9ff406/Custom_Token Scenario - EasyStandard e19c97.yaml @@ -0,0 +1,45 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +CustomImage: + CustomToken: + MergeDistancePixels: 5.0 + Stackable: false + Thickness: 0.1 + ImageScalar: 1.0 + ImageSecondaryURL: '' + ImageURL: https://i.imgur.com/hyR5vWS.jpg + WidthScale: 0.0 +Description: 'Left click - Increase + + Right click - Decrease' +GMNotes: '' +GUID: e19c97 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Token Scenario - EasyStandard e19c97.ttslua' +LuaScriptState: '[true,0]' +Name: Custom_Token +Nickname: 'Scenario - Easy/Standard + + ' +Snap: true +Sticky: true +Tooltip: false +Transform: + posX: -3.95601439 + posY: 1.633896 + posZ: -10.4412317 + rotX: 359.9182 + rotY: 269.9995 + rotZ: 0.0163147952 + scaleX: 0.7 + scaleY: 1.0 + scaleZ: 0.7 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Eternal Slumber 9ff406/Deck Act Deck 4cef7f.yaml new file mode 100644 index 000000000..d7c4f9f4c --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Eternal Slumber 9ff406/Deck Act Deck 4cef7f.yaml @@ -0,0 +1,172 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 271706 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2662': + BackIsHidden: true + BackURL: https://i.imgur.com/r6F1mt2.jpg + FaceURL: https://i.imgur.com/CN9PXUd.jpg + NumHeight: 5 + NumWidth: 10 + UniqueBack: true + Description: Act 3 + GMNotes: '' + GUID: 7c9c6b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Hour of Judgment + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 25.1475563 + posY: 1.51877367 + posZ: 2.1704607 + rotX: 0.0136972405 + rotY: 179.999527 + rotZ: 0.0771653652 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 271705 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2662': + BackIsHidden: true + BackURL: https://i.imgur.com/r6F1mt2.jpg + FaceURL: https://i.imgur.com/CN9PXUd.jpg + NumHeight: 5 + NumWidth: 10 + UniqueBack: true + Description: Act 2 + GMNotes: '' + GUID: 8f21c4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Secrets in the Sand + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 24.9375572 + posY: 1.65937877 + posZ: 2.42154169 + rotX: 0.0120296227 + rotY: 179.991882 + rotZ: 0.051350452 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 271704 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2662': + BackIsHidden: true + BackURL: https://i.imgur.com/r6F1mt2.jpg + FaceURL: https://i.imgur.com/CN9PXUd.jpg + NumHeight: 5 + NumWidth: 10 + UniqueBack: true + Description: Act 1 + GMNotes: '' + GUID: 35de51 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: 'Curse of Endless Sleep ' + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 24.8901 + posY: 1.677174 + posZ: 2.41283965 + rotX: 0.0152829951 + rotY: 180.010468 + rotZ: 0.06887408 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2717': + BackIsHidden: true + BackURL: https://i.imgur.com/r6F1mt2.jpg + FaceURL: https://i.imgur.com/CN9PXUd.jpg + NumHeight: 5 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 271706 +- 271705 +- 271704 +Description: The Eternal Slumber +GMNotes: '' +GUID: 4cef7f +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Act Deck +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.72470045 + posY: 1.656641 + posZ: 0.373299539 + rotX: 0.0168272778 + rotY: 180.007767 + rotZ: 0.0802604854 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Eternal Slumber 9ff406/Deck Agenda Deck 377362.yaml new file mode 100644 index 000000000..6428bcefe --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Eternal Slumber 9ff406/Deck Agenda Deck 377362.yaml @@ -0,0 +1,172 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 271603 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2662': + BackIsHidden: true + BackURL: https://i.imgur.com/r6F1mt2.jpg + FaceURL: https://i.imgur.com/CN9PXUd.jpg + NumHeight: 5 + NumWidth: 10 + UniqueBack: true + Description: Agenda 3 + GMNotes: '' + GUID: 9ebdb5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Garden of Shadows + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 28.2555485 + posY: 1.513636 + posZ: -0.283777565 + rotX: 0.0112580182 + rotY: 179.999908 + rotZ: 0.0779178143 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 271602 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2662': + BackIsHidden: true + BackURL: https://i.imgur.com/r6F1mt2.jpg + FaceURL: https://i.imgur.com/CN9PXUd.jpg + NumHeight: 5 + NumWidth: 10 + UniqueBack: true + Description: Agenda 2 + GMNotes: '' + GUID: 86be88 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Curse of the Abyss + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 28.0377731 + posY: 1.65416121 + posZ: -0.4824397 + rotX: 0.02108405 + rotY: 179.999954 + rotZ: 0.06809823 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 271601 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2662': + BackIsHidden: true + BackURL: https://i.imgur.com/r6F1mt2.jpg + FaceURL: https://i.imgur.com/CN9PXUd.jpg + NumHeight: 5 + NumWidth: 10 + UniqueBack: true + Description: Agenda 1 + GMNotes: '' + GUID: a1ba64 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Jessie's Request + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 28.22219 + posY: 1.67178237 + posZ: -0.390753031 + rotX: 0.0158985853 + rotY: 179.9997 + rotZ: 0.0795472339 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2716': + BackIsHidden: true + BackURL: https://i.imgur.com/r6F1mt2.jpg + FaceURL: https://i.imgur.com/CN9PXUd.jpg + NumHeight: 5 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 271603 +- 271602 +- 271601 +Description: The Eternal Slumber +GMNotes: '' +GUID: '377362' +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Agenda Deck +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.68849969 + posY: 1.65499723 + posZ: -5.04850149 + rotX: 0.0168380421 + rotY: 179.9996 + rotZ: 0.08025917 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Eternal Slumber 9ff406/Deck Brotherhood 2b516a.yaml new file mode 100644 index 000000000..ef3c06edd --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Eternal Slumber 9ff406/Deck Brotherhood 2b516a.yaml @@ -0,0 +1,301 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 269918 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2661': + BackIsHidden: true + BackURL: https://i.imgur.com/r6F1mt2.jpg + FaceURL: https://i.imgur.com/CN9PXUd.jpg + NumHeight: 5 + NumWidth: 10 + UniqueBack: true + Description: "Humanoid. Cultist. \nBrotherhood. " + GMNotes: '' + GUID: fba81e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Farid + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 14.4987516 + posY: 1.53268969 + posZ: -1.08839977 + rotX: 359.920135 + rotY: 269.999054 + rotZ: 0.0168697778 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 269916 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2661': + BackIsHidden: true + BackURL: https://i.imgur.com/r6F1mt2.jpg + FaceURL: https://i.imgur.com/CN9PXUd.jpg + NumHeight: 5 + NumWidth: 10 + UniqueBack: true + Description: "Humanoid. Cultist. \nBrotherhood. " + GMNotes: '' + GUID: 4d9573 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dr. Wentworth Moore + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 14.5412464 + posY: 1.53177023 + posZ: -4.00901747 + rotX: 359.920135 + rotY: 269.999969 + rotZ: 0.0168672111 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 269919 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2661': + BackIsHidden: true + BackURL: https://i.imgur.com/r6F1mt2.jpg + FaceURL: https://i.imgur.com/CN9PXUd.jpg + NumHeight: 5 + NumWidth: 10 + UniqueBack: true + Description: "Humanoid. Cultist. \nBrotherhood. " + GMNotes: '' + GUID: 915fda + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Nassor + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 14.4918785 + posY: 1.53102648 + posZ: -6.76877 + rotX: 359.920135 + rotY: 269.999939 + rotZ: 0.0168693643 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 269915 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2661': + BackIsHidden: true + BackURL: https://i.imgur.com/r6F1mt2.jpg + FaceURL: https://i.imgur.com/CN9PXUd.jpg + NumHeight: 5 + NumWidth: 10 + UniqueBack: true + Description: "Humanoid. Cultist. \nBrotherhood. " + GMNotes: '' + GUID: e97907 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dr. Layla El Masri + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 14.09531 + posY: 1.53080273 + posZ: -9.406413 + rotX: 359.920135 + rotY: 269.9983 + rotZ: 0.0168731529 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 269920 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2661': + BackIsHidden: true + BackURL: https://i.imgur.com/r6F1mt2.jpg + FaceURL: https://i.imgur.com/CN9PXUd.jpg + NumHeight: 5 + NumWidth: 10 + UniqueBack: true + Description: "Humanoid. Cultist. \nBrotherhood. " + GMNotes: '' + GUID: b9d9d7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Professor Nathaniel Taylor + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 9.717549 + posY: 1.53759861 + posZ: -7.05332375 + rotX: 359.920135 + rotY: 269.999939 + rotZ: 0.0168685112 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 269917 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2661': + BackIsHidden: true + BackURL: https://i.imgur.com/r6F1mt2.jpg + FaceURL: https://i.imgur.com/CN9PXUd.jpg + NumHeight: 5 + NumWidth: 10 + UniqueBack: true + Description: "Humanoid. Cultist. \nBrotherhood. " + GMNotes: '' + GUID: 72726a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: 'Nadia Nimr ' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 14.1345615 + posY: 2.32250023 + posZ: -0.9021172 + rotX: 359.993164 + rotY: 270.111664 + rotZ: 322.0178 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2699': + BackIsHidden: true + BackURL: https://i.imgur.com/r6F1mt2.jpg + FaceURL: https://i.imgur.com/CN9PXUd.jpg + NumHeight: 5 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 269918 +- 269916 +- 269919 +- 269915 +- 269920 +- 269917 +Description: The Eternal Slumber +GMNotes: '' +GUID: 2b516a +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Brotherhood +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -10.8741961 + posY: 1.67065036 + posZ: 4.78250074 + rotX: 359.9201 + rotY: 270.018982 + rotZ: 0.0168445 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Eternal Slumber 9ff406/Deck Encounter Deck 45c2bd.yaml new file mode 100644 index 000000000..96b13ae39 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Eternal Slumber 9ff406/Deck Encounter Deck 45c2bd.yaml @@ -0,0 +1,1247 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 270214 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2661': + BackIsHidden: true + BackURL: https://i.imgur.com/r6F1mt2.jpg + FaceURL: https://i.imgur.com/CN9PXUd.jpg + NumHeight: 5 + NumWidth: 10 + UniqueBack: true + Description: Monster. Dreamlands. + GMNotes: '' + GUID: a63585 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Creature from the Abyss + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 14.2128124 + posY: 1.835543 + posZ: 6.49783039 + rotX: 359.919861 + rotY: 269.998 + rotZ: 180.0141 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 270237 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2661': + BackIsHidden: true + BackURL: https://i.imgur.com/r6F1mt2.jpg + FaceURL: https://i.imgur.com/CN9PXUd.jpg + NumHeight: 5 + NumWidth: 10 + UniqueBack: true + Description: Curse. Abyss. + GMNotes: '' + GUID: 9c67a9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dark Sacrifice + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -65.580864 + posY: 3.64864 + posZ: 23.5782566 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 270237 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2661': + BackIsHidden: true + BackURL: https://i.imgur.com/r6F1mt2.jpg + FaceURL: https://i.imgur.com/CN9PXUd.jpg + NumHeight: 5 + NumWidth: 10 + UniqueBack: true + Description: Curse. Abyss. + GMNotes: '' + GUID: 9283d5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dark Sacrifice + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -65.580864 + posY: 3.72006845 + posZ: 22.8354645 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 270239 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2661': + BackIsHidden: true + BackURL: https://i.imgur.com/r6F1mt2.jpg + FaceURL: https://i.imgur.com/CN9PXUd.jpg + NumHeight: 5 + NumWidth: 10 + UniqueBack: true + Description: Curse. Abyss. + GMNotes: '' + GUID: e90dfd + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Abyssal Reach + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -65.580864 + posY: 3.791497 + posZ: 22.0926628 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 270239 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2661': + BackIsHidden: true + BackURL: https://i.imgur.com/r6F1mt2.jpg + FaceURL: https://i.imgur.com/CN9PXUd.jpg + NumHeight: 5 + NumWidth: 10 + UniqueBack: true + Description: Curse. Abyss. + GMNotes: '' + GUID: b08291 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Abyssal Reach + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -65.580864 + posY: 3.86292553 + posZ: 21.3498611 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 270239 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2661': + BackIsHidden: true + BackURL: https://i.imgur.com/r6F1mt2.jpg + FaceURL: https://i.imgur.com/CN9PXUd.jpg + NumHeight: 5 + NumWidth: 10 + UniqueBack: true + Description: Curse. Abyss. + GMNotes: '' + GUID: 732df8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Abyssal Reach + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -65.580864 + posY: 3.93435383 + posZ: 20.60706 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 270232 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2661': + BackIsHidden: true + BackURL: https://i.imgur.com/r6F1mt2.jpg + FaceURL: https://i.imgur.com/CN9PXUd.jpg + NumHeight: 5 + NumWidth: 10 + UniqueBack: true + Description: Power. + GMNotes: '' + GUID: 5c2807 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Eclipse + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -65.580864 + posY: 4.005782 + posZ: 19.86426 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 270232 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2661': + BackIsHidden: true + BackURL: https://i.imgur.com/r6F1mt2.jpg + FaceURL: https://i.imgur.com/CN9PXUd.jpg + NumHeight: 5 + NumWidth: 10 + UniqueBack: true + Description: Power. + GMNotes: '' + GUID: 8948ac + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Eclipse + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -65.580864 + posY: 4.077211 + posZ: 19.1214581 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 270232 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2661': + BackIsHidden: true + BackURL: https://i.imgur.com/r6F1mt2.jpg + FaceURL: https://i.imgur.com/CN9PXUd.jpg + NumHeight: 5 + NumWidth: 10 + UniqueBack: true + Description: Power. + GMNotes: '' + GUID: f210df + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Eclipse + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -65.580864 + posY: 4.14863968 + posZ: 18.3786583 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 270236 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2661': + BackIsHidden: true + BackURL: https://i.imgur.com/r6F1mt2.jpg + FaceURL: https://i.imgur.com/CN9PXUd.jpg + NumHeight: 5 + NumWidth: 10 + UniqueBack: true + Description: Curse. Abyss. + GMNotes: '' + GUID: d3ee15 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Slumber + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -65.580864 + posY: 4.220068 + posZ: 17.6358566 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 270236 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2661': + BackIsHidden: true + BackURL: https://i.imgur.com/r6F1mt2.jpg + FaceURL: https://i.imgur.com/CN9PXUd.jpg + NumHeight: 5 + NumWidth: 10 + UniqueBack: true + Description: Curse. Abyss. + GMNotes: '' + GUID: 7eda6c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Slumber + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -65.580864 + posY: 4.29149675 + posZ: 16.8930569 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 270235 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2661': + BackIsHidden: true + BackURL: https://i.imgur.com/r6F1mt2.jpg + FaceURL: https://i.imgur.com/CN9PXUd.jpg + NumHeight: 5 + NumWidth: 10 + UniqueBack: true + Description: Power. + GMNotes: '' + GUID: 500bf1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Swarm of Locusts + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -65.580864 + posY: 4.36292553 + posZ: 16.1502552 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 270235 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2661': + BackIsHidden: true + BackURL: https://i.imgur.com/r6F1mt2.jpg + FaceURL: https://i.imgur.com/CN9PXUd.jpg + NumHeight: 5 + NumWidth: 10 + UniqueBack: true + Description: Power. + GMNotes: '' + GUID: 1f2bda + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Swarm of Locusts + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -65.580864 + posY: 4.434354 + posZ: 15.4074535 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 270235 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2661': + BackIsHidden: true + BackURL: https://i.imgur.com/r6F1mt2.jpg + FaceURL: https://i.imgur.com/CN9PXUd.jpg + NumHeight: 5 + NumWidth: 10 + UniqueBack: true + Description: Power. + GMNotes: '' + GUID: c0ea06 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Swarm of Locusts + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -65.580864 + posY: 4.5057826 + posZ: 14.6646538 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 270238 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2661': + BackIsHidden: true + BackURL: https://i.imgur.com/r6F1mt2.jpg + FaceURL: https://i.imgur.com/CN9PXUd.jpg + NumHeight: 5 + NumWidth: 10 + UniqueBack: true + Description: Power. + GMNotes: '' + GUID: 1cf015 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Black Wind + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -65.580864 + posY: 4.577211 + posZ: 13.9218521 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 270238 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2661': + BackIsHidden: true + BackURL: https://i.imgur.com/r6F1mt2.jpg + FaceURL: https://i.imgur.com/CN9PXUd.jpg + NumHeight: 5 + NumWidth: 10 + UniqueBack: true + Description: Power. + GMNotes: '' + GUID: c118b2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Black Wind + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -65.580864 + posY: 4.64863968 + posZ: 13.1790514 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 270234 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2661': + BackIsHidden: true + BackURL: https://i.imgur.com/r6F1mt2.jpg + FaceURL: https://i.imgur.com/CN9PXUd.jpg + NumHeight: 5 + NumWidth: 10 + UniqueBack: true + Description: Scheme. + GMNotes: '' + GUID: 7fde12 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Terror Under the Pyramids + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -65.580864 + posY: 4.720068 + posZ: 12.4362507 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 270234 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2661': + BackIsHidden: true + BackURL: https://i.imgur.com/r6F1mt2.jpg + FaceURL: https://i.imgur.com/CN9PXUd.jpg + NumHeight: 5 + NumWidth: 10 + UniqueBack: true + Description: Scheme. + GMNotes: '' + GUID: '563177' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Terror Under the Pyramids + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -65.580864 + posY: 4.86292553 + posZ: 10.9497395 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 270234 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2661': + BackIsHidden: true + BackURL: https://i.imgur.com/r6F1mt2.jpg + FaceURL: https://i.imgur.com/CN9PXUd.jpg + NumHeight: 5 + NumWidth: 10 + UniqueBack: true + Description: Scheme. + GMNotes: '' + GUID: 5d2ce8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Terror Under the Pyramids + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -65.580864 + posY: 4.934354 + posZ: 10.20694 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 270233 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2661': + BackIsHidden: true + BackURL: https://i.imgur.com/r6F1mt2.jpg + FaceURL: https://i.imgur.com/CN9PXUd.jpg + NumHeight: 5 + NumWidth: 10 + UniqueBack: true + Description: Hazard. + GMNotes: '' + GUID: 6a03b8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Sandstorm + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -65.580864 + posY: 5.0057826 + posZ: 9.464138 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 270233 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2661': + BackIsHidden: true + BackURL: https://i.imgur.com/r6F1mt2.jpg + FaceURL: https://i.imgur.com/CN9PXUd.jpg + NumHeight: 5 + NumWidth: 10 + UniqueBack: true + Description: Hazard. + GMNotes: '' + GUID: 676e6a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Sandstorm + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -65.580864 + posY: 5.077211 + posZ: 8.721338 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 270233 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2661': + BackIsHidden: true + BackURL: https://i.imgur.com/r6F1mt2.jpg + FaceURL: https://i.imgur.com/CN9PXUd.jpg + NumHeight: 5 + NumWidth: 10 + UniqueBack: true + Description: Hazard. + GMNotes: '' + GUID: 3cbc9d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Sandstorm + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -65.580864 + posY: 5.14863968 + posZ: 7.978537 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 270231 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2661': + BackIsHidden: true + BackURL: https://i.imgur.com/r6F1mt2.jpg + FaceURL: https://i.imgur.com/CN9PXUd.jpg + NumHeight: 5 + NumWidth: 10 + UniqueBack: true + Description: Monster. + GMNotes: '' + GUID: c4dd7a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Thing in the Sarcophagus + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -65.580864 + posY: 5.220068 + posZ: 7.235737 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 270231 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2661': + BackIsHidden: true + BackURL: https://i.imgur.com/r6F1mt2.jpg + FaceURL: https://i.imgur.com/CN9PXUd.jpg + NumHeight: 5 + NumWidth: 10 + UniqueBack: true + Description: Monster. + GMNotes: '' + GUID: bc639e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Thing in the Sarcophagus + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -65.580864 + posY: 5.29149675 + posZ: 6.492936 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 270213 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2661': + BackIsHidden: true + BackURL: https://i.imgur.com/r6F1mt2.jpg + FaceURL: https://i.imgur.com/CN9PXUd.jpg + NumHeight: 5 + NumWidth: 10 + UniqueBack: true + Description: Humanoid. Cultist. + GMNotes: '' + GUID: c26998 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Humble Supplicant + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -65.580864 + posY: 5.36292553 + posZ: 5.75013542 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 270213 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2661': + BackIsHidden: true + BackURL: https://i.imgur.com/r6F1mt2.jpg + FaceURL: https://i.imgur.com/CN9PXUd.jpg + NumHeight: 5 + NumWidth: 10 + UniqueBack: true + Description: Humanoid. Cultist. + GMNotes: '' + GUID: c64bf1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Humble Supplicant + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -65.580864 + posY: 5.434354 + posZ: 5.00733376 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 270213 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2661': + BackIsHidden: true + BackURL: https://i.imgur.com/r6F1mt2.jpg + FaceURL: https://i.imgur.com/CN9PXUd.jpg + NumHeight: 5 + NumWidth: 10 + UniqueBack: true + Description: Humanoid. Cultist. + GMNotes: '' + GUID: ec101c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Humble Supplicant + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -65.580864 + posY: 5.5057826 + posZ: 4.264532 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 270214 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2661': + BackIsHidden: true + BackURL: https://i.imgur.com/r6F1mt2.jpg + FaceURL: https://i.imgur.com/CN9PXUd.jpg + NumHeight: 5 + NumWidth: 10 + UniqueBack: true + Description: Monster. Dreamlands. + GMNotes: '' + GUID: 4212af + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Creature from the Abyss + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -65.580864 + posY: 5.57456541 + posZ: 3.52174187 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2702': + BackIsHidden: true + BackURL: https://i.imgur.com/r6F1mt2.jpg + FaceURL: https://i.imgur.com/CN9PXUd.jpg + NumHeight: 5 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 270214 +- 270237 +- 270237 +- 270239 +- 270239 +- 270239 +- 270232 +- 270232 +- 270232 +- 270236 +- 270236 +- 270235 +- 270235 +- 270235 +- 270238 +- 270238 +- 270234 +- 270234 +- 270234 +- 270233 +- 270233 +- 270233 +- 270231 +- 270231 +- 270213 +- 270213 +- 270213 +- 270214 +Description: The Eternal Slumber +GMNotes: '' +GUID: 45c2bd +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Encounter Deck +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.92770076 + posY: 1.76105118 + posZ: 5.75720024 + rotX: 359.919739 + rotY: 270.000763 + rotZ: 180.016846 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Night's Usurper 578bcb.ttslua new file mode 100644 index 000000000..46067f58e --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Night's Usurper 578bcb.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.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.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 791837/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 791837/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Night's Usurper 578bcb.yaml new file mode 100644 index 000000000..2f7f8b498 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Night's Usurper 578bcb.yaml @@ -0,0 +1,74 @@ +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 Night''s Usurper 578bcb/Card Visual Exploration Reference + d43cb8.yaml' +- !include 'Custom_Model_Bag The Night''s Usurper 578bcb/Card Expedition Camp 41f836.yaml' +- !include 'Custom_Model_Bag The Night''s Usurper 578bcb/Deck Exploration Deck cfa863.yaml' +- !include 'Custom_Model_Bag The Night''s Usurper 578bcb/Deck Brotherhood 964685.yaml' +- !include 'Custom_Model_Bag The Night''s Usurper 578bcb/Custom_Model_Bag Set-aside + 85b67c.yaml' +- !include 'Custom_Model_Bag The Night''s Usurper 578bcb/Deck Act Deck c81564.yaml' +- !include 'Custom_Model_Bag The Night''s Usurper 578bcb/Deck Agenda Deck 06998d.yaml' +- !include 'Custom_Model_Bag The Night''s Usurper 578bcb/Deck Encounter Deck 17291b.yaml' +- !include 'Custom_Model_Bag The Night''s Usurper 578bcb/Custom_Token Scenario - EasyStandard + afc7b5.yaml' +- !include 'Custom_Model_Bag The Night''s Usurper 578bcb/Custom_Token Scenario - HardExpert + 9ed124.yaml' +- !include 'Custom_Model_Bag The Night''s Usurper 578bcb/Card Setup & Resolution 80f19f.yaml' +CustomMesh: + CastShadows: true + ColliderURL: '' + Convex: true + DiffuseURL: http://cloud-3.steamusercontent.com/ugc/826883954590183234/3E17F26264884EE5526CB80705B7254BBA4FF210/ + MaterialIndex: 3 + MeshURL: https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj + NormalURL: '' + TypeIndex: 6 +Description: Guardians of the Abyss 2 +GMNotes: '' +GUID: 578bcb +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Model_Bag The Night''s Usurper 578bcb.ttslua' +LuaScriptState: '{"ml":{"06998d":{"lock":false,"pos":{"x":-2.7247,"y":1.664,"z":0.3733},"rot":{"x":0.0168,"y":180.0346,"z":0.0803}},"17291b":{"lock":false,"pos":{"x":-3.9276,"y":1.7344,"z":5.7571},"rot":{"x":359.9197,"y":269.9972,"z":180.0168}},"41f836":{"lock":false,"pos":{"x":-17.12,"y":1.6771,"z":-0.03},"rot":{"x":359.9201,"y":269.9999,"z":0.0169}},"80f19f":{"lock":false,"pos":{"x":1.7124,"y":1.5408,"z":-34.1378},"rot":{"x":359.9201,"y":269.9801,"z":0.0169}},"85b67c":{"lock":false,"pos":{"x":1.6957,"y":1.5583,"z":14.273},"rot":{"x":359.9551,"y":224.999,"z":0.0687}},"964685":{"lock":false,"pos":{"x":-12.2014,"y":1.6745,"z":11.6578},"rot":{"x":359.9201,"y":270.0003,"z":0.0169}},"9ed124":{"lock":false,"pos":{"x":-5.618,"y":1.7302,"z":-10.4319},"rot":{"x":3.3649,"y":270.0142,"z":0.017}},"afc7b5":{"lock":false,"pos":{"x":-3.956,"y":1.6339,"z":-10.4413},"rot":{"x":359.9168,"y":269.9985,"z":0.0159}},"c81564":{"lock":false,"pos":{"x":-2.6885,"y":1.655,"z":-5.0485},"rot":{"x":0.0169,"y":179.9621,"z":0.0802}},"cfa863":{"lock":false,"pos":{"x":-11.8536,"y":1.6822,"z":8.1349},"rot":{"x":359.9201,"y":269.9986,"z":180.0169}},"d43cb8":{"lock":false,"pos":{"x":-13.2795,"y":1.6705,"z":-13.6664},"rot":{"x":0.0169,"y":180.0015,"z":180.0799}}}}' +MaterialIndex: -1 +MeshIndex: -1 +Name: Custom_Model_Bag +Nickname: The Night's Usurper +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -10.5053 + posY: 1.4873153 + posZ: -30.0198021 + rotX: 359.920135 + rotY: 269.999817 + rotZ: 0.0168717541 + scaleX: 2.21 + scaleY: 0.46 + scaleZ: 2.42 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Night's Usurper 578bcb/Card Expedition Camp 41f836.yaml new file mode 100644 index 000000000..b5c1cb3bb --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Night's Usurper 578bcb/Card Expedition Camp 41f836.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 271121 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2711': + BackIsHidden: true + BackURL: https://i.imgur.com/r6F1mt2.jpg + FaceURL: https://i.imgur.com/CN9PXUd.jpg + NumHeight: 5 + NumWidth: 10 + UniqueBack: true +Description: Expedition. Cairo. Desert. +GMNotes: '' +GUID: 41f836 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Expedition Camp +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -17.12 + posY: 1.67707765 + posZ: -0.0299999267 + rotX: 359.9201 + rotY: 269.999939 + rotZ: 0.0168673433 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Night's Usurper 578bcb/Card Setup & Resolution 80f19f.yaml new file mode 100644 index 000000000..af8e1306f --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Night's Usurper 578bcb/Card Setup & Resolution 80f19f.yaml @@ -0,0 +1,215 @@ +Autoraise: true +CardID: 265107 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/45ulgDb.jpg + FaceURL: https://i.imgur.com/4wsufph.jpg + NumHeight: 6 + NumWidth: 5 + UniqueBack: false +Description: The Night's Usurper +GMNotes: '' +GUID: 80f19f +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Setup & Resolution +SidewaysCard: false +Snap: true +States: + '2': + Autoraise: true + CardID: 262708 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2627': + BackIsHidden: true + BackURL: https://i.imgur.com/45ulgDb.jpg + FaceURL: https://i.imgur.com/4wsufph.jpg + NumHeight: 6 + NumWidth: 5 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: c804f7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -9.159676 + posY: 1.66562819 + posZ: -1.2271769 + rotX: 359.9204 + rotY: 269.97995 + rotZ: 0.0168643855 + scaleX: 2.0 + scaleY: 1.0 + scaleZ: 2.0 + XmlUI: '' + '3': + Autoraise: true + CardID: 262710 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2627': + BackIsHidden: true + BackURL: https://i.imgur.com/45ulgDb.jpg + FaceURL: https://i.imgur.com/4wsufph.jpg + NumHeight: 6 + NumWidth: 5 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 4087fd + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -9.159677 + posY: 1.66562831 + posZ: -1.22717667 + rotX: 359.9204 + rotY: 269.97998 + rotZ: 0.01686449 + scaleX: 2.0 + scaleY: 1.0 + scaleZ: 2.0 + XmlUI: '' + '4': + Autoraise: true + CardID: 262711 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2627': + BackIsHidden: true + BackURL: https://i.imgur.com/45ulgDb.jpg + FaceURL: https://i.imgur.com/4wsufph.jpg + NumHeight: 6 + NumWidth: 5 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 04c4b4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -22.22311 + posY: 1.58255029 + posZ: -5.6172967 + rotX: 359.920135 + rotY: 269.999878 + rotZ: 0.0168690123 + scaleX: 2.0 + scaleY: 1.0 + scaleZ: 2.0 + XmlUI: '' + '5': + Autoraise: true + CardID: 262712 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2627': + BackIsHidden: true + BackURL: https://i.imgur.com/45ulgDb.jpg + FaceURL: https://i.imgur.com/4wsufph.jpg + NumHeight: 6 + NumWidth: 5 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: ac3d9c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -22.223114 + posY: 1.58255029 + posZ: -5.617297 + rotX: 359.920135 + rotY: 269.999847 + rotZ: 0.0168685839 + scaleX: 2.0 + scaleY: 1.0 + scaleZ: 2.0 + XmlUI: '' +Sticky: true +Tooltip: true +Transform: + posX: 1.7124151 + posY: 1.54078329 + posZ: -34.137764 + rotX: 359.920135 + rotY: 269.9801 + rotZ: 0.01689893 + scaleX: 2.0 + scaleY: 1.0 + scaleZ: 2.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Night's Usurper 578bcb/Card Visual Exploration Reference d43cb8.yaml new file mode 100644 index 000000000..77c333ede --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Night's Usurper 578bcb/Card Visual Exploration Reference d43cb8.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 271403 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2714': + BackIsHidden: false + BackURL: https://i.imgur.com/3x23Tmh.jpg + FaceURL: https://i.imgur.com/3x23Tmh.jpg + NumHeight: 2 + NumWidth: 2 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: d43cb8 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Visual Exploration Reference +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -13.2794991 + posY: 1.67053008 + posZ: -13.6664 + rotX: 0.0168684069 + rotY: 180.001465 + rotZ: 180.0799 + scaleX: 2.0 + scaleY: 1.0 + scaleZ: 2.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Night's Usurper 578bcb/Custom_Model_Bag Set-aside 85b67c.yaml new file mode 100644 index 000000000..49c6b0f7a --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Night's Usurper 578bcb/Custom_Model_Bag Set-aside 85b67c.yaml @@ -0,0 +1,61 @@ +Autoraise: true +ColorDiffuse: + b: 0.02148666 + g: 0.00100758043 + r: 0.02148666 +ContainedObjects: +- !include 'Custom_Model_Bag Set-aside 85b67c/Card Summoned Nightgaunt cf96b9.yaml' +- !include 'Custom_Model_Bag Set-aside 85b67c/Card Khopesh of the Abyss dc674e.yaml' +- !include 'Custom_Model_Bag Set-aside 85b67c/Deck Otherworld Locations 28e9e9.yaml' +- !include 'Custom_Model_Bag Set-aside 85b67c/Card Eldritch Gate bdbf89.yaml' +- !include 'Custom_Model_Bag Set-aside 85b67c/Deck Dreaded Shantak e926a5.yaml' +- !include 'Custom_Model_Bag Set-aside 85b67c/Card Xzharah 1484da.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 Night's Usurper +GMNotes: '' +GUID: 85b67c +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +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.69570088 + posY: 1.558316 + posZ: 14.2730026 + rotX: 359.955139 + rotY: 224.998978 + rotZ: 0.0686895847 + scaleX: 2.0 + scaleY: 2.0 + scaleZ: 2.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/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 new file mode 100644 index 000000000..011840638 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/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 @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 266215 +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 + UniqueBack: true +Description: Expedition. Desert. Ruins. +GMNotes: '' +GUID: bdbf89 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Eldritch Gate +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 28.17824 + posY: 3.561613 + posZ: -10.03692 + rotX: 359.90094 + rotY: 270.000671 + rotZ: 0.0189711452 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/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 new file mode 100644 index 000000000..e569aec35 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/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 @@ -0,0 +1,42 @@ +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 + UniqueBack: true +Description: Manifested Malice +GMNotes: '' +GUID: dc674e +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Khopesh of the Abyss +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 27.5475025 + posY: 3.56254029 + posZ: -9.764167 + rotX: 359.919678 + rotY: 270.000061 + rotZ: 0.0169903077 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/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 new file mode 100644 index 000000000..d328cb57e --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/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 @@ -0,0 +1,42 @@ +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 + UniqueBack: true +Description: Gift from Nodens +GMNotes: '' +GUID: cf96b9 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Summoned Nightgaunt +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 27.1017113 + posY: 3.56311679 + posZ: -9.680226 + rotX: 359.919647 + rotY: 270.000031 + rotZ: 0.0170109421 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/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 new file mode 100644 index 000000000..9c600169a --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/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 @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 266205 +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 + UniqueBack: true +Description: Chosen of the Beast +GMNotes: '' +GUID: 1484da +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Xzharah +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 26.7419662 + posY: 3.56347251 + posZ: -9.956085 + rotX: 359.920074 + rotY: 270.000031 + rotZ: 0.0166231263 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/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 new file mode 100644 index 000000000..edff42db6 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/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 @@ -0,0 +1,129 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 266213 + 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 + UniqueBack: true + Description: Monster. Dreamlands. Shantak. + GMNotes: '' + GUID: 5a91c0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dreaded Shantak + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 31.78092 + posY: 1.507877 + posZ: -3.10715222 + rotX: 359.914063 + rotY: 270.346466 + rotZ: 0.0142768268 + 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: true + BackURL: https://i.imgur.com/NSozoRe.jpg + FaceURL: https://i.imgur.com/HLQOkvy.jpg + NumHeight: 5 + NumWidth: 10 + UniqueBack: true + Description: Monster. Dreamlands. Shantak. + GMNotes: '' + GUID: 60018e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dreaded Shantak + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 31.4028645 + posY: 1.64883864 + posZ: -3.21386981 + rotX: 359.923157 + rotY: 269.987732 + rotZ: 0.0148000913 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2662': + BackIsHidden: true + BackURL: https://i.imgur.com/NSozoRe.jpg + FaceURL: https://i.imgur.com/HLQOkvy.jpg + NumHeight: 5 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 266213 +- 266214 +Description: '' +GMNotes: '' +GUID: e926a5 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Dreaded Shantak +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 28.0696278 + posY: 3.47397518 + posZ: -6.841617 + rotX: 359.92 + rotY: 270.003052 + rotZ: 0.0163850058 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/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 new file mode 100644 index 000000000..5f3d188e6 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/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 @@ -0,0 +1,258 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 266210 + 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 + UniqueBack: true + Description: Otherworld. Dreamlands. + GMNotes: '' + GUID: 5c32ef + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Mist-Filled Caverns + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 23.1567841 + posY: 1.5185256 + posZ: -8.173495 + rotX: 359.919647 + rotY: 269.9976 + rotZ: 0.0191880278 + 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: true + BackURL: https://i.imgur.com/NSozoRe.jpg + FaceURL: https://i.imgur.com/HLQOkvy.jpg + NumHeight: 5 + NumWidth: 10 + UniqueBack: true + Description: Otherworld. Dreamlands. + GMNotes: '' + GUID: '768755' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Stairway to Sarkomand + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 23.14605 + posY: 1.51783037 + posZ: -10.6105185 + rotX: 359.920135 + rotY: 270.0 + rotZ: 0.0168695748 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 266206 + 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 + UniqueBack: true + Description: Otherworld. Dreamlands. + GMNotes: '' + GUID: 17e165 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Tunnels under Ngranek + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 23.0626564 + posY: 1.51706815 + posZ: -13.6039085 + rotX: 359.920135 + rotY: 269.999542 + rotZ: 0.0167766511 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 266208 + 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 + UniqueBack: true + Description: Otherworld. Dreamlands. + GMNotes: '' + GUID: da8ae8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Great Abyss + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 25.39942 + posY: 1.61124265 + posZ: -14.3791447 + rotX: 356.327362 + rotY: 269.9559 + rotZ: 0.0173612814 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 266207 + 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 + UniqueBack: true + Description: Otherworld. Extradimensional. + GMNotes: '' + GUID: 19bf4f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: A Dream Betwixt + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 24.96856 + posY: 1.65908861 + posZ: -5.963955 + rotX: 359.919342 + rotY: 269.9792 + rotZ: 0.0192660186 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2662': + BackIsHidden: true + BackURL: https://i.imgur.com/NSozoRe.jpg + FaceURL: https://i.imgur.com/HLQOkvy.jpg + NumHeight: 5 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 266210 +- 266209 +- 266206 +- 266208 +- 266207 +Description: '' +GMNotes: '' +GUID: 28e9e9 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Otherworld Locations +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 27.2605133 + posY: 3.56155324 + posZ: -10.5061054 + rotX: 359.919556 + rotY: 269.980743 + rotZ: 0.01704575 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Night's Usurper 578bcb/Custom_Token Scenario - EasyStandard afc7b5.ttslua new file mode 100644 index 000000000..1c555f04c --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Night's Usurper 578bcb/Custom_Token Scenario - EasyStandard afc7b5.ttslua @@ -0,0 +1,132 @@ +MIN_VALUE = -99 +MAX_VALUE = 999 + +function onload(saved_data) + light_mode = false + val = 0 + + if saved_data ~= "" then + local loaded_data = JSON.decode(saved_data) + light_mode = loaded_data[1] + val = loaded_data[2] + end + + createAll() +end + +function updateSave() + local data_to_save = {light_mode, val} + saved_data = JSON.encode(data_to_save) + self.script_state = saved_data +end + +function createAll() + s_color = {0.5, 0.5, 0.5, 95} + + if light_mode then + f_color = {0,0,0,98} + else + f_color = {0,0,0,100} + end + + + + self.createButton({ + label=tostring(val), + click_function="add_subtract", + function_owner=self, + position={0,0.05,1.45}, + height=600, + width=1000, + alignment = 3, + scale={x=1, y=1, z=1}, + font_size=350, + font_color=f_color, + color={0,0,0,0} + }) + + + + + if light_mode then + lightButtonText = "[ Set dark ]" + else + lightButtonText = "[ Set light ]" + end + +end + +function removeAll() + self.removeInput(0) + self.removeInput(1) + self.removeButton(0) + self.removeButton(1) + self.removeButton(2) +end + +function reloadAll() + removeAll() + createAll() + + updateSave() +end + +function swap_fcolor(_obj, _color, alt_click) + light_mode = not light_mode + reloadAll() +end + +function swap_align(_obj, _color, alt_click) + center_mode = not center_mode + reloadAll() +end + +function editName(_obj, _string, value) + self.setName(value) + setTooltips() +end + +function add_subtract(_obj, _color, alt_click) + mod = alt_click and -1 or 1 + new_value = math.min(math.max(val + mod, MIN_VALUE), MAX_VALUE) + if val ~= new_value then + val = new_value + updateVal() + updateSave() + end +end + +function updateVal() + + self.editButton({ + index = 0, + label = tostring(val), + + }) +end + +function reset_val() + val = 0 + updateVal() + updateSave() +end + +function setTooltips() + self.editInput({ + index = 0, + value = self.getName(), + tooltip = ttText + }) + self.editButton({ + index = 0, + value = tostring(val), + tooltip = ttText + }) +end + +function null() +end + +function keepSample(_obj, _string, value) + reloadAll() +end \ No newline at end of file diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Night's Usurper 578bcb/Custom_Token Scenario - EasyStandard afc7b5.yaml new file mode 100644 index 000000000..07d752d4d --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Night's Usurper 578bcb/Custom_Token Scenario - EasyStandard afc7b5.yaml @@ -0,0 +1,45 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +CustomImage: + CustomToken: + MergeDistancePixels: 5.0 + Stackable: false + Thickness: 0.1 + ImageScalar: 1.0 + ImageSecondaryURL: '' + ImageURL: https://i.imgur.com/y2pFWnz.jpg + WidthScale: 0.0 +Description: 'Left click - Increase + + Right click - Decrease' +GMNotes: '' +GUID: afc7b5 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Token Scenario - EasyStandard afc7b5.ttslua' +LuaScriptState: '[true,0]' +Name: Custom_Token +Nickname: 'Scenario - Easy/Standard + + ' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.956002 + posY: 1.63387048 + posZ: -10.44126 + rotX: 359.916779 + rotY: 269.9985 + rotZ: 0.0158674717 + scaleX: 0.7 + scaleY: 1.0 + scaleZ: 0.7 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Night's Usurper 578bcb/Custom_Token Scenario - HardExpert 9ed124.ttslua new file mode 100644 index 000000000..1c555f04c --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Night's Usurper 578bcb/Custom_Token Scenario - HardExpert 9ed124.ttslua @@ -0,0 +1,132 @@ +MIN_VALUE = -99 +MAX_VALUE = 999 + +function onload(saved_data) + light_mode = false + val = 0 + + if saved_data ~= "" then + local loaded_data = JSON.decode(saved_data) + light_mode = loaded_data[1] + val = loaded_data[2] + end + + createAll() +end + +function updateSave() + local data_to_save = {light_mode, val} + saved_data = JSON.encode(data_to_save) + self.script_state = saved_data +end + +function createAll() + s_color = {0.5, 0.5, 0.5, 95} + + if light_mode then + f_color = {0,0,0,98} + else + f_color = {0,0,0,100} + end + + + + self.createButton({ + label=tostring(val), + click_function="add_subtract", + function_owner=self, + position={0,0.05,1.45}, + height=600, + width=1000, + alignment = 3, + scale={x=1, y=1, z=1}, + font_size=350, + font_color=f_color, + color={0,0,0,0} + }) + + + + + if light_mode then + lightButtonText = "[ Set dark ]" + else + lightButtonText = "[ Set light ]" + end + +end + +function removeAll() + self.removeInput(0) + self.removeInput(1) + self.removeButton(0) + self.removeButton(1) + self.removeButton(2) +end + +function reloadAll() + removeAll() + createAll() + + updateSave() +end + +function swap_fcolor(_obj, _color, alt_click) + light_mode = not light_mode + reloadAll() +end + +function swap_align(_obj, _color, alt_click) + center_mode = not center_mode + reloadAll() +end + +function editName(_obj, _string, value) + self.setName(value) + setTooltips() +end + +function add_subtract(_obj, _color, alt_click) + mod = alt_click and -1 or 1 + new_value = math.min(math.max(val + mod, MIN_VALUE), MAX_VALUE) + if val ~= new_value then + val = new_value + updateVal() + updateSave() + end +end + +function updateVal() + + self.editButton({ + index = 0, + label = tostring(val), + + }) +end + +function reset_val() + val = 0 + updateVal() + updateSave() +end + +function setTooltips() + self.editInput({ + index = 0, + value = self.getName(), + tooltip = ttText + }) + self.editButton({ + index = 0, + value = tostring(val), + tooltip = ttText + }) +end + +function null() +end + +function keepSample(_obj, _string, value) + reloadAll() +end \ No newline at end of file diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Night's Usurper 578bcb/Custom_Token Scenario - HardExpert 9ed124.yaml new file mode 100644 index 000000000..adf612ccb --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Night's Usurper 578bcb/Custom_Token Scenario - HardExpert 9ed124.yaml @@ -0,0 +1,45 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +CustomImage: + CustomToken: + MergeDistancePixels: 5.0 + Stackable: false + Thickness: 0.1 + ImageScalar: 1.0 + ImageSecondaryURL: '' + ImageURL: https://i.imgur.com/tMKPBC2.jpg + WidthScale: 0.0 +Description: 'Left click - Increase + + Right click - Decrease' +GMNotes: '' +GUID: 9ed124 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Token Scenario - HardExpert 9ed124.ttslua' +LuaScriptState: '[true,0]' +Name: Custom_Token +Nickname: 'Scenario - Hard/Expert + + ' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -5.617984 + posY: 1.73019493 + posZ: -10.4319344 + rotX: 3.36490464 + rotY: 270.014221 + rotZ: 0.0170169789 + scaleX: 0.7 + scaleY: 1.0 + scaleZ: 0.7 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Night's Usurper 578bcb/Deck Act Deck c81564.yaml new file mode 100644 index 000000000..a884d4bd2 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Night's Usurper 578bcb/Deck Act Deck c81564.yaml @@ -0,0 +1,172 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 270900 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2664': + BackIsHidden: true + BackURL: https://i.imgur.com/NSozoRe.jpg + FaceURL: https://i.imgur.com/HLQOkvy.jpg + NumHeight: 5 + NumWidth: 10 + UniqueBack: true + Description: Act 3 + GMNotes: '' + GUID: 93dd4c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Night's Usurper + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 11.3417559 + posY: 1.54017556 + posZ: 9.428216 + rotX: 0.0161296111 + rotY: 179.9856 + rotZ: 0.0795609653 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 270901 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2664': + BackIsHidden: true + BackURL: https://i.imgur.com/NSozoRe.jpg + FaceURL: https://i.imgur.com/HLQOkvy.jpg + NumHeight: 5 + NumWidth: 10 + UniqueBack: true + Description: Act 2 + GMNotes: '' + GUID: 158b35 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Into the Gate + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 11.2839346 + posY: 1.680865 + posZ: 9.534886 + rotX: 0.006459914 + rotY: 179.9995 + rotZ: 0.07797172 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 270902 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2664': + BackIsHidden: true + BackURL: https://i.imgur.com/NSozoRe.jpg + FaceURL: https://i.imgur.com/HLQOkvy.jpg + NumHeight: 5 + NumWidth: 10 + UniqueBack: true + Description: Act 1 + GMNotes: '' + GUID: c715c9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Search for the Gate + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 15.1167479 + posY: 1.692975 + posZ: 9.776032 + rotX: 0.0124769127 + rotY: 179.999466 + rotZ: 0.05989644 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2709': + BackIsHidden: true + BackURL: https://i.imgur.com/NSozoRe.jpg + FaceURL: https://i.imgur.com/HLQOkvy.jpg + NumHeight: 5 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 270900 +- 270901 +- 270902 +Description: The Night's Usurper +GMNotes: '' +GUID: c81564 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Act Deck +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.68850017 + posY: 1.65499723 + posZ: -5.048501 + rotX: 0.0168900453 + rotY: 179.9621 + rotZ: 0.08024895 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Night's Usurper 578bcb/Deck Agenda Deck 06998d.yaml new file mode 100644 index 000000000..7dca3907e --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Night's Usurper 578bcb/Deck Agenda Deck 06998d.yaml @@ -0,0 +1,136 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 266500 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2665': + BackIsHidden: true + BackURL: https://i.imgur.com/b1f3mgA.jpg + FaceURL: https://i.imgur.com/FFxz16e.jpg + NumHeight: 2 + NumWidth: 2 + UniqueBack: true + Description: Agenda 2 + GMNotes: '' + GUID: 023684 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Schemes in the Dark Beyond + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 24.0633926 + posY: 1.51914167 + posZ: -1.830915 + rotX: 0.0165284574 + rotY: 180.054245 + rotZ: 0.07965524 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 270804 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2664': + BackIsHidden: true + BackURL: https://i.imgur.com/NSozoRe.jpg + FaceURL: https://i.imgur.com/HLQOkvy.jpg + NumHeight: 5 + NumWidth: 10 + UniqueBack: true + Description: Agenda 1 + GMNotes: '' + GUID: 05b7a2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Brotherhood Bides Their Time + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 23.97557 + posY: 1.65986955 + posZ: -1.40711141 + rotX: 0.00343595585 + rotY: 180.000381 + rotZ: 0.07552841 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2665': + BackIsHidden: true + BackURL: https://i.imgur.com/b1f3mgA.jpg + FaceURL: https://i.imgur.com/FFxz16e.jpg + NumHeight: 2 + NumWidth: 2 + UniqueBack: true + '2708': + BackIsHidden: true + BackURL: https://i.imgur.com/NSozoRe.jpg + FaceURL: https://i.imgur.com/HLQOkvy.jpg + NumHeight: 5 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 266500 +- 270804 +Description: The Night's Usurper +GMNotes: '' +GUID: 06998d +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Agenda Deck +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.7247 + posY: 1.66397715 + posZ: 0.373299837 + rotX: 0.0167890619 + rotY: 180.034637 + rotZ: 0.08027261 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Night's Usurper 578bcb/Deck Brotherhood 964685.yaml new file mode 100644 index 000000000..095505971 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Night's Usurper 578bcb/Deck Brotherhood 964685.yaml @@ -0,0 +1,301 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 271317 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2661': + BackIsHidden: true + BackURL: https://i.imgur.com/r6F1mt2.jpg + FaceURL: https://i.imgur.com/CN9PXUd.jpg + NumHeight: 5 + NumWidth: 10 + UniqueBack: true + Description: "Humanoid. Cultist. \nBrotherhood. " + GMNotes: '' + GUID: 72726a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: 'Nadia Nimr ' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 11.5991821 + posY: 1.71049714 + posZ: -9.445101 + rotX: 1.376116 + rotY: 270.4592 + rotZ: 7.228993 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 271315 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2661': + BackIsHidden: true + BackURL: https://i.imgur.com/r6F1mt2.jpg + FaceURL: https://i.imgur.com/CN9PXUd.jpg + NumHeight: 5 + NumWidth: 10 + UniqueBack: true + Description: "Humanoid. Cultist. \nBrotherhood. " + GMNotes: '' + GUID: e97907 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dr. Layla El Masri + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 9.950106 + posY: 1.68187237 + posZ: -7.91788673 + rotX: 1.459246 + rotY: 270.008972 + rotZ: 5.43709564 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 271320 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2661': + BackIsHidden: true + BackURL: https://i.imgur.com/r6F1mt2.jpg + FaceURL: https://i.imgur.com/CN9PXUd.jpg + NumHeight: 5 + NumWidth: 10 + UniqueBack: true + Description: "Humanoid. Cultist. \nBrotherhood. " + GMNotes: '' + GUID: b9d9d7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Professor Nathaniel Taylor + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 9.123378 + posY: 1.71617925 + posZ: -10.0666065 + rotX: 1.48156714 + rotY: 270.167664 + rotZ: 7.20295048 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 271318 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2661': + BackIsHidden: true + BackURL: https://i.imgur.com/r6F1mt2.jpg + FaceURL: https://i.imgur.com/CN9PXUd.jpg + NumHeight: 5 + NumWidth: 10 + UniqueBack: true + Description: "Humanoid. Cultist. \nBrotherhood. " + GMNotes: '' + GUID: fba81e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Farid + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 10.0574341 + posY: 1.53777 + posZ: -4.8624 + rotX: 359.9201 + rotY: 270.0226 + rotZ: 0.0168410949 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 271319 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2661': + BackIsHidden: true + BackURL: https://i.imgur.com/r6F1mt2.jpg + FaceURL: https://i.imgur.com/CN9PXUd.jpg + NumHeight: 5 + NumWidth: 10 + UniqueBack: true + Description: "Humanoid. Cultist. \nBrotherhood. " + GMNotes: '' + GUID: 915fda + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Nassor + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 12.9659586 + posY: 1.53308618 + posZ: -7.23946667 + rotX: 359.9216 + rotY: 270.002838 + rotZ: 0.0116068656 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 271316 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2661': + BackIsHidden: true + BackURL: https://i.imgur.com/r6F1mt2.jpg + FaceURL: https://i.imgur.com/CN9PXUd.jpg + NumHeight: 5 + NumWidth: 10 + UniqueBack: true + Description: "Humanoid. Cultist. \nBrotherhood. " + GMNotes: '' + GUID: 4d9573 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dr. Wentworth Moore + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 13.8873272 + posY: 1.53254008 + posZ: -4.49075127 + rotX: 359.920135 + rotY: 270.0116 + rotZ: 0.0168542936 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2713': + BackIsHidden: true + BackURL: https://i.imgur.com/r6F1mt2.jpg + FaceURL: https://i.imgur.com/CN9PXUd.jpg + NumHeight: 5 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 271317 +- 271315 +- 271320 +- 271318 +- 271319 +- 271316 +Description: The Night's Usurper +GMNotes: '' +GUID: '964685' +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Brotherhood +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -12.2013741 + posY: 1.6745255 + posZ: 11.6577845 + rotX: 359.9201 + rotY: 270.0003 + rotZ: 0.0168696176 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Night's Usurper 578bcb/Deck Encounter Deck 17291b.yaml new file mode 100644 index 000000000..ca0d78ddb --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Night's Usurper 578bcb/Deck Encounter Deck 17291b.yaml @@ -0,0 +1,1039 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 271037 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2661': + BackIsHidden: true + BackURL: https://i.imgur.com/r6F1mt2.jpg + FaceURL: https://i.imgur.com/CN9PXUd.jpg + NumHeight: 5 + NumWidth: 10 + UniqueBack: true + Description: Curse. Abyss. + GMNotes: '' + GUID: 9c67a9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dark Sacrifice + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 11.4562588 + posY: 1.79060566 + posZ: 4.9732995 + rotX: 359.920532 + rotY: 269.998657 + rotZ: 180.019775 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 271037 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2661': + BackIsHidden: true + BackURL: https://i.imgur.com/r6F1mt2.jpg + FaceURL: https://i.imgur.com/CN9PXUd.jpg + NumHeight: 5 + NumWidth: 10 + UniqueBack: true + Description: Curse. Abyss. + GMNotes: '' + GUID: 9283d5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dark Sacrifice + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 8.302495 + posY: 2.31597257 + posZ: 16.0112686 + rotX: 359.949158 + rotY: 270.03418 + rotZ: 16.2796459 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 271039 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2661': + BackIsHidden: true + BackURL: https://i.imgur.com/r6F1mt2.jpg + FaceURL: https://i.imgur.com/CN9PXUd.jpg + NumHeight: 5 + NumWidth: 10 + UniqueBack: true + Description: Curse. Abyss. + GMNotes: '' + GUID: e90dfd + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Abyssal Reach + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 8.301611 + posY: 2.136798 + posZ: 15.1145239 + rotX: 359.944946 + rotY: 269.9938 + rotZ: 10.8140278 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 271039 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2661': + BackIsHidden: true + BackURL: https://i.imgur.com/r6F1mt2.jpg + FaceURL: https://i.imgur.com/CN9PXUd.jpg + NumHeight: 5 + NumWidth: 10 + UniqueBack: true + Description: Curse. Abyss. + GMNotes: '' + GUID: a6e9f2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Abyssal Reach + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 8.30108452 + posY: 1.95666552 + posZ: 14.2216444 + rotX: 359.9495 + rotY: 270.031525 + rotZ: 16.4243412 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 271032 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2661': + BackIsHidden: true + BackURL: https://i.imgur.com/r6F1mt2.jpg + FaceURL: https://i.imgur.com/CN9PXUd.jpg + NumHeight: 5 + NumWidth: 10 + UniqueBack: true + Description: Power. + GMNotes: '' + GUID: 5c2807 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Eclipse + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 8.301566 + posY: 1.77301359 + posZ: 13.3264561 + rotX: 359.947174 + rotY: 269.98053 + rotZ: 11.6336336 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 271032 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2661': + BackIsHidden: true + BackURL: https://i.imgur.com/r6F1mt2.jpg + FaceURL: https://i.imgur.com/CN9PXUd.jpg + NumHeight: 5 + NumWidth: 10 + UniqueBack: true + Description: Power. + GMNotes: '' + GUID: 8948ac + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Eclipse + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 8.300611 + posY: 1.66812646 + posZ: 12.4221487 + rotX: 359.918732 + rotY: 270.032867 + rotZ: 6.482891 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 271032 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2661': + BackIsHidden: true + BackURL: https://i.imgur.com/r6F1mt2.jpg + FaceURL: https://i.imgur.com/CN9PXUd.jpg + NumHeight: 5 + NumWidth: 10 + UniqueBack: true + Description: Power. + GMNotes: '' + GUID: f210df + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Eclipse + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 8.301238 + posY: 1.64373493 + posZ: 11.5087337 + rotX: 359.9169 + rotY: 269.980072 + rotZ: 0.491826564 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 271036 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2661': + BackIsHidden: true + BackURL: https://i.imgur.com/r6F1mt2.jpg + FaceURL: https://i.imgur.com/CN9PXUd.jpg + NumHeight: 5 + NumWidth: 10 + UniqueBack: true + Description: Curse. Abyss. + GMNotes: '' + GUID: d3ee15 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Slumber + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 8.301828 + posY: 1.61034238 + posZ: 10.597271 + rotX: 359.93866 + rotY: 269.980255 + rotZ: 2.25589752 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 271036 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2661': + BackIsHidden: true + BackURL: https://i.imgur.com/r6F1mt2.jpg + FaceURL: https://i.imgur.com/CN9PXUd.jpg + NumHeight: 5 + NumWidth: 10 + UniqueBack: true + Description: Curse. Abyss. + GMNotes: '' + GUID: 7eda6c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Slumber + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 8.30116749 + posY: 1.6514709 + posZ: 9.687781 + rotX: 359.925842 + rotY: 270.026245 + rotZ: 356.2969 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 271035 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2661': + BackIsHidden: true + BackURL: https://i.imgur.com/r6F1mt2.jpg + FaceURL: https://i.imgur.com/CN9PXUd.jpg + NumHeight: 5 + NumWidth: 10 + UniqueBack: true + Description: Power. + GMNotes: '' + GUID: 1f2bda + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Swarm of Locusts + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 8.30043 + posY: 1.6744771 + posZ: 8.774022 + rotX: 359.949951 + rotY: 269.975159 + rotZ: 3.50593019 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 271035 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2661': + BackIsHidden: true + BackURL: https://i.imgur.com/r6F1mt2.jpg + FaceURL: https://i.imgur.com/CN9PXUd.jpg + NumHeight: 5 + NumWidth: 10 + UniqueBack: true + Description: Power. + GMNotes: '' + GUID: 500bf1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Swarm of Locusts + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 8.301221 + posY: 1.67562294 + posZ: 7.861274 + rotX: 359.971344 + rotY: 269.978577 + rotZ: 6.89032555 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 271038 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2661': + BackIsHidden: true + BackURL: https://i.imgur.com/r6F1mt2.jpg + FaceURL: https://i.imgur.com/CN9PXUd.jpg + NumHeight: 5 + NumWidth: 10 + UniqueBack: true + Description: Power. + GMNotes: '' + GUID: c118b2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Black Wind + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 8.300547 + posY: 1.62105143 + posZ: 6.951051 + rotX: 359.921875 + rotY: 270.029572 + rotZ: 4.07979536 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 271029 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2661': + BackIsHidden: true + BackURL: https://i.imgur.com/r6F1mt2.jpg + FaceURL: https://i.imgur.com/CN9PXUd.jpg + NumHeight: 5 + NumWidth: 10 + UniqueBack: true + Description: Monster. Dreamlands. + GMNotes: '' + GUID: 173e8a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Abyssal Revenant + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 8.301351 + posY: 1.63067472 + posZ: 6.03652763 + rotX: 359.927 + rotY: 269.97876 + rotZ: 358.165619 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 271034 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2661': + BackIsHidden: true + BackURL: https://i.imgur.com/r6F1mt2.jpg + FaceURL: https://i.imgur.com/CN9PXUd.jpg + NumHeight: 5 + NumWidth: 10 + UniqueBack: true + Description: Scheme. + GMNotes: '' + GUID: '563177' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Terror Under the Pyramids + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 8.300704 + posY: 1.60407472 + posZ: 5.122783 + rotX: 359.926819 + rotY: 269.974182 + rotZ: 1.73522544 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 271034 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2661': + BackIsHidden: true + BackURL: https://i.imgur.com/r6F1mt2.jpg + FaceURL: https://i.imgur.com/CN9PXUd.jpg + NumHeight: 5 + NumWidth: 10 + UniqueBack: true + Description: Scheme. + GMNotes: '' + GUID: 7fde12 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Terror Under the Pyramids + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 8.30149651 + posY: 1.64995432 + posZ: 4.21347761 + rotX: 359.918243 + rotY: 270.023315 + rotZ: 355.802124 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 271033 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2661': + BackIsHidden: true + BackURL: https://i.imgur.com/r6F1mt2.jpg + FaceURL: https://i.imgur.com/CN9PXUd.jpg + NumHeight: 5 + NumWidth: 10 + UniqueBack: true + Description: Hazard. + GMNotes: '' + GUID: 6a03b8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Sandstorm + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 8.300974 + posY: 1.76457965 + posZ: 3.306695 + rotX: 359.908752 + rotY: 269.972534 + rotZ: 352.1972 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 271033 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2661': + BackIsHidden: true + BackURL: https://i.imgur.com/r6F1mt2.jpg + FaceURL: https://i.imgur.com/CN9PXUd.jpg + NumHeight: 5 + NumWidth: 10 + UniqueBack: true + Description: Hazard. + GMNotes: '' + GUID: 676e6a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Sandstorm + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 8.301919 + posY: 1.86678946 + posZ: 2.40206933 + rotX: 359.916046 + rotY: 270.018341 + rotZ: 358.130157 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 271033 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2661': + BackIsHidden: true + BackURL: https://i.imgur.com/r6F1mt2.jpg + FaceURL: https://i.imgur.com/CN9PXUd.jpg + NumHeight: 5 + NumWidth: 10 + UniqueBack: true + Description: Hazard. + GMNotes: '' + GUID: 3cbc9d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Sandstorm + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 8.301434 + posY: 1.95356476 + posZ: 1.49238479 + rotX: 359.908417 + rotY: 269.968079 + rotZ: 353.5201 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 271031 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2661': + BackIsHidden: true + BackURL: https://i.imgur.com/r6F1mt2.jpg + FaceURL: https://i.imgur.com/CN9PXUd.jpg + NumHeight: 5 + NumWidth: 10 + UniqueBack: true + Description: Monster. + GMNotes: '' + GUID: c4dd7a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Thing in the Sarcophagus + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 8.302466 + posY: 2.126603 + posZ: 0.598561347 + rotX: 359.919617 + rotY: 270.01416 + rotZ: 347.564545 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 271031 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2661': + BackIsHidden: true + BackURL: https://i.imgur.com/r6F1mt2.jpg + FaceURL: https://i.imgur.com/CN9PXUd.jpg + NumHeight: 5 + NumWidth: 10 + UniqueBack: true + Description: Monster. + GMNotes: '' + GUID: bc639e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Thing in the Sarcophagus + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 8.302052 + posY: 2.29168367 + posZ: -0.298107326 + rotX: 359.917725 + rotY: 270.004639 + rotZ: 348.155579 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 266211 + 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 + UniqueBack: true + Description: Humanoid. Cultist. + GMNotes: '' + GUID: ef54c7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Speaker for the Dark Pharaoh + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 8.303393 + posY: 2.54694057 + posZ: -1.17531312 + rotX: 359.92572 + rotY: 269.9533 + rotZ: 342.6238 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 266212 + 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 + UniqueBack: true + Description: Humanoid. Cultist. + GMNotes: '' + GUID: 0aae5d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Speaker for the Dark Pharaoh + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 8.303376 + posY: 2.884927 + posZ: -2.021804 + rotX: 359.928467 + rotY: 269.960876 + rotZ: 342.623779 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 271030 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2661': + BackIsHidden: true + BackURL: https://i.imgur.com/r6F1mt2.jpg + FaceURL: https://i.imgur.com/CN9PXUd.jpg + NumHeight: 5 + NumWidth: 10 + UniqueBack: true + Description: Monster. Dreamlands. + GMNotes: '' + GUID: d113d1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Abyssal Revenant + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 8.304201 + posY: 3.222771 + posZ: -2.871719 + rotX: 359.9203 + rotY: 269.938629 + rotZ: 342.661652 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2662': + BackIsHidden: true + BackURL: https://i.imgur.com/NSozoRe.jpg + FaceURL: https://i.imgur.com/HLQOkvy.jpg + NumHeight: 5 + NumWidth: 10 + UniqueBack: true + '2710': + BackIsHidden: true + BackURL: https://i.imgur.com/r6F1mt2.jpg + FaceURL: https://i.imgur.com/CN9PXUd.jpg + NumHeight: 5 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 271037 +- 271037 +- 271039 +- 271039 +- 271032 +- 271032 +- 271032 +- 271036 +- 271036 +- 271035 +- 271035 +- 271038 +- 271029 +- 271034 +- 271034 +- 271033 +- 271033 +- 271033 +- 271031 +- 271031 +- 266211 +- 266212 +- 271030 +Description: The Night's Usurper +GMNotes: '' +GUID: 17291b +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Encounter Deck +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.92760038 + posY: 1.73440349 + posZ: 5.7571 + rotX: 359.919739 + rotY: 269.9972 + rotZ: 180.016846 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Night's Usurper 578bcb/Deck Exploration Deck cfa863.yaml new file mode 100644 index 000000000..b5bf8c10d --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Model_Bag The Night's Usurper 578bcb/Deck Exploration Deck cfa863.yaml @@ -0,0 +1,516 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 271222 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2661': + BackIsHidden: true + BackURL: https://i.imgur.com/r6F1mt2.jpg + FaceURL: https://i.imgur.com/CN9PXUd.jpg + NumHeight: 5 + NumWidth: 10 + UniqueBack: true + Description: Expedition. Desert. + GMNotes: '' + GUID: f8187f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Nile River + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 9.233615 + posY: 1.67414355 + posZ: -7.609775 + rotX: 359.9187 + rotY: 270.005127 + rotZ: 180.0163 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 271235 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2661': + BackIsHidden: true + BackURL: https://i.imgur.com/r6F1mt2.jpg + FaceURL: https://i.imgur.com/CN9PXUd.jpg + NumHeight: 5 + NumWidth: 10 + UniqueBack: true + Description: Power. + GMNotes: '' + GUID: 500bf1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Swarm of Locusts + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 9.083046 + posY: 1.54176 + posZ: 4.131503 + rotX: 359.9195 + rotY: 270.0086 + rotZ: 0.0165255219 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 271228 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2661': + BackIsHidden: true + BackURL: https://i.imgur.com/r6F1mt2.jpg + FaceURL: https://i.imgur.com/CN9PXUd.jpg + NumHeight: 5 + NumWidth: 10 + UniqueBack: true + Description: Expedition. Desert. Ruins. + GMNotes: '' + GUID: e5e2f5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Sandswept Ruins + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 9.082862 + posY: 1.62080514 + posZ: 2.12496638 + rotX: 359.920166 + rotY: 270.018555 + rotZ: 4.19823265 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 271234 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2661': + BackIsHidden: true + BackURL: https://i.imgur.com/r6F1mt2.jpg + FaceURL: https://i.imgur.com/CN9PXUd.jpg + NumHeight: 5 + NumWidth: 10 + UniqueBack: true + Description: Scheme. + GMNotes: '' + GUID: 7fde12 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Terror Under the Pyramids + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 9.081911 + posY: 1.62021363 + posZ: 0.120659731 + rotX: 359.919983 + rotY: 270.0351 + rotZ: 4.21014738 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 271227 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2661': + BackIsHidden: true + BackURL: https://i.imgur.com/r6F1mt2.jpg + FaceURL: https://i.imgur.com/CN9PXUd.jpg + NumHeight: 5 + NumWidth: 10 + UniqueBack: true + Description: Expedition. Desert. + GMNotes: '' + GUID: fb6b7a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Desert Oasis + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 9.083933 + posY: 1.61914337 + posZ: -1.89654315 + rotX: 359.9193 + rotY: 270.0568 + rotZ: 4.169781 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 271238 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2661': + BackIsHidden: true + BackURL: https://i.imgur.com/r6F1mt2.jpg + FaceURL: https://i.imgur.com/CN9PXUd.jpg + NumHeight: 5 + NumWidth: 10 + UniqueBack: true + Description: Power. + GMNotes: '' + GUID: 1cf015 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Black Wind + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 9.08336449 + posY: 1.61913884 + posZ: -3.89779115 + rotX: 359.91922 + rotY: 269.998566 + rotZ: 4.18796062 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 271226 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2661': + BackIsHidden: true + BackURL: https://i.imgur.com/r6F1mt2.jpg + FaceURL: https://i.imgur.com/CN9PXUd.jpg + NumHeight: 5 + NumWidth: 10 + UniqueBack: true + Description: Expedition. Desert. Ruins. + GMNotes: '' + GUID: 6dd75b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Faceless Sphinx + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 9.083177 + posY: 1.61849916 + posZ: -5.89945936 + rotX: 359.9216 + rotY: 269.967133 + rotZ: 4.220626 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 271223 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2661': + BackIsHidden: true + BackURL: https://i.imgur.com/r6F1mt2.jpg + FaceURL: https://i.imgur.com/CN9PXUd.jpg + NumHeight: 5 + NumWidth: 10 + UniqueBack: true + Description: Expedition. Desert. + GMNotes: '' + GUID: 5ea1c7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Sands of Dashur + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 9.083102 + posY: 1.61709177 + posZ: -9.917107 + rotX: 359.9203 + rotY: 269.985321 + rotZ: 4.194828 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 271225 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2661': + BackIsHidden: true + BackURL: https://i.imgur.com/r6F1mt2.jpg + FaceURL: https://i.imgur.com/CN9PXUd.jpg + NumHeight: 5 + NumWidth: 10 + UniqueBack: true + Description: Expedition. Ruins. + GMNotes: '' + GUID: 46ecbb + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Untouched Vault + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 9.08307 + posY: 1.61675739 + posZ: -11.9175234 + rotX: 359.920258 + rotY: 269.9775 + rotZ: 4.20914173 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 271224 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2661': + BackIsHidden: true + BackURL: https://i.imgur.com/r6F1mt2.jpg + FaceURL: https://i.imgur.com/CN9PXUd.jpg + NumHeight: 5 + NumWidth: 10 + UniqueBack: true + Description: Expedition. Desert. + GMNotes: '' + GUID: f8bc37 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dunes of the Sahara + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 9.08321 + posY: 1.61569178 + posZ: -13.9315548 + rotX: 359.9197 + rotY: 269.977142 + rotZ: 4.17627668 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 271239 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2661': + BackIsHidden: true + BackURL: https://i.imgur.com/r6F1mt2.jpg + FaceURL: https://i.imgur.com/CN9PXUd.jpg + NumHeight: 5 + NumWidth: 10 + UniqueBack: true + Description: Curse. Abyss. + GMNotes: '' + GUID: e90dfd + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Abyssal Reach + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 9.083338 + posY: 1.61540246 + posZ: -15.9365292 + rotX: 359.920441 + rotY: 269.973724 + rotZ: 4.204554 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2712': + BackIsHidden: true + BackURL: https://i.imgur.com/r6F1mt2.jpg + FaceURL: https://i.imgur.com/CN9PXUd.jpg + NumHeight: 5 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 271222 +- 271235 +- 271228 +- 271234 +- 271227 +- 271238 +- 271226 +- 271223 +- 271225 +- 271224 +- 271239 +Description: The Night's Usurper +GMNotes: '' +GUID: cfa863 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Exploration Deck +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -11.8536005 + posY: 1.68222022 + posZ: 8.1349 + rotX: 359.9201 + rotY: 269.998566 + rotZ: 180.016876 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Tile Guardians of the Abyss 82e1ed.ttslua b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Tile Guardians of the Abyss 82e1ed.ttslua new file mode 100644 index 000000000..8f300ba86 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Tile Guardians of the Abyss 82e1ed.ttslua @@ -0,0 +1,21 @@ +name = 'Strange Aeons' + +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 791837/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Tile Guardians of the Abyss 82e1ed.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Tile Guardians of the Abyss 82e1ed.yaml new file mode 100644 index 000000000..e3f774898 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Guardians of the Abyss ee987d/Custom_Tile Guardians of the Abyss 82e1ed.yaml @@ -0,0 +1,42 @@ +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 +GMNotes: '' +GUID: 82e1ed +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Tile Guardians of the Abyss 82e1ed.ttslua' +LuaScriptState: '' +Name: Custom_Tile +Nickname: Guardians of the Abyss +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.79650021 + posY: 1.582242 + posZ: -15.4413033 + rotX: 359.919739 + rotY: 269.9945 + rotZ: 0.01684207 + scaleX: 2.2 + scaleY: 1.0 + scaleZ: 2.2 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Happy's Funhouse e7d9f8.ttslua b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Happy's Funhouse e7d9f8.ttslua new file mode 100644 index 000000000..46067f58e --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Happy's Funhouse e7d9f8.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.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.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 791837/Custom_Model_Bag Happy's Funhouse e7d9f8.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Happy's Funhouse e7d9f8.yaml new file mode 100644 index 000000000..e20f53fc0 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Happy's Funhouse e7d9f8.yaml @@ -0,0 +1,72 @@ +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 Happy''s Funhouse e7d9f8/Custom_Model_Bag Set-aside a45247.yaml' +- !include 'Custom_Model_Bag Happy''s Funhouse e7d9f8/DeckCustom Encounter Deck 13c965.yaml' +- !include 'Custom_Model_Bag Happy''s Funhouse e7d9f8/Deck Agenda 1c6049.yaml' +- !include 'Custom_Model_Bag Happy''s Funhouse e7d9f8/Deck Act 3296c9.yaml' +- !include 'Custom_Model_Bag Happy''s Funhouse e7d9f8/Card Scenario 1e99b2.yaml' +- !include 'Custom_Model_Bag Happy''s Funhouse e7d9f8/Custom_Tile Happy''s Funhouse + c5008a.yaml' +- !include 'Custom_Model_Bag Happy''s Funhouse e7d9f8/Deck Instructions bdd422.yaml' +- !include 'Custom_Model_Bag Happy''s Funhouse e7d9f8/Card 9b0cf5.yaml' +- !include 'Custom_Model_Bag Happy''s Funhouse e7d9f8/Deck Locations fadb67.yaml' +- !include 'Custom_Model_Bag Happy''s Funhouse e7d9f8/Deck 1aa87a.yaml' +- !include 'Custom_Model_Bag Happy''s Funhouse e7d9f8/Deck 4e82c5.yaml' +- !include 'Custom_Model_Bag Happy''s Funhouse e7d9f8/Card Scenario ab12bb.yaml' +CustomMesh: + CastShadows: true + ColliderURL: '' + Convex: true + DiffuseURL: http://cloud-3.steamusercontent.com/ugc/798737729142976303/C24C7169FD11E5D151DD2F754D5B9A5563D5DABB/ + MaterialIndex: 3 + MeshURL: https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj + NormalURL: '' + TypeIndex: 6 +Description: '' +GMNotes: '' +GUID: e7d9f8 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Model_Bag Happy''s Funhouse e7d9f8.ttslua' +LuaScriptState: '{"ml":{"13c965":{"lock":false,"pos":{"x":-3.9276,"y":1.7504,"z":5.7571},"rot":{"x":359.9197,"y":269.9855,"z":180.0168}},"1aa87a":{"lock":false,"pos":{"x":-30.2245,"y":1.704,"z":7.5705},"rot":{"x":359.9201,"y":269.9915,"z":180.0169}},"1c6049":{"lock":false,"pos":{"x":-2.7315,"y":1.6551,"z":0.3733},"rot":{"x":359.9197,"y":269.9742,"z":0.0169}},"1e99b2":{"lock":false,"pos":{"x":-3.956,"y":1.6556,"z":-10.4412},"rot":{"x":359.9197,"y":269.9852,"z":0.0169}},"3296c9":{"lock":false,"pos":{"x":-2.689,"y":1.6535,"z":-5.0428},"rot":{"x":359.9197,"y":270.0282,"z":0.0168}},"4e82c5":{"lock":false,"pos":{"x":-36.7735,"y":1.7131,"z":7.5705},"rot":{"x":359.9201,"y":269.993,"z":180.0169}},"9b0cf5":{"lock":false,"pos":{"x":-17.12,"y":1.6799,"z":-0.03},"rot":{"x":359.9201,"y":269.9857,"z":180.0169}},"a45247":{"lock":false,"pos":{"x":1.6967,"y":1.5583,"z":14.2787},"rot":{"x":359.9551,"y":224.998,"z":0.0687}},"ab12bb":{"lock":false,"pos":{"x":-50.9244,"y":1.7266,"z":8.1784},"rot":{"x":359.9201,"y":269.9852,"z":0.0169}},"bdd422":{"lock":false,"pos":{"x":-9.2986,"y":1.667,"z":0.0118},"rot":{"x":359.9202,"y":269.9846,"z":0.017}},"c5008a":{"lock":false,"pos":{"x":-3.5702,"y":1.5821,"z":-14.9068},"rot":{"x":359.9197,"y":270.0005,"z":0.0168}},"fadb67":{"lock":false,"pos":{"x":-23.6763,"y":1.6948,"z":7.57},"rot":{"x":359.9201,"y":270.0001,"z":180.0169}}}}' +MaterialIndex: -1 +MeshIndex: -1 +Name: Custom_Model_Bag +Nickname: Happy's Funhouse +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 0.394518822 + posY: 8.485955 + posZ: -137.854279 + rotX: 0.0208087377 + rotY: 270.000061 + rotZ: 0.0167711657 + scaleX: 2.21 + scaleY: 0.46 + scaleZ: 2.42 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Happy's Funhouse e7d9f8/Card 9b0cf5.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Happy's Funhouse e7d9f8/Card 9b0cf5.yaml new file mode 100644 index 000000000..b6a24e2d2 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Happy's Funhouse e7d9f8/Card 9b0cf5.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 154304 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '1543': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/924800625825551131/E189864B7804B4D48DAC96FB9088A9186BE67A76/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/924800625825549009/00204FBE7BF37AAC5A0DD54F983E787665772005/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 9b0cf5 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -17.12 + posY: 1.67990065 + posZ: -0.0299994443 + rotX: 359.9201 + rotY: 269.985657 + rotZ: 180.016891 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Happy's Funhouse e7d9f8/Card Scenario 1e99b2.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Happy's Funhouse e7d9f8/Card Scenario 1e99b2.yaml new file mode 100644 index 000000000..1976ea455 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Happy's Funhouse e7d9f8/Card Scenario 1e99b2.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 153903 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '1539': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/924800625825551131/E189864B7804B4D48DAC96FB9088A9186BE67A76/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/924800625825549009/00204FBE7BF37AAC5A0DD54F983E787665772005/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 1e99b2 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Scenario +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.9560008 + posY: 1.65564823 + posZ: -10.4412031 + rotX: 359.919739 + rotY: 269.985168 + rotZ: 0.0168620478 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Happy's Funhouse e7d9f8/Card Scenario ab12bb.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Happy's Funhouse e7d9f8/Card Scenario ab12bb.yaml new file mode 100644 index 000000000..53782d91a --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Happy's Funhouse e7d9f8/Card Scenario ab12bb.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 153903 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '1539': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/924800625825551131/E189864B7804B4D48DAC96FB9088A9186BE67A76/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/924800625825549009/00204FBE7BF37AAC5A0DD54F983E787665772005/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: ab12bb +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Scenario +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -50.9244 + posY: 1.72662532 + posZ: 8.178398 + rotX: 359.920135 + rotY: 269.985229 + rotZ: 0.0168971121 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Happy's Funhouse e7d9f8/Custom_Model_Bag Set-aside a45247.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Happy's Funhouse e7d9f8/Custom_Model_Bag Set-aside a45247.yaml new file mode 100644 index 000000000..6047d8ab0 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Happy's Funhouse e7d9f8/Custom_Model_Bag Set-aside a45247.yaml @@ -0,0 +1,57 @@ +Autoraise: true +ColorDiffuse: + b: 0.02148666 + g: 0.00100758043 + r: 0.02148666 +ContainedObjects: +- !include 'Custom_Model_Bag Set-aside a45247/Card 68a1f8.yaml' +- !include 'Custom_Model_Bag Set-aside a45247/Card 1dddb9.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: '' +GMNotes: '' +GUID: a45247 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +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.69670081 + posY: 1.558316 + posZ: 14.2787027 + rotX: 359.955139 + rotY: 224.998 + rotZ: 0.06867172 + scaleX: 2.0 + scaleY: 2.0 + scaleZ: 2.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Happy's Funhouse e7d9f8/Custom_Model_Bag Set-aside a45247/Card 1dddb9.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Happy's Funhouse e7d9f8/Custom_Model_Bag Set-aside a45247/Card 1dddb9.yaml new file mode 100644 index 000000000..7c0a41243 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Happy's Funhouse e7d9f8/Custom_Model_Bag Set-aside a45247/Card 1dddb9.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 270017 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2700': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/924800625825551131/E189864B7804B4D48DAC96FB9088A9186BE67A76/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/924800625825549009/00204FBE7BF37AAC5A0DD54F983E787665772005/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 1dddb9 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 13.867506 + posY: 3.589995 + posZ: 2.20106888 + rotX: 359.916962 + rotY: 269.998383 + rotZ: 0.0175531749 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Happy's Funhouse e7d9f8/Custom_Model_Bag Set-aside a45247/Card 68a1f8.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Happy's Funhouse e7d9f8/Custom_Model_Bag Set-aside a45247/Card 68a1f8.yaml new file mode 100644 index 000000000..500f8f590 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Happy's Funhouse e7d9f8/Custom_Model_Bag Set-aside a45247/Card 68a1f8.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 270100 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2701': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/924800625825556714/51998D15A0EF272358C74ED69AF1C2260FB32B4F/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 68a1f8 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 13.0696993 + posY: 3.591219 + posZ: 2.80266762 + rotX: 359.9323 + rotY: 269.9998 + rotZ: 0.0143176205 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Happy's Funhouse e7d9f8/Custom_Tile Happy's Funhouse c5008a.ttslua b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Happy's Funhouse e7d9f8/Custom_Tile Happy's Funhouse c5008a.ttslua new file mode 100644 index 000000000..a6a523bb3 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Happy's Funhouse e7d9f8/Custom_Tile Happy's Funhouse c5008a.ttslua @@ -0,0 +1,21 @@ +name = 'Happys Funhouse' + +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 The Side Missions 791837/Custom_Model_Bag Happy's Funhouse e7d9f8/Custom_Tile Happy's Funhouse c5008a.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Happy's Funhouse e7d9f8/Custom_Tile Happy's Funhouse c5008a.yaml new file mode 100644 index 000000000..9bf9f2a18 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Happy's Funhouse e7d9f8/Custom_Tile Happy's Funhouse c5008a.yaml @@ -0,0 +1,42 @@ +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 +GMNotes: '' +GUID: c5008a +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Tile Happy''s Funhouse c5008a.ttslua' +LuaScriptState: '' +Name: Custom_Tile +Nickname: Happy's Funhouse +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.570201 + posY: 1.582082 + posZ: -14.9068 + rotX: 359.919739 + rotY: 270.000519 + rotZ: 0.0168372691 + scaleX: 2.2 + scaleY: 1.0 + scaleZ: 2.2 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Happy's Funhouse e7d9f8/Deck 1aa87a.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Happy's Funhouse e7d9f8/Deck 1aa87a.yaml new file mode 100644 index 000000000..425e54ef3 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Happy's Funhouse e7d9f8/Deck 1aa87a.yaml @@ -0,0 +1,215 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 154309 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1543': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/924800625825551131/E189864B7804B4D48DAC96FB9088A9186BE67A76/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/924800625825549009/00204FBE7BF37AAC5A0DD54F983E787665772005/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 2cab54 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -30.2224541 + posY: 1.80719554 + posZ: 7.569843 + rotX: 358.211578 + rotY: 269.991364 + rotZ: 180.014923 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 154310 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1543': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/924800625825551131/E189864B7804B4D48DAC96FB9088A9186BE67A76/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/924800625825549009/00204FBE7BF37AAC5A0DD54F983E787665772005/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: c42cf4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -30.2220078 + posY: 1.81998682 + posZ: 7.56980276 + rotX: 358.1897 + rotY: 269.989532 + rotZ: 180.015121 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 154311 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1543': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/924800625825551131/E189864B7804B4D48DAC96FB9088A9186BE67A76/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/924800625825549009/00204FBE7BF37AAC5A0DD54F983E787665772005/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 67f858 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -30.2222538 + posY: 1.80275667 + posZ: 7.569802 + rotX: 358.1914 + rotY: 269.988 + rotZ: 180.01474 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 154312 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1543': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/924800625825551131/E189864B7804B4D48DAC96FB9088A9186BE67A76/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/924800625825549009/00204FBE7BF37AAC5A0DD54F983E787665772005/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 1332c7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -30.2243252 + posY: 1.70037079 + posZ: 7.57018661 + rotX: 359.9206 + rotY: 269.9942 + rotZ: 180.017273 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '1543': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/924800625825551131/E189864B7804B4D48DAC96FB9088A9186BE67A76/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/924800625825549009/00204FBE7BF37AAC5A0DD54F983E787665772005/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 154309 +- 154310 +- 154311 +- 154312 +Description: '' +GMNotes: '' +GUID: 1aa87a +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -30.2245 + posY: 1.703965 + posZ: 7.570501 + rotX: 359.9201 + rotY: 269.991455 + rotZ: 180.016876 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Happy's Funhouse e7d9f8/Deck 4e82c5.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Happy's Funhouse e7d9f8/Deck 4e82c5.yaml new file mode 100644 index 000000000..054d841d4 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Happy's Funhouse e7d9f8/Deck 4e82c5.yaml @@ -0,0 +1,215 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 154313 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1543': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/924800625825551131/E189864B7804B4D48DAC96FB9088A9186BE67A76/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/924800625825549009/00204FBE7BF37AAC5A0DD54F983E787665772005/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 6b161b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -36.7714043 + posY: 1.8161093 + posZ: 7.569843 + rotX: 358.205658 + rotY: 269.9914 + rotZ: 180.014908 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 154314 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1543': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/924800625825551131/E189864B7804B4D48DAC96FB9088A9186BE67A76/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/924800625825549009/00204FBE7BF37AAC5A0DD54F983E787665772005/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: fd8a48 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -36.7714043 + posY: 1.82968819 + posZ: 7.56984329 + rotX: 358.203125 + rotY: 269.991333 + rotZ: 180.014938 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 154315 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1543': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/924800625825551131/E189864B7804B4D48DAC96FB9088A9186BE67A76/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/924800625825549009/00204FBE7BF37AAC5A0DD54F983E787665772005/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: bf7942 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -36.77121 + posY: 1.81228554 + posZ: 7.56980276 + rotX: 358.202362 + rotY: 269.988037 + rotZ: 180.014771 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 154316 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1543': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/924800625825551131/E189864B7804B4D48DAC96FB9088A9186BE67A76/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/924800625825549009/00204FBE7BF37AAC5A0DD54F983E787665772005/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 2612cd + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -36.77327 + posY: 1.70950282 + posZ: 7.570185 + rotX: 359.9206 + rotY: 269.9955 + rotZ: 180.017288 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '1543': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/924800625825551131/E189864B7804B4D48DAC96FB9088A9186BE67A76/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/924800625825549009/00204FBE7BF37AAC5A0DD54F983E787665772005/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 154313 +- 154314 +- 154315 +- 154316 +Description: '' +GMNotes: '' +GUID: 4e82c5 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -36.7735 + posY: 1.7130971 + posZ: 7.570501 + rotX: 359.9201 + rotY: 269.992981 + rotZ: 180.016876 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Happy's Funhouse e7d9f8/Deck Act 3296c9.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Happy's Funhouse e7d9f8/Deck Act 3296c9.yaml new file mode 100644 index 000000000..781f7ed60 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Happy's Funhouse e7d9f8/Deck Act 3296c9.yaml @@ -0,0 +1,211 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 153803 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1134': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359957443/8ECED24E70C4AEC816C76FA6D0CB435185A4ED77/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359957833/1057AF990D72DA2FD637ACA460E14E8DD294F7B4/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 7d7342 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.8392837 + posY: 1.23164678 + posZ: 11.1393566 + rotX: -0.00347465184 + rotY: 180.000534 + rotZ: -0.000743432669 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 153802 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1134': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359957443/8ECED24E70C4AEC816C76FA6D0CB435185A4ED77/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359957833/1057AF990D72DA2FD637ACA460E14E8DD294F7B4/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 7f8143 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.5813477 + posY: 1.37645555 + posZ: 11.2142544 + rotX: 0.000812233251 + rotY: 180.000641 + rotZ: 359.991241 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 153801 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1134': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359957443/8ECED24E70C4AEC816C76FA6D0CB435185A4ED77/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359957833/1057AF990D72DA2FD637ACA460E14E8DD294F7B4/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: e5fd3c + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.57334137 + posY: 1.39415574 + posZ: 10.9466591 + rotX: -0.0008211257 + rotY: 180.000061 + rotZ: -0.000329672039 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 153800 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1134': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359957443/8ECED24E70C4AEC816C76FA6D0CB435185A4ED77/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359957833/1057AF990D72DA2FD637ACA460E14E8DD294F7B4/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 7d7342 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.46786761 + posY: 1.38040578 + posZ: 10.9959927 + rotX: 0.000758922368 + rotY: 180.000626 + rotZ: -0.0007883478 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '1538': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359957443/8ECED24E70C4AEC816C76FA6D0CB435185A4ED77/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359957833/1057AF990D72DA2FD637ACA460E14E8DD294F7B4/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 153803 +- 153802 +- 153801 +- 153800 +Description: Happy's Funhouse +GMNotes: '' +GUID: 3296c9 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Act +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.68900013 + posY: 1.65349686 + posZ: -5.042802 + rotX: 359.919739 + rotY: 270.0282 + rotZ: 0.0167980064 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Happy's Funhouse e7d9f8/Deck Agenda 1c6049.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Happy's Funhouse e7d9f8/Deck Agenda 1c6049.yaml new file mode 100644 index 000000000..45e422499 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Happy's Funhouse e7d9f8/Deck Agenda 1c6049.yaml @@ -0,0 +1,211 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 153707 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1134': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359957443/8ECED24E70C4AEC816C76FA6D0CB435185A4ED77/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359957833/1057AF990D72DA2FD637ACA460E14E8DD294F7B4/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 7d7342 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.26724648 + posY: 1.23161888 + posZ: 8.57264 + rotX: -0.00465311669 + rotY: 180.000336 + rotZ: -0.0007952861 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 153706 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1134': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359957443/8ECED24E70C4AEC816C76FA6D0CB435185A4ED77/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359957833/1057AF990D72DA2FD637ACA460E14E8DD294F7B4/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: a1c0b1 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.24269962 + posY: 1.37643671 + posZ: 8.446169 + rotX: 0.00235895137 + rotY: 180.000519 + rotZ: -0.00356961763 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 153705 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1134': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359957443/8ECED24E70C4AEC816C76FA6D0CB435185A4ED77/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359957833/1057AF990D72DA2FD637ACA460E14E8DD294F7B4/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 7d7342 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.79702878 + posY: 1.39407432 + posZ: 8.649096 + rotX: 0.0002758359 + rotY: 180.0007 + rotZ: -0.00256992481 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 153704 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1134': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359957443/8ECED24E70C4AEC816C76FA6D0CB435185A4ED77/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359957833/1057AF990D72DA2FD637ACA460E14E8DD294F7B4/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 7d7342 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.31679249 + posY: 1.38041031 + posZ: 8.8138 + rotX: 6.06716776e-06 + rotY: 180.000519 + rotZ: -0.000798148743 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '1537': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359957443/8ECED24E70C4AEC816C76FA6D0CB435185A4ED77/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359957833/1057AF990D72DA2FD637ACA460E14E8DD294F7B4/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 153707 +- 153706 +- 153705 +- 153704 +Description: Happy's Funhouse +GMNotes: '' +GUID: 1c6049 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Agenda +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.73150015 + posY: 1.65514791 + posZ: 0.373298973 + rotX: 359.919739 + rotY: 269.974243 + rotZ: 0.0168736316 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Happy's Funhouse e7d9f8/Deck Instructions bdd422.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Happy's Funhouse e7d9f8/Deck Instructions bdd422.yaml new file mode 100644 index 000000000..87dbe13f3 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Happy's Funhouse e7d9f8/Deck Instructions bdd422.yaml @@ -0,0 +1,297 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 153620 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1132': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/924800625825551131/E189864B7804B4D48DAC96FB9088A9186BE67A76/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/924800625825549009/00204FBE7BF37AAC5A0DD54F983E787665772005/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: dfbd0c + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 17.4376011 + posY: 1.02964532 + posZ: 5.42971325 + rotX: 359.9891 + rotY: 180.0002 + rotZ: -0.004932539 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 153619 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1132': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/924800625825551131/E189864B7804B4D48DAC96FB9088A9186BE67A76/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/924800625825549009/00204FBE7BF37AAC5A0DD54F983E787665772005/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 323e17 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 12.5546656 + posY: 1.23136067 + posZ: 0.8710348 + rotX: 359.993164 + rotY: 180.000214 + rotZ: -0.00341983582 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 153618 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1132': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/924800625825551131/E189864B7804B4D48DAC96FB9088A9186BE67A76/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/924800625825549009/00204FBE7BF37AAC5A0DD54F983E787665772005/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 9e6b74 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 8.137494 + posY: 1.23162949 + posZ: 0.8432793 + rotX: -0.00474672625 + rotY: 180.049454 + rotZ: -0.002445997 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 153602 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1132': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/924800625825551131/E189864B7804B4D48DAC96FB9088A9186BE67A76/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/924800625825549009/00204FBE7BF37AAC5A0DD54F983E787665772005/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: '657352' + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.511689 + posY: 1.39675081 + posZ: 5.43458366 + rotX: 0.00208228454 + rotY: 179.998962 + rotZ: 180.003372 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 153601 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1536': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/924800625825551131/E189864B7804B4D48DAC96FB9088A9186BE67A76/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/924800625825549009/00204FBE7BF37AAC5A0DD54F983E787665772005/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 43d78e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -9.497341 + posY: 1.77080476 + posZ: -3.09508967 + rotX: 359.9279 + rotY: 270.004547 + rotZ: 182.329422 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 153600 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1536': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/924800625825551131/E189864B7804B4D48DAC96FB9088A9186BE67A76/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/924800625825549009/00204FBE7BF37AAC5A0DD54F983E787665772005/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 98055d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -9.57119 + posY: 1.6685667 + posZ: -2.93256664 + rotX: 359.911926 + rotY: 270.0197 + rotZ: 180.015427 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '1536': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/924800625825551131/E189864B7804B4D48DAC96FB9088A9186BE67A76/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/924800625825549009/00204FBE7BF37AAC5A0DD54F983E787665772005/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 153620 +- 153619 +- 153618 +- 153602 +- 153601 +- 153600 +Description: Happy's Funhouse +GMNotes: '' +GUID: bdd422 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Instructions +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -9.298597 + posY: 1.66704965 + posZ: 0.0117995562 + rotX: 359.920227 + rotY: 269.984558 + rotZ: 0.01699373 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Happy's Funhouse e7d9f8/Deck Locations fadb67.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Happy's Funhouse e7d9f8/Deck Locations fadb67.yaml new file mode 100644 index 000000000..b8a140789 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Happy's Funhouse e7d9f8/Deck Locations fadb67.yaml @@ -0,0 +1,211 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 154308 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1132': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/924800625825551131/E189864B7804B4D48DAC96FB9088A9186BE67A76/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/924800625825549009/00204FBE7BF37AAC5A0DD54F983E787665772005/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 194f89 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 10.7036066 + posY: 1.68676686 + posZ: 2.365189 + rotX: 359.6303 + rotY: 179.981415 + rotZ: 178.661987 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 154307 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1132': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/924800625825551131/E189864B7804B4D48DAC96FB9088A9186BE67A76/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/924800625825549009/00204FBE7BF37AAC5A0DD54F983E787665772005/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: fc0f85 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 11.197031 + posY: 1.55443442 + posZ: 2.13408065 + rotX: 359.661163 + rotY: 179.997253 + rotZ: 178.6604 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 154306 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1132': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/924800625825551131/E189864B7804B4D48DAC96FB9088A9186BE67A76/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/924800625825549009/00204FBE7BF37AAC5A0DD54F983E787665772005/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: '551772' + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 11.7509 + posY: 1.40976083 + posZ: 2.67443728 + rotX: 359.604156 + rotY: 180.009964 + rotZ: 178.678741 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 154305 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1132': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/924800625825551131/E189864B7804B4D48DAC96FB9088A9186BE67A76/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/924800625825549009/00204FBE7BF37AAC5A0DD54F983E787665772005/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 92a944 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 11.897294 + posY: 1.28428686 + posZ: 2.39171839 + rotX: 359.970764 + rotY: 180.010773 + rotZ: 179.964813 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '1543': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/924800625825551131/E189864B7804B4D48DAC96FB9088A9186BE67A76/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/924800625825549009/00204FBE7BF37AAC5A0DD54F983E787665772005/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 154308 +- 154307 +- 154306 +- 154305 +Description: Happy's Funhouse +GMNotes: '' +GUID: fadb67 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Locations +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -23.6763 + posY: 1.69483376 + posZ: 7.570001 + 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 The Side Missions 791837/Custom_Model_Bag Happy's Funhouse e7d9f8/DeckCustom Encounter Deck 13c965.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Happy's Funhouse e7d9f8/DeckCustom Encounter Deck 13c965.yaml new file mode 100644 index 000000000..a2fc9c269 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Happy's Funhouse e7d9f8/DeckCustom Encounter Deck 13c965.yaml @@ -0,0 +1,953 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 154001 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: b5fe2f + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.23126335e-08 + posY: 1.24493062 + posZ: -2.520262e-07 + rotX: -1.48562648e-07 + rotY: 180.0 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 154002 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: b5fe2f + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.23126335e-08 + posY: 1.24493062 + posZ: -2.520262e-07 + rotX: -1.48562648e-07 + rotY: 180.0 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 154003 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: b5fe2f + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.23126335e-08 + posY: 1.24493062 + posZ: -2.520262e-07 + rotX: -1.48562648e-07 + rotY: 180.0 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 154004 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: b5fe2f + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.23126335e-08 + posY: 1.24493062 + posZ: -2.520262e-07 + rotX: -1.48562648e-07 + rotY: 180.0 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 154005 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: b5fe2f + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.23126335e-08 + posY: 1.24493062 + posZ: -2.520262e-07 + rotX: -1.48562648e-07 + rotY: 180.0 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 154006 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: b5fe2f + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.23126335e-08 + posY: 1.24493062 + posZ: -2.520262e-07 + rotX: -1.48562648e-07 + rotY: 180.0 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 154007 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: b5fe2f + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.23126335e-08 + posY: 1.24493062 + posZ: -2.520262e-07 + rotX: -1.48562648e-07 + rotY: 180.0 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 154008 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: b5fe2f + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.23126335e-08 + posY: 1.24493062 + posZ: -2.520262e-07 + rotX: -1.48562648e-07 + rotY: 180.0 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 154009 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: b5fe2f + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.23126335e-08 + posY: 1.24493062 + posZ: -2.520262e-07 + rotX: -1.48562648e-07 + rotY: 180.0 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 154010 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: b5fe2f + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.23126335e-08 + posY: 1.24493062 + posZ: -2.520262e-07 + rotX: -1.48562648e-07 + rotY: 180.0 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 154011 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: b5fe2f + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.23126335e-08 + posY: 1.24493062 + posZ: -2.520262e-07 + rotX: -1.48562648e-07 + rotY: 180.0 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 154012 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: b5fe2f + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.23126335e-08 + posY: 1.24493062 + posZ: -2.520262e-07 + rotX: -1.48562648e-07 + rotY: 180.0 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 154013 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: b5fe2f + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.23126335e-08 + posY: 1.24493062 + posZ: -2.520262e-07 + rotX: -1.48562648e-07 + rotY: 180.0 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 154014 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: b5fe2f + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.23126335e-08 + posY: 1.24493062 + posZ: -2.520262e-07 + rotX: -1.48562648e-07 + rotY: 180.0 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 154015 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: b5fe2f + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.23126335e-08 + posY: 1.24493062 + posZ: -2.520262e-07 + rotX: -1.48562648e-07 + rotY: 180.0 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 154016 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: b5fe2f + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.23126335e-08 + posY: 1.24493062 + posZ: -2.520262e-07 + rotX: -1.48562648e-07 + rotY: 180.0 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 154017 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: b5fe2f + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.23126335e-08 + posY: 1.24493062 + posZ: -2.520262e-07 + rotX: -1.48562648e-07 + rotY: 180.0 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 154018 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: b5fe2f + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.23126335e-08 + posY: 1.24493062 + posZ: -2.520262e-07 + rotX: -1.48562648e-07 + rotY: 180.0 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 154019 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: b5fe2f + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.23126335e-08 + posY: 1.24493062 + posZ: -2.520262e-07 + rotX: -1.48562648e-07 + rotY: 180.0 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 154020 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: b5fe2f + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.23126335e-08 + posY: 1.24493062 + posZ: -2.520262e-07 + rotX: -1.48562648e-07 + rotY: 180.0 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 154021 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: b5fe2f + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.23126335e-08 + posY: 1.24493062 + posZ: -2.520262e-07 + rotX: -1.48562648e-07 + rotY: 180.0 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 154022 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: b5fe2f + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.23126335e-08 + posY: 1.24493062 + posZ: -2.520262e-07 + rotX: -1.48562648e-07 + rotY: 180.0 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 154023 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: b5fe2f + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.23126335e-08 + posY: 1.24493062 + posZ: -2.520262e-07 + rotX: -1.48562648e-07 + rotY: 180.0 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 154024 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: b5fe2f + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.23126335e-08 + posY: 1.24493062 + posZ: -2.520262e-07 + rotX: -1.48562648e-07 + rotY: 180.0 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 154025 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: b5fe2f + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.23126335e-08 + posY: 1.24493062 + posZ: -2.520262e-07 + rotX: -1.48562648e-07 + rotY: 180.0 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 154026 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: b5fe2f + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.23126335e-08 + posY: 1.24493062 + posZ: -2.520262e-07 + rotX: -1.48562648e-07 + rotY: 180.0 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '1540': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/924800625825556714/51998D15A0EF272358C74ED69AF1C2260FB32B4F/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 154001 +- 154002 +- 154003 +- 154004 +- 154005 +- 154006 +- 154007 +- 154008 +- 154009 +- 154010 +- 154011 +- 154012 +- 154013 +- 154014 +- 154015 +- 154016 +- 154017 +- 154018 +- 154019 +- 154020 +- 154021 +- 154022 +- 154023 +- 154024 +- 154025 +- 154026 +Description: Happy's Funhouse +GMNotes: '' +GUID: 13c965 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: DeckCustom +Nickname: Encounter Deck +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.92760015 + posY: 1.750392 + posZ: 5.757102 + rotX: 359.919739 + rotY: 269.985474 + rotZ: 180.016846 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Into the Shadowlands 019847.ttslua b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Into the Shadowlands 019847.ttslua new file mode 100644 index 000000000..46067f58e --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Into the Shadowlands 019847.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.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.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 791837/Custom_Model_Bag Into the Shadowlands 019847.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Into the Shadowlands 019847.yaml new file mode 100644 index 000000000..69898bfb0 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Into the Shadowlands 019847.yaml @@ -0,0 +1,61 @@ +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 Into the Shadowlands 019847/Bag 1 Dark Reflections c1aad0.yaml' +- !include 'Custom_Model_Bag Into the Shadowlands 019847/Bag 2 Endless Horizons b1bc62.yaml' +CustomMesh: + CastShadows: true + ColliderURL: '' + Convex: true + DiffuseURL: http://cloud-3.steamusercontent.com/ugc/798737729142946871/EAA18FFE753B1ED020A9F3117E9654B093369D26/ + MaterialIndex: 3 + MeshURL: https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj + NormalURL: '' + TypeIndex: 6 +Description: '' +GMNotes: '' +GUID: 019847 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Model_Bag Into the Shadowlands 019847.ttslua' +LuaScriptState: '{"ml":{"b1bc62":{"lock":false,"pos":{"x":10.2009,"y":1.2817,"z":-2.161},"rot":{"x":0.0799,"y":89.9964,"z":359.9831}},"c1aad0":{"lock":false,"pos":{"x":9.6318,"y":1.285,"z":6.3703},"rot":{"x":0.0799,"y":89.9923,"z":359.9831}}}}' +MaterialIndex: -1 +MeshIndex: -1 +Name: Custom_Model_Bag +Nickname: Into the Shadowlands +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.8558569 + posY: 2.476976 + posZ: -32.42603 + rotX: 359.983246 + rotY: 270.0 + rotZ: 0.00353767327 + scaleX: 2.21 + scaleY: 0.2 + scaleZ: 2.46 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Into the Shadowlands 019847/Bag 1 Dark Reflections c1aad0.ttslua b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Into the Shadowlands 019847/Bag 1 Dark Reflections c1aad0.ttslua new file mode 100644 index 000000000..4acf9ea11 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Into the Shadowlands 019847/Bag 1 Dark Reflections c1aad0.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 791837/Custom_Model_Bag Into the Shadowlands 019847/Bag 1 Dark Reflections c1aad0.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Into the Shadowlands 019847/Bag 1 Dark Reflections c1aad0.yaml new file mode 100644 index 000000000..4a07f6363 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Into the Shadowlands 019847/Bag 1 Dark Reflections c1aad0.yaml @@ -0,0 +1,63 @@ +Autoraise: true +ColorDiffuse: + b: 0.0238317735 + g: 0.05851741 + r: 0.0905923 +ContainedObjects: +- !include 'Bag 1 Dark Reflections c1aad0/Custom_Model_Bag Set-aside a45247.yaml' +- !include 'Bag 1 Dark Reflections c1aad0/Deck Encounter Deck 798446.yaml' +- !include 'Bag 1 Dark Reflections c1aad0/Deck Agenda Deck 606a09.yaml' +- !include 'Bag 1 Dark Reflections c1aad0/Deck Act Deck 4415a4.yaml' +- !include 'Bag 1 Dark Reflections c1aad0/Card Scenario e2e8f6.yaml' +- !include 'Bag 1 Dark Reflections c1aad0/Custom_Tile Into the Shadowlands 770021.yaml' +- !include 'Bag 1 Dark Reflections c1aad0/Deck Dark Mirror 867f7f.yaml' +- !include 'Bag 1 Dark Reflections c1aad0/Deck Set-upResolution 2c2a09.yaml' +- !include 'Bag 1 Dark Reflections c1aad0/Card Train Terminal 5a913d.yaml' +- !include 'Bag 1 Dark Reflections c1aad0/Custom_Tile e43485.yaml' +- !include 'Bag 1 Dark Reflections c1aad0/Card Northside Church f7021e.yaml' +- !include 'Bag 1 Dark Reflections c1aad0/Custom_Tile 73166d.yaml' +- !include 'Bag 1 Dark Reflections c1aad0/Card Warehouse District 584b5d.yaml' +- !include 'Bag 1 Dark Reflections c1aad0/Custom_Tile 7234af.yaml' +- !include 'Bag 1 Dark Reflections c1aad0/Custom_Tile a58bd7.yaml' +- !include 'Bag 1 Dark Reflections c1aad0/Custom_Tile 95af1f.yaml' +- !include 'Bag 1 Dark Reflections c1aad0/Custom_Tile eaa106.yaml' +- !include 'Bag 1 Dark Reflections c1aad0/Card The Carrier Hotel 429d37.yaml' +- !include 'Bag 1 Dark Reflections c1aad0/Custom_Tile 7ceffc.yaml' +- !include 'Bag 1 Dark Reflections c1aad0/Card Town Center 571a98.yaml' +- !include 'Bag 1 Dark Reflections c1aad0/Custom_Tile 12e23d.yaml' +- !include 'Bag 1 Dark Reflections c1aad0/Card Miskatonic Museum 05413a.yaml' +- !include 'Bag 1 Dark Reflections c1aad0/Custom_Tile e352b7.yaml' +- !include 'Bag 1 Dark Reflections c1aad0/Card Police Station 5c6382.yaml' +- !include 'Bag 1 Dark Reflections c1aad0/Custom_Tile ee99b2.yaml' +- !include 'Bag 1 Dark Reflections c1aad0/Card Ravenshark Manor a61a93.yaml' +- !include 'Bag 1 Dark Reflections c1aad0/Custom_Tile 4d6b03.yaml' +- !include 'Bag 1 Dark Reflections c1aad0/Card Scenario f7040b.yaml' +Description: into the Shadowlands +GMNotes: '' +GUID: c1aad0 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Bag 1 Dark Reflections c1aad0.ttslua' +LuaScriptState: '{"ml":{"05413a":{"lock":false,"pos":{"x":-23.6766,"y":1.684,"z":-7.7},"rot":{"x":359.9201,"y":270.0275,"z":0.0168}},"12e23d":{"lock":false,"pos":{"x":-24.8383,"y":1.6149,"z":-4.1087},"rot":{"x":359.9831,"y":0,"z":359.92}},"2c2a09":{"lock":false,"pos":{"x":-12.3128,"y":1.6723,"z":3.7016},"rot":{"x":359.9201,"y":269.9852,"z":0.0169}},"429d37":{"lock":false,"pos":{"x":-23.6732,"y":1.6885,"z":7.5703},"rot":{"x":359.9201,"y":270.0264,"z":0.0168}},"4415a4":{"lock":false,"pos":{"x":-2.6885,"y":1.655,"z":-5.0485},"rot":{"x":359.9197,"y":269.9801,"z":0.0169}},"4d6b03":{"lock":false,"pos":{"x":-27.0816,"y":1.617,"z":-7.6073},"rot":{"x":359.9201,"y":269.9946,"z":0.0169}},"571a98":{"lock":false,"pos":{"x":-23.6755,"y":1.6862,"z":-0.0306},"rot":{"x":359.9201,"y":270.0062,"z":0.0169}},"584b5d":{"lock":false,"pos":{"x":-17.12,"y":1.6748,"z":-7.7},"rot":{"x":359.9201,"y":269.9992,"z":0.0169}},"5a913d":{"lock":false,"pos":{"x":-17.1197,"y":1.6793,"z":7.5693},"rot":{"x":359.9201,"y":270.0259,"z":0.0168}},"5c6382":{"lock":false,"pos":{"x":-30.2242,"y":1.6954,"z":-0.03},"rot":{"x":359.9201,"y":269.9988,"z":0.0169}},"606a09":{"lock":false,"pos":{"x":-2.7247,"y":1.6566,"z":0.3733},"rot":{"x":359.9197,"y":270.0038,"z":0.0168}},"7234af":{"lock":false,"pos":{"x":-20.2921,"y":1.6121,"z":7.6889},"rot":{"x":359.9201,"y":269.999,"z":0.0169}},"73166d":{"lock":false,"pos":{"x":-18.2906,"y":1.6058,"z":-4.1087},"rot":{"x":359.9831,"y":-0.0001,"z":359.92}},"770021":{"lock":false,"pos":{"x":-3.9576,"y":1.5826,"z":-15.002},"rot":{"x":359.9197,"y":270.0031,"z":0.0168}},"798446":{"lock":false,"pos":{"x":-3.9276,"y":1.7717,"z":5.7571},"rot":{"x":359.9197,"y":270.0003,"z":180.0168}},"7ceffc":{"lock":false,"pos":{"x":-27.2793,"y":1.6208,"z":4.1298},"rot":{"x":359.9747,"y":210,"z":0.0776}},"867f7f":{"lock":false,"pos":{"x":-7.9963,"y":1.6677,"z":-10.2322},"rot":{"x":359.9205,"y":270.0005,"z":180.0168}},"95af1f":{"lock":false,"pos":{"x":-21.6146,"y":1.6106,"z":-3.3979},"rot":{"x":359.9454,"y":330.0002,"z":359.9392}},"a45247":{"lock":false,"pos":{"x":1.6948,"y":1.5583,"z":14.2793},"rot":{"x":359.9551,"y":224.998,"z":0.0687}},"a58bd7":{"lock":false,"pos":{"x":-20.7598,"y":1.6106,"z":0.3824},"rot":{"x":359.9201,"y":269.9947,"z":0.0169}},"a61a93":{"lock":false,"pos":{"x":-30.2243,"y":1.6931,"z":-7.7},"rot":{"x":359.9201,"y":269.9889,"z":0.0169}},"e2e8f6":{"lock":false,"pos":{"x":-3.956,"y":1.6585,"z":-10.4412},"rot":{"x":359.9197,"y":270.0003,"z":180.0168}},"e352b7":{"lock":false,"pos":{"x":-26.9942,"y":1.6191,"z":-0.0584},"rot":{"x":359.9201,"y":269.9945,"z":0.0169}},"e43485":{"lock":false,"pos":{"x":-18.2907,"y":1.6081,"z":3.5813},"rot":{"x":359.9831,"y":0.0001,"z":359.92}},"eaa106":{"lock":false,"pos":{"x":-20.6331,"y":1.608,"z":-7.6028},"rot":{"x":359.9201,"y":269.9839,"z":0.0169}},"ee99b2":{"lock":false,"pos":{"x":-30.2243,"y":1.6225,"z":-3.83},"rot":{"x":359.9831,"y":0.0001,"z":359.92}},"f7021e":{"lock":false,"pos":{"x":-17.1199,"y":1.6771,"z":-0.03},"rot":{"x":359.9201,"y":269.9989,"z":0.0169}},"f7040b":{"lock":false,"pos":{"x":-50.9244,"y":1.7294,"z":8.1784},"rot":{"x":359.9201,"y":270.0003,"z":180.0169}}}}' +MaterialIndex: -1 +MeshIndex: -1 +Name: Bag +Nickname: '1: Dark Reflections' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 9.631792 + posY: 1.28495216 + posZ: 6.37034559 + rotX: 0.07992753 + rotY: 89.99231 + rotZ: 359.9831 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Into the Shadowlands 019847/Bag 1 Dark Reflections c1aad0/Card Miskatonic Museum 05413a.yaml new file mode 100644 index 000000000..0acc58d14 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Into the Shadowlands 019847/Bag 1 Dark Reflections c1aad0/Card Miskatonic Museum 05413a.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 211 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949597535528324466/C38ED4DA300A7B4F4AD70DA6B1B3562D91EF58E9/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949597535528323680/6FFB1DAD1406AB6D0464A50C2E28172BFCFEAE0D/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Arkham. +GMNotes: '' +GUID: 05413a +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Miskatonic Museum +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -23.6766014 + posY: 1.683962 + posZ: -7.7000227 + rotX: 359.9201 + rotY: 270.027527 + rotZ: 0.0168377385 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Into the Shadowlands 019847/Bag 1 Dark Reflections c1aad0/Card Northside Church f7021e.yaml new file mode 100644 index 000000000..71813a00d --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Into the Shadowlands 019847/Bag 1 Dark Reflections c1aad0/Card Northside Church f7021e.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 208 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949597535528324466/C38ED4DA300A7B4F4AD70DA6B1B3562D91EF58E9/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949597535528323680/6FFB1DAD1406AB6D0464A50C2E28172BFCFEAE0D/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Arkham. +GMNotes: '' +GUID: f7021e +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Northside Church +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -17.1199341 + posY: 1.67707765 + posZ: -0.0300320163 + rotX: 359.9201 + rotY: 269.9989 + rotZ: 0.0168779828 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Into the Shadowlands 019847/Bag 1 Dark Reflections c1aad0/Card Police Station 5c6382.yaml new file mode 100644 index 000000000..3618ba712 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Into the Shadowlands 019847/Bag 1 Dark Reflections c1aad0/Card Police Station 5c6382.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 213 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949597535528324466/C38ED4DA300A7B4F4AD70DA6B1B3562D91EF58E9/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949597535528323680/6FFB1DAD1406AB6D0464A50C2E28172BFCFEAE0D/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Arkham. +GMNotes: '' +GUID: 5c6382 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Police Station +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -30.2241573 + posY: 1.69535065 + posZ: -0.0300260428 + rotX: 359.9201 + rotY: 269.99884 + rotZ: 0.0168775227 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Into the Shadowlands 019847/Bag 1 Dark Reflections c1aad0/Card Ravenshark Manor a61a93.yaml new file mode 100644 index 000000000..b2b21b4aa --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Into the Shadowlands 019847/Bag 1 Dark Reflections c1aad0/Card Ravenshark Manor a61a93.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 212 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949597535528324466/C38ED4DA300A7B4F4AD70DA6B1B3562D91EF58E9/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949597535528323680/6FFB1DAD1406AB6D0464A50C2E28172BFCFEAE0D/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Arkham. Estate. +GMNotes: '' +GUID: a61a93 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Ravenshark Manor +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -30.2243328 + posY: 1.69309235 + posZ: -7.699996 + rotX: 359.9201 + rotY: 269.9889 + rotZ: 0.016891744 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Into the Shadowlands 019847/Bag 1 Dark Reflections c1aad0/Card Scenario e2e8f6.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Into the Shadowlands 019847/Bag 1 Dark Reflections c1aad0/Card Scenario e2e8f6.yaml new file mode 100644 index 000000000..566a0a946 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Into the Shadowlands 019847/Bag 1 Dark Reflections c1aad0/Card Scenario e2e8f6.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 205 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949597535528324466/C38ED4DA300A7B4F4AD70DA6B1B3562D91EF58E9/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949597535528323680/6FFB1DAD1406AB6D0464A50C2E28172BFCFEAE0D/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Dark Reflections +GMNotes: '' +GUID: e2e8f6 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Scenario +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.955957 + posY: 1.658471 + posZ: -10.4411526 + rotX: 359.919739 + rotY: 270.0003 + rotZ: 180.016815 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Into the Shadowlands 019847/Bag 1 Dark Reflections c1aad0/Card Scenario f7040b.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Into the Shadowlands 019847/Bag 1 Dark Reflections c1aad0/Card Scenario f7040b.yaml new file mode 100644 index 000000000..69483bbf4 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Into the Shadowlands 019847/Bag 1 Dark Reflections c1aad0/Card Scenario f7040b.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 205 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949597535528324466/C38ED4DA300A7B4F4AD70DA6B1B3562D91EF58E9/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949597535528323680/6FFB1DAD1406AB6D0464A50C2E28172BFCFEAE0D/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Dark Reflections +GMNotes: '' +GUID: f7040b +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Scenario +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -50.9243851 + posY: 1.7294482 + posZ: 8.178432 + rotX: 359.9201 + rotY: 270.0003 + rotZ: 180.016861 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Into the Shadowlands 019847/Bag 1 Dark Reflections c1aad0/Card The Carrier Hotel 429d37.yaml new file mode 100644 index 000000000..58c2c88c7 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Into the Shadowlands 019847/Bag 1 Dark Reflections c1aad0/Card The Carrier Hotel 429d37.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 207 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949597535528324466/C38ED4DA300A7B4F4AD70DA6B1B3562D91EF58E9/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949597535528323680/6FFB1DAD1406AB6D0464A50C2E28172BFCFEAE0D/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Arkham. +GMNotes: '' +GUID: 429d37 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: The Carrier Hotel +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -23.6732445 + posY: 1.68845379 + posZ: 7.57032633 + rotX: 359.9201 + rotY: 270.026428 + rotZ: 0.0168392565 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Into the Shadowlands 019847/Bag 1 Dark Reflections c1aad0/Card Town Center 571a98.yaml new file mode 100644 index 000000000..9a7c438f2 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Into the Shadowlands 019847/Bag 1 Dark Reflections c1aad0/Card Town Center 571a98.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 209 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949597535528324466/C38ED4DA300A7B4F4AD70DA6B1B3562D91EF58E9/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949597535528323680/6FFB1DAD1406AB6D0464A50C2E28172BFCFEAE0D/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Arkham. Central. +GMNotes: '' +GUID: 571a98 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Town Center +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -23.6754856 + posY: 1.68621874 + posZ: -0.03055016 + rotX: 359.9201 + rotY: 270.006165 + rotZ: 0.016867755 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Into the Shadowlands 019847/Bag 1 Dark Reflections c1aad0/Card Train Terminal 5a913d.yaml new file mode 100644 index 000000000..1a594b5c4 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Into the Shadowlands 019847/Bag 1 Dark Reflections c1aad0/Card Train Terminal 5a913d.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 206 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949597535528324466/C38ED4DA300A7B4F4AD70DA6B1B3562D91EF58E9/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949597535528323680/6FFB1DAD1406AB6D0464A50C2E28172BFCFEAE0D/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Arkham. Train. +GMNotes: '' +GUID: 5a913d +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Train Terminal +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -17.1197014 + posY: 1.67931509 + posZ: 7.56929874 + rotX: 359.9201 + rotY: 270.02594 + rotZ: 0.0168408975 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Into the Shadowlands 019847/Bag 1 Dark Reflections c1aad0/Card Warehouse District 584b5d.yaml new file mode 100644 index 000000000..de275d7b3 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Into the Shadowlands 019847/Bag 1 Dark Reflections c1aad0/Card Warehouse District 584b5d.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 210 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949597535528324466/C38ED4DA300A7B4F4AD70DA6B1B3562D91EF58E9/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949597535528323680/6FFB1DAD1406AB6D0464A50C2E28172BFCFEAE0D/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Arkham. +GMNotes: '' +GUID: 584b5d +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Warehouse District +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -17.1200047 + posY: 1.67481923 + posZ: -7.700024 + rotX: 359.9201 + rotY: 269.9992 + rotZ: 0.0168764144 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Into the Shadowlands 019847/Bag 1 Dark Reflections c1aad0/Custom_Model_Bag Set-aside a45247.yaml new file mode 100644 index 000000000..537d61ba7 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Into the Shadowlands 019847/Bag 1 Dark Reflections c1aad0/Custom_Model_Bag Set-aside a45247.yaml @@ -0,0 +1,59 @@ +Autoraise: true +ColorDiffuse: + b: 0.02148666 + g: 0.00100758043 + r: 0.02148666 +ContainedObjects: +- !include 'Custom_Model_Bag Set-aside a45247/Card Emissary of El''gahath ed9b36.yaml' +- !include 'Custom_Model_Bag Set-aside a45247/Card Amunet''s Tome b272b0.yaml' +- !include 'Custom_Model_Bag Set-aside a45247/Card Sword of the Undying 656307.yaml' +- !include 'Custom_Model_Bag Set-aside a45247/Deck Investigator cards f4ecae.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: Dark Reflections +GMNotes: '' +GUID: a45247 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +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.69481611 + posY: 1.558321 + posZ: 14.2792749 + rotX: 359.955139 + rotY: 224.998016 + rotZ: 0.06867265 + scaleX: 2.0 + scaleY: 2.0 + scaleZ: 2.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Into the Shadowlands 019847/Bag 1 Dark Reflections c1aad0/Custom_Model_Bag Set-aside a45247/Card Amunet's Tome b272b0.yaml new file mode 100644 index 000000000..6109a7375 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Into the Shadowlands 019847/Bag 1 Dark Reflections c1aad0/Custom_Model_Bag Set-aside a45247/Card Amunet's Tome b272b0.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 265100 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2651': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949597535528318308/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949597535528317821/A3188473F667022D15EA7169649DFE19C65AC76E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: Francis Stern Translation +GMNotes: '' +GUID: b272b0 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Amunet's Tome +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -40.399765 + posY: 3.37373853 + posZ: 56.83049 + rotX: 359.9831 + rotY: 90.0 + rotZ: 359.9866 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/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 new file mode 100644 index 000000000..dc510c462 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/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 @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 267003 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2670': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949597535528321567/A372A735C4BCA35FE128AD9388BD116ECDC282F0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949597535528320717/8B359608A535F0912CB2BC638641D9411224929E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: Dark Messenger +GMNotes: '' +GUID: ed9b36 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Emissary of El'gahath +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -40.6237221 + posY: 3.37364149 + posZ: 56.8382 + rotX: 0.018154243 + rotY: 270.0 + rotZ: 0.0133423265 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/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 new file mode 100644 index 000000000..a99042117 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/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 @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 265101 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2651': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949597535528318308/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949597535528317821/A3188473F667022D15EA7169649DFE19C65AC76E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: The Enchanted Blade +GMNotes: '' +GUID: '656307' +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Sword of the Undying +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -40.13412 + posY: 3.37375426 + posZ: 56.47171 + rotX: 0.0209009945 + rotY: 269.999084 + rotZ: 0.0168623831 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Into the Shadowlands 019847/Bag 1 Dark Reflections c1aad0/Custom_Model_Bag Set-aside a45247/Deck Investigator cards f4ecae.yaml new file mode 100644 index 000000000..9932629c0 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Into the Shadowlands 019847/Bag 1 Dark Reflections c1aad0/Custom_Model_Bag Set-aside a45247/Deck Investigator cards f4ecae.yaml @@ -0,0 +1,387 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 265102 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2651': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949597535528318308/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949597535528317821/A3188473F667022D15EA7169649DFE19C65AC76E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: '656307' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -37.08493 + posY: 1.32748783 + posZ: 66.470314 + rotX: 0.0150602451 + rotY: 269.995026 + rotZ: 0.0174605548 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265103 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2651': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949597535528318308/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949597535528317821/A3188473F667022D15EA7169649DFE19C65AC76E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: '471700' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -37.03962 + posY: 1.46755636 + posZ: 66.38759 + rotX: 0.01791549 + rotY: 270.006317 + rotZ: 0.0315750428 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265104 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2651': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949597535528318308/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949597535528317821/A3188473F667022D15EA7169649DFE19C65AC76E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: '656307' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -36.97568 + posY: 1.48534083 + posZ: 66.15706 + rotX: 0.01359783 + rotY: 269.988159 + rotZ: 0.0183755588 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265105 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2651': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949597535528318308/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949597535528317821/A3188473F667022D15EA7169649DFE19C65AC76E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: '656307' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -36.9828453 + posY: 1.47157383 + posZ: 66.05586 + rotX: 0.0179453362 + rotY: 270.003723 + rotZ: 0.0185152311 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265106 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2651': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949597535528318308/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949597535528317821/A3188473F667022D15EA7169649DFE19C65AC76E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: '656307' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -37.0275345 + posY: 1.4695363 + posZ: 66.02856 + rotX: 0.0177014209 + rotY: 270.003662 + rotZ: 0.01866151 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265107 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2651': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949597535528318308/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949597535528317821/A3188473F667022D15EA7169649DFE19C65AC76E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: '656307' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -37.0416641 + posY: 1.47209787 + posZ: 66.061676 + rotX: 0.0186633784 + rotY: 270.000824 + rotZ: 0.0274949148 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265108 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2651': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949597535528318308/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949597535528317821/A3188473F667022D15EA7169649DFE19C65AC76E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 1d6c17 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -36.9120445 + posY: 1.47718835 + posZ: 66.0919 + rotX: 0.0190055873 + rotY: 269.99527 + rotZ: 0.0150180869 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265109 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2651': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949597535528318308/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949597535528317821/A3188473F667022D15EA7169649DFE19C65AC76E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: '656307' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -36.996048 + posY: 1.48363161 + posZ: 66.2046661 + rotX: 0.0190708786 + rotY: 270.002319 + rotZ: 0.0175275654 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2651': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949597535528318308/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949597535528317821/A3188473F667022D15EA7169649DFE19C65AC76E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 265102 +- 265103 +- 265104 +- 265105 +- 265106 +- 265107 +- 265108 +- 265109 +Description: '' +GMNotes: '' +GUID: f4ecae +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Investigator cards +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -35.06132 + posY: 3.35678673 + posZ: 54.5573845 + rotX: 0.0209673289 + rotY: 270.004547 + rotZ: 0.0168503225 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Into the Shadowlands 019847/Bag 1 Dark Reflections c1aad0/Custom_Tile 12e23d.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Into the Shadowlands 019847/Bag 1 Dark Reflections c1aad0/Custom_Tile 12e23d.yaml new file mode 100644 index 000000000..215f21e64 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Into the Shadowlands 019847/Bag 1 Dark Reflections c1aad0/Custom_Tile 12e23d.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 12e23d +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: -24.838295 + posY: 1.6149261 + posZ: -4.108733 + rotX: 359.983124 + rotY: 3.760236e-05 + rotZ: 359.920044 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Into the Shadowlands 019847/Bag 1 Dark Reflections c1aad0/Custom_Tile 4d6b03.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Into the Shadowlands 019847/Bag 1 Dark Reflections c1aad0/Custom_Tile 4d6b03.yaml new file mode 100644 index 000000000..db1c4d8b9 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Into the Shadowlands 019847/Bag 1 Dark Reflections c1aad0/Custom_Tile 4d6b03.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 4d6b03 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.081583 + posY: 1.61702383 + posZ: -7.60726452 + rotX: 359.9201 + rotY: 269.994568 + rotZ: 0.0169175062 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Into the Shadowlands 019847/Bag 1 Dark Reflections c1aad0/Custom_Tile 7234af.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Into the Shadowlands 019847/Bag 1 Dark Reflections c1aad0/Custom_Tile 7234af.yaml new file mode 100644 index 000000000..5a9584da6 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Into the Shadowlands 019847/Bag 1 Dark Reflections c1aad0/Custom_Tile 7234af.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 7234af +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.2920647 + posY: 1.61206031 + posZ: 7.68886948 + rotX: 359.9201 + rotY: 269.999023 + rotZ: 0.0168965328 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Into the Shadowlands 019847/Bag 1 Dark Reflections c1aad0/Custom_Tile 73166d.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Into the Shadowlands 019847/Bag 1 Dark Reflections c1aad0/Custom_Tile 73166d.yaml new file mode 100644 index 000000000..efb12c8a7 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Into the Shadowlands 019847/Bag 1 Dark Reflections c1aad0/Custom_Tile 73166d.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 73166d +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: -18.2905731 + posY: 1.60579562 + posZ: -4.108734 + rotX: 359.983124 + rotY: -5.845913e-05 + rotZ: 359.920044 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Into the Shadowlands 019847/Bag 1 Dark Reflections c1aad0/Custom_Tile 7ceffc.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Into the Shadowlands 019847/Bag 1 Dark Reflections c1aad0/Custom_Tile 7ceffc.yaml new file mode 100644 index 000000000..16d1c39d1 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Into the Shadowlands 019847/Bag 1 Dark Reflections c1aad0/Custom_Tile 7ceffc.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 7ceffc +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.2793465 + posY: 1.62075555 + posZ: 4.129792 + rotX: 359.97467 + rotY: 209.999969 + rotZ: 0.0776291862 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Into the Shadowlands 019847/Bag 1 Dark Reflections c1aad0/Custom_Tile 95af1f.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Into the Shadowlands 019847/Bag 1 Dark Reflections c1aad0/Custom_Tile 95af1f.yaml new file mode 100644 index 000000000..9325180ec --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Into the Shadowlands 019847/Bag 1 Dark Reflections c1aad0/Custom_Tile 95af1f.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 95af1f +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: -21.6145668 + posY: 1.61063993 + posZ: -3.39789534 + rotX: 359.945435 + rotY: 330.000183 + rotZ: 359.9392 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Into the Shadowlands 019847/Bag 1 Dark Reflections c1aad0/Custom_Tile a58bd7.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Into the Shadowlands 019847/Bag 1 Dark Reflections c1aad0/Custom_Tile a58bd7.yaml new file mode 100644 index 000000000..0e9180f73 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Into the Shadowlands 019847/Bag 1 Dark Reflections c1aad0/Custom_Tile a58bd7.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: a58bd7 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.7598038 + posY: 1.61056113 + posZ: 0.382433683 + rotX: 359.9201 + rotY: 269.9947 + rotZ: 0.0169061869 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Into the Shadowlands 019847/Bag 1 Dark Reflections c1aad0/Custom_Tile e352b7.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Into the Shadowlands 019847/Bag 1 Dark Reflections c1aad0/Custom_Tile e352b7.yaml new file mode 100644 index 000000000..84ff5288d --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Into the Shadowlands 019847/Bag 1 Dark Reflections c1aad0/Custom_Tile e352b7.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: e352b7 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.9942074 + posY: 1.61912465 + posZ: -0.0583918951 + rotX: 359.9201 + rotY: 269.994537 + rotZ: 0.0169181731 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Into the Shadowlands 019847/Bag 1 Dark Reflections c1aad0/Custom_Tile e43485.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Into the Shadowlands 019847/Bag 1 Dark Reflections c1aad0/Custom_Tile e43485.yaml new file mode 100644 index 000000000..45468e2bd --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Into the Shadowlands 019847/Bag 1 Dark Reflections c1aad0/Custom_Tile e43485.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: e43485 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: -18.2906723 + posY: 1.60806012 + posZ: 3.581287 + rotX: 359.983124 + rotY: 5.45365838e-05 + rotZ: 359.920044 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Into the Shadowlands 019847/Bag 1 Dark Reflections c1aad0/Custom_Tile eaa106.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Into the Shadowlands 019847/Bag 1 Dark Reflections c1aad0/Custom_Tile eaa106.yaml new file mode 100644 index 000000000..a7d0e8930 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Into the Shadowlands 019847/Bag 1 Dark Reflections c1aad0/Custom_Tile eaa106.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: eaa106 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.6331272 + posY: 1.60803306 + posZ: -7.602814 + rotX: 359.9201 + rotY: 269.983917 + rotZ: 0.0169206876 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Into the Shadowlands 019847/Bag 1 Dark Reflections c1aad0/Custom_Tile ee99b2.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Into the Shadowlands 019847/Bag 1 Dark Reflections c1aad0/Custom_Tile ee99b2.yaml new file mode 100644 index 000000000..030a40792 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Into the Shadowlands 019847/Bag 1 Dark Reflections c1aad0/Custom_Tile ee99b2.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: ee99b2 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.22426 + posY: 1.62251866 + posZ: -3.8299942 + rotX: 359.983124 + rotY: 7.38868839e-05 + rotZ: 359.920044 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Into the Shadowlands 019847/Bag 1 Dark Reflections c1aad0/Custom_Tile Into the Shadowlands 770021.ttslua new file mode 100644 index 000000000..96b1aaa66 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Into the Shadowlands 019847/Bag 1 Dark Reflections c1aad0/Custom_Tile Into the Shadowlands 770021.ttslua @@ -0,0 +1,21 @@ +name = 'Into the Shadowlands' + +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 791837/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 791837/Custom_Model_Bag Into the Shadowlands 019847/Bag 1 Dark Reflections c1aad0/Custom_Tile Into the Shadowlands 770021.yaml new file mode 100644 index 000000000..0155a869b --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Into the Shadowlands 019847/Bag 1 Dark Reflections c1aad0/Custom_Tile Into the Shadowlands 770021.yaml @@ -0,0 +1,42 @@ +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 +GMNotes: '' +GUID: '770021' +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Tile Into the Shadowlands 770021.ttslua' +LuaScriptState: '' +Name: Custom_Tile +Nickname: Into the Shadowlands +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.9576292 + posY: 1.58259678 + posZ: -15.0019588 + rotX: 359.919739 + rotY: 270.003052 + rotZ: 0.01683419 + scaleX: 2.2 + scaleY: 1.0 + scaleZ: 2.2 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Into the Shadowlands 019847/Bag 1 Dark Reflections c1aad0/Deck Act Deck 4415a4.yaml new file mode 100644 index 000000000..fc37d1145 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Into the Shadowlands 019847/Bag 1 Dark Reflections c1aad0/Deck Act Deck 4415a4.yaml @@ -0,0 +1,172 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 266705 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2667': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/949597535528305760/DAF375514D3F7E3B6BBE0D107F77CFE8E72FA03D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949597535528304349/E78D528941F163C07C9BB0BA66BC30FCCD570A76/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 3 + GMNotes: '' + GUID: a9e1fd + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Tempest + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -28.0680618 + posY: 1.32776666 + posZ: 56.1198959 + rotX: 0.0168949962 + rotY: 269.972839 + rotZ: 0.0262097381 + 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: http://cloud-3.steamusercontent.com/ugc/949597535528305760/DAF375514D3F7E3B6BBE0D107F77CFE8E72FA03D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949597535528304349/E78D528941F163C07C9BB0BA66BC30FCCD570A76/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 2 + GMNotes: '' + GUID: 079c62 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Trouble in the Muesum... again. + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -27.9829559 + posY: 1.46836567 + posZ: 56.296917 + rotX: 0.009922866 + rotY: 269.925079 + rotZ: 0.0370252468 + 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: http://cloud-3.steamusercontent.com/ugc/949597535528305760/DAF375514D3F7E3B6BBE0D107F77CFE8E72FA03D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949597535528304349/E78D528941F163C07C9BB0BA66BC30FCCD570A76/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 1 + GMNotes: '' + GUID: 158ad2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Welcome Home + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -28.2641277 + posY: 1.48551965 + posZ: 56.11484 + rotX: 0.0259208027 + rotY: 270.018341 + rotZ: 0.0151368482 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2667': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/949597535528305760/DAF375514D3F7E3B6BBE0D107F77CFE8E72FA03D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949597535528304349/E78D528941F163C07C9BB0BA66BC30FCCD570A76/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 266705 +- 266704 +- 266703 +Description: Dark Reflections +GMNotes: '' +GUID: 4415a4 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Act Deck +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.68847632 + posY: 1.65499723 + posZ: -5.04854155 + rotX: 359.919739 + rotY: 269.980072 + rotZ: 0.0168665778 + scaleX: 0.7 + scaleY: 1.0 + scaleZ: 0.7 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Into the Shadowlands 019847/Bag 1 Dark Reflections c1aad0/Deck Agenda Deck 606a09.yaml new file mode 100644 index 000000000..17b5f84c0 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Into the Shadowlands 019847/Bag 1 Dark Reflections c1aad0/Deck Agenda Deck 606a09.yaml @@ -0,0 +1,179 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 266702 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2667': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/949597535528305760/DAF375514D3F7E3B6BBE0D107F77CFE8E72FA03D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949597535528304349/E78D528941F163C07C9BB0BA66BC30FCCD570A76/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Acenda 3 + GMNotes: '' + GUID: a6220e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Void Beckons + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -28.0025024 + posY: 1.326005 + posZ: 50.20625 + rotX: 0.0157393124 + rotY: 270.000427 + rotZ: 0.0158851761 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 266701 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2667': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/949597535528305760/DAF375514D3F7E3B6BBE0D107F77CFE8E72FA03D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949597535528304349/E78D528941F163C07C9BB0BA66BC30FCCD570A76/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Acenda 2 + GMNotes: '' + GUID: af5497 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Dark Ones + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -28.04215 + posY: 1.46611571 + posZ: 49.90708 + rotX: 0.0229975488 + rotY: 270.000061 + rotZ: 0.0152661782 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 270400 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2668': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/949597535532228860/D9FB13867F78EE60E97FF63FF7A158208F3FB7B7/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949597535532228429/86F6C3BD12B9B7A68F6351F855C0526473992576/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Acenda 1 + GMNotes: '' + GUID: 255b55 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Strangers in a Familiar Land + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -27.9474735 + posY: 1.48388529 + posZ: 50.19055 + rotX: 0.02353338 + rotY: 269.9848 + rotZ: 0.0156395752 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2667': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/949597535528305760/DAF375514D3F7E3B6BBE0D107F77CFE8E72FA03D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949597535528304349/E78D528941F163C07C9BB0BA66BC30FCCD570A76/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + '2704': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/949597535532228860/D9FB13867F78EE60E97FF63FF7A158208F3FB7B7/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949597535532228429/86F6C3BD12B9B7A68F6351F855C0526473992576/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 266702 +- 266701 +- 270400 +Description: Dark Reflections +GMNotes: '' +GUID: 606a09 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Agenda Deck +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.72465658 + posY: 1.65664113 + posZ: 0.3733143 + rotX: 359.919739 + rotY: 270.003784 + rotZ: 0.0168336667 + scaleX: 0.7 + scaleY: 1.0 + scaleZ: 0.7 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Into the Shadowlands 019847/Bag 1 Dark Reflections c1aad0/Deck Dark Mirror 867f7f.yaml new file mode 100644 index 000000000..de6f1f1c7 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Into the Shadowlands 019847/Bag 1 Dark Reflections c1aad0/Deck Dark Mirror 867f7f.yaml @@ -0,0 +1,215 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 270601 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2669': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949597535528321567/A372A735C4BCA35FE128AD9388BD116ECDC282F0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949597535528320717/8B359608A535F0912CB2BC638641D9411224929E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Consumed By Fire + GMNotes: '' + GUID: 963c63 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Roland Banks + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -42.2054863 + posY: 1.32741761 + posZ: 72.2984543 + rotX: 0.0208083149 + rotY: 269.999817 + rotZ: 0.0167735945 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 270600 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2669': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949597535528321567/A372A735C4BCA35FE128AD9388BD116ECDC282F0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949597535528320717/8B359608A535F0912CB2BC638641D9411224929E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Memories of Razor Sharp Teeth + GMNotes: '' + GUID: ed9b36 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Daisy Walker + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -42.4656677 + posY: 1.32666278 + posZ: 70.04241 + rotX: 0.0208080374 + rotY: 269.999451 + rotZ: 0.0167710111 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 270604 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2669': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949597535528321567/A372A735C4BCA35FE128AD9388BD116ECDC282F0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949597535528320717/8B359608A535F0912CB2BC638641D9411224929E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Wanderer in Carcosa + GMNotes: '' + GUID: 88c6dc + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Lola Hayes + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -45.9623146 + posY: 1.32434916 + posZ: 66.47704 + rotX: 0.02080694 + rotY: 269.999939 + rotZ: 0.0167733617 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 270605 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2669': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949597535528321567/A372A735C4BCA35FE128AD9388BD116ECDC282F0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949597535528320717/8B359608A535F0912CB2BC638641D9411224929E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Eixodolon's New Pet + GMNotes: '' + GUID: 2aad5f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: William Yorick + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -42.0890121 + posY: 1.32575166 + posZ: 66.46231 + rotX: 0.0208097044 + rotY: 269.999817 + rotZ: 0.016765926 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2706': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949597535528321567/A372A735C4BCA35FE128AD9388BD116ECDC282F0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949597535528320717/8B359608A535F0912CB2BC638641D9411224929E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 270601 +- 270600 +- 270604 +- 270605 +Description: Dark Reflections +GMNotes: '' +GUID: 867f7f +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Dark Mirror +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -7.996262 + posY: 1.66773641 + posZ: -10.2321711 + rotX: 359.920532 + rotY: 270.0005 + rotZ: 180.016785 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Into the Shadowlands 019847/Bag 1 Dark Reflections c1aad0/Deck Encounter Deck 798446.yaml new file mode 100644 index 000000000..f5da123ea --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Into the Shadowlands 019847/Bag 1 Dark Reflections c1aad0/Deck Encounter Deck 798446.yaml @@ -0,0 +1,1333 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 270506 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2671': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949597535528321567/A372A735C4BCA35FE128AD9388BD116ECDC282F0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949597535528320717/8B359608A535F0912CB2BC638641D9411224929E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: a5bbac + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dizzying Stupor + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -44.2316551 + posY: 1.32310534 + posZ: 60.0801277 + rotX: 0.0208069049 + rotY: 270.0028 + rotZ: 0.0167736784 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 270506 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2671': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949597535528321567/A372A735C4BCA35FE128AD9388BD116ECDC282F0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949597535528320717/8B359608A535F0912CB2BC638641D9411224929E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: 312c65 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dizzying Stupor + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -43.9486 + posY: 1.3223325 + posZ: 57.08883 + rotX: 0.0208089445 + rotY: 270.0 + rotZ: 0.0167728271 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 270506 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2671': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949597535528321567/A372A735C4BCA35FE128AD9388BD116ECDC282F0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949597535528320717/8B359608A535F0912CB2BC638641D9411224929E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: a716c8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dizzying Stupor + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -44.1328239 + posY: 1.32120717 + posZ: 53.4730072 + rotX: 0.0208075363 + rotY: 270.00293 + rotZ: 0.0167722926 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 270502 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2671': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949597535528321567/A372A735C4BCA35FE128AD9388BD116ECDC282F0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949597535528320717/8B359608A535F0912CB2BC638641D9411224929E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: c0ae46 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dimension Barriers + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -44.27514 + posY: 1.46719277 + posZ: 59.9601936 + rotX: 0.0197458882 + rotY: 270.000671 + rotZ: 0.0176220573 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 270502 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2671': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949597535528321567/A372A735C4BCA35FE128AD9388BD116ECDC282F0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949597535528320717/8B359608A535F0912CB2BC638641D9411224929E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: c0ae46 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dimension Barriers + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -44.359642 + posY: 1.47038484 + posZ: 60.29486 + rotX: 0.0199658889 + rotY: 270.000732 + rotZ: 0.0147504769 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 270502 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2671': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949597535528321567/A372A735C4BCA35FE128AD9388BD116ECDC282F0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949597535528320717/8B359608A535F0912CB2BC638641D9411224929E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: c0ae46 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dimension Barriers + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -44.359642 + posY: 1.47251344 + posZ: 60.294857 + rotX: 0.0199786462 + rotY: 270.000671 + rotZ: 0.0147915287 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 270514 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2671': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949597535528321567/A372A735C4BCA35FE128AD9388BD116ECDC282F0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949597535528320717/8B359608A535F0912CB2BC638641D9411224929E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: a5710a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Shadow Touched + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -44.15036 + posY: 1.472775 + posZ: 59.7334747 + rotX: 0.0190019943 + rotY: 270.018555 + rotZ: 0.0146078235 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 270514 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2671': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949597535528321567/A372A735C4BCA35FE128AD9388BD116ECDC282F0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949597535528320717/8B359608A535F0912CB2BC638641D9411224929E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: a5710a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Shadow Touched + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -43.7780037 + posY: 1.481402 + posZ: 59.9649124 + rotX: 0.0194078926 + rotY: 270.019379 + rotZ: 0.0163332969 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 270514 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2671': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949597535528321567/A372A735C4BCA35FE128AD9388BD116ECDC282F0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949597535528320717/8B359608A535F0912CB2BC638641D9411224929E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: a5710a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Shadow Touched + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -43.7779961 + posY: 1.44216824 + posZ: 59.96488 + rotX: 0.0206213742 + rotY: 270.019562 + rotZ: 0.0424007 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 270518 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2671': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949597535528321567/A372A735C4BCA35FE128AD9388BD116ECDC282F0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949597535528320717/8B359608A535F0912CB2BC638641D9411224929E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Curse. + GMNotes: '' + GUID: 31bbc7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Wracked by Guilt + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -44.1963043 + posY: 1.44626224 + posZ: 59.794 + rotX: 0.0148749668 + rotY: 270.014557 + rotZ: 0.0169192888 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 270518 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2671': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949597535528321567/A372A735C4BCA35FE128AD9388BD116ECDC282F0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949597535528320717/8B359608A535F0912CB2BC638641D9411224929E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Curse. + GMNotes: '' + GUID: 31bbc7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Wracked by Guilt + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -44.13492 + posY: 1.46283293 + posZ: 59.6412277 + rotX: 2.64539558e-05 + rotY: 270.01947 + rotZ: -2.40248119e-05 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 270516 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2671': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949597535528321567/A372A735C4BCA35FE128AD9388BD116ECDC282F0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949597535528320717/8B359608A535F0912CB2BC638641D9411224929E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Shadow. Monster. Wraith. + GMNotes: '' + GUID: 05b2f3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dark Echoes + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -43.9715576 + posY: 1.53334355 + posZ: 59.9125 + rotX: 357.318665 + rotY: 270.000732 + rotZ: 0.0184603333 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 270516 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2671': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949597535528321567/A372A735C4BCA35FE128AD9388BD116ECDC282F0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949597535528320717/8B359608A535F0912CB2BC638641D9411224929E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Shadow. Monster. Wraith. + GMNotes: '' + GUID: 05b2f3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dark Echoes + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -43.69133 + posY: 1.48796058 + posZ: 59.74885 + rotX: 359.258575 + rotY: 270.015656 + rotZ: 0.01093973 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 270516 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2671': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949597535528321567/A372A735C4BCA35FE128AD9388BD116ECDC282F0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949597535528320717/8B359608A535F0912CB2BC638641D9411224929E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Shadow. Monster. Wraith. + GMNotes: '' + GUID: 05b2f3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dark Echoes + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -43.6905975 + posY: 1.4910481 + posZ: 59.7487946 + rotX: 359.505066 + rotY: 270.017151 + rotZ: 0.01061299 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 270516 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2671': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949597535528321567/A372A735C4BCA35FE128AD9388BD116ECDC282F0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949597535528320717/8B359608A535F0912CB2BC638641D9411224929E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Shadow. Monster. Wraith. + GMNotes: '' + GUID: 05b2f3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dark Echoes + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -43.6898 + posY: 1.49413776 + posZ: 59.7487335 + rotX: 359.751221 + rotY: 270.018768 + rotZ: 0.0103493016 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 270507 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2671': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949597535528321567/A372A735C4BCA35FE128AD9388BD116ECDC282F0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949597535528320717/8B359608A535F0912CB2BC638641D9411224929E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Geist. Shadow. + GMNotes: '' + GUID: ed9b36 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Lurking Phantasm + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -44.07127 + posY: 1.50417793 + posZ: 59.7238159 + rotX: 0.02105652 + rotY: 269.9989 + rotZ: 0.01848895 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 270507 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2671': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949597535528321567/A372A735C4BCA35FE128AD9388BD116ECDC282F0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949597535528320717/8B359608A535F0912CB2BC638641D9411224929E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Geist. Shadow. + GMNotes: '' + GUID: ed9b36 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Lurking Phantasm + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -43.5308571 + posY: 1.509157 + posZ: 59.5315552 + rotX: 0.018139692 + rotY: 269.999023 + rotZ: 0.0229338426 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 270513 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2671': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949597535528321567/A372A735C4BCA35FE128AD9388BD116ECDC282F0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949597535528320717/8B359608A535F0912CB2BC638641D9411224929E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Shadow. Wraith. + GMNotes: '' + GUID: 014a59 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Nightmare Spirit + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -44.24588 + posY: 1.52353334 + posZ: 59.7504654 + rotX: 0.0173972622 + rotY: 270.0143 + rotZ: 0.0204511173 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 270509 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2671': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949597535528321567/A372A735C4BCA35FE128AD9388BD116ECDC282F0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949597535528320717/8B359608A535F0912CB2BC638641D9411224929E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Cultist. + GMNotes: '' + GUID: b2cd05 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Death Revelers + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -44.25087 + posY: 1.53318274 + posZ: 59.7609329 + rotX: 0.0202612784 + rotY: 269.997 + rotZ: 0.0171176363 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 270509 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2671': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949597535528321567/A372A735C4BCA35FE128AD9388BD116ECDC282F0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949597535528320717/8B359608A535F0912CB2BC638641D9411224929E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Cultist. + GMNotes: '' + GUID: b2cd05 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Death Revelers + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -44.55587 + posY: 1.53240526 + posZ: 59.9378 + rotX: 0.0199226849 + rotY: 269.996979 + rotZ: 0.01582824 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 270517 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2671': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949597535528321567/A372A735C4BCA35FE128AD9388BD116ECDC282F0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949597535528320717/8B359608A535F0912CB2BC638641D9411224929E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Curse. + GMNotes: '' + GUID: 40d269 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Negative Energy + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -44.10509 + posY: 1.55245948 + posZ: 59.6786423 + rotX: 0.0209965762 + rotY: 270.0191 + rotZ: 0.0190727618 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 270517 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2671': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949597535528321567/A372A735C4BCA35FE128AD9388BD116ECDC282F0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949597535528320717/8B359608A535F0912CB2BC638641D9411224929E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Curse. + GMNotes: '' + GUID: 40d269 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Negative Energy + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -44.41153 + posY: 1.55817592 + posZ: 59.41801 + rotX: 1.25370419 + rotY: 270.0523 + rotZ: 2.07514262 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 270515 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2671': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949597535528321567/A372A735C4BCA35FE128AD9388BD116ECDC282F0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949597535528320717/8B359608A535F0912CB2BC638641D9411224929E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Shadow. Monster. + GMNotes: '' + GUID: 4c9e67 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Shadow Rider + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -45.28637 + posY: 1.3212893 + posZ: 55.1850471 + rotX: 0.0208023861 + rotY: 270.021027 + rotZ: 0.0167810023 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 270515 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2671': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949597535528321567/A372A735C4BCA35FE128AD9388BD116ECDC282F0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949597535528320717/8B359608A535F0912CB2BC638641D9411224929E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Shadow. Monster. + GMNotes: '' + GUID: b41f35 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Shadow Rider + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -44.30166 + posY: 1.58154845 + posZ: 60.0555153 + rotX: 0.020506531 + rotY: 270.008179 + rotZ: 0.0162051972 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 270510 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2671': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949597535528321567/A372A735C4BCA35FE128AD9388BD116ECDC282F0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949597535528320717/8B359608A535F0912CB2BC638641D9411224929E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: 2ae40a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Twisting Reality + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -44.3016129 + posY: 1.32393479 + posZ: 63.0009232 + rotX: 0.0208087824 + rotY: 269.998749 + rotZ: 0.01677147 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 270510 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2671': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949597535528321567/A372A735C4BCA35FE128AD9388BD116ECDC282F0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949597535528320717/8B359608A535F0912CB2BC638641D9411224929E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: aa3c60 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Twisting Reality + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -47.86726 + posY: 1.32260847 + posZ: 62.8934021 + rotX: 0.0208101161 + rotY: 269.99884 + rotZ: 0.0167725161 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 270510 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2671': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949597535528321567/A372A735C4BCA35FE128AD9388BD116ECDC282F0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949597535528320717/8B359608A535F0912CB2BC638641D9411224929E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: '825286' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Twisting Reality + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -40.985733 + posY: 1.32515717 + posZ: 63.0625534 + rotX: 0.0208087228 + rotY: 269.998444 + rotZ: 0.0167740416 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 270519 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2671': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949597535528321567/A372A735C4BCA35FE128AD9388BD116ECDC282F0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949597535528320717/8B359608A535F0912CB2BC638641D9411224929E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: 044a59 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Void Within + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -46.01696 + posY: 1.31984508 + posZ: 51.15739 + rotX: 0.0208017752 + rotY: 270.018921 + rotZ: 0.0167857 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 270519 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2671': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949597535528321567/A372A735C4BCA35FE128AD9388BD116ECDC282F0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949597535528320717/8B359608A535F0912CB2BC638641D9411224929E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: 30a856 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Void Within + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -46.57891 + posY: 1.32052469 + posZ: 54.1765022 + rotX: 0.02080037 + rotY: 270.02652 + rotZ: 0.0167810339 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 270519 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2671': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949597535528321567/A372A735C4BCA35FE128AD9388BD116ECDC282F0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949597535528320717/8B359608A535F0912CB2BC638641D9411224929E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: f6f0c1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Void Within + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -42.04027 + posY: 1.32120109 + posZ: 50.85593 + rotX: 0.0208031069 + rotY: 270.0193 + rotZ: 0.0167797338 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2705': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949597535528321567/A372A735C4BCA35FE128AD9388BD116ECDC282F0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949597535528320717/8B359608A535F0912CB2BC638641D9411224929E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 270506 +- 270506 +- 270506 +- 270502 +- 270502 +- 270502 +- 270514 +- 270514 +- 270514 +- 270518 +- 270518 +- 270516 +- 270516 +- 270516 +- 270516 +- 270507 +- 270507 +- 270513 +- 270509 +- 270509 +- 270517 +- 270517 +- 270515 +- 270515 +- 270510 +- 270510 +- 270510 +- 270519 +- 270519 +- 270519 +Description: Dark Reflections +GMNotes: '' +GUID: '798446' +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Encounter Deck +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.92761445 + posY: 1.77170992 + posZ: 5.75714874 + rotX: 359.919739 + rotY: 270.0003 + rotZ: 180.016815 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Into the Shadowlands 019847/Bag 1 Dark Reflections c1aad0/Deck Set-upResolution 2c2a09.yaml new file mode 100644 index 000000000..5c0f4d906 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Into the Shadowlands 019847/Bag 1 Dark Reflections c1aad0/Deck Set-upResolution 2c2a09.yaml @@ -0,0 +1,301 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 204 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949597535528324466/C38ED4DA300A7B4F4AD70DA6B1B3562D91EF58E9/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949597535528323680/6FFB1DAD1406AB6D0464A50C2E28172BFCFEAE0D/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: e2e8f6 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.64116049 + posY: 1.03152359 + posZ: 2.967208 + rotX: 359.9901 + rotY: 179.986465 + rotZ: 359.994141 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 203 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949597535528324466/C38ED4DA300A7B4F4AD70DA6B1B3562D91EF58E9/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949597535528323680/6FFB1DAD1406AB6D0464A50C2E28172BFCFEAE0D/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: e2e8f6 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 5.47546244 + posY: 1.03160059 + posZ: 0.5550222 + rotX: 359.9928 + rotY: 180.00032 + rotZ: -0.004674257 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 202 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949597535528324466/C38ED4DA300A7B4F4AD70DA6B1B3562D91EF58E9/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949597535528323680/6FFB1DAD1406AB6D0464A50C2E28172BFCFEAE0D/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: e2e8f6 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.08715439 + posY: 1.031265 + posZ: 3.51068759 + rotX: 359.978729 + rotY: 180.000015 + rotZ: 359.99292 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 214 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949597535528324466/C38ED4DA300A7B4F4AD70DA6B1B3562D91EF58E9/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949597535528323680/6FFB1DAD1406AB6D0464A50C2E28172BFCFEAE0D/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: bbd386 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 25.3945866 + posY: 1.67935646 + posZ: -12.7408619 + rotX: 359.924347 + rotY: 269.999817 + rotZ: 180.045319 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 201 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949597535528324466/C38ED4DA300A7B4F4AD70DA6B1B3562D91EF58E9/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949597535528323680/6FFB1DAD1406AB6D0464A50C2E28172BFCFEAE0D/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 6c51f7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -12.3741884 + posY: 1.81879675 + posZ: 0.9374335 + rotX: 359.94223 + rotY: 270.0996 + rotZ: 179.970383 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 200 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949597535528324466/C38ED4DA300A7B4F4AD70DA6B1B3562D91EF58E9/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949597535528323680/6FFB1DAD1406AB6D0464A50C2E28172BFCFEAE0D/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 1fe386 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -12.4279594 + posY: 1.6733017 + posZ: 0.7046848 + rotX: 359.929 + rotY: 270.039429 + rotZ: 180.009842 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949597535528324466/C38ED4DA300A7B4F4AD70DA6B1B3562D91EF58E9/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949597535528323680/6FFB1DAD1406AB6D0464A50C2E28172BFCFEAE0D/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 204 +- 203 +- 202 +- 214 +- 201 +- 200 +Description: Dark Reflections +GMNotes: '' +GUID: 2c2a09 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Set-up/Resolution +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -12.3128166 + posY: 1.67233825 + posZ: 3.70162845 + rotX: 359.9201 + rotY: 269.985229 + rotZ: 0.016898524 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Into the Shadowlands 019847/Bag 2 Endless Horizons b1bc62.ttslua b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Into the Shadowlands 019847/Bag 2 Endless Horizons b1bc62.ttslua new file mode 100644 index 000000000..4acf9ea11 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Into the Shadowlands 019847/Bag 2 Endless Horizons b1bc62.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 791837/Custom_Model_Bag Into the Shadowlands 019847/Bag 2 Endless Horizons b1bc62.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Into the Shadowlands 019847/Bag 2 Endless Horizons b1bc62.yaml new file mode 100644 index 000000000..9ced2a557 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Into the Shadowlands 019847/Bag 2 Endless Horizons b1bc62.yaml @@ -0,0 +1,66 @@ +Autoraise: true +ColorDiffuse: + b: 0.0 + g: 0.0 + r: 0.7019608 +ContainedObjects: +- !include 'Bag 2 Endless Horizons b1bc62/Custom_Model_Bag Set-aside a45247.yaml' +- !include 'Bag 2 Endless Horizons b1bc62/Deck Encounter Deck f4c8b4.yaml' +- !include 'Bag 2 Endless Horizons b1bc62/Deck Agenda Deck 0cfc5e.yaml' +- !include 'Bag 2 Endless Horizons b1bc62/Deck Act Deck be5f41.yaml' +- !include 'Bag 2 Endless Horizons b1bc62/Card Scenario e2e8f6.yaml' +- !include 'Bag 2 Endless Horizons b1bc62/Deck Set-upResolution 2d5e7e.yaml' +- !include 'Bag 2 Endless Horizons b1bc62/Card Engine Room dd140d.yaml' +- !include 'Bag 2 Endless Horizons b1bc62/Custom_Tile a56075.yaml' +- !include 'Bag 2 Endless Horizons b1bc62/Card Promenade Deck 055225.yaml' +- !include 'Bag 2 Endless Horizons b1bc62/Custom_Tile 5f66f5.yaml' +- !include 'Bag 2 Endless Horizons b1bc62/Card Passenger Cabins 1f108d.yaml' +- !include 'Bag 2 Endless Horizons b1bc62/Card Dining Hall 72ea3f.yaml' +- !include 'Bag 2 Endless Horizons b1bc62/Custom_Tile 13be7c.yaml' +- !include 'Bag 2 Endless Horizons b1bc62/Custom_Tile 7234af.yaml' +- !include 'Bag 2 Endless Horizons b1bc62/Custom_Tile c6e194.yaml' +- !include 'Bag 2 Endless Horizons b1bc62/Custom_Tile 0cd242.yaml' +- !include 'Bag 2 Endless Horizons b1bc62/Card Foyer 036f4f.yaml' +- !include 'Bag 2 Endless Horizons b1bc62/Custom_Tile 2a77ff.yaml' +- !include 'Bag 2 Endless Horizons b1bc62/Card Purser''s Office 4daae5.yaml' +- !include 'Bag 2 Endless Horizons b1bc62/Custom_Tile c74e79.yaml' +- !include 'Bag 2 Endless Horizons b1bc62/Card Lounge 2826ac.yaml' +- !include 'Bag 2 Endless Horizons b1bc62/Custom_Tile f79023.yaml' +- !include 'Bag 2 Endless Horizons b1bc62/Card Regal Suites 7dd177.yaml' +- !include 'Bag 2 Endless Horizons b1bc62/Custom_Tile 883bf5.yaml' +- !include 'Bag 2 Endless Horizons b1bc62/Custom_Tile 920620.yaml' +- !include 'Bag 2 Endless Horizons b1bc62/Custom_Tile 8b7f2d.yaml' +- !include 'Bag 2 Endless Horizons b1bc62/Custom_Tile 75bfc2.yaml' +- !include 'Bag 2 Endless Horizons b1bc62/Card Entry Hall 61af07.yaml' +- !include 'Bag 2 Endless Horizons b1bc62/Custom_Tile 9b8784.yaml' +- !include 'Bag 2 Endless Horizons b1bc62/Card Navigation Bridge b4474e.yaml' +- !include 'Bag 2 Endless Horizons b1bc62/Card Scenario cbfed7.yaml' +Description: into the Shadowlands +GMNotes: '' +GUID: b1bc62 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Bag 2 Endless Horizons b1bc62.ttslua' +LuaScriptState: '{"ml":{"036f4f":{"lock":false,"pos":{"x":-23.676,"y":1.689,"z":-0.0299},"rot":{"x":359.9201,"y":269.9825,"z":180.0169}},"055225":{"lock":false,"pos":{"x":-17.1199,"y":1.6799,"z":-0.03},"rot":{"x":359.9201,"y":269.9958,"z":180.0169}},"0cd242":{"lock":false,"pos":{"x":-23.6765,"y":1.6157,"z":3.86},"rot":{"x":359.9831,"y":0,"z":359.92}},"0cfc5e":{"lock":false,"pos":{"x":-2.7247,"y":1.6566,"z":0.3733},"rot":{"x":359.9197,"y":270.0225,"z":0.0168}},"13be7c":{"lock":false,"pos":{"x":-21.215,"y":1.6123,"z":4.0233},"rot":{"x":359.9316,"y":315,"z":359.9554}},"1f108d":{"lock":false,"pos":{"x":-17.1201,"y":1.6776,"z":-7.7},"rot":{"x":359.9201,"y":269.9947,"z":180.0169}},"2826ac":{"lock":false,"pos":{"x":-30.2243,"y":1.6982,"z":-0.03},"rot":{"x":359.9201,"y":269.9924,"z":180.0169}},"2a77ff":{"lock":false,"pos":{"x":-23.6765,"y":1.6134,"z":-3.83},"rot":{"x":359.9831,"y":0,"z":359.9201}},"2d5e7e":{"lock":false,"pos":{"x":-11.5982,"y":1.6696,"z":4.4059},"rot":{"x":359.9201,"y":269.9993,"z":0.0169}},"4daae5":{"lock":false,"pos":{"x":-23.6765,"y":1.6868,"z":-7.7},"rot":{"x":359.9201,"y":269.9944,"z":180.0169}},"5f66f5":{"lock":false,"pos":{"x":-17.1199,"y":1.6042,"z":-3.83},"rot":{"x":359.9831,"y":0,"z":359.92}},"61af07":{"lock":false,"pos":{"x":-36.7733,"y":1.705,"z":-7.7},"rot":{"x":359.9201,"y":269.9956,"z":180.0169}},"7234af":{"lock":false,"pos":{"x":-21.0505,"y":1.6108,"z":-0.2109},"rot":{"x":359.9201,"y":269.9946,"z":0.0169}},"72ea3f":{"lock":false,"pos":{"x":-23.6766,"y":1.6913,"z":7.57},"rot":{"x":359.9201,"y":269.976,"z":180.0169}},"75bfc2":{"lock":false,"pos":{"x":-34.0696,"y":1.6269,"z":-7.317},"rot":{"x":359.9201,"y":269.9946,"z":0.0169}},"7dd177":{"lock":false,"pos":{"x":-30.2243,"y":1.6959,"z":-7.7},"rot":{"x":359.9201,"y":269.9937,"z":180.0169}},"883bf5":{"lock":false,"pos":{"x":-27.2606,"y":1.6194,"z":-0.5095},"rot":{"x":359.9201,"y":269.9946,"z":0.0169}},"8b7f2d":{"lock":false,"pos":{"x":-32.6947,"y":1.6257,"z":-4.7544},"rot":{"x":359.9316,"y":315,"z":359.9554}},"920620":{"lock":false,"pos":{"x":-33.588,"y":1.6273,"z":-3.3645},"rot":{"x":359.9554,"y":225,"z":0.0684}},"9b8784":{"lock":false,"pos":{"x":-36.7731,"y":1.6317,"z":-3.83},"rot":{"x":359.9831,"y":0,"z":359.92}},"a45247":{"lock":false,"pos":{"x":1.6949,"y":1.5583,"z":14.2794},"rot":{"x":359.9551,"y":224.998,"z":0.0687}},"a56075":{"lock":false,"pos":{"x":-17.1199,"y":1.6065,"z":3.86},"rot":{"x":359.9831,"y":0.0001,"z":359.9201}},"b4474e":{"lock":false,"pos":{"x":-36.7732,"y":1.7073,"z":-0.03},"rot":{"x":359.9201,"y":269.9917,"z":180.0169}},"be5f41":{"lock":false,"pos":{"x":-2.6885,"y":1.655,"z":-5.0485},"rot":{"x":359.9197,"y":269.9889,"z":0.0169}},"c6e194":{"lock":false,"pos":{"x":-20.6373,"y":1.6091,"z":-3.8438},"rot":{"x":359.9316,"y":315.0126,"z":359.9554}},"c74e79":{"lock":false,"pos":{"x":-27.986,"y":1.6216,"z":3.7608},"rot":{"x":0.0446,"y":45,"z":359.9316}},"cbfed7":{"lock":false,"pos":{"x":-50.9244,"y":1.7266,"z":8.1784},"rot":{"x":359.9201,"y":270.0014,"z":0.0169}},"dd140d":{"lock":false,"pos":{"x":-17.12,"y":1.6821,"z":7.57},"rot":{"x":359.9201,"y":269.9929,"z":180.0169}},"e2e8f6":{"lock":false,"pos":{"x":-3.956,"y":1.6556,"z":-10.4412},"rot":{"x":359.9197,"y":270.0014,"z":0.0168}},"f4c8b4":{"lock":false,"pos":{"x":-3.9276,"y":1.777,"z":5.7571},"rot":{"x":359.9197,"y":270.0002,"z":180.0168}},"f79023":{"lock":false,"pos":{"x":-30.2242,"y":1.6225,"z":-3.83},"rot":{"x":359.9831,"y":0,"z":359.92}}}}' +MaterialIndex: -1 +MeshIndex: -1 +Name: Bag +Nickname: '2: Endless Horizons' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.2008638 + posY: 1.28170574 + posZ: -2.16102576 + rotX: 0.0799290761 + rotY: 89.9964142 + rotZ: 359.9831 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Into the Shadowlands 019847/Bag 2 Endless Horizons b1bc62/Card Dining Hall 72ea3f.yaml new file mode 100644 index 000000000..e327b4b8c --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Into the Shadowlands 019847/Bag 2 Endless Horizons b1bc62/Card Dining Hall 72ea3f.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 227 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949597535528324466/C38ED4DA300A7B4F4AD70DA6B1B3562D91EF58E9/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949597535528323680/6FFB1DAD1406AB6D0464A50C2E28172BFCFEAE0D/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Ship. Second Class. +GMNotes: '' +GUID: 72ea3f +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Dining Hall +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -23.676569 + posY: 1.69128132 + posZ: 7.570028 + rotX: 359.9201 + rotY: 269.975952 + rotZ: 180.0169 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Into the Shadowlands 019847/Bag 2 Endless Horizons b1bc62/Card Engine Room dd140d.yaml new file mode 100644 index 000000000..2fed52139 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Into the Shadowlands 019847/Bag 2 Endless Horizons b1bc62/Card Engine Room dd140d.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 230 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949597535528324466/C38ED4DA300A7B4F4AD70DA6B1B3562D91EF58E9/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949597535528323680/6FFB1DAD1406AB6D0464A50C2E28172BFCFEAE0D/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Ship. Restricted Section +GMNotes: '' +GUID: dd140d +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Engine Room +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -17.11997 + posY: 1.68213856 + posZ: 7.569991 + rotX: 359.9201 + rotY: 269.99292 + rotZ: 180.016876 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Into the Shadowlands 019847/Bag 2 Endless Horizons b1bc62/Card Entry Hall 61af07.yaml new file mode 100644 index 000000000..4c678de43 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Into the Shadowlands 019847/Bag 2 Endless Horizons b1bc62/Card Entry Hall 61af07.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 225 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949597535528324466/C38ED4DA300A7B4F4AD70DA6B1B3562D91EF58E9/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949597535528323680/6FFB1DAD1406AB6D0464A50C2E28172BFCFEAE0D/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Ship. First Class. +GMNotes: '' +GUID: 61af07 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Entry Hall +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -36.77328 + posY: 1.70504737 + posZ: -7.699992 + rotX: 359.9201 + rotY: 269.995575 + rotZ: 180.016876 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Into the Shadowlands 019847/Bag 2 Endless Horizons b1bc62/Card Foyer 036f4f.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Into the Shadowlands 019847/Bag 2 Endless Horizons b1bc62/Card Foyer 036f4f.yaml new file mode 100644 index 000000000..c24abb48b --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Into the Shadowlands 019847/Bag 2 Endless Horizons b1bc62/Card Foyer 036f4f.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 228 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949597535528324466/C38ED4DA300A7B4F4AD70DA6B1B3562D91EF58E9/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949597535528323680/6FFB1DAD1406AB6D0464A50C2E28172BFCFEAE0D/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Ship. Second Class. +GMNotes: '' +GUID: 036f4f +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Foyer +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -23.6759834 + posY: 1.68904316 + posZ: -0.0298950952 + rotX: 359.9201 + rotY: 269.982483 + rotZ: 180.016937 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Into the Shadowlands 019847/Bag 2 Endless Horizons b1bc62/Card Lounge 2826ac.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Into the Shadowlands 019847/Bag 2 Endless Horizons b1bc62/Card Lounge 2826ac.yaml new file mode 100644 index 000000000..2eca942f4 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Into the Shadowlands 019847/Bag 2 Endless Horizons b1bc62/Card Lounge 2826ac.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 224 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949597535528324466/C38ED4DA300A7B4F4AD70DA6B1B3562D91EF58E9/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949597535528323680/6FFB1DAD1406AB6D0464A50C2E28172BFCFEAE0D/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Ship. First Class. +GMNotes: '' +GUID: 2826ac +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Lounge +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -30.2242661 + posY: 1.69817376 + posZ: -0.0299671944 + rotX: 359.9201 + rotY: 269.992432 + rotZ: 180.016876 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Into the Shadowlands 019847/Bag 2 Endless Horizons b1bc62/Card Navigation Bridge b4474e.yaml new file mode 100644 index 000000000..bd58f99ec --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Into the Shadowlands 019847/Bag 2 Endless Horizons b1bc62/Card Navigation Bridge b4474e.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 223 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949597535528324466/C38ED4DA300A7B4F4AD70DA6B1B3562D91EF58E9/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949597535528323680/6FFB1DAD1406AB6D0464A50C2E28172BFCFEAE0D/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Ship. Restricted Section. +GMNotes: '' +GUID: b4474e +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Navigation Bridge +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -36.7732162 + posY: 1.70730579 + posZ: -0.0299790818 + rotX: 359.9201 + rotY: 269.991669 + rotZ: 180.016876 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Into the Shadowlands 019847/Bag 2 Endless Horizons b1bc62/Card Passenger Cabins 1f108d.yaml new file mode 100644 index 000000000..d8d2b0bb2 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Into the Shadowlands 019847/Bag 2 Endless Horizons b1bc62/Card Passenger Cabins 1f108d.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 222 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949597535528324466/C38ED4DA300A7B4F4AD70DA6B1B3562D91EF58E9/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949597535528323680/6FFB1DAD1406AB6D0464A50C2E28172BFCFEAE0D/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Ship. Second Class +GMNotes: '' +GUID: 1f108d +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Passenger Cabins +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -17.1200962 + posY: 1.67764235 + posZ: -7.699999 + rotX: 359.9201 + rotY: 269.99472 + rotZ: 180.016876 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Into the Shadowlands 019847/Bag 2 Endless Horizons b1bc62/Card Promenade Deck 055225.yaml new file mode 100644 index 000000000..74dbb9887 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Into the Shadowlands 019847/Bag 2 Endless Horizons b1bc62/Card Promenade Deck 055225.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 221 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949597535528324466/C38ED4DA300A7B4F4AD70DA6B1B3562D91EF58E9/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949597535528323680/6FFB1DAD1406AB6D0464A50C2E28172BFCFEAE0D/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Ship. Second Class. +GMNotes: '' +GUID: '055225' +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Promenade Deck +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -17.1199226 + posY: 1.67990053 + posZ: -0.0299519431 + rotX: 359.9201 + rotY: 269.995819 + rotZ: 180.016876 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Into the Shadowlands 019847/Bag 2 Endless Horizons b1bc62/Card Purser's Office 4daae5.yaml new file mode 100644 index 000000000..0b533ea7d --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Into the Shadowlands 019847/Bag 2 Endless Horizons b1bc62/Card Purser's Office 4daae5.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 229 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949597535528324466/C38ED4DA300A7B4F4AD70DA6B1B3562D91EF58E9/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949597535528323680/6FFB1DAD1406AB6D0464A50C2E28172BFCFEAE0D/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Ship. Restricted Section. +GMNotes: '' +GUID: 4daae5 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Purser's Office +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -23.6765156 + posY: 1.68678474 + posZ: -7.7000165 + rotX: 359.9201 + rotY: 269.9944 + rotZ: 180.016876 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Into the Shadowlands 019847/Bag 2 Endless Horizons b1bc62/Card Regal Suites 7dd177.yaml new file mode 100644 index 000000000..e858e191b --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Into the Shadowlands 019847/Bag 2 Endless Horizons b1bc62/Card Regal Suites 7dd177.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 226 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949597535528324466/C38ED4DA300A7B4F4AD70DA6B1B3562D91EF58E9/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949597535528323680/6FFB1DAD1406AB6D0464A50C2E28172BFCFEAE0D/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Ship. First Class. +GMNotes: '' +GUID: 7dd177 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Regal Suites +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -30.2243328 + posY: 1.69591522 + posZ: -7.69998646 + rotX: 359.9201 + rotY: 269.993683 + rotZ: 180.016876 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Into the Shadowlands 019847/Bag 2 Endless Horizons b1bc62/Card Scenario cbfed7.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Into the Shadowlands 019847/Bag 2 Endless Horizons b1bc62/Card Scenario cbfed7.yaml new file mode 100644 index 000000000..e38e52ad1 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Into the Shadowlands 019847/Bag 2 Endless Horizons b1bc62/Card Scenario cbfed7.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 215 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949597535528324466/C38ED4DA300A7B4F4AD70DA6B1B3562D91EF58E9/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949597535528323680/6FFB1DAD1406AB6D0464A50C2E28172BFCFEAE0D/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Endless Horizons +GMNotes: '' +GUID: cbfed7 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Scenario +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -50.9243851 + posY: 1.72662532 + posZ: 8.17843151 + rotX: 359.9201 + rotY: 270.001373 + rotZ: 0.016875362 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Into the Shadowlands 019847/Bag 2 Endless Horizons b1bc62/Card Scenario e2e8f6.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Into the Shadowlands 019847/Bag 2 Endless Horizons b1bc62/Card Scenario e2e8f6.yaml new file mode 100644 index 000000000..15a22778e --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Into the Shadowlands 019847/Bag 2 Endless Horizons b1bc62/Card Scenario e2e8f6.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 215 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949597535528324466/C38ED4DA300A7B4F4AD70DA6B1B3562D91EF58E9/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949597535528323680/6FFB1DAD1406AB6D0464A50C2E28172BFCFEAE0D/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Endless Horizons +GMNotes: '' +GUID: e2e8f6 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Scenario +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.95601439 + posY: 1.65564823 + posZ: -10.4411516 + rotX: 359.919739 + rotY: 270.001373 + rotZ: 0.016839562 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Into the Shadowlands 019847/Bag 2 Endless Horizons b1bc62/Custom_Model_Bag Set-aside a45247.yaml new file mode 100644 index 000000000..fef5a9c6e --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Into the Shadowlands 019847/Bag 2 Endless Horizons b1bc62/Custom_Model_Bag Set-aside a45247.yaml @@ -0,0 +1,61 @@ +Autoraise: true +ColorDiffuse: + b: 0.02148666 + g: 0.00100758043 + r: 0.02148666 +ContainedObjects: +- !include 'Custom_Model_Bag Set-aside a45247/Card Akachi Onyele ce59e0.yaml' +- !include 'Custom_Model_Bag Set-aside a45247/Card Abel Jericho ed9b36.yaml' +- !include 'Custom_Model_Bag Set-aside a45247/Card Akachi Onyele d453fe.yaml' +- !include 'Custom_Model_Bag Set-aside a45247/Card Fanning the Flames 309659.yaml' +- !include 'Custom_Model_Bag Set-aside a45247/Card Let''s Try This Again 2456b7.yaml' +- !include 'Custom_Model_Bag Set-aside a45247/Deck Burnout aa5aac.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: Endless Horizons +GMNotes: '' +GUID: a45247 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +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.69493294 + posY: 1.55831909 + posZ: 14.2793941 + rotX: 359.955139 + rotY: 224.998 + rotZ: 0.06867329 + scaleX: 2.0 + scaleY: 2.0 + scaleZ: 2.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Into the Shadowlands 019847/Bag 2 Endless Horizons b1bc62/Custom_Model_Bag Set-aside a45247/Card Abel Jericho ed9b36.yaml new file mode 100644 index 000000000..e257404a9 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Into the Shadowlands 019847/Bag 2 Endless Horizons b1bc62/Custom_Model_Bag Set-aside a45247/Card Abel Jericho ed9b36.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 270820 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2708': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949597535528321567/A372A735C4BCA35FE128AD9388BD116ECDC282F0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949597535528320717/8B359608A535F0912CB2BC638641D9411224929E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: Captain of the SS Lorelai +GMNotes: '' +GUID: ed9b36 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Abel Jericho +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -39.765686 + posY: 3.27745366 + posZ: 61.2224236 + rotX: 0.0208077226 + rotY: 269.999542 + rotZ: 0.0167720821 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Into the Shadowlands 019847/Bag 2 Endless Horizons b1bc62/Custom_Model_Bag Set-aside a45247/Card Akachi Onyele ce59e0.yaml new file mode 100644 index 000000000..0a8c3cd6c --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Into the Shadowlands 019847/Bag 2 Endless Horizons b1bc62/Custom_Model_Bag Set-aside a45247/Card Akachi Onyele ce59e0.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 270822 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2708': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949597535528321567/A372A735C4BCA35FE128AD9388BD116ECDC282F0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949597535528320717/8B359608A535F0912CB2BC638641D9411224929E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: The Emissary's Trickster +GMNotes: '' +GUID: ce59e0 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Akachi Onyele +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -39.7519875 + posY: 3.37366486 + posZ: 55.8240433 + rotX: 0.0206542853 + rotY: 269.999542 + rotZ: 0.0167545266 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Into the Shadowlands 019847/Bag 2 Endless Horizons b1bc62/Custom_Model_Bag Set-aside a45247/Card Akachi Onyele d453fe.yaml new file mode 100644 index 000000000..f2a2d0288 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Into the Shadowlands 019847/Bag 2 Endless Horizons b1bc62/Custom_Model_Bag Set-aside a45247/Card Akachi Onyele d453fe.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 270821 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2708': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949597535528321567/A372A735C4BCA35FE128AD9388BD116ECDC282F0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949597535528320717/8B359608A535F0912CB2BC638641D9411224929E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: The Emissary's Wrath +GMNotes: '' +GUID: d453fe +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Akachi Onyele +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -39.70424 + posY: 3.27675223 + posZ: 58.75077 + rotX: 0.0208081212 + rotY: 269.9995 + rotZ: 0.0167724043 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Into the Shadowlands 019847/Bag 2 Endless Horizons b1bc62/Custom_Model_Bag Set-aside a45247/Card Fanning the Flames 309659.yaml new file mode 100644 index 000000000..d40e43a1b --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Into the Shadowlands 019847/Bag 2 Endless Horizons b1bc62/Custom_Model_Bag Set-aside a45247/Card Fanning the Flames 309659.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 266709 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2667': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/949597535528305760/DAF375514D3F7E3B6BBE0D107F77CFE8E72FA03D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949597535528304349/E78D528941F163C07C9BB0BA66BC30FCCD570A76/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Agenda 3 +GMNotes: '' +GUID: '309659' +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Fanning the Flames +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -27.9126625 + posY: 3.3765502 + posZ: 50.84444 + rotX: 0.0209721215 + rotY: 269.999878 + rotZ: 0.0168503039 + scaleX: 0.7 + scaleY: 1.0 + scaleZ: 0.7 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/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 new file mode 100644 index 000000000..4921cf9be --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/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 @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 266713 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2667': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/949597535528305760/DAF375514D3F7E3B6BBE0D107F77CFE8E72FA03D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949597535528304349/E78D528941F163C07C9BB0BA66BC30FCCD570A76/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Act 4 +GMNotes: '' +GUID: 2456b7 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Let's Try This Again +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -29.04503 + posY: 3.28025651 + posZ: 56.7772865 + rotX: 0.0208100956 + rotY: 269.9992 + rotZ: 0.0167722143 + scaleX: 0.7 + scaleY: 1.0 + scaleZ: 0.7 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Into the Shadowlands 019847/Bag 2 Endless Horizons b1bc62/Custom_Model_Bag Set-aside a45247/Deck Burnout aa5aac.yaml new file mode 100644 index 000000000..243fcf493 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Into the Shadowlands 019847/Bag 2 Endless Horizons b1bc62/Custom_Model_Bag Set-aside a45247/Deck Burnout aa5aac.yaml @@ -0,0 +1,645 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 270936 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2709': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949597535528321567/A372A735C4BCA35FE128AD9388BD116ECDC282F0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949597535528320717/8B359608A535F0912CB2BC638641D9411224929E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. Hazard. + GMNotes: '' + GUID: '548269' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Backdraft + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -31.6967049 + posY: 1.4951973 + posZ: 67.235054 + rotX: 0.0166638773 + rotY: 270.008148 + rotZ: 179.936386 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 270936 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2709': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949597535528321567/A372A735C4BCA35FE128AD9388BD116ECDC282F0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949597535528320717/8B359608A535F0912CB2BC638641D9411224929E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. Hazard. + GMNotes: '' + GUID: bf0eee + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Backdraft + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -35.234333 + posY: 1.32848692 + posZ: 67.30274 + rotX: 0.0208077449 + rotY: 269.999939 + rotZ: 0.0167722367 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 270934 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2709': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949597535528321567/A372A735C4BCA35FE128AD9388BD116ECDC282F0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949597535528320717/8B359608A535F0912CB2BC638641D9411224929E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: 4c8fc7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Compartment Building + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -31.93851 + posY: 1.32884538 + posZ: 64.43792 + rotX: 0.02080838 + rotY: 269.999329 + rotZ: 0.0167727377 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 270934 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2709': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949597535528321567/A372A735C4BCA35FE128AD9388BD116ECDC282F0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949597535528320717/8B359608A535F0912CB2BC638641D9411224929E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: 46c4a0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Compartment Building + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -35.4159966 + posY: 1.32760823 + posZ: 64.52583 + rotX: 0.020808259 + rotY: 269.999146 + rotZ: 0.0167721026 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 270936 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2709': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949597535528321567/A372A735C4BCA35FE128AD9388BD116ECDC282F0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949597535528320717/8B359608A535F0912CB2BC638641D9411224929E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. Hazard. + GMNotes: '' + GUID: 9c9f5a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Backdraft + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -38.665638 + posY: 1.32723665 + posZ: 67.28828 + rotX: 0.0208078139 + rotY: 269.9994 + rotZ: 0.0167735312 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 270934 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2709': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949597535528321567/A372A735C4BCA35FE128AD9388BD116ECDC282F0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949597535528320717/8B359608A535F0912CB2BC638641D9411224929E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: 9804bc + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Compartment Building + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -38.680748 + posY: 1.32639539 + posZ: 64.43283 + rotX: 0.0208081 + rotY: 269.998932 + rotZ: 0.0167727228 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 270934 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2709': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949597535528321567/A372A735C4BCA35FE128AD9388BD116ECDC282F0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949597535528320717/8B359608A535F0912CB2BC638641D9411224929E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: 9d9fa2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Compartment Building + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -35.3056335 + posY: 1.3268007 + posZ: 61.6301956 + rotX: 0.0208095573 + rotY: 269.998932 + rotZ: 0.0167723354 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 270934 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2709': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949597535528321567/A372A735C4BCA35FE128AD9388BD116ECDC282F0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949597535528320717/8B359608A535F0912CB2BC638641D9411224929E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: 30e3d0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Compartment Building + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -31.95228 + posY: 1.32794726 + posZ: 61.3866043 + rotX: 0.02080738 + rotY: 269.998871 + rotZ: 0.0167715847 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 270934 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2709': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949597535528321567/A372A735C4BCA35FE128AD9388BD116ECDC282F0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949597535528320717/8B359608A535F0912CB2BC638641D9411224929E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: ba64ba + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Compartment Building + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -38.6482277 + posY: 1.32551479 + posZ: 61.3843422 + rotX: 0.0208101738 + rotY: 269.99823 + rotZ: 0.0167751759 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 270934 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2709': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949597535528321567/A372A735C4BCA35FE128AD9388BD116ECDC282F0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949597535528320717/8B359608A535F0912CB2BC638641D9411224929E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: a13c04 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Compartment Building + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -32.0715561 + posY: 1.32717526 + posZ: 58.8971558 + rotX: 0.0208084155 + rotY: 269.998749 + rotZ: 0.0167703032 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 270934 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2709': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949597535528321567/A372A735C4BCA35FE128AD9388BD116ECDC282F0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949597535528320717/8B359608A535F0912CB2BC638641D9411224929E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: 9d8a1d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Compartment Building + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -35.5425644 + posY: 1.325917 + posZ: 58.9052238 + rotX: 0.0208077542 + rotY: 269.998779 + rotZ: 0.01677101 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 270934 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2709': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949597535528321567/A372A735C4BCA35FE128AD9388BD116ECDC282F0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949597535528320717/8B359608A535F0912CB2BC638641D9411224929E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: abc77b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Compartment Building + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -41.9249039 + posY: 1.32436979 + posZ: 61.5382729 + rotX: 0.0208082981 + rotY: 269.998962 + rotZ: 0.01677437 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 270935 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2709': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949597535528321567/A372A735C4BCA35FE128AD9388BD116ECDC282F0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949597535528320717/8B359608A535F0912CB2BC638641D9411224929E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Shadow. + GMNotes: '' + GUID: a430b8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Fire Stalker + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -42.0948067 + posY: 1.32599056 + posZ: 67.2857361 + rotX: 0.020808544 + rotY: 269.998779 + rotZ: 0.0167714488 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 270934 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2709': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949597535528321567/A372A735C4BCA35FE128AD9388BD116ECDC282F0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949597535528320717/8B359608A535F0912CB2BC638641D9411224929E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: b8ad5c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Compartment Building + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -42.1013641 + posY: 1.3251431 + posZ: 64.39887 + rotX: 0.0208086576 + rotY: 269.998962 + rotZ: 0.0167739335 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2709': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949597535528321567/A372A735C4BCA35FE128AD9388BD116ECDC282F0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949597535528320717/8B359608A535F0912CB2BC638641D9411224929E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 270936 +- 270936 +- 270934 +- 270934 +- 270936 +- 270934 +- 270934 +- 270934 +- 270934 +- 270934 +- 270934 +- 270934 +- 270935 +- 270934 +Description: Endless Horizons +GMNotes: '' +GUID: aa5aac +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Burnout +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -19.6879559 + posY: 2.1901052 + posZ: 54.1608543 + rotX: 0.0207832623 + rotY: 270.022156 + rotZ: 180.0168 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Into the Shadowlands 019847/Bag 2 Endless Horizons b1bc62/Custom_Tile 0cd242.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Into the Shadowlands 019847/Bag 2 Endless Horizons b1bc62/Custom_Tile 0cd242.yaml new file mode 100644 index 000000000..6c9513711 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Into the Shadowlands 019847/Bag 2 Endless Horizons b1bc62/Custom_Tile 0cd242.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 0cd242 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.67646 + posY: 1.61565244 + posZ: 3.859987 + rotX: 359.983124 + rotY: 1.82039548e-05 + rotZ: 359.920044 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Into the Shadowlands 019847/Bag 2 Endless Horizons b1bc62/Custom_Tile 13be7c.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Into the Shadowlands 019847/Bag 2 Endless Horizons b1bc62/Custom_Tile 13be7c.yaml new file mode 100644 index 000000000..e9c7b4afd --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Into the Shadowlands 019847/Bag 2 Endless Horizons b1bc62/Custom_Tile 13be7c.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 13be7c +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: -21.2149944 + posY: 1.61226809 + posZ: 4.0232563 + rotX: 359.93158 + rotY: 315.000031 + rotZ: 359.955444 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Into the Shadowlands 019847/Bag 2 Endless Horizons b1bc62/Custom_Tile 2a77ff.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Into the Shadowlands 019847/Bag 2 Endless Horizons b1bc62/Custom_Tile 2a77ff.yaml new file mode 100644 index 000000000..6bc803211 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Into the Shadowlands 019847/Bag 2 Endless Horizons b1bc62/Custom_Tile 2a77ff.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 2a77ff +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.67645 + posY: 1.613388 + posZ: -3.83001471 + rotX: 359.983124 + rotY: 2.00278973e-05 + rotZ: 359.920074 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Into the Shadowlands 019847/Bag 2 Endless Horizons b1bc62/Custom_Tile 5f66f5.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Into the Shadowlands 019847/Bag 2 Endless Horizons b1bc62/Custom_Tile 5f66f5.yaml new file mode 100644 index 000000000..8aa5a50dd --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Into the Shadowlands 019847/Bag 2 Endless Horizons b1bc62/Custom_Tile 5f66f5.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 5f66f5 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.11994 + posY: 1.60424531 + posZ: -3.830015 + rotX: 359.983124 + rotY: 4.15213253e-05 + rotZ: 359.920044 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Into the Shadowlands 019847/Bag 2 Endless Horizons b1bc62/Custom_Tile 7234af.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Into the Shadowlands 019847/Bag 2 Endless Horizons b1bc62/Custom_Tile 7234af.yaml new file mode 100644 index 000000000..4904ff43a --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Into the Shadowlands 019847/Bag 2 Endless Horizons b1bc62/Custom_Tile 7234af.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 7234af +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: -21.0504723 + posY: 1.61079168 + posZ: -0.21088028 + rotX: 359.9201 + rotY: 269.994629 + rotZ: 0.0169188045 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Into the Shadowlands 019847/Bag 2 Endless Horizons b1bc62/Custom_Tile 75bfc2.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Into the Shadowlands 019847/Bag 2 Endless Horizons b1bc62/Custom_Tile 75bfc2.yaml new file mode 100644 index 000000000..e7f112b3a --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Into the Shadowlands 019847/Bag 2 Endless Horizons b1bc62/Custom_Tile 75bfc2.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 75bfc2 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: -34.06962 + posY: 1.62685347 + posZ: -7.31702328 + rotX: 359.9201 + rotY: 269.9946 + rotZ: 0.016908342 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Into the Shadowlands 019847/Bag 2 Endless Horizons b1bc62/Custom_Tile 883bf5.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Into the Shadowlands 019847/Bag 2 Endless Horizons b1bc62/Custom_Tile 883bf5.yaml new file mode 100644 index 000000000..50aafdfd0 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Into the Shadowlands 019847/Bag 2 Endless Horizons b1bc62/Custom_Tile 883bf5.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 883bf5 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.260582 + posY: 1.61936319 + posZ: -0.5095085 + rotX: 359.9201 + rotY: 269.9946 + rotZ: 0.0169098731 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Into the Shadowlands 019847/Bag 2 Endless Horizons b1bc62/Custom_Tile 8b7f2d.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Into the Shadowlands 019847/Bag 2 Endless Horizons b1bc62/Custom_Tile 8b7f2d.yaml new file mode 100644 index 000000000..7da5d1108 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Into the Shadowlands 019847/Bag 2 Endless Horizons b1bc62/Custom_Tile 8b7f2d.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 8b7f2d +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: -32.694706 + posY: 1.62569118 + posZ: -4.754429 + rotX: 359.93158 + rotY: 315.0 + rotZ: 359.955444 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Into the Shadowlands 019847/Bag 2 Endless Horizons b1bc62/Custom_Tile 920620.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Into the Shadowlands 019847/Bag 2 Endless Horizons b1bc62/Custom_Tile 920620.yaml new file mode 100644 index 000000000..d2979177e --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Into the Shadowlands 019847/Bag 2 Endless Horizons b1bc62/Custom_Tile 920620.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: '920620' +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.5879669 + posY: 1.6273458 + posZ: -3.364464 + rotX: 359.955444 + rotY: 225.000015 + rotZ: 0.0684041753 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Into the Shadowlands 019847/Bag 2 Endless Horizons b1bc62/Custom_Tile 9b8784.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Into the Shadowlands 019847/Bag 2 Endless Horizons b1bc62/Custom_Tile 9b8784.yaml new file mode 100644 index 000000000..b264acbbf --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Into the Shadowlands 019847/Bag 2 Endless Horizons b1bc62/Custom_Tile 9b8784.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 9b8784 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.77312 + posY: 1.63165045 + posZ: -3.83001423 + rotX: 359.983124 + rotY: 9.774069e-06 + rotZ: 359.920044 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Into the Shadowlands 019847/Bag 2 Endless Horizons b1bc62/Custom_Tile a56075.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Into the Shadowlands 019847/Bag 2 Endless Horizons b1bc62/Custom_Tile a56075.yaml new file mode 100644 index 000000000..fe1d8de21 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Into the Shadowlands 019847/Bag 2 Endless Horizons b1bc62/Custom_Tile a56075.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: a56075 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.11994 + posY: 1.6065098 + posZ: 3.8599875 + rotX: 359.983124 + rotY: 0.000106882195 + rotZ: 359.920074 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Into the Shadowlands 019847/Bag 2 Endless Horizons b1bc62/Custom_Tile c6e194.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Into the Shadowlands 019847/Bag 2 Endless Horizons b1bc62/Custom_Tile c6e194.yaml new file mode 100644 index 000000000..426bc7f5e --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Into the Shadowlands 019847/Bag 2 Endless Horizons b1bc62/Custom_Tile c6e194.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: c6e194 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.6373043 + posY: 1.60914588 + posZ: -3.8437562 + rotX: 359.93158 + rotY: 315.0126 + rotZ: 359.9554 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Into the Shadowlands 019847/Bag 2 Endless Horizons b1bc62/Custom_Tile c74e79.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Into the Shadowlands 019847/Bag 2 Endless Horizons b1bc62/Custom_Tile c74e79.yaml new file mode 100644 index 000000000..015469611 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Into the Shadowlands 019847/Bag 2 Endless Horizons b1bc62/Custom_Tile c74e79.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: c74e79 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.9859829 + posY: 1.62163246 + posZ: 3.76079559 + rotX: 0.0445651077 + rotY: 44.9999847 + rotZ: 359.93158 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Into the Shadowlands 019847/Bag 2 Endless Horizons b1bc62/Custom_Tile f79023.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Into the Shadowlands 019847/Bag 2 Endless Horizons b1bc62/Custom_Tile f79023.yaml new file mode 100644 index 000000000..449dd7088 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Into the Shadowlands 019847/Bag 2 Endless Horizons b1bc62/Custom_Tile f79023.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: f79023 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.22417 + posY: 1.62251842 + posZ: -3.83001351 + rotX: 359.983124 + rotY: 3.066571e-05 + rotZ: 359.920044 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Into the Shadowlands 019847/Bag 2 Endless Horizons b1bc62/Deck Act Deck be5f41.yaml new file mode 100644 index 000000000..0e9cec650 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Into the Shadowlands 019847/Bag 2 Endless Horizons b1bc62/Deck Act Deck be5f41.yaml @@ -0,0 +1,172 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 266712 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2667': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/949597535528305760/DAF375514D3F7E3B6BBE0D107F77CFE8E72FA03D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949597535528304349/E78D528941F163C07C9BB0BA66BC30FCCD570A76/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 3 + GMNotes: '' + GUID: 8eb6f0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Middle of Nowhere + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -9.990377 + posY: 1.33690464 + posZ: 65.55004 + rotX: 0.008214107 + rotY: 270.0 + rotZ: 0.01390879 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 266711 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2667': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/949597535528305760/DAF375514D3F7E3B6BBE0D107F77CFE8E72FA03D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949597535528304349/E78D528941F163C07C9BB0BA66BC30FCCD570A76/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 2 + GMNotes: '' + GUID: d5bc95 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Correcting Mistakes + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.72941232 + posY: 1.3396529 + posZ: 65.47332 + rotX: 0.0156878214 + rotY: 270.0 + rotZ: 0.0157985315 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 266710 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2667': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/949597535528305760/DAF375514D3F7E3B6BBE0D107F77CFE8E72FA03D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949597535528304349/E78D528941F163C07C9BB0BA66BC30FCCD570A76/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 1 + GMNotes: '' + GUID: 4c970f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Something is Amiss + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -18.8808746 + posY: 1.492576 + posZ: 68.77965 + rotX: 0.01956955 + rotY: 269.98877 + rotZ: 0.0166947339 + scaleX: 0.7 + scaleY: 1.0 + scaleZ: 0.7 + XmlUI: '' +CustomDeck: + '2667': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/949597535528305760/DAF375514D3F7E3B6BBE0D107F77CFE8E72FA03D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949597535528304349/E78D528941F163C07C9BB0BA66BC30FCCD570A76/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 266712 +- 266711 +- 266710 +Description: Endless Horizons +GMNotes: '' +GUID: be5f41 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Act Deck +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.68848133 + posY: 1.65499711 + posZ: -5.048539 + rotX: 359.919739 + rotY: 269.9889 + rotZ: 0.016854696 + scaleX: 0.7 + scaleY: 1.0 + scaleZ: 0.7 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Into the Shadowlands 019847/Bag 2 Endless Horizons b1bc62/Deck Agenda Deck 0cfc5e.yaml new file mode 100644 index 000000000..b5b31ab56 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Into the Shadowlands 019847/Bag 2 Endless Horizons b1bc62/Deck Agenda Deck 0cfc5e.yaml @@ -0,0 +1,172 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 266708 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2667': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/949597535528305760/DAF375514D3F7E3B6BBE0D107F77CFE8E72FA03D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949597535528304349/E78D528941F163C07C9BB0BA66BC30FCCD570A76/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 3 + GMNotes: '' + GUID: 25a9c0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: High Tide + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -5.94025135 + posY: 1.33642626 + posZ: 59.0104523 + rotX: 0.0217525475 + rotY: 270.0223 + rotZ: 0.0157254711 + 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: http://cloud-3.steamusercontent.com/ugc/949597535528305760/DAF375514D3F7E3B6BBE0D107F77CFE8E72FA03D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949597535528304349/E78D528941F163C07C9BB0BA66BC30FCCD570A76/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 2 + GMNotes: '' + GUID: 67432f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Water Rising + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -6.04515553 + posY: 1.47675765 + posZ: 59.2177429 + rotX: 0.0457638465 + rotY: 269.9595 + rotZ: 0.0155598735 + 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: http://cloud-3.steamusercontent.com/ugc/949597535528305760/DAF375514D3F7E3B6BBE0D107F77CFE8E72FA03D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949597535528304349/E78D528941F163C07C9BB0BA66BC30FCCD570A76/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 1 + GMNotes: '' + GUID: da2a01 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Storm + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -6.712498 + posY: 1.49422145 + posZ: 59.1256561 + rotX: 0.0220789015 + rotY: 269.999878 + rotZ: 0.0156885162 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2667': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/949597535528305760/DAF375514D3F7E3B6BBE0D107F77CFE8E72FA03D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949597535528304349/E78D528941F163C07C9BB0BA66BC30FCCD570A76/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 266708 +- 266707 +- 266706 +Description: Endless Horizons +GMNotes: '' +GUID: 0cfc5e +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Agenda Deck +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.72465968 + posY: 1.656641 + posZ: 0.373314083 + rotX: 359.919739 + rotY: 270.022522 + rotZ: 0.0168073885 + scaleX: 0.7 + scaleY: 1.0 + scaleZ: 0.7 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Into the Shadowlands 019847/Bag 2 Endless Horizons b1bc62/Deck Encounter Deck f4c8b4.yaml new file mode 100644 index 000000000..0e99aedb2 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Into the Shadowlands 019847/Bag 2 Endless Horizons b1bc62/Deck Encounter Deck f4c8b4.yaml @@ -0,0 +1,1376 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 270733 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2707': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949597535528321567/A372A735C4BCA35FE128AD9388BD116ECDC282F0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949597535528320717/8B359608A535F0912CB2BC638641D9411224929E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: 0c3dcb + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Compartment Flooding + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -43.86775 + posY: 1.32226181 + posZ: 56.7473145 + rotX: 0.0208089761 + rotY: 269.996948 + rotZ: 0.0167707913 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 270733 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2707': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949597535528321567/A372A735C4BCA35FE128AD9388BD116ECDC282F0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949597535528320717/8B359608A535F0912CB2BC638641D9411224929E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: 13b450 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Compartment Flooding + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -44.0047951 + posY: 1.32365644 + posZ: 61.6815338 + rotX: 0.0208082888 + rotY: 269.996918 + rotZ: 0.01677097 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 270733 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2707': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949597535528321567/A372A735C4BCA35FE128AD9388BD116ECDC282F0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949597535528320717/8B359608A535F0912CB2BC638641D9411224929E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: 963a08 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Compartment Flooding + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -43.9790039 + posY: 1.32514215 + posZ: 66.7253 + rotX: 0.02080815 + rotY: 269.9972 + rotZ: 0.0167703517 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 270733 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2707': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949597535528321567/A372A735C4BCA35FE128AD9388BD116ECDC282F0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949597535528320717/8B359608A535F0912CB2BC638641D9411224929E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: 8d2148 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Compartment Flooding + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -43.96166 + posY: 1.32598758 + posZ: 69.5922546 + rotX: 0.0208075549 + rotY: 269.999939 + rotZ: 0.0167722926 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 270733 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2707': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949597535528321567/A372A735C4BCA35FE128AD9388BD116ECDC282F0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949597535528320717/8B359608A535F0912CB2BC638641D9411224929E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: 97a347 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Compartment Flooding + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -43.95928 + posY: 1.32445455 + posZ: 64.35177 + rotX: 0.0208094828 + rotY: 269.996948 + rotZ: 0.01677068 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 270733 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2707': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949597535528321567/A372A735C4BCA35FE128AD9388BD116ECDC282F0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949597535528320717/8B359608A535F0912CB2BC638641D9411224929E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: '801137' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Compartment Flooding + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -43.8906746 + posY: 1.32300019 + posZ: 59.29782 + rotX: 0.0208097082 + rotY: 269.996857 + rotZ: 0.0167725775 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 270733 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2707': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949597535528321567/A372A735C4BCA35FE128AD9388BD116ECDC282F0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949597535528320717/8B359608A535F0912CB2BC638641D9411224929E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: 41a7f7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Compartment Flooding + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -40.49066 + posY: 1.32489133 + posZ: 61.54023 + rotX: 0.0208075419 + rotY: 269.996765 + rotZ: 0.01677129 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 270733 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2707': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949597535528321567/A372A735C4BCA35FE128AD9388BD116ECDC282F0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949597535528320717/8B359608A535F0912CB2BC638641D9411224929E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: 6de454 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Compartment Flooding + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -40.3701057 + posY: 1.32339358 + posZ: 56.2742653 + rotX: 0.0208104476 + rotY: 269.996643 + rotZ: 0.01677147 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 270733 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2707': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949597535528321567/A372A735C4BCA35FE128AD9388BD116ECDC282F0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949597535528320717/8B359608A535F0912CB2BC638641D9411224929E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: 177baa + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Compartment Flooding + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -40.5395775 + posY: 1.32410622 + posZ: 58.91891 + rotX: 0.0208097082 + rotY: 269.996765 + rotZ: 0.0167729463 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 270733 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2707': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949597535528321567/A372A735C4BCA35FE128AD9388BD116ECDC282F0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949597535528320717/8B359608A535F0912CB2BC638641D9411224929E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: f19959 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Compartment Flooding + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -43.4170761 + posY: 1.44568813 + posZ: 57.2142029 + rotX: 0.0181756616 + rotY: 269.992676 + rotZ: 0.0158251226 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 270732 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2707': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949597535528321567/A372A735C4BCA35FE128AD9388BD116ECDC282F0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949597535528320717/8B359608A535F0912CB2BC638641D9411224929E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. Hazard. + GMNotes: '' + GUID: 9cdb12 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Maestrom + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -44.0750351 + posY: 1.3268224 + posZ: 72.58487 + rotX: 0.02080939 + rotY: 269.9971 + rotZ: 0.0167730451 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 270732 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2707': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949597535528321567/A372A735C4BCA35FE128AD9388BD116ECDC282F0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949597535528320717/8B359608A535F0912CB2BC638641D9411224929E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. Hazard. + GMNotes: '' + GUID: b315a8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Maestrom + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -44.141468 + posY: 1.32770526 + posZ: 75.6835556 + rotX: 0.0208088234 + rotY: 269.9974 + rotZ: 0.01677217 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 270731 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2707': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949597535528321567/A372A735C4BCA35FE128AD9388BD116ECDC282F0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949597535528320717/8B359608A535F0912CB2BC638641D9411224929E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. Madness. + GMNotes: '' + GUID: 8c11a1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Aquaphobia + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -40.4172325 + posY: 1.32561588 + posZ: 63.92422 + rotX: 0.0208091848 + rotY: 269.997467 + rotZ: 0.0167704 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 270731 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2707': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949597535528321567/A372A735C4BCA35FE128AD9388BD116ECDC282F0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949597535528320717/8B359608A535F0912CB2BC638641D9411224929E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. Madness. + GMNotes: '' + GUID: 7ab66c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Aquaphobia + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -40.66303 + posY: 1.32633376 + posZ: 66.68196 + rotX: 0.0208093952 + rotY: 269.997559 + rotZ: 0.0167709645 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 270725 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2707': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949597535528321567/A372A735C4BCA35FE128AD9388BD116ECDC282F0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949597535528320717/8B359608A535F0912CB2BC638641D9411224929E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Passenger. + GMNotes: '' + GUID: 33f38b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Cursed Passengers + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -36.80991 + posY: 1.32950354 + posZ: 72.73028 + rotX: 0.0208087564 + rotY: 269.999359 + rotZ: 0.0167732313 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 270725 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2707': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949597535528321567/A372A735C4BCA35FE128AD9388BD116ECDC282F0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949597535528320717/8B359608A535F0912CB2BC638641D9411224929E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Passenger. + GMNotes: '' + GUID: 6d1758 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Cursed Passengers + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -36.79486 + posY: 1.32722771 + posZ: 64.93682 + rotX: 0.0208098236 + rotY: 269.998962 + rotZ: 0.0167717785 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 270725 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2707': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949597535528321567/A372A735C4BCA35FE128AD9388BD116ECDC282F0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949597535528320717/8B359608A535F0912CB2BC638641D9411224929E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Passenger. + GMNotes: '' + GUID: cfb106 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Cursed Passengers + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -36.7868652 + posY: 1.32792747 + posZ: 67.31718 + rotX: 0.020808788 + rotY: 269.99884 + rotZ: 0.0167721584 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 270725 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2707': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949597535528321567/A372A735C4BCA35FE128AD9388BD116ECDC282F0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949597535528320717/8B359608A535F0912CB2BC638641D9411224929E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Passenger. + GMNotes: '' + GUID: '741409' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Cursed Passengers + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -42.2302246 + posY: 1.52578437 + posZ: 65.26037 + rotX: 0.0213181525 + rotY: 270.010956 + rotZ: 0.0151791153 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 270726 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2707': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949597535528321567/A372A735C4BCA35FE128AD9388BD116ECDC282F0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949597535528320717/8B359608A535F0912CB2BC638641D9411224929E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Passenger. + GMNotes: '' + GUID: dea48f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Posessed Passenger + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -40.3584251 + posY: 1.32813668 + posZ: 72.46318 + rotX: 0.0208081268 + rotY: 269.997864 + rotZ: 0.0167713258 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 270726 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2707': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949597535528321567/A372A735C4BCA35FE128AD9388BD116ECDC282F0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949597535528320717/8B359608A535F0912CB2BC638641D9411224929E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Passenger. + GMNotes: '' + GUID: e05aae + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Posessed Passenger + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -40.7130241 + posY: 1.32716978 + posZ: 69.6002 + rotX: 0.0208099242 + rotY: 269.998718 + rotZ: 0.0167720821 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 270730 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2707': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949597535528321567/A372A735C4BCA35FE128AD9388BD116ECDC282F0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949597535528320717/8B359608A535F0912CB2BC638641D9411224929E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Poisoner of Minds + GMNotes: '' + GUID: cfaf53 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Shadow Infiltrator + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -42.0810738 + posY: 1.55489409 + posZ: 65.46058 + rotX: 0.020940911 + rotY: 269.9977 + rotZ: 0.01400278 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 270729 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2707': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949597535528321567/A372A735C4BCA35FE128AD9388BD116ECDC282F0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949597535528320717/8B359608A535F0912CB2BC638641D9411224929E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: adccf5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Shadows Return + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -37.07744 + posY: 1.330359 + posZ: 75.9847641 + rotX: 0.02080934 + rotY: 269.997925 + rotZ: 0.0167715363 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 270729 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2707': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949597535528321567/A372A735C4BCA35FE128AD9388BD116ECDC282F0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949597535528320717/8B359608A535F0912CB2BC638641D9411224929E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: 61b0e9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Shadows Return + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -33.7682152 + posY: 1.331597 + posZ: 76.108345 + rotX: 0.0208097026 + rotY: 269.998047 + rotZ: 0.0167742036 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 270724 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2707': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949597535528321567/A372A735C4BCA35FE128AD9388BD116ECDC282F0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949597535528320717/8B359608A535F0912CB2BC638641D9411224929E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Obstacle. + GMNotes: '' + GUID: '767250' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ransacked! + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -33.4539757 + posY: 1.33071649 + posZ: 72.7103043 + rotX: 0.02080827 + rotY: 269.999329 + rotZ: 0.0167716872 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 270724 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2707': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949597535528321567/A372A735C4BCA35FE128AD9388BD116ECDC282F0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949597535528320717/8B359608A535F0912CB2BC638641D9411224929E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Obstacle. + GMNotes: '' + GUID: 752ab7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ransacked! + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -33.2503853 + posY: 1.32998312 + posZ: 69.95217 + rotX: 0.02080838 + rotY: 269.9991 + rotZ: 0.0167732872 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 270724 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2707': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949597535528321567/A372A735C4BCA35FE128AD9388BD116ECDC282F0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949597535528320717/8B359608A535F0912CB2BC638641D9411224929E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Obstacle. + GMNotes: '' + GUID: 5e5a03 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ransacked! + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -33.1391258 + posY: 1.32927787 + posZ: 67.40454 + rotX: 0.0208082981 + rotY: 269.99884 + rotZ: 0.01677126 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 270728 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2707': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949597535528321567/A372A735C4BCA35FE128AD9388BD116ECDC282F0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949597535528320717/8B359608A535F0912CB2BC638641D9411224929E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hex. Power. + GMNotes: '' + GUID: bf4565 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Thy Will Be Done + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -29.9668236 + posY: 1.33302271 + posZ: 76.26242 + rotX: 0.0208086278 + rotY: 269.998444 + rotZ: 0.0167719964 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 270723 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2707': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949597535528321567/A372A735C4BCA35FE128AD9388BD116ECDC282F0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949597535528320717/8B359608A535F0912CB2BC638641D9411224929E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hex. Power. + GMNotes: '' + GUID: 7f1449 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Thy Will Be Done + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -30.0085354 + posY: 1.33195662 + posZ: 72.6721954 + rotX: 0.0208094846 + rotY: 269.999451 + rotZ: 0.01677215 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 270723 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2707': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949597535528321567/A372A735C4BCA35FE128AD9388BD116ECDC282F0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949597535528320717/8B359608A535F0912CB2BC638641D9411224929E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hex. Power. + GMNotes: '' + GUID: 8008bc + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Thy Will Be Done + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -29.8181152 + posY: 1.33128607 + posZ: 70.14499 + rotX: 0.0208079889 + rotY: 269.9989 + rotZ: 0.0167726111 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 270727 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2707': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949597535528321567/A372A735C4BCA35FE128AD9388BD116ECDC282F0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949597535528320717/8B359608A535F0912CB2BC638641D9411224929E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Passenger. + GMNotes: '' + GUID: b8ed01 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Crazed Passenger + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -29.9662838 + posY: 1.33044636 + posZ: 67.4601746 + rotX: 0.0208079163 + rotY: 269.9987 + rotZ: 0.01677137 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 270727 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2707': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949597535528321567/A372A735C4BCA35FE128AD9388BD116ECDC282F0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949597535528320717/8B359608A535F0912CB2BC638641D9411224929E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Passenger. + GMNotes: '' + GUID: cf9fde + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Crazed Passenger + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -29.9245815 + posY: 1.32966375 + posZ: 64.73496 + rotX: 0.0208091754 + rotY: 269.9985 + rotZ: 0.0167718474 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2707': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949597535528321567/A372A735C4BCA35FE128AD9388BD116ECDC282F0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949597535528320717/8B359608A535F0912CB2BC638641D9411224929E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 270733 +- 270733 +- 270733 +- 270733 +- 270733 +- 270733 +- 270733 +- 270733 +- 270733 +- 270733 +- 270732 +- 270732 +- 270731 +- 270731 +- 270725 +- 270725 +- 270725 +- 270725 +- 270726 +- 270726 +- 270730 +- 270729 +- 270729 +- 270724 +- 270724 +- 270724 +- 270728 +- 270723 +- 270723 +- 270727 +- 270727 +Description: Endless Horizons +GMNotes: '' +GUID: f4c8b4 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Encounter Deck +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.92760515 + posY: 1.77703929 + posZ: 5.75714636 + rotX: 359.919739 + rotY: 270.000244 + rotZ: 180.016815 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Into the Shadowlands 019847/Bag 2 Endless Horizons b1bc62/Deck Set-upResolution 2d5e7e.yaml new file mode 100644 index 000000000..996b49130 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Into the Shadowlands 019847/Bag 2 Endless Horizons b1bc62/Deck Set-upResolution 2d5e7e.yaml @@ -0,0 +1,258 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 219 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949597535528324466/C38ED4DA300A7B4F4AD70DA6B1B3562D91EF58E9/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949597535528323680/6FFB1DAD1406AB6D0464A50C2E28172BFCFEAE0D/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: a0cc24 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 4.11843443 + posY: 1.04625463 + posZ: -2.531205 + rotX: 0.0122288046 + rotY: 179.987732 + rotZ: 359.7895 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 220 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949597535528324466/C38ED4DA300A7B4F4AD70DA6B1B3562D91EF58E9/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949597535528323680/6FFB1DAD1406AB6D0464A50C2E28172BFCFEAE0D/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 17345d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 4.117535 + posY: 1.02879632 + posZ: -2.00397658 + rotX: 359.853973 + rotY: 179.995621 + rotZ: 359.9492 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 218 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949597535528324466/C38ED4DA300A7B4F4AD70DA6B1B3562D91EF58E9/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949597535528323680/6FFB1DAD1406AB6D0464A50C2E28172BFCFEAE0D/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 0a075a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 4.081191 + posY: 1.21568859 + posZ: -2.67751074 + rotX: 0.328302026 + rotY: 179.997787 + rotZ: 359.913147 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 217 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949597535528324466/C38ED4DA300A7B4F4AD70DA6B1B3562D91EF58E9/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949597535528323680/6FFB1DAD1406AB6D0464A50C2E28172BFCFEAE0D/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: '784876' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 24.6348782 + posY: 1.66470993 + posZ: -6.836461 + rotX: 359.938171 + rotY: 269.999634 + rotZ: 180.0141 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 216 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949597535528324466/C38ED4DA300A7B4F4AD70DA6B1B3562D91EF58E9/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949597535528323680/6FFB1DAD1406AB6D0464A50C2E28172BFCFEAE0D/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: d6818a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -12.7522507 + posY: 1.81930721 + posZ: 4.08604765 + rotX: 359.9399 + rotY: 270.0 + rotZ: 0.00700049056 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949597535528324466/C38ED4DA300A7B4F4AD70DA6B1B3562D91EF58E9/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949597535528323680/6FFB1DAD1406AB6D0464A50C2E28172BFCFEAE0D/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 219 +- 220 +- 218 +- 217 +- 216 +Description: Endless Horizons +GMNotes: '' +GUID: 2d5e7e +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Set-up/Resolution +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -11.598237 + posY: 1.669552 + posZ: 4.405947 + rotX: 359.9201 + rotY: 269.999268 + rotZ: 0.0168782752 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Jenny's Choice a61b48.ttslua b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Jenny's Choice a61b48.ttslua new file mode 100644 index 000000000..46067f58e --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Jenny's Choice a61b48.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.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.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 791837/Custom_Model_Bag Jenny's Choice a61b48.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Jenny's Choice a61b48.yaml new file mode 100644 index 000000000..a4410fba7 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Jenny's Choice a61b48.yaml @@ -0,0 +1,88 @@ +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 Jenny''s Choice a61b48/Custom_Model_Bag Set-aside a45247.yaml' +- !include 'Custom_Model_Bag Jenny''s Choice a61b48/Deck Encounter Deck 8bae65.yaml' +- !include 'Custom_Model_Bag Jenny''s Choice a61b48/Deck Agenda Deck 06d29e.yaml' +- !include 'Custom_Model_Bag Jenny''s Choice a61b48/Deck Encounter Deck e02060.yaml' +- !include 'Custom_Model_Bag Jenny''s Choice a61b48/Card Scenario 845074.yaml' +- !include 'Custom_Model_Bag Jenny''s Choice a61b48/Custom_Tile Jenny''s Choice bbb70a.yaml' +- !include 'Custom_Model_Bag Jenny''s Choice a61b48/Card b2bd25.yaml' +- !include 'Custom_Model_Bag Jenny''s Choice a61b48/Card Wine Cellar df8dff.yaml' +- !include 'Custom_Model_Bag Jenny''s Choice a61b48/Card Wine Cellar 6aa57e.yaml' +- !include 'Custom_Model_Bag Jenny''s Choice a61b48/Card Dismal Creek 1af6e8.yaml' +- !include 'Custom_Model_Bag Jenny''s Choice a61b48/Custom_Tile b5ceb0.yaml' +- !include 'Custom_Model_Bag Jenny''s Choice a61b48/Card Hidden Grove 3ba881.yaml' +- !include 'Custom_Model_Bag Jenny''s Choice a61b48/Card Cathedral Entrance 3c4300.yaml' +- !include 'Custom_Model_Bag Jenny''s Choice a61b48/Custom_Tile 7234af.yaml' +- !include 'Custom_Model_Bag Jenny''s Choice a61b48/Custom_Tile ef067f.yaml' +- !include 'Custom_Model_Bag Jenny''s Choice a61b48/Custom_Tile 44b0c5.yaml' +- !include 'Custom_Model_Bag Jenny''s Choice a61b48/Custom_Tile b81937.yaml' +- !include 'Custom_Model_Bag Jenny''s Choice a61b48/Custom_Tile 149816.yaml' +- !include 'Custom_Model_Bag Jenny''s Choice a61b48/Card Organ Room ea8211.yaml' +- !include 'Custom_Model_Bag Jenny''s Choice a61b48/Card Organ Room 46ead9.yaml' +- !include 'Custom_Model_Bag Jenny''s Choice a61b48/Custom_Tile d778ee.yaml' +- !include 'Custom_Model_Bag Jenny''s Choice a61b48/Custom_Tile 057b7e.yaml' +- !include 'Custom_Model_Bag Jenny''s Choice a61b48/Custom_Tile c6a2ab.yaml' +- !include 'Custom_Model_Bag Jenny''s Choice a61b48/Card Inner Chamber 3d9a8b.yaml' +- !include 'Custom_Model_Bag Jenny''s Choice a61b48/Card Inner Chamber cca4ce.yaml' +- !include 'Custom_Model_Bag Jenny''s Choice a61b48/Custom_Tile 6cb6e7.yaml' +- !include 'Custom_Model_Bag Jenny''s Choice a61b48/Custom_Tile 61a21b.yaml' +- !include 'Custom_Model_Bag Jenny''s Choice a61b48/Card Balcony 1e7961.yaml' +- !include 'Custom_Model_Bag Jenny''s Choice a61b48/Card Balcony 29d7e2.yaml' +CustomMesh: + CastShadows: true + ColliderURL: '' + Convex: true + DiffuseURL: http://cloud-3.steamusercontent.com/ugc/790858329422808079/1407B0AB89A9DBCFEE07A84A0979829556D84A78/ + MaterialIndex: 3 + MeshURL: https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj + NormalURL: '' + TypeIndex: 6 +Description: '' +GMNotes: '' +GUID: a61b48 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Model_Bag Jenny''s Choice a61b48.ttslua' +LuaScriptState: '{"ml":{"057b7e":{"lock":false,"pos":{"x":-23.6764,"y":1.6111,"z":-11.51},"rot":{"x":359.9831,"y":-0.0008,"z":359.9201}},"06d29e":{"lock":false,"pos":{"x":-2.7248,"y":1.6551,"z":0.3733},"rot":{"x":0.0168,"y":179.9995,"z":0.0803}},"149816":{"lock":false,"pos":{"x":-30.2241,"y":1.6225,"z":-3.83},"rot":{"x":359.9831,"y":-0.0009,"z":359.9201}},"1af6e8":{"lock":false,"pos":{"x":-30.2241,"y":1.6976,"z":7.57},"rot":{"x":359.9201,"y":269.9999,"z":0.0169}},"1e7961":{"lock":false,"pos":{"x":-17.12,"y":1.6771,"z":-0.03},"rot":{"x":359.9203,"y":270,"z":0.016}},"29d7e2":{"lock":false,"pos":{"x":-15.5985,"y":1.8209,"z":0.017},"rot":{"x":359.8887,"y":269.9785,"z":0.0184}},"3ba881":{"lock":false,"pos":{"x":-23.6766,"y":1.6885,"z":7.57},"rot":{"x":359.9201,"y":269.9997,"z":0.0169}},"3c4300":{"lock":false,"pos":{"x":-23.6766,"y":1.6862,"z":-0.03},"rot":{"x":359.9201,"y":269.9987,"z":0.0169}},"3d9a8b":{"lock":false,"pos":{"x":-22.2198,"y":1.7339,"z":-7.7092},"rot":{"x":0.0792,"y":269.9715,"z":359.9832}},"44b0c5":{"lock":false,"pos":{"x":-26.7848,"y":1.6188,"z":-0.0522},"rot":{"x":0.0799,"y":90.0026,"z":359.9831}},"46ead9":{"lock":false,"pos":{"x":-31.7026,"y":1.743,"z":-7.7614},"rot":{"x":0.081,"y":270.0021,"z":359.9834}},"61a21b":{"lock":false,"pos":{"x":-20.5245,"y":1.6101,"z":-0.2141},"rot":{"x":359.9201,"y":269.8899,"z":0.0171}},"6aa57e":{"lock":false,"pos":{"x":-30.2244,"y":1.6954,"z":-0.0298},"rot":{"x":359.9207,"y":269.989,"z":0.0183}},"6cb6e7":{"lock":false,"pos":{"x":-23.6764,"y":1.6134,"z":-3.83},"rot":{"x":359.9831,"y":-0.0006,"z":359.9201}},"7234af":{"lock":false,"pos":{"x":-23.6765,"y":1.6157,"z":3.86},"rot":{"x":359.9831,"y":-0.0008,"z":359.9201}},"845074":{"lock":false,"pos":{"x":-3.956,"y":1.6556,"z":-10.4412},"rot":{"x":359.9197,"y":270,"z":0.0168}},"8bae65":{"lock":false,"pos":{"x":-3.9277,"y":1.7344,"z":5.7572},"rot":{"x":359.9197,"y":269.9998,"z":180.0168}},"a45247":{"lock":false,"pos":{"x":1.6961,"y":1.5583,"z":14.2788},"rot":{"x":359.9551,"y":224.998,"z":0.0687}},"b2bd25":{"lock":false,"pos":{"x":-1.177,"y":1.5467,"z":-27.5609},"rot":{"x":359.9201,"y":269.9994,"z":0.0169}},"b5ceb0":{"lock":false,"pos":{"x":-26.8548,"y":1.6211,"z":7.3881},"rot":{"x":359.9201,"y":270.0042,"z":0.0169}},"b81937":{"lock":false,"pos":{"x":-26.6804,"y":1.6176,"z":-3.8413},"rot":{"x":0.0684,"y":135.0054,"z":0.0446}},"bbb70a":{"lock":false,"pos":{"x":-3.819,"y":1.5823,"z":-15.2311},"rot":{"x":359.9197,"y":270.0322,"z":0.0168}},"c6a2ab":{"lock":false,"pos":{"x":-27.6254,"y":1.6167,"z":-11.1322},"rot":{"x":359.9316,"y":314.9959,"z":359.9554}},"cca4ce":{"lock":false,"pos":{"x":-23.6764,"y":1.684,"z":-7.6884},"rot":{"x":359.9201,"y":270.0044,"z":0.0167}},"d778ee":{"lock":false,"pos":{"x":-26.967,"y":1.6168,"z":-7.7901},"rot":{"x":359.9201,"y":270.0042,"z":0.0169}},"df8dff":{"lock":false,"pos":{"x":-31.957,"y":1.8293,"z":-0.0662},"rot":{"x":4.7643,"y":270.0184,"z":0.017}},"e02060":{"lock":false,"pos":{"x":-2.6886,"y":1.655,"z":-5.0485},"rot":{"x":0.0168,"y":180.0001,"z":0.0803}},"ea8211":{"lock":false,"pos":{"x":-30.2241,"y":1.6931,"z":-7.6998},"rot":{"x":359.9202,"y":269.9836,"z":0.0165}},"ef067f":{"lock":false,"pos":{"x":-27.2278,"y":1.6207,"z":4.0347},"rot":{"x":0.0684,"y":135.0052,"z":0.0446}}}}' +MaterialIndex: -1 +MeshIndex: -1 +Name: Custom_Model_Bag +Nickname: Jenny's Choice +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 27.151722 + posY: 5.21630239 + posZ: -34.0824738 + rotX: 359.983246 + rotY: 270.004669 + rotZ: 0.0035323156 + scaleX: 2.21 + scaleY: 0.46 + scaleZ: 2.42 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Jenny's Choice a61b48/Card b2bd25.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Jenny's Choice a61b48/Card b2bd25.yaml new file mode 100644 index 000000000..f6f739d89 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Jenny's Choice a61b48/Card b2bd25.yaml @@ -0,0 +1,172 @@ +Autoraise: true +CardID: 278400 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2784': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/790858329421221346/67B13355B3E8D71BACD33F1E89CA01F63D7965D9/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/790858329421221346/67B13355B3E8D71BACD33F1E89CA01F63D7965D9/ + NumHeight: 2 + NumWidth: 2 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: b2bd25 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +States: + '2': + Autoraise: true + CardID: 278401 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2784': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/790858329421221346/67B13355B3E8D71BACD33F1E89CA01F63D7965D9/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/790858329421221346/67B13355B3E8D71BACD33F1E89CA01F63D7965D9/ + NumHeight: 2 + NumWidth: 2 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 5da00f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.5690212 + posY: 1.5380919 + posZ: 27.0593 + rotX: 359.920135 + rotY: 269.9994 + rotZ: 0.01687261 + scaleX: 3.0 + scaleY: 1.0 + scaleZ: 3.0 + XmlUI: '' + '3': + Autoraise: true + CardID: 278402 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2784': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/790858329421221346/67B13355B3E8D71BACD33F1E89CA01F63D7965D9/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/790858329421221346/67B13355B3E8D71BACD33F1E89CA01F63D7965D9/ + NumHeight: 2 + NumWidth: 2 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: d1a322 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.5690269 + posY: 1.53809178 + posZ: 27.05931 + rotX: 359.920135 + rotY: 269.9994 + rotZ: 0.0168726072 + scaleX: 3.0 + scaleY: 1.0 + scaleZ: 3.0 + XmlUI: '' + '4': + Autoraise: true + CardID: 278403 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2784': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/790858329421221346/67B13355B3E8D71BACD33F1E89CA01F63D7965D9/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/790858329421221346/67B13355B3E8D71BACD33F1E89CA01F63D7965D9/ + NumHeight: 2 + NumWidth: 2 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 93665b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.569025 + posY: 1.53809178 + posZ: 27.0593071 + rotX: 359.920135 + rotY: 269.9994 + rotZ: 0.01687289 + scaleX: 3.0 + scaleY: 1.0 + scaleZ: 3.0 + XmlUI: '' +Sticky: true +Tooltip: true +Transform: + posX: -1.17699993 + posY: 1.54674828 + posZ: -27.5609055 + rotX: 359.920135 + rotY: 269.9994 + rotZ: 0.0168726072 + scaleX: 3.0 + scaleY: 1.0 + scaleZ: 3.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Jenny's Choice a61b48/Card Balcony 1e7961.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Jenny's Choice a61b48/Card Balcony 1e7961.yaml new file mode 100644 index 000000000..d75c7c1be --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Jenny's Choice a61b48/Card Balcony 1e7961.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 278216 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2782': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/790858329421209873/2D05B3D27EEB0B4676EEC4C63391076275F60280/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/790858329421209312/A12F0151D1129C3CD062DFD91BD25235F8DC27BA/ + NumHeight: 4 + NumWidth: 10 + UniqueBack: true +Description: Upper Floor. +GMNotes: '' +GUID: 1e7961 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Balcony +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -17.12 + posY: 1.677066 + posZ: -0.03000138 + rotX: 359.920258 + rotY: 270.000031 + rotZ: 0.0160405636 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Jenny's Choice a61b48/Card Balcony 29d7e2.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Jenny's Choice a61b48/Card Balcony 29d7e2.yaml new file mode 100644 index 000000000..13ed2624f --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Jenny's Choice a61b48/Card Balcony 29d7e2.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 278215 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2782': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/790858329421209873/2D05B3D27EEB0B4676EEC4C63391076275F60280/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/790858329421209312/A12F0151D1129C3CD062DFD91BD25235F8DC27BA/ + NumHeight: 4 + NumWidth: 10 + UniqueBack: true +Description: Upper Floor. +GMNotes: '' +GUID: 29d7e2 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Balcony +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -15.5984755 + posY: 1.820907 + posZ: 0.0169964973 + rotX: 359.8887 + rotY: 269.978546 + rotZ: 0.0183628388 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Jenny's Choice a61b48/Card Cathedral Entrance 3c4300.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Jenny's Choice a61b48/Card Cathedral Entrance 3c4300.yaml new file mode 100644 index 000000000..c35a9a1db --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Jenny's Choice a61b48/Card Cathedral Entrance 3c4300.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 278217 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2782': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/790858329421209873/2D05B3D27EEB0B4676EEC4C63391076275F60280/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/790858329421209312/A12F0151D1129C3CD062DFD91BD25235F8DC27BA/ + NumHeight: 4 + NumWidth: 10 + UniqueBack: true +Description: Entrance. +GMNotes: '' +GUID: 3c4300 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Cathedral Entrance +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -23.6766 + posY: 1.68622041 + posZ: -0.03000035 + rotX: 359.9201 + rotY: 269.998718 + rotZ: 0.0168778971 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Jenny's Choice a61b48/Card Dismal Creek 1af6e8.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Jenny's Choice a61b48/Card Dismal Creek 1af6e8.yaml new file mode 100644 index 000000000..00b9e008a --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Jenny's Choice a61b48/Card Dismal Creek 1af6e8.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 278214 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2782': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/790858329421209873/2D05B3D27EEB0B4676EEC4C63391076275F60280/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/790858329421209312/A12F0151D1129C3CD062DFD91BD25235F8DC27BA/ + NumHeight: 4 + NumWidth: 10 + UniqueBack: true +Description: Woods. +GMNotes: '' +GUID: 1af6e8 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Dismal Creek +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -30.2241 + posY: 1.69758844 + posZ: 7.56999969 + rotX: 359.9201 + rotY: 269.999939 + rotZ: 0.0168763362 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Jenny's Choice a61b48/Card Hidden Grove 3ba881.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Jenny's Choice a61b48/Card Hidden Grove 3ba881.yaml new file mode 100644 index 000000000..fdb212ac9 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Jenny's Choice a61b48/Card Hidden Grove 3ba881.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 278209 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2782': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/790858329421209873/2D05B3D27EEB0B4676EEC4C63391076275F60280/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/790858329421209312/A12F0151D1129C3CD062DFD91BD25235F8DC27BA/ + NumHeight: 4 + NumWidth: 10 + UniqueBack: true +Description: Woods. +GMNotes: '' +GUID: 3ba881 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Hidden Grove +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -23.6765976 + posY: 1.68845844 + posZ: 7.56999874 + rotX: 359.9201 + rotY: 269.999634 + rotZ: 0.016877139 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Jenny's Choice a61b48/Card Inner Chamber 3d9a8b.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Jenny's Choice a61b48/Card Inner Chamber 3d9a8b.yaml new file mode 100644 index 000000000..9634332fc --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Jenny's Choice a61b48/Card Inner Chamber 3d9a8b.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 278212 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2782': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/790858329421209873/2D05B3D27EEB0B4676EEC4C63391076275F60280/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/790858329421209312/A12F0151D1129C3CD062DFD91BD25235F8DC27BA/ + NumHeight: 4 + NumWidth: 10 + UniqueBack: true +Description: Ground Floor. +GMNotes: '' +GUID: 3d9a8b +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Inner Chamber +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -22.2193356 + posY: 1.73406148 + posZ: -7.709142 + rotX: 0.0884191841 + rotY: 269.9699 + rotZ: 359.8635 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Jenny's Choice a61b48/Card Inner Chamber cca4ce.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Jenny's Choice a61b48/Card Inner Chamber cca4ce.yaml new file mode 100644 index 000000000..ea80decf1 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Jenny's Choice a61b48/Card Inner Chamber cca4ce.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 278213 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2782': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/790858329421209873/2D05B3D27EEB0B4676EEC4C63391076275F60280/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/790858329421209312/A12F0151D1129C3CD062DFD91BD25235F8DC27BA/ + NumHeight: 4 + NumWidth: 10 + UniqueBack: true +Description: Ground Floor. +GMNotes: '' +GUID: cca4ce +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Inner Chamber +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -23.676403 + posY: 1.6839633 + posZ: -7.688347 + rotX: 359.920135 + rotY: 270.0047 + rotZ: 0.0167363174 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Jenny's Choice a61b48/Card Organ Room 46ead9.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Jenny's Choice a61b48/Card Organ Room 46ead9.yaml new file mode 100644 index 000000000..dbbc14d9d --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Jenny's Choice a61b48/Card Organ Room 46ead9.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 278220 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2782': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/790858329421209873/2D05B3D27EEB0B4676EEC4C63391076275F60280/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/790858329421209312/A12F0151D1129C3CD062DFD91BD25235F8DC27BA/ + NumHeight: 4 + NumWidth: 10 + UniqueBack: true +Description: Ground Floor. +GMNotes: '' +GUID: 46ead9 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Organ Room +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -31.7029858 + posY: 1.743569 + posZ: -7.76126 + rotX: 0.0469017029 + rotY: 270.005341 + rotZ: 359.784119 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Jenny's Choice a61b48/Card Organ Room ea8211.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Jenny's Choice a61b48/Card Organ Room ea8211.yaml new file mode 100644 index 000000000..20dfef758 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Jenny's Choice a61b48/Card Organ Room ea8211.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 278219 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2782': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/790858329421209873/2D05B3D27EEB0B4676EEC4C63391076275F60280/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/790858329421209312/A12F0151D1129C3CD062DFD91BD25235F8DC27BA/ + NumHeight: 4 + NumWidth: 10 + UniqueBack: true +Description: Ground Floor. +GMNotes: '' +GUID: ea8211 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Organ Room +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -30.2240772 + posY: 1.693086 + posZ: -7.699835 + rotX: 359.920166 + rotY: 269.983917 + rotZ: 0.0165005736 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Jenny's Choice a61b48/Card Scenario 845074.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Jenny's Choice a61b48/Card Scenario 845074.yaml new file mode 100644 index 000000000..4519ce35a --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Jenny's Choice a61b48/Card Scenario 845074.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 278208 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2782': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/790858329421209873/2D05B3D27EEB0B4676EEC4C63391076275F60280/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/790858329421209312/A12F0151D1129C3CD062DFD91BD25235F8DC27BA/ + NumHeight: 4 + NumWidth: 10 + UniqueBack: true +Description: Jenny's Choice +GMNotes: '' +GUID: '845074' +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Scenario +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.956 + posY: 1.65564811 + posZ: -10.4412012 + rotX: 359.919739 + rotY: 270.0 + rotZ: 0.0168411136 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Jenny's Choice a61b48/Card Wine Cellar 6aa57e.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Jenny's Choice a61b48/Card Wine Cellar 6aa57e.yaml new file mode 100644 index 000000000..0cbf6079a --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Jenny's Choice a61b48/Card Wine Cellar 6aa57e.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 278210 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2782': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/790858329421209873/2D05B3D27EEB0B4676EEC4C63391076275F60280/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/790858329421209312/A12F0151D1129C3CD062DFD91BD25235F8DC27BA/ + NumHeight: 4 + NumWidth: 10 + UniqueBack: true +Description: Underground. +GMNotes: '' +GUID: 6aa57e +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Wine Cellar +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -30.2243958 + posY: 1.69539714 + posZ: -0.02980699 + rotX: 359.920746 + rotY: 269.989 + rotZ: 0.0182655919 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Jenny's Choice a61b48/Card Wine Cellar df8dff.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Jenny's Choice a61b48/Card Wine Cellar df8dff.yaml new file mode 100644 index 000000000..97e624825 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Jenny's Choice a61b48/Card Wine Cellar df8dff.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 278211 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2782': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/790858329421209873/2D05B3D27EEB0B4676EEC4C63391076275F60280/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/790858329421209312/A12F0151D1129C3CD062DFD91BD25235F8DC27BA/ + NumHeight: 4 + NumWidth: 10 + UniqueBack: true +Description: Underground. +GMNotes: '' +GUID: df8dff +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Wine Cellar +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -31.9570026 + posY: 1.82929218 + posZ: -0.06620596 + rotX: 4.76437759 + rotY: 270.018463 + rotZ: 0.0169948135 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Jenny's Choice a61b48/Custom_Model_Bag Set-aside a45247.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Jenny's Choice a61b48/Custom_Model_Bag Set-aside a45247.yaml new file mode 100644 index 000000000..68f3947af --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Jenny's Choice a61b48/Custom_Model_Bag Set-aside a45247.yaml @@ -0,0 +1,69 @@ +Autoraise: true +ColorDiffuse: + b: 0.02148666 + g: 0.00100758043 + r: 0.02148666 +ContainedObjects: +- !include 'Custom_Model_Bag Set-aside a45247/Card Isabelle Barnes e448d5.yaml' +- !include 'Custom_Model_Bag Set-aside a45247/Card Aimless 44dba6.yaml' +- !include 'Custom_Model_Bag Set-aside a45247/Card Emerald Light f1fb80.yaml' +- !include 'Custom_Model_Bag Set-aside a45247/Card I Killed Her 902091.yaml' +- !include 'Custom_Model_Bag Set-aside a45247/Card Izzie''s Violin 459082.yaml' +- !include 'Custom_Model_Bag Set-aside a45247/Card Lost in Thought 5541b1.yaml' +- !include 'Custom_Model_Bag Set-aside a45247/Card Isabelle Barnes 41faa0.yaml' +- !include 'Custom_Model_Bag Set-aside a45247/Card Lost in Thought e426d0.yaml' +- !include 'Custom_Model_Bag Set-aside a45247/Deck Herald of the Green Man be33d6.yaml' +- !include 'Custom_Model_Bag Set-aside a45247/Card Isabelle Barnes 511acf.yaml' +- !include 'Custom_Model_Bag Set-aside a45247/CardCustom Isabelle Barnes Token b290b5.yaml' +- !include 'Custom_Model_Bag Set-aside a45247/Card Isabelle Barnes Investigator Card + 2046ad.yaml' +- !include 'Custom_Model_Bag Set-aside a45247/Card Amphitheatre d4aeeb.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: '' +GMNotes: '' +GUID: a45247 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +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.69610047 + posY: 1.55831707 + posZ: 14.2788019 + rotX: 359.955139 + rotY: 224.997986 + rotZ: 0.06867207 + scaleX: 2.0 + scaleY: 2.0 + scaleZ: 2.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Jenny's Choice a61b48/Custom_Model_Bag Set-aside a45247/Card Aimless 44dba6.yaml new file mode 100644 index 000000000..f4850ede9 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Jenny's Choice a61b48/Custom_Model_Bag Set-aside a45247/Card Aimless 44dba6.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 278222 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2782': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/790858329421209873/2D05B3D27EEB0B4676EEC4C63391076275F60280/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/790858329421209312/A12F0151D1129C3CD062DFD91BD25235F8DC27BA/ + NumHeight: 4 + NumWidth: 10 + UniqueBack: true +Description: Flaw. +GMNotes: '' +GUID: 44dba6 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Aimless +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 14.9998245 + posY: 2.85824013 + posZ: 16.98272 + rotX: -0.004247951 + rotY: 270.008667 + rotZ: 352.2927 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Jenny's Choice a61b48/Custom_Model_Bag Set-aside a45247/Card Amphitheatre d4aeeb.yaml new file mode 100644 index 000000000..3addea947 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Jenny's Choice a61b48/Custom_Model_Bag Set-aside a45247/Card Amphitheatre d4aeeb.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 278218 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2782': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/790858329421209873/2D05B3D27EEB0B4676EEC4C63391076275F60280/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/790858329421209312/A12F0151D1129C3CD062DFD91BD25235F8DC27BA/ + NumHeight: 4 + NumWidth: 10 + UniqueBack: true +Description: Ground Floor. +GMNotes: '' +GUID: d4aeeb +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Amphitheatre +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 1.69642317 + posY: 3.72839475 + posZ: 14.2788382 + rotX: 359.94812 + rotY: 224.998062 + rotZ: 0.0583315231 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Jenny's Choice a61b48/Custom_Model_Bag Set-aside a45247/Card Emerald Light f1fb80.yaml new file mode 100644 index 000000000..1d5ba34e6 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Jenny's Choice a61b48/Custom_Model_Bag Set-aside a45247/Card Emerald Light f1fb80.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 278224 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2782': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/790858329421209873/2D05B3D27EEB0B4676EEC4C63391076275F60280/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/790858329421209312/A12F0151D1129C3CD062DFD91BD25235F8DC27BA/ + NumHeight: 4 + NumWidth: 10 + UniqueBack: true +Description: Mystery. +GMNotes: '' +GUID: f1fb80 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Emerald Light +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 15.2784252 + posY: 4.76827431 + posZ: 20.4255333 + rotX: 0.0207951069 + rotY: 270.002472 + rotZ: 0.0167668574 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Jenny's Choice a61b48/Custom_Model_Bag Set-aside a45247/Card I Killed Her 902091.yaml new file mode 100644 index 000000000..80f39d194 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Jenny's Choice a61b48/Custom_Model_Bag Set-aside a45247/Card I Killed Her 902091.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 278223 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2782': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/790858329421209873/2D05B3D27EEB0B4676EEC4C63391076275F60280/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/790858329421209312/A12F0151D1129C3CD062DFD91BD25235F8DC27BA/ + NumHeight: 4 + NumWidth: 10 + UniqueBack: true +Description: Flaw. Madness. +GMNotes: '' +GUID: '902091' +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: I Killed Her +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 18.8035526 + posY: 2.848998 + posZ: 17.1067467 + rotX: 359.992737 + rotY: 270.0071 + rotZ: 352.864441 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Jenny's Choice a61b48/Custom_Model_Bag Set-aside a45247/Card Isabelle Barnes 41faa0.yaml new file mode 100644 index 000000000..80de78aa5 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Jenny's Choice a61b48/Custom_Model_Bag Set-aside a45247/Card Isabelle Barnes 41faa0.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 278221 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2782': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/790858329421209873/2D05B3D27EEB0B4676EEC4C63391076275F60280/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/790858329421209312/A12F0151D1129C3CD062DFD91BD25235F8DC27BA/ + NumHeight: 4 + NumWidth: 10 + UniqueBack: true +Description: Captive +GMNotes: '' +GUID: 41faa0 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Isabelle Barnes +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 22.1127338 + posY: 2.71696329 + posZ: 27.64441 + rotX: 0.0208090786 + rotY: 270.0015 + rotZ: 0.01677103 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Jenny's Choice a61b48/Custom_Model_Bag Set-aside a45247/Card Isabelle Barnes 511acf.yaml new file mode 100644 index 000000000..acd3b7160 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Jenny's Choice a61b48/Custom_Model_Bag Set-aside a45247/Card Isabelle Barnes 511acf.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 278225 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2782': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/790858329421209873/2D05B3D27EEB0B4676EEC4C63391076275F60280/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/790858329421209312/A12F0151D1129C3CD062DFD91BD25235F8DC27BA/ + NumHeight: 4 + NumWidth: 10 + UniqueBack: true +Description: Double Trouble +GMNotes: '' +GUID: 511acf +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Isabelle Barnes +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 16.49686 + posY: 3.40553784 + posZ: 49.8375244 + rotX: 0.00113429164 + rotY: 269.997131 + rotZ: 359.238983 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Jenny's Choice a61b48/Custom_Model_Bag Set-aside a45247/Card Isabelle Barnes Investigator Card 2046ad.yaml new file mode 100644 index 000000000..01a9c678f --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Jenny's Choice a61b48/Custom_Model_Bag Set-aside a45247/Card Isabelle Barnes Investigator Card 2046ad.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 278307 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2783': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/790858329421209873/2D05B3D27EEB0B4676EEC4C63391076275F60280/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/790858329421209312/A12F0151D1129C3CD062DFD91BD25235F8DC27BA/ + NumHeight: 4 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 2046ad +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Isabelle Barnes Investigator Card +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 16.570858 + posY: 3.412187 + posZ: 47.843502 + rotX: 0.0167786367 + rotY: 179.9999 + rotZ: 359.979156 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Jenny's Choice a61b48/Custom_Model_Bag Set-aside a45247/Card Isabelle Barnes e448d5.yaml new file mode 100644 index 000000000..9634c3aa5 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Jenny's Choice a61b48/Custom_Model_Bag Set-aside a45247/Card Isabelle Barnes e448d5.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 278230 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2782': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/790858329421209873/2D05B3D27EEB0B4676EEC4C63391076275F60280/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/790858329421209312/A12F0151D1129C3CD062DFD91BD25235F8DC27BA/ + NumHeight: 4 + NumWidth: 10 + UniqueBack: true +Description: The Virtuoso at the Gates of Dawn +GMNotes: '' +GUID: e448d5 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Isabelle Barnes +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 22.98023 + posY: 2.8481555 + posZ: 17.126915 + rotX: -0.0038628988 + rotY: 269.9966 + rotZ: 352.980042 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Jenny's Choice a61b48/Custom_Model_Bag Set-aside a45247/Card Izzie's Violin 459082.yaml new file mode 100644 index 000000000..2d0a88483 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Jenny's Choice a61b48/Custom_Model_Bag Set-aside a45247/Card Izzie's Violin 459082.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 278227 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2782': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/790858329421209873/2D05B3D27EEB0B4676EEC4C63391076275F60280/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/790858329421209312/A12F0151D1129C3CD062DFD91BD25235F8DC27BA/ + NumHeight: 4 + NumWidth: 10 + UniqueBack: true +Description: Touched by the Green Man +GMNotes: '' +GUID: '459082' +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Izzie's Violin +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 18.7453556 + posY: 2.71372843 + posZ: 20.77142 + rotX: 0.0208087284 + rotY: 270.005219 + rotZ: 0.0167747755 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Jenny's Choice a61b48/Custom_Model_Bag Set-aside a45247/Card Lost in Thought 5541b1.yaml new file mode 100644 index 000000000..0fcac2c90 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Jenny's Choice a61b48/Custom_Model_Bag Set-aside a45247/Card Lost in Thought 5541b1.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 278226 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2782': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/790858329421209873/2D05B3D27EEB0B4676EEC4C63391076275F60280/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/790858329421209312/A12F0151D1129C3CD062DFD91BD25235F8DC27BA/ + NumHeight: 4 + NumWidth: 10 + UniqueBack: true +Description: Flaw. +GMNotes: '' +GUID: 5541b1 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Lost in Thought +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 22.39818 + posY: 2.71515131 + posZ: 21.1006126 + rotX: 0.020818023 + rotY: 269.970642 + rotZ: 0.0167599712 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Jenny's Choice a61b48/Custom_Model_Bag Set-aside a45247/Card Lost in Thought e426d0.yaml new file mode 100644 index 000000000..00a328287 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Jenny's Choice a61b48/Custom_Model_Bag Set-aside a45247/Card Lost in Thought e426d0.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 278228 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2782': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/790858329421209873/2D05B3D27EEB0B4676EEC4C63391076275F60280/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/790858329421209312/A12F0151D1129C3CD062DFD91BD25235F8DC27BA/ + NumHeight: 4 + NumWidth: 10 + UniqueBack: true +Description: Flaw. +GMNotes: '' +GUID: e426d0 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Lost in Thought +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 22.3993549 + posY: 2.71641016 + posZ: 25.3991432 + rotX: 0.0208096448 + rotY: 270.0 + rotZ: 0.0167705622 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Jenny's Choice a61b48/Custom_Model_Bag Set-aside a45247/CardCustom Isabelle Barnes Token b290b5.yaml new file mode 100644 index 000000000..63c517711 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Jenny's Choice a61b48/Custom_Model_Bag Set-aside a45247/CardCustom Isabelle Barnes Token b290b5.yaml @@ -0,0 +1,42 @@ +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/790858329421187773/51AE9C4AB59CB0C6FBE1CC1D8644ABD90FED4EFF/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/790858329421187010/AF08A3E5D06B5F4C153D2750866610AB2381321A/ + NumHeight: 1 + NumWidth: 1 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: b290b5 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: CardCustom +Nickname: Isabelle Barnes Token +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 25.4394569 + posY: 2.5364 + posZ: 24.7018623 + rotX: 359.9201 + rotY: 270.013458 + rotZ: 0.01687718 + scaleX: 0.6 + scaleY: 1.0 + scaleZ: 0.6 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Jenny's Choice a61b48/Custom_Model_Bag Set-aside a45247/Deck Herald of the Green Man be33d6.yaml new file mode 100644 index 000000000..fb8eb264b --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Jenny's Choice a61b48/Custom_Model_Bag Set-aside a45247/Deck Herald of the Green Man be33d6.yaml @@ -0,0 +1,172 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 278229 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2782': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/790858329421209873/2D05B3D27EEB0B4676EEC4C63391076275F60280/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/790858329421209312/A12F0151D1129C3CD062DFD91BD25235F8DC27BA/ + NumHeight: 4 + NumWidth: 10 + UniqueBack: true + Description: Cultist. + GMNotes: '' + GUID: '902123' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Herald of the Green Man + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 6.31546831 + posY: 1.55521894 + posZ: 36.7954063 + rotX: 359.920441 + rotY: 270.0022 + rotZ: 0.0147446413 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 278229 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2782': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/790858329421209873/2D05B3D27EEB0B4676EEC4C63391076275F60280/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/790858329421209312/A12F0151D1129C3CD062DFD91BD25235F8DC27BA/ + NumHeight: 4 + NumWidth: 10 + UniqueBack: true + Description: Cultist. + GMNotes: '' + GUID: c4bd76 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Herald of the Green Man + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 6.385285 + posY: 1.70067513 + posZ: 37.0480766 + rotX: 359.940582 + rotY: 270.00177 + rotZ: 0.00223171874 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 278229 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2782': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/790858329421209873/2D05B3D27EEB0B4676EEC4C63391076275F60280/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/790858329421209312/A12F0151D1129C3CD062DFD91BD25235F8DC27BA/ + NumHeight: 4 + NumWidth: 10 + UniqueBack: true + Description: Cultist. + GMNotes: '' + GUID: c48c8b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Herald of the Green Man + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 6.589958 + posY: 1.73346 + posZ: 36.89643 + rotX: 359.9198 + rotY: 270.011475 + rotZ: 0.0161295049 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2782': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/790858329421209873/2D05B3D27EEB0B4676EEC4C63391076275F60280/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/790858329421209312/A12F0151D1129C3CD062DFD91BD25235F8DC27BA/ + NumHeight: 4 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 278229 +- 278229 +- 278229 +Description: '' +GMNotes: '' +GUID: be33d6 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Herald of the Green Man +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 16.817791 + posY: 3.411623 + posZ: 47.160202 + rotX: 0.0205937251 + rotY: 270.0024 + rotZ: 0.016699899 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Jenny's Choice a61b48/Custom_Tile 057b7e.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Jenny's Choice a61b48/Custom_Tile 057b7e.yaml new file mode 100644 index 000000000..6fa3f9ba0 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Jenny's Choice a61b48/Custom_Tile 057b7e.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 057b7e +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.6763973 + posY: 1.6111263 + posZ: -11.5100021 + rotX: 359.983124 + rotY: -0.000765136268 + rotZ: 359.920074 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Jenny's Choice a61b48/Custom_Tile 149816.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Jenny's Choice a61b48/Custom_Tile 149816.yaml new file mode 100644 index 000000000..9ea676632 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Jenny's Choice a61b48/Custom_Tile 149816.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: '149816' +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.2241 + posY: 1.62251818 + posZ: -3.82999945 + rotX: 359.983124 + rotY: -0.0008605046 + rotZ: 359.920074 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Jenny's Choice a61b48/Custom_Tile 44b0c5.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Jenny's Choice a61b48/Custom_Tile 44b0c5.yaml new file mode 100644 index 000000000..84e13d0e1 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Jenny's Choice a61b48/Custom_Tile 44b0c5.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 44b0c5 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Tile +Nickname: '' +Snap: true +States: + '1': + 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: '' + GMNotes: '' + GUID: d6ce31 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Custom_Tile + Nickname: '' + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -26.7732563 + posY: 1.61881161 + posZ: -0.07530425 + rotX: 359.9201 + rotY: 270.00415 + rotZ: 0.0168945231 + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Custom_Tile + Nickname: '' + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -26.7732563 + posY: 1.61881173 + posZ: -0.07530405 + rotX: 359.9201 + rotY: 270.00415 + rotZ: 0.0168720391 + scaleX: 0.8 + scaleY: 1.0 + scaleZ: 0.8 + XmlUI: '' +Sticky: true +Tooltip: true +Transform: + posX: -26.7848 + posY: 1.61883473 + posZ: -0.0522002727 + rotX: 0.0798951462 + rotY: 90.00261 + rotZ: 359.9831 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Jenny's Choice a61b48/Custom_Tile 61a21b.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Jenny's Choice a61b48/Custom_Tile 61a21b.yaml new file mode 100644 index 000000000..3f2709b0a --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Jenny's Choice a61b48/Custom_Tile 61a21b.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 61a21b +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.524498 + posY: 1.61005735 + posZ: -0.2141004 + rotX: 359.920135 + rotY: 269.8898 + rotZ: 0.0170554947 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Jenny's Choice a61b48/Custom_Tile 6cb6e7.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Jenny's Choice a61b48/Custom_Tile 6cb6e7.yaml new file mode 100644 index 000000000..970b68084 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Jenny's Choice a61b48/Custom_Tile 6cb6e7.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 6cb6e7 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.6764 + posY: 1.61338782 + posZ: -3.83000064 + rotX: 359.983124 + rotY: -0.000585325353 + rotZ: 359.920074 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Jenny's Choice a61b48/Custom_Tile 7234af.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Jenny's Choice a61b48/Custom_Tile 7234af.yaml new file mode 100644 index 000000000..48fe46f0f --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Jenny's Choice a61b48/Custom_Tile 7234af.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 7234af +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.6765 + posY: 1.61565232 + posZ: 3.86000013 + rotX: 359.983124 + rotY: -0.000779832946 + rotZ: 359.920074 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Jenny's Choice a61b48/Custom_Tile b5ceb0.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Jenny's Choice a61b48/Custom_Tile b5ceb0.yaml new file mode 100644 index 000000000..aaaf3abb1 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Jenny's Choice a61b48/Custom_Tile b5ceb0.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: b5ceb0 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.8548 + posY: 1.62112308 + posZ: 7.3881 + rotX: 359.9201 + rotY: 270.00415 + rotZ: 0.0168958232 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Jenny's Choice a61b48/Custom_Tile b81937.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Jenny's Choice a61b48/Custom_Tile b81937.yaml new file mode 100644 index 000000000..ddcbdf469 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Jenny's Choice a61b48/Custom_Tile b81937.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: b81937 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.6804 + posY: 1.61757314 + posZ: -3.8413 + rotX: 0.0684269741 + rotY: 135.005325 + rotZ: 0.0445682779 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Jenny's Choice a61b48/Custom_Tile c6a2ab.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Jenny's Choice a61b48/Custom_Tile c6a2ab.yaml new file mode 100644 index 000000000..fb5e7bc4a --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Jenny's Choice a61b48/Custom_Tile c6a2ab.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: c6a2ab +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.6254 + posY: 1.61674428 + posZ: -11.1322012 + rotX: 359.93158 + rotY: 314.99585 + rotZ: 359.955444 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Jenny's Choice a61b48/Custom_Tile d778ee.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Jenny's Choice a61b48/Custom_Tile d778ee.yaml new file mode 100644 index 000000000..1e5461e4b --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Jenny's Choice a61b48/Custom_Tile d778ee.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: d778ee +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.967 + posY: 1.61681008 + posZ: -7.79010153 + rotX: 359.9201 + rotY: 270.004181 + rotZ: 0.0168939885 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Jenny's Choice a61b48/Custom_Tile ef067f.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Jenny's Choice a61b48/Custom_Tile ef067f.yaml new file mode 100644 index 000000000..e6913a0e0 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Jenny's Choice a61b48/Custom_Tile ef067f.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: ef067f +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.2278 + posY: 1.62065566 + posZ: 4.0347 + rotX: 0.06842722 + rotY: 135.005173 + rotZ: 0.0445677564 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Jenny's Choice a61b48/Custom_Tile Jenny's Choice bbb70a.ttslua b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Jenny's Choice a61b48/Custom_Tile Jenny's Choice bbb70a.ttslua new file mode 100644 index 000000000..f1cde3b4e --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Jenny's Choice a61b48/Custom_Tile Jenny's Choice bbb70a.ttslua @@ -0,0 +1,25 @@ +name = 'Jennys Choice' + +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 + +function standaloneClick() + Global.call('fillContainer', {object=self, key=name, mode='standalone'}) +end diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Jenny's Choice a61b48/Custom_Tile Jenny's Choice bbb70a.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Jenny's Choice a61b48/Custom_Tile Jenny's Choice bbb70a.yaml new file mode 100644 index 000000000..31ae14e5e --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Jenny's Choice a61b48/Custom_Tile Jenny's Choice bbb70a.yaml @@ -0,0 +1,42 @@ +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: http://cloud-3.steamusercontent.com/ugc/949588657194710961/D864BCCCC1C811EC7F0AED69D1C30C678D3D9FC9/ + ImageURL: http://cloud-3.steamusercontent.com/ugc/965354846165100486/3DC8FCEF364B30758B09EF96AF9458F2B8E64D56/ + WidthScale: 0.0 +Description: click to set chaos token difficulty +GMNotes: '' +GUID: bbb70a +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Tile Jenny''s Choice bbb70a.ttslua' +LuaScriptState: '' +Name: Custom_Tile +Nickname: Jenny's Choice +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.819 + posY: 1.58233535 + posZ: -15.2311029 + rotX: 359.919739 + rotY: 270.032166 + rotZ: 0.0167927854 + scaleX: 2.2 + scaleY: 1.0 + scaleZ: 2.2 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Jenny's Choice a61b48/Deck Agenda Deck 06d29e.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Jenny's Choice a61b48/Deck Agenda Deck 06d29e.yaml new file mode 100644 index 000000000..60dc6d482 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Jenny's Choice a61b48/Deck Agenda Deck 06d29e.yaml @@ -0,0 +1,215 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 278306 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2783': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/790858329421209873/2D05B3D27EEB0B4676EEC4C63391076275F60280/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/790858329421209312/A12F0151D1129C3CD062DFD91BD25235F8DC27BA/ + NumHeight: 4 + NumWidth: 10 + UniqueBack: true + Description: Agenda 4 + GMNotes: '' + GUID: 2a50e6 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: I'm too late + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 8.065705 + posY: 1.53730142 + posZ: -15.7410765 + rotX: 0.0173158757 + rotY: 180.000061 + rotZ: 0.07704001 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 278305 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2783': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/790858329421209873/2D05B3D27EEB0B4676EEC4C63391076275F60280/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/790858329421209312/A12F0151D1129C3CD062DFD91BD25235F8DC27BA/ + NumHeight: 4 + NumWidth: 10 + UniqueBack: true + Description: Agenda 3 + GMNotes: '' + GUID: a4b900 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: An Audience of One + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 10.6349916 + posY: 1.533756 + posZ: -15.5937719 + rotX: 0.0173721686 + rotY: 180.000122 + rotZ: 0.07659864 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 278304 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2783': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/790858329421209873/2D05B3D27EEB0B4676EEC4C63391076275F60280/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/790858329421209312/A12F0151D1129C3CD062DFD91BD25235F8DC27BA/ + NumHeight: 4 + NumWidth: 10 + UniqueBack: true + Description: Agenda 2 + GMNotes: '' + GUID: 8ff22a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Growing Dissonance + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 13.1831341 + posY: 1.53021646 + posZ: -15.5093365 + rotX: 0.017557729 + rotY: 179.999466 + rotZ: 0.07643831 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 278303 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2783': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/790858329421209873/2D05B3D27EEB0B4676EEC4C63391076275F60280/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/790858329421209312/A12F0151D1129C3CD062DFD91BD25235F8DC27BA/ + NumHeight: 4 + NumWidth: 10 + UniqueBack: true + Description: Agenda 1 + GMNotes: '' + GUID: abd600 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Remnants + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 13.0555811 + posY: 1.67562544 + posZ: -15.60496 + rotX: 0.0308804456 + rotY: 179.997437 + rotZ: 0.04843237 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2783': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/790858329421209873/2D05B3D27EEB0B4676EEC4C63391076275F60280/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/790858329421209312/A12F0151D1129C3CD062DFD91BD25235F8DC27BA/ + NumHeight: 4 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 278306 +- 278305 +- 278304 +- 278303 +Description: '' +GMNotes: '' +GUID: 06d29e +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Agenda Deck +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.72480035 + posY: 1.65513861 + posZ: 0.373300284 + rotX: 0.0168358069 + rotY: 179.999512 + rotZ: 0.08025744 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Jenny's Choice a61b48/Deck Encounter Deck 8bae65.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Jenny's Choice a61b48/Deck Encounter Deck 8bae65.yaml new file mode 100644 index 000000000..9f9aae3cb --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Jenny's Choice a61b48/Deck Encounter Deck 8bae65.yaml @@ -0,0 +1,1046 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 3623 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Cultist. + GMNotes: '' + GUID: c70e63 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Acolyte + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 98.93172 + posY: 1.556378 + posZ: 15.9665985 + rotX: 359.989929 + rotY: 269.999969 + rotZ: 359.98764 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3634 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Monster. + GMNotes: '' + GUID: dbcee1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Goat Spawn + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 90.53866 + posY: 1.55464137 + posZ: -0.678629 + rotX: 359.990082 + rotY: 270.000366 + rotZ: 359.988 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3623 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Cultist. + GMNotes: '' + GUID: 4072d7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Acolyte + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 99.0756 + posY: 1.55269325 + posZ: 16.03813 + rotX: 359.989929 + rotY: 270.0 + rotZ: 359.9876 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3752 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '37': + BackIsHidden: true + BackURL: https://i.imgur.com/h4om3TQ.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87098596225478692/B2438BEE2CDD4D172BAFA5DFDD15C0F29B079D4F/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Omen. + GMNotes: '' + GUID: 7a814c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Twist of Fate + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 102.541641 + posY: 1.40976667 + posZ: -12.4745493 + rotX: 359.981262 + rotY: 269.998077 + rotZ: 359.984039 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3751 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '37': + BackIsHidden: true + BackURL: https://i.imgur.com/h4om3TQ.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87098596225478692/B2438BEE2CDD4D172BAFA5DFDD15C0F29B079D4F/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Omen. + GMNotes: '' + GUID: cbb71e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Cursed Luck + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 12.0453854 + posY: 1.69722033 + posZ: 36.7507 + rotX: 359.933167 + rotY: 270.000336 + rotZ: 0.0124639394 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3625 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: 6f5b7b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Mysterious Chanting + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 98.78452 + posY: 1.40295327 + posZ: 16.366806 + rotX: 359.987427 + rotY: 269.999817 + rotZ: 359.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3634 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Monster. + GMNotes: '' + GUID: bda9db + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Goat Spawn + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 90.78235 + posY: 1.57190418 + posZ: -0.8887629 + rotX: 359.9898 + rotY: 269.999756 + rotZ: 359.987976 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3751 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '37': + BackIsHidden: true + BackURL: https://i.imgur.com/h4om3TQ.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87098596225478692/B2438BEE2CDD4D172BAFA5DFDD15C0F29B079D4F/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Omen. + GMNotes: '' + GUID: 85da91 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Cursed Luck + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 103.125893 + posY: 1.55867076 + posZ: -12.2961349 + rotX: 359.986877 + rotY: 269.996216 + rotZ: 359.9824 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 278232 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2782': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/790858329421209873/2D05B3D27EEB0B4676EEC4C63391076275F60280/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/790858329421209312/A12F0151D1129C3CD062DFD91BD25235F8DC27BA/ + NumHeight: 4 + NumWidth: 10 + UniqueBack: true + Description: Omen. Terror. + GMNotes: '' + GUID: ccbe21 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Discordant Piping + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 14.4987707 + posY: 1.63379765 + posZ: 19.8524475 + rotX: 359.919861 + rotY: 269.9313 + rotZ: 355.022858 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3751 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '37': + BackIsHidden: true + BackURL: https://i.imgur.com/h4om3TQ.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87098596225478692/B2438BEE2CDD4D172BAFA5DFDD15C0F29B079D4F/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Omen. + GMNotes: '' + GUID: 98fea7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Cursed Luck + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 103.118362 + posY: 1.55657685 + posZ: -11.9283237 + rotX: 359.990021 + rotY: 270.003235 + rotZ: 359.99408 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 278231 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2782': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/790858329421209873/2D05B3D27EEB0B4676EEC4C63391076275F60280/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/790858329421209312/A12F0151D1129C3CD062DFD91BD25235F8DC27BA/ + NumHeight: 4 + NumWidth: 10 + UniqueBack: true + Description: Flaw. + GMNotes: '' + GUID: 76e166 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Half-Cocked + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 6.46177149 + posY: 1.5502336 + posZ: 20.4411659 + rotX: 359.920135 + rotY: 269.996277 + rotZ: 0.0168801527 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 278232 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2782': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/790858329421209873/2D05B3D27EEB0B4676EEC4C63391076275F60280/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/790858329421209312/A12F0151D1129C3CD062DFD91BD25235F8DC27BA/ + NumHeight: 4 + NumWidth: 10 + UniqueBack: true + Description: Omen. Terror. + GMNotes: '' + GUID: 1058c3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Discordant Piping + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 12.4376593 + posY: 1.63597262 + posZ: 16.1655769 + rotX: 359.3572 + rotY: 269.981567 + rotZ: 4.217363 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3633 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Dark Young. + GMNotes: '' + GUID: da8001 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Relentless Dark Young + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 90.86829 + posY: 1.55806494 + posZ: -0.202746555 + rotX: 359.987366 + rotY: 270.0016 + rotZ: 359.983429 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 278231 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2782': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/790858329421209873/2D05B3D27EEB0B4676EEC4C63391076275F60280/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/790858329421209312/A12F0151D1129C3CD062DFD91BD25235F8DC27BA/ + NumHeight: 4 + NumWidth: 10 + UniqueBack: true + Description: Flaw. + GMNotes: '' + GUID: 3a7207 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Half-Cocked + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 12.8046408 + posY: 1.54074943 + posZ: 18.1677952 + rotX: 359.92 + rotY: 269.983246 + rotZ: 0.0179217421 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3752 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '37': + BackIsHidden: true + BackURL: https://i.imgur.com/h4om3TQ.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87098596225478692/B2438BEE2CDD4D172BAFA5DFDD15C0F29B079D4F/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Omen. + GMNotes: '' + GUID: f11672 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Twist of Fate + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 102.516029 + posY: 1.53537273 + posZ: -11.9082127 + rotX: 1.18894553 + rotY: 269.99054 + rotZ: 359.979553 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3634 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Monster. + GMNotes: '' + GUID: 19459f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Goat Spawn + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 90.65886 + posY: 1.40921557 + posZ: -0.233399391 + rotX: 359.987427 + rotY: 270.0001 + rotZ: 359.984528 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3625 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: df668b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Mysterious Chanting + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 99.2046661 + posY: 1.54923761 + posZ: 15.9180088 + rotX: 359.989929 + rotY: 270.0 + rotZ: 359.98764 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3623 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Cultist. + GMNotes: '' + GUID: c70e63 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Acolyte + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 98.97962 + posY: 1.55247211 + posZ: 16.3414173 + rotX: 359.99057 + rotY: 269.9967 + rotZ: 359.984833 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 278232 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2782': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/790858329421209873/2D05B3D27EEB0B4676EEC4C63391076275F60280/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/790858329421209312/A12F0151D1129C3CD062DFD91BD25235F8DC27BA/ + NumHeight: 4 + NumWidth: 10 + UniqueBack: true + Description: Omen. Terror. + GMNotes: '' + GUID: 36c290 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Discordant Piping + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 14.3382807 + posY: 1.69389069 + posZ: 19.8668289 + rotX: 359.922943 + rotY: 269.993866 + rotZ: 0.0108329291 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 278231 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2782': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/790858329421209873/2D05B3D27EEB0B4676EEC4C63391076275F60280/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/790858329421209312/A12F0151D1129C3CD062DFD91BD25235F8DC27BA/ + NumHeight: 4 + NumWidth: 10 + UniqueBack: true + Description: Flaw. + GMNotes: '' + GUID: 0f9116 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Half-Cocked + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 9.619959 + posY: 1.54502892 + posZ: 17.7829475 + rotX: 359.918671 + rotY: 270.00235 + rotZ: 0.0155547587 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3752 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '37': + BackIsHidden: true + BackURL: https://i.imgur.com/h4om3TQ.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87098596225478692/B2438BEE2CDD4D172BAFA5DFDD15C0F29B079D4F/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Omen. + GMNotes: '' + GUID: '754870' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Twist of Fate + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 102.251732 + posY: 1.54939449 + posZ: -12.6249342 + rotX: -0.003878043 + rotY: 270.001038 + rotZ: 359.993439 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 278232 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2782': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/790858329421209873/2D05B3D27EEB0B4676EEC4C63391076275F60280/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/790858329421209312/A12F0151D1129C3CD062DFD91BD25235F8DC27BA/ + NumHeight: 4 + NumWidth: 10 + UniqueBack: true + Description: Omen. Terror. + GMNotes: '' + GUID: ebc777 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Discordant Piping + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 8.145697 + posY: 1.5463376 + posZ: 15.1827192 + rotX: 359.920135 + rotY: 269.9961 + rotZ: 0.0168802738 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3624 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Cultist. + GMNotes: '' + GUID: 159f90 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Wizard of the Order + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 98.45666 + posY: 1.55439174 + posZ: 16.9464512 + rotX: 1.20685 + rotY: 269.9761 + rotZ: 357.846649 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2782': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/790858329421209873/2D05B3D27EEB0B4676EEC4C63391076275F60280/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/790858329421209312/A12F0151D1129C3CD062DFD91BD25235F8DC27BA/ + NumHeight: 4 + NumWidth: 10 + UniqueBack: true + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '37': + BackIsHidden: true + BackURL: https://i.imgur.com/h4om3TQ.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87098596225478692/B2438BEE2CDD4D172BAFA5DFDD15C0F29B079D4F/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 3623 +- 3634 +- 3623 +- 3752 +- 3751 +- 3625 +- 3634 +- 3751 +- 278232 +- 3751 +- 278231 +- 278232 +- 3633 +- 278231 +- 3752 +- 3634 +- 3625 +- 3623 +- 278232 +- 278231 +- 3752 +- 278232 +- 3624 +Description: '' +GMNotes: '' +GUID: 8bae65 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Encounter Deck +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.92770028 + posY: 1.73440385 + posZ: 5.757201 + 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 The Side Missions 791837/Custom_Model_Bag Jenny's Choice a61b48/Deck Encounter Deck e02060.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Jenny's Choice a61b48/Deck Encounter Deck e02060.yaml new file mode 100644 index 000000000..a9ea4612e --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Jenny's Choice a61b48/Deck Encounter Deck e02060.yaml @@ -0,0 +1,172 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 278302 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2783': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/790858329421209873/2D05B3D27EEB0B4676EEC4C63391076275F60280/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/790858329421209312/A12F0151D1129C3CD062DFD91BD25235F8DC27BA/ + NumHeight: 4 + NumWidth: 10 + UniqueBack: true + Description: Act 3 + GMNotes: '' + GUID: 89e9bc + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: An End to the Ritual + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 10.6020317 + posY: 1.53262413 + posZ: -19.11281 + rotX: 0.0187283047 + rotY: 180.000076 + rotZ: 0.06723488 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 278301 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2783': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/790858329421209873/2D05B3D27EEB0B4676EEC4C63391076275F60280/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/790858329421209312/A12F0151D1129C3CD062DFD91BD25235F8DC27BA/ + NumHeight: 4 + NumWidth: 10 + UniqueBack: true + Description: Act 2 + GMNotes: '' + GUID: '528179' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: A Plan Unfolds + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 13.14345 + posY: 1.5292182 + posZ: -19.2045822 + rotX: 0.0171248354 + rotY: 180.000092 + rotZ: 0.0781344548 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 278300 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2783': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/790858329421209873/2D05B3D27EEB0B4676EEC4C63391076275F60280/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/790858329421209312/A12F0151D1129C3CD062DFD91BD25235F8DC27BA/ + NumHeight: 4 + NumWidth: 10 + UniqueBack: true + Description: Act 1 + GMNotes: '' + GUID: 21e103 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Gaining Entrance + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 13.5584593 + posY: 1.689817 + posZ: -19.1340771 + rotX: 0.0190580543 + rotY: 180.000122 + rotZ: 0.0785427243 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2783': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/790858329421209873/2D05B3D27EEB0B4676EEC4C63391076275F60280/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/790858329421209312/A12F0151D1129C3CD062DFD91BD25235F8DC27BA/ + NumHeight: 4 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 278302 +- 278301 +- 278300 +Description: '' +GMNotes: '' +GUID: e02060 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Encounter Deck +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.6886 + posY: 1.65499747 + posZ: -5.0485 + rotX: 0.01683488 + rotY: 180.000122 + rotZ: 0.0802577659 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16.ttslua b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16.ttslua new file mode 100644 index 000000000..46067f58e --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16.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.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.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 791837/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16.yaml new file mode 100644 index 000000000..353ba0460 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16.yaml @@ -0,0 +1,72 @@ +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 Kiedy sny Staj\u0105 si\u0119 Rzeczywi\u015Bci\u0105\ + \ acdf16/Bag Przeznacznenie w Red Hook 1e00a9.yaml" +- !include "Custom_Model_Bag Kiedy sny Staj\u0105 si\u0119 Rzeczywi\u015Bci\u0105\ + \ acdf16/Bag Podniebny Koncert 2889f0.yaml" +- !include "Custom_Model_Bag Kiedy sny Staj\u0105 si\u0119 Rzeczywi\u015Bci\u0105\ + \ acdf16/Bag Nieuchwytny 31a93a.yaml" +- !include "Custom_Model_Bag Kiedy sny Staj\u0105 si\u0119 Rzeczywi\u015Bci\u0105\ + \ acdf16/Bag Dziwny Przypadek Benedicta Burtona bd069f.yaml" +- !include "Custom_Model_Bag Kiedy sny Staj\u0105 si\u0119 Rzeczywi\u015Bci\u0105\ + \ acdf16/Bag Trudno\u015B\u0107 68ca42.yaml" +- !include "Custom_Model_Bag Kiedy sny Staj\u0105 si\u0119 Rzeczywi\u015Bci\u0105\ + \ acdf16/Custom_Tile 24e5eb.yaml" +CustomMesh: + CastShadows: true + ColliderURL: '' + Convex: true + DiffuseURL: http://cloud-3.steamusercontent.com/ugc/798737729142937909/81868D8E838249B9D5C467282B6EF12DC5879CA5/ + MaterialIndex: 3 + MeshURL: https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj + NormalURL: '' + TypeIndex: 6 +Description: '' +GMNotes: '' +GUID: acdf16 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include "Custom_Model_Bag Kiedy sny Staj\u0105 si\u0119 Rzeczywi\u015B\ + ci\u0105 acdf16.ttslua" +LuaScriptState: '{"ml":{"1e00a9":{"lock":false,"pos":{"x":9.3117,"y":1.285,"z":4.9883},"rot":{"x":0.0799,"y":89.9803,"z":359.9831}},"24e5eb":{"lock":false,"pos":{"x":-5.6029,"y":1.5487,"z":23.9983},"rot":{"x":359.9201,"y":270.0043,"z":359.5229}},"2889f0":{"lock":false,"pos":{"x":9.5686,"y":1.2858,"z":9.0951},"rot":{"x":0.0799,"y":89.9924,"z":359.9831}},"31a93a":{"lock":false,"pos":{"x":8.9743,"y":1.2844,"z":1.3267},"rot":{"x":0.0799,"y":89.9966,"z":359.9831}},"68ca42":{"lock":false,"pos":{"x":-3.3874,"y":1.3969,"z":-14.6273},"rot":{"x":359.9832,"y":-0.0008,"z":359.9196}},"bd069f":{"lock":false,"pos":{"x":9.3965,"y":1.2827,"z":-2.4823},"rot":{"x":0.0799,"y":89.9951,"z":359.9831}}}}' +MaterialIndex: -1 +MeshIndex: -1 +Name: Custom_Model_Bag +Nickname: "Kiedy sny Staj\u0105 si\u0119 Rzeczywi\u015Bci\u0105" +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 31.3683071 + posY: 8.486372 + posZ: -174.861542 + rotX: 0.020808626 + rotY: 270.0 + rotZ: 0.0167712085 + scaleX: 2.21 + scaleY: 0.2 + scaleZ: 2.46 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Dziwny Przypadek Benedicta Burtona bd069f.ttslua b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Dziwny Przypadek Benedicta Burtona bd069f.ttslua new file mode 100644 index 000000000..4acf9ea11 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Dziwny Przypadek Benedicta Burtona bd069f.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 791837/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 791837/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Dziwny Przypadek Benedicta Burtona bd069f.yaml new file mode 100644 index 000000000..7dc476657 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Dziwny Przypadek Benedicta Burtona bd069f.yaml @@ -0,0 +1,62 @@ +Autoraise: true +ColorDiffuse: + b: 0.0 + g: 0.366520882 + r: 0.7058823 +ContainedObjects: +- !include 'Bag Dziwny Przypadek Benedicta Burtona bd069f/Deck Przedmioty 45769e.yaml' +- !include 'Bag Dziwny Przypadek Benedicta Burtona bd069f/Card Utracony Benedict 855e12.yaml' +- !include "Bag Dziwny Przypadek Benedicta Burtona bd069f/Deck talia Spotka\u0144\ + \ bd65ec.yaml" +- !include 'Bag Dziwny Przypadek Benedicta Burtona bd069f/Deck Tajemnica 8a541d.yaml' +- !include 'Bag Dziwny Przypadek Benedicta Burtona bd069f/Deck Act 1c3d2b.yaml' +- !include 'Bag Dziwny Przypadek Benedicta Burtona bd069f/Card 74c2c5.yaml' +- !include 'Bag Dziwny Przypadek Benedicta Burtona bd069f/Card Zasady 90d605.yaml' +- !include 'Bag Dziwny Przypadek Benedicta Burtona bd069f/Card d781a0.yaml' +- !include 'Bag Dziwny Przypadek Benedicta Burtona bd069f/Custom_Tile abf92a.yaml' +- !include 'Bag Dziwny Przypadek Benedicta Burtona bd069f/Card 7c3135.yaml' +- !include 'Bag Dziwny Przypadek Benedicta Burtona bd069f/Card Benedict Burton 68f7fa.yaml' +- !include 'Bag Dziwny Przypadek Benedicta Burtona bd069f/Custom_Tile edc283.yaml' +- !include 'Bag Dziwny Przypadek Benedicta Burtona bd069f/Custom_Tile 7234af.yaml' +- !include 'Bag Dziwny Przypadek Benedicta Burtona bd069f/Card f145e7.yaml' +- !include 'Bag Dziwny Przypadek Benedicta Burtona bd069f/Card 4e7889.yaml' +- !include 'Bag Dziwny Przypadek Benedicta Burtona bd069f/Custom_Tile a45a75.yaml' +- !include 'Bag Dziwny Przypadek Benedicta Burtona bd069f/Card 65948c.yaml' +- !include 'Bag Dziwny Przypadek Benedicta Burtona bd069f/Custom_Tile a98084.yaml' +- !include 'Bag Dziwny Przypadek Benedicta Burtona bd069f/Custom_Tile 914d11.yaml' +- !include 'Bag Dziwny Przypadek Benedicta Burtona bd069f/Custom_Tile 640916.yaml' +- !include 'Bag Dziwny Przypadek Benedicta Burtona bd069f/Custom_Tile 7d84fa.yaml' +- !include 'Bag Dziwny Przypadek Benedicta Burtona bd069f/Card 3d0300.yaml' +- !include 'Bag Dziwny Przypadek Benedicta Burtona bd069f/Card b0142c.yaml' +- !include 'Bag Dziwny Przypadek Benedicta Burtona bd069f/Custom_Tile f7ea75.yaml' +- !include 'Bag Dziwny Przypadek Benedicta Burtona bd069f/Card 3247af.yaml' +- !include 'Bag Dziwny Przypadek Benedicta Burtona bd069f/Card 430b88.yaml' +Description: '' +GMNotes: '' +GUID: bd069f +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Bag Dziwny Przypadek Benedicta Burtona bd069f.ttslua' +LuaScriptState: '{"ml":{"1c3d2b":{"lock":false,"pos":{"x":-2.6885,"y":1.6543,"z":-5.0485},"rot":{"x":359.9197,"y":269.9882,"z":0.0169}},"3247af":{"lock":false,"pos":{"x":-30.2243,"y":1.6959,"z":-7.7},"rot":{"x":359.9201,"y":269.9998,"z":180.0169}},"3d0300":{"lock":false,"pos":{"x":-30.2242,"y":1.7004,"z":7.57},"rot":{"x":359.9201,"y":269.9998,"z":180.0169}},"430b88":{"lock":false,"pos":{"x":-50.9244,"y":1.7266,"z":8.1784},"rot":{"x":359.9201,"y":269.9969,"z":0.0169}},"45769e":{"lock":false,"pos":{"x":1.6964,"y":1.6368,"z":14.2788},"rot":{"x":359.9552,"y":224.9981,"z":0.0687}},"4e7889":{"lock":false,"pos":{"x":-23.6765,"y":1.689,"z":-0.03},"rot":{"x":359.9201,"y":269.9998,"z":180.0169}},"640916":{"lock":false,"pos":{"x":-26.9066,"y":1.619,"z":-0.1608},"rot":{"x":359.9201,"y":269.9943,"z":0.0169}},"65948c":{"lock":false,"pos":{"x":-23.6766,"y":1.6868,"z":-7.7},"rot":{"x":359.9201,"y":269.9993,"z":180.0169}},"68f7fa":{"lock":false,"pos":{"x":-17.12,"y":1.676,"z":-3.83},"rot":{"x":359.9201,"y":269.9989,"z":0.0169}},"7234af":{"lock":false,"pos":{"x":-20.2935,"y":1.6097,"z":-0.4312},"rot":{"x":359.9201,"y":269.9943,"z":0.0169}},"74c2c5":{"lock":false,"pos":{"x":-3.956,"y":1.6556,"z":-10.4412},"rot":{"x":359.9197,"y":269.9969,"z":0.0168}},"7c3135":{"lock":false,"pos":{"x":-17.1199,"y":1.6799,"z":-0.03},"rot":{"x":359.9201,"y":269.9998,"z":180.0169}},"7d84fa":{"lock":false,"pos":{"x":-26.3371,"y":1.617,"z":-4.287},"rot":{"x":359.9554,"y":225.0076,"z":0.0685}},"855e12":{"lock":false,"pos":{"x":-4.1007,"y":1.6633,"z":14.9294},"rot":{"x":359.9197,"y":269.9948,"z":0.0168}},"8a541d":{"lock":false,"pos":{"x":-2.7247,"y":1.6566,"z":0.3733},"rot":{"x":359.9197,"y":270.0089,"z":0.0168}},"90d605":{"lock":false,"pos":{"x":-10.3166,"y":1.6705,"z":0.3733},"rot":{"x":359.9201,"y":269.9647,"z":180.0169}},"914d11":{"lock":false,"pos":{"x":-27.3014,"y":1.6205,"z":3.3269},"rot":{"x":359.9316,"y":314.9841,"z":359.9555}},"a45a75":{"lock":false,"pos":{"x":-23.6765,"y":1.6134,"z":-3.83},"rot":{"x":0.0169,"y":180,"z":0.08}},"a98084":{"lock":false,"pos":{"x":-27.0914,"y":1.6215,"z":7.6975},"rot":{"x":359.9201,"y":269.9943,"z":0.0169}},"abf92a":{"lock":false,"pos":{"x":-17.12,"y":1.6065,"z":3.86},"rot":{"x":0.0169,"y":180.0001,"z":0.08}},"b0142c":{"lock":false,"pos":{"x":-30.2242,"y":1.6983,"z":-0.03},"rot":{"x":359.9206,"y":269.9998,"z":180.0168}},"bd65ec":{"lock":false,"pos":{"x":-3.9277,"y":1.7611,"z":5.7572},"rot":{"x":359.9197,"y":270.0002,"z":180.0168}},"d781a0":{"lock":false,"pos":{"x":-17.12,"y":1.6821,"z":7.57},"rot":{"x":359.9201,"y":269.9999,"z":180.0169}},"edc283":{"lock":false,"pos":{"x":-20.4266,"y":1.6121,"z":7.2246},"rot":{"x":359.9201,"y":270.0085,"z":0.0169}},"f145e7":{"lock":false,"pos":{"x":-23.6765,"y":1.6913,"z":7.57},"rot":{"x":359.9201,"y":269.9998,"z":180.0169}},"f7ea75":{"lock":false,"pos":{"x":-30.2242,"y":1.6225,"z":-3.83},"rot":{"x":359.9831,"y":0.0001,"z":359.92}}}}' +MaterialIndex: -1 +MeshIndex: -1 +Name: Bag +Nickname: Dziwny Przypadek Benedicta Burtona +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 9.39650249 + posY: 1.28264415 + posZ: -2.48229933 + rotX: 0.07994491 + rotY: 89.99501 + rotZ: 359.9831 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Dziwny Przypadek Benedicta Burtona bd069f/Card 3247af.yaml new file mode 100644 index 000000000..0499e494c --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Dziwny Przypadek Benedicta Burtona bd069f/Card 3247af.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 106 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360090261/C6397916D4D0423C815C3BBA15E0C852A0E73C2D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360091078/C246EBFEC6DB75F25513421B8D8AF1D66ECE15A2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 3247af +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -30.22425 + posY: 1.695915 + posZ: -7.700013 + rotX: 359.9201 + rotY: 269.999847 + rotZ: 180.016876 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Dziwny Przypadek Benedicta Burtona bd069f/Card 3d0300.yaml new file mode 100644 index 000000000..0e6667e5f --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Dziwny Przypadek Benedicta Burtona bd069f/Card 3d0300.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 103 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360090261/C6397916D4D0423C815C3BBA15E0C852A0E73C2D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360091078/C246EBFEC6DB75F25513421B8D8AF1D66ECE15A2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 3d0300 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -30.2242012 + posY: 1.70041156 + posZ: 7.56998825 + rotX: 359.9201 + rotY: 269.999817 + rotZ: 180.016876 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Dziwny Przypadek Benedicta Burtona bd069f/Card 430b88.yaml new file mode 100644 index 000000000..a631c09bd --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Dziwny Przypadek Benedicta Burtona bd069f/Card 430b88.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 116 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360090261/C6397916D4D0423C815C3BBA15E0C852A0E73C2D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360091078/C246EBFEC6DB75F25513421B8D8AF1D66ECE15A2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Dziwny przypadek Benedicta Burtona +GMNotes: '' +GUID: 430b88 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -50.92435 + posY: 1.72662532 + posZ: 8.178425 + rotX: 359.9201 + rotY: 269.996948 + rotZ: 0.0168716 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Dziwny Przypadek Benedicta Burtona bd069f/Card 4e7889.yaml new file mode 100644 index 000000000..01648a2dc --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Dziwny Przypadek Benedicta Burtona bd069f/Card 4e7889.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 104 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360090261/C6397916D4D0423C815C3BBA15E0C852A0E73C2D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360091078/C246EBFEC6DB75F25513421B8D8AF1D66ECE15A2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 4e7889 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -23.676466 + posY: 1.68904328 + posZ: -0.0300115943 + rotX: 359.9201 + rotY: 269.999817 + rotZ: 180.016876 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Dziwny Przypadek Benedicta Burtona bd069f/Card 65948c.yaml new file mode 100644 index 000000000..a884e85f7 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Dziwny Przypadek Benedicta Burtona bd069f/Card 65948c.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 107 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360090261/C6397916D4D0423C815C3BBA15E0C852A0E73C2D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360091078/C246EBFEC6DB75F25513421B8D8AF1D66ECE15A2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 65948c +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -23.6766186 + posY: 1.68678486 + posZ: -7.699995 + rotX: 359.9201 + rotY: 269.999268 + rotZ: 180.016876 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Dziwny Przypadek Benedicta Burtona bd069f/Card 74c2c5.yaml new file mode 100644 index 000000000..29dad78cb --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Dziwny Przypadek Benedicta Burtona bd069f/Card 74c2c5.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 116 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360090261/C6397916D4D0423C815C3BBA15E0C852A0E73C2D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360091078/C246EBFEC6DB75F25513421B8D8AF1D66ECE15A2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Dziwny przypadek Benedicta Burtona +GMNotes: '' +GUID: 74c2c5 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.95599341 + posY: 1.65564811 + posZ: -10.4411526 + rotX: 359.919739 + rotY: 269.996948 + rotZ: 0.0168387517 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Dziwny Przypadek Benedicta Burtona bd069f/Card 7c3135.yaml new file mode 100644 index 000000000..affd51ebd --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Dziwny Przypadek Benedicta Burtona bd069f/Card 7c3135.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 100 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360090261/C6397916D4D0423C815C3BBA15E0C852A0E73C2D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360091078/C246EBFEC6DB75F25513421B8D8AF1D66ECE15A2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 7c3135 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -17.1199417 + posY: 1.67990053 + posZ: -0.0300126411 + rotX: 359.9201 + rotY: 269.9998 + rotZ: 180.016876 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Dziwny Przypadek Benedicta Burtona bd069f/Card b0142c.yaml new file mode 100644 index 000000000..224806eb0 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Dziwny Przypadek Benedicta Burtona bd069f/Card b0142c.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 105 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360090261/C6397916D4D0423C815C3BBA15E0C852A0E73C2D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360091078/C246EBFEC6DB75F25513421B8D8AF1D66ECE15A2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: b0142c +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -30.2241821 + posY: 1.69830573 + posZ: -0.0300153419 + rotX: 359.9206 + rotY: 269.999756 + rotZ: 180.0168 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Dziwny Przypadek Benedicta Burtona bd069f/Card d781a0.yaml new file mode 100644 index 000000000..d29250c44 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Dziwny Przypadek Benedicta Burtona bd069f/Card d781a0.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 101 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360090261/C6397916D4D0423C815C3BBA15E0C852A0E73C2D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360091078/C246EBFEC6DB75F25513421B8D8AF1D66ECE15A2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: d781a0 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -17.1200447 + posY: 1.68213868 + posZ: 7.570006 + rotX: 359.9201 + rotY: 269.999878 + rotZ: 180.016876 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Dziwny Przypadek Benedicta Burtona bd069f/Card f145e7.yaml new file mode 100644 index 000000000..177cc4994 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Dziwny Przypadek Benedicta Burtona bd069f/Card f145e7.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 102 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360090261/C6397916D4D0423C815C3BBA15E0C852A0E73C2D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360091078/C246EBFEC6DB75F25513421B8D8AF1D66ECE15A2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: f145e7 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -23.67648 + posY: 1.69128108 + posZ: 7.56998825 + rotX: 359.9201 + rotY: 269.9998 + rotZ: 180.016876 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Dziwny Przypadek Benedicta Burtona bd069f/Card Benedict Burton 68f7fa.yaml new file mode 100644 index 000000000..c2ffb0f53 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Dziwny Przypadek Benedicta Burtona bd069f/Card Benedict Burton 68f7fa.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 117 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360090261/C6397916D4D0423C815C3BBA15E0C852A0E73C2D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360091078/C246EBFEC6DB75F25513421B8D8AF1D66ECE15A2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 68f7fa +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Benedict Burton +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -17.1199532 + posY: 1.67595863 + posZ: -3.830012 + rotX: 359.9201 + rotY: 269.9989 + rotZ: 0.01687138 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Dziwny Przypadek Benedicta Burtona bd069f/Card Utracony Benedict 855e12.yaml new file mode 100644 index 000000000..f5b89d29d --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Dziwny Przypadek Benedicta Burtona bd069f/Card Utracony Benedict 855e12.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 118 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360090261/C6397916D4D0423C815C3BBA15E0C852A0E73C2D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360091078/C246EBFEC6DB75F25513421B8D8AF1D66ECE15A2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 855e12 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Utracony Benedict +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -4.10067654 + posY: 1.66330588 + posZ: 14.9294367 + rotX: 359.919739 + rotY: 269.9948 + rotZ: 0.0168411061 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Dziwny Przypadek Benedicta Burtona bd069f/Card Zasady 90d605.yaml new file mode 100644 index 000000000..647aad4a9 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Dziwny Przypadek Benedicta Burtona bd069f/Card Zasady 90d605.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 119 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360090261/C6397916D4D0423C815C3BBA15E0C852A0E73C2D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360091078/C246EBFEC6DB75F25513421B8D8AF1D66ECE15A2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Dziwny przypadek Benedicta Burtona +GMNotes: '' +GUID: 90d605 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Zasady +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -10.3165808 + posY: 1.67053235 + posZ: 0.373328477 + rotX: 359.9201 + rotY: 269.964722 + rotZ: 180.016922 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Dziwny Przypadek Benedicta Burtona bd069f/Custom_Tile 640916.yaml new file mode 100644 index 000000000..d4702f0e4 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Dziwny Przypadek Benedicta Burtona bd069f/Custom_Tile 640916.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: '640916' +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.9065571 + posY: 1.61897218 + posZ: -0.160750225 + rotX: 359.9201 + rotY: 269.9943 + rotZ: 0.0168801416 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Dziwny Przypadek Benedicta Burtona bd069f/Custom_Tile 7234af.yaml new file mode 100644 index 000000000..63d3f3ab3 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Dziwny Przypadek Benedicta Burtona bd069f/Custom_Tile 7234af.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 7234af +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.2935276 + posY: 1.60967135 + posZ: -0.431237459 + rotX: 359.9201 + rotY: 269.9943 + rotZ: 0.0168778021 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Dziwny Przypadek Benedicta Burtona bd069f/Custom_Tile 7d84fa.yaml new file mode 100644 index 000000000..6a3f29101 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Dziwny Przypadek Benedicta Burtona bd069f/Custom_Tile 7d84fa.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 7d84fa +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.3371048 + posY: 1.61696327 + posZ: -4.28702545 + rotX: 359.9554 + rotY: 225.007645 + rotZ: 0.06846212 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Dziwny Przypadek Benedicta Burtona bd069f/Custom_Tile 914d11.yaml new file mode 100644 index 000000000..4de5b8f80 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Dziwny Przypadek Benedicta Burtona bd069f/Custom_Tile 914d11.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 914d11 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.3014069 + posY: 1.62054992 + posZ: 3.32690358 + rotX: 359.93158 + rotY: 314.9841 + rotZ: 359.955475 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Dziwny Przypadek Benedicta Burtona bd069f/Custom_Tile a45a75.yaml new file mode 100644 index 000000000..99896b15c --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Dziwny Przypadek Benedicta Burtona bd069f/Custom_Tile a45a75.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: a45a75 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.67652 + posY: 1.6133877 + posZ: -3.82999969 + rotX: 0.01686876 + rotY: 180.000015 + rotZ: 0.07998577 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Dziwny Przypadek Benedicta Burtona bd069f/Custom_Tile a98084.yaml new file mode 100644 index 000000000..edf2aff62 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Dziwny Przypadek Benedicta Burtona bd069f/Custom_Tile a98084.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: a98084 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.091362 + posY: 1.62154388 + posZ: 7.69753838 + rotX: 359.9201 + rotY: 269.9943 + rotZ: 0.01687903 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Dziwny Przypadek Benedicta Burtona bd069f/Custom_Tile abf92a.yaml new file mode 100644 index 000000000..bae210d16 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Dziwny Przypadek Benedicta Burtona bd069f/Custom_Tile abf92a.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: abf92a +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.1200066 + posY: 1.60650945 + posZ: 3.86000156 + rotX: 0.0168694 + rotY: 180.0001 + rotZ: 0.07998941 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Dziwny Przypadek Benedicta Burtona bd069f/Custom_Tile edc283.yaml new file mode 100644 index 000000000..34678d595 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Dziwny Przypadek Benedicta Burtona bd069f/Custom_Tile edc283.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: edc283 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.42662 + posY: 1.61211133 + posZ: 7.22463036 + rotX: 359.9201 + rotY: 270.008453 + rotZ: 0.0168982726 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Dziwny Przypadek Benedicta Burtona bd069f/Custom_Tile f7ea75.yaml new file mode 100644 index 000000000..908deb227 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Dziwny Przypadek Benedicta Burtona bd069f/Custom_Tile f7ea75.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: f7ea75 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.2242374 + posY: 1.62251818 + posZ: -3.82999945 + rotX: 359.983124 + rotY: 8.463724e-05 + rotZ: 359.92 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Dziwny Przypadek Benedicta Burtona bd069f/Deck Act 1c3d2b.yaml new file mode 100644 index 000000000..513643090 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Dziwny Przypadek Benedicta Burtona bd069f/Deck Act 1c3d2b.yaml @@ -0,0 +1,253 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 266204 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360091499/224A31895111D0AA10E11922F5946E20C9C887AB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360091949/B617873190DDFCC3FB6BC0B9643162CA732C5A78/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 9943a0 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -6.324412 + posY: 1.03168678 + posZ: -0.2193704 + rotX: 0.000875832746 + rotY: 179.9997 + rotZ: 0.000200273018 + 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: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360091499/224A31895111D0AA10E11922F5946E20C9C887AB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360091949/B617873190DDFCC3FB6BC0B9643162CA732C5A78/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: cee587 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -6.220993 + posY: 1.17014372 + posZ: -0.515554667 + rotX: 0.0163479559 + rotY: 179.9996 + rotZ: 0.00135101366 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 266202 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360091499/224A31895111D0AA10E11922F5946E20C9C887AB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360091949/B617873190DDFCC3FB6BC0B9643162CA732C5A78/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 5d78a4 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -5.62292767 + posY: 1.18748641 + posZ: -0.320620358 + rotX: 0.0006620653 + rotY: 180.0584 + rotZ: 0.00715053873 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 266201 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360091499/224A31895111D0AA10E11922F5946E20C9C887AB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360091949/B617873190DDFCC3FB6BC0B9643162CA732C5A78/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 9f4b01 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -5.885002 + posY: 1.15534925 + posZ: -0.09013715 + rotX: 0.891409039 + rotY: 180.02626 + rotZ: 0.0125964424 + 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: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360091499/224A31895111D0AA10E11922F5946E20C9C887AB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360091949/B617873190DDFCC3FB6BC0B9643162CA732C5A78/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: '463784' + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -6.22794628 + posY: 1.17190361 + posZ: -0.172858477 + rotX: -0.000903525157 + rotY: 180.00499 + rotZ: 6.648867e-05 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2662': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360091499/224A31895111D0AA10E11922F5946E20C9C887AB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360091949/B617873190DDFCC3FB6BC0B9643162CA732C5A78/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 266204 +- 266203 +- 266202 +- 266201 +- 266200 +Description: Dziwny-Przypadek-Benedicta-Burtona +GMNotes: '' +GUID: 1c3d2b +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Act +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.68850327 + posY: 1.65432513 + posZ: -5.04854345 + rotX: 359.919739 + rotY: 269.9882 + rotZ: 0.0168516468 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Dziwny Przypadek Benedicta Burtona bd069f/Deck Przedmioty 45769e.yaml new file mode 100644 index 000000000..51a77d1a8 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Dziwny Przypadek Benedicta Burtona bd069f/Deck Przedmioty 45769e.yaml @@ -0,0 +1,379 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 115 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360090261/C6397916D4D0423C815C3BBA15E0C852A0E73C2D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360091078/C246EBFEC6DB75F25513421B8D8AF1D66ECE15A2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: a8431b + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.29593253 + posY: 1.031544 + posZ: -0.5015395 + rotX: 0.007634166 + rotY: 180.0 + rotZ: 0.00232470757 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 114 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360090261/C6397916D4D0423C815C3BBA15E0C852A0E73C2D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360091078/C246EBFEC6DB75F25513421B8D8AF1D66ECE15A2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 2092d4 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.26711059 + posY: 1.16976869 + posZ: -0.283860981 + rotX: -0.00369697553 + rotY: 179.999786 + rotZ: 0.00362479733 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 113 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360090261/C6397916D4D0423C815C3BBA15E0C852A0E73C2D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360091078/C246EBFEC6DB75F25513421B8D8AF1D66ECE15A2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: fa94c7 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.25315356 + posY: 1.18757808 + posZ: -0.5883807 + rotX: -0.000419001124 + rotY: 179.999771 + rotZ: 0.00335062132 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 112 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360090261/C6397916D4D0423C815C3BBA15E0C852A0E73C2D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360091078/C246EBFEC6DB75F25513421B8D8AF1D66ECE15A2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: f2ea0f + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.41523314 + posY: 1.17400467 + posZ: -1.05913436 + rotX: 0.00253521 + rotY: 180.00415 + rotZ: 359.9797 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 111 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360090261/C6397916D4D0423C815C3BBA15E0C852A0E73C2D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360091078/C246EBFEC6DB75F25513421B8D8AF1D66ECE15A2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: cc2b67 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.52857733 + posY: 1.1719873 + posZ: -0.5016596 + rotX: 0.00170948659 + rotY: 179.999649 + rotZ: -0.00344603253 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 110 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360090261/C6397916D4D0423C815C3BBA15E0C852A0E73C2D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360091078/C246EBFEC6DB75F25513421B8D8AF1D66ECE15A2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 27b138 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.80200362 + posY: 1.17471576 + posZ: -0.239847645 + rotX: -0.00364099978 + rotY: 179.999741 + rotZ: 0.0124548739 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 109 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360090261/C6397916D4D0423C815C3BBA15E0C852A0E73C2D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360091078/C246EBFEC6DB75F25513421B8D8AF1D66ECE15A2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: '510766' + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.58480954 + posY: 1.17959678 + posZ: -0.192910165 + rotX: -0.002784583 + rotY: 180.004 + rotZ: -0.00166985858 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 108 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360090261/C6397916D4D0423C815C3BBA15E0C852A0E73C2D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360091078/C246EBFEC6DB75F25513421B8D8AF1D66ECE15A2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: aa25fb + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.8184967 + posY: 1.18586588 + posZ: -0.8070091 + rotX: 0.0100271879 + rotY: 180.016 + rotZ: 0.006844254 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360090261/C6397916D4D0423C815C3BBA15E0C852A0E73C2D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360091078/C246EBFEC6DB75F25513421B8D8AF1D66ECE15A2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 115 +- 114 +- 113 +- 112 +- 111 +- 110 +- 109 +- 108 +Description: Dziwny przypadek Benedicta Burtona +GMNotes: '' +GUID: 45769e +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Przedmioty +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 1.69642484 + posY: 1.6367538 + posZ: 14.2787828 + rotX: 359.95517 + rotY: 224.998062 + rotZ: 0.06866076 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Dziwny Przypadek Benedicta Burtona bd069f/Deck Tajemnica 8a541d.yaml new file mode 100644 index 000000000..8bfe14e52 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Dziwny Przypadek Benedicta Burtona bd069f/Deck Tajemnica 8a541d.yaml @@ -0,0 +1,169 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 266307 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360091499/224A31895111D0AA10E11922F5946E20C9C887AB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360091949/B617873190DDFCC3FB6BC0B9643162CA732C5A78/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 433f75 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -4.974408 + posY: 1.0315361 + posZ: -2.80580187 + rotX: 0.007953967 + rotY: 179.999374 + rotZ: 0.00114661246 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 266306 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360091499/224A31895111D0AA10E11922F5946E20C9C887AB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360091949/B617873190DDFCC3FB6BC0B9643162CA732C5A78/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 3e712e + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -4.947912 + posY: 1.16984272 + posZ: -2.39302015 + rotX: -0.00423688861 + rotY: 180.484146 + rotZ: 0.004816043 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 266305 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360091499/224A31895111D0AA10E11922F5946E20C9C887AB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360091949/B617873190DDFCC3FB6BC0B9643162CA732C5A78/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 656ef2 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -4.922788 + posY: 1.18769574 + posZ: -3.14439917 + rotX: 0.00220055855 + rotY: 179.998413 + rotZ: 0.0013143532 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2663': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360091499/224A31895111D0AA10E11922F5946E20C9C887AB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360091949/B617873190DDFCC3FB6BC0B9643162CA732C5A78/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 266307 +- 266306 +- 266305 +Description: Dziwny-Przypadek-Benedicta-Burtona +GMNotes: '' +GUID: 8a541d +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Tajemnica +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.72468 + posY: 1.65664113 + posZ: 0.373310179 + rotX: 359.919739 + rotY: 270.008942 + rotZ: 0.0168233179 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Dziwny Przypadek Benedicta Burtona bd069f/Deck talia Spotkań bd65ec.yaml new file mode 100644 index 000000000..d1634ca67 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Dziwny Przypadek Benedicta Burtona bd069f/Deck talia Spotkań bd65ec.yaml @@ -0,0 +1,1229 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 3628 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Obstacle. + GMNotes: '' + GUID: 9449d7 + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Locked Door + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -21.2385483 + posY: 1.231653 + posZ: 10.5873995 + rotX: -0.00300062378 + rotY: 270.038849 + rotZ: -0.00198885379 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3628 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Obstacle. + GMNotes: '' + GUID: 1340ff + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Locked Door + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -21.3002548 + posY: 1.37891018 + posZ: 10.607831 + rotX: 359.985657 + rotY: 270.026245 + rotZ: 0.0447875448 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3622 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: 03a265 + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Obscuring Fog + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -17.4148483 + posY: 1.23167741 + posZ: 5.99956274 + rotX: -0.000976656 + rotY: 269.9857 + rotZ: 0.005132819 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3622 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: '356046' + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Obscuring Fog + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -17.4060268 + posY: 1.37945676 + posZ: 6.40290833 + rotX: -0.0007180891 + rotY: 270.000427 + rotZ: 0.00573350256 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3621 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: b78c3b + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Crypt Chill + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -20.9259262 + posY: 1.23167884 + posZ: 6.982535 + rotX: -0.00255119917 + rotY: 269.983215 + rotZ: -0.000175039211 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3621 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: fb311c + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Crypt Chill + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -21.2322311 + posY: 1.37918484 + posZ: 7.16166067 + rotX: 359.988861 + rotY: 269.991547 + rotZ: 0.0295213945 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3619 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: '260768' + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dissonant Voices + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -19.1363125 + posY: 1.231699 + posZ: -7.400251 + rotX: -0.000820844667 + rotY: 270.0089 + rotZ: -0.000237511369 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3617 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: da8001 + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Rotting Remains + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -19.2726822 + posY: 1.23161709 + posZ: -4.69493532 + rotX: -0.00461160857 + rotY: 269.9793 + rotZ: -0.00137890945 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3619 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: f1a34d + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dissonant Voices + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -19.9809151 + posY: 1.28156877 + posZ: -7.79831076 + rotX: 0.011735606 + rotY: 270.009033 + rotZ: 0.00468536 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3618 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: 27c05d + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Frozen in Fear + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -18.967617 + posY: 1.231716 + posZ: -10.49529 + rotX: -3.11068325e-05 + rotY: 270.0013 + rotZ: -7.22032553e-07 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3617 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: 18e09c + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Rotting Remains + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -20.3450146 + posY: 1.28128624 + posZ: -4.537053 + rotX: 0.006250872 + rotY: 269.979126 + rotZ: -0.00126227119 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3618 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: c40f57 + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Frozen in Fear + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -19.6207886 + posY: 1.28169692 + posZ: -10.6840782 + rotX: -3.134726e-05 + rotY: 270.000763 + rotZ: 3.597804e-06 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3617 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: aa3d47 + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Rotting Remains + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -21.5193939 + posY: 1.337018 + posZ: -4.78068352 + rotX: 0.0181244723 + rotY: 269.978149 + rotZ: 0.00253973226 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3620 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: 1921c5 + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ancient Evils + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -19.6564026 + posY: 1.23160839 + posZ: 7.971792 + rotX: -0.005002445 + rotY: 269.9994 + rotZ: -0.0014756727 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3620 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: e0f4c0 + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ancient Evils + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -20.9346027 + posY: 1.28129983 + posZ: 7.54924154 + rotX: 0.006723375 + rotY: 269.9994 + rotZ: -0.000132751375 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3620 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: 61e841 + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ancient Evils + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -21.9496078 + posY: 1.33434 + posZ: 7.916971 + rotX: 0.0176143516 + rotY: 269.9864 + rotZ: 359.993561 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 269851 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2664': + BackIsHidden: true + BackURL: https://i.imgur.com/h4om3TQ.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87098596225478692/B2438BEE2CDD4D172BAFA5DFDD15C0F29B079D4F/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Omen. + GMNotes: '' + GUID: e6d661 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Cursed Luck + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 12.9293232 + posY: 1.60235882 + posZ: -28.5921211 + rotX: 359.9208 + rotY: 270.005249 + rotZ: 4.055017 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 269851 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2664': + BackIsHidden: true + BackURL: https://i.imgur.com/h4om3TQ.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87098596225478692/B2438BEE2CDD4D172BAFA5DFDD15C0F29B079D4F/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Omen. + GMNotes: '' + GUID: '277475' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Cursed Luck + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 12.8422356 + posY: 1.52808726 + posZ: -24.5152645 + rotX: 359.919159 + rotY: 270.010651 + rotZ: 0.0138979275 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 269851 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2664': + BackIsHidden: true + BackURL: https://i.imgur.com/h4om3TQ.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87098596225478692/B2438BEE2CDD4D172BAFA5DFDD15C0F29B079D4F/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Omen. + GMNotes: '' + GUID: '387022' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Cursed Luck + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 13.0651741 + posY: 1.60630727 + posZ: -26.508173 + rotX: 359.919769 + rotY: 270.008148 + rotZ: 4.221206 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 266559 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2665': + BackIsHidden: true + BackURL: https://i.imgur.com/h4om3TQ.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87098596225478692/B2438BEE2CDD4D172BAFA5DFDD15C0F29B079D4F/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Hex. + GMNotes: '' + GUID: 242c13 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Pushed into the Beyond + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 15.8418531 + posY: 1.52585471 + posZ: -17.9411011 + rotX: 359.920135 + rotY: 269.999939 + rotZ: 0.0168670174 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 266559 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2665': + BackIsHidden: true + BackURL: https://i.imgur.com/h4om3TQ.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87098596225478692/B2438BEE2CDD4D172BAFA5DFDD15C0F29B079D4F/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Hex. + GMNotes: '' + GUID: 19a4af + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Pushed into the Beyond + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.5070248 + posY: 1.52409685 + posZ: -20.7615166 + rotX: 359.920135 + rotY: 269.999573 + rotZ: 0.01687488 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 266560 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2665': + BackIsHidden: true + BackURL: https://i.imgur.com/h4om3TQ.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87098596225478692/B2438BEE2CDD4D172BAFA5DFDD15C0F29B079D4F/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Hex. Terror. + GMNotes: '' + GUID: '167950' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Terror from Beyond + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 17.7097855 + posY: 1.52743113 + posZ: -3.74390364 + rotX: 359.920135 + rotY: 269.999573 + rotZ: 0.0168721434 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 266560 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2665': + BackIsHidden: true + BackURL: https://i.imgur.com/h4om3TQ.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87098596225478692/B2438BEE2CDD4D172BAFA5DFDD15C0F29B079D4F/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Hex. Terror. + GMNotes: '' + GUID: 7b3650 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Terror from Beyond + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.369072 + posY: 1.528129 + posZ: -7.72160673 + rotX: 359.920135 + rotY: 269.999573 + rotZ: 0.0168686956 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 266561 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2665': + BackIsHidden: true + BackURL: https://i.imgur.com/h4om3TQ.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87098596225478692/B2438BEE2CDD4D172BAFA5DFDD15C0F29B079D4F/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Hex. Obstacle. + GMNotes: '' + GUID: 1c3a60 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Arcane Barrier + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 15.4365578 + posY: 1.52844918 + posZ: -11.0493031 + rotX: 359.920135 + rotY: 269.999817 + rotZ: 0.0168694258 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 269852 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2664': + BackIsHidden: true + BackURL: https://i.imgur.com/h4om3TQ.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87098596225478692/B2438BEE2CDD4D172BAFA5DFDD15C0F29B079D4F/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Omen. + GMNotes: '' + GUID: cda798 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Twist of Fate + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 20.84206 + posY: 1.52023411 + posZ: -13.35586 + rotX: 359.920135 + rotY: 269.999878 + rotZ: 0.0168695487 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 266561 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2665': + BackIsHidden: true + BackURL: https://i.imgur.com/h4om3TQ.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87098596225478692/B2438BEE2CDD4D172BAFA5DFDD15C0F29B079D4F/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Hex. Obstacle. + GMNotes: '' + GUID: 5b180a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Arcane Barrier + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.1837215 + posY: 1.52655971 + posZ: -13.9285288 + rotX: 359.920135 + rotY: 269.999969 + rotZ: 0.01686489 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 269852 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2664': + BackIsHidden: true + BackURL: https://i.imgur.com/h4om3TQ.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87098596225478692/B2438BEE2CDD4D172BAFA5DFDD15C0F29B079D4F/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Omen. + GMNotes: '' + GUID: 4c9405 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Twist of Fate + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 20.42055 + posY: 1.52004623 + posZ: -15.9895649 + rotX: 359.920135 + rotY: 269.999756 + rotZ: 0.016869951 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 269852 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2664': + BackIsHidden: true + BackURL: https://i.imgur.com/h4om3TQ.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87098596225478692/B2438BEE2CDD4D172BAFA5DFDD15C0F29B079D4F/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Omen. + GMNotes: '' + GUID: f23fa9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Twist of Fate + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 20.8939476 + posY: 1.51853144 + posZ: -18.8923969 + rotX: 359.920166 + rotY: 269.883118 + rotZ: 0.01703159 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2665': + BackIsHidden: true + BackURL: https://i.imgur.com/h4om3TQ.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87098596225478692/B2438BEE2CDD4D172BAFA5DFDD15C0F29B079D4F/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + '2698': + BackIsHidden: true + BackURL: https://i.imgur.com/h4om3TQ.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87098596225478692/B2438BEE2CDD4D172BAFA5DFDD15C0F29B079D4F/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 3628 +- 3628 +- 3622 +- 3622 +- 3621 +- 3621 +- 3619 +- 3617 +- 3619 +- 3618 +- 3617 +- 3618 +- 3617 +- 3620 +- 3620 +- 3620 +- 269851 +- 269851 +- 269851 +- 266559 +- 266559 +- 266560 +- 266560 +- 266561 +- 269852 +- 266561 +- 269852 +- 269852 +Description: Dziwny przypadek Benedicta Burtona +GMNotes: '' +GUID: bd65ec +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: "talia Spotka\u0144" +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.92772532 + posY: 1.76105094 + posZ: 5.757151 + rotX: 359.919739 + rotY: 270.000244 + rotZ: 180.016846 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Nieuchwytny 31a93a.ttslua b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Nieuchwytny 31a93a.ttslua new file mode 100644 index 000000000..4acf9ea11 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Nieuchwytny 31a93a.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 791837/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Nieuchwytny 31a93a.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Nieuchwytny 31a93a.yaml new file mode 100644 index 000000000..49582a647 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Nieuchwytny 31a93a.yaml @@ -0,0 +1,64 @@ +Autoraise: true +ColorDiffuse: + b: 0.0 + g: 0.366520882 + r: 0.7058823 +ContainedObjects: +- !include "Bag Nieuchwytny 31a93a/Deck Talia spotka\u0144 09320c.yaml" +- !include 'Bag Nieuchwytny 31a93a/Card 11e93f.yaml' +- !include 'Bag Nieuchwytny 31a93a/Custom_Tile 1b73bd.yaml' +- !include 'Bag Nieuchwytny 31a93a/Deck odloz na Bok 1ca036.yaml' +- !include 'Bag Nieuchwytny 31a93a/Card 1cd786.yaml' +- !include 'Bag Nieuchwytny 31a93a/Deck Agenda 26922f.yaml' +- !include 'Bag Nieuchwytny 31a93a/Card 2913c5.yaml' +- !include 'Bag Nieuchwytny 31a93a/Custom_Tile 3cb530.yaml' +- !include 'Bag Nieuchwytny 31a93a/Card 4ef83e.yaml' +- !include 'Bag Nieuchwytny 31a93a/Card 53ef55.yaml' +- !include 'Bag Nieuchwytny 31a93a/Custom_Tile 7234af.yaml' +- !include 'Bag Nieuchwytny 31a93a/Card Centrum 8211cc.yaml' +- !include 'Bag Nieuchwytny 31a93a/Card 8fb89a.yaml' +- !include 'Bag Nieuchwytny 31a93a/Custom_Tile 97ceeb.yaml' +- !include 'Bag Nieuchwytny 31a93a/Card a24f32.yaml' +- !include 'Bag Nieuchwytny 31a93a/Card af3894.yaml' +- !include 'Bag Nieuchwytny 31a93a/Deck Act b0d181.yaml' +- !include 'Bag Nieuchwytny 31a93a/Custom_Tile b0eeef.yaml' +- !include 'Bag Nieuchwytny 31a93a/Custom_Tile b82f40.yaml' +- !include 'Bag Nieuchwytny 31a93a/Card bd7527.yaml' +- !include 'Bag Nieuchwytny 31a93a/Card be9fa2.yaml' +- !include 'Bag Nieuchwytny 31a93a/Card Zasady c02378.yaml' +- !include 'Bag Nieuchwytny 31a93a/Card c6eb69.yaml' +- !include 'Bag Nieuchwytny 31a93a/Card ca2c9a.yaml' +- !include 'Bag Nieuchwytny 31a93a/Custom_Tile cb1366.yaml' +- !include 'Bag Nieuchwytny 31a93a/Custom_Tile cf757f.yaml' +- !include 'Bag Nieuchwytny 31a93a/Card d62e68.yaml' +- !include 'Bag Nieuchwytny 31a93a/Card d6e037.yaml' +- !include 'Bag Nieuchwytny 31a93a/Custom_Tile e9d1b9.yaml' +Description: '' +GMNotes: '' +GUID: 31a93a +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Bag Nieuchwytny 31a93a.ttslua' +LuaScriptState: '{"ml":{"09320c":{"lock":false,"pos":{"x":-3.9277,"y":1.7717,"z":5.7571},"rot":{"x":359.9197,"y":269.9977,"z":180.0168}},"11e93f":{"lock":false,"pos":{"x":-30.2241,"y":1.7004,"z":7.5705},"rot":{"x":359.9209,"y":270.0096,"z":180.0086}},"1b73bd":{"lock":false,"pos":{"x":-23.6765,"y":1.6134,"z":-3.83},"rot":{"x":0.0169,"y":180,"z":0.08}},"1ca036":{"lock":false,"pos":{"x":1.6965,"y":1.6619,"z":14.2789},"rot":{"x":359.9552,"y":224.9977,"z":0.0687}},"1cd786":{"lock":false,"pos":{"x":-21.5283,"y":1.79,"z":-7.8794},"rot":{"x":356.0112,"y":269.9998,"z":180.017}},"26922f":{"lock":false,"pos":{"x":-2.7247,"y":1.6566,"z":0.3733},"rot":{"x":359.9197,"y":269.9843,"z":0.0169}},"2913c5":{"lock":false,"pos":{"x":-17.12,"y":1.6799,"z":-0.0301},"rot":{"x":359.9209,"y":269.9949,"z":180.0184}},"3cb530":{"lock":false,"pos":{"x":-26.5148,"y":1.6195,"z":3.6392},"rot":{"x":359.9454,"y":330.0001,"z":359.9392}},"4ef83e":{"lock":false,"pos":{"x":-21.829,"y":1.8121,"z":6.9887},"rot":{"x":355.3817,"y":269.9219,"z":180.0304}},"53ef55":{"lock":false,"pos":{"x":-31.8638,"y":1.8313,"z":-1.2458},"rot":{"x":359.9558,"y":269.9016,"z":186.8858}},"7234af":{"lock":false,"pos":{"x":-23.6765,"y":1.6157,"z":3.86},"rot":{"x":0.0169,"y":180,"z":0.08}},"8211cc":{"lock":false,"pos":{"x":-23.6764,"y":1.689,"z":-0.03},"rot":{"x":359.9201,"y":269.9988,"z":180.0169}},"8fb89a":{"lock":false,"pos":{"x":-31.6386,"y":1.8056,"z":-9.1782},"rot":{"x":359.9203,"y":269.9952,"z":185.7105}},"97ceeb":{"lock":false,"pos":{"x":-18.6379,"y":1.6085,"z":3.4567},"rot":{"x":0.0684,"y":134.9967,"z":0.0445}},"a24f32":{"lock":false,"pos":{"x":-23.6766,"y":1.6868,"z":-7.7},"rot":{"x":359.9202,"y":269.9991,"z":180.0168}},"af3894":{"lock":false,"pos":{"x":-30.2242,"y":1.6983,"z":-0.03},"rot":{"x":359.9226,"y":269.999,"z":180.0194}},"b0d181":{"lock":false,"pos":{"x":-2.6885,"y":1.6459,"z":-5.0485},"rot":{"x":359.9197,"y":269.9907,"z":0.0168}},"b0eeef":{"lock":false,"pos":{"x":-26.9495,"y":1.6191,"z":0.0673},"rot":{"x":359.9201,"y":269.9999,"z":0.0169}},"b82f40":{"lock":false,"pos":{"x":-20.1155,"y":1.6095,"z":-0.0145},"rot":{"x":0.0799,"y":89.9996,"z":359.9831}},"bd7527":{"lock":false,"pos":{"x":-28.8493,"y":1.8022,"z":6.0369},"rot":{"x":359.9194,"y":269.969,"z":185.517}},"be9fa2":{"lock":false,"pos":{"x":-3.956,"y":1.6585,"z":-10.4412},"rot":{"x":359.9197,"y":270.012,"z":180.0168}},"c02378":{"lock":false,"pos":{"x":-8.9254,"y":1.6684,"z":-0.3712},"rot":{"x":359.919,"y":271.6256,"z":180.0179}},"c6eb69":{"lock":false,"pos":{"x":-15.3757,"y":1.8082,"z":-0.0492},"rot":{"x":355.1021,"y":270.0097,"z":180.0152}},"ca2c9a":{"lock":false,"pos":{"x":-30.2243,"y":1.696,"z":-7.7},"rot":{"x":359.9214,"y":269.9993,"z":180.0176}},"cb1366":{"lock":false,"pos":{"x":-27.1267,"y":1.6181,"z":-4.0179},"rot":{"x":0.0253,"y":30,"z":359.9223}},"cf757f":{"lock":false,"pos":{"x":-27.0043,"y":1.6169,"z":-7.7115},"rot":{"x":0.0799,"y":89.9998,"z":359.9831}},"d62e68":{"lock":false,"pos":{"x":-23.6765,"y":1.6913,"z":7.57},"rot":{"x":359.9202,"y":269.9994,"z":180.0169}},"d6e037":{"lock":false,"pos":{"x":-50.9244,"y":1.7294,"z":8.1784},"rot":{"x":359.9201,"y":270.012,"z":180.0169}},"e9d1b9":{"lock":false,"pos":{"x":-30.2242,"y":1.6248,"z":3.86},"rot":{"x":0.0169,"y":180,"z":0.08}}}}' +MaterialIndex: -1 +MeshIndex: -1 +Name: Bag +Nickname: Nieuchwytny +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 8.974305 + posY: 1.28435373 + posZ: 1.32670128 + rotX: 0.0799484 + rotY: 89.99651 + rotZ: 359.9831 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Nieuchwytny 31a93a/Card 11e93f.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Nieuchwytny 31a93a/Card 11e93f.yaml new file mode 100644 index 000000000..f18a53b9e --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Nieuchwytny 31a93a/Card 11e93f.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 131 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360090261/C6397916D4D0423C815C3BBA15E0C852A0E73C2D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360091078/C246EBFEC6DB75F25513421B8D8AF1D66ECE15A2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 11e93f +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -30.2240944 + posY: 1.70041919 + posZ: 7.570506 + rotX: 359.9204 + rotY: 270.009949 + rotZ: 180.016632 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Nieuchwytny 31a93a/Card 1cd786.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Nieuchwytny 31a93a/Card 1cd786.yaml new file mode 100644 index 000000000..993e9dc94 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Nieuchwytny 31a93a/Card 1cd786.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 126 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360090261/C6397916D4D0423C815C3BBA15E0C852A0E73C2D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360091078/C246EBFEC6DB75F25513421B8D8AF1D66ECE15A2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 1cd786 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -21.5283012 + posY: 1.78994989 + posZ: -7.87940645 + rotX: 356.011383 + rotY: 269.999756 + rotZ: 180.017 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Nieuchwytny 31a93a/Card 2913c5.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Nieuchwytny 31a93a/Card 2913c5.yaml new file mode 100644 index 000000000..30f8935b3 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Nieuchwytny 31a93a/Card 2913c5.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 123 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360090261/C6397916D4D0423C815C3BBA15E0C852A0E73C2D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360091078/C246EBFEC6DB75F25513421B8D8AF1D66ECE15A2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 2913c5 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -17.1199913 + posY: 1.67991233 + posZ: -0.0300994739 + rotX: 359.9204 + rotY: 269.9951 + rotZ: 180.016876 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Nieuchwytny 31a93a/Card 4ef83e.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Nieuchwytny 31a93a/Card 4ef83e.yaml new file mode 100644 index 000000000..33ef78341 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Nieuchwytny 31a93a/Card 4ef83e.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 122 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360090261/C6397916D4D0423C815C3BBA15E0C852A0E73C2D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360091078/C246EBFEC6DB75F25513421B8D8AF1D66ECE15A2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 4ef83e +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -21.8289928 + posY: 1.81207263 + posZ: 6.988701 + rotX: 355.379181 + rotY: 269.922028 + rotZ: 180.028275 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Nieuchwytny 31a93a/Card 53ef55.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Nieuchwytny 31a93a/Card 53ef55.yaml new file mode 100644 index 000000000..18cbeae70 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Nieuchwytny 31a93a/Card 53ef55.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 130 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360090261/C6397916D4D0423C815C3BBA15E0C852A0E73C2D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360091078/C246EBFEC6DB75F25513421B8D8AF1D66ECE15A2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 53ef55 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -31.8638077 + posY: 1.8313607 + posZ: -1.24581623 + rotX: 359.954834 + rotY: 269.901123 + rotZ: 186.8886 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Nieuchwytny 31a93a/Card 8fb89a.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Nieuchwytny 31a93a/Card 8fb89a.yaml new file mode 100644 index 000000000..bfc6594b5 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Nieuchwytny 31a93a/Card 8fb89a.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 128 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360090261/C6397916D4D0423C815C3BBA15E0C852A0E73C2D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360091078/C246EBFEC6DB75F25513421B8D8AF1D66ECE15A2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 8fb89a +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -31.6386013 + posY: 1.80559349 + posZ: -9.178202 + rotX: 359.9203 + rotY: 269.9952 + rotZ: 185.7104 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Nieuchwytny 31a93a/Card a24f32.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Nieuchwytny 31a93a/Card a24f32.yaml new file mode 100644 index 000000000..d1be251ce --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Nieuchwytny 31a93a/Card a24f32.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 125 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360090261/C6397916D4D0423C815C3BBA15E0C852A0E73C2D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360091078/C246EBFEC6DB75F25513421B8D8AF1D66ECE15A2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: a24f32 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -23.6766 + posY: 1.68678784 + posZ: -7.69999647 + rotX: 359.920227 + rotY: 269.999146 + rotZ: 180.016846 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Nieuchwytny 31a93a/Card af3894.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Nieuchwytny 31a93a/Card af3894.yaml new file mode 100644 index 000000000..5be475600 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Nieuchwytny 31a93a/Card af3894.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 129 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360090261/C6397916D4D0423C815C3BBA15E0C852A0E73C2D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360091078/C246EBFEC6DB75F25513421B8D8AF1D66ECE15A2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: af3894 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -30.2241936 + posY: 1.698285 + posZ: -0.0299959481 + rotX: 359.922455 + rotY: 269.9992 + rotZ: 180.019089 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Nieuchwytny 31a93a/Card bd7527.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Nieuchwytny 31a93a/Card bd7527.yaml new file mode 100644 index 000000000..c26f18d40 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Nieuchwytny 31a93a/Card bd7527.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 132 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360090261/C6397916D4D0423C815C3BBA15E0C852A0E73C2D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360091078/C246EBFEC6DB75F25513421B8D8AF1D66ECE15A2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: bd7527 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -28.8493 + posY: 1.80224442 + posZ: 6.03693056 + rotX: 359.9201 + rotY: 269.969269 + rotZ: 185.502121 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Nieuchwytny 31a93a/Card be9fa2.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Nieuchwytny 31a93a/Card be9fa2.yaml new file mode 100644 index 000000000..ea8e6dcee --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Nieuchwytny 31a93a/Card be9fa2.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 134 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360090261/C6397916D4D0423C815C3BBA15E0C852A0E73C2D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360091078/C246EBFEC6DB75F25513421B8D8AF1D66ECE15A2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Nieuchwytny +GMNotes: '' +GUID: be9fa2 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.95600057 + posY: 1.65847111 + posZ: -10.4412012 + rotX: 359.919739 + rotY: 270.012024 + rotZ: 180.016815 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Nieuchwytny 31a93a/Card c6eb69.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Nieuchwytny 31a93a/Card c6eb69.yaml new file mode 100644 index 000000000..a42495c0b --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Nieuchwytny 31a93a/Card c6eb69.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 124 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360090261/C6397916D4D0423C815C3BBA15E0C852A0E73C2D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360091078/C246EBFEC6DB75F25513421B8D8AF1D66ECE15A2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: c6eb69 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -15.3756266 + posY: 1.808228 + posZ: -0.0492178649 + rotX: 355.104248 + rotY: 270.009277 + rotZ: 180.016953 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Nieuchwytny 31a93a/Card ca2c9a.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Nieuchwytny 31a93a/Card ca2c9a.yaml new file mode 100644 index 000000000..731f70e12 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Nieuchwytny 31a93a/Card ca2c9a.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 127 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360090261/C6397916D4D0423C815C3BBA15E0C852A0E73C2D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360091078/C246EBFEC6DB75F25513421B8D8AF1D66ECE15A2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: ca2c9a +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -30.2242985 + posY: 1.69596839 + posZ: -7.69999743 + rotX: 359.921417 + rotY: 269.999359 + rotZ: 180.017685 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Nieuchwytny 31a93a/Card d62e68.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Nieuchwytny 31a93a/Card d62e68.yaml new file mode 100644 index 000000000..7182ff155 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Nieuchwytny 31a93a/Card d62e68.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 121 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360090261/C6397916D4D0423C815C3BBA15E0C852A0E73C2D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360091078/C246EBFEC6DB75F25513421B8D8AF1D66ECE15A2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: d62e68 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -23.6765022 + posY: 1.6912905 + posZ: 7.57000256 + rotX: 359.920441 + rotY: 269.9994 + rotZ: 180.0169 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Nieuchwytny 31a93a/Card d6e037.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Nieuchwytny 31a93a/Card d6e037.yaml new file mode 100644 index 000000000..3bbde1189 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Nieuchwytny 31a93a/Card d6e037.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 134 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360090261/C6397916D4D0423C815C3BBA15E0C852A0E73C2D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360091078/C246EBFEC6DB75F25513421B8D8AF1D66ECE15A2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Nieuchwytny +GMNotes: '' +GUID: d6e037 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -50.9244 + posY: 1.72944844 + posZ: 8.1784 + rotX: 359.9201 + rotY: 270.012 + rotZ: 180.016861 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Nieuchwytny 31a93a/Card Centrum 8211cc.yaml new file mode 100644 index 000000000..1b2fcb26d --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Nieuchwytny 31a93a/Card Centrum 8211cc.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 120 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360090261/C6397916D4D0423C815C3BBA15E0C852A0E73C2D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360091078/C246EBFEC6DB75F25513421B8D8AF1D66ECE15A2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Nieuchwytny +GMNotes: '' +GUID: 8211cc +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Centrum +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -23.6764 + posY: 1.689043 + posZ: -0.0299999919 + rotX: 359.9201 + rotY: 269.998779 + rotZ: 180.016876 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Nieuchwytny 31a93a/Card Zasady c02378.yaml new file mode 100644 index 000000000..8bcad4625 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Nieuchwytny 31a93a/Card Zasady c02378.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 135 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360090261/C6397916D4D0423C815C3BBA15E0C852A0E73C2D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360091078/C246EBFEC6DB75F25513421B8D8AF1D66ECE15A2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Nieuchwytny +GMNotes: '' +GUID: c02378 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Zasady +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -8.925401 + posY: 1.66837573 + posZ: -0.3711963 + rotX: 359.9199 + rotY: 271.6256 + rotZ: 180.014664 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Nieuchwytny 31a93a/Custom_Tile 1b73bd.yaml new file mode 100644 index 000000000..9b3c47f19 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Nieuchwytny 31a93a/Custom_Tile 1b73bd.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 1b73bd +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.6765 + posY: 1.61338782 + posZ: -3.83000016 + rotX: 0.0168699455 + rotY: 179.999908 + rotZ: 0.07996462 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Nieuchwytny 31a93a/Custom_Tile 3cb530.yaml new file mode 100644 index 000000000..f0656ab87 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Nieuchwytny 31a93a/Custom_Tile 3cb530.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 3cb530 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.5148 + posY: 1.619545 + posZ: 3.6391995 + rotX: 359.945435 + rotY: 330.0001 + rotZ: 359.93924 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Nieuchwytny 31a93a/Custom_Tile 7234af.yaml new file mode 100644 index 000000000..486ca6de6 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Nieuchwytny 31a93a/Custom_Tile 7234af.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 7234af +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.6765 + posY: 1.61565208 + posZ: 3.86 + rotX: 0.0168704372 + rotY: 179.999954 + rotZ: 0.0799754858 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Nieuchwytny 31a93a/Custom_Tile 97ceeb.yaml new file mode 100644 index 000000000..46cc0caaa --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Nieuchwytny 31a93a/Custom_Tile 97ceeb.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 97ceeb +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: -18.6379 + posY: 1.60850751 + posZ: 3.4567 + rotX: 0.06842761 + rotY: 134.996689 + rotZ: 0.0445382632 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Nieuchwytny 31a93a/Custom_Tile b0eeef.yaml new file mode 100644 index 000000000..d5713df83 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Nieuchwytny 31a93a/Custom_Tile b0eeef.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: b0eeef +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.9495 + posY: 1.61909926 + posZ: 0.06730002 + rotX: 359.9201 + rotY: 269.9999 + rotZ: 0.0168678481 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Nieuchwytny 31a93a/Custom_Tile b82f40.yaml new file mode 100644 index 000000000..7670e0e79 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Nieuchwytny 31a93a/Custom_Tile b82f40.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: b82f40 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.1155 + posY: 1.60954571 + posZ: -0.0144999363 + rotX: 0.07989344 + rotY: 89.99961 + rotZ: 359.983124 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Nieuchwytny 31a93a/Custom_Tile cb1366.yaml new file mode 100644 index 000000000..17c314287 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Nieuchwytny 31a93a/Custom_Tile cb1366.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: cb1366 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.1267 + posY: 1.61814344 + posZ: -4.01790047 + rotX: 0.0253419261 + rotY: 30.0000362 + rotZ: 359.9223 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Nieuchwytny 31a93a/Custom_Tile cf757f.yaml new file mode 100644 index 000000000..5b057cb3a --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Nieuchwytny 31a93a/Custom_Tile cf757f.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: cf757f +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.0043 + posY: 1.6168853 + posZ: -7.71150064 + rotX: 0.07989509 + rotY: 89.99985 + rotZ: 359.983124 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Nieuchwytny 31a93a/Custom_Tile e9d1b9.yaml new file mode 100644 index 000000000..f6f3d2662 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Nieuchwytny 31a93a/Custom_Tile e9d1b9.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: e9d1b9 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.62478256 + posZ: 3.86 + rotX: 0.0168714412 + rotY: 179.999954 + rotZ: 0.0799739659 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Nieuchwytny 31a93a/Deck Act b0d181.yaml new file mode 100644 index 000000000..d89dd9ff1 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Nieuchwytny 31a93a/Deck Act b0d181.yaml @@ -0,0 +1,463 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 269917 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360091499/224A31895111D0AA10E11922F5946E20C9C887AB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360091949/B617873190DDFCC3FB6BC0B9643162CA732C5A78/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 70e9a3 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -8.270017 + posY: 1.03163242 + posZ: 4.053695 + rotX: 0.00341804652 + rotY: 180.000031 + rotZ: 0.0005548654 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 269916 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360091499/224A31895111D0AA10E11922F5946E20C9C887AB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360091949/B617873190DDFCC3FB6BC0B9643162CA732C5A78/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 0833b9 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -7.87784 + posY: 1.17008066 + posZ: 4.168426 + rotX: 0.0144965267 + rotY: 180.000092 + rotZ: 0.0116223786 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 269915 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360091499/224A31895111D0AA10E11922F5946E20C9C887AB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360091949/B617873190DDFCC3FB6BC0B9643162CA732C5A78/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: db02ee + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -8.225326 + posY: 1.1876663 + posZ: 4.05473375 + rotX: 0.00255315145 + rotY: 180.000092 + rotZ: 0.00181709148 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 269914 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360091499/224A31895111D0AA10E11922F5946E20C9C887AB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360091949/B617873190DDFCC3FB6BC0B9643162CA732C5A78/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 293f9f + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -7.930019 + posY: 1.17402315 + posZ: 4.222589 + rotX: 0.00177594484 + rotY: 180.0001 + rotZ: 0.0013193771 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 269913 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360091499/224A31895111D0AA10E11922F5946E20C9C887AB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360091949/B617873190DDFCC3FB6BC0B9643162CA732C5A78/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 8eec3c + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -8.602071 + posY: 1.17203951 + posZ: 3.83447957 + rotX: 0.00132825272 + rotY: 180.0 + rotZ: -0.000192675085 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 269912 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360091499/224A31895111D0AA10E11922F5946E20C9C887AB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360091949/B617873190DDFCC3FB6BC0B9643162CA732C5A78/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 4371f0 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -7.79995632 + posY: 1.17466938 + posZ: 3.89228439 + rotX: 0.00286432239 + rotY: 180.001373 + rotZ: 0.000786054 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 269911 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360091499/224A31895111D0AA10E11922F5946E20C9C887AB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360091949/B617873190DDFCC3FB6BC0B9643162CA732C5A78/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: f587ac + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -7.84422159 + posY: 1.17956018 + posZ: 3.47501254 + rotX: 0.00223138742 + rotY: 179.999908 + rotZ: 0.00241360231 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 269910 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360091499/224A31895111D0AA10E11922F5946E20C9C887AB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360091949/B617873190DDFCC3FB6BC0B9643162CA732C5A78/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: f1feae + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -7.85765028 + posY: 1.18588555 + posZ: 4.007552 + rotX: -6.746323e-05 + rotY: 180.002869 + rotZ: 0.00130191317 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 269909 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360091499/224A31895111D0AA10E11922F5946E20C9C887AB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360091949/B617873190DDFCC3FB6BC0B9643162CA732C5A78/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 4a7556 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -8.131854 + posY: 1.143433 + posZ: 4.058504 + rotX: 0.002099631 + rotY: 179.999985 + rotZ: 0.00167517446 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 269908 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360091499/224A31895111D0AA10E11922F5946E20C9C887AB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360091949/B617873190DDFCC3FB6BC0B9643162CA732C5A78/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: bf9771 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -8.16980648 + posY: 1.15303683 + posZ: 3.47541213 + rotX: 0.00165602169 + rotY: 179.999817 + rotZ: 0.0005784426 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2699': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360091499/224A31895111D0AA10E11922F5946E20C9C887AB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360091949/B617873190DDFCC3FB6BC0B9643162CA732C5A78/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 269917 +- 269916 +- 269915 +- 269914 +- 269913 +- 269912 +- 269911 +- 269910 +- 269909 +- 269908 +Description: Nieuchwytny +GMNotes: '' +GUID: b0d181 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Act +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.68849969 + posY: 1.64587784 + posZ: -5.04850054 + rotX: 359.919739 + rotY: 269.990662 + rotZ: 0.0168479513 + scaleX: 0.7 + scaleY: 1.0 + scaleZ: 0.7 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Nieuchwytny 31a93a/Deck Agenda 26922f.yaml new file mode 100644 index 000000000..4098b31d1 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Nieuchwytny 31a93a/Deck Agenda 26922f.yaml @@ -0,0 +1,169 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 269820 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360091499/224A31895111D0AA10E11922F5946E20C9C887AB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360091949/B617873190DDFCC3FB6BC0B9643162CA732C5A78/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 433f75 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -7.9688735 + posY: 1.031403 + posZ: -9.254367 + rotX: 0.0144622037 + rotY: 179.993057 + rotZ: 0.002050278 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 269819 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360091499/224A31895111D0AA10E11922F5946E20C9C887AB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360091949/B617873190DDFCC3FB6BC0B9643162CA732C5A78/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: dd241a + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -7.65231276 + posY: 1.17667282 + posZ: -9.19539452 + rotX: 359.733734 + rotY: 179.9991 + rotZ: 0.302944124 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 269818 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360091499/224A31895111D0AA10E11922F5946E20C9C887AB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360091949/B617873190DDFCC3FB6BC0B9643162CA732C5A78/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 9e6258 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -7.655241 + posY: 1.187591 + posZ: -8.917201 + rotX: -0.000278702937 + rotY: 180.002716 + rotZ: 0.001142137 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2698': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360091499/224A31895111D0AA10E11922F5946E20C9C887AB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360091949/B617873190DDFCC3FB6BC0B9643162CA732C5A78/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 269820 +- 269819 +- 269818 +Description: Nieuchwytny +GMNotes: '' +GUID: 26922f +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Agenda +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.72469974 + posY: 1.65664113 + posZ: 0.3733004 + rotX: 359.919739 + rotY: 269.984253 + rotZ: 0.016858289 + scaleX: 0.7 + scaleY: 1.0 + scaleZ: 0.7 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Nieuchwytny 31a93a/Deck Talia spotkań 09320c.yaml new file mode 100644 index 000000000..396ee2ca6 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Nieuchwytny 31a93a/Deck Talia spotkań 09320c.yaml @@ -0,0 +1,1336 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 310 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/254843371583115523/E82497980946ECE8E95AADC7220B140E4C0066A8/ + NumHeight: 3 + NumWidth: 5 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: dd4c83 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 55.4300346 + posY: 1.384346 + posZ: 1.25467312 + rotX: -0.00137263886 + rotY: 180.000046 + rotZ: 179.996536 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 309 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/254843371583115523/E82497980946ECE8E95AADC7220B140E4C0066A8/ + NumHeight: 3 + NumWidth: 5 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: b9af55 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 56.30142 + posY: 1.49661458 + posZ: 1.03186321 + rotX: 0.0342302322 + rotY: 179.954941 + rotZ: 173.157776 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 308 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/254843371583115523/E82497980946ECE8E95AADC7220B140E4C0066A8/ + NumHeight: 3 + NumWidth: 5 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 05fb57 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 55.53753 + posY: 1.35949647 + posZ: 0.8954799 + rotX: -0.00104510249 + rotY: 180.000046 + rotZ: 179.997574 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 273947 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2739': + BackIsHidden: true + BackURL: https://i.imgur.com/h4om3TQ.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87098596225478692/B2438BEE2CDD4D172BAFA5DFDD15C0F29B079D4F/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Terror. + GMNotes: '' + GUID: 4e44cc + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Unhallowed Country + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 41.251564 + posY: 2.44476175 + posZ: -42.1444168 + rotX: 359.9201 + rotY: 270.003326 + rotZ: 0.0168684442 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 273947 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2739': + BackIsHidden: true + BackURL: https://i.imgur.com/h4om3TQ.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87098596225478692/B2438BEE2CDD4D172BAFA5DFDD15C0F29B079D4F/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Terror. + GMNotes: '' + GUID: bb30e1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Unhallowed Country + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 42.2957344 + posY: 2.44240355 + posZ: -45.20943 + rotX: 359.920135 + rotY: 269.999847 + rotZ: 0.0168662872 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 273948 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2739': + BackIsHidden: true + BackURL: https://i.imgur.com/h4om3TQ.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87098596225478692/B2438BEE2CDD4D172BAFA5DFDD15C0F29B079D4F/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Terror. + GMNotes: '' + GUID: 87710e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Sordid and Silent + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 37.8416824 + posY: 2.4499197 + posZ: -40.77097 + rotX: 359.920135 + rotY: 269.999847 + rotZ: 0.0168696158 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 273948 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2739': + BackIsHidden: true + BackURL: https://i.imgur.com/h4om3TQ.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87098596225478692/B2438BEE2CDD4D172BAFA5DFDD15C0F29B079D4F/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Terror. + GMNotes: '' + GUID: d1339d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Sordid and Silent + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 38.91237 + posY: 2.44929171 + posZ: -37.833725 + rotX: 359.920135 + rotY: 270.000519 + rotZ: 0.0168693643 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274058 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2679': + BackIsHidden: true + BackURL: https://i.imgur.com/h4om3TQ.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87098596225478692/B2438BEE2CDD4D172BAFA5DFDD15C0F29B079D4F/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Tactic. + GMNotes: '' + GUID: fa4180 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Hunted Down + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 29.5644035 + posY: 2.40774322 + posZ: -43.83917 + rotX: 359.920135 + rotY: 270.0 + rotZ: 0.0168700218 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274058 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2679': + BackIsHidden: true + BackURL: https://i.imgur.com/h4om3TQ.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87098596225478692/B2438BEE2CDD4D172BAFA5DFDD15C0F29B079D4F/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Tactic. + GMNotes: '' + GUID: 17fa00 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Hunted Down + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 30.3592682 + posY: 2.19565439 + posZ: -44.6710358 + rotX: 359.920135 + rotY: 269.9997 + rotZ: 0.0168691576 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274057 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2679': + BackIsHidden: true + BackURL: https://i.imgur.com/h4om3TQ.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87098596225478692/B2438BEE2CDD4D172BAFA5DFDD15C0F29B079D4F/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Human. Criminal. Syndicate. + GMNotes: '' + GUID: 01f83c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Mobster + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 23.7299442 + posY: 5.12193775 + posZ: -33.11273 + rotX: 359.920135 + rotY: 269.998444 + rotZ: 0.01687041 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274057 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2679': + BackIsHidden: true + BackURL: https://i.imgur.com/h4om3TQ.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87098596225478692/B2438BEE2CDD4D172BAFA5DFDD15C0F29B079D4F/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Human. Criminal. Syndicate. + GMNotes: '' + GUID: 3ef482 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Mobster + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 23.8397713 + posY: 5.120819 + posZ: -36.3913078 + rotX: 359.920135 + rotY: 269.999756 + rotZ: 0.016869545 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274056 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2679': + BackIsHidden: true + BackURL: https://i.imgur.com/h4om3TQ.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87098596225478692/B2438BEE2CDD4D172BAFA5DFDD15C0F29B079D4F/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Human. Criminal. Syndicate. + GMNotes: '' + GUID: 5eac8d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: O' Bannion's Thug + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 22.9770279 + posY: 2.40737677 + posZ: -41.75272 + rotX: 359.920135 + rotY: 269.999664 + rotZ: 0.0168735143 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274056 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2679': + BackIsHidden: true + BackURL: https://i.imgur.com/h4om3TQ.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87098596225478692/B2438BEE2CDD4D172BAFA5DFDD15C0F29B079D4F/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Human. Criminal. Syndicate. + GMNotes: '' + GUID: b1e06b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: O' Bannion's Thug + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 22.8378277 + posY: 2.40838671 + posZ: -38.98146 + rotX: 359.920135 + rotY: 270.008057 + rotZ: 0.0168551449 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 266559 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2665': + BackIsHidden: true + BackURL: https://i.imgur.com/h4om3TQ.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87098596225478692/B2438BEE2CDD4D172BAFA5DFDD15C0F29B079D4F/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Hex. + GMNotes: '' + GUID: 91f147 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Pushed into the Beyond + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 18.3375111 + posY: 3.35008621 + posZ: -31.4791584 + rotX: 359.920135 + rotY: 269.999817 + rotZ: 0.0168640018 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 266559 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2665': + BackIsHidden: true + BackURL: https://i.imgur.com/h4om3TQ.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87098596225478692/B2438BEE2CDD4D172BAFA5DFDD15C0F29B079D4F/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Hex. + GMNotes: '' + GUID: fb66db + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Pushed into the Beyond + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 8.60143852 + posY: 1.53564143 + posZ: -18.9741859 + rotX: 359.919556 + rotY: 269.865479 + rotZ: 0.01602861 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 266561 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2665': + BackIsHidden: true + BackURL: https://i.imgur.com/h4om3TQ.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87098596225478692/B2438BEE2CDD4D172BAFA5DFDD15C0F29B079D4F/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Hex. Obstacle. + GMNotes: '' + GUID: 82a16b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Arcane Barrier + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 7.886861 + posY: 1.69462907 + posZ: -18.637928 + rotX: 359.932617 + rotY: 270.000519 + rotZ: 0.009581304 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 266561 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2665': + BackIsHidden: true + BackURL: https://i.imgur.com/h4om3TQ.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87098596225478692/B2438BEE2CDD4D172BAFA5DFDD15C0F29B079D4F/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Hex. Obstacle. + GMNotes: '' + GUID: 923e73 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Arcane Barrier + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 8.43005 + posY: 1.68030608 + posZ: -18.9462013 + rotX: 359.93335 + rotY: 269.999542 + rotZ: 0.0127128791 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 266560 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2665': + BackIsHidden: true + BackURL: https://i.imgur.com/h4om3TQ.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87098596225478692/B2438BEE2CDD4D172BAFA5DFDD15C0F29B079D4F/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Hex. Terror. + GMNotes: '' + GUID: fdb79a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Terror from Beyond + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 9.116816 + posY: 2.36522055 + posZ: -30.1887054 + rotX: 359.986328 + rotY: 269.995483 + rotZ: 0.00289311423 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 266560 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2665': + BackIsHidden: true + BackURL: https://i.imgur.com/h4om3TQ.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87098596225478692/B2438BEE2CDD4D172BAFA5DFDD15C0F29B079D4F/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Hex. Terror. + GMNotes: '' + GUID: 56c5b7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Terror from Beyond + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 9.630424 + posY: 2.36672854 + posZ: -30.2690468 + rotX: 359.920135 + rotY: 269.973724 + rotZ: 0.01690924 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3622 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: 03a265 + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Obscuring Fog + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -17.4148483 + posY: 1.23167741 + posZ: 5.99956274 + rotX: -0.000976656 + rotY: 269.9857 + rotZ: 0.005132819 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3622 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: '356046' + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Obscuring Fog + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -17.4060268 + posY: 1.37945676 + posZ: 6.40290833 + rotX: -0.0007180891 + rotY: 270.000427 + rotZ: 0.00573350256 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3621 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: b78c3b + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Crypt Chill + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -20.9259262 + posY: 1.23167884 + posZ: 6.982535 + rotX: -0.00255119917 + rotY: 269.983215 + rotZ: -0.000175039211 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3621 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: fb311c + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Crypt Chill + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -21.2322311 + posY: 1.37918484 + posZ: 7.16166067 + rotX: 359.988861 + rotY: 269.991547 + rotZ: 0.0295213945 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3633 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Dark Young. + GMNotes: '' + GUID: da8001 + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Relentless Dark Young + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 13.5185127 + posY: 1.19438565 + posZ: -3.95692968 + rotX: 3.66306122e-05 + rotY: 269.987335 + rotZ: 180.000092 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3634 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Monster. + GMNotes: '' + GUID: bda9db + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Goat Spawn + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -19.9832973 + posY: 1.37777317 + posZ: -5.713689 + rotX: 359.972534 + rotY: 270.007568 + rotZ: 0.0631763861 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3634 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Monster. + GMNotes: '' + GUID: dbcee1 + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Goat Spawn + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -19.2575989 + posY: 1.23163438 + posZ: -6.416643 + rotX: -0.00381924468 + rotY: 270.0079 + rotZ: -0.00312354276 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3634 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Monster. + GMNotes: '' + GUID: 19459f + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Goat Spawn + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -19.4307671 + posY: 1.52297127 + posZ: -6.648358 + rotX: 359.986542 + rotY: 270.007263 + rotZ: 0.0277339257 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3620 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: 1921c5 + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ancient Evils + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -19.6564026 + posY: 1.23160839 + posZ: 7.971792 + rotX: -0.005002445 + rotY: 269.9994 + rotZ: -0.0014756727 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3620 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: e0f4c0 + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ancient Evils + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -20.9346027 + posY: 1.28129983 + posZ: 7.54924154 + rotX: 0.006723375 + rotY: 269.9994 + rotZ: -0.000132751375 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3620 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: 61e841 + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ancient Evils + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -21.9496078 + posY: 1.33434 + posZ: 7.916971 + rotX: 0.0176143516 + rotY: 269.9864 + rotZ: 359.993561 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2665': + BackIsHidden: true + BackURL: https://i.imgur.com/h4om3TQ.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87098596225478692/B2438BEE2CDD4D172BAFA5DFDD15C0F29B079D4F/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + '2739': + BackIsHidden: true + BackURL: https://i.imgur.com/h4om3TQ.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87098596225478692/B2438BEE2CDD4D172BAFA5DFDD15C0F29B079D4F/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + '2740': + BackIsHidden: true + BackURL: https://i.imgur.com/h4om3TQ.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87098596225478692/B2438BEE2CDD4D172BAFA5DFDD15C0F29B079D4F/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + '3': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/254843371583115523/E82497980946ECE8E95AADC7220B140E4C0066A8/ + NumHeight: 3 + NumWidth: 5 + UniqueBack: false + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 310 +- 309 +- 308 +- 273947 +- 273947 +- 273948 +- 273948 +- 274058 +- 274058 +- 274057 +- 274057 +- 274056 +- 274056 +- 266559 +- 266559 +- 266561 +- 266561 +- 266560 +- 266560 +- 3622 +- 3622 +- 3621 +- 3621 +- 3633 +- 3634 +- 3634 +- 3634 +- 3620 +- 3620 +- 3620 +Description: Nieuchwytny +GMNotes: '' +GUID: 09320c +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: "Talia spotka\u0144" +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.92770028 + posY: 1.77170992 + posZ: 5.7571 + rotX: 359.919739 + rotY: 269.99765 + rotZ: 180.016846 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Nieuchwytny 31a93a/Deck odloz na Bok 1ca036.yaml new file mode 100644 index 000000000..12d2c44dc --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Nieuchwytny 31a93a/Deck odloz na Bok 1ca036.yaml @@ -0,0 +1,134 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 133 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360090261/C6397916D4D0423C815C3BBA15E0C852A0E73C2D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360091078/C246EBFEC6DB75F25513421B8D8AF1D66ECE15A2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Nieuchwytny + GMNotes: '' + GUID: 69cb3b + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Kraniec Vermont + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 59.57504 + posY: 1.06128347 + posZ: -0.883141935 + rotX: 0.0046047084 + rotY: 179.834473 + rotZ: 0.00229213457 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3717 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '37': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/87098596225479744/CE600D759B16539739EF1EEFEB796023DB48F7B5/ + FaceURL: https://i.imgur.com/YcJaH8L.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Monster. Abomination. Elite. + GMNotes: '' + GUID: fbfad2 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Experiment + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 59.209446 + posY: 1.1996783 + posZ: -0.5218346 + rotX: 0.00892565 + rotY: 180.001419 + rotZ: 359.974274 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360090261/C6397916D4D0423C815C3BBA15E0C852A0E73C2D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360091078/C246EBFEC6DB75F25513421B8D8AF1D66ECE15A2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + '37': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/87098596225479744/CE600D759B16539739EF1EEFEB796023DB48F7B5/ + FaceURL: https://i.imgur.com/YcJaH8L.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 133 +- 3717 +Description: Nieuchwytny +GMNotes: '' +GUID: 1ca036 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: odloz na Bok +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 1.6965009 + posY: 1.6618706 + posZ: 14.278903 + rotX: 359.95517 + rotY: 224.997711 + rotZ: 0.06865918 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Podniebny Koncert 2889f0.ttslua b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Podniebny Koncert 2889f0.ttslua new file mode 100644 index 000000000..4acf9ea11 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Podniebny Koncert 2889f0.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 791837/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Podniebny Koncert 2889f0.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Podniebny Koncert 2889f0.yaml new file mode 100644 index 000000000..c6f1a4d6d --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Podniebny Koncert 2889f0.yaml @@ -0,0 +1,64 @@ +Autoraise: true +ColorDiffuse: + b: 0.0 + g: 0.366520882 + r: 0.7058823 +ContainedObjects: +- !include 'Bag Podniebny Koncert 2889f0/Deck Poza gra 96e8c2.yaml' +- !include 'Bag Podniebny Koncert 2889f0/Deck Horyzont - Kraina Snu 1d33cd.yaml' +- !include 'Bag Podniebny Koncert 2889f0/Deck Zeppelin 087ed1.yaml' +- !include 'Bag Podniebny Koncert 2889f0/Deck Masyw Skalny - Kraina snu ae5212.yaml' +- !include 'Bag Podniebny Koncert 2889f0/Deck Tajemnica aa067b.yaml' +- !include 'Bag Podniebny Koncert 2889f0/Deck Act cee098.yaml' +- !include 'Bag Podniebny Koncert 2889f0/Card bdcc71.yaml' +- !include 'Bag Podniebny Koncert 2889f0/Card Zasady 90d605.yaml' +- !include 'Bag Podniebny Koncert 2889f0/Card 138728.yaml' +- !include 'Bag Podniebny Koncert 2889f0/Card 0d3f61.yaml' +- !include 'Bag Podniebny Koncert 2889f0/Card a331b8.yaml' +- !include 'Bag Podniebny Koncert 2889f0/Custom_Tile b6da2f.yaml' +- !include 'Bag Podniebny Koncert 2889f0/Custom_Tile 1a4a03.yaml' +- !include 'Bag Podniebny Koncert 2889f0/Custom_Tile 71caf5.yaml' +- !include 'Bag Podniebny Koncert 2889f0/Card 89e96e.yaml' +- !include 'Bag Podniebny Koncert 2889f0/Custom_Tile 5c70ce.yaml' +- !include 'Bag Podniebny Koncert 2889f0/Card 1b0adb.yaml' +- !include 'Bag Podniebny Koncert 2889f0/Card c3b6cb.yaml' +- !include 'Bag Podniebny Koncert 2889f0/Card f5b09f.yaml' +- !include 'Bag Podniebny Koncert 2889f0/Custom_Tile 7717e9.yaml' +- !include 'Bag Podniebny Koncert 2889f0/Custom_Tile 3903e7.yaml' +- !include 'Bag Podniebny Koncert 2889f0/Custom_Tile 7234af.yaml' +- !include 'Bag Podniebny Koncert 2889f0/Card c94034.yaml' +- !include 'Bag Podniebny Koncert 2889f0/Custom_Tile 792914.yaml' +- !include 'Bag Podniebny Koncert 2889f0/Card e98a01.yaml' +- !include 'Bag Podniebny Koncert 2889f0/Card Klaus Stravinsky fbd611.yaml' +- !include 'Bag Podniebny Koncert 2889f0/Card 4bf3b7.yaml' +- !include 'Bag Podniebny Koncert 2889f0/Card 766770.yaml' +- !include 'Bag Podniebny Koncert 2889f0/Card d64ce3.yaml' +Description: '' +GMNotes: '' +GUID: 2889f0 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Bag Podniebny Koncert 2889f0.ttslua' +LuaScriptState: '{"ml":{"087ed1":{"lock":false,"pos":{"x":-11.3346,"y":1.7415,"z":12.7089},"rot":{"x":359.9201,"y":269.9732,"z":180.0169}},"0d3f61":{"lock":false,"pos":{"x":-15.0724,"y":1.7861,"z":-8.297},"rot":{"x":355.8205,"y":269.9325,"z":180.0199}},"138728":{"lock":false,"pos":{"x":-17.1199,"y":1.6799,"z":-0.03},"rot":{"x":359.9201,"y":269.9839,"z":180.0169}},"1a4a03":{"lock":false,"pos":{"x":-20.6258,"y":1.7081,"z":-7.4003},"rot":{"x":359.9201,"y":270.0001,"z":180.0169}},"1b0adb":{"lock":false,"pos":{"x":-23.6765,"y":1.6868,"z":-7.7},"rot":{"x":359.9201,"y":269.9836,"z":180.0169}},"1d33cd":{"lock":false,"pos":{"x":-4.5791,"y":1.6795,"z":15.2743},"rot":{"x":359.9197,"y":269.9928,"z":180.0168}},"3903e7":{"lock":false,"pos":{"x":-27.0845,"y":1.717,"z":-7.863},"rot":{"x":359.9201,"y":270.0001,"z":180.0169}},"4bf3b7":{"lock":false,"pos":{"x":-30.1782,"y":1.6959,"z":-7.6729},"rot":{"x":359.9193,"y":269.6029,"z":180.0172}},"5c70ce":{"lock":false,"pos":{"x":-23.6761,"y":1.7134,"z":-3.8301},"rot":{"x":359.9831,"y":0,"z":179.92}},"71caf5":{"lock":false,"pos":{"x":-19.7947,"y":1.7056,"z":-11.8689},"rot":{"x":359.9554,"y":225,"z":180.0684}},"7234af":{"lock":false,"pos":{"x":-27.6758,"y":1.629,"z":0.0505},"rot":{"x":359.4119,"y":269.982,"z":359.9801}},"766770":{"lock":false,"pos":{"x":-32.2798,"y":1.807,"z":-8.1555},"rot":{"x":3.9125,"y":269.5147,"z":180.0181}},"7717e9":{"lock":false,"pos":{"x":-27.4983,"y":1.7163,"z":-12.1591},"rot":{"x":0.0684,"y":135.0001,"z":180.0446}},"792914":{"lock":false,"pos":{"x":-30.224,"y":1.7248,"z":3.8599},"rot":{"x":359.9831,"y":0,"z":179.92}},"89e96e":{"lock":false,"pos":{"x":-23.6765,"y":1.689,"z":-0.03},"rot":{"x":359.9201,"y":269.9997,"z":180.0169}},"90d605":{"lock":false,"pos":{"x":-10.6813,"y":1.6717,"z":2.9984},"rot":{"x":359.9202,"y":269.9999,"z":180.0168}},"96e8c2":{"lock":false,"pos":{"x":1.6966,"y":1.6682,"z":14.2787},"rot":{"x":359.9552,"y":224.9999,"z":180.0686}},"a331b8":{"lock":false,"pos":{"x":-17.1204,"y":1.6777,"z":-7.7007},"rot":{"x":359.9196,"y":270.0002,"z":180.0161}},"aa067b":{"lock":false,"pos":{"x":-2.7247,"y":1.6551,"z":0.3733},"rot":{"x":359.9197,"y":269.9723,"z":0.0169}},"ae5212":{"lock":false,"pos":{"x":-11.3344,"y":1.7033,"z":9.7672},"rot":{"x":359.9201,"y":269.9853,"z":180.0169}},"b6da2f":{"lock":false,"pos":{"x":-20.5591,"y":1.7101,"z":-0.079},"rot":{"x":359.9201,"y":270.0001,"z":180.0169}},"bdcc71":{"lock":false,"pos":{"x":-3.9559,"y":1.6556,"z":-10.4411},"rot":{"x":359.9197,"y":270.0039,"z":0.0168}},"c3b6cb":{"lock":false,"pos":{"x":-23.6764,"y":1.6846,"z":-15.2801},"rot":{"x":359.9186,"y":269.9979,"z":180.0157}},"c94034":{"lock":false,"pos":{"x":-30.2243,"y":1.7004,"z":7.57},"rot":{"x":359.9201,"y":269.984,"z":180.0169}},"cee098":{"lock":false,"pos":{"x":-2.6885,"y":1.655,"z":-5.0485},"rot":{"x":359.9197,"y":269.9991,"z":0.0168}},"d64ce3":{"lock":false,"pos":{"x":-50.9244,"y":1.7266,"z":8.1784},"rot":{"x":359.9201,"y":270.0039,"z":0.0169}},"e98a01":{"lock":false,"pos":{"x":-30.2339,"y":1.6983,"z":-0.0309},"rot":{"x":359.9325,"y":269.9375,"z":180.0201}},"f5b09f":{"lock":false,"pos":{"x":-25.8177,"y":1.7938,"z":-16.1877},"rot":{"x":3.8478,"y":270.0136,"z":180.0183}},"fbd611":{"lock":false,"pos":{"x":-30.2242,"y":1.6942,"z":-3.83},"rot":{"x":359.9201,"y":269.995,"z":0.0169}}}}' +MaterialIndex: -1 +MeshIndex: -1 +Name: Bag +Nickname: Podniebny Koncert +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 9.568601 + posY: 1.28581381 + posZ: 9.095102 + rotX: 0.07995041 + rotY: 89.9923 + rotZ: 359.9831 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Podniebny Koncert 2889f0/Card 0d3f61.yaml new file mode 100644 index 000000000..bf9bde226 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Podniebny Koncert 2889f0/Card 0d3f61.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 143 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360090261/C6397916D4D0423C815C3BBA15E0C852A0E73C2D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360091078/C246EBFEC6DB75F25513421B8D8AF1D66ECE15A2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 0d3f61 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -15.0723734 + posY: 1.786063 + posZ: -8.297026 + rotX: 355.820526 + rotY: 269.932526 + rotZ: 180.019867 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Podniebny Koncert 2889f0/Card 138728.yaml new file mode 100644 index 000000000..350f9f63e --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Podniebny Koncert 2889f0/Card 138728.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 148 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360090261/C6397916D4D0423C815C3BBA15E0C852A0E73C2D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360091078/C246EBFEC6DB75F25513421B8D8AF1D66ECE15A2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: '138728' +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -17.11992 + posY: 1.67990041 + posZ: -0.0300262515 + rotX: 359.9201 + rotY: 269.983856 + rotZ: 180.016891 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Podniebny Koncert 2889f0/Card 1b0adb.yaml new file mode 100644 index 000000000..06af5f765 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Podniebny Koncert 2889f0/Card 1b0adb.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 136 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360090261/C6397916D4D0423C815C3BBA15E0C852A0E73C2D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360091078/C246EBFEC6DB75F25513421B8D8AF1D66ECE15A2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 1b0adb +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -23.6765442 + posY: 1.68678474 + posZ: -7.70002031 + rotX: 359.9201 + rotY: 269.983582 + rotZ: 180.0169 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Podniebny Koncert 2889f0/Card 4bf3b7.yaml new file mode 100644 index 000000000..f2be3ca43 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Podniebny Koncert 2889f0/Card 4bf3b7.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 142 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360090261/C6397916D4D0423C815C3BBA15E0C852A0E73C2D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360091078/C246EBFEC6DB75F25513421B8D8AF1D66ECE15A2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 4bf3b7 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -30.178215 + posY: 1.69587588 + posZ: -7.672855 + rotX: 359.91925 + rotY: 269.6029 + rotZ: 180.017166 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Podniebny Koncert 2889f0/Card 766770.yaml new file mode 100644 index 000000000..09f2514de --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Podniebny Koncert 2889f0/Card 766770.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 141 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360090261/C6397916D4D0423C815C3BBA15E0C852A0E73C2D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360091078/C246EBFEC6DB75F25513421B8D8AF1D66ECE15A2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: '766770' +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -32.2798462 + posY: 1.80701053 + posZ: -8.155464 + rotX: 3.91246653 + rotY: 269.51474 + rotZ: 180.018082 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Podniebny Koncert 2889f0/Card 89e96e.yaml new file mode 100644 index 000000000..6a863b1ce --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Podniebny Koncert 2889f0/Card 89e96e.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 147 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360090261/C6397916D4D0423C815C3BBA15E0C852A0E73C2D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360091078/C246EBFEC6DB75F25513421B8D8AF1D66ECE15A2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 89e96e +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -23.6764755 + posY: 1.68904328 + posZ: -0.0300189219 + 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 791837/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 791837/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Podniebny Koncert 2889f0/Card a331b8.yaml new file mode 100644 index 000000000..266e18b06 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Podniebny Koncert 2889f0/Card a331b8.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 144 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360090261/C6397916D4D0423C815C3BBA15E0C852A0E73C2D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360091078/C246EBFEC6DB75F25513421B8D8AF1D66ECE15A2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: a331b8 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -17.1204453 + posY: 1.677656 + posZ: -7.7007246 + rotX: 359.919647 + rotY: 270.000153 + rotZ: 180.016129 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Podniebny Koncert 2889f0/Card bdcc71.yaml new file mode 100644 index 000000000..048819cb8 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Podniebny Koncert 2889f0/Card bdcc71.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 150 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360090261/C6397916D4D0423C815C3BBA15E0C852A0E73C2D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360091078/C246EBFEC6DB75F25513421B8D8AF1D66ECE15A2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Podniebny Koncert +GMNotes: '' +GUID: bdcc71 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.95592737 + posY: 1.655648 + posZ: -10.4410858 + rotX: 359.919739 + rotY: 270.0039 + rotZ: 0.01683003 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Podniebny Koncert 2889f0/Card c3b6cb.yaml new file mode 100644 index 000000000..2e9be3d1d --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Podniebny Koncert 2889f0/Card c3b6cb.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 146 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360090261/C6397916D4D0423C815C3BBA15E0C852A0E73C2D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360091078/C246EBFEC6DB75F25513421B8D8AF1D66ECE15A2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: c3b6cb +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -23.6764355 + posY: 1.68459725 + posZ: -15.2801151 + rotX: 359.9186 + rotY: 269.997925 + rotZ: 180.015732 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Podniebny Koncert 2889f0/Card c94034.yaml new file mode 100644 index 000000000..99c3531a4 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Podniebny Koncert 2889f0/Card c94034.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 137 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360090261/C6397916D4D0423C815C3BBA15E0C852A0E73C2D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360091078/C246EBFEC6DB75F25513421B8D8AF1D66ECE15A2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: c94034 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -30.2242832 + posY: 1.70041144 + posZ: 7.57000637 + rotX: 359.9201 + rotY: 269.984 + rotZ: 180.016891 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Podniebny Koncert 2889f0/Card d64ce3.yaml new file mode 100644 index 000000000..5cd8fcae4 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Podniebny Koncert 2889f0/Card d64ce3.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 150 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360090261/C6397916D4D0423C815C3BBA15E0C852A0E73C2D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360091078/C246EBFEC6DB75F25513421B8D8AF1D66ECE15A2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Podniebny Koncert +GMNotes: '' +GUID: d64ce3 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -50.9243774 + posY: 1.72662532 + posZ: 8.178431 + rotX: 359.9201 + rotY: 270.003937 + rotZ: 0.0168641321 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Podniebny Koncert 2889f0/Card e98a01.yaml new file mode 100644 index 000000000..82e4b8568 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Podniebny Koncert 2889f0/Card e98a01.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 138 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360090261/C6397916D4D0423C815C3BBA15E0C852A0E73C2D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360091078/C246EBFEC6DB75F25513421B8D8AF1D66ECE15A2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: e98a01 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -30.2338924 + posY: 1.69831741 + posZ: -0.0308899023 + rotX: 359.932465 + rotY: 269.937469 + rotZ: 180.02005 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Podniebny Koncert 2889f0/Card f5b09f.yaml new file mode 100644 index 000000000..62f045ea8 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Podniebny Koncert 2889f0/Card f5b09f.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 145 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360090261/C6397916D4D0423C815C3BBA15E0C852A0E73C2D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360091078/C246EBFEC6DB75F25513421B8D8AF1D66ECE15A2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: f5b09f +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -25.8177242 + posY: 1.79377878 + posZ: -16.1877155 + rotX: 3.84782219 + rotY: 270.01358 + rotZ: 180.018265 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Podniebny Koncert 2889f0/Card Klaus Stravinsky fbd611.yaml new file mode 100644 index 000000000..8acadc0cf --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Podniebny Koncert 2889f0/Card Klaus Stravinsky fbd611.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 149 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360090261/C6397916D4D0423C815C3BBA15E0C852A0E73C2D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360091078/C246EBFEC6DB75F25513421B8D8AF1D66ECE15A2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Podniebny Koncert +GMNotes: '' +GUID: fbd611 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Klaus Stravinsky +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -30.22419 + posY: 1.69423175 + posZ: -3.83000278 + rotX: 359.9201 + rotY: 269.995 + rotZ: 0.0168767665 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Podniebny Koncert 2889f0/Card Zasady 90d605.yaml new file mode 100644 index 000000000..afea1243c --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Podniebny Koncert 2889f0/Card Zasady 90d605.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 151 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360090261/C6397916D4D0423C815C3BBA15E0C852A0E73C2D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360091078/C246EBFEC6DB75F25513421B8D8AF1D66ECE15A2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Podniebny Koncert +GMNotes: '' +GUID: 90d605 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Zasady +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -10.6813068 + posY: 1.67172837 + posZ: 2.99839664 + rotX: 359.920227 + rotY: 269.999939 + rotZ: 180.016815 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Podniebny Koncert 2889f0/Custom_Tile 1a4a03.yaml new file mode 100644 index 000000000..508b38ed9 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Podniebny Koncert 2889f0/Custom_Tile 1a4a03.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 1a4a03 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.6257515 + posY: 1.70808268 + posZ: -7.400252 + rotX: 359.9201 + rotY: 270.000122 + rotZ: 180.0169 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Podniebny Koncert 2889f0/Custom_Tile 3903e7.yaml new file mode 100644 index 000000000..8bfbd9f12 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Podniebny Koncert 2889f0/Custom_Tile 3903e7.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 3903e7 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.0845451 + posY: 1.71695244 + posZ: -7.863045 + rotX: 359.9201 + rotY: 270.0001 + rotZ: 180.0169 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Podniebny Koncert 2889f0/Custom_Tile 5c70ce.yaml new file mode 100644 index 000000000..6fe7a9c40 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Podniebny Koncert 2889f0/Custom_Tile 5c70ce.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 5c70ce +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.6760979 + posY: 1.71338749 + posZ: -3.83008742 + rotX: 359.983124 + rotY: -1.19515153e-05 + rotZ: 179.920013 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Podniebny Koncert 2889f0/Custom_Tile 71caf5.yaml new file mode 100644 index 000000000..916c43adc --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Podniebny Koncert 2889f0/Custom_Tile 71caf5.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 71caf5 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: -19.7946529 + posY: 1.70560789 + posZ: -11.8688946 + rotX: 359.955444 + rotY: 224.999985 + rotZ: 180.068436 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Podniebny Koncert 2889f0/Custom_Tile 7234af.yaml new file mode 100644 index 000000000..0e5e48ffb --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Podniebny Koncert 2889f0/Custom_Tile 7234af.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 7234af +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.6757755 + posY: 1.62898922 + posZ: 0.05047142 + rotX: 359.411926 + rotY: 269.982 + rotZ: 359.980072 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Podniebny Koncert 2889f0/Custom_Tile 7717e9.yaml new file mode 100644 index 000000000..d5650b397 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Podniebny Koncert 2889f0/Custom_Tile 7717e9.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 7717e9 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.4982948 + posY: 1.71626461 + posZ: -12.1591368 + rotX: 0.06843061 + rotY: 135.0001 + rotZ: 180.0446 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Podniebny Koncert 2889f0/Custom_Tile 792914.yaml new file mode 100644 index 000000000..b8f716e19 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Podniebny Koncert 2889f0/Custom_Tile 792914.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: '792914' +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.223959 + posY: 1.72478235 + posZ: 3.8599422 + rotX: 359.983124 + rotY: 5.14002159e-06 + rotZ: 179.920013 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Podniebny Koncert 2889f0/Custom_Tile b6da2f.yaml new file mode 100644 index 000000000..b8375266e --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Podniebny Koncert 2889f0/Custom_Tile b6da2f.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: b6da2f +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.5591373 + posY: 1.71014559 + posZ: -0.07899995 + rotX: 359.9201 + rotY: 270.000061 + rotZ: 180.0169 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Podniebny Koncert 2889f0/Deck Act cee098.yaml new file mode 100644 index 000000000..44a1276ca --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Podniebny Koncert 2889f0/Deck Act cee098.yaml @@ -0,0 +1,169 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 274623 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360091499/224A31895111D0AA10E11922F5946E20C9C887AB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360091949/B617873190DDFCC3FB6BC0B9643162CA732C5A78/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: d4d9b7 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -6.28675175 + posY: 1.03164315 + posZ: 5.0644455 + rotX: 0.00224622083 + rotY: 179.997787 + rotZ: 0.0004271059 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274622 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360091499/224A31895111D0AA10E11922F5946E20C9C887AB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360091949/B617873190DDFCC3FB6BC0B9643162CA732C5A78/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: ce84c9 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -6.020782 + posY: 1.170142 + posZ: 5.14298534 + rotX: 0.0124489 + rotY: 179.999527 + rotZ: 0.00801037252 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274621 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360091499/224A31895111D0AA10E11922F5946E20C9C887AB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360091949/B617873190DDFCC3FB6BC0B9643162CA732C5A78/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: d935fd + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -6.39623451 + posY: 1.18771577 + posZ: 4.92063332 + rotX: 0.00184376235 + rotY: 179.9987 + rotZ: 6.97472642e-05 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2746': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360091499/224A31895111D0AA10E11922F5946E20C9C887AB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360091949/B617873190DDFCC3FB6BC0B9643162CA732C5A78/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 274623 +- 274622 +- 274621 +Description: Podniebny +GMNotes: '' +GUID: cee098 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Act +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.68850064 + posY: 1.65499735 + posZ: -5.04853439 + rotX: 359.919739 + rotY: 269.999084 + rotZ: 0.0168355573 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Podniebny Koncert 2889f0/Deck Horyzont - Kraina Snu 1d33cd.yaml new file mode 100644 index 000000000..b5a51033c --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Podniebny Koncert 2889f0/Deck Horyzont - Kraina Snu 1d33cd.yaml @@ -0,0 +1,535 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 3626 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Nightgaunt. + GMNotes: '' + GUID: '476433' + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Hunting Nightgaunt + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -22.1894913 + posY: 1.23165715 + posZ: 8.126968 + rotX: -0.00287241978 + rotY: 269.726624 + rotZ: -0.000931444752 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3626 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Nightgaunt. + GMNotes: '' + GUID: b124ef + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Hunting Nightgaunt + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -22.37006 + posY: 1.37715232 + posZ: 7.785293 + rotX: 0.00128005829 + rotY: 269.726654 + rotZ: 0.00324654416 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3627 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: dd287a + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: On Wings of Darkness + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -21.2239914 + posY: 1.231599 + posZ: 12.258028 + rotX: 0.00274006533 + rotY: 270.360443 + rotZ: 0.00162735826 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3627 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: b06ff1 + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: On Wings of Darkness + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -21.6091557 + posY: 1.37787735 + posZ: 11.9596348 + rotX: 0.223490238 + rotY: 269.9995 + rotZ: 0.3121837 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3630 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: d98d0d + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Yellow Sign + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -19.8412476 + posY: 1.23168051 + posZ: -6.0305624 + rotX: -0.00221407949 + rotY: 270.0 + rotZ: -0.00130906352 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3630 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: fd620f + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Yellow Sign + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -19.9898739 + posY: 1.37721884 + posZ: -5.93163729 + rotX: 0.00130655093 + rotY: 270.0 + rotZ: -0.00294430577 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3629 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Byakhee. + GMNotes: '' + GUID: da8001 + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Screeching Byakhee + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -19.48673 + posY: 1.23170042 + posZ: -3.90614724 + rotX: -0.00106929441 + rotY: 269.922028 + rotZ: -0.000622749969 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3629 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Byakhee. + GMNotes: '' + GUID: '401760' + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Screeching Byakhee + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -19.40854 + posY: 1.37712789 + posZ: -3.44667649 + rotX: 359.9912 + rotY: 269.921875 + rotZ: 359.989136 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3631 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Yithian. + GMNotes: '' + GUID: 3c1a8d + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Yithian Observer + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -21.1762352 + posY: 1.23172307 + posZ: -7.44283152 + rotX: -0.00222954247 + rotY: 270.007355 + rotZ: 359.993225 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3631 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Yithian. + GMNotes: '' + GUID: 7ed452 + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Yithian Observer + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -21.3348427 + posY: 1.37957644 + posZ: -7.73810339 + rotX: 0.03715024 + rotY: 270.0217 + rotZ: 0.06678678 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3632 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Pact. + GMNotes: '' + GUID: 153bb1 + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Offer of Power + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -20.47173 + posY: 1.23165572 + posZ: -6.579107 + rotX: -0.0019128432 + rotY: 269.991058 + rotZ: 0.00126636925 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3632 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Pact. + GMNotes: '' + GUID: 7c5c91 + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Offer of Power + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -20.5700569 + posY: 1.47729576 + posZ: -6.416937 + rotX: 0.007625266 + rotY: 269.9922 + rotZ: 354.008667 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 3626 +- 3626 +- 3627 +- 3627 +- 3630 +- 3630 +- 3629 +- 3629 +- 3631 +- 3631 +- 3632 +- 3632 +Description: Podniebny Koncert +GMNotes: '' +GUID: 1d33cd +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Horyzont - Kraina Snu +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -4.57905149 + posY: 1.67948866 + posZ: 15.2743254 + rotX: 359.919739 + rotY: 269.9928 + rotZ: 180.016846 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Podniebny Koncert 2889f0/Deck Masyw Skalny - Kraina snu ae5212.yaml new file mode 100644 index 000000000..a624d1361 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Podniebny Koncert 2889f0/Deck Masyw Skalny - Kraina snu ae5212.yaml @@ -0,0 +1,658 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 3614 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humaniod. Monster. Ghoul. + GMNotes: '' + GUID: d84de0 + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ghoul Minion + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -19.7288685 + posY: 1.23164022 + posZ: 5.061393 + rotX: -0.00355166267 + rotY: 269.99884 + rotZ: -0.00106878171 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3616 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: d60f3b + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Grasping Hands + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -21.5892124 + posY: 1.335341 + posZ: -0.10275472 + rotX: 0.0121570369 + rotY: 269.993347 + rotZ: -0.0005436771 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3616 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: 6a13ae + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Grasping Hands + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -20.7329159 + posY: 1.2813586 + posZ: -0.0925612152 + rotX: 0.00429656 + rotY: 270.022278 + rotZ: -0.000649601454 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3615 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humaniod. Monster. Ghoul. + GMNotes: '' + GUID: a65f30 + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ravenous Ghoul + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -19.8181629 + posY: 1.23171639 + posZ: 2.487658 + rotX: -2.3016848e-05 + rotY: 269.999939 + rotZ: -2.027022e-06 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3616 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: 9c193f + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Grasping Hands + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -19.6770039 + posY: 1.23163879 + posZ: -0.0248187073 + rotX: -0.00361831323 + rotY: 270.0224 + rotZ: -0.00109177944 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3614 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humaniod. Monster. Ghoul. + GMNotes: '' + GUID: 4218a0 + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ghoul Minion + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -20.6391163 + posY: 1.28146374 + posZ: 5.01242638 + rotX: 0.004181641 + rotY: 269.9984 + rotZ: -0.0005332415 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3614 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humaniod. Monster. Ghoul. + GMNotes: '' + GUID: 3e53b0 + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ghoul Minion + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -21.6324978 + posY: 1.33485162 + posZ: 4.96905327 + rotX: 0.0129893105 + rotY: 269.997925 + rotZ: -3.80091878e-05 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3633 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Dark Young. + GMNotes: '' + GUID: da8001 + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Relentless Dark Young + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 13.5185127 + posY: 1.19438565 + posZ: -3.95692968 + rotX: 3.66306122e-05 + rotY: 269.987335 + rotZ: 180.000092 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3634 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Monster. + GMNotes: '' + GUID: bda9db + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Goat Spawn + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -19.9832973 + posY: 1.37777317 + posZ: -5.713689 + rotX: 359.972534 + rotY: 270.007568 + rotZ: 0.0631763861 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3634 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Monster. + GMNotes: '' + GUID: dbcee1 + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Goat Spawn + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -19.2575989 + posY: 1.23163438 + posZ: -6.416643 + rotX: -0.00381924468 + rotY: 270.0079 + rotZ: -0.00312354276 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3634 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Monster. + GMNotes: '' + GUID: 19459f + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Goat Spawn + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -19.4307671 + posY: 1.52297127 + posZ: -6.648358 + rotX: 359.986542 + rotY: 270.007263 + rotZ: 0.0277339257 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3636 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: da8001 + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dreams of R'lyeh + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -21.0626354 + posY: 1.23170877 + posZ: -1.44687235 + rotX: -0.0005362527 + rotY: 270.0003 + rotZ: -0.0005294237 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3636 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: 8e441a + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dreams of R'lyeh + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -21.0565968 + posY: 1.37954974 + posZ: -1.35146141 + rotX: -0.00136643345 + rotY: 269.999084 + rotZ: -0.004670003 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3635 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Monster. Deep One. + GMNotes: '' + GUID: 67f705 + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Young Deep One + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -20.22409 + posY: 1.23170567 + posZ: 1.936243 + rotX: -0.0007621244 + rotY: 269.999939 + rotZ: -0.0004609758 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3635 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Monster. Deep One. + GMNotes: '' + GUID: bf03e4 + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Young Deep One + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -20.125206 + posY: 1.37721193 + posZ: 2.32091284 + rotX: 359.99292 + rotY: 269.999817 + rotZ: 359.992157 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 3614 +- 3616 +- 3616 +- 3615 +- 3616 +- 3614 +- 3614 +- 3633 +- 3634 +- 3634 +- 3634 +- 3636 +- 3636 +- 3635 +- 3635 +Description: Podniebny Koncert +GMNotes: '' +GUID: ae5212 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Masyw Skalny - Kraina snu +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -11.3343868 + posY: 1.70329475 + posZ: 9.76722 + rotX: 359.9201 + rotY: 269.9853 + rotZ: 180.0169 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Podniebny Koncert 2889f0/Deck Poza gra 96e8c2.yaml new file mode 100644 index 000000000..8a911f9ab --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Podniebny Koncert 2889f0/Deck Poza gra 96e8c2.yaml @@ -0,0 +1,127 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 139 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360090261/C6397916D4D0423C815C3BBA15E0C852A0E73C2D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360091078/C246EBFEC6DB75F25513421B8D8AF1D66ECE15A2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: ff63a0 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 59.278965 + posY: 1.061362 + posZ: 3.06986547 + rotX: 0.0009787612 + rotY: 180.0274 + rotZ: 0.000474321918 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 140 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360090261/C6397916D4D0423C815C3BBA15E0C852A0E73C2D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360091078/C246EBFEC6DB75F25513421B8D8AF1D66ECE15A2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: d98ae7 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 58.89551 + posY: 1.19959533 + posZ: 2.75931764 + rotX: 0.0196805038 + rotY: 179.999756 + rotZ: 359.98114 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360090261/C6397916D4D0423C815C3BBA15E0C852A0E73C2D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360091078/C246EBFEC6DB75F25513421B8D8AF1D66ECE15A2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 139 +- 140 +Description: '' +GMNotes: '' +GUID: 96e8c2 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Poza gra +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 1.696633 + posY: 1.6682111 + posZ: 14.2787266 + rotX: 359.95517 + rotY: 224.999924 + rotZ: 180.068649 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Podniebny Koncert 2889f0/Deck Tajemnica aa067b.yaml new file mode 100644 index 000000000..afb252abe --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Podniebny Koncert 2889f0/Deck Tajemnica aa067b.yaml @@ -0,0 +1,211 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 274527 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360091499/224A31895111D0AA10E11922F5946E20C9C887AB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360091949/B617873190DDFCC3FB6BC0B9643162CA732C5A78/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 433f75 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -6.017264 + posY: 1.03153074 + posZ: -4.416785 + rotX: 0.008147572 + rotY: 180.03038 + rotZ: 0.00124373531 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274526 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360091499/224A31895111D0AA10E11922F5946E20C9C887AB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360091949/B617873190DDFCC3FB6BC0B9643162CA732C5A78/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 9c3284 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -5.580338 + posY: 1.16960025 + posZ: -4.36643648 + rotX: -0.00367334043 + rotY: 180.0709 + rotZ: 0.006382291 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274525 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360091499/224A31895111D0AA10E11922F5946E20C9C887AB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360091949/B617873190DDFCC3FB6BC0B9643162CA732C5A78/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 3109f9 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.991118 + posY: 1.18770635 + posZ: -5.370051 + rotX: 0.001733231 + rotY: 179.998184 + rotZ: 0.00021452205 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274524 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360091499/224A31895111D0AA10E11922F5946E20C9C887AB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360091949/B617873190DDFCC3FB6BC0B9643162CA732C5A78/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: '929336' + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.20206761 + posY: 1.17401123 + posZ: -5.7908206 + rotX: 0.00290433154 + rotY: 179.999069 + rotZ: -2.98954146e-05 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2745': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360091499/224A31895111D0AA10E11922F5946E20C9C887AB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360091949/B617873190DDFCC3FB6BC0B9643162CA732C5A78/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 274527 +- 274526 +- 274525 +- 274524 +Description: Podniebny +GMNotes: '' +GUID: aa067b +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Tajemnica +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.724681 + posY: 1.65513825 + posZ: 0.373311877 + rotX: 359.919739 + rotY: 269.9723 + rotZ: 0.016874427 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Podniebny Koncert 2889f0/Deck Zeppelin 087ed1.yaml new file mode 100644 index 000000000..527cf7f2c --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Podniebny Koncert 2889f0/Deck Zeppelin 087ed1.yaml @@ -0,0 +1,945 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 3628 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Obstacle. + GMNotes: '' + GUID: 9449d7 + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Locked Door + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -21.2385483 + posY: 1.231653 + posZ: 10.5873995 + rotX: -0.00300062378 + rotY: 270.038849 + rotZ: -0.00198885379 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3628 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Obstacle. + GMNotes: '' + GUID: 1340ff + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Locked Door + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -21.3002548 + posY: 1.37891018 + posZ: 10.607831 + rotX: 359.985657 + rotY: 270.026245 + rotZ: 0.0447875448 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3622 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: 03a265 + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Obscuring Fog + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -17.4148483 + posY: 1.23167741 + posZ: 5.99956274 + rotX: -0.000976656 + rotY: 269.9857 + rotZ: 0.005132819 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3622 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: '356046' + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Obscuring Fog + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -17.4060268 + posY: 1.37945676 + posZ: 6.40290833 + rotX: -0.0007180891 + rotY: 270.000427 + rotZ: 0.00573350256 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3621 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: b78c3b + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Crypt Chill + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -20.9259262 + posY: 1.23167884 + posZ: 6.982535 + rotX: -0.00255119917 + rotY: 269.983215 + rotZ: -0.000175039211 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3621 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: fb311c + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Crypt Chill + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -21.2322311 + posY: 1.37918484 + posZ: 7.16166067 + rotX: 359.988861 + rotY: 269.991547 + rotZ: 0.0295213945 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3620 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: 1921c5 + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ancient Evils + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -19.6564026 + posY: 1.23160839 + posZ: 7.971792 + rotX: -0.005002445 + rotY: 269.9994 + rotZ: -0.0014756727 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3620 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: e0f4c0 + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ancient Evils + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -20.9346027 + posY: 1.28129983 + posZ: 7.54924154 + rotX: 0.006723375 + rotY: 269.9994 + rotZ: -0.000132751375 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3620 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: 61e841 + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ancient Evils + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -21.9496078 + posY: 1.33434 + posZ: 7.916971 + rotX: 0.0176143516 + rotY: 269.9864 + rotZ: 359.993561 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3619 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: '260768' + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dissonant Voices + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -19.1363125 + posY: 1.231699 + posZ: -7.400251 + rotX: -0.000820844667 + rotY: 270.0089 + rotZ: -0.000237511369 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3617 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: da8001 + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Rotting Remains + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -19.2726822 + posY: 1.23161709 + posZ: -4.69493532 + rotX: -0.00461160857 + rotY: 269.9793 + rotZ: -0.00137890945 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3619 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: f1a34d + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dissonant Voices + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -19.9809151 + posY: 1.28156877 + posZ: -7.79831076 + rotX: 0.011735606 + rotY: 270.009033 + rotZ: 0.00468536 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3618 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: 27c05d + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Frozen in Fear + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -18.967617 + posY: 1.231716 + posZ: -10.49529 + rotX: -3.11068325e-05 + rotY: 270.0013 + rotZ: -7.22032553e-07 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3617 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: 18e09c + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Rotting Remains + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -20.3450146 + posY: 1.28128624 + posZ: -4.537053 + rotX: 0.006250872 + rotY: 269.979126 + rotZ: -0.00126227119 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3618 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: c40f57 + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Frozen in Fear + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -19.6207886 + posY: 1.28169692 + posZ: -10.6840782 + rotX: -3.134726e-05 + rotY: 270.000763 + rotZ: 3.597804e-06 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3617 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: aa3d47 + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Rotting Remains + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -21.5193939 + posY: 1.337018 + posZ: -4.78068352 + rotX: 0.0181244723 + rotY: 269.978149 + rotZ: 0.00253973226 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3625 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: 6f5b7b + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Mysterious Chanting + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -19.6800156 + posY: 1.38250053 + posZ: -1.33474028 + rotX: 0.0229158234 + rotY: 270.019867 + rotZ: 179.95369 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3625 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: df668b + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Mysterious Chanting + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -19.5443554 + posY: 1.2345134 + posZ: -1.46994078 + rotX: -0.00131354737 + rotY: 270.020233 + rotZ: 180.000565 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3624 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Cultist. + GMNotes: '' + GUID: 159f90 + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Wizard of the Order + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -20.0503387 + posY: 1.23431253 + posZ: -4.35796 + rotX: 359.9875 + rotY: 270.082672 + rotZ: 179.956573 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3623 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Cultist. + GMNotes: '' + GUID: c70e63 + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Acolyte + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -19.79794 + posY: 1.39947391 + posZ: -8.725274 + rotX: 359.928955 + rotY: 270.019775 + rotZ: 180.117462 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3623 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Cultist. + GMNotes: '' + GUID: 4072d7 + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Acolyte + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -19.9280281 + posY: 1.38005173 + posZ: -8.697902 + rotX: 359.993225 + rotY: 270.0205 + rotZ: 180.0073 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3623 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Cultist. + GMNotes: '' + GUID: c70e63 + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Acolyte + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -20.0444756 + posY: 1.23453021 + posZ: -8.332029 + rotX: -0.000678319542 + rotY: 270.020325 + rotZ: 180.000427 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 3628 +- 3628 +- 3622 +- 3622 +- 3621 +- 3621 +- 3620 +- 3620 +- 3620 +- 3619 +- 3617 +- 3619 +- 3618 +- 3617 +- 3618 +- 3617 +- 3625 +- 3625 +- 3624 +- 3623 +- 3623 +- 3623 +Description: Podniebny Koncert +GMNotes: '' +GUID: 087ed1 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Zeppelin +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -11.3345556 + posY: 1.74146736 + posZ: 12.7088594 + rotX: 359.9201 + rotY: 269.9732 + rotZ: 180.016922 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Przeznacznenie w Red Hook 1e00a9.ttslua b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Przeznacznenie w Red Hook 1e00a9.ttslua new file mode 100644 index 000000000..4acf9ea11 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Przeznacznenie w Red Hook 1e00a9.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 791837/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 791837/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Przeznacznenie w Red Hook 1e00a9.yaml new file mode 100644 index 000000000..b927f4d5c --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Przeznacznenie w Red Hook 1e00a9.yaml @@ -0,0 +1,49 @@ +Autoraise: true +ColorDiffuse: + b: 0.0 + g: 0.366520882 + r: 0.7058823 +ContainedObjects: +- !include 'Bag Przeznacznenie w Red Hook 1e00a9/Deck Tajemnica 4dc835.yaml' +- !include 'Bag Przeznacznenie w Red Hook 1e00a9/Deck 79310a.yaml' +- !include 'Bag Przeznacznenie w Red Hook 1e00a9/Card 14b82b.yaml' +- !include "Bag Przeznacznenie w Red Hook 1e00a9/Deck Kamienice imigrant\xF3w be855e.yaml" +- !include 'Bag Przeznacznenie w Red Hook 1e00a9/Deck Opuszczone Magazyny d09055.yaml' +- !include 'Bag Przeznacznenie w Red Hook 1e00a9/Deck Talia Tajemnica c0c8a9.yaml' +- !include 'Bag Przeznacznenie w Red Hook 1e00a9/Card Zasady 90d605.yaml' +- !include 'Bag Przeznacznenie w Red Hook 1e00a9/Card 98bc31.yaml' +- !include 'Bag Przeznacznenie w Red Hook 1e00a9/Custom_Tile 7234af.yaml' +- !include "Bag Przeznacznenie w Red Hook 1e00a9/Deck Kamienice Imigrant\xF3w 06f433.yaml" +- !include 'Bag Przeznacznenie w Red Hook 1e00a9/Custom_Tile 213757.yaml' +- !include 'Bag Przeznacznenie w Red Hook 1e00a9/Deck Opuszczone magazyny a74606.yaml' +- !include 'Bag Przeznacznenie w Red Hook 1e00a9/Deck Rytualne miejsca 76273e.yaml' +- !include 'Bag Przeznacznenie w Red Hook 1e00a9/Card cc8070.yaml' +Description: '' +GMNotes: '' +GUID: 1e00a9 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Bag Przeznacznenie w Red Hook 1e00a9.ttslua' +LuaScriptState: '{"ml":{"06f433":{"lock":false,"pos":{"x":-17.1194,"y":1.6875,"z":7.5696},"rot":{"x":359.9201,"y":269.9794,"z":180.0169}},"14b82b":{"lock":false,"pos":{"x":-3.956,"y":1.6556,"z":-10.4412},"rot":{"x":359.9197,"y":269.9873,"z":0.0169}},"213757":{"lock":false,"pos":{"x":-23.6765,"y":1.6179,"z":11.46},"rot":{"x":0.0169,"y":180,"z":0.08}},"4dc835":{"lock":false,"pos":{"x":-2.7247,"y":1.656,"z":0.3733},"rot":{"x":359.9197,"y":269.9958,"z":0.0168}},"7234af":{"lock":false,"pos":{"x":-19.687,"y":1.6123,"z":11.298},"rot":{"x":359.9316,"y":315.0108,"z":359.9554}},"76273e":{"lock":false,"pos":{"x":-30.2241,"y":1.7108,"z":7.57},"rot":{"x":359.9201,"y":269.9859,"z":180.0169}},"79310a":{"lock":false,"pos":{"x":-2.6885,"y":1.6623,"z":-5.0485},"rot":{"x":359.9197,"y":270.0195,"z":0.0168}},"90d605":{"lock":false,"pos":{"x":-10.9196,"y":1.6683,"z":-0.5513},"rot":{"x":359.9201,"y":269.9999,"z":0.0169}},"98bc31":{"lock":false,"pos":{"x":-23.6766,"y":1.6935,"z":15.19},"rot":{"x":359.9201,"y":269.9854,"z":180.0169}},"a74606":{"lock":false,"pos":{"x":-23.6766,"y":1.6967,"z":7.57},"rot":{"x":359.9201,"y":269.9858,"z":180.0169}},"be855e":{"lock":false,"pos":{"x":-11.0527,"y":1.7192,"z":10.8841},"rot":{"x":359.9201,"y":270.0252,"z":180.0168}},"c0c8a9":{"lock":false,"pos":{"x":-11.3845,"y":1.6833,"z":3.4859},"rot":{"x":359.9201,"y":270.0026,"z":180.0169}},"cc8070":{"lock":false,"pos":{"x":-50.9244,"y":1.7266,"z":8.1784},"rot":{"x":359.9201,"y":269.9873,"z":0.0169}},"d09055":{"lock":false,"pos":{"x":-11.2947,"y":1.7237,"z":6.809},"rot":{"x":359.9201,"y":269.973,"z":180.0169}}}}' +MaterialIndex: -1 +MeshIndex: -1 +Name: Bag +Nickname: Przeznacznenie w Red Hook +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 9.311702 + posY: 1.28496242 + posZ: 4.988301 + rotX: 0.07994254 + rotY: 89.98024 + rotZ: 359.9831 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Przeznacznenie w Red Hook 1e00a9/Card 14b82b.yaml new file mode 100644 index 000000000..7ad97c876 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Przeznacznenie w Red Hook 1e00a9/Card 14b82b.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 153 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360090261/C6397916D4D0423C815C3BBA15E0C852A0E73C2D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360091078/C246EBFEC6DB75F25513421B8D8AF1D66ECE15A2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Przeznacznenie w Red Hook +GMNotes: '' +GUID: 14b82b +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.956 + posY: 1.65564811 + posZ: -10.4412012 + rotX: 359.919739 + rotY: 269.987274 + rotZ: 0.01685153 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Przeznacznenie w Red Hook 1e00a9/Card 98bc31.yaml new file mode 100644 index 000000000..7187cc36d --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Przeznacznenie w Red Hook 1e00a9/Card 98bc31.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 154 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360090261/C6397916D4D0423C815C3BBA15E0C852A0E73C2D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360091078/C246EBFEC6DB75F25513421B8D8AF1D66ECE15A2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 98bc31 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -23.6766 + posY: 1.693525 + posZ: 15.1900015 + rotX: 359.9201 + rotY: 269.985382 + rotZ: 180.016891 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Przeznacznenie w Red Hook 1e00a9/Card cc8070.yaml new file mode 100644 index 000000000..a6eb03453 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Przeznacznenie w Red Hook 1e00a9/Card cc8070.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 153 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360090261/C6397916D4D0423C815C3BBA15E0C852A0E73C2D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360091078/C246EBFEC6DB75F25513421B8D8AF1D66ECE15A2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Przeznacznenie w Red Hook +GMNotes: '' +GUID: cc8070 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -50.9244 + posY: 1.72662532 + posZ: 8.1784 + rotX: 359.920135 + rotY: 269.987274 + rotZ: 0.0168864168 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Przeznacznenie w Red Hook 1e00a9/Card Zasady 90d605.yaml new file mode 100644 index 000000000..041dd4c8b --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Przeznacznenie w Red Hook 1e00a9/Card Zasady 90d605.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 152 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360090261/C6397916D4D0423C815C3BBA15E0C852A0E73C2D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360091078/C246EBFEC6DB75F25513421B8D8AF1D66ECE15A2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Przeznacznenie w Red Hook +GMNotes: '' +GUID: 90d605 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Zasady +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -10.9195986 + posY: 1.6682781 + posZ: -0.5512995 + rotX: 359.9201 + rotY: 270.026154 + rotZ: 0.0168340225 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Przeznacznenie w Red Hook 1e00a9/Custom_Tile 213757.yaml new file mode 100644 index 000000000..71b7a7363 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Przeznacznenie w Red Hook 1e00a9/Custom_Tile 213757.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: '213757' +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.6765 + posY: 1.61789012 + posZ: 11.4600029 + rotX: 0.0168709941 + rotY: 180.0 + rotZ: 0.07997879 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Przeznacznenie w Red Hook 1e00a9/Custom_Tile 7234af.yaml new file mode 100644 index 000000000..930496781 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Przeznacznenie w Red Hook 1e00a9/Custom_Tile 7234af.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 7234af +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: -19.687 + posY: 1.61227953 + posZ: 11.298 + rotX: 359.93158 + rotY: 315.0108 + rotZ: 359.955444 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Przeznacznenie w Red Hook 1e00a9/Deck 79310a.yaml new file mode 100644 index 000000000..ad9ce8375 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Przeznacznenie w Red Hook 1e00a9/Deck 79310a.yaml @@ -0,0 +1,129 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 265329 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2653': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360091499/224A31895111D0AA10E11922F5946E20C9C887AB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360091949/B617873190DDFCC3FB6BC0B9643162CA732C5A78/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 055fc4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 14.5685959 + posY: 1.5354836 + posZ: 8.63928 + rotX: 359.9158 + rotY: 270.0195 + rotZ: 0.0154405078 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265328 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2653': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360091499/224A31895111D0AA10E11922F5946E20C9C887AB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360091949/B617873190DDFCC3FB6BC0B9643162CA732C5A78/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 433f75 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 14.539257 + posY: 1.67628193 + posZ: 8.357664 + rotX: 359.9103 + rotY: 270.0161 + rotZ: 0.0152802086 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2653': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360091499/224A31895111D0AA10E11922F5946E20C9C887AB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360091949/B617873190DDFCC3FB6BC0B9643162CA732C5A78/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 265329 +- 265328 +Description: '' +GMNotes: '' +GUID: 79310a +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.6885 + posY: 1.66233349 + posZ: -5.0485 + rotX: 359.919739 + rotY: 270.01947 + rotZ: 0.01680825 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Przeznacznenie w Red Hook 1e00a9/Deck Kamienice Imigrantów 06f433.yaml new file mode 100644 index 000000000..7c1398590 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Przeznacznenie w Red Hook 1e00a9/Deck Kamienice Imigrantów 06f433.yaml @@ -0,0 +1,258 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 159 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360090261/C6397916D4D0423C815C3BBA15E0C852A0E73C2D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360091078/C246EBFEC6DB75F25513421B8D8AF1D66ECE15A2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 8bf9b3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -17.1199284 + posY: 1.81823647 + posZ: 7.56996346 + rotX: 359.91864 + rotY: 269.985962 + rotZ: 180.017639 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 158 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360090261/C6397916D4D0423C815C3BBA15E0C852A0E73C2D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360091078/C246EBFEC6DB75F25513421B8D8AF1D66ECE15A2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 62a5aa + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -17.1199284 + posY: 1.82022834 + posZ: 7.56996346 + rotX: 359.9185 + rotY: 269.985962 + rotZ: 180.017685 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 157 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360090261/C6397916D4D0423C815C3BBA15E0C852A0E73C2D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360091078/C246EBFEC6DB75F25513421B8D8AF1D66ECE15A2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: '076226' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -17.1199265 + posY: 1.83384478 + posZ: 7.56996346 + rotX: 359.918427 + rotY: 269.986 + rotZ: 180.017715 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 156 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360090261/C6397916D4D0423C815C3BBA15E0C852A0E73C2D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360091078/C246EBFEC6DB75F25513421B8D8AF1D66ECE15A2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 9bf333 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -17.11999 + posY: 1.83220768 + posZ: 7.56997728 + rotX: 359.9133 + rotY: 269.986023 + rotZ: 180.0202 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 155 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360090261/C6397916D4D0423C815C3BBA15E0C852A0E73C2D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360091078/C246EBFEC6DB75F25513421B8D8AF1D66ECE15A2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: df037a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -17.120039 + posY: 1.68212938 + posZ: 7.57 + rotX: 359.919434 + rotY: 269.98584 + rotZ: 180.017227 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360090261/C6397916D4D0423C815C3BBA15E0C852A0E73C2D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360091078/C246EBFEC6DB75F25513421B8D8AF1D66ECE15A2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 159 +- 158 +- 157 +- 156 +- 155 +Description: '' +GMNotes: '' +GUID: 06f433 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: "Kamienice Imigrant\xF3w" +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -17.1194 + posY: 1.68751979 + posZ: 7.56959963 + rotX: 359.9201 + rotY: 269.979431 + rotZ: 180.0169 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Przeznacznenie w Red Hook 1e00a9/Deck Kamienice imigrantów be855e.yaml new file mode 100644 index 000000000..e79431261 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Przeznacznenie w Red Hook 1e00a9/Deck Kamienice imigrantów be855e.yaml @@ -0,0 +1,801 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 3619 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: '260768' + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dissonant Voices + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 50.4887924 + posY: 1.21210432 + posZ: 25.1689262 + rotX: -8.930022e-05 + rotY: 270.0 + rotZ: 180.001877 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3617 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: da8001 + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Rotting Remains + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -19.2726822 + posY: 1.23161709 + posZ: -4.69493532 + rotX: -0.00461160857 + rotY: 269.9793 + rotZ: -0.00137890945 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3619 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: f1a34d + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dissonant Voices + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -19.9809151 + posY: 1.28156877 + posZ: -7.79831076 + rotX: 0.011735606 + rotY: 270.009033 + rotZ: 0.00468536 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3618 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: 27c05d + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Frozen in Fear + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -18.967617 + posY: 1.231716 + posZ: -10.49529 + rotX: -3.11068325e-05 + rotY: 270.0013 + rotZ: -7.22032553e-07 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3617 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: 18e09c + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Rotting Remains + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -20.3450146 + posY: 1.28128624 + posZ: -4.537053 + rotX: 0.006250872 + rotY: 269.979126 + rotZ: -0.00126227119 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3618 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: c40f57 + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Frozen in Fear + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -19.6207886 + posY: 1.28169692 + posZ: -10.6840782 + rotX: -3.134726e-05 + rotY: 270.000763 + rotZ: 3.597804e-06 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3617 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: aa3d47 + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Rotting Remains + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -21.5193939 + posY: 1.337018 + posZ: -4.78068352 + rotX: 0.0181244723 + rotY: 269.978149 + rotZ: 0.00253973226 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3613 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Creature. + GMNotes: '' + GUID: 56e5db + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Swarm of Rats + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -19.7119656 + posY: 1.28121269 + posZ: 15.0893879 + rotX: 0.004087732 + rotY: 269.994171 + rotZ: -0.0020856997 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3613 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Creature. + GMNotes: '' + GUID: 7381cd + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Swarm of Rats + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -19.6142921 + posY: 1.42705274 + posZ: 15.2051964 + rotX: 0.012312145 + rotY: 269.997284 + rotZ: 0.0359485969 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3613 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Creature. + GMNotes: '' + GUID: bbc9d1 + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Swarm of Rats + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -18.9998322 + posY: 1.23161483 + posZ: 14.9262657 + rotX: -0.00489453 + rotY: 270.002747 + rotZ: -0.00167015032 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274146 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2741': + BackIsHidden: true + BackURL: https://i.imgur.com/h4om3TQ.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87098596225478692/B2438BEE2CDD4D172BAFA5DFDD15C0F29B079D4F/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Humanoid. Sorcerer. + GMNotes: '' + GUID: f11672 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Wizard of Yog-Sothoth + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 43.45019 + posY: 2.322255 + posZ: -19.3840656 + rotX: 359.920135 + rotY: 269.999268 + rotZ: 0.0168704856 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274144 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2741': + BackIsHidden: true + BackURL: https://i.imgur.com/h4om3TQ.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87098596225478692/B2438BEE2CDD4D172BAFA5DFDD15C0F29B079D4F/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Pact. Power. + GMNotes: '' + GUID: 3eb066 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Light of Aforgomon + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 43.59127 + posY: 2.32368279 + posZ: -16.3650532 + rotX: 359.920135 + rotY: 269.99942 + rotZ: 0.01687267 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274144 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2741': + BackIsHidden: true + BackURL: https://i.imgur.com/h4om3TQ.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87098596225478692/B2438BEE2CDD4D172BAFA5DFDD15C0F29B079D4F/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Pact. Power. + GMNotes: '' + GUID: b69d70 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Light of Aforgomon + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 43.2988 + posY: 2.32337284 + posZ: -18.8025169 + rotX: 359.920135 + rotY: 269.975922 + rotZ: 0.0168978628 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274145 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2741': + BackIsHidden: true + BackURL: https://i.imgur.com/h4om3TQ.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87098596225478692/B2438BEE2CDD4D172BAFA5DFDD15C0F29B079D4F/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Humanoid. Monster. Abomination. + GMNotes: '' + GUID: 9af300 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Thrall + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 39.4109764 + posY: 2.77050161 + posZ: -14.2098293 + rotX: 359.920135 + rotY: 270.0007 + rotZ: 0.0168672074 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274145 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2741': + BackIsHidden: true + BackURL: https://i.imgur.com/h4om3TQ.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87098596225478692/B2438BEE2CDD4D172BAFA5DFDD15C0F29B079D4F/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Humanoid. Monster. Abomination. + GMNotes: '' + GUID: '820152' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Thrall + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 39.16987 + posY: 2.77163815 + posZ: -11.4916735 + rotX: 359.920135 + rotY: 269.999176 + rotZ: 0.0168743581 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274145 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2741': + BackIsHidden: true + BackURL: https://i.imgur.com/h4om3TQ.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87098596225478692/B2438BEE2CDD4D172BAFA5DFDD15C0F29B079D4F/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Humanoid. Monster. Abomination. + GMNotes: '' + GUID: e63f5a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Thrall + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 43.3272324 + posY: 2.76601982 + posZ: -10.8891 + rotX: 359.920135 + rotY: 269.999481 + rotZ: 0.0168694779 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3628 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Obstacle. + GMNotes: '' + GUID: 9449d7 + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Locked Door + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -21.2385483 + posY: 1.231653 + posZ: 10.5873995 + rotX: -0.00300062378 + rotY: 270.038849 + rotZ: -0.00198885379 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3628 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Obstacle. + GMNotes: '' + GUID: 1340ff + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Locked Door + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -21.3002548 + posY: 1.37891018 + posZ: 10.607831 + rotX: 359.985657 + rotY: 270.026245 + rotZ: 0.0447875448 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2741': + BackIsHidden: true + BackURL: https://i.imgur.com/h4om3TQ.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87098596225478692/B2438BEE2CDD4D172BAFA5DFDD15C0F29B079D4F/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 3619 +- 3617 +- 3619 +- 3618 +- 3617 +- 3618 +- 3617 +- 3613 +- 3613 +- 3613 +- 274146 +- 274144 +- 274144 +- 274145 +- 274145 +- 274145 +- 3628 +- 3628 +Description: Przeznaczenie w red Hook +GMNotes: '' +GUID: be855e +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: "Kamienice imigrant\xF3w" +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -11.0527 + posY: 1.71921933 + posZ: 10.8841019 + rotX: 359.9201 + rotY: 270.025238 + rotZ: 180.016846 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Przeznacznenie w Red Hook 1e00a9/Deck Opuszczone Magazyny d09055.yaml new file mode 100644 index 000000000..a8e5fdc69 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Przeznacznenie w Red Hook 1e00a9/Deck Opuszczone Magazyny d09055.yaml @@ -0,0 +1,849 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 304 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/254843371583115523/E82497980946ECE8E95AADC7220B140E4C0066A8/ + NumHeight: 3 + NumWidth: 5 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 539c59 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 50.693306 + posY: 1.11023927 + posZ: 22.8004551 + rotX: 359.980316 + rotY: 180.039627 + rotZ: 359.912628 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 305 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/254843371583115523/E82497980946ECE8E95AADC7220B140E4C0066A8/ + NumHeight: 3 + NumWidth: 5 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: aaf18e + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 50.55738 + posY: 1.06124616 + posZ: 23.49205 + rotX: 0.00578218838 + rotY: 179.969666 + rotZ: 0.006024383 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 304 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/254843371583115523/E82497980946ECE8E95AADC7220B140E4C0066A8/ + NumHeight: 3 + NumWidth: 5 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: dd7179 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 50.9489326 + posY: 1.48096538 + posZ: 23.5114975 + rotX: 359.9473 + rotY: 180.050461 + rotZ: 348.066071 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 304 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/254843371583115523/E82497980946ECE8E95AADC7220B140E4C0066A8/ + NumHeight: 3 + NumWidth: 5 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 9db000 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 50.0305138 + posY: 1.41190374 + posZ: 23.7886887 + rotX: 359.966339 + rotY: 180.093857 + rotZ: 347.890472 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 305 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/254843371583115523/E82497980946ECE8E95AADC7220B140E4C0066A8/ + NumHeight: 3 + NumWidth: 5 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 11351e + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 48.7655754 + posY: 1.28990281 + posZ: 23.45367 + rotX: 0.00107041874 + rotY: 180.1919 + rotZ: 347.861969 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3631 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Yithian. + GMNotes: '' + GUID: 3c1a8d + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Yithian Observer + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -21.1762352 + posY: 1.23172307 + posZ: -7.44283152 + rotX: -0.00222954247 + rotY: 270.007355 + rotZ: 359.993225 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3631 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Yithian. + GMNotes: '' + GUID: 7ed452 + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Yithian Observer + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -21.3348427 + posY: 1.37957644 + posZ: -7.73810339 + rotX: 0.03715024 + rotY: 270.0217 + rotZ: 0.06678678 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3632 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Pact. + GMNotes: '' + GUID: 153bb1 + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Offer of Power + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -20.47173 + posY: 1.23165572 + posZ: -6.579107 + rotX: -0.0019128432 + rotY: 269.991058 + rotZ: 0.00126636925 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3632 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Pact. + GMNotes: '' + GUID: 7c5c91 + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Offer of Power + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -20.5700569 + posY: 1.47729576 + posZ: -6.416937 + rotX: 0.007625266 + rotY: 269.9922 + rotZ: 354.008667 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3625 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: 6f5b7b + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Mysterious Chanting + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -19.6800156 + posY: 1.38250053 + posZ: -1.33474028 + rotX: 0.0229158234 + rotY: 270.019867 + rotZ: 179.95369 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3625 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: df668b + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Mysterious Chanting + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -19.5443554 + posY: 1.2345134 + posZ: -1.46994078 + rotX: -0.00131354737 + rotY: 270.020233 + rotZ: 180.000565 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3624 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Cultist. + GMNotes: '' + GUID: 159f90 + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Wizard of the Order + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -20.0503387 + posY: 1.23431253 + posZ: -4.35796 + rotX: 359.9875 + rotY: 270.082672 + rotZ: 179.956573 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3623 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Cultist. + GMNotes: '' + GUID: c70e63 + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Acolyte + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -19.79794 + posY: 1.39947391 + posZ: -8.725274 + rotX: 359.928955 + rotY: 270.019775 + rotZ: 180.117462 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3623 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Cultist. + GMNotes: '' + GUID: 4072d7 + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Acolyte + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -19.9280281 + posY: 1.38005173 + posZ: -8.697902 + rotX: 359.993225 + rotY: 270.0205 + rotZ: 180.0073 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3623 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Cultist. + GMNotes: '' + GUID: c70e63 + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Acolyte + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -20.0444756 + posY: 1.23453021 + posZ: -8.332029 + rotX: -0.000678319542 + rotY: 270.020325 + rotZ: 180.000427 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 273948 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2739': + BackIsHidden: true + BackURL: https://i.imgur.com/h4om3TQ.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87098596225478692/B2438BEE2CDD4D172BAFA5DFDD15C0F29B079D4F/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Terror. + GMNotes: '' + GUID: b42d66 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Sordid and Silent + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 45.0903931 + posY: 2.467648 + posZ: -13.3675709 + rotX: 359.920135 + rotY: 270.0004 + rotZ: 0.0168688428 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 273948 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2739': + BackIsHidden: true + BackURL: https://i.imgur.com/h4om3TQ.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87098596225478692/B2438BEE2CDD4D172BAFA5DFDD15C0F29B079D4F/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Terror. + GMNotes: '' + GUID: 1871a3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Sordid and Silent + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 45.6624 + posY: 2.470326 + posZ: -10.40556 + rotX: 359.920135 + rotY: 270.000122 + rotZ: 0.01686741 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 273947 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2739': + BackIsHidden: true + BackURL: https://i.imgur.com/h4om3TQ.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87098596225478692/B2438BEE2CDD4D172BAFA5DFDD15C0F29B079D4F/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Terror. + GMNotes: '' + GUID: f29a3e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Unhallowed Country + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 45.02552 + posY: 2.467445 + posZ: -13.2495451 + rotX: 359.920135 + rotY: 270.003479 + rotZ: 0.0168664977 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 273947 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2739': + BackIsHidden: true + BackURL: https://i.imgur.com/h4om3TQ.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87098596225478692/B2438BEE2CDD4D172BAFA5DFDD15C0F29B079D4F/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Terror. + GMNotes: '' + GUID: e3de5e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Unhallowed Country + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 45.3741531 + posY: 2.46781445 + posZ: -14.0721273 + rotX: 359.920135 + rotY: 269.999756 + rotZ: 0.0168687534 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2739': + BackIsHidden: true + BackURL: https://i.imgur.com/h4om3TQ.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87098596225478692/B2438BEE2CDD4D172BAFA5DFDD15C0F29B079D4F/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + '3': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/254843371583115523/E82497980946ECE8E95AADC7220B140E4C0066A8/ + NumHeight: 3 + NumWidth: 5 + UniqueBack: false + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 304 +- 305 +- 304 +- 304 +- 305 +- 3631 +- 3631 +- 3632 +- 3632 +- 3625 +- 3625 +- 3624 +- 3623 +- 3623 +- 3623 +- 273948 +- 273948 +- 273947 +- 273947 +Description: Przeznaczenie w Red Hook +GMNotes: '' +GUID: d09055 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Opuszczone Magazyny +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -11.2947006 + posY: 1.72368622 + posZ: 6.80900049 + rotX: 359.9201 + rotY: 269.973022 + rotZ: 180.016922 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Przeznacznenie w Red Hook 1e00a9/Deck Opuszczone magazyny a74606.yaml new file mode 100644 index 000000000..db32888bc --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Przeznacznenie w Red Hook 1e00a9/Deck Opuszczone magazyny a74606.yaml @@ -0,0 +1,258 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 164 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360090261/C6397916D4D0423C815C3BBA15E0C852A0E73C2D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360091078/C246EBFEC6DB75F25513421B8D8AF1D66ECE15A2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: c7d031 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -23.6765366 + posY: 1.84299719 + posZ: 7.569983 + rotX: 359.91922 + rotY: 269.9858 + rotZ: 180.017258 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 163 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360090261/C6397916D4D0423C815C3BBA15E0C852A0E73C2D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360091078/C246EBFEC6DB75F25513421B8D8AF1D66ECE15A2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: f787c7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -23.6765366 + posY: 1.845034 + posZ: 7.569983 + rotX: 359.9192 + rotY: 269.985779 + rotZ: 180.017288 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 162 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360090261/C6397916D4D0423C815C3BBA15E0C852A0E73C2D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360091078/C246EBFEC6DB75F25513421B8D8AF1D66ECE15A2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 83f19f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -23.6765366 + posY: 1.85875726 + posZ: 7.56998348 + rotX: 359.919159 + rotY: 269.98584 + rotZ: 180.0173 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 161 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360090261/C6397916D4D0423C815C3BBA15E0C852A0E73C2D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360091078/C246EBFEC6DB75F25513421B8D8AF1D66ECE15A2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 40436b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -23.6764183 + posY: 1.825664 + posZ: 7.56995773 + rotX: 359.9067 + rotY: 269.985962 + rotZ: 180.023514 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 160 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360090261/C6397916D4D0423C815C3BBA15E0C852A0E73C2D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360091078/C246EBFEC6DB75F25513421B8D8AF1D66ECE15A2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: fa98fa + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -23.6765614 + posY: 1.69126153 + posZ: 7.569999 + rotX: 359.9188 + rotY: 269.985779 + rotZ: 180.0176 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360090261/C6397916D4D0423C815C3BBA15E0C852A0E73C2D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360091078/C246EBFEC6DB75F25513421B8D8AF1D66ECE15A2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 164 +- 163 +- 162 +- 161 +- 160 +Description: '' +GMNotes: '' +GUID: a74606 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Opuszczone magazyny +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -23.6766014 + posY: 1.6966635 + posZ: 7.569999 + rotX: 359.9201 + rotY: 269.985779 + rotZ: 180.016891 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Przeznacznenie w Red Hook 1e00a9/Deck Rytualne miejsca 76273e.yaml new file mode 100644 index 000000000..26267b60e --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Przeznacznenie w Red Hook 1e00a9/Deck Rytualne miejsca 76273e.yaml @@ -0,0 +1,129 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 166 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360090261/C6397916D4D0423C815C3BBA15E0C852A0E73C2D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360091078/C246EBFEC6DB75F25513421B8D8AF1D66ECE15A2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: e343cf + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -30.2512226 + posY: 1.84919107 + posZ: 7.82079363 + rotX: 359.8761 + rotY: 269.985138 + rotZ: 180.153915 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 165 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360090261/C6397916D4D0423C815C3BBA15E0C852A0E73C2D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360091078/C246EBFEC6DB75F25513421B8D8AF1D66ECE15A2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 609bf8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -30.2241554 + posY: 1.70030689 + posZ: 7.569994 + rotX: 359.914368 + rotY: 269.9859 + rotZ: 180.019287 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360090261/C6397916D4D0423C815C3BBA15E0C852A0E73C2D/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360091078/C246EBFEC6DB75F25513421B8D8AF1D66ECE15A2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 166 +- 165 +Description: '' +GMNotes: '' +GUID: 76273e +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Rytualne miejsca +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -30.2241 + posY: 1.7108053 + posZ: 7.570001 + rotX: 359.9201 + rotY: 269.9859 + rotZ: 180.016891 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Przeznacznenie w Red Hook 1e00a9/Deck Tajemnica 4dc835.yaml new file mode 100644 index 000000000..276555219 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Przeznacznenie w Red Hook 1e00a9/Deck Tajemnica 4dc835.yaml @@ -0,0 +1,254 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 274034 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360091499/224A31895111D0AA10E11922F5946E20C9C887AB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360091949/B617873190DDFCC3FB6BC0B9643162CA732C5A78/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 433f75 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -6.06214857 + posY: 1.03154945 + posZ: -5.086851 + rotX: 0.007325311 + rotY: 179.999557 + rotZ: 0.001173602 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274033 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360091499/224A31895111D0AA10E11922F5946E20C9C887AB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360091949/B617873190DDFCC3FB6BC0B9643162CA732C5A78/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: ba0de0 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -6.048892 + posY: 1.16976845 + posZ: -4.929249 + rotX: -0.00368906464 + rotY: 179.999451 + rotZ: 0.000816222746 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274032 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360091499/224A31895111D0AA10E11922F5946E20C9C887AB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360091949/B617873190DDFCC3FB6BC0B9643162CA732C5A78/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 433f75 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -6.20431757 + posY: 1.18775713 + posZ: -4.880301 + rotX: 0.00824654847 + rotY: 180.013962 + rotZ: -0.00158414408 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274031 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360091499/224A31895111D0AA10E11922F5946E20C9C887AB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360091949/B617873190DDFCC3FB6BC0B9643162CA732C5A78/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 433f75 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -6.284954 + posY: 1.17394555 + posZ: -4.93006325 + rotX: -0.00073315145 + rotY: 179.999847 + rotZ: 0.0005735947 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274030 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2740': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360091499/224A31895111D0AA10E11922F5946E20C9C887AB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360091949/B617873190DDFCC3FB6BC0B9643162CA732C5A78/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 433f75 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 14.6440706 + posY: 1.67951369 + posZ: 3.41293073 + rotX: 359.93222 + rotY: 269.999268 + rotZ: 0.01419971 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2740': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360091499/224A31895111D0AA10E11922F5946E20C9C887AB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360091949/B617873190DDFCC3FB6BC0B9643162CA732C5A78/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 274034 +- 274033 +- 274032 +- 274031 +- 274030 +Description: Przeznacznenie w Red Hook +GMNotes: '' +GUID: 4dc835 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Tajemnica +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.72469974 + posY: 1.6559689 + posZ: 0.373300821 + rotX: 359.919739 + rotY: 269.99585 + rotZ: 0.0168417078 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Przeznacznenie w Red Hook 1e00a9/Deck Talia Tajemnica c0c8a9.yaml new file mode 100644 index 000000000..104c7f91c --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Przeznacznenie w Red Hook 1e00a9/Deck Talia Tajemnica c0c8a9.yaml @@ -0,0 +1,129 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 274257 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2679': + BackIsHidden: true + BackURL: https://i.imgur.com/h4om3TQ.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87098596225478692/B2438BEE2CDD4D172BAFA5DFDD15C0F29B079D4F/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Human. Criminal. Syndicate. + GMNotes: '' + GUID: 8dfc4b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Mobster + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 53.0290451 + posY: 3.17452049 + posZ: -27.84135 + rotX: 359.920135 + rotY: 269.9994 + rotZ: 0.0168695431 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274256 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2679': + BackIsHidden: true + BackURL: https://i.imgur.com/h4om3TQ.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87098596225478692/B2438BEE2CDD4D172BAFA5DFDD15C0F29B079D4F/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Human. Criminal. Syndicate. + GMNotes: '' + GUID: 4d79ef + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: O' Bannion's Thug + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 53.30836 + posY: 3.17459631 + posZ: -26.2782269 + rotX: 359.920135 + rotY: 269.999817 + rotZ: 0.0168666765 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2742': + BackIsHidden: true + BackURL: https://i.imgur.com/h4om3TQ.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87098596225478692/B2438BEE2CDD4D172BAFA5DFDD15C0F29B079D4F/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 274257 +- 274256 +Description: Przeznaczenie w red Hook +GMNotes: '' +GUID: c0c8a9 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Talia Tajemnica +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -11.3844986 + posY: 1.683332 + posZ: 3.48589969 + rotX: 359.9201 + rotY: 270.002563 + rotZ: 180.016861 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Trudność 68ca42.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Trudność 68ca42.yaml new file mode 100644 index 000000000..cc841f94c --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Trudność 68ca42.yaml @@ -0,0 +1,39 @@ +Autoraise: true +ColorDiffuse: + b: 0.977351844 + g: 0.996780932 + r: 1.0 +ContainedObjects: +- !include "Bag Trudno\u015B\u0107 68ca42/Deck Expert 0302a7.yaml" +- !include "Bag Trudno\u015B\u0107 68ca42/Deck Trudny 6670d5.yaml" +- !include "Bag Trudno\u015B\u0107 68ca42/Deck Standardowy 6d7fd2.yaml" +- !include "Bag Trudno\u015B\u0107 68ca42/Deck \u0141atwy db8ece.yaml" +Description: Kiedy sny... +GMNotes: '' +GUID: 68ca42 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +MeshIndex: -1 +Name: Bag +Nickname: "Trudno\u015B\u0107" +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.3874 + posY: 1.39687347 + posZ: -14.6273012 + rotX: 359.983154 + rotY: -0.000823301845 + rotZ: 359.919647 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Trudność 68ca42/Deck Expert 0302a7.yaml new file mode 100644 index 000000000..c4b6e6cf2 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Trudność 68ca42/Deck Expert 0302a7.yaml @@ -0,0 +1,841 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 107515 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1075': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360092300/AD82C8EE69E1B73358B95127D3CCBB7914D48557/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360092692/05CF417D363B29A7B23976E51D27D0F80465FF15/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: b504c2 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 49.6790543 + posY: 1.061376 + posZ: 14.8456678 + rotX: -0.0009827534 + rotY: 179.993149 + rotZ: 0.0026258484 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 107516 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1075': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360092300/AD82C8EE69E1B73358B95127D3CCBB7914D48557/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360092692/05CF417D363B29A7B23976E51D27D0F80465FF15/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: e7db04 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 49.553894 + posY: 1.2000798 + posZ: 14.87192 + rotX: 359.99408 + rotY: 179.994812 + rotZ: 0.005491784 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 107516 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1075': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360092300/AD82C8EE69E1B73358B95127D3CCBB7914D48557/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360092692/05CF417D363B29A7B23976E51D27D0F80465FF15/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: b5268f + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 49.987175 + posY: 1.21737969 + posZ: 15.17364 + rotX: -0.00292605488 + rotY: 179.990982 + rotZ: 0.004474544 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 107501 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1075': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360092300/AD82C8EE69E1B73358B95127D3CCBB7914D48557/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360092692/05CF417D363B29A7B23976E51D27D0F80465FF15/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: f923d0 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 49.6796379 + posY: 1.20369458 + posZ: 15.4020834 + rotX: -0.00147621869 + rotY: 179.9907 + rotZ: 0.002523117 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 107501 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1075': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360092300/AD82C8EE69E1B73358B95127D3CCBB7914D48557/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360092692/05CF417D363B29A7B23976E51D27D0F80465FF15/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 5dd31b + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 49.630497 + posY: 1.20172858 + posZ: 15.014986 + rotX: 0.00101414113 + rotY: 179.985428 + rotZ: -0.003547079 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 107502 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1075': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360092300/AD82C8EE69E1B73358B95127D3CCBB7914D48557/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360092692/05CF417D363B29A7B23976E51D27D0F80465FF15/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: e5bb53 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 49.9439735 + posY: 1.20432866 + posZ: 15.6284437 + rotX: -0.00119981379 + rotY: 179.98912 + rotZ: 0.00410659472 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 107502 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1075': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360092300/AD82C8EE69E1B73358B95127D3CCBB7914D48557/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360092692/05CF417D363B29A7B23976E51D27D0F80465FF15/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 91d936 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 49.8524971 + posY: 1.20937645 + posZ: 14.9422064 + rotX: 3.00233969e-05 + rotY: 179.99054 + rotZ: 0.00194954127 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 107503 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1075': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360092300/AD82C8EE69E1B73358B95127D3CCBB7914D48557/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360092692/05CF417D363B29A7B23976E51D27D0F80465FF15/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: d7c145 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 49.8047752 + posY: 1.21570659 + posZ: 14.7831259 + rotX: -0.0008396807 + rotY: 179.9904 + rotZ: 0.0015255959 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 107503 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1075': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360092300/AD82C8EE69E1B73358B95127D3CCBB7914D48557/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360092692/05CF417D363B29A7B23976E51D27D0F80465FF15/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: a4937d + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 49.928978 + posY: 1.17318022 + posZ: 14.4362564 + rotX: 0.000543664559 + rotY: 179.989517 + rotZ: -7.017132e-05 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 107504 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1075': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360092300/AD82C8EE69E1B73358B95127D3CCBB7914D48557/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360092692/05CF417D363B29A7B23976E51D27D0F80465FF15/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 6502a7 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 49.4743576 + posY: 1.18283188 + posZ: 14.6064854 + rotX: -0.00416182028 + rotY: 180.010834 + rotZ: 359.962982 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 107505 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1075': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360092300/AD82C8EE69E1B73358B95127D3CCBB7914D48557/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360092692/05CF417D363B29A7B23976E51D27D0F80465FF15/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 6922f1 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 50.2201157 + posY: 1.19270229 + posZ: 14.75424 + rotX: 0.00380375679 + rotY: 179.9756 + rotZ: -0.0014493739 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 107507 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1075': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360092300/AD82C8EE69E1B73358B95127D3CCBB7914D48557/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360092692/05CF417D363B29A7B23976E51D27D0F80465FF15/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 42a903 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 49.7945747 + posY: 1.20214319 + posZ: 14.9607954 + rotX: -0.000622052466 + rotY: 179.999908 + rotZ: 0.000582891633 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 107509 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1075': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360092300/AD82C8EE69E1B73358B95127D3CCBB7914D48557/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360092692/05CF417D363B29A7B23976E51D27D0F80465FF15/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 252b35 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 50.00391 + posY: 1.21179342 + posZ: 14.9353571 + rotX: 0.00111384131 + rotY: 179.9841 + rotZ: -0.0006783937 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 107509 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1075': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360092300/AD82C8EE69E1B73358B95127D3CCBB7914D48557/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360092692/05CF417D363B29A7B23976E51D27D0F80465FF15/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 2e2271 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 49.9406662 + posY: 1.22145641 + posZ: 14.9858284 + rotX: 0.000402636 + rotY: 179.989517 + rotZ: 0.00231577433 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 107510 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1075': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360092300/AD82C8EE69E1B73358B95127D3CCBB7914D48557/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360092692/05CF417D363B29A7B23976E51D27D0F80465FF15/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: c95070 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 49.9891853 + posY: 1.23110759 + posZ: 14.8946867 + rotX: -0.000320776133 + rotY: 179.991241 + rotZ: 0.00359559944 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 107512 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1075': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360092300/AD82C8EE69E1B73358B95127D3CCBB7914D48557/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360092692/05CF417D363B29A7B23976E51D27D0F80465FF15/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: bf6912 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 49.3539162 + posY: 1.240787 + posZ: 14.7571669 + rotX: -0.000553287566 + rotY: 179.989456 + rotZ: -0.0008688833 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 107513 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1075': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360092300/AD82C8EE69E1B73358B95127D3CCBB7914D48557/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360092692/05CF417D363B29A7B23976E51D27D0F80465FF15/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 0a074c + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 49.3066826 + posY: 1.25044763 + posZ: 15.0008516 + rotX: 0.000202440264 + rotY: 179.989563 + rotZ: -0.00146543118 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 107511 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1075': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360092300/AD82C8EE69E1B73358B95127D3CCBB7914D48557/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360092692/05CF417D363B29A7B23976E51D27D0F80465FF15/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 088eff + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 48.9140244 + posY: 1.25987315 + posZ: 15.32683 + rotX: -0.0054797167 + rotY: 179.990036 + rotZ: 359.975281 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 107500 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1075': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360092300/AD82C8EE69E1B73358B95127D3CCBB7914D48557/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360092692/05CF417D363B29A7B23976E51D27D0F80465FF15/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 47ab0e + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 50.2393341 + posY: 1.269782 + posZ: 14.92285 + rotX: 0.000481847732 + rotY: 180.001175 + rotZ: 0.003990205 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '1075': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360092300/AD82C8EE69E1B73358B95127D3CCBB7914D48557/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360092692/05CF417D363B29A7B23976E51D27D0F80465FF15/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 107515 +- 107516 +- 107516 +- 107501 +- 107501 +- 107502 +- 107502 +- 107503 +- 107503 +- 107504 +- 107505 +- 107507 +- 107509 +- 107509 +- 107510 +- 107512 +- 107513 +- 107511 +- 107500 +Description: Kiedy Sny... +GMNotes: '' +GUID: 0302a7 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Expert +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 21.63515 + posY: 3.59609246 + posZ: 3.46896982 + rotX: 358.6049 + rotY: 270.080536 + rotZ: 176.146439 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Trudność 68ca42/Deck Standardowy 6d7fd2.yaml new file mode 100644 index 000000000..ea3e8a9b8 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Trudność 68ca42/Deck Standardowy 6d7fd2.yaml @@ -0,0 +1,758 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 107515 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1075': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360092300/AD82C8EE69E1B73358B95127D3CCBB7914D48557/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360092692/05CF417D363B29A7B23976E51D27D0F80465FF15/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 82ed9c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 17.29341 + posY: 1.72676468 + posZ: 12.5591621 + rotX: 359.934937 + rotY: 269.996826 + rotZ: 180.012817 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 107515 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1075': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360092300/AD82C8EE69E1B73358B95127D3CCBB7914D48557/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360092692/05CF417D363B29A7B23976E51D27D0F80465FF15/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 780a1f + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 52.8948441 + posY: 1.19935834 + posZ: 14.0159855 + rotX: 0.0063253236 + rotY: 180.0209 + rotZ: 0.0145472474 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 107514 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1075': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360092300/AD82C8EE69E1B73358B95127D3CCBB7914D48557/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360092692/05CF417D363B29A7B23976E51D27D0F80465FF15/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: df0de5 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 53.2911034 + posY: 1.21709049 + posZ: 13.8446522 + rotX: 0.009222391 + rotY: 179.999451 + rotZ: 0.0106768385 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 107500 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1075': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360092300/AD82C8EE69E1B73358B95127D3CCBB7914D48557/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360092692/05CF417D363B29A7B23976E51D27D0F80465FF15/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: c57bcd + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 53.60127 + posY: 1.20406258 + posZ: 14.7540083 + rotX: 359.919037 + rotY: 180.001709 + rotZ: 0.1305487 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 107516 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1075': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360092300/AD82C8EE69E1B73358B95127D3CCBB7914D48557/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360092692/05CF417D363B29A7B23976E51D27D0F80465FF15/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 7259f7 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 52.8458443 + posY: 1.20158637 + posZ: 13.9943428 + rotX: -0.0004026792 + rotY: 180.025558 + rotZ: 359.988373 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 107516 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1075': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360092300/AD82C8EE69E1B73358B95127D3CCBB7914D48557/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360092692/05CF417D363B29A7B23976E51D27D0F80465FF15/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: e7db04 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 52.7222366 + posY: 1.20436156 + posZ: 14.2422323 + rotX: 0.0011716783 + rotY: 180.000336 + rotZ: 0.0008235228 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 107516 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1075': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360092300/AD82C8EE69E1B73358B95127D3CCBB7914D48557/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360092692/05CF417D363B29A7B23976E51D27D0F80465FF15/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: b5268f + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 52.4467163 + posY: 1.2093606 + posZ: 14.10339 + rotX: 0.0008058887 + rotY: 180.000732 + rotZ: -0.001826852 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 107501 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1075': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360092300/AD82C8EE69E1B73358B95127D3CCBB7914D48557/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360092692/05CF417D363B29A7B23976E51D27D0F80465FF15/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: f923d0 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 52.61303 + posY: 1.21570528 + posZ: 13.8789959 + rotX: 0.00148769445 + rotY: 180.003784 + rotZ: -0.000341167528 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 107501 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1075': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360092300/AD82C8EE69E1B73358B95127D3CCBB7914D48557/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360092692/05CF417D363B29A7B23976E51D27D0F80465FF15/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 5dd31b + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 52.7547035 + posY: 1.17302632 + posZ: 14.0441408 + rotX: -0.0007746265 + rotY: 180.001022 + rotZ: -0.000331389863 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 107502 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1075': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360092300/AD82C8EE69E1B73358B95127D3CCBB7914D48557/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360092692/05CF417D363B29A7B23976E51D27D0F80465FF15/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: e5bb53 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 52.9978752 + posY: 1.18580651 + posZ: 14.2165651 + rotX: 0.04122953 + rotY: 179.999863 + rotZ: 359.8991 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 107503 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1075': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360092300/AD82C8EE69E1B73358B95127D3CCBB7914D48557/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360092692/05CF417D363B29A7B23976E51D27D0F80465FF15/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: a4937d + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 52.3899422 + posY: 1.19094419 + posZ: 14.2077675 + rotX: 0.052503854 + rotY: 180.005081 + rotZ: 359.815 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 107509 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1075': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360092300/AD82C8EE69E1B73358B95127D3CCBB7914D48557/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360092692/05CF417D363B29A7B23976E51D27D0F80465FF15/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 252b35 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 52.7053871 + posY: 1.20213211 + posZ: 13.9060555 + rotX: 0.00139302958 + rotY: 180.001038 + rotZ: 0.000257673441 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 107509 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1075': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360092300/AD82C8EE69E1B73358B95127D3CCBB7914D48557/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360092692/05CF417D363B29A7B23976E51D27D0F80465FF15/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 2e2271 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 52.56809 + posY: 1.21169484 + posZ: 13.9396238 + rotX: 0.0105857207 + rotY: 180.048126 + rotZ: 359.974762 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 107510 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1075': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360092300/AD82C8EE69E1B73358B95127D3CCBB7914D48557/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360092692/05CF417D363B29A7B23976E51D27D0F80465FF15/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: c95070 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 52.89791 + posY: 1.26696861 + posZ: 13.9480877 + rotX: 0.007677641 + rotY: 180.040985 + rotZ: 357.561 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 107512 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1075': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360092300/AD82C8EE69E1B73358B95127D3CCBB7914D48557/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360092692/05CF417D363B29A7B23976E51D27D0F80465FF15/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: bf6912 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 52.1772652 + posY: 1.23090565 + posZ: 13.72768 + rotX: 0.00217827526 + rotY: 180.022446 + rotZ: 359.971436 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 107513 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1075': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360092300/AD82C8EE69E1B73358B95127D3CCBB7914D48557/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360092692/05CF417D363B29A7B23976E51D27D0F80465FF15/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 0a074c + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 52.2460823 + posY: 1.24473608 + posZ: 13.6681185 + rotX: 359.946167 + rotY: 179.986115 + rotZ: 359.846741 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 107511 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1075': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360092300/AD82C8EE69E1B73358B95127D3CCBB7914D48557/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360092692/05CF417D363B29A7B23976E51D27D0F80465FF15/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 088eff + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 53.2398567 + posY: 1.250361 + posZ: 14.7194986 + rotX: 359.994141 + rotY: 180.001022 + rotZ: 0.00686935149 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '1075': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360092300/AD82C8EE69E1B73358B95127D3CCBB7914D48557/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360092692/05CF417D363B29A7B23976E51D27D0F80465FF15/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 107515 +- 107515 +- 107514 +- 107500 +- 107516 +- 107516 +- 107516 +- 107501 +- 107501 +- 107502 +- 107503 +- 107509 +- 107509 +- 107510 +- 107512 +- 107513 +- 107511 +Description: Kiedy sny... +GMNotes: '' +GUID: 6d7fd2 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Standardowy +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 21.6124134 + posY: 3.61735249 + posZ: 3.00320435 + rotX: 357.868317 + rotY: 270.023621 + rotZ: 178.827011 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Trudność 68ca42/Deck Trudny 6670d5.yaml new file mode 100644 index 000000000..523e79f7c --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Trudność 68ca42/Deck Trudny 6670d5.yaml @@ -0,0 +1,799 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 107511 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1075': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360092300/AD82C8EE69E1B73358B95127D3CCBB7914D48557/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360092692/05CF417D363B29A7B23976E51D27D0F80465FF15/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 088eff + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 49.4028 + posY: 1.061383 + posZ: 12.7602434 + rotX: -4.48673345e-05 + rotY: 179.9984 + rotZ: -0.00303903245 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 107513 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1075': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360092300/AD82C8EE69E1B73358B95127D3CCBB7914D48557/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360092692/05CF417D363B29A7B23976E51D27D0F80465FF15/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 0a074c + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 49.4506264 + posY: 1.20726347 + posZ: 12.52596 + rotX: 0.324913561 + rotY: 180.002869 + rotZ: 0.5277892 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 107512 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1075': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360092300/AD82C8EE69E1B73358B95127D3CCBB7914D48557/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360092692/05CF417D363B29A7B23976E51D27D0F80465FF15/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: bf6912 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 49.0433235 + posY: 1.21739686 + posZ: 12.8095369 + rotX: 0.000112073423 + rotY: 179.999786 + rotZ: -0.00225971849 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 107510 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1075': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360092300/AD82C8EE69E1B73358B95127D3CCBB7914D48557/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360092692/05CF417D363B29A7B23976E51D27D0F80465FF15/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: c95070 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 48.9991951 + posY: 1.20372009 + posZ: 12.5765209 + rotX: -0.00035841114 + rotY: 180.0 + rotZ: -0.00282253162 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 107509 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1075': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360092300/AD82C8EE69E1B73358B95127D3CCBB7914D48557/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360092692/05CF417D363B29A7B23976E51D27D0F80465FF15/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 2e2271 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 49.4380569 + posY: 1.20172894 + posZ: 12.5200033 + rotX: -0.000244213385 + rotY: 180.0 + rotZ: 0.00015779314 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 107509 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1075': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360092300/AD82C8EE69E1B73358B95127D3CCBB7914D48557/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360092692/05CF417D363B29A7B23976E51D27D0F80465FF15/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 252b35 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 49.4385338 + posY: 1.2043891 + posZ: 12.7514524 + rotX: 0.00022197573 + rotY: 180.0 + rotZ: 0.000531916157 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 107504 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1075': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360092300/AD82C8EE69E1B73358B95127D3CCBB7914D48557/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360092692/05CF417D363B29A7B23976E51D27D0F80465FF15/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 6502a7 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 49.70418 + posY: 1.1593051 + posZ: 13.3369827 + rotX: 358.863678 + rotY: 180.005127 + rotZ: 1.57157183 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 107503 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1075': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360092300/AD82C8EE69E1B73358B95127D3CCBB7914D48557/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360092692/05CF417D363B29A7B23976E51D27D0F80465FF15/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: a4937d + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 49.3107147 + posY: 1.21571493 + posZ: 12.9888525 + rotX: -0.000402523 + rotY: 179.999573 + rotZ: 0.000368058 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 107502 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1075': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360092300/AD82C8EE69E1B73358B95127D3CCBB7914D48557/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360092692/05CF417D363B29A7B23976E51D27D0F80465FF15/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 91d936 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 49.4506836 + posY: 1.17317092 + posZ: 13.1526165 + rotX: -0.005674082 + rotY: 180.0069 + rotZ: 359.982544 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 107502 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1075': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360092300/AD82C8EE69E1B73358B95127D3CCBB7914D48557/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360092692/05CF417D363B29A7B23976E51D27D0F80465FF15/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: e5bb53 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 49.08748 + posY: 1.18281913 + posZ: 12.7528505 + rotX: 4.187683e-05 + rotY: 180.0 + rotZ: 6.960146e-05 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 107501 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1075': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360092300/AD82C8EE69E1B73358B95127D3CCBB7914D48557/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360092692/05CF417D363B29A7B23976E51D27D0F80465FF15/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 5dd31b + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 49.8836975 + posY: 1.19250476 + posZ: 12.9289608 + rotX: -0.0009703179 + rotY: 180.000168 + rotZ: 0.00617160229 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 107501 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1075': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360092300/AD82C8EE69E1B73358B95127D3CCBB7914D48557/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360092692/05CF417D363B29A7B23976E51D27D0F80465FF15/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: f923d0 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 48.7788773 + posY: 1.2020669 + posZ: 12.6741085 + rotX: -0.0006381634 + rotY: 179.999985 + rotZ: 359.989166 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 107516 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1075': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360092300/AD82C8EE69E1B73358B95127D3CCBB7914D48557/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360092692/05CF417D363B29A7B23976E51D27D0F80465FF15/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: b5268f + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 49.99269 + posY: 1.21185327 + posZ: 12.3222084 + rotX: -0.000214798565 + rotY: 180.003174 + rotZ: 0.0154730147 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 107516 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1075': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360092300/AD82C8EE69E1B73358B95127D3CCBB7914D48557/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360092692/05CF417D363B29A7B23976E51D27D0F80465FF15/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: e7db04 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 49.7480736 + posY: 1.22147882 + posZ: 12.9782391 + rotX: -0.00133555743 + rotY: 180.000015 + rotZ: 0.00235125236 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 107515 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1075': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360092300/AD82C8EE69E1B73358B95127D3CCBB7914D48557/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360092692/05CF417D363B29A7B23976E51D27D0F80465FF15/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 780a1f + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 48.9914551 + posY: 1.23111784 + posZ: 12.53789 + rotX: 359.992676 + rotY: 180.009933 + rotZ: 359.979584 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 107515 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1075': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360092300/AD82C8EE69E1B73358B95127D3CCBB7914D48557/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360092692/05CF417D363B29A7B23976E51D27D0F80465FF15/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 82ed9c + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 49.57561 + posY: 1.24086213 + posZ: 13.4835625 + rotX: 0.0008977029 + rotY: 179.995209 + rotZ: 0.00317751616 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 107515 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1075': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360092300/AD82C8EE69E1B73358B95127D3CCBB7914D48557/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360092692/05CF417D363B29A7B23976E51D27D0F80465FF15/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: b504c2 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 49.56546 + posY: 1.25044858 + posZ: 12.4714651 + rotX: -0.000118625605 + rotY: 179.991272 + rotZ: 0.00033214406 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 107500 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1075': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360092300/AD82C8EE69E1B73358B95127D3CCBB7914D48557/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360092692/05CF417D363B29A7B23976E51D27D0F80465FF15/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: c57bcd + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 60.5603676 + posY: 1.26002133 + posZ: 22.9776554 + rotX: -0.0007824132 + rotY: 179.997787 + rotZ: 1.899963e-05 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '1075': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360092300/AD82C8EE69E1B73358B95127D3CCBB7914D48557/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360092692/05CF417D363B29A7B23976E51D27D0F80465FF15/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 107511 +- 107513 +- 107512 +- 107510 +- 107509 +- 107509 +- 107504 +- 107503 +- 107502 +- 107502 +- 107501 +- 107501 +- 107516 +- 107516 +- 107515 +- 107515 +- 107515 +- 107500 +Description: Kiedy Sny... +GMNotes: '' +GUID: 6670d5 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Trudny +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 21.07257 + posY: 3.634902 + posZ: 2.937994 + rotX: 1.03165984 + rotY: 269.976135 + rotZ: 179.489517 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Trudność 68ca42/Deck Łatwy db8ece.yaml new file mode 100644 index 000000000..9e5a3663f --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Bag Trudność 68ca42/Deck Łatwy db8ece.yaml @@ -0,0 +1,757 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 107511 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1075': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360092300/AD82C8EE69E1B73358B95127D3CCBB7914D48557/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360092692/05CF417D363B29A7B23976E51D27D0F80465FF15/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 088eff + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 49.0861473 + posY: 1.0615325 + posZ: 13.6020184 + rotX: -0.001174119 + rotY: 180.000061 + rotZ: 0.00623173872 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 107513 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1075': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360092300/AD82C8EE69E1B73358B95127D3CCBB7914D48557/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360092692/05CF417D363B29A7B23976E51D27D0F80465FF15/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 0a074c + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 49.3512421 + posY: 1.20017552 + posZ: 14.0760651 + rotX: -0.00444501266 + rotY: 180.000031 + rotZ: 0.0260687172 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 107512 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1075': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360092300/AD82C8EE69E1B73358B95127D3CCBB7914D48557/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360092692/05CF417D363B29A7B23976E51D27D0F80465FF15/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: bf6912 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 48.7306557 + posY: 1.21740162 + posZ: 13.42403 + rotX: -0.000340939616 + rotY: 179.999817 + rotZ: -0.00183003233 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 107510 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1075': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360092300/AD82C8EE69E1B73358B95127D3CCBB7914D48557/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360092692/05CF417D363B29A7B23976E51D27D0F80465FF15/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: c95070 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 48.661972 + posY: 1.203539 + posZ: 13.4252052 + rotX: 0.008886508 + rotY: 180.138748 + rotZ: 359.9031 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 107509 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1075': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360092300/AD82C8EE69E1B73358B95127D3CCBB7914D48557/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360092692/05CF417D363B29A7B23976E51D27D0F80465FF15/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 2e2271 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 49.0503654 + posY: 1.20173359 + posZ: 13.797411 + rotX: -0.00046332 + rotY: 179.998383 + rotZ: 0.00125734892 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 107509 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1075': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360092300/AD82C8EE69E1B73358B95127D3CCBB7914D48557/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360092692/05CF417D363B29A7B23976E51D27D0F80465FF15/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 252b35 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 49.8003044 + posY: 1.20467257 + posZ: 13.6047516 + rotX: 359.993256 + rotY: 180.000336 + rotZ: 0.0658541843 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 107501 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1075': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360092300/AD82C8EE69E1B73358B95127D3CCBB7914D48557/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360092692/05CF417D363B29A7B23976E51D27D0F80465FF15/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 5dd31b + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 49.4818535 + posY: 1.20937037 + posZ: 13.2225866 + rotX: -0.000397374562 + rotY: 180.002533 + rotZ: 0.002699601 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 107501 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1075': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360092300/AD82C8EE69E1B73358B95127D3CCBB7914D48557/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360092692/05CF417D363B29A7B23976E51D27D0F80465FF15/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: f923d0 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 49.67823 + posY: 1.21605933 + posZ: 13.6210289 + rotX: -0.004167262 + rotY: 180.00267 + rotZ: 0.0340960957 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 107516 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1075': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360092300/AD82C8EE69E1B73358B95127D3CCBB7914D48557/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360092692/05CF417D363B29A7B23976E51D27D0F80465FF15/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: b5268f + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 48.9957581 + posY: 1.21296012 + posZ: 13.5977669 + rotX: -0.00193782861 + rotY: 180.036942 + rotZ: 2.17087913 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 107516 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1075': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360092300/AD82C8EE69E1B73358B95127D3CCBB7914D48557/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360092692/05CF417D363B29A7B23976E51D27D0F80465FF15/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: e7db04 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 48.8208961 + posY: 1.18279743 + posZ: 13.9778051 + rotX: 359.988281 + rotY: 180.0203 + rotZ: -0.0052550016 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 107516 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1075': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360092300/AD82C8EE69E1B73358B95127D3CCBB7914D48557/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360092692/05CF417D363B29A7B23976E51D27D0F80465FF15/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 7259f7 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 49.0785141 + posY: 1.19243038 + posZ: 13.61213 + rotX: 0.0205731019 + rotY: 180.03923 + rotZ: 0.00453813747 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 107500 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1075': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360092300/AD82C8EE69E1B73358B95127D3CCBB7914D48557/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360092692/05CF417D363B29A7B23976E51D27D0F80465FF15/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: c57bcd + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 48.77645 + posY: 1.20213628 + posZ: 13.2190828 + rotX: 0.000508287 + rotY: 180.000275 + rotZ: -0.00111260451 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 107514 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1075': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360092300/AD82C8EE69E1B73358B95127D3CCBB7914D48557/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360092692/05CF417D363B29A7B23976E51D27D0F80465FF15/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 484d62 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 49.4423256 + posY: 1.21185875 + posZ: 13.8380337 + rotX: -0.003456828 + rotY: 179.9987 + rotZ: 0.00491901068 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 107514 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1075': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360092300/AD82C8EE69E1B73358B95127D3CCBB7914D48557/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360092692/05CF417D363B29A7B23976E51D27D0F80465FF15/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: df0de5 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 49.0394249 + posY: 1.22146606 + posZ: 13.9578438 + rotX: 0.0001351244 + rotY: 180.000488 + rotZ: 0.00077419047 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 107515 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1075': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360092300/AD82C8EE69E1B73358B95127D3CCBB7914D48557/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360092692/05CF417D363B29A7B23976E51D27D0F80465FF15/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: b504c2 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 49.5329781 + posY: 1.231109 + posZ: 13.4316816 + rotX: 0.00165656186 + rotY: 180.024353 + rotZ: 0.0023269 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 107515 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1075': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360092300/AD82C8EE69E1B73358B95127D3CCBB7914D48557/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360092692/05CF417D363B29A7B23976E51D27D0F80465FF15/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 780a1f + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 48.50844 + posY: 1.2405194 + posZ: 12.9547157 + rotX: 0.005053861 + rotY: 180.06604 + rotZ: 359.960052 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 107515 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1075': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360092300/AD82C8EE69E1B73358B95127D3CCBB7914D48557/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360092692/05CF417D363B29A7B23976E51D27D0F80465FF15/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 82ed9c + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 49.49115 + posY: 1.25055194 + posZ: 14.1464148 + rotX: 0.008066293 + rotY: 180.015869 + rotZ: 359.9903 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '1075': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360092300/AD82C8EE69E1B73358B95127D3CCBB7914D48557/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360092692/05CF417D363B29A7B23976E51D27D0F80465FF15/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 107511 +- 107513 +- 107512 +- 107510 +- 107509 +- 107509 +- 107501 +- 107501 +- 107516 +- 107516 +- 107516 +- 107500 +- 107514 +- 107514 +- 107515 +- 107515 +- 107515 +Description: Kiedy sny... +GMNotes: '' +GUID: db8ece +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: "\u0141atwy" +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 21.2207947 + posY: 3.628919 + posZ: 3.03489184 + rotX: 0.07753132 + rotY: 269.985443 + rotZ: 178.258179 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Custom_Tile 24e5eb.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Custom_Tile 24e5eb.yaml new file mode 100644 index 000000000..ce01ba3ea --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Kiedy sny Stają się Rzeczywiścią acdf16/Custom_Tile 24e5eb.yaml @@ -0,0 +1,42 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.1 + Type: 0 + ImageScalar: 1.0 + ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/778493732360093515/73707B6B78CCEF8B2EAE6E3DAEEE035729C9B508/ + ImageURL: http://cloud-3.steamusercontent.com/ugc/778493732360093085/9A04EC7304707F215142B77AB24F5FC6F4DE5998/ + WidthScale: 0.0 +Description: '' +GMNotes: '' +GUID: 24e5eb +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Tile +Nickname: '' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -5.60290051 + posY: 1.54867089 + posZ: 23.9983025 + rotX: 359.9201 + rotY: 270.004242 + rotZ: 359.522949 + scaleX: 6.43188572 + scaleY: 1.0 + scaleZ: 6.43188572 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Knightfall df62e8.ttslua b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Knightfall df62e8.ttslua new file mode 100644 index 000000000..46067f58e --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Knightfall df62e8.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.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.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 791837/Custom_Model_Bag Knightfall df62e8.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Knightfall df62e8.yaml new file mode 100644 index 000000000..2e064a272 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Knightfall df62e8.yaml @@ -0,0 +1,75 @@ +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 Knightfall df62e8/Deck Set Aside 3106e6.yaml' +- !include 'Custom_Model_Bag Knightfall df62e8/Bag Batman Deck c9e9ad.yaml' +- !include 'Custom_Model_Bag Knightfall df62e8/Deck Toxin d306b8.yaml' +- !include 'Custom_Model_Bag Knightfall df62e8/DeckCustom Encounter Deck 9d4e42.yaml' +- !include 'Custom_Model_Bag Knightfall df62e8/Deck Agenda 917494.yaml' +- !include 'Custom_Model_Bag Knightfall df62e8/Deck Act a4e5e9.yaml' +- !include 'Custom_Model_Bag Knightfall df62e8/Card b8480f.yaml' +- !include 'Custom_Model_Bag Knightfall df62e8/Custom_Tile Knightfall 271ce2.yaml' +- !include 'Custom_Model_Bag Knightfall df62e8/Deck Locations b21de6.yaml' +- !include 'Custom_Model_Bag Knightfall df62e8/Deck Instructions 0679c6.yaml' +- !include 'Custom_Model_Bag Knightfall df62e8/Card bab1d6.yaml' +- !include 'Custom_Model_Bag Knightfall df62e8/Card 2d17c9.yaml' +- !include 'Custom_Model_Bag Knightfall df62e8/Card 245b8d.yaml' +- !include 'Custom_Model_Bag Knightfall df62e8/Card a68851.yaml' +- !include 'Custom_Model_Bag Knightfall df62e8/Card 141409.yaml' +- !include 'Custom_Model_Bag Knightfall df62e8/Card da3aed.yaml' +CustomMesh: + CastShadows: true + ColliderURL: '' + Convex: true + DiffuseURL: http://cloud-3.steamusercontent.com/ugc/798737729142937041/3253F31B9483C3B5D0A98BA7E479E006FBF8D270/ + MaterialIndex: 3 + MeshURL: https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj + NormalURL: '' + TypeIndex: 6 +Description: '' +GMNotes: '' +GUID: df62e8 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Model_Bag Knightfall df62e8.ttslua' +LuaScriptState: '{"ml":{"0679c6":{"lock":false,"pos":{"x":-11.8399,"y":1.6678,"z":0.2602},"rot":{"x":359.9201,"y":269.988,"z":0.0169}},"141409":{"lock":false,"pos":{"x":-30.2241,"y":1.6982,"z":-0.03},"rot":{"x":359.9201,"y":269.9963,"z":180.0169}},"245b8d":{"lock":false,"pos":{"x":-23.6765,"y":1.689,"z":-0.03},"rot":{"x":359.9201,"y":269.9964,"z":180.0169}},"271ce2":{"lock":false,"pos":{"x":-4.3628,"y":1.5831,"z":-15.1267},"rot":{"x":359.9197,"y":270.0001,"z":0.0168}},"2d17c9":{"lock":false,"pos":{"x":-23.6765,"y":1.6913,"z":7.57},"rot":{"x":359.9201,"y":269.9958,"z":180.0169}},"3106e6":{"lock":false,"pos":{"x":1.6965,"y":1.6368,"z":14.2788},"rot":{"x":359.9552,"y":224.998,"z":0.0687}},"917494":{"lock":false,"pos":{"x":-2.7246,"y":1.664,"z":0.3733},"rot":{"x":359.9197,"y":269.9855,"z":0.0169}},"9d4e42":{"lock":false,"pos":{"x":-3.9274,"y":1.7397,"z":5.7571},"rot":{"x":359.9197,"y":269.9857,"z":180.0169}},"a4e5e9":{"lock":false,"pos":{"x":-2.6884,"y":1.655,"z":-5.0486},"rot":{"x":359.9197,"y":269.9855,"z":0.0169}},"a68851":{"lock":false,"pos":{"x":-23.6765,"y":1.6868,"z":-7.7},"rot":{"x":359.9201,"y":269.9972,"z":180.0169}},"b21de6":{"lock":false,"pos":{"x":-13.3172,"y":1.6804,"z":7.5859},"rot":{"x":359.9201,"y":269.9856,"z":180.0169}},"b8480f":{"lock":false,"pos":{"x":-3.9559,"y":1.6556,"z":-10.4412},"rot":{"x":359.9197,"y":269.9855,"z":0.0169}},"bab1d6":{"lock":false,"pos":{"x":-17.1199,"y":1.6799,"z":-0.03},"rot":{"x":359.9201,"y":269.997,"z":180.0169}},"c9e9ad":{"lock":false,"pos":{"x":-5.3818,"y":1.4082,"z":14.423},"rot":{"x":359.9832,"y":-0.0034,"z":359.9196}},"d306b8":{"lock":false,"pos":{"x":-12.4062,"y":1.679,"z":12.7949},"rot":{"x":359.9201,"y":269.9857,"z":180.0169}},"da3aed":{"lock":false,"pos":{"x":-50.9244,"y":1.7266,"z":8.1784},"rot":{"x":359.9201,"y":269.9855,"z":0.0169}}}}' +MaterialIndex: -1 +MeshIndex: -1 +Name: Custom_Model_Bag +Nickname: Knightfall +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 31.9843216 + posY: 4.38126945 + posZ: -86.37303 + rotX: 0.0208086073 + rotY: 270.0 + rotZ: 0.0167711526 + scaleX: 2.21 + scaleY: 0.2 + scaleZ: 2.46 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Knightfall df62e8/Bag Batman Deck c9e9ad.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Knightfall df62e8/Bag Batman Deck c9e9ad.yaml new file mode 100644 index 000000000..5d56cae5a --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Knightfall df62e8/Bag Batman Deck c9e9ad.yaml @@ -0,0 +1,38 @@ +Autoraise: true +ColorDiffuse: + b: 0.573419631 + g: 0.7389318 + r: 0.891986132 +ContainedObjects: +- !include 'Bag Batman Deck c9e9ad/Custom_Token Batman! 7244f1.yaml' +- !include 'Bag Batman Deck c9e9ad/Card Bruce Wayne fb89ee.yaml' +- !include 'Bag Batman Deck c9e9ad/Deck 64b07c.yaml' +Description: '' +GMNotes: '' +GUID: c9e9ad +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +MeshIndex: -1 +Name: Bag +Nickname: Batman Deck +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -5.3818 + posY: 1.40820384 + posZ: 14.4230013 + rotX: 359.983154 + rotY: -0.003384004 + rotZ: 359.919647 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Knightfall df62e8/Bag Batman Deck c9e9ad/Card Bruce Wayne fb89ee.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Knightfall df62e8/Bag Batman Deck c9e9ad/Card Bruce Wayne fb89ee.yaml new file mode 100644 index 000000000..d749134de --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Knightfall df62e8/Bag Batman Deck c9e9ad/Card Bruce Wayne fb89ee.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 209 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2': + BackIsHidden: true + BackURL: https://i.imgur.com/VuuIryb.jpg/ + FaceURL: https://i.imgur.com/sCaPeG9.jpg/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: fb89ee +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Bruce Wayne +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 15.0275927 + posY: 3.00316477 + posZ: -6.55246067 + rotX: 359.714661 + rotY: 269.983978 + rotZ: 359.812836 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Knightfall df62e8/Bag Batman Deck c9e9ad/Custom_Token Batman! 7244f1.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Knightfall df62e8/Bag Batman Deck c9e9ad/Custom_Token Batman! 7244f1.yaml new file mode 100644 index 000000000..7a588987d --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Knightfall df62e8/Bag Batman Deck c9e9ad/Custom_Token Batman! 7244f1.yaml @@ -0,0 +1,41 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +CustomImage: + CustomToken: + MergeDistancePixels: 15.0 + Stackable: false + Thickness: 0.2 + ImageScalar: 1.0 + ImageSecondaryURL: '' + ImageURL: http://cloud-3.steamusercontent.com/ugc/778493732359958441/F183E7A5F398BACF3FA961B048C146C72EE7C713/ + WidthScale: 0.0 +Description: '' +GMNotes: '' +GUID: 7244f1 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Token +Nickname: Batman! +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 15.8144455 + posY: 3.1478467 + posZ: -3.87409186 + rotX: 358.351 + rotY: 269.948151 + rotZ: 355.884216 + scaleX: 0.47075966 + scaleY: 1.0 + scaleZ: 0.47075966 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Knightfall df62e8/Bag Batman Deck c9e9ad/Deck 64b07c.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Knightfall df62e8/Bag Batman Deck c9e9ad/Deck 64b07c.yaml new file mode 100644 index 000000000..1b198f98f --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Knightfall df62e8/Bag Batman Deck c9e9ad/Deck 64b07c.yaml @@ -0,0 +1,127 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 324 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3': + BackIsHidden: true + BackURL: https://i.imgur.com/a1krSW3.jpg/ + FaceURL: https://i.imgur.com/mwKLjIs.jpg/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Batman + GMNotes: '' + GUID: eac151 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Utility Belt + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -7.69942141 + posY: 1.03171194 + posZ: 5.70351458 + rotX: -7.1041286e-05 + rotY: 179.9998 + rotZ: -0.000246967451 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 325 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3': + BackIsHidden: true + BackURL: https://i.imgur.com/a1krSW3.jpg/ + FaceURL: https://i.imgur.com/mwKLjIs.jpg/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Batman + GMNotes: '' + GUID: 4eeeb3 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Terrible memory + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -7.487739 + posY: 1.17054713 + posZ: 5.37356043 + rotX: 0.009329178 + rotY: 180.008987 + rotZ: 0.00505922 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '3': + BackIsHidden: true + BackURL: https://i.imgur.com/a1krSW3.jpg/ + FaceURL: https://i.imgur.com/mwKLjIs.jpg/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 324 +- 325 +Description: '' +GMNotes: '' +GUID: 64b07c +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 14.66137 + posY: 3.12653828 + posZ: -9.121288 + rotX: 359.830658 + rotY: 269.996552 + rotZ: 5.69763231 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Knightfall df62e8/Card 141409.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Knightfall df62e8/Card 141409.yaml new file mode 100644 index 000000000..7d4027dc3 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Knightfall df62e8/Card 141409.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 149222 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '1492': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359956584/FA57949A7C36D7A390FA0986F36B68D55175AA53/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359957024/1E913D4986E40250C3A8C313937CFDF0827CB5F4/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: '141409' +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -30.2241 + posY: 1.6981734 + posZ: -0.0300003849 + rotX: 359.9201 + rotY: 269.996277 + rotZ: 180.016876 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Knightfall df62e8/Card 245b8d.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Knightfall df62e8/Card 245b8d.yaml new file mode 100644 index 000000000..bf8f4e867 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Knightfall df62e8/Card 245b8d.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 149218 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '1492': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359956584/FA57949A7C36D7A390FA0986F36B68D55175AA53/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359957024/1E913D4986E40250C3A8C313937CFDF0827CB5F4/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 245b8d +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -23.6765 + posY: 1.68904316 + posZ: -0.0300004315 + rotX: 359.9201 + rotY: 269.9964 + rotZ: 180.016876 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Knightfall df62e8/Card 2d17c9.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Knightfall df62e8/Card 2d17c9.yaml new file mode 100644 index 000000000..154709091 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Knightfall df62e8/Card 2d17c9.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 149223 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '1492': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359956584/FA57949A7C36D7A390FA0986F36B68D55175AA53/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359957024/1E913D4986E40250C3A8C313937CFDF0827CB5F4/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 2d17c9 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -23.6765 + posY: 1.6912812 + posZ: 7.569999 + rotX: 359.9201 + rotY: 269.99585 + rotZ: 180.016876 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Knightfall df62e8/Card a68851.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Knightfall df62e8/Card a68851.yaml new file mode 100644 index 000000000..2b14efb00 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Knightfall df62e8/Card a68851.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 149220 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '1492': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359956584/FA57949A7C36D7A390FA0986F36B68D55175AA53/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359957024/1E913D4986E40250C3A8C313937CFDF0827CB5F4/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: a68851 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -23.6765 + posY: 1.68678463 + posZ: -7.70000029 + rotX: 359.9201 + rotY: 269.997131 + rotZ: 180.016876 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Knightfall df62e8/Card b8480f.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Knightfall df62e8/Card b8480f.yaml new file mode 100644 index 000000000..6412ae3ca --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Knightfall df62e8/Card b8480f.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 149313 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '1493': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359956584/FA57949A7C36D7A390FA0986F36B68D55175AA53/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359957024/1E913D4986E40250C3A8C313937CFDF0827CB5F4/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: b8480f +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.95590043 + posY: 1.655648 + posZ: -10.4412012 + rotX: 359.919739 + rotY: 269.985535 + rotZ: 0.01685282 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Knightfall df62e8/Card bab1d6.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Knightfall df62e8/Card bab1d6.yaml new file mode 100644 index 000000000..e5c91f781 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Knightfall df62e8/Card bab1d6.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 149221 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '1492': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359956584/FA57949A7C36D7A390FA0986F36B68D55175AA53/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359957024/1E913D4986E40250C3A8C313937CFDF0827CB5F4/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: bab1d6 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -17.1199 + posY: 1.67990041 + posZ: -0.03000077 + rotX: 359.9201 + rotY: 269.996948 + rotZ: 180.016876 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Knightfall df62e8/Card da3aed.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Knightfall df62e8/Card da3aed.yaml new file mode 100644 index 000000000..2eec059f3 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Knightfall df62e8/Card da3aed.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 149313 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '1493': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359956584/FA57949A7C36D7A390FA0986F36B68D55175AA53/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359957024/1E913D4986E40250C3A8C313937CFDF0827CB5F4/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: da3aed +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -50.9244 + posY: 1.72662532 + posZ: 8.178401 + rotX: 359.920135 + rotY: 269.9855 + rotZ: 0.0168880522 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Knightfall df62e8/Custom_Tile Knightfall 271ce2.ttslua b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Knightfall df62e8/Custom_Tile Knightfall 271ce2.ttslua new file mode 100644 index 000000000..c2370fa18 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Knightfall df62e8/Custom_Tile Knightfall 271ce2.ttslua @@ -0,0 +1,21 @@ +name = 'Knightfall' + +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 The Side Missions 791837/Custom_Model_Bag Knightfall df62e8/Custom_Tile Knightfall 271ce2.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Knightfall df62e8/Custom_Tile Knightfall 271ce2.yaml new file mode 100644 index 000000000..def2f60de --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Knightfall df62e8/Custom_Tile Knightfall 271ce2.yaml @@ -0,0 +1,42 @@ +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 +GMNotes: '' +GUID: 271ce2 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Tile Knightfall 271ce2.ttslua' +LuaScriptState: '' +Name: Custom_Tile +Nickname: Knightfall +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -4.3628006 + posY: 1.58312762 + posZ: -15.1267014 + rotX: 359.919739 + rotY: 270.000122 + rotZ: 0.0168359317 + scaleX: 2.2 + scaleY: 1.0 + scaleZ: 2.2 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Knightfall df62e8/Deck Act a4e5e9.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Knightfall df62e8/Deck Act a4e5e9.yaml new file mode 100644 index 000000000..63a6b8c07 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Knightfall df62e8/Deck Act a4e5e9.yaml @@ -0,0 +1,169 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 154410 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1134': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359957443/8ECED24E70C4AEC816C76FA6D0CB435185A4ED77/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359957833/1057AF990D72DA2FD637ACA460E14E8DD294F7B4/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 7d7342 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 1.228178 + posY: 1.23170233 + posZ: 7.27512074 + rotX: -0.0006685873 + rotY: 180.0004 + rotZ: -0.00019892423 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 154409 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1134': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359957443/8ECED24E70C4AEC816C76FA6D0CB435185A4ED77/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359957833/1057AF990D72DA2FD637ACA460E14E8DD294F7B4/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: eb0cc3 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 1.22817147 + posY: 1.3812114 + posZ: 7.27513647 + rotX: 359.9931 + rotY: 180.000458 + rotZ: -0.0017523577 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 154408 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1134': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359957443/8ECED24E70C4AEC816C76FA6D0CB435185A4ED77/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359957833/1057AF990D72DA2FD637ACA460E14E8DD294F7B4/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 7d7342 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 1.22817791 + posY: 1.39859641 + posZ: 7.2751236 + rotX: -0.000781342853 + rotY: 180.000381 + rotZ: -0.000222820279 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '1544': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359957443/8ECED24E70C4AEC816C76FA6D0CB435185A4ED77/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359957833/1057AF990D72DA2FD637ACA460E14E8DD294F7B4/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 154410 +- 154409 +- 154408 +Description: Knightfall +GMNotes: '' +GUID: a4e5e9 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Act +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.68839955 + posY: 1.65499711 + posZ: -5.04860067 + rotX: 359.919739 + rotY: 269.985443 + rotZ: 0.0168552883 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Knightfall df62e8/Deck Agenda 917494.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Knightfall df62e8/Deck Agenda 917494.yaml new file mode 100644 index 000000000..917bd729c --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Knightfall df62e8/Deck Agenda 917494.yaml @@ -0,0 +1,127 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 154312 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1134': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359957443/8ECED24E70C4AEC816C76FA6D0CB435185A4ED77/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359957833/1057AF990D72DA2FD637ACA460E14E8DD294F7B4/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 7d7342 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -5.21325541 + posY: 1.23166823 + posZ: 7.43926525 + rotX: -0.00230238936 + rotY: 180.000473 + rotZ: -0.000456916052 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 154311 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1134': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359957443/8ECED24E70C4AEC816C76FA6D0CB435185A4ED77/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359957833/1057AF990D72DA2FD637ACA460E14E8DD294F7B4/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: '183383' + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -5.10804367 + posY: 1.37048781 + posZ: 7.19369459 + rotX: 359.989868 + rotY: 180.000366 + rotZ: 0.0009526819 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '1543': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359957443/8ECED24E70C4AEC816C76FA6D0CB435185A4ED77/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359957833/1057AF990D72DA2FD637ACA460E14E8DD294F7B4/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 154312 +- 154311 +Description: Knightfall +GMNotes: '' +GUID: '917494' +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Agenda +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.7246 + posY: 1.66397715 + posZ: 0.373300523 + rotX: 359.919739 + rotY: 269.985474 + rotZ: 0.0168550853 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Knightfall df62e8/Deck Instructions 0679c6.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Knightfall df62e8/Deck Instructions 0679c6.yaml new file mode 100644 index 000000000..00bbd23a9 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Knightfall df62e8/Deck Instructions 0679c6.yaml @@ -0,0 +1,213 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 149217 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1132': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359956584/FA57949A7C36D7A390FA0986F36B68D55175AA53/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359957024/1E913D4986E40250C3A8C313937CFDF0827CB5F4/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 7656fa + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 17.9038143 + posY: 1.03133559 + posZ: 0.391445935 + rotX: 359.9856 + rotY: 180.000259 + rotZ: -0.005329719 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 149215 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1132': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359956584/FA57949A7C36D7A390FA0986F36B68D55175AA53/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359957024/1E913D4986E40250C3A8C313937CFDF0827CB5F4/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: c14553 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 13.064106 + posY: 1.23198354 + posZ: -1.80206954 + rotX: 0.00889232848 + rotY: 180.007263 + rotZ: 359.9915 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 149216 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1492': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359956584/FA57949A7C36D7A390FA0986F36B68D55175AA53/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359957024/1E913D4986E40250C3A8C313937CFDF0827CB5F4/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: d7ee7c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -33.0467567 + posY: 1.52356279 + posZ: -67.84718 + rotX: 0.0155543918 + rotY: 269.99942 + rotZ: 0.0106164888 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 149214 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1492': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359956584/FA57949A7C36D7A390FA0986F36B68D55175AA53/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359957024/1E913D4986E40250C3A8C313937CFDF0827CB5F4/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: bffd20 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -32.9317856 + posY: 1.50994432 + posZ: -67.616394 + rotX: 0.0200911555 + rotY: 270.000366 + rotZ: 0.0148652848 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '1492': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359956584/FA57949A7C36D7A390FA0986F36B68D55175AA53/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359957024/1E913D4986E40250C3A8C313937CFDF0827CB5F4/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 149217 +- 149215 +- 149216 +- 149214 +Description: Knightfall +GMNotes: '' +GUID: 0679c6 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Instructions +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -11.8399 + posY: 1.6678375 + posZ: 0.260200024 + rotX: 359.9201 + rotY: 269.987946 + rotZ: 0.0168845057 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Knightfall df62e8/Deck Locations b21de6.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Knightfall df62e8/Deck Locations b21de6.yaml new file mode 100644 index 000000000..3de453c71 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Knightfall df62e8/Deck Locations b21de6.yaml @@ -0,0 +1,211 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 149211 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1132': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359956584/FA57949A7C36D7A390FA0986F36B68D55175AA53/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359957024/1E913D4986E40250C3A8C313937CFDF0827CB5F4/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 063ef8 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 9.3377285 + posY: 1.3832289 + posZ: 7.95453835 + rotX: -0.0005858764 + rotY: 180.0 + rotZ: 179.997955 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 149210 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1132': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359956584/FA57949A7C36D7A390FA0986F36B68D55175AA53/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359957024/1E913D4986E40250C3A8C313937CFDF0827CB5F4/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 063ef8 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 9.502267 + posY: 1.39697826 + posZ: 7.69766665 + rotX: -0.00125227508 + rotY: 180.002 + rotZ: 179.998978 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 149209 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1132': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359956584/FA57949A7C36D7A390FA0986F36B68D55175AA53/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359957024/1E913D4986E40250C3A8C313937CFDF0827CB5F4/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 3e6cb8 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 9.952809 + posY: 1.432157 + posZ: 7.372876 + rotX: -0.0055431826 + rotY: 179.99527 + rotZ: 177.191 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 149208 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1132': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359956584/FA57949A7C36D7A390FA0986F36B68D55175AA53/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359957024/1E913D4986E40250C3A8C313937CFDF0827CB5F4/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 063ef8 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 9.513436 + posY: 1.234423 + posZ: 7.59385 + rotX: -0.005263216 + rotY: 180.016327 + rotZ: 179.984177 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '1492': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359956584/FA57949A7C36D7A390FA0986F36B68D55175AA53/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359957024/1E913D4986E40250C3A8C313937CFDF0827CB5F4/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 149211 +- 149210 +- 149209 +- 149208 +Description: Knightfall +GMNotes: '' +GUID: b21de6 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Locations +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -13.3171988 + posY: 1.68039334 + posZ: 7.58589935 + rotX: 359.9201 + rotY: 269.985535 + rotZ: 180.016891 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Knightfall df62e8/Deck Set Aside 3106e6.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Knightfall df62e8/Deck Set Aside 3106e6.yaml new file mode 100644 index 000000000..9ec00367a --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Knightfall df62e8/Deck Set Aside 3106e6.yaml @@ -0,0 +1,323 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 154500 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: '939666' + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 7.47108841 + posY: 1.01347291 + posZ: -7.86444473 + rotX: 2.846744e-08 + rotY: 269.985535 + rotZ: -6.167221e-06 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 154501 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: '939666' + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 7.47108841 + posY: 1.01347291 + posZ: -7.86444473 + rotX: 2.846744e-08 + rotY: 269.985535 + rotZ: -6.167221e-06 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 154502 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: '939666' + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 7.47108841 + posY: 1.01347291 + posZ: -7.86444473 + rotX: 2.846744e-08 + rotY: 269.985535 + rotZ: -6.167221e-06 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 154503 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: '939666' + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 7.47108841 + posY: 1.01347291 + posZ: -7.86444473 + rotX: 2.846744e-08 + rotY: 269.985535 + rotZ: -6.167221e-06 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 154504 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: '939666' + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 7.47108841 + posY: 1.01347291 + posZ: -7.86444473 + rotX: 2.846744e-08 + rotY: 269.985535 + rotZ: -6.167221e-06 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 154505 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: '939666' + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 7.47108841 + posY: 1.01347291 + posZ: -7.86444473 + rotX: 2.846744e-08 + rotY: 269.985535 + rotZ: -6.167221e-06 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 154506 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: '939666' + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 7.47108841 + posY: 1.01347291 + posZ: -7.86444473 + rotX: 2.846744e-08 + rotY: 269.985535 + rotZ: -6.167221e-06 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 154507 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: '939666' + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 7.47108841 + posY: 1.01347291 + posZ: -7.86444473 + rotX: 2.846744e-08 + rotY: 269.985535 + rotZ: -6.167221e-06 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '1545': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359956584/FA57949A7C36D7A390FA0986F36B68D55175AA53/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359957024/1E913D4986E40250C3A8C313937CFDF0827CB5F4/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 154500 +- 154501 +- 154502 +- 154503 +- 154504 +- 154505 +- 154506 +- 154507 +Description: Knightfall +GMNotes: '' +GUID: 3106e6 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Set Aside +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 1.69650078 + posY: 1.636754 + posZ: 14.2788019 + rotX: 359.95517 + rotY: 224.997971 + rotZ: 0.06865945 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Knightfall df62e8/Deck Toxin d306b8.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Knightfall df62e8/Deck Toxin d306b8.yaml new file mode 100644 index 000000000..2a0db22bb --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Knightfall df62e8/Deck Toxin d306b8.yaml @@ -0,0 +1,463 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 149207 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1132': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359956584/FA57949A7C36D7A390FA0986F36B68D55175AA53/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359957024/1E913D4986E40250C3A8C313937CFDF0827CB5F4/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 75dbc1 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 15.7480907 + posY: 1.16229987 + posZ: 14.6140718 + rotX: -0.00073775294 + rotY: 180.000214 + rotZ: 179.999741 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 149231 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1132': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359956584/FA57949A7C36D7A390FA0986F36B68D55175AA53/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359957024/1E913D4986E40250C3A8C313937CFDF0827CB5F4/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 70647e + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 8.615725 + posY: 1.4065696 + posZ: 8.9533205 + rotX: -0.001174914 + rotY: 179.972046 + rotZ: 177.013885 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 149235 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1132': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359956584/FA57949A7C36D7A390FA0986F36B68D55175AA53/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359957024/1E913D4986E40250C3A8C313937CFDF0827CB5F4/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 38075d + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 9.146199 + posY: 1.48491049 + posZ: 8.997354 + rotX: 359.9942 + rotY: 179.968842 + rotZ: 187.9016 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 149232 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1132': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359956584/FA57949A7C36D7A390FA0986F36B68D55175AA53/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359957024/1E913D4986E40250C3A8C313937CFDF0827CB5F4/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 0d7c1b + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 7.899058 + posY: 1.37155509 + posZ: 9.333591 + rotX: 358.769073 + rotY: 180.022842 + rotZ: 177.845932 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 149225 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1132': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359956584/FA57949A7C36D7A390FA0986F36B68D55175AA53/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359957024/1E913D4986E40250C3A8C313937CFDF0827CB5F4/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 372d32 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 7.99807644 + posY: 1.37407672 + posZ: 8.966524 + rotX: 358.9756 + rotY: 180.017212 + rotZ: 178.069489 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 149234 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1132': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359956584/FA57949A7C36D7A390FA0986F36B68D55175AA53/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359957024/1E913D4986E40250C3A8C313937CFDF0827CB5F4/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 710beb + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 7.82523155 + posY: 1.366193 + posZ: 8.972555 + rotX: 358.947266 + rotY: 180.019241 + rotZ: 177.767166 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 149233 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1132': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359956584/FA57949A7C36D7A390FA0986F36B68D55175AA53/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359957024/1E913D4986E40250C3A8C313937CFDF0827CB5F4/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: c0c305 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 8.836387 + posY: 1.56173515 + posZ: 8.962085 + rotX: 359.498871 + rotY: 179.999237 + rotZ: 180.366882 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 149230 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1132': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359956584/FA57949A7C36D7A390FA0986F36B68D55175AA53/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359957024/1E913D4986E40250C3A8C313937CFDF0827CB5F4/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 0997b0 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 8.700943 + posY: 1.416803 + posZ: 8.654744 + rotX: 0.0553629845 + rotY: 179.998734 + rotZ: 179.512146 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 149236 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1132': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359956584/FA57949A7C36D7A390FA0986F36B68D55175AA53/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359957024/1E913D4986E40250C3A8C313937CFDF0827CB5F4/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: '379745' + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 8.992188 + posY: 1.26970685 + posZ: 8.840597 + rotX: 359.892822 + rotY: 180.000549 + rotZ: 179.537735 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 149224 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1132': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359956584/FA57949A7C36D7A390FA0986F36B68D55175AA53/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359957024/1E913D4986E40250C3A8C313937CFDF0827CB5F4/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 022c93 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 8.468398 + posY: 1.23334885 + posZ: 8.541715 + rotX: 359.939728 + rotY: 179.997208 + rotZ: 180.026138 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '1492': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359956584/FA57949A7C36D7A390FA0986F36B68D55175AA53/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359957024/1E913D4986E40250C3A8C313937CFDF0827CB5F4/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 149207 +- 149231 +- 149235 +- 149232 +- 149225 +- 149234 +- 149233 +- 149230 +- 149236 +- 149224 +Description: Knightfall +GMNotes: '' +GUID: d306b8 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Toxin +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -12.4062 + posY: 1.67903364 + posZ: 12.7949 + rotX: 359.9201 + rotY: 269.985657 + rotZ: 180.016891 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Knightfall df62e8/DeckCustom Encounter Deck 9d4e42.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Knightfall df62e8/DeckCustom Encounter Deck 9d4e42.yaml new file mode 100644 index 000000000..1432196ab --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Knightfall df62e8/DeckCustom Encounter Deck 9d4e42.yaml @@ -0,0 +1,883 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 149240 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: 063ef8 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.23126335e-08 + posY: 1.24493062 + posZ: -2.520262e-07 + rotX: -1.48562648e-07 + rotY: 180.0 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 149241 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: 063ef8 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.23126335e-08 + posY: 1.24493062 + posZ: -2.520262e-07 + rotX: -1.48562648e-07 + rotY: 180.0 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 149243 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: 063ef8 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.23126335e-08 + posY: 1.24493062 + posZ: -2.520262e-07 + rotX: -1.48562648e-07 + rotY: 180.0 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 149252 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: 063ef8 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.23126335e-08 + posY: 1.24493062 + posZ: -2.520262e-07 + rotX: -1.48562648e-07 + rotY: 180.0 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 149229 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: 063ef8 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.23126335e-08 + posY: 1.24493062 + posZ: -2.520262e-07 + rotX: -1.48562648e-07 + rotY: 180.0 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 149254 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: 063ef8 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.23126335e-08 + posY: 1.24493062 + posZ: -2.520262e-07 + rotX: -1.48562648e-07 + rotY: 180.0 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 149249 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: 063ef8 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.23126335e-08 + posY: 1.24493062 + posZ: -2.520262e-07 + rotX: -1.48562648e-07 + rotY: 180.0 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 149251 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: 063ef8 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.23126335e-08 + posY: 1.24493062 + posZ: -2.520262e-07 + rotX: -1.48562648e-07 + rotY: 180.0 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 149244 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: 063ef8 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.23126335e-08 + posY: 1.24493062 + posZ: -2.520262e-07 + rotX: -1.48562648e-07 + rotY: 180.0 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 149250 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: 063ef8 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.23126335e-08 + posY: 1.24493062 + posZ: -2.520262e-07 + rotX: -1.48562648e-07 + rotY: 180.0 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 149227 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: 063ef8 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.23126335e-08 + posY: 1.24493062 + posZ: -2.520262e-07 + rotX: -1.48562648e-07 + rotY: 180.0 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 149246 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: 063ef8 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.23126335e-08 + posY: 1.24493062 + posZ: -2.520262e-07 + rotX: -1.48562648e-07 + rotY: 180.0 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 149256 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: 063ef8 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.23126335e-08 + posY: 1.24493062 + posZ: -2.520262e-07 + rotX: -1.48562648e-07 + rotY: 180.0 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 149247 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: 063ef8 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.23126335e-08 + posY: 1.24493062 + posZ: -2.520262e-07 + rotX: -1.48562648e-07 + rotY: 180.0 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 149253 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: 063ef8 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.23126335e-08 + posY: 1.24493062 + posZ: -2.520262e-07 + rotX: -1.48562648e-07 + rotY: 180.0 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 149242 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: 063ef8 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.23126335e-08 + posY: 1.24493062 + posZ: -2.520262e-07 + rotX: -1.48562648e-07 + rotY: 180.0 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 149239 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: 063ef8 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.23126335e-08 + posY: 1.24493062 + posZ: -2.520262e-07 + rotX: -1.48562648e-07 + rotY: 180.0 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 149226 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: 063ef8 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.23126335e-08 + posY: 1.24493062 + posZ: -2.520262e-07 + rotX: -1.48562648e-07 + rotY: 180.0 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 149245 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: 063ef8 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.23126335e-08 + posY: 1.24493062 + posZ: -2.520262e-07 + rotX: -1.48562648e-07 + rotY: 180.0 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 149237 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: 063ef8 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.23126335e-08 + posY: 1.24493062 + posZ: -2.520262e-07 + rotX: -1.48562648e-07 + rotY: 180.0 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 149255 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: 063ef8 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.23126335e-08 + posY: 1.24493062 + posZ: -2.520262e-07 + rotX: -1.48562648e-07 + rotY: 180.0 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 149248 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: 063ef8 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.23126335e-08 + posY: 1.24493062 + posZ: -2.520262e-07 + rotX: -1.48562648e-07 + rotY: 180.0 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 149228 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: 063ef8 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.23126335e-08 + posY: 1.24493062 + posZ: -2.520262e-07 + rotX: -1.48562648e-07 + rotY: 180.0 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 149238 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: 063ef8 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.23126335e-08 + posY: 1.24493062 + posZ: -2.520262e-07 + rotX: -1.48562648e-07 + rotY: 180.0 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '1492': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359956584/FA57949A7C36D7A390FA0986F36B68D55175AA53/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359957024/1E913D4986E40250C3A8C313937CFDF0827CB5F4/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 149240 +- 149241 +- 149243 +- 149252 +- 149229 +- 149254 +- 149249 +- 149251 +- 149244 +- 149250 +- 149227 +- 149246 +- 149256 +- 149247 +- 149253 +- 149242 +- 149239 +- 149226 +- 149245 +- 149237 +- 149255 +- 149248 +- 149228 +- 149238 +Description: Knightfall +GMNotes: '' +GUID: 9d4e42 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: DeckCustom +Nickname: Encounter Deck +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.92740083 + posY: 1.73973274 + posZ: 5.7571 + rotX: 359.919739 + rotY: 269.985718 + rotZ: 180.016861 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Last Call at Roxie's c6a1ca.ttslua b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Last Call at Roxie's c6a1ca.ttslua new file mode 100644 index 000000000..46067f58e --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Last Call at Roxie's c6a1ca.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.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.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 791837/Custom_Model_Bag Last Call at Roxie's c6a1ca.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Last Call at Roxie's c6a1ca.yaml new file mode 100644 index 000000000..ec8155cb1 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Last Call at Roxie's c6a1ca.yaml @@ -0,0 +1,87 @@ +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 Last Call at Roxie''s c6a1ca/Custom_Model_Bag Set-aside + a45247.yaml' +- !include 'Custom_Model_Bag Last Call at Roxie''s c6a1ca/DeckCustom Encounter Deck + a08fa0.yaml' +- !include 'Custom_Model_Bag Last Call at Roxie''s c6a1ca/Deck Agenda Deck b1d40e.yaml' +- !include 'Custom_Model_Bag Last Call at Roxie''s c6a1ca/Deck Act Deck 6f1e9e.yaml' +- !include 'Custom_Model_Bag Last Call at Roxie''s c6a1ca/Card Scenario 05dd0a.yaml' +- !include 'Custom_Model_Bag Last Call at Roxie''s c6a1ca/Deck Setup 7a4949.yaml' +- !include 'Custom_Model_Bag Last Call at Roxie''s c6a1ca/Deck Enhancements 0df520.yaml' +- !include 'Custom_Model_Bag Last Call at Roxie''s c6a1ca/Card 11a797.yaml' +- !include 'Custom_Model_Bag Last Call at Roxie''s c6a1ca/Card b8ca38.yaml' +- !include 'Custom_Model_Bag Last Call at Roxie''s c6a1ca/Card a137d8.yaml' +- !include 'Custom_Model_Bag Last Call at Roxie''s c6a1ca/Card Street Peddler 43390e.yaml' +- !include 'Custom_Model_Bag Last Call at Roxie''s c6a1ca/Card 9c6ccd.yaml' +- !include 'Custom_Model_Bag Last Call at Roxie''s c6a1ca/Card 5ee55d.yaml' +- !include 'Custom_Model_Bag Last Call at Roxie''s c6a1ca/Custom_Tile e3aa6a.yaml' +- !include 'Custom_Model_Bag Last Call at Roxie''s c6a1ca/Custom_Tile 7a4b8e.yaml' +- !include 'Custom_Model_Bag Last Call at Roxie''s c6a1ca/Custom_Tile e78e52.yaml' +- !include 'Custom_Model_Bag Last Call at Roxie''s c6a1ca/Custom_Tile 30c8b6.yaml' +- !include 'Custom_Model_Bag Last Call at Roxie''s c6a1ca/Custom_Tile 3b6690.yaml' +- !include 'Custom_Model_Bag Last Call at Roxie''s c6a1ca/Custom_Tile 29a427.yaml' +- !include 'Custom_Model_Bag Last Call at Roxie''s c6a1ca/Custom_Tile 7234af.yaml' +- !include 'Custom_Model_Bag Last Call at Roxie''s c6a1ca/Custom_Tile 49232a.yaml' +- !include 'Custom_Model_Bag Last Call at Roxie''s c6a1ca/Custom_Tile ffeff3.yaml' +- !include 'Custom_Model_Bag Last Call at Roxie''s c6a1ca/Card d60ed8.yaml' +- !include 'Custom_Model_Bag Last Call at Roxie''s c6a1ca/Card Scenario eb5dd9.yaml' +- !include 'Custom_Model_Bag Last Call at Roxie''s c6a1ca/Custom_Tile Last Call at + Roxie''s 567db0.yaml' +CustomMesh: + CastShadows: true + ColliderURL: '' + Convex: true + DiffuseURL: http://cloud-3.steamusercontent.com/ugc/798737729142938527/354E6204BB01AED91EAEB19D99E4D95620F99C56/ + MaterialIndex: 3 + MeshURL: https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj + NormalURL: '' + TypeIndex: 6 +Description: An Android Universe crossover adventure +GMNotes: '' +GUID: c6a1ca +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Model_Bag Last Call at Roxie''s c6a1ca.ttslua' +LuaScriptState: '{"ml":{"05dd0a":{"lock":false,"pos":{"x":-3.956,"y":1.6556,"z":-10.4412},"rot":{"x":359.9197,"y":269.9998,"z":0.0168}},"0df520":{"lock":false,"pos":{"x":-11.4769,"y":1.6694,"z":7.3277},"rot":{"x":359.9201,"y":269.9876,"z":0.0169}},"11a797":{"lock":false,"pos":{"x":-17.12,"y":1.6793,"z":7.57},"rot":{"x":359.9201,"y":269.9999,"z":0.0169}},"29a427":{"lock":false,"pos":{"x":-23.6765,"y":1.6157,"z":3.86},"rot":{"x":359.9831,"y":-0.0032,"z":359.9201}},"30c8b6":{"lock":false,"pos":{"x":-20.4245,"y":1.6099,"z":-0.3109},"rot":{"x":359.9201,"y":270.0001,"z":0.0169}},"3b6690":{"lock":false,"pos":{"x":-20.3057,"y":1.6086,"z":-3.9972},"rot":{"x":359.9554,"y":224.9999,"z":0.0684}},"43390e":{"lock":false,"pos":{"x":-25.129,"y":1.809,"z":-1.3516},"rot":{"x":359.9271,"y":270.0207,"z":6.3789}},"49232a":{"lock":false,"pos":{"x":-26.9264,"y":1.619,"z":-0.0365},"rot":{"x":359.9201,"y":269.9999,"z":0.0169}},"567db0":{"lock":false,"pos":{"x":-3.974,"y":1.5826,"z":-15.0374},"rot":{"x":359.9197,"y":270.0023,"z":0.0168}},"5ee55d":{"lock":false,"pos":{"x":-17.12,"y":1.6771,"z":-0.03},"rot":{"x":359.9201,"y":269.9988,"z":0.0169}},"6f1e9e":{"lock":false,"pos":{"x":-2.6885,"y":1.6535,"z":-5.0485},"rot":{"x":0.0169,"y":179.9695,"z":0.0802}},"7234af":{"lock":false,"pos":{"x":-23.6765,"y":1.6134,"z":-3.83},"rot":{"x":359.9828,"y":-0.0032,"z":359.9266}},"7a4949":{"lock":false,"pos":{"x":-11.176,"y":1.6668,"z":-0.012},"rot":{"x":359.9201,"y":270.0181,"z":0.0169}},"7a4b8e":{"lock":false,"pos":{"x":-20.0769,"y":1.6117,"z":7.4094},"rot":{"x":359.9201,"y":270.0001,"z":0.0169}},"9c6ccd":{"lock":false,"pos":{"x":-23.6765,"y":1.684,"z":-7.7},"rot":{"x":359.9201,"y":269.9999,"z":0.0169}},"a08fa0":{"lock":false,"pos":{"x":-3.9277,"y":1.7237,"z":5.7571},"rot":{"x":359.9197,"y":269.9998,"z":180.0168}},"a137d8":{"lock":false,"pos":{"x":-23.6764,"y":1.6863,"z":-0.0301},"rot":{"x":359.921,"y":269.9989,"z":0.019}},"a45247":{"lock":false,"pos":{"x":1.6966,"y":1.5583,"z":14.2781},"rot":{"x":359.9551,"y":225.017,"z":0.0687}},"b1d40e":{"lock":false,"pos":{"x":-2.7247,"y":1.664,"z":0.3733},"rot":{"x":0.0168,"y":180.0068,"z":0.0803}},"b8ca38":{"lock":false,"pos":{"x":-23.6765,"y":1.6885,"z":7.5699},"rot":{"x":359.9201,"y":269.9985,"z":0.0169}},"d60ed8":{"lock":false,"pos":{"x":-30.2242,"y":1.6954,"z":-0.03},"rot":{"x":359.9201,"y":269.9992,"z":0.0169}},"e3aa6a":{"lock":false,"pos":{"x":-17.1199,"y":1.6065,"z":3.86},"rot":{"x":359.9831,"y":-0.0033,"z":359.92}},"e78e52":{"lock":false,"pos":{"x":-20.229,"y":1.6108,"z":3.6702},"rot":{"x":359.9316,"y":315.0001,"z":359.9554}},"eb5dd9":{"lock":false,"pos":{"x":-50.9244,"y":1.7266,"z":8.1784},"rot":{"x":359.9201,"y":269.9998,"z":0.0169}},"ffeff3":{"lock":false,"pos":{"x":-27.1788,"y":1.6183,"z":-3.7526},"rot":{"x":359.9315,"y":314.8558,"z":359.9556}}}}' +MaterialIndex: -1 +MeshIndex: -1 +Name: Custom_Model_Bag +Nickname: Last Call at Roxie's +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 11.1920233 + posY: 4.388476 + posZ: -105.42878 + rotX: -6.24488735e-07 + rotY: 269.999939 + rotZ: 0.01814819 + scaleX: 2.21 + scaleY: 0.2 + scaleZ: 2.46 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Last Call at Roxie's c6a1ca/Card 11a797.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Last Call at Roxie's c6a1ca/Card 11a797.yaml new file mode 100644 index 000000000..7818fd9ff --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Last Call at Roxie's c6a1ca/Card 11a797.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 12907 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '129': + BackIsHidden: true + BackURL: https://i.imgur.com/wvJAGof.jpg/ + FaceURL: https://i.imgur.com/7QevfLJ.jpg/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 11a797 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -17.12 + posY: 1.67931569 + posZ: 7.57 + rotX: 359.9201 + rotY: 269.9999 + rotZ: 0.0168767478 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Last Call at Roxie's c6a1ca/Card 5ee55d.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Last Call at Roxie's c6a1ca/Card 5ee55d.yaml new file mode 100644 index 000000000..cc955e51d --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Last Call at Roxie's c6a1ca/Card 5ee55d.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 12905 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '129': + BackIsHidden: true + BackURL: https://i.imgur.com/wvJAGof.jpg/ + FaceURL: https://i.imgur.com/7QevfLJ.jpg/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 5ee55d +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -17.1199989 + posY: 1.67707777 + posZ: -0.0300003663 + rotX: 359.9201 + rotY: 269.9988 + rotZ: 0.0168785974 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Last Call at Roxie's c6a1ca/Card 9c6ccd.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Last Call at Roxie's c6a1ca/Card 9c6ccd.yaml new file mode 100644 index 000000000..6e58207f9 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Last Call at Roxie's c6a1ca/Card 9c6ccd.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 12909 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '129': + BackIsHidden: true + BackURL: https://i.imgur.com/wvJAGof.jpg/ + FaceURL: https://i.imgur.com/7QevfLJ.jpg/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 9c6ccd +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -23.6765 + posY: 1.68396187 + posZ: -7.70000029 + rotX: 359.9201 + rotY: 269.999847 + rotZ: 0.01687643 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Last Call at Roxie's c6a1ca/Card a137d8.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Last Call at Roxie's c6a1ca/Card a137d8.yaml new file mode 100644 index 000000000..4ba40822f --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Last Call at Roxie's c6a1ca/Card a137d8.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 12910 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '129': + BackIsHidden: true + BackURL: https://i.imgur.com/wvJAGof.jpg/ + FaceURL: https://i.imgur.com/7QevfLJ.jpg/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: a137d8 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -23.6763973 + posY: 1.686289 + posZ: -0.0300964359 + rotX: 359.921 + rotY: 269.999 + rotZ: 0.01910232 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Last Call at Roxie's c6a1ca/Card b8ca38.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Last Call at Roxie's c6a1ca/Card b8ca38.yaml new file mode 100644 index 000000000..2254b01b1 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Last Call at Roxie's c6a1ca/Card b8ca38.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 12908 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '129': + BackIsHidden: true + BackURL: https://i.imgur.com/wvJAGof.jpg/ + FaceURL: https://i.imgur.com/7QevfLJ.jpg/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: b8ca38 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -23.6764984 + posY: 1.6884582 + posZ: 7.56989861 + rotX: 359.9201 + rotY: 269.998474 + rotZ: 0.0168790016 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Last Call at Roxie's c6a1ca/Card d60ed8.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Last Call at Roxie's c6a1ca/Card d60ed8.yaml new file mode 100644 index 000000000..2071e8610 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Last Call at Roxie's c6a1ca/Card d60ed8.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 12906 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '129': + BackIsHidden: true + BackURL: https://i.imgur.com/wvJAGof.jpg/ + FaceURL: https://i.imgur.com/7QevfLJ.jpg/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: d60ed8 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -30.2242 + posY: 1.69535065 + posZ: -0.03000026 + rotX: 359.9201 + rotY: 269.9992 + rotZ: 0.0168773755 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Last Call at Roxie's c6a1ca/Card Scenario 05dd0a.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Last Call at Roxie's c6a1ca/Card Scenario 05dd0a.yaml new file mode 100644 index 000000000..c157b2d83 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Last Call at Roxie's c6a1ca/Card Scenario 05dd0a.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 12904 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '129': + BackIsHidden: true + BackURL: https://i.imgur.com/wvJAGof.jpg/ + FaceURL: https://i.imgur.com/7QevfLJ.jpg/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 05dd0a +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Scenario +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.95600033 + posY: 1.65564823 + posZ: -10.4412012 + rotX: 359.919739 + rotY: 269.9998 + rotZ: 0.0168412253 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Last Call at Roxie's c6a1ca/Card Scenario eb5dd9.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Last Call at Roxie's c6a1ca/Card Scenario eb5dd9.yaml new file mode 100644 index 000000000..039bdba45 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Last Call at Roxie's c6a1ca/Card Scenario eb5dd9.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 12904 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '129': + BackIsHidden: true + BackURL: https://i.imgur.com/wvJAGof.jpg/ + FaceURL: https://i.imgur.com/7QevfLJ.jpg/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: eb5dd9 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Scenario +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -50.9244 + posY: 1.72662532 + posZ: 8.1784 + rotX: 359.9201 + rotY: 269.9998 + rotZ: 0.0168764479 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Last Call at Roxie's c6a1ca/Card Street Peddler 43390e.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Last Call at Roxie's c6a1ca/Card Street Peddler 43390e.yaml new file mode 100644 index 000000000..61789b17e --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Last Call at Roxie's c6a1ca/Card Street Peddler 43390e.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 12800 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '128': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/Gz7Yegn.jpg/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 43390e +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Street Peddler +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -25.1290073 + posY: 1.80903685 + posZ: -1.35160255 + rotX: 359.927826 + rotY: 270.020477 + rotZ: 6.377547 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Last Call at Roxie's c6a1ca/Custom_Model_Bag Set-aside a45247.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Last Call at Roxie's c6a1ca/Custom_Model_Bag Set-aside a45247.yaml new file mode 100644 index 000000000..71e9d4d19 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Last Call at Roxie's c6a1ca/Custom_Model_Bag Set-aside a45247.yaml @@ -0,0 +1,57 @@ +Autoraise: true +ColorDiffuse: + b: 0.02148666 + g: 0.00100758043 + r: 0.02148666 +ContainedObjects: +- !include 'Custom_Model_Bag Set-aside a45247/Deck Clearance dc5ee3.yaml' +- !include 'Custom_Model_Bag Set-aside a45247/Deck Suspects b23c22.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: '' +GMNotes: '' +GUID: a45247 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +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.69660079 + posY: 1.55831635 + posZ: 14.278101 + rotX: 359.9551 + rotY: 225.016983 + rotZ: 0.06865779 + scaleX: 2.0 + scaleY: 2.0 + scaleZ: 2.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Last Call at Roxie's c6a1ca/Custom_Model_Bag Set-aside a45247/Deck Clearance dc5ee3.yaml new file mode 100644 index 000000000..53a8b3267 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Last Call at Roxie's c6a1ca/Custom_Model_Bag Set-aside a45247/Deck Clearance dc5ee3.yaml @@ -0,0 +1,129 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 13005 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '130': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: https://i.imgur.com/fqKElGj.jpg/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 732e37 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.843127 + posY: 1.56112087 + posZ: 13.7205582 + rotX: 359.914948 + rotY: 269.998871 + rotZ: 0.0158144459 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 13004 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '130': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: https://i.imgur.com/fqKElGj.jpg/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 2ed2a5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.91603327 + posY: 1.70172131 + posZ: 13.5475368 + rotX: 359.934784 + rotY: 270.000366 + rotZ: 0.0141178165 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '130': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: https://i.imgur.com/fqKElGj.jpg/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 13005 +- 13004 +Description: '' +GMNotes: '' +GUID: dc5ee3 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Clearance +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 3.59242415 + posY: 3.60805917 + posZ: 8.270755 + rotX: 359.916779 + rotY: 269.999268 + rotZ: 0.0133015988 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Last Call at Roxie's c6a1ca/Custom_Model_Bag Set-aside a45247/Deck Suspects b23c22.yaml new file mode 100644 index 000000000..f046aa9fb --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Last Call at Roxie's c6a1ca/Custom_Model_Bag Set-aside a45247/Deck Suspects b23c22.yaml @@ -0,0 +1,179 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 12500 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '125': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/ncMudzC.jpg/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 91af93 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.23120165 + posY: 1.55512762 + posZ: 21.87164 + rotX: 359.918182 + rotY: 269.9992 + rotZ: 0.0163576361 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12801 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '128': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/Gz7Yegn.jpg/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 07dda2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.07387638 + posY: 1.69603741 + posZ: 22.1330357 + rotX: 359.911926 + rotY: 269.998 + rotZ: -0.00181935041 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12803 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '128': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/Gz7Yegn.jpg/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: a52b06 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.30136919 + posY: 1.71284938 + posZ: 21.33254 + rotX: 359.9324 + rotY: 269.993469 + rotZ: 0.0327264778 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '125': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/ncMudzC.jpg/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '128': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/Gz7Yegn.jpg/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 12500 +- 12801 +- 12803 +Description: '' +GMNotes: '' +GUID: b23c22 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Suspects +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 3.05753922 + posY: 3.60144567 + posZ: 8.483906 + rotX: 359.920258 + rotY: 269.9743 + rotZ: 0.0210171454 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Last Call at Roxie's c6a1ca/Custom_Tile 29a427.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Last Call at Roxie's c6a1ca/Custom_Tile 29a427.yaml new file mode 100644 index 000000000..0a818821a --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Last Call at Roxie's c6a1ca/Custom_Tile 29a427.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 29a427 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.6765 + posY: 1.61565232 + posZ: 3.86000013 + rotX: 359.983124 + rotY: -0.00316930166 + rotZ: 359.920074 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Last Call at Roxie's c6a1ca/Custom_Tile 30c8b6.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Last Call at Roxie's c6a1ca/Custom_Tile 30c8b6.yaml new file mode 100644 index 000000000..154db9b57 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Last Call at Roxie's c6a1ca/Custom_Tile 30c8b6.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 30c8b6 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.4245 + posY: 1.60988939 + posZ: -0.3109003 + rotX: 359.9201 + rotY: 270.000031 + rotZ: 0.01690036 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Last Call at Roxie's c6a1ca/Custom_Tile 3b6690.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Last Call at Roxie's c6a1ca/Custom_Tile 3b6690.yaml new file mode 100644 index 000000000..8b53a627f --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Last Call at Roxie's c6a1ca/Custom_Tile 3b6690.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 3b6690 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.3057 + posY: 1.60863817 + posZ: -3.9972 + rotX: 359.955444 + rotY: 224.999924 + rotZ: 0.0684035644 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Last Call at Roxie's c6a1ca/Custom_Tile 49232a.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Last Call at Roxie's c6a1ca/Custom_Tile 49232a.yaml new file mode 100644 index 000000000..b65e4a80f --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Last Call at Roxie's c6a1ca/Custom_Tile 49232a.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 49232a +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.9264 + posY: 1.61903656 + posZ: -0.0365002379 + rotX: 359.9201 + rotY: 269.999939 + rotZ: 0.0169000942 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Last Call at Roxie's c6a1ca/Custom_Tile 7234af.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Last Call at Roxie's c6a1ca/Custom_Tile 7234af.yaml new file mode 100644 index 000000000..d0ccf5f8b --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Last Call at Roxie's c6a1ca/Custom_Tile 7234af.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 7234af +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.6765 + posY: 1.61338806 + posZ: -3.83000016 + rotX: 359.983124 + rotY: -0.0031683126 + rotZ: 359.920044 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Last Call at Roxie's c6a1ca/Custom_Tile 7a4b8e.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Last Call at Roxie's c6a1ca/Custom_Tile 7a4b8e.yaml new file mode 100644 index 000000000..6abee54f4 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Last Call at Roxie's c6a1ca/Custom_Tile 7a4b8e.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 7a4b8e +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.0769 + posY: 1.611678 + posZ: 7.4094 + rotX: 359.9201 + rotY: 270.0 + rotZ: 0.016898321 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Last Call at Roxie's c6a1ca/Custom_Tile e3aa6a.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Last Call at Roxie's c6a1ca/Custom_Tile e3aa6a.yaml new file mode 100644 index 000000000..f997e4d6c --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Last Call at Roxie's c6a1ca/Custom_Tile e3aa6a.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: e3aa6a +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.1198978 + posY: 1.60650969 + posZ: 3.86 + rotX: 359.983124 + rotY: -0.00314913 + rotZ: 359.920044 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Last Call at Roxie's c6a1ca/Custom_Tile e78e52.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Last Call at Roxie's c6a1ca/Custom_Tile e78e52.yaml new file mode 100644 index 000000000..d1965e140 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Last Call at Roxie's c6a1ca/Custom_Tile e78e52.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: e78e52 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.229 + posY: 1.61078918 + posZ: 3.67020059 + rotX: 359.93158 + rotY: 315.000153 + rotZ: 359.955444 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Last Call at Roxie's c6a1ca/Custom_Tile ffeff3.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Last Call at Roxie's c6a1ca/Custom_Tile ffeff3.yaml new file mode 100644 index 000000000..f4a976bef --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Last Call at Roxie's c6a1ca/Custom_Tile ffeff3.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: ffeff3 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.1788 + posY: 1.61829448 + posZ: -3.75260019 + rotX: 359.931458 + rotY: 314.855835 + rotZ: 359.9556 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Last Call at Roxie's c6a1ca/Custom_Tile Last Call at Roxie's 567db0.ttslua new file mode 100644 index 000000000..5206cda4e --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Last Call at Roxie's c6a1ca/Custom_Tile Last Call at Roxie's 567db0.ttslua @@ -0,0 +1,21 @@ +name = 'Last Call at Roxies' + +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 The Side Missions 791837/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 791837/Custom_Model_Bag Last Call at Roxie's c6a1ca/Custom_Tile Last Call at Roxie's 567db0.yaml new file mode 100644 index 000000000..fbd864033 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Last Call at Roxie's c6a1ca/Custom_Tile Last Call at Roxie's 567db0.yaml @@ -0,0 +1,42 @@ +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 +GMNotes: '' +GUID: 567db0 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Tile Last Call at Roxie''s 567db0.ttslua' +LuaScriptState: '' +Name: Custom_Tile +Nickname: Last Call at Roxie's +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.97400069 + posY: 1.58260918 + posZ: -15.0374022 + rotX: 359.919739 + rotY: 270.002319 + rotZ: 0.0168346148 + scaleX: 2.2 + scaleY: 1.0 + scaleZ: 2.2 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Last Call at Roxie's c6a1ca/Deck Act Deck 6f1e9e.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Last Call at Roxie's c6a1ca/Deck Act Deck 6f1e9e.yaml new file mode 100644 index 000000000..100801f6e --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Last Call at Roxie's c6a1ca/Deck Act Deck 6f1e9e.yaml @@ -0,0 +1,215 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 12705 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/WzBZpsw.jpg/ + FaceURL: https://i.imgur.com/U5igiJs.jpg/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 2b429c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -0.116652526 + posY: 1.56270432 + posZ: 32.100914 + rotX: 0.010274739 + rotY: 180.001053 + rotZ: 0.07856367 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12704 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/WzBZpsw.jpg/ + FaceURL: https://i.imgur.com/U5igiJs.jpg/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 0b7f28 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -0.437555671 + posY: 1.70337653 + posZ: 31.8499413 + rotX: 0.0304926336 + rotY: 179.998154 + rotZ: 0.03190933 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12703 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/WzBZpsw.jpg/ + FaceURL: https://i.imgur.com/U5igiJs.jpg/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 5ab3d7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -0.211492732 + posY: 1.720972 + posZ: 31.7865448 + rotX: 0.00466556 + rotY: 179.854874 + rotZ: 0.172695726 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12702 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/WzBZpsw.jpg/ + FaceURL: https://i.imgur.com/U5igiJs.jpg/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 0e3bd3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -0.192752779 + posY: 1.7071656 + posZ: 31.9357376 + rotX: 0.0130153373 + rotY: 180.001312 + rotZ: 0.0525190942 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/WzBZpsw.jpg/ + FaceURL: https://i.imgur.com/U5igiJs.jpg/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 12705 +- 12704 +- 12703 +- 12702 +Description: '' +GMNotes: '' +GUID: 6f1e9e +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Act Deck +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.6885 + posY: 1.65349448 + posZ: -5.04850054 + rotX: 0.01687773 + rotY: 179.9695 + rotZ: 0.08024868 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Last Call at Roxie's c6a1ca/Deck Agenda Deck b1d40e.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Last Call at Roxie's c6a1ca/Deck Agenda Deck b1d40e.yaml new file mode 100644 index 000000000..4191182ce --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Last Call at Roxie's c6a1ca/Deck Agenda Deck b1d40e.yaml @@ -0,0 +1,127 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 12701 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/WzBZpsw.jpg/ + FaceURL: https://i.imgur.com/U5igiJs.jpg/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 5568fe + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.10877156 + posY: 1.17696273 + posZ: -4.851211 + rotX: -1.94671229e-05 + rotY: 89.99973 + rotZ: 0.00358195114 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12700 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/WzBZpsw.jpg/ + FaceURL: https://i.imgur.com/U5igiJs.jpg/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 0e3bd3 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.42304754 + posY: 1.03171408 + posZ: -4.80378 + rotX: 3.61451e-05 + rotY: 90.01396 + rotZ: -1.24498965e-05 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '127': + BackIsHidden: true + BackURL: https://i.imgur.com/WzBZpsw.jpg/ + FaceURL: https://i.imgur.com/U5igiJs.jpg/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 12701 +- 12700 +Description: '' +GMNotes: '' +GUID: b1d40e +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Agenda Deck +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.7247 + posY: 1.66397738 + posZ: 0.373300344 + rotX: 0.0168255828 + rotY: 180.00679 + rotZ: 0.080260016 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Last Call at Roxie's c6a1ca/Deck Enhancements 0df520.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Last Call at Roxie's c6a1ca/Deck Enhancements 0df520.yaml new file mode 100644 index 000000000..f74bd9770 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Last Call at Roxie's c6a1ca/Deck Enhancements 0df520.yaml @@ -0,0 +1,215 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 13003 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '130': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: https://i.imgur.com/fqKElGj.jpg/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 732e37 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -0.336313725 + posY: 1.55834615 + posZ: 16.095623 + rotX: 359.915253 + rotY: 269.999878 + rotZ: 0.0142605444 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 13002 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '130': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: https://i.imgur.com/fqKElGj.jpg/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: c3fd3e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -0.22888054 + posY: 1.69833732 + posZ: 16.5829182 + rotX: 359.931641 + rotY: 269.999573 + rotZ: 359.940582 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 13001 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '130': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: https://i.imgur.com/fqKElGj.jpg/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 3cc600 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -0.187149167 + posY: 1.71634185 + posZ: 16.0094242 + rotX: 359.93338 + rotY: 269.999939 + rotZ: 0.0150948269 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 13000 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '130': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: https://i.imgur.com/fqKElGj.jpg/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 732e37 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.07729776 + posY: 1.70260918 + posZ: 16.24317 + rotX: 359.88147 + rotY: 270.033234 + rotZ: 0.0339583047 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '130': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: https://i.imgur.com/fqKElGj.jpg/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 13003 +- 13002 +- 13001 +- 13000 +Description: '' +GMNotes: '' +GUID: 0df520 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Enhancements +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -11.4768991 + posY: 1.66941249 + posZ: 7.327699 + rotX: 359.9201 + rotY: 269.987549 + rotZ: 0.016893968 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Last Call at Roxie's c6a1ca/Deck Setup 7a4949.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Last Call at Roxie's c6a1ca/Deck Setup 7a4949.yaml new file mode 100644 index 000000000..1a13538aa --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Last Call at Roxie's c6a1ca/Deck Setup 7a4949.yaml @@ -0,0 +1,215 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 12903 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '129': + BackIsHidden: true + BackURL: https://i.imgur.com/wvJAGof.jpg/ + FaceURL: https://i.imgur.com/7QevfLJ.jpg/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 05dd0a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -33.491806 + posY: 1.36223817 + posZ: -79.07912 + rotX: 0.0200351235 + rotY: 270.02 + rotZ: 0.0164319053 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12902 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '129': + BackIsHidden: true + BackURL: https://i.imgur.com/wvJAGof.jpg/ + FaceURL: https://i.imgur.com/7QevfLJ.jpg/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 1ade94 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -33.38035 + posY: 1.50262845 + posZ: -79.20104 + rotX: 0.0108424323 + rotY: 270.020081 + rotZ: 0.0174015462 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12901 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '129': + BackIsHidden: true + BackURL: https://i.imgur.com/wvJAGof.jpg/ + FaceURL: https://i.imgur.com/7QevfLJ.jpg/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 6099a7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -10.9842339 + posY: 1.83133781 + posZ: 0.839760959 + rotX: 359.9222 + rotY: 270.021759 + rotZ: -0.004365646 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12900 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '129': + BackIsHidden: true + BackURL: https://i.imgur.com/wvJAGof.jpg/ + FaceURL: https://i.imgur.com/7QevfLJ.jpg/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: dcaa61 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -11.2377653 + posY: 1.818019 + posZ: -0.416760832 + rotX: 359.93573 + rotY: 269.999939 + rotZ: 0.0121423909 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '129': + BackIsHidden: true + BackURL: https://i.imgur.com/wvJAGof.jpg/ + FaceURL: https://i.imgur.com/7QevfLJ.jpg/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 12903 +- 12902 +- 12901 +- 12900 +Description: '' +GMNotes: '' +GUID: 7a4949 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Setup +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -11.1759977 + posY: 1.66683161 + posZ: -0.0120006185 + rotX: 359.9201 + rotY: 270.018066 + rotZ: 0.0168511551 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Last Call at Roxie's c6a1ca/DeckCustom Encounter Deck a08fa0.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Last Call at Roxie's c6a1ca/DeckCustom Encounter Deck a08fa0.yaml new file mode 100644 index 000000000..05eb5a72e --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Last Call at Roxie's c6a1ca/DeckCustom Encounter Deck a08fa0.yaml @@ -0,0 +1,778 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 12804 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: 43390e + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 4.57895041 + posY: 1.09509015 + posZ: -4.92328644 + rotX: -5.06811957e-05 + rotY: 180.0 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12805 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: 43390e + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 4.57895041 + posY: 1.09509015 + posZ: -4.92328644 + rotX: -5.06811957e-05 + rotY: 180.0 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12806 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: 43390e + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 4.57895041 + posY: 1.09509015 + posZ: -4.92328644 + rotX: -5.06811957e-05 + rotY: 180.0 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12807 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: 43390e + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 4.57895041 + posY: 1.09509015 + posZ: -4.92328644 + rotX: -5.06811957e-05 + rotY: 180.0 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12808 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: 43390e + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 4.57895041 + posY: 1.09509015 + posZ: -4.92328644 + rotX: -5.06811957e-05 + rotY: 180.0 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12809 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: 43390e + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 4.57895041 + posY: 1.09509015 + posZ: -4.92328644 + rotX: -5.06811957e-05 + rotY: 180.0 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12810 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: 43390e + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 4.57895041 + posY: 1.09509015 + posZ: -4.92328644 + rotX: -5.06811957e-05 + rotY: 180.0 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12811 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: 43390e + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 4.57895041 + posY: 1.09509015 + posZ: -4.92328644 + rotX: -5.06811957e-05 + rotY: 180.0 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12812 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: 43390e + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 4.57895041 + posY: 1.09509015 + posZ: -4.92328644 + rotX: -5.06811957e-05 + rotY: 180.0 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12813 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: 43390e + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 4.57895041 + posY: 1.09509015 + posZ: -4.92328644 + rotX: -5.06811957e-05 + rotY: 180.0 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12814 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: 43390e + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 4.57895041 + posY: 1.09509015 + posZ: -4.92328644 + rotX: -5.06811957e-05 + rotY: 180.0 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12815 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: 43390e + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 4.57895041 + posY: 1.09509015 + posZ: -4.92328644 + rotX: -5.06811957e-05 + rotY: 180.0 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12816 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: 43390e + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 4.57895041 + posY: 1.09509015 + posZ: -4.92328644 + rotX: -5.06811957e-05 + rotY: 180.0 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12817 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: 43390e + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 4.57895041 + posY: 1.09509015 + posZ: -4.92328644 + rotX: -5.06811957e-05 + rotY: 180.0 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12818 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: 43390e + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 4.57895041 + posY: 1.09509015 + posZ: -4.92328644 + rotX: -5.06811957e-05 + rotY: 180.0 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12819 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: 43390e + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 4.57895041 + posY: 1.09509015 + posZ: -4.92328644 + rotX: -5.06811957e-05 + rotY: 180.0 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12820 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: 43390e + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 4.57895041 + posY: 1.09509015 + posZ: -4.92328644 + rotX: -5.06811957e-05 + rotY: 180.0 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12821 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: 43390e + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 4.57895041 + posY: 1.09509015 + posZ: -4.92328644 + rotX: -5.06811957e-05 + rotY: 180.0 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12822 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: 43390e + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 4.57895041 + posY: 1.09509015 + posZ: -4.92328644 + rotX: -5.06811957e-05 + rotY: 180.0 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12823 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: 43390e + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 4.57895041 + posY: 1.09509015 + posZ: -4.92328644 + rotX: -5.06811957e-05 + rotY: 180.0 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12824 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: 43390e + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 4.57895041 + posY: 1.09509015 + posZ: -4.92328644 + rotX: -5.06811957e-05 + rotY: 180.0 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '128': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/Gz7Yegn.jpg/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 12804 +- 12805 +- 12806 +- 12807 +- 12808 +- 12809 +- 12810 +- 12811 +- 12812 +- 12813 +- 12814 +- 12815 +- 12816 +- 12817 +- 12818 +- 12819 +- 12820 +- 12821 +- 12822 +- 12823 +- 12824 +Description: '' +GMNotes: '' +GUID: a08fa0 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: DeckCustom +Nickname: Encounter Deck +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.92770028 + posY: 1.72374475 + posZ: 5.75710154 + 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 The Side Missions 791837/Custom_Model_Bag Masks of Nyarlathotep – New York 94a1f8.ttslua b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Masks of Nyarlathotep – New York 94a1f8.ttslua new file mode 100644 index 000000000..46067f58e --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Masks of Nyarlathotep – New York 94a1f8.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.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.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 791837/Custom_Model_Bag Masks of Nyarlathotep – New York 94a1f8.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Masks of Nyarlathotep – New York 94a1f8.yaml new file mode 100644 index 000000000..8ccc2a7c6 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Masks of Nyarlathotep – New York 94a1f8.yaml @@ -0,0 +1,72 @@ +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 Masks of Nyarlathotep \u2013 New York 94a1f8/Deck Set\ + \ Aside 515e9e.yaml" +- !include "Custom_Model_Bag Masks of Nyarlathotep \u2013 New York 94a1f8/Deck Encounter\ + \ Deck 8f0718.yaml" +- !include "Custom_Model_Bag Masks of Nyarlathotep \u2013 New York 94a1f8/Card Agenda\ + \ fed65c.yaml" +- !include "Custom_Model_Bag Masks of Nyarlathotep \u2013 New York 94a1f8/Card Act\ + \ 0f2ffc.yaml" +- !include "Custom_Model_Bag Masks of Nyarlathotep \u2013 New York 94a1f8/Card 256aa6.yaml" +- !include "Custom_Model_Bag Masks of Nyarlathotep \u2013 New York 94a1f8/Custom_Tile\ + \ Core Difficulty aae2b1.yaml" +- !include "Custom_Model_Bag Masks of Nyarlathotep \u2013 New York 94a1f8/Deck Locations\ + \ 4e3390.yaml" +CustomMesh: + CastShadows: true + ColliderURL: '' + Convex: true + DiffuseURL: http://cloud-3.steamusercontent.com/ugc/798737729142939810/7A53406FA1EFA9D556EF559B24A679E566114745/ + MaterialIndex: 3 + MeshURL: https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj + NormalURL: '' + TypeIndex: 6 +Description: '' +GMNotes: '' +GUID: 94a1f8 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include "Custom_Model_Bag Masks of Nyarlathotep \u2013 New York 94a1f8.ttslua" +LuaScriptState: '{"ml":{"0f2ffc":{"lock":false,"pos":{"x":-2.6886,"y":1.6555,"z":-5.0485},"rot":{"x":0.0169,"y":179.9837,"z":0.0803}},"256aa6":{"lock":false,"pos":{"x":-3.956,"y":1.6556,"z":-10.4412},"rot":{"x":359.9197,"y":270.0001,"z":0.0168}},"4e3390":{"lock":false,"pos":{"x":-13.0308,"y":1.6899,"z":7.2677},"rot":{"x":359.9201,"y":269.9855,"z":0.0169}},"515e9e":{"lock":false,"pos":{"x":1.6965,"y":1.6368,"z":14.2789},"rot":{"x":359.9552,"y":224.9984,"z":0.0687}},"8f0718":{"lock":false,"pos":{"x":-3.9275,"y":1.7504,"z":5.757},"rot":{"x":359.9197,"y":269.9868,"z":180.0168}},"aae2b1":{"lock":false,"pos":{"x":-3.566,"y":1.582,"z":-15.0714},"rot":{"x":359.9197,"y":270.0002,"z":0.0168}},"fed65c":{"lock":false,"pos":{"x":-2.7247,"y":1.6571,"z":0.3733},"rot":{"x":0.0169,"y":179.9893,"z":0.0803}}}}' +MaterialIndex: -1 +MeshIndex: -1 +Name: Custom_Model_Bag +Nickname: "Masks of Nyarlathotep \u2013 New York" +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -1.40144825 + posY: 8.478637 + posZ: -160.629044 + rotX: 0.0208085533 + rotY: 270.0 + rotZ: 0.016771229 + scaleX: 2.21 + scaleY: 0.2 + scaleZ: 2.46 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Masks of Nyarlathotep – New York 94a1f8/Card 256aa6.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Masks of Nyarlathotep – New York 94a1f8/Card 256aa6.yaml new file mode 100644 index 000000000..facae3f30 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Masks of Nyarlathotep – New York 94a1f8/Card 256aa6.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 104 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359958758/4B13390DA1512EBAF1459395122D2AE0362A05A2/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359959143/BC24F14EA9CA32BF4768DFC0225B3509C0D107B8/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 256aa6 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.956012 + posY: 1.655648 + posZ: -10.4412107 + rotX: 359.919739 + rotY: 270.000122 + rotZ: 0.01684105 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Masks of Nyarlathotep – New York 94a1f8/Card Act 0f2ffc.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Masks of Nyarlathotep – New York 94a1f8/Card Act 0f2ffc.yaml new file mode 100644 index 000000000..8cdd67eb7 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Masks of Nyarlathotep – New York 94a1f8/Card Act 0f2ffc.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 100 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359958758/4B13390DA1512EBAF1459395122D2AE0362A05A2/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359959143/BC24F14EA9CA32BF4768DFC0225B3509C0D107B8/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 0f2ffc +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Act +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.68856955 + posY: 1.6554575 + posZ: -5.04852247 + rotX: 0.0168578327 + rotY: 179.983734 + rotZ: 0.08025274 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Masks of Nyarlathotep – New York 94a1f8/Card Agenda fed65c.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Masks of Nyarlathotep – New York 94a1f8/Card Agenda fed65c.yaml new file mode 100644 index 000000000..738c92601 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Masks of Nyarlathotep – New York 94a1f8/Card Agenda fed65c.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 101 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359958758/4B13390DA1512EBAF1459395122D2AE0362A05A2/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359959143/BC24F14EA9CA32BF4768DFC0225B3509C0D107B8/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: fed65c +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Agenda +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.72472262 + posY: 1.65710127 + posZ: 0.3733364 + rotX: 0.0168500654 + rotY: 179.989288 + rotZ: 0.08025455 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Masks of Nyarlathotep – New York 94a1f8/Custom_Tile Core Difficulty aae2b1.ttslua b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Masks of Nyarlathotep – New York 94a1f8/Custom_Tile Core Difficulty aae2b1.ttslua new file mode 100644 index 000000000..c7ea585c8 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Masks of Nyarlathotep – New York 94a1f8/Custom_Tile Core Difficulty aae2b1.ttslua @@ -0,0 +1,21 @@ +name = 'Core Set' + +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 The Side Missions 791837/Custom_Model_Bag Masks of Nyarlathotep – New York 94a1f8/Custom_Tile Core Difficulty aae2b1.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Masks of Nyarlathotep – New York 94a1f8/Custom_Tile Core Difficulty aae2b1.yaml new file mode 100644 index 000000000..e2bdea47d --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Masks of Nyarlathotep – New York 94a1f8/Custom_Tile Core Difficulty aae2b1.yaml @@ -0,0 +1,42 @@ +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 +GMNotes: '' +GUID: aae2b1 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Tile Core Difficulty aae2b1.ttslua' +LuaScriptState: '' +Name: Custom_Tile +Nickname: Core Difficulty +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.56600833 + posY: 1.58202791 + posZ: -15.0713816 + rotX: 359.919739 + rotY: 270.000153 + rotZ: 0.0168382619 + scaleX: 2.2 + scaleY: 1.0 + scaleZ: 2.2 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Masks of Nyarlathotep – New York 94a1f8/Deck Encounter Deck 8f0718.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Masks of Nyarlathotep – New York 94a1f8/Deck Encounter Deck 8f0718.yaml new file mode 100644 index 000000000..e495057ff --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Masks of Nyarlathotep – New York 94a1f8/Deck Encounter Deck 8f0718.yaml @@ -0,0 +1,1117 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 502 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/254843371583117031/BA3E0B3DEDCCADEBE723B1582E6E331D84FE1822/ + NumHeight: 5 + NumWidth: 5 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: d565cc + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -7.525551 + posY: 1.31053841 + posZ: 0.628142 + rotX: -0.00051548786 + rotY: 180.0001 + rotZ: 179.999634 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 509 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/254843371583117031/BA3E0B3DEDCCADEBE723B1582E6E331D84FE1822/ + NumHeight: 5 + NumWidth: 5 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 6b4f8d + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 1.36666679 + posY: 1.03171039 + posZ: -6.6183815 + rotX: -0.0001794275 + rotY: 179.999359 + rotZ: -9.014901e-05 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 501 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/254843371583117031/BA3E0B3DEDCCADEBE723B1582E6E331D84FE1822/ + NumHeight: 5 + NumWidth: 5 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: adc5e2 + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.00728369 + posY: 1.03170729 + posZ: -9.884871 + rotX: -0.00029844782 + rotY: 180.000031 + rotZ: -0.000101214522 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 507 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/254843371583117031/BA3E0B3DEDCCADEBE723B1582E6E331D84FE1822/ + NumHeight: 5 + NumWidth: 5 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 287c80 + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.7983031 + posY: 1.03170359 + posZ: -5.865242 + rotX: -0.000465005083 + rotY: 180.000031 + rotZ: -0.000145578029 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 503 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/254843371583117031/BA3E0B3DEDCCADEBE723B1582E6E331D84FE1822/ + NumHeight: 5 + NumWidth: 5 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: '109526' + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.30773377 + posY: 1.031703 + posZ: -9.183528 + rotX: -0.000485041819 + rotY: 180.000031 + rotZ: -0.000148552339 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 506 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/254843371583117031/BA3E0B3DEDCCADEBE723B1582E6E331D84FE1822/ + NumHeight: 5 + NumWidth: 5 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 18713c + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 4.84296656 + posY: 1.03170264 + posZ: -9.985904 + rotX: -0.0005048124 + rotY: 180.000031 + rotZ: -0.000154789377 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 506 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/254843371583117031/BA3E0B3DEDCCADEBE723B1582E6E331D84FE1822/ + NumHeight: 5 + NumWidth: 5 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 90d2be + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 7.063261 + posY: 1.190593 + posZ: -9.36762 + rotX: 1.74960348e-08 + rotY: 180.025558 + rotZ: 2.20283619e-06 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 504 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/254843371583117031/BA3E0B3DEDCCADEBE723B1582E6E331D84FE1822/ + NumHeight: 5 + NumWidth: 5 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 336bb3 + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.02339387 + posY: 1.19523346 + posZ: -10.13251 + rotX: -8.24803863e-07 + rotY: 180.004562 + rotZ: 1.656517e-06 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 508 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/254843371583117031/BA3E0B3DEDCCADEBE723B1582E6E331D84FE1822/ + NumHeight: 5 + NumWidth: 5 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 45009b + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.39139175 + posY: 1.1779635 + posZ: -7.24111462 + rotX: -6.17061247e-08 + rotY: 180.000046 + rotZ: 2.718165e-07 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 504 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/254843371583117031/BA3E0B3DEDCCADEBE723B1582E6E331D84FE1822/ + NumHeight: 5 + NumWidth: 5 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 336bb3 + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.01655221 + posY: 1.03170931 + posZ: -10.228302 + rotX: -0.000200693015 + rotY: 180.004547 + rotZ: -6.642803e-05 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 500 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/254843371583117031/BA3E0B3DEDCCADEBE723B1582E6E331D84FE1822/ + NumHeight: 5 + NumWidth: 5 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 3e3723 + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -18.384882 + posY: 1.31804264 + posZ: 3.4307394 + rotX: -2.43713e-07 + rotY: 179.9893 + rotZ: 180.000015 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 500 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/254843371583117031/BA3E0B3DEDCCADEBE723B1582E6E331D84FE1822/ + NumHeight: 5 + NumWidth: 5 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 41b7b0 + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -18.22021 + posY: 1.30838454 + posZ: 3.90669227 + rotX: 3.31619141e-08 + rotY: 180.0107 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 505 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/254843371583117031/BA3E0B3DEDCCADEBE723B1582E6E331D84FE1822/ + NumHeight: 5 + NumWidth: 5 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 7ca836 + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 1.54948092 + posY: 1.03170443 + posZ: -10.0616331 + rotX: -0.0004283262 + rotY: 180.000031 + rotZ: -0.000135281982 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 505 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/254843371583117031/BA3E0B3DEDCCADEBE723B1582E6E331D84FE1822/ + NumHeight: 5 + NumWidth: 5 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: d35c3c + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 1.54049611 + posY: 1.1779635 + posZ: -9.951112 + rotX: 4.36317464e-07 + rotY: 180.000046 + rotZ: 3.81197083e-07 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 501 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/254843371583117031/BA3E0B3DEDCCADEBE723B1582E6E331D84FE1822/ + NumHeight: 5 + NumWidth: 5 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: ce2dd2 + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.692787 + posY: 1.1779635 + posZ: -9.599893 + rotX: 8.38239657e-07 + rotY: 180.000046 + rotZ: -2.65311769e-06 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 501 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/254843371583117031/BA3E0B3DEDCCADEBE723B1582E6E331D84FE1822/ + NumHeight: 5 + NumWidth: 5 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: adc5e2 + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.692787 + posY: 1.19523346 + posZ: -9.599893 + rotX: 8.38239657e-07 + rotY: 180.000046 + rotZ: -2.65311769e-06 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 500 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/254843371583117031/BA3E0B3DEDCCADEBE723B1582E6E331D84FE1822/ + NumHeight: 5 + NumWidth: 5 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: c9fb36 + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -18.3778572 + posY: 1.28231692 + posZ: 3.86834049 + rotX: -3.39729155e-07 + rotY: 179.969437 + rotZ: 180.000015 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 504 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/254843371583117031/BA3E0B3DEDCCADEBE723B1582E6E331D84FE1822/ + NumHeight: 5 + NumWidth: 5 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: a1ae06 + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.02339387 + posY: 1.1779635 + posZ: -10.13251 + rotX: -8.24803863e-07 + rotY: 180.004562 + rotZ: 1.656517e-06 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 507 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/254843371583117031/BA3E0B3DEDCCADEBE723B1582E6E331D84FE1822/ + NumHeight: 5 + NumWidth: 5 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: d64b13 + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.79415 + posY: 1.1779635 + posZ: -5.819797 + rotX: 5.38826555e-07 + rotY: 180.000046 + rotZ: 2.43092541e-06 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 508 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/254843371583117031/BA3E0B3DEDCCADEBE723B1582E6E331D84FE1822/ + NumHeight: 5 + NumWidth: 5 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 2b8359 + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.38581371 + posY: 1.03170359 + posZ: -7.286182 + rotX: -0.000465171674 + rotY: 180.000031 + rotZ: -0.000146240593 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 503 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/254843371583117031/BA3E0B3DEDCCADEBE723B1582E6E331D84FE1822/ + NumHeight: 5 + NumWidth: 5 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: e553d5 + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.61364746 + posY: 1.1779635 + posZ: -9.087218 + rotX: 1.7501975e-07 + rotY: 180.000046 + rotZ: -6.267025e-07 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 302 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/254843371583115523/E82497980946ECE8E95AADC7220B140E4C0066A8/ + NumHeight: 3 + NumWidth: 5 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 623f88 + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -23.1215725 + posY: 1.17335117 + posZ: -2.054199 + rotX: 0.22232908 + rotY: 179.993149 + rotZ: 359.461853 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 503 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/254843371583117031/BA3E0B3DEDCCADEBE723B1582E6E331D84FE1822/ + NumHeight: 5 + NumWidth: 5 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: '109526' + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.13094139 + posY: 1.19721842 + posZ: -9.280788 + rotX: -0.00303117954 + rotY: 180.001953 + rotZ: 0.018014634 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 303 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/254843371583115523/E82497980946ECE8E95AADC7220B140E4C0066A8/ + NumHeight: 3 + NumWidth: 5 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: b1da52 + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -23.0621777 + posY: 1.03131986 + posZ: -1.8735311 + rotX: 359.97937 + rotY: 179.998413 + rotZ: 359.9928 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 507 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/254843371583117031/BA3E0B3DEDCCADEBE723B1582E6E331D84FE1822/ + NumHeight: 5 + NumWidth: 5 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 287c80 + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.79415 + posY: 1.19523346 + posZ: -5.819797 + rotX: 5.38826555e-07 + rotY: 180.000046 + rotZ: 2.43092541e-06 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 509 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/254843371583117031/BA3E0B3DEDCCADEBE723B1582E6E331D84FE1822/ + NumHeight: 5 + NumWidth: 5 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: fca5db + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.9619628 + posY: 1.1779635 + posZ: -6.352775 + rotX: 1.03514958e-06 + rotY: 179.999359 + rotZ: 1.83088525e-06 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '3': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/254843371583115523/E82497980946ECE8E95AADC7220B140E4C0066A8/ + NumHeight: 3 + NumWidth: 5 + UniqueBack: false + '5': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/254843371583117031/BA3E0B3DEDCCADEBE723B1582E6E331D84FE1822/ + NumHeight: 5 + NumWidth: 5 + UniqueBack: false +DeckIDs: +- 502 +- 509 +- 501 +- 507 +- 503 +- 506 +- 506 +- 504 +- 508 +- 504 +- 500 +- 500 +- 505 +- 505 +- 501 +- 501 +- 500 +- 504 +- 507 +- 508 +- 503 +- 302 +- 503 +- 303 +- 507 +- 509 +Description: '' +GMNotes: '' +GUID: 8f0718 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Encounter Deck +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.927527 + posY: 1.75039184 + posZ: 5.75698137 + rotX: 359.919739 + rotY: 269.986755 + rotZ: 180.016846 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Masks of Nyarlathotep – New York 94a1f8/Deck Locations 4e3390.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Masks of Nyarlathotep – New York 94a1f8/Deck Locations 4e3390.yaml new file mode 100644 index 000000000..12a20140e --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Masks of Nyarlathotep – New York 94a1f8/Deck Locations 4e3390.yaml @@ -0,0 +1,715 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 102 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359958758/4B13390DA1512EBAF1459395122D2AE0362A05A2/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359959143/BC24F14EA9CA32BF4768DFC0225B3509C0D107B8/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 3d15e9 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Caryle Mansion Library + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.24099517 + posY: 1.21386945 + posZ: 2.40633559 + rotX: 0.000511379854 + rotY: 179.999451 + rotZ: 179.998886 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 103 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359958758/4B13390DA1512EBAF1459395122D2AE0362A05A2/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359959143/BC24F14EA9CA32BF4768DFC0225B3509C0D107B8/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: dd71f0 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Caryle Mansion + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.041262 + posY: 1.2041899 + posZ: 2.86869764 + rotX: 0.0005418666 + rotY: 179.998566 + rotZ: 180.004532 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 105 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359958758/4B13390DA1512EBAF1459395122D2AE0362A05A2/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359959143/BC24F14EA9CA32BF4768DFC0225B3509C0D107B8/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 06f09c + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Emerson Imports + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -1.98662412 + posY: 1.19452155 + posZ: 2.258135 + rotX: 0.000747017039 + rotY: 180.000046 + rotZ: 180.001587 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 106 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359958758/4B13390DA1512EBAF1459395122D2AE0362A05A2/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359959143/BC24F14EA9CA32BF4768DFC0225B3509C0D107B8/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 3b07a6 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Funeral + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.20006728 + posY: 1.1848563 + posZ: 2.69334984 + rotX: 0.000337080739 + rotY: 180.01181 + rotZ: 180.007431 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 107 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359958758/4B13390DA1512EBAF1459395122D2AE0362A05A2/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359959143/BC24F14EA9CA32BF4768DFC0225B3509C0D107B8/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: a6913d + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Fire Escape + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.59464431 + posY: 1.17542386 + posZ: 2.44965 + rotX: 0.0006914822 + rotY: 179.999039 + rotZ: 179.952881 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 109 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359958758/4B13390DA1512EBAF1459395122D2AE0362A05A2/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359959143/BC24F14EA9CA32BF4768DFC0225B3509C0D107B8/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: d6b99e + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Harvard University + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.25951982 + posY: 1.16555083 + posZ: 2.46710467 + rotX: 0.0007531052 + rotY: 179.9992 + rotZ: 179.998383 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 111 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359958758/4B13390DA1512EBAF1459395122D2AE0362A05A2/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359959143/BC24F14EA9CA32BF4768DFC0225B3509C0D107B8/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 2d32a2 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ju-Ju House Basement + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.42064166 + posY: 1.15583944 + posZ: 2.71955037 + rotX: 0.0009123445 + rotY: 180.021255 + rotZ: 179.999741 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 110 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359958758/4B13390DA1512EBAF1459395122D2AE0362A05A2/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359959143/BC24F14EA9CA32BF4768DFC0225B3509C0D107B8/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: c96a80 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ju-Ju House + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.73883176 + posY: 1.14621019 + posZ: 2.31337953 + rotX: -0.002354515 + rotY: 180.000061 + rotZ: 179.992737 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 119 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359958758/4B13390DA1512EBAF1459395122D2AE0362A05A2/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359959143/BC24F14EA9CA32BF4768DFC0225B3509C0D107B8/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 69858a + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Pit + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.37942076 + posY: 1.18873572 + posZ: 2.508488 + rotX: 0.0008166906 + rotY: 180.000076 + rotZ: 179.999878 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 118 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359958758/4B13390DA1512EBAF1459395122D2AE0362A05A2/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359959143/BC24F14EA9CA32BF4768DFC0225B3509C0D107B8/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: a0ca08 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Room 410 + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.02817178 + posY: 1.18242586 + posZ: 2.34926271 + rotX: 2.59258031e-05 + rotY: 179.999634 + rotZ: 180.002487 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 117 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359958758/4B13390DA1512EBAF1459395122D2AE0362A05A2/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359959143/BC24F14EA9CA32BF4768DFC0225B3509C0D107B8/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 23bbfe + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Police Department + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.17513585 + posY: 1.17743444 + posZ: 2.65257788 + rotX: 0.000714968948 + rotY: 180.000015 + rotZ: 179.999634 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 116 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359958758/4B13390DA1512EBAF1459395122D2AE0362A05A2/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359959143/BC24F14EA9CA32BF4768DFC0225B3509C0D107B8/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 9ee8d8 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: NY Train Station + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.187505 + posY: 1.17478335 + posZ: 2.37244415 + rotX: 0.0006505073 + rotY: 179.99968 + rotZ: 179.999588 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 115 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359958758/4B13390DA1512EBAF1459395122D2AE0362A05A2/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359959143/BC24F14EA9CA32BF4768DFC0225B3509C0D107B8/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 4ca809 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: New York Times + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.521739 + posY: 1.176837 + posZ: 2.33039021 + rotX: -0.00177800714 + rotY: 180.000046 + rotZ: 179.997543 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 114 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359958758/4B13390DA1512EBAF1459395122D2AE0362A05A2/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359959143/BC24F14EA9CA32BF4768DFC0225B3509C0D107B8/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 706cfc + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: New York Streets + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -4.63920927 + posY: 1.1916405 + posZ: 6.26973963 + rotX: -0.000905235065 + rotY: 180.000427 + rotZ: 0.00326996623 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 113 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359958758/4B13390DA1512EBAF1459395122D2AE0362A05A2/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359959143/BC24F14EA9CA32BF4768DFC0225B3509C0D107B8/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: bb4aa3 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Miskatonik University + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -4.30386972 + posY: 1.200917 + posZ: 5.57035 + rotX: 0.006549201 + rotY: 179.99968 + rotZ: 0.03732681 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 108 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359958758/4B13390DA1512EBAF1459395122D2AE0362A05A2/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359959143/BC24F14EA9CA32BF4768DFC0225B3509C0D107B8/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 7bdddd + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Hotel Lobby + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -4.94964743 + posY: 1.21100926 + posZ: 5.84343529 + rotX: 359.9862 + rotY: 179.931381 + rotZ: 0.03435499 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359958758/4B13390DA1512EBAF1459395122D2AE0362A05A2/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359959143/BC24F14EA9CA32BF4768DFC0225B3509C0D107B8/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 102 +- 103 +- 105 +- 106 +- 107 +- 109 +- 111 +- 110 +- 119 +- 118 +- 117 +- 116 +- 115 +- 114 +- 113 +- 108 +Description: '' +GMNotes: '' +GUID: 4e3390 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Locations +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -13.0307932 + posY: 1.68992829 + posZ: 7.26769257 + rotX: 359.9201 + rotY: 269.9855 + rotZ: 0.016898023 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Masks of Nyarlathotep – New York 94a1f8/Deck Set Aside 515e9e.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Masks of Nyarlathotep – New York 94a1f8/Deck Set Aside 515e9e.yaml new file mode 100644 index 000000000..a8e346449 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Masks of Nyarlathotep – New York 94a1f8/Deck Set Aside 515e9e.yaml @@ -0,0 +1,393 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 510 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/254843371583117031/BA3E0B3DEDCCADEBE723B1582E6E331D84FE1822/ + NumHeight: 5 + NumWidth: 5 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 711d14 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Acolyte + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -5.10322857 + posY: 1.18884981 + posZ: -5.950076 + rotX: -0.00241802982 + rotY: 179.99649 + rotZ: 180.014359 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 510 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/254843371583117031/BA3E0B3DEDCCADEBE723B1582E6E331D84FE1822/ + NumHeight: 5 + NumWidth: 5 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 4b9721 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Acolyte + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -4.688677 + posY: 1.18245733 + posZ: -6.22356033 + rotX: -0.0020776703 + rotY: 179.999954 + rotZ: 179.997391 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 510 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/254843371583117031/BA3E0B3DEDCCADEBE723B1582E6E331D84FE1822/ + NumHeight: 5 + NumWidth: 5 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 83fdcb + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Acolyte + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -5.37724 + posY: 1.17735815 + posZ: -6.00084 + rotX: -0.000691544847 + rotY: 180.000076 + rotZ: 179.991226 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 510 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/254843371583117031/BA3E0B3DEDCCADEBE723B1582E6E331D84FE1822/ + NumHeight: 5 + NumWidth: 5 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 9035ea + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Acolyte + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -5.06231976 + posY: 1.17478907 + posZ: -6.2075243 + rotX: -0.00173057278 + rotY: 179.999939 + rotZ: 179.995911 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 300 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/254843371583115523/E82497980946ECE8E95AADC7220B140E4C0066A8/ + NumHeight: 3 + NumWidth: 5 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 0b8563 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ghoul Priest + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -5.00656128 + posY: 1.176694 + posZ: -5.68757153 + rotX: 359.9822 + rotY: 179.997131 + rotZ: 179.977936 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 503 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/254843371583117031/BA3E0B3DEDCCADEBE723B1582E6E331D84FE1822/ + NumHeight: 5 + NumWidth: 5 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: '109526' + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: grasping hands + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -4.797693 + posY: 1.19046342 + posZ: -6.3277626 + rotX: 359.991821 + rotY: 179.994492 + rotZ: 180.004608 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 520 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/254843371583117031/BA3E0B3DEDCCADEBE723B1582E6E331D84FE1822/ + NumHeight: 5 + NumWidth: 5 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: bba01d + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Relentless Dark Young + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -8.883166 + posY: 1.1848079 + posZ: 2.99391127 + rotX: 359.938965 + rotY: 179.941177 + rotZ: 359.735931 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 112 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359958758/4B13390DA1512EBAF1459395122D2AE0362A05A2/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359959143/BC24F14EA9CA32BF4768DFC0225B3509C0D107B8/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: f51822 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Mask of Hayama + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -9.191869 + posY: 1.18582118 + posZ: 2.60451627 + rotX: 0.000234192077 + rotY: 180.0013 + rotZ: 0.0122154122 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359958758/4B13390DA1512EBAF1459395122D2AE0362A05A2/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359959143/BC24F14EA9CA32BF4768DFC0225B3509C0D107B8/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + '3': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/254843371583115523/E82497980946ECE8E95AADC7220B140E4C0066A8/ + NumHeight: 3 + NumWidth: 5 + UniqueBack: false + '5': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/254843371583117031/BA3E0B3DEDCCADEBE723B1582E6E331D84FE1822/ + NumHeight: 5 + NumWidth: 5 + UniqueBack: false +DeckIDs: +- 510 +- 510 +- 510 +- 510 +- 300 +- 503 +- 520 +- 112 +Description: '' +GMNotes: '' +GUID: 515e9e +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Set Aside +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 1.69647491 + posY: 1.636754 + posZ: 14.278862 + rotX: 359.95517 + rotY: 224.998413 + rotZ: 0.0686534345 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Murder at the Excelsior Hotel 01d780.ttslua b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Murder at the Excelsior Hotel 01d780.ttslua new file mode 100644 index 000000000..54d591927 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Murder at the Excelsior Hotel 01d780.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.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 791837/Custom_Model_Bag Murder at the Excelsior Hotel 01d780.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Murder at the Excelsior Hotel 01d780.yaml new file mode 100644 index 000000000..25305993c --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Murder at the Excelsior Hotel 01d780.yaml @@ -0,0 +1,96 @@ +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 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' +- !include 'Custom_Model_Bag Murder at the Excelsior Hotel 01d780/Deck Leads Deck + 227fad.yaml' +- !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 + Set-aside 74eec6.yaml' +- !include 'Custom_Model_Bag Murder at the Excelsior Hotel 01d780/Deck Agenda Deck + 888a6b.yaml' +- !include 'Custom_Model_Bag Murder at the Excelsior Hotel 01d780/Custom_Tile 89314b.yaml' +- !include 'Custom_Model_Bag Murder at the Excelsior Hotel 01d780/Custom_Tile 9a82ba.yaml' +- !include 'Custom_Model_Bag Murder at the Excelsior Hotel 01d780/Card Foyer 9a9f9a.yaml' +- !include 'Custom_Model_Bag Murder at the Excelsior Hotel 01d780/Card Second Floor + Hall a78d38.yaml' +- !include 'Custom_Model_Bag Murder at the Excelsior Hotel 01d780/Card Scenario b1e599.yaml' +- !include 'Custom_Model_Bag Murder at the Excelsior Hotel 01d780/Custom_Tile Murder + at the Excelsior Hotel bbb70a.yaml' +- !include 'Custom_Model_Bag Murder at the Excelsior Hotel 01d780/Custom_Tile c630c5.yaml' +- !include 'Custom_Model_Bag Murder at the Excelsior Hotel 01d780/Card Bloodstained + Dagger d71f11.yaml' +- !include 'Custom_Model_Bag Murder at the Excelsior Hotel 01d780/Deck Encounter Deck + fd4231.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/766102485311280290/6AFE3755ED304F8D6D1E0B0E7CCA7748BA07DDE9/ + MaterialIndex: 3 + MeshURL: https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj + NormalURL: '' + TypeIndex: 6 +Description: '' +GMNotes: '' +GUID: 01d780 +Grid: true +GridProjection: false +Hands: false +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}}}}' +MaterialIndex: -1 +MeshIndex: -1 +Name: Custom_Model_Bag +Nickname: Murder at the Excelsior Hotel +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 + scaleX: 2.21 + scaleY: 0.46 + scaleZ: 2.42 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Murder at the Excelsior Hotel 01d780/Card Bloodstained Dagger d71f11.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Murder at the Excelsior Hotel 01d780/Card Bloodstained Dagger d71f11.yaml new file mode 100644 index 000000000..6ca7e335d --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Murder at the Excelsior Hotel 01d780/Card Bloodstained Dagger d71f11.yaml @@ -0,0 +1,42 @@ +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 + UniqueBack: false +Description: The Murder Weapon +GMNotes: '' +GUID: d71f11 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Bloodstained Dagger +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.31746078 + posY: 1.66222739 + posZ: 14.9924107 + rotX: 359.919739 + rotY: 269.996368 + rotZ: 0.01684684 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Murder at the Excelsior Hotel 01d780/Card Foyer 9a9f9a.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Murder at the Excelsior Hotel 01d780/Card Foyer 9a9f9a.yaml new file mode 100644 index 000000000..20bd05568 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Murder at the Excelsior Hotel 01d780/Card Foyer 9a9f9a.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 231908 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2319': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/778493212055043200/69BE533398A163171710A34F2FC068249B8E2B90/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493212055042209/FBBBE393755E3F8BAB1A2935E1F691EE8358054D/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Hall. +GMNotes: '' +GUID: 9a9f9a +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Foyer +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -30.2242 + posY: 1.69535065 + posZ: -0.0300007612 + rotX: 359.9201 + rotY: 269.994965 + rotZ: 0.01688318 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Murder at the Excelsior Hotel 01d780/Card Restaurant 4146bf.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Murder at the Excelsior Hotel 01d780/Card Restaurant 4146bf.yaml new file mode 100644 index 000000000..8cd110ca9 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Murder at the Excelsior Hotel 01d780/Card Restaurant 4146bf.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 231909 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2319': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/778493212055043200/69BE533398A163171710A34F2FC068249B8E2B90/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493212055042209/FBBBE393755E3F8BAB1A2935E1F691EE8358054D/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Hall. +GMNotes: '' +GUID: 4146bf +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Restaurant +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -30.224 + posY: 1.69758832 + posZ: 7.56989956 + rotX: 359.9201 + rotY: 269.999756 + rotZ: 0.0168765765 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Murder at the Excelsior Hotel 01d780/Card Room 225 0ba29a.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Murder at the Excelsior Hotel 01d780/Card Room 225 0ba29a.yaml new file mode 100644 index 000000000..a42183aea --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Murder at the Excelsior Hotel 01d780/Card Room 225 0ba29a.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 231905 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2319': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/778493212055043200/69BE533398A163171710A34F2FC068249B8E2B90/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493212055042209/FBBBE393755E3F8BAB1A2935E1F691EE8358054D/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Crime Scene. +GMNotes: '' +GUID: 0ba29a +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Room 225 +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -23.68474 + posY: 1.68397355 + posZ: -7.69939041 + rotX: 359.9201 + rotY: 269.9999 + rotZ: 0.0168774221 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Murder at the Excelsior Hotel 01d780/Card Scenario b1e599.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Murder at the Excelsior Hotel 01d780/Card Scenario b1e599.yaml new file mode 100644 index 000000000..4dd590efb --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Murder at the Excelsior Hotel 01d780/Card Scenario b1e599.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 231900 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2319': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/778493212055043200/69BE533398A163171710A34F2FC068249B8E2B90/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493212055042209/FBBBE393755E3F8BAB1A2935E1F691EE8358054D/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Murder at the Excelsior Hotel +GMNotes: '' +GUID: b1e599 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Scenario +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.95580077 + posY: 1.65564787 + posZ: -10.4414015 + rotX: 359.919739 + rotY: 270.000031 + rotZ: 0.0168411136 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Murder at the Excelsior Hotel 01d780/Card Second Floor Hall a78d38.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Murder at the Excelsior Hotel 01d780/Card Second Floor Hall a78d38.yaml new file mode 100644 index 000000000..6cacce599 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Murder at the Excelsior Hotel 01d780/Card Second Floor Hall a78d38.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 231907 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2319': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/778493212055043200/69BE533398A163171710A34F2FC068249B8E2B90/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493212055042209/FBBBE393755E3F8BAB1A2935E1F691EE8358054D/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Hall. +GMNotes: '' +GUID: a78d38 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Second Floor Hall +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -23.6765 + posY: 1.68622041 + posZ: -0.0300006364 + rotX: 359.9201 + rotY: 270.0005 + rotZ: 0.01687554 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Murder at the Excelsior Hotel 01d780/Card Suite Balcony 0f58ed.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Murder at the Excelsior Hotel 01d780/Card Suite Balcony 0f58ed.yaml new file mode 100644 index 000000000..7a4ea1ed6 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Murder at the Excelsior Hotel 01d780/Card Suite Balcony 0f58ed.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 231906 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2319': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/778493212055043200/69BE533398A163171710A34F2FC068249B8E2B90/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493212055042209/FBBBE393755E3F8BAB1A2935E1F691EE8358054D/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Crime Scene. +GMNotes: '' +GUID: 0f58ed +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Suite Balcony +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -23.6766 + posY: 1.68173 + posZ: -15.2800007 + rotX: 359.9201 + rotY: 270.002075 + rotZ: 0.0168730412 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Murder at the Excelsior Hotel 01d780/CardCustom Campaign Guide 45facd.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Murder at the Excelsior Hotel 01d780/CardCustom Campaign Guide 45facd.yaml new file mode 100644 index 000000000..7328799e1 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Murder at the Excelsior Hotel 01d780/CardCustom Campaign Guide 45facd.yaml @@ -0,0 +1,559 @@ +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 + UniqueBack: false +Description: Murder at the Excelsior Hotel +GMNotes: '' +GUID: 45facd +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 630d74 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: e04c72 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: '537250' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 7ce342 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 8aff87 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: e5e605 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: a7ed10 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: a6b49e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 212aec + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: a81b44 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: dec02a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: c9e4e9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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 791837/Custom_Model_Bag Murder at the Excelsior Hotel 01d780/Custom_Model_Bag Set-aside 74eec6.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Murder at the Excelsior Hotel 01d780/Custom_Model_Bag Set-aside 74eec6.yaml new file mode 100644 index 000000000..3f879d5f2 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Murder at the Excelsior Hotel 01d780/Custom_Model_Bag Set-aside 74eec6.yaml @@ -0,0 +1,70 @@ +Autoraise: true +ColorDiffuse: + b: 0.02148666 + g: 0.00100758043 + r: 0.02148666 +ContainedObjects: +- !include 'Custom_Model_Bag Set-aside 74eec6/Deck The True Culprit f6869f.yaml' +- !include 'Custom_Model_Bag Set-aside 74eec6/Card Harvested Brain 3fbc07.yaml' +- !include 'Custom_Model_Bag Set-aside 74eec6/Card Vengeful Specter 3fbc07.yaml' +- !include 'Custom_Model_Bag Set-aside 74eec6/Card Hotel Manager 3fbc07.yaml' +- !include 'Custom_Model_Bag Set-aside 74eec6/Card Dimensional Shambler 3fbc07.yaml' +- !include 'Custom_Model_Bag Set-aside 74eec6/Card Otherworldly Meddler 3fbc07.yaml' +- !include 'Custom_Model_Bag Set-aside 74eec6/Deck Morbid Awarenesses d3eba4.yaml' +- !include 'Custom_Model_Bag Set-aside 74eec6/Deck Chilling Presences 6d55da.yaml' +- !include 'Custom_Model_Bag Set-aside 74eec6/Deck Hotel Security e3dc34.yaml' +- !include 'Custom_Model_Bag Set-aside 74eec6/Deck Cultists of the Enclave c0885d.yaml' +- !include 'Custom_Model_Bag Set-aside 74eec6/Deck Encephalon Souls 1df3fd.yaml' +- !include 'Custom_Model_Bag Set-aside 74eec6/Card What Have You Done 2c76d9.yaml' +- !include 'Custom_Model_Bag Set-aside 74eec6/Deck Arkham Officers f8ebf7.yaml' +- !include 'Custom_Model_Bag Set-aside 74eec6/Card Sergeant Monroe 5630c2.yaml' +- !include 'Custom_Model_Bag Set-aside 74eec6/Deck Locations fa2f3a.yaml' +CustomMesh: + CastShadows: true + ColliderURL: '' + Convex: true + DiffuseURL: http://i.imgur.com/yVhOLYs.jpg + MaterialIndex: 1 + MeshURL: https://paste.ee/r/ylQzQ + NormalURL: http://i.imgur.com/f1ogHo6.jpg + TypeIndex: 6 +Description: '' +GMNotes: '' +GUID: 74eec6 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +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.69660068 + posY: 1.55831671 + posZ: 14.2787018 + rotX: 359.955139 + rotY: 224.9981 + rotZ: 0.06867284 + scaleX: 2.0 + scaleY: 2.0 + scaleZ: 2.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Murder at the Excelsior Hotel 01d780/Custom_Model_Bag Set-aside 74eec6/Card Dimensional Shambler 3fbc07.yaml new file mode 100644 index 000000000..2823b5b8e --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Murder at the Excelsior Hotel 01d780/Custom_Model_Bag Set-aside 74eec6/Card Dimensional Shambler 3fbc07.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 231619 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2316': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493212055041441/90F035BD69A7C5C6B6F43426DDDA3A09DFCBCBDF/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: Monster. Extradimensional. Elite. +GMNotes: '' +GUID: 3fbc07 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Dimensional Shambler +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 14.5076294 + posY: 2.5482192 + posZ: 9.411012 + rotX: 359.9201 + rotY: 270.021179 + rotZ: 0.0168056 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Murder at the Excelsior Hotel 01d780/Custom_Model_Bag Set-aside 74eec6/Card Harvested Brain 3fbc07.yaml new file mode 100644 index 000000000..16297e47b --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Murder at the Excelsior Hotel 01d780/Custom_Model_Bag Set-aside 74eec6/Card Harvested Brain 3fbc07.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 231622 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2316': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493212055041441/90F035BD69A7C5C6B6F43426DDDA3A09DFCBCBDF/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: Ancient. Science. +GMNotes: '' +GUID: 3fbc07 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Harvested Brain +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 13.3316126 + posY: 2.55119538 + posZ: 11.0044813 + rotX: 359.920135 + rotY: 269.997 + rotZ: 0.016883539 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Murder at the Excelsior Hotel 01d780/Custom_Model_Bag Set-aside 74eec6/Card Hotel Manager 3fbc07.yaml new file mode 100644 index 000000000..488ceab7c --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Murder at the Excelsior Hotel 01d780/Custom_Model_Bag Set-aside 74eec6/Card Hotel Manager 3fbc07.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 231616 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2316': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493212055041441/90F035BD69A7C5C6B6F43426DDDA3A09DFCBCBDF/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: Let the Feast Begin +GMNotes: '' +GUID: 3fbc07 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Hotel Manager +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 13.4454679 + posY: 2.54969168 + posZ: 10.8911991 + rotX: 359.920135 + rotY: 270.0027 + rotZ: 0.0168749783 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Murder at the Excelsior Hotel 01d780/Custom_Model_Bag Set-aside 74eec6/Card Otherworldly Meddler 3fbc07.yaml new file mode 100644 index 000000000..a91f74e0f --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Murder at the Excelsior Hotel 01d780/Custom_Model_Bag Set-aside 74eec6/Card Otherworldly Meddler 3fbc07.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 231613 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2316': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493212055041441/90F035BD69A7C5C6B6F43426DDDA3A09DFCBCBDF/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: Presence from Beyond the Stars +GMNotes: '' +GUID: 3fbc07 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Otherworldly Meddler +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 15.5453358 + posY: 2.54714155 + posZ: 11.2811365 + rotX: 359.920135 + rotY: 269.9964 + rotZ: 0.0168830715 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Murder at the Excelsior Hotel 01d780/Custom_Model_Bag Set-aside 74eec6/Card Sergeant Monroe 5630c2.yaml new file mode 100644 index 000000000..86b3dd150 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Murder at the Excelsior Hotel 01d780/Custom_Model_Bag Set-aside 74eec6/Card Sergeant Monroe 5630c2.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 231702 +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 + UniqueBack: false +Description: Two Days Until Retirement +GMNotes: '' +GUID: 5630c2 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Sergeant Monroe +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.92531133 + posY: 2.56193781 + posZ: -21.1105747 + rotX: 359.920135 + rotY: 269.9999 + rotZ: 0.016873857 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Murder at the Excelsior Hotel 01d780/Custom_Model_Bag Set-aside 74eec6/Card Vengeful Specter 3fbc07.yaml new file mode 100644 index 000000000..08a3c52a5 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Murder at the Excelsior Hotel 01d780/Custom_Model_Bag Set-aside 74eec6/Card Vengeful Specter 3fbc07.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 231625 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2316': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493212055041441/90F035BD69A7C5C6B6F43426DDDA3A09DFCBCBDF/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: The First Victim +GMNotes: '' +GUID: 3fbc07 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Vengeful Specter +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 13.98327 + posY: 2.54930067 + posZ: 9.885822 + rotX: 359.920135 + rotY: 269.997559 + rotZ: 0.0168796945 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Murder at the Excelsior Hotel 01d780/Custom_Model_Bag Set-aside 74eec6/Card What Have You Done 2c76d9.yaml new file mode 100644 index 000000000..e8d08fe63 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Murder at the Excelsior Hotel 01d780/Custom_Model_Bag Set-aside 74eec6/Card What Have You Done 2c76d9.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 231701 +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 + UniqueBack: false +Description: Madness. +GMNotes: '' +GUID: 2c76d9 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: What Have You Done? +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.02397132 + posY: 2.56449771 + posZ: -15.719367 + rotX: 359.920135 + rotY: 269.9999 + rotZ: 0.0168766584 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Murder at the Excelsior Hotel 01d780/Custom_Model_Bag Set-aside 74eec6/Deck Arkham Officers f8ebf7.yaml new file mode 100644 index 000000000..19b0ea58d --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Murder at the Excelsior Hotel 01d780/Custom_Model_Bag Set-aside 74eec6/Deck Arkham Officers f8ebf7.yaml @@ -0,0 +1,172 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 231603 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2316': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493212055041441/90F035BD69A7C5C6B6F43426DDDA3A09DFCBCBDF/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Police. Innocent. + GMNotes: '' + GUID: 9de2ac + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Arkham Officer + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -4.86508942 + posY: 1.559355 + posZ: -1.99277723 + rotX: 359.9205 + rotY: 269.997955 + rotZ: 0.0138530852 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231603 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2316': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493212055041441/90F035BD69A7C5C6B6F43426DDDA3A09DFCBCBDF/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Police. Innocent. + GMNotes: '' + GUID: 7f4625 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Arkham Officer + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -4.552684 + posY: 1.70415437 + posZ: -1.99416292 + rotX: 359.940582 + rotY: 269.99762 + rotZ: 0.00139248883 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231603 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2316': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493212055041441/90F035BD69A7C5C6B6F43426DDDA3A09DFCBCBDF/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Police. Innocent. + GMNotes: '' + GUID: 3fbc07 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Arkham Officer + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -4.654519 + posY: 1.73610973 + posZ: -1.39314783 + rotX: 359.9034 + rotY: 269.971222 + rotZ: 357.816223 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2316': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493212055041441/90F035BD69A7C5C6B6F43426DDDA3A09DFCBCBDF/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 231603 +- 231603 +- 231603 +Description: '' +GMNotes: '' +GUID: f8ebf7 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Arkham Officers +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.195563 + posY: 2.71134233 + posZ: -13.3082075 + rotX: 359.9201 + rotY: 270.0192 + rotZ: 0.0168026816 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Murder at the Excelsior Hotel 01d780/Custom_Model_Bag Set-aside 74eec6/Deck Chilling Presences 6d55da.yaml new file mode 100644 index 000000000..944710ecf --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Murder at the Excelsior Hotel 01d780/Custom_Model_Bag Set-aside 74eec6/Deck Chilling Presences 6d55da.yaml @@ -0,0 +1,172 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 231626 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2316': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493212055041441/90F035BD69A7C5C6B6F43426DDDA3A09DFCBCBDF/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: 3fbc07 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Chilling Presence + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 18.2369041 + posY: 1.52615535 + posZ: -5.314041 + rotX: 359.920776 + rotY: 269.999817 + rotZ: 0.0115456637 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231626 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2316': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493212055041441/90F035BD69A7C5C6B6F43426DDDA3A09DFCBCBDF/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: 19a53b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Chilling Presence + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 18.0128059 + posY: 1.67861116 + posZ: -5.32069969 + rotX: 359.93573 + rotY: 269.999268 + rotZ: 0.0115820542 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231626 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2316': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493212055041441/90F035BD69A7C5C6B6F43426DDDA3A09DFCBCBDF/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: aa6826 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Chilling Presence + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 18.01289 + posY: 1.70457137 + posZ: -5.32073832 + rotX: 359.920227 + rotY: 269.999817 + rotZ: 0.0159090124 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2316': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493212055041441/90F035BD69A7C5C6B6F43426DDDA3A09DFCBCBDF/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 231626 +- 231626 +- 231626 +Description: '' +GMNotes: '' +GUID: 6d55da +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Chilling Presences +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 13.9966421 + posY: 2.54866624 + posZ: 8.92116451 + rotX: 359.920135 + rotY: 269.988464 + rotZ: 0.0168937575 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Murder at the Excelsior Hotel 01d780/Custom_Model_Bag Set-aside 74eec6/Deck Cultists of the Enclave c0885d.yaml new file mode 100644 index 000000000..2c716dfe4 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Murder at the Excelsior Hotel 01d780/Custom_Model_Bag Set-aside 74eec6/Deck Cultists of the Enclave c0885d.yaml @@ -0,0 +1,172 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 231620 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2316': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493212055041441/90F035BD69A7C5C6B6F43426DDDA3A09DFCBCBDF/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Cultist. + GMNotes: '' + GUID: 3fbc07 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Cultist of the Enclave + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 18.4720955 + posY: 1.526727 + posZ: -2.507222 + rotX: 359.9202 + rotY: 269.999939 + rotZ: 0.01646921 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231620 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2316': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493212055041441/90F035BD69A7C5C6B6F43426DDDA3A09DFCBCBDF/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Cultist. + GMNotes: '' + GUID: b50ce8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Cultist of the Enclave + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 18.78685 + posY: 1.6961205 + posZ: -2.18036175 + rotX: 359.937164 + rotY: 270.0 + rotZ: 0.0101680821 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231620 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2316': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493212055041441/90F035BD69A7C5C6B6F43426DDDA3A09DFCBCBDF/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Cultist. + GMNotes: '' + GUID: 4441df + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Cultist of the Enclave + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 18.7869244 + posY: 1.70657849 + posZ: -2.18037772 + rotX: 359.936768 + rotY: 270.0 + rotZ: 0.0118672745 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2316': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493212055041441/90F035BD69A7C5C6B6F43426DDDA3A09DFCBCBDF/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 231620 +- 231620 +- 231620 +Description: '' +GMNotes: '' +GUID: c0885d +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Cultists of the Enclave +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 14.1607027 + posY: 2.54810143 + posZ: 8.077119 + rotX: 359.919434 + rotY: 269.989624 + rotZ: 0.017661266 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Murder at the Excelsior Hotel 01d780/Custom_Model_Bag Set-aside 74eec6/Deck Encephalon Souls 1df3fd.yaml new file mode 100644 index 000000000..6790b986f --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Murder at the Excelsior Hotel 01d780/Custom_Model_Bag Set-aside 74eec6/Deck Encephalon Souls 1df3fd.yaml @@ -0,0 +1,172 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 231614 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2316': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493212055041441/90F035BD69A7C5C6B6F43426DDDA3A09DFCBCBDF/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: 3fbc07 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Encephalon Signal + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 22.3816662 + posY: 1.52079952 + posZ: -3.96237373 + rotX: 359.920563 + rotY: 269.999817 + rotZ: 0.0132160513 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231614 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2316': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493212055041441/90F035BD69A7C5C6B6F43426DDDA3A09DFCBCBDF/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: 5c4124 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Encephalon Signal + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 22.237072 + posY: 1.67204773 + posZ: -3.90301514 + rotX: 359.933868 + rotY: 269.999939 + rotZ: -0.00105428451 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231614 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2316': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493212055041441/90F035BD69A7C5C6B6F43426DDDA3A09DFCBCBDF/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: 7613e0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Encephalon Signal + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 22.23712 + posY: 1.703849 + posZ: -3.90303564 + rotX: 359.920654 + rotY: 269.999878 + rotZ: 0.016180981 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2316': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493212055041441/90F035BD69A7C5C6B6F43426DDDA3A09DFCBCBDF/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 231614 +- 231614 +- 231614 +Description: '' +GMNotes: '' +GUID: 1df3fd +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Encephalon Souls +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 15.4637251 + posY: 2.547243 + posZ: 10.3449659 + rotX: 359.920135 + rotY: 269.981018 + rotZ: 0.0169016346 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Murder at the Excelsior Hotel 01d780/Custom_Model_Bag Set-aside 74eec6/Deck Hotel Security e3dc34.yaml new file mode 100644 index 000000000..8960d4d17 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Murder at the Excelsior Hotel 01d780/Custom_Model_Bag Set-aside 74eec6/Deck Hotel Security e3dc34.yaml @@ -0,0 +1,172 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 231617 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2316': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493212055041441/90F035BD69A7C5C6B6F43426DDDA3A09DFCBCBDF/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Monster. Staff. + GMNotes: '' + GUID: 3fbc07 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Hotel Security + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 18.4920654 + posY: 1.5275594 + posZ: 0.5202023 + rotX: 359.9204 + rotY: 270.000061 + rotZ: 0.0143561475 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231617 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2316': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493212055041441/90F035BD69A7C5C6B6F43426DDDA3A09DFCBCBDF/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Monster. Staff. + GMNotes: '' + GUID: 7f2492 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Hotel Security + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 18.9652824 + posY: 1.67940474 + posZ: 0.670329154 + rotX: 359.923431 + rotY: 270.0 + rotZ: 0.0105017265 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231617 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2316': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493212055041441/90F035BD69A7C5C6B6F43426DDDA3A09DFCBCBDF/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Monster. Staff. + GMNotes: '' + GUID: 3480cc + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Hotel Security + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 18.9653721 + posY: 1.69892037 + posZ: 0.6702867 + rotX: 359.920868 + rotY: 270.000031 + rotZ: 0.01596997 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2316': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493212055041441/90F035BD69A7C5C6B6F43426DDDA3A09DFCBCBDF/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 231617 +- 231617 +- 231617 +Description: '' +GMNotes: '' +GUID: e3dc34 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Hotel Security +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 14.0277367 + posY: 2.54902434 + posZ: 10.3909121 + rotX: 359.9201 + rotY: 270.010559 + rotZ: 0.0168623123 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Murder at the Excelsior Hotel 01d780/Custom_Model_Bag Set-aside 74eec6/Deck Locations fa2f3a.yaml new file mode 100644 index 000000000..d79b9e832 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Murder at the Excelsior Hotel 01d780/Custom_Model_Bag Set-aside 74eec6/Deck Locations fa2f3a.yaml @@ -0,0 +1,258 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 231914 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2319': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/778493212055043200/69BE533398A163171710A34F2FC068249B8E2B90/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493212055042209/FBBBE393755E3F8BAB1A2935E1F691EE8358054D/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Crime Scene. + GMNotes: '' + GUID: 70e5f9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Basement + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 12.44097 + posY: 1.70581508 + posZ: 14.5248308 + rotX: 359.936462 + rotY: 270.0 + rotZ: 180.014084 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231913 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2319': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/778493212055043200/69BE533398A163171710A34F2FC068249B8E2B90/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493212055042209/FBBBE393755E3F8BAB1A2935E1F691EE8358054D/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: b3ed47 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Office + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 12.3328686 + posY: 1.7079587 + posZ: 14.6802578 + rotX: 359.936829 + rotY: 270.0 + rotZ: 180.0146 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231912 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2319': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/778493212055043200/69BE533398A163171710A34F2FC068249B8E2B90/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493212055042209/FBBBE393755E3F8BAB1A2935E1F691EE8358054D/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Crime Scene. + GMNotes: '' + GUID: '423356' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Room 245 + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 12.401207 + posY: 1.72161973 + posZ: 14.8322611 + rotX: 359.936768 + rotY: 270.0 + rotZ: 180.013824 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231911 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2319': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/778493212055043200/69BE533398A163171710A34F2FC068249B8E2B90/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493212055042209/FBBBE393755E3F8BAB1A2935E1F691EE8358054D/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Crime Scene. + GMNotes: '' + GUID: 0f24e3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Room 212 + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 12.5886059 + posY: 1.70399439 + posZ: 14.6276894 + rotX: 359.937927 + rotY: 270.0 + rotZ: 180.015671 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231910 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2319': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/778493212055043200/69BE533398A163171710A34F2FC068249B8E2B90/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493212055042209/FBBBE393755E3F8BAB1A2935E1F691EE8358054D/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: '120736' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Hotel Roof + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 12.4108629 + posY: 1.54308629 + posZ: 14.7803688 + rotX: 359.920227 + rotY: 269.9999 + rotZ: 180.017563 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2319': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/778493212055043200/69BE533398A163171710A34F2FC068249B8E2B90/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493212055042209/FBBBE393755E3F8BAB1A2935E1F691EE8358054D/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 231914 +- 231913 +- 231912 +- 231911 +- 231910 +Description: '' +GMNotes: '' +GUID: fa2f3a +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Locations +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 12.8338022 + posY: 2.549773 + posZ: 9.414876 + rotX: 359.920135 + rotY: 270.000061 + rotZ: 0.01687928 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Murder at the Excelsior Hotel 01d780/Custom_Model_Bag Set-aside 74eec6/Deck Morbid Awarenesses d3eba4.yaml new file mode 100644 index 000000000..98e97522c --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Murder at the Excelsior Hotel 01d780/Custom_Model_Bag Set-aside 74eec6/Deck Morbid Awarenesses d3eba4.yaml @@ -0,0 +1,172 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 231623 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2316': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493212055041441/90F035BD69A7C5C6B6F43426DDDA3A09DFCBCBDF/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: 3fbc07 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Morbid Awareness + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 18.58808 + posY: 1.52577007 + posZ: -5.22194242 + rotX: 359.9201 + rotY: 269.999756 + rotZ: 0.0168050788 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231623 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2316': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493212055041441/90F035BD69A7C5C6B6F43426DDDA3A09DFCBCBDF/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: 363bfa + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Morbid Awareness + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 18.5665646 + posY: 1.67787862 + posZ: -4.75133038 + rotX: 359.915741 + rotY: 270.000458 + rotZ: -0.004531632 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231623 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2316': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493212055041441/90F035BD69A7C5C6B6F43426DDDA3A09DFCBCBDF/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: 870ee1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Morbid Awareness + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 18.56657 + posY: 1.70967972 + posZ: -4.75137043 + rotX: 359.920959 + rotY: 270.0 + rotZ: 0.0149811246 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2316': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493212055041441/90F035BD69A7C5C6B6F43426DDDA3A09DFCBCBDF/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 231623 +- 231623 +- 231623 +Description: '' +GMNotes: '' +GUID: d3eba4 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Morbid Awarenesses +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 13.4943819 + posY: 2.55078149 + posZ: 11.068409 + rotX: 359.920135 + rotY: 269.985718 + rotZ: 0.016898891 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Murder at the Excelsior Hotel 01d780/Custom_Model_Bag Set-aside 74eec6/Deck The True Culprit f6869f.yaml new file mode 100644 index 000000000..b175e3bef --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Murder at the Excelsior Hotel 01d780/Custom_Model_Bag Set-aside 74eec6/Deck The True Culprit f6869f.yaml @@ -0,0 +1,473 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 232024 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493212055043200/69BE533398A163171710A34F2FC068249B8E2B90/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493212055042209/FBBBE393755E3F8BAB1A2935E1F691EE8358054D/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: ad9989 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The True Culprit (v. X) + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.96141243 + posY: 1.55808747 + posZ: -2.79680943 + rotX: 359.913361 + rotY: 270.014252 + rotZ: 0.00547628 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232023 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493212055043200/69BE533398A163171710A34F2FC068249B8E2B90/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493212055042209/FBBBE393755E3F8BAB1A2935E1F691EE8358054D/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 371ecc + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The True Culprit (v. IX) + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.746577 + posY: 1.6757673 + posZ: -2.71787357 + rotX: 359.9345 + rotY: 270.011139 + rotZ: 1.92105389 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232022 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493212055043200/69BE533398A163171710A34F2FC068249B8E2B90/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493212055042209/FBBBE393755E3F8BAB1A2935E1F691EE8358054D/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: b4bac7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The True Culprit (v. VIII) + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.615811 + posY: 1.71121621 + posZ: -2.80853558 + rotX: 359.938232 + rotY: 270.000977 + rotZ: 359.9167 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232021 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493212055043200/69BE533398A163171710A34F2FC068249B8E2B90/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493212055042209/FBBBE393755E3F8BAB1A2935E1F691EE8358054D/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 8bb58e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The True Culprit (v. VII) + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.57873964 + posY: 1.68922377 + posZ: -2.45572829 + rotX: 359.942383 + rotY: 270.0003 + rotZ: 1.827583 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232020 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493212055043200/69BE533398A163171710A34F2FC068249B8E2B90/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493212055042209/FBBBE393755E3F8BAB1A2935E1F691EE8358054D/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: d48b3b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The True Culprit (v. VI) + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.44718242 + posY: 1.70022082 + posZ: -2.44712782 + rotX: 0.215484887 + rotY: 270.008331 + rotZ: 1.00920892 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232019 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493212055043200/69BE533398A163171710A34F2FC068249B8E2B90/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493212055042209/FBBBE393755E3F8BAB1A2935E1F691EE8358054D/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 0c7b37 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The True Culprit (v. V) + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.36171031 + posY: 1.89877725 + posZ: -2.87397265 + rotX: 359.941284 + rotY: 269.924438 + rotZ: 12.0947247 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232018 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493212055043200/69BE533398A163171710A34F2FC068249B8E2B90/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493212055042209/FBBBE393755E3F8BAB1A2935E1F691EE8358054D/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 6506d9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The True Culprit (v. IV) + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.67297745 + posY: 1.821249 + posZ: -2.821193 + rotX: 358.985626 + rotY: 269.999756 + rotZ: 7.40455961 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232017 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493212055043200/69BE533398A163171710A34F2FC068249B8E2B90/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493212055042209/FBBBE393755E3F8BAB1A2935E1F691EE8358054D/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 9a7486 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The True Culprit (v. III) + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.73344779 + posY: 1.70966685 + posZ: -3.07517958 + rotX: 359.937378 + rotY: 270.000427 + rotZ: 359.918976 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232016 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493212055043200/69BE533398A163171710A34F2FC068249B8E2B90/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493212055042209/FBBBE393755E3F8BAB1A2935E1F691EE8358054D/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: ae0f38 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The True Culprit (v. II) + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.97807765 + posY: 1.75352788 + posZ: -3.10018039 + rotX: 359.924164 + rotY: 270.1 + rotZ: 6.679489 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232015 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493212055043200/69BE533398A163171710A34F2FC068249B8E2B90/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493212055042209/FBBBE393755E3F8BAB1A2935E1F691EE8358054D/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 4d4cbc + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The True Culprit (v. I) + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.958307 + posY: 1.66082633 + posZ: -3.158538 + rotX: 359.734283 + rotY: 269.9997 + rotZ: 1.94759476 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493212055043200/69BE533398A163171710A34F2FC068249B8E2B90/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493212055042209/FBBBE393755E3F8BAB1A2935E1F691EE8358054D/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 232024 +- 232023 +- 232022 +- 232021 +- 232020 +- 232019 +- 232018 +- 232017 +- 232016 +- 232015 +Description: '' +GMNotes: '' +GUID: f6869f +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: The True Culprit +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -4.10691357 + posY: 2.55765748 + posZ: -11.9459095 + rotX: 0.0168690681 + rotY: 180.000031 + rotZ: 0.07988079 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Murder at the Excelsior Hotel 01d780/Custom_Tile 56a08d.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Murder at the Excelsior Hotel 01d780/Custom_Tile 56a08d.yaml new file mode 100644 index 000000000..bd2d5e9d7 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Murder at the Excelsior Hotel 01d780/Custom_Tile 56a08d.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 56a08d +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.6764 + posY: 1.613388 + posZ: -3.83000016 + rotX: 359.983124 + rotY: 0.00156122632 + rotZ: 359.920074 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Murder at the Excelsior Hotel 01d780/Custom_Tile 7234af.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Murder at the Excelsior Hotel 01d780/Custom_Tile 7234af.yaml new file mode 100644 index 000000000..6d1367027 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Murder at the Excelsior Hotel 01d780/Custom_Tile 7234af.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 7234af +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.6247828 + posZ: 3.86000037 + rotX: 359.983124 + rotY: 0.00176093343 + rotZ: 359.920074 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Murder at the Excelsior Hotel 01d780/Custom_Tile 89314b.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Murder at the Excelsior Hotel 01d780/Custom_Tile 89314b.yaml new file mode 100644 index 000000000..c80e2d045 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Murder at the Excelsior Hotel 01d780/Custom_Tile 89314b.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 89314b +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.2138 + posY: 1.62059987 + posZ: 3.91040039 + rotX: 359.93158 + rotY: 314.995239 + rotZ: 359.955444 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Murder at the Excelsior Hotel 01d780/Custom_Tile 9a82ba.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Murder at the Excelsior Hotel 01d780/Custom_Tile 9a82ba.yaml new file mode 100644 index 000000000..0ee9c7db0 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Murder at the Excelsior Hotel 01d780/Custom_Tile 9a82ba.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 9a82ba +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.057 + posY: 1.619245 + posZ: 0.05209976 + rotX: 359.920044 + rotY: 270.179626 + rotZ: 0.016649276 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Murder at the Excelsior Hotel 01d780/Custom_Tile c630c5.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Murder at the Excelsior Hotel 01d780/Custom_Tile c630c5.yaml new file mode 100644 index 000000000..266579e6b --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Murder at the Excelsior Hotel 01d780/Custom_Tile c630c5.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: c630c5 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.6764 + posY: 1.61112654 + posZ: -11.5100021 + rotX: 359.983124 + rotY: 0.00153610308 + rotZ: 359.920074 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Murder at the Excelsior Hotel 01d780/Custom_Tile Murder at the Excelsior Hotel bbb70a.ttslua new file mode 100644 index 000000000..46732a4a2 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Murder at the Excelsior Hotel 01d780/Custom_Tile Murder at the Excelsior Hotel bbb70a.ttslua @@ -0,0 +1,25 @@ +name = 'Excelsior' + +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 + +function standaloneClick() + Global.call('fillContainer', {object=self, key=name, mode='standalone'}) +end diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Murder at the Excelsior Hotel 01d780/Custom_Tile Murder at the Excelsior Hotel bbb70a.yaml new file mode 100644 index 000000000..4d93cd723 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Murder at the Excelsior Hotel 01d780/Custom_Tile Murder at the Excelsior Hotel bbb70a.yaml @@ -0,0 +1,42 @@ +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: http://cloud-3.steamusercontent.com/ugc/949588657194710961/D864BCCCC1C811EC7F0AED69D1C30C678D3D9FC9/ + ImageURL: http://cloud-3.steamusercontent.com/ugc/965354846165100486/3DC8FCEF364B30758B09EF96AF9458F2B8E64D56/ + WidthScale: 0.0 +Description: click to set chaos token difficulty +GMNotes: '' +GUID: bbb70a +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Tile Murder at the Excelsior Hotel bbb70a.ttslua' +LuaScriptState: '' +Name: Custom_Tile +Nickname: Murder at the Excelsior Hotel +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.88650012 + posY: 1.582664 + posZ: -14.4341049 + rotX: 359.919739 + rotY: 270.030579 + rotZ: 0.0167950485 + scaleX: 2.2 + scaleY: 1.0 + scaleZ: 2.2 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Murder at the Excelsior Hotel 01d780/Deck Act Deck 37760f.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Murder at the Excelsior Hotel 01d780/Deck Act Deck 37760f.yaml new file mode 100644 index 000000000..1aadeab5a --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Murder at the Excelsior Hotel 01d780/Deck Act Deck 37760f.yaml @@ -0,0 +1,129 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 232004 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493212055043200/69BE533398A163171710A34F2FC068249B8E2B90/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493212055042209/FBBBE393755E3F8BAB1A2935E1F691EE8358054D/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 2 + GMNotes: '' + GUID: e1c002 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Following Leads + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.20115781 + posY: 1.546711 + posZ: -6.99526072 + rotX: 0.0155486828 + rotY: 180.846 + rotZ: 0.08085919 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232003 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493212055043200/69BE533398A163171710A34F2FC068249B8E2B90/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493212055042209/FBBBE393755E3F8BAB1A2935E1F691EE8358054D/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 1 + GMNotes: '' + GUID: 7ea038 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: What Happened...? + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.934494 + posY: 1.69286835 + posZ: -6.94623375 + rotX: 359.990723 + rotY: 180.107437 + rotZ: 0.04639205 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493212055043200/69BE533398A163171710A34F2FC068249B8E2B90/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493212055042209/FBBBE393755E3F8BAB1A2935E1F691EE8358054D/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 232004 +- 232003 +Description: '' +GMNotes: '' +GUID: 37760f +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Act Deck +SidewaysCard: true +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 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Murder at the Excelsior Hotel 01d780/Deck Agenda Deck 888a6b.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Murder at the Excelsior Hotel 01d780/Deck Agenda Deck 888a6b.yaml new file mode 100644 index 000000000..709053b16 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Murder at the Excelsior Hotel 01d780/Deck Agenda Deck 888a6b.yaml @@ -0,0 +1,129 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 232002 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493212055043200/69BE533398A163171710A34F2FC068249B8E2B90/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493212055042209/FBBBE393755E3F8BAB1A2935E1F691EE8358054D/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 2 + GMNotes: '' + GUID: 463cbd + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Special Investigation + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.9179432 + posY: 1.55129838 + posZ: -2.1453898 + rotX: 0.0184600428 + rotY: 179.843033 + rotZ: 0.0799029 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232001 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493212055043200/69BE533398A163171710A34F2FC068249B8E2B90/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493212055042209/FBBBE393755E3F8BAB1A2935E1F691EE8358054D/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 1 + GMNotes: '' + GUID: ad9989 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Murder + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.4839544 + posY: 1.696932 + posZ: -2.160283 + rotX: 0.0149887586 + rotY: 179.9928 + rotZ: 0.0571661219 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2320': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493212055043200/69BE533398A163171710A34F2FC068249B8E2B90/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493212055042209/FBBBE393755E3F8BAB1A2935E1F691EE8358054D/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 232002 +- 232001 +Description: '' +GMNotes: '' +GUID: 888a6b +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Agenda Deck +SidewaysCard: true +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 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Murder at the Excelsior Hotel 01d780/Deck Encounter Deck fd4231.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Murder at the Excelsior Hotel 01d780/Deck Encounter Deck fd4231.yaml new file mode 100644 index 000000000..3d44f8eda --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Murder at the Excelsior Hotel 01d780/Deck Encounter Deck fd4231.yaml @@ -0,0 +1,989 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 231604 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2316': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493212055041441/90F035BD69A7C5C6B6F43426DDDA3A09DFCBCBDF/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Maddened Concierge + GMNotes: '' + GUID: b413df + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Mr. Trombly + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -6.373387 + posY: 1.82486868 + posZ: 0.166635916 + rotX: 359.920227 + rotY: 270.0008 + rotZ: 180.017029 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231605 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2316': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493212055041441/90F035BD69A7C5C6B6F43426DDDA3A09DFCBCBDF/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Staff. + GMNotes: '' + GUID: 3fbc07 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Conspicuous Staff + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -6.68058252 + posY: 1.79998648 + posZ: -0.08418883 + rotX: 359.9301 + rotY: 270.000183 + rotZ: 180.013977 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231605 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2316': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493212055041441/90F035BD69A7C5C6B6F43426DDDA3A09DFCBCBDF/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Staff. + GMNotes: '' + GUID: 66b07b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Conspicuous Staff + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -6.781808 + posY: 1.790729 + posZ: 0.4126418 + rotX: 359.93457 + rotY: 269.970947 + rotZ: 180.01442 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231605 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2316': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493212055041441/90F035BD69A7C5C6B6F43426DDDA3A09DFCBCBDF/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Staff. + GMNotes: '' + GUID: 3fbc07 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Conspicuous Staff + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -6.89647341 + posY: 1.78090549 + posZ: -0.5878452 + rotX: 359.936829 + rotY: 269.979736 + rotZ: 180.031555 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231606 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2316': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493212055041441/90F035BD69A7C5C6B6F43426DDDA3A09DFCBCBDF/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Guest. Innocent. + GMNotes: '' + GUID: 3fbc07 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Hotel Guest + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -6.518738 + posY: 1.77097952 + posZ: -0.0109593086 + rotX: 359.935944 + rotY: 269.9828 + rotZ: 180.030151 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231606 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2316': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493212055041441/90F035BD69A7C5C6B6F43426DDDA3A09DFCBCBDF/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Guest. Innocent. + GMNotes: '' + GUID: 574dae + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Hotel Guest + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -6.63282728 + posY: 1.76151943 + posZ: -0.0613127723 + rotX: 359.93634 + rotY: 269.982056 + rotZ: 180.028809 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231606 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2316': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493212055041441/90F035BD69A7C5C6B6F43426DDDA3A09DFCBCBDF/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Guest. Innocent. + GMNotes: '' + GUID: 99bf87 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Hotel Guest + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -6.89462233 + posY: 1.75204623 + posZ: -1.11835563 + rotX: 359.9245 + rotY: 269.983521 + rotZ: 180.065552 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231606 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2316': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493212055041441/90F035BD69A7C5C6B6F43426DDDA3A09DFCBCBDF/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Guest. Innocent. + GMNotes: '' + GUID: 3fbc07 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Hotel Guest + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -6.92433834 + posY: 1.74226749 + posZ: -0.260813832 + rotX: 359.935516 + rotY: 270.0002 + rotZ: 180.014832 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231607 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2316': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493212055041441/90F035BD69A7C5C6B6F43426DDDA3A09DFCBCBDF/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: c958cc + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Noxious Fumes + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -6.718242 + posY: 1.73227108 + posZ: 0.164747849 + rotX: 359.9396 + rotY: 269.999481 + rotZ: 180.009964 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231607 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2316': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493212055041441/90F035BD69A7C5C6B6F43426DDDA3A09DFCBCBDF/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: 3fbc07 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Noxious Fumes + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -6.59662151 + posY: 1.722631 + posZ: -0.203139991 + rotX: 359.933716 + rotY: 269.991028 + rotZ: 180.02243 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231608 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2316': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493212055041441/90F035BD69A7C5C6B6F43426DDDA3A09DFCBCBDF/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Curse. + GMNotes: '' + GUID: 3fbc07 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Driven to Madness + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -6.86629 + posY: 1.71320033 + posZ: -0.292970926 + rotX: 359.935944 + rotY: 269.9986 + rotZ: 180.015808 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231608 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2316': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493212055041441/90F035BD69A7C5C6B6F43426DDDA3A09DFCBCBDF/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Curse. + GMNotes: '' + GUID: 6bd162 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Driven to Madness + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -6.76068354 + posY: 1.70343292 + posZ: -0.34007284 + rotX: 359.935547 + rotY: 269.994934 + rotZ: 180.018127 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231608 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2316': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493212055041441/90F035BD69A7C5C6B6F43426DDDA3A09DFCBCBDF/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Curse. + GMNotes: '' + GUID: 3fbc07 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Driven to Madness + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -6.831557 + posY: 1.69378471 + posZ: -0.493145436 + rotX: 359.9357 + rotY: 270.0011 + rotZ: 180.0176 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231609 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2316': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493212055041441/90F035BD69A7C5C6B6F43426DDDA3A09DFCBCBDF/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: 3fbc07 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Blood on Your Hands + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -6.78308 + posY: 1.68404257 + posZ: -0.5505637 + rotX: 359.935516 + rotY: 270.006348 + rotZ: 180.01506 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231609 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2316': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493212055041441/90F035BD69A7C5C6B6F43426DDDA3A09DFCBCBDF/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: 3fbc07 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Blood on Your Hands + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -6.53709126 + posY: 1.903912 + posZ: -1.5848366 + rotX: 359.9222 + rotY: 270.01 + rotZ: 182.413971 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231609 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2316': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493212055041441/90F035BD69A7C5C6B6F43426DDDA3A09DFCBCBDF/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: 2ceeb1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Blood on Your Hands + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -6.693918 + posY: 1.70046782 + posZ: -1.6228466 + rotX: 359.912628 + rotY: 270.002869 + rotZ: 185.530869 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231609 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2316': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493212055041441/90F035BD69A7C5C6B6F43426DDDA3A09DFCBCBDF/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: 3fbc07 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Blood on Your Hands + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -6.759946 + posY: 1.71526814 + posZ: -0.5262743 + rotX: 359.935516 + rotY: 269.997528 + rotZ: 180.020615 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231610 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2316': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493212055041441/90F035BD69A7C5C6B6F43426DDDA3A09DFCBCBDF/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Evidence. + GMNotes: '' + GUID: 3fbc07 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Incriminating Evidence + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -6.251154 + posY: 1.712096 + posZ: 0.13677682 + rotX: 359.933655 + rotY: 269.998718 + rotZ: 180.0171 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231610 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2316': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493212055041441/90F035BD69A7C5C6B6F43426DDDA3A09DFCBCBDF/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Evidence. + GMNotes: '' + GUID: 953a77 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Incriminating Evidence + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -6.760958 + posY: 1.714692 + posZ: -0.302883625 + rotX: 359.935181 + rotY: 269.996765 + rotZ: 180.017426 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231611 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2316': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493212055041441/90F035BD69A7C5C6B6F43426DDDA3A09DFCBCBDF/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Curse. + GMNotes: '' + GUID: 1c7c45 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Violent Outburst + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -6.31987 + posY: 1.72793436 + posZ: 0.2180997 + rotX: 359.931854 + rotY: 270.040222 + rotZ: 179.96814 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231611 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2316': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493212055041441/90F035BD69A7C5C6B6F43426DDDA3A09DFCBCBDF/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Curse. + GMNotes: '' + GUID: 23b849 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Violent Outburst + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -6.782233 + posY: 1.71072483 + posZ: -0.242594719 + rotX: 359.947784 + rotY: 269.997375 + rotZ: 180.020737 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231611 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2316': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493212055041441/90F035BD69A7C5C6B6F43426DDDA3A09DFCBCBDF/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Curse. + GMNotes: '' + GUID: 3fbc07 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Violent Outburst + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -6.71362925 + posY: 1.56519091 + posZ: -0.37385878 + rotX: 359.920868 + rotY: 269.999268 + rotZ: 180.0248 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2316': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493212055041441/90F035BD69A7C5C6B6F43426DDDA3A09DFCBCBDF/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 231604 +- 231605 +- 231605 +- 231605 +- 231606 +- 231606 +- 231606 +- 231606 +- 231607 +- 231607 +- 231608 +- 231608 +- 231608 +- 231609 +- 231609 +- 231609 +- 231609 +- 231610 +- 231610 +- 231611 +- 231611 +- 231611 +Description: '' +GMNotes: '' +GUID: fd4231 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Encounter Deck +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.92770052 + posY: 1.72907436 + posZ: 5.75720167 + rotX: 359.919739 + rotY: 269.999969 + rotZ: 180.016815 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Murder at the Excelsior Hotel 01d780/Deck Leads Deck 227fad.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Murder at the Excelsior Hotel 01d780/Deck Leads Deck 227fad.yaml new file mode 100644 index 000000000..f971afed5 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Murder at the Excelsior Hotel 01d780/Deck Leads Deck 227fad.yaml @@ -0,0 +1,258 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 231615 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2316': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493212055041441/90F035BD69A7C5C6B6F43426DDDA3A09DFCBCBDF/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Stained by Blood + GMNotes: '' + GUID: e26f60 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Manager's Key + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -5.60788 + posY: 1.70687544 + posZ: -0.0783165 + rotX: 359.9264 + rotY: 270.002228 + rotZ: 0.005935799 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231621 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2316': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493212055041441/90F035BD69A7C5C6B6F43426DDDA3A09DFCBCBDF/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Vile Concoction + GMNotes: '' + GUID: 3fbc07 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Sinister Solution + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.70230126 + posY: 2.42021942 + posZ: 2.313648 + rotX: 325.816162 + rotY: 263.97818 + rotZ: 0.0421623737 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231624 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2316': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493212055041441/90F035BD69A7C5C6B6F43426DDDA3A09DFCBCBDF/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Mournful Vision of the Past + GMNotes: '' + GUID: be354d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Time-Worn Locket + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.522535741 + posY: 1.552968 + posZ: 1.54487741 + rotX: 359.919983 + rotY: 269.9976 + rotZ: 0.01814003 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231612 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2316': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493212055041441/90F035BD69A7C5C6B6F43426DDDA3A09DFCBCBDF/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Machinations from Beyond + GMNotes: '' + GUID: 6779fe + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Alien Device + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -1.7285943 + posY: 1.70214009 + posZ: -0.4410239 + rotX: 359.866974 + rotY: 270.0005 + rotZ: 0.0886248648 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231618 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2316': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493212055041441/90F035BD69A7C5C6B6F43426DDDA3A09DFCBCBDF/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Blasphemous Volume + GMNotes: '' + GUID: 8ac93f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Tome of Rituals + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -5.86973858 + posY: 1.70854938 + posZ: 0.17385383 + rotX: 359.923431 + rotY: 269.996246 + rotZ: 0.0113315 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2316': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493212055041441/90F035BD69A7C5C6B6F43426DDDA3A09DFCBCBDF/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 231615 +- 231621 +- 231624 +- 231612 +- 231618 +Description: '' +GMNotes: '' +GUID: 227fad +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Leads Deck +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -0.231100082 + posY: 1.65862477 + posZ: -10.4794044 + rotX: 359.919739 + rotY: 270.000122 + rotZ: 180.01683 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag North Country Cycle aaceca.ttslua b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag North Country Cycle aaceca.ttslua new file mode 100644 index 000000000..46067f58e --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag North Country Cycle aaceca.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.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.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 791837/Custom_Model_Bag North Country Cycle aaceca.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag North Country Cycle aaceca.yaml new file mode 100644 index 000000000..a532e6219 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag North Country Cycle aaceca.yaml @@ -0,0 +1,64 @@ +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 North Country Cycle aaceca/Bag Part 1 147dea.yaml' +- !include 'Custom_Model_Bag North Country Cycle aaceca/Bag Part 2 7f9f0d.yaml' +- !include 'Custom_Model_Bag North Country Cycle aaceca/Bag Part 3 df5156.yaml' +- !include 'Custom_Model_Bag North Country Cycle aaceca/Custom_Tile Core Difficulty + ea0896.yaml' +CustomMesh: + CastShadows: true + ColliderURL: '' + Convex: true + DiffuseURL: http://cloud-3.steamusercontent.com/ugc/798737729142942211/3504BAF688D57DC30E7E1E2009A0FD4951D3BA58/ + MaterialIndex: 3 + MeshURL: https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj + NormalURL: '' + TypeIndex: 6 +Description: '' +GMNotes: '' +GUID: aaceca +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Model_Bag North Country Cycle aaceca.ttslua' +LuaScriptState: '{"ml":{"147dea":{"lock":false,"pos":{"x":9.4431,"y":1.2854,"z":7.085},"rot":{"x":0.0799,"y":89.9987,"z":359.9831}},"7f9f0d":{"lock":false,"pos":{"x":9.3077,"y":1.2837,"z":0.2819},"rot":{"x":0.0799,"y":89.9984,"z":359.9831}},"df5156":{"lock":false,"pos":{"x":9.2722,"y":1.2819,"z":-6.0997},"rot":{"x":0.0799,"y":89.9909,"z":359.9831}},"ea0896":{"lock":false,"pos":{"x":-3.3332,"y":1.5816,"z":-15.257},"rot":{"x":359.9197,"y":270.0002,"z":0.0168}}}}' +MaterialIndex: -1 +MeshIndex: -1 +Name: Custom_Model_Bag +Nickname: North Country Cycle +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 32.62627 + posY: 4.377767 + posZ: -99.13525 + rotX: 0.0208085049 + rotY: 270.000061 + rotZ: 0.0167710986 + scaleX: 2.21 + scaleY: 0.2 + scaleZ: 2.46 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag North Country Cycle aaceca/Bag Part 1 147dea.ttslua b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag North Country Cycle aaceca/Bag Part 1 147dea.ttslua new file mode 100644 index 000000000..4acf9ea11 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag North Country Cycle aaceca/Bag Part 1 147dea.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 791837/Custom_Model_Bag North Country Cycle aaceca/Bag Part 1 147dea.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag North Country Cycle aaceca/Bag Part 1 147dea.yaml new file mode 100644 index 000000000..03da89aeb --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag North Country Cycle aaceca/Bag Part 1 147dea.yaml @@ -0,0 +1,55 @@ +Autoraise: true +ColorDiffuse: + b: 0.3816665 + g: 0.409656644 + r: 0.435539961 +ContainedObjects: +- !include 'Bag Part 1 147dea/Deck Set Aside f7e2c9.yaml' +- !include 'Bag Part 1 147dea/DeckCustom afbae6.yaml' +- !include 'Bag Part 1 147dea/Deck 94329c.yaml' +- !include 'Bag Part 1 147dea/Deck 71801c.yaml' +- !include 'Bag Part 1 147dea/Card 0d7742.yaml' +- !include 'Bag Part 1 147dea/Deck instructions bd8df8.yaml' +- !include 'Bag Part 1 147dea/Card cd26a2.yaml' +- !include 'Bag Part 1 147dea/Card b238b0.yaml' +- !include 'Bag Part 1 147dea/Custom_Tile 4066d9.yaml' +- !include 'Bag Part 1 147dea/Custom_Tile 2d4c2b.yaml' +- !include 'Bag Part 1 147dea/Card b60f07.yaml' +- !include 'Bag Part 1 147dea/Custom_Tile 7234af.yaml' +- !include 'Bag Part 1 147dea/Card 718835.yaml' +- !include 'Bag Part 1 147dea/Custom_Tile 087128.yaml' +- !include 'Bag Part 1 147dea/Card 89295c.yaml' +- !include 'Bag Part 1 147dea/Custom_Tile 6af68f.yaml' +- !include 'Bag Part 1 147dea/Custom_Tile 6ca432.yaml' +- !include 'Bag Part 1 147dea/Card 4875a0.yaml' +- !include 'Bag Part 1 147dea/Card 711660.yaml' +- !include 'Bag Part 1 147dea/Card b14575.yaml' +Description: North Country Cycle +GMNotes: '' +GUID: 147dea +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Bag Part 1 147dea.ttslua' +LuaScriptState: '{"ml":{"087128":{"lock":false,"pos":{"x":-23.6765,"y":1.6134,"z":-3.83},"rot":{"x":0.0169,"y":179.9955,"z":0.0799}},"0d7742":{"lock":false,"pos":{"x":-3.9555,"y":1.6557,"z":-10.4316},"rot":{"x":359.9197,"y":270.0036,"z":0.0168}},"2d4c2b":{"lock":false,"pos":{"x":-23.6765,"y":1.6179,"z":11.46},"rot":{"x":0.0169,"y":179.9954,"z":0.0799}},"4066d9":{"lock":false,"pos":{"x":-20.0611,"y":1.6128,"z":11.1353},"rot":{"x":359.9556,"y":224.8917,"z":0.0685}},"4875a0":{"lock":false,"pos":{"x":-18.9809,"y":1.6781,"z":-15.0786},"rot":{"x":359.9204,"y":270.0449,"z":180.0171}},"6af68f":{"lock":false,"pos":{"x":-23.6765,"y":1.6111,"z":-11.51},"rot":{"x":0.0169,"y":179.9954,"z":0.0799}},"6ca432":{"lock":false,"pos":{"x":-20.2002,"y":1.6063,"z":-11.4403},"rot":{"x":0.0684,"y":135.0001,"z":0.0446}},"711660":{"lock":false,"pos":{"x":-17.1142,"y":1.7976,"z":-15.2786},"rot":{"x":355.4229,"y":270.0488,"z":180.0205}},"71801c":{"lock":false,"pos":{"x":-2.6886,"y":1.6623,"z":-5.0485},"rot":{"x":359.9197,"y":269.9832,"z":0.0169}},"718835":{"lock":false,"pos":{"x":-23.6765,"y":1.689,"z":-0.03},"rot":{"x":359.9201,"y":269.9958,"z":180.0169}},"7234af":{"lock":false,"pos":{"x":-23.6765,"y":1.6157,"z":3.86},"rot":{"x":0.0169,"y":179.9954,"z":0.0799}},"89295c":{"lock":false,"pos":{"x":-23.6765,"y":1.6868,"z":-7.7},"rot":{"x":359.9201,"y":269.9964,"z":180.0169}},"94329c":{"lock":false,"pos":{"x":-2.7248,"y":1.664,"z":0.3733},"rot":{"x":359.9197,"y":269.9604,"z":0.0169}},"afbae6":{"lock":false,"pos":{"x":-3.9277,"y":1.7611,"z":5.7572},"rot":{"x":359.9197,"y":270.0192,"z":180.0168}},"b14575":{"lock":false,"pos":{"x":-50.9244,"y":1.7266,"z":8.1784},"rot":{"x":359.9201,"y":270.0036,"z":0.0169}},"b238b0":{"lock":false,"pos":{"x":-17.12,"y":1.6844,"z":15.19},"rot":{"x":359.9201,"y":269.9956,"z":180.0171}},"b60f07":{"lock":false,"pos":{"x":-23.6765,"y":1.6913,"z":7.57},"rot":{"x":359.9201,"y":269.997,"z":180.0169}},"bd8df8":{"lock":false,"pos":{"x":-13.2068,"y":1.6705,"z":2.7927},"rot":{"x":359.9201,"y":269.9949,"z":0.0169}},"cd26a2":{"lock":false,"pos":{"x":-18.5006,"y":1.7343,"z":14.8658},"rot":{"x":359.9212,"y":269.9879,"z":180.0177}},"f7e2c9":{"lock":false,"pos":{"x":1.6964,"y":1.6619,"z":14.2788},"rot":{"x":359.9552,"y":224.998,"z":180.0686}}}}' +MaterialIndex: -1 +MeshIndex: -1 +Name: Bag +Nickname: Part 1 +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 9.443054 + posY: 1.28539729 + posZ: 7.08495235 + rotX: 0.07993241 + rotY: 89.9987259 + rotZ: 359.9831 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag North Country Cycle aaceca/Bag Part 1 147dea/Card 0d7742.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag North Country Cycle aaceca/Bag Part 1 147dea/Card 0d7742.yaml new file mode 100644 index 000000000..25ad62a87 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag North Country Cycle aaceca/Bag Part 1 147dea/Card 0d7742.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 215 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360110193/728C77347649B1E31473D71366B50E1B30CAFCA1/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360110636/03AAF5BA7EBD786D13121466A15ED12C316E4ED5/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 0d7742 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.9555006 + posY: 1.65565026 + posZ: -10.4316006 + rotX: 359.919739 + rotY: 270.0036 + rotZ: 0.01683662 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag North Country Cycle aaceca/Bag Part 1 147dea/Card 4875a0.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag North Country Cycle aaceca/Bag Part 1 147dea/Card 4875a0.yaml new file mode 100644 index 000000000..836e2221d --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag North Country Cycle aaceca/Bag Part 1 147dea/Card 4875a0.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 218 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360110193/728C77347649B1E31473D71366B50E1B30CAFCA1/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360110636/03AAF5BA7EBD786D13121466A15ED12C316E4ED5/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 4875a0 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -18.9808521 + posY: 1.67805862 + posZ: -15.07862 + rotX: 359.920441 + rotY: 270.044861 + rotZ: 180.01712 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag North Country Cycle aaceca/Bag Part 1 147dea/Card 711660.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag North Country Cycle aaceca/Bag Part 1 147dea/Card 711660.yaml new file mode 100644 index 000000000..de032da7b --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag North Country Cycle aaceca/Bag Part 1 147dea/Card 711660.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 219 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360110193/728C77347649B1E31473D71366B50E1B30CAFCA1/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360110636/03AAF5BA7EBD786D13121466A15ED12C316E4ED5/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: '711660' +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -17.1142082 + posY: 1.79759717 + posZ: -15.2786112 + rotX: 355.4229 + rotY: 270.048767 + rotZ: 180.020538 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag North Country Cycle aaceca/Bag Part 1 147dea/Card 718835.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag North Country Cycle aaceca/Bag Part 1 147dea/Card 718835.yaml new file mode 100644 index 000000000..fba5ab04c --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag North Country Cycle aaceca/Bag Part 1 147dea/Card 718835.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 217 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360110193/728C77347649B1E31473D71366B50E1B30CAFCA1/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360110636/03AAF5BA7EBD786D13121466A15ED12C316E4ED5/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: '718835' +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -23.6765 + posY: 1.68904328 + posZ: -0.02999991 + rotX: 359.9201 + rotY: 269.99585 + rotZ: 180.016876 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag North Country Cycle aaceca/Bag Part 1 147dea/Card 89295c.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag North Country Cycle aaceca/Bag Part 1 147dea/Card 89295c.yaml new file mode 100644 index 000000000..aedfe5934 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag North Country Cycle aaceca/Bag Part 1 147dea/Card 89295c.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 216 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360110193/728C77347649B1E31473D71366B50E1B30CAFCA1/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360110636/03AAF5BA7EBD786D13121466A15ED12C316E4ED5/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 89295c +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -23.6765 + posY: 1.68678474 + posZ: -7.7 + rotX: 359.9201 + rotY: 269.996368 + rotZ: 180.016876 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag North Country Cycle aaceca/Bag Part 1 147dea/Card b14575.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag North Country Cycle aaceca/Bag Part 1 147dea/Card b14575.yaml new file mode 100644 index 000000000..b541eb206 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag North Country Cycle aaceca/Bag Part 1 147dea/Card b14575.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 215 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360110193/728C77347649B1E31473D71366B50E1B30CAFCA1/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360110636/03AAF5BA7EBD786D13121466A15ED12C316E4ED5/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: b14575 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -50.9244 + posY: 1.72662532 + posZ: 8.178399 + rotX: 359.9201 + rotY: 270.0036 + rotZ: 0.0168710463 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag North Country Cycle aaceca/Bag Part 1 147dea/Card b238b0.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag North Country Cycle aaceca/Bag Part 1 147dea/Card b238b0.yaml new file mode 100644 index 000000000..b0a80dc9e --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag North Country Cycle aaceca/Bag Part 1 147dea/Card b238b0.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 222 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360110193/728C77347649B1E31473D71366B50E1B30CAFCA1/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360110636/03AAF5BA7EBD786D13121466A15ED12C316E4ED5/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: b238b0 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -17.1199951 + posY: 1.68437886 + posZ: 15.1900187 + rotX: 359.920135 + rotY: 269.995575 + rotZ: 180.0171 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag North Country Cycle aaceca/Bag Part 1 147dea/Card b60f07.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag North Country Cycle aaceca/Bag Part 1 147dea/Card b60f07.yaml new file mode 100644 index 000000000..04c5e5b4d --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag North Country Cycle aaceca/Bag Part 1 147dea/Card b60f07.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 220 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360110193/728C77347649B1E31473D71366B50E1B30CAFCA1/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360110636/03AAF5BA7EBD786D13121466A15ED12C316E4ED5/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: b60f07 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -23.6764984 + posY: 1.6912812 + posZ: 7.57000065 + rotX: 359.9201 + rotY: 269.996979 + rotZ: 180.016861 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag North Country Cycle aaceca/Bag Part 1 147dea/Card cd26a2.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag North Country Cycle aaceca/Bag Part 1 147dea/Card cd26a2.yaml new file mode 100644 index 000000000..41f6b789f --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag North Country Cycle aaceca/Bag Part 1 147dea/Card cd26a2.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 223 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360110193/728C77347649B1E31473D71366B50E1B30CAFCA1/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360110636/03AAF5BA7EBD786D13121466A15ED12C316E4ED5/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: cd26a2 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -18.500639 + posY: 1.73425579 + posZ: 14.86584 + rotX: 359.921173 + rotY: 269.987885 + rotZ: 180.017731 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag North Country Cycle aaceca/Bag Part 1 147dea/Custom_Tile 087128.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag North Country Cycle aaceca/Bag Part 1 147dea/Custom_Tile 087128.yaml new file mode 100644 index 000000000..31265f6a4 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag North Country Cycle aaceca/Bag Part 1 147dea/Custom_Tile 087128.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 087128 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.6765 + posY: 1.6133877 + posZ: -3.82999969 + rotX: 0.0168780852 + rotY: 179.995468 + rotZ: 0.07993827 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag North Country Cycle aaceca/Bag Part 1 147dea/Custom_Tile 2d4c2b.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag North Country Cycle aaceca/Bag Part 1 147dea/Custom_Tile 2d4c2b.yaml new file mode 100644 index 000000000..d4421a4eb --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag North Country Cycle aaceca/Bag Part 1 147dea/Custom_Tile 2d4c2b.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 2d4c2b +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.6765 + posY: 1.61789 + posZ: 11.46 + rotX: 0.0168782752 + rotY: 179.995438 + rotZ: 0.07993942 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag North Country Cycle aaceca/Bag Part 1 147dea/Custom_Tile 4066d9.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag North Country Cycle aaceca/Bag Part 1 147dea/Custom_Tile 4066d9.yaml new file mode 100644 index 000000000..6c3ed4d01 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag North Country Cycle aaceca/Bag Part 1 147dea/Custom_Tile 4066d9.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 4066d9 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.0611 + posY: 1.612753 + posZ: 11.1353006 + rotX: 359.955566 + rotY: 224.891663 + rotZ: 0.06848948 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag North Country Cycle aaceca/Bag Part 1 147dea/Custom_Tile 6af68f.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag North Country Cycle aaceca/Bag Part 1 147dea/Custom_Tile 6af68f.yaml new file mode 100644 index 000000000..424a43aa5 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag North Country Cycle aaceca/Bag Part 1 147dea/Custom_Tile 6af68f.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 6af68f +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.6765 + posY: 1.61112618 + posZ: -11.5100012 + rotX: 0.0168779921 + rotY: 179.995438 + rotZ: 0.07993768 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag North Country Cycle aaceca/Bag Part 1 147dea/Custom_Tile 6ca432.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag North Country Cycle aaceca/Bag Part 1 147dea/Custom_Tile 6ca432.yaml new file mode 100644 index 000000000..35a02f8bd --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag North Country Cycle aaceca/Bag Part 1 147dea/Custom_Tile 6ca432.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 6ca432 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.2001972 + posY: 1.6062994 + posZ: -11.4403019 + rotX: 0.06843239 + rotY: 135.000061 + rotZ: 0.04456244 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag North Country Cycle aaceca/Bag Part 1 147dea/Custom_Tile 7234af.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag North Country Cycle aaceca/Bag Part 1 147dea/Custom_Tile 7234af.yaml new file mode 100644 index 000000000..0e439dce5 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag North Country Cycle aaceca/Bag Part 1 147dea/Custom_Tile 7234af.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 7234af +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.6765 + posY: 1.6156522 + posZ: 3.86 + rotX: 0.0168782379 + rotY: 179.995422 + rotZ: 0.07993866 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag North Country Cycle aaceca/Bag Part 1 147dea/Deck 71801c.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag North Country Cycle aaceca/Bag Part 1 147dea/Deck 71801c.yaml new file mode 100644 index 000000000..7ca8a25ba --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag North Country Cycle aaceca/Bag Part 1 147dea/Deck 71801c.yaml @@ -0,0 +1,127 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 115606 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360111286/BC64CB7E242E7AFF3F9F3A68875AAF5B78122FEB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360111889/C34C74097577A0BF1C377778F42F18ECD23E7E76/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 78171e + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.33816671 + posY: 1.03171325 + posZ: -1.18097329 + rotX: -5.3668864e-06 + rotY: 179.999985 + rotZ: -1.81576183e-07 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 115605 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360111286/BC64CB7E242E7AFF3F9F3A68875AAF5B78122FEB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360111889/C34C74097577A0BF1C377778F42F18ECD23E7E76/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 292aaa + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.366716 + posY: 1.17063475 + posZ: -1.35794246 + rotX: -0.002537766 + rotY: 179.999908 + rotZ: -0.0009498952 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '1156': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360111286/BC64CB7E242E7AFF3F9F3A68875AAF5B78122FEB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360111889/C34C74097577A0BF1C377778F42F18ECD23E7E76/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 115606 +- 115605 +Description: '' +GMNotes: '' +GUID: 71801c +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.68857384 + posY: 1.66233361 + posZ: -5.048525 + rotX: 359.919739 + rotY: 269.983215 + rotZ: 0.0168614816 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag North Country Cycle aaceca/Bag Part 1 147dea/Deck 94329c.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag North Country Cycle aaceca/Bag Part 1 147dea/Deck 94329c.yaml new file mode 100644 index 000000000..8d158c0be --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag North Country Cycle aaceca/Bag Part 1 147dea/Deck 94329c.yaml @@ -0,0 +1,127 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 115508 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360111286/BC64CB7E242E7AFF3F9F3A68875AAF5B78122FEB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360111889/C34C74097577A0BF1C377778F42F18ECD23E7E76/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: cf3614 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 5.92712927 + posY: 1.03171325 + posZ: 0.153432816 + rotX: 9.7534226e-08 + rotY: 180.007431 + rotZ: 2.059673e-06 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 115507 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360111286/BC64CB7E242E7AFF3F9F3A68875AAF5B78122FEB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360111889/C34C74097577A0BF1C377778F42F18ECD23E7E76/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 292aaa + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 6.00190258 + posY: 1.176843 + posZ: 0.269486785 + rotX: -0.00324497954 + rotY: 180.007462 + rotZ: -0.0001391422 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '1155': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360111286/BC64CB7E242E7AFF3F9F3A68875AAF5B78122FEB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360111889/C34C74097577A0BF1C377778F42F18ECD23E7E76/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 115508 +- 115507 +Description: '' +GMNotes: '' +GUID: 94329c +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.7248 + posY: 1.6639775 + posZ: 0.373299748 + rotX: 359.919739 + rotY: 269.960358 + rotZ: 0.0168931559 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag North Country Cycle aaceca/Bag Part 1 147dea/Deck Set Aside f7e2c9.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag North Country Cycle aaceca/Bag Part 1 147dea/Deck Set Aside f7e2c9.yaml new file mode 100644 index 000000000..25d897dc8 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag North Country Cycle aaceca/Bag Part 1 147dea/Deck Set Aside f7e2c9.yaml @@ -0,0 +1,176 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 520 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359986714/47F112D1423DC8A1C48969B30D4C3BBB0217B757/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 92a42c + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Sheriff Harper + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 12.1539478 + posY: 1.231686 + posZ: 15.01947 + rotX: -0.00133470993 + rotY: 179.999954 + rotZ: -0.000442827441 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 221 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360110193/728C77347649B1E31473D71366B50E1B30CAFCA1/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360110636/03AAF5BA7EBD786D13121466A15ED12C316E4ED5/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 8dc0cc + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Blocked Road + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 12.3215218 + posY: 1.50550485 + posZ: 15.0796375 + rotX: 0.102033846 + rotY: 180.002609 + rotZ: 180.757736 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 224 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360110193/728C77347649B1E31473D71366B50E1B30CAFCA1/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360110636/03AAF5BA7EBD786D13121466A15ED12C316E4ED5/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: d0aa7b + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dense Forest + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 12.2320385 + posY: 1.3706193 + posZ: 14.72225 + rotX: 0.081200175 + rotY: 180.009735 + rotZ: 180.596985 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360110193/728C77347649B1E31473D71366B50E1B30CAFCA1/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360110636/03AAF5BA7EBD786D13121466A15ED12C316E4ED5/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + '5': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359986714/47F112D1423DC8A1C48969B30D4C3BBB0217B757/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 520 +- 221 +- 224 +Description: part 1 +GMNotes: '' +GUID: f7e2c9 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Set Aside +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 1.69640112 + posY: 1.66187441 + posZ: 14.2788019 + rotX: 359.95517 + rotY: 224.997971 + rotZ: 180.068649 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag North Country Cycle aaceca/Bag Part 1 147dea/Deck instructions bd8df8.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag North Country Cycle aaceca/Bag Part 1 147dea/Deck instructions bd8df8.yaml new file mode 100644 index 000000000..2303a8928 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag North Country Cycle aaceca/Bag Part 1 147dea/Deck instructions bd8df8.yaml @@ -0,0 +1,213 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 228 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360110193/728C77347649B1E31473D71366B50E1B30CAFCA1/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360110636/03AAF5BA7EBD786D13121466A15ED12C316E4ED5/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: '713671' + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 4.75747 + posY: 1.031547 + posZ: 4.225077 + rotX: -4.93925654e-07 + rotY: 179.999863 + rotZ: -1.79904e-06 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 227 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360110193/728C77347649B1E31473D71366B50E1B30CAFCA1/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360110636/03AAF5BA7EBD786D13121466A15ED12C316E4ED5/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: b69778 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 4.581632 + posY: 1.17665088 + posZ: 4.02917051 + rotX: 0.00407082634 + rotY: 179.999908 + rotZ: -0.00236436678 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 226 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360110193/728C77347649B1E31473D71366B50E1B30CAFCA1/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360110636/03AAF5BA7EBD786D13121466A15ED12C316E4ED5/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 8cc9ad + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -12.9974813 + posY: 1.81334579 + posZ: -0.720715761 + rotX: 359.9728 + rotY: 270.004578 + rotZ: 180.01973 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 225 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360110193/728C77347649B1E31473D71366B50E1B30CAFCA1/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360110636/03AAF5BA7EBD786D13121466A15ED12C316E4ED5/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: fa733d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -12.86368 + posY: 1.673608 + posZ: -0.7965269 + rotX: 359.9214 + rotY: 269.9949 + rotZ: 180.025528 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360110193/728C77347649B1E31473D71366B50E1B30CAFCA1/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360110636/03AAF5BA7EBD786D13121466A15ED12C316E4ED5/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 228 +- 227 +- 226 +- 225 +Description: '' +GMNotes: '' +GUID: bd8df8 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: instructions +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -13.2067995 + posY: 1.67048931 + posZ: 2.79269958 + rotX: 359.9201 + rotY: 269.994934 + rotZ: 0.0168836527 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag North Country Cycle aaceca/Bag Part 1 147dea/DeckCustom afbae6.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag North Country Cycle aaceca/Bag Part 1 147dea/DeckCustom afbae6.yaml new file mode 100644 index 000000000..258786a40 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag North Country Cycle aaceca/Bag Part 1 147dea/DeckCustom afbae6.yaml @@ -0,0 +1,1030 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 500 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359986714/47F112D1423DC8A1C48969B30D4C3BBB0217B757/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 92a42c + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 9.266296 + posY: 1.34592855 + posZ: -7.206573 + rotX: -1.0221017e-05 + rotY: 179.999924 + rotZ: 179.998016 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 501 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: 92a42c + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 6.195751e-08 + posY: 1.04493034 + posZ: 1.40848442e-07 + rotX: -2.56517474e-09 + rotY: 180.0 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 502 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: 92a42c + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 6.195751e-08 + posY: 1.04493034 + posZ: 1.40848442e-07 + rotX: -2.56517474e-09 + rotY: 180.0 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 503 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: 92a42c + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 6.195751e-08 + posY: 1.04493034 + posZ: 1.40848442e-07 + rotX: -2.56517474e-09 + rotY: 180.0 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 504 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: 92a42c + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 6.195751e-08 + posY: 1.04493034 + posZ: 1.40848442e-07 + rotX: -2.56517474e-09 + rotY: 180.0 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 505 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: 92a42c + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 6.195751e-08 + posY: 1.04493034 + posZ: 1.40848442e-07 + rotX: -2.56517474e-09 + rotY: 180.0 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 506 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: 92a42c + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 6.195751e-08 + posY: 1.04493034 + posZ: 1.40848442e-07 + rotX: -2.56517474e-09 + rotY: 180.0 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 507 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: 92a42c + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 6.195751e-08 + posY: 1.04493034 + posZ: 1.40848442e-07 + rotX: -2.56517474e-09 + rotY: 180.0 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 508 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: 92a42c + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 6.195751e-08 + posY: 1.04493034 + posZ: 1.40848442e-07 + rotX: -2.56517474e-09 + rotY: 180.0 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 509 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: 92a42c + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 6.195751e-08 + posY: 1.04493034 + posZ: 1.40848442e-07 + rotX: -2.56517474e-09 + rotY: 180.0 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 510 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: 92a42c + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 6.195751e-08 + posY: 1.04493034 + posZ: 1.40848442e-07 + rotX: -2.56517474e-09 + rotY: 180.0 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 511 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: 92a42c + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 6.195751e-08 + posY: 1.04493034 + posZ: 1.40848442e-07 + rotX: -2.56517474e-09 + rotY: 180.0 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 512 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: 92a42c + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 6.195751e-08 + posY: 1.04493034 + posZ: 1.40848442e-07 + rotX: -2.56517474e-09 + rotY: 180.0 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 513 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: 92a42c + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 6.195751e-08 + posY: 1.04493034 + posZ: 1.40848442e-07 + rotX: -2.56517474e-09 + rotY: 180.0 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 514 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: 92a42c + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 6.195751e-08 + posY: 1.04493034 + posZ: 1.40848442e-07 + rotX: -2.56517474e-09 + rotY: 180.0 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 515 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: 92a42c + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 6.195751e-08 + posY: 1.04493034 + posZ: 1.40848442e-07 + rotX: -2.56517474e-09 + rotY: 180.0 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 516 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: 92a42c + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 6.195751e-08 + posY: 1.04493034 + posZ: 1.40848442e-07 + rotX: -2.56517474e-09 + rotY: 180.0 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 517 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: 92a42c + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 6.195751e-08 + posY: 1.04493034 + posZ: 1.40848442e-07 + rotX: -2.56517474e-09 + rotY: 180.0 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 518 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: 92a42c + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 6.195751e-08 + posY: 1.04493034 + posZ: 1.40848442e-07 + rotX: -2.56517474e-09 + rotY: 180.0 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 519 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: 92a42c + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 6.195751e-08 + posY: 1.04493034 + posZ: 1.40848442e-07 + rotX: -2.56517474e-09 + rotY: 180.0 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 521 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: 92a42c + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 6.195751e-08 + posY: 1.04493034 + posZ: 1.40848442e-07 + rotX: -2.56517474e-09 + rotY: 180.0 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 522 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: 92a42c + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 6.195751e-08 + posY: 1.04493034 + posZ: 1.40848442e-07 + rotX: -2.56517474e-09 + rotY: 180.0 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 523 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: 92a42c + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 6.195751e-08 + posY: 1.04493034 + posZ: 1.40848442e-07 + rotX: -2.56517474e-09 + rotY: 180.0 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 524 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: 92a42c + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 6.195751e-08 + posY: 1.04493034 + posZ: 1.40848442e-07 + rotX: -2.56517474e-09 + rotY: 180.0 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 525 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: 92a42c + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 6.195751e-08 + posY: 1.04493034 + posZ: 1.40848442e-07 + rotX: -2.56517474e-09 + rotY: 180.0 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 526 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: 92a42c + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 6.195751e-08 + posY: 1.04493034 + posZ: 1.40848442e-07 + rotX: -2.56517474e-09 + rotY: 180.0 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 527 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: 92a42c + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 6.195751e-08 + posY: 1.04493034 + posZ: 1.40848442e-07 + rotX: -2.56517474e-09 + rotY: 180.0 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 528 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: 92a42c + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 6.195751e-08 + posY: 1.04493034 + posZ: 1.40848442e-07 + rotX: -2.56517474e-09 + rotY: 180.0 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '5': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359986714/47F112D1423DC8A1C48969B30D4C3BBB0217B757/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 500 +- 501 +- 502 +- 503 +- 504 +- 505 +- 506 +- 507 +- 508 +- 509 +- 510 +- 511 +- 512 +- 513 +- 514 +- 515 +- 516 +- 517 +- 518 +- 519 +- 521 +- 522 +- 523 +- 524 +- 525 +- 526 +- 527 +- 528 +Description: '' +GMNotes: '' +GUID: afbae6 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: DeckCustom +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.92770052 + posY: 1.761051 + posZ: 5.757201 + rotX: 359.919739 + rotY: 270.019165 + rotZ: 180.0168 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag North Country Cycle aaceca/Bag Part 2 7f9f0d.ttslua b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag North Country Cycle aaceca/Bag Part 2 7f9f0d.ttslua new file mode 100644 index 000000000..4acf9ea11 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag North Country Cycle aaceca/Bag Part 2 7f9f0d.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 791837/Custom_Model_Bag North Country Cycle aaceca/Bag Part 2 7f9f0d.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag North Country Cycle aaceca/Bag Part 2 7f9f0d.yaml new file mode 100644 index 000000000..b21bcc162 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag North Country Cycle aaceca/Bag Part 2 7f9f0d.yaml @@ -0,0 +1,61 @@ +Autoraise: true +ColorDiffuse: + b: 0.67885983 + g: 0.720799267 + r: 0.759582 +ContainedObjects: +- !include 'Bag Part 2 7f9f0d/Deck set aside b7b0af.yaml' +- !include 'Bag Part 2 7f9f0d/Deck Encounter deck 8fb673.yaml' +- !include 'Bag Part 2 7f9f0d/Card Agenda 9a31a2.yaml' +- !include 'Bag Part 2 7f9f0d/Deck Act 3c18b1.yaml' +- !include 'Bag Part 2 7f9f0d/Card 713671.yaml' +- !include 'Bag Part 2 7f9f0d/Deck Blazing Fire 2119d3.yaml' +- !include 'Bag Part 2 7f9f0d/Deck instructions 17aa19.yaml' +- !include 'Bag Part 2 7f9f0d/Card b3fc0c.yaml' +- !include 'Bag Part 2 7f9f0d/Custom_Tile 7234af.yaml' +- !include 'Bag Part 2 7f9f0d/Card 2f7a8d.yaml' +- !include 'Bag Part 2 7f9f0d/Custom_Tile 6ceb58.yaml' +- !include 'Bag Part 2 7f9f0d/Card 7bc8af.yaml' +- !include 'Bag Part 2 7f9f0d/Custom_Tile aa51bd.yaml' +- !include 'Bag Part 2 7f9f0d/Card 40482a.yaml' +- !include 'Bag Part 2 7f9f0d/Card d46ad3.yaml' +- !include 'Bag Part 2 7f9f0d/Custom_Tile 552ae9.yaml' +- !include 'Bag Part 2 7f9f0d/Card 4230c1.yaml' +- !include 'Bag Part 2 7f9f0d/Custom_Tile c11875.yaml' +- !include 'Bag Part 2 7f9f0d/Custom_Tile 453607.yaml' +- !include 'Bag Part 2 7f9f0d/Custom_Tile e5f61a.yaml' +- !include 'Bag Part 2 7f9f0d/Card ed1fa4.yaml' +- !include 'Bag Part 2 7f9f0d/Custom_Tile 77e04b.yaml' +- !include 'Bag Part 2 7f9f0d/Card e9bc3d.yaml' +- !include 'Bag Part 2 7f9f0d/Custom_Tile 374846.yaml' +- !include 'Bag Part 2 7f9f0d/Card 66e655.yaml' +- !include 'Bag Part 2 7f9f0d/Card 19742b.yaml' +Description: North Country Cycle +GMNotes: '' +GUID: 7f9f0d +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Bag Part 2 7f9f0d.ttslua' +LuaScriptState: '{"ml":{"17aa19":{"lock":false,"pos":{"x":-11.9634,"y":1.6696,"z":2.7802},"rot":{"x":359.9201,"y":269.9858,"z":0.0169}},"19742b":{"lock":false,"pos":{"x":-50.9244,"y":1.7266,"z":8.1784},"rot":{"x":359.9201,"y":269.9855,"z":0.0169}},"2119d3":{"lock":false,"pos":{"x":-11.5241,"y":1.6887,"z":13.6405},"rot":{"x":359.9201,"y":269.9809,"z":180.0169}},"2f7a8d":{"lock":false,"pos":{"x":-17.1199,"y":1.6799,"z":-0.03},"rot":{"x":359.9201,"y":269.9971,"z":180.0169}},"374846":{"lock":false,"pos":{"x":-30.2242,"y":1.6225,"z":-3.83},"rot":{"x":359.9831,"y":0.0058,"z":359.92}},"3c18b1":{"lock":false,"pos":{"x":-2.6871,"y":1.655,"z":-5.0463},"rot":{"x":359.9197,"y":269.9698,"z":0.0169}},"40482a":{"lock":false,"pos":{"x":-23.6765,"y":1.6913,"z":7.57},"rot":{"x":359.9201,"y":269.9971,"z":180.0169}},"4230c1":{"lock":false,"pos":{"x":-23.6765,"y":1.6868,"z":-7.7},"rot":{"x":359.9201,"y":269.9965,"z":180.0169}},"453607":{"lock":false,"pos":{"x":-26.7745,"y":1.6198,"z":3.4345},"rot":{"x":359.9315,"y":315.0001,"z":359.9554}},"552ae9":{"lock":false,"pos":{"x":-23.6764,"y":1.6134,"z":-3.83},"rot":{"x":359.9831,"y":0.0058,"z":359.92}},"66e655":{"lock":false,"pos":{"x":-30.2243,"y":1.6959,"z":-7.7},"rot":{"x":359.9201,"y":269.9863,"z":180.0169}},"6ceb58":{"lock":false,"pos":{"x":-17.1199,"y":1.6042,"z":-3.83},"rot":{"x":359.9831,"y":0.0058,"z":359.9201}},"713671":{"lock":false,"pos":{"x":-3.956,"y":1.6556,"z":-10.4412},"rot":{"x":359.9197,"y":269.9855,"z":0.0169}},"7234af":{"lock":false,"pos":{"x":-17.12,"y":1.6065,"z":3.86},"rot":{"x":359.9831,"y":0.0057,"z":359.92}},"77e04b":{"lock":false,"pos":{"x":-30.2242,"y":1.6248,"z":3.86},"rot":{"x":359.9831,"y":0.0058,"z":359.92}},"7bc8af":{"lock":false,"pos":{"x":-17.12,"y":1.6776,"z":-7.7},"rot":{"x":359.9201,"y":269.9971,"z":180.0169}},"8fb673":{"lock":false,"pos":{"x":-3.9276,"y":1.7024,"z":5.7571},"rot":{"x":359.9197,"y":269.9856,"z":180.0168}},"9a31a2":{"lock":false,"pos":{"x":-2.7247,"y":1.6571,"z":0.3733},"rot":{"x":359.9197,"y":269.9856,"z":0.0169}},"aa51bd":{"lock":false,"pos":{"x":-20.4906,"y":1.61,"z":-0.2397},"rot":{"x":0.0799,"y":89.9999,"z":359.9831}},"b3fc0c":{"lock":false,"pos":{"x":-17.12,"y":1.6821,"z":7.57},"rot":{"x":359.9201,"y":269.9958,"z":180.0169}},"b7b0af":{"lock":false,"pos":{"x":1.6965,"y":1.6545,"z":14.2788},"rot":{"x":359.9552,"y":224.9978,"z":0.0687}},"c11875":{"lock":false,"pos":{"x":-27.044,"y":1.6214,"z":7.421},"rot":{"x":0.0799,"y":90.0002,"z":359.9831}},"d46ad3":{"lock":false,"pos":{"x":-23.6765,"y":1.689,"z":-0.03},"rot":{"x":359.9201,"y":269.9957,"z":180.0169}},"e5f61a":{"lock":false,"pos":{"x":-27.0874,"y":1.6183,"z":-3.4055},"rot":{"x":0.0446,"y":45,"z":359.9316}},"e9bc3d":{"lock":false,"pos":{"x":-30.2242,"y":1.6982,"z":-0.03},"rot":{"x":359.9201,"y":269.9972,"z":180.0169}},"ed1fa4":{"lock":false,"pos":{"x":-30.2242,"y":1.7004,"z":7.57},"rot":{"x":359.9201,"y":269.9964,"z":180.0169}}}}' +MaterialIndex: -1 +MeshIndex: -1 +Name: Bag +Nickname: Part 2 +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 9.3076725 + posY: 1.28365707 + posZ: 0.2819432 + rotX: 0.07992938 + rotY: 89.99837 + rotZ: 359.9831 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag North Country Cycle aaceca/Bag Part 2 7f9f0d/Card 19742b.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag North Country Cycle aaceca/Bag Part 2 7f9f0d/Card 19742b.yaml new file mode 100644 index 000000000..4cb8bdafd --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag North Country Cycle aaceca/Bag Part 2 7f9f0d/Card 19742b.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 241 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360110193/728C77347649B1E31473D71366B50E1B30CAFCA1/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360110636/03AAF5BA7EBD786D13121466A15ED12C316E4ED5/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 19742b +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -50.9243851 + posY: 1.72662532 + posZ: 8.17843151 + rotX: 359.9201 + rotY: 269.985474 + rotZ: 0.01689879 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag North Country Cycle aaceca/Bag Part 2 7f9f0d/Card 2f7a8d.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag North Country Cycle aaceca/Bag Part 2 7f9f0d/Card 2f7a8d.yaml new file mode 100644 index 000000000..e60256f11 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag North Country Cycle aaceca/Bag Part 2 7f9f0d/Card 2f7a8d.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 242 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360110193/728C77347649B1E31473D71366B50E1B30CAFCA1/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360110636/03AAF5BA7EBD786D13121466A15ED12C316E4ED5/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 2f7a8d +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -17.1199226 + posY: 1.67990065 + posZ: -0.0300162621 + rotX: 359.9201 + rotY: 269.997131 + rotZ: 180.016861 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag North Country Cycle aaceca/Bag Part 2 7f9f0d/Card 40482a.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag North Country Cycle aaceca/Bag Part 2 7f9f0d/Card 40482a.yaml new file mode 100644 index 000000000..0f1a1b12f --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag North Country Cycle aaceca/Bag Part 2 7f9f0d/Card 40482a.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 245 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360110193/728C77347649B1E31473D71366B50E1B30CAFCA1/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360110636/03AAF5BA7EBD786D13121466A15ED12C316E4ED5/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 40482a +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -23.6764832 + posY: 1.6912812 + posZ: 7.56999 + rotX: 359.9201 + rotY: 269.99707 + rotZ: 180.016861 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag North Country Cycle aaceca/Bag Part 2 7f9f0d/Card 4230c1.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag North Country Cycle aaceca/Bag Part 2 7f9f0d/Card 4230c1.yaml new file mode 100644 index 000000000..7128ba6a3 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag North Country Cycle aaceca/Bag Part 2 7f9f0d/Card 4230c1.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 246 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360110193/728C77347649B1E31473D71366B50E1B30CAFCA1/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360110636/03AAF5BA7EBD786D13121466A15ED12C316E4ED5/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 4230c1 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -23.6765175 + posY: 1.68678474 + posZ: -7.700016 + rotX: 359.9201 + rotY: 269.99646 + rotZ: 180.016861 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag North Country Cycle aaceca/Bag Part 2 7f9f0d/Card 66e655.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag North Country Cycle aaceca/Bag Part 2 7f9f0d/Card 66e655.yaml new file mode 100644 index 000000000..385f14db6 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag North Country Cycle aaceca/Bag Part 2 7f9f0d/Card 66e655.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 250 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360110193/728C77347649B1E31473D71366B50E1B30CAFCA1/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360110636/03AAF5BA7EBD786D13121466A15ED12C316E4ED5/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 66e655 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -30.2243328 + posY: 1.69591522 + posZ: -7.699991 + rotX: 359.9201 + rotY: 269.986328 + rotZ: 180.016891 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag North Country Cycle aaceca/Bag Part 2 7f9f0d/Card 713671.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag North Country Cycle aaceca/Bag Part 2 7f9f0d/Card 713671.yaml new file mode 100644 index 000000000..16f763b78 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag North Country Cycle aaceca/Bag Part 2 7f9f0d/Card 713671.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 241 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360110193/728C77347649B1E31473D71366B50E1B30CAFCA1/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360110636/03AAF5BA7EBD786D13121466A15ED12C316E4ED5/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: '713671' +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.95596671 + posY: 1.65564811 + posZ: -10.4411583 + rotX: 359.919739 + rotY: 269.985474 + rotZ: 0.0168628618 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag North Country Cycle aaceca/Bag Part 2 7f9f0d/Card 7bc8af.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag North Country Cycle aaceca/Bag Part 2 7f9f0d/Card 7bc8af.yaml new file mode 100644 index 000000000..e88785026 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag North Country Cycle aaceca/Bag Part 2 7f9f0d/Card 7bc8af.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 244 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360110193/728C77347649B1E31473D71366B50E1B30CAFCA1/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360110636/03AAF5BA7EBD786D13121466A15ED12C316E4ED5/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 7bc8af +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -17.1199913 + posY: 1.67764211 + posZ: -7.70001745 + rotX: 359.9201 + rotY: 269.997131 + rotZ: 180.016861 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag North Country Cycle aaceca/Bag Part 2 7f9f0d/Card b3fc0c.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag North Country Cycle aaceca/Bag Part 2 7f9f0d/Card b3fc0c.yaml new file mode 100644 index 000000000..4d8011055 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag North Country Cycle aaceca/Bag Part 2 7f9f0d/Card b3fc0c.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 243 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360110193/728C77347649B1E31473D71366B50E1B30CAFCA1/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360110636/03AAF5BA7EBD786D13121466A15ED12C316E4ED5/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: b3fc0c +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -17.1199532 + posY: 1.68213856 + posZ: 7.569987 + rotX: 359.9201 + rotY: 269.99585 + rotZ: 180.016861 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag North Country Cycle aaceca/Bag Part 2 7f9f0d/Card d46ad3.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag North Country Cycle aaceca/Bag Part 2 7f9f0d/Card d46ad3.yaml new file mode 100644 index 000000000..314443811 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag North Country Cycle aaceca/Bag Part 2 7f9f0d/Card d46ad3.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 247 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360110193/728C77347649B1E31473D71366B50E1B30CAFCA1/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360110636/03AAF5BA7EBD786D13121466A15ED12C316E4ED5/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: d46ad3 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -23.6764755 + posY: 1.68904328 + posZ: -0.030009279 + rotX: 359.9201 + rotY: 269.995728 + rotZ: 180.016876 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag North Country Cycle aaceca/Bag Part 2 7f9f0d/Card e9bc3d.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag North Country Cycle aaceca/Bag Part 2 7f9f0d/Card e9bc3d.yaml new file mode 100644 index 000000000..eda3f6701 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag North Country Cycle aaceca/Bag Part 2 7f9f0d/Card e9bc3d.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 249 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360110193/728C77347649B1E31473D71366B50E1B30CAFCA1/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360110636/03AAF5BA7EBD786D13121466A15ED12C316E4ED5/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: e9bc3d +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -30.2241783 + posY: 1.69817352 + posZ: -0.0300117172 + rotX: 359.9201 + rotY: 269.997223 + rotZ: 180.016861 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag North Country Cycle aaceca/Bag Part 2 7f9f0d/Card ed1fa4.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag North Country Cycle aaceca/Bag Part 2 7f9f0d/Card ed1fa4.yaml new file mode 100644 index 000000000..f634d4a8b --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag North Country Cycle aaceca/Bag Part 2 7f9f0d/Card ed1fa4.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 248 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360110193/728C77347649B1E31473D71366B50E1B30CAFCA1/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360110636/03AAF5BA7EBD786D13121466A15ED12C316E4ED5/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: ed1fa4 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -30.2242012 + posY: 1.70041156 + posZ: 7.569989 + rotX: 359.9201 + rotY: 269.996368 + rotZ: 180.016861 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag North Country Cycle aaceca/Bag Part 2 7f9f0d/Card Agenda 9a31a2.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag North Country Cycle aaceca/Bag Part 2 7f9f0d/Card Agenda 9a31a2.yaml new file mode 100644 index 000000000..4a0d2defc --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag North Country Cycle aaceca/Bag Part 2 7f9f0d/Card Agenda 9a31a2.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 154312 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '1543': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360111286/BC64CB7E242E7AFF3F9F3A68875AAF5B78122FEB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360111889/C34C74097577A0BF1C377778F42F18ECD23E7E76/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 9a31a2 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Agenda +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.72472572 + posY: 1.65710139 + posZ: 0.373324543 + rotX: 359.919739 + rotY: 269.9856 + rotZ: 0.01685798 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag North Country Cycle aaceca/Bag Part 2 7f9f0d/Custom_Tile 374846.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag North Country Cycle aaceca/Bag Part 2 7f9f0d/Custom_Tile 374846.yaml new file mode 100644 index 000000000..93cac2930 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag North Country Cycle aaceca/Bag Part 2 7f9f0d/Custom_Tile 374846.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: '374846' +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.2241611 + posY: 1.62251818 + posZ: -3.83001471 + rotX: 359.983124 + rotY: 0.00577411428 + rotZ: 359.920044 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag North Country Cycle aaceca/Bag Part 2 7f9f0d/Custom_Tile 453607.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag North Country Cycle aaceca/Bag Part 2 7f9f0d/Custom_Tile 453607.yaml new file mode 100644 index 000000000..8f234c7d7 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag North Country Cycle aaceca/Bag Part 2 7f9f0d/Custom_Tile 453607.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: '453607' +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.7745 + posY: 1.61984718 + posZ: 3.43445158 + rotX: 359.931549 + rotY: 315.000122 + rotZ: 359.955444 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag North Country Cycle aaceca/Bag Part 2 7f9f0d/Custom_Tile 552ae9.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag North Country Cycle aaceca/Bag Part 2 7f9f0d/Custom_Tile 552ae9.yaml new file mode 100644 index 000000000..b59fe5ec6 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag North Country Cycle aaceca/Bag Part 2 7f9f0d/Custom_Tile 552ae9.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 552ae9 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.6764488 + posY: 1.61338782 + posZ: -3.830015 + rotX: 359.983124 + rotY: 0.005773031 + rotZ: 359.920044 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag North Country Cycle aaceca/Bag Part 2 7f9f0d/Custom_Tile 6ceb58.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag North Country Cycle aaceca/Bag Part 2 7f9f0d/Custom_Tile 6ceb58.yaml new file mode 100644 index 000000000..adbfcd32b --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag North Country Cycle aaceca/Bag Part 2 7f9f0d/Custom_Tile 6ceb58.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 6ceb58 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.119936 + posY: 1.60424542 + posZ: -3.83001566 + rotX: 359.983124 + rotY: 0.005763417 + rotZ: 359.920074 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag North Country Cycle aaceca/Bag Part 2 7f9f0d/Custom_Tile 7234af.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag North Country Cycle aaceca/Bag Part 2 7f9f0d/Custom_Tile 7234af.yaml new file mode 100644 index 000000000..48d526279 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag North Country Cycle aaceca/Bag Part 2 7f9f0d/Custom_Tile 7234af.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 7234af +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.1200352 + posY: 1.60651 + posZ: 3.86000681 + rotX: 359.983124 + rotY: 0.00572129339 + rotZ: 359.920044 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag North Country Cycle aaceca/Bag Part 2 7f9f0d/Custom_Tile 77e04b.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag North Country Cycle aaceca/Bag Part 2 7f9f0d/Custom_Tile 77e04b.yaml new file mode 100644 index 000000000..db89ba58b --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag North Country Cycle aaceca/Bag Part 2 7f9f0d/Custom_Tile 77e04b.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 77e04b +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.224165 + posY: 1.6247828 + posZ: 3.85998535 + rotX: 359.983124 + rotY: 0.00575862359 + rotZ: 359.920044 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag North Country Cycle aaceca/Bag Part 2 7f9f0d/Custom_Tile aa51bd.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag North Country Cycle aaceca/Bag Part 2 7f9f0d/Custom_Tile aa51bd.yaml new file mode 100644 index 000000000..4016db355 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag North Country Cycle aaceca/Bag Part 2 7f9f0d/Custom_Tile aa51bd.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: aa51bd +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.4905567 + posY: 1.61000252 + posZ: -0.239674345 + rotX: 0.07989395 + rotY: 89.99994 + rotZ: 359.9831 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag North Country Cycle aaceca/Bag Part 2 7f9f0d/Custom_Tile c11875.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag North Country Cycle aaceca/Bag Part 2 7f9f0d/Custom_Tile c11875.yaml new file mode 100644 index 000000000..6be9b53cb --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag North Country Cycle aaceca/Bag Part 2 7f9f0d/Custom_Tile c11875.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: c11875 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.0440311 + posY: 1.62139678 + posZ: 7.42101669 + rotX: 0.07989193 + rotY: 90.00024 + rotZ: 359.983063 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag North Country Cycle aaceca/Bag Part 2 7f9f0d/Custom_Tile e5f61a.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag North Country Cycle aaceca/Bag Part 2 7f9f0d/Custom_Tile e5f61a.yaml new file mode 100644 index 000000000..0011d74e9 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag North Country Cycle aaceca/Bag Part 2 7f9f0d/Custom_Tile e5f61a.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: e5f61a +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.0874043 + posY: 1.61826921 + posZ: -3.405457 + rotX: 0.04456515 + rotY: 44.9999771 + rotZ: 359.93158 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag North Country Cycle aaceca/Bag Part 2 7f9f0d/Deck Act 3c18b1.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag North Country Cycle aaceca/Bag Part 2 7f9f0d/Deck Act 3c18b1.yaml new file mode 100644 index 000000000..0b552415f --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag North Country Cycle aaceca/Bag Part 2 7f9f0d/Deck Act 3c18b1.yaml @@ -0,0 +1,169 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 154410 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1132': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360111286/BC64CB7E242E7AFF3F9F3A68875AAF5B78122FEB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360111889/C34C74097577A0BF1C377778F42F18ECD23E7E76/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 8c2126 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.82716131 + posY: 1.23167467 + posZ: 13.4038849 + rotX: -0.00175621989 + rotY: 180.00032 + rotZ: -0.000320589519 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 154411 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1132': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360111286/BC64CB7E242E7AFF3F9F3A68875AAF5B78122FEB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360111889/C34C74097577A0BF1C377778F42F18ECD23E7E76/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 5121a9 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 4.057638 + posY: 1.37673283 + posZ: 13.15317 + rotX: 359.992584 + rotY: 179.999786 + rotZ: 0.00242072274 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 154409 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1132': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360111286/BC64CB7E242E7AFF3F9F3A68875AAF5B78122FEB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360111889/C34C74097577A0BF1C377778F42F18ECD23E7E76/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 292aaa + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.46067739 + posY: 1.39408946 + posZ: 13.9831905 + rotX: -0.001104348 + rotY: 180.000046 + rotZ: -0.00136663567 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '1544': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360111286/BC64CB7E242E7AFF3F9F3A68875AAF5B78122FEB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360111889/C34C74097577A0BF1C377778F42F18ECD23E7E76/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 154410 +- 154411 +- 154409 +Description: '' +GMNotes: '' +GUID: 3c18b1 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Act +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.68709755 + posY: 1.65499568 + posZ: -5.046317 + rotX: 359.919739 + rotY: 269.969849 + rotZ: 0.0168797486 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag North Country Cycle aaceca/Bag Part 2 7f9f0d/Deck Blazing Fire 2119d3.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag North Country Cycle aaceca/Bag Part 2 7f9f0d/Deck Blazing Fire 2119d3.yaml new file mode 100644 index 000000000..c54b32450 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag North Country Cycle aaceca/Bag Part 2 7f9f0d/Deck Blazing Fire 2119d3.yaml @@ -0,0 +1,547 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 240 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360110193/728C77347649B1E31473D71366B50E1B30CAFCA1/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360110636/03AAF5BA7EBD786D13121466A15ED12C316E4ED5/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: '713671' + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 10.39006 + posY: 1.3815583 + posZ: 9.184577 + rotX: 0.00167876051 + rotY: 180.000122 + rotZ: 180.004425 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 239 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360110193/728C77347649B1E31473D71366B50E1B30CAFCA1/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360110636/03AAF5BA7EBD786D13121466A15ED12C316E4ED5/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: '713671' + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 9.868575 + posY: 1.37199545 + posZ: 9.214971 + rotX: -0.004177704 + rotY: 180.015671 + rotZ: 180.002319 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 238 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360110193/728C77347649B1E31473D71366B50E1B30CAFCA1/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360110636/03AAF5BA7EBD786D13121466A15ED12C316E4ED5/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: '713671' + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 9.929019 + posY: 1.36233473 + posZ: 9.026286 + rotX: 0.0004784768 + rotY: 180.0 + rotZ: 179.999756 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 237 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360110193/728C77347649B1E31473D71366B50E1B30CAFCA1/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360110636/03AAF5BA7EBD786D13121466A15ED12C316E4ED5/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: '713671' + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 10.1170282 + posY: 1.35273576 + posZ: 9.536929 + rotX: -0.00117259566 + rotY: 180.001556 + rotZ: 179.998825 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 236 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360110193/728C77347649B1E31473D71366B50E1B30CAFCA1/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360110636/03AAF5BA7EBD786D13121466A15ED12C316E4ED5/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: '713671' + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 9.791147 + posY: 1.39527762 + posZ: 9.072151 + rotX: -0.0008143136 + rotY: 180.001022 + rotZ: 179.99881 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 235 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360110193/728C77347649B1E31473D71366B50E1B30CAFCA1/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360110636/03AAF5BA7EBD786D13121466A15ED12C316E4ED5/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: '713671' + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 9.660435 + posY: 1.38894916 + posZ: 9.079194 + rotX: -0.00118212146 + rotY: 179.99939 + rotZ: 179.99942 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360110193/728C77347649B1E31473D71366B50E1B30CAFCA1/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360110636/03AAF5BA7EBD786D13121466A15ED12C316E4ED5/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: '713671' + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 9.693756 + posY: 1.38395512 + posZ: 9.119738 + rotX: -0.001008902 + rotY: 180.0 + rotZ: 179.999084 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360110193/728C77347649B1E31473D71366B50E1B30CAFCA1/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360110636/03AAF5BA7EBD786D13121466A15ED12C316E4ED5/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: '713671' + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 9.915482 + posY: 1.38122094 + posZ: 9.069277 + rotX: 0.00084782 + rotY: 180.0 + rotZ: 180.003052 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360110193/728C77347649B1E31473D71366B50E1B30CAFCA1/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360110636/03AAF5BA7EBD786D13121466A15ED12C316E4ED5/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: '713671' + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 9.771015 + posY: 1.3832202 + posZ: 9.372115 + rotX: 0.000290726341 + rotY: 179.999924 + rotZ: 179.9983 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360110193/728C77347649B1E31473D71366B50E1B30CAFCA1/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360110636/03AAF5BA7EBD786D13121466A15ED12C316E4ED5/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: '713671' + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 10.155447 + posY: 1.39696527 + posZ: 9.578582 + rotX: -0.00153690728 + rotY: 180.001389 + rotZ: 179.9992 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 230 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360110193/728C77347649B1E31473D71366B50E1B30CAFCA1/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360110636/03AAF5BA7EBD786D13121466A15ED12C316E4ED5/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 5dda44 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 9.867986 + posY: 1.37926793 + posZ: 9.155708 + rotX: 0.00243738852 + rotY: 179.9999 + rotZ: 180.006683 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 229 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360110193/728C77347649B1E31473D71366B50E1B30CAFCA1/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360110636/03AAF5BA7EBD786D13121466A15ED12C316E4ED5/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: '713671' + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 9.887541 + posY: 1.23444033 + posZ: 9.319097 + rotX: -0.00473229168 + rotY: 179.999985 + rotZ: 180.001709 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360110193/728C77347649B1E31473D71366B50E1B30CAFCA1/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360110636/03AAF5BA7EBD786D13121466A15ED12C316E4ED5/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 240 +- 239 +- 238 +- 237 +- 236 +- 235 +- 234 +- 233 +- 232 +- 231 +- 230 +- 229 +Description: '' +GMNotes: '' +GUID: 2119d3 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Blazing Fire +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -11.5240974 + posY: 1.68871164 + posZ: 13.6404667 + rotX: 359.9201 + rotY: 269.980927 + rotZ: 180.016891 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag North Country Cycle aaceca/Bag Part 2 7f9f0d/Deck Encounter deck 8fb673.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag North Country Cycle aaceca/Bag Part 2 7f9f0d/Deck Encounter deck 8fb673.yaml new file mode 100644 index 000000000..43ed344a2 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag North Country Cycle aaceca/Bag Part 2 7f9f0d/Deck Encounter deck 8fb673.yaml @@ -0,0 +1,757 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 544 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359986714/47F112D1423DC8A1C48969B30D4C3BBB0217B757/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 626d66 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -5.334668 + posY: 1.56151319 + posZ: 14.8109837 + rotX: 359.94632 + rotY: 180.019028 + rotZ: 180.22905 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 545 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359986714/47F112D1423DC8A1C48969B30D4C3BBB0217B757/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 284c5d + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -5.756528 + posY: 1.41818213 + posZ: 14.7242556 + rotX: 359.914642 + rotY: 180.024933 + rotZ: 180.1891 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 546 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359986714/47F112D1423DC8A1C48969B30D4C3BBB0217B757/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: d2cb2b + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.15521359 + posY: 1.96285236 + posZ: -8.749511 + rotX: 359.968719 + rotY: 180.103043 + rotZ: 7.56986046 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 543 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359986714/47F112D1423DC8A1C48969B30D4C3BBB0217B757/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: bc433e + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -1.87923038 + posY: 2.17903471 + posZ: -8.745985 + rotX: 359.9568 + rotY: 180.05011 + rotZ: 8.48520851 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 542 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359986714/47F112D1423DC8A1C48969B30D4C3BBB0217B757/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 315b46 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -1.451996 + posY: 2.242952 + posZ: -8.747933 + rotX: 359.9678 + rotY: 179.962509 + rotZ: 8.312758 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 541 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359986714/47F112D1423DC8A1C48969B30D4C3BBB0217B757/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 5d069e + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -1.027974 + posY: 2.30360961 + posZ: -8.749328 + rotX: 359.975922 + rotY: 179.9392 + rotZ: 8.574896 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 540 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359986714/47F112D1423DC8A1C48969B30D4C3BBB0217B757/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: f5aad6 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -0.6067863 + posY: 2.359042 + posZ: -8.750089 + rotX: 359.981964 + rotY: 180.031525 + rotZ: 9.128715 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 539 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359986714/47F112D1423DC8A1C48969B30D4C3BBB0217B757/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: d263e5 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -0.1787383 + posY: 2.41919112 + posZ: -8.747935 + rotX: 359.99115 + rotY: 179.9458 + rotZ: 9.177095 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 538 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359986714/47F112D1423DC8A1C48969B30D4C3BBB0217B757/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 86476d + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.242415711 + posY: 2.47108459 + posZ: -8.749481 + rotX: 359.994019 + rotY: 180.048813 + rotZ: 9.323917 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 537 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359986714/47F112D1423DC8A1C48969B30D4C3BBB0217B757/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: e574c3 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.6663741 + posY: 2.525657 + posZ: -8.747237 + rotX: 0.000440767733 + rotY: 180.0432 + rotZ: 9.397491 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 536 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359986714/47F112D1423DC8A1C48969B30D4C3BBB0217B757/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: e367b5 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 1.09381366 + posY: 2.58372426 + posZ: -8.749472 + rotX: 0.0108685018 + rotY: 179.942856 + rotZ: 9.300444 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 535 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359986714/47F112D1423DC8A1C48969B30D4C3BBB0217B757/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 412b34 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 1.51764607 + posY: 2.63877988 + posZ: -8.747139 + rotX: 0.0202184357 + rotY: 179.94017 + rotZ: 9.288716 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 534 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359986714/47F112D1423DC8A1C48969B30D4C3BBB0217B757/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 770eda + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 1.9420898 + posY: 2.69786048 + posZ: -8.748785 + rotX: 0.0211291648 + rotY: 179.947189 + rotZ: 8.952664 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 533 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359986714/47F112D1423DC8A1C48969B30D4C3BBB0217B757/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: bb4050 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.36405015 + posY: 2.759971 + posZ: -8.750544 + rotX: 0.0208454169 + rotY: 180.0428 + rotZ: 8.07784 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 532 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359986714/47F112D1423DC8A1C48969B30D4C3BBB0217B757/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 784fca + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.78832054 + posY: 2.82551026 + posZ: -8.74908 + rotX: 0.0323162228 + rotY: 180.023849 + rotZ: 7.83405542 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 531 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359986714/47F112D1423DC8A1C48969B30D4C3BBB0217B757/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 9d3401 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.21545362 + posY: 2.893705 + posZ: -8.7472105 + rotX: 0.040510796 + rotY: 179.942108 + rotZ: 7.964395 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 530 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359986714/47F112D1423DC8A1C48969B30D4C3BBB0217B757/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 259dd2 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.6387403 + posY: 2.967511 + posZ: -8.749185 + rotX: 0.04168485 + rotY: 179.956665 + rotZ: 7.46605062 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '5': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359986714/47F112D1423DC8A1C48969B30D4C3BBB0217B757/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 544 +- 545 +- 546 +- 543 +- 542 +- 541 +- 540 +- 539 +- 538 +- 537 +- 536 +- 535 +- 534 +- 533 +- 532 +- 531 +- 530 +Description: '' +GMNotes: '' +GUID: 8fb673 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Encounter deck +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.92763829 + posY: 1.70242691 + posZ: 5.75713253 + rotX: 359.919739 + rotY: 269.9856 + rotZ: 180.016846 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag North Country Cycle aaceca/Bag Part 2 7f9f0d/Deck instructions 17aa19.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag North Country Cycle aaceca/Bag Part 2 7f9f0d/Deck instructions 17aa19.yaml new file mode 100644 index 000000000..ffe99bf90 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag North Country Cycle aaceca/Bag Part 2 7f9f0d/Deck instructions 17aa19.yaml @@ -0,0 +1,255 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 255 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360110193/728C77347649B1E31473D71366B50E1B30CAFCA1/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360110636/03AAF5BA7EBD786D13121466A15ED12C316E4ED5/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: '713671' + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.785712957 + posY: 1.03167987 + posZ: 4.303699 + rotX: 5.870743e-06 + rotY: 180.0 + rotZ: 4.492557e-06 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 254 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360110193/728C77347649B1E31473D71366B50E1B30CAFCA1/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360110636/03AAF5BA7EBD786D13121466A15ED12C316E4ED5/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: b4ab48 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.7917372 + posY: 1.17679727 + posZ: 4.10874748 + rotX: -0.00191475567 + rotY: 179.999878 + rotZ: -0.00109299086 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 253 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360110193/728C77347649B1E31473D71366B50E1B30CAFCA1/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360110636/03AAF5BA7EBD786D13121466A15ED12C316E4ED5/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: d76441 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 8.499819 + posY: 1.396986 + posZ: 2.76170135 + rotX: -0.00118989369 + rotY: 180.010056 + rotZ: 180.000351 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 252 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360110193/728C77347649B1E31473D71366B50E1B30CAFCA1/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360110636/03AAF5BA7EBD786D13121466A15ED12C316E4ED5/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: ce5873 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -11.7504835 + posY: 1.80105686 + posZ: -1.314632 + rotX: 0.396799117 + rotY: 270.036835 + rotZ: 181.434982 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 251 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360110193/728C77347649B1E31473D71366B50E1B30CAFCA1/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360110636/03AAF5BA7EBD786D13121466A15ED12C316E4ED5/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 8f97ef + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -11.6164951 + posY: 1.67187858 + posZ: -0.904481649 + rotX: 359.919952 + rotY: 270.009277 + rotZ: 180.013718 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360110193/728C77347649B1E31473D71366B50E1B30CAFCA1/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360110636/03AAF5BA7EBD786D13121466A15ED12C316E4ED5/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 255 +- 254 +- 253 +- 252 +- 251 +Description: '' +GMNotes: '' +GUID: 17aa19 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: instructions +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -11.9634018 + posY: 1.66958237 + posZ: 2.78021383 + rotX: 359.9201 + rotY: 269.985779 + rotZ: 0.01689661 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag North Country Cycle aaceca/Bag Part 2 7f9f0d/Deck set aside b7b0af.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag North Country Cycle aaceca/Bag Part 2 7f9f0d/Deck set aside b7b0af.yaml new file mode 100644 index 000000000..9c9fc44cc --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag North Country Cycle aaceca/Bag Part 2 7f9f0d/Deck set aside b7b0af.yaml @@ -0,0 +1,176 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 257 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360110193/728C77347649B1E31473D71366B50E1B30CAFCA1/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360110636/03AAF5BA7EBD786D13121466A15ED12C316E4ED5/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: '713671' + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 8.134368 + posY: 1.23170269 + posZ: 7.265611 + rotX: -0.0006563498 + rotY: 179.999969 + rotZ: -0.00038243 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 256 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360110193/728C77347649B1E31473D71366B50E1B30CAFCA1/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360110636/03AAF5BA7EBD786D13121466A15ED12C316E4ED5/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: b54e44 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 8.134358 + posY: 1.38121414 + posZ: 7.26562834 + rotX: 359.9932 + rotY: 180.000015 + rotZ: -0.00340041076 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 529 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359986714/47F112D1423DC8A1C48969B30D4C3BBB0217B757/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 92a42c + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Landon Hullet + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 5.85863638 + posY: 1.43961918 + posZ: 10.47461 + rotX: 0.007057782 + rotY: 179.966949 + rotZ: 357.827118 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360110193/728C77347649B1E31473D71366B50E1B30CAFCA1/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360110636/03AAF5BA7EBD786D13121466A15ED12C316E4ED5/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + '5': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359986714/47F112D1423DC8A1C48969B30D4C3BBB0217B757/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 257 +- 256 +- 529 +Description: '' +GMNotes: '' +GUID: b7b0af +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: set aside +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 1.696521 + posY: 1.65453458 + posZ: 14.2788267 + rotX: 359.95517 + rotY: 224.997833 + rotZ: 0.06865374 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag North Country Cycle aaceca/Bag Part 3 df5156.ttslua b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag North Country Cycle aaceca/Bag Part 3 df5156.ttslua new file mode 100644 index 000000000..4acf9ea11 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag North Country Cycle aaceca/Bag Part 3 df5156.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 791837/Custom_Model_Bag North Country Cycle aaceca/Bag Part 3 df5156.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag North Country Cycle aaceca/Bag Part 3 df5156.yaml new file mode 100644 index 000000000..f227deca2 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag North Country Cycle aaceca/Bag Part 3 df5156.yaml @@ -0,0 +1,43 @@ +Autoraise: true +ColorDiffuse: + b: 0.973910034 + g: 0.974793136 + r: 0.9756097 +ContainedObjects: +- !include 'Bag Part 3 df5156/Deck Set aside a4069d.yaml' +- !include 'Bag Part 3 df5156/DeckCustom Encounter deck 72cb29.yaml' +- !include 'Bag Part 3 df5156/Deck Agenda 2afe31.yaml' +- !include 'Bag Part 3 df5156/Deck Act c21348.yaml' +- !include 'Bag Part 3 df5156/Deck Gloomy Woods 53eed4.yaml' +- !include 'Bag Part 3 df5156/Deck locations 35f5a8.yaml' +- !include 'Bag Part 3 df5156/Deck instructions ae5aa8.yaml' +- !include 'Bag Part 3 df5156/Card 4e1347.yaml' +Description: North Country Cycle +GMNotes: '' +GUID: df5156 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Bag Part 3 df5156.ttslua' +LuaScriptState: '{"ml":{"2afe31":{"lock":false,"pos":{"x":-2.7246,"y":1.664,"z":0.3733},"rot":{"x":359.9197,"y":269.9856,"z":0.0169}},"35f5a8":{"lock":false,"pos":{"x":-12.002,"y":1.6806,"z":8.2252},"rot":{"x":359.9201,"y":269.986,"z":180.0169}},"4e1347":{"lock":false,"pos":{"x":-23.6764,"y":1.689,"z":-0.03},"rot":{"x":359.9201,"y":269.9965,"z":180.0169}},"53eed4":{"lock":false,"pos":{"x":-11.5286,"y":1.6728,"z":13.9432},"rot":{"x":359.9201,"y":269.9856,"z":180.0169}},"72cb29":{"lock":false,"pos":{"x":-3.9275,"y":1.7397,"z":5.7571},"rot":{"x":359.9197,"y":269.9855,"z":180.0168}},"a4069d":{"lock":false,"pos":{"x":1.6965,"y":1.6619,"z":14.2788},"rot":{"x":359.9552,"y":224.9981,"z":0.0687}},"ae5aa8":{"lock":false,"pos":{"x":-12.0755,"y":1.6717,"z":2.8225},"rot":{"x":359.9201,"y":269.971,"z":0.0169}},"c21348":{"lock":false,"pos":{"x":-2.6908,"y":1.6623,"z":-5.0485},"rot":{"x":359.9197,"y":269.9837,"z":0.0169}}}}' +MaterialIndex: -1 +MeshIndex: -1 +Name: Bag +Nickname: Part 3 +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 9.272217 + posY: 1.28185928 + posZ: -6.099746 + rotX: 0.0799262449 + rotY: 89.99094 + rotZ: 359.9831 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag North Country Cycle aaceca/Bag Part 3 df5156/Card 4e1347.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag North Country Cycle aaceca/Bag Part 3 df5156/Card 4e1347.yaml new file mode 100644 index 000000000..c82ff575e --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag North Country Cycle aaceca/Bag Part 3 df5156/Card 4e1347.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 302 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '3': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359985462/7265C1524D6E863FA6263A85FFB7B73B5E65A215/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359985946/193AEFB4E1FB21EEA7A165C4E16F67E13284D6AF/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 4e1347 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -23.6764469 + posY: 1.68904316 + posZ: -0.0300149471 + rotX: 359.9201 + rotY: 269.996521 + rotZ: 180.016861 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag North Country Cycle aaceca/Bag Part 3 df5156/Deck Act c21348.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag North Country Cycle aaceca/Bag Part 3 df5156/Deck Act c21348.yaml new file mode 100644 index 000000000..c989662c2 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag North Country Cycle aaceca/Bag Part 3 df5156/Deck Act c21348.yaml @@ -0,0 +1,134 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 154402 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1132': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359903282/DC0CAF4CDFB1E6F342FCBA49A3C080933AC1D457/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359903787/CBAFD4E88B79E21F8B7812B558C0458FA69082FE/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: fc7bcd + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 11.4517956 + posY: 1.231689 + posZ: 5.77704048 + rotX: -0.000268990378 + rotY: 180.000092 + rotZ: -0.000181627373 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 154513 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1137': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360111286/BC64CB7E242E7AFF3F9F3A68875AAF5B78122FEB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360111889/C34C74097577A0BF1C377778F42F18ECD23E7E76/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 9f7e06 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 11.2191944 + posY: 1.37667871 + posZ: 6.102022 + rotX: 359.989868 + rotY: 180.002274 + rotZ: -0.00236663129 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '1544': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359903282/DC0CAF4CDFB1E6F342FCBA49A3C080933AC1D457/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359903787/CBAFD4E88B79E21F8B7812B558C0458FA69082FE/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + '1545': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360111286/BC64CB7E242E7AFF3F9F3A68875AAF5B78122FEB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360111889/C34C74097577A0BF1C377778F42F18ECD23E7E76/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 154402 +- 154513 +Description: '' +GMNotes: '' +GUID: c21348 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Act +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.69079685 + posY: 1.66233659 + posZ: -5.04854155 + rotX: 359.919739 + rotY: 269.983673 + rotZ: 0.0168599635 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag North Country Cycle aaceca/Bag Part 3 df5156/Deck Agenda 2afe31.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag North Country Cycle aaceca/Bag Part 3 df5156/Deck Agenda 2afe31.yaml new file mode 100644 index 000000000..eac307c4c --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag North Country Cycle aaceca/Bag Part 3 df5156/Deck Agenda 2afe31.yaml @@ -0,0 +1,127 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 154301 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1132': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359903282/DC0CAF4CDFB1E6F342FCBA49A3C080933AC1D457/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359903787/CBAFD4E88B79E21F8B7812B558C0458FA69082FE/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 462a52 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 6.54311132 + posY: 1.23169518 + posZ: 7.557492 + rotX: -0.00103841873 + rotY: 180.000763 + rotZ: -0.000284642 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 154300 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1132': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359903282/DC0CAF4CDFB1E6F342FCBA49A3C080933AC1D457/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359903787/CBAFD4E88B79E21F8B7812B558C0458FA69082FE/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: fc7bcd + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 6.470104 + posY: 1.3767451 + posZ: 7.455783 + rotX: 359.992279 + rotY: 180.000122 + rotZ: -0.00304891169 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '1543': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359903282/DC0CAF4CDFB1E6F342FCBA49A3C080933AC1D457/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359903787/CBAFD4E88B79E21F8B7812B558C0458FA69082FE/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 154301 +- 154300 +Description: '' +GMNotes: '' +GUID: 2afe31 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Agenda +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.72464871 + posY: 1.66397727 + posZ: 0.3733077 + rotX: 359.919739 + rotY: 269.9856 + rotZ: 0.0168577433 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag North Country Cycle aaceca/Bag Part 3 df5156/Deck Gloomy Woods 53eed4.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag North Country Cycle aaceca/Bag Part 3 df5156/Deck Gloomy Woods 53eed4.yaml new file mode 100644 index 000000000..718e02e31 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag North Country Cycle aaceca/Bag Part 3 df5156/Deck Gloomy Woods 53eed4.yaml @@ -0,0 +1,421 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 303 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359985462/7265C1524D6E863FA6263A85FFB7B73B5E65A215/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359985946/193AEFB4E1FB21EEA7A165C4E16F67E13284D6AF/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 5db699 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 1.553294 + posY: 1.33810079 + posZ: 8.966513 + rotX: 0.129702032 + rotY: 180.001083 + rotZ: 180.324127 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 304 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359985462/7265C1524D6E863FA6263A85FFB7B73B5E65A215/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359985946/193AEFB4E1FB21EEA7A165C4E16F67E13284D6AF/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: ce2c1c + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 1.78759944 + posY: 1.39525163 + posZ: 9.25456 + rotX: -0.00118623453 + rotY: 180.001816 + rotZ: 180.000259 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 305 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359985462/7265C1524D6E863FA6263A85FFB7B73B5E65A215/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359985946/193AEFB4E1FB21EEA7A165C4E16F67E13284D6AF/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 012dd2 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 1.38220906 + posY: 1.38885367 + posZ: 9.232146 + rotX: 0.000105993218 + rotY: 180.000244 + rotZ: 179.999313 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 306 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359985462/7265C1524D6E863FA6263A85FFB7B73B5E65A215/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359985946/193AEFB4E1FB21EEA7A165C4E16F67E13284D6AF/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 115cd4 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 1.37594223 + posY: 1.38395739 + posZ: 8.938095 + rotX: -0.00092232076 + rotY: 180.000656 + rotZ: 179.999466 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 307 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359985462/7265C1524D6E863FA6263A85FFB7B73B5E65A215/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359985946/193AEFB4E1FB21EEA7A165C4E16F67E13284D6AF/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 6b0c04 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 1.69799244 + posY: 1.38121355 + posZ: 8.804302 + rotX: 0.0007465526 + rotY: 180.000214 + rotZ: 180.001892 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 308 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359985462/7265C1524D6E863FA6263A85FFB7B73B5E65A215/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359985946/193AEFB4E1FB21EEA7A165C4E16F67E13284D6AF/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: e5a157 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.287692 + posY: 1.38298142 + posZ: 8.745588 + rotX: 0.0213467516 + rotY: 180.000229 + rotZ: 180.027008 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 309 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359985462/7265C1524D6E863FA6263A85FFB7B73B5E65A215/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359985946/193AEFB4E1FB21EEA7A165C4E16F67E13284D6AF/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: e19885 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 1.20484376 + posY: 1.3969692 + posZ: 8.943096 + rotX: -0.001121251 + rotY: 180.000427 + rotZ: 179.9985 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 310 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359985462/7265C1524D6E863FA6263A85FFB7B73B5E65A215/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359985946/193AEFB4E1FB21EEA7A165C4E16F67E13284D6AF/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: f0e41c + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 1.30584884 + posY: 1.37291789 + posZ: 9.10981 + rotX: 0.000823988637 + rotY: 179.9945 + rotZ: 179.987152 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 311 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359985462/7265C1524D6E863FA6263A85FFB7B73B5E65A215/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359985946/193AEFB4E1FB21EEA7A165C4E16F67E13284D6AF/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 72ad85 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 1.43420017 + posY: 1.23441875 + posZ: 9.062325 + rotX: -0.005708908 + rotY: 179.996033 + rotZ: 180.002 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '3': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359985462/7265C1524D6E863FA6263A85FFB7B73B5E65A215/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359985946/193AEFB4E1FB21EEA7A165C4E16F67E13284D6AF/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 303 +- 304 +- 305 +- 306 +- 307 +- 308 +- 309 +- 310 +- 311 +Description: part 3 +GMNotes: '' +GUID: 53eed4 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Gloomy Woods +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -11.52855 + posY: 1.67281842 + posZ: 13.9432335 + rotX: 359.9201 + rotY: 269.9856 + rotZ: 180.016891 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag North Country Cycle aaceca/Bag Part 3 df5156/Deck Set aside a4069d.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag North Country Cycle aaceca/Bag Part 3 df5156/Deck Set aside a4069d.yaml new file mode 100644 index 000000000..a00d7e8b4 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag North Country Cycle aaceca/Bag Part 3 df5156/Deck Set aside a4069d.yaml @@ -0,0 +1,127 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 321 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359985462/7265C1524D6E863FA6263A85FFB7B73B5E65A215/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359985946/193AEFB4E1FB21EEA7A165C4E16F67E13284D6AF/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: cf2458 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 12.4615593 + posY: 1.23171341 + posZ: 11.2190609 + rotX: -4.827699e-06 + rotY: 180.000092 + rotZ: -3.32870059e-06 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 346 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359985462/7265C1524D6E863FA6263A85FFB7B73B5E65A215/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359985946/193AEFB4E1FB21EEA7A165C4E16F67E13284D6AF/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: d9d642 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 12.237771 + posY: 1.37793911 + posZ: 11.3251934 + rotX: -3.94501149e-06 + rotY: 180.0 + rotZ: -2.745455e-06 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '3': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359985462/7265C1524D6E863FA6263A85FFB7B73B5E65A215/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359985946/193AEFB4E1FB21EEA7A165C4E16F67E13284D6AF/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 321 +- 346 +Description: '' +GMNotes: '' +GUID: a4069d +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Set aside +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 1.69651878 + posY: 1.6618706 + posZ: 14.2788239 + rotX: 359.95517 + rotY: 224.998062 + rotZ: 0.06865383 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag North Country Cycle aaceca/Bag Part 3 df5156/Deck instructions ae5aa8.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag North Country Cycle aaceca/Bag Part 3 df5156/Deck instructions ae5aa8.yaml new file mode 100644 index 000000000..7fcab3c54 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag North Country Cycle aaceca/Bag Part 3 df5156/Deck instructions ae5aa8.yaml @@ -0,0 +1,297 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 320 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359985462/7265C1524D6E863FA6263A85FFB7B73B5E65A215/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359985946/193AEFB4E1FB21EEA7A165C4E16F67E13284D6AF/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: cf2458 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.15212 + posY: 1.03130817 + posZ: 3.33501387 + rotX: 2.78310586e-06 + rotY: 180.0 + rotZ: 1.73403475e-06 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 319 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359985462/7265C1524D6E863FA6263A85FFB7B73B5E65A215/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359985946/193AEFB4E1FB21EEA7A165C4E16F67E13284D6AF/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 8ca085 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.187102 + posY: 1.17641807 + posZ: 3.10731149 + rotX: -0.00165436487 + rotY: 180.000015 + rotZ: 0.00203203177 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 317 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359985462/7265C1524D6E863FA6263A85FFB7B73B5E65A215/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359985946/193AEFB4E1FB21EEA7A165C4E16F67E13284D6AF/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 2a3cbc + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 1.9843111 + posY: 1.19416618 + posZ: 3.2209723 + rotX: -0.000156457216 + rotY: 180.000427 + rotZ: -0.0008733306 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 318 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359985462/7265C1524D6E863FA6263A85FFB7B73B5E65A215/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359985946/193AEFB4E1FB21EEA7A165C4E16F67E13284D6AF/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: a21282 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 8.749523 + posY: 1.39694238 + posZ: 2.465317 + rotX: 0.0005046268 + rotY: 180.000168 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 316 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359985462/7265C1524D6E863FA6263A85FFB7B73B5E65A215/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359985946/193AEFB4E1FB21EEA7A165C4E16F67E13284D6AF/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: '789887' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -12.1722517 + posY: 1.81907213 + posZ: -0.534185767 + rotX: 359.9537 + rotY: 270.012146 + rotZ: 179.866272 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 315 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359985462/7265C1524D6E863FA6263A85FFB7B73B5E65A215/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359985946/193AEFB4E1FB21EEA7A165C4E16F67E13284D6AF/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: b5fd5f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -12.0404339 + posY: 1.672457 + posZ: -0.738268852 + rotX: 359.921417 + rotY: 269.9862 + rotZ: 180.02504 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '3': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359985462/7265C1524D6E863FA6263A85FFB7B73B5E65A215/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359985946/193AEFB4E1FB21EEA7A165C4E16F67E13284D6AF/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 320 +- 319 +- 317 +- 318 +- 316 +- 315 +Description: '' +GMNotes: '' +GUID: ae5aa8 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: instructions +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -12.0754871 + posY: 1.6717484 + posZ: 2.82253957 + rotX: 359.9201 + rotY: 269.971 + rotZ: 0.0169169363 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag North Country Cycle aaceca/Bag Part 3 df5156/Deck locations 35f5a8.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag North Country Cycle aaceca/Bag Part 3 df5156/Deck locations 35f5a8.yaml new file mode 100644 index 000000000..aee2cd432 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag North Country Cycle aaceca/Bag Part 3 df5156/Deck locations 35f5a8.yaml @@ -0,0 +1,253 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 301 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359985462/7265C1524D6E863FA6263A85FFB7B73B5E65A215/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359985946/193AEFB4E1FB21EEA7A165C4E16F67E13284D6AF/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 79c9a9 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -1.10803866 + posY: 2.009021 + posZ: -6.99296236 + rotX: 359.904022 + rotY: 180.030518 + rotZ: 8.529671 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 300 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359985462/7265C1524D6E863FA6263A85FFB7B73B5E65A215/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359985946/193AEFB4E1FB21EEA7A165C4E16F67E13284D6AF/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 7378a3 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -1.473953 + posY: 1.93718123 + posZ: -6.991725 + rotX: 359.8987 + rotY: 180.068527 + rotZ: 8.598163 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 312 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359985462/7265C1524D6E863FA6263A85FFB7B73B5E65A215/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359985946/193AEFB4E1FB21EEA7A165C4E16F67E13284D6AF/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: a659ab + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.8666625 + posY: 2.600215 + posZ: -6.99415159 + rotX: 359.960266 + rotY: 179.911957 + rotZ: 11.3179436 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 313 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359985462/7265C1524D6E863FA6263A85FFB7B73B5E65A215/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359985946/193AEFB4E1FB21EEA7A165C4E16F67E13284D6AF/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 65eb43 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.224556 + posY: 2.6425643 + posZ: -6.99160957 + rotX: 359.904541 + rotY: 180.019821 + rotZ: 10.99232 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 314 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359985462/7265C1524D6E863FA6263A85FFB7B73B5E65A215/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359985946/193AEFB4E1FB21EEA7A165C4E16F67E13284D6AF/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 5211eb + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.58588386 + posY: 2.694796 + posZ: -6.99357128 + rotX: 359.864929 + rotY: 180.029572 + rotZ: 10.4701138 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '3': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359985462/7265C1524D6E863FA6263A85FFB7B73B5E65A215/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359985946/193AEFB4E1FB21EEA7A165C4E16F67E13284D6AF/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 301 +- 300 +- 312 +- 313 +- 314 +Description: '' +GMNotes: '' +GUID: 35f5a8 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: locations +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -12.0019636 + posY: 1.680577 + posZ: 8.225187 + rotX: 359.9201 + rotY: 269.986023 + rotZ: 180.016891 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag North Country Cycle aaceca/Bag Part 3 df5156/DeckCustom Encounter deck 72cb29.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag North Country Cycle aaceca/Bag Part 3 df5156/DeckCustom Encounter deck 72cb29.yaml new file mode 100644 index 000000000..cedf34f41 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag North Country Cycle aaceca/Bag Part 3 df5156/DeckCustom Encounter deck 72cb29.yaml @@ -0,0 +1,883 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 322 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: cf2458 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 1.29084583e-08 + posY: 1.04493046 + posZ: 1.70842213e-07 + rotX: -4.28986368e-06 + rotY: 180.0 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 323 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: cf2458 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 1.29084583e-08 + posY: 1.04493046 + posZ: 1.70842213e-07 + rotX: -4.28986368e-06 + rotY: 180.0 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 324 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: cf2458 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 1.29084583e-08 + posY: 1.04493046 + posZ: 1.70842213e-07 + rotX: -4.28986368e-06 + rotY: 180.0 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 325 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: cf2458 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 1.29084583e-08 + posY: 1.04493046 + posZ: 1.70842213e-07 + rotX: -4.28986368e-06 + rotY: 180.0 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 326 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: cf2458 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 1.29084583e-08 + posY: 1.04493046 + posZ: 1.70842213e-07 + rotX: -4.28986368e-06 + rotY: 180.0 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 327 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: cf2458 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 1.29084583e-08 + posY: 1.04493046 + posZ: 1.70842213e-07 + rotX: -4.28986368e-06 + rotY: 180.0 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 328 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: cf2458 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 1.29084583e-08 + posY: 1.04493046 + posZ: 1.70842213e-07 + rotX: -4.28986368e-06 + rotY: 180.0 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 329 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: cf2458 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 1.29084583e-08 + posY: 1.04493046 + posZ: 1.70842213e-07 + rotX: -4.28986368e-06 + rotY: 180.0 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 330 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: cf2458 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 1.29084583e-08 + posY: 1.04493046 + posZ: 1.70842213e-07 + rotX: -4.28986368e-06 + rotY: 180.0 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 331 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: cf2458 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 1.29084583e-08 + posY: 1.04493046 + posZ: 1.70842213e-07 + rotX: -4.28986368e-06 + rotY: 180.0 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 332 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: cf2458 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 1.29084583e-08 + posY: 1.04493046 + posZ: 1.70842213e-07 + rotX: -4.28986368e-06 + rotY: 180.0 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 333 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: cf2458 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 1.29084583e-08 + posY: 1.04493046 + posZ: 1.70842213e-07 + rotX: -4.28986368e-06 + rotY: 180.0 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 334 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: cf2458 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 1.29084583e-08 + posY: 1.04493046 + posZ: 1.70842213e-07 + rotX: -4.28986368e-06 + rotY: 180.0 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 335 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: cf2458 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 1.29084583e-08 + posY: 1.04493046 + posZ: 1.70842213e-07 + rotX: -4.28986368e-06 + rotY: 180.0 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 336 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: cf2458 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 1.29084583e-08 + posY: 1.04493046 + posZ: 1.70842213e-07 + rotX: -4.28986368e-06 + rotY: 180.0 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 337 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: cf2458 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 1.29084583e-08 + posY: 1.04493046 + posZ: 1.70842213e-07 + rotX: -4.28986368e-06 + rotY: 180.0 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 338 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: cf2458 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 1.29084583e-08 + posY: 1.04493046 + posZ: 1.70842213e-07 + rotX: -4.28986368e-06 + rotY: 180.0 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 339 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: cf2458 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 1.29084583e-08 + posY: 1.04493046 + posZ: 1.70842213e-07 + rotX: -4.28986368e-06 + rotY: 180.0 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 340 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: cf2458 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 1.29084583e-08 + posY: 1.04493046 + posZ: 1.70842213e-07 + rotX: -4.28986368e-06 + rotY: 180.0 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 341 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: cf2458 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 1.29084583e-08 + posY: 1.04493046 + posZ: 1.70842213e-07 + rotX: -4.28986368e-06 + rotY: 180.0 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 342 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: cf2458 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 1.29084583e-08 + posY: 1.04493046 + posZ: 1.70842213e-07 + rotX: -4.28986368e-06 + rotY: 180.0 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 343 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: cf2458 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 1.29084583e-08 + posY: 1.04493046 + posZ: 1.70842213e-07 + rotX: -4.28986368e-06 + rotY: 180.0 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 344 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: cf2458 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 1.29084583e-08 + posY: 1.04493046 + posZ: 1.70842213e-07 + rotX: -4.28986368e-06 + rotY: 180.0 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 345 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: cf2458 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 1.29084583e-08 + posY: 1.04493046 + posZ: 1.70842213e-07 + rotX: -4.28986368e-06 + rotY: 180.0 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '3': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359985462/7265C1524D6E863FA6263A85FFB7B73B5E65A215/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359985946/193AEFB4E1FB21EEA7A165C4E16F67E13284D6AF/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 322 +- 323 +- 324 +- 325 +- 326 +- 327 +- 328 +- 329 +- 330 +- 331 +- 332 +- 333 +- 334 +- 335 +- 336 +- 337 +- 338 +- 339 +- 340 +- 341 +- 342 +- 343 +- 344 +- 345 +Description: '' +GMNotes: '' +GUID: 72cb29 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: DeckCustom +Nickname: Encounter deck +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.927505 + posY: 1.739733 + posZ: 5.757102 + rotX: 359.919739 + rotY: 269.985474 + rotZ: 180.016846 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag North Country Cycle aaceca/Custom_Tile Core Difficulty ea0896.ttslua b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag North Country Cycle aaceca/Custom_Tile Core Difficulty ea0896.ttslua new file mode 100644 index 000000000..c7ea585c8 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag North Country Cycle aaceca/Custom_Tile Core Difficulty ea0896.ttslua @@ -0,0 +1,21 @@ +name = 'Core Set' + +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 The Side Missions 791837/Custom_Model_Bag North Country Cycle aaceca/Custom_Tile Core Difficulty ea0896.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag North Country Cycle aaceca/Custom_Tile Core Difficulty ea0896.yaml new file mode 100644 index 000000000..68a24146b --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag North Country Cycle aaceca/Custom_Tile Core Difficulty ea0896.yaml @@ -0,0 +1,42 @@ +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 +GMNotes: '' +GUID: ea0896 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Tile Core Difficulty ea0896.ttslua' +LuaScriptState: '' +Name: Custom_Tile +Nickname: Core Difficulty +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.33318663 + posY: 1.58164728 + posZ: -15.2569742 + rotX: 359.919739 + rotY: 270.000153 + rotZ: 0.016837718 + scaleX: 2.2 + scaleY: 1.0 + scaleZ: 2.2 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Of Sphinx and Sands eeeb50.ttslua b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Of Sphinx and Sands eeeb50.ttslua new file mode 100644 index 000000000..ed7a62e7d --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Of Sphinx and Sands eeeb50.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.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.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 \ No newline at end of file diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Of Sphinx and Sands eeeb50.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Of Sphinx and Sands eeeb50.yaml new file mode 100644 index 000000000..833cbbbe5 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Of Sphinx and Sands eeeb50.yaml @@ -0,0 +1,62 @@ +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 Of Sphinx and Sands eeeb50/Bag 3 The Will to Triump 6d8dad.yaml' +- !include 'Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 2 Chaos in Cairo 6e0236.yaml' +- !include 'Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 1 Eye on the Prize e54f2a.yaml' +CustomMesh: + CastShadows: true + ColliderURL: '' + Convex: true + DiffuseURL: http://cloud-3.steamusercontent.com/ugc/798737729142942817/A62114F4668BA8A72BF7C204D7E3CCEDABB74C16/ + MaterialIndex: 3 + MeshURL: https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj + NormalURL: '' + TypeIndex: 6 +Description: '' +GMNotes: '' +GUID: eeeb50 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Model_Bag Of Sphinx and Sands eeeb50.ttslua' +LuaScriptState: '{"ml":{"56a08b":{"lock":false,"pos":{"x":-4.1,"y":1.5829,"z":-14.7352},"rot":{"x":359.9197,"y":270.0026,"z":0.0168}},"6d8dad":{"lock":false,"pos":{"x":9.7158,"y":1.2818,"z":-4.1308},"rot":{"x":0.0799,"y":89.9964,"z":359.9831}},"6e0236":{"lock":false,"pos":{"x":9.3625,"y":1.284,"z":1.3791},"rot":{"x":0.0799,"y":89.9956,"z":359.9831}},"e54f2a":{"lock":false,"pos":{"x":9.5041,"y":1.2855,"z":7.3849},"rot":{"x":0.0799,"y":89.9936,"z":359.9831}}}}' +MaterialIndex: -1 +MeshIndex: -1 +Name: Custom_Model_Bag +Nickname: Of Sphinx and Sands +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -6.489306 + posY: 1.97222269 + posZ: -119.263855 + rotX: 2.35371385e-06 + rotY: 270.000031 + rotZ: 359.977844 + scaleX: 2.21 + scaleY: 0.46 + scaleZ: 2.42 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 1 Eye on the Prize e54f2a.ttslua b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 1 Eye on the Prize e54f2a.ttslua new file mode 100644 index 000000000..1d754d17c --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 1 Eye on the Prize e54f2a.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 \ No newline at end of file diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 1 Eye on the Prize e54f2a.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 1 Eye on the Prize e54f2a.yaml new file mode 100644 index 000000000..3c24340c7 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 1 Eye on the Prize e54f2a.yaml @@ -0,0 +1,59 @@ +Autoraise: true +ColorDiffuse: + b: 0.0 + g: 0.366520882 + r: 0.7058823 +ContainedObjects: +- !include 'Bag 1 Eye on the Prize e54f2a/Custom_Model_Bag Set-aside a45247.yaml' +- !include 'Bag 1 Eye on the Prize e54f2a/Deck Museum Guards 1ee5f3.yaml' +- !include 'Bag 1 Eye on the Prize e54f2a/Deck Encounter Deck 1d2252.yaml' +- !include 'Bag 1 Eye on the Prize e54f2a/Deck Agenda Deck bbee77.yaml' +- !include 'Bag 1 Eye on the Prize e54f2a/Deck Act Deck cc188f.yaml' +- !include 'Bag 1 Eye on the Prize e54f2a/Card Scenario c76bb3.yaml' +- !include 'Bag 1 Eye on the Prize e54f2a/Custom_Tile Core Difficulty 56a08b.yaml' +- !include 'Bag 1 Eye on the Prize e54f2a/Card Resolution 5b9483.yaml' +- !include 'Bag 1 Eye on the Prize e54f2a/Card Setup efb2d6.yaml' +- !include 'Bag 1 Eye on the Prize e54f2a/Card Intro 2aa44a.yaml' +- !include 'Bag 1 Eye on the Prize e54f2a/Custom_Tile 299828.yaml' +- !include 'Bag 1 Eye on the Prize e54f2a/Card 750180.yaml' +- !include 'Bag 1 Eye on the Prize e54f2a/Card a82558.yaml' +- !include 'Bag 1 Eye on the Prize e54f2a/Card 4ffecc.yaml' +- !include 'Bag 1 Eye on the Prize e54f2a/Custom_Tile 1a5ecd.yaml' +- !include 'Bag 1 Eye on the Prize e54f2a/Card c432f1.yaml' +- !include 'Bag 1 Eye on the Prize e54f2a/Deck Docents 992398.yaml' +- !include 'Bag 1 Eye on the Prize e54f2a/Card 0326fd.yaml' +- !include 'Bag 1 Eye on the Prize e54f2a/Custom_Tile b5b54e.yaml' +- !include 'Bag 1 Eye on the Prize e54f2a/Card 230ebd.yaml' +- !include 'Bag 1 Eye on the Prize e54f2a/Custom_Tile 7234af.yaml' +- !include 'Bag 1 Eye on the Prize e54f2a/Custom_Tile 568894.yaml' +- !include 'Bag 1 Eye on the Prize e54f2a/Custom_Tile a236db.yaml' +- !include 'Bag 1 Eye on the Prize e54f2a/Card 3f7366.yaml' +Description: Of Sphinx and Sands +GMNotes: '' +GUID: e54f2a +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Bag 1 Eye on the Prize e54f2a.ttslua' +LuaScriptState: '{"ml":{"0326fd":{"lock":false,"pos":{"x":-23.6766,"y":1.6885,"z":7.57},"rot":{"x":359.9201,"y":269.9998,"z":0.0169}},"1a5ecd":{"lock":false,"pos":{"x":-17.1199,"y":1.6065,"z":3.86},"rot":{"x":0.0169,"y":179.9995,"z":0.0799}},"1d2252":{"lock":false,"pos":{"x":-3.9269,"y":1.6758,"z":5.7572},"rot":{"x":359.9197,"y":270.0001,"z":180.0168}},"1ee5f3":{"lock":false,"pos":{"x":-0.1734,"y":1.6546,"z":5.7045},"rot":{"x":359.9197,"y":269.9971,"z":0.0168}},"230ebd":{"lock":false,"pos":{"x":-23.6749,"y":1.689,"z":-0.0308},"rot":{"x":359.9201,"y":269.9879,"z":180.0169}},"299828":{"lock":false,"pos":{"x":-17.1199,"y":1.6042,"z":-3.83},"rot":{"x":0.0169,"y":179.9997,"z":0.0799}},"2aa44a":{"lock":false,"pos":{"x":-11.9955,"y":1.668,"z":-6.5877},"rot":{"x":359.9201,"y":269.9998,"z":0.0169}},"3f7366":{"lock":false,"pos":{"x":-23.6766,"y":1.6868,"z":-7.7},"rot":{"x":359.9201,"y":270.0422,"z":180.0168}},"4ffecc":{"lock":false,"pos":{"x":-13.921,"y":1.6726,"z":-0.0212},"rot":{"x":359.9201,"y":269.9763,"z":0.0169}},"568894":{"lock":false,"pos":{"x":-20.1649,"y":1.6085,"z":-3.8296},"rot":{"x":0.0684,"y":135,"z":0.0446}},"56a08b":{"lock":false,"pos":{"x":-4.1,"y":1.5829,"z":-14.7352},"rot":{"x":359.9197,"y":270.0026,"z":0.0168}},"5b9483":{"lock":false,"pos":{"x":-12.0094,"y":1.6665,"z":-11.6612},"rot":{"x":359.9201,"y":269.9996,"z":0.0169}},"7234af":{"lock":false,"pos":{"x":-20.369,"y":1.6099,"z":-0.0081},"rot":{"x":359.9201,"y":269.9935,"z":0.0169}},"750180":{"lock":false,"pos":{"x":-17.12,"y":1.6776,"z":-7.7},"rot":{"x":359.9201,"y":270.0076,"z":180.0168}},"992398":{"lock":false,"pos":{"x":-11.8613,"y":1.6783,"z":7.3205},"rot":{"x":359.9201,"y":270.0001,"z":180.0169}},"a236db":{"lock":false,"pos":{"x":-20.473,"y":1.6078,"z":-7.7204},"rot":{"x":359.9201,"y":269.9932,"z":0.0169}},"a45247":{"lock":false,"pos":{"x":1.6881,"y":1.5583,"z":14.2775},"rot":{"x":359.9552,"y":224.9438,"z":0.0687}},"a82558":{"lock":false,"pos":{"x":-17.1197,"y":1.6799,"z":-0.0302},"rot":{"x":359.9201,"y":270.0011,"z":180.0169}},"b5b54e":{"lock":false,"pos":{"x":-23.6764,"y":1.6157,"z":3.86},"rot":{"x":0.0169,"y":179.9998,"z":0.0799}},"bbee77":{"lock":false,"pos":{"x":-2.718,"y":1.6566,"z":0.3736},"rot":{"x":0.0169,"y":179.9435,"z":0.0802}},"c432f1":{"lock":false,"pos":{"x":-17.1199,"y":1.6821,"z":7.57},"rot":{"x":359.9201,"y":270.0093,"z":180.0168}},"c76bb3":{"lock":false,"pos":{"x":-3.956,"y":1.6556,"z":-10.4413},"rot":{"x":359.9197,"y":269.999,"z":0.0168}},"cc188f":{"lock":false,"pos":{"x":-2.6885,"y":1.655,"z":-5.0485},"rot":{"x":0.0169,"y":179.9694,"z":0.0802}},"efb2d6":{"lock":false,"pos":{"x":-12.0062,"y":1.6673,"z":-9.1242},"rot":{"x":359.9201,"y":269.8791,"z":0.017}}}}' +MaterialIndex: -1 +MeshIndex: -1 +Name: Bag +Nickname: '1: Eye on the Prize ' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 9.556144 + posY: 1.28543925 + posZ: 7.397971 + rotX: 0.09446644 + rotY: 89.995285 + rotZ: 359.981659 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 1 Eye on the Prize e54f2a/Card 0326fd.yaml new file mode 100644 index 000000000..58626dc5d --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 1 Eye on the Prize e54f2a/Card 0326fd.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 268547 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2685': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1010437351816995427/6E7F52F470EF5C480D6DF0A055C6924DBF9353E0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1010437351816996700/95874195585F056B3356BA5ECD74A5A604A94989/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 0326fd +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -23.6765671 + posY: 1.68845832 + posZ: 7.570005 + rotX: 359.9201 + rotY: 269.999847 + rotZ: 0.016876366 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 1 Eye on the Prize e54f2a/Card 230ebd.yaml new file mode 100644 index 000000000..f930c8226 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 1 Eye on the Prize e54f2a/Card 230ebd.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 267806 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2678': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1010437351816995427/6E7F52F470EF5C480D6DF0A055C6924DBF9353E0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1010437351816996700/95874195585F056B3356BA5ECD74A5A604A94989/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 230ebd +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -23.6749 + posY: 1.68904078 + posZ: -0.0307991672 + rotX: 359.9201 + rotY: 269.987854 + rotZ: 180.016876 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 1 Eye on the Prize e54f2a/Card 3f7366.yaml new file mode 100644 index 000000000..73dea34de --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 1 Eye on the Prize e54f2a/Card 3f7366.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 267911 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2679': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1010437351816995427/6E7F52F470EF5C480D6DF0A055C6924DBF9353E0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1010437351816996700/95874195585F056B3356BA5ECD74A5A604A94989/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 3f7366 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -23.6766 + posY: 1.68678486 + posZ: -7.70000124 + rotX: 359.9201 + rotY: 270.042175 + rotZ: 180.016815 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 1 Eye on the Prize e54f2a/Card 4ffecc.yaml new file mode 100644 index 000000000..d2ecea91a --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 1 Eye on the Prize e54f2a/Card 4ffecc.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 267733 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2677': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1010437351816995427/6E7F52F470EF5C480D6DF0A055C6924DBF9353E0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1010437351816996700/95874195585F056B3356BA5ECD74A5A604A94989/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 4ffecc +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '' +SidewaysCard: false +Snap: false +Sticky: true +Tooltip: true +Transform: + posX: -13.9210119 + posY: 1.67261958 + posZ: -0.0211791787 + rotX: 359.9201 + rotY: 269.976318 + rotZ: 0.0169089921 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 1 Eye on the Prize e54f2a/Card 750180.yaml new file mode 100644 index 000000000..d0f3d20c0 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 1 Eye on the Prize e54f2a/Card 750180.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 268010 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2680': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1010437351816995427/6E7F52F470EF5C480D6DF0A055C6924DBF9353E0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1010437351816996700/95874195585F056B3356BA5ECD74A5A604A94989/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: '750180' +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -17.12 + posY: 1.67764211 + posZ: -7.70000124 + rotX: 359.9201 + rotY: 270.007629 + rotZ: 180.016846 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 1 Eye on the Prize e54f2a/Card a82558.yaml new file mode 100644 index 000000000..83200fd1b --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 1 Eye on the Prize e54f2a/Card a82558.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 268109 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2681': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1010437351816995427/6E7F52F470EF5C480D6DF0A055C6924DBF9353E0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1010437351816996700/95874195585F056B3356BA5ECD74A5A604A94989/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: a82558 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -17.11972 + posY: 1.67990017 + posZ: -0.0302197132 + rotX: 359.9201 + rotY: 270.0011 + rotZ: 180.016861 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 1 Eye on the Prize e54f2a/Card c432f1.yaml new file mode 100644 index 000000000..fa33ddb63 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 1 Eye on the Prize e54f2a/Card c432f1.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 268207 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2682': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1010437351816995427/6E7F52F470EF5C480D6DF0A055C6924DBF9353E0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1010437351816996700/95874195585F056B3356BA5ECD74A5A604A94989/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: c432f1 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -17.1199 + posY: 1.68213844 + posZ: 7.57000065 + rotX: 359.9201 + rotY: 270.009338 + rotZ: 180.016846 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 1 Eye on the Prize e54f2a/Card Intro 2aa44a.yaml new file mode 100644 index 000000000..99fb1a594 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 1 Eye on the Prize e54f2a/Card Intro 2aa44a.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 268546 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2685': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1010437351816995427/6E7F52F470EF5C480D6DF0A055C6924DBF9353E0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1010437351816996700/95874195585F056B3356BA5ECD74A5A604A94989/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 2aa44a +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Intro +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -11.9954929 + posY: 1.66800094 + posZ: -6.58773756 + rotX: 359.9201 + rotY: 269.999847 + rotZ: 0.01687673 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 1 Eye on the Prize e54f2a/Card Resolution 5b9483.yaml new file mode 100644 index 000000000..cdc19c3a8 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 1 Eye on the Prize e54f2a/Card Resolution 5b9483.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 268545 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2685': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1010437351816995427/6E7F52F470EF5C480D6DF0A055C6924DBF9353E0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1010437351816996700/95874195585F056B3356BA5ECD74A5A604A94989/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 5b9483 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Resolution +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -12.00942 + posY: 1.66652656 + posZ: -11.6611519 + rotX: 359.9201 + rotY: 269.999573 + rotZ: 0.0168770049 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 1 Eye on the Prize e54f2a/Card Scenario c76bb3.yaml new file mode 100644 index 000000000..bb347b154 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 1 Eye on the Prize e54f2a/Card Scenario c76bb3.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 262826 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2628': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1010437351816995427/6E7F52F470EF5C480D6DF0A055C6924DBF9353E0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1010437351816996700/95874195585F056B3356BA5ECD74A5A604A94989/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: c76bb3 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Scenario +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.956033 + posY: 1.65564811 + posZ: -10.4413195 + rotX: 359.919739 + rotY: 269.999023 + rotZ: 0.0168424137 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 1 Eye on the Prize e54f2a/Card Setup efb2d6.yaml new file mode 100644 index 000000000..8e7a1ba81 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 1 Eye on the Prize e54f2a/Card Setup efb2d6.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 268325 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2683': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1010437351816995427/6E7F52F470EF5C480D6DF0A055C6924DBF9353E0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1010437351816996700/95874195585F056B3356BA5ECD74A5A604A94989/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: efb2d6 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Setup +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -12.0061655 + posY: 1.667269 + posZ: -9.124204 + rotX: 359.920135 + rotY: 269.8791 + rotZ: 0.0170445386 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 1 Eye on the Prize e54f2a/Custom_Model_Bag Set-aside a45247.yaml new file mode 100644 index 000000000..e9506304f --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 1 Eye on the Prize e54f2a/Custom_Model_Bag Set-aside a45247.yaml @@ -0,0 +1,59 @@ +Autoraise: true +ColorDiffuse: + b: 0.02148666 + g: 0.00100758043 + r: 0.02148666 +ContainedObjects: +- !include 'Custom_Model_Bag Set-aside a45247/Deck Additional Encounter Cards 436974.yaml' +- !include 'Custom_Model_Bag Set-aside a45247/Deck Guard''s Flashlight 947add.yaml' +- !include 'Custom_Model_Bag Set-aside a45247/Card The Eye of Horus b1fc4a.yaml' +- !include 'Custom_Model_Bag Set-aside a45247/Deck Locations set-aside 0435df.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: '' +GMNotes: '' +GUID: a45247 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +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.68810856 + posY: 1.55832851 + posZ: 14.2775087 + rotX: 359.9552 + rotY: 224.943832 + rotZ: 0.0687143356 + scaleX: 2.0 + scaleY: 2.0 + scaleZ: 2.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/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 new file mode 100644 index 000000000..fb30a08f2 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/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 @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 269039 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2690': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1010437351816995427/6E7F52F470EF5C480D6DF0A055C6924DBF9353E0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1010437351816996700/95874195585F056B3356BA5ECD74A5A604A94989/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: b1fc4a +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: The Eye of Horus +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 7.46771955 + posY: 2.54867148 + posZ: -29.0967369 + rotX: 359.920135 + rotY: 269.999725 + rotZ: 0.01687775 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/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 new file mode 100644 index 000000000..e60eebacd --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/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 @@ -0,0 +1,1046 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 3623 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Cultist. + GMNotes: '' + GUID: 492e5e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Acolyte + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.270352632 + posY: 1.56269932 + posZ: 33.6485023 + rotX: 359.920776 + rotY: 269.998749 + rotZ: 0.013911915 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3623 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Cultist. + GMNotes: '' + GUID: 4072d7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Acolyte + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.270248324 + posY: 1.71613944 + posZ: 33.64887 + rotX: 359.9451 + rotY: 270.001068 + rotZ: 0.07087317 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3623 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Cultist. + GMNotes: '' + GUID: c70e63 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Acolyte + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.27011317 + posY: 1.73011589 + posZ: 33.6485863 + rotX: 359.9222 + rotY: 270.0001 + rotZ: 0.0140956827 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 268715 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2687': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1010437351816995427/6E7F52F470EF5C480D6DF0A055C6924DBF9353E0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1010437351816996700/95874195585F056B3356BA5ECD74A5A604A94989/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: b1d81e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.270116717 + posY: 1.71630359 + posZ: 33.6486053 + rotX: 359.921478 + rotY: 270.000122 + rotZ: 0.01569182 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 268834 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2688': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1010437351816995427/6E7F52F470EF5C480D6DF0A055C6924DBF9353E0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1010437351816996700/95874195585F056B3356BA5ECD74A5A604A94989/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: c7add9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Assassin + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.2701135 + posY: 1.714417 + posZ: 33.6485863 + rotX: 359.922058 + rotY: 270.000122 + rotZ: 0.0142756756 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 268735 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2687': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1010437351816995427/6E7F52F470EF5C480D6DF0A055C6924DBF9353E0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1010437351816996700/95874195585F056B3356BA5ECD74A5A604A94989/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 2d4a92 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.2701219 + posY: 1.71724391 + posZ: 33.6485825 + rotX: 359.918152 + rotY: 269.999817 + rotZ: 0.016171487 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 268728 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2687': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1010437351816995427/6E7F52F470EF5C480D6DF0A055C6924DBF9353E0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1010437351816996700/95874195585F056B3356BA5ECD74A5A604A94989/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: '218170' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.2701142 + posY: 1.72202814 + posZ: 33.6485863 + rotX: 359.922 + rotY: 269.999939 + rotZ: 0.01439418 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 268727 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2687': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1010437351816995427/6E7F52F470EF5C480D6DF0A055C6924DBF9353E0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1010437351816996700/95874195585F056B3356BA5ECD74A5A604A94989/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 0f5da0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.270113051 + posY: 1.72854161 + posZ: 33.6485863 + rotX: 359.9219 + rotY: 269.999939 + rotZ: 0.0144926179 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3621 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: b78c3b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Crypt Chill + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.2701649 + posY: 1.68626785 + posZ: 33.65633 + rotX: 0.027014574 + rotY: 270.0659 + rotZ: 0.769838 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3621 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: fb311c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Crypt Chill + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.2701138 + posY: 1.6955179 + posZ: 33.6485825 + rotX: 359.921875 + rotY: 269.999969 + rotZ: 0.0145416632 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3619 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: '260768' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dissonant Voices + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.2700989 + posY: 1.70494878 + posZ: 33.6485825 + rotX: 359.912354 + rotY: 269.999817 + rotZ: 0.0175038371 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3619 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: f1a34d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dissonant Voices + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.2714113 + posY: 1.7017833 + posZ: 33.64996 + rotX: 358.59256 + rotY: 270.0075 + rotZ: 358.755524 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 268716 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2687': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1010437351816995427/6E7F52F470EF5C480D6DF0A055C6924DBF9353E0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1010437351816996700/95874195585F056B3356BA5ECD74A5A604A94989/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: dae684 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.2701181 + posY: 1.72442687 + posZ: 33.6485825 + rotX: 359.920227 + rotY: 269.999969 + rotZ: 0.0155002493 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 268717 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2687': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1010437351816995427/6E7F52F470EF5C480D6DF0A055C6924DBF9353E0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1010437351816996700/95874195585F056B3356BA5ECD74A5A604A94989/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: a95cf6 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.270121753 + posY: 1.73419011 + posZ: 33.6485825 + rotX: 359.918457 + rotY: 269.999756 + rotZ: 0.0163258538 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3618 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: c40f57 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Frozen in Fear + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.271545082 + posY: 1.73126 + posZ: 33.64717 + rotX: 358.6004 + rotY: 269.979919 + rotZ: 1.36902523 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3618 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: 27c05d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Frozen in Fear + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.2717983 + posY: 1.7321012 + posZ: 33.6499367 + rotX: 358.277344 + rotY: 270.014954 + rotZ: 358.752777 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3632 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Pact. + GMNotes: '' + GUID: 7c5c91 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Offer of Power + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.271771044 + posY: 1.74252546 + posZ: 33.6499557 + rotX: 358.2996 + rotY: 270.014435 + rotZ: 358.743774 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 268729 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2687': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1010437351816995427/6E7F52F470EF5C480D6DF0A055C6924DBF9353E0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1010437351816996700/95874195585F056B3356BA5ECD74A5A604A94989/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 8a6deb + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.270113826 + posY: 1.77274489 + posZ: 33.6485863 + rotX: 359.9214 + rotY: 269.999878 + rotZ: 0.015044624 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3628 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Obstacle. + GMNotes: '' + GUID: 1340ff + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Locked Door + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.2717272 + posY: 1.765761 + posZ: 33.6471977 + rotX: 358.398529 + rotY: 269.9771 + rotZ: 1.35462487 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3628 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Obstacle. + GMNotes: '' + GUID: 9449d7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Locked Door + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.2701177 + posY: 1.79209721 + posZ: 33.6485825 + rotX: 359.920135 + rotY: 270.000061 + rotZ: 0.0156725086 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3625 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: 6f5b7b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Mysterious Chanting + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.8809893 + posY: 1.80082178 + posZ: 33.2333336 + rotX: 359.9201 + rotY: 269.999573 + rotZ: 0.01627413 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3625 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: df668b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Mysterious Chanting + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.270113349 + posY: 1.81146812 + posZ: 33.6485863 + rotX: 359.921234 + rotY: 269.999756 + rotZ: 0.0152360313 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3632 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Pact. + GMNotes: '' + GUID: 153bb1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Offer of Power + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.270117074 + posY: 1.82112908 + posZ: 33.6485825 + rotX: 359.920074 + rotY: 270.000153 + rotZ: 0.01579367 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2687': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1010437351816995427/6E7F52F470EF5C480D6DF0A055C6924DBF9353E0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1010437351816996700/95874195585F056B3356BA5ECD74A5A604A94989/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + '2688': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1010437351816995427/6E7F52F470EF5C480D6DF0A055C6924DBF9353E0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1010437351816996700/95874195585F056B3356BA5ECD74A5A604A94989/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 3623 +- 3623 +- 3623 +- 268715 +- 268834 +- 268735 +- 268728 +- 268727 +- 3621 +- 3621 +- 3619 +- 3619 +- 268716 +- 268717 +- 3618 +- 3618 +- 3632 +- 268729 +- 3628 +- 3628 +- 3625 +- 3625 +- 3632 +Description: '' +GMNotes: '' +GUID: '436974' +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Additional Encounter Cards +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 7.31170464 + posY: 2.59194851 + posZ: -37.9426575 + rotX: 359.920135 + rotY: 269.971954 + rotZ: 0.0169222727 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/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 new file mode 100644 index 000000000..067109624 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/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 @@ -0,0 +1,215 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 268936 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2689': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1010437351816995427/6E7F52F470EF5C480D6DF0A055C6924DBF9353E0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1010437351816996700/95874195585F056B3356BA5ECD74A5A604A94989/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 99eb99 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 8.407691 + posY: 1.5485462 + posZ: 24.0691738 + rotX: 359.920654 + rotY: 270.003754 + rotZ: 0.0131668849 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 268938 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2689': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1010437351816995427/6E7F52F470EF5C480D6DF0A055C6924DBF9353E0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1010437351816996700/95874195585F056B3356BA5ECD74A5A604A94989/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 631a02 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 8.400238 + posY: 1.68724906 + posZ: 24.37612 + rotX: 359.943817 + rotY: 270.000732 + rotZ: 359.968018 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 268937 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2689': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1010437351816995427/6E7F52F470EF5C480D6DF0A055C6924DBF9353E0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1010437351816996700/95874195585F056B3356BA5ECD74A5A604A94989/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 82fed2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 7.74866629 + posY: 1.71353817 + posZ: 27.965353 + rotX: 359.935333 + rotY: 269.996521 + rotZ: 0.0129680336 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 268937 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2689': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1010437351816995427/6E7F52F470EF5C480D6DF0A055C6924DBF9353E0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1010437351816996700/95874195585F056B3356BA5ECD74A5A604A94989/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 82fed2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 7.740966 + posY: 1.72711551 + posZ: 27.9815388 + rotX: 359.928131 + rotY: 270.001068 + rotZ: 0.0253746919 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2689': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1010437351816995427/6E7F52F470EF5C480D6DF0A055C6924DBF9353E0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1010437351816996700/95874195585F056B3356BA5ECD74A5A604A94989/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 268936 +- 268938 +- 268937 +- 268937 +Description: '' +GMNotes: '' +GUID: 947add +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Guard's Flashlight +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 5.49983835 + posY: 2.54602671 + posZ: -32.8779068 + rotX: 359.920135 + rotY: 270.0022 + rotZ: 0.01687465 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/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 new file mode 100644 index 000000000..c455222a4 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/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 @@ -0,0 +1,215 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 268708 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2626': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1010437351816995427/6E7F52F470EF5C480D6DF0A055C6924DBF9353E0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1010437351816996700/95874195585F056B3356BA5ECD74A5A604A94989/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: aeb84b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -15.4790306 + posY: 1.50914252 + posZ: -72.55334 + rotX: -0.00432150532 + rotY: 269.981567 + rotZ: 180.046188 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 268713 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2626': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1010437351816995427/6E7F52F470EF5C480D6DF0A055C6924DBF9353E0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1010437351816996700/95874195585F056B3356BA5ECD74A5A604A94989/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 78a9cb + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -15.4522915 + posY: 1.3736428 + posZ: -72.35034 + rotX: 0.0187900066 + rotY: 269.976868 + rotZ: 180.02655 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 268714 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2626': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1010437351816995427/6E7F52F470EF5C480D6DF0A055C6924DBF9353E0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1010437351816996700/95874195585F056B3356BA5ECD74A5A604A94989/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 8b0a2d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -15.3570471 + posY: 1.51529765 + posZ: -67.86557 + rotX: 0.0125949262 + rotY: 269.98645 + rotZ: 180.038727 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 268712 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2626': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1010437351816995427/6E7F52F470EF5C480D6DF0A055C6924DBF9353E0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1010437351816996700/95874195585F056B3356BA5ECD74A5A604A94989/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 09f211 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -15.1267262 + posY: 1.37505257 + posZ: -67.709465 + rotX: 0.0192991029 + rotY: 269.996246 + rotZ: 180.020966 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2687': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1010437351816995427/6E7F52F470EF5C480D6DF0A055C6924DBF9353E0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1010437351816996700/95874195585F056B3356BA5ECD74A5A604A94989/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 268708 +- 268713 +- 268714 +- 268712 +Description: '' +GMNotes: '' +GUID: 0435df +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Locations set-aside +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 4.008202 + posY: 2.56157827 + posZ: -18.8341637 + rotX: 359.920135 + rotY: 269.994324 + rotZ: 180.016876 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 1 Eye on the Prize e54f2a/Custom_Tile 1a5ecd.yaml new file mode 100644 index 000000000..f92937cc9 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 1 Eye on the Prize e54f2a/Custom_Tile 1a5ecd.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 1a5ecd +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.1198845 + posY: 1.60650933 + posZ: 3.8599956 + rotX: 0.01687253 + rotY: 179.999512 + rotZ: 0.07994571 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 1 Eye on the Prize e54f2a/Custom_Tile 299828.yaml new file mode 100644 index 000000000..788564aa0 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 1 Eye on the Prize e54f2a/Custom_Tile 299828.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: '299828' +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.1198864 + posY: 1.604245 + posZ: -3.83000183 + rotX: 0.0168722179 + rotY: 179.999664 + rotZ: 0.07994991 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 1 Eye on the Prize e54f2a/Custom_Tile 568894.yaml new file mode 100644 index 000000000..210ccfa29 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 1 Eye on the Prize e54f2a/Custom_Tile 568894.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: '568894' +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.164896 + posY: 1.60849118 + posZ: -3.82960153 + rotX: 0.0684325248 + rotY: 134.999954 + rotZ: 0.0445611067 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 1 Eye on the Prize e54f2a/Custom_Tile 7234af.yaml new file mode 100644 index 000000000..c39667902 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 1 Eye on the Prize e54f2a/Custom_Tile 7234af.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 7234af +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.369 + posY: 1.60990107 + posZ: -0.008100727 + rotX: 359.9201 + rotY: 269.99353 + rotZ: 0.0169091783 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 1 Eye on the Prize e54f2a/Custom_Tile a236db.yaml new file mode 100644 index 000000000..bcbc0e87c --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 1 Eye on the Prize e54f2a/Custom_Tile a236db.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: a236db +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.4729977 + posY: 1.60777521 + posZ: -7.72040272 + rotX: 359.9201 + rotY: 269.993164 + rotZ: 0.0169094559 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 1 Eye on the Prize e54f2a/Custom_Tile b5b54e.yaml new file mode 100644 index 000000000..afc2fc7ec --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 1 Eye on the Prize e54f2a/Custom_Tile b5b54e.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: b5b54e +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.6764183 + posY: 1.615652 + posZ: 3.85997748 + rotX: 0.0168720279 + rotY: 179.999832 + rotZ: 0.07993952 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 1 Eye on the Prize e54f2a/Custom_Tile Core Difficulty 56a08b.ttslua new file mode 100644 index 000000000..476f361a0 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 1 Eye on the Prize e54f2a/Custom_Tile Core Difficulty 56a08b.ttslua @@ -0,0 +1,21 @@ +name = 'Of Sphinx' + +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 791837/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 791837/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 1 Eye on the Prize e54f2a/Custom_Tile Core Difficulty 56a08b.yaml new file mode 100644 index 000000000..0c7d84048 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 1 Eye on the Prize e54f2a/Custom_Tile Core Difficulty 56a08b.yaml @@ -0,0 +1,42 @@ +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 +GMNotes: '' +GUID: 56a08b +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Tile Core Difficulty 56a08b.ttslua' +LuaScriptState: '' +Name: Custom_Tile +Nickname: Core Difficulty +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -4.10000038 + posY: 1.58287466 + posZ: -14.7352142 + rotX: 359.919739 + rotY: 270.002563 + rotZ: 0.01683429 + scaleX: 2.2 + scaleY: 1.0 + scaleZ: 2.2 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 1 Eye on the Prize e54f2a/Deck Act Deck cc188f.yaml new file mode 100644 index 000000000..8f940254d --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 1 Eye on the Prize e54f2a/Deck Act Deck cc188f.yaml @@ -0,0 +1,172 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 262705 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2627': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1010437351816995427/6E7F52F470EF5C480D6DF0A055C6924DBF9353E0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1010437351816996700/95874195585F056B3356BA5ECD74A5A604A94989/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 3bf59b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.68450475 + posY: 1.5348556 + posZ: -76.11795 + rotX: 0.0155704515 + rotY: 180.000259 + rotZ: 179.976242 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 262703 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2627': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1010437351816995427/6E7F52F470EF5C480D6DF0A055C6924DBF9353E0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1010437351816996700/95874195585F056B3356BA5ECD74A5A604A94989/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: edcfb1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -7.30706 + posY: 1.37265527 + posZ: -75.75237 + rotX: 0.0129251862 + rotY: 180.000336 + rotZ: 359.977631 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 262704 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2627': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1010437351816995427/6E7F52F470EF5C480D6DF0A055C6924DBF9353E0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1010437351816996700/95874195585F056B3356BA5ECD74A5A604A94989/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: '198315' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.68425465 + posY: 1.53195846 + posZ: -76.31224 + rotX: 0.0172787774 + rotY: 180.000366 + rotZ: 359.9775 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2627': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1010437351816995427/6E7F52F470EF5C480D6DF0A055C6924DBF9353E0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1010437351816996700/95874195585F056B3356BA5ECD74A5A604A94989/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 262705 +- 262703 +- 262704 +Description: '' +GMNotes: '' +GUID: cc188f +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Act Deck +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.6885 + posY: 1.65499735 + posZ: -5.0485 + rotX: 0.0168779436 + rotY: 179.969421 + rotZ: 0.08024864 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 1 Eye on the Prize e54f2a/Deck Agenda Deck bbee77.yaml new file mode 100644 index 000000000..bbc8f99cd --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 1 Eye on the Prize e54f2a/Deck Agenda Deck bbee77.yaml @@ -0,0 +1,172 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 262702 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2627': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1010437351816995427/6E7F52F470EF5C480D6DF0A055C6924DBF9353E0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1010437351816996700/95874195585F056B3356BA5ECD74A5A604A94989/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 69c791 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.38836145 + posY: 1.375364 + posZ: -72.33916 + rotX: 0.00929532852 + rotY: 179.942139 + rotZ: -0.0004587259 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 262701 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2627': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1010437351816995427/6E7F52F470EF5C480D6DF0A055C6924DBF9353E0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1010437351816996700/95874195585F056B3356BA5ECD74A5A604A94989/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 11792b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.77686048 + posY: 1.58283389 + posZ: -72.55929 + rotX: 0.00120282662 + rotY: 180.005219 + rotZ: 3.58096433 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 262700 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2627': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1010437351816995427/6E7F52F470EF5C480D6DF0A055C6924DBF9353E0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1010437351816996700/95874195585F056B3356BA5ECD74A5A604A94989/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 3332f3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.74026346 + posY: 1.53317535 + posZ: -72.38163 + rotX: 0.0137495594 + rotY: 179.98848 + rotZ: 359.9832 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2627': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1010437351816995427/6E7F52F470EF5C480D6DF0A055C6924DBF9353E0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1010437351816996700/95874195585F056B3356BA5ECD74A5A604A94989/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 262702 +- 262701 +- 262700 +Description: '' +GMNotes: '' +GUID: bbee77 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Agenda Deck +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.718 + posY: 1.65663183 + posZ: 0.373601 + rotX: 0.0169141516 + rotY: 179.943481 + rotZ: 0.080241 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 1 Eye on the Prize e54f2a/Deck Docents 992398.yaml new file mode 100644 index 000000000..90e02c0b4 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 1 Eye on the Prize e54f2a/Deck Docents 992398.yaml @@ -0,0 +1,215 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 268542 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2685': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1010437351816995427/6E7F52F470EF5C480D6DF0A055C6924DBF9353E0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1010437351816996700/95874195585F056B3356BA5ECD74A5A604A94989/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: '484266' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -12.8520966 + posY: 1.74112189 + posZ: 23.7927551 + rotX: 359.9357 + rotY: 270.000336 + rotZ: 0.0102082361 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 268543 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2685': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1010437351816995427/6E7F52F470EF5C480D6DF0A055C6924DBF9353E0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1010437351816996700/95874195585F056B3356BA5ECD74A5A604A94989/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 080482 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -12.7979517 + posY: 1.72286725 + posZ: 23.78594 + rotX: 359.945618 + rotY: 270.0014 + rotZ: 0.0055241934 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 268541 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2685': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1010437351816995427/6E7F52F470EF5C480D6DF0A055C6924DBF9353E0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1010437351816996700/95874195585F056B3356BA5ECD74A5A604A94989/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: f729ac + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -12.5907717 + posY: 1.72713053 + posZ: 23.8240852 + rotX: 359.934235 + rotY: 269.9999 + rotZ: 0.0132503826 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 268544 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2685': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1010437351816995427/6E7F52F470EF5C480D6DF0A055C6924DBF9353E0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1010437351816996700/95874195585F056B3356BA5ECD74A5A604A94989/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 02093a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -12.8520813 + posY: 1.57806432 + posZ: 23.7525711 + rotX: 359.9208 + rotY: 270.000641 + rotZ: 0.0118363015 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2685': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1010437351816995427/6E7F52F470EF5C480D6DF0A055C6924DBF9353E0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1010437351816996700/95874195585F056B3356BA5ECD74A5A604A94989/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 268542 +- 268543 +- 268541 +- 268544 +Description: '' +GMNotes: '' +GUID: '992398' +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Docents +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -11.8613443 + posY: 1.67828512 + posZ: 7.320497 + 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 The Side Missions 791837/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 791837/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 1 Eye on the Prize e54f2a/Deck Encounter Deck 1d2252.yaml new file mode 100644 index 000000000..e9f17969b --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 1 Eye on the Prize e54f2a/Deck Encounter Deck 1d2252.yaml @@ -0,0 +1,567 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 3605 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: de1cd2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: False Lead + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 18.7164173 + posY: 1.67364609 + posZ: 11.809741 + rotX: 359.910431 + rotY: 270.0063 + rotZ: 180.015289 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 268540 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2685': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1010437351816995427/6E7F52F470EF5C480D6DF0A055C6924DBF9353E0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1010437351816996700/95874195585F056B3356BA5ECD74A5A604A94989/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 8db13e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -5.996755 + posY: 2.56179333 + posZ: -36.45031 + rotX: 359.920135 + rotY: 269.996735 + rotZ: 0.0168808475 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3613 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Creature. + GMNotes: '' + GUID: bbc9d1 + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Swarm of Rats + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -18.9998322 + posY: 1.23161483 + posZ: 14.9262657 + rotX: -0.00489453 + rotY: 270.002747 + rotZ: -0.00167015032 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267620 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2626': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1010437351816995427/6E7F52F470EF5C480D6DF0A055C6924DBF9353E0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1010437351816996700/95874195585F056B3356BA5ECD74A5A604A94989/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 1401db + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -13.2322826 + posY: 1.53380036 + posZ: -57.12738 + rotX: 0.01877085 + rotY: 270.0163 + rotZ: 0.0176316332 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3605 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: b6793f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: False Lead + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 18.9760284 + posY: 1.53300381 + posZ: 11.728157 + rotX: 359.917969 + rotY: 270.006561 + rotZ: 180.017715 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3613 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Creature. + GMNotes: '' + GUID: 7381cd + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Swarm of Rats + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -19.6142921 + posY: 1.42705274 + posZ: 15.2051964 + rotX: 0.012312145 + rotY: 269.997284 + rotZ: 0.0359485969 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3613 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Creature. + GMNotes: '' + GUID: 56e5db + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Swarm of Rats + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -19.7119656 + posY: 1.28121269 + posZ: 15.0893879 + rotX: 0.004087732 + rotY: 269.994171 + rotZ: -0.0020856997 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267619 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2626': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1010437351816995427/6E7F52F470EF5C480D6DF0A055C6924DBF9353E0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1010437351816996700/95874195585F056B3356BA5ECD74A5A604A94989/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 354db3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -13.478405 + posY: 1.37665856 + posZ: -54.4376755 + rotX: 0.0174259543 + rotY: 270.003632 + rotZ: 0.02571326 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267618 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2626': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1010437351816995427/6E7F52F470EF5C480D6DF0A055C6924DBF9353E0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1010437351816996700/95874195585F056B3356BA5ECD74A5A604A94989/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: f639f7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -13.839201 + posY: 1.516904 + posZ: -54.4389153 + rotX: 0.01410901 + rotY: 269.9714 + rotZ: 0.0369777568 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267621 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2626': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1010437351816995427/6E7F52F470EF5C480D6DF0A055C6924DBF9353E0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1010437351816996700/95874195585F056B3356BA5ECD74A5A604A94989/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 762f4d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -13.55035 + posY: 1.51599038 + posZ: -56.90857 + rotX: 0.0342813 + rotY: 270.005737 + rotZ: 0.021799488 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267624 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2626': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1010437351816995427/6E7F52F470EF5C480D6DF0A055C6924DBF9353E0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1010437351816996700/95874195585F056B3356BA5ECD74A5A604A94989/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 5493ec + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -17.33771 + posY: 1.374425 + posZ: -57.16815 + rotX: 0.0155961905 + rotY: 270.015778 + rotZ: 0.0149208866 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267623 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2626': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1010437351816995427/6E7F52F470EF5C480D6DF0A055C6924DBF9353E0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1010437351816996700/95874195585F056B3356BA5ECD74A5A604A94989/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 8dfa0f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -17.4787788 + posY: 1.5145179 + posZ: -57.2639236 + rotX: 0.023285836 + rotY: 270.016052 + rotZ: 0.0123820128 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2676': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1010437351816995427/6E7F52F470EF5C480D6DF0A055C6924DBF9353E0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1010437351816996700/95874195585F056B3356BA5ECD74A5A604A94989/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + '2685': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1010437351816995427/6E7F52F470EF5C480D6DF0A055C6924DBF9353E0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1010437351816996700/95874195585F056B3356BA5ECD74A5A604A94989/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 3605 +- 268540 +- 3613 +- 267620 +- 3605 +- 3613 +- 3613 +- 267619 +- 267618 +- 267621 +- 267624 +- 267623 +Description: '' +GMNotes: '' +GUID: 1d2252 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Encounter Deck +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.92692518 + posY: 1.67577875 + posZ: 5.757211 + rotX: 359.919739 + rotY: 270.000061 + rotZ: 180.01683 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 1 Eye on the Prize e54f2a/Deck Museum Guards 1ee5f3.yaml new file mode 100644 index 000000000..e6b2823f8 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 1 Eye on the Prize e54f2a/Deck Museum Guards 1ee5f3.yaml @@ -0,0 +1,172 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 267732 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2626': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1010437351816995427/6E7F52F470EF5C480D6DF0A055C6924DBF9353E0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1010437351816996700/95874195585F056B3356BA5ECD74A5A604A94989/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: a32abd + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -14.0556974 + posY: 1.37035668 + posZ: -74.06982 + rotX: -6.438237e-05 + rotY: 270.025238 + rotZ: 0.00286454172 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267730 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2626': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1010437351816995427/6E7F52F470EF5C480D6DF0A055C6924DBF9353E0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1010437351816996700/95874195585F056B3356BA5ECD74A5A604A94989/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: '131243' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -14.3750381 + posY: 1.36969066 + posZ: -77.19976 + rotX: 0.0136635732 + rotY: 270.011841 + rotZ: 0.0137948841 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267731 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2626': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1010437351816995427/6E7F52F470EF5C480D6DF0A055C6924DBF9353E0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1010437351816996700/95874195585F056B3356BA5ECD74A5A604A94989/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 41525b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -13.5272207 + posY: 1.36905229 + posZ: -80.40443 + rotX: 0.0175335873 + rotY: 270.016418 + rotZ: 0.0151442541 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2677': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/1010437351816995427/6E7F52F470EF5C480D6DF0A055C6924DBF9353E0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/1010437351816996700/95874195585F056B3356BA5ECD74A5A604A94989/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 267732 +- 267730 +- 267731 +Description: '' +GMNotes: '' +GUID: 1ee5f3 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Museum Guards +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -0.17341134 + posY: 1.65463412 + posZ: 5.70448971 + rotX: 359.919739 + rotY: 269.9971 + rotZ: 0.01684504 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 2 Chaos in Cairo 6e0236.ttslua b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 2 Chaos in Cairo 6e0236.ttslua new file mode 100644 index 000000000..1d754d17c --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 2 Chaos in Cairo 6e0236.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 \ No newline at end of file diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 2 Chaos in Cairo 6e0236.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 2 Chaos in Cairo 6e0236.yaml new file mode 100644 index 000000000..cf5a3a4d9 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 2 Chaos in Cairo 6e0236.yaml @@ -0,0 +1,45 @@ +Autoraise: true +ColorDiffuse: + b: 0.0 + g: 0.366520882 + r: 0.7058823 +ContainedObjects: +- !include 'Bag 2 Chaos in Cairo 6e0236/Custom_Model_Bag Set-aside a45247.yaml' +- !include 'Bag 2 Chaos in Cairo 6e0236/Deck Encounter Deck ce95f2.yaml' +- !include 'Bag 2 Chaos in Cairo 6e0236/Deck Agenda Deck 1a9793.yaml' +- !include 'Bag 2 Chaos in Cairo 6e0236/Deck Act Deck e57331.yaml' +- !include 'Bag 2 Chaos in Cairo 6e0236/Card Scenario feafd1.yaml' +- !include 'Bag 2 Chaos in Cairo 6e0236/Deck Assassins 881cd5.yaml' +- !include 'Bag 2 Chaos in Cairo 6e0236/Bag Module B Tokens be2521.yaml' +- !include 'Bag 2 Chaos in Cairo 6e0236/Deck Setup, Modules & Resolution cee816.yaml' +- !include 'Bag 2 Chaos in Cairo 6e0236/Card Egyptian Museum 6695ea.yaml' +- !include 'Bag 2 Chaos in Cairo 6e0236/Card Scenario e68cf1.yaml' +Description: Of Sphinx and Sands +GMNotes: '' +GUID: 6e0236 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Bag 2 Chaos in Cairo 6e0236.ttslua' +LuaScriptState: '{"ml":{"1a9793":{"lock":false,"pos":{"x":-2.7247,"y":1.6551,"z":0.3733},"rot":{"x":0.0168,"y":180.0349,"z":0.0803}},"6695ea":{"lock":false,"pos":{"x":-17.12,"y":1.6771,"z":-0.03},"rot":{"x":359.9201,"y":269.9665,"z":0.0169}},"881cd5":{"lock":false,"pos":{"x":-11.2634,"y":1.6798,"z":13.587},"rot":{"x":359.9201,"y":270.0985,"z":0.0168}},"a45247":{"lock":false,"pos":{"x":1.6944,"y":1.5583,"z":14.2805},"rot":{"x":359.955,"y":225.0656,"z":0.0686}},"be2521":{"lock":false,"pos":{"x":-11.2689,"y":1.4148,"z":8.8425},"rot":{"x":359.9831,"y":-0.0028,"z":359.92}},"ce95f2":{"lock":false,"pos":{"x":-3.9275,"y":1.6971,"z":5.757},"rot":{"x":359.9197,"y":269.9998,"z":180.0168}},"cee816":{"lock":false,"pos":{"x":-10.7755,"y":1.6678,"z":2.35},"rot":{"x":359.9201,"y":269.9819,"z":0.0169}},"e57331":{"lock":false,"pos":{"x":-2.686,"y":1.6535,"z":-5.0525},"rot":{"x":0.0168,"y":180.0057,"z":0.0803}},"e68cf1":{"lock":false,"pos":{"x":-50.9244,"y":1.7266,"z":8.1784},"rot":{"x":359.9201,"y":270.0947,"z":0.0167}},"feafd1":{"lock":false,"pos":{"x":-3.9505,"y":1.6556,"z":-10.433},"rot":{"x":359.9197,"y":270.0947,"z":0.0167}}}}' +MaterialIndex: -1 +MeshIndex: -1 +Name: Bag +Nickname: '2: Chaos in Cairo' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 9.415159 + posY: 1.28394425 + posZ: 1.41827714 + rotX: 0.07995927 + rotY: 89.99507 + rotZ: 359.9831 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 2 Chaos in Cairo 6e0236/Bag Module B Tokens be2521.yaml new file mode 100644 index 000000000..d76cffa5e --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 2 Chaos in Cairo 6e0236/Bag Module B Tokens be2521.yaml @@ -0,0 +1,57 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 0.779244 + r: 0.238675892 +ContainedObjects: +- !include 'Bag Module B Tokens be2521/Custom_Tile 90df18.yaml' +- !include 'Bag Module B Tokens be2521/Custom_Tile e02457.yaml' +- !include 'Bag Module B Tokens be2521/Custom_Tile c52136.yaml' +- !include 'Bag Module B Tokens be2521/Custom_Tile 8d38ae.yaml' +- !include 'Bag Module B Tokens be2521/Custom_Tile cd18ab.yaml' +- !include 'Bag Module B Tokens be2521/Custom_Tile 8b12e0.yaml' +- !include 'Bag Module B Tokens be2521/Custom_Tile e78f19.yaml' +- !include 'Bag Module B Tokens be2521/Custom_Tile 8e672b.yaml' +- !include 'Bag Module B Tokens be2521/Custom_Tile 2a2f1c.yaml' +- !include 'Bag Module B Tokens be2521/Custom_Tile a79177.yaml' +- !include 'Bag Module B Tokens be2521/Custom_Tile 04fba0.yaml' +- !include 'Bag Module B Tokens be2521/Custom_Tile 045c19.yaml' +- !include 'Bag Module B Tokens be2521/Custom_Tile dbf6b2.yaml' +- !include 'Bag Module B Tokens be2521/Custom_Tile fa5356.yaml' +- !include 'Bag Module B Tokens be2521/Custom_Tile 4b16be.yaml' +- !include 'Bag Module B Tokens be2521/Custom_Tile f149bb.yaml' +- !include 'Bag Module B Tokens be2521/Custom_Tile 3304b3.yaml' +- !include 'Bag Module B Tokens be2521/Custom_Tile 941a94.yaml' +- !include 'Bag Module B Tokens be2521/Custom_Tile 1c4564.yaml' +- !include 'Bag Module B Tokens be2521/Custom_Tile 724707.yaml' +- !include 'Bag Module B Tokens be2521/Custom_Tile bca554.yaml' +- !include 'Bag Module B Tokens be2521/Deck Kidnappers 8651d7.yaml' +Description: Of Sphinx and Sands +GMNotes: '' +GUID: be2521 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +MeshIndex: -1 +Name: Bag +Nickname: Module B Tokens +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -11.268899 + posY: 1.41478312 + posZ: 8.842495 + rotX: 359.983124 + rotY: -0.002806177 + rotZ: 359.920044 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 2 Chaos in Cairo 6e0236/Bag Module B Tokens be2521/Custom_Tile 045c19.yaml new file mode 100644 index 000000000..9624c01d0 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 2 Chaos in Cairo 6e0236/Bag Module B Tokens be2521/Custom_Tile 045c19.yaml @@ -0,0 +1,42 @@ +Autoraise: true +ColorDiffuse: + b: 0.0 + g: 0.0 + r: 0.0 +CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.2 + Type: 3 + ImageScalar: 1.0 + ImageSecondaryURL: https://i.imgur.com/QzYq4k8.jpg + ImageURL: https://i.imgur.com/yDUdlkP.jpg + WidthScale: 0.0 +Description: '' +GMNotes: '' +GUID: 045c19 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Tile +Nickname: '' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -20.02609 + posY: 3.390265 + posZ: -85.99343 + rotX: 5.815829 + rotY: 275.9436 + rotZ: 3.32774687 + scaleX: 0.7 + scaleY: 1.0 + scaleZ: 0.7 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 2 Chaos in Cairo 6e0236/Bag Module B Tokens be2521/Custom_Tile 04fba0.yaml new file mode 100644 index 000000000..a1fb68f72 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 2 Chaos in Cairo 6e0236/Bag Module B Tokens be2521/Custom_Tile 04fba0.yaml @@ -0,0 +1,42 @@ +Autoraise: true +ColorDiffuse: + b: 0.0 + g: 0.0 + r: 0.0 +CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.2 + Type: 3 + ImageScalar: 1.0 + ImageSecondaryURL: https://i.imgur.com/QzYq4k8.jpg + ImageURL: https://i.imgur.com/yDUdlkP.jpg + WidthScale: 0.0 +Description: '' +GMNotes: '' +GUID: 04fba0 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Tile +Nickname: '' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -18.70299 + posY: 3.16465282 + posZ: -87.24269 + rotX: 359.167358 + rotY: 280.291748 + rotZ: 359.274719 + scaleX: 0.7 + scaleY: 1.0 + scaleZ: 0.7 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 2 Chaos in Cairo 6e0236/Bag Module B Tokens be2521/Custom_Tile 1c4564.yaml new file mode 100644 index 000000000..a7716f0be --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 2 Chaos in Cairo 6e0236/Bag Module B Tokens be2521/Custom_Tile 1c4564.yaml @@ -0,0 +1,42 @@ +Autoraise: true +ColorDiffuse: + b: 0.0 + g: 0.0 + r: 0.0 +CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.2 + Type: 3 + ImageScalar: 1.0 + ImageSecondaryURL: https://i.imgur.com/QzYq4k8.jpg + ImageURL: https://i.imgur.com/yDUdlkP.jpg + WidthScale: 0.0 +Description: '' +GMNotes: '' +GUID: 1c4564 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Tile +Nickname: '' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -15.7775974 + posY: 3.25805736 + posZ: -86.554985 + rotX: 1.33891463 + rotY: 269.860474 + rotZ: 359.092957 + scaleX: 0.7 + scaleY: 1.0 + scaleZ: 0.7 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 2 Chaos in Cairo 6e0236/Bag Module B Tokens be2521/Custom_Tile 2a2f1c.yaml new file mode 100644 index 000000000..41b14dd7f --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 2 Chaos in Cairo 6e0236/Bag Module B Tokens be2521/Custom_Tile 2a2f1c.yaml @@ -0,0 +1,42 @@ +Autoraise: true +ColorDiffuse: + b: 0.0 + g: 0.0 + r: 0.0 +CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.2 + Type: 3 + ImageScalar: 1.0 + ImageSecondaryURL: https://i.imgur.com/QzYq4k8.jpg + ImageURL: https://i.imgur.com/yDUdlkP.jpg + WidthScale: 0.0 +Description: '' +GMNotes: '' +GUID: 2a2f1c +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Tile +Nickname: '' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -18.5543442 + posY: 3.70800543 + posZ: -85.13288 + rotX: 0.3154522 + rotY: 77.4520645 + rotZ: 169.584076 + scaleX: 0.7 + scaleY: 1.0 + scaleZ: 0.7 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 2 Chaos in Cairo 6e0236/Bag Module B Tokens be2521/Custom_Tile 3304b3.yaml new file mode 100644 index 000000000..9bb30bb0f --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 2 Chaos in Cairo 6e0236/Bag Module B Tokens be2521/Custom_Tile 3304b3.yaml @@ -0,0 +1,42 @@ +Autoraise: true +ColorDiffuse: + b: 0.0 + g: 0.0 + r: 0.0 +CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.2 + Type: 3 + ImageScalar: 1.0 + ImageSecondaryURL: https://i.imgur.com/QzYq4k8.jpg + ImageURL: https://i.imgur.com/yDUdlkP.jpg + WidthScale: 0.0 +Description: '' +GMNotes: '' +GUID: 3304b3 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Tile +Nickname: '' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -16.922987 + posY: 3.337709 + posZ: -84.42291 + rotX: 6.457207 + rotY: 229.753723 + rotZ: 8.373111 + scaleX: 0.7 + scaleY: 1.0 + scaleZ: 0.7 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 2 Chaos in Cairo 6e0236/Bag Module B Tokens be2521/Custom_Tile 4b16be.yaml new file mode 100644 index 000000000..f2df33492 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 2 Chaos in Cairo 6e0236/Bag Module B Tokens be2521/Custom_Tile 4b16be.yaml @@ -0,0 +1,42 @@ +Autoraise: true +ColorDiffuse: + b: 0.0 + g: 0.0 + r: 0.0 +CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.2 + Type: 3 + ImageScalar: 1.0 + ImageSecondaryURL: https://i.imgur.com/QzYq4k8.jpg + ImageURL: https://i.imgur.com/yDUdlkP.jpg + WidthScale: 0.0 +Description: '' +GMNotes: '' +GUID: 4b16be +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Tile +Nickname: '' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -20.7103672 + posY: 3.26415062 + posZ: -84.2033539 + rotX: 0.012353098 + rotY: 315.00824 + rotZ: 0.0237052422 + scaleX: 0.7 + scaleY: 1.0 + scaleZ: 0.7 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 2 Chaos in Cairo 6e0236/Bag Module B Tokens be2521/Custom_Tile 724707.yaml new file mode 100644 index 000000000..5f928e8dc --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 2 Chaos in Cairo 6e0236/Bag Module B Tokens be2521/Custom_Tile 724707.yaml @@ -0,0 +1,42 @@ +Autoraise: true +ColorDiffuse: + b: 0.0 + g: 0.0 + r: 0.0 +CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.2 + Type: 3 + ImageScalar: 1.0 + ImageSecondaryURL: https://i.imgur.com/QzYq4k8.jpg + ImageURL: https://i.imgur.com/yDUdlkP.jpg + WidthScale: 0.0 +Description: '' +GMNotes: '' +GUID: '724707' +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Tile +Nickname: '' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -18.17228 + posY: 3.43060446 + posZ: -88.00058 + rotX: 351.142242 + rotY: 352.527954 + rotZ: 356.159882 + scaleX: 0.7 + scaleY: 1.0 + scaleZ: 0.7 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 2 Chaos in Cairo 6e0236/Bag Module B Tokens be2521/Custom_Tile 8b12e0.yaml new file mode 100644 index 000000000..8b7018bde --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 2 Chaos in Cairo 6e0236/Bag Module B Tokens be2521/Custom_Tile 8b12e0.yaml @@ -0,0 +1,42 @@ +Autoraise: true +ColorDiffuse: + b: 0.0 + g: 0.0 + r: 0.0 +CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.2 + Type: 3 + ImageScalar: 1.0 + ImageSecondaryURL: https://i.imgur.com/QzYq4k8.jpg + ImageURL: https://i.imgur.com/kixB2qn.jpg + WidthScale: 0.0 +Description: '' +GMNotes: '' +GUID: 8b12e0 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Tile +Nickname: '' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -23.0562286 + posY: 2.12514567 + posZ: -91.34218 + rotX: 0.0208078288 + rotY: 269.998383 + rotZ: 0.0167772584 + scaleX: 0.7 + scaleY: 1.0 + scaleZ: 0.7 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 2 Chaos in Cairo 6e0236/Bag Module B Tokens be2521/Custom_Tile 8d38ae.yaml new file mode 100644 index 000000000..33d23488f --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 2 Chaos in Cairo 6e0236/Bag Module B Tokens be2521/Custom_Tile 8d38ae.yaml @@ -0,0 +1,42 @@ +Autoraise: true +ColorDiffuse: + b: 0.0 + g: 0.0 + r: 0.0 +CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.2 + Type: 3 + ImageScalar: 1.0 + ImageSecondaryURL: https://i.imgur.com/QzYq4k8.jpg + ImageURL: https://i.imgur.com/eYFvXjq.jpg + WidthScale: 0.0 +Description: '' +GMNotes: '' +GUID: 8d38ae +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Tile +Nickname: '' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -22.9467182 + posY: 2.12381959 + posZ: -96.00795 + rotX: 0.0208082981 + rotY: 269.998 + rotZ: 0.0167760029 + scaleX: 0.7 + scaleY: 1.0 + scaleZ: 0.7 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 2 Chaos in Cairo 6e0236/Bag Module B Tokens be2521/Custom_Tile 8e672b.yaml new file mode 100644 index 000000000..2e8568cbe --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 2 Chaos in Cairo 6e0236/Bag Module B Tokens be2521/Custom_Tile 8e672b.yaml @@ -0,0 +1,42 @@ +Autoraise: true +ColorDiffuse: + b: 0.0 + g: 0.0 + r: 0.0 +CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.2 + Type: 3 + ImageScalar: 1.0 + ImageSecondaryURL: https://i.imgur.com/QzYq4k8.jpg + ImageURL: https://i.imgur.com/yDUdlkP.jpg + WidthScale: 0.0 +Description: '' +GMNotes: '' +GUID: 8e672b +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Tile +Nickname: '' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -18.8636513 + posY: 3.233845 + posZ: -85.3630447 + rotX: 359.065 + rotY: 259.055817 + rotZ: 7.03649235 + scaleX: 0.7 + scaleY: 1.0 + scaleZ: 0.7 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 2 Chaos in Cairo 6e0236/Bag Module B Tokens be2521/Custom_Tile 90df18.yaml new file mode 100644 index 000000000..5ba5945b2 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 2 Chaos in Cairo 6e0236/Bag Module B Tokens be2521/Custom_Tile 90df18.yaml @@ -0,0 +1,42 @@ +Autoraise: true +ColorDiffuse: + b: 0.0 + g: 0.0 + r: 0.0 +CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.2 + Type: 3 + ImageScalar: 1.0 + ImageSecondaryURL: https://i.imgur.com/QzYq4k8.jpg + ImageURL: https://i.imgur.com/Wi3LFQ8.jpg + WidthScale: 0.0 +Description: '' +GMNotes: '' +GUID: 90df18 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Tile +Nickname: '' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -25.4284344 + posY: 2.12290215 + posZ: -96.0624542 + rotX: 0.02080709 + rotY: 269.9974 + rotZ: 0.0167755727 + scaleX: 0.7 + scaleY: 1.0 + scaleZ: 0.7 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 2 Chaos in Cairo 6e0236/Bag Module B Tokens be2521/Custom_Tile 941a94.yaml new file mode 100644 index 000000000..080d76fab --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 2 Chaos in Cairo 6e0236/Bag Module B Tokens be2521/Custom_Tile 941a94.yaml @@ -0,0 +1,42 @@ +Autoraise: true +ColorDiffuse: + b: 0.0 + g: 0.0 + r: 0.0 +CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.2 + Type: 3 + ImageScalar: 1.0 + ImageSecondaryURL: https://i.imgur.com/QzYq4k8.jpg + ImageURL: https://i.imgur.com/yDUdlkP.jpg + WidthScale: 0.0 +Description: '' +GMNotes: '' +GUID: 941a94 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Tile +Nickname: '' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -17.7933483 + posY: 3.05261827 + posZ: -83.8639145 + rotX: 6.205197 + rotY: 311.754425 + rotZ: 5.53737259 + scaleX: 0.7 + scaleY: 1.0 + scaleZ: 0.7 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 2 Chaos in Cairo 6e0236/Bag Module B Tokens be2521/Custom_Tile a79177.yaml new file mode 100644 index 000000000..91ed2fd70 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 2 Chaos in Cairo 6e0236/Bag Module B Tokens be2521/Custom_Tile a79177.yaml @@ -0,0 +1,42 @@ +Autoraise: true +ColorDiffuse: + b: 0.0 + g: 0.0 + r: 0.0 +CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.2 + Type: 3 + ImageScalar: 1.0 + ImageSecondaryURL: https://i.imgur.com/QzYq4k8.jpg + ImageURL: https://i.imgur.com/yDUdlkP.jpg + WidthScale: 0.0 +Description: '' +GMNotes: '' +GUID: a79177 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Tile +Nickname: '' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -18.17241 + posY: 3.67874551 + posZ: -86.97681 + rotX: 10.7072706 + rotY: 316.424469 + rotZ: 351.100342 + scaleX: 0.7 + scaleY: 1.0 + scaleZ: 0.7 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 2 Chaos in Cairo 6e0236/Bag Module B Tokens be2521/Custom_Tile bca554.yaml new file mode 100644 index 000000000..d5048bbec --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 2 Chaos in Cairo 6e0236/Bag Module B Tokens be2521/Custom_Tile bca554.yaml @@ -0,0 +1,42 @@ +Autoraise: true +ColorDiffuse: + b: 0.0 + g: 0.0 + r: 0.0 +CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.2 + Type: 3 + ImageScalar: 1.0 + ImageSecondaryURL: https://i.imgur.com/QzYq4k8.jpg + ImageURL: https://i.imgur.com/yDUdlkP.jpg + WidthScale: 0.0 +Description: '' +GMNotes: '' +GUID: bca554 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Tile +Nickname: '' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -16.6066017 + posY: 3.65552258 + posZ: -85.63639 + rotX: 359.308868 + rotY: 90.03134 + rotZ: 179.096878 + scaleX: 0.7 + scaleY: 1.0 + scaleZ: 0.7 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 2 Chaos in Cairo 6e0236/Bag Module B Tokens be2521/Custom_Tile c52136.yaml new file mode 100644 index 000000000..662c0b42f --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 2 Chaos in Cairo 6e0236/Bag Module B Tokens be2521/Custom_Tile c52136.yaml @@ -0,0 +1,42 @@ +Autoraise: true +ColorDiffuse: + b: 0.0 + g: 0.0 + r: 0.0 +CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.2 + Type: 3 + ImageScalar: 1.0 + ImageSecondaryURL: https://i.imgur.com/QzYq4k8.jpg + ImageURL: https://i.imgur.com/IoWS4JN.jpg + WidthScale: 0.0 +Description: '' +GMNotes: '' +GUID: c52136 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Tile +Nickname: '' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -25.52106 + posY: 2.12427258 + posZ: -91.26531 + rotX: 0.0208087023 + rotY: 269.998718 + rotZ: 0.01677874 + scaleX: 0.7 + scaleY: 1.0 + scaleZ: 0.7 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 2 Chaos in Cairo 6e0236/Bag Module B Tokens be2521/Custom_Tile cd18ab.yaml new file mode 100644 index 000000000..7b04c9a1e --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 2 Chaos in Cairo 6e0236/Bag Module B Tokens be2521/Custom_Tile cd18ab.yaml @@ -0,0 +1,42 @@ +Autoraise: true +ColorDiffuse: + b: 0.0 + g: 0.0 + r: 0.0 +CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.2 + Type: 3 + ImageScalar: 1.0 + ImageSecondaryURL: https://i.imgur.com/QzYq4k8.jpg + ImageURL: https://i.imgur.com/eDazOAv.jpg + WidthScale: 0.0 +Description: '' +GMNotes: '' +GUID: cd18ab +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Tile +Nickname: '' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -22.8988419 + posY: 2.12451053 + posZ: -93.70635 + rotX: 0.02080792 + rotY: 269.9987 + rotZ: 0.0167773142 + scaleX: 0.7 + scaleY: 1.0 + scaleZ: 0.7 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 2 Chaos in Cairo 6e0236/Bag Module B Tokens be2521/Custom_Tile dbf6b2.yaml new file mode 100644 index 000000000..0ca2bdda7 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 2 Chaos in Cairo 6e0236/Bag Module B Tokens be2521/Custom_Tile dbf6b2.yaml @@ -0,0 +1,42 @@ +Autoraise: true +ColorDiffuse: + b: 0.0 + g: 0.0 + r: 0.0 +CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.2 + Type: 3 + ImageScalar: 1.0 + ImageSecondaryURL: https://i.imgur.com/QzYq4k8.jpg + ImageURL: https://i.imgur.com/yDUdlkP.jpg + WidthScale: 0.0 +Description: '' +GMNotes: '' +GUID: dbf6b2 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Tile +Nickname: '' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -18.6658649 + posY: 3.34830618 + posZ: -83.78776 + rotX: 354.828979 + rotY: 273.5467 + rotZ: 2.64747071 + scaleX: 0.7 + scaleY: 1.0 + scaleZ: 0.7 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 2 Chaos in Cairo 6e0236/Bag Module B Tokens be2521/Custom_Tile e02457.yaml new file mode 100644 index 000000000..3a0491c1c --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 2 Chaos in Cairo 6e0236/Bag Module B Tokens be2521/Custom_Tile e02457.yaml @@ -0,0 +1,42 @@ +Autoraise: true +ColorDiffuse: + b: 0.0 + g: 0.0 + r: 0.0 +CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.2 + Type: 3 + ImageScalar: 1.0 + ImageSecondaryURL: https://i.imgur.com/QzYq4k8.jpg + ImageURL: https://i.imgur.com/eH20dYw.jpg + WidthScale: 0.0 +Description: '' +GMNotes: '' +GUID: e02457 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Tile +Nickname: '' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -25.5797462 + posY: 2.12350631 + posZ: -93.81146 + rotX: 0.0208078157 + rotY: 269.9983 + rotZ: 0.0167791042 + scaleX: 0.7 + scaleY: 1.0 + scaleZ: 0.7 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 2 Chaos in Cairo 6e0236/Bag Module B Tokens be2521/Custom_Tile e78f19.yaml new file mode 100644 index 000000000..55f09ea9f --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 2 Chaos in Cairo 6e0236/Bag Module B Tokens be2521/Custom_Tile e78f19.yaml @@ -0,0 +1,42 @@ +Autoraise: true +ColorDiffuse: + b: 0.0 + g: 0.0 + r: 0.0 +CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.2 + Type: 3 + ImageScalar: 1.0 + ImageSecondaryURL: https://i.imgur.com/QzYq4k8.jpg + ImageURL: https://i.imgur.com/yDUdlkP.jpg + WidthScale: 0.0 +Description: '' +GMNotes: '' +GUID: e78f19 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Tile +Nickname: '' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -14.7574806 + posY: 3.295292 + posZ: -84.96134 + rotX: 3.87445 + rotY: 315.166016 + rotZ: 4.69578075 + scaleX: 0.7 + scaleY: 1.0 + scaleZ: 0.7 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 2 Chaos in Cairo 6e0236/Bag Module B Tokens be2521/Custom_Tile f149bb.yaml new file mode 100644 index 000000000..5d4c558b1 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 2 Chaos in Cairo 6e0236/Bag Module B Tokens be2521/Custom_Tile f149bb.yaml @@ -0,0 +1,42 @@ +Autoraise: true +ColorDiffuse: + b: 0.0 + g: 0.0 + r: 0.0 +CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.2 + Type: 3 + ImageScalar: 1.0 + ImageSecondaryURL: https://i.imgur.com/QzYq4k8.jpg + ImageURL: https://i.imgur.com/yDUdlkP.jpg + WidthScale: 0.0 +Description: '' +GMNotes: '' +GUID: f149bb +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Tile +Nickname: '' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -17.0587311 + posY: 3.898142 + posZ: -85.55007 + rotX: 359.8193 + rotY: 44.6647339 + rotZ: 180.062271 + scaleX: 0.7 + scaleY: 1.0 + scaleZ: 0.7 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 2 Chaos in Cairo 6e0236/Bag Module B Tokens be2521/Custom_Tile fa5356.yaml new file mode 100644 index 000000000..0270b84db --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 2 Chaos in Cairo 6e0236/Bag Module B Tokens be2521/Custom_Tile fa5356.yaml @@ -0,0 +1,42 @@ +Autoraise: true +ColorDiffuse: + b: 0.0 + g: 0.0 + r: 0.0 +CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.2 + Type: 3 + ImageScalar: 1.0 + ImageSecondaryURL: https://i.imgur.com/QzYq4k8.jpg + ImageURL: https://i.imgur.com/yDUdlkP.jpg + WidthScale: 0.0 +Description: '' +GMNotes: '' +GUID: fa5356 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Tile +Nickname: '' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -19.6694336 + posY: 3.947674 + posZ: -85.52757 + rotX: 351.336365 + rotY: 87.64139 + rotZ: 172.39566 + scaleX: 0.7 + scaleY: 1.0 + scaleZ: 0.7 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 2 Chaos in Cairo 6e0236/Bag Module B Tokens be2521/Deck Kidnappers 8651d7.yaml new file mode 100644 index 000000000..a77448cee --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 2 Chaos in Cairo 6e0236/Bag Module B Tokens be2521/Deck Kidnappers 8651d7.yaml @@ -0,0 +1,301 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 262603 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2626': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg + FaceURL: https://i.imgur.com/yPQiViH.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 97ae52 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -23.8504066 + posY: 1.57173288 + posZ: -42.71234 + rotX: 0.006747226 + rotY: 269.9995 + rotZ: 0.09872339 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 262601 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2626': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg + FaceURL: https://i.imgur.com/yPQiViH.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 72ed0e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -23.7842255 + posY: 1.711222 + posZ: -42.8476563 + rotX: -0.004676445 + rotY: 270.022156 + rotZ: 0.1764173 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 262602 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2626': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg + FaceURL: https://i.imgur.com/yPQiViH.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 1cc5ad + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -23.7822952 + posY: 1.727273 + posZ: -42.9825935 + rotX: 0.00148532609 + rotY: 270.032227 + rotZ: 0.773686349 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 262600 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2626': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg + FaceURL: https://i.imgur.com/yPQiViH.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 3a0a6a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -23.6007061 + posY: 1.71572471 + posZ: -42.7454224 + rotX: 0.0100841038 + rotY: 270.01944 + rotZ: 0.0190817341 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 262604 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2626': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg + FaceURL: https://i.imgur.com/yPQiViH.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 6a8729 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -23.5857 + posY: 1.71373034 + posZ: -42.7417641 + rotX: 0.009664225 + rotY: 270.0196 + rotZ: 0.0186313689 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 262605 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2626': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg + FaceURL: https://i.imgur.com/yPQiViH.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: fae581 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -23.8171616 + posY: 1.71625173 + posZ: -42.8251038 + rotX: 0.00116235611 + rotY: 270.021423 + rotZ: 0.058925163 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2626': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg + FaceURL: https://i.imgur.com/yPQiViH.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 262603 +- 262601 +- 262602 +- 262600 +- 262604 +- 262605 +Description: '' +GMNotes: '' +GUID: 8651d7 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Kidnappers +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -13.7374239 + posY: 3.40212154 + posZ: -78.46618 + rotX: 357.0735 + rotY: 270.01886 + rotZ: 359.441956 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 2 Chaos in Cairo 6e0236/Card Egyptian Museum 6695ea.yaml new file mode 100644 index 000000000..cb1e9aec0 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 2 Chaos in Cairo 6e0236/Card Egyptian Museum 6695ea.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 262415 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2624': + BackIsHidden: true + BackURL: https://i.imgur.com/cNTcEuZ.jpg + FaceURL: https://i.imgur.com/gNk7DY9.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Downtown Cairo +GMNotes: '' +GUID: 6695ea +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Egyptian Museum +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -17.1200275 + posY: 1.67707777 + posZ: -0.0299947374 + rotX: 359.9201 + rotY: 269.966461 + rotZ: 0.0169237424 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 2 Chaos in Cairo 6e0236/Card Scenario e68cf1.yaml new file mode 100644 index 000000000..774f77ddf --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 2 Chaos in Cairo 6e0236/Card Scenario e68cf1.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 262408 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2624': + BackIsHidden: true + BackURL: https://i.imgur.com/cNTcEuZ.jpg + FaceURL: https://i.imgur.com/gNk7DY9.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: e68cf1 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Scenario +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -50.9243851 + posY: 1.72662532 + posZ: 8.17843151 + rotX: 359.920074 + rotY: 270.0947 + rotZ: 0.0167464111 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 2 Chaos in Cairo 6e0236/Card Scenario feafd1.yaml new file mode 100644 index 000000000..29d71c046 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 2 Chaos in Cairo 6e0236/Card Scenario feafd1.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 262408 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2624': + BackIsHidden: true + BackURL: https://i.imgur.com/cNTcEuZ.jpg + FaceURL: https://i.imgur.com/gNk7DY9.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: feafd1 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Scenario +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.95045257 + posY: 1.65564275 + posZ: -10.4329929 + rotX: 359.9197 + rotY: 270.0947 + rotZ: 0.0167086367 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 2 Chaos in Cairo 6e0236/Custom_Model_Bag Set-aside a45247.yaml new file mode 100644 index 000000000..312f5df68 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 2 Chaos in Cairo 6e0236/Custom_Model_Bag Set-aside a45247.yaml @@ -0,0 +1,63 @@ +Autoraise: true +ColorDiffuse: + b: 0.02148666 + g: 0.00100758043 + r: 0.02148666 +ContainedObjects: +- !include 'Custom_Model_Bag Set-aside a45247/Card Abdul Reis b6d601.yaml' +- !include 'Custom_Model_Bag Set-aside a45247/Card Ali Ziz cdcb0a.yaml' +- !include 'Custom_Model_Bag Set-aside a45247/Card The Eye of Horus 53fbaa.yaml' +- !include 'Custom_Model_Bag Set-aside a45247/Deck Assets 34905f.yaml' +- !include 'Custom_Model_Bag Set-aside a45247/Deck Enemies 3b4b54.yaml' +- !include 'Custom_Model_Bag Set-aside a45247/Deck Treacheries e65175.yaml' +- !include 'Custom_Model_Bag Set-aside a45247/Custom_Tile Map of Cairo d04e11.yaml' +- !include 'Custom_Model_Bag Set-aside a45247/Deck Locations 436ffa.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: Of Sphinx and Sands +GMNotes: '' +GUID: a45247 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +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.69443274 + posY: 1.55832016 + posZ: 14.2805338 + rotX: 359.955048 + rotY: 225.0656 + rotZ: 0.06861761 + scaleX: 2.0 + scaleY: 2.0 + scaleZ: 2.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/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 new file mode 100644 index 000000000..b82e7b0f7 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/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 @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 262734 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2627': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg + FaceURL: https://i.imgur.com/yPQiViH.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: Cairo Guide +GMNotes: '' +GUID: b6d601 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Abdul Reis +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -13.55125 + posY: 3.42256331 + posZ: -69.48636 + rotX: 0.0180248413 + rotY: 269.983063 + rotZ: -0.0004177496 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/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 new file mode 100644 index 000000000..0532e4258 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/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 @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 262733 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2627': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg + FaceURL: https://i.imgur.com/yPQiViH.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: Cairo Police +GMNotes: '' +GUID: cdcb0a +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Ali Ziz +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -13.6748323 + posY: 3.42174172 + posZ: -72.3304443 + rotX: 0.0212745145 + rotY: 269.977 + rotZ: 0.0170770064 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/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 new file mode 100644 index 000000000..1dc287fe9 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/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 @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 262742 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2627': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg + FaceURL: https://i.imgur.com/yPQiViH.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 53fbaa +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: The Eye of Horus +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -14.4221287 + posY: 3.42191172 + posZ: -70.439 + rotX: 0.0205916669 + rotY: 270.002258 + rotZ: 0.0169363152 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/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 new file mode 100644 index 000000000..5c563681b --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/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 @@ -0,0 +1,42 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.2 + Type: 0 + ImageScalar: 1.0 + ImageSecondaryURL: https://i.imgur.com/E1YQbyi.jpg + ImageURL: https://i.imgur.com/E1YQbyi.jpg + WidthScale: 0.0 +Description: For reference only +GMNotes: '' +GUID: d04e11 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Tile +Nickname: Map of Cairo +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -12.628211 + posY: 3.34301567 + posZ: -71.65138 + rotX: 359.68396 + rotY: 269.987183 + rotZ: 359.984772 + scaleX: 4.0 + scaleY: 1.0 + scaleZ: 4.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 2 Chaos in Cairo 6e0236/Custom_Model_Bag Set-aside a45247/Deck Assets 34905f.yaml new file mode 100644 index 000000000..7f17c9e4b --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 2 Chaos in Cairo 6e0236/Custom_Model_Bag Set-aside a45247/Deck Assets 34905f.yaml @@ -0,0 +1,387 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 262741 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2627': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg + FaceURL: https://i.imgur.com/yPQiViH.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 23cb5c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -22.4883366 + posY: 1.37261355 + posZ: -56.97024 + rotX: 0.0156759638 + rotY: 269.9374 + rotZ: 0.0148940794 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 262736 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2627': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg + FaceURL: https://i.imgur.com/yPQiViH.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: d5ba9f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -22.6073017 + posY: 1.51271009 + posZ: -57.0593262 + rotX: 0.02330084 + rotY: 270.0041 + rotZ: 0.0118214963 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 262739 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2627': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg + FaceURL: https://i.imgur.com/yPQiViH.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 17d3f3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -22.25878 + posY: 1.37055826 + posZ: -64.63846 + rotX: 0.0208077841 + rotY: 270.0043 + rotZ: 0.0167744122 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 262737 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2627': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg + FaceURL: https://i.imgur.com/yPQiViH.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: '932972' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -22.2691555 + posY: 1.372105 + posZ: -59.34112 + rotX: 0.0208066832 + rotY: 270.00412 + rotZ: 0.0167761855 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 262740 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2627': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg + FaceURL: https://i.imgur.com/yPQiViH.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 17aac8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -22.31541 + posY: 1.369805 + posZ: -67.1412354 + rotX: 0.0208066981 + rotY: 270.004028 + rotZ: 0.0167751219 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 262738 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2627': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg + FaceURL: https://i.imgur.com/yPQiViH.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 09db9e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -22.3458462 + posY: 1.37125206 + posZ: -62.1602631 + rotX: 0.0208067149 + rotY: 270.004 + rotZ: 0.01677668 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 262732 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2627': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg + FaceURL: https://i.imgur.com/yPQiViH.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: bc3437 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -22.89524 + posY: 1.52226341 + posZ: -57.23139 + rotX: 0.0165899917 + rotY: 269.985229 + rotZ: 0.0139083648 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 262735 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2627': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg + FaceURL: https://i.imgur.com/yPQiViH.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: b6d601 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -22.6570377 + posY: 1.52886581 + posZ: -56.83216 + rotX: 0.01380544 + rotY: 270.049377 + rotZ: 359.975281 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2627': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg + FaceURL: https://i.imgur.com/yPQiViH.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 262741 +- 262736 +- 262739 +- 262737 +- 262740 +- 262738 +- 262732 +- 262735 +Description: '' +GMNotes: '' +GUID: 34905f +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Assets +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -14.3223114 + posY: 3.403421 + posZ: -71.44656 + rotX: 0.02103177 + rotY: 269.991516 + rotZ: 0.0168982446 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 2 Chaos in Cairo 6e0236/Custom_Model_Bag Set-aside a45247/Deck Enemies 3b4b54.yaml new file mode 100644 index 000000000..e04d199c4 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 2 Chaos in Cairo 6e0236/Custom_Model_Bag Set-aside a45247/Deck Enemies 3b4b54.yaml @@ -0,0 +1,344 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 262611 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2626': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg + FaceURL: https://i.imgur.com/yPQiViH.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 5143f8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -33.1581573 + posY: 1.37083149 + posZ: -50.18204 + rotX: 0.0208034944 + rotY: 270.0171 + rotZ: 0.016778443 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 262610 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2626': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg + FaceURL: https://i.imgur.com/yPQiViH.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: f16cc5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -32.91098 + posY: 1.36995685 + posZ: -53.4760551 + rotX: 0.0208005346 + rotY: 270.018524 + rotZ: 0.01678283 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 262608 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2626': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg + FaceURL: https://i.imgur.com/yPQiViH.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 219cb2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -29.5557728 + posY: 1.3725009 + posZ: -48.9480057 + rotX: 0.02080194 + rotY: 270.019348 + rotZ: 0.016781006 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 262606 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2626': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg + FaceURL: https://i.imgur.com/yPQiViH.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 17bd2c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -29.8658981 + posY: 1.37315452 + posZ: -46.3304672 + rotX: 0.0208006315 + rotY: 270.0194 + rotZ: 0.01677766 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 262609 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2626': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg + FaceURL: https://i.imgur.com/yPQiViH.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: '979768' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -29.3141174 + posY: 1.371819 + posZ: -51.5775261 + rotX: 0.0208023675 + rotY: 270.019348 + rotZ: 0.0167802181 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 262607 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2626': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg + FaceURL: https://i.imgur.com/yPQiViH.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: eac36a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -25.9486313 + posY: 1.37459934 + posZ: -46.2548752 + rotX: 0.0208021924 + rotY: 270.019348 + rotZ: 0.0167796761 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 262612 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2626': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg + FaceURL: https://i.imgur.com/yPQiViH.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 84afda + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -29.2485485 + posY: 1.51503348 + posZ: -49.0126152 + rotX: -0.00385309383 + rotY: 269.8871 + rotZ: 0.0601371154 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2626': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg + FaceURL: https://i.imgur.com/yPQiViH.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 262611 +- 262610 +- 262608 +- 262606 +- 262609 +- 262607 +- 262612 +Description: '' +GMNotes: '' +GUID: 3b4b54 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Enemies +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -14.6685686 + posY: 3.425227 + posZ: -70.8652344 + rotX: 0.02107356 + rotY: 270.0294 + rotZ: 0.0167274028 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 2 Chaos in Cairo 6e0236/Custom_Model_Bag Set-aside a45247/Deck Locations 436ffa.yaml new file mode 100644 index 000000000..c5f5c9d6a --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 2 Chaos in Cairo 6e0236/Custom_Model_Bag Set-aside a45247/Deck Locations 436ffa.yaml @@ -0,0 +1,602 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 262420 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2624': + BackIsHidden: true + BackURL: https://i.imgur.com/cNTcEuZ.jpg + FaceURL: https://i.imgur.com/gNk7DY9.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Southeastern Cairo + GMNotes: '' + GUID: 857f8e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: El'Arafa Shack + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -28.3259125 + posY: 1.36164 + posZ: -85.97293 + rotX: -0.00202054484 + rotY: 269.9994 + rotZ: 0.008880173 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 262424 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2624': + BackIsHidden: true + BackURL: https://i.imgur.com/cNTcEuZ.jpg + FaceURL: https://i.imgur.com/gNk7DY9.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Southeastern Cairo + GMNotes: '' + GUID: 6bab9d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: El Arafa - City of the Dead + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -28.6224155 + posY: 1.36100888 + posZ: -89.36645 + rotX: 0.0208074879 + rotY: 269.999969 + rotZ: 0.0167745631 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 262426 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2624': + BackIsHidden: true + BackURL: https://i.imgur.com/cNTcEuZ.jpg + FaceURL: https://i.imgur.com/gNk7DY9.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Southeastern Cairo + GMNotes: '' + GUID: 9d68d4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: El Arafa - Residences + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -28.80335 + posY: 1.36172533 + posZ: -86.694664 + rotX: 0.0208089761 + rotY: 269.999969 + rotZ: 0.01677178 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 262425 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2624': + BackIsHidden: true + BackURL: https://i.imgur.com/cNTcEuZ.jpg + FaceURL: https://i.imgur.com/gNk7DY9.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Southeastern Cairo + GMNotes: '' + GUID: b9e143 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: El'Arafa + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -28.6800766 + posY: 1.51881468 + posZ: -89.39484 + rotX: 0.018951362 + rotY: 269.92688 + rotZ: 0.06751359 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 262427 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2624': + BackIsHidden: true + BackURL: https://i.imgur.com/cNTcEuZ.jpg + FaceURL: https://i.imgur.com/gNk7DY9.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Southeastern Cairo + GMNotes: '' + GUID: e41a05 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: El Arafa - Intersection + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -28.7991276 + posY: 1.50505149 + posZ: -88.90585 + rotX: 0.0184842832 + rotY: 270.077728 + rotZ: 359.955048 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 262421 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2624': + BackIsHidden: true + BackURL: https://i.imgur.com/cNTcEuZ.jpg + FaceURL: https://i.imgur.com/gNk7DY9.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Southeastern Cairo + GMNotes: '' + GUID: d3cae2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: El'Arafa Entrance + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -28.500452 + posY: 1.50317752 + posZ: -89.3679352 + rotX: 0.0195134562 + rotY: 269.999359 + rotZ: 0.0163162723 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 262414 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2624': + BackIsHidden: true + BackURL: https://i.imgur.com/cNTcEuZ.jpg + FaceURL: https://i.imgur.com/gNk7DY9.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Islamic District + GMNotes: '' + GUID: b9662b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Al-Muizz Street + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -25.0981483 + posY: 1.5178802 + posZ: -79.42355 + rotX: 0.0110175 + rotY: 269.999969 + rotZ: 180.010345 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 262416 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2624': + BackIsHidden: true + BackURL: https://i.imgur.com/cNTcEuZ.jpg + FaceURL: https://i.imgur.com/gNk7DY9.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Islamic District + GMNotes: '' + GUID: e7c1fc + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Khan El-Khalili + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -28.9642429 + posY: 1.36407554 + posZ: -78.09371 + rotX: 0.0155407451 + rotY: 269.999939 + rotZ: 0.0149561 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 262419 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2624': + BackIsHidden: true + BackURL: https://i.imgur.com/cNTcEuZ.jpg + FaceURL: https://i.imgur.com/gNk7DY9.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Central Cairo + GMNotes: '' + GUID: e7f02e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Qala'at Salah ad-Din + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -29.12469 + posY: 1.50416672 + posZ: -78.2131 + rotX: 0.0232799742 + rotY: 270.000122 + rotZ: 0.0136533417 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 262417 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2624': + BackIsHidden: true + BackURL: https://i.imgur.com/cNTcEuZ.jpg + FaceURL: https://i.imgur.com/gNk7DY9.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Old Market District + GMNotes: '' + GUID: be9bef + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Naguib Mahfouz Cafe + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -19.599884 + posY: 1.36831665 + posZ: -85.12841 + rotX: 0.01928162 + rotY: 270.000031 + rotZ: 180.017258 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 262422 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2624': + BackIsHidden: true + BackURL: https://i.imgur.com/cNTcEuZ.jpg + FaceURL: https://i.imgur.com/gNk7DY9.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Islamic District + GMNotes: '' + GUID: b53e15 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Al-Azhar Park + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -24.6035786 + posY: 1.36519682 + posZ: -79.96367 + rotX: 0.0196106154 + rotY: 269.999725 + rotZ: 0.01631303 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 262418 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2624': + BackIsHidden: true + BackURL: https://i.imgur.com/cNTcEuZ.jpg + FaceURL: https://i.imgur.com/gNk7DY9.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Central Cairo + GMNotes: '' + GUID: a5111b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Soor el-Azbakeya + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -24.6589127 + posY: 1.64861679 + posZ: -79.93319 + rotX: 0.007922283 + rotY: 270.000153 + rotZ: 180.022232 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 262423 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2624': + BackIsHidden: true + BackURL: https://i.imgur.com/cNTcEuZ.jpg + FaceURL: https://i.imgur.com/gNk7DY9.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Islamic District + GMNotes: '' + GUID: da584e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Al-Azhar Mosque + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -24.72541 + posY: 1.50880361 + posZ: -79.78566 + rotX: 0.0464715 + rotY: 270.000336 + rotZ: 180.041168 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2624': + BackIsHidden: true + BackURL: https://i.imgur.com/cNTcEuZ.jpg + FaceURL: https://i.imgur.com/gNk7DY9.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 262420 +- 262424 +- 262426 +- 262425 +- 262427 +- 262421 +- 262414 +- 262416 +- 262419 +- 262417 +- 262422 +- 262418 +- 262423 +Description: '' +GMNotes: '' +GUID: 436ffa +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Locations +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -14.3656206 + posY: 3.4422996 + posZ: -71.77358 + rotX: 0.0211067814 + rotY: 269.989868 + rotZ: 180.016815 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 2 Chaos in Cairo 6e0236/Custom_Model_Bag Set-aside a45247/Deck Treacheries e65175.yaml new file mode 100644 index 000000000..6d208fa26 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 2 Chaos in Cairo 6e0236/Custom_Model_Bag Set-aside a45247/Deck Treacheries e65175.yaml @@ -0,0 +1,695 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 262625 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2626': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg + FaceURL: https://i.imgur.com/yPQiViH.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: ef4ed0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -43.540638 + posY: 1.36419666 + posZ: -59.9231529 + rotX: 0.0201056935 + rotY: 270.019043 + rotZ: 0.01632992 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 262624 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2626': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg + FaceURL: https://i.imgur.com/yPQiViH.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: f6d25c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -43.14125 + posY: 1.50452721 + posZ: -60.1161957 + rotX: 0.006417457 + rotY: 270.0193 + rotZ: 0.0227315575 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 262619 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2626': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg + FaceURL: https://i.imgur.com/yPQiViH.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 87ee8e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -43.616745 + posY: 1.52200866 + posZ: -59.85487 + rotX: 0.0200000945 + rotY: 270.0191 + rotZ: 0.01586174 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 262618 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2626': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg + FaceURL: https://i.imgur.com/yPQiViH.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 6c35d0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -39.7692451 + posY: 1.365534 + posZ: -60.008316 + rotX: 0.0193052068 + rotY: 270.036865 + rotZ: 0.0157254562 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 262617 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2626': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg + FaceURL: https://i.imgur.com/yPQiViH.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: c507f4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -39.6100121 + posY: 1.50576353 + posZ: -59.62447 + rotX: 0.0037990876 + rotY: 270.02063 + rotZ: -0.00210147817 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 262631 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2626': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg + FaceURL: https://i.imgur.com/yPQiViH.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 2fca4f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -39.7622032 + posY: 1.36704767 + posZ: -55.0026436 + rotX: 0.01348615 + rotY: 270.005859 + rotZ: 0.0244093314 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 262630 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2626': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg + FaceURL: https://i.imgur.com/yPQiViH.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: bcac16 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -39.6514359 + posY: 1.50713265 + posZ: -54.7574348 + rotX: 0.00223851064 + rotY: 270.0095 + rotZ: 0.0138709676 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 262620 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2626': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg + FaceURL: https://i.imgur.com/yPQiViH.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: c7e06a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -36.22739 + posY: 1.36685514 + posZ: -59.9584045 + rotX: 0.0208031125 + rotY: 270.0191 + rotZ: 0.0167797171 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 262622 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2626': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg + FaceURL: https://i.imgur.com/yPQiViH.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: efec6c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -36.2762527 + posY: 1.366082 + posZ: -62.538887 + rotX: 0.020801425 + rotY: 270.01886 + rotZ: 0.01678096 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 262621 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2626': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg + FaceURL: https://i.imgur.com/yPQiViH.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: f6d853 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -36.3468361 + posY: 1.36534309 + posZ: -64.97562 + rotX: 0.0208022166 + rotY: 270.01886 + rotZ: 0.01677906 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3604 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Curse. + GMNotes: '' + GUID: a2d87b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Hunting Shadow + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -6.65147972 + posY: 1.37741363 + posZ: -60.5824242 + rotX: 0.0208084919 + rotY: 269.999573 + rotZ: 0.0167725775 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3604 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Curse. + GMNotes: '' + GUID: 96e1d7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Hunting Shadow + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -10.9109325 + posY: 1.375894 + posZ: -60.4892235 + rotX: 0.020805981 + rotY: 269.9996 + rotZ: 0.0167727023 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3604 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Curse. + GMNotes: '' + GUID: 82e5f4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Hunting Shadow + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -10.8867836 + posY: 1.37667322 + posZ: -57.857193 + rotX: 0.02080732 + rotY: 269.9996 + rotZ: 0.01677369 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3628 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Obstacle. + GMNotes: '' + GUID: 1340ff + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Locked Door + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -10.7146292 + posY: 1.37347353 + posZ: -68.64072 + rotX: 0.0157520641 + rotY: 269.9994 + rotZ: 0.0150289191 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3628 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Obstacle. + GMNotes: '' + GUID: 9449d7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Locked Door + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -10.6703625 + posY: 1.51353371 + posZ: -68.8009949 + rotX: 0.0213529915 + rotY: 269.999878 + rotZ: 0.03128457 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2626': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg + FaceURL: https://i.imgur.com/yPQiViH.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 262625 +- 262624 +- 262619 +- 262618 +- 262617 +- 262631 +- 262630 +- 262620 +- 262622 +- 262621 +- 3604 +- 3604 +- 3604 +- 3628 +- 3628 +Description: '' +GMNotes: '' +GUID: e65175 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Treacheries +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -14.4730024 + posY: 3.4337585 + posZ: -71.1619644 + rotX: 0.0211481843 + rotY: 270.026764 + rotZ: 0.0171888713 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 2 Chaos in Cairo 6e0236/Deck Act Deck e57331.yaml new file mode 100644 index 000000000..103cc7914 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 2 Chaos in Cairo 6e0236/Deck Act Deck e57331.yaml @@ -0,0 +1,215 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 262503 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2625': + BackIsHidden: true + BackURL: https://i.imgur.com/cNTcEuZ.jpg + FaceURL: https://i.imgur.com/gNk7DY9.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Of Sphinx and Sands 2 + GMNotes: '' + GUID: 4d0e79 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Act 4 + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -25.6120071 + posY: 1.368328 + posZ: -67.94599 + rotX: 0.0146302357 + rotY: 180.002289 + rotZ: 359.9763 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 262502 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2625': + BackIsHidden: true + BackURL: https://i.imgur.com/cNTcEuZ.jpg + FaceURL: https://i.imgur.com/gNk7DY9.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Of Sphinx and Sands 2 + GMNotes: '' + GUID: bb15d5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Act 3 + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -25.2627811 + posY: 1.50866759 + posZ: -67.83903 + rotX: 0.000970281544 + rotY: 180.006409 + rotZ: 359.985748 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 262501 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2625': + BackIsHidden: true + BackURL: https://i.imgur.com/cNTcEuZ.jpg + FaceURL: https://i.imgur.com/gNk7DY9.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Of Sphinx and Sands 2 + GMNotes: '' + GUID: 90447a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Act 2 + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -20.1186924 + posY: 1.37034535 + posZ: -67.86546 + rotX: 0.013739923 + rotY: 180.032211 + rotZ: 359.948181 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 262500 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2625': + BackIsHidden: true + BackURL: https://i.imgur.com/cNTcEuZ.jpg + FaceURL: https://i.imgur.com/gNk7DY9.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Of Sphinx and Sands 2 + GMNotes: '' + GUID: 3ec0d3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Act 1 + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -18.0794926 + posY: 1.51539958 + posZ: -67.11946 + rotX: 0.0153474081 + rotY: 180.000168 + rotZ: 359.973175 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2625': + BackIsHidden: true + BackURL: https://i.imgur.com/cNTcEuZ.jpg + FaceURL: https://i.imgur.com/gNk7DY9.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 262503 +- 262502 +- 262501 +- 262500 +Description: '' +GMNotes: '' +GUID: e57331 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Act Deck +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.68601322 + posY: 1.65348983 + posZ: -5.052496 + rotX: 0.0168269072 + rotY: 180.0057 + rotZ: 0.0802591741 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 2 Chaos in Cairo 6e0236/Deck Agenda Deck 1a9793.yaml new file mode 100644 index 000000000..7bfaa06d0 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 2 Chaos in Cairo 6e0236/Deck Agenda Deck 1a9793.yaml @@ -0,0 +1,215 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 262507 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2625': + BackIsHidden: true + BackURL: https://i.imgur.com/cNTcEuZ.jpg + FaceURL: https://i.imgur.com/gNk7DY9.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Of Sphinx and Sands 2 + GMNotes: '' + GUID: 026f94 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Agenda 4 + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -26.40525 + posY: 1.36929464 + posZ: -63.40447 + rotX: 0.01021502 + rotY: 180.002869 + rotZ: 359.973572 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 262506 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2625': + BackIsHidden: true + BackURL: https://i.imgur.com/cNTcEuZ.jpg + FaceURL: https://i.imgur.com/gNk7DY9.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Of Sphinx and Sands 2 + GMNotes: '' + GUID: 7720b4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Agenda 3 + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -23.3746 + posY: 1.37042 + posZ: -63.2398453 + rotX: 0.009686308 + rotY: 180.0043 + rotZ: 359.9727 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 262505 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2625': + BackIsHidden: true + BackURL: https://i.imgur.com/cNTcEuZ.jpg + FaceURL: https://i.imgur.com/gNk7DY9.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Of Sphinx and Sands 2 + GMNotes: '' + GUID: 3f7daa + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Agenda 2 + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -20.1596966 + posY: 1.37160921 + posZ: -63.4687042 + rotX: 0.0139153227 + rotY: 179.9997 + rotZ: 359.97818 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 262504 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2625': + BackIsHidden: true + BackURL: https://i.imgur.com/cNTcEuZ.jpg + FaceURL: https://i.imgur.com/gNk7DY9.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Of Sphinx and Sands 2 + GMNotes: '' + GUID: 25f89e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Agenda 1 + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -17.7528229 + posY: 1.51682782 + posZ: -63.0152664 + rotX: 0.0122860195 + rotY: 179.996246 + rotZ: 359.97226 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2625': + BackIsHidden: true + BackURL: https://i.imgur.com/cNTcEuZ.jpg + FaceURL: https://i.imgur.com/gNk7DY9.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 262507 +- 262506 +- 262505 +- 262504 +Description: '' +GMNotes: '' +GUID: 1a9793 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Agenda Deck +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.72465873 + posY: 1.65513837 + posZ: 0.3733159 + rotX: 0.016786078 + rotY: 180.0349 + rotZ: 0.08026769 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 2 Chaos in Cairo 6e0236/Deck Assassins 881cd5.yaml new file mode 100644 index 000000000..d05cec069 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 2 Chaos in Cairo 6e0236/Deck Assassins 881cd5.yaml @@ -0,0 +1,129 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 262613 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2626': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg + FaceURL: https://i.imgur.com/yPQiViH.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: a03a0b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -30.06119 + posY: 1.47872317 + posZ: -43.79216 + rotX: 0.002784156 + rotY: 270.01593 + rotZ: 5.524547 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 262614 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2626': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg + FaceURL: https://i.imgur.com/yPQiViH.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 8f085a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -30.0634956 + posY: 1.66549659 + posZ: -41.9619064 + rotX: -0.0003067182 + rotY: 269.9828 + rotZ: 355.066864 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2626': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg + FaceURL: https://i.imgur.com/yPQiViH.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 262613 +- 262614 +Description: '' +GMNotes: '' +GUID: 881cd5 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Assassins +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -11.26336 + posY: 1.6797967 + posZ: 13.5870056 + rotX: 359.920074 + rotY: 270.0985 + rotZ: 0.0167518463 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 2 Chaos in Cairo 6e0236/Deck Encounter Deck ce95f2.yaml new file mode 100644 index 000000000..de53a57e0 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 2 Chaos in Cairo 6e0236/Deck Encounter Deck ce95f2.yaml @@ -0,0 +1,738 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 3623 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Cultist. + GMNotes: '' + GUID: 2c80fc + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Acolyte + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -10.5686731 + posY: 1.37283182 + posZ: -71.37513 + rotX: 0.0208089575 + rotY: 269.999451 + rotZ: 0.0167705584 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3623 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Cultist. + GMNotes: '' + GUID: c70e63 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Acolyte + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -6.95720959 + posY: 1.37332141 + posZ: -74.18348 + rotX: 0.0208081324 + rotY: 269.999146 + rotZ: 0.0167721659 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3623 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Cultist. + GMNotes: '' + GUID: 4072d7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Acolyte + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -10.8033743 + posY: 1.52734149 + posZ: -70.61609 + rotX: 0.0253919214 + rotY: 270.003662 + rotZ: 359.6147 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 262615 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2626': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg + FaceURL: https://i.imgur.com/yPQiViH.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 16a534 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -33.6063766 + posY: 1.47714782 + posZ: -43.81489 + rotX: 359.992157 + rotY: 270.082581 + rotZ: 5.48841953 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 262616 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2626': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg + FaceURL: https://i.imgur.com/yPQiViH.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: '902941' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -33.7574768 + posY: 1.66885483 + posZ: -42.0726967 + rotX: -0.000180359682 + rotY: 270.10022 + rotZ: 354.8902 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 262629 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2626': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg + FaceURL: https://i.imgur.com/yPQiViH.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 7490fc + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -11.3022127 + posY: 1.52429509 + posZ: -47.30045 + rotX: 0.0216339957 + rotY: 270.019226 + rotZ: 0.0153637007 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3605 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 96e214 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: False Lead + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -6.79122639 + posY: 1.37812138 + posZ: -57.9911156 + rotX: 0.020807704 + rotY: 269.9996 + rotZ: 0.0167742036 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3605 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 3aef5d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: False Lead + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -6.654737 + posY: 1.37900317 + posZ: -55.14806 + rotX: 0.0208089463 + rotY: 269.999573 + rotZ: 0.0167739317 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3619 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: '260768' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dissonant Voices + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -6.789403 + posY: 1.37497091 + posZ: -68.75641 + rotX: 0.0208089463 + rotY: 269.999268 + rotZ: 0.0167740155 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3619 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: f1a34d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dissonant Voices + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -6.831357 + posY: 1.37573791 + posZ: -66.0842 + rotX: 0.0208093822 + rotY: 269.9994 + rotZ: 0.0167663824 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 262628 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2626': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg + FaceURL: https://i.imgur.com/yPQiViH.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 5ba642 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -11.3447 + posY: 1.51235211 + posZ: -47.4918938 + rotX: 0.0202461854 + rotY: 270.016754 + rotZ: 0.0148987537 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3632 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Pact. + GMNotes: '' + GUID: 7c5c91 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Offer of Power + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -11.4733448 + posY: 1.52194762 + posZ: -47.7972221 + rotX: 0.01988081 + rotY: 269.998474 + rotZ: 0.0192442164 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3632 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Pact. + GMNotes: '' + GUID: 153bb1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Offer of Power + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -11.5724049 + posY: 1.53148985 + posZ: -47.955246 + rotX: 0.018812336 + rotY: 270.0 + rotZ: 0.0217381138 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 262626 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2626': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg + FaceURL: https://i.imgur.com/yPQiViH.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: d0c13c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -39.2372322 + posY: 2.20333934 + posZ: -47.8079 + rotX: 0.0208026972 + rotY: 270.018677 + rotZ: 0.016777331 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 262627 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2626': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg + FaceURL: https://i.imgur.com/yPQiViH.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: db400f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -43.0688477 + posY: 2.20176864 + posZ: -48.41945 + rotX: 0.0208019838 + rotY: 270.020233 + rotZ: 0.0167831816 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 262623 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2626': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg + FaceURL: https://i.imgur.com/yPQiViH.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 60f423 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -40.3241234 + posY: 2.20212 + posZ: -50.6260223 + rotX: 0.0208025742 + rotY: 270.01886 + rotZ: 0.0167812947 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2626': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg + FaceURL: https://i.imgur.com/yPQiViH.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 3623 +- 3623 +- 3623 +- 262615 +- 262616 +- 262629 +- 3605 +- 3605 +- 3619 +- 3619 +- 262628 +- 3632 +- 3632 +- 262626 +- 262627 +- 262623 +Description: '' +GMNotes: '' +GUID: ce95f2 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Encounter Deck +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.92754436 + posY: 1.69709718 + posZ: 5.75703669 + 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 The Side Missions 791837/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 791837/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 2 Chaos in Cairo 6e0236/Deck Setup, Modules & Resolution cee816.yaml new file mode 100644 index 000000000..26716c70e --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 2 Chaos in Cairo 6e0236/Deck Setup, Modules & Resolution cee816.yaml @@ -0,0 +1,258 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 262409 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2624': + BackIsHidden: true + BackURL: https://i.imgur.com/cNTcEuZ.jpg + FaceURL: https://i.imgur.com/gNk7DY9.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 8d4a76 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -18.1204929 + posY: 1.51865554 + posZ: -59.5050163 + rotX: 0.009080663 + rotY: 269.976379 + rotZ: 180.02742 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 262412 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2624': + BackIsHidden: true + BackURL: https://i.imgur.com/cNTcEuZ.jpg + FaceURL: https://i.imgur.com/gNk7DY9.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 4dc307 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -18.2662735 + posY: 1.5204829 + posZ: -59.58172 + rotX: 0.0155867739 + rotY: 270.000061 + rotZ: 180.010712 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 262413 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2624': + BackIsHidden: true + BackURL: https://i.imgur.com/cNTcEuZ.jpg + FaceURL: https://i.imgur.com/gNk7DY9.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 42b163 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -18.0813026 + posY: 1.54770434 + posZ: -57.801033 + rotX: 0.0237942189 + rotY: 269.986664 + rotZ: 359.136719 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 262411 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2624': + BackIsHidden: true + BackURL: https://i.imgur.com/cNTcEuZ.jpg + FaceURL: https://i.imgur.com/gNk7DY9.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: e6bf90 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -18.255867 + posY: 1.51818442 + posZ: -57.68526 + rotX: 0.0201175772 + rotY: 270.0001 + rotZ: 0.01595706 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 262410 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2624': + BackIsHidden: true + BackURL: https://i.imgur.com/cNTcEuZ.jpg + FaceURL: https://i.imgur.com/gNk7DY9.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 93ed31 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -11.1429787 + posY: 1.81637371 + posZ: 2.04199672 + rotX: 359.941559 + rotY: 269.999939 + rotZ: 0.0134324068 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2624': + BackIsHidden: true + BackURL: https://i.imgur.com/cNTcEuZ.jpg + FaceURL: https://i.imgur.com/gNk7DY9.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 262409 +- 262412 +- 262413 +- 262411 +- 262410 +Description: '' +GMNotes: '' +GUID: cee816 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Setup, Modules & Resolution +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -10.7755165 + posY: 1.66779935 + posZ: 2.34999228 + rotX: 359.9201 + rotY: 269.981934 + rotZ: 0.016901698 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 3 The Will to Triump 6d8dad.ttslua b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 3 The Will to Triump 6d8dad.ttslua new file mode 100644 index 000000000..1d754d17c --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 3 The Will to Triump 6d8dad.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 \ No newline at end of file diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 3 The Will to Triump 6d8dad.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 3 The Will to Triump 6d8dad.yaml new file mode 100644 index 000000000..7b2676e91 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 3 The Will to Triump 6d8dad.yaml @@ -0,0 +1,57 @@ +Autoraise: true +ColorDiffuse: + b: 0.0 + g: 0.366520882 + r: 0.7058823 +ContainedObjects: +- !include 'Bag 3 The Will to Triump 6d8dad/Custom_Model_Bag Set-aside a45247.yaml' +- !include 'Bag 3 The Will to Triump 6d8dad/Deck Encounter Deck 946192.yaml' +- !include 'Bag 3 The Will to Triump 6d8dad/Deck Agenda Deck 5d139e.yaml' +- !include 'Bag 3 The Will to Triump 6d8dad/Deck Act Deck 142ed1.yaml' +- !include 'Bag 3 The Will to Triump 6d8dad/Card Scenario 6cd4db.yaml' +- !include 'Bag 3 The Will to Triump 6d8dad/Bag Fear Tokens f57bf9.yaml' +- !include 'Bag 3 The Will to Triump 6d8dad/Deck Setup & Resolution ebb2a1.yaml' +- !include 'Bag 3 The Will to Triump 6d8dad/Deck Market Items 25ee3d.yaml' +- !include 'Bag 3 The Will to Triump 6d8dad/Deck Light Items 657e92.yaml' +- !include 'Bag 3 The Will to Triump 6d8dad/Deck Assets b53ca8.yaml' +- !include 'Bag 3 The Will to Triump 6d8dad/Card Bottom of the Shaft 426d50.yaml' +- !include 'Bag 3 The Will to Triump 6d8dad/Custom_Tile 7234af.yaml' +- !include 'Bag 3 The Will to Triump 6d8dad/Card Tunnel 2feec4.yaml' +- !include 'Bag 3 The Will to Triump 6d8dad/Custom_Tile 023888.yaml' +- !include 'Bag 3 The Will to Triump 6d8dad/Card Tunnel f3e8ca.yaml' +- !include 'Bag 3 The Will to Triump 6d8dad/Custom_Tile b23e87.yaml' +- !include 'Bag 3 The Will to Triump 6d8dad/Card Tunnel 70ed2b.yaml' +- !include 'Bag 3 The Will to Triump 6d8dad/Custom_Tile a813b4.yaml' +- !include 'Bag 3 The Will to Triump 6d8dad/Card Fresco Room 2c8619.yaml' +- !include 'Bag 3 The Will to Triump 6d8dad/Custom_Tile d374d4.yaml' +- !include 'Bag 3 The Will to Triump 6d8dad/Card Black Stairs 84e8a4.yaml' +- !include 'Bag 3 The Will to Triump 6d8dad/Card Scenario 403576.yaml' +Description: Of Sphinx and Sands +GMNotes: '' +GUID: 6d8dad +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Bag 3 The Will to Triump 6d8dad.ttslua' +LuaScriptState: '{"ml":{"023888":{"lock":false,"pos":{"x":-23.6765,"y":1.6157,"z":3.86},"rot":{"x":0.0169,"y":180,"z":0.0799}},"142ed1":{"lock":false,"pos":{"x":-2.6824,"y":1.6535,"z":-5.0497},"rot":{"x":0.0168,"y":180.029,"z":0.0803}},"25ee3d":{"lock":false,"pos":{"x":-17.1201,"y":1.6796,"z":15.19},"rot":{"x":359.9201,"y":269.9985,"z":0.0169}},"2c8619":{"lock":false,"pos":{"x":-30.2243,"y":1.7004,"z":7.57},"rot":{"x":359.9201,"y":270,"z":180.0169}},"2feec4":{"lock":false,"pos":{"x":-23.6765,"y":1.6913,"z":7.57},"rot":{"x":359.9201,"y":270.0005,"z":180.0169}},"403576":{"lock":false,"pos":{"x":-50.9244,"y":1.7266,"z":8.1784},"rot":{"x":359.9201,"y":270.0018,"z":0.0169}},"426d50":{"lock":false,"pos":{"x":-17.1199,"y":1.6799,"z":-0.03},"rot":{"x":359.9201,"y":269.9999,"z":180.0169}},"5d139e":{"lock":false,"pos":{"x":-2.7247,"y":1.6566,"z":0.3733},"rot":{"x":0.0168,"y":180.0095,"z":0.0803}},"657e92":{"lock":false,"pos":{"x":-17.1199,"y":1.68,"z":11.46},"rot":{"x":359.9201,"y":270.0193,"z":0.0168}},"6cd4db":{"lock":false,"pos":{"x":-3.956,"y":1.6556,"z":-10.4412},"rot":{"x":359.9197,"y":270.0018,"z":0.0168}},"70ed2b":{"lock":false,"pos":{"x":-23.6765,"y":1.6868,"z":-7.7},"rot":{"x":359.9201,"y":270,"z":180.0169}},"7234af":{"lock":false,"pos":{"x":-20.389,"y":1.6089,"z":-3.5856},"rot":{"x":359.9555,"y":224.9709,"z":0.0684}},"84e8a4":{"lock":false,"pos":{"x":-30.2243,"y":1.6982,"z":-0.03},"rot":{"x":359.9201,"y":270.0002,"z":180.0169}},"946192":{"lock":false,"pos":{"x":-3.9275,"y":1.7344,"z":5.7572},"rot":{"x":359.9197,"y":270.0004,"z":180.0168}},"a45247":{"lock":false,"pos":{"x":1.6949,"y":1.5583,"z":14.2794},"rot":{"x":359.9551,"y":224.998,"z":0.0687}},"a813b4":{"lock":false,"pos":{"x":-26.9936,"y":1.6213,"z":7.4831},"rot":{"x":359.9201,"y":269.9943,"z":0.0169}},"b23e87":{"lock":false,"pos":{"x":-23.6765,"y":1.6134,"z":-3.83},"rot":{"x":0.0169,"y":180,"z":0.08}},"b53ca8":{"lock":false,"pos":{"x":-17.1201,"y":1.6828,"z":7.57},"rot":{"x":359.9201,"y":270.0226,"z":0.0168}},"d374d4":{"lock":false,"pos":{"x":-30.2242,"y":1.6248,"z":3.86},"rot":{"x":359.9831,"y":0,"z":359.9201}},"ebb2a1":{"lock":false,"pos":{"x":-11.7716,"y":1.6716,"z":3.6782},"rot":{"x":359.9201,"y":269.9995,"z":0.0169}},"f3e8ca":{"lock":false,"pos":{"x":-23.6765,"y":1.689,"z":-0.03},"rot":{"x":359.9201,"y":269.9996,"z":180.0169}},"f57bf9":{"lock":false,"pos":{"x":-9.9008,"y":1.4136,"z":11.1571},"rot":{"x":359.9831,"y":0.0006,"z":359.92}}}}' +MaterialIndex: -1 +MeshIndex: -1 +Name: Bag +Nickname: '3: The Will to Triump' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 9.766926 + posY: 1.281754 + posZ: -4.067673 + rotX: 0.07996088 + rotY: 89.99625 + rotZ: 359.9831 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 3 The Will to Triump 6d8dad/Bag Fear Tokens f57bf9.yaml new file mode 100644 index 000000000..c5b0113dc --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 3 The Will to Triump 6d8dad/Bag Fear Tokens f57bf9.yaml @@ -0,0 +1,50 @@ +Autoraise: true +ColorDiffuse: + b: 0.8029537 + g: 0.8375244 + r: 0.874564469 +ContainedObjects: +- !include 'Bag Fear Tokens f57bf9/Custom_Token Fear faa501.yaml' +- !include 'Bag Fear Tokens f57bf9/Custom_Token Fear 094fe6.yaml' +- !include 'Bag Fear Tokens f57bf9/Custom_Token Fear b33801.yaml' +- !include 'Bag Fear Tokens f57bf9/Custom_Token Fear 8b01ca.yaml' +- !include 'Bag Fear Tokens f57bf9/Custom_Token Fear 6e3086.yaml' +- !include 'Bag Fear Tokens f57bf9/Custom_Token Fear c53e47.yaml' +- !include 'Bag Fear Tokens f57bf9/Custom_Token Fear 5089d7.yaml' +- !include 'Bag Fear Tokens f57bf9/Custom_Token Fear 923b89.yaml' +- !include 'Bag Fear Tokens f57bf9/Custom_Token Fear 4fdc8b.yaml' +- !include 'Bag Fear Tokens f57bf9/Custom_Token Fear f03c51.yaml' +- !include 'Bag Fear Tokens f57bf9/Custom_Token Fear 309114.yaml' +- !include 'Bag Fear Tokens f57bf9/Custom_Token Fear 072074.yaml' +- !include 'Bag Fear Tokens f57bf9/Custom_Token Fear 22d293.yaml' +- !include 'Bag Fear Tokens f57bf9/Custom_Token Fear ce40fa.yaml' +- !include 'Bag Fear Tokens f57bf9/Custom_Token Fear a5c29c.yaml' +Description: Of Sphinx and Sands +GMNotes: '' +GUID: f57bf9 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +MeshIndex: -1 +Name: Bag +Nickname: Fear Tokens +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -9.900829 + posY: 1.413557 + posZ: 11.15709 + rotX: 359.9831 + rotY: 0.0005926312 + rotZ: 359.92 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 3 The Will to Triump 6d8dad/Bag Fear Tokens f57bf9/Custom_Token Fear 072074.yaml new file mode 100644 index 000000000..5cbae427d --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 3 The Will to Triump 6d8dad/Bag Fear Tokens f57bf9/Custom_Token Fear 072074.yaml @@ -0,0 +1,41 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +CustomImage: + CustomToken: + MergeDistancePixels: 15.0 + Stackable: false + Thickness: 0.1 + ImageScalar: 1.0 + ImageSecondaryURL: '' + ImageURL: https://i.imgur.com/mtn32L4.jpg + WidthScale: 0.0 +Description: '' +GMNotes: '' +GUID: '072074' +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Token +Nickname: Fear +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -7.40826654 + posY: 4.00846338 + posZ: -85.05188 + rotX: 22.2344856 + rotY: 270.459167 + rotZ: 1.142048 + scaleX: 0.2 + scaleY: 1.0 + scaleZ: 0.2 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 3 The Will to Triump 6d8dad/Bag Fear Tokens f57bf9/Custom_Token Fear 094fe6.yaml new file mode 100644 index 000000000..2d06f27e6 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 3 The Will to Triump 6d8dad/Bag Fear Tokens f57bf9/Custom_Token Fear 094fe6.yaml @@ -0,0 +1,41 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +CustomImage: + CustomToken: + MergeDistancePixels: 15.0 + Stackable: false + Thickness: 0.1 + ImageScalar: 1.0 + ImageSecondaryURL: '' + ImageURL: https://i.imgur.com/mtn32L4.jpg + WidthScale: 0.0 +Description: '' +GMNotes: '' +GUID: 094fe6 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Token +Nickname: Fear +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -7.58012772 + posY: 3.52367759 + posZ: -85.55885 + rotX: 3.33820367 + rotY: 269.626862 + rotZ: 0.788920045 + scaleX: 0.2 + scaleY: 1.0 + scaleZ: 0.2 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 3 The Will to Triump 6d8dad/Bag Fear Tokens f57bf9/Custom_Token Fear 22d293.yaml new file mode 100644 index 000000000..623674224 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 3 The Will to Triump 6d8dad/Bag Fear Tokens f57bf9/Custom_Token Fear 22d293.yaml @@ -0,0 +1,41 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +CustomImage: + CustomToken: + MergeDistancePixels: 15.0 + Stackable: false + Thickness: 0.1 + ImageScalar: 1.0 + ImageSecondaryURL: '' + ImageURL: https://i.imgur.com/mtn32L4.jpg + WidthScale: 0.0 +Description: '' +GMNotes: '' +GUID: 22d293 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Token +Nickname: Fear +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -7.35305262 + posY: 4.14386845 + posZ: -85.03219 + rotX: 22.2240658 + rotY: 271.29538 + rotZ: 0.792531431 + scaleX: 0.2 + scaleY: 1.0 + scaleZ: 0.2 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 3 The Will to Triump 6d8dad/Bag Fear Tokens f57bf9/Custom_Token Fear 309114.yaml new file mode 100644 index 000000000..986254c28 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 3 The Will to Triump 6d8dad/Bag Fear Tokens f57bf9/Custom_Token Fear 309114.yaml @@ -0,0 +1,41 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +CustomImage: + CustomToken: + MergeDistancePixels: 15.0 + Stackable: false + Thickness: 0.1 + ImageScalar: 1.0 + ImageSecondaryURL: '' + ImageURL: https://i.imgur.com/mtn32L4.jpg + WidthScale: 0.0 +Description: '' +GMNotes: '' +GUID: '309114' +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Token +Nickname: Fear +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -7.61704969 + posY: 3.751623 + posZ: -85.16925 + rotX: 359.169769 + rotY: 42.9873734 + rotZ: 182.09758 + scaleX: 0.2 + scaleY: 1.0 + scaleZ: 0.2 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 3 The Will to Triump 6d8dad/Bag Fear Tokens f57bf9/Custom_Token Fear 4fdc8b.yaml new file mode 100644 index 000000000..035a31637 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 3 The Will to Triump 6d8dad/Bag Fear Tokens f57bf9/Custom_Token Fear 4fdc8b.yaml @@ -0,0 +1,41 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +CustomImage: + CustomToken: + MergeDistancePixels: 15.0 + Stackable: false + Thickness: 0.1 + ImageScalar: 1.0 + ImageSecondaryURL: '' + ImageURL: https://i.imgur.com/mtn32L4.jpg + WidthScale: 0.0 +Description: '' +GMNotes: '' +GUID: 4fdc8b +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Token +Nickname: Fear +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -6.667053 + posY: 3.9640944 + posZ: -85.34814 + rotX: 13.0834475 + rotY: 270.852051 + rotZ: 6.53045368 + scaleX: 0.2 + scaleY: 1.0 + scaleZ: 0.2 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 3 The Will to Triump 6d8dad/Bag Fear Tokens f57bf9/Custom_Token Fear 5089d7.yaml new file mode 100644 index 000000000..b8796eb88 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 3 The Will to Triump 6d8dad/Bag Fear Tokens f57bf9/Custom_Token Fear 5089d7.yaml @@ -0,0 +1,41 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +CustomImage: + CustomToken: + MergeDistancePixels: 15.0 + Stackable: false + Thickness: 0.1 + ImageScalar: 1.0 + ImageSecondaryURL: '' + ImageURL: https://i.imgur.com/mtn32L4.jpg + WidthScale: 0.0 +Description: '' +GMNotes: '' +GUID: 5089d7 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Token +Nickname: Fear +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -6.60241127 + posY: 3.73369884 + posZ: -85.34447 + rotX: 13.1980906 + rotY: 270.709656 + rotZ: 0.6484825 + scaleX: 0.2 + scaleY: 1.0 + scaleZ: 0.2 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 3 The Will to Triump 6d8dad/Bag Fear Tokens f57bf9/Custom_Token Fear 6e3086.yaml new file mode 100644 index 000000000..48c364ade --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 3 The Will to Triump 6d8dad/Bag Fear Tokens f57bf9/Custom_Token Fear 6e3086.yaml @@ -0,0 +1,41 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +CustomImage: + CustomToken: + MergeDistancePixels: 15.0 + Stackable: false + Thickness: 0.1 + ImageScalar: 1.0 + ImageSecondaryURL: '' + ImageURL: https://i.imgur.com/mtn32L4.jpg + WidthScale: 0.0 +Description: '' +GMNotes: '' +GUID: 6e3086 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Token +Nickname: Fear +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -7.91725063 + posY: 3.6219492 + posZ: -85.3061142 + rotX: 2.41562271 + rotY: 268.169342 + rotZ: 1.92987037 + scaleX: 0.2 + scaleY: 1.0 + scaleZ: 0.2 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 3 The Will to Triump 6d8dad/Bag Fear Tokens f57bf9/Custom_Token Fear 8b01ca.yaml new file mode 100644 index 000000000..5b5abe3f2 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 3 The Will to Triump 6d8dad/Bag Fear Tokens f57bf9/Custom_Token Fear 8b01ca.yaml @@ -0,0 +1,41 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +CustomImage: + CustomToken: + MergeDistancePixels: 15.0 + Stackable: false + Thickness: 0.1 + ImageScalar: 1.0 + ImageSecondaryURL: '' + ImageURL: https://i.imgur.com/mtn32L4.jpg + WidthScale: 0.0 +Description: '' +GMNotes: '' +GUID: 8b01ca +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Token +Nickname: Fear +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -7.34599 + posY: 3.59321666 + posZ: -84.7290344 + rotX: 11.5326986 + rotY: 270.548981 + rotZ: 2.095724 + scaleX: 0.2 + scaleY: 1.0 + scaleZ: 0.2 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 3 The Will to Triump 6d8dad/Bag Fear Tokens f57bf9/Custom_Token Fear 923b89.yaml new file mode 100644 index 000000000..d228786b0 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 3 The Will to Triump 6d8dad/Bag Fear Tokens f57bf9/Custom_Token Fear 923b89.yaml @@ -0,0 +1,41 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +CustomImage: + CustomToken: + MergeDistancePixels: 15.0 + Stackable: false + Thickness: 0.1 + ImageScalar: 1.0 + ImageSecondaryURL: '' + ImageURL: https://i.imgur.com/mtn32L4.jpg + WidthScale: 0.0 +Description: '' +GMNotes: '' +GUID: 923b89 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Token +Nickname: Fear +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -6.64946842 + posY: 3.862502 + posZ: -85.34892 + rotX: 13.12807 + rotY: 270.904877 + rotZ: 6.21465445 + scaleX: 0.2 + scaleY: 1.0 + scaleZ: 0.2 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 3 The Will to Triump 6d8dad/Bag Fear Tokens f57bf9/Custom_Token Fear a5c29c.yaml new file mode 100644 index 000000000..6e86893d1 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 3 The Will to Triump 6d8dad/Bag Fear Tokens f57bf9/Custom_Token Fear a5c29c.yaml @@ -0,0 +1,41 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +CustomImage: + CustomToken: + MergeDistancePixels: 15.0 + Stackable: false + Thickness: 0.1 + ImageScalar: 1.0 + ImageSecondaryURL: '' + ImageURL: https://i.imgur.com/mtn32L4.jpg + WidthScale: 0.0 +Description: '' +GMNotes: '' +GUID: a5c29c +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Token +Nickname: Fear +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -7.111001 + posY: 4.477596 + posZ: -85.0567551 + rotX: 22.9351025 + rotY: 272.031921 + rotZ: 359.8241 + scaleX: 0.2 + scaleY: 1.0 + scaleZ: 0.2 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 3 The Will to Triump 6d8dad/Bag Fear Tokens f57bf9/Custom_Token Fear b33801.yaml new file mode 100644 index 000000000..65b76392d --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 3 The Will to Triump 6d8dad/Bag Fear Tokens f57bf9/Custom_Token Fear b33801.yaml @@ -0,0 +1,41 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +CustomImage: + CustomToken: + MergeDistancePixels: 15.0 + Stackable: false + Thickness: 0.1 + ImageScalar: 1.0 + ImageSecondaryURL: '' + ImageURL: https://i.imgur.com/mtn32L4.jpg + WidthScale: 0.0 +Description: '' +GMNotes: '' +GUID: b33801 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Token +Nickname: Fear +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -6.138873 + posY: 3.50134969 + posZ: -85.22126 + rotX: 11.89844 + rotY: 272.175354 + rotZ: 353.749451 + scaleX: 0.2 + scaleY: 1.0 + scaleZ: 0.2 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 3 The Will to Triump 6d8dad/Bag Fear Tokens f57bf9/Custom_Token Fear c53e47.yaml new file mode 100644 index 000000000..de7317bfa --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 3 The Will to Triump 6d8dad/Bag Fear Tokens f57bf9/Custom_Token Fear c53e47.yaml @@ -0,0 +1,41 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +CustomImage: + CustomToken: + MergeDistancePixels: 15.0 + Stackable: false + Thickness: 0.1 + ImageScalar: 1.0 + ImageSecondaryURL: '' + ImageURL: https://i.imgur.com/mtn32L4.jpg + WidthScale: 0.0 +Description: '' +GMNotes: '' +GUID: c53e47 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Token +Nickname: Fear +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -6.589296 + posY: 3.61990952 + posZ: -85.35221 + rotX: 14.068388 + rotY: 270.90152 + rotZ: 359.494781 + scaleX: 0.2 + scaleY: 1.0 + scaleZ: 0.2 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 3 The Will to Triump 6d8dad/Bag Fear Tokens f57bf9/Custom_Token Fear ce40fa.yaml new file mode 100644 index 000000000..905faa377 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 3 The Will to Triump 6d8dad/Bag Fear Tokens f57bf9/Custom_Token Fear ce40fa.yaml @@ -0,0 +1,41 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +CustomImage: + CustomToken: + MergeDistancePixels: 15.0 + Stackable: false + Thickness: 0.1 + ImageScalar: 1.0 + ImageSecondaryURL: '' + ImageURL: https://i.imgur.com/mtn32L4.jpg + WidthScale: 0.0 +Description: '' +GMNotes: '' +GUID: ce40fa +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Token +Nickname: Fear +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -7.214467 + posY: 4.318358 + posZ: -85.1356 + rotX: 22.7679138 + rotY: 271.9156 + rotZ: 0.840038 + scaleX: 0.2 + scaleY: 1.0 + scaleZ: 0.2 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 3 The Will to Triump 6d8dad/Bag Fear Tokens f57bf9/Custom_Token Fear f03c51.yaml new file mode 100644 index 000000000..850835e8a --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 3 The Will to Triump 6d8dad/Bag Fear Tokens f57bf9/Custom_Token Fear f03c51.yaml @@ -0,0 +1,41 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +CustomImage: + CustomToken: + MergeDistancePixels: 15.0 + Stackable: false + Thickness: 0.1 + ImageScalar: 1.0 + ImageSecondaryURL: '' + ImageURL: https://i.imgur.com/mtn32L4.jpg + WidthScale: 0.0 +Description: '' +GMNotes: '' +GUID: f03c51 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Token +Nickname: Fear +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -6.68687057 + posY: 4.07704 + posZ: -85.32589 + rotX: 12.9657116 + rotY: 271.3493 + rotZ: 8.364919 + scaleX: 0.2 + scaleY: 1.0 + scaleZ: 0.2 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 3 The Will to Triump 6d8dad/Bag Fear Tokens f57bf9/Custom_Token Fear faa501.yaml new file mode 100644 index 000000000..eef728880 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 3 The Will to Triump 6d8dad/Bag Fear Tokens f57bf9/Custom_Token Fear faa501.yaml @@ -0,0 +1,41 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +CustomImage: + CustomToken: + MergeDistancePixels: 15.0 + Stackable: false + Thickness: 0.1 + ImageScalar: 1.0 + ImageSecondaryURL: '' + ImageURL: https://i.imgur.com/mtn32L4.jpg + WidthScale: 0.0 +Description: '' +GMNotes: '' +GUID: faa501 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Token +Nickname: Fear +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -6.75549126 + posY: 3.56727123 + posZ: -84.6158142 + rotX: 12.9018593 + rotY: 270.625977 + rotZ: 13.4487734 + scaleX: 0.2 + scaleY: 1.0 + scaleZ: 0.2 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 3 The Will to Triump 6d8dad/Card Black Stairs 84e8a4.yaml new file mode 100644 index 000000000..d35abf361 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 3 The Will to Triump 6d8dad/Card Black Stairs 84e8a4.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 262424 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2624': + BackIsHidden: true + BackURL: https://i.imgur.com/6Pn1f9n.jpg + FaceURL: https://i.imgur.com/eQsarH6.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 84e8a4 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Black Stairs +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -30.2242641 + posY: 1.69817364 + posZ: -0.0299816579 + rotX: 359.9201 + rotY: 270.000183 + rotZ: 180.016861 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 3 The Will to Triump 6d8dad/Card Bottom of the Shaft 426d50.yaml new file mode 100644 index 000000000..eaafbc833 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 3 The Will to Triump 6d8dad/Card Bottom of the Shaft 426d50.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 262426 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2624': + BackIsHidden: true + BackURL: https://i.imgur.com/6Pn1f9n.jpg + FaceURL: https://i.imgur.com/eQsarH6.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 426d50 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Bottom of the Shaft +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -17.1199284 + posY: 1.67990053 + posZ: -0.0299778935 + rotX: 359.9201 + rotY: 269.9999 + rotZ: 180.016861 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 3 The Will to Triump 6d8dad/Card Fresco Room 2c8619.yaml new file mode 100644 index 000000000..e8e215589 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 3 The Will to Triump 6d8dad/Card Fresco Room 2c8619.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 262425 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2624': + BackIsHidden: true + BackURL: https://i.imgur.com/6Pn1f9n.jpg + FaceURL: https://i.imgur.com/eQsarH6.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 2c8619 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Fresco Room +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -30.2242813 + posY: 1.70041156 + posZ: 7.57000542 + rotX: 359.9201 + rotY: 269.999969 + rotZ: 180.016861 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 3 The Will to Triump 6d8dad/Card Scenario 403576.yaml new file mode 100644 index 000000000..f0f6c7a93 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 3 The Will to Triump 6d8dad/Card Scenario 403576.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 262407 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2624': + BackIsHidden: true + BackURL: https://i.imgur.com/6Pn1f9n.jpg + FaceURL: https://i.imgur.com/eQsarH6.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: '403576' +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Scenario +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -50.9243851 + posY: 1.72662532 + posZ: 8.17843151 + rotX: 359.9201 + rotY: 270.00177 + rotZ: 0.0168756284 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 3 The Will to Triump 6d8dad/Card Scenario 6cd4db.yaml new file mode 100644 index 000000000..8dd3515ae --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 3 The Will to Triump 6d8dad/Card Scenario 6cd4db.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 262407 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2624': + BackIsHidden: true + BackURL: https://i.imgur.com/6Pn1f9n.jpg + FaceURL: https://i.imgur.com/eQsarH6.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 6cd4db +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Scenario +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.95596027 + posY: 1.65564811 + posZ: -10.4411554 + rotX: 359.919739 + rotY: 270.00177 + rotZ: 0.0168381985 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 3 The Will to Triump 6d8dad/Card Tunnel 2feec4.yaml new file mode 100644 index 000000000..cf76f8431 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 3 The Will to Triump 6d8dad/Card Tunnel 2feec4.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 262421 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2624': + BackIsHidden: true + BackURL: https://i.imgur.com/6Pn1f9n.jpg + FaceURL: https://i.imgur.com/eQsarH6.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 2feec4 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Tunnel +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -23.6764641 + posY: 1.69128108 + posZ: 7.57001448 + rotX: 359.9201 + rotY: 270.0005 + rotZ: 180.016861 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 3 The Will to Triump 6d8dad/Card Tunnel 70ed2b.yaml new file mode 100644 index 000000000..7fe9fc755 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 3 The Will to Triump 6d8dad/Card Tunnel 70ed2b.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 262420 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2624': + BackIsHidden: true + BackURL: https://i.imgur.com/6Pn1f9n.jpg + FaceURL: https://i.imgur.com/eQsarH6.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 70ed2b +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Tunnel +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -23.6765079 + posY: 1.68678474 + posZ: -7.70001364 + 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 The Side Missions 791837/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 791837/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 3 The Will to Triump 6d8dad/Card Tunnel f3e8ca.yaml new file mode 100644 index 000000000..744159a81 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 3 The Will to Triump 6d8dad/Card Tunnel f3e8ca.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 262422 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2624': + BackIsHidden: true + BackURL: https://i.imgur.com/6Pn1f9n.jpg + FaceURL: https://i.imgur.com/eQsarH6.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: f3e8ca +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Tunnel +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -23.6765461 + posY: 1.6890434 + posZ: -0.029979052 + rotX: 359.9201 + rotY: 269.9996 + rotZ: 180.016861 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 3 The Will to Triump 6d8dad/Custom_Model_Bag Set-aside a45247.yaml new file mode 100644 index 000000000..fec62a20a --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 3 The Will to Triump 6d8dad/Custom_Model_Bag Set-aside a45247.yaml @@ -0,0 +1,64 @@ +Autoraise: true +ColorDiffuse: + b: 0.02148666 + g: 0.00100758043 + r: 0.02148666 +ContainedObjects: +- !include 'Custom_Model_Bag Set-aside a45247/Card The Thing 7d36b0.yaml' +- !include 'Custom_Model_Bag Set-aside a45247/Card Queen Nitokris 1006bb.yaml' +- !include 'Custom_Model_Bag Set-aside a45247/Card King Kephren 94eab6.yaml' +- !include 'Custom_Model_Bag Set-aside a45247/Deck Abominations 2e9b44.yaml' +- !include 'Custom_Model_Bag Set-aside a45247/Card Egyptian Cobra 92a835.yaml' +- !include 'Custom_Model_Bag Set-aside a45247/Deck Wizard of the Order 26dcdb.yaml' +- !include 'Custom_Model_Bag Set-aside a45247/Card Vision of the Sphynx c1e62c.yaml' +- !include 'Custom_Model_Bag Set-aside a45247/Deck cf9fb7.yaml' +- !include 'Custom_Model_Bag Set-aside a45247/Deck Locations c69ba2.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: '' +GMNotes: '' +GUID: a45247 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +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.69490349 + posY: 1.55831921 + posZ: 14.2793722 + rotX: 359.955139 + rotY: 224.998 + rotZ: 0.06867304 + scaleX: 2.0 + scaleY: 2.0 + scaleZ: 2.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/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 new file mode 100644 index 000000000..01f27e15e --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/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 @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 262616 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2626': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg + FaceURL: https://i.imgur.com/JEtquWD.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 92a835 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Egyptian Cobra +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -40.2105026 + posY: 3.41142249 + posZ: -74.30316 + rotX: 0.02224604 + rotY: 270.004578 + rotZ: 0.01638005 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/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 new file mode 100644 index 000000000..028fc5e05 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/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 @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 262614 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2626': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg + FaceURL: https://i.imgur.com/JEtquWD.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 94eab6 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: King Kephren +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -40.45321 + posY: 3.41128922 + posZ: -74.6282043 + rotX: 0.02036981 + rotY: 269.975861 + rotZ: 0.0193387456 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/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 new file mode 100644 index 000000000..41ebe3147 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/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 @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 262615 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2626': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg + FaceURL: https://i.imgur.com/JEtquWD.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 1006bb +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Queen Nitokris +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -40.18329 + posY: 3.41129684 + posZ: -74.7919159 + rotX: 0.0211222265 + rotY: 269.996277 + rotZ: 0.0168123841 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/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 new file mode 100644 index 000000000..9422b98a8 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/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 @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 262618 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2626': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg + FaceURL: https://i.imgur.com/JEtquWD.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 7d36b0 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: The Thing +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -39.55478 + posY: 3.41161466 + posZ: -74.35085 + rotX: 0.0209691655 + rotY: 269.980255 + rotZ: 0.0168551411 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/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 new file mode 100644 index 000000000..92f14ba99 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/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 @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 262604 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2626': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg + FaceURL: https://i.imgur.com/JEtquWD.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: c1e62c +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Vision of the Sphynx +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -39.77319 + posY: 3.41144586 + posZ: -74.73738 + rotX: 0.0209340546 + rotY: 269.9959 + rotZ: 0.01686448 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 3 The Will to Triump 6d8dad/Custom_Model_Bag Set-aside a45247/Deck cf9fb7.yaml new file mode 100644 index 000000000..bcf0cd338 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 3 The Will to Triump 6d8dad/Custom_Model_Bag Set-aside a45247/Deck cf9fb7.yaml @@ -0,0 +1,129 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 3632 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Pact. + GMNotes: '' + GUID: 7c5c91 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Offer of Power + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -44.4345779 + posY: 1.36016428 + posZ: -72.60263 + rotX: 0.0201898478 + rotY: 269.979858 + rotZ: 0.0163659472 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3632 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Pact. + GMNotes: '' + GUID: 153bb1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Offer of Power + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -44.2658653 + posY: 1.5005821 + posZ: -72.6129 + rotX: 0.0101946322 + rotY: 269.97998 + rotZ: 0.0136437723 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 3632 +- 3632 +Description: '' +GMNotes: '' +GUID: cf9fb7 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -40.0547562 + posY: 3.417989 + posZ: -74.55824 + rotX: 359.96817 + rotY: 269.988037 + rotZ: 0.04514811 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/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 new file mode 100644 index 000000000..767bce49b --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/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 @@ -0,0 +1,215 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 262622 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2626': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg + FaceURL: https://i.imgur.com/JEtquWD.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: '320511' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -36.2119026 + posY: 1.36106789 + posZ: -79.0113 + rotX: 0.009956003 + rotY: 269.9808 + rotZ: 0.0139592374 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 262620 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2626': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg + FaceURL: https://i.imgur.com/JEtquWD.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 798ffc + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -36.7486763 + posY: 1.3993361 + posZ: -79.02414 + rotX: 359.6635 + rotY: 269.9639 + rotZ: 0.282313079 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 262621 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2626': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg + FaceURL: https://i.imgur.com/JEtquWD.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: '740459' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -36.679985 + posY: 1.54463148 + posZ: -78.97164 + rotX: 359.816833 + rotY: 269.976 + rotZ: 0.264457256 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 262619 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2626': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg + FaceURL: https://i.imgur.com/JEtquWD.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 63386b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -36.6591644 + posY: 1.68045485 + posZ: -79.19835 + rotX: 359.75827 + rotY: 269.999664 + rotZ: 0.3254515 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2626': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg + FaceURL: https://i.imgur.com/JEtquWD.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 262622 +- 262620 +- 262621 +- 262619 +Description: '' +GMNotes: '' +GUID: 2e9b44 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Abominations +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -39.5119438 + posY: 3.409407 + posZ: -75.21608 + rotX: 0.01952564 + rotY: 269.975159 + rotZ: 0.0165495276 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/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 new file mode 100644 index 000000000..3a525363d --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/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 @@ -0,0 +1,473 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 262419 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2624': + BackIsHidden: true + BackURL: https://i.imgur.com/6Pn1f9n.jpg + FaceURL: https://i.imgur.com/eQsarH6.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: e33fb2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Large Hall + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -21.6289539 + posY: 1.51162934 + posZ: -72.5786362 + rotX: 0.0123154726 + rotY: 270.002533 + rotZ: 180.009476 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 262418 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2624': + BackIsHidden: true + BackURL: https://i.imgur.com/6Pn1f9n.jpg + FaceURL: https://i.imgur.com/eQsarH6.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: '620205' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Large Hall + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -21.3743782 + posY: 1.37129343 + posZ: -72.71403 + rotX: 0.0186050273 + rotY: 270.0008 + rotZ: 180.017014 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 262427 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2624': + BackIsHidden: true + BackURL: https://i.imgur.com/6Pn1f9n.jpg + FaceURL: https://i.imgur.com/eQsarH6.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 4aa17f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Sanctuary + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -28.854681 + posY: 1.52686632 + posZ: -71.06958 + rotX: 0.02220003 + rotY: 270.04303 + rotZ: 179.98703 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 262429 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2624': + BackIsHidden: true + BackURL: https://i.imgur.com/6Pn1f9n.jpg + FaceURL: https://i.imgur.com/eQsarH6.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 7386ae + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Sanctuary (alt) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -29.0157871 + posY: 1.5089674 + posZ: -70.91041 + rotX: 0.02419205 + rotY: 270.00058 + rotZ: 180.00769 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 262428 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2624': + BackIsHidden: true + BackURL: https://i.imgur.com/6Pn1f9n.jpg + FaceURL: https://i.imgur.com/eQsarH6.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: '177510' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Sanctuary (alt 2) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -28.792572 + posY: 1.368914 + posZ: -71.26638 + rotX: 0.0135586541 + rotY: 270.001 + rotZ: 180.019028 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 262415 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2624': + BackIsHidden: true + BackURL: https://i.imgur.com/6Pn1f9n.jpg + FaceURL: https://i.imgur.com/eQsarH6.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: e13df4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Throne Room + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -28.4755173 + posY: 1.36692119 + posZ: -78.99394 + rotX: 0.0208076127 + rotY: 270.00528 + rotZ: 180.016769 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 262417 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2624': + BackIsHidden: true + BackURL: https://i.imgur.com/6Pn1f9n.jpg + FaceURL: https://i.imgur.com/eQsarH6.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 392fb0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Altar Room + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -25.1129646 + posY: 1.36811447 + posZ: -79.08936 + rotX: 0.020806184 + rotY: 270.005432 + rotZ: 180.016769 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 262423 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2624': + BackIsHidden: true + BackURL: https://i.imgur.com/6Pn1f9n.jpg + FaceURL: https://i.imgur.com/eQsarH6.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 72bb26 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Bottom of the Stairs + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -21.8474369 + posY: 1.36928546 + posZ: -79.1404648 + rotX: 0.0208087955 + rotY: 270.0004 + rotZ: 180.016769 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 262414 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2624': + BackIsHidden: true + BackURL: https://i.imgur.com/6Pn1f9n.jpg + FaceURL: https://i.imgur.com/eQsarH6.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: f59a2f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Spiral Staircase + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -25.1293545 + posY: 1.36875808 + posZ: -76.87045 + rotX: 0.0208083 + rotY: 269.998932 + rotZ: 180.016769 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 262416 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2624': + BackIsHidden: true + BackURL: https://i.imgur.com/6Pn1f9n.jpg + FaceURL: https://i.imgur.com/eQsarH6.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 08ffb2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Altar + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -21.5847244 + posY: 1.37032461 + posZ: -75.9165955 + rotX: 0.0208075121 + rotY: 270.005554 + rotZ: 180.016769 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2624': + BackIsHidden: true + BackURL: https://i.imgur.com/6Pn1f9n.jpg + FaceURL: https://i.imgur.com/eQsarH6.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 262419 +- 262418 +- 262427 +- 262429 +- 262428 +- 262415 +- 262417 +- 262423 +- 262414 +- 262416 +Description: '' +GMNotes: '' +GUID: c69ba2 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Locations +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -39.5612946 + posY: 3.41627169 + posZ: -74.65076 + rotX: 0.020778032 + rotY: 270.006866 + rotZ: 180.016846 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/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 new file mode 100644 index 000000000..634873d91 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/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 @@ -0,0 +1,129 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 3624 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Cultist. + GMNotes: '' + GUID: 159f90 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Wizard of the Order + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -40.6718254 + posY: 1.36483574 + posZ: -60.9089241 + rotX: 0.0140267406 + rotY: 269.999329 + rotZ: 0.0138056 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3624 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Cultist. + GMNotes: '' + GUID: 6fa28a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Wizard of the Order + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -40.6283951 + posY: 1.497624 + posZ: -60.6692543 + rotX: 0.0227860641 + rotY: 269.9999 + rotZ: 359.965942 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 3624 +- 3624 +Description: '' +GMNotes: '' +GUID: 26dcdb +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Wizard of the Order +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -39.8898964 + posY: 3.41826487 + posZ: -74.80701 + rotX: 0.0219011158 + rotY: 269.999481 + rotZ: 0.01700627 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 3 The Will to Triump 6d8dad/Custom_Tile 023888.yaml new file mode 100644 index 000000000..1598d5a34 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 3 The Will to Triump 6d8dad/Custom_Tile 023888.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 023888 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.6764545 + posY: 1.61565208 + posZ: 3.85998464 + rotX: 0.016871782 + rotY: 180.000015 + rotZ: 0.07994733 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 3 The Will to Triump 6d8dad/Custom_Tile 7234af.yaml new file mode 100644 index 000000000..18e88166b --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 3 The Will to Triump 6d8dad/Custom_Tile 7234af.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 7234af +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.3889561 + posY: 1.60887551 + posZ: -3.58555317 + rotX: 359.955475 + rotY: 224.9709 + rotZ: 0.0684376061 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 3 The Will to Triump 6d8dad/Custom_Tile a813b4.yaml new file mode 100644 index 000000000..0e4d40e06 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 3 The Will to Triump 6d8dad/Custom_Tile a813b4.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: a813b4 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.9936028 + posY: 1.62134469 + posZ: 7.48306274 + rotX: 359.9201 + rotY: 269.994263 + rotZ: 0.0169215314 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 3 The Will to Triump 6d8dad/Custom_Tile b23e87.yaml new file mode 100644 index 000000000..f1585b1b0 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 3 The Will to Triump 6d8dad/Custom_Tile b23e87.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: b23e87 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.67645 + posY: 1.61338758 + posZ: -3.83001471 + rotX: 0.0168718733 + rotY: 179.999969 + rotZ: 0.0799502954 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 3 The Will to Triump 6d8dad/Custom_Tile d374d4.yaml new file mode 100644 index 000000000..3eebcf027 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 3 The Will to Triump 6d8dad/Custom_Tile d374d4.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: d374d4 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.2241745 + posY: 1.62478268 + posZ: 3.859987 + rotX: 359.983124 + rotY: 2.79070937e-05 + rotZ: 359.920074 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 3 The Will to Triump 6d8dad/Deck Act Deck 142ed1.yaml new file mode 100644 index 000000000..145424da3 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 3 The Will to Triump 6d8dad/Deck Act Deck 142ed1.yaml @@ -0,0 +1,215 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 262503 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2625': + BackIsHidden: true + BackURL: https://i.imgur.com/6Pn1f9n.jpg + FaceURL: https://i.imgur.com/eQsarH6.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: f4755b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -13.80675 + posY: 1.513805 + posZ: -87.9470139 + rotX: 0.01228799 + rotY: 179.999832 + rotZ: 179.9876 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 262502 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2625': + BackIsHidden: true + BackURL: https://i.imgur.com/6Pn1f9n.jpg + FaceURL: https://i.imgur.com/eQsarH6.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 8f332e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -13.7549887 + posY: 1.36748266 + posZ: -84.30965 + rotX: -0.005103008 + rotY: 179.995819 + rotZ: 359.9723 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 262501 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2625': + BackIsHidden: true + BackURL: https://i.imgur.com/6Pn1f9n.jpg + FaceURL: https://i.imgur.com/eQsarH6.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 20ed1a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -11.2671652 + posY: 1.36865044 + posZ: -84.51377 + rotX: 0.01263242 + rotY: 179.997955 + rotZ: 359.9792 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 262500 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2625': + BackIsHidden: true + BackURL: https://i.imgur.com/6Pn1f9n.jpg + FaceURL: https://i.imgur.com/eQsarH6.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 2256b6 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -13.0665607 + posY: 1.51129067 + posZ: -87.85639 + rotX: 0.007648844 + rotY: 179.9939 + rotZ: 359.98764 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2625': + BackIsHidden: true + BackURL: https://i.imgur.com/6Pn1f9n.jpg + FaceURL: https://i.imgur.com/eQsarH6.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 262503 +- 262502 +- 262501 +- 262500 +Description: '' +GMNotes: '' +GUID: 142ed1 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Act Deck +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.68240929 + posY: 1.65348554 + posZ: -5.0496664 + rotX: 0.0167944785 + rotY: 180.029022 + rotZ: 0.08026588 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 3 The Will to Triump 6d8dad/Deck Agenda Deck 5d139e.yaml new file mode 100644 index 000000000..666ad7ba6 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 3 The Will to Triump 6d8dad/Deck Agenda Deck 5d139e.yaml @@ -0,0 +1,172 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 262506 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2625': + BackIsHidden: true + BackURL: https://i.imgur.com/6Pn1f9n.jpg + FaceURL: https://i.imgur.com/eQsarH6.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: ec6cea + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -13.1548939 + posY: 1.3680017 + posZ: -84.61201 + rotX: 0.01580604 + rotY: 180.00499 + rotZ: 359.978271 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 262505 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2625': + BackIsHidden: true + BackURL: https://i.imgur.com/6Pn1f9n.jpg + FaceURL: https://i.imgur.com/eQsarH6.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 4cf91f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -13.2342005 + posY: 1.50834346 + posZ: -84.67915 + rotX: 0.008444017 + rotY: 180.0026 + rotZ: 359.9695 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 262504 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2625': + BackIsHidden: true + BackURL: https://i.imgur.com/6Pn1f9n.jpg + FaceURL: https://i.imgur.com/eQsarH6.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 33fb33 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -13.7005777 + posY: 1.52541113 + posZ: -84.53568 + rotX: 0.0168611929 + rotY: 180.000992 + rotZ: 359.957184 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2625': + BackIsHidden: true + BackURL: https://i.imgur.com/6Pn1f9n.jpg + FaceURL: https://i.imgur.com/eQsarH6.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 262506 +- 262505 +- 262504 +Description: '' +GMNotes: '' +GUID: 5d139e +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Agenda Deck +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.72465539 + posY: 1.65664113 + posZ: 0.3733153 + rotX: 0.0168217458 + rotY: 180.009521 + rotZ: 0.08026049 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 3 The Will to Triump 6d8dad/Deck Assets b53ca8.yaml new file mode 100644 index 000000000..c337a37b0 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 3 The Will to Triump 6d8dad/Deck Assets b53ca8.yaml @@ -0,0 +1,344 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 262732 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2627': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg + FaceURL: https://i.imgur.com/JEtquWD.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: d77e06 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -27.662962 + posY: 1.366524 + posZ: -71.60463 + rotX: 0.0191655885 + rotY: 270.0186 + rotZ: 0.0165566076 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 262733 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2627': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg + FaceURL: https://i.imgur.com/JEtquWD.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 757a47 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -27.817318 + posY: 1.5069797 + posZ: -71.6561356 + rotX: 0.0108674038 + rotY: 270.017273 + rotZ: 0.0192798525 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 262726 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2627': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg + FaceURL: https://i.imgur.com/JEtquWD.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 1ef39a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -27.59105 + posY: 1.52434623 + posZ: -71.84219 + rotX: 0.0201872326 + rotY: 270.0191 + rotZ: 0.0200560465 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 262725 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2627': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg + FaceURL: https://i.imgur.com/JEtquWD.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 6c39f0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -27.4848042 + posY: 1.51092064 + posZ: -71.1951141 + rotX: 0.017302664 + rotY: 270.019 + rotZ: 0.0135107208 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 262724 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2627': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg + FaceURL: https://i.imgur.com/JEtquWD.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 24cea1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -27.3722076 + posY: 1.50810838 + posZ: -72.2858353 + rotX: 0.0152481589 + rotY: 270.0193 + rotZ: 0.0502316579 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 262727 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2627': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg + FaceURL: https://i.imgur.com/JEtquWD.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 4f4a33 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -27.7512646 + posY: 1.51133537 + posZ: -71.5181961 + rotX: 0.0202419 + rotY: 270.02063 + rotZ: 0.0151275322 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 262735 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2627': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg + FaceURL: https://i.imgur.com/JEtquWD.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: cf6157 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -27.931448 + posY: 1.51623189 + posZ: -71.64414 + rotX: 0.0198765341 + rotY: 270.017944 + rotZ: 0.0175049268 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2627': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg + FaceURL: https://i.imgur.com/JEtquWD.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 262732 +- 262733 +- 262726 +- 262725 +- 262724 +- 262727 +- 262735 +Description: '' +GMNotes: '' +GUID: b53ca8 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Assets +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -17.12005 + posY: 1.68284452 + posZ: 7.570007 + rotX: 359.9201 + rotY: 270.0226 + rotZ: 0.0168478545 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 3 The Will to Triump 6d8dad/Deck Encounter Deck 946192.yaml new file mode 100644 index 000000000..585a7492a --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 3 The Will to Triump 6d8dad/Deck Encounter Deck 946192.yaml @@ -0,0 +1,1039 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 3623 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Cultist. + GMNotes: '' + GUID: dcc9d9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Acolyte + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -34.5504723 + posY: 1.36522973 + posZ: -67.21875 + rotX: 0.0149011947 + rotY: 269.983978 + rotZ: 0.0149592254 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3623 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Cultist. + GMNotes: '' + GUID: c70e63 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Acolyte + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -34.74012 + posY: 1.50529885 + posZ: -67.1955261 + rotX: 0.0230593979 + rotY: 269.9851 + rotZ: 0.014473374 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3619 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: '260768' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dissonant Voices + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -27.9733849 + posY: 1.37100375 + posZ: -55.8476677 + rotX: 0.0184512734 + rotY: 269.982147 + rotZ: 0.0159415137 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3619 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: f1a34d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dissonant Voices + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -28.2377644 + posY: 1.51130843 + posZ: -56.0246277 + rotX: 0.0105072688 + rotY: 269.982452 + rotZ: 0.0236367881 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 262613 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2626': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg + FaceURL: https://i.imgur.com/JEtquWD.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: c954ae + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -41.5467377 + posY: 1.40856874 + posZ: -82.1596 + rotX: 0.002179073 + rotY: 270.031128 + rotZ: 0.0002863511 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 262612 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2626': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg + FaceURL: https://i.imgur.com/JEtquWD.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: abc714 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -40.7289162 + posY: 1.35874546 + posZ: -82.07754 + rotX: 0.020798156 + rotY: 269.9985 + rotZ: 0.0167683661 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 262610 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2626': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg + FaceURL: https://i.imgur.com/JEtquWD.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 351d7c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -34.8437 + posY: 1.48109055 + posZ: -67.77441 + rotX: 1.27430356 + rotY: 269.993134 + rotZ: 0.0286816116 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 262609 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2626': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg + FaceURL: https://i.imgur.com/JEtquWD.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 96bd0c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -34.83282 + posY: 1.52127719 + posZ: -67.44216 + rotX: 0.0129199689 + rotY: 269.986053 + rotZ: 0.00644870149 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3618 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: c40f57 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Frozen in Fear + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -28.7657661 + posY: 1.36980236 + posZ: -58.9087219 + rotX: 0.01759285 + rotY: 269.982178 + rotZ: 0.0156864747 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3618 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: 27c05d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Frozen in Fear + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -28.7984333 + posY: 1.50998378 + posZ: -59.2468758 + rotX: 0.005254855 + rotY: 269.983063 + rotZ: 0.0418303646 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 262600 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2626': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg + FaceURL: https://i.imgur.com/JEtquWD.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: bb4b7c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -36.1465225 + posY: 1.3629086 + posZ: -73.27866 + rotX: 0.0169854462 + rotY: 270.000366 + rotZ: 0.012889876 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 262601 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2626': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg + FaceURL: https://i.imgur.com/JEtquWD.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 6b284b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -36.15717 + posY: 1.503011 + posZ: -73.47539 + rotX: 0.011534581 + rotY: 269.992859 + rotZ: 0.0308155026 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 262617 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2626': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg + FaceURL: https://i.imgur.com/JEtquWD.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: ced46a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -44.5641251 + posY: 1.356158 + posZ: -85.7201157 + rotX: 0.0127057042 + rotY: 269.983826 + rotZ: 0.0102975257 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 262623 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2626': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg + FaceURL: https://i.imgur.com/JEtquWD.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 13e217 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -44.63636 + posY: 1.49085593 + posZ: -85.35222 + rotX: 0.0264012571 + rotY: 269.978363 + rotZ: 359.9873 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 262605 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2626': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg + FaceURL: https://i.imgur.com/JEtquWD.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: d9499a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -34.9116669 + posY: 1.53175676 + posZ: -67.26285 + rotX: 0.0201041885 + rotY: 269.9954 + rotZ: 0.0176267345 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 262606 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2626': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg + FaceURL: https://i.imgur.com/JEtquWD.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 7fd145 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -34.88923 + posY: 1.54622161 + posZ: -67.7053452 + rotX: 0.019069409 + rotY: 269.997559 + rotZ: 0.0216807052 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3613 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Creature. + GMNotes: '' + GUID: 56e5db + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Swarm of Rats + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -34.57662 + posY: 1.55614519 + posZ: -67.37157 + rotX: 0.0190111268 + rotY: 269.996552 + rotZ: 0.0199428052 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3613 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Creature. + GMNotes: '' + GUID: 7381cd + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Swarm of Rats + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -34.45488 + posY: 1.565774 + posZ: -67.3719 + rotX: 0.0210376773 + rotY: 270.0003 + rotZ: 0.0185536239 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 262608 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2626': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg + FaceURL: https://i.imgur.com/JEtquWD.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: '828550' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -35.0737228 + posY: 1.57038748 + posZ: -67.3998 + rotX: 0.020218689 + rotY: 269.989716 + rotZ: 0.0180646889 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 262607 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2626': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg + FaceURL: https://i.imgur.com/JEtquWD.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: d54280 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -34.8085747 + posY: 1.585053 + posZ: -67.399025 + rotX: 0.0187141914 + rotY: 269.999268 + rotZ: 0.0143013522 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 262603 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2626': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg + FaceURL: https://i.imgur.com/JEtquWD.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 8f2995 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -34.6238937 + posY: 1.58986306 + posZ: -67.2342453 + rotX: 0.007622896 + rotY: 269.975677 + rotZ: 0.0164304245 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 262602 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2626': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg + FaceURL: https://i.imgur.com/JEtquWD.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 01f33d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -34.6068344 + posY: 1.60444272 + posZ: -67.36183 + rotX: 0.0195726845 + rotY: 270.009949 + rotZ: 0.00522748847 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 262611 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2626': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg + FaceURL: https://i.imgur.com/JEtquWD.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 1ab2de + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -34.4923439 + posY: 1.61408269 + posZ: -67.3174 + rotX: 0.0171990283 + rotY: 270.000946 + rotZ: 0.0192267764 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2626': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg + FaceURL: https://i.imgur.com/JEtquWD.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: false + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 3623 +- 3623 +- 3619 +- 3619 +- 262613 +- 262612 +- 262610 +- 262609 +- 3618 +- 3618 +- 262600 +- 262601 +- 262617 +- 262623 +- 262605 +- 262606 +- 3613 +- 3613 +- 262608 +- 262607 +- 262603 +- 262602 +- 262611 +Description: '' +GMNotes: '' +GUID: '946192' +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Encounter Deck +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.92745161 + posY: 1.73440349 + posZ: 5.75715876 + rotX: 359.919739 + rotY: 270.000366 + rotZ: 180.016815 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 3 The Will to Triump 6d8dad/Deck Light Items 657e92.yaml new file mode 100644 index 000000000..94a1ee1e4 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 3 The Will to Triump 6d8dad/Deck Light Items 657e92.yaml @@ -0,0 +1,172 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 262731 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2627': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg + FaceURL: https://i.imgur.com/JEtquWD.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 5a2b01 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -25.4937916 + posY: 1.36930048 + posZ: -64.81168 + rotX: 0.0192118827 + rotY: 270.0191 + rotZ: 0.016174823 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 262737 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2627': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg + FaceURL: https://i.imgur.com/JEtquWD.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 4a62de + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -25.5812645 + posY: 1.50975323 + posZ: -64.95059 + rotX: 0.0106084431 + rotY: 270.0193 + rotZ: 0.0233066622 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 262736 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2627': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg + FaceURL: https://i.imgur.com/JEtquWD.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 2b3649 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -25.7777348 + posY: 1.52714753 + posZ: -64.86113 + rotX: 0.0189516451 + rotY: 270.0191 + rotZ: 0.0162686575 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2627': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg + FaceURL: https://i.imgur.com/JEtquWD.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 262731 +- 262737 +- 262736 +Description: '' +GMNotes: '' +GUID: 657e92 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Light Items +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -17.119936 + posY: 1.6800009 + posZ: 11.4599924 + rotX: 359.9201 + rotY: 270.019348 + rotZ: 0.016849583 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 3 The Will to Triump 6d8dad/Deck Market Items 25ee3d.yaml new file mode 100644 index 000000000..5b14fc634 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 3 The Will to Triump 6d8dad/Deck Market Items 25ee3d.yaml @@ -0,0 +1,215 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 262734 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2627': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg + FaceURL: https://i.imgur.com/JEtquWD.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 4dc632 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -29.2415676 + posY: 1.417606 + posZ: -60.71933 + rotX: 0.016226247 + rotY: 269.998566 + rotZ: 0.0136620291 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 262729 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2627': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg + FaceURL: https://i.imgur.com/JEtquWD.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 49517e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -29.2301254 + posY: 1.367495 + posZ: -61.2713432 + rotX: 0.0154010458 + rotY: 269.999817 + rotZ: 0.0140646035 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 262730 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2627': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg + FaceURL: https://i.imgur.com/JEtquWD.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 9f500d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -29.068161 + posY: 1.77040946 + posZ: -61.6370926 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 262728 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2627': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg + FaceURL: https://i.imgur.com/JEtquWD.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 04da50 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -29.3547859 + posY: 1.62462032 + posZ: -61.8120346 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2627': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg + FaceURL: https://i.imgur.com/JEtquWD.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 262734 +- 262729 +- 262730 +- 262728 +Description: '' +GMNotes: '' +GUID: 25ee3d +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Market Items +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -17.12008 + posY: 1.67959666 + posZ: 15.1900082 + rotX: 359.9201 + rotY: 269.998535 + rotZ: 0.0168789234 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 3 The Will to Triump 6d8dad/Deck Setup & Resolution ebb2a1.yaml new file mode 100644 index 000000000..afbb9feca --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Of Sphinx and Sands eeeb50/Bag 3 The Will to Triump 6d8dad/Deck Setup & Resolution ebb2a1.yaml @@ -0,0 +1,301 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 262413 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2624': + BackIsHidden: true + BackURL: https://i.imgur.com/6Pn1f9n.jpg + FaceURL: https://i.imgur.com/eQsarH6.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 08835c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -12.5145922 + posY: 1.3697331 + posZ: -79.373764 + rotX: 0.0180628523 + rotY: 269.999878 + rotZ: 0.0155981081 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 262412 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2624': + BackIsHidden: true + BackURL: https://i.imgur.com/6Pn1f9n.jpg + FaceURL: https://i.imgur.com/eQsarH6.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: aaeb8c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -12.8424911 + posY: 1.5099808 + posZ: -79.14271 + rotX: 0.0135906013 + rotY: 269.999634 + rotZ: -0.00322279264 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 262411 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2624': + BackIsHidden: true + BackURL: https://i.imgur.com/6Pn1f9n.jpg + FaceURL: https://i.imgur.com/eQsarH6.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: c7f160 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -12.8704348 + posY: 1.52748382 + posZ: -79.30498 + rotX: 0.019922778 + rotY: 270.000031 + rotZ: 0.0156498645 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 262408 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2624': + BackIsHidden: true + BackURL: https://i.imgur.com/6Pn1f9n.jpg + FaceURL: https://i.imgur.com/eQsarH6.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 6ceb51 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -16.5621643 + posY: 1.36793017 + posZ: -79.49297 + rotX: 0.004244288 + rotY: 270.000275 + rotZ: 0.0109774014 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 262410 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2624': + BackIsHidden: true + BackURL: https://i.imgur.com/6Pn1f9n.jpg + FaceURL: https://i.imgur.com/eQsarH6.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 459f7b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -12.1390381 + posY: 1.81814969 + posZ: -0.419430077 + rotX: 359.936035 + rotY: 270.0003 + rotZ: 179.954773 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 262409 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2624': + BackIsHidden: true + BackURL: https://i.imgur.com/6Pn1f9n.jpg + FaceURL: https://i.imgur.com/eQsarH6.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: '250024' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -11.6636553 + posY: 1.67226636 + posZ: 0.0149536505 + rotX: 359.9205 + rotY: 269.9965 + rotZ: 180.019287 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2624': + BackIsHidden: true + BackURL: https://i.imgur.com/6Pn1f9n.jpg + FaceURL: https://i.imgur.com/eQsarH6.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 262413 +- 262412 +- 262411 +- 262408 +- 262410 +- 262409 +Description: '' +GMNotes: '' +GUID: ebb2a1 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Setup & Resolution +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -11.7716064 + posY: 1.67157662 + posZ: 3.67823362 + rotX: 359.9201 + rotY: 269.999542 + rotZ: 0.0168781038 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Parallel Universe 28e0a1.ttslua b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Parallel Universe 28e0a1.ttslua new file mode 100644 index 000000000..46067f58e --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Parallel Universe 28e0a1.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.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.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 791837/Custom_Model_Bag Parallel Universe 28e0a1.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Parallel Universe 28e0a1.yaml new file mode 100644 index 000000000..ae3d95788 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Parallel Universe 28e0a1.yaml @@ -0,0 +1,66 @@ +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 Parallel Universe 28e0a1/Bag 1 Nightmare or Dream f39e68.yaml' +- !include 'Custom_Model_Bag Parallel Universe 28e0a1/Bag 2 Awake 6ca52c.yaml' +- !include 'Custom_Model_Bag Parallel Universe 28e0a1/Bag c0897e.yaml' +- !include 'Custom_Model_Bag Parallel Universe 28e0a1/Deck Assets 8578ad.yaml' +- !include 'Custom_Model_Bag Parallel Universe 28e0a1/Custom_Tile Core Difficulty + 56a08b.yaml' +- !include 'Custom_Model_Bag Parallel Universe 28e0a1/Custom_Tile Campaign Guide b4cf5a.yaml' +CustomMesh: + CastShadows: true + ColliderURL: '' + Convex: true + DiffuseURL: http://cloud-3.steamusercontent.com/ugc/798737729142944953/7A5D3A94BF4A7798157C999A3E1CEAAFC3652CAC/ + MaterialIndex: 3 + MeshURL: https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj + NormalURL: '' + TypeIndex: 6 +Description: '' +GMNotes: '' +GUID: 28e0a1 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Model_Bag Parallel Universe 28e0a1.ttslua' +LuaScriptState: '{"ml":{"56a08b":{"lock":false,"pos":{"x":-3.8679,"y":1.5824,"z":-15.4044},"rot":{"x":359.9197,"y":270.0026,"z":0.0168}},"6ca52c":{"lock":false,"pos":{"x":10.1258,"y":1.283,"z":1.8531},"rot":{"x":0.0799,"y":89.9977,"z":359.9831}},"8578ad":{"lock":false,"pos":{"x":-4.4263,"y":1.6455,"z":14.8008},"rot":{"x":359.9197,"y":269.9995,"z":0.0168}},"b4cf5a":{"lock":false,"pos":{"x":3.9877,"y":1.4679,"z":-27.2649},"rot":{"x":359.9201,"y":269.9991,"z":0.0169}},"c0897e":{"lock":false,"pos":{"x":10.4203,"y":1.2811,"z":-2.9799},"rot":{"x":0.0799,"y":89.9995,"z":359.9831}},"f39e68":{"lock":false,"pos":{"x":10.161,"y":1.2842,"z":6.4667},"rot":{"x":0.0799,"y":89.9954,"z":359.9831}}}}' +MaterialIndex: -1 +MeshIndex: -1 +Name: Custom_Model_Bag +Nickname: Parallel Universe +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 58.8239479 + posY: 8.644118 + posZ: -74.25123 + rotX: 359.983246 + rotY: 270.0 + rotZ: 0.00353683 + scaleX: 2.21 + scaleY: 0.46 + scaleZ: 2.42 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Parallel Universe 28e0a1/Bag c0897e.ttslua b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Parallel Universe 28e0a1/Bag c0897e.ttslua new file mode 100644 index 000000000..4acf9ea11 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Parallel Universe 28e0a1/Bag c0897e.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 791837/Custom_Model_Bag Parallel Universe 28e0a1/Bag c0897e.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Parallel Universe 28e0a1/Bag c0897e.yaml new file mode 100644 index 000000000..d450dad66 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Parallel Universe 28e0a1/Bag c0897e.yaml @@ -0,0 +1,45 @@ +Autoraise: true +ColorDiffuse: + b: 0.297485262 + g: 0.0 + r: 0.7019608 +ContainedObjects: +- !include 'Bag c0897e/Deck Encounter deck 54af2a.yaml' +- !include 'Bag c0897e/Card Agenda 5aa9de.yaml' +- !include 'Bag c0897e/Card Act 9265a9.yaml' +- !include 'Bag c0897e/Card Scenario 2c45d7.yaml' +- !include 'Bag c0897e/Custom_Tile c8d06a.yaml' +- !include 'Bag c0897e/Deck Possesed 502900.yaml' +- !include 'Bag c0897e/Deck Darr with Tentacles 9b6393.yaml' +- !include 'Bag c0897e/Card Blood of Darr cf55fb.yaml' +- !include 'Bag c0897e/Deck 9189f7.yaml' +- !include 'Bag c0897e/Card Scenario 9fde32.yaml' +Description: Parallel Universe +GMNotes: '' +GUID: c0897e +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Bag c0897e.ttslua' +LuaScriptState: '{"ml":{"2c45d7":{"lock":false,"pos":{"x":-3.9522,"y":1.6556,"z":-10.434},"rot":{"x":359.9197,"y":270.0851,"z":0.0167}},"502900":{"lock":false,"pos":{"x":-11.76,"y":1.6768,"z":15.2618},"rot":{"x":359.9201,"y":269.9885,"z":0.2598}},"54af2a":{"lock":false,"pos":{"x":-3.9277,"y":1.6758,"z":5.7572},"rot":{"x":359.9197,"y":270.0072,"z":180.0168}},"5aa9de":{"lock":false,"pos":{"x":-2.7247,"y":1.6571,"z":0.3733},"rot":{"x":0.0168,"y":180.0001,"z":0.0803}},"9189f7":{"lock":false,"pos":{"x":-12.8378,"y":1.6835,"z":4.1605},"rot":{"x":359.9201,"y":270.0199,"z":180.0168}},"9265a9":{"lock":false,"pos":{"x":-2.6884,"y":1.6555,"z":-5.0485},"rot":{"x":359.9832,"y":0.0003,"z":359.9197}},"9b6393":{"lock":false,"pos":{"x":-11.6607,"y":1.6717,"z":11.3885},"rot":{"x":359.9201,"y":269.9916,"z":0.0169}},"9fde32":{"lock":false,"pos":{"x":-50.9244,"y":1.7266,"z":8.1784},"rot":{"x":359.9201,"y":270.0851,"z":0.0168}},"c8d06a":{"lock":false,"pos":{"x":-9.326,"y":1.5869,"z":-25.7325},"rot":{"x":359.9201,"y":270.0097,"z":180.0168}},"cf55fb":{"lock":false,"pos":{"x":-11.5779,"y":1.6718,"z":8.2088},"rot":{"x":359.9201,"y":269.9921,"z":0.0169}}}}' +MaterialIndex: -1 +MeshIndex: -1 +Name: Bag +Nickname: '' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.4203386 + posY: 1.28105569 + posZ: -2.97988272 + rotX: 0.0799312 + rotY: 89.9995 + rotZ: 359.9831 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Parallel Universe 28e0a1/Bag c0897e/Card Act 9265a9.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Parallel Universe 28e0a1/Bag c0897e/Card Act 9265a9.yaml new file mode 100644 index 000000000..7147b172d --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Parallel Universe 28e0a1/Bag c0897e/Card Act 9265a9.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 129 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360025657/FA6F00409528D3D244D995C468B39E42029DEE38/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360026323/23C2F5CCD178545F4CFBEC78CC4DAA2BED50D397/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 9265a9 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Act +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.68841171 + posY: 1.65545738 + posZ: -5.048525 + rotX: 359.983154 + rotY: 0.000307010836 + rotZ: 359.919739 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Parallel Universe 28e0a1/Bag c0897e/Card Agenda 5aa9de.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Parallel Universe 28e0a1/Bag c0897e/Card Agenda 5aa9de.yaml new file mode 100644 index 000000000..09be99a21 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Parallel Universe 28e0a1/Bag c0897e/Card Agenda 5aa9de.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 130 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360025657/FA6F00409528D3D244D995C468B39E42029DEE38/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360026323/23C2F5CCD178545F4CFBEC78CC4DAA2BED50D397/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 5aa9de +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Agenda +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.72472 + posY: 1.65710139 + posZ: 0.373330176 + rotX: 0.01683467 + rotY: 180.0001 + rotZ: 0.08025852 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Parallel Universe 28e0a1/Bag c0897e/Card Blood of Darr cf55fb.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Parallel Universe 28e0a1/Bag c0897e/Card Blood of Darr cf55fb.yaml new file mode 100644 index 000000000..fa50cb892 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Parallel Universe 28e0a1/Bag c0897e/Card Blood of Darr cf55fb.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 121 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360025657/FA6F00409528D3D244D995C468B39E42029DEE38/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360026323/23C2F5CCD178545F4CFBEC78CC4DAA2BED50D397/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Root of all Evil +GMNotes: '' +GUID: cf55fb +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Blood of Darr +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -11.5779171 + posY: 1.6717757 + posZ: 8.208828 + rotX: 359.9201 + rotY: 269.992126 + rotZ: 0.016888652 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Parallel Universe 28e0a1/Bag c0897e/Card Scenario 2c45d7.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Parallel Universe 28e0a1/Bag c0897e/Card Scenario 2c45d7.yaml new file mode 100644 index 000000000..d5aa96c85 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Parallel Universe 28e0a1/Bag c0897e/Card Scenario 2c45d7.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 131 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360025657/FA6F00409528D3D244D995C468B39E42029DEE38/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360026323/23C2F5CCD178545F4CFBEC78CC4DAA2BED50D397/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 2c45d7 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Scenario +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.95219016 + posY: 1.65564489 + posZ: -10.4340343 + rotX: 359.9197 + rotY: 270.085083 + rotZ: 0.0167220011 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Parallel Universe 28e0a1/Bag c0897e/Card Scenario 9fde32.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Parallel Universe 28e0a1/Bag c0897e/Card Scenario 9fde32.yaml new file mode 100644 index 000000000..f73f6bd55 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Parallel Universe 28e0a1/Bag c0897e/Card Scenario 9fde32.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 131 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360025657/FA6F00409528D3D244D995C468B39E42029DEE38/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360026323/23C2F5CCD178545F4CFBEC78CC4DAA2BED50D397/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 9fde32 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Scenario +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -50.9243851 + posY: 1.72662532 + posZ: 8.17843151 + rotX: 359.9201 + rotY: 270.085083 + rotZ: 0.0167580936 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Parallel Universe 28e0a1/Bag c0897e/Custom_Tile c8d06a.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Parallel Universe 28e0a1/Bag c0897e/Custom_Tile c8d06a.yaml new file mode 100644 index 000000000..632626e7c --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Parallel Universe 28e0a1/Bag c0897e/Custom_Tile c8d06a.yaml @@ -0,0 +1,42 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.1 + Type: 0 + ImageScalar: 1.0 + ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/778493732360035830/F0DD8CEFA1A13749A22011C8F6263E63EFA85C9B/ + ImageURL: http://cloud-3.steamusercontent.com/ugc/778493732360035481/EC1A7C44F4F97F6C6A4D1BEF74E2864DB95A62BE/ + WidthScale: 0.0 +Description: '' +GMNotes: '' +GUID: c8d06a +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Tile +Nickname: '' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -9.32601452 + posY: 1.58693349 + posZ: -25.7325153 + rotX: 359.920135 + rotY: 270.009674 + rotZ: 180.016846 + scaleX: 5.0 + scaleY: 1.0 + scaleZ: 5.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Parallel Universe 28e0a1/Bag c0897e/Deck 9189f7.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Parallel Universe 28e0a1/Bag c0897e/Deck 9189f7.yaml new file mode 100644 index 000000000..70644481f --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Parallel Universe 28e0a1/Bag c0897e/Deck 9189f7.yaml @@ -0,0 +1,301 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 128 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360025657/FA6F00409528D3D244D995C468B39E42029DEE38/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360026323/23C2F5CCD178545F4CFBEC78CC4DAA2BED50D397/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 6277e8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -17.1199989 + posY: 1.834318 + posZ: -0.0299961232 + rotX: 359.92038 + rotY: 270.002563 + rotZ: 180.018921 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 127 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360025657/FA6F00409528D3D244D995C468B39E42029DEE38/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360026323/23C2F5CCD178545F4CFBEC78CC4DAA2BED50D397/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 1bf952 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -17.1182842 + posY: 1.81044281 + posZ: -0.0313865431 + rotX: 358.288452 + rotY: 269.986 + rotZ: 181.253372 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 126 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360025657/FA6F00409528D3D244D995C468B39E42029DEE38/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360026323/23C2F5CCD178545F4CFBEC78CC4DAA2BED50D397/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: e51da5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -17.1183147 + posY: 1.8132323 + posZ: -0.03140167 + rotX: 358.312744 + rotY: 269.98645 + rotZ: 181.261658 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 125 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360025657/FA6F00409528D3D244D995C468B39E42029DEE38/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360026323/23C2F5CCD178545F4CFBEC78CC4DAA2BED50D397/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 064d5e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -17.1184826 + posY: 1.82971263 + posZ: -0.03149337 + rotX: 358.4109 + rotY: 269.9831 + rotZ: 181.278549 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 124 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360025657/FA6F00409528D3D244D995C468B39E42029DEE38/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360026323/23C2F5CCD178545F4CFBEC78CC4DAA2BED50D397/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 446aef + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -17.1184368 + posY: 1.81436074 + posZ: -0.0317074321 + rotX: 358.504822 + rotY: 269.985535 + rotZ: 181.271713 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 123 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360025657/FA6F00409528D3D244D995C468B39E42029DEE38/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360026323/23C2F5CCD178545F4CFBEC78CC4DAA2BED50D397/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: e0538a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -17.12016 + posY: 1.679814 + posZ: -0.0299407914 + rotX: 359.9229 + rotY: 270.0074 + rotZ: 180.018967 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360025657/FA6F00409528D3D244D995C468B39E42029DEE38/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360026323/23C2F5CCD178545F4CFBEC78CC4DAA2BED50D397/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 128 +- 127 +- 126 +- 125 +- 124 +- 123 +Description: '' +GMNotes: '' +GUID: 9189f7 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -12.8377647 + posY: 1.68354177 + posZ: 4.160451 + rotX: 359.9201 + rotY: 270.019928 + rotZ: 180.01683 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Parallel Universe 28e0a1/Bag c0897e/Deck Darr with Tentacles 9b6393.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Parallel Universe 28e0a1/Bag c0897e/Deck Darr with Tentacles 9b6393.yaml new file mode 100644 index 000000000..af6fc982a --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Parallel Universe 28e0a1/Bag c0897e/Deck Darr with Tentacles 9b6393.yaml @@ -0,0 +1,253 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 114 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360025657/FA6F00409528D3D244D995C468B39E42029DEE38/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360026323/23C2F5CCD178545F4CFBEC78CC4DAA2BED50D397/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 558d17 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.275766462 + posY: 1.18234217 + posZ: -7.73967075 + rotX: -0.001315264 + rotY: 179.999527 + rotZ: 180.003784 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 113 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360025657/FA6F00409528D3D244D995C468B39E42029DEE38/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360026323/23C2F5CCD178545F4CFBEC78CC4DAA2BED50D397/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 2501cc + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -0.07799961 + posY: 1.19604683 + posZ: -7.236424 + rotX: -0.0024506 + rotY: 179.999588 + rotZ: 179.999817 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 112 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360025657/FA6F00409528D3D244D995C468B39E42029DEE38/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360026323/23C2F5CCD178545F4CFBEC78CC4DAA2BED50D397/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: e4b3b0 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -0.15179193 + posY: 1.17857909 + posZ: -7.700562 + rotX: 359.987762 + rotY: 179.99942 + rotZ: 179.996887 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 111 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360025657/FA6F00409528D3D244D995C468B39E42029DEE38/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360026323/23C2F5CCD178545F4CFBEC78CC4DAA2BED50D397/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: dad37d + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -0.04501096 + posY: 1.034499 + posZ: -7.73992634 + rotX: -0.00142680411 + rotY: 179.999619 + rotZ: 179.999573 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 100 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360025657/FA6F00409528D3D244D995C468B39E42029DEE38/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360026323/23C2F5CCD178545F4CFBEC78CC4DAA2BED50D397/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 83bb07 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.02691089 + posY: 1.17202258 + posZ: -7.36345 + rotX: 0.00179099571 + rotY: 180.0 + rotZ: 0.0014179186 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360025657/FA6F00409528D3D244D995C468B39E42029DEE38/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360026323/23C2F5CCD178545F4CFBEC78CC4DAA2BED50D397/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 114 +- 113 +- 112 +- 111 +- 100 +Description: Root of all Evil +GMNotes: '' +GUID: 9b6393 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Darr with Tentacles +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -11.6606989 + posY: 1.67169511 + posZ: 11.3884954 + rotX: 359.9201 + rotY: 269.991577 + rotZ: 0.0168846361 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Parallel Universe 28e0a1/Bag c0897e/Deck Encounter deck 54af2a.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Parallel Universe 28e0a1/Bag c0897e/Deck Encounter deck 54af2a.yaml new file mode 100644 index 000000000..050ed39c9 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Parallel Universe 28e0a1/Bag c0897e/Deck Encounter deck 54af2a.yaml @@ -0,0 +1,547 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 101 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360025657/FA6F00409528D3D244D995C468B39E42029DEE38/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360026323/23C2F5CCD178545F4CFBEC78CC4DAA2BED50D397/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: f0255d + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.39761138 + posY: 1.61596155 + posZ: 0.380621 + rotX: 0.0181559864 + rotY: 180.070465 + rotZ: 202.894531 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 102 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360025657/FA6F00409528D3D244D995C468B39E42029DEE38/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360026323/23C2F5CCD178545F4CFBEC78CC4DAA2BED50D397/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 171eb5 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.53390074 + posY: 1.20649278 + posZ: 0.253512174 + rotX: 359.957672 + rotY: 180.001633 + rotZ: 179.943237 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 103 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360025657/FA6F00409528D3D244D995C468B39E42029DEE38/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360026323/23C2F5CCD178545F4CFBEC78CC4DAA2BED50D397/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: c16182 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.903606 + posY: 1.19534242 + posZ: 0.210421339 + rotX: -0.00295749865 + rotY: 180.004044 + rotZ: 179.896118 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 104 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360025657/FA6F00409528D3D244D995C468B39E42029DEE38/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360026323/23C2F5CCD178545F4CFBEC78CC4DAA2BED50D397/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: c4caa6 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.563767 + posY: 1.65505433 + posZ: 0.212630287 + rotX: 359.949768 + rotY: 179.974167 + rotZ: 206.963928 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 105 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360025657/FA6F00409528D3D244D995C468B39E42029DEE38/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360026323/23C2F5CCD178545F4CFBEC78CC4DAA2BED50D397/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 12952c + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.65616441 + posY: 1.58736324 + posZ: -0.09044958 + rotX: 0.0163302012 + rotY: 180.118622 + rotZ: 203.068436 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 106 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360025657/FA6F00409528D3D244D995C468B39E42029DEE38/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360026323/23C2F5CCD178545F4CFBEC78CC4DAA2BED50D397/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: b6fe01 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.079714 + posY: 1.17312813 + posZ: 0.167949423 + rotX: -3.20394065e-05 + rotY: 180.0 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 107 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360025657/FA6F00409528D3D244D995C468B39E42029DEE38/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360026323/23C2F5CCD178545F4CFBEC78CC4DAA2BED50D397/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 30ef4c + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.70647359 + posY: 1.7961725 + posZ: 0.212358832 + rotX: 0.0117456242 + rotY: 180.002792 + rotZ: 143.751038 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 108 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360025657/FA6F00409528D3D244D995C468B39E42029DEE38/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360026323/23C2F5CCD178545F4CFBEC78CC4DAA2BED50D397/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 0cc3f5 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.83296013 + posY: 1.14979625 + posZ: 0.210310265 + rotX: 0.00607033726 + rotY: 180.013962 + rotZ: 179.82843 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 109 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360025657/FA6F00409528D3D244D995C468B39E42029DEE38/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360026323/23C2F5CCD178545F4CFBEC78CC4DAA2BED50D397/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 79b77a + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.503654 + posY: 1.19288969 + posZ: 0.3813141 + rotX: -7.84882941e-05 + rotY: 179.999557 + rotZ: 179.982544 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 110 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360025657/FA6F00409528D3D244D995C468B39E42029DEE38/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360026323/23C2F5CCD178545F4CFBEC78CC4DAA2BED50D397/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 95f5b5 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.86356759 + posY: 1.18476057 + posZ: 0.0831818357 + rotX: 359.9771 + rotY: 179.966873 + rotZ: 179.706772 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 115 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360025657/FA6F00409528D3D244D995C468B39E42029DEE38/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360026323/23C2F5CCD178545F4CFBEC78CC4DAA2BED50D397/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 7fad81 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.7786932 + posY: 1.58344269 + posZ: 0.169196025 + rotX: 359.968262 + rotY: 179.958344 + rotZ: 203.044 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 116 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360025657/FA6F00409528D3D244D995C468B39E42029DEE38/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360026323/23C2F5CCD178545F4CFBEC78CC4DAA2BED50D397/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 86a74e + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.56208968 + posY: 1.03368711 + posZ: 0.123492733 + rotX: 359.95816 + rotY: 180.06604 + rotZ: 180.042374 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360025657/FA6F00409528D3D244D995C468B39E42029DEE38/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360026323/23C2F5CCD178545F4CFBEC78CC4DAA2BED50D397/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 101 +- 102 +- 103 +- 104 +- 105 +- 106 +- 107 +- 108 +- 109 +- 110 +- 115 +- 116 +Description: Root of all Evil +GMNotes: '' +GUID: 54af2a +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Encounter deck +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.92767715 + posY: 1.6757797 + posZ: 5.757151 + rotX: 359.919739 + rotY: 270.007233 + rotZ: 180.016815 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Parallel Universe 28e0a1/Bag c0897e/Deck Possesed 502900.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Parallel Universe 28e0a1/Bag c0897e/Deck Possesed 502900.yaml new file mode 100644 index 000000000..ce1c261d3 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Parallel Universe 28e0a1/Bag c0897e/Deck Possesed 502900.yaml @@ -0,0 +1,211 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 117 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360025657/FA6F00409528D3D244D995C468B39E42029DEE38/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360026323/23C2F5CCD178545F4CFBEC78CC4DAA2BED50D397/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 7a0de9 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.31074047 + posY: 1.17478383 + posZ: -5.47600269 + rotX: 0.00134579092 + rotY: 179.9982 + rotZ: 179.993683 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 118 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360025657/FA6F00409528D3D244D995C468B39E42029DEE38/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360026323/23C2F5CCD178545F4CFBEC78CC4DAA2BED50D397/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: a80fea + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.646132 + posY: 1.179601 + posZ: -4.879317 + rotX: -0.004562212 + rotY: 180.008667 + rotZ: 179.760559 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 119 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360025657/FA6F00409528D3D244D995C468B39E42029DEE38/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360026323/23C2F5CCD178545F4CFBEC78CC4DAA2BED50D397/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: d4be88 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.65880227 + posY: 1.19432139 + posZ: -6.23859453 + rotX: -0.0016928009 + rotY: 180.0004 + rotZ: 180.076782 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 120 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360025657/FA6F00409528D3D244D995C468B39E42029DEE38/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360026323/23C2F5CCD178545F4CFBEC78CC4DAA2BED50D397/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 59ee91 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.375538 + posY: 1.17600441 + posZ: -5.56246948 + rotX: 359.991821 + rotY: 179.983521 + rotZ: 179.7397 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360025657/FA6F00409528D3D244D995C468B39E42029DEE38/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360026323/23C2F5CCD178545F4CFBEC78CC4DAA2BED50D397/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 117 +- 118 +- 119 +- 120 +Description: Root of all Evil +GMNotes: '' +GUID: '502900' +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Possesed +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -11.7600088 + posY: 1.67678547 + posZ: 15.26179 + rotX: 359.920135 + rotY: 269.988464 + rotZ: 0.259819239 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Parallel Universe 28e0a1/Bag 1 Nightmare or Dream f39e68.ttslua b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Parallel Universe 28e0a1/Bag 1 Nightmare or Dream f39e68.ttslua new file mode 100644 index 000000000..4acf9ea11 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Parallel Universe 28e0a1/Bag 1 Nightmare or Dream f39e68.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 791837/Custom_Model_Bag Parallel Universe 28e0a1/Bag 1 Nightmare or Dream f39e68.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Parallel Universe 28e0a1/Bag 1 Nightmare or Dream f39e68.yaml new file mode 100644 index 000000000..88ae2b8ea --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Parallel Universe 28e0a1/Bag 1 Nightmare or Dream f39e68.yaml @@ -0,0 +1,51 @@ +Autoraise: true +ColorDiffuse: + b: 0.688913 + g: 0.0 + r: 0.7019608 +ContainedObjects: +- !include 'Bag 1 Nightmare or Dream f39e68/DeckCustom Encounter Deck c80dc6.yaml' +- !include 'Bag 1 Nightmare or Dream f39e68/Card Agenda f76027.yaml' +- !include 'Bag 1 Nightmare or Dream f39e68/Card Act abf334.yaml' +- !include 'Bag 1 Nightmare or Dream f39e68/Card Scenario 082fa1.yaml' +- !include 'Bag 1 Nightmare or Dream f39e68/Custom_Tile 65e2c3.yaml' +- !include 'Bag 1 Nightmare or Dream f39e68/Card Compass 144d2b.yaml' +- !include 'Bag 1 Nightmare or Dream f39e68/Deck Forest locations e65038.yaml' +- !include 'Bag 1 Nightmare or Dream f39e68/Card Dark Room 994a74.yaml' +- !include 'Bag 1 Nightmare or Dream f39e68/Card Dinning room 1a927c.yaml' +- !include 'Bag 1 Nightmare or Dream f39e68/Custom_Tile 7234af.yaml' +- !include 'Bag 1 Nightmare or Dream f39e68/Custom_Tile 7d48cf.yaml' +- !include 'Bag 1 Nightmare or Dream f39e68/Card Hallway 232875.yaml' +- !include 'Bag 1 Nightmare or Dream f39e68/Custom_Tile 311a3a.yaml' +- !include 'Bag 1 Nightmare or Dream f39e68/Card Entrance Hall c68778.yaml' +- !include 'Bag 1 Nightmare or Dream f39e68/Custom_Tile 721d8d.yaml' +- !include 'Bag 1 Nightmare or Dream f39e68/Card Scenario 69fec9.yaml' +Description: Parallel Universe +GMNotes: '' +GUID: f39e68 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Bag 1 Nightmare or Dream f39e68.ttslua' +LuaScriptState: '{"ml":{"082fa1":{"lock":false,"pos":{"x":-3.956,"y":1.6585,"z":-10.4412},"rot":{"x":359.9197,"y":269.9958,"z":180.0168}},"144d2b":{"lock":false,"pos":{"x":-11.0623,"y":1.6722,"z":11.9812},"rot":{"x":359.9201,"y":269.9939,"z":0.0169}},"1a927c":{"lock":false,"pos":{"x":-17.12,"y":1.6799,"z":-0.03},"rot":{"x":359.9201,"y":269.9962,"z":180.0169}},"232875":{"lock":false,"pos":{"x":-23.675,"y":1.6913,"z":7.5701},"rot":{"x":359.9201,"y":269.9802,"z":180.0169}},"311a3a":{"lock":false,"pos":{"x":-23.6766,"y":1.6157,"z":3.86},"rot":{"x":0.0169,"y":180,"z":0.08}},"65e2c3":{"lock":false,"pos":{"x":-10.6924,"y":1.4894,"z":-23.761},"rot":{"x":359.9201,"y":269.9842,"z":0.0169}},"69fec9":{"lock":false,"pos":{"x":-50.9244,"y":1.7294,"z":8.1784},"rot":{"x":359.9201,"y":269.9958,"z":180.0169}},"721d8d":{"lock":false,"pos":{"x":-23.6765,"y":1.6134,"z":-3.83},"rot":{"x":359.9831,"y":0.0001,"z":359.92}},"7234af":{"lock":false,"pos":{"x":-20.7993,"y":1.6127,"z":7.4483},"rot":{"x":359.9201,"y":269.9958,"z":0.0169}},"7d48cf":{"lock":false,"pos":{"x":-20.8111,"y":1.6117,"z":3.8534},"rot":{"x":359.9316,"y":315,"z":359.9554}},"994a74":{"lock":false,"pos":{"x":-17.12,"y":1.6821,"z":7.57},"rot":{"x":359.9201,"y":269.9959,"z":180.0169}},"abf334":{"lock":false,"pos":{"x":-2.6924,"y":1.6555,"z":-5.0416},"rot":{"x":359.9832,"y":0.0098,"z":359.9197}},"c68778":{"lock":false,"pos":{"x":-23.6765,"y":1.689,"z":-0.03},"rot":{"x":359.9201,"y":269.9974,"z":180.0169}},"c80dc6":{"lock":false,"pos":{"x":-3.9283,"y":1.7717,"z":5.7416},"rot":{"x":359.9197,"y":269.9996,"z":180.0168}},"e65038":{"lock":false,"pos":{"x":-10.8501,"y":1.6703,"z":8.4854},"rot":{"x":359.9201,"y":269.9908,"z":180.0169}},"f76027":{"lock":false,"pos":{"x":-2.7247,"y":1.6571,"z":0.3733},"rot":{"x":0.0169,"y":179.9852,"z":0.0803}}}}' +MaterialIndex: -1 +MeshIndex: -1 +Name: Bag +Nickname: '1: Nightmare or Dream' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.1609583 + posY: 1.28423512 + posZ: 6.46674871 + rotX: 0.07992619 + rotY: 89.99539 + rotZ: 359.9831 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Parallel Universe 28e0a1/Bag 1 Nightmare or Dream f39e68/Card Act abf334.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Parallel Universe 28e0a1/Bag 1 Nightmare or Dream f39e68/Card Act abf334.yaml new file mode 100644 index 000000000..489aab0b6 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Parallel Universe 28e0a1/Bag 1 Nightmare or Dream f39e68/Card Act abf334.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 213 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360017782/0D178EDF48DB79D322A87A7D2175FAC65F1CDE1C/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360024851/349BEF08B46195712D6E15AFD066A4425B7BDBD7/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: abf334 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Act +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.6924 + posY: 1.65546489 + posZ: -5.0416 + rotX: 359.9832 + rotY: 0.00979335 + rotZ: 359.919739 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Parallel Universe 28e0a1/Bag 1 Nightmare or Dream f39e68/Card Agenda f76027.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Parallel Universe 28e0a1/Bag 1 Nightmare or Dream f39e68/Card Agenda f76027.yaml new file mode 100644 index 000000000..d45f93393 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Parallel Universe 28e0a1/Bag 1 Nightmare or Dream f39e68/Card Agenda f76027.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 214 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360017782/0D178EDF48DB79D322A87A7D2175FAC65F1CDE1C/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360024851/349BEF08B46195712D6E15AFD066A4425B7BDBD7/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: f76027 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Agenda +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.72469974 + posY: 1.65710127 + posZ: 0.3733004 + rotX: 0.0168557614 + rotY: 179.9852 + rotZ: 0.08025317 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Parallel Universe 28e0a1/Bag 1 Nightmare or Dream f39e68/Card Compass 144d2b.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Parallel Universe 28e0a1/Bag 1 Nightmare or Dream f39e68/Card Compass 144d2b.yaml new file mode 100644 index 000000000..edf930459 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Parallel Universe 28e0a1/Bag 1 Nightmare or Dream f39e68/Card Compass 144d2b.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 522 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '5': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360025657/FA6F00409528D3D244D995C468B39E42029DEE38/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360026323/23C2F5CCD178545F4CFBEC78CC4DAA2BED50D397/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 144d2b +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Compass +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -11.0622988 + posY: 1.67216754 + posZ: 11.9812012 + rotX: 359.9201 + rotY: 269.9939 + rotZ: 0.0168844312 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Parallel Universe 28e0a1/Bag 1 Nightmare or Dream f39e68/Card Dark Room 994a74.yaml new file mode 100644 index 000000000..adb760f4a --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Parallel Universe 28e0a1/Bag 1 Nightmare or Dream f39e68/Card Dark Room 994a74.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 309 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '3': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360017782/0D178EDF48DB79D322A87A7D2175FAC65F1CDE1C/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360024851/349BEF08B46195712D6E15AFD066A4425B7BDBD7/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 994a74 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Dark Room +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -17.1200466 + posY: 1.68213868 + posZ: 7.570007 + rotX: 359.9201 + rotY: 269.9959 + rotZ: 180.016876 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Parallel Universe 28e0a1/Bag 1 Nightmare or Dream f39e68/Card Dinning room 1a927c.yaml new file mode 100644 index 000000000..83df650b0 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Parallel Universe 28e0a1/Bag 1 Nightmare or Dream f39e68/Card Dinning room 1a927c.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 310 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '3': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360017782/0D178EDF48DB79D322A87A7D2175FAC65F1CDE1C/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360024851/349BEF08B46195712D6E15AFD066A4425B7BDBD7/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 1a927c +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Dinning room +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -17.1200256 + posY: 1.67990077 + posZ: -0.029991284 + rotX: 359.9201 + rotY: 269.996155 + rotZ: 180.016876 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Parallel Universe 28e0a1/Bag 1 Nightmare or Dream f39e68/Card Entrance Hall c68778.yaml new file mode 100644 index 000000000..1c3298ecc --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Parallel Universe 28e0a1/Bag 1 Nightmare or Dream f39e68/Card Entrance Hall c68778.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 311 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '3': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360017782/0D178EDF48DB79D322A87A7D2175FAC65F1CDE1C/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360024851/349BEF08B46195712D6E15AFD066A4425B7BDBD7/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: c68778 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Entrance Hall +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -23.676548 + posY: 1.6890434 + posZ: -0.0299888887 + rotX: 359.9201 + rotY: 269.997375 + rotZ: 180.016861 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Parallel Universe 28e0a1/Bag 1 Nightmare or Dream f39e68/Card Hallway 232875.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Parallel Universe 28e0a1/Bag 1 Nightmare or Dream f39e68/Card Hallway 232875.yaml new file mode 100644 index 000000000..260c28c76 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Parallel Universe 28e0a1/Bag 1 Nightmare or Dream f39e68/Card Hallway 232875.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 312 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '3': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360017782/0D178EDF48DB79D322A87A7D2175FAC65F1CDE1C/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360024851/349BEF08B46195712D6E15AFD066A4425B7BDBD7/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: '232875' +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Hallway +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -23.6749878 + posY: 1.691279 + posZ: 7.57010126 + rotX: 359.9201 + rotY: 269.980164 + rotZ: 180.016891 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Parallel Universe 28e0a1/Bag 1 Nightmare or Dream f39e68/Card Scenario 082fa1.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Parallel Universe 28e0a1/Bag 1 Nightmare or Dream f39e68/Card Scenario 082fa1.yaml new file mode 100644 index 000000000..0259215c2 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Parallel Universe 28e0a1/Bag 1 Nightmare or Dream f39e68/Card Scenario 082fa1.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 115 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360017782/0D178EDF48DB79D322A87A7D2175FAC65F1CDE1C/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360024851/349BEF08B46195712D6E15AFD066A4425B7BDBD7/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 082fa1 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Scenario +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.95600033 + posY: 1.65847111 + posZ: -10.4412022 + rotX: 359.919739 + rotY: 269.995819 + rotZ: 180.01683 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Parallel Universe 28e0a1/Bag 1 Nightmare or Dream f39e68/Card Scenario 69fec9.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Parallel Universe 28e0a1/Bag 1 Nightmare or Dream f39e68/Card Scenario 69fec9.yaml new file mode 100644 index 000000000..b81dc08c1 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Parallel Universe 28e0a1/Bag 1 Nightmare or Dream f39e68/Card Scenario 69fec9.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 115 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360017782/0D178EDF48DB79D322A87A7D2175FAC65F1CDE1C/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360024851/349BEF08B46195712D6E15AFD066A4425B7BDBD7/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 69fec9 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Scenario +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -50.9244 + posY: 1.7294482 + posZ: 8.178401 + rotX: 359.9201 + rotY: 269.9958 + rotZ: 180.016876 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Parallel Universe 28e0a1/Bag 1 Nightmare or Dream f39e68/Custom_Tile 311a3a.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Parallel Universe 28e0a1/Bag 1 Nightmare or Dream f39e68/Custom_Tile 311a3a.yaml new file mode 100644 index 000000000..cb397b4ea --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Parallel Universe 28e0a1/Bag 1 Nightmare or Dream f39e68/Custom_Tile 311a3a.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 311a3a +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.6765976 + posY: 1.61565232 + posZ: 3.86001563 + rotX: 0.0168720949 + rotY: 180.0 + rotZ: 0.07995908 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Parallel Universe 28e0a1/Bag 1 Nightmare or Dream f39e68/Custom_Tile 65e2c3.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Parallel Universe 28e0a1/Bag 1 Nightmare or Dream f39e68/Custom_Tile 65e2c3.yaml new file mode 100644 index 000000000..d8b0d2028 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Parallel Universe 28e0a1/Bag 1 Nightmare or Dream f39e68/Custom_Tile 65e2c3.yaml @@ -0,0 +1,42 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.1 + Type: 0 + ImageScalar: 1.0 + ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/778493732360034212/3F499FB3809E9B591F8727868A6FF157452B0792/ + ImageURL: http://cloud-3.steamusercontent.com/ugc/778493732360034212/3F499FB3809E9B591F8727868A6FF157452B0792/ + WidthScale: 0.0 +Description: '' +GMNotes: '' +GUID: 65e2c3 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Tile +Nickname: '' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -10.6924438 + posY: 1.48941886 + posZ: -23.7609634 + rotX: 359.920135 + rotY: 269.984161 + rotZ: 0.016893724 + scaleX: 5.0 + scaleY: 1.0 + scaleZ: 5.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Parallel Universe 28e0a1/Bag 1 Nightmare or Dream f39e68/Custom_Tile 721d8d.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Parallel Universe 28e0a1/Bag 1 Nightmare or Dream f39e68/Custom_Tile 721d8d.yaml new file mode 100644 index 000000000..01bde30cf --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Parallel Universe 28e0a1/Bag 1 Nightmare or Dream f39e68/Custom_Tile 721d8d.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 721d8d +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.6765442 + posY: 1.61338818 + posZ: -3.82999468 + rotX: 359.983124 + rotY: 5.21652619e-05 + rotZ: 359.92 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Parallel Universe 28e0a1/Bag 1 Nightmare or Dream f39e68/Custom_Tile 7234af.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Parallel Universe 28e0a1/Bag 1 Nightmare or Dream f39e68/Custom_Tile 7234af.yaml new file mode 100644 index 000000000..171dc6b59 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Parallel Universe 28e0a1/Bag 1 Nightmare or Dream f39e68/Custom_Tile 7234af.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 7234af +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.7993126 + posY: 1.61269677 + posZ: 7.448281 + rotX: 359.9201 + rotY: 269.995819 + rotZ: 0.0169127379 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Parallel Universe 28e0a1/Bag 1 Nightmare or Dream f39e68/Custom_Tile 7d48cf.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Parallel Universe 28e0a1/Bag 1 Nightmare or Dream f39e68/Custom_Tile 7d48cf.yaml new file mode 100644 index 000000000..7c6fbcb0b --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Parallel Universe 28e0a1/Bag 1 Nightmare or Dream f39e68/Custom_Tile 7d48cf.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 7d48cf +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.8110733 + posY: 1.61165476 + posZ: 3.853383 + rotX: 359.93158 + rotY: 315.0 + rotZ: 359.955444 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Parallel Universe 28e0a1/Bag 1 Nightmare or Dream f39e68/Deck Forest locations e65038.yaml new file mode 100644 index 000000000..bf2001fb5 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Parallel Universe 28e0a1/Bag 1 Nightmare or Dream f39e68/Deck Forest locations e65038.yaml @@ -0,0 +1,423 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 308 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360017782/0D178EDF48DB79D322A87A7D2175FAC65F1CDE1C/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360024851/349BEF08B46195712D6E15AFD066A4425B7BDBD7/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: '558449' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -30.903944 + posY: 1.4791187 + posZ: -80.38631 + rotX: 0.02166846 + rotY: 270.000275 + rotZ: 180.018509 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 300 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360017782/0D178EDF48DB79D322A87A7D2175FAC65F1CDE1C/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360024851/349BEF08B46195712D6E15AFD066A4425B7BDBD7/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: bf5335 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -30.9786625 + posY: 1.52413678 + posZ: -79.83361 + rotX: 0.0174087584 + rotY: 269.992065 + rotZ: 179.848373 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 301 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360017782/0D178EDF48DB79D322A87A7D2175FAC65F1CDE1C/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360024851/349BEF08B46195712D6E15AFD066A4425B7BDBD7/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 48cb77 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 4.280912 + posY: 1.16978788 + posZ: -0.119691111 + rotX: -0.000357854733 + rotY: 180.000931 + rotZ: 0.00237444323 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 302 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360017782/0D178EDF48DB79D322A87A7D2175FAC65F1CDE1C/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360024851/349BEF08B46195712D6E15AFD066A4425B7BDBD7/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 082fa1 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 4.20020962 + posY: 1.19138753 + posZ: 0.2966898 + rotX: -0.0005791085 + rotY: 180.0025 + rotZ: 359.919983 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 303 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360017782/0D178EDF48DB79D322A87A7D2175FAC65F1CDE1C/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360024851/349BEF08B46195712D6E15AFD066A4425B7BDBD7/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 082fa1 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.81031251 + posY: 1.17374671 + posZ: 0.09194546 + rotX: -0.004057539 + rotY: 180.084152 + rotZ: 359.9507 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 304 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360017782/0D178EDF48DB79D322A87A7D2175FAC65F1CDE1C/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360024851/349BEF08B46195712D6E15AFD066A4425B7BDBD7/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 082fa1 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 4.422469 + posY: 1.17200065 + posZ: 0.381379783 + rotX: 359.439362 + rotY: 180.010117 + rotZ: 0.5703692 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 305 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360017782/0D178EDF48DB79D322A87A7D2175FAC65F1CDE1C/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360024851/349BEF08B46195712D6E15AFD066A4425B7BDBD7/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 082fa1 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 4.12777758 + posY: 1.17845321 + posZ: -0.283767432 + rotX: 0.00123726879 + rotY: 179.997955 + rotZ: 359.918671 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 306 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360017782/0D178EDF48DB79D322A87A7D2175FAC65F1CDE1C/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360024851/349BEF08B46195712D6E15AFD066A4425B7BDBD7/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 082fa1 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 4.26520348 + posY: 1.17974567 + posZ: 0.213641047 + rotX: 0.0017464814 + rotY: 179.987808 + rotZ: 359.9831 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 307 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360017782/0D178EDF48DB79D322A87A7D2175FAC65F1CDE1C/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360024851/349BEF08B46195712D6E15AFD066A4425B7BDBD7/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 082fa1 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 4.428113 + posY: 1.186807 + posZ: 0.5067777 + rotX: -0.0007619798 + rotY: 179.986115 + rotZ: 0.1294304 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '3': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360017782/0D178EDF48DB79D322A87A7D2175FAC65F1CDE1C/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360024851/349BEF08B46195712D6E15AFD066A4425B7BDBD7/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 308 +- 300 +- 301 +- 302 +- 303 +- 304 +- 305 +- 306 +- 307 +Description: '' +GMNotes: '' +GUID: e65038 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Forest locations +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -10.8501 + posY: 1.67026544 + posZ: 8.485401 + rotX: 359.9201 + rotY: 269.990845 + rotZ: 180.016876 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Parallel Universe 28e0a1/Bag 1 Nightmare or Dream f39e68/DeckCustom Encounter Deck c80dc6.yaml new file mode 100644 index 000000000..d5238d775 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Parallel Universe 28e0a1/Bag 1 Nightmare or Dream f39e68/DeckCustom Encounter Deck c80dc6.yaml @@ -0,0 +1,1107 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 400 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/924799832427578079/DE0451F6FBE6987034D6769C0B68B4D3D0CF908A/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360033426/DF5F33C3CE5EFCBEE990CDEE67881265D3BFBDB8/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: b69e83 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -1.34850311 + posY: 2.87484145 + posZ: 6.475006 + rotX: 1.8531307 + rotY: 180.0829 + rotZ: 182.7046 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 401 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: 544f1c + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 1.10514629e-05 + posY: 1.69548786 + posZ: -4.00392673e-06 + rotX: 0.00033891428 + rotY: 180.0 + rotZ: 180.0018 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 402 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: 544f1c + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 1.10514629e-05 + posY: 1.69548786 + posZ: -4.00392673e-06 + rotX: 0.00033891428 + rotY: 180.0 + rotZ: 180.0018 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 403 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: 544f1c + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 1.10514629e-05 + posY: 1.69548786 + posZ: -4.00392673e-06 + rotX: 0.00033891428 + rotY: 180.0 + rotZ: 180.0018 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 404 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: 544f1c + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 1.10514629e-05 + posY: 1.69548786 + posZ: -4.00392673e-06 + rotX: 0.00033891428 + rotY: 180.0 + rotZ: 180.0018 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 405 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: 544f1c + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 1.10514629e-05 + posY: 1.69548786 + posZ: -4.00392673e-06 + rotX: 0.00033891428 + rotY: 180.0 + rotZ: 180.0018 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 406 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: 544f1c + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 1.10514629e-05 + posY: 1.69548786 + posZ: -4.00392673e-06 + rotX: 0.00033891428 + rotY: 180.0 + rotZ: 180.0018 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 407 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: 544f1c + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 1.10514629e-05 + posY: 1.69548786 + posZ: -4.00392673e-06 + rotX: 0.00033891428 + rotY: 180.0 + rotZ: 180.0018 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 408 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: 544f1c + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 1.10514629e-05 + posY: 1.69548786 + posZ: -4.00392673e-06 + rotX: 0.00033891428 + rotY: 180.0 + rotZ: 180.0018 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 409 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: 544f1c + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 1.10514629e-05 + posY: 1.69548786 + posZ: -4.00392673e-06 + rotX: 0.00033891428 + rotY: 180.0 + rotZ: 180.0018 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 410 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: 544f1c + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 1.10514629e-05 + posY: 1.69548786 + posZ: -4.00392673e-06 + rotX: 0.00033891428 + rotY: 180.0 + rotZ: 180.0018 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 411 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: 544f1c + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 1.10514629e-05 + posY: 1.69548786 + posZ: -4.00392673e-06 + rotX: 0.00033891428 + rotY: 180.0 + rotZ: 180.0018 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 412 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: 544f1c + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 1.10514629e-05 + posY: 1.69548786 + posZ: -4.00392673e-06 + rotX: 0.00033891428 + rotY: 180.0 + rotZ: 180.0018 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 413 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: 544f1c + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 1.10514629e-05 + posY: 1.69548786 + posZ: -4.00392673e-06 + rotX: 0.00033891428 + rotY: 180.0 + rotZ: 180.0018 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 414 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: 544f1c + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 1.10514629e-05 + posY: 1.69548786 + posZ: -4.00392673e-06 + rotX: 0.00033891428 + rotY: 180.0 + rotZ: 180.0018 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 415 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: 544f1c + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 1.10514629e-05 + posY: 1.69548786 + posZ: -4.00392673e-06 + rotX: 0.00033891428 + rotY: 180.0 + rotZ: 180.0018 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 416 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: 544f1c + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 1.10514629e-05 + posY: 1.69548786 + posZ: -4.00392673e-06 + rotX: 0.00033891428 + rotY: 180.0 + rotZ: 180.0018 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 417 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: 544f1c + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 1.10514629e-05 + posY: 1.69548786 + posZ: -4.00392673e-06 + rotX: 0.00033891428 + rotY: 180.0 + rotZ: 180.0018 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 418 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: 544f1c + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 1.10514629e-05 + posY: 1.69548786 + posZ: -4.00392673e-06 + rotX: 0.00033891428 + rotY: 180.0 + rotZ: 180.0018 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 419 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: 544f1c + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 1.10514629e-05 + posY: 1.69548786 + posZ: -4.00392673e-06 + rotX: 0.00033891428 + rotY: 180.0 + rotZ: 180.0018 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 420 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: 544f1c + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 1.10514629e-05 + posY: 1.69548786 + posZ: -4.00392673e-06 + rotX: 0.00033891428 + rotY: 180.0 + rotZ: 180.0018 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 421 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: 544f1c + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 1.10514629e-05 + posY: 1.69548786 + posZ: -4.00392673e-06 + rotX: 0.00033891428 + rotY: 180.0 + rotZ: 180.0018 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 422 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: 544f1c + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 1.10514629e-05 + posY: 1.69548786 + posZ: -4.00392673e-06 + rotX: 0.00033891428 + rotY: 180.0 + rotZ: 180.0018 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 423 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: 544f1c + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 1.10514629e-05 + posY: 1.69548786 + posZ: -4.00392673e-06 + rotX: 0.00033891428 + rotY: 180.0 + rotZ: 180.0018 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 424 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: 544f1c + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 1.10514629e-05 + posY: 1.69548786 + posZ: -4.00392673e-06 + rotX: 0.00033891428 + rotY: 180.0 + rotZ: 180.0018 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 425 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: 544f1c + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 1.10514629e-05 + posY: 1.69548786 + posZ: -4.00392673e-06 + rotX: 0.00033891428 + rotY: 180.0 + rotZ: 180.0018 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 426 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: 544f1c + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 1.10514629e-05 + posY: 1.69548786 + posZ: -4.00392673e-06 + rotX: 0.00033891428 + rotY: 180.0 + rotZ: 180.0018 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 427 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: 544f1c + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 1.10514629e-05 + posY: 1.69548786 + posZ: -4.00392673e-06 + rotX: 0.00033891428 + rotY: 180.0 + rotZ: 180.0018 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 428 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: 544f1c + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 1.10514629e-05 + posY: 1.69548786 + posZ: -4.00392673e-06 + rotX: 0.00033891428 + rotY: 180.0 + rotZ: 180.0018 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 429 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/924799832427578079/DE0451F6FBE6987034D6769C0B68B4D3D0CF908A/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360033426/DF5F33C3CE5EFCBEE990CDEE67881265D3BFBDB8/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: b31c80 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.65111756 + posY: 1.34628642 + posZ: 0.46286568 + rotX: -0.000280696549 + rotY: 179.9962 + rotZ: 0.00274799718 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '4': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/924799832427578079/DE0451F6FBE6987034D6769C0B68B4D3D0CF908A/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360033426/DF5F33C3CE5EFCBEE990CDEE67881265D3BFBDB8/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 400 +- 401 +- 402 +- 403 +- 404 +- 405 +- 406 +- 407 +- 408 +- 409 +- 410 +- 411 +- 412 +- 413 +- 414 +- 415 +- 416 +- 417 +- 418 +- 419 +- 420 +- 421 +- 422 +- 423 +- 424 +- 425 +- 426 +- 427 +- 428 +- 429 +Description: '' +GMNotes: '' +GUID: c80dc6 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: DeckCustom +Nickname: Encounter Deck +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.9283 + posY: 1.7717061 + posZ: 5.741601 + 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 The Side Missions 791837/Custom_Model_Bag Parallel Universe 28e0a1/Bag 2 Awake 6ca52c.ttslua b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Parallel Universe 28e0a1/Bag 2 Awake 6ca52c.ttslua new file mode 100644 index 000000000..4acf9ea11 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Parallel Universe 28e0a1/Bag 2 Awake 6ca52c.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 791837/Custom_Model_Bag Parallel Universe 28e0a1/Bag 2 Awake 6ca52c.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Parallel Universe 28e0a1/Bag 2 Awake 6ca52c.yaml new file mode 100644 index 000000000..cb3e899b4 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Parallel Universe 28e0a1/Bag 2 Awake 6ca52c.yaml @@ -0,0 +1,49 @@ +Autoraise: true +ColorDiffuse: + b: 0.7019608 + g: 0.0 + r: 0.18266657 +ContainedObjects: +- !include 'Bag 2 Awake 6ca52c/Deck Encounter Deck 1df3f1.yaml' +- !include 'Bag 2 Awake 6ca52c/DeckCustom Agenda deck f4709f.yaml' +- !include 'Bag 2 Awake 6ca52c/Deck Act deck 0ba5cb.yaml' +- !include 'Bag 2 Awake 6ca52c/Card Scenario 082fa1.yaml' +- !include 'Bag 2 Awake 6ca52c/Notecard Instruction 7e4091.yaml' +- !include 'Bag 2 Awake 6ca52c/Custom_Tile 3443db.yaml' +- !include 'Bag 2 Awake 6ca52c/Deck Character Deck d2ee66.yaml' +- !include 'Bag 2 Awake 6ca52c/Deck Weather Deck 080bb7.yaml' +- !include 'Bag 2 Awake 6ca52c/Card a94d87.yaml' +- !include 'Bag 2 Awake 6ca52c/Deck a76062.yaml' +- !include 'Bag 2 Awake 6ca52c/Card the House 18487b.yaml' +- !include 'Bag 2 Awake 6ca52c/Card the Forest 17dea8.yaml' +- !include 'Bag 2 Awake 6ca52c/Custom_Token b0fd83.yaml' +- !include 'Bag 2 Awake 6ca52c/Deck Zz fccb6c.yaml' +Description: Parallel Universe +GMNotes: '' +GUID: 6ca52c +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Bag 2 Awake 6ca52c.ttslua' +LuaScriptState: '{"ml":{"080bb7":{"lock":false,"pos":{"x":-12.1512,"y":1.6635,"z":9.8782},"rot":{"x":359.9201,"y":269.9885,"z":0.0169}},"082fa1":{"lock":false,"pos":{"x":-3.956,"y":1.6556,"z":-10.4412},"rot":{"x":359.9197,"y":269.9999,"z":0.0168}},"0ba5cb":{"lock":false,"pos":{"x":-2.6885,"y":1.6535,"z":-5.0485},"rot":{"x":0.0168,"y":179.9906,"z":0.0803}},"17dea8":{"lock":false,"pos":{"x":-23.6765,"y":1.689,"z":-0.03},"rot":{"x":359.9201,"y":269.9954,"z":180.0169}},"18487b":{"lock":false,"pos":{"x":-23.6766,"y":1.6913,"z":7.57},"rot":{"x":359.9201,"y":269.9955,"z":180.0169}},"1df3f1":{"lock":false,"pos":{"x":-3.9276,"y":1.6651,"z":5.7572},"rot":{"x":359.9197,"y":269.992,"z":180.0168}},"3443db":{"lock":false,"pos":{"x":-9.0945,"y":1.4862,"z":-27.1621},"rot":{"x":359.9201,"y":269.9999,"z":0.0169}},"7e4091":{"lock":false,"pos":{"x":-11.4489,"y":1.6642,"z":-11.1337},"rot":{"x":0.0799,"y":90.0101,"z":359.9832}},"a76062":{"lock":false,"pos":{"x":-17.12,"y":1.6835,"z":-0.03},"rot":{"x":359.9201,"y":270.0041,"z":180.0169}},"a94d87":{"lock":false,"pos":{"x":-17.1199,"y":1.6782,"z":3.86},"rot":{"x":359.9201,"y":269.9999,"z":0.0169}},"b0fd83":{"lock":false,"pos":{"x":-20.7619,"y":1.7148,"z":14.8183},"rot":{"x":359.9201,"y":269.9963,"z":0.0169}},"d2ee66":{"lock":false,"pos":{"x":-12.5845,"y":1.7084,"z":13.4058},"rot":{"x":359.9201,"y":270.0015,"z":0.0169}},"f4709f":{"lock":false,"pos":{"x":-2.7247,"y":1.6551,"z":0.3733},"rot":{"x":0.0169,"y":179.9892,"z":0.0803}},"fccb6c":{"lock":false,"pos":{"x":-20.0094,"y":1.6927,"z":11.4949},"rot":{"x":359.9832,"y":0.0397,"z":179.9201}}}}' +MaterialIndex: -1 +MeshIndex: -1 +Name: Bag +Nickname: '2: Awake' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.1258211 + posY: 1.2829752 + posZ: 1.85307324 + rotX: 0.079927966 + rotY: 89.99772 + rotZ: 359.9831 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Parallel Universe 28e0a1/Bag 2 Awake 6ca52c/Card a94d87.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Parallel Universe 28e0a1/Bag 2 Awake 6ca52c/Card a94d87.yaml new file mode 100644 index 000000000..a8d825bfe --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Parallel Universe 28e0a1/Bag 2 Awake 6ca52c/Card a94d87.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 1139 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '11': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360017782/0D178EDF48DB79D322A87A7D2175FAC65F1CDE1C/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360024851/349BEF08B46195712D6E15AFD066A4425B7BDBD7/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: a94d87 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -17.1199322 + posY: 1.67822313 + posZ: 3.859985 + rotX: 359.9201 + rotY: 269.999939 + rotZ: 0.0168757122 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Parallel Universe 28e0a1/Bag 2 Awake 6ca52c/Card Scenario 082fa1.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Parallel Universe 28e0a1/Bag 2 Awake 6ca52c/Card Scenario 082fa1.yaml new file mode 100644 index 000000000..a5b6f545b --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Parallel Universe 28e0a1/Bag 2 Awake 6ca52c/Card Scenario 082fa1.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 1024 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '10': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360017782/0D178EDF48DB79D322A87A7D2175FAC65F1CDE1C/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360024851/349BEF08B46195712D6E15AFD066A4425B7BDBD7/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 082fa1 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Scenario +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.95596147 + posY: 1.65564811 + posZ: -10.4411535 + rotX: 359.919739 + rotY: 269.999939 + rotZ: 0.0168424677 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Parallel Universe 28e0a1/Bag 2 Awake 6ca52c/Card the Forest 17dea8.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Parallel Universe 28e0a1/Bag 2 Awake 6ca52c/Card the Forest 17dea8.yaml new file mode 100644 index 000000000..f976c3588 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Parallel Universe 28e0a1/Bag 2 Awake 6ca52c/Card the Forest 17dea8.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 1137 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '11': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360017782/0D178EDF48DB79D322A87A7D2175FAC65F1CDE1C/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360024851/349BEF08B46195712D6E15AFD066A4425B7BDBD7/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 17dea8 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: the Forest +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -23.67655 + posY: 1.6890434 + posZ: -0.02999367 + rotX: 359.9201 + rotY: 269.995422 + rotZ: 180.016876 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Parallel Universe 28e0a1/Bag 2 Awake 6ca52c/Card the House 18487b.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Parallel Universe 28e0a1/Bag 2 Awake 6ca52c/Card the House 18487b.yaml new file mode 100644 index 000000000..f3fba52bc --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Parallel Universe 28e0a1/Bag 2 Awake 6ca52c/Card the House 18487b.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 1136 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '11': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360017782/0D178EDF48DB79D322A87A7D2175FAC65F1CDE1C/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360024851/349BEF08B46195712D6E15AFD066A4425B7BDBD7/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 18487b +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: the House +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -23.6765671 + posY: 1.69128132 + posZ: 7.570008 + rotX: 359.9201 + rotY: 269.995453 + rotZ: 180.016861 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Parallel Universe 28e0a1/Bag 2 Awake 6ca52c/Custom_Tile 3443db.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Parallel Universe 28e0a1/Bag 2 Awake 6ca52c/Custom_Tile 3443db.yaml new file mode 100644 index 000000000..0c06d40ff --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Parallel Universe 28e0a1/Bag 2 Awake 6ca52c/Custom_Tile 3443db.yaml @@ -0,0 +1,42 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.1 + Type: 0 + ImageScalar: 1.0 + ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/778493732360034959/24744A8D3EB3424172CC339973D73131FAE53579/ + ImageURL: http://cloud-3.steamusercontent.com/ugc/778493732360034959/24744A8D3EB3424172CC339973D73131FAE53579/ + WidthScale: 0.0 +Description: '' +GMNotes: '' +GUID: 3443db +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Tile +Nickname: '' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -9.094547 + posY: 1.48618984 + posZ: -27.1621265 + rotX: 359.920135 + rotY: 269.999878 + rotZ: 0.0168718528 + scaleX: 6.43188572 + scaleY: 1.0 + scaleZ: 6.43188572 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Parallel Universe 28e0a1/Bag 2 Awake 6ca52c/Custom_Token b0fd83.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Parallel Universe 28e0a1/Bag 2 Awake 6ca52c/Custom_Token b0fd83.yaml new file mode 100644 index 000000000..59b33571b --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Parallel Universe 28e0a1/Bag 2 Awake 6ca52c/Custom_Token b0fd83.yaml @@ -0,0 +1,41 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +CustomImage: + CustomToken: + MergeDistancePixels: 15.0 + Stackable: false + Thickness: 0.2 + ImageScalar: 1.0 + ImageSecondaryURL: '' + ImageURL: http://cloud-3.steamusercontent.com/ugc/924799832428373998/6E715BD2C03EDEBE8325CD8E9DFD95AD0603634B/ + WidthScale: 0.0 +Description: '' +GMNotes: '' +GUID: b0fd83 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Token +Nickname: '' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -20.761858 + posY: 1.71481478 + posZ: 14.818326 + rotX: 359.9201 + rotY: 269.9963 + rotZ: 0.0168934464 + scaleX: 0.47075966 + scaleY: 1.0 + scaleZ: 0.47075966 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Parallel Universe 28e0a1/Bag 2 Awake 6ca52c/Deck a76062.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Parallel Universe 28e0a1/Bag 2 Awake 6ca52c/Deck a76062.yaml new file mode 100644 index 000000000..746e93b45 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Parallel Universe 28e0a1/Bag 2 Awake 6ca52c/Deck a76062.yaml @@ -0,0 +1,222 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 1200 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '12': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360032322/0361B60FC02E6DE524976EC73CA404DE26C86E4E/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360032780/8D983FE1F4E0CD54FAFA4DBE73D9AA79E3821DE4/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 01ba02 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -17.12001 + posY: 1.830568 + posZ: -3.82999754 + rotX: 359.922058 + rotY: 269.9835 + rotZ: 180.019669 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 1140 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '11': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360017782/0D178EDF48DB79D322A87A7D2175FAC65F1CDE1C/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360024851/349BEF08B46195712D6E15AFD066A4425B7BDBD7/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: eaa991 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -17.11764 + posY: 1.80665 + posZ: -3.82848859 + rotX: 358.179 + rotY: 270.021 + rotZ: 178.854736 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 1138 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '11': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360017782/0D178EDF48DB79D322A87A7D2175FAC65F1CDE1C/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360024851/349BEF08B46195712D6E15AFD066A4425B7BDBD7/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: fda8f3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -17.118227 + posY: 1.83055246 + posZ: -3.831836 + rotX: 358.512482 + rotY: 269.982 + rotZ: 181.2504 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 1141 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '11': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360017782/0D178EDF48DB79D322A87A7D2175FAC65F1CDE1C/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360024851/349BEF08B46195712D6E15AFD066A4425B7BDBD7/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: af6f67 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -17.11875 + posY: 1.81292892 + posZ: -3.831364 + rotX: 358.48703 + rotY: 269.980469 + rotZ: 181.278519 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '11': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360017782/0D178EDF48DB79D322A87A7D2175FAC65F1CDE1C/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360024851/349BEF08B46195712D6E15AFD066A4425B7BDBD7/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + '12': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360032322/0361B60FC02E6DE524976EC73CA404DE26C86E4E/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360032780/8D983FE1F4E0CD54FAFA4DBE73D9AA79E3821DE4/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 1200 +- 1140 +- 1138 +- 1141 +Description: '' +GMNotes: '' +GUID: a76062 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -17.1200352 + posY: 1.68345368 + posZ: -0.0299924724 + rotX: 359.9201 + rotY: 270.0041 + rotZ: 180.016861 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Parallel Universe 28e0a1/Bag 2 Awake 6ca52c/Deck Act deck 0ba5cb.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Parallel Universe 28e0a1/Bag 2 Awake 6ca52c/Deck Act deck 0ba5cb.yaml new file mode 100644 index 000000000..174d4b446 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Parallel Universe 28e0a1/Bag 2 Awake 6ca52c/Deck Act deck 0ba5cb.yaml @@ -0,0 +1,211 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 103 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360026684/51B5CE32FD8535ABC84E5692FCBB7C81FC701935/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360030426/1421A99F9324B0D56DA1244A21039DB98A572783/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 741dba + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 5.10761166 + posY: 1.1768297 + posZ: 0.1264448 + rotX: -0.00203160942 + rotY: 90.00012 + rotZ: 179.9966 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 102 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360026684/51B5CE32FD8535ABC84E5692FCBB7C81FC701935/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360030426/1421A99F9324B0D56DA1244A21039DB98A572783/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 741dba + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 4.167563 + posY: 1.19046831 + posZ: 0.125050068 + rotX: -0.00418534456 + rotY: 90.00039 + rotZ: 179.99765 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 101 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360026684/51B5CE32FD8535ABC84E5692FCBB7C81FC701935/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360030426/1421A99F9324B0D56DA1244A21039DB98A572783/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 3707e9 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 5.015523 + posY: 1.17266035 + posZ: 0.424688131 + rotX: 0.00705948425 + rotY: 90.00257 + rotZ: 179.995819 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 100 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360026684/51B5CE32FD8535ABC84E5692FCBB7C81FC701935/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360030426/1421A99F9324B0D56DA1244A21039DB98A572783/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 741dba + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 4.74437141 + posY: 1.03435266 + posZ: 0.3398039 + rotX: 359.993958 + rotY: 89.99775 + rotZ: 179.997711 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360026684/51B5CE32FD8535ABC84E5692FCBB7C81FC701935/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360030426/1421A99F9324B0D56DA1244A21039DB98A572783/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 103 +- 102 +- 101 +- 100 +Description: '' +GMNotes: '' +GUID: 0ba5cb +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Act deck +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.688478 + posY: 1.65349448 + posZ: -5.04853964 + rotX: 0.0168482885 + rotY: 179.990646 + rotZ: 0.08025473 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Parallel Universe 28e0a1/Bag 2 Awake 6ca52c/Deck Character Deck d2ee66.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Parallel Universe 28e0a1/Bag 2 Awake 6ca52c/Deck Character Deck d2ee66.yaml new file mode 100644 index 000000000..0aed4273d --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Parallel Universe 28e0a1/Bag 2 Awake 6ca52c/Deck Character Deck d2ee66.yaml @@ -0,0 +1,891 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 231 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/924799832427578079/DE0451F6FBE6987034D6769C0B68B4D3D0CF908A/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360033426/DF5F33C3CE5EFCBEE990CDEE67881265D3BFBDB8/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 1983c4 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -0.256072074 + posY: 1.03166091 + posZ: -10.751936 + rotX: -0.0035516026 + rotY: 180.015 + rotZ: 359.979462 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/924799832427578079/DE0451F6FBE6987034D6769C0B68B4D3D0CF908A/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360033426/DF5F33C3CE5EFCBEE990CDEE67881265D3BFBDB8/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 31a9e3 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -0.4165366 + posY: 1.17018116 + posZ: -10.5188885 + rotX: -0.005258863 + rotY: 179.93895 + rotZ: 359.932617 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/924799832427578079/DE0451F6FBE6987034D6769C0B68B4D3D0CF908A/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360033426/DF5F33C3CE5EFCBEE990CDEE67881265D3BFBDB8/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: f37124 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -0.8249237 + posY: 1.18743753 + posZ: -10.3244839 + rotX: -0.000104937339 + rotY: 179.971466 + rotZ: 359.9482 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 230 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/924799832427578079/DE0451F6FBE6987034D6769C0B68B4D3D0CF908A/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360033426/DF5F33C3CE5EFCBEE990CDEE67881265D3BFBDB8/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 544f1c + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.6988953 + posY: 1.17392039 + posZ: -4.433229 + rotX: -0.000904833432 + rotY: 180.008392 + rotZ: 0.0002669965 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 237 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/924799832427578079/DE0451F6FBE6987034D6769C0B68B4D3D0CF908A/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360033426/DF5F33C3CE5EFCBEE990CDEE67881265D3BFBDB8/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: d43b01 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.04015446 + posY: 1.03209472 + posZ: -3.94597578 + rotX: 359.981232 + rotY: 180.048523 + rotZ: 359.9868 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/924799832427578079/DE0451F6FBE6987034D6769C0B68B4D3D0CF908A/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360033426/DF5F33C3CE5EFCBEE990CDEE67881265D3BFBDB8/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 1349cf + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.48329639 + posY: 1.17562509 + posZ: -4.016093 + rotX: 359.9782 + rotY: 180.0324 + rotZ: 0.302245438 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 235 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/924799832427578079/DE0451F6FBE6987034D6769C0B68B4D3D0CF908A/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360033426/DF5F33C3CE5EFCBEE990CDEE67881265D3BFBDB8/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 5fa012 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.01751542 + posY: 1.18770158 + posZ: -4.10159063 + rotX: 0.00222757342 + rotY: 180.026169 + rotZ: -0.0007479334 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 236 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/924799832427578079/DE0451F6FBE6987034D6769C0B68B4D3D0CF908A/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360033426/DF5F33C3CE5EFCBEE990CDEE67881265D3BFBDB8/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: d5d732 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -1.9103663 + posY: 1.17406106 + posZ: -4.357795 + rotX: 0.004290582 + rotY: 180.02832 + rotZ: 359.976746 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 239 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/924799832427578079/DE0451F6FBE6987034D6769C0B68B4D3D0CF908A/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360033426/DF5F33C3CE5EFCBEE990CDEE67881265D3BFBDB8/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 2edaba + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -8.849273 + posY: 1.3165313 + posZ: -9.807205 + rotX: 359.988831 + rotY: 180.001755 + rotZ: 176.690643 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 241 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/924799832427578079/DE0451F6FBE6987034D6769C0B68B4D3D0CF908A/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360033426/DF5F33C3CE5EFCBEE990CDEE67881265D3BFBDB8/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 84c693 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -9.039475 + posY: 1.14545822 + posZ: -9.583717 + rotX: 359.992523 + rotY: 179.970917 + rotZ: 175.852341 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 240 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/924799832427578079/DE0451F6FBE6987034D6769C0B68B4D3D0CF908A/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360033426/DF5F33C3CE5EFCBEE990CDEE67881265D3BFBDB8/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 1a8eea + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -7.93838263 + posY: 1.20638072 + posZ: -9.724316 + rotX: 0.03365099 + rotY: 180.02005 + rotZ: 179.1437 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 242 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/924799832427578079/DE0451F6FBE6987034D6769C0B68B4D3D0CF908A/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360033426/DF5F33C3CE5EFCBEE990CDEE67881265D3BFBDB8/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 25a0af + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -7.54961348 + posY: 1.17820346 + posZ: -9.72827 + rotX: 359.992035 + rotY: 179.999649 + rotZ: 179.984879 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 238 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/924799832427578079/DE0451F6FBE6987034D6769C0B68B4D3D0CF908A/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360033426/DF5F33C3CE5EFCBEE990CDEE67881265D3BFBDB8/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 7c882c + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -7.41669559 + posY: 1.03446972 + posZ: -10.2125807 + rotX: -0.00281370478 + rotY: 179.9994 + rotZ: 179.999176 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 932 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360017782/0D178EDF48DB79D322A87A7D2175FAC65F1CDE1C/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360024851/349BEF08B46195712D6E15AFD066A4425B7BDBD7/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 14683e + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.165614933 + posY: 1.182496 + posZ: -6.59027672 + rotX: 0.000105173844 + rotY: 180.0008 + rotZ: 180.000183 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 931 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360017782/0D178EDF48DB79D322A87A7D2175FAC65F1CDE1C/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360024851/349BEF08B46195712D6E15AFD066A4425B7BDBD7/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: c407db + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -0.09401585 + posY: 1.204153 + posZ: -6.48130941 + rotX: 0.006244859 + rotY: 179.971359 + rotZ: 178.290985 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 930 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360017782/0D178EDF48DB79D322A87A7D2175FAC65F1CDE1C/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360024851/349BEF08B46195712D6E15AFD066A4425B7BDBD7/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 7a3125 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.320422262 + posY: 1.33132422 + posZ: -5.14283466 + rotX: 357.7239 + rotY: 179.997833 + rotZ: 180.040161 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 929 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360017782/0D178EDF48DB79D322A87A7D2175FAC65F1CDE1C/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360024851/349BEF08B46195712D6E15AFD066A4425B7BDBD7/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: daff54 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.208187625 + posY: 1.16929221 + posZ: -4.843977 + rotX: 357.264343 + rotY: 179.978 + rotZ: 180.032684 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 928 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360017782/0D178EDF48DB79D322A87A7D2175FAC65F1CDE1C/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360024851/349BEF08B46195712D6E15AFD066A4425B7BDBD7/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: d67ed2 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -0.549528539 + posY: 1.18939149 + posZ: -5.940664 + rotX: 0.00128971878 + rotY: 179.862854 + rotZ: 179.9608 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 927 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360017782/0D178EDF48DB79D322A87A7D2175FAC65F1CDE1C/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360024851/349BEF08B46195712D6E15AFD066A4425B7BDBD7/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: fcbaf3 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.2425858 + posY: 1.29997444 + posZ: -6.570806 + rotX: 4.87422132 + rotY: 180.0532 + rotZ: 179.88 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 926 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '9': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360017782/0D178EDF48DB79D322A87A7D2175FAC65F1CDE1C/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360024851/349BEF08B46195712D6E15AFD066A4425B7BDBD7/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: a3bc4a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -29.3654385 + posY: 1.58608568 + posZ: -70.57001 + rotX: 0.0202761535 + rotY: 269.999847 + rotZ: 0.0173774026 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/924799832427578079/DE0451F6FBE6987034D6769C0B68B4D3D0CF908A/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360033426/DF5F33C3CE5EFCBEE990CDEE67881265D3BFBDB8/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '9': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360017782/0D178EDF48DB79D322A87A7D2175FAC65F1CDE1C/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360024851/349BEF08B46195712D6E15AFD066A4425B7BDBD7/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 231 +- 232 +- 233 +- 230 +- 237 +- 234 +- 235 +- 236 +- 239 +- 241 +- 240 +- 242 +- 238 +- 932 +- 931 +- 930 +- 929 +- 928 +- 927 +- 926 +Description: '' +GMNotes: '' +GUID: d2ee66 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Character Deck +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -12.5844851 + posY: 1.70843554 + posZ: 13.4057827 + rotX: 359.9201 + rotY: 270.0015 + rotZ: 0.0168781858 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Parallel Universe 28e0a1/Bag 2 Awake 6ca52c/Deck Encounter Deck 1df3f1.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Parallel Universe 28e0a1/Bag 2 Awake 6ca52c/Deck Encounter Deck 1df3f1.yaml new file mode 100644 index 000000000..d28173f2b --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Parallel Universe 28e0a1/Bag 2 Awake 6ca52c/Deck Encounter Deck 1df3f1.yaml @@ -0,0 +1,470 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 253 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/924799832427578079/DE0451F6FBE6987034D6769C0B68B4D3D0CF908A/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360033426/DF5F33C3CE5EFCBEE990CDEE67881265D3BFBDB8/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: de113d + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.5887866 + posY: 1.03167462 + posZ: -8.497283 + rotX: 0.00153795746 + rotY: 180.00032 + rotZ: 0.000567797746 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 254 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/924799832427578079/DE0451F6FBE6987034D6769C0B68B4D3D0CF908A/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360033426/DF5F33C3CE5EFCBEE990CDEE67881265D3BFBDB8/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 4cb27d + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.74434042 + posY: 1.17023957 + posZ: -8.392547 + rotX: 0.009989944 + rotY: 179.999786 + rotZ: 359.989746 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 255 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/924799832427578079/DE0451F6FBE6987034D6769C0B68B4D3D0CF908A/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360033426/DF5F33C3CE5EFCBEE990CDEE67881265D3BFBDB8/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 31e187 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.84178543 + posY: 1.187619 + posZ: -8.603069 + rotX: -0.000235646527 + rotY: 180.000122 + rotZ: -0.00510864845 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 256 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/924799832427578079/DE0451F6FBE6987034D6769C0B68B4D3D0CF908A/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360033426/DF5F33C3CE5EFCBEE990CDEE67881265D3BFBDB8/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: a02546 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.77564716 + posY: 1.17394209 + posZ: -8.4628315 + rotX: -0.0008142625 + rotY: 179.999756 + rotZ: 0.000822242931 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 257 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/924799832427578079/DE0451F6FBE6987034D6769C0B68B4D3D0CF908A/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360033426/DF5F33C3CE5EFCBEE990CDEE67881265D3BFBDB8/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 612cac + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.097586 + posY: 1.171948 + posZ: -8.359032 + rotX: 0.00235053129 + rotY: 180.000168 + rotZ: 359.990723 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 258 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/924799832427578079/DE0451F6FBE6987034D6769C0B68B4D3D0CF908A/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360033426/DF5F33C3CE5EFCBEE990CDEE67881265D3BFBDB8/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 68f7e7 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.44986224 + posY: 1.17468655 + posZ: -8.636759 + rotX: 0.00192214677 + rotY: 179.999832 + rotZ: 0.000618604245 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 261 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/924799832427578079/DE0451F6FBE6987034D6769C0B68B4D3D0CF908A/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360033426/DF5F33C3CE5EFCBEE990CDEE67881265D3BFBDB8/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 21ee79 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.431489 + posY: 1.17966914 + posZ: -8.177953 + rotX: 0.00145176274 + rotY: 180.0 + rotZ: 0.00248735584 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 262 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/924799832427578079/DE0451F6FBE6987034D6769C0B68B4D3D0CF908A/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360033426/DF5F33C3CE5EFCBEE990CDEE67881265D3BFBDB8/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: aa12b9 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.24025249 + posY: 1.1858325 + posZ: -8.707647 + rotX: 0.000898190541 + rotY: 179.998611 + rotZ: 0.0117715718 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 1201 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '12': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360032322/0361B60FC02E6DE524976EC73CA404DE26C86E4E/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360032780/8D983FE1F4E0CD54FAFA4DBE73D9AA79E3821DE4/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: '912508' + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.56297231 + posY: 1.14335835 + posZ: -8.522582 + rotX: -0.00236572465 + rotY: 179.996216 + rotZ: -0.000925248838 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 1202 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '12': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360032322/0361B60FC02E6DE524976EC73CA404DE26C86E4E/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360032780/8D983FE1F4E0CD54FAFA4DBE73D9AA79E3821DE4/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: '493754' + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.71935034 + posY: 1.15314722 + posZ: -8.477892 + rotX: 0.0009461875 + rotY: 179.999451 + rotZ: -0.000929441769 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '12': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360032322/0361B60FC02E6DE524976EC73CA404DE26C86E4E/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360032780/8D983FE1F4E0CD54FAFA4DBE73D9AA79E3821DE4/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + '2': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/924799832427578079/DE0451F6FBE6987034D6769C0B68B4D3D0CF908A/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360033426/DF5F33C3CE5EFCBEE990CDEE67881265D3BFBDB8/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 253 +- 254 +- 255 +- 256 +- 257 +- 258 +- 261 +- 262 +- 1201 +- 1202 +Description: Awaken +GMNotes: '' +GUID: 1df3f1 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Encounter Deck +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.92756534 + posY: 1.6651206 + posZ: 5.75715351 + rotX: 359.919739 + rotY: 269.991974 + rotZ: 180.01683 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Parallel Universe 28e0a1/Bag 2 Awake 6ca52c/Deck Weather Deck 080bb7.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Parallel Universe 28e0a1/Bag 2 Awake 6ca52c/Deck Weather Deck 080bb7.yaml new file mode 100644 index 000000000..6730308c1 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Parallel Universe 28e0a1/Bag 2 Awake 6ca52c/Deck Weather Deck 080bb7.yaml @@ -0,0 +1,463 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 252 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/924799832427578079/DE0451F6FBE6987034D6769C0B68B4D3D0CF908A/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360033426/DF5F33C3CE5EFCBEE990CDEE67881265D3BFBDB8/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 262b38 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.7623117 + posY: 1.03448427 + posZ: -8.396417 + rotX: -0.00212074677 + rotY: 180.000778 + rotZ: 180.003387 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 249 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/924799832427578079/DE0451F6FBE6987034D6769C0B68B4D3D0CF908A/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360033426/DF5F33C3CE5EFCBEE990CDEE67881265D3BFBDB8/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 9db071 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -4.14301872 + posY: 1.17878115 + posZ: -7.84194565 + rotX: 359.967438 + rotY: 180.065 + rotZ: 180.043167 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 243 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/924799832427578079/DE0451F6FBE6987034D6769C0B68B4D3D0CF908A/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360033426/DF5F33C3CE5EFCBEE990CDEE67881265D3BFBDB8/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 67879e + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.6722424 + posY: 1.56652379 + posZ: -7.6669 + rotX: 0.189866781 + rotY: 180.062866 + rotZ: 180.783035 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 244 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/924799832427578079/DE0451F6FBE6987034D6769C0B68B4D3D0CF908A/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360033426/DF5F33C3CE5EFCBEE990CDEE67881265D3BFBDB8/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 82d94f + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.22216344 + posY: 1.54802728 + posZ: -8.297047 + rotX: 0.000342333631 + rotY: 179.922409 + rotZ: 183.112839 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 245 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/924799832427578079/DE0451F6FBE6987034D6769C0B68B4D3D0CF908A/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360033426/DF5F33C3CE5EFCBEE990CDEE67881265D3BFBDB8/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 9c5795 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.346688 + posY: 1.56678224 + posZ: -8.334295 + rotX: 0.1021838 + rotY: 179.952179 + rotZ: 182.313339 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 246 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/924799832427578079/DE0451F6FBE6987034D6769C0B68B4D3D0CF908A/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360033426/DF5F33C3CE5EFCBEE990CDEE67881265D3BFBDB8/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 5d6bf7 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.45427728 + posY: 1.67356431 + posZ: -8.260313 + rotX: 0.138984635 + rotY: 180.005508 + rotZ: 184.209808 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 247 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/924799832427578079/DE0451F6FBE6987034D6769C0B68B4D3D0CF908A/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360033426/DF5F33C3CE5EFCBEE990CDEE67881265D3BFBDB8/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: '283396' + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.748802 + posY: 1.53845263 + posZ: -8.016307 + rotX: 0.186193287 + rotY: 179.93103 + rotZ: 185.704056 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 248 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/924799832427578079/DE0451F6FBE6987034D6769C0B68B4D3D0CF908A/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360033426/DF5F33C3CE5EFCBEE990CDEE67881265D3BFBDB8/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 053be2 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.33177185 + posY: 1.43959594 + posZ: -8.634504 + rotX: 0.207545578 + rotY: 179.924957 + rotZ: 185.518631 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 250 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/924799832427578079/DE0451F6FBE6987034D6769C0B68B4D3D0CF908A/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360033426/DF5F33C3CE5EFCBEE990CDEE67881265D3BFBDB8/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: b0cb75 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.72602987 + posY: 1.2272824 + posZ: -8.563819 + rotX: 359.763275 + rotY: 179.9742 + rotZ: 180.499054 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 251 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/924799832427578079/DE0451F6FBE6987034D6769C0B68B4D3D0CF908A/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360033426/DF5F33C3CE5EFCBEE990CDEE67881265D3BFBDB8/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 0b2ac4 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.03969455 + posY: 1.08281481 + posZ: -7.9986 + rotX: 359.921631 + rotY: 180.015137 + rotZ: 180.150421 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/924799832427578079/DE0451F6FBE6987034D6769C0B68B4D3D0CF908A/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360033426/DF5F33C3CE5EFCBEE990CDEE67881265D3BFBDB8/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 252 +- 249 +- 243 +- 244 +- 245 +- 246 +- 247 +- 248 +- 250 +- 251 +Description: '' +GMNotes: '' +GUID: 080bb7 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Weather Deck +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -12.1511669 + posY: 1.663487 + posZ: 9.878226 + rotX: 359.9201 + rotY: 269.988525 + rotZ: 0.016891947 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Parallel Universe 28e0a1/Bag 2 Awake 6ca52c/Deck Zz fccb6c.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Parallel Universe 28e0a1/Bag 2 Awake 6ca52c/Deck Zz fccb6c.yaml new file mode 100644 index 000000000..58878093d --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Parallel Universe 28e0a1/Bag 2 Awake 6ca52c/Deck Zz fccb6c.yaml @@ -0,0 +1,268 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 825 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '8': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360017782/0D178EDF48DB79D322A87A7D2175FAC65F1CDE1C/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360024851/349BEF08B46195712D6E15AFD066A4425B7BDBD7/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 29368e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -11.5697165 + posY: 1.81556463 + posZ: -11.9943628 + rotX: -0.00557710975 + rotY: 0.0277067386 + rotZ: 179.963867 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 1203 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '12': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360032322/0361B60FC02E6DE524976EC73CA404DE26C86E4E/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360032780/8D983FE1F4E0CD54FAFA4DBE73D9AA79E3821DE4/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 0800c7 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 7.440973 + posY: 1.17673945 + posZ: -5.659993 + rotX: 7.934875e-05 + rotY: 179.999985 + rotZ: 179.997559 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 935 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '9': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360017782/0D178EDF48DB79D322A87A7D2175FAC65F1CDE1C/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360024851/349BEF08B46195712D6E15AFD066A4425B7BDBD7/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 337d91 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -9.752238 + posY: 1.03144932 + posZ: 1.42756772 + rotX: 0.0120449523 + rotY: 179.984756 + rotZ: 0.003733777 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 934 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '9': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360017782/0D178EDF48DB79D322A87A7D2175FAC65F1CDE1C/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360024851/349BEF08B46195712D6E15AFD066A4425B7BDBD7/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 2af2ca + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -10.16375 + posY: 1.03779387 + posZ: 2.2674427 + rotX: 0.0111504151 + rotY: 180.005142 + rotZ: 0.0371495 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 933 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '9': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360017782/0D178EDF48DB79D322A87A7D2175FAC65F1CDE1C/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360024851/349BEF08B46195712D6E15AFD066A4425B7BDBD7/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: e0efb9 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -9.718073 + posY: 1.18228245 + posZ: 2.559925 + rotX: 359.901337 + rotY: 179.95108 + rotZ: 0.2481352 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '12': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360032322/0361B60FC02E6DE524976EC73CA404DE26C86E4E/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360032780/8D983FE1F4E0CD54FAFA4DBE73D9AA79E3821DE4/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + '8': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360017782/0D178EDF48DB79D322A87A7D2175FAC65F1CDE1C/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360024851/349BEF08B46195712D6E15AFD066A4425B7BDBD7/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + '9': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360017782/0D178EDF48DB79D322A87A7D2175FAC65F1CDE1C/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360024851/349BEF08B46195712D6E15AFD066A4425B7BDBD7/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 825 +- 1203 +- 935 +- 934 +- 933 +Description: '' +GMNotes: '' +GUID: fccb6c +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Zz +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -20.0094223 + posY: 1.69270563 + posZ: 11.4948759 + rotX: 359.9832 + rotY: 0.039725896 + rotZ: 179.92009 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Parallel Universe 28e0a1/Bag 2 Awake 6ca52c/DeckCustom Agenda deck f4709f.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Parallel Universe 28e0a1/Bag 2 Awake 6ca52c/DeckCustom Agenda deck f4709f.yaml new file mode 100644 index 000000000..2eb9fbdcb --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Parallel Universe 28e0a1/Bag 2 Awake 6ca52c/DeckCustom Agenda deck f4709f.yaml @@ -0,0 +1,190 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 104 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: 741dba + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.09409654e-06 + posY: 1.04493368 + posZ: 8.31211651e-07 + rotX: 1.451921e-07 + rotY: 179.999924 + rotZ: 180.0001 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 105 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: 741dba + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.09409654e-06 + posY: 1.04493368 + posZ: 8.31211651e-07 + rotX: 1.451921e-07 + rotY: 179.999924 + rotZ: 180.0001 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 106 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: 741dba + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.09409654e-06 + posY: 1.04493368 + posZ: 8.31211651e-07 + rotX: 1.451921e-07 + rotY: 179.999924 + rotZ: 180.0001 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 107 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360026684/51B5CE32FD8535ABC84E5692FCBB7C81FC701935/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360030426/1421A99F9324B0D56DA1244A21039DB98A572783/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 741dba + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -0.181445971 + posY: 1.17391908 + posZ: 0.383463919 + rotX: 0.00378242484 + rotY: 90.00894 + rotZ: 0.0221798234 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360026684/51B5CE32FD8535ABC84E5692FCBB7C81FC701935/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360030426/1421A99F9324B0D56DA1244A21039DB98A572783/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 104 +- 105 +- 106 +- 107 +Description: '' +GMNotes: '' +GUID: f4709f +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: DeckCustom +Nickname: Agenda deck +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.7246592 + posY: 1.65513837 + posZ: 0.373316139 + rotX: 0.01685016 + rotY: 179.989182 + rotZ: 0.0802544 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Parallel Universe 28e0a1/Bag 2 Awake 6ca52c/Notecard Instruction 7e4091.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Parallel Universe 28e0a1/Bag 2 Awake 6ca52c/Notecard Instruction 7e4091.yaml new file mode 100644 index 000000000..1a31b8082 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Parallel Universe 28e0a1/Bag 2 Awake 6ca52c/Notecard Instruction 7e4091.yaml @@ -0,0 +1,41 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +Description: '1. Weather deck - draw one card at the start of each turn + + 2. when you fail a test, draw from character deck, and deploy at the oposite location + + 3. spend one action to take possesed from location + + 4. when clue value is reached (or doom) go to the next Agenda or Act. Flip only + when it is the last Agenda or Act. + + ' +GMNotes: '' +GUID: 7e4091 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Notecard +Nickname: Instruction +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -11.4488831 + posY: 1.6641866 + posZ: -11.1337223 + rotX: 0.07990042 + rotY: 90.0101242 + rotZ: 359.983154 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Parallel Universe 28e0a1/Custom_Tile Campaign Guide b4cf5a.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Parallel Universe 28e0a1/Custom_Tile Campaign Guide b4cf5a.yaml new file mode 100644 index 000000000..2726d9c76 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Parallel Universe 28e0a1/Custom_Tile Campaign Guide b4cf5a.yaml @@ -0,0 +1,172 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.1 + Type: 0 + ImageScalar: 1.0 + ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/254843371594871933/A0673A6455BFF8914658E9FFF2B9B8063AB7C542/ + ImageURL: http://cloud-3.steamusercontent.com/ugc/924800136854925487/9FFF4E2EFE78BFC1DFFC2222D79CA8F42E816A90/ + WidthScale: 0.0 +Description: '' +GMNotes: '' +GUID: b4cf5a +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Tile +Nickname: Campaign Guide +Snap: true +States: + '2': + Autoraise: true + ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 + CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.1 + Type: 0 + ImageScalar: 1.0 + ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/778493732360034212/3F499FB3809E9B591F8727868A6FF157452B0792/ + ImageURL: http://cloud-3.steamusercontent.com/ugc/778493732360034212/3F499FB3809E9B591F8727868A6FF157452B0792/ + WidthScale: 0.0 + Description: '' + GMNotes: '' + GUID: 65e2c3 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Custom_Tile + Nickname: '' + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -9.504031 + posY: 1.30109191 + posZ: -72.78713 + rotX: 0.0208084546 + rotY: 269.999939 + rotZ: 0.0167715624 + scaleX: 5.0 + scaleY: 1.0 + scaleZ: 5.0 + XmlUI: '' + '3': + Autoraise: true + ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 + CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.1 + Type: 0 + ImageScalar: 1.0 + ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/924799832428391731/CF7F10329AD197C43A612986AF328A96FA966CFD/ + ImageURL: http://cloud-3.steamusercontent.com/ugc/924799832428391731/CF7F10329AD197C43A612986AF328A96FA966CFD/ + WidthScale: 0.0 + Description: '' + GMNotes: '' + GUID: 23eba0 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Custom_Tile + Nickname: '' + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -9.504031 + posY: 1.30109191 + posZ: -72.78713 + rotX: 0.0208086241 + rotY: 269.999939 + rotZ: 0.0167707615 + scaleX: 5.0 + scaleY: 1.0 + scaleZ: 5.0 + XmlUI: '' + '4': + Autoraise: true + ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 + CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.1 + Type: 0 + ImageScalar: 1.0 + ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/924799832428390870/6ACB2332DDAB30038BDE4CBF2C384EB2E466EC66/ + ImageURL: http://cloud-3.steamusercontent.com/ugc/924799832428390870/6ACB2332DDAB30038BDE4CBF2C384EB2E466EC66/ + WidthScale: 0.0 + Description: '' + GMNotes: '' + GUID: 4badf1 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Custom_Tile + Nickname: '' + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -9.504031 + posY: 1.30109191 + posZ: -72.78713 + rotX: 0.0208087359 + rotY: 269.999939 + rotZ: 0.0167712215 + scaleX: 5.0 + scaleY: 1.0 + scaleZ: 5.0 + XmlUI: '' +Sticky: true +Tooltip: true +Transform: + posX: 3.98765087 + posY: 1.46792161 + posZ: -27.2648621 + rotX: 359.920135 + rotY: 269.999054 + rotZ: 0.0168732479 + scaleX: 5.0 + scaleY: 1.0 + scaleZ: 5.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Parallel Universe 28e0a1/Custom_Tile Core Difficulty 56a08b.ttslua b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Parallel Universe 28e0a1/Custom_Tile Core Difficulty 56a08b.ttslua new file mode 100644 index 000000000..c7ea585c8 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Parallel Universe 28e0a1/Custom_Tile Core Difficulty 56a08b.ttslua @@ -0,0 +1,21 @@ +name = 'Core Set' + +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 The Side Missions 791837/Custom_Model_Bag Parallel Universe 28e0a1/Custom_Tile Core Difficulty 56a08b.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Parallel Universe 28e0a1/Custom_Tile Core Difficulty 56a08b.yaml new file mode 100644 index 000000000..4d847da47 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Parallel Universe 28e0a1/Custom_Tile Core Difficulty 56a08b.yaml @@ -0,0 +1,42 @@ +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 +GMNotes: '' +GUID: 56a08b +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Tile Core Difficulty 56a08b.ttslua' +LuaScriptState: '' +Name: Custom_Tile +Nickname: Core Difficulty +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.86790943 + posY: 1.58235288 + posZ: -15.4044428 + rotX: 359.919739 + rotY: 270.002563 + rotZ: 0.0168343857 + scaleX: 2.2 + scaleY: 1.0 + scaleZ: 2.2 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Parallel Universe 28e0a1/Deck Assets 8578ad.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Parallel Universe 28e0a1/Deck Assets 8578ad.yaml new file mode 100644 index 000000000..85de88ed1 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Parallel Universe 28e0a1/Deck Assets 8578ad.yaml @@ -0,0 +1,394 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 1207 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '12': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360032322/0361B60FC02E6DE524976EC73CA404DE26C86E4E/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360032780/8D983FE1F4E0CD54FAFA4DBE73D9AA79E3821DE4/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 01ba02 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -19.673357 + posY: 1.36818814 + posZ: -75.894165 + rotX: 0.0199942142 + rotY: 269.988678 + rotZ: 0.0153622795 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 1205 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '12': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360032322/0361B60FC02E6DE524976EC73CA404DE26C86E4E/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360032780/8D983FE1F4E0CD54FAFA4DBE73D9AA79E3821DE4/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 27d28d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -19.3740654 + posY: 1.5084914 + posZ: -76.10052 + rotX: 0.003530151 + rotY: 269.998 + rotZ: 0.01733702 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 1204 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '12': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360032322/0361B60FC02E6DE524976EC73CA404DE26C86E4E/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360032780/8D983FE1F4E0CD54FAFA4DBE73D9AA79E3821DE4/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 4de3ab + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -19.4575176 + posY: 1.526062 + posZ: -75.8631058 + rotX: 0.0152974594 + rotY: 270.009247 + rotZ: 0.009721951 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 1206 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '12': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360032322/0361B60FC02E6DE524976EC73CA404DE26C86E4E/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360032780/8D983FE1F4E0CD54FAFA4DBE73D9AA79E3821DE4/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 3acbaf + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -19.3224182 + posY: 1.51239586 + posZ: -75.95493 + rotX: 0.0151723316 + rotY: 270.008453 + rotZ: 0.009987094 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 645 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '6': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360017782/0D178EDF48DB79D322A87A7D2175FAC65F1CDE1C/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360024851/349BEF08B46195712D6E15AFD066A4425B7BDBD7/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 51e559 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -19.1446857 + posY: 1.51036525 + posZ: -76.11966 + rotX: 0.01430463 + rotY: 270.0032 + rotZ: 0.0117525728 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 642 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '6': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360017782/0D178EDF48DB79D322A87A7D2175FAC65F1CDE1C/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360024851/349BEF08B46195712D6E15AFD066A4425B7BDBD7/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: '570879' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -19.4433861 + posY: 1.51299489 + posZ: -76.09326 + rotX: 0.0156169459 + rotY: 269.9934 + rotZ: 0.0133301569 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 643 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '6': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360017782/0D178EDF48DB79D322A87A7D2175FAC65F1CDE1C/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360024851/349BEF08B46195712D6E15AFD066A4425B7BDBD7/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 58e49f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -19.5098858 + posY: 1.51796985 + posZ: -76.09393 + rotX: 0.0158430636 + rotY: 269.992859 + rotZ: 0.0127993291 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 644 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '6': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360017782/0D178EDF48DB79D322A87A7D2175FAC65F1CDE1C/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360024851/349BEF08B46195712D6E15AFD066A4425B7BDBD7/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: fac9c5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -19.7207985 + posY: 1.52425647 + posZ: -75.63004 + rotX: 0.02181768 + rotY: 269.9804 + rotZ: 0.0147068035 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '12': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360032322/0361B60FC02E6DE524976EC73CA404DE26C86E4E/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360032780/8D983FE1F4E0CD54FAFA4DBE73D9AA79E3821DE4/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + '6': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360017782/0D178EDF48DB79D322A87A7D2175FAC65F1CDE1C/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360024851/349BEF08B46195712D6E15AFD066A4425B7BDBD7/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 1207 +- 1205 +- 1204 +- 1206 +- 645 +- 642 +- 643 +- 644 +Description: '' +GMNotes: '' +GUID: 8578ad +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Assets +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -4.42634 + posY: 1.64548361 + posZ: 14.8008413 + rotX: 359.919739 + rotY: 269.9995 + rotZ: 0.0168409273 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Strange Aeons 2abdd6.ttslua b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Strange Aeons 2abdd6.ttslua new file mode 100644 index 000000000..46067f58e --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Strange Aeons 2abdd6.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.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.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 791837/Custom_Model_Bag Strange Aeons 2abdd6.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Strange Aeons 2abdd6.yaml new file mode 100644 index 000000000..de7aab662 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Strange Aeons 2abdd6.yaml @@ -0,0 +1,65 @@ +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 Strange Aeons 2abdd6/Bag 1 In Search Of Sanity 961940.yaml' +- !include 'Custom_Model_Bag Strange Aeons 2abdd6/Bag 2 The Thrushmoor Terror eea51b.yaml' +- !include 'Custom_Model_Bag Strange Aeons 2abdd6/Tablet Campaign Guide c2fe44.yaml' +- !include 'Custom_Model_Bag Strange Aeons 2abdd6/Bag Fantasy Investigators 7ba738.yaml' +- !include 'Custom_Model_Bag Strange Aeons 2abdd6/Deck Player Cards 1f4db7.yaml' +- !include 'Custom_Model_Bag Strange Aeons 2abdd6/Custom_Tile Strange Aeons 82e1ed.yaml' +CustomMesh: + CastShadows: true + ColliderURL: '' + Convex: true + DiffuseURL: http://cloud-3.steamusercontent.com/ugc/798737729142947772/120E2BA8DF8C4E2AAC9E059FA046CC3A6229ECDF/ + MaterialIndex: 3 + MeshURL: https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj + NormalURL: '' + TypeIndex: 6 +Description: A Pathfinder Adventure for Arkham Horror +GMNotes: '' +GUID: 2abdd6 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Model_Bag Strange Aeons 2abdd6.ttslua' +LuaScriptState: '{"ml":{"1f4db7":{"lock":false,"pos":{"x":-7.7139,"y":1.7478,"z":15.225},"rot":{"x":359.92,"y":270.0018,"z":180.0169}},"7ba738":{"lock":false,"pos":{"x":-3.946,"y":1.4062,"z":14.5235},"rot":{"x":359.9832,"y":-0.0016,"z":359.9197}},"82e1ed":{"lock":false,"pos":{"x":-4.1664,"y":1.5829,"z":-15.04},"rot":{"x":359.9197,"y":269.9994,"z":0.0168}},"961940":{"lock":false,"pos":{"x":8.4723,"y":1.2866,"z":6.7132},"rot":{"x":0.0799,"y":89.9989,"z":359.9831}},"c2fe44":{"lock":false,"pos":{"x":-0.4614,"y":1.7617,"z":-25.2014},"rot":{"x":359.9201,"y":269.9758,"z":0.0169}},"eea51b":{"lock":false,"pos":{"x":8.0856,"y":1.2853,"z":0.187},"rot":{"x":0.0799,"y":89.9983,"z":359.9831}}}}' +MaterialIndex: -1 +MeshIndex: -1 +Name: Custom_Model_Bag +Nickname: Strange Aeons +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 13.15182 + posY: 8.487423 + posZ: -148.670563 + rotX: 0.0208086744 + rotY: 270.000122 + rotZ: 0.0167700443 + scaleX: 2.21 + scaleY: 0.46 + scaleZ: 2.42 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Strange Aeons 2abdd6/Bag 1 In Search Of Sanity 961940.ttslua b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Strange Aeons 2abdd6/Bag 1 In Search Of Sanity 961940.ttslua new file mode 100644 index 000000000..4acf9ea11 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Strange Aeons 2abdd6/Bag 1 In Search Of Sanity 961940.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 791837/Custom_Model_Bag Strange Aeons 2abdd6/Bag 1 In Search Of Sanity 961940.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Strange Aeons 2abdd6/Bag 1 In Search Of Sanity 961940.yaml new file mode 100644 index 000000000..c68f4d5aa --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Strange Aeons 2abdd6/Bag 1 In Search Of Sanity 961940.yaml @@ -0,0 +1,48 @@ +Autoraise: true +ColorDiffuse: + b: 0.308690071 + g: 0.6063125 + r: 0.881533146 +ContainedObjects: +- !include 'Bag 1 In Search Of Sanity 961940/Custom_Model_Bag Set-Aside cd4e99.yaml' +- !include 'Bag 1 In Search Of Sanity 961940/Deck Encounter Deck 344ea1.yaml' +- !include 'Bag 1 In Search Of Sanity 961940/Deck Agenda Deck 65073c.yaml' +- !include 'Bag 1 In Search Of Sanity 961940/Deck Act Deck 87b366.yaml' +- !include 'Bag 1 In Search Of Sanity 961940/Card In Search of Sanity 70c71c.yaml' +- !include 'Bag 1 In Search Of Sanity 961940/Deck Treasures 9c0265.yaml' +- !include 'Bag 1 In Search Of Sanity 961940/Deck 1e0371.yaml' +- !include 'Bag 1 In Search Of Sanity 961940/Deck 0b884f.yaml' +- !include 'Bag 1 In Search Of Sanity 961940/Card 58fc2d.yaml' +- !include 'Bag 1 In Search Of Sanity 961940/Card ec71af.yaml' +- !include 'Bag 1 In Search Of Sanity 961940/Custom_Tile 7234af.yaml' +- !include 'Bag 1 In Search Of Sanity 961940/Card f79992.yaml' +- !include 'Bag 1 In Search Of Sanity 961940/Card In Search of Sanity 640f2c.yaml' +Description: Strange Aeons +GMNotes: '' +GUID: '961940' +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Bag 1 In Search Of Sanity 961940.ttslua' +LuaScriptState: '{"ml":{"0b884f":{"lock":false,"pos":{"x":-17.12,"y":1.6793,"z":11.4603},"rot":{"x":359.9201,"y":270.0019,"z":0.0169}},"1e0371":{"lock":false,"pos":{"x":-12.244,"y":1.6759,"z":7.1267},"rot":{"x":359.9201,"y":269.9902,"z":0.0169}},"344ea1":{"lock":false,"pos":{"x":-3.9235,"y":1.8143,"z":5.7408},"rot":{"x":359.9198,"y":269.841,"z":180.0171}},"58fc2d":{"lock":false,"pos":{"x":-17.1199,"y":1.6821,"z":7.57},"rot":{"x":359.9201,"y":270,"z":180.0169}},"640f2c":{"lock":false,"pos":{"x":-50.9244,"y":1.7294,"z":8.1784},"rot":{"x":359.9201,"y":269.9974,"z":180.0169}},"65073c":{"lock":false,"pos":{"x":-2.7218,"y":1.6551,"z":0.3718},"rot":{"x":359.9197,"y":269.9921,"z":0.0168}},"70c71c":{"lock":false,"pos":{"x":-3.9585,"y":1.6585,"z":-10.4432},"rot":{"x":359.9197,"y":269.9974,"z":180.0168}},"7234af":{"lock":false,"pos":{"x":-20.5413,"y":1.61,"z":-0.3575},"rot":{"x":359.9201,"y":269.994,"z":0.0169}},"87b366":{"lock":false,"pos":{"x":-2.6837,"y":1.655,"z":-5.0486},"rot":{"x":359.9197,"y":269.9991,"z":0.0168}},"9c0265":{"lock":false,"pos":{"x":-11.8341,"y":1.6676,"z":10.7228},"rot":{"x":359.9201,"y":269.978,"z":0.0169}},"cd4e99":{"lock":false,"pos":{"x":1.7015,"y":1.5583,"z":14.2848},"rot":{"x":359.9552,"y":224.9774,"z":0.0687}},"ec71af":{"lock":false,"pos":{"x":-17.12,"y":1.6771,"z":-0.03},"rot":{"x":359.9201,"y":269.8737,"z":0.0171}},"f79992":{"lock":false,"pos":{"x":-23.6765,"y":1.6862,"z":-0.03},"rot":{"x":359.9201,"y":269.8737,"z":0.0171}}}}' +MaterialIndex: -1 +MeshIndex: -1 +Name: Bag +Nickname: '1: In Search Of Sanity' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 8.472279 + posY: 1.28664446 + posZ: 6.713175 + rotX: 0.07993395 + rotY: 89.99886 + rotZ: 359.9831 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Strange Aeons 2abdd6/Bag 1 In Search Of Sanity 961940/Card 58fc2d.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Strange Aeons 2abdd6/Bag 1 In Search Of Sanity 961940/Card 58fc2d.yaml new file mode 100644 index 000000000..8aa29d007 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Strange Aeons 2abdd6/Bag 1 In Search Of Sanity 961940/Card 58fc2d.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 262603 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2626': + BackIsHidden: true + BackURL: https://i.imgur.com/FDRysur.jpg + FaceURL: https://i.imgur.com/rjTQyD7.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 58fc2d +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -17.11994 + posY: 1.68213844 + posZ: 7.569984 + 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 The Side Missions 791837/Custom_Model_Bag Strange Aeons 2abdd6/Bag 1 In Search Of Sanity 961940/Card ec71af.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Strange Aeons 2abdd6/Bag 1 In Search Of Sanity 961940/Card ec71af.yaml new file mode 100644 index 000000000..aeec9ea7f --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Strange Aeons 2abdd6/Bag 1 In Search Of Sanity 961940/Card ec71af.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 262601 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2626': + BackIsHidden: true + BackURL: https://i.imgur.com/FDRysur.jpg + FaceURL: https://i.imgur.com/rjTQyD7.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: ec71af +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -17.1200256 + posY: 1.67707777 + posZ: -0.0300069619 + rotX: 359.920135 + rotY: 269.873718 + rotZ: 0.01705231 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Strange Aeons 2abdd6/Bag 1 In Search Of Sanity 961940/Card f79992.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Strange Aeons 2abdd6/Bag 1 In Search Of Sanity 961940/Card f79992.yaml new file mode 100644 index 000000000..e1ff1bb1e --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Strange Aeons 2abdd6/Bag 1 In Search Of Sanity 961940/Card f79992.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 262605 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2626': + BackIsHidden: true + BackURL: https://i.imgur.com/FDRysur.jpg + FaceURL: https://i.imgur.com/rjTQyD7.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: f79992 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -23.676548 + posY: 1.68622041 + posZ: -0.030014798 + rotX: 359.920135 + rotY: 269.873718 + rotZ: 0.0170523357 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Strange Aeons 2abdd6/Bag 1 In Search Of Sanity 961940/Card In Search of Sanity 640f2c.yaml new file mode 100644 index 000000000..b03de8acb --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Strange Aeons 2abdd6/Bag 1 In Search Of Sanity 961940/Card In Search of Sanity 640f2c.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 262600 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2626': + BackIsHidden: true + BackURL: https://i.imgur.com/FDRysur.jpg + FaceURL: https://i.imgur.com/rjTQyD7.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 640f2c +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: In Search of Sanity +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -50.9243851 + posY: 1.72944832 + posZ: 8.178432 + rotX: 359.9201 + rotY: 269.997437 + rotZ: 180.016861 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Strange Aeons 2abdd6/Bag 1 In Search Of Sanity 961940/Card In Search of Sanity 70c71c.yaml new file mode 100644 index 000000000..516a632bd --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Strange Aeons 2abdd6/Bag 1 In Search Of Sanity 961940/Card In Search of Sanity 70c71c.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 262600 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2626': + BackIsHidden: true + BackURL: https://i.imgur.com/FDRysur.jpg + FaceURL: https://i.imgur.com/rjTQyD7.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 70c71c +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: In Search of Sanity +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.958548 + posY: 1.65847409 + posZ: -10.4431763 + rotX: 359.919739 + rotY: 269.997437 + rotZ: 180.01683 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Strange Aeons 2abdd6/Bag 1 In Search Of Sanity 961940/Custom_Model_Bag Set-Aside cd4e99.yaml new file mode 100644 index 000000000..a827486d0 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Strange Aeons 2abdd6/Bag 1 In Search Of Sanity 961940/Custom_Model_Bag Set-Aside cd4e99.yaml @@ -0,0 +1,58 @@ +Autoraise: true +ColorDiffuse: + b: 0.02148666 + g: 0.00100758043 + r: 0.02148666 +ContainedObjects: +- !include 'Custom_Model_Bag Set-Aside cd4e99/Card e0f24e.yaml' +- !include 'Custom_Model_Bag Set-Aside cd4e99/Card d7be80.yaml' +- !include 'Custom_Model_Bag Set-Aside cd4e99/Card 1f485e.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: In Search of Sanity +GMNotes: '' +GUID: cd4e99 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +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.70153463 + posY: 1.55831122 + posZ: 14.2847557 + rotX: 359.95517 + rotY: 224.977356 + rotZ: 0.0686894655 + scaleX: 2.0 + scaleY: 2.0 + scaleZ: 2.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Strange Aeons 2abdd6/Bag 1 In Search Of Sanity 961940/Custom_Model_Bag Set-Aside cd4e99/Card 1f485e.yaml new file mode 100644 index 000000000..f24e17410 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Strange Aeons 2abdd6/Bag 1 In Search Of Sanity 961940/Custom_Model_Bag Set-Aside cd4e99/Card 1f485e.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 263120 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2631': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/yrcMJ0I.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 1f485e +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -44.3116 + posY: 3.40606117 + posZ: -87.11788 + rotX: 0.01638606 + rotY: 270.0197 + rotZ: 0.0198816024 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Strange Aeons 2abdd6/Bag 1 In Search Of Sanity 961940/Custom_Model_Bag Set-Aside cd4e99/Card d7be80.yaml new file mode 100644 index 000000000..404285fde --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Strange Aeons 2abdd6/Bag 1 In Search Of Sanity 961940/Custom_Model_Bag Set-Aside cd4e99/Card d7be80.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 263122 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2631': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/yrcMJ0I.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: d7be80 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -45.05471 + posY: 3.40584779 + posZ: -87.2415848 + rotX: 0.0208878051 + rotY: 270.018555 + rotZ: 0.0166958384 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Strange Aeons 2abdd6/Bag 1 In Search Of Sanity 961940/Custom_Model_Bag Set-Aside cd4e99/Card e0f24e.yaml new file mode 100644 index 000000000..022dadfe6 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Strange Aeons 2abdd6/Bag 1 In Search Of Sanity 961940/Custom_Model_Bag Set-Aside cd4e99/Card e0f24e.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 263121 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2631': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/yrcMJ0I.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: e0f24e +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -44.6336365 + posY: 3.40594053 + posZ: -87.37013 + rotX: 0.0202068947 + rotY: 270.018768 + rotZ: 0.0170308445 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Strange Aeons 2abdd6/Bag 1 In Search Of Sanity 961940/Custom_Tile 7234af.yaml new file mode 100644 index 000000000..12fee0125 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Strange Aeons 2abdd6/Bag 1 In Search Of Sanity 961940/Custom_Tile 7234af.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 7234af +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.54129 + posY: 1.61003864 + posZ: -0.357522756 + rotX: 359.9201 + rotY: 269.994019 + rotZ: 0.0169061739 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Strange Aeons 2abdd6/Bag 1 In Search Of Sanity 961940/Deck 0b884f.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Strange Aeons 2abdd6/Bag 1 In Search Of Sanity 961940/Deck 0b884f.yaml new file mode 100644 index 000000000..b65df44a1 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Strange Aeons 2abdd6/Bag 1 In Search Of Sanity 961940/Deck 0b884f.yaml @@ -0,0 +1,258 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 262602 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2626': + BackIsHidden: true + BackURL: https://i.imgur.com/FDRysur.jpg + FaceURL: https://i.imgur.com/rjTQyD7.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: cf6c58 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -17.119976 + posY: 1.68039739 + posZ: 11.4603443 + rotX: 359.9227 + rotY: 270.0022 + rotZ: 0.009682845 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 262609 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2626': + BackIsHidden: true + BackURL: https://i.imgur.com/FDRysur.jpg + FaceURL: https://i.imgur.com/rjTQyD7.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 78b70d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -17.11837 + posY: 1.81513381 + posZ: 11.4585514 + rotX: 358.52536 + rotY: 269.978149 + rotZ: 1.259364 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 262608 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2626': + BackIsHidden: true + BackURL: https://i.imgur.com/FDRysur.jpg + FaceURL: https://i.imgur.com/rjTQyD7.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: b662b5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -17.117836 + posY: 1.82129061 + posZ: 11.4615974 + rotX: 358.161316 + rotY: 270.0174 + rotZ: 358.875031 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 262607 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2626': + BackIsHidden: true + BackURL: https://i.imgur.com/FDRysur.jpg + FaceURL: https://i.imgur.com/rjTQyD7.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 1e057b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -17.1179028 + posY: 1.81022358 + posZ: 11.4616966 + rotX: 358.217 + rotY: 270.016937 + rotZ: 358.8151 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 262604 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2626': + BackIsHidden: true + BackURL: https://i.imgur.com/FDRysur.jpg + FaceURL: https://i.imgur.com/rjTQyD7.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 7de43d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -17.12 + posY: 1.83210468 + posZ: 11.4600115 + rotX: 359.9195 + rotY: 270.00058 + rotZ: 0.0152982911 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2626': + BackIsHidden: true + BackURL: https://i.imgur.com/FDRysur.jpg + FaceURL: https://i.imgur.com/rjTQyD7.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 262602 +- 262609 +- 262608 +- 262607 +- 262604 +Description: '' +GMNotes: '' +GUID: 0b884f +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -17.1200466 + posY: 1.679329 + posZ: 11.4603338 + rotX: 359.9201 + rotY: 270.0019 + rotZ: 0.0168737657 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Strange Aeons 2abdd6/Bag 1 In Search Of Sanity 961940/Deck 1e0371.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Strange Aeons 2abdd6/Bag 1 In Search Of Sanity 961940/Deck 1e0371.yaml new file mode 100644 index 000000000..bd62d1891 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Strange Aeons 2abdd6/Bag 1 In Search Of Sanity 961940/Deck 1e0371.yaml @@ -0,0 +1,344 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 262615 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2626': + BackIsHidden: true + BackURL: https://i.imgur.com/FDRysur.jpg + FaceURL: https://i.imgur.com/rjTQyD7.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 18f3b1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -18.7729244 + posY: 1.68047416 + posZ: 3.87511134 + rotX: 359.920624 + rotY: 269.99 + rotZ: 0.0129969614 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 262610 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2626': + BackIsHidden: true + BackURL: https://i.imgur.com/FDRysur.jpg + FaceURL: https://i.imgur.com/rjTQyD7.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 1c1958 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -18.7340927 + posY: 1.82594573 + posZ: 3.97079062 + rotX: 359.943451 + rotY: 269.9976 + rotZ: 0.00518155 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 262606 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2626': + BackIsHidden: true + BackURL: https://i.imgur.com/FDRysur.jpg + FaceURL: https://i.imgur.com/rjTQyD7.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: fcfce6 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -10.6569862 + posY: 1.66851389 + posZ: 2.54011488 + rotX: 359.9231 + rotY: 269.9997 + rotZ: -0.00355028058 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 262613 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2626': + BackIsHidden: true + BackURL: https://i.imgur.com/FDRysur.jpg + FaceURL: https://i.imgur.com/rjTQyD7.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 6928b9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -13.9711523 + posY: 1.673695 + posZ: 3.7173512 + rotX: 359.921326 + rotY: 269.998047 + rotZ: 0.0106456624 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 262612 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2626': + BackIsHidden: true + BackURL: https://i.imgur.com/FDRysur.jpg + FaceURL: https://i.imgur.com/rjTQyD7.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 1a138c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -13.7678289 + posY: 1.67366922 + posZ: 3.47779274 + rotX: 359.908356 + rotY: 270.020233 + rotZ: 0.0226856451 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 262611 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2626': + BackIsHidden: true + BackURL: https://i.imgur.com/FDRysur.jpg + FaceURL: https://i.imgur.com/rjTQyD7.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 2a6c88 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -13.50883 + posY: 1.81980646 + posZ: 3.435832 + rotX: 359.9402 + rotY: 270.074677 + rotZ: 359.958038 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 262614 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2626': + BackIsHidden: true + BackURL: https://i.imgur.com/FDRysur.jpg + FaceURL: https://i.imgur.com/rjTQyD7.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 0b2732 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -11.8902931 + posY: 1.83474314 + posZ: 6.545379 + rotX: 359.932465 + rotY: 269.9997 + rotZ: 0.0117453905 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2626': + BackIsHidden: true + BackURL: https://i.imgur.com/FDRysur.jpg + FaceURL: https://i.imgur.com/rjTQyD7.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 262615 +- 262610 +- 262606 +- 262613 +- 262612 +- 262611 +- 262614 +Description: '' +GMNotes: '' +GUID: 1e0371 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -12.2440186 + posY: 1.67591453 + posZ: 7.12672424 + rotX: 359.9201 + rotY: 269.990173 + rotZ: 0.0168902073 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Strange Aeons 2abdd6/Bag 1 In Search Of Sanity 961940/Deck Act Deck 87b366.yaml new file mode 100644 index 000000000..051ec664b --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Strange Aeons 2abdd6/Bag 1 In Search Of Sanity 961940/Deck Act Deck 87b366.yaml @@ -0,0 +1,172 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 262508 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2625': + BackIsHidden: true + BackURL: https://i.imgur.com/zfEA0TW.jpg + FaceURL: https://i.imgur.com/nTMK5As.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: ddf870 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -23.2778988 + posY: 1.36537254 + posZ: -78.30862 + rotX: 359.965454 + rotY: 269.99408 + rotZ: 0.008331063 + scaleX: 0.7 + scaleY: 1.0 + scaleZ: 0.7 + XmlUI: '' +- Autoraise: true + CardID: 262507 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2625': + BackIsHidden: true + BackURL: https://i.imgur.com/zfEA0TW.jpg + FaceURL: https://i.imgur.com/nTMK5As.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 1d5d1f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -25.9651146 + posY: 1.36514866 + posZ: -78.27671 + rotX: 0.01617424 + rotY: 269.995056 + rotZ: 0.01610198 + scaleX: 0.7 + scaleY: 1.0 + scaleZ: 0.7 + XmlUI: '' +- Autoraise: true + CardID: 262506 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2625': + BackIsHidden: true + BackURL: https://i.imgur.com/zfEA0TW.jpg + FaceURL: https://i.imgur.com/nTMK5As.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 0457b8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -26.1374931 + posY: 1.50527847 + posZ: -78.6624146 + rotX: 0.0070260996 + rotY: 269.9944 + rotZ: 0.02947321 + scaleX: 0.7 + scaleY: 1.0 + scaleZ: 0.7 + XmlUI: '' +CustomDeck: + '2625': + BackIsHidden: true + BackURL: https://i.imgur.com/zfEA0TW.jpg + FaceURL: https://i.imgur.com/nTMK5As.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 262508 +- 262507 +- 262506 +Description: In Search of Sanity +GMNotes: '' +GUID: 87b366 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Act Deck +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.68369746 + posY: 1.65499055 + posZ: -5.04862976 + rotX: 359.919739 + rotY: 269.999146 + rotZ: 0.016840063 + scaleX: 0.7 + scaleY: 1.0 + scaleZ: 0.7 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Strange Aeons 2abdd6/Bag 1 In Search Of Sanity 961940/Deck Agenda Deck 65073c.yaml new file mode 100644 index 000000000..ffc64d908 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Strange Aeons 2abdd6/Bag 1 In Search Of Sanity 961940/Deck Agenda Deck 65073c.yaml @@ -0,0 +1,215 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 262512 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2625': + BackIsHidden: true + BackURL: https://i.imgur.com/zfEA0TW.jpg + FaceURL: https://i.imgur.com/nTMK5As.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: b8daa5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -12.3277121 + posY: 1.36921394 + posZ: -79.05742 + rotX: 359.967529 + rotY: 269.991364 + rotZ: 0.008507399 + scaleX: 0.7 + scaleY: 1.0 + scaleZ: 0.7 + XmlUI: '' +- Autoraise: true + CardID: 262511 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2625': + BackIsHidden: true + BackURL: https://i.imgur.com/zfEA0TW.jpg + FaceURL: https://i.imgur.com/nTMK5As.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: '189665' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -15.0041647 + posY: 1.36817145 + posZ: -78.70973 + rotX: 359.9521 + rotY: 269.987274 + rotZ: 0.00660487125 + scaleX: 0.7 + scaleY: 1.0 + scaleZ: 0.7 + XmlUI: '' +- Autoraise: true + CardID: 262510 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2625': + BackIsHidden: true + BackURL: https://i.imgur.com/zfEA0TW.jpg + FaceURL: https://i.imgur.com/nTMK5As.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 95ee0b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -17.6870461 + posY: 1.36816812 + posZ: -78.2957458 + rotX: 0.0171799362 + rotY: 269.994934 + rotZ: 0.0162360817 + scaleX: 0.7 + scaleY: 1.0 + scaleZ: 0.7 + XmlUI: '' +- Autoraise: true + CardID: 262509 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2625': + BackIsHidden: true + BackURL: https://i.imgur.com/zfEA0TW.jpg + FaceURL: https://i.imgur.com/nTMK5As.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 557e18 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -17.7537975 + posY: 1.50833488 + posZ: -78.66007 + rotX: 0.0009610598 + rotY: 269.982544 + rotZ: 0.02590256 + scaleX: 0.7 + scaleY: 1.0 + scaleZ: 0.7 + XmlUI: '' +CustomDeck: + '2625': + BackIsHidden: true + BackURL: https://i.imgur.com/zfEA0TW.jpg + FaceURL: https://i.imgur.com/nTMK5As.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 262512 +- 262511 +- 262510 +- 262509 +Description: In Search of Sanity +GMNotes: '' +GUID: 65073c +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Agenda Deck +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.72175217 + posY: 1.65513384 + posZ: 0.371764958 + rotX: 359.919739 + rotY: 269.992126 + rotZ: 0.0168499332 + scaleX: 0.7 + scaleY: 1.0 + scaleZ: 0.7 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Strange Aeons 2abdd6/Bag 1 In Search Of Sanity 961940/Deck Encounter Deck 344ea1.yaml new file mode 100644 index 000000000..42d1591fc --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Strange Aeons 2abdd6/Bag 1 In Search Of Sanity 961940/Deck Encounter Deck 344ea1.yaml @@ -0,0 +1,1684 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 263244 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2632': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/yrcMJ0I.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 20f9d0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -44.6028976 + posY: 1.49983513 + posZ: -49.79024 + rotX: 0.0159440674 + rotY: 270.018921 + rotZ: 359.988464 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 263244 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2632': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/yrcMJ0I.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 4b0f8b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -44.6029129 + posY: 1.514279 + posZ: -49.79027 + rotX: 0.02029434 + rotY: 270.018768 + rotZ: 0.0114713078 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 263242 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2632': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/yrcMJ0I.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 4b0f8b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -44.8574142 + posY: 1.510671 + posZ: -50.2436562 + rotX: 0.018958075 + rotY: 270.0194 + rotZ: 0.0210969858 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 263219 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2632': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/yrcMJ0I.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 4b0f8b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -44.7238235 + posY: 1.50889146 + posZ: -50.0483 + rotX: 0.0182744786 + rotY: 270.021179 + rotZ: 0.0156184854 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 263219 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2632': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/yrcMJ0I.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 4b0f8b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -44.5983238 + posY: 1.50368416 + posZ: -49.6905746 + rotX: 0.0169519167 + rotY: 270.021027 + rotZ: 0.013769079 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 263219 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2632': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/yrcMJ0I.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 4b0f8b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -44.5983276 + posY: 1.50767958 + posZ: -49.6905746 + rotX: 0.0169877522 + rotY: 270.021027 + rotZ: 0.013800256 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 263218 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2632': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/yrcMJ0I.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 4b0f8b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -44.8477173 + posY: 1.52228308 + posZ: -50.5856247 + rotX: 0.0172495171 + rotY: 270.018677 + rotZ: 0.0441472866 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 263244 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2632': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/yrcMJ0I.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 4b0f8b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -45.09147 + posY: 1.52256155 + posZ: -50.15745 + rotX: 0.0213094372 + rotY: 269.999084 + rotZ: 0.0136551457 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 263212 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2632': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/yrcMJ0I.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 4b0f8b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -45.0910263 + posY: 1.48012817 + posZ: -50.15682 + rotX: 0.0156350769 + rotY: 270.000763 + rotZ: 0.0105882138 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 263212 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2632': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/yrcMJ0I.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 4b0f8b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -45.0910034 + posY: 1.496983 + posZ: -50.1592941 + rotX: 2.66804268e-08 + rotY: 270.0 + rotZ: 359.982758 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 263211 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2632': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/yrcMJ0I.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 4b0f8b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -45.1835 + posY: 1.49950683 + posZ: -49.9677162 + rotX: 0.01809515 + rotY: 270.018158 + rotZ: 0.0153004881 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 263211 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2632': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/yrcMJ0I.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 4b0f8b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -45.1531372 + posY: 1.50127065 + posZ: -49.9648361 + rotX: 0.0175701417 + rotY: 270.0181 + rotZ: 0.0153318122 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 263210 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2632': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/yrcMJ0I.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 4b0f8b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -44.63014 + posY: 1.51902771 + posZ: -49.8882942 + rotX: 0.0180281885 + rotY: 270.018158 + rotZ: 0.0151288528 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 263210 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2632': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/yrcMJ0I.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 4b0f8b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -44.6335754 + posY: 1.47913706 + posZ: -49.88858 + rotX: 2.706456 + rotY: 270.022949 + rotZ: 0.017343374 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 263209 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2632': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/yrcMJ0I.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 4b0f8b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -44.8594055 + posY: 1.53816867 + posZ: -50.1331444 + rotX: 0.01983197 + rotY: 270.0238 + rotZ: 0.0187609587 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 263209 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2632': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/yrcMJ0I.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 4b0f8b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -44.8581924 + posY: 1.55087006 + posZ: -50.1324158 + rotX: 359.507965 + rotY: 270.017944 + rotZ: 0.8339507 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 263208 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2632': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/yrcMJ0I.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 4b0f8b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -44.8078079 + posY: 1.55747545 + posZ: -50.1757 + rotX: 0.0201089717 + rotY: 270.0166 + rotZ: 0.0136091411 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 263208 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2632': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/yrcMJ0I.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 4b0f8b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -44.7959824 + posY: 1.56892133 + posZ: -50.193924 + rotX: 0.0189764071 + rotY: 270.0182 + rotZ: 0.0189516973 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 263207 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2632': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/yrcMJ0I.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 4b0f8b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -44.5881577 + posY: 1.57698834 + posZ: -49.9840965 + rotX: 0.018534258 + rotY: 270.0208 + rotZ: 0.0155203231 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 263207 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2632': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/yrcMJ0I.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 4b0f8b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -44.58816 + posY: 1.58463991 + posZ: -49.9841576 + rotX: 0.0182822272 + rotY: 270.0208 + rotZ: 0.0155290253 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 263206 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2632': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/yrcMJ0I.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 4b0f8b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -44.70055 + posY: 1.59631562 + posZ: -49.8018532 + rotX: 0.0183848478 + rotY: 270.017517 + rotZ: 0.0154292276 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 263206 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2632': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/yrcMJ0I.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 98eef9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -44.7485466 + posY: 1.605666 + posZ: -50.33607 + rotX: 0.009061968 + rotY: 270.007965 + rotZ: 0.01031749 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 263206 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2632': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/yrcMJ0I.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 4b0f8b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -44.5594978 + posY: 1.61546206 + posZ: -50.10679 + rotX: 0.0203790739 + rotY: 270.017975 + rotZ: 0.0183377769 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 263205 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2632': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/yrcMJ0I.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 4b0f8b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -45.2031364 + posY: 1.36536872 + posZ: -53.8302 + rotX: 0.0190986879 + rotY: 270.016571 + rotZ: 0.0162362549 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 263205 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2632': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/yrcMJ0I.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: ef2e6a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -44.9545021 + posY: 1.50546479 + posZ: -53.3785248 + rotX: -0.0005712888 + rotY: 270.015442 + rotZ: 359.9917 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 263204 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2632': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/yrcMJ0I.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 4b0f8b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -45.26656 + posY: 1.644252 + posZ: -50.41829 + rotX: 0.0166866742 + rotY: 270.0317 + rotZ: 0.007887648 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 263204 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2632': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/yrcMJ0I.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 4b0f8b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -45.03776 + posY: 1.65918672 + posZ: -50.1069565 + rotX: 0.018561298 + rotY: 270.017944 + rotZ: 0.01579662 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 263203 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2632': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/yrcMJ0I.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 79efae + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -45.4023361 + posY: 1.65831637 + posZ: -50.52221 + rotX: 0.0213770382 + rotY: 270.018677 + rotZ: 0.0198552 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 263203 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2632': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/yrcMJ0I.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 4b0f8b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -44.7148476 + posY: 1.6732744 + posZ: -50.75842 + rotX: 0.0307841264 + rotY: 270.0202 + rotZ: 0.0470729023 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 263202 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2632': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/yrcMJ0I.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 4b0f8b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -44.76067 + posY: 1.68299091 + posZ: -50.380146 + rotX: 0.0185791813 + rotY: 270.018555 + rotZ: 0.0216577183 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 263202 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2632': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/yrcMJ0I.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 4b0f8b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -44.3486137 + posY: 1.69031525 + posZ: -50.0080452 + rotX: 0.0178164989 + rotY: 270.018066 + rotZ: 0.015456181 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3614 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humaniod. Monster. Ghoul. + GMNotes: '' + GUID: 3e53b0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ghoul Minion + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -46.3643837 + posY: 1.35573125 + posZ: -85.38348 + rotX: 0.0208079573 + rotY: 270.000977 + rotZ: 0.0167730842 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3614 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humaniod. Monster. Ghoul. + GMNotes: '' + GUID: 4218a0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ghoul Minion + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -46.36449 + posY: 1.354963 + posZ: -88.008194 + rotX: 0.0208062027 + rotY: 270.000854 + rotZ: 0.016773561 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3616 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: 9c193f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Grasping Hands + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -50.15751 + posY: 1.35450292 + posZ: -84.87347 + rotX: 0.0208073761 + rotY: 270.000854 + rotZ: 0.0167731252 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3616 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: 6a13ae + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Grasping Hands + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -50.1918259 + posY: 1.35341322 + posZ: -88.55376 + rotX: 0.0208091009 + rotY: 269.999329 + rotZ: 0.01677189 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3614 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humaniod. Monster. Ghoul. + GMNotes: '' + GUID: d84de0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ghoul Minion + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -46.32625 + posY: 1.35417473 + posZ: -90.74865 + rotX: 0.0208088588 + rotY: 270.000641 + rotZ: 0.0167733748 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3616 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: d60f3b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Grasping Hands + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -50.1407242 + posY: 1.3527137 + posZ: -91.00721 + rotX: 0.020808164 + rotY: 270.000458 + rotZ: 0.01677212 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3615 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humaniod. Monster. Ghoul. + GMNotes: '' + GUID: a65f30 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ravenous Ghoul + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -53.70991 + posY: 1.35322487 + posZ: -84.8325348 + rotX: 0.0208077263 + rotY: 270.000122 + rotZ: 0.01677543 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2632': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/yrcMJ0I.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 263244 +- 263244 +- 263242 +- 263219 +- 263219 +- 263219 +- 263218 +- 263244 +- 263212 +- 263212 +- 263211 +- 263211 +- 263210 +- 263210 +- 263209 +- 263209 +- 263208 +- 263208 +- 263207 +- 263207 +- 263206 +- 263206 +- 263206 +- 263205 +- 263205 +- 263204 +- 263204 +- 263203 +- 263203 +- 263202 +- 263202 +- 3614 +- 3614 +- 3616 +- 3616 +- 3614 +- 3616 +- 3615 +Description: '' +GMNotes: '' +GUID: 344ea1 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Encounter Deck +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.92352533 + posY: 1.81433487 + posZ: 5.74076939 + rotX: 359.919769 + rotY: 269.841034 + rotZ: 180.017059 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Strange Aeons 2abdd6/Bag 1 In Search Of Sanity 961940/Deck Treasures 9c0265.yaml new file mode 100644 index 000000000..b40a31ef1 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Strange Aeons 2abdd6/Bag 1 In Search Of Sanity 961940/Deck Treasures 9c0265.yaml @@ -0,0 +1,516 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 262701 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2627': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: https://i.imgur.com/c18wMkl.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: f42dce + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -49.3692932 + posY: 1.36258864 + posZ: -58.22874 + rotX: 0.0208110157 + rotY: 269.990662 + rotZ: 0.016769981 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 262704 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2627': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: https://i.imgur.com/c18wMkl.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 8764da + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -49.68668 + posY: 1.36172652 + posZ: -60.77981 + rotX: 0.0208110958 + rotY: 269.990662 + rotZ: 0.0167682525 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 262702 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2627': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: https://i.imgur.com/c18wMkl.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: eb4141 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -50.0379181 + posY: 1.360748 + posZ: -63.6869354 + rotX: 0.0208100118 + rotY: 269.990723 + rotZ: 0.0167704374 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 262706 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2627': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: https://i.imgur.com/c18wMkl.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: d9d426 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -50.015686 + posY: 1.36007321 + posZ: -66.0202255 + rotX: 0.020811921 + rotY: 269.99054 + rotZ: 0.0167693552 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 262705 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2627': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: https://i.imgur.com/c18wMkl.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: ffddee + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -50.1795845 + posY: 1.3592031 + posZ: -68.78909 + rotX: 0.0208106861 + rotY: 269.9907 + rotZ: 0.0167709123 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 262700 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2627': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: https://i.imgur.com/c18wMkl.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 0d83b0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -50.1258 + posY: 1.358461 + posZ: -71.3912659 + rotX: 0.0208109189 + rotY: 269.990479 + rotZ: 0.0167688858 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 262703 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2627': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: https://i.imgur.com/c18wMkl.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: d3b3d2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -50.01352 + posY: 1.3578229 + posZ: -73.71041 + rotX: 0.020808842 + rotY: 269.999939 + rotZ: 0.0167738162 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 262707 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2627': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: https://i.imgur.com/c18wMkl.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 74032b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -49.87129 + posY: 1.35719872 + posZ: -76.01919 + rotX: 0.0208105035 + rotY: 269.990723 + rotZ: 0.01676833 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 262708 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2627': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: https://i.imgur.com/c18wMkl.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: bb3044 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -49.9867058 + posY: 1.35635817 + posZ: -78.74766 + rotX: 0.0208107959 + rotY: 269.990417 + rotZ: 0.0167684164 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 262709 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2627': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: https://i.imgur.com/c18wMkl.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: f0a516 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -50.0197372 + posY: 1.35555637 + posZ: -81.44592 + rotX: 0.0208122358 + rotY: 269.9907 + rotZ: 0.01676934 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 262710 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2627': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: https://i.imgur.com/c18wMkl.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 4a2418 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -50.094162 + posY: 1.35465562 + posZ: -84.43057 + rotX: 0.0208101273 + rotY: 269.99054 + rotZ: 0.0167703442 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2627': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: https://i.imgur.com/c18wMkl.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 262701 +- 262704 +- 262702 +- 262706 +- 262705 +- 262700 +- 262703 +- 262707 +- 262708 +- 262709 +- 262710 +Description: '' +GMNotes: '' +GUID: 9c0265 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Treasures +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -11.8341007 + posY: 1.66762424 + posZ: 10.7228069 + rotX: 359.9201 + rotY: 269.977966 + rotZ: 0.0169069488 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Strange Aeons 2abdd6/Bag 2 The Thrushmoor Terror eea51b.ttslua b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Strange Aeons 2abdd6/Bag 2 The Thrushmoor Terror eea51b.ttslua new file mode 100644 index 000000000..4acf9ea11 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Strange Aeons 2abdd6/Bag 2 The Thrushmoor Terror eea51b.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 791837/Custom_Model_Bag Strange Aeons 2abdd6/Bag 2 The Thrushmoor Terror eea51b.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Strange Aeons 2abdd6/Bag 2 The Thrushmoor Terror eea51b.yaml new file mode 100644 index 000000000..9328ced93 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Strange Aeons 2abdd6/Bag 2 The Thrushmoor Terror eea51b.yaml @@ -0,0 +1,61 @@ +Autoraise: true +ColorDiffuse: + b: 0.288202971 + g: 0.7958075 + r: 0.857142866 +ContainedObjects: +- !include 'Bag 2 The Thrushmoor Terror eea51b/Custom_Model_Bag Set-Aside 97c293.yaml' +- !include 'Bag 2 The Thrushmoor Terror eea51b/Deck Hastur Encounter Deck 8f0ac0.yaml' +- !include 'Bag 2 The Thrushmoor Terror eea51b/Deck Encounter Deck 658c70.yaml' +- !include 'Bag 2 The Thrushmoor Terror eea51b/Deck Hastur Agenda 19cca9.yaml' +- !include 'Bag 2 The Thrushmoor Terror eea51b/Deck Hastur Act a6e5f6.yaml' +- !include 'Bag 2 The Thrushmoor Terror eea51b/Card The Thrushmoor Terror 7a0fd0.yaml' +- !include 'Bag 2 The Thrushmoor Terror eea51b/Deck Cthulhu Encounter Deck c031d6.yaml' +- !include 'Bag 2 The Thrushmoor Terror eea51b/Deck Cthulhu Agenda 5c3018.yaml' +- !include 'Bag 2 The Thrushmoor Terror eea51b/Deck Cthulhu Act 797927.yaml' +- !include 'Bag 2 The Thrushmoor Terror eea51b/Card 521307.yaml' +- !include 'Bag 2 The Thrushmoor Terror eea51b/Card 44b479.yaml' +- !include 'Bag 2 The Thrushmoor Terror eea51b/Card deefa0.yaml' +- !include 'Bag 2 The Thrushmoor Terror eea51b/Custom_Tile 7234af.yaml' +- !include 'Bag 2 The Thrushmoor Terror eea51b/Card 51476e.yaml' +- !include 'Bag 2 The Thrushmoor Terror eea51b/Card 96fc11.yaml' +- !include 'Bag 2 The Thrushmoor Terror eea51b/Custom_Tile 197356.yaml' +- !include 'Bag 2 The Thrushmoor Terror eea51b/Custom_Tile 2cb49f.yaml' +- !include 'Bag 2 The Thrushmoor Terror eea51b/Custom_Tile 20add9.yaml' +- !include 'Bag 2 The Thrushmoor Terror eea51b/Card 83b8ac.yaml' +- !include 'Bag 2 The Thrushmoor Terror eea51b/Custom_Tile c1e370.yaml' +- !include 'Bag 2 The Thrushmoor Terror eea51b/Card 26c1c1.yaml' +- !include 'Bag 2 The Thrushmoor Terror eea51b/Custom_Tile 31c54f.yaml' +- !include 'Bag 2 The Thrushmoor Terror eea51b/Card f2879e.yaml' +- !include 'Bag 2 The Thrushmoor Terror eea51b/Custom_Tile 085d1f.yaml' +- !include 'Bag 2 The Thrushmoor Terror eea51b/Card 6ecbc4.yaml' +- !include 'Bag 2 The Thrushmoor Terror eea51b/Card The Thrushmoor Terror 482923.yaml' +Description: Strange Aeons +GMNotes: '' +GUID: eea51b +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Bag 2 The Thrushmoor Terror eea51b.ttslua' +LuaScriptState: '{"ml":{"085d1f":{"lock":false,"pos":{"x":-27.116,"y":1.6215,"z":7.3989},"rot":{"x":359.9201,"y":270,"z":0.0169}},"197356":{"lock":false,"pos":{"x":-20.5922,"y":1.6124,"z":7.5006},"rot":{"x":359.9201,"y":270.0001,"z":0.0169}},"19cca9":{"lock":false,"pos":{"x":-2.7179,"y":1.6566,"z":0.3656},"rot":{"x":359.9197,"y":270.1591,"z":0.0166}},"20add9":{"lock":false,"pos":{"x":-20.6375,"y":1.6091,"z":-3.8576},"rot":{"x":359.9316,"y":314.9999,"z":359.9554}},"26c1c1":{"lock":false,"pos":{"x":-23.6764,"y":1.6885,"z":7.5699},"rot":{"x":359.9201,"y":270.0104,"z":0.0169}},"2cb49f":{"lock":false,"pos":{"x":-20.4516,"y":1.6111,"z":3.7973},"rot":{"x":0.0446,"y":45.0001,"z":359.9316}},"31c54f":{"lock":false,"pos":{"x":-23.6765,"y":1.6157,"z":3.86},"rot":{"x":359.9831,"y":0.0006,"z":359.9201}},"44b479":{"lock":false,"pos":{"x":-12.5958,"y":1.6707,"z":-0.1204},"rot":{"x":359.9201,"y":269.9886,"z":0.0169}},"482923":{"lock":false,"pos":{"x":-50.9244,"y":1.7266,"z":8.1784},"rot":{"x":359.9201,"y":269.9092,"z":0.017}},"51476e":{"lock":false,"pos":{"x":-17.12,"y":1.6799,"z":-0.03},"rot":{"x":359.9201,"y":269.9833,"z":180.0169}},"521307":{"lock":false,"pos":{"x":-12.4636,"y":1.6716,"z":3.5877},"rot":{"x":359.9201,"y":269.9846,"z":0.0169}},"5c3018":{"lock":false,"pos":{"x":-8.8049,"y":1.6651,"z":0.2464},"rot":{"x":359.9203,"y":270.106,"z":0.0168}},"658c70":{"lock":false,"pos":{"x":-3.9333,"y":1.6758,"z":5.7573},"rot":{"x":359.9197,"y":269.9998,"z":180.0168}},"6ecbc4":{"lock":false,"pos":{"x":-30.2243,"y":1.6976,"z":7.57},"rot":{"x":359.9201,"y":270.0088,"z":0.0169}},"7234af":{"lock":false,"pos":{"x":-17.12,"y":1.6065,"z":3.86},"rot":{"x":359.9831,"y":0.0007,"z":359.92}},"797927":{"lock":false,"pos":{"x":-8.8318,"y":1.6637,"z":-4.826},"rot":{"x":359.9199,"y":269.8928,"z":0.0167}},"7a0fd0":{"lock":false,"pos":{"x":-3.9596,"y":1.6557,"z":-10.4355},"rot":{"x":359.9198,"y":269.9092,"z":0.017}},"83b8ac":{"lock":false,"pos":{"x":-23.6766,"y":1.6907,"z":15.19},"rot":{"x":359.9201,"y":270.0085,"z":0.0169}},"8f0ac0":{"lock":false,"pos":{"x":1.0563,"y":1.6885,"z":0.4213},"rot":{"x":359.9197,"y":269.9986,"z":180.0168}},"96fc11":{"lock":false,"pos":{"x":-17.1204,"y":1.6776,"z":-7.6965},"rot":{"x":359.9201,"y":270.0246,"z":180.0168}},"97c293":{"lock":false,"pos":{"x":1.6917,"y":1.5583,"z":14.283},"rot":{"x":359.9551,"y":224.9957,"z":0.0687}},"a6e5f6":{"lock":false,"pos":{"x":-2.6885,"y":1.655,"z":-5.0485},"rot":{"x":359.9197,"y":269.9945,"z":0.0168}},"c031d6":{"lock":false,"pos":{"x":-8.1156,"y":1.7027,"z":4.8965},"rot":{"x":359.9202,"y":270.0161,"z":180.0168}},"c1e370":{"lock":false,"pos":{"x":-23.6764,"y":1.6179,"z":11.46},"rot":{"x":359.9831,"y":0.0006,"z":359.92}},"deefa0":{"lock":false,"pos":{"x":-17.1199,"y":1.6821,"z":7.57},"rot":{"x":359.9201,"y":269.9954,"z":180.0169}},"f2879e":{"lock":false,"pos":{"x":-23.6731,"y":1.6862,"z":-0.0271},"rot":{"x":359.9201,"y":270.0702,"z":0.0168}}}}' +MaterialIndex: -1 +MeshIndex: -1 +Name: Bag +Nickname: '2: The Thrushmoor Terror' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 8.085597 + posY: 1.28528249 + posZ: 0.187039375 + rotX: 0.0799343958 + rotY: 89.99826 + rotZ: 359.9831 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Strange Aeons 2abdd6/Bag 2 The Thrushmoor Terror eea51b/Card 26c1c1.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Strange Aeons 2abdd6/Bag 2 The Thrushmoor Terror eea51b/Card 26c1c1.yaml new file mode 100644 index 000000000..375632abb --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Strange Aeons 2abdd6/Bag 2 The Thrushmoor Terror eea51b/Card 26c1c1.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 262622 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2626': + BackIsHidden: true + BackURL: https://i.imgur.com/FDRysur.jpg + FaceURL: https://i.imgur.com/rjTQyD7.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 26c1c1 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -23.6763954 + posY: 1.68845809 + posZ: 7.56991434 + rotX: 359.9201 + rotY: 270.010437 + rotZ: 0.01686039 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Strange Aeons 2abdd6/Bag 2 The Thrushmoor Terror eea51b/Card 44b479.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Strange Aeons 2abdd6/Bag 2 The Thrushmoor Terror eea51b/Card 44b479.yaml new file mode 100644 index 000000000..64ca78edd --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Strange Aeons 2abdd6/Bag 2 The Thrushmoor Terror eea51b/Card 44b479.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 262621 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2626': + BackIsHidden: true + BackURL: https://i.imgur.com/FDRysur.jpg + FaceURL: https://i.imgur.com/rjTQyD7.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 44b479 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -12.595788 + posY: 1.67074227 + posZ: -0.120406777 + rotX: 359.9201 + rotY: 269.988647 + rotZ: 0.0168918464 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Strange Aeons 2abdd6/Bag 2 The Thrushmoor Terror eea51b/Card 51476e.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Strange Aeons 2abdd6/Bag 2 The Thrushmoor Terror eea51b/Card 51476e.yaml new file mode 100644 index 000000000..284d2fdeb --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Strange Aeons 2abdd6/Bag 2 The Thrushmoor Terror eea51b/Card 51476e.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 262623 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2626': + BackIsHidden: true + BackURL: https://i.imgur.com/FDRysur.jpg + FaceURL: https://i.imgur.com/rjTQyD7.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 51476e +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -17.1200256 + posY: 1.67990077 + posZ: -0.0299623646 + rotX: 359.9201 + rotY: 269.983276 + rotZ: 180.016891 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Strange Aeons 2abdd6/Bag 2 The Thrushmoor Terror eea51b/Card 521307.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Strange Aeons 2abdd6/Bag 2 The Thrushmoor Terror eea51b/Card 521307.yaml new file mode 100644 index 000000000..48e314d04 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Strange Aeons 2abdd6/Bag 2 The Thrushmoor Terror eea51b/Card 521307.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 262620 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2626': + BackIsHidden: true + BackURL: https://i.imgur.com/FDRysur.jpg + FaceURL: https://i.imgur.com/rjTQyD7.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: '521307' +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -12.4635658 + posY: 1.67164993 + posZ: 3.587664 + rotX: 359.9201 + rotY: 269.9846 + rotZ: 0.01689809 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Strange Aeons 2abdd6/Bag 2 The Thrushmoor Terror eea51b/Card 6ecbc4.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Strange Aeons 2abdd6/Bag 2 The Thrushmoor Terror eea51b/Card 6ecbc4.yaml new file mode 100644 index 000000000..21fcec468 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Strange Aeons 2abdd6/Bag 2 The Thrushmoor Terror eea51b/Card 6ecbc4.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 262624 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2626': + BackIsHidden: true + BackURL: https://i.imgur.com/FDRysur.jpg + FaceURL: https://i.imgur.com/rjTQyD7.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 6ecbc4 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -30.2242832 + posY: 1.69758868 + posZ: 7.570005 + rotX: 359.9201 + rotY: 270.00882 + rotZ: 0.0168639421 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Strange Aeons 2abdd6/Bag 2 The Thrushmoor Terror eea51b/Card 83b8ac.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Strange Aeons 2abdd6/Bag 2 The Thrushmoor Terror eea51b/Card 83b8ac.yaml new file mode 100644 index 000000000..7da389239 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Strange Aeons 2abdd6/Bag 2 The Thrushmoor Terror eea51b/Card 83b8ac.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 262627 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2626': + BackIsHidden: true + BackURL: https://i.imgur.com/FDRysur.jpg + FaceURL: https://i.imgur.com/rjTQyD7.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 83b8ac +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -23.6765976 + posY: 1.6907022 + posZ: 15.1900072 + rotX: 359.9201 + rotY: 270.008545 + rotZ: 0.016865205 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Strange Aeons 2abdd6/Bag 2 The Thrushmoor Terror eea51b/Card 96fc11.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Strange Aeons 2abdd6/Bag 2 The Thrushmoor Terror eea51b/Card 96fc11.yaml new file mode 100644 index 000000000..ba518ad05 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Strange Aeons 2abdd6/Bag 2 The Thrushmoor Terror eea51b/Card 96fc11.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 262625 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2626': + BackIsHidden: true + BackURL: https://i.imgur.com/FDRysur.jpg + FaceURL: https://i.imgur.com/rjTQyD7.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 96fc11 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -17.1204071 + posY: 1.67764366 + posZ: -7.696488 + rotX: 359.9201 + rotY: 270.024628 + rotZ: 180.01683 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Strange Aeons 2abdd6/Bag 2 The Thrushmoor Terror eea51b/Card deefa0.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Strange Aeons 2abdd6/Bag 2 The Thrushmoor Terror eea51b/Card deefa0.yaml new file mode 100644 index 000000000..167424345 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Strange Aeons 2abdd6/Bag 2 The Thrushmoor Terror eea51b/Card deefa0.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 262628 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2626': + BackIsHidden: true + BackURL: https://i.imgur.com/FDRysur.jpg + FaceURL: https://i.imgur.com/rjTQyD7.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: deefa0 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -17.1199379 + posY: 1.68213844 + posZ: 7.56999159 + rotX: 359.9201 + rotY: 269.995361 + rotZ: 180.016876 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Strange Aeons 2abdd6/Bag 2 The Thrushmoor Terror eea51b/Card f2879e.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Strange Aeons 2abdd6/Bag 2 The Thrushmoor Terror eea51b/Card f2879e.yaml new file mode 100644 index 000000000..063c880f7 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Strange Aeons 2abdd6/Bag 2 The Thrushmoor Terror eea51b/Card f2879e.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 262626 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2626': + BackIsHidden: true + BackURL: https://i.imgur.com/FDRysur.jpg + FaceURL: https://i.imgur.com/rjTQyD7.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: f2879e +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -23.673069 + posY: 1.68621647 + posZ: -0.0271003544 + rotX: 359.920074 + rotY: 270.0702 + rotZ: 0.0167784411 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Strange Aeons 2abdd6/Bag 2 The Thrushmoor Terror eea51b/Card The Thrushmoor Terror 482923.yaml new file mode 100644 index 000000000..e2d5b9286 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Strange Aeons 2abdd6/Bag 2 The Thrushmoor Terror eea51b/Card The Thrushmoor Terror 482923.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 262616 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2626': + BackIsHidden: true + BackURL: https://i.imgur.com/FDRysur.jpg + FaceURL: https://i.imgur.com/rjTQyD7.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: '482923' +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: The Thrushmoor Terror +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -50.9243851 + posY: 1.72662556 + posZ: 8.17843151 + rotX: 359.920135 + rotY: 269.9092 + rotZ: 0.017004054 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Strange Aeons 2abdd6/Bag 2 The Thrushmoor Terror eea51b/Card The Thrushmoor Terror 7a0fd0.yaml new file mode 100644 index 000000000..9c641c557 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Strange Aeons 2abdd6/Bag 2 The Thrushmoor Terror eea51b/Card The Thrushmoor Terror 7a0fd0.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 262616 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2626': + BackIsHidden: true + BackURL: https://i.imgur.com/FDRysur.jpg + FaceURL: https://i.imgur.com/rjTQyD7.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 7a0fd0 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: The Thrushmoor Terror +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.959571 + posY: 1.65565491 + posZ: -10.4354649 + rotX: 359.919769 + rotY: 269.9092 + rotZ: 0.01696807 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Strange Aeons 2abdd6/Bag 2 The Thrushmoor Terror eea51b/Custom_Model_Bag Set-Aside 97c293.yaml new file mode 100644 index 000000000..19e6307be --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Strange Aeons 2abdd6/Bag 2 The Thrushmoor Terror eea51b/Custom_Model_Bag Set-Aside 97c293.yaml @@ -0,0 +1,58 @@ +Autoraise: true +ColorDiffuse: + b: 0.02148666 + g: 0.00100758043 + r: 0.02148666 +ContainedObjects: +- !include 'Custom_Model_Bag Set-Aside 97c293/Card a6b5da.yaml' +- !include 'Custom_Model_Bag Set-Aside 97c293/Card 4b0f8b.yaml' +- !include 'Custom_Model_Bag Set-Aside 97c293/Deck Star stele story assets 41e90a.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: '' +GMNotes: '' +GUID: 97c293 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +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.691685 + posY: 1.558325 + posZ: 14.2830143 + rotX: 359.955139 + rotY: 224.995712 + rotZ: 0.06867646 + scaleX: 2.0 + scaleY: 2.0 + scaleZ: 2.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Strange Aeons 2abdd6/Bag 2 The Thrushmoor Terror eea51b/Custom_Model_Bag Set-Aside 97c293/Card 4b0f8b.yaml new file mode 100644 index 000000000..cda0cbe37 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Strange Aeons 2abdd6/Bag 2 The Thrushmoor Terror eea51b/Custom_Model_Bag Set-Aside 97c293/Card 4b0f8b.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 263226 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2632': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/yrcMJ0I.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 4b0f8b +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -24.960722 + posY: 1.86698163 + posZ: -110.490479 + rotX: 0.02080187 + rotY: 270.0202 + rotZ: 0.0167818926 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Strange Aeons 2abdd6/Bag 2 The Thrushmoor Terror eea51b/Custom_Model_Bag Set-Aside 97c293/Card a6b5da.yaml new file mode 100644 index 000000000..fb6f54ce5 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Strange Aeons 2abdd6/Bag 2 The Thrushmoor Terror eea51b/Custom_Model_Bag Set-Aside 97c293/Card a6b5da.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 263225 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2632': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/yrcMJ0I.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: a6b5da +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -22.30701 + posY: 1.86690557 + posZ: -114.911987 + rotX: 0.0208227839 + rotY: 270.028625 + rotZ: 0.0167933423 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/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 new file mode 100644 index 000000000..f14db1037 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/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 @@ -0,0 +1,172 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 262619 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2626': + BackIsHidden: true + BackURL: https://i.imgur.com/FDRysur.jpg + FaceURL: https://i.imgur.com/rjTQyD7.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: bcbf39 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -35.60615 + posY: 1.35985315 + posZ: -84.19881 + rotX: 0.0148614561 + rotY: 270.017273 + rotZ: 0.0125605687 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 262618 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2626': + BackIsHidden: true + BackURL: https://i.imgur.com/FDRysur.jpg + FaceURL: https://i.imgur.com/rjTQyD7.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 6d7085 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -35.89851 + posY: 1.49983847 + posZ: -83.91149 + rotX: 0.0273555331 + rotY: 270.013062 + rotZ: -0.004966652 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 262617 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2626': + BackIsHidden: true + BackURL: https://i.imgur.com/FDRysur.jpg + FaceURL: https://i.imgur.com/rjTQyD7.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: c593b0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -35.62131 + posY: 1.517721 + posZ: -84.16837 + rotX: 0.0207529683 + rotY: 270.016144 + rotZ: 0.0223808046 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2626': + BackIsHidden: true + BackURL: https://i.imgur.com/FDRysur.jpg + FaceURL: https://i.imgur.com/rjTQyD7.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 262619 +- 262618 +- 262617 +Description: '' +GMNotes: '' +GUID: 41e90a +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Star stele story assets +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -38.80141 + posY: 3.38700819 + posZ: -66.59583 + rotX: 359.7213 + rotY: 269.9885 + rotZ: 358.3849 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Strange Aeons 2abdd6/Bag 2 The Thrushmoor Terror eea51b/Custom_Tile 085d1f.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Strange Aeons 2abdd6/Bag 2 The Thrushmoor Terror eea51b/Custom_Tile 085d1f.yaml new file mode 100644 index 000000000..85f304880 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Strange Aeons 2abdd6/Bag 2 The Thrushmoor Terror eea51b/Custom_Tile 085d1f.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 085d1f +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.1160011 + posY: 1.6214906 + posZ: 7.398908 + rotX: 359.9201 + rotY: 269.999969 + rotZ: 0.01690682 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Strange Aeons 2abdd6/Bag 2 The Thrushmoor Terror eea51b/Custom_Tile 197356.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Strange Aeons 2abdd6/Bag 2 The Thrushmoor Terror eea51b/Custom_Tile 197356.yaml new file mode 100644 index 000000000..a67a2cf23 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Strange Aeons 2abdd6/Bag 2 The Thrushmoor Terror eea51b/Custom_Tile 197356.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: '197356' +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.5921555 + posY: 1.6124233 + posZ: 7.500582 + rotX: 359.9201 + rotY: 270.0001 + rotZ: 0.0168992542 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Strange Aeons 2abdd6/Bag 2 The Thrushmoor Terror eea51b/Custom_Tile 20add9.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Strange Aeons 2abdd6/Bag 2 The Thrushmoor Terror eea51b/Custom_Tile 20add9.yaml new file mode 100644 index 000000000..f86325773 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Strange Aeons 2abdd6/Bag 2 The Thrushmoor Terror eea51b/Custom_Tile 20add9.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 20add9 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.6375313 + posY: 1.60914218 + posZ: -3.85755539 + rotX: 359.93158 + rotY: 314.999939 + rotZ: 359.955444 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Strange Aeons 2abdd6/Bag 2 The Thrushmoor Terror eea51b/Custom_Tile 2cb49f.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Strange Aeons 2abdd6/Bag 2 The Thrushmoor Terror eea51b/Custom_Tile 2cb49f.yaml new file mode 100644 index 000000000..45e14f064 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Strange Aeons 2abdd6/Bag 2 The Thrushmoor Terror eea51b/Custom_Tile 2cb49f.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 2cb49f +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.4516125 + posY: 1.611137 + posZ: 3.79734778 + rotX: 0.0445660725 + rotY: 45.0000572 + rotZ: 359.9316 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Strange Aeons 2abdd6/Bag 2 The Thrushmoor Terror eea51b/Custom_Tile 31c54f.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Strange Aeons 2abdd6/Bag 2 The Thrushmoor Terror eea51b/Custom_Tile 31c54f.yaml new file mode 100644 index 000000000..a9cda29bd --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Strange Aeons 2abdd6/Bag 2 The Thrushmoor Terror eea51b/Custom_Tile 31c54f.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 31c54f +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.6764526 + posY: 1.61565244 + posZ: 3.85998487 + rotX: 359.983124 + rotY: 0.0005986374 + rotZ: 359.920074 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Strange Aeons 2abdd6/Bag 2 The Thrushmoor Terror eea51b/Custom_Tile 7234af.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Strange Aeons 2abdd6/Bag 2 The Thrushmoor Terror eea51b/Custom_Tile 7234af.yaml new file mode 100644 index 000000000..4b033a73e --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Strange Aeons 2abdd6/Bag 2 The Thrushmoor Terror eea51b/Custom_Tile 7234af.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 7234af +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.1200466 + posY: 1.60650992 + posZ: 3.86001062 + rotX: 359.983124 + rotY: 0.000687627238 + rotZ: 359.920044 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Strange Aeons 2abdd6/Bag 2 The Thrushmoor Terror eea51b/Custom_Tile c1e370.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Strange Aeons 2abdd6/Bag 2 The Thrushmoor Terror eea51b/Custom_Tile c1e370.yaml new file mode 100644 index 000000000..9659c4b27 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Strange Aeons 2abdd6/Bag 2 The Thrushmoor Terror eea51b/Custom_Tile c1e370.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: c1e370 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.6764488 + posY: 1.61789012 + posZ: 11.4599876 + rotX: 359.983124 + rotY: 0.000606517831 + rotZ: 359.920044 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Strange Aeons 2abdd6/Bag 2 The Thrushmoor Terror eea51b/Deck Cthulhu Act 797927.yaml new file mode 100644 index 000000000..a02701ff6 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Strange Aeons 2abdd6/Bag 2 The Thrushmoor Terror eea51b/Deck Cthulhu Act 797927.yaml @@ -0,0 +1,172 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 262523 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2625': + BackIsHidden: true + BackURL: https://i.imgur.com/zfEA0TW.jpg + FaceURL: https://i.imgur.com/nTMK5As.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: a556fc + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -30.2115784 + posY: 1.36643493 + posZ: -68.77802 + rotX: 0.018690113 + rotY: 269.9947 + rotZ: 0.0163348243 + scaleX: 0.7 + scaleY: 1.0 + scaleZ: 0.7 + XmlUI: '' +- Autoraise: true + CardID: 262521 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2625': + BackIsHidden: true + BackURL: https://i.imgur.com/zfEA0TW.jpg + FaceURL: https://i.imgur.com/nTMK5As.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: f4327b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -30.3290386 + posY: 1.50682068 + posZ: -68.6217041 + rotX: 0.00938017 + rotY: 269.994446 + rotZ: 0.00907552 + scaleX: 0.7 + scaleY: 1.0 + scaleZ: 0.7 + XmlUI: '' +- Autoraise: true + CardID: 262519 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2625': + BackIsHidden: true + BackURL: https://i.imgur.com/zfEA0TW.jpg + FaceURL: https://i.imgur.com/nTMK5As.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: '486908' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -30.4036312 + posY: 1.524162 + posZ: -68.76361 + rotX: 0.0207562055 + rotY: 269.9626 + rotZ: 0.0342478827 + scaleX: 0.7 + scaleY: 1.0 + scaleZ: 0.7 + XmlUI: '' +CustomDeck: + '2625': + BackIsHidden: true + BackURL: https://i.imgur.com/zfEA0TW.jpg + FaceURL: https://i.imgur.com/nTMK5As.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 262523 +- 262521 +- 262519 +Description: The Thrushmoor Terror +GMNotes: '' +GUID: '797927' +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Cthulhu Act +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -8.831793 + posY: 1.66365492 + posZ: -4.825992 + rotX: 359.919922 + rotY: 269.892822 + rotZ: 0.0166704785 + scaleX: 0.7 + scaleY: 1.0 + scaleZ: 0.7 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Strange Aeons 2abdd6/Bag 2 The Thrushmoor Terror eea51b/Deck Cthulhu Agenda 5c3018.yaml new file mode 100644 index 000000000..f5be1dae7 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Strange Aeons 2abdd6/Bag 2 The Thrushmoor Terror eea51b/Deck Cthulhu Agenda 5c3018.yaml @@ -0,0 +1,172 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 262518 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2625': + BackIsHidden: true + BackURL: https://i.imgur.com/zfEA0TW.jpg + FaceURL: https://i.imgur.com/nTMK5As.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: c04cf9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -12.1211987 + posY: 1.3706975 + posZ: -75.19782 + rotX: 359.9881 + rotY: 269.995 + rotZ: 0.0101874555 + scaleX: 0.7 + scaleY: 1.0 + scaleZ: 0.7 + XmlUI: '' +- Autoraise: true + CardID: 262517 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2625': + BackIsHidden: true + BackURL: https://i.imgur.com/zfEA0TW.jpg + FaceURL: https://i.imgur.com/nTMK5As.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 898e36 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -15.1367922 + posY: 1.37004125 + posZ: -75.03693 + rotX: 0.0116877519 + rotY: 269.98764 + rotZ: 0.0172912646 + scaleX: 0.7 + scaleY: 1.0 + scaleZ: 0.7 + XmlUI: '' +- Autoraise: true + CardID: 262516 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2625': + BackIsHidden: true + BackURL: https://i.imgur.com/zfEA0TW.jpg + FaceURL: https://i.imgur.com/nTMK5As.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 8c459f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -15.502347 + posY: 1.51023722 + posZ: -75.08347 + rotX: -0.00122970832 + rotY: 269.9879 + rotZ: 0.0200412683 + scaleX: 0.7 + scaleY: 1.0 + scaleZ: 0.7 + XmlUI: '' +CustomDeck: + '2625': + BackIsHidden: true + BackURL: https://i.imgur.com/zfEA0TW.jpg + FaceURL: https://i.imgur.com/nTMK5As.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 262518 +- 262517 +- 262516 +Description: The Thrushmoor Terror +GMNotes: '' +GUID: 5c3018 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Cthulhu Agenda +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -8.804911 + posY: 1.66510677 + posZ: 0.246388882 + rotX: 359.920319 + rotY: 270.106018 + rotZ: 0.0167600233 + scaleX: 0.7 + scaleY: 1.0 + scaleZ: 0.7 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Strange Aeons 2abdd6/Bag 2 The Thrushmoor Terror eea51b/Deck Cthulhu Encounter Deck c031d6.yaml new file mode 100644 index 000000000..68ebcda6b --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Strange Aeons 2abdd6/Bag 2 The Thrushmoor Terror eea51b/Deck Cthulhu Encounter Deck c031d6.yaml @@ -0,0 +1,738 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 263241 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2632': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/yrcMJ0I.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: d64e7f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -45.1460571 + posY: 1.36598825 + posZ: -52.48562 + rotX: 0.0146396039 + rotY: 270.0414 + rotZ: 0.004810976 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 263241 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2632': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/yrcMJ0I.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 7881f3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -44.8775635 + posY: 1.506199 + posZ: -52.7409935 + rotX: 359.9752 + rotY: 269.964355 + rotZ: 0.00451320224 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 263239 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2632': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/yrcMJ0I.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 5247c8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -44.8746948 + posY: 1.52834308 + posZ: -56.2079773 + rotX: 359.966 + rotY: 270.02948 + rotZ: 9.440535e-05 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 263239 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2632': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/yrcMJ0I.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: c879cd + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -44.92082 + posY: 1.41432416 + posZ: -56.2251 + rotX: 359.972229 + rotY: 269.990143 + rotZ: 359.98877 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 263239 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2632': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/yrcMJ0I.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 48a0d8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -45.2418365 + posY: 1.36483276 + posZ: -55.4908257 + rotX: 0.0181510746 + rotY: 270.0197 + rotZ: 0.0159562323 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 263239 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2632': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/yrcMJ0I.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 00e8ee + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -45.2924461 + posY: 1.47004008 + posZ: -55.62738 + rotX: 359.971558 + rotY: 270.0543 + rotZ: 359.988739 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3625 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: df668b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Mysterious Chanting + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -39.1369133 + posY: 1.36226118 + posZ: -72.04251 + rotX: 0.0208070967 + rotY: 269.9991 + rotZ: 0.01677263 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3625 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: 6f5b7b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Mysterious Chanting + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -42.708847 + posY: 1.36093915 + posZ: -72.12751 + rotX: 0.0208084676 + rotY: 269.999084 + rotZ: 0.0167730115 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3624 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Cultist. + GMNotes: '' + GUID: 159f90 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Wizard of the Order + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -39.2446747 + posY: 1.36133432 + posZ: -75.0754 + rotX: 0.0208085775 + rotY: 269.999023 + rotZ: 0.0167731922 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3623 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Cultist. + GMNotes: '' + GUID: c70e63 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Acolyte + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -43.194313 + posY: 1.35990977 + posZ: -75.04154 + rotX: 0.02080801 + rotY: 269.999023 + rotZ: 0.0167749748 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3623 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Cultist. + GMNotes: '' + GUID: 4072d7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Acolyte + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -46.8113976 + posY: 1.35860145 + posZ: -75.02324 + rotX: 0.0208094623 + rotY: 269.999023 + rotZ: 0.0167704485 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3623 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Cultist. + GMNotes: '' + GUID: 69cfc0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Acolyte + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -50.1608543 + posY: 1.3572855 + posZ: -75.36358 + rotX: 0.0208095815 + rotY: 269.999023 + rotZ: 0.01677315 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 263240 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2632': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/yrcMJ0I.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 6741e7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -48.95045 + posY: 1.36264884 + posZ: -58.30429 + rotX: 0.0172345471 + rotY: 270.003571 + rotZ: 0.0153556615 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 263240 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2632': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/yrcMJ0I.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: '179283' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -48.7325 + posY: 1.50282562 + posZ: -58.3075943 + rotX: 0.0197180919 + rotY: 270.0031 + rotZ: 0.009243223 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 263238 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2632': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/yrcMJ0I.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: b16a88 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -44.8203163 + posY: 1.36339152 + posZ: -61.0425034 + rotX: 0.0194021668 + rotY: 270.019562 + rotZ: 0.0162584279 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 263238 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2632': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/yrcMJ0I.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 34bfac + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -44.5723343 + posY: 1.50363791 + posZ: -61.32174 + rotX: 0.00597066246 + rotY: 270.019318 + rotZ: 0.02520978 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2632': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/yrcMJ0I.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 263241 +- 263241 +- 263239 +- 263239 +- 263239 +- 263239 +- 3625 +- 3625 +- 3624 +- 3623 +- 3623 +- 3623 +- 263240 +- 263240 +- 263238 +- 263238 +Description: The Thrushmoor Terror +GMNotes: '' +GUID: c031d6 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Cthulhu Encounter Deck +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -8.115572 + posY: 1.70270538 + posZ: 4.89649773 + rotX: 359.920227 + rotY: 270.0161 + rotZ: 180.016846 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Strange Aeons 2abdd6/Bag 2 The Thrushmoor Terror eea51b/Deck Encounter Deck 658c70.yaml new file mode 100644 index 000000000..c8dae589f --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Strange Aeons 2abdd6/Bag 2 The Thrushmoor Terror eea51b/Deck Encounter Deck 658c70.yaml @@ -0,0 +1,566 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 263223 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2632': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/yrcMJ0I.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: '156781' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -45.8532333 + posY: 1.365341 + posZ: -53.1411438 + rotX: 0.0197737 + rotY: 270.016418 + rotZ: 0.0159816146 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 263223 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2632': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/yrcMJ0I.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: eb4831 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -45.78651 + posY: 1.5007937 + posZ: -53.04934 + rotX: 0.008027632 + rotY: 270.015381 + rotZ: 0.0122195883 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 263224 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2632': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/yrcMJ0I.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 3a1fee + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -45.8253555 + posY: 1.52309966 + posZ: -53.0316544 + rotX: 0.0212293752 + rotY: 270.0178 + rotZ: 0.0131412279 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 263224 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2632': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/yrcMJ0I.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 3a1fee + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -45.011425 + posY: 1.51252139 + posZ: -53.6260643 + rotX: 0.00977825 + rotY: 270.0181 + rotZ: 0.0270951372 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3629 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Byakhee. + GMNotes: '' + GUID: '401760' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Screeching Byakhee + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -42.2266541 + posY: 1.36351991 + posZ: -63.9088669 + rotX: 0.0208072532 + rotY: 269.999542 + rotZ: 0.0167740453 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3635 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Monster. Deep One. + GMNotes: '' + GUID: bf03e4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Young Deep One + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -45.5911636 + posY: 1.362294 + posZ: -63.9228973 + rotX: 0.020807663 + rotY: 269.999573 + rotZ: 0.0167748723 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3629 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Byakhee. + GMNotes: '' + GUID: 66321f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Screeching Byakhee + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -42.3169174 + posY: 1.36273742 + posZ: -66.47009 + rotX: 0.0208080187 + rotY: 269.999481 + rotZ: 0.0167738255 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3635 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Monster. Deep One. + GMNotes: '' + GUID: 67f705 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Young Deep One + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -45.62557 + posY: 1.36155236 + posZ: -66.41353 + rotX: 0.0208076388 + rotY: 269.9996 + rotZ: 0.0167733971 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3636 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: 8e441a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dreams of R'lyeh + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -49.5323372 + posY: 1.36089015 + posZ: -63.8288231 + rotX: 0.0208082255 + rotY: 269.999634 + rotZ: 0.0167722777 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3636 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: da8001 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dreams of R'lyeh + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -49.7287636 + posY: 1.36012125 + posZ: -66.21213 + rotX: 0.02080835 + rotY: 269.999756 + rotZ: 0.0167739037 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3630 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: fd620f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Yellow Sign + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -53.43038 + posY: 1.35947037 + posZ: -63.8430672 + rotX: 0.0208080076 + rotY: 269.999573 + rotZ: 0.0167736616 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3630 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: d98d0d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Yellow Sign + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -53.4391022 + posY: 1.3587817 + posZ: -66.18476 + rotX: 0.0208081771 + rotY: 269.999451 + rotZ: 0.0167714171 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2632': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/yrcMJ0I.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 263223 +- 263223 +- 263224 +- 263224 +- 3629 +- 3635 +- 3629 +- 3635 +- 3636 +- 3636 +- 3630 +- 3630 +Description: The Thrushmoor Terror +GMNotes: '' +GUID: 658c70 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Encounter Deck +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.93330956 + posY: 1.67578745 + posZ: 5.75730467 + rotX: 359.919739 + rotY: 269.999756 + rotZ: 180.01683 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Strange Aeons 2abdd6/Bag 2 The Thrushmoor Terror eea51b/Deck Hastur Act a6e5f6.yaml new file mode 100644 index 000000000..f1e420a1c --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Strange Aeons 2abdd6/Bag 2 The Thrushmoor Terror eea51b/Deck Hastur Act a6e5f6.yaml @@ -0,0 +1,172 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 262522 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2625': + BackIsHidden: true + BackURL: https://i.imgur.com/zfEA0TW.jpg + FaceURL: https://i.imgur.com/nTMK5As.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: ea0974 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -17.7865772 + posY: 1.37016356 + posZ: -71.466095 + rotX: 0.0190992672 + rotY: 269.994934 + rotZ: 0.01635532 + scaleX: 0.7 + scaleY: 1.0 + scaleZ: 0.7 + XmlUI: '' +- Autoraise: true + CardID: 262520 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2625': + BackIsHidden: true + BackURL: https://i.imgur.com/zfEA0TW.jpg + FaceURL: https://i.imgur.com/nTMK5As.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: ff2dd8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -17.8432789 + posY: 1.51053691 + posZ: -71.43266 + rotX: 0.00751911057 + rotY: 269.9949 + rotZ: 0.01226045 + scaleX: 0.7 + scaleY: 1.0 + scaleZ: 0.7 + XmlUI: '' +- Autoraise: true + CardID: 262524 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2625': + BackIsHidden: true + BackURL: https://i.imgur.com/zfEA0TW.jpg + FaceURL: https://i.imgur.com/nTMK5As.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 5fd66d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -17.6086082 + posY: 1.52796829 + posZ: -71.53432 + rotX: 0.020845769 + rotY: 269.995178 + rotZ: 0.0171829741 + scaleX: 0.7 + scaleY: 1.0 + scaleZ: 0.7 + XmlUI: '' +CustomDeck: + '2625': + BackIsHidden: true + BackURL: https://i.imgur.com/zfEA0TW.jpg + FaceURL: https://i.imgur.com/nTMK5As.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 262522 +- 262520 +- 262524 +Description: The Thrushmoor Terror +GMNotes: '' +GUID: a6e5f6 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Hastur Act +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.68847561 + posY: 1.65499711 + posZ: -5.04854059 + rotX: 359.919739 + rotY: 269.994476 + rotZ: 0.0168469232 + scaleX: 0.7 + scaleY: 1.0 + scaleZ: 0.7 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Strange Aeons 2abdd6/Bag 2 The Thrushmoor Terror eea51b/Deck Hastur Agenda 19cca9.yaml new file mode 100644 index 000000000..0763c3346 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Strange Aeons 2abdd6/Bag 2 The Thrushmoor Terror eea51b/Deck Hastur Agenda 19cca9.yaml @@ -0,0 +1,172 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 262515 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2625': + BackIsHidden: true + BackURL: https://i.imgur.com/zfEA0TW.jpg + FaceURL: https://i.imgur.com/nTMK5As.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 6a8ff2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -20.5421371 + posY: 1.36745322 + posZ: -74.8449554 + rotX: 359.9697 + rotY: 269.995 + rotZ: 0.007847685 + scaleX: 0.7 + scaleY: 1.0 + scaleZ: 0.7 + XmlUI: '' +- Autoraise: true + CardID: 262514 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2625': + BackIsHidden: true + BackURL: https://i.imgur.com/zfEA0TW.jpg + FaceURL: https://i.imgur.com/nTMK5As.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 4debdd + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -23.2882633 + posY: 1.36726534 + posZ: -74.6991959 + rotX: 0.0147331366 + rotY: 269.9875 + rotZ: 0.01652557 + scaleX: 0.7 + scaleY: 1.0 + scaleZ: 0.7 + XmlUI: '' +- Autoraise: true + CardID: 262513 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2625': + BackIsHidden: true + BackURL: https://i.imgur.com/zfEA0TW.jpg + FaceURL: https://i.imgur.com/nTMK5As.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 04a1cb + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -23.3561573 + posY: 1.50762308 + posZ: -74.68979 + rotX: 359.990417 + rotY: 269.969147 + rotZ: 0.0117169833 + scaleX: 0.7 + scaleY: 1.0 + scaleZ: 0.7 + XmlUI: '' +CustomDeck: + '2625': + BackIsHidden: true + BackURL: https://i.imgur.com/zfEA0TW.jpg + FaceURL: https://i.imgur.com/nTMK5As.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 262515 +- 262514 +- 262513 +Description: The Thrushmoor Terror +GMNotes: '' +GUID: 19cca9 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Hastur Agenda +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.71790051 + posY: 1.65662932 + posZ: 0.36563006 + rotX: 359.9197 + rotY: 270.1591 + rotZ: 0.0166158341 + scaleX: 0.7 + scaleY: 1.0 + scaleZ: 0.7 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Strange Aeons 2abdd6/Bag 2 The Thrushmoor Terror eea51b/Deck Hastur Encounter Deck 8f0ac0.yaml new file mode 100644 index 000000000..47e713e26 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Strange Aeons 2abdd6/Bag 2 The Thrushmoor Terror eea51b/Deck Hastur Encounter Deck 8f0ac0.yaml @@ -0,0 +1,738 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 3617 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: aa3d47 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Rotting Remains + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -59.4649162 + posY: 1.35112107 + posZ: -85.57742 + rotX: 0.0244021453 + rotY: 270.0006 + rotZ: 0.009796132 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3617 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: 18e09c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Rotting Remains + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -59.76143 + posY: 1.38541377 + posZ: -84.91281 + rotX: 0.06398388 + rotY: 269.995758 + rotZ: 359.555237 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3617 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: da8001 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Rotting Remains + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -59.33921 + posY: 1.530593 + posZ: -84.74895 + rotX: 359.965363 + rotY: 270.003479 + rotZ: 359.438873 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3618 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: 27c05d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Frozen in Fear + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -59.42424 + posY: 1.66829669 + posZ: -84.79381 + rotX: 0.0233336873 + rotY: 270.011383 + rotZ: 359.412933 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3619 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: f1a34d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dissonant Voices + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -59.52523 + posY: 1.64420915 + posZ: -85.6664047 + rotX: 0.0208087638 + rotY: 269.999023 + rotZ: 0.0167709775 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3618 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: c40f57 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Frozen in Fear + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -59.826004 + posY: 1.48149347 + posZ: -83.46909 + rotX: 0.022467481 + rotY: 269.976746 + rotZ: 354.8849 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3619 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: '260768' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dissonant Voices + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -59.5957947 + posY: 1.66134155 + posZ: -83.33852 + rotX: 0.025377674 + rotY: 270.0119 + rotZ: 357.386017 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 263216 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2632': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/yrcMJ0I.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: fb50d4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -50.92705 + posY: 1.51612329 + posZ: -64.45724 + rotX: 0.0187628232 + rotY: 270.019379 + rotZ: 0.0459726 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 263216 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2632': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/yrcMJ0I.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: fb50d4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -51.3112373 + posY: 1.47983336 + posZ: -63.7911453 + rotX: 0.02080297 + rotY: 270.017578 + rotZ: 0.0167795457 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 263214 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2632': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/yrcMJ0I.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 8b0e3d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -50.58321 + posY: 1.48370516 + posZ: -63.8564644 + rotX: 0.0196770765 + rotY: 270.019867 + rotZ: 0.0165052433 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 263216 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2632': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/yrcMJ0I.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: fb50d4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -50.93621 + posY: 1.48656952 + posZ: -64.09382 + rotX: 0.0217603315 + rotY: 270.0177 + rotZ: 0.0141749084 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 263200 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2632': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/yrcMJ0I.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 4b0f8b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -50.3707352 + posY: 1.50299561 + posZ: -64.23696 + rotX: 0.01947842 + rotY: 270.017242 + rotZ: 0.0172682889 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 263217 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2632': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/yrcMJ0I.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: '454090' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -50.63027 + posY: 1.51254058 + posZ: -64.10031 + rotX: 0.02103775 + rotY: 270.020142 + rotZ: 0.0153509323 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 263217 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2632': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/yrcMJ0I.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: '454090' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -50.5724678 + posY: 1.53125656 + posZ: -63.80889 + rotX: 0.0235223379 + rotY: 270.0202 + rotZ: 0.0466497168 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 263215 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2632': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/yrcMJ0I.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 6e08fa + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -50.796978 + posY: 1.53175163 + posZ: -64.32114 + rotX: 0.0212764032 + rotY: 270.018372 + rotZ: 0.0160141867 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 263215 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2632': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/yrcMJ0I.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 6e08fa + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -50.24835 + posY: 1.54696357 + posZ: -64.64169 + rotX: 0.0154236 + rotY: 270.018677 + rotZ: 0.02182345 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2632': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/yrcMJ0I.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 3617 +- 3617 +- 3617 +- 3618 +- 3619 +- 3618 +- 3619 +- 263216 +- 263216 +- 263214 +- 263216 +- 263200 +- 263217 +- 263217 +- 263215 +- 263215 +Description: The Thrushmoor Terror +GMNotes: '' +GUID: 8f0ac0 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Hastur Encounter Deck +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 1.05626392 + posY: 1.68854868 + posZ: 0.4212914 + rotX: 359.919739 + rotY: 269.998627 + rotZ: 180.01683 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Strange Aeons 2abdd6/Bag Fantasy Investigators 7ba738.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Strange Aeons 2abdd6/Bag Fantasy Investigators 7ba738.yaml new file mode 100644 index 000000000..361ff1482 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Strange Aeons 2abdd6/Bag Fantasy Investigators 7ba738.yaml @@ -0,0 +1,41 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +ContainedObjects: +- !include 'Bag Fantasy Investigators 7ba738/Bag Lord Todd 25665a.yaml' +- !include 'Bag Fantasy Investigators 7ba738/Bag Scene 4d9933.yaml' +- !include 'Bag Fantasy Investigators 7ba738/Bag Illustria 35a3d2.yaml' +- !include 'Bag Fantasy Investigators 7ba738/Bag Bastiele 2a0060.yaml' +- !include 'Bag Fantasy Investigators 7ba738/Bag Hubert Thonberry 0a0c0d.yaml' +- !include 'Bag Fantasy Investigators 7ba738/Bag Caspian Kezali 907bb0.yaml' +Description: Pathfinder +GMNotes: '' +GUID: 7ba738 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +MeshIndex: -1 +Name: Bag +Nickname: Fantasy Investigators +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.94601512 + posY: 1.40622234 + posZ: 14.5234652 + rotX: 359.983154 + rotY: -0.00157671946 + rotZ: 359.919678 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Strange Aeons 2abdd6/Bag Fantasy Investigators 7ba738/Bag Bastiele 2a0060.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Strange Aeons 2abdd6/Bag Fantasy Investigators 7ba738/Bag Bastiele 2a0060.yaml new file mode 100644 index 000000000..3fb075f18 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Strange Aeons 2abdd6/Bag Fantasy Investigators 7ba738/Bag Bastiele 2a0060.yaml @@ -0,0 +1,37 @@ +Autoraise: true +ColorDiffuse: + b: 0.0 + g: 0.91061455 + r: 1.0 +ContainedObjects: +- !include 'Bag Bastiele 2a0060/Deck ff2949.yaml' +- !include 'Bag Bastiele 2a0060/Card Bastiele 3aa40a.yaml' +Description: Pathfinder +GMNotes: '' +GUID: 2a0060 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +MeshIndex: -1 +Name: Bag +Nickname: Bastiele +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -46.510807 + posY: 3.4118433 + posZ: -36.6826363 + rotX: 0.0868189 + rotY: 359.984222 + rotZ: 1.25900126 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Strange Aeons 2abdd6/Bag Fantasy Investigators 7ba738/Bag Bastiele 2a0060/Card Bastiele 3aa40a.yaml new file mode 100644 index 000000000..80b7cd506 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Strange Aeons 2abdd6/Bag Fantasy Investigators 7ba738/Bag Bastiele 2a0060/Card Bastiele 3aa40a.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 262500 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2625': + BackIsHidden: true + BackURL: https://i.imgur.com/zfEA0TW.jpg + FaceURL: https://i.imgur.com/nTMK5As.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 3aa40a +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Bastiele +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -62.08262 + posY: 3.581935 + posZ: -42.3503075 + rotX: 3.03696275 + rotY: 270.022156 + rotZ: 1.71157944 + scaleX: 0.8 + scaleY: 1.0 + scaleZ: 0.8 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Strange Aeons 2abdd6/Bag Fantasy Investigators 7ba738/Bag Bastiele 2a0060/Deck ff2949.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Strange Aeons 2abdd6/Bag Fantasy Investigators 7ba738/Bag Bastiele 2a0060/Deck ff2949.yaml new file mode 100644 index 000000000..0dbb466c6 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Strange Aeons 2abdd6/Bag Fantasy Investigators 7ba738/Bag Bastiele 2a0060/Deck ff2949.yaml @@ -0,0 +1,179 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- 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/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Basic Weakness + GMNotes: '' + GUID: 822e3d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Amnesia + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -62.806 + posY: 1.35861039 + posZ: -53.68971 + rotX: -0.000214544809 + rotY: 270.006866 + rotZ: 0.00900115352 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 263331 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2633': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg + FaceURL: https://i.imgur.com/mHJP6b1.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 8af6f3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -39.6794243 + posY: 1.36996055 + posZ: -44.99204 + rotX: 0.0196491331 + rotY: 270.005219 + rotZ: 0.0161142312 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 263330 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2633': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg + FaceURL: https://i.imgur.com/mHJP6b1.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 97487a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -39.80681 + posY: 1.51034522 + posZ: -44.87262 + rotX: 0.0133252842 + rotY: 270.0057 + rotZ: 0.005672474 + 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/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '2633': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg + FaceURL: https://i.imgur.com/mHJP6b1.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 209600 +- 263331 +- 263330 +Description: '' +GMNotes: '' +GUID: ff2949 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -61.4771156 + posY: 3.633362 + posZ: -41.5221634 + rotX: 0.415758282 + rotY: 269.984955 + rotZ: 358.3587 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Strange Aeons 2abdd6/Bag Fantasy Investigators 7ba738/Bag Caspian Kezali 907bb0.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Strange Aeons 2abdd6/Bag Fantasy Investigators 7ba738/Bag Caspian Kezali 907bb0.yaml new file mode 100644 index 000000000..7dd317bd4 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Strange Aeons 2abdd6/Bag Fantasy Investigators 7ba738/Bag Caspian Kezali 907bb0.yaml @@ -0,0 +1,37 @@ +Autoraise: true +ColorDiffuse: + b: 0.7019608 + g: 0.0913327262 + r: 0.0 +ContainedObjects: +- !include 'Bag Caspian Kezali 907bb0/Card Caspian Kezali 3465a5.yaml' +- !include 'Bag Caspian Kezali 907bb0/Deck a57210.yaml' +Description: Pathfinder +GMNotes: '' +GUID: 907bb0 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +MeshIndex: -1 +Name: Bag +Nickname: Caspian Kezali +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -46.26431 + posY: 3.40091681 + posZ: -36.3770828 + rotX: 2.17839527 + rotY: 359.981873 + rotZ: 359.363922 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Strange Aeons 2abdd6/Bag Fantasy Investigators 7ba738/Bag Caspian Kezali 907bb0/Card Caspian Kezali 3465a5.yaml new file mode 100644 index 000000000..fee299300 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Strange Aeons 2abdd6/Bag Fantasy Investigators 7ba738/Bag Caspian Kezali 907bb0/Card Caspian Kezali 3465a5.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 262501 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2625': + BackIsHidden: true + BackURL: https://i.imgur.com/zfEA0TW.jpg + FaceURL: https://i.imgur.com/nTMK5As.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 3465a5 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Caspian Kezali +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -47.0967445 + posY: 3.3921957 + posZ: -48.8411255 + rotX: 356.330658 + rotY: 270.009247 + rotZ: 359.3559 + scaleX: 0.8 + scaleY: 1.0 + scaleZ: 0.8 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Strange Aeons 2abdd6/Bag Fantasy Investigators 7ba738/Bag Caspian Kezali 907bb0/Deck a57210.yaml new file mode 100644 index 000000000..e8b960580 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Strange Aeons 2abdd6/Bag Fantasy Investigators 7ba738/Bag Caspian Kezali 907bb0/Deck a57210.yaml @@ -0,0 +1,179 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- 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/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Basic Weakness + GMNotes: '' + GUID: 7249c3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Amnesia + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -45.7198944 + posY: 1.57142663 + posZ: -41.89311 + rotX: -0.00164289144 + rotY: 269.993561 + rotZ: 359.979828 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 263333 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2633': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg + FaceURL: https://i.imgur.com/mHJP6b1.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 2eb168 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -45.41284 + posY: 1.60429847 + posZ: -39.6051254 + rotX: 359.941345 + rotY: 269.969116 + rotZ: 0.7653112 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 263332 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2633': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg + FaceURL: https://i.imgur.com/mHJP6b1.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: a26c84 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -47.3345833 + posY: 1.76868987 + posZ: -29.0145 + rotX: 359.934662 + rotY: 270.008026 + rotZ: 0.0516360253 + 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/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '2633': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg + FaceURL: https://i.imgur.com/mHJP6b1.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 209600 +- 263333 +- 263332 +Description: '' +GMNotes: '' +GUID: a57210 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -45.4411163 + posY: 3.647577 + posZ: -31.82431 + rotX: 358.393036 + rotY: 270.038879 + rotZ: 356.851166 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Strange Aeons 2abdd6/Bag Fantasy Investigators 7ba738/Bag Hubert Thonberry 0a0c0d.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Strange Aeons 2abdd6/Bag Fantasy Investigators 7ba738/Bag Hubert Thonberry 0a0c0d.yaml new file mode 100644 index 000000000..d1f664c9e --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Strange Aeons 2abdd6/Bag Fantasy Investigators 7ba738/Bag Hubert Thonberry 0a0c0d.yaml @@ -0,0 +1,37 @@ +Autoraise: true +ColorDiffuse: + b: 0.7019608 + g: 0.0913327 + r: 0.0 +ContainedObjects: +- !include 'Bag Hubert Thonberry 0a0c0d/Deck 7634fc.yaml' +- !include 'Bag Hubert Thonberry 0a0c0d/Card Hubert Thonberry 23d41e.yaml' +Description: Pathfinder +GMNotes: '' +GUID: 0a0c0d +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +MeshIndex: -1 +Name: Bag +Nickname: Hubert Thonberry +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -46.3469124 + posY: 3.40732241 + posZ: -36.9231339 + rotX: 358.3423 + rotY: 0.0237012487 + rotZ: -0.004923673 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Strange Aeons 2abdd6/Bag Fantasy Investigators 7ba738/Bag Hubert Thonberry 0a0c0d/Card Hubert Thonberry 23d41e.yaml new file mode 100644 index 000000000..510e45199 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Strange Aeons 2abdd6/Bag Fantasy Investigators 7ba738/Bag Hubert Thonberry 0a0c0d/Card Hubert Thonberry 23d41e.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 262502 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2625': + BackIsHidden: true + BackURL: https://i.imgur.com/zfEA0TW.jpg + FaceURL: https://i.imgur.com/nTMK5As.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 23d41e +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Hubert Thonberry +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -51.80021 + posY: 3.6484108 + posZ: -37.3702736 + rotX: 2.94389 + rotY: 270.0215 + rotZ: 1.46254325 + scaleX: 0.8 + scaleY: 1.0 + scaleZ: 0.8 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Strange Aeons 2abdd6/Bag Fantasy Investigators 7ba738/Bag Hubert Thonberry 0a0c0d/Deck 7634fc.yaml new file mode 100644 index 000000000..05c75847b --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Strange Aeons 2abdd6/Bag Fantasy Investigators 7ba738/Bag Hubert Thonberry 0a0c0d/Deck 7634fc.yaml @@ -0,0 +1,179 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- 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/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Basic Weakness + GMNotes: '' + GUID: b7df3b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Amnesia + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -54.5119553 + posY: 1.59484112 + posZ: -40.6027145 + rotX: 359.975067 + rotY: 269.035126 + rotZ: 1.1942873 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 263335 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2633': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg + FaceURL: https://i.imgur.com/mHJP6b1.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: '279104' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -45.38821 + posY: 1.58954072 + posZ: -40.5436935 + rotX: 359.9761 + rotY: 270.009949 + rotZ: 0.9005516 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 263334 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2633': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg + FaceURL: https://i.imgur.com/mHJP6b1.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 87f5a8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -45.0757561 + posY: 1.73332655 + posZ: -40.446 + rotX: 0.0103062224 + rotY: 270.01355 + rotZ: 0.834555 + 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/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '2633': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg + FaceURL: https://i.imgur.com/mHJP6b1.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 209600 +- 263335 +- 263334 +Description: '' +GMNotes: '' +GUID: 7634fc +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -51.929512 + posY: 3.63910413 + posZ: -37.35277 + rotX: 2.19574833 + rotY: 270.083282 + rotZ: 2.98445773 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Strange Aeons 2abdd6/Bag Fantasy Investigators 7ba738/Bag Illustria 35a3d2.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Strange Aeons 2abdd6/Bag Fantasy Investigators 7ba738/Bag Illustria 35a3d2.yaml new file mode 100644 index 000000000..10bb3fb45 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Strange Aeons 2abdd6/Bag Fantasy Investigators 7ba738/Bag Illustria 35a3d2.yaml @@ -0,0 +1,37 @@ +Autoraise: true +ColorDiffuse: + b: 0.9703832 + g: 0.0118338149 + r: 0.65443635 +ContainedObjects: +- !include 'Bag Illustria 35a3d2/Deck 55c805.yaml' +- !include 'Bag Illustria 35a3d2/Card Illustria 29cf64.yaml' +Description: Pathfinder +GMNotes: '' +GUID: 35a3d2 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +MeshIndex: -1 +Name: Bag +Nickname: Illustria +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -46.8264923 + posY: 3.386293 + posZ: -36.8165855 + rotX: 359.307068 + rotY: 359.94928 + rotZ: 2.791409 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Strange Aeons 2abdd6/Bag Fantasy Investigators 7ba738/Bag Illustria 35a3d2/Card Illustria 29cf64.yaml new file mode 100644 index 000000000..f3a74f4ef --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Strange Aeons 2abdd6/Bag Fantasy Investigators 7ba738/Bag Illustria 35a3d2/Card Illustria 29cf64.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 262503 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2625': + BackIsHidden: true + BackURL: https://i.imgur.com/zfEA0TW.jpg + FaceURL: https://i.imgur.com/nTMK5As.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 29cf64 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Illustria +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -49.4891663 + posY: 3.63142753 + posZ: -33.74437 + rotX: 356.157928 + rotY: 270.004852 + rotZ: 359.649445 + scaleX: 0.8 + scaleY: 1.0 + scaleZ: 0.8 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Strange Aeons 2abdd6/Bag Fantasy Investigators 7ba738/Bag Illustria 35a3d2/Deck 55c805.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Strange Aeons 2abdd6/Bag Fantasy Investigators 7ba738/Bag Illustria 35a3d2/Deck 55c805.yaml new file mode 100644 index 000000000..c9165a946 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Strange Aeons 2abdd6/Bag Fantasy Investigators 7ba738/Bag Illustria 35a3d2/Deck 55c805.yaml @@ -0,0 +1,179 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- 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/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Basic Weakness + GMNotes: '' + GUID: 7249c3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Amnesia + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -55.67457 + posY: 1.57165015 + posZ: -41.092617 + rotX: 0.00303084822 + rotY: 270.003357 + rotZ: -0.005328189 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 263301 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2633': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg + FaceURL: https://i.imgur.com/mHJP6b1.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: dad4e8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -55.62495 + posY: 1.71173477 + posZ: -41.3258629 + rotX: 0.0134791564 + rotY: 269.994751 + rotZ: 0.007675869 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 263300 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2633': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg + FaceURL: https://i.imgur.com/mHJP6b1.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 68357e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -55.9911537 + posY: 1.72952378 + posZ: -41.13949 + rotX: 0.0119553646 + rotY: 270.023743 + rotZ: 0.0005898341 + 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/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '2633': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg + FaceURL: https://i.imgur.com/mHJP6b1.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 209600 +- 263301 +- 263300 +Description: '' +GMNotes: '' +GUID: 55c805 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -50.55828 + posY: 3.665649 + posZ: -33.8153648 + rotX: 2.03401446 + rotY: 270.0246 + rotZ: 359.41275 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Strange Aeons 2abdd6/Bag Fantasy Investigators 7ba738/Bag Lord Todd 25665a.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Strange Aeons 2abdd6/Bag Fantasy Investigators 7ba738/Bag Lord Todd 25665a.yaml new file mode 100644 index 000000000..71e4ac479 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Strange Aeons 2abdd6/Bag Fantasy Investigators 7ba738/Bag Lord Todd 25665a.yaml @@ -0,0 +1,37 @@ +Autoraise: true +ColorDiffuse: + b: 0.0154335164 + g: 0.0154335164 + r: 0.9843206 +ContainedObjects: +- !include 'Bag Lord Todd 25665a/Deck 3f56a4.yaml' +- !include 'Bag Lord Todd 25665a/Card Lord Todd 0d2913.yaml' +Description: Pathfinder +GMNotes: '' +GUID: 25665a +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +MeshIndex: -1 +Name: Bag +Nickname: Lord Todd +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -46.2411461 + posY: 3.39742565 + posZ: -36.3370819 + rotX: 2.327396 + rotY: 359.9823 + rotZ: 359.27887 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Strange Aeons 2abdd6/Bag Fantasy Investigators 7ba738/Bag Lord Todd 25665a/Card Lord Todd 0d2913.yaml new file mode 100644 index 000000000..fd18ac3d7 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Strange Aeons 2abdd6/Bag Fantasy Investigators 7ba738/Bag Lord Todd 25665a/Card Lord Todd 0d2913.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 262504 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2625': + BackIsHidden: true + BackURL: https://i.imgur.com/zfEA0TW.jpg + FaceURL: https://i.imgur.com/nTMK5As.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 0d2913 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Lord Todd +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -49.0413055 + posY: 3.42771769 + posZ: -53.27502 + rotX: 359.143372 + rotY: 270.0028 + rotZ: 359.369659 + scaleX: 0.8 + scaleY: 1.0 + scaleZ: 0.8 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Strange Aeons 2abdd6/Bag Fantasy Investigators 7ba738/Bag Lord Todd 25665a/Deck 3f56a4.yaml new file mode 100644 index 000000000..b9f511ff5 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Strange Aeons 2abdd6/Bag Fantasy Investigators 7ba738/Bag Lord Todd 25665a/Deck 3f56a4.yaml @@ -0,0 +1,179 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- 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/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Basic Weakness + GMNotes: '' + GUID: 09dad0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Amnesia + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.36258 + posY: 1.36086166 + posZ: -45.30553 + rotX: -0.000232947641 + rotY: 269.99823 + rotZ: 0.00932818651 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 263303 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2633': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg + FaceURL: https://i.imgur.com/mHJP6b1.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 5e3ba7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -38.51965 + posY: 1.37013066 + posZ: -45.77761 + rotX: 0.0184652023 + rotY: 270.005676 + rotZ: 0.0157627389 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 263302 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2633': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg + FaceURL: https://i.imgur.com/mHJP6b1.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 44e6e0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -38.7884064 + posY: 1.50559413 + posZ: -45.7174034 + rotX: 0.00279352372 + rotY: 269.99408 + rotZ: 0.000410999375 + 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/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '2633': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg + FaceURL: https://i.imgur.com/mHJP6b1.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 209600 +- 263303 +- 263302 +Description: '' +GMNotes: '' +GUID: 3f56a4 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -49.6510277 + posY: 3.3876586 + posZ: -52.9758759 + rotX: 2.052608 + rotY: 269.905273 + rotZ: 356.7485 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Strange Aeons 2abdd6/Bag Fantasy Investigators 7ba738/Bag Scene 4d9933.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Strange Aeons 2abdd6/Bag Fantasy Investigators 7ba738/Bag Scene 4d9933.yaml new file mode 100644 index 000000000..b97591fd9 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Strange Aeons 2abdd6/Bag Fantasy Investigators 7ba738/Bag Scene 4d9933.yaml @@ -0,0 +1,37 @@ +Autoraise: true +ColorDiffuse: + b: 0.0 + g: 1.0 + r: 0.182156652 +ContainedObjects: +- !include 'Bag Scene 4d9933/Deck 8d39b5.yaml' +- !include 'Bag Scene 4d9933/Card Scene 089a45.yaml' +Description: Pathfinder +GMNotes: '' +GUID: 4d9933 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +MeshIndex: -1 +Name: Bag +Nickname: Scene +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -46.13472 + posY: 3.393145 + posZ: -37.0457 + rotX: 357.9033 + rotY: 0.0534189679 + rotZ: 358.633453 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Strange Aeons 2abdd6/Bag Fantasy Investigators 7ba738/Bag Scene 4d9933/Card Scene 089a45.yaml new file mode 100644 index 000000000..c15b43648 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Strange Aeons 2abdd6/Bag Fantasy Investigators 7ba738/Bag Scene 4d9933/Card Scene 089a45.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 262505 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2625': + BackIsHidden: true + BackURL: https://i.imgur.com/zfEA0TW.jpg + FaceURL: https://i.imgur.com/nTMK5As.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 089a45 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Scene +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -56.9056931 + posY: 3.38533354 + posZ: -51.640728 + rotX: 3.41207719 + rotY: 270.019531 + rotZ: 1.29930067 + scaleX: 0.8 + scaleY: 1.0 + scaleZ: 0.8 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Strange Aeons 2abdd6/Bag Fantasy Investigators 7ba738/Bag Scene 4d9933/Deck 8d39b5.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Strange Aeons 2abdd6/Bag Fantasy Investigators 7ba738/Bag Scene 4d9933/Deck 8d39b5.yaml new file mode 100644 index 000000000..309b601be --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Strange Aeons 2abdd6/Bag Fantasy Investigators 7ba738/Bag Scene 4d9933/Deck 8d39b5.yaml @@ -0,0 +1,179 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- 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/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Basic Weakness + GMNotes: '' + GUID: d7fb39 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Amnesia + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.32484 + posY: 1.3594557 + posZ: -51.2353668 + rotX: 0.014293937 + rotY: 269.998444 + rotZ: 0.0133523168 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 263304 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2633': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg + FaceURL: https://i.imgur.com/mHJP6b1.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 01cad5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -35.04606 + posY: 1.37147009 + posZ: -45.1669464 + rotX: 0.01893537 + rotY: 270.0304 + rotZ: 359.9933 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 263305 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2633': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg + FaceURL: https://i.imgur.com/mHJP6b1.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: '410224' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -35.3711853 + posY: 1.5115099 + posZ: -45.15876 + rotX: 0.03422288 + rotY: 270.048035 + rotZ: 359.9598 + 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/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '2633': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg + FaceURL: https://i.imgur.com/mHJP6b1.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 209600 +- 263304 +- 263305 +Description: '' +GMNotes: '' +GUID: 8d39b5 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -57.0315781 + posY: 3.38819265 + posZ: -51.04318 + rotX: 2.845925 + rotY: 269.943146 + rotZ: 358.439545 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Strange Aeons 2abdd6/Custom_Tile Strange Aeons 82e1ed.ttslua b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Strange Aeons 2abdd6/Custom_Tile Strange Aeons 82e1ed.ttslua new file mode 100644 index 000000000..8f300ba86 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Strange Aeons 2abdd6/Custom_Tile Strange Aeons 82e1ed.ttslua @@ -0,0 +1,21 @@ +name = 'Strange Aeons' + +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 791837/Custom_Model_Bag Strange Aeons 2abdd6/Custom_Tile Strange Aeons 82e1ed.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Strange Aeons 2abdd6/Custom_Tile Strange Aeons 82e1ed.yaml new file mode 100644 index 000000000..495064a51 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Strange Aeons 2abdd6/Custom_Tile Strange Aeons 82e1ed.yaml @@ -0,0 +1,42 @@ +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 +GMNotes: '' +GUID: 82e1ed +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Tile Strange Aeons 82e1ed.ttslua' +LuaScriptState: '' +Name: Custom_Tile +Nickname: Strange Aeons +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -4.16638947 + posY: 1.58287811 + posZ: -15.0400324 + rotX: 359.919739 + rotY: 269.99942 + rotZ: 0.0168387722 + scaleX: 2.2 + scaleY: 1.0 + scaleZ: 2.2 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Strange Aeons 2abdd6/Deck Player Cards 1f4db7.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Strange Aeons 2abdd6/Deck Player Cards 1f4db7.yaml new file mode 100644 index 000000000..9e9cfd944 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Strange Aeons 2abdd6/Deck Player Cards 1f4db7.yaml @@ -0,0 +1,1075 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 263307 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2633': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg + FaceURL: https://i.imgur.com/mHJP6b1.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 68357e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -30.5260887 + posY: 1.36994481 + posZ: -56.1012154 + rotX: 0.0153694917 + rotY: 269.988953 + rotZ: 0.0148717687 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 263306 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2633': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg + FaceURL: https://i.imgur.com/mHJP6b1.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 8e0d4a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -30.63804 + posY: 1.51002288 + posZ: -56.07184 + rotX: 0.0237375349 + rotY: 269.989319 + rotZ: 0.0146907615 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 263319 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2633': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg + FaceURL: https://i.imgur.com/mHJP6b1.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: e3b4cd + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -34.76721 + posY: 1.36831915 + posZ: -56.355 + rotX: 0.0124292 + rotY: 269.9859 + rotZ: 0.0143868467 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 263317 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2633': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg + FaceURL: https://i.imgur.com/mHJP6b1.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 4e6b6a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -34.9846878 + posY: 1.50817323 + posZ: -55.95873 + rotX: 0.0246595554 + rotY: 269.993073 + rotZ: 359.992767 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 263315 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2633': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg + FaceURL: https://i.imgur.com/mHJP6b1.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: b107dc + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -34.53099 + posY: 1.52636039 + posZ: -56.18591 + rotX: 0.0196045581 + rotY: 269.989349 + rotZ: 0.0160615761 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 263311 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2633': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg + FaceURL: https://i.imgur.com/mHJP6b1.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 68357e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -35.2035751 + posY: 1.51233149 + posZ: -56.43785 + rotX: 0.0214199945 + rotY: 269.98938 + rotZ: 0.0159638468 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 263310 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2633': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg + FaceURL: https://i.imgur.com/mHJP6b1.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 68357e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -35.2045326 + posY: 1.51037765 + posZ: -56.2131271 + rotX: 0.0215663686 + rotY: 269.989319 + rotZ: 0.014996754 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 263325 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2633': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg + FaceURL: https://i.imgur.com/mHJP6b1.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: cda27b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -39.8104324 + posY: 1.36753392 + posZ: -53.16669 + rotX: 0.0202877149 + rotY: 269.990173 + rotZ: 0.01641774 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 263324 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2633': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg + FaceURL: https://i.imgur.com/mHJP6b1.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 5abbc5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -39.518322 + posY: 1.507945 + posZ: -53.26061 + rotX: 0.0093249185 + rotY: 269.989563 + rotZ: 0.0178045519 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 263323 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2633': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg + FaceURL: https://i.imgur.com/mHJP6b1.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 9afd5e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -39.97843 + posY: 1.52528846 + posZ: -53.1533432 + rotX: 0.01972162 + rotY: 269.989258 + rotZ: 0.0161706656 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 263322 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2633': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg + FaceURL: https://i.imgur.com/mHJP6b1.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 2b4f86 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -40.2664757 + posY: 1.51149583 + posZ: -53.1893921 + rotX: 0.0197062343 + rotY: 269.988953 + rotZ: 0.0166941751 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 263321 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2633': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg + FaceURL: https://i.imgur.com/mHJP6b1.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: bbd712 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -39.6620979 + posY: 1.50958276 + posZ: -53.31067 + rotX: 0.0207043737 + rotY: 269.989441 + rotZ: 0.0191412456 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 263326 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2633': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg + FaceURL: https://i.imgur.com/mHJP6b1.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 68357e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -39.03004 + posY: 1.36675334 + posZ: -56.7408333 + rotX: 0.0195260141 + rotY: 269.990417 + rotZ: 0.01609968 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 263313 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2633': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg + FaceURL: https://i.imgur.com/mHJP6b1.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 451ccf + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -39.076828 + posY: 1.50710392 + posZ: -56.7930374 + rotX: 0.0108445771 + rotY: 269.989746 + rotZ: 0.01930863 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 263312 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2633': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg + FaceURL: https://i.imgur.com/mHJP6b1.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 68357e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -39.4067955 + posY: 1.52445674 + posZ: -56.70996 + rotX: 0.01978574 + rotY: 269.9901 + rotZ: 0.0154331708 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 263329 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2633': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg + FaceURL: https://i.imgur.com/mHJP6b1.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 68357e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -43.0565338 + posY: 1.36533284 + posZ: -56.5505867 + rotX: 0.0187877454 + rotY: 269.990082 + rotZ: 0.01612597 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 263328 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2633': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg + FaceURL: https://i.imgur.com/mHJP6b1.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: f5600a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -42.7051849 + posY: 1.50538218 + posZ: -56.9224854 + rotX: -6.38279162e-05 + rotY: 269.990234 + rotZ: 0.03308147 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 263327 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2633': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg + FaceURL: https://i.imgur.com/mHJP6b1.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 68357e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -42.8187523 + posY: 1.523239 + posZ: -56.32807 + rotX: 0.0206761826 + rotY: 269.9904 + rotZ: 0.0121235773 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 263320 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2633': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg + FaceURL: https://i.imgur.com/mHJP6b1.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: a40a06 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -43.5035439 + posY: 1.36610138 + posZ: -53.38511 + rotX: 0.0190772563 + rotY: 269.989136 + rotZ: 0.0161542464 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 263318 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2633': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg + FaceURL: https://i.imgur.com/mHJP6b1.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: '912143' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -43.5442352 + posY: 1.5063982 + posZ: -53.5728035 + rotX: 0.010554201 + rotY: 269.989441 + rotZ: 0.0276249517 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 263316 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2633': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg + FaceURL: https://i.imgur.com/mHJP6b1.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: d3452f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -43.7295761 + posY: 1.52370858 + posZ: -53.7804451 + rotX: 0.0188770127 + rotY: 269.989044 + rotZ: 0.0216572937 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 263314 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2633': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg + FaceURL: https://i.imgur.com/mHJP6b1.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 0f2cd7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -43.86235 + posY: 1.51008713 + posZ: -53.5920372 + rotX: 0.0195305087 + rotY: 269.995026 + rotZ: 0.0143192513 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 263309 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2633': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg + FaceURL: https://i.imgur.com/mHJP6b1.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 68357e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -43.78306 + posY: 1.50811923 + posZ: -53.5577545 + rotX: 0.019834701 + rotY: 269.988678 + rotZ: 0.0179620981 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 263308 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2633': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg + FaceURL: https://i.imgur.com/mHJP6b1.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 68357e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -43.9419746 + posY: 1.51073766 + posZ: -53.4877167 + rotX: 0.01988139 + rotY: 269.989166 + rotZ: 0.0170586277 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2633': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg + FaceURL: https://i.imgur.com/mHJP6b1.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 263307 +- 263306 +- 263319 +- 263317 +- 263315 +- 263311 +- 263310 +- 263325 +- 263324 +- 263323 +- 263322 +- 263321 +- 263326 +- 263313 +- 263312 +- 263329 +- 263328 +- 263327 +- 263320 +- 263318 +- 263316 +- 263314 +- 263309 +- 263308 +Description: '' +GMNotes: '' +GUID: 1f4db7 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Player Cards +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -7.71392727 + posY: 1.747816 + posZ: 15.2249823 + rotX: 359.919983 + rotY: 270.00177 + rotZ: 180.016937 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Strange Aeons 2abdd6/Tablet Campaign Guide c2fe44.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Strange Aeons 2abdd6/Tablet Campaign Guide c2fe44.yaml new file mode 100644 index 000000000..308248b91 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Strange Aeons 2abdd6/Tablet Campaign Guide c2fe44.yaml @@ -0,0 +1,34 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +Description: '' +GMNotes: '' +GUID: c2fe44 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Tablet +Nickname: Campaign Guide +Snap: true +Sticky: true +Tablet: + PageURL: https://drive.google.com/file/d/18kFvIlY042OBhYYP64PNAp6HftaKVl8B/view +Tooltip: true +Transform: + posX: -0.461361885 + posY: 1.761732 + posZ: -25.2014046 + rotX: 359.920135 + rotY: 269.975769 + rotZ: 0.01691857 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Stranger Things 408301.ttslua b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Stranger Things 408301.ttslua new file mode 100644 index 000000000..46067f58e --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Stranger Things 408301.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.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.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 791837/Custom_Model_Bag Stranger Things 408301.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Stranger Things 408301.yaml new file mode 100644 index 000000000..1de119360 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Stranger Things 408301.yaml @@ -0,0 +1,90 @@ +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 Stranger Things 408301/Deck Set Aside 1078c7.yaml' +- !include 'Custom_Model_Bag Stranger Things 408301/Bag New Characters 69c26d.yaml' +- !include 'Custom_Model_Bag Stranger Things 408301/Deck Encounter Deck 9f9e79.yaml' +- !include 'Custom_Model_Bag Stranger Things 408301/Deck Agenda 62b3ab.yaml' +- !include 'Custom_Model_Bag Stranger Things 408301/Deck Act 22e3f2.yaml' +- !include 'Custom_Model_Bag Stranger Things 408301/Card bb506e.yaml' +- !include 'Custom_Model_Bag Stranger Things 408301/Custom_Tile Stranger Things bc825a.yaml' +- !include 'Custom_Model_Bag Stranger Things 408301/Deck Instructions 6bbd29.yaml' +- !include 'Custom_Model_Bag Stranger Things 408301/Card f6d6d8.yaml' +- !include 'Custom_Model_Bag Stranger Things 408301/Deck Upside Down f0e2dc.yaml' +- !include 'Custom_Model_Bag Stranger Things 408301/Custom_Tile 4f0a6b.yaml' +- !include 'Custom_Model_Bag Stranger Things 408301/Card 893557.yaml' +- !include 'Custom_Model_Bag Stranger Things 408301/Custom_Tile fbf157.yaml' +- !include 'Custom_Model_Bag Stranger Things 408301/Card 43d027.yaml' +- !include 'Custom_Model_Bag Stranger Things 408301/Custom_Tile 7234af.yaml' +- !include 'Custom_Model_Bag Stranger Things 408301/Card 4595ad.yaml' +- !include 'Custom_Model_Bag Stranger Things 408301/Custom_Tile 4667f1.yaml' +- !include 'Custom_Model_Bag Stranger Things 408301/Custom_Tile e22a64.yaml' +- !include 'Custom_Model_Bag Stranger Things 408301/Custom_Tile 3210d6.yaml' +- !include 'Custom_Model_Bag Stranger Things 408301/Custom_Tile b6d48a.yaml' +- !include 'Custom_Model_Bag Stranger Things 408301/Card f7c15e.yaml' +- !include 'Custom_Model_Bag Stranger Things 408301/Custom_Tile daef01.yaml' +- !include 'Custom_Model_Bag Stranger Things 408301/Card c210e3.yaml' +- !include 'Custom_Model_Bag Stranger Things 408301/Custom_Tile 709830.yaml' +- !include 'Custom_Model_Bag Stranger Things 408301/Card d90311.yaml' +- !include 'Custom_Model_Bag Stranger Things 408301/Custom_Tile be6abb.yaml' +- !include 'Custom_Model_Bag Stranger Things 408301/Card 3ba2fb.yaml' +- !include 'Custom_Model_Bag Stranger Things 408301/Custom_Tile 616612.yaml' +- !include 'Custom_Model_Bag Stranger Things 408301/Card 239c56.yaml' +- !include 'Custom_Model_Bag Stranger Things 408301/Custom_Tile 6950d2.yaml' +- !include 'Custom_Model_Bag Stranger Things 408301/Card b2b842.yaml' +CustomMesh: + CastShadows: true + ColliderURL: '' + Convex: true + DiffuseURL: http://cloud-3.steamusercontent.com/ugc/798737729142948271/A763104B91306431654FBA9E3D88FE0E23CE6E6E/ + MaterialIndex: 3 + MeshURL: https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj + NormalURL: '' + TypeIndex: 6 +Description: '' +GMNotes: '' +GUID: '408301' +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Model_Bag Stranger Things 408301.ttslua' +LuaScriptState: '{"ml":{"1078c7":{"lock":false,"pos":{"x":1.6964,"y":1.6699,"z":14.2788},"rot":{"x":359.9552,"y":224.998,"z":180.0686}},"22e3f2":{"lock":false,"pos":{"x":-2.6904,"y":1.655,"z":-5.0485},"rot":{"x":359.9197,"y":270.0118,"z":0.0168}},"239c56":{"lock":false,"pos":{"x":-36.7733,"y":1.7022,"z":-7.7},"rot":{"x":359.9201,"y":269.9961,"z":0.0169}},"3210d6":{"lock":false,"pos":{"x":-27.0934,"y":1.6172,"z":-7.2278},"rot":{"x":359.9201,"y":269.9999,"z":0.0169}},"3ba2fb":{"lock":false,"pos":{"x":-30.2244,"y":1.6909,"z":-15.28},"rot":{"x":359.9201,"y":269.9962,"z":0.0169}},"43d027":{"lock":false,"pos":{"x":-23.6765,"y":1.6862,"z":-0.0301},"rot":{"x":359.9201,"y":269.9807,"z":0.0169}},"4595ad":{"lock":false,"pos":{"x":-23.6765,"y":1.684,"z":-7.7},"rot":{"x":359.9201,"y":269.9967,"z":0.0169}},"4667f1":{"lock":false,"pos":{"x":-27.2752,"y":1.6209,"z":4.5605},"rot":{"x":359.9316,"y":315,"z":359.9554}},"4f0a6b":{"lock":false,"pos":{"x":-19.6594,"y":1.61,"z":3.6336},"rot":{"x":0.0446,"y":45,"z":359.9316}},"616612":{"lock":false,"pos":{"x":-33.8841,"y":1.6275,"z":-4.2381},"rot":{"x":0.0446,"y":45,"z":359.9316}},"62b3ab":{"lock":false,"pos":{"x":-2.7247,"y":1.6566,"z":0.3733},"rot":{"x":359.9197,"y":269.9855,"z":0.0169}},"6950d2":{"lock":false,"pos":{"x":-33.7138,"y":1.6263,"z":-7.6781},"rot":{"x":0.0799,"y":89.9999,"z":359.9831}},"69c26d":{"lock":false,"pos":{"x":-4.3001,"y":1.4068,"z":14.6571},"rot":{"x":359.9832,"y":0.0007,"z":359.9197}},"6bbd29":{"lock":false,"pos":{"x":-9.9085,"y":1.6664,"z":1.7308},"rot":{"x":359.9201,"y":269.9864,"z":0.0169}},"709830":{"lock":false,"pos":{"x":-30.2243,"y":1.6225,"z":-3.83},"rot":{"x":359.9831,"y":-0.0046,"z":359.9201}},"7234af":{"lock":false,"pos":{"x":-23.6765,"y":1.6134,"z":-3.83},"rot":{"x":359.9831,"y":0.0072,"z":359.92}},"893557":{"lock":false,"pos":{"x":-23.6765,"y":1.6885,"z":7.5699},"rot":{"x":359.9201,"y":269.9939,"z":0.0169}},"9f9e79":{"lock":false,"pos":{"x":-3.9275,"y":1.7504,"z":5.7571},"rot":{"x":359.9197,"y":269.9856,"z":180.0168}},"b2b842":{"lock":false,"pos":{"x":-50.9244,"y":1.7266,"z":8.1784},"rot":{"x":359.9201,"y":269.9855,"z":0.0169}},"b6d48a":{"lock":false,"pos":{"x":-26.9756,"y":1.6157,"z":-11.6402},"rot":{"x":0.0446,"y":45,"z":359.9316}},"bb506e":{"lock":false,"pos":{"x":-3.956,"y":1.6556,"z":-10.4412},"rot":{"x":359.9197,"y":269.9855,"z":0.0169}},"bc825a":{"lock":false,"pos":{"x":-4.1331,"y":1.5829,"z":-14.6606},"rot":{"x":359.9197,"y":270.0001,"z":0.0168}},"be6abb":{"lock":false,"pos":{"x":-30.2243,"y":1.6203,"z":-11.51},"rot":{"x":359.9831,"y":0.0072,"z":359.92}},"c210e3":{"lock":false,"pos":{"x":-30.2243,"y":1.6954,"z":-0.03},"rot":{"x":359.9201,"y":269.9935,"z":0.0169}},"d90311":{"lock":false,"pos":{"x":-30.2242,"y":1.6931,"z":-7.7001},"rot":{"x":359.9201,"y":269.9952,"z":0.0169}},"daef01":{"lock":false,"pos":{"x":-30.2243,"y":1.6248,"z":3.86},"rot":{"x":359.9831,"y":0.007,"z":359.92}},"e22a64":{"lock":false,"pos":{"x":-27.6267,"y":1.6188,"z":-4.0757},"rot":{"x":359.9316,"y":314.9999,"z":359.9554}},"f0e2dc":{"lock":false,"pos":{"x":-17.12,"y":1.6765,"z":-0.03},"rot":{"x":359.9201,"y":269.9836,"z":180.0169}},"f6d6d8":{"lock":false,"pos":{"x":-17.12,"y":1.6793,"z":7.57},"rot":{"x":359.9201,"y":269.978,"z":0.0169}},"f7c15e":{"lock":false,"pos":{"x":-30.2242,"y":1.6976,"z":7.57},"rot":{"x":359.9201,"y":269.9958,"z":0.0169}},"fbf157":{"lock":false,"pos":{"x":-23.6765,"y":1.6157,"z":3.86},"rot":{"x":359.9831,"y":0.0072,"z":359.92}}}}' +MaterialIndex: -1 +MeshIndex: -1 +Name: Custom_Model_Bag +Nickname: Stranger Things +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 12.461175 + posY: 8.483954 + posZ: -159.661087 + rotX: 0.02080875 + rotY: 269.999969 + rotZ: 0.0167711042 + scaleX: 2.21 + scaleY: 0.46 + scaleZ: 2.42 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Stranger Things 408301/Bag New Characters 69c26d.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Stranger Things 408301/Bag New Characters 69c26d.yaml new file mode 100644 index 000000000..eca0a10c4 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Stranger Things 408301/Bag New Characters 69c26d.yaml @@ -0,0 +1,40 @@ +Autoraise: true +ColorDiffuse: + b: 0.8064926 + g: 0.858152151 + r: 0.9059233 +ContainedObjects: +- !include 'Bag New Characters 69c26d/Bag Jim Hopper 5ec611.yaml' +- !include 'Bag New Characters 69c26d/Bag Joyce Byers 456953.yaml' +- !include 'Bag New Characters 69c26d/Bag Jonathan Byers 8a8a49.yaml' +- !include 'Bag New Characters 69c26d/Bag Lucas, Dustin and Mike 592625.yaml' +- !include 'Bag New Characters 69c26d/Bag Nancy Wheeler da87cb.yaml' +Description: '' +GMNotes: '' +GUID: 69c26d +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +MeshIndex: -1 +Name: Bag +Nickname: New Characters +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -4.30011463 + posY: 1.40675747 + posZ: 14.65712 + rotX: 359.983154 + rotY: 0.000738820469 + rotZ: 359.919678 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Stranger Things 408301/Bag New Characters 69c26d/Bag Jim Hopper 5ec611.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Stranger Things 408301/Bag New Characters 69c26d/Bag Jim Hopper 5ec611.yaml new file mode 100644 index 000000000..33cb7493c --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Stranger Things 408301/Bag New Characters 69c26d/Bag Jim Hopper 5ec611.yaml @@ -0,0 +1,38 @@ +Autoraise: true +ColorDiffuse: + b: 0.7019608 + g: 0.0 + r: 0.0260955188 +ContainedObjects: +- !include 'Bag Jim Hopper 5ec611/Card a59501.yaml' +- !include 'Bag Jim Hopper 5ec611/Card fdd2cb.yaml' +- !include 'Bag Jim Hopper 5ec611/Deck 2bc52f.yaml' +Description: Stranger Things +GMNotes: '' +GUID: 5ec611 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +MeshIndex: -1 +Name: Bag +Nickname: Jim Hopper +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 5.793861 + posY: 3.371406 + posZ: 13.21351 + rotX: 359.6205 + rotY: -0.00421300763 + rotZ: 0.6339587 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Stranger Things 408301/Bag New Characters 69c26d/Bag Jim Hopper 5ec611/Card a59501.yaml new file mode 100644 index 000000000..d2ab7e2a1 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Stranger Things 408301/Bag New Characters 69c26d/Bag Jim Hopper 5ec611/Card a59501.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 133 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360107785/527334621A3CABD48FEA38CD527D3598687688BB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360108253/47D6C3F1D3B8AACA51A3EFFBBF3C8D1AEC89F12F/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: a59501 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 15.281044 + posY: 3.03548217 + posZ: -2.43558955 + rotX: 359.914764 + rotY: 269.985779 + rotZ: 4.40229845 + scaleX: 0.7602123 + scaleY: 1.0 + scaleZ: 0.7602123 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Stranger Things 408301/Bag New Characters 69c26d/Bag Jim Hopper 5ec611/Card fdd2cb.yaml new file mode 100644 index 000000000..58fa8f453 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Stranger Things 408301/Bag New Characters 69c26d/Bag Jim Hopper 5ec611/Card fdd2cb.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 206 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360109011/AE17EF9CB40954A33C92B2213D447DA9CBD77BE9/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360109343/93EB87C80A15196E5FBDB39786CE0DFA6B595CBA/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: fdd2cb +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.606164 + posY: 3.01355267 + posZ: -4.96381044 + rotX: -3.81697237e-06 + rotY: 269.994873 + rotZ: -1.0998226e-07 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Stranger Things 408301/Bag New Characters 69c26d/Bag Jim Hopper 5ec611/Deck 2bc52f.yaml new file mode 100644 index 000000000..39f508aa7 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Stranger Things 408301/Bag New Characters 69c26d/Bag Jim Hopper 5ec611/Deck 2bc52f.yaml @@ -0,0 +1,127 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 118 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360107785/527334621A3CABD48FEA38CD527D3598687688BB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360108253/47D6C3F1D3B8AACA51A3EFFBBF3C8D1AEC89F12F/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: dcf597 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 6.81924725 + posY: 1.18098962 + posZ: 6.280012 + rotX: 5.0901413 + rotY: 179.962112 + rotZ: 359.83847 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 119 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360107785/527334621A3CABD48FEA38CD527D3598687688BB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360108253/47D6C3F1D3B8AACA51A3EFFBBF3C8D1AEC89F12F/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 16e19f + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 6.48086452 + posY: 1.39123952 + posZ: 6.15669346 + rotX: 2.359514 + rotY: 180.037079 + rotZ: 359.940857 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360107785/527334621A3CABD48FEA38CD527D3598687688BB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360108253/47D6C3F1D3B8AACA51A3EFFBBF3C8D1AEC89F12F/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 118 +- 119 +Description: '' +GMNotes: '' +GUID: 2bc52f +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 14.612463 + posY: 3.02043 + posZ: -4.76772261 + rotX: 1.186008e-07 + rotY: 269.9917 + rotZ: 5.708381e-06 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Stranger Things 408301/Bag New Characters 69c26d/Bag Jonathan Byers 8a8a49.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Stranger Things 408301/Bag New Characters 69c26d/Bag Jonathan Byers 8a8a49.yaml new file mode 100644 index 000000000..0c7a87838 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Stranger Things 408301/Bag New Characters 69c26d/Bag Jonathan Byers 8a8a49.yaml @@ -0,0 +1,38 @@ +Autoraise: true +ColorDiffuse: + b: 0.0 + g: 0.7019608 + r: 0.0260956027 +ContainedObjects: +- !include 'Bag Jonathan Byers 8a8a49/Card 9a064e.yaml' +- !include 'Bag Jonathan Byers 8a8a49/Card 0c538c.yaml' +- !include 'Bag Jonathan Byers 8a8a49/Deck 0d8168.yaml' +Description: Stranger Things +GMNotes: '' +GUID: 8a8a49 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +MeshIndex: -1 +Name: Bag +Nickname: Jonathan Byers +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 6.066968 + posY: 3.37084055 + posZ: 12.9538889 + rotX: 359.271729 + rotY: 0.003932441 + rotZ: 0.229483709 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Stranger Things 408301/Bag New Characters 69c26d/Bag Jonathan Byers 8a8a49/Card 0c538c.yaml new file mode 100644 index 000000000..fd3ecbee0 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Stranger Things 408301/Bag New Characters 69c26d/Bag Jonathan Byers 8a8a49/Card 0c538c.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 135 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360107785/527334621A3CABD48FEA38CD527D3598687688BB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360108253/47D6C3F1D3B8AACA51A3EFFBBF3C8D1AEC89F12F/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 0c538c +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 11.4945421 + posY: 3.01739216 + posZ: -8.239184 + rotX: 5.531989e-06 + rotY: 270.006775 + rotZ: 4.04498735e-07 + scaleX: 0.7602123 + scaleY: 1.0 + scaleZ: 0.7602123 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Stranger Things 408301/Bag New Characters 69c26d/Bag Jonathan Byers 8a8a49/Card 9a064e.yaml new file mode 100644 index 000000000..68a00d9cf --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Stranger Things 408301/Bag New Characters 69c26d/Bag Jonathan Byers 8a8a49/Card 9a064e.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 208 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360109011/AE17EF9CB40954A33C92B2213D447DA9CBD77BE9/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360109343/93EB87C80A15196E5FBDB39786CE0DFA6B595CBA/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 9a064e +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 9.849651 + posY: 3.10058737 + posZ: -4.104422 + rotX: 359.385651 + rotY: 270.0022 + rotZ: 0.37225455 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Stranger Things 408301/Bag New Characters 69c26d/Bag Jonathan Byers 8a8a49/Deck 0d8168.yaml new file mode 100644 index 000000000..d760b9b71 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Stranger Things 408301/Bag New Characters 69c26d/Bag Jonathan Byers 8a8a49/Deck 0d8168.yaml @@ -0,0 +1,129 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 123 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360107785/527334621A3CABD48FEA38CD527D3598687688BB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360108253/47D6C3F1D3B8AACA51A3EFFBBF3C8D1AEC89F12F/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 3dd1b6 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 14.2932053 + posY: 1.03161681 + posZ: -11.0108213 + rotX: -0.00483915955 + rotY: 269.2982 + rotZ: -0.00179212843 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 122 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360107785/527334621A3CABD48FEA38CD527D3598687688BB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360108253/47D6C3F1D3B8AACA51A3EFFBBF3C8D1AEC89F12F/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 4fc7a2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 14.0773163 + posY: 1.17645562 + posZ: -10.8581018 + rotX: 0.00372434757 + rotY: 270.006683 + rotZ: 359.990631 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360107785/527334621A3CABD48FEA38CD527D3598687688BB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360108253/47D6C3F1D3B8AACA51A3EFFBBF3C8D1AEC89F12F/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 123 +- 122 +Description: '' +GMNotes: '' +GUID: 0d8168 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 6.743353 + posY: 3.02426815 + posZ: -7.42611027 + rotX: -7.895289e-07 + rotY: 270.0035 + rotZ: -1.3189881e-06 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Stranger Things 408301/Bag New Characters 69c26d/Bag Joyce Byers 456953.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Stranger Things 408301/Bag New Characters 69c26d/Bag Joyce Byers 456953.yaml new file mode 100644 index 000000000..1d6c7856c --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Stranger Things 408301/Bag New Characters 69c26d/Bag Joyce Byers 456953.yaml @@ -0,0 +1,38 @@ +Autoraise: true +ColorDiffuse: + b: 0.7019608 + g: 0.0 + r: 0.386208653 +ContainedObjects: +- !include 'Bag Joyce Byers 456953/Deck 4a5c33.yaml' +- !include 'Bag Joyce Byers 456953/Card 7a8c86.yaml' +- !include 'Bag Joyce Byers 456953/Card debf4e.yaml' +Description: Stranger Things +GMNotes: '' +GUID: '456953' +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +MeshIndex: -1 +Name: Bag +Nickname: Joyce Byers +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 6.48745155 + posY: 3.366653 + posZ: 12.6878633 + rotX: 359.247437 + rotY: 0.0129752485 + rotZ: 359.7265 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Stranger Things 408301/Bag New Characters 69c26d/Bag Joyce Byers 456953/Card 7a8c86.yaml new file mode 100644 index 000000000..10a851dfa --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Stranger Things 408301/Bag New Characters 69c26d/Bag Joyce Byers 456953/Card 7a8c86.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 136 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360107785/527334621A3CABD48FEA38CD527D3598687688BB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360108253/47D6C3F1D3B8AACA51A3EFFBBF3C8D1AEC89F12F/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 7a8c86 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 16.4003754 + posY: 3.01456785 + posZ: -8.2329 + rotX: 0.00526008848 + rotY: 270.002869 + rotZ: 359.980438 + scaleX: 0.7602123 + scaleY: 1.0 + scaleZ: 0.7602123 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Stranger Things 408301/Bag New Characters 69c26d/Bag Joyce Byers 456953/Card debf4e.yaml new file mode 100644 index 000000000..234178c9b --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Stranger Things 408301/Bag New Characters 69c26d/Bag Joyce Byers 456953/Card debf4e.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 209 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360109011/AE17EF9CB40954A33C92B2213D447DA9CBD77BE9/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360109343/93EB87C80A15196E5FBDB39786CE0DFA6B595CBA/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: debf4e +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 14.7657375 + posY: 3.08956337 + posZ: -5.49929667 + rotX: 0.06721153 + rotY: 270.004364 + rotZ: 357.768616 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Stranger Things 408301/Bag New Characters 69c26d/Bag Joyce Byers 456953/Deck 4a5c33.yaml new file mode 100644 index 000000000..65b71f730 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Stranger Things 408301/Bag New Characters 69c26d/Bag Joyce Byers 456953/Deck 4a5c33.yaml @@ -0,0 +1,127 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 125 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360107785/527334621A3CABD48FEA38CD527D3598687688BB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360108253/47D6C3F1D3B8AACA51A3EFFBBF3C8D1AEC89F12F/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 01cdcc + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 1.547175 + posY: 1.03168583 + posZ: 11.9021454 + rotX: -0.00157758791 + rotY: 179.972885 + rotZ: -0.000782838441 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 124 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360107785/527334621A3CABD48FEA38CD527D3598687688BB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360108253/47D6C3F1D3B8AACA51A3EFFBBF3C8D1AEC89F12F/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: fe1af5 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 1.52488387 + posY: 1.17049944 + posZ: 11.773469 + rotX: 359.989532 + rotY: 179.991669 + rotZ: 359.993042 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360107785/527334621A3CABD48FEA38CD527D3598687688BB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360108253/47D6C3F1D3B8AACA51A3EFFBBF3C8D1AEC89F12F/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 125 +- 124 +Description: '' +GMNotes: '' +GUID: 4a5c33 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 14.6076508 + posY: 3.1367178 + posZ: -2.59753084 + rotX: 359.962219 + rotY: 270.0004 + rotZ: 358.1098 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Stranger Things 408301/Bag New Characters 69c26d/Bag Lucas, Dustin and Mike 592625.yaml new file mode 100644 index 000000000..33d5fa8a4 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Stranger Things 408301/Bag New Characters 69c26d/Bag Lucas, Dustin and Mike 592625.yaml @@ -0,0 +1,38 @@ +Autoraise: true +ColorDiffuse: + b: 0.228659987 + g: 0.7074942 + r: 0.944250941 +ContainedObjects: +- !include 'Bag Lucas, Dustin and Mike 592625/Card c59ae6.yaml' +- !include 'Bag Lucas, Dustin and Mike 592625/Card 0fa70a.yaml' +- !include 'Bag Lucas, Dustin and Mike 592625/Deck 82ae52.yaml' +Description: Stranger Things +GMNotes: '' +GUID: '592625' +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +MeshIndex: -1 +Name: Bag +Nickname: Lucas, Dustin and Mike +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 5.79366159 + posY: 3.3697536 + posZ: 13.0632706 + rotX: 359.4639 + rotY: -0.00310936454 + rotZ: 0.565601945 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Stranger Things 408301/Bag New Characters 69c26d/Bag Lucas, Dustin and Mike 592625/Card 0fa70a.yaml new file mode 100644 index 000000000..44cd0272f --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Stranger Things 408301/Bag New Characters 69c26d/Bag Lucas, Dustin and Mike 592625/Card 0fa70a.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 207 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360109011/AE17EF9CB40954A33C92B2213D447DA9CBD77BE9/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360109343/93EB87C80A15196E5FBDB39786CE0DFA6B595CBA/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 0fa70a +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 16.4409981 + posY: 3.017426 + posZ: -8.234467 + rotX: 0.000112209069 + rotY: 269.992676 + rotZ: -0.00071528746 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Stranger Things 408301/Bag New Characters 69c26d/Bag Lucas, Dustin and Mike 592625/Card c59ae6.yaml new file mode 100644 index 000000000..f06c1c52b --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Stranger Things 408301/Bag New Characters 69c26d/Bag Lucas, Dustin and Mike 592625/Card c59ae6.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 134 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360107785/527334621A3CABD48FEA38CD527D3598687688BB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360108253/47D6C3F1D3B8AACA51A3EFFBBF3C8D1AEC89F12F/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: c59ae6 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 14.72719 + posY: 3.03735471 + posZ: -4.021673 + rotX: 358.5817 + rotY: 269.9084 + rotZ: 3.72774315 + scaleX: 0.7602123 + scaleY: 1.0 + scaleZ: 0.7602123 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Stranger Things 408301/Bag New Characters 69c26d/Bag Lucas, Dustin and Mike 592625/Deck 82ae52.yaml new file mode 100644 index 000000000..b80cf88f5 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Stranger Things 408301/Bag New Characters 69c26d/Bag Lucas, Dustin and Mike 592625/Deck 82ae52.yaml @@ -0,0 +1,127 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 121 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360107785/527334621A3CABD48FEA38CD527D3598687688BB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360108253/47D6C3F1D3B8AACA51A3EFFBBF3C8D1AEC89F12F/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 44a297 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -15.1825771 + posY: 1.0316205 + posZ: 11.7568111 + rotX: -0.00458682235 + rotY: 179.99852 + rotZ: -0.00166475738 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 120 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360107785/527334621A3CABD48FEA38CD527D3598687688BB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360108253/47D6C3F1D3B8AACA51A3EFFBBF3C8D1AEC89F12F/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 735d87 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -15.1491489 + posY: 1.17644167 + posZ: 11.6417713 + rotX: 0.00227110484 + rotY: 179.963486 + rotZ: 359.99353 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360107785/527334621A3CABD48FEA38CD527D3598687688BB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360108253/47D6C3F1D3B8AACA51A3EFFBBF3C8D1AEC89F12F/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 121 +- 120 +Description: '' +GMNotes: '' +GUID: 82ae52 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 14.4822559 + posY: 3.14111876 + posZ: -6.81453133 + rotX: 4.30188465 + rotY: 269.996338 + rotZ: -0.000193497981 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Stranger Things 408301/Bag New Characters 69c26d/Bag Nancy Wheeler da87cb.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Stranger Things 408301/Bag New Characters 69c26d/Bag Nancy Wheeler da87cb.yaml new file mode 100644 index 000000000..c9bc4498a --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Stranger Things 408301/Bag New Characters 69c26d/Bag Nancy Wheeler da87cb.yaml @@ -0,0 +1,38 @@ +Autoraise: true +ColorDiffuse: + b: 0.07828546 + g: 0.0 + r: 0.7019608 +ContainedObjects: +- !include 'Bag Nancy Wheeler da87cb/Deck 4fad8b.yaml' +- !include 'Bag Nancy Wheeler da87cb/Card 46993c.yaml' +- !include 'Bag Nancy Wheeler da87cb/Card 87050d.yaml' +Description: Stranger Things +GMNotes: '' +GUID: da87cb +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +MeshIndex: -1 +Name: Bag +Nickname: Nancy Wheeler +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 6.15573645 + posY: 3.37534261 + posZ: 13.1991987 + rotX: 359.4621 + rotY: 0.00357927964 + rotZ: 0.148768157 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Stranger Things 408301/Bag New Characters 69c26d/Bag Nancy Wheeler da87cb/Card 46993c.yaml new file mode 100644 index 000000000..544275877 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Stranger Things 408301/Bag New Characters 69c26d/Bag Nancy Wheeler da87cb/Card 46993c.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 210 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360109011/AE17EF9CB40954A33C92B2213D447DA9CBD77BE9/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360109343/93EB87C80A15196E5FBDB39786CE0DFA6B595CBA/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 46993c +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 16.4173126 + posY: 3.017408 + posZ: -5.48715544 + rotX: -6.606552e-06 + rotY: 269.985565 + rotZ: -9.753279e-07 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Stranger Things 408301/Bag New Characters 69c26d/Bag Nancy Wheeler da87cb/Card 87050d.yaml new file mode 100644 index 000000000..1b066f037 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Stranger Things 408301/Bag New Characters 69c26d/Bag Nancy Wheeler da87cb/Card 87050d.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 137 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360107785/527334621A3CABD48FEA38CD527D3598687688BB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360108253/47D6C3F1D3B8AACA51A3EFFBBF3C8D1AEC89F12F/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 87050d +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 14.6714706 + posY: 3.017408 + posZ: -1.205316 + rotX: -5.438534e-06 + rotY: 269.9895 + rotZ: 6.48571449e-06 + scaleX: 0.7602123 + scaleY: 1.0 + scaleZ: 0.7602123 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Stranger Things 408301/Bag New Characters 69c26d/Bag Nancy Wheeler da87cb/Deck 4fad8b.yaml new file mode 100644 index 000000000..31e9aa5ab --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Stranger Things 408301/Bag New Characters 69c26d/Bag Nancy Wheeler da87cb/Deck 4fad8b.yaml @@ -0,0 +1,211 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 126 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360107785/527334621A3CABD48FEA38CD527D3598687688BB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360108253/47D6C3F1D3B8AACA51A3EFFBBF3C8D1AEC89F12F/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 004cf5 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -6.29277468 + posY: 1.03170359 + posZ: -0.153571531 + rotX: -0.0005845856 + rotY: 180.048874 + rotZ: -0.000424247148 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 128 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360107785/527334621A3CABD48FEA38CD527D3598687688BB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360108253/47D6C3F1D3B8AACA51A3EFFBBF3C8D1AEC89F12F/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: a7de90 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -6.447914 + posY: 1.17671847 + posZ: -0.03639794 + rotX: 359.991119 + rotY: 179.999634 + rotZ: -0.00485355 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 127 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360107785/527334621A3CABD48FEA38CD527D3598687688BB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360108253/47D6C3F1D3B8AACA51A3EFFBBF3C8D1AEC89F12F/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 192b4b + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -5.92914248 + posY: 1.19411469 + posZ: -0.407184035 + rotX: -0.00156897714 + rotY: 179.967056 + rotZ: 0.00359467138 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 129 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360107785/527334621A3CABD48FEA38CD527D3598687688BB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360108253/47D6C3F1D3B8AACA51A3EFFBBF3C8D1AEC89F12F/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: dc7f88 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -6.48685932 + posY: 1.18043733 + posZ: -0.7897599 + rotX: -0.0006247271 + rotY: 180.025879 + rotZ: -0.00225414662 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360107785/527334621A3CABD48FEA38CD527D3598687688BB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360108253/47D6C3F1D3B8AACA51A3EFFBBF3C8D1AEC89F12F/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 126 +- 128 +- 127 +- 129 +Description: '' +GMNotes: '' +GUID: 4fad8b +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 12.79508 + posY: 3.089407 + posZ: -3.130089 + rotX: 0.828569233 + rotY: 270.013916 + rotZ: 2.34555769 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Stranger Things 408301/Card 239c56.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Stranger Things 408301/Card 239c56.yaml new file mode 100644 index 000000000..70fb80b2e --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Stranger Things 408301/Card 239c56.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 113 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360107785/527334621A3CABD48FEA38CD527D3598687688BB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360108253/47D6C3F1D3B8AACA51A3EFFBBF3C8D1AEC89F12F/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 239c56 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -36.7732849 + posY: 1.70222437 + posZ: -7.69999552 + rotX: 359.9201 + rotY: 269.9961 + rotZ: 0.0168815982 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Stranger Things 408301/Card 3ba2fb.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Stranger Things 408301/Card 3ba2fb.yaml new file mode 100644 index 000000000..2f518d92e --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Stranger Things 408301/Card 3ba2fb.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 111 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360107785/527334621A3CABD48FEA38CD527D3598687688BB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360108253/47D6C3F1D3B8AACA51A3EFFBBF3C8D1AEC89F12F/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 3ba2fb +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -30.2243843 + posY: 1.69086039 + posZ: -15.2799921 + rotX: 359.9201 + rotY: 269.996216 + rotZ: 0.016881492 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Stranger Things 408301/Card 43d027.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Stranger Things 408301/Card 43d027.yaml new file mode 100644 index 000000000..1e36d7876 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Stranger Things 408301/Card 43d027.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 106 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360107785/527334621A3CABD48FEA38CD527D3598687688BB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360108253/47D6C3F1D3B8AACA51A3EFFBBF3C8D1AEC89F12F/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 43d027 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -23.6765442 + posY: 1.68622041 + posZ: -0.0300667863 + rotX: 359.9201 + rotY: 269.9807 + rotZ: 0.0169030223 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Stranger Things 408301/Card 4595ad.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Stranger Things 408301/Card 4595ad.yaml new file mode 100644 index 000000000..5c6fddc1f --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Stranger Things 408301/Card 4595ad.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 114 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360107785/527334621A3CABD48FEA38CD527D3598687688BB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360108253/47D6C3F1D3B8AACA51A3EFFBBF3C8D1AEC89F12F/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 4595ad +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -23.6765137 + posY: 1.68396187 + posZ: -7.700019 + rotX: 359.9201 + rotY: 269.996674 + rotZ: 0.01688086 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Stranger Things 408301/Card 893557.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Stranger Things 408301/Card 893557.yaml new file mode 100644 index 000000000..9d1015362 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Stranger Things 408301/Card 893557.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 110 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360107785/527334621A3CABD48FEA38CD527D3598687688BB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360108253/47D6C3F1D3B8AACA51A3EFFBBF3C8D1AEC89F12F/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: '893557' +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -23.67646 + posY: 1.6884582 + posZ: 7.569945 + rotX: 359.9201 + rotY: 269.993927 + rotZ: 0.0168846268 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Stranger Things 408301/Card b2b842.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Stranger Things 408301/Card b2b842.yaml new file mode 100644 index 000000000..3b7c37ca7 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Stranger Things 408301/Card b2b842.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 100 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360107785/527334621A3CABD48FEA38CD527D3598687688BB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360108253/47D6C3F1D3B8AACA51A3EFFBBF3C8D1AEC89F12F/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: b2b842 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -50.9243851 + posY: 1.72662532 + posZ: 8.17843151 + rotX: 359.9201 + rotY: 269.985535 + rotZ: 0.0168975722 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Stranger Things 408301/Card bb506e.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Stranger Things 408301/Card bb506e.yaml new file mode 100644 index 000000000..0a07850e1 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Stranger Things 408301/Card bb506e.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 100 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360107785/527334621A3CABD48FEA38CD527D3598687688BB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360108253/47D6C3F1D3B8AACA51A3EFFBBF3C8D1AEC89F12F/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: bb506e +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.955962 + posY: 1.65564811 + posZ: -10.4411554 + rotX: 359.919739 + rotY: 269.985535 + rotZ: 0.0168615039 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Stranger Things 408301/Card c210e3.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Stranger Things 408301/Card c210e3.yaml new file mode 100644 index 000000000..a58afbc5e --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Stranger Things 408301/Card c210e3.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 108 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360107785/527334621A3CABD48FEA38CD527D3598687688BB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360108253/47D6C3F1D3B8AACA51A3EFFBBF3C8D1AEC89F12F/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: c210e3 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -30.2242641 + posY: 1.69535077 + posZ: -0.0300499685 + rotX: 359.9201 + rotY: 269.993469 + rotZ: 0.0168854762 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Stranger Things 408301/Card d90311.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Stranger Things 408301/Card d90311.yaml new file mode 100644 index 000000000..263c07885 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Stranger Things 408301/Card d90311.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 112 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360107785/527334621A3CABD48FEA38CD527D3598687688BB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360108253/47D6C3F1D3B8AACA51A3EFFBBF3C8D1AEC89F12F/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: d90311 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -30.2242317 + posY: 1.69309211 + posZ: -7.70014334 + rotX: 359.9201 + rotY: 269.995178 + rotZ: 0.0168830026 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Stranger Things 408301/Card f6d6d8.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Stranger Things 408301/Card f6d6d8.yaml new file mode 100644 index 000000000..46fc0c46d --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Stranger Things 408301/Card f6d6d8.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 107 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360107785/527334621A3CABD48FEA38CD527D3598687688BB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360108253/47D6C3F1D3B8AACA51A3EFFBBF3C8D1AEC89F12F/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: f6d6d8 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -17.1200466 + posY: 1.67931569 + posZ: 7.569986 + rotX: 359.9201 + rotY: 269.977966 + rotZ: 0.0169076677 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Stranger Things 408301/Card f7c15e.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Stranger Things 408301/Card f7c15e.yaml new file mode 100644 index 000000000..3932dd111 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Stranger Things 408301/Card f7c15e.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 109 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360107785/527334621A3CABD48FEA38CD527D3598687688BB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360108253/47D6C3F1D3B8AACA51A3EFFBBF3C8D1AEC89F12F/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: f7c15e +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -30.22418 + posY: 1.69758844 + posZ: 7.569983 + rotX: 359.9201 + rotY: 269.995819 + rotZ: 0.016882021 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Stranger Things 408301/Custom_Tile 3210d6.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Stranger Things 408301/Custom_Tile 3210d6.yaml new file mode 100644 index 000000000..9e0797bd5 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Stranger Things 408301/Custom_Tile 3210d6.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 3210d6 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.09343 + posY: 1.61715209 + posZ: -7.227752 + rotX: 359.9201 + rotY: 269.999939 + rotZ: 0.0169001427 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Stranger Things 408301/Custom_Tile 4667f1.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Stranger Things 408301/Custom_Tile 4667f1.yaml new file mode 100644 index 000000000..8daf2fabb --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Stranger Things 408301/Custom_Tile 4667f1.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 4667f1 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.2752018 + posY: 1.62087691 + posZ: 4.56048346 + rotX: 359.93158 + rotY: 315.000031 + rotZ: 359.955444 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Stranger Things 408301/Custom_Tile 4f0a6b.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Stranger Things 408301/Custom_Tile 4f0a6b.yaml new file mode 100644 index 000000000..45516ec8b --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Stranger Things 408301/Custom_Tile 4f0a6b.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 4f0a6b +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: -19.6594334 + posY: 1.60998428 + posZ: 3.633574 + rotX: 0.04456585 + rotY: 44.9999657 + rotZ: 359.9316 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Stranger Things 408301/Custom_Tile 616612.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Stranger Things 408301/Custom_Tile 616612.yaml new file mode 100644 index 000000000..222448b37 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Stranger Things 408301/Custom_Tile 616612.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: '616612' +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.8840866 + posY: 1.62750161 + posZ: -4.238103 + rotX: 0.0445645265 + rotY: 45.0000343 + rotZ: 359.93158 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Stranger Things 408301/Custom_Tile 6950d2.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Stranger Things 408301/Custom_Tile 6950d2.yaml new file mode 100644 index 000000000..669c7f41f --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Stranger Things 408301/Custom_Tile 6950d2.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 6950d2 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.7137871 + posY: 1.62625122 + posZ: -7.67812 + rotX: 0.0798934549 + rotY: 89.99991 + rotZ: 359.9831 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Stranger Things 408301/Custom_Tile 709830.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Stranger Things 408301/Custom_Tile 709830.yaml new file mode 100644 index 000000000..30186480f --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Stranger Things 408301/Custom_Tile 709830.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: '709830' +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.2242661 + posY: 1.62251842 + posZ: -3.82999372 + rotX: 359.983124 + rotY: -0.00460322 + rotZ: 359.920074 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Stranger Things 408301/Custom_Tile 7234af.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Stranger Things 408301/Custom_Tile 7234af.yaml new file mode 100644 index 000000000..5be35880b --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Stranger Things 408301/Custom_Tile 7234af.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 7234af +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.67652 + posY: 1.61338806 + posZ: -3.83000064 + rotX: 359.983124 + rotY: 0.007168249 + rotZ: 359.920044 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Stranger Things 408301/Custom_Tile b6d48a.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Stranger Things 408301/Custom_Tile b6d48a.yaml new file mode 100644 index 000000000..c923d6cc9 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Stranger Things 408301/Custom_Tile b6d48a.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: b6d48a +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.9756145 + posY: 1.61568868 + posZ: -11.6401758 + rotX: 0.0445649475 + rotY: 44.99999 + rotZ: 359.93158 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Stranger Things 408301/Custom_Tile be6abb.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Stranger Things 408301/Custom_Tile be6abb.yaml new file mode 100644 index 000000000..6acf36c40 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Stranger Things 408301/Custom_Tile be6abb.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: be6abb +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.22426 + posY: 1.620257 + posZ: -11.5099955 + rotX: 359.983124 + rotY: 0.00719267968 + rotZ: 359.920044 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Stranger Things 408301/Custom_Tile daef01.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Stranger Things 408301/Custom_Tile daef01.yaml new file mode 100644 index 000000000..2d2f10ecc --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Stranger Things 408301/Custom_Tile daef01.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: daef01 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.2242661 + posY: 1.6247828 + posZ: 3.86000633 + rotX: 359.983124 + rotY: 0.006978139 + rotZ: 359.920044 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Stranger Things 408301/Custom_Tile e22a64.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Stranger Things 408301/Custom_Tile e22a64.yaml new file mode 100644 index 000000000..fbbec87c9 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Stranger Things 408301/Custom_Tile e22a64.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: e22a64 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.6266956 + posY: 1.61882389 + posZ: -4.07571745 + rotX: 359.93158 + rotY: 314.999939 + rotZ: 359.955444 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Stranger Things 408301/Custom_Tile fbf157.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Stranger Things 408301/Custom_Tile fbf157.yaml new file mode 100644 index 000000000..5a14e62aa --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Stranger Things 408301/Custom_Tile fbf157.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: fbf157 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.6764622 + posY: 1.6156522 + posZ: 3.85998678 + rotX: 359.983124 + rotY: 0.00721537555 + rotZ: 359.920044 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Stranger Things 408301/Custom_Tile Stranger Things bc825a.ttslua b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Stranger Things 408301/Custom_Tile Stranger Things bc825a.ttslua new file mode 100644 index 000000000..accf324f6 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Stranger Things 408301/Custom_Tile Stranger Things bc825a.ttslua @@ -0,0 +1,21 @@ +name = 'Stranger Things' + +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 The Side Missions 791837/Custom_Model_Bag Stranger Things 408301/Custom_Tile Stranger Things bc825a.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Stranger Things 408301/Custom_Tile Stranger Things bc825a.yaml new file mode 100644 index 000000000..a28269424 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Stranger Things 408301/Custom_Tile Stranger Things bc825a.yaml @@ -0,0 +1,42 @@ +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 +GMNotes: '' +GUID: bc825a +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Tile Stranger Things bc825a.ttslua' +LuaScriptState: '' +Name: Custom_Tile +Nickname: Stranger Things +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -4.13310862 + posY: 1.582943 + posZ: -14.6606331 + rotX: 359.919739 + rotY: 270.000061 + rotZ: 0.0168385431 + scaleX: 2.2 + scaleY: 1.0 + scaleZ: 2.2 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Stranger Things 408301/Deck Act 22e3f2.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Stranger Things 408301/Deck Act 22e3f2.yaml new file mode 100644 index 000000000..9f976273b --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Stranger Things 408301/Deck Act 22e3f2.yaml @@ -0,0 +1,169 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 202 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360109011/AE17EF9CB40954A33C92B2213D447DA9CBD77BE9/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360109343/93EB87C80A15196E5FBDB39786CE0DFA6B595CBA/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 195d28 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -5.603972 + posY: 1.031662 + posZ: 0.9015586 + rotX: -0.002815985 + rotY: 180.000061 + rotZ: -0.0007076269 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 201 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360109011/AE17EF9CB40954A33C92B2213D447DA9CBD77BE9/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360109343/93EB87C80A15196E5FBDB39786CE0DFA6B595CBA/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: c2fb42 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -5.9952035 + posY: 1.176456 + posZ: 1.09225142 + rotX: -0.000861127046 + rotY: 180.0 + rotZ: 359.989319 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 200 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360109011/AE17EF9CB40954A33C92B2213D447DA9CBD77BE9/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360109343/93EB87C80A15196E5FBDB39786CE0DFA6B595CBA/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: cfa65d + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -5.988652 + posY: 1.194145 + posZ: 0.6056208 + rotX: -0.000707329367 + rotY: 180.00032 + rotZ: -0.0009712081 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360109011/AE17EF9CB40954A33C92B2213D447DA9CBD77BE9/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360109343/93EB87C80A15196E5FBDB39786CE0DFA6B595CBA/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 202 +- 201 +- 200 +Description: '' +GMNotes: '' +GUID: 22e3f2 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Act +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.69043946 + posY: 1.655 + posZ: -5.048525 + rotX: 359.919739 + rotY: 270.0118 + rotZ: 0.0168209132 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Stranger Things 408301/Deck Agenda 62b3ab.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Stranger Things 408301/Deck Agenda 62b3ab.yaml new file mode 100644 index 000000000..925e06450 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Stranger Things 408301/Deck Agenda 62b3ab.yaml @@ -0,0 +1,169 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 205 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360109011/AE17EF9CB40954A33C92B2213D447DA9CBD77BE9/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360109343/93EB87C80A15196E5FBDB39786CE0DFA6B595CBA/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 312f35 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -10.9932289 + posY: 1.03162551 + posZ: 0.658453643 + rotX: -0.00434752647 + rotY: 180.000183 + rotZ: -0.000944214757 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 204 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360109011/AE17EF9CB40954A33C92B2213D447DA9CBD77BE9/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360109343/93EB87C80A15196E5FBDB39786CE0DFA6B595CBA/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: b1bdc0 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -10.8383436 + posY: 1.1764431 + posZ: 0.631938 + rotX: 0.00202685664 + rotY: 179.999969 + rotZ: -0.00327999424 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 203 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360109011/AE17EF9CB40954A33C92B2213D447DA9CBD77BE9/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360109343/93EB87C80A15196E5FBDB39786CE0DFA6B595CBA/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 6924a0 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -10.6202612 + posY: 1.19415557 + posZ: 0.7668118 + rotX: -0.000971718749 + rotY: 180.00029 + rotZ: -0.000127265535 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360109011/AE17EF9CB40954A33C92B2213D447DA9CBD77BE9/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360109343/93EB87C80A15196E5FBDB39786CE0DFA6B595CBA/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 205 +- 204 +- 203 +Description: '' +GMNotes: '' +GUID: 62b3ab +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Agenda +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.72466016 + posY: 1.65664113 + posZ: 0.373309582 + rotX: 359.919739 + rotY: 269.985474 + rotZ: 0.0168578755 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Stranger Things 408301/Deck Encounter Deck 9f9e79.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Stranger Things 408301/Deck Encounter Deck 9f9e79.yaml new file mode 100644 index 000000000..26ea995d5 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Stranger Things 408301/Deck Encounter Deck 9f9e79.yaml @@ -0,0 +1,1135 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 149219 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1134': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360109675/26F86804DC12B0C155197E96D0573BCBBF0544F7/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 13614f + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 5.489381 + posY: 1.39245546 + posZ: 8.15343 + rotX: -0.000824956631 + rotY: 180.000061 + rotZ: 1.37477246e-05 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 149215 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1134': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360109675/26F86804DC12B0C155197E96D0573BCBBF0544F7/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 13614f + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 6.089583 + posY: 1.39441526 + posZ: 8.61405849 + rotX: -0.00392597262 + rotY: 180.0107 + rotZ: 358.302155 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 149213 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1134': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360109675/26F86804DC12B0C155197E96D0573BCBBF0544F7/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 13614f + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 5.14804173 + posY: 1.39812648 + posZ: 8.810666 + rotX: -0.000419263321 + rotY: 180.000244 + rotZ: -0.00296110171 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 149207 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1134': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360109675/26F86804DC12B0C155197E96D0573BCBBF0544F7/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 13614f + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 5.218888 + posY: 1.45617044 + posZ: 8.245456 + rotX: -0.0003922982 + rotY: 180.000076 + rotZ: -0.00100684725 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 149214 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1134': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360109675/26F86804DC12B0C155197E96D0573BCBBF0544F7/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 13614f + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 5.879725 + posY: 1.40043449 + posZ: 8.837651 + rotX: 0.000353720563 + rotY: 179.999985 + rotZ: 359.577667 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 149222 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1134': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360109675/26F86804DC12B0C155197E96D0573BCBBF0544F7/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 13614f + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 5.7854023 + posY: 1.37807727 + posZ: 8.751898 + rotX: -0.00101382658 + rotY: 180.0002 + rotZ: 0.0059756455 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 149211 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1134': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360109675/26F86804DC12B0C155197E96D0573BCBBF0544F7/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 13614f + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 5.4454155 + posY: 1.4176532 + posZ: 8.672644 + rotX: -0.0001772749 + rotY: 180.002319 + rotZ: 0.00434344355 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 149208 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1134': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360109675/26F86804DC12B0C155197E96D0573BCBBF0544F7/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 13614f + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 5.79118252 + posY: 1.44644427 + posZ: 8.621039 + rotX: -0.000331876741 + rotY: 180.000031 + rotZ: 0.00408712728 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 149209 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1134': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360109675/26F86804DC12B0C155197E96D0573BCBBF0544F7/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 13614f + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 4.81969 + posY: 1.43625593 + posZ: 8.558813 + rotX: -0.001293758 + rotY: 179.928543 + rotZ: 359.863037 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 149203 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1134': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360109675/26F86804DC12B0C155197E96D0573BCBBF0544F7/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 13614f + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 5.70127535 + posY: 1.49476635 + posZ: 8.492869 + rotX: 6.45052751e-06 + rotY: 180.000214 + rotZ: 0.00300527 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 149216 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1134': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360109675/26F86804DC12B0C155197E96D0573BCBBF0544F7/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 13614f + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 5.557145 + posY: 1.36917531 + posZ: 8.670056 + rotX: -0.000187317186 + rotY: 180.0002 + rotZ: 0.00157758838 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 149201 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1134': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360109675/26F86804DC12B0C155197E96D0573BCBBF0544F7/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 20316c + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 5.78461933 + posY: 1.51414549 + posZ: 8.275769 + rotX: -0.000839285145 + rotY: 180.005814 + rotZ: -0.004904237 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 149212 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1134': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360109675/26F86804DC12B0C155197E96D0573BCBBF0544F7/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 13614f + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 5.39181662 + posY: 1.40782011 + posZ: 8.630424 + rotX: 3.703878e-05 + rotY: 180.000061 + rotZ: -0.001274382 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 149202 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1134': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360109675/26F86804DC12B0C155197E96D0573BCBBF0544F7/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 13614f + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 5.509489 + posY: 1.504423 + posZ: 8.454772 + rotX: 7.369939e-05 + rotY: 180.000626 + rotZ: 0.00262078876 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 149210 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1134': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360109675/26F86804DC12B0C155197E96D0573BCBBF0544F7/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 13614f + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 5.85522652 + posY: 1.42721725 + posZ: 8.750308 + rotX: 0.00294820243 + rotY: 179.977386 + rotZ: 359.970856 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 149221 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1134': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360109675/26F86804DC12B0C155197E96D0573BCBBF0544F7/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 13614f + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 5.76411629 + posY: 1.38086224 + posZ: 8.534793 + rotX: -0.00021831409 + rotY: 180.000076 + rotZ: 0.00547605427 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 149223 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1134': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360109675/26F86804DC12B0C155197E96D0573BCBBF0544F7/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 13614f + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 5.454445 + posY: 1.38038361 + posZ: 8.672478 + rotX: -0.0001057551 + rotY: 179.999969 + rotZ: -0.00125669409 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 149204 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1134': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360109675/26F86804DC12B0C155197E96D0573BCBBF0544F7/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 13614f + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 5.0401125 + posY: 1.48509693 + posZ: 8.465303 + rotX: 0.0001821795 + rotY: 180.000214 + rotZ: -0.004952429 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 149205 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1134': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360109675/26F86804DC12B0C155197E96D0573BCBBF0544F7/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 13614f + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 5.62110758 + posY: 1.47545338 + posZ: 8.712685 + rotX: -0.0002942806 + rotY: 180.000214 + rotZ: 0.00183623971 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 149224 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1134': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360109675/26F86804DC12B0C155197E96D0573BCBBF0544F7/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 13614f + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 5.427698 + posY: 1.394076 + posZ: 8.586284 + rotX: 0.000123660371 + rotY: 180.0 + rotZ: -0.00160766637 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 149225 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1134': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360109675/26F86804DC12B0C155197E96D0573BCBBF0544F7/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 596cd0 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 5.06523466 + posY: 1.37648523 + posZ: 8.551231 + rotX: 359.9854 + rotY: 179.999619 + rotZ: 359.984375 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 149206 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1134': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360109675/26F86804DC12B0C155197E96D0573BCBBF0544F7/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 13614f + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 5.87460566 + posY: 1.46580267 + posZ: 8.359161 + rotX: -0.001437495 + rotY: 179.999786 + rotZ: 0.003802118 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 149218 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1134': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360109675/26F86804DC12B0C155197E96D0573BCBBF0544F7/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 13614f + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 6.03430367 + posY: 1.40157378 + posZ: 8.398351 + rotX: 0.0006479541 + rotY: 180.004166 + rotZ: 356.99054 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 149217 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1134': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360109675/26F86804DC12B0C155197E96D0573BCBBF0544F7/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 13614f + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 5.769678 + posY: 1.3588475 + posZ: 8.584811 + rotX: 0.00115424034 + rotY: 180.018509 + rotZ: 359.991638 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 149220 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1134': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360109675/26F86804DC12B0C155197E96D0573BCBBF0544F7/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 13614f + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 5.327174 + posY: 1.3859601 + posZ: 8.28817 + rotX: -0.00110854453 + rotY: 179.996216 + rotZ: 0.00167465443 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 149226 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1134': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360109675/26F86804DC12B0C155197E96D0573BCBBF0544F7/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 13614f + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 5.43915462 + posY: 1.2316947 + posZ: 8.412562 + rotX: -0.00136205216 + rotY: 179.9999 + rotZ: -0.0008276437 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '1492': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360109675/26F86804DC12B0C155197E96D0573BCBBF0544F7/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 149219 +- 149215 +- 149213 +- 149207 +- 149214 +- 149222 +- 149211 +- 149208 +- 149209 +- 149203 +- 149216 +- 149201 +- 149212 +- 149202 +- 149210 +- 149221 +- 149223 +- 149204 +- 149205 +- 149224 +- 149225 +- 149206 +- 149218 +- 149217 +- 149220 +- 149226 +Description: Stranger Things +GMNotes: '' +GUID: 9f9e79 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Encounter Deck +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.927482 + posY: 1.75039184 + posZ: 5.75710058 + rotX: 359.919739 + rotY: 269.985565 + rotZ: 180.016846 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Stranger Things 408301/Deck Instructions 6bbd29.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Stranger Things 408301/Deck Instructions 6bbd29.yaml new file mode 100644 index 000000000..30e44a99b --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Stranger Things 408301/Deck Instructions 6bbd29.yaml @@ -0,0 +1,256 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 105 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360107785/527334621A3CABD48FEA38CD527D3598687688BB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360108253/47D6C3F1D3B8AACA51A3EFFBBF3C8D1AEC89F12F/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: bb506e + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -8.539034 + posY: 1.03107631 + posZ: -3.852404 + rotX: 359.986237 + rotY: 179.999741 + rotZ: 359.993744 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 104 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360107785/527334621A3CABD48FEA38CD527D3598687688BB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360108253/47D6C3F1D3B8AACA51A3EFFBBF3C8D1AEC89F12F/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: bb506e + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -5.999646 + posY: 1.03139007 + posZ: -0.8347169 + rotX: 359.986053 + rotY: 180.018082 + rotZ: -0.00233745575 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 103 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360107785/527334621A3CABD48FEA38CD527D3598687688BB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360108253/47D6C3F1D3B8AACA51A3EFFBBF3C8D1AEC89F12F/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: a5e3c4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -10.0214443 + posY: 1.83058631 + posZ: 1.73230267 + rotX: 359.9378 + rotY: 269.99942 + rotZ: 0.0187826641 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 102 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360107785/527334621A3CABD48FEA38CD527D3598687688BB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360108253/47D6C3F1D3B8AACA51A3EFFBBF3C8D1AEC89F12F/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: ee9c79 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -10.3807716 + posY: 1.814625 + posZ: -1.32411194 + rotX: 359.9181 + rotY: 269.984863 + rotZ: 180.013428 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 101 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360107785/527334621A3CABD48FEA38CD527D3598687688BB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360108253/47D6C3F1D3B8AACA51A3EFFBBF3C8D1AEC89F12F/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 41aa91 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -10.2747011 + posY: 1.66972923 + posZ: -1.36693525 + rotX: 359.9303 + rotY: 270.000946 + rotZ: 180.015259 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360107785/527334621A3CABD48FEA38CD527D3598687688BB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360108253/47D6C3F1D3B8AACA51A3EFFBBF3C8D1AEC89F12F/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 105 +- 104 +- 103 +- 102 +- 101 +Description: Stranger Things +GMNotes: '' +GUID: 6bbd29 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Instructions +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -9.908533 + posY: 1.66640806 + posZ: 1.73076618 + rotX: 359.9201 + rotY: 269.9864 + rotZ: 0.01688628 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Stranger Things 408301/Deck Set Aside 1078c7.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Stranger Things 408301/Deck Set Aside 1078c7.yaml new file mode 100644 index 000000000..3e0a253a2 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Stranger Things 408301/Deck Set Aside 1078c7.yaml @@ -0,0 +1,344 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 149200 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1134': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360109675/26F86804DC12B0C155197E96D0573BCBBF0544F7/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 13614f + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -1.05579674 + posY: 1.23162353 + posZ: 7.287609 + rotX: -0.00508359727 + rotY: 180.000122 + rotZ: -0.00262501533 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 115 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360107785/527334621A3CABD48FEA38CD527D3598687688BB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360108253/47D6C3F1D3B8AACA51A3EFFBBF3C8D1AEC89F12F/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: bb506e + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -4.39402437 + posY: 1.23167694 + posZ: 7.835111 + rotX: -0.00203900714 + rotY: 179.984039 + rotZ: -0.00093608757 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 116 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360107785/527334621A3CABD48FEA38CD527D3598687688BB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360108253/47D6C3F1D3B8AACA51A3EFFBBF3C8D1AEC89F12F/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 2dc2cd + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -4.632467 + posY: 1.3766824 + posZ: 7.571528 + rotX: 359.993744 + rotY: 179.984558 + rotZ: 359.983978 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 132 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360107785/527334621A3CABD48FEA38CD527D3598687688BB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360108253/47D6C3F1D3B8AACA51A3EFFBBF3C8D1AEC89F12F/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: '845455' + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.33925986 + posY: 1.38989663 + posZ: 7.33186245 + rotX: 0.08672732 + rotY: 179.977142 + rotZ: 0.198503226 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 131 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360107785/527334621A3CABD48FEA38CD527D3598687688BB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360108253/47D6C3F1D3B8AACA51A3EFFBBF3C8D1AEC89F12F/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: fc3478 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.34001613 + posY: 1.53875387 + posZ: 7.33278131 + rotX: 0.0494518057 + rotY: 179.983963 + rotZ: 0.185316011 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 117 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360107785/527334621A3CABD48FEA38CD527D3598687688BB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360108253/47D6C3F1D3B8AACA51A3EFFBBF3C8D1AEC89F12F/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 9a04f8 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.33963823 + posY: 1.53635907 + posZ: 7.33264256 + rotX: 0.0939722061 + rotY: 179.985016 + rotZ: 0.39981398 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 130 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360107785/527334621A3CABD48FEA38CD527D3598687688BB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360108253/47D6C3F1D3B8AACA51A3EFFBBF3C8D1AEC89F12F/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: a3f415 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.339911 + posY: 1.54270411 + posZ: 7.33278 + rotX: 0.0485684164 + rotY: 179.983963 + rotZ: 0.209453017 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360107785/527334621A3CABD48FEA38CD527D3598687688BB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360108253/47D6C3F1D3B8AACA51A3EFFBBF3C8D1AEC89F12F/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + '1492': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360109675/26F86804DC12B0C155197E96D0573BCBBF0544F7/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 149200 +- 115 +- 116 +- 132 +- 131 +- 117 +- 130 +Description: Stranger Things +GMNotes: '' +GUID: 1078c7 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Set Aside +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 1.69644785 + posY: 1.66985893 + posZ: 14.2788382 + rotX: 359.95517 + rotY: 224.997955 + rotZ: 180.068649 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Stranger Things 408301/Deck Upside Down f0e2dc.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Stranger Things 408301/Deck Upside Down f0e2dc.yaml new file mode 100644 index 000000000..836dd0a0b --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Stranger Things 408301/Deck Upside Down f0e2dc.yaml @@ -0,0 +1,421 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 149229 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1134': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360109675/26F86804DC12B0C155197E96D0573BCBBF0544F7/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 13614f + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 11.3416147 + posY: 1.38604975 + posZ: 9.060326 + rotX: 0.000169715247 + rotY: 179.999664 + rotZ: 0.00228293845 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 149230 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1134': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360109675/26F86804DC12B0C155197E96D0573BCBBF0544F7/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 13614f + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 11.5375576 + posY: 1.3810811 + posZ: 8.839224 + rotX: -0.00237354031 + rotY: 180.00058 + rotZ: 0.00479128165 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 149232 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1134': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360109675/26F86804DC12B0C155197E96D0573BCBBF0544F7/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 13614f + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 10.8516645 + posY: 1.38048446 + posZ: 8.72869 + rotX: -0.00189676287 + rotY: 179.994614 + rotZ: 0.0008524657 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 149234 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1134': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360109675/26F86804DC12B0C155197E96D0573BCBBF0544F7/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: dd678d + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 11.3109426 + posY: 1.37638831 + posZ: 9.01822948 + rotX: -0.0004630477 + rotY: 180.000046 + rotZ: 0.0161138661 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 149233 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1134': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360109675/26F86804DC12B0C155197E96D0573BCBBF0544F7/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 13614f + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 11.435544 + posY: 1.39412773 + posZ: 8.750616 + rotX: -0.00148681051 + rotY: 180.000031 + rotZ: 0.0027048823 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 149227 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1134': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360109675/26F86804DC12B0C155197E96D0573BCBBF0544F7/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 13614f + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 11.0372 + posY: 1.34986269 + posZ: 8.936159 + rotX: -0.000994888 + rotY: 179.999878 + rotZ: 0.00136311608 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 149235 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1134': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360109675/26F86804DC12B0C155197E96D0573BCBBF0544F7/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 13614f + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 11.1057425 + posY: 1.231622 + posZ: 8.93454 + rotX: -0.00438501732 + rotY: 180.000061 + rotZ: -0.00152323407 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 149231 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1134': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360109675/26F86804DC12B0C155197E96D0573BCBBF0544F7/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 13614f + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 11.2670135 + posY: 1.37847543 + posZ: 8.841973 + rotX: -0.0008795035 + rotY: 180.001038 + rotZ: -0.000112252514 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 149228 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1134': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360109675/26F86804DC12B0C155197E96D0573BCBBF0544F7/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 13614f + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 10.9686117 + posY: 1.39246154 + posZ: 8.84956 + rotX: -0.00051456003 + rotY: 180.000656 + rotZ: -0.00150457863 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '1492': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360109675/26F86804DC12B0C155197E96D0573BCBBF0544F7/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 149229 +- 149230 +- 149232 +- 149234 +- 149233 +- 149227 +- 149235 +- 149231 +- 149228 +Description: Stranger Things +GMNotes: '' +GUID: f0e2dc +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Upside Down +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -17.12003 + posY: 1.67650092 + posZ: -0.0299935341 + rotX: 359.9201 + rotY: 269.983551 + rotZ: 180.016891 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Approaching Storm 0fad66.ttslua b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Approaching Storm 0fad66.ttslua new file mode 100644 index 000000000..54d591927 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Approaching Storm 0fad66.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.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 791837/Custom_Model_Bag The Approaching Storm 0fad66.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Approaching Storm 0fad66.yaml new file mode 100644 index 000000000..a8250e6e9 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Approaching Storm 0fad66.yaml @@ -0,0 +1,76 @@ +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 Approaching Storm 0fad66/Bag 1 Plot Uncovered 67d524.yaml' +- !include 'Custom_Model_Bag The Approaching Storm 0fad66/Bag 2 Dark Waters 90aab1.yaml' +- !include 'Custom_Model_Bag The Approaching Storm 0fad66/Bag 3 Curiosities 20982e.yaml' +- !include 'Custom_Model_Bag The Approaching Storm 0fad66/Bag 4 Shadow Rails 3a3b5a.yaml' +- !include 'Custom_Model_Bag The Approaching Storm 0fad66/Bag 5 lair of the Cult 266dcb.yaml' +- !include 'Custom_Model_Bag The Approaching Storm 0fad66/Bag 6 Domain of Baal 84cdaf.yaml' +- !include 'Custom_Model_Bag The Approaching Storm 0fad66/Bag Campaign Guide 4d6544.yaml' +- !include 'Custom_Model_Bag The Approaching Storm 0fad66/Custom_Tile The Approaching + Storm 7521a9.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/798737729142917748/FA44959693A82787BC34D6FA2487911AB24E619B/ + MaterialIndex: 3 + MeshURL: https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj + NormalURL: '' + TypeIndex: 6 +Description: '' +GMNotes: '' +GUID: 0fad66 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Model_Bag The Approaching Storm 0fad66.ttslua' +LuaScriptState: '{"ml":{"20982e":{"lock":false,"pos":{"x":8.3104,"y":1.2871,"z":7.5999},"rot":{"x":0.08,"y":89.9985,"z":359.9831}},"266dcb":{"lock":false,"pos":{"x":8.1241,"y":1.2846,"z":-1.7036},"rot":{"x":0.08,"y":89.9962,"z":359.9831}},"3a3b5a":{"lock":false,"pos":{"x":8.159,"y":1.286,"z":2.9166},"rot":{"x":0.08,"y":89.9925,"z":359.9831}},"4d6544":{"lock":false,"pos":{"x":7.9998,"y":1.282,"z":-11.3677},"rot":{"x":359.92,"y":270.0005,"z":0.0169}},"67d524":{"lock":false,"pos":{"x":8.0606,"y":1.2899,"z":15.9247},"rot":{"x":0.08,"y":89.9808,"z":359.9831}},"7521a9":{"lock":false,"pos":{"x":-3.5895,"y":1.5822,"z":-14.7357},"rot":{"x":359.9197,"y":270.0013,"z":0.0168}},"84cdaf":{"lock":false,"pos":{"x":8.0379,"y":1.2834,"z":-6.2152},"rot":{"x":0.08,"y":89.9981,"z":359.9831}},"90aab1":{"lock":false,"pos":{"x":8.0656,"y":1.2886,"z":11.2954},"rot":{"x":0.08,"y":89.983,"z":359.9831}}}}' +MaterialIndex: -1 +MeshIndex: -1 +Name: Custom_Model_Bag +Nickname: The Approaching Storm +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 31.20899 + posY: 2.534925 + posZ: -62.81916 + rotX: 359.983246 + rotY: 270.0042 + rotZ: 0.00353439571 + scaleX: 2.21 + scaleY: 0.46 + scaleZ: 2.42 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 1 Plot Uncovered 67d524.ttslua b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 1 Plot Uncovered 67d524.ttslua new file mode 100644 index 000000000..4acf9ea11 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 1 Plot Uncovered 67d524.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 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 1 Plot Uncovered 67d524.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 1 Plot Uncovered 67d524.yaml new file mode 100644 index 000000000..a2d9e1113 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 1 Plot Uncovered 67d524.yaml @@ -0,0 +1,53 @@ +Autoraise: true +ColorDiffuse: + b: 0.0 + g: 0.366520882 + r: 0.7058823 +ContainedObjects: +- !include 'Bag 1 Plot Uncovered 67d524/Deck Set Aside 29fbe7.yaml' +- !include 'Bag 1 Plot Uncovered 67d524/Deck Act 3f93f1.yaml' +- !include 'Bag 1 Plot Uncovered 67d524/Custom_Tile 46cc04.yaml' +- !include 'Bag 1 Plot Uncovered 67d524/Custom_Tile 49a311.yaml' +- !include 'Bag 1 Plot Uncovered 67d524/Card A Plot Uncovered 4a2a90.yaml' +- !include 'Bag 1 Plot Uncovered 67d524/Card 4bef96.yaml' +- !include 'Bag 1 Plot Uncovered 67d524/Custom_Tile 7234af.yaml' +- !include 'Bag 1 Plot Uncovered 67d524/Card 7d0607.yaml' +- !include 'Bag 1 Plot Uncovered 67d524/Card A Plot Uncovered 8b9011.yaml' +- !include 'Bag 1 Plot Uncovered 67d524/Custom_Tile a35da6.yaml' +- !include 'Bag 1 Plot Uncovered 67d524/Card Agenda a6b095.yaml' +- !include 'Bag 1 Plot Uncovered 67d524/Card bf19ca.yaml' +- !include 'Bag 1 Plot Uncovered 67d524/Custom_Tile c81219.yaml' +- !include 'Bag 1 Plot Uncovered 67d524/Card cc90b5.yaml' +- !include 'Bag 1 Plot Uncovered 67d524/Custom_Tile cd6909.yaml' +- !include 'Bag 1 Plot Uncovered 67d524/Custom_Tile f6c752.yaml' +- !include 'Bag 1 Plot Uncovered 67d524/Card f96697.yaml' +- !include 'Bag 1 Plot Uncovered 67d524/Deck Encounter deck fc1f03.yaml' +Description: The Approaching Storm +GMNotes: '' +GUID: 67d524 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Bag 1 Plot Uncovered 67d524.ttslua' +LuaScriptState: '{"ml":{"29fbe7":{"lock":false,"pos":{"x":1.6964,"y":1.6544,"z":14.2788},"rot":{"x":359.9552,"y":224.9999,"z":180.0686}},"3f93f1":{"lock":false,"pos":{"x":-2.6928,"y":1.655,"z":-5.0455},"rot":{"x":359.9197,"y":269.9966,"z":0.0168}},"46cc04":{"lock":false,"pos":{"x":-23.6765,"y":1.6157,"z":3.86},"rot":{"x":0.0169,"y":179.9999,"z":0.08}},"49a311":{"lock":false,"pos":{"x":-20.482,"y":1.6078,"z":-7.5592},"rot":{"x":359.9201,"y":269.9865,"z":0.0169}},"4a2a90":{"lock":false,"pos":{"x":-50.9244,"y":1.7266,"z":8.1784},"rot":{"x":359.9201,"y":270,"z":0.0169}},"4bef96":{"lock":false,"pos":{"x":-23.6765,"y":1.689,"z":-0.03},"rot":{"x":359.9201,"y":270.0001,"z":180.0169}},"7234af":{"lock":false,"pos":{"x":-20.5093,"y":1.61,"z":-0.2279},"rot":{"x":359.9201,"y":269.9434,"z":0.017}},"7d0607":{"lock":false,"pos":{"x":-17.1199,"y":1.6799,"z":-0.03},"rot":{"x":359.9201,"y":269.9999,"z":180.0169}},"8b9011":{"lock":false,"pos":{"x":-3.956,"y":1.6556,"z":-10.4412},"rot":{"x":359.9197,"y":269.9999,"z":0.0168}},"a35da6":{"lock":false,"pos":{"x":-17.12,"y":1.6042,"z":-3.83},"rot":{"x":0.0169,"y":179.9999,"z":0.08}},"a6b095":{"lock":false,"pos":{"x":-2.7248,"y":1.6571,"z":0.3733},"rot":{"x":359.9197,"y":269.9947,"z":0.0168}},"bf19ca":{"lock":false,"pos":{"x":-17.1201,"y":1.6776,"z":-7.7},"rot":{"x":359.9201,"y":270,"z":180.0169}},"c81219":{"lock":false,"pos":{"x":-20.1952,"y":1.6086,"z":-3.4709},"rot":{"x":359.9747,"y":209.9998,"z":0.0777}},"cc90b5":{"lock":false,"pos":{"x":-23.6766,"y":1.6913,"z":7.57},"rot":{"x":359.9201,"y":270,"z":180.0169}},"cd6909":{"lock":false,"pos":{"x":-19.992,"y":1.6106,"z":4.2943},"rot":{"x":0.0684,"y":135.0001,"z":0.0445}},"f6c752":{"lock":false,"pos":{"x":-23.6765,"y":1.6134,"z":-3.83},"rot":{"x":0.0169,"y":180,"z":0.08}},"f96697":{"lock":false,"pos":{"x":-23.6767,"y":1.6868,"z":-7.6999},"rot":{"x":359.9201,"y":269.9998,"z":180.0169}},"fc1f03":{"lock":false,"pos":{"x":-3.9276,"y":1.7397,"z":5.7571},"rot":{"x":359.9197,"y":269.9995,"z":180.0168}}}}' +MaterialIndex: -1 +MeshIndex: -1 +Name: Bag +Nickname: 1 Plot Uncovered +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 8.060603 + posY: 1.289927 + posZ: 15.9247026 + rotX: 0.07996197 + rotY: 89.98077 + rotZ: 359.983063 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 1 Plot Uncovered 67d524/Card 4bef96.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 1 Plot Uncovered 67d524/Card 4bef96.yaml new file mode 100644 index 000000000..13a78e1fc --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 1 Plot Uncovered 67d524/Card 4bef96.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 101 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/949595632761872450/59BE7A56D5E8FA2960DC2F8FCBC1FA464F90AA20/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761871063/A24C21A215D1AFC997B65C32C4B89664FACBBE3A/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 4bef96 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -23.6765 + posY: 1.68904328 + posZ: -0.0299995486 + 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 The Side Missions 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 1 Plot Uncovered 67d524/Card 7d0607.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 1 Plot Uncovered 67d524/Card 7d0607.yaml new file mode 100644 index 000000000..7e13c263a --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 1 Plot Uncovered 67d524/Card 7d0607.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 105 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/949595632761872450/59BE7A56D5E8FA2960DC2F8FCBC1FA464F90AA20/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761871063/A24C21A215D1AFC997B65C32C4B89664FACBBE3A/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 7d0607 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -17.1199 + posY: 1.67990053 + posZ: -0.0299996883 + 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 The Side Missions 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 1 Plot Uncovered 67d524/Card bf19ca.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 1 Plot Uncovered 67d524/Card bf19ca.yaml new file mode 100644 index 000000000..680c07262 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 1 Plot Uncovered 67d524/Card bf19ca.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 102 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/949595632761872450/59BE7A56D5E8FA2960DC2F8FCBC1FA464F90AA20/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761871063/A24C21A215D1AFC997B65C32C4B89664FACBBE3A/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: bf19ca +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -17.1201 + posY: 1.67764235 + posZ: -7.70000029 + 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 The Side Missions 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 1 Plot Uncovered 67d524/Card cc90b5.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 1 Plot Uncovered 67d524/Card cc90b5.yaml new file mode 100644 index 000000000..f8c41006e --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 1 Plot Uncovered 67d524/Card cc90b5.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 108 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/949595632761872450/59BE7A56D5E8FA2960DC2F8FCBC1FA464F90AA20/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761871063/A24C21A215D1AFC997B65C32C4B89664FACBBE3A/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: cc90b5 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -23.6766 + posY: 1.69128132 + posZ: 7.570001 + 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 The Side Missions 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 1 Plot Uncovered 67d524/Card f96697.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 1 Plot Uncovered 67d524/Card f96697.yaml new file mode 100644 index 000000000..b3ee8c4f8 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 1 Plot Uncovered 67d524/Card f96697.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 104 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/949595632761872450/59BE7A56D5E8FA2960DC2F8FCBC1FA464F90AA20/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761871063/A24C21A215D1AFC997B65C32C4B89664FACBBE3A/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: f96697 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -23.6767 + posY: 1.6867851 + posZ: -7.69990063 + 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 The Side Missions 791837/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 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 1 Plot Uncovered 67d524/Card A Plot Uncovered 4a2a90.yaml new file mode 100644 index 000000000..ab6a1c5b8 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 1 Plot Uncovered 67d524/Card A Plot Uncovered 4a2a90.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 100 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/949595632761872450/59BE7A56D5E8FA2960DC2F8FCBC1FA464F90AA20/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761871063/A24C21A215D1AFC997B65C32C4B89664FACBBE3A/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 4a2a90 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: A Plot Uncovered +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -50.92441 + posY: 1.70846307 + posZ: 8.178402 + rotX: 359.9201 + rotY: 269.999939 + rotZ: 0.01687722 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 1 Plot Uncovered 67d524/Card A Plot Uncovered 8b9011.yaml new file mode 100644 index 000000000..6af2d8456 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 1 Plot Uncovered 67d524/Card A Plot Uncovered 8b9011.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 100 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/949595632761872450/59BE7A56D5E8FA2960DC2F8FCBC1FA464F90AA20/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761871063/A24C21A215D1AFC997B65C32C4B89664FACBBE3A/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 8b9011 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: A Plot Uncovered +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.956001 + posY: 1.65564823 + posZ: -10.4412022 + rotX: 359.919739 + rotY: 269.999939 + rotZ: 0.0168411862 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 1 Plot Uncovered 67d524/Card Agenda a6b095.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 1 Plot Uncovered 67d524/Card Agenda a6b095.yaml new file mode 100644 index 000000000..b30e7e9e5 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 1 Plot Uncovered 67d524/Card Agenda a6b095.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 203 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/949595632761878422/F08C392E92C6AAE7A15BBCD0203D375136E65F2F/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761876244/B85D64D26E719E9AAE7A2B1E21324A3AE395A6E0/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: a6b095 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Agenda +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.72480035 + posY: 1.65710139 + posZ: 0.373299569 + rotX: 359.919739 + rotY: 269.9947 + rotZ: 0.0168449711 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 1 Plot Uncovered 67d524/Custom_Tile 46cc04.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 1 Plot Uncovered 67d524/Custom_Tile 46cc04.yaml new file mode 100644 index 000000000..3eae0bfce --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 1 Plot Uncovered 67d524/Custom_Tile 46cc04.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 46cc04 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.6765 + posY: 1.6156522 + posZ: 3.86000013 + rotX: 0.01687188 + rotY: 179.999939 + rotZ: 0.07993971 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 1 Plot Uncovered 67d524/Custom_Tile 49a311.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 1 Plot Uncovered 67d524/Custom_Tile 49a311.yaml new file mode 100644 index 000000000..b57325d44 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 1 Plot Uncovered 67d524/Custom_Tile 49a311.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 49a311 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.482 + posY: 1.60783529 + posZ: -7.55920124 + rotX: 359.9201 + rotY: 269.98645 + rotZ: 0.0169211 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 1 Plot Uncovered 67d524/Custom_Tile 7234af.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 1 Plot Uncovered 67d524/Custom_Tile 7234af.yaml new file mode 100644 index 000000000..66f04b9aa --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 1 Plot Uncovered 67d524/Custom_Tile 7234af.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 7234af +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.5093 + posY: 1.61003208 + posZ: -0.2279002 + rotX: 359.920135 + rotY: 269.9434 + rotZ: 0.0169788655 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 1 Plot Uncovered 67d524/Custom_Tile a35da6.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 1 Plot Uncovered 67d524/Custom_Tile a35da6.yaml new file mode 100644 index 000000000..093cb583f --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 1 Plot Uncovered 67d524/Custom_Tile a35da6.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: a35da6 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.1199989 + posY: 1.60424519 + posZ: -3.82999969 + rotX: 0.0168721415 + rotY: 179.999878 + rotZ: 0.07994563 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 1 Plot Uncovered 67d524/Custom_Tile c81219.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 1 Plot Uncovered 67d524/Custom_Tile c81219.yaml new file mode 100644 index 000000000..4b3d041be --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 1 Plot Uncovered 67d524/Custom_Tile c81219.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: c81219 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.1952 + posY: 1.60863912 + posZ: -3.4709003 + rotX: 359.97467 + rotY: 209.9998 + rotZ: 0.07762907 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 1 Plot Uncovered 67d524/Custom_Tile cd6909.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 1 Plot Uncovered 67d524/Custom_Tile cd6909.yaml new file mode 100644 index 000000000..07eb182ac --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 1 Plot Uncovered 67d524/Custom_Tile cd6909.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: cd6909 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: -19.9919987 + posY: 1.61064231 + posZ: 4.2943 + rotX: 0.06843224 + rotY: 135.0001 + rotZ: 0.0445616022 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 1 Plot Uncovered 67d524/Custom_Tile f6c752.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 1 Plot Uncovered 67d524/Custom_Tile f6c752.yaml new file mode 100644 index 000000000..7f39dd88b --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 1 Plot Uncovered 67d524/Custom_Tile f6c752.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: f6c752 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.6765 + posY: 1.61338782 + posZ: -3.83000016 + rotX: 0.0168719143 + rotY: 179.999939 + rotZ: 0.0799399838 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 1 Plot Uncovered 67d524/Deck Act 3f93f1.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 1 Plot Uncovered 67d524/Deck Act 3f93f1.yaml new file mode 100644 index 000000000..2c3f9a3e2 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 1 Plot Uncovered 67d524/Deck Act 3f93f1.yaml @@ -0,0 +1,172 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 202 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/949595632761878422/F08C392E92C6AAE7A15BBCD0203D375136E65F2F/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761876244/B85D64D26E719E9AAE7A2B1E21324A3AE395A6E0/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 13f7dc + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.664481 + posY: 1.3259697 + posZ: 1.37705684 + rotX: 0.00365567673 + rotY: 179.999924 + rotZ: 0.000565748836 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 201 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/949595632761878422/F08C392E92C6AAE7A15BBCD0203D375136E65F2F/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761876244/B85D64D26E719E9AAE7A2B1E21324A3AE395A6E0/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: c7d3ee + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.676066458 + posY: 1.47073114 + posZ: 1.19160223 + rotX: 0.0006428455 + rotY: 180.000031 + rotZ: -0.000431526743 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 200 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/949595632761878422/F08C392E92C6AAE7A15BBCD0203D375136E65F2F/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761876244/B85D64D26E719E9AAE7A2B1E21324A3AE395A6E0/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 517d86 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.5805773 + posY: 1.48848367 + posZ: 1.43119764 + rotX: 0.00117355061 + rotY: 179.999878 + rotZ: -0.000174802743 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/949595632761878422/F08C392E92C6AAE7A15BBCD0203D375136E65F2F/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761876244/B85D64D26E719E9AAE7A2B1E21324A3AE395A6E0/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 202 +- 201 +- 200 +Description: '' +GMNotes: '' +GUID: 3f93f1 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Act +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.69280028 + posY: 1.65500414 + posZ: -5.04550076 + rotX: 359.919739 + rotY: 269.9966 + rotZ: 0.016842233 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 1 Plot Uncovered 67d524/Deck Encounter deck fc1f03.yaml new file mode 100644 index 000000000..16e4d5f27 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 1 Plot Uncovered 67d524/Deck Encounter deck fc1f03.yaml @@ -0,0 +1,1065 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 501 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/924800625825559102/C3C13E9EE35451018D2880936F889E0D8309BFDB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761889070/DA01A9923E38E4072B341E148F0AA02BA1A3A706/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 9ad58f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -29.4089584 + posY: 1.42222691 + posZ: -58.3754272 + rotX: 0.0168452617 + rotY: 270.083862 + rotZ: 180.092438 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 501 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/924800625825559102/C3C13E9EE35451018D2880936F889E0D8309BFDB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761889070/DA01A9923E38E4072B341E148F0AA02BA1A3A706/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: f882ec + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -28.35116 + posY: 1.37283385 + posZ: -58.585762 + rotX: 0.0151941692 + rotY: 270.083771 + rotZ: 180.021072 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 501 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/924800625825559102/C3C13E9EE35451018D2880936F889E0D8309BFDB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761889070/DA01A9923E38E4072B341E148F0AA02BA1A3A706/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: b3aec3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -29.5229359 + posY: 1.71988416 + posZ: -59.4023056 + rotX: 0.283244938 + rotY: 270.062744 + rotZ: 182.6595 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 501 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/924800625825559102/C3C13E9EE35451018D2880936F889E0D8309BFDB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761889070/DA01A9923E38E4072B341E148F0AA02BA1A3A706/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: e046a3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -28.8622189 + posY: 1.72091126 + posZ: -59.7416649 + rotX: 0.00554814143 + rotY: 270.0884 + rotZ: 182.273117 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 501 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/924800625825559102/C3C13E9EE35451018D2880936F889E0D8309BFDB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761889070/DA01A9923E38E4072B341E148F0AA02BA1A3A706/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: d9ceb2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -28.81821 + posY: 1.50152028 + posZ: -60.0372429 + rotX: 0.008712547 + rotY: 270.095947 + rotZ: 185.615112 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3619 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: '260768' + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dissonant Voices + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -19.1363125 + posY: 1.231699 + posZ: -7.400251 + rotX: -0.000820844667 + rotY: 270.0089 + rotZ: -0.000237511369 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3617 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: da8001 + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Rotting Remains + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -19.2726822 + posY: 1.23161709 + posZ: -4.69493532 + rotX: -0.00461160857 + rotY: 269.9793 + rotZ: -0.00137890945 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3619 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: f1a34d + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dissonant Voices + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -19.9809151 + posY: 1.28156877 + posZ: -7.79831076 + rotX: 0.011735606 + rotY: 270.009033 + rotZ: 0.00468536 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3618 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: 27c05d + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Frozen in Fear + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -18.967617 + posY: 1.231716 + posZ: -10.49529 + rotX: -3.11068325e-05 + rotY: 270.0013 + rotZ: -7.22032553e-07 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3617 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: 18e09c + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Rotting Remains + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -20.3450146 + posY: 1.28128624 + posZ: -4.537053 + rotX: 0.006250872 + rotY: 269.979126 + rotZ: -0.00126227119 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3618 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: c40f57 + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Frozen in Fear + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -19.6207886 + posY: 1.28169692 + posZ: -10.6840782 + rotX: -3.134726e-05 + rotY: 270.000763 + rotZ: 3.597804e-06 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3617 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: aa3d47 + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Rotting Remains + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -21.5193939 + posY: 1.337018 + posZ: -4.78068352 + rotX: 0.0181244723 + rotY: 269.978149 + rotZ: 0.00253973226 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3613 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Creature. + GMNotes: '' + GUID: 56e5db + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Swarm of Rats + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -19.7119656 + posY: 1.28121269 + posZ: 15.0893879 + rotX: 0.004087732 + rotY: 269.994171 + rotZ: -0.0020856997 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3613 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Creature. + GMNotes: '' + GUID: 7381cd + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Swarm of Rats + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -19.6142921 + posY: 1.42705274 + posZ: 15.2051964 + rotX: 0.012312145 + rotY: 269.997284 + rotZ: 0.0359485969 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3613 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Creature. + GMNotes: '' + GUID: bbc9d1 + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Swarm of Rats + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -18.9998322 + posY: 1.23161483 + posZ: 14.9262657 + rotX: -0.00489453 + rotY: 270.002747 + rotZ: -0.00167015032 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3620 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: 1921c5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ancient Evils + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.2472782 + posY: 1.68640268 + posZ: -16.9897041 + rotX: 359.9335 + rotY: 270.000946 + rotZ: 180.019043 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3620 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: e0f4c0 + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ancient Evils + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -20.9346027 + posY: 1.28129983 + posZ: 7.54924154 + rotX: 0.006723375 + rotY: 269.9994 + rotZ: -0.000132751375 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3620 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: 61e841 + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ancient Evils + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -21.9496078 + posY: 1.33434 + posZ: 7.916971 + rotX: 0.0176143516 + rotY: 269.9864 + rotZ: 359.993561 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 266258 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '37': + BackIsHidden: true + BackURL: https://i.imgur.com/h4om3TQ.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87098596225478692/B2438BEE2CDD4D172BAFA5DFDD15C0F29B079D4F/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Tactic. + GMNotes: '' + GUID: 5ba87a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Hunted Down + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 107.997444 + posY: 1.40332556 + posZ: 7.48548365 + rotX: 359.987427 + rotY: 270.0 + rotZ: 359.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 266258 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '37': + BackIsHidden: true + BackURL: https://i.imgur.com/h4om3TQ.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87098596225478692/B2438BEE2CDD4D172BAFA5DFDD15C0F29B079D4F/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Tactic. + GMNotes: '' + GUID: e34f18 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Hunted Down + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 108.229164 + posY: 1.54854739 + posZ: 7.707022 + rotX: 359.98703 + rotY: 269.998718 + rotZ: 359.983368 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 266257 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '37': + BackIsHidden: true + BackURL: https://i.imgur.com/h4om3TQ.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87098596225478692/B2438BEE2CDD4D172BAFA5DFDD15C0F29B079D4F/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Human. Criminal. Syndicate. + GMNotes: '' + GUID: 8dfc4b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Mobster + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 108.237427 + posY: 1.565842 + posZ: 7.6553297 + rotX: 359.987976 + rotY: 270.0052 + rotZ: 359.989166 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 266257 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '37': + BackIsHidden: true + BackURL: https://i.imgur.com/h4om3TQ.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87098596225478692/B2438BEE2CDD4D172BAFA5DFDD15C0F29B079D4F/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Human. Criminal. Syndicate. + GMNotes: '' + GUID: a4a1c9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Mobster + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 108.686913 + posY: 1.55195844 + posZ: 8.138873 + rotX: 359.987335 + rotY: 269.999756 + rotZ: 359.984222 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 266256 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '37': + BackIsHidden: true + BackURL: https://i.imgur.com/h4om3TQ.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87098596225478692/B2438BEE2CDD4D172BAFA5DFDD15C0F29B079D4F/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Human. Criminal. Syndicate. + GMNotes: '' + GUID: 4d79ef + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: O' Bannion's Thug + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 107.604637 + posY: 1.550205 + posZ: 7.464099 + rotX: 359.990417 + rotY: 269.981781 + rotZ: -0.000875226 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 266256 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '37': + BackIsHidden: true + BackURL: https://i.imgur.com/h4om3TQ.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87098596225478692/B2438BEE2CDD4D172BAFA5DFDD15C0F29B079D4F/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Human. Criminal. Syndicate. + GMNotes: '' + GUID: 8d4f83 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: O' Bannion's Thug + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 107.46981 + posY: 1.55290771 + posZ: 7.80136538 + rotX: 359.984833 + rotY: 269.9899 + rotZ: 359.9866 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2662': + BackIsHidden: true + BackURL: https://i.imgur.com/h4om3TQ.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87098596225478692/B2438BEE2CDD4D172BAFA5DFDD15C0F29B079D4F/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '5': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/924800625825559102/C3C13E9EE35451018D2880936F889E0D8309BFDB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761889070/DA01A9923E38E4072B341E148F0AA02BA1A3A706/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 501 +- 501 +- 501 +- 501 +- 501 +- 3619 +- 3617 +- 3619 +- 3618 +- 3617 +- 3618 +- 3617 +- 3613 +- 3613 +- 3613 +- 3620 +- 3620 +- 3620 +- 266258 +- 266258 +- 266257 +- 266257 +- 266256 +- 266256 +Description: 1 Approaching Storm +GMNotes: '' +GUID: fc1f03 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Encounter deck +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.92760015 + posY: 1.739733 + posZ: 5.757101 + rotX: 359.919739 + rotY: 269.999481 + rotZ: 180.016815 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 1 Plot Uncovered 67d524/Deck Set Aside 29fbe7.yaml new file mode 100644 index 000000000..3a2438609 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 1 Plot Uncovered 67d524/Deck Set Aside 29fbe7.yaml @@ -0,0 +1,444 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 110 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/949595632761872450/59BE7A56D5E8FA2960DC2F8FCBC1FA464F90AA20/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761871063/A24C21A215D1AFC997B65C32C4B89664FACBBE3A/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: c1fff1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 1.69640577 + posY: 1.78089559 + posZ: 14.27884 + rotX: 359.954468 + rotY: 224.999908 + rotZ: 180.0695 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 401 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/945091491738376009/4A59A4951DA1B9CAD36DCA09B0C04539C7105434/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761887156/5B7A1753D4189BDD1D5C3629A24866C63AA58F26/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 89a0c4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -5.903398 + posY: 1.32596266 + posZ: 1.74075592 + rotX: 0.00395172369 + rotY: 180.000092 + rotZ: 0.00114176143 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 400 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/945091491738376009/4A59A4951DA1B9CAD36DCA09B0C04539C7105434/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761887156/5B7A1753D4189BDD1D5C3629A24866C63AA58F26/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 560cb8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -5.70614672 + posY: 1.47065532 + posZ: 1.47965574 + rotX: 0.00355023 + rotY: 180.000336 + rotZ: 0.0215195846 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 500 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/924800625825559102/C3C13E9EE35451018D2880936F889E0D8309BFDB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761889070/DA01A9923E38E4072B341E148F0AA02BA1A3A706/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 11b78d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -10.9127693 + posY: 1.53874338 + posZ: -59.38846 + rotX: 0.0164757278 + rotY: 269.999451 + rotZ: 0.0199415814 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 111 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/949595632761872450/59BE7A56D5E8FA2960DC2F8FCBC1FA464F90AA20/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761871063/A24C21A215D1AFC997B65C32C4B89664FACBBE3A/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: f7581c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.94428635 + posY: 1.524881 + posZ: -71.39231 + rotX: 0.0143444482 + rotY: 270.0161 + rotZ: 179.996918 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 109 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/949595632761872450/59BE7A56D5E8FA2960DC2F8FCBC1FA464F90AA20/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761871063/A24C21A215D1AFC997B65C32C4B89664FACBBE3A/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 4fa22f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -4.027464 + posY: 1.52685964 + posZ: -71.5738754 + rotX: 0.0308010727 + rotY: 269.977783 + rotZ: 180.020767 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 107 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/949595632761872450/59BE7A56D5E8FA2960DC2F8FCBC1FA464F90AA20/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761871063/A24C21A215D1AFC997B65C32C4B89664FACBBE3A/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 92819c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -4.03160238 + posY: 1.54064655 + posZ: -71.36705 + rotX: 0.0207392834 + rotY: 269.999634 + rotZ: 180.016815 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 106 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/949595632761872450/59BE7A56D5E8FA2960DC2F8FCBC1FA464F90AA20/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761871063/A24C21A215D1AFC997B65C32C4B89664FACBBE3A/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 7f6bc7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.91240263 + posY: 1.52300453 + posZ: -71.51354 + rotX: 0.0146594606 + rotY: 270.0 + rotZ: 180.008209 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 103 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/949595632761872450/59BE7A56D5E8FA2960DC2F8FCBC1FA464F90AA20/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761871063/A24C21A215D1AFC997B65C32C4B89664FACBBE3A/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 5df515 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.91403031 + posY: 1.37799072 + posZ: -71.43684 + rotX: 0.0176688638 + rotY: 270.000122 + rotZ: 180.017975 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/949595632761872450/59BE7A56D5E8FA2960DC2F8FCBC1FA464F90AA20/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761871063/A24C21A215D1AFC997B65C32C4B89664FACBBE3A/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + '4': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/945091491738376009/4A59A4951DA1B9CAD36DCA09B0C04539C7105434/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761887156/5B7A1753D4189BDD1D5C3629A24866C63AA58F26/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '5': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/924800625825559102/C3C13E9EE35451018D2880936F889E0D8309BFDB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761889070/DA01A9923E38E4072B341E148F0AA02BA1A3A706/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 110 +- 401 +- 400 +- 500 +- 111 +- 109 +- 107 +- 106 +- 103 +Description: '1' +GMNotes: '' +GUID: 29fbe7 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Set Aside +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 1.696401 + posY: 1.65441775 + posZ: 14.2788019 + rotX: 359.955139 + rotY: 224.9999 + rotZ: 180.068649 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 2 Dark Waters 90aab1.ttslua b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 2 Dark Waters 90aab1.ttslua new file mode 100644 index 000000000..4acf9ea11 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 2 Dark Waters 90aab1.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 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 2 Dark Waters 90aab1.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 2 Dark Waters 90aab1.yaml new file mode 100644 index 000000000..1007650b2 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 2 Dark Waters 90aab1.yaml @@ -0,0 +1,67 @@ +Autoraise: true +ColorDiffuse: + b: 0.0 + g: 0.366520882 + r: 0.7058823 +ContainedObjects: +- !include 'Bag 2 Dark Waters 90aab1/Custom_Tile 03a960.yaml' +- !include 'Bag 2 Dark Waters 90aab1/Card 096002.yaml' +- !include 'Bag 2 Dark Waters 90aab1/Card Dark Waters 0ba33d.yaml' +- !include 'Bag 2 Dark Waters 90aab1/Deck Encounter 0f3de3.yaml' +- !include 'Bag 2 Dark Waters 90aab1/Custom_Tile 35c1a1.yaml' +- !include 'Bag 2 Dark Waters 90aab1/Custom_Tile 37601c.yaml' +- !include 'Bag 2 Dark Waters 90aab1/Card 380db3.yaml' +- !include 'Bag 2 Dark Waters 90aab1/Card 3cbafc.yaml' +- !include 'Bag 2 Dark Waters 90aab1/Custom_Tile 3db33f.yaml' +- !include 'Bag 2 Dark Waters 90aab1/Custom_Tile 419f77.yaml' +- !include 'Bag 2 Dark Waters 90aab1/Custom_Tile 5c9eec.yaml' +- !include 'Bag 2 Dark Waters 90aab1/Card 6e20a1.yaml' +- !include 'Bag 2 Dark Waters 90aab1/Card 6f90fa.yaml' +- !include 'Bag 2 Dark Waters 90aab1/Custom_Tile 7234af.yaml' +- !include 'Bag 2 Dark Waters 90aab1/Deck Set Aside Encounter 767b41.yaml' +- !include 'Bag 2 Dark Waters 90aab1/Custom_Tile 78a09e.yaml' +- !include 'Bag 2 Dark Waters 90aab1/Deck Set Aside 7a9beb.yaml' +- !include 'Bag 2 Dark Waters 90aab1/Card Dark Waters 7bc943.yaml' +- !include 'Bag 2 Dark Waters 90aab1/Card 95fb21.yaml' +- !include 'Bag 2 Dark Waters 90aab1/Custom_Tile a4f503.yaml' +- !include 'Bag 2 Dark Waters 90aab1/Card bf1500.yaml' +- !include 'Bag 2 Dark Waters 90aab1/Card c7455c.yaml' +- !include 'Bag 2 Dark Waters 90aab1/Card c7be0d.yaml' +- !include 'Bag 2 Dark Waters 90aab1/Deck crewmans and passangers d2adc8.yaml' +- !include 'Bag 2 Dark Waters 90aab1/Card d3b37b.yaml' +- !include 'Bag 2 Dark Waters 90aab1/Card d6a33e.yaml' +- !include 'Bag 2 Dark Waters 90aab1/Deck Agenda d7a166.yaml' +- !include 'Bag 2 Dark Waters 90aab1/Card e22a23.yaml' +- !include 'Bag 2 Dark Waters 90aab1/Custom_Tile e460f8.yaml' +- !include 'Bag 2 Dark Waters 90aab1/Deck Act f5cb30.yaml' +- !include 'Bag 2 Dark Waters 90aab1/Card f7581c.yaml' +- !include 'Bag 2 Dark Waters 90aab1/Card fce4b3.yaml' +Description: The Approaching Storm +GMNotes: '' +GUID: 90aab1 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Bag 2 Dark Waters 90aab1.ttslua' +LuaScriptState: '{"ml":{"03a960":{"lock":false,"pos":{"x":-27.614,"y":1.6222,"z":7.3071},"rot":{"x":359.9201,"y":270.0771,"z":0.0168}},"096002":{"lock":false,"pos":{"x":-31.8248,"y":1.8429,"z":-0.2306},"rot":{"x":5.1623,"y":270.0025,"z":180.0302}},"0ba33d":{"lock":false,"pos":{"x":-3.956,"y":1.6556,"z":-10.4412},"rot":{"x":359.9197,"y":270,"z":0.0168}},"0f3de3":{"lock":false,"pos":{"x":-3.9277,"y":1.6705,"z":5.7572},"rot":{"x":359.9197,"y":270.0003,"z":180.0168}},"35c1a1":{"lock":false,"pos":{"x":-26.8744,"y":1.6156,"z":-11.4015},"rot":{"x":359.9554,"y":225,"z":0.0685}},"37601c":{"lock":false,"pos":{"x":-26.8449,"y":1.6189,"z":-0.073},"rot":{"x":359.9201,"y":270.0302,"z":0.0168}},"380db3":{"lock":false,"pos":{"x":-31.7346,"y":1.8441,"z":-7.6662},"rot":{"x":359.9261,"y":270.0001,"z":180.0155}},"3cbafc":{"lock":false,"pos":{"x":-31.6423,"y":1.7427,"z":-15.2539},"rot":{"x":359.9202,"y":270.0008,"z":180.0169}},"3db33f":{"lock":false,"pos":{"x":-30.2243,"y":1.6248,"z":3.86},"rot":{"x":0.0169,"y":180,"z":0.08}},"419f77":{"lock":false,"pos":{"x":-30.2242,"y":1.6203,"z":-11.51},"rot":{"x":0.0169,"y":180,"z":0.08}},"5c9eec":{"lock":false,"pos":{"x":-26.4593,"y":1.6162,"z":-7.4412},"rot":{"x":359.9201,"y":270.0302,"z":0.0168}},"6e20a1":{"lock":false,"pos":{"x":-31.6006,"y":1.7496,"z":7.7325},"rot":{"x":359.9201,"y":270.0003,"z":180.0169}},"6f90fa":{"lock":false,"pos":{"x":-23.6765,"y":1.689,"z":-0.03},"rot":{"x":359.9201,"y":270.0001,"z":180.0169}},"7234af":{"lock":false,"pos":{"x":-20.3852,"y":1.6121,"z":7.3348},"rot":{"x":359.9201,"y":270.0302,"z":0.0169}},"767b41":{"lock":false,"pos":{"x":1.6965,"y":1.7663,"z":14.2786},"rot":{"x":359.9552,"y":224.998,"z":180.0686}},"78a09e":{"lock":false,"pos":{"x":-23.6765,"y":1.6134,"z":-3.83},"rot":{"x":0.0169,"y":180,"z":0.08}},"7a9beb":{"lock":false,"pos":{"x":-2.6737,"y":1.6602,"z":15.0567},"rot":{"x":359.9197,"y":270.0135,"z":0.0168}},"7bc943":{"lock":false,"pos":{"x":-50.9243,"y":1.7266,"z":8.1784},"rot":{"x":359.9201,"y":270,"z":0.0169}},"95fb21":{"lock":false,"pos":{"x":-25.0482,"y":1.8391,"z":7.0155},"rot":{"x":359.9214,"y":270.0396,"z":180.0204}},"a4f503":{"lock":false,"pos":{"x":-30.2242,"y":1.6225,"z":-3.83},"rot":{"x":0.0169,"y":180,"z":0.08}},"bf1500":{"lock":false,"pos":{"x":-30.2242,"y":1.6959,"z":-7.7},"rot":{"x":359.9178,"y":270.0001,"z":180.0176}},"c7455c":{"lock":false,"pos":{"x":-30.2242,"y":1.7004,"z":7.57},"rot":{"x":359.92,"y":270.0001,"z":180.0169}},"c7be0d":{"lock":false,"pos":{"x":-23.6765,"y":1.6868,"z":-7.7},"rot":{"x":359.9201,"y":270,"z":180.0169}},"d2adc8":{"lock":false,"pos":{"x":-11.7322,"y":1.6817,"z":7.1093},"rot":{"x":359.9201,"y":270.0001,"z":180.0169}},"d3b37b":{"lock":false,"pos":{"x":-17.12,"y":1.6776,"z":-7.7},"rot":{"x":359.9201,"y":270.0001,"z":180.0169}},"d6a33e":{"lock":false,"pos":{"x":-17.12,"y":1.6821,"z":7.57},"rot":{"x":359.9201,"y":270.0003,"z":180.0169}},"d7a166":{"lock":false,"pos":{"x":-2.7247,"y":1.6566,"z":0.3733},"rot":{"x":359.9197,"y":269.9999,"z":0.0168}},"e22a23":{"lock":false,"pos":{"x":-30.2242,"y":1.6981,"z":-0.03},"rot":{"x":359.917,"y":269.9999,"z":180.018}},"e460f8":{"lock":false,"pos":{"x":-19.9534,"y":1.6071,"z":-7.6826},"rot":{"x":359.9201,"y":270.0302,"z":0.0168}},"f5cb30":{"lock":false,"pos":{"x":-2.6885,"y":1.6535,"z":-5.0485},"rot":{"x":359.9197,"y":269.9989,"z":0.0168}},"f7581c":{"lock":false,"pos":{"x":-30.2242,"y":1.6937,"z":-15.28},"rot":{"x":359.92,"y":270.0001,"z":180.0169}},"fce4b3":{"lock":false,"pos":{"x":-23.6765,"y":1.6912,"z":7.5702},"rot":{"x":359.9185,"y":269.9984,"z":180.0175}}}}' +MaterialIndex: -1 +MeshIndex: -1 +Name: Bag +Nickname: 2 Dark Waters +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 8.065604 + posY: 1.28855634 + posZ: 11.2954016 + rotX: 0.07996268 + rotY: 89.98296 + rotZ: 359.983063 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 2 Dark Waters 90aab1/Card 096002.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 2 Dark Waters 90aab1/Card 096002.yaml new file mode 100644 index 000000000..3c4491d25 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 2 Dark Waters 90aab1/Card 096002.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 124 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/949595632761872450/59BE7A56D5E8FA2960DC2F8FCBC1FA464F90AA20/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761871063/A24C21A215D1AFC997B65C32C4B89664FACBBE3A/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 096002 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -31.8247681 + posY: 1.84265661 + posZ: -0.230609134 + rotX: 5.150581 + rotY: 270.003265 + rotZ: 180.035583 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 2 Dark Waters 90aab1/Card 380db3.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 2 Dark Waters 90aab1/Card 380db3.yaml new file mode 100644 index 000000000..545dfe68c --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 2 Dark Waters 90aab1/Card 380db3.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 119 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/949595632761872450/59BE7A56D5E8FA2960DC2F8FCBC1FA464F90AA20/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761871063/A24C21A215D1AFC997B65C32C4B89664FACBBE3A/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 380db3 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -31.73466 + posY: 1.84389663 + posZ: -7.66621161 + rotX: 359.95813 + rotY: 270.0 + rotZ: 180.020508 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 2 Dark Waters 90aab1/Card 3cbafc.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 2 Dark Waters 90aab1/Card 3cbafc.yaml new file mode 100644 index 000000000..e7a5bc446 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 2 Dark Waters 90aab1/Card 3cbafc.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 123 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/949595632761872450/59BE7A56D5E8FA2960DC2F8FCBC1FA464F90AA20/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761871063/A24C21A215D1AFC997B65C32C4B89664FACBBE3A/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 3cbafc +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -31.64221 + posY: 1.74406707 + posZ: -15.2540131 + rotX: 359.9211 + rotY: 269.9978 + rotZ: 180.01738 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 2 Dark Waters 90aab1/Card 6e20a1.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 2 Dark Waters 90aab1/Card 6e20a1.yaml new file mode 100644 index 000000000..75557b597 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 2 Dark Waters 90aab1/Card 6e20a1.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 120 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/949595632761872450/59BE7A56D5E8FA2960DC2F8FCBC1FA464F90AA20/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761871063/A24C21A215D1AFC997B65C32C4B89664FACBBE3A/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 6e20a1 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -31.6007919 + posY: 1.75095582 + posZ: 7.732347 + rotX: 359.921051 + rotY: 269.997925 + rotZ: 180.017242 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 2 Dark Waters 90aab1/Card 6f90fa.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 2 Dark Waters 90aab1/Card 6f90fa.yaml new file mode 100644 index 000000000..b1c10ad49 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 2 Dark Waters 90aab1/Card 6f90fa.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 116 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/949595632761872450/59BE7A56D5E8FA2960DC2F8FCBC1FA464F90AA20/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761871063/A24C21A215D1AFC997B65C32C4B89664FACBBE3A/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 6f90fa +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -23.6765 + posY: 1.68904328 + posZ: -0.0299995486 + 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 The Side Missions 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 2 Dark Waters 90aab1/Card 95fb21.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 2 Dark Waters 90aab1/Card 95fb21.yaml new file mode 100644 index 000000000..937dbad46 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 2 Dark Waters 90aab1/Card 95fb21.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 122 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/949595632761872450/59BE7A56D5E8FA2960DC2F8FCBC1FA464F90AA20/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761871063/A24C21A215D1AFC997B65C32C4B89664FACBBE3A/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 95fb21 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -25.048233 + posY: 1.83893585 + posZ: 7.01548767 + rotX: 359.9362 + rotY: 270.039459 + rotZ: 180.02211 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 2 Dark Waters 90aab1/Card bf1500.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 2 Dark Waters 90aab1/Card bf1500.yaml new file mode 100644 index 000000000..af1f79d5f --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 2 Dark Waters 90aab1/Card bf1500.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 118 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/949595632761872450/59BE7A56D5E8FA2960DC2F8FCBC1FA464F90AA20/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761871063/A24C21A215D1AFC997B65C32C4B89664FACBBE3A/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: bf1500 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -30.2242031 + posY: 1.69597673 + posZ: -7.69999743 + rotX: 359.921021 + rotY: 270.0 + rotZ: 180.014969 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 2 Dark Waters 90aab1/Card c7455c.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 2 Dark Waters 90aab1/Card c7455c.yaml new file mode 100644 index 000000000..a03793403 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 2 Dark Waters 90aab1/Card c7455c.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 117 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/949595632761872450/59BE7A56D5E8FA2960DC2F8FCBC1FA464F90AA20/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761871063/A24C21A215D1AFC997B65C32C4B89664FACBBE3A/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: c7455c +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -30.2241821 + posY: 1.70040607 + posZ: 7.57001543 + rotX: 359.920135 + rotY: 269.999664 + rotZ: 180.017212 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 2 Dark Waters 90aab1/Card c7be0d.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 2 Dark Waters 90aab1/Card c7be0d.yaml new file mode 100644 index 000000000..c27177a71 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 2 Dark Waters 90aab1/Card c7be0d.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 115 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/949595632761872450/59BE7A56D5E8FA2960DC2F8FCBC1FA464F90AA20/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761871063/A24C21A215D1AFC997B65C32C4B89664FACBBE3A/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: c7be0d +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -23.6765 + posY: 1.68678474 + posZ: -7.700001 + 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 The Side Missions 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 2 Dark Waters 90aab1/Card d3b37b.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 2 Dark Waters 90aab1/Card d3b37b.yaml new file mode 100644 index 000000000..fdea96c63 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 2 Dark Waters 90aab1/Card d3b37b.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 113 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/949595632761872450/59BE7A56D5E8FA2960DC2F8FCBC1FA464F90AA20/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761871063/A24C21A215D1AFC997B65C32C4B89664FACBBE3A/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: d3b37b +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -17.12 + posY: 1.67764211 + posZ: -7.70000029 + 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 The Side Missions 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 2 Dark Waters 90aab1/Card d6a33e.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 2 Dark Waters 90aab1/Card d6a33e.yaml new file mode 100644 index 000000000..de5402a90 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 2 Dark Waters 90aab1/Card d6a33e.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 125 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/949595632761872450/59BE7A56D5E8FA2960DC2F8FCBC1FA464F90AA20/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761871063/A24C21A215D1AFC997B65C32C4B89664FACBBE3A/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: d6a33e +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -17.12 + posY: 1.68213856 + posZ: 7.57 + rotX: 359.9201 + rotY: 270.0003 + rotZ: 180.016861 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 2 Dark Waters 90aab1/Card e22a23.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 2 Dark Waters 90aab1/Card e22a23.yaml new file mode 100644 index 000000000..77c9c164b --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 2 Dark Waters 90aab1/Card e22a23.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 114 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/949595632761872450/59BE7A56D5E8FA2960DC2F8FCBC1FA464F90AA20/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761871063/A24C21A215D1AFC997B65C32C4B89664FACBBE3A/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: e22a23 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -30.2241974 + posY: 1.69815 + posZ: -0.029986592 + rotX: 359.920135 + rotY: 269.999817 + rotZ: 180.018356 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 2 Dark Waters 90aab1/Card f7581c.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 2 Dark Waters 90aab1/Card f7581c.yaml new file mode 100644 index 000000000..75d55f485 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 2 Dark Waters 90aab1/Card f7581c.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 126 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/949595632761872450/59BE7A56D5E8FA2960DC2F8FCBC1FA464F90AA20/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761871063/A24C21A215D1AFC997B65C32C4B89664FACBBE3A/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: f7581c +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -30.2241917 + posY: 1.6936779 + posZ: -15.2800083 + rotX: 359.920135 + rotY: 269.9998 + rotZ: 180.017212 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 2 Dark Waters 90aab1/Card fce4b3.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 2 Dark Waters 90aab1/Card fce4b3.yaml new file mode 100644 index 000000000..cfb057bfc --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 2 Dark Waters 90aab1/Card fce4b3.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 121 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/949595632761872450/59BE7A56D5E8FA2960DC2F8FCBC1FA464F90AA20/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761871063/A24C21A215D1AFC997B65C32C4B89664FACBBE3A/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: fce4b3 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -23.6765022 + posY: 1.69126487 + posZ: 7.57020044 + rotX: 359.920258 + rotY: 269.998444 + rotZ: 180.017944 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 2 Dark Waters 90aab1/Card Dark Waters 0ba33d.yaml new file mode 100644 index 000000000..83f4b6b78 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 2 Dark Waters 90aab1/Card Dark Waters 0ba33d.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 112 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/949595632761872450/59BE7A56D5E8FA2960DC2F8FCBC1FA464F90AA20/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761871063/A24C21A215D1AFC997B65C32C4B89664FACBBE3A/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 0ba33d +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Dark Waters +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.95600057 + posY: 1.65564811 + posZ: -10.4412012 + rotX: 359.919739 + rotY: 269.999969 + rotZ: 0.0168412868 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 2 Dark Waters 90aab1/Card Dark Waters 7bc943.yaml new file mode 100644 index 000000000..0ae04304e --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 2 Dark Waters 90aab1/Card Dark Waters 7bc943.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 112 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/949595632761872450/59BE7A56D5E8FA2960DC2F8FCBC1FA464F90AA20/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761871063/A24C21A215D1AFC997B65C32C4B89664FACBBE3A/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 7bc943 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Dark Waters +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -50.9243126 + posY: 1.708463 + posZ: 8.178402 + rotX: 359.9201 + rotY: 270.0 + rotZ: 0.0168770533 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 2 Dark Waters 90aab1/Custom_Tile 03a960.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 2 Dark Waters 90aab1/Custom_Tile 03a960.yaml new file mode 100644 index 000000000..3d5fc1db8 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 2 Dark Waters 90aab1/Custom_Tile 03a960.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 03a960 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.614 + posY: 1.62215793 + posZ: 7.3071 + rotX: 359.920074 + rotY: 270.077118 + rotZ: 0.0167927239 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 2 Dark Waters 90aab1/Custom_Tile 35c1a1.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 2 Dark Waters 90aab1/Custom_Tile 35c1a1.yaml new file mode 100644 index 000000000..b5a04ae3c --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 2 Dark Waters 90aab1/Custom_Tile 35c1a1.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 35c1a1 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.8744 + posY: 1.61561763 + posZ: -11.4015 + rotX: 359.955444 + rotY: 224.999924 + rotZ: 0.06840825 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 2 Dark Waters 90aab1/Custom_Tile 37601c.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 2 Dark Waters 90aab1/Custom_Tile 37601c.yaml new file mode 100644 index 000000000..264a86754 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 2 Dark Waters 90aab1/Custom_Tile 37601c.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 37601c +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.8449 + posY: 1.61891234 + posZ: -0.0730002746 + rotX: 359.9201 + rotY: 270.030151 + rotZ: 0.01685771 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 2 Dark Waters 90aab1/Custom_Tile 3db33f.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 2 Dark Waters 90aab1/Custom_Tile 3db33f.yaml new file mode 100644 index 000000000..b66c18ea0 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 2 Dark Waters 90aab1/Custom_Tile 3db33f.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 3db33f +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.62478268 + posZ: 3.86000037 + rotX: 0.0168718584 + rotY: 179.999969 + rotZ: 0.0799396262 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 2 Dark Waters 90aab1/Custom_Tile 419f77.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 2 Dark Waters 90aab1/Custom_Tile 419f77.yaml new file mode 100644 index 000000000..d0d6a60a0 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 2 Dark Waters 90aab1/Custom_Tile 419f77.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 419f77 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.62025666 + posZ: -11.5100021 + rotX: 0.0168718789 + rotY: 180.0 + rotZ: 0.07995087 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 2 Dark Waters 90aab1/Custom_Tile 5c9eec.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 2 Dark Waters 90aab1/Custom_Tile 5c9eec.yaml new file mode 100644 index 000000000..be0e5bc17 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 2 Dark Waters 90aab1/Custom_Tile 5c9eec.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 5c9eec +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.4593 + posY: 1.616205 + posZ: -7.44120073 + rotX: 359.9201 + rotY: 270.0301 + rotZ: 0.01685791 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 2 Dark Waters 90aab1/Custom_Tile 7234af.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 2 Dark Waters 90aab1/Custom_Tile 7234af.yaml new file mode 100644 index 000000000..4b5240ba0 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 2 Dark Waters 90aab1/Custom_Tile 7234af.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 7234af +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.3852 + posY: 1.61208594 + posZ: 7.33480024 + rotX: 359.9201 + rotY: 270.0302 + rotZ: 0.0168577712 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 2 Dark Waters 90aab1/Custom_Tile 78a09e.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 2 Dark Waters 90aab1/Custom_Tile 78a09e.yaml new file mode 100644 index 000000000..07fc5a1f5 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 2 Dark Waters 90aab1/Custom_Tile 78a09e.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 78a09e +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.6765 + posY: 1.613388 + posZ: -3.83 + rotX: 0.0168719329 + rotY: 179.999954 + rotZ: 0.07994566 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 2 Dark Waters 90aab1/Custom_Tile a4f503.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 2 Dark Waters 90aab1/Custom_Tile a4f503.yaml new file mode 100644 index 000000000..25d8a160d --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 2 Dark Waters 90aab1/Custom_Tile a4f503.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: a4f503 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.62251806 + posZ: -3.83000016 + rotX: 0.0168719236 + rotY: 179.999924 + rotZ: 0.07993922 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 2 Dark Waters 90aab1/Custom_Tile e460f8.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 2 Dark Waters 90aab1/Custom_Tile e460f8.yaml new file mode 100644 index 000000000..051b8e5a2 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 2 Dark Waters 90aab1/Custom_Tile e460f8.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: e460f8 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: -19.9534 + posY: 1.60706186 + posZ: -7.682601 + rotX: 359.9201 + rotY: 270.0302 + rotZ: 0.0168559365 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 2 Dark Waters 90aab1/Deck Act f5cb30.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 2 Dark Waters 90aab1/Deck Act f5cb30.yaml new file mode 100644 index 000000000..1117250bd --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 2 Dark Waters 90aab1/Deck Act f5cb30.yaml @@ -0,0 +1,215 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 207 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/949595632761878422/F08C392E92C6AAE7A15BBCD0203D375136E65F2F/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761876244/B85D64D26E719E9AAE7A2B1E21324A3AE395A6E0/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: a6b095 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.7183511 + posY: 1.32600045 + posZ: 2.51996088 + rotX: 0.0022257925 + rotY: 179.999847 + rotZ: 0.00035034318 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 206 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/949595632761878422/F08C392E92C6AAE7A15BBCD0203D375136E65F2F/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761876244/B85D64D26E719E9AAE7A2B1E21324A3AE395A6E0/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 750cba + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.5531811 + posY: 1.47093558 + posZ: 2.51029134 + rotX: 0.009504455 + rotY: 179.999878 + rotZ: 0.005155642 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 205 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/949595632761878422/F08C392E92C6AAE7A15BBCD0203D375136E65F2F/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761876244/B85D64D26E719E9AAE7A2B1E21324A3AE395A6E0/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: a6b095 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.8797225 + posY: 1.48847818 + posZ: 2.58759046 + rotX: 0.00134525541 + rotY: 179.999878 + rotZ: 0.00058141473 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 204 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/949595632761878422/F08C392E92C6AAE7A15BBCD0203D375136E65F2F/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761876244/B85D64D26E719E9AAE7A2B1E21324A3AE395A6E0/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: a6b095 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.537510455 + posY: 1.47473228 + posZ: 2.54929137 + rotX: -0.000595019548 + rotY: 179.999969 + rotZ: 0.00057544146 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/949595632761878422/F08C392E92C6AAE7A15BBCD0203D375136E65F2F/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761876244/B85D64D26E719E9AAE7A2B1E21324A3AE395A6E0/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 207 +- 206 +- 205 +- 204 +Description: Dark Waters +GMNotes: '' +GUID: f5cb30 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Act +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.6885 + posY: 1.65349436 + posZ: -5.04850149 + rotX: 359.919739 + rotY: 269.998932 + rotZ: 0.0168390758 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 2 Dark Waters 90aab1/Deck Agenda d7a166.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 2 Dark Waters 90aab1/Deck Agenda d7a166.yaml new file mode 100644 index 000000000..9aa0bb0e6 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 2 Dark Waters 90aab1/Deck Agenda d7a166.yaml @@ -0,0 +1,172 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 210 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/949595632761878422/F08C392E92C6AAE7A15BBCD0203D375136E65F2F/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761876244/B85D64D26E719E9AAE7A2B1E21324A3AE395A6E0/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: a6b095 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.996111333 + posY: 1.325994 + posZ: 2.7445724 + rotX: 0.00244212314 + rotY: 179.999878 + rotZ: 0.000404830062 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 209 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/949595632761878422/F08C392E92C6AAE7A15BBCD0203D375136E65F2F/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761876244/B85D64D26E719E9AAE7A2B1E21324A3AE395A6E0/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 45bf58 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 1.16362321 + posY: 1.470886 + posZ: 2.75430346 + rotX: 0.009697344 + rotY: 179.999664 + rotZ: -0.00390496524 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 208 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/949595632761878422/F08C392E92C6AAE7A15BBCD0203D375136E65F2F/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761876244/B85D64D26E719E9AAE7A2B1E21324A3AE395A6E0/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: a6b095 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.7191596 + posY: 1.4884547 + posZ: 2.75430155 + rotX: 0.00133274542 + rotY: 179.999863 + rotZ: -0.0011182673 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/949595632761878422/F08C392E92C6AAE7A15BBCD0203D375136E65F2F/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761876244/B85D64D26E719E9AAE7A2B1E21324A3AE395A6E0/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 210 +- 209 +- 208 +Description: Dark Waters +GMNotes: '' +GUID: d7a166 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Agenda +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.72469974 + posY: 1.65664113 + posZ: 0.373299867 + rotX: 359.919739 + rotY: 269.999878 + rotZ: 0.0168376826 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 2 Dark Waters 90aab1/Deck Encounter 0f3de3.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 2 Dark Waters 90aab1/Deck Encounter 0f3de3.yaml new file mode 100644 index 000000000..113589f2d --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 2 Dark Waters 90aab1/Deck Encounter 0f3de3.yaml @@ -0,0 +1,517 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 3613 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Creature. + GMNotes: '' + GUID: 56e5db + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Swarm of Rats + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -19.7119656 + posY: 1.28121269 + posZ: 15.0893879 + rotX: 0.004087732 + rotY: 269.994171 + rotZ: -0.0020856997 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3613 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Creature. + GMNotes: '' + GUID: 7381cd + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Swarm of Rats + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -19.6142921 + posY: 1.42705274 + posZ: 15.2051964 + rotX: 0.012312145 + rotY: 269.997284 + rotZ: 0.0359485969 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3613 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Creature. + GMNotes: '' + GUID: bbc9d1 + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Swarm of Rats + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -18.9998322 + posY: 1.23161483 + posZ: 14.9262657 + rotX: -0.00489453 + rotY: 270.002747 + rotZ: -0.00167015032 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 504 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/924800625825559102/C3C13E9EE35451018D2880936F889E0D8309BFDB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761889070/DA01A9923E38E4072B341E148F0AA02BA1A3A706/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 67ba8e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.276818156 + posY: 1.38084233 + posZ: -57.14173 + rotX: 0.0221480485 + rotY: 270.001953 + rotZ: 0.0165756848 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 505 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/924800625825559102/C3C13E9EE35451018D2880936F889E0D8309BFDB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761889070/DA01A9923E38E4072B341E148F0AA02BA1A3A706/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: '967747' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.5379801 + posY: 1.52611291 + posZ: -57.2983627 + rotX: 0.0253852513 + rotY: 270.030975 + rotZ: 0.0201805625 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 503 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/924800625825559102/C3C13E9EE35451018D2880936F889E0D8309BFDB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761889070/DA01A9923E38E4072B341E148F0AA02BA1A3A706/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 11b78d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.5707471 + posY: 1.54352343 + posZ: -57.25086 + rotX: 0.0239486843 + rotY: 270.001648 + rotZ: 0.0174676627 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 506 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/924800625825559102/C3C13E9EE35451018D2880936F889E0D8309BFDB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761889070/DA01A9923E38E4072B341E148F0AA02BA1A3A706/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 11b78d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 1.08986664 + posY: 1.52380145 + posZ: -57.5206146 + rotX: 0.0232082382 + rotY: 270.005 + rotZ: 0.0263765641 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 507 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/924800625825559102/C3C13E9EE35451018D2880936F889E0D8309BFDB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761889070/DA01A9923E38E4072B341E148F0AA02BA1A3A706/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 11b78d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.5575077 + posY: 1.57967508 + posZ: -57.33635 + rotX: 1.95297527 + rotY: 270.031982 + rotZ: 0.0117448233 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 508 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/924800625825559102/C3C13E9EE35451018D2880936F889E0D8309BFDB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761889070/DA01A9923E38E4072B341E148F0AA02BA1A3A706/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 11b78d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.450467139 + posY: 1.53053117 + posZ: -57.3401527 + rotX: 0.02211817 + rotY: 270.003326 + rotZ: 0.0158500373 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 509 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/924800625825559102/C3C13E9EE35451018D2880936F889E0D8309BFDB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761889070/DA01A9923E38E4072B341E148F0AA02BA1A3A706/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 11b78d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.204103515 + posY: 1.535424 + posZ: -57.16559 + rotX: 0.02258958 + rotY: 270.000671 + rotZ: 0.0156932864 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 510 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/924800625825559102/C3C13E9EE35451018D2880936F889E0D8309BFDB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761889070/DA01A9923E38E4072B341E148F0AA02BA1A3A706/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 11b78d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.4506891 + posY: 1.5418328 + posZ: -57.4187469 + rotX: 0.02007213 + rotY: 269.999481 + rotZ: 0.0171783548 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '5': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/924800625825559102/C3C13E9EE35451018D2880936F889E0D8309BFDB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761889070/DA01A9923E38E4072B341E148F0AA02BA1A3A706/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 3613 +- 3613 +- 3613 +- 504 +- 505 +- 503 +- 506 +- 507 +- 508 +- 509 +- 510 +Description: Dark Waters +GMNotes: '' +GUID: 0f3de3 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Encounter +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.92770028 + posY: 1.67045021 + posZ: 5.75720072 + rotX: 359.919739 + 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 791837/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 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 2 Dark Waters 90aab1/Deck Set Aside 7a9beb.yaml new file mode 100644 index 000000000..f8c55583b --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 2 Dark Waters 90aab1/Deck Set Aside 7a9beb.yaml @@ -0,0 +1,272 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 502 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/924800625825559102/C3C13E9EE35451018D2880936F889E0D8309BFDB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761889070/DA01A9923E38E4072B341E148F0AA02BA1A3A706/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 11b78d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.038564 + posY: 1.68102193 + posZ: -66.59276 + rotX: 0.189271748 + rotY: 269.965973 + rotZ: 359.670837 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 127 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/949595632761872450/59BE7A56D5E8FA2960DC2F8FCBC1FA464F90AA20/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761871063/A24C21A215D1AFC997B65C32C4B89664FACBBE3A/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 619dea + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.16772771 + posY: 1.822082 + posZ: -66.30526 + rotX: 0.13650912 + rotY: 269.921265 + rotZ: 359.5954 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 131 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/949595632761872450/59BE7A56D5E8FA2960DC2F8FCBC1FA464F90AA20/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761871063/A24C21A215D1AFC997B65C32C4B89664FACBBE3A/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: f7581c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.44160724 + posY: 1.54504013 + posZ: -66.63532 + rotX: 0.0170529559 + rotY: 269.9994 + rotZ: 180.04158 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 402 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/945091491738376009/4A59A4951DA1B9CAD36DCA09B0C04539C7105434/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761887156/5B7A1753D4189BDD1D5C3629A24866C63AA58F26/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 560cb8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.92565179 + posY: 1.37939739 + posZ: -66.9226 + rotX: 0.0204454847 + rotY: 269.999939 + rotZ: 0.016363997 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 403 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/945091491738376009/4A59A4951DA1B9CAD36DCA09B0C04539C7105434/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761887156/5B7A1753D4189BDD1D5C3629A24866C63AA58F26/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 4157cd + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 18.7641621 + posY: 1.6687299 + posZ: -2.00308681 + rotX: 359.935364 + rotY: 270.010742 + rotZ: 0.01060265 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/949595632761872450/59BE7A56D5E8FA2960DC2F8FCBC1FA464F90AA20/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761871063/A24C21A215D1AFC997B65C32C4B89664FACBBE3A/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + '4': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/945091491738376009/4A59A4951DA1B9CAD36DCA09B0C04539C7105434/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761887156/5B7A1753D4189BDD1D5C3629A24866C63AA58F26/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '5': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/924800625825559102/C3C13E9EE35451018D2880936F889E0D8309BFDB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761889070/DA01A9923E38E4072B341E148F0AA02BA1A3A706/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 502 +- 127 +- 131 +- 402 +- 403 +Description: Dark Waters +GMNotes: '' +GUID: 7a9beb +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Set Aside +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.67370057 + posY: 1.66021216 + posZ: 15.0566988 + rotX: 359.919739 + rotY: 270.013519 + rotZ: 0.01682257 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 2 Dark Waters 90aab1/Deck Set Aside Encounter 767b41.yaml new file mode 100644 index 000000000..363937401 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 2 Dark Waters 90aab1/Deck Set Aside Encounter 767b41.yaml @@ -0,0 +1,1333 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 512 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/924800625825559102/C3C13E9EE35451018D2880936F889E0D8309BFDB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761889070/DA01A9923E38E4072B341E148F0AA02BA1A3A706/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 59a5b6 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -21.2883682 + posY: 1.52512991 + posZ: -64.35317 + rotX: 0.0219048429 + rotY: 270.2441 + rotZ: 180.008347 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 512 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/924800625825559102/C3C13E9EE35451018D2880936F889E0D8309BFDB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761889070/DA01A9923E38E4072B341E148F0AA02BA1A3A706/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: aba734 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -21.6771889 + posY: 1.526294 + posZ: -63.80967 + rotX: 0.000421047152 + rotY: 270.244263 + rotZ: 179.9503 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 512 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/924800625825559102/C3C13E9EE35451018D2880936F889E0D8309BFDB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761889070/DA01A9923E38E4072B341E148F0AA02BA1A3A706/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: '290196' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -22.27814 + posY: 1.52069819 + posZ: -64.45097 + rotX: 1.2304666 + rotY: 270.2807 + rotZ: 182.075378 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 512 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/924800625825559102/C3C13E9EE35451018D2880936F889E0D8309BFDB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761889070/DA01A9923E38E4072B341E148F0AA02BA1A3A706/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 35b546 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -21.4176025 + posY: 1.52268314 + posZ: -63.9953575 + rotX: 0.02604787 + rotY: 270.243378 + rotZ: 179.944382 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 512 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/924800625825559102/C3C13E9EE35451018D2880936F889E0D8309BFDB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761889070/DA01A9923E38E4072B341E148F0AA02BA1A3A706/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 9e9e59 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -21.6217823 + posY: 1.37375522 + posZ: -63.7048721 + rotX: 0.0143707749 + rotY: 270.2439 + rotZ: 180.019363 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 511 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/924800625825559102/C3C13E9EE35451018D2880936F889E0D8309BFDB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761889070/DA01A9923E38E4072B341E148F0AA02BA1A3A706/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 74f7f0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -20.9971371 + posY: 1.84044766 + posZ: -72.58087 + rotX: 0.21728079 + rotY: 270.164551 + rotZ: 186.612915 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 511 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/924800625825559102/C3C13E9EE35451018D2880936F889E0D8309BFDB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761889070/DA01A9923E38E4072B341E148F0AA02BA1A3A706/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: d8898b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -20.7929382 + posY: 1.77574766 + posZ: -73.1488342 + rotX: 0.00705088954 + rotY: 270.237549 + rotZ: 186.576736 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 511 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/924800625825559102/C3C13E9EE35451018D2880936F889E0D8309BFDB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761889070/DA01A9923E38E4072B341E148F0AA02BA1A3A706/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: f19fca + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -20.98784 + posY: 1.71984744 + posZ: -73.49968 + rotX: 0.4688448 + rotY: 270.289124 + rotZ: 187.618 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 511 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/924800625825559102/C3C13E9EE35451018D2880936F889E0D8309BFDB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761889070/DA01A9923E38E4072B341E148F0AA02BA1A3A706/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: bfd162 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -20.7681484 + posY: 1.67908978 + posZ: -73.54637 + rotX: 0.06369505 + rotY: 270.246033 + rotZ: 183.3295 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 514 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/924800625825559102/C3C13E9EE35451018D2880936F889E0D8309BFDB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761889070/DA01A9923E38E4072B341E148F0AA02BA1A3A706/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 9d6b09 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -20.3078957 + posY: 1.63799345 + posZ: -73.87794 + rotX: 0.0409945846 + rotY: 270.240082 + rotZ: 183.729309 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 514 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/924800625825559102/C3C13E9EE35451018D2880936F889E0D8309BFDB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761889070/DA01A9923E38E4072B341E148F0AA02BA1A3A706/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: b2e9d8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -20.7883511 + posY: 1.62315071 + posZ: -73.9645 + rotX: 0.05985595 + rotY: 270.251648 + rotZ: 183.77681 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 514 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/924800625825559102/C3C13E9EE35451018D2880936F889E0D8309BFDB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761889070/DA01A9923E38E4072B341E148F0AA02BA1A3A706/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: e08ba0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -20.8013134 + posY: 1.69972539 + posZ: -72.71083 + rotX: 0.113013446 + rotY: 270.214783 + rotZ: 182.3934 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 514 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/924800625825559102/C3C13E9EE35451018D2880936F889E0D8309BFDB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761889070/DA01A9923E38E4072B341E148F0AA02BA1A3A706/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: '406991' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -20.8643513 + posY: 1.90810585 + posZ: -73.53735 + rotX: 0.06675487 + rotY: 270.24707 + rotZ: 181.955185 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 514 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/924800625825559102/C3C13E9EE35451018D2880936F889E0D8309BFDB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761889070/DA01A9923E38E4072B341E148F0AA02BA1A3A706/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 917cda + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -20.7112236 + posY: 1.74148774 + posZ: -73.379776 + rotX: 0.06308386 + rotY: 270.240784 + rotZ: 183.388321 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 513 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/924800625825559102/C3C13E9EE35451018D2880936F889E0D8309BFDB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761889070/DA01A9923E38E4072B341E148F0AA02BA1A3A706/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 7cfc42 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -20.1863728 + posY: 1.47912848 + posZ: -73.15372 + rotX: 0.352211326 + rotY: 270.272583 + rotZ: 181.54808 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 513 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/924800625825559102/C3C13E9EE35451018D2880936F889E0D8309BFDB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761889070/DA01A9923E38E4072B341E148F0AA02BA1A3A706/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: e84a81 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -20.6905079 + posY: 1.5387094 + posZ: -72.6879654 + rotX: 359.987762 + rotY: 270.365845 + rotZ: 182.689651 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 511 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/924800625825559102/C3C13E9EE35451018D2880936F889E0D8309BFDB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761889070/DA01A9923E38E4072B341E148F0AA02BA1A3A706/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 766b79 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -21.5457268 + posY: 1.62431061 + posZ: -71.70133 + rotX: 0.09125777 + rotY: 270.1123 + rotZ: 172.2589 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 513 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/924800625825559102/C3C13E9EE35451018D2880936F889E0D8309BFDB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761889070/DA01A9923E38E4072B341E148F0AA02BA1A3A706/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: '815946' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -21.1578159 + posY: 1.682726 + posZ: -72.3849 + rotX: 0.09290982 + rotY: 270.256836 + rotZ: 172.25412 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 513 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/924800625825559102/C3C13E9EE35451018D2880936F889E0D8309BFDB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761889070/DA01A9923E38E4072B341E148F0AA02BA1A3A706/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 2244da + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -20.7547321 + posY: 1.60512626 + posZ: -71.78333 + rotX: 0.09139811 + rotY: 270.222534 + rotZ: 182.435486 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 513 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/924800625825559102/C3C13E9EE35451018D2880936F889E0D8309BFDB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761889070/DA01A9923E38E4072B341E148F0AA02BA1A3A706/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: efbaec + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -20.7200775 + posY: 1.5252496 + posZ: -71.68511 + rotX: 0.0169821754 + rotY: 270.244141 + rotZ: 180.028381 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 513 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/924800625825559102/C3C13E9EE35451018D2880936F889E0D8309BFDB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761889070/DA01A9923E38E4072B341E148F0AA02BA1A3A706/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 782f4e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -20.2383614 + posY: 1.53296816 + posZ: -72.53232 + rotX: 0.73143363 + rotY: 270.261749 + rotZ: 181.282654 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 513 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/924800625825559102/C3C13E9EE35451018D2880936F889E0D8309BFDB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761889070/DA01A9923E38E4072B341E148F0AA02BA1A3A706/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: '173716' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -20.14088 + posY: 1.521288 + posZ: -72.4157944 + rotX: 0.0154000875 + rotY: 270.2443 + rotZ: 180.03891 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 513 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/924800625825559102/C3C13E9EE35451018D2880936F889E0D8309BFDB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761889070/DA01A9923E38E4072B341E148F0AA02BA1A3A706/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 56fa0c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -20.1237125 + posY: 1.37194133 + posZ: -72.06247 + rotX: 0.01837676 + rotY: 270.2442 + rotZ: 180.018021 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 515 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/924800625825559102/C3C13E9EE35451018D2880936F889E0D8309BFDB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761889070/DA01A9923E38E4072B341E148F0AA02BA1A3A706/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 11b78d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -20.0631847 + posY: 1.52217329 + posZ: -63.2369537 + rotX: 0.998999357 + rotY: 270.0743 + rotZ: 181.733856 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 515 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/924800625825559102/C3C13E9EE35451018D2880936F889E0D8309BFDB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761889070/DA01A9923E38E4072B341E148F0AA02BA1A3A706/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: c6cf29 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -19.8851585 + posY: 1.51530015 + posZ: -63.37976 + rotX: 0.9593405 + rotY: 270.0749 + rotZ: 181.94165 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 515 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/924800625825559102/C3C13E9EE35451018D2880936F889E0D8309BFDB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761889070/DA01A9923E38E4072B341E148F0AA02BA1A3A706/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 8bd27b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -19.3867378 + posY: 1.51401269 + posZ: -63.25279 + rotX: 359.0237 + rotY: 270.02887 + rotZ: 181.770844 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 515 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/924800625825559102/C3C13E9EE35451018D2880936F889E0D8309BFDB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761889070/DA01A9923E38E4072B341E148F0AA02BA1A3A706/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 795bd8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -19.7968311 + posY: 1.706357 + posZ: -62.3546524 + rotX: 0.0971272439 + rotY: 270.046936 + rotZ: 180.267441 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 515 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/924800625825559102/C3C13E9EE35451018D2880936F889E0D8309BFDB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761889070/DA01A9923E38E4072B341E148F0AA02BA1A3A706/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: bac473 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -19.7322121 + posY: 1.55983293 + posZ: -62.6359367 + rotX: 0.121660173 + rotY: 270.04776 + rotZ: 180.135757 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 516 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/924800625825559102/C3C13E9EE35451018D2880936F889E0D8309BFDB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761889070/DA01A9923E38E4072B341E148F0AA02BA1A3A706/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 11b78d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -19.63887 + posY: 1.41001189 + posZ: -62.65031 + rotX: 359.9867 + rotY: 270.032227 + rotZ: 180.081116 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 516 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/924800625825559102/C3C13E9EE35451018D2880936F889E0D8309BFDB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761889070/DA01A9923E38E4072B341E148F0AA02BA1A3A706/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 223e6d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -19.7943764 + posY: 1.37491286 + posZ: -61.84429 + rotX: 0.00890871 + rotY: 270.0521 + rotZ: 180.0244 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '5': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/924800625825559102/C3C13E9EE35451018D2880936F889E0D8309BFDB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761889070/DA01A9923E38E4072B341E148F0AA02BA1A3A706/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 512 +- 512 +- 512 +- 512 +- 512 +- 511 +- 511 +- 511 +- 511 +- 514 +- 514 +- 514 +- 514 +- 514 +- 513 +- 513 +- 511 +- 513 +- 513 +- 513 +- 513 +- 513 +- 513 +- 515 +- 515 +- 515 +- 515 +- 515 +- 516 +- 516 +Description: Dark Waters +GMNotes: '' +GUID: 767b41 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Set Aside Encounter +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 1.696501 + posY: 1.76633608 + posZ: 14.2786026 + rotX: 359.955139 + rotY: 224.997986 + rotZ: 180.068665 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 2 Dark Waters 90aab1/Deck crewmans and passangers d2adc8.yaml new file mode 100644 index 000000000..cfd318056 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 2 Dark Waters 90aab1/Deck crewmans and passangers d2adc8.yaml @@ -0,0 +1,516 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 128 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/949595632761872450/59BE7A56D5E8FA2960DC2F8FCBC1FA464F90AA20/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761871063/A24C21A215D1AFC997B65C32C4B89664FACBBE3A/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 2c48d2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 8.187602 + posY: 1.523041 + posZ: -61.5958023 + rotX: 0.0202264767 + rotY: 269.987457 + rotZ: 180.017334 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 136 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/949595632761872450/59BE7A56D5E8FA2960DC2F8FCBC1FA464F90AA20/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761871063/A24C21A215D1AFC997B65C32C4B89664FACBBE3A/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: f7581c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 7.888679 + posY: 1.53218162 + posZ: -64.68508 + rotX: -0.0032549696 + rotY: 269.987427 + rotZ: 179.975143 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 135 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/949595632761872450/59BE7A56D5E8FA2960DC2F8FCBC1FA464F90AA20/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761871063/A24C21A215D1AFC997B65C32C4B89664FACBBE3A/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: f7581c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 8.359175 + posY: 1.53354812 + posZ: -64.3109055 + rotX: 0.0201073959 + rotY: 269.989075 + rotZ: 180.016434 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 132 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/949595632761872450/59BE7A56D5E8FA2960DC2F8FCBC1FA464F90AA20/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761871063/A24C21A215D1AFC997B65C32C4B89664FACBBE3A/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: f7581c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 8.122125 + posY: 1.54724658 + posZ: -64.1094 + rotX: 0.0144953858 + rotY: 269.954773 + rotZ: 180.037033 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 130 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/949595632761872450/59BE7A56D5E8FA2960DC2F8FCBC1FA464F90AA20/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761871063/A24C21A215D1AFC997B65C32C4B89664FACBBE3A/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 67d03e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 8.211521 + posY: 1.5296973 + posZ: -63.9356079 + rotX: 0.0108885141 + rotY: 269.987 + rotZ: 179.998489 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 129 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/949595632761872450/59BE7A56D5E8FA2960DC2F8FCBC1FA464F90AA20/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761871063/A24C21A215D1AFC997B65C32C4B89664FACBBE3A/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: af9a5e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 8.384249 + posY: 1.38456023 + posZ: -64.25279 + rotX: 0.01780847 + rotY: 269.987427 + rotZ: 180.0178 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 139 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/949595632761872450/59BE7A56D5E8FA2960DC2F8FCBC1FA464F90AA20/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761871063/A24C21A215D1AFC997B65C32C4B89664FACBBE3A/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: f7581c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 11.51891 + posY: 1.53349507 + posZ: -61.3719521 + rotX: 0.0215444 + rotY: 269.987549 + rotZ: 180.018661 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 138 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/949595632761872450/59BE7A56D5E8FA2960DC2F8FCBC1FA464F90AA20/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761871063/A24C21A215D1AFC997B65C32C4B89664FACBBE3A/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 2c961f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 11.925889 + posY: 1.53569281 + posZ: -61.34608 + rotX: 0.0239897 + rotY: 269.981262 + rotZ: 180.020142 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 137 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/949595632761872450/59BE7A56D5E8FA2960DC2F8FCBC1FA464F90AA20/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761871063/A24C21A215D1AFC997B65C32C4B89664FACBBE3A/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: f7581c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 12.1358328 + posY: 1.54936349 + posZ: -61.3647575 + rotX: -0.0005613395 + rotY: 270.049 + rotZ: 180.045074 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 134 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/949595632761872450/59BE7A56D5E8FA2960DC2F8FCBC1FA464F90AA20/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761871063/A24C21A215D1AFC997B65C32C4B89664FACBBE3A/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 3e9b7a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 11.9013805 + posY: 1.532011 + posZ: -61.13598 + rotX: 0.0134944255 + rotY: 269.987061 + rotZ: 180.013931 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 133 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/949595632761872450/59BE7A56D5E8FA2960DC2F8FCBC1FA464F90AA20/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761871063/A24C21A215D1AFC997B65C32C4B89664FACBBE3A/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: f7581c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 12.05015 + posY: 1.38681209 + posZ: -61.217392 + rotX: 0.01949183 + rotY: 269.987274 + rotZ: 180.017426 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/949595632761872450/59BE7A56D5E8FA2960DC2F8FCBC1FA464F90AA20/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761871063/A24C21A215D1AFC997B65C32C4B89664FACBBE3A/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 128 +- 136 +- 135 +- 132 +- 130 +- 129 +- 139 +- 138 +- 137 +- 134 +- 133 +Description: Dark Waters +GMNotes: '' +GUID: d2adc8 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: crewmans and passangers +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -11.7321987 + posY: 1.681749 + posZ: 7.10929966 + 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 The Side Missions 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 3 Curiosities 20982e.ttslua b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 3 Curiosities 20982e.ttslua new file mode 100644 index 000000000..4acf9ea11 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 3 Curiosities 20982e.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 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 3 Curiosities 20982e.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 3 Curiosities 20982e.yaml new file mode 100644 index 000000000..e5d1a6bff --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 3 Curiosities 20982e.yaml @@ -0,0 +1,53 @@ +Autoraise: true +ColorDiffuse: + b: 0.0 + g: 0.366520882 + r: 0.7058823 +ContainedObjects: +- !include 'Bag 3 Curiosities 20982e/Deck Agenda 02ccc9.yaml' +- !include 'Bag 3 Curiosities 20982e/Card Curiosities 1b6853.yaml' +- !include 'Bag 3 Curiosities 20982e/Card 2a17f9.yaml' +- !include 'Bag 3 Curiosities 20982e/Card 6f10f6.yaml' +- !include 'Bag 3 Curiosities 20982e/Card 6fb30e.yaml' +- !include 'Bag 3 Curiosities 20982e/Custom_Tile 7234af.yaml' +- !include 'Bag 3 Curiosities 20982e/Card Curiosities 7ea46a.yaml' +- !include 'Bag 3 Curiosities 20982e/Custom_Tile 87e61c.yaml' +- !include 'Bag 3 Curiosities 20982e/Deck Set Aside 8b474c.yaml' +- !include 'Bag 3 Curiosities 20982e/Card aecab0.yaml' +- !include 'Bag 3 Curiosities 20982e/Card b97e33.yaml' +- !include 'Bag 3 Curiosities 20982e/Custom_Tile bb5609.yaml' +- !include 'Bag 3 Curiosities 20982e/Custom_Tile c4ffff.yaml' +- !include 'Bag 3 Curiosities 20982e/Deck Encounter dd5f8a.yaml' +- !include 'Bag 3 Curiosities 20982e/Deck Act ea12d1.yaml' +- !include 'Bag 3 Curiosities 20982e/Card f7581c.yaml' +- !include 'Bag 3 Curiosities 20982e/Custom_Tile f75c42.yaml' +- !include 'Bag 3 Curiosities 20982e/Custom_Tile fcba41.yaml' +Description: The Approaching Storm +GMNotes: '' +GUID: 20982e +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Bag 3 Curiosities 20982e.ttslua' +LuaScriptState: '{"ml":{"02ccc9":{"lock":false,"pos":{"x":-2.7247,"y":1.6566,"z":0.3733},"rot":{"x":359.9197,"y":269.993,"z":0.0168}},"1b6853":{"lock":false,"pos":{"x":-3.956,"y":1.6556,"z":-10.4412},"rot":{"x":359.9197,"y":269.9997,"z":0.0168}},"2a17f9":{"lock":false,"pos":{"x":-23.6764,"y":1.689,"z":-0.03},"rot":{"x":359.9201,"y":269.9999,"z":180.0169}},"6f10f6":{"lock":false,"pos":{"x":-30.2243,"y":1.6959,"z":-7.7},"rot":{"x":359.9201,"y":270.0001,"z":180.0169}},"6fb30e":{"lock":false,"pos":{"x":-17.1199,"y":1.6799,"z":-0.03},"rot":{"x":359.9201,"y":270.0001,"z":180.0169}},"7234af":{"lock":false,"pos":{"x":-17.12,"y":1.6065,"z":3.86},"rot":{"x":359.9831,"y":0.001,"z":359.92}},"7ea46a":{"lock":false,"pos":{"x":-50.9244,"y":1.7266,"z":8.1784},"rot":{"x":359.9201,"y":269.9997,"z":0.0169}},"87e61c":{"lock":false,"pos":{"x":-26.6201,"y":1.6164,"z":-7.4558},"rot":{"x":359.9201,"y":269.9999,"z":0.0169}},"8b474c":{"lock":false,"pos":{"x":1.6966,"y":1.6614,"z":14.2787},"rot":{"x":359.9552,"y":224.9999,"z":180.0686}},"aecab0":{"lock":false,"pos":{"x":-23.6766,"y":1.6868,"z":-7.7},"rot":{"x":359.9201,"y":270,"z":180.0169}},"b97e33":{"lock":false,"pos":{"x":-17.1201,"y":1.6776,"z":-7.7},"rot":{"x":359.9201,"y":270,"z":180.0169}},"bb5609":{"lock":false,"pos":{"x":-20.5861,"y":1.6079,"z":-7.8876},"rot":{"x":359.9201,"y":270,"z":0.0169}},"c4ffff":{"lock":false,"pos":{"x":-23.6765,"y":1.6134,"z":-3.83},"rot":{"x":359.9831,"y":0.0011,"z":359.92}},"dd5f8a":{"lock":false,"pos":{"x":-3.93,"y":1.8144,"z":5.773},"rot":{"x":359.9197,"y":269.9971,"z":180.0168}},"ea12d1":{"lock":false,"pos":{"x":-2.6885,"y":1.655,"z":-5.0485},"rot":{"x":359.9197,"y":269.993,"z":0.0168}},"f7581c":{"lock":false,"pos":{"x":-17.12,"y":1.6821,"z":7.57},"rot":{"x":359.9201,"y":270,"z":180.0169}},"f75c42":{"lock":false,"pos":{"x":-17.12,"y":1.6042,"z":-3.83},"rot":{"x":359.9831,"y":0.0011,"z":359.92}},"fcba41":{"lock":false,"pos":{"x":-20.9966,"y":1.6118,"z":3.6071},"rot":{"x":359.9747,"y":209.9999,"z":0.0777}}}}' +MaterialIndex: -1 +MeshIndex: -1 +Name: Bag +Nickname: 3 Curiosities +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 8.310402 + posY: 1.28712678 + posZ: 7.599901 + rotX: 0.07996648 + rotY: 89.99852 + rotZ: 359.9831 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 3 Curiosities 20982e/Card 2a17f9.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 3 Curiosities 20982e/Card 2a17f9.yaml new file mode 100644 index 000000000..ded175544 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 3 Curiosities 20982e/Card 2a17f9.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 141 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/949595632761872450/59BE7A56D5E8FA2960DC2F8FCBC1FA464F90AA20/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761871063/A24C21A215D1AFC997B65C32C4B89664FACBBE3A/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 2a17f9 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -23.6764 + posY: 1.689043 + posZ: -0.029999679 + rotX: 359.9201 + rotY: 269.999878 + rotZ: 180.016861 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 3 Curiosities 20982e/Card 6f10f6.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 3 Curiosities 20982e/Card 6f10f6.yaml new file mode 100644 index 000000000..c1d6a4dbe --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 3 Curiosities 20982e/Card 6f10f6.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 146 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/949595632761872450/59BE7A56D5E8FA2960DC2F8FCBC1FA464F90AA20/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761871063/A24C21A215D1AFC997B65C32C4B89664FACBBE3A/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 6f10f6 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -30.2243 + posY: 1.69591522 + 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 The Side Missions 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 3 Curiosities 20982e/Card 6fb30e.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 3 Curiosities 20982e/Card 6fb30e.yaml new file mode 100644 index 000000000..dab16f4e6 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 3 Curiosities 20982e/Card 6fb30e.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 147 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/949595632761872450/59BE7A56D5E8FA2960DC2F8FCBC1FA464F90AA20/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761871063/A24C21A215D1AFC997B65C32C4B89664FACBBE3A/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 6fb30e +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -17.1198978 + posY: 1.67990053 + posZ: -0.0299999472 + 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 The Side Missions 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 3 Curiosities 20982e/Card aecab0.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 3 Curiosities 20982e/Card aecab0.yaml new file mode 100644 index 000000000..5ec3c037e --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 3 Curiosities 20982e/Card aecab0.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 142 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/949595632761872450/59BE7A56D5E8FA2960DC2F8FCBC1FA464F90AA20/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761871063/A24C21A215D1AFC997B65C32C4B89664FACBBE3A/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: aecab0 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -23.6766 + posY: 1.68678486 + posZ: -7.700001 + 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 The Side Missions 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 3 Curiosities 20982e/Card b97e33.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 3 Curiosities 20982e/Card b97e33.yaml new file mode 100644 index 000000000..bf8127305 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 3 Curiosities 20982e/Card b97e33.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 145 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/949595632761872450/59BE7A56D5E8FA2960DC2F8FCBC1FA464F90AA20/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761871063/A24C21A215D1AFC997B65C32C4B89664FACBBE3A/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: b97e33 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -17.1201 + posY: 1.67764235 + posZ: -7.70000029 + 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 The Side Missions 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 3 Curiosities 20982e/Card f7581c.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 3 Curiosities 20982e/Card f7581c.yaml new file mode 100644 index 000000000..8b215cb69 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 3 Curiosities 20982e/Card f7581c.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 148 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/949595632761872450/59BE7A56D5E8FA2960DC2F8FCBC1FA464F90AA20/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761871063/A24C21A215D1AFC997B65C32C4B89664FACBBE3A/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: f7581c +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -17.12 + posY: 1.68213856 + posZ: 7.57 + rotX: 359.9201 + rotY: 269.999969 + rotZ: 180.016861 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 3 Curiosities 20982e/Card Curiosities 1b6853.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 3 Curiosities 20982e/Card Curiosities 1b6853.yaml new file mode 100644 index 000000000..74a960ef3 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 3 Curiosities 20982e/Card Curiosities 1b6853.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 140 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/949595632761872450/59BE7A56D5E8FA2960DC2F8FCBC1FA464F90AA20/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761871063/A24C21A215D1AFC997B65C32C4B89664FACBBE3A/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 1b6853 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Curiosities +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.9560008 + posY: 1.65564811 + posZ: -10.4412012 + rotX: 359.919739 + rotY: 269.999664 + rotZ: 0.0168417133 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 3 Curiosities 20982e/Card Curiosities 7ea46a.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 3 Curiosities 20982e/Card Curiosities 7ea46a.yaml new file mode 100644 index 000000000..322367afd --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 3 Curiosities 20982e/Card Curiosities 7ea46a.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 140 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/949595632761872450/59BE7A56D5E8FA2960DC2F8FCBC1FA464F90AA20/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761871063/A24C21A215D1AFC997B65C32C4B89664FACBBE3A/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 7ea46a +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Curiosities +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -50.92441 + posY: 1.70846307 + posZ: 8.178401 + rotX: 359.9201 + rotY: 269.999664 + rotZ: 0.0168777928 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 3 Curiosities 20982e/Custom_Tile 7234af.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 3 Curiosities 20982e/Custom_Tile 7234af.yaml new file mode 100644 index 000000000..358b86a97 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 3 Curiosities 20982e/Custom_Tile 7234af.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 7234af +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.1199989 + posY: 1.60650992 + posZ: 3.86000013 + rotX: 359.983124 + rotY: 0.0009981305 + rotZ: 359.920044 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 3 Curiosities 20982e/Custom_Tile 87e61c.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 3 Curiosities 20982e/Custom_Tile 87e61c.yaml new file mode 100644 index 000000000..7053ec905 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 3 Curiosities 20982e/Custom_Tile 87e61c.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 87e61c +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.6201 + posY: 1.61642492 + posZ: -7.455801 + rotX: 359.9201 + rotY: 269.999817 + rotZ: 0.0169024728 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 3 Curiosities 20982e/Custom_Tile bb5609.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 3 Curiosities 20982e/Custom_Tile bb5609.yaml new file mode 100644 index 000000000..b351f1965 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 3 Curiosities 20982e/Custom_Tile bb5609.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: bb5609 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.5861 + posY: 1.60788369 + posZ: -7.88760138 + rotX: 359.9201 + rotY: 269.999939 + rotZ: 0.0169001576 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 3 Curiosities 20982e/Custom_Tile c4ffff.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 3 Curiosities 20982e/Custom_Tile c4ffff.yaml new file mode 100644 index 000000000..7f18e084f --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 3 Curiosities 20982e/Custom_Tile c4ffff.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: c4ffff +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.6765 + posY: 1.61338806 + posZ: -3.83000016 + rotX: 359.983124 + rotY: 0.00112050457 + rotZ: 359.920074 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 3 Curiosities 20982e/Custom_Tile f75c42.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 3 Curiosities 20982e/Custom_Tile f75c42.yaml new file mode 100644 index 000000000..4a62ad28f --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 3 Curiosities 20982e/Custom_Tile f75c42.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: f75c42 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.1199989 + posY: 1.60424554 + posZ: -3.82999945 + rotX: 359.983124 + rotY: 0.00103011588 + rotZ: 359.920044 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 3 Curiosities 20982e/Custom_Tile fcba41.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 3 Curiosities 20982e/Custom_Tile fcba41.yaml new file mode 100644 index 000000000..a7a8560a7 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 3 Curiosities 20982e/Custom_Tile fcba41.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: fcba41 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.9966 + posY: 1.611841 + posZ: 3.60710049 + rotX: 359.97467 + rotY: 209.9999 + rotZ: 0.07762857 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 3 Curiosities 20982e/Deck Act ea12d1.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 3 Curiosities 20982e/Deck Act ea12d1.yaml new file mode 100644 index 000000000..f6a48ac10 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 3 Curiosities 20982e/Deck Act ea12d1.yaml @@ -0,0 +1,172 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 213 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/949595632761878422/F08C392E92C6AAE7A15BBCD0203D375136E65F2F/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761876244/B85D64D26E719E9AAE7A2B1E21324A3AE395A6E0/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: a6b095 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.8131207 + posY: 1.32595658 + posZ: 1.70344281 + rotX: 0.004031446 + rotY: 179.999542 + rotZ: 0.0005218022 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 212 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/949595632761878422/F08C392E92C6AAE7A15BBCD0203D375136E65F2F/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761876244/B85D64D26E719E9AAE7A2B1E21324A3AE395A6E0/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 48616b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 1.00963032 + posY: 1.47071373 + posZ: 1.55060685 + rotX: 0.000540709356 + rotY: 180.000854 + rotZ: 0.00703803729 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 211 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/949595632761878422/F08C392E92C6AAE7A15BBCD0203D375136E65F2F/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761876244/B85D64D26E719E9AAE7A2B1E21324A3AE395A6E0/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: a6b095 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.80741477 + posY: 1.488384 + posZ: 1.653731 + rotX: -0.0005561838 + rotY: 179.999863 + rotZ: -0.000222649309 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/949595632761878422/F08C392E92C6AAE7A15BBCD0203D375136E65F2F/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761876244/B85D64D26E719E9AAE7A2B1E21324A3AE395A6E0/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 213 +- 212 +- 211 +Description: Curiosities +GMNotes: '' +GUID: ea12d1 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Act +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.6885 + posY: 1.65499735 + posZ: -5.048501 + rotX: 359.919739 + rotY: 269.992981 + rotZ: 0.0168474168 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 3 Curiosities 20982e/Deck Agenda 02ccc9.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 3 Curiosities 20982e/Deck Agenda 02ccc9.yaml new file mode 100644 index 000000000..71572a1a3 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 3 Curiosities 20982e/Deck Agenda 02ccc9.yaml @@ -0,0 +1,172 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 216 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/949595632761878422/F08C392E92C6AAE7A15BBCD0203D375136E65F2F/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761876244/B85D64D26E719E9AAE7A2B1E21324A3AE395A6E0/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: a6b095 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 1.03510416 + posY: 1.32598889 + posZ: 2.50867629 + rotX: 0.00267097214 + rotY: 179.99971 + rotZ: 0.000449490617 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 215 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/949595632761878422/F08C392E92C6AAE7A15BBCD0203D375136E65F2F/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761876244/B85D64D26E719E9AAE7A2B1E21324A3AE395A6E0/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 41a9cc + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 1.16726816 + posY: 1.47089541 + posZ: 2.509383 + rotX: 0.0101494808 + rotY: 179.999969 + rotZ: 0.008071924 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 214 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/949595632761878422/F08C392E92C6AAE7A15BBCD0203D375136E65F2F/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761876244/B85D64D26E719E9AAE7A2B1E21324A3AE395A6E0/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: a6b095 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.929888964 + posY: 1.48840153 + posZ: 2.38988 + rotX: -0.000293759484 + rotY: 179.999924 + rotZ: -0.000580901 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/949595632761878422/F08C392E92C6AAE7A15BBCD0203D375136E65F2F/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761876244/B85D64D26E719E9AAE7A2B1E21324A3AE395A6E0/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 216 +- 215 +- 214 +Description: Curiosities +GMNotes: '' +GUID: 02ccc9 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Agenda +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.7247 + posY: 1.65664124 + posZ: 0.373299778 + rotX: 359.919739 + rotY: 269.99295 + rotZ: 0.0168474019 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 3 Curiosities 20982e/Deck Encounter dd5f8a.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 3 Curiosities 20982e/Deck Encounter dd5f8a.yaml new file mode 100644 index 000000000..7dda39b0e --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 3 Curiosities 20982e/Deck Encounter dd5f8a.yaml @@ -0,0 +1,1671 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 517 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/924800625825559102/C3C13E9EE35451018D2880936F889E0D8309BFDB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761889070/DA01A9923E38E4072B341E148F0AA02BA1A3A706/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 479ec9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.10647678 + posY: 1.48674548 + posZ: -0.1721202 + rotX: -0.000759564165 + rotY: 180.0 + rotZ: -0.00046559496 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 266257 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2662': + BackIsHidden: true + BackURL: https://i.imgur.com/h4om3TQ.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87098596225478692/B2438BEE2CDD4D172BAFA5DFDD15C0F29B079D4F/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Human. Criminal. Syndicate. + GMNotes: '' + GUID: 3b6aef + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Mobster + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 19.4192371 + posY: 2.55079961 + posZ: 10.6203241 + rotX: 359.920135 + rotY: 269.999481 + rotZ: 0.0168775711 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 266258 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2662': + BackIsHidden: true + BackURL: https://i.imgur.com/h4om3TQ.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87098596225478692/B2438BEE2CDD4D172BAFA5DFDD15C0F29B079D4F/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Tactic. + GMNotes: '' + GUID: 8d50d6 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Hunted Down + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 19.4190941 + posY: 2.55223441 + posZ: 15.4919863 + rotX: 359.920135 + rotY: 269.9995 + rotZ: 0.0168776 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3617 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: 18e09c + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Rotting Remains + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -20.3450146 + posY: 1.28128624 + posZ: -4.537053 + rotX: 0.006250872 + rotY: 269.979126 + rotZ: -0.00126227119 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 515 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/924800625825559102/C3C13E9EE35451018D2880936F889E0D8309BFDB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761889070/DA01A9923E38E4072B341E148F0AA02BA1A3A706/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 795bd8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -19.7968311 + posY: 1.706357 + posZ: -62.3546524 + rotX: 0.0971272439 + rotY: 270.046936 + rotZ: 180.267441 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 515 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/924800625825559102/C3C13E9EE35451018D2880936F889E0D8309BFDB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761889070/DA01A9923E38E4072B341E148F0AA02BA1A3A706/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: bac473 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -19.7322121 + posY: 1.55983293 + posZ: -62.6359367 + rotX: 0.121660173 + rotY: 270.04776 + rotZ: 180.135757 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3617 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: aa3d47 + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Rotting Remains + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -21.5193939 + posY: 1.337018 + posZ: -4.78068352 + rotX: 0.0181244723 + rotY: 269.978149 + rotZ: 0.00253973226 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3619 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: f1a34d + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dissonant Voices + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -19.9809151 + posY: 1.28156877 + posZ: -7.79831076 + rotX: 0.011735606 + rotY: 270.009033 + rotZ: 0.00468536 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 517 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/924800625825559102/C3C13E9EE35451018D2880936F889E0D8309BFDB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761889070/DA01A9923E38E4072B341E148F0AA02BA1A3A706/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 18032f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.10647559 + posY: 1.32595 + posZ: -0.172123373 + rotX: 0.004635972 + rotY: 180.0 + rotZ: 0.001430764 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 266258 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2662': + BackIsHidden: true + BackURL: https://i.imgur.com/h4om3TQ.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87098596225478692/B2438BEE2CDD4D172BAFA5DFDD15C0F29B079D4F/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Tactic. + GMNotes: '' + GUID: e34f18 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Hunted Down + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 25.2922077 + posY: 2.54404664 + posZ: 15.4922915 + rotX: 359.920135 + rotY: 269.999481 + rotZ: 0.0168771055 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3617 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: da8001 + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Rotting Remains + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -19.2726822 + posY: 1.23161709 + posZ: -4.69493532 + rotX: -0.00461160857 + rotY: 269.9793 + rotZ: -0.00137890945 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 266256 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2662': + BackIsHidden: true + BackURL: https://i.imgur.com/h4om3TQ.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87098596225478692/B2438BEE2CDD4D172BAFA5DFDD15C0F29B079D4F/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Human. Criminal. Syndicate. + GMNotes: '' + GUID: 4d79ef + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: O' Bannion's Thug + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 25.29196 + posY: 2.54120541 + posZ: 5.842565 + rotX: 359.920135 + rotY: 269.999481 + rotZ: 0.0168801267 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 517 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/924800625825559102/C3C13E9EE35451018D2880936F889E0D8309BFDB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761889070/DA01A9923E38E4072B341E148F0AA02BA1A3A706/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 11b78d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.81641865 + posY: 1.47268343 + posZ: -0.0184891634 + rotX: -0.000762273732 + rotY: 180.0 + rotZ: 0.00232220837 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 519 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/924800625825559102/C3C13E9EE35451018D2880936F889E0D8309BFDB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761889070/DA01A9923E38E4072B341E148F0AA02BA1A3A706/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: db7442 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.02512074 + posY: 1.48549569 + posZ: -0.380126029 + rotX: 0.0013982344 + rotY: 180.0 + rotZ: 0.000250714278 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3618 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: 27c05d + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Frozen in Fear + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -18.967617 + posY: 1.231716 + posZ: -10.49529 + rotX: -3.11068325e-05 + rotY: 270.0013 + rotZ: -7.22032553e-07 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 266256 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2662': + BackIsHidden: true + BackURL: https://i.imgur.com/h4om3TQ.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87098596225478692/B2438BEE2CDD4D172BAFA5DFDD15C0F29B079D4F/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Human. Criminal. Syndicate. + GMNotes: '' + GUID: 501c44 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: O' Bannion's Thug + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 19.4190617 + posY: 2.549393 + posZ: 5.84222555 + rotX: 359.920135 + rotY: 269.999451 + rotZ: 0.01687818 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 501 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/924800625825559102/C3C13E9EE35451018D2880936F889E0D8309BFDB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761889070/DA01A9923E38E4072B341E148F0AA02BA1A3A706/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: d9ceb2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -28.81821 + posY: 1.50152028 + posZ: -60.0372429 + rotX: 0.008712547 + rotY: 270.095947 + rotZ: 185.615112 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 501 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/924800625825559102/C3C13E9EE35451018D2880936F889E0D8309BFDB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761889070/DA01A9923E38E4072B341E148F0AA02BA1A3A706/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: f882ec + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -28.35116 + posY: 1.37283385 + posZ: -58.585762 + rotX: 0.0151941692 + rotY: 270.083771 + rotZ: 180.021072 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 501 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/924800625825559102/C3C13E9EE35451018D2880936F889E0D8309BFDB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761889070/DA01A9923E38E4072B341E148F0AA02BA1A3A706/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 9ad58f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -29.4089584 + posY: 1.42222691 + posZ: -58.3754272 + rotX: 0.0168452617 + rotY: 270.083862 + rotZ: 180.092438 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 515 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/924800625825559102/C3C13E9EE35451018D2880936F889E0D8309BFDB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761889070/DA01A9923E38E4072B341E148F0AA02BA1A3A706/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 8bd27b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -19.3867378 + posY: 1.51401269 + posZ: -63.25279 + rotX: 359.0237 + rotY: 270.02887 + rotZ: 181.770844 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 517 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/924800625825559102/C3C13E9EE35451018D2880936F889E0D8309BFDB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761889070/DA01A9923E38E4072B341E148F0AA02BA1A3A706/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 7dcbb5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.106477 + posY: 1.47582483 + posZ: -0.172119915 + rotX: -0.000664424733 + rotY: 180.0 + rotZ: -0.000407499785 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 519 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/924800625825559102/C3C13E9EE35451018D2880936F889E0D8309BFDB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761889070/DA01A9923E38E4072B341E148F0AA02BA1A3A706/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 45a733 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.025121 + posY: 1.48043716 + posZ: -0.380125821 + rotX: 0.00137734076 + rotY: 179.999985 + rotZ: 0.000252969359 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 515 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/924800625825559102/C3C13E9EE35451018D2880936F889E0D8309BFDB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761889070/DA01A9923E38E4072B341E148F0AA02BA1A3A706/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: c6cf29 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -19.8851585 + posY: 1.51530015 + posZ: -63.37976 + rotX: 0.9593405 + rotY: 270.0749 + rotZ: 181.94165 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 519 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/924800625825559102/C3C13E9EE35451018D2880936F889E0D8309BFDB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761889070/DA01A9923E38E4072B341E148F0AA02BA1A3A706/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 24dee4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.31597638 + posY: 1.45390129 + posZ: -0.625035465 + rotX: 0.00121709064 + rotY: 179.9998 + rotZ: -0.0002519885 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 515 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/924800625825559102/C3C13E9EE35451018D2880936F889E0D8309BFDB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761889070/DA01A9923E38E4072B341E148F0AA02BA1A3A706/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 11b78d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -20.0631847 + posY: 1.52217329 + posZ: -63.2369537 + rotX: 0.998999357 + rotY: 270.0743 + rotZ: 181.733856 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 501 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/924800625825559102/C3C13E9EE35451018D2880936F889E0D8309BFDB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761889070/DA01A9923E38E4072B341E148F0AA02BA1A3A706/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: b3aec3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -29.5229359 + posY: 1.71988416 + posZ: -59.4023056 + rotX: 0.283244938 + rotY: 270.062744 + rotZ: 182.6595 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 517 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/924800625825559102/C3C13E9EE35451018D2880936F889E0D8309BFDB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761889070/DA01A9923E38E4072B341E148F0AA02BA1A3A706/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 8f9a82 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.10647464 + posY: 1.47254932 + posZ: -0.172126472 + rotX: -0.002055346 + rotY: 179.999954 + rotZ: -0.0014459244 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3613 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Creature. + GMNotes: '' + GUID: bbc9d1 + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Swarm of Rats + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -18.9998322 + posY: 1.23161483 + posZ: 14.9262657 + rotX: -0.00489453 + rotY: 270.002747 + rotZ: -0.00167015032 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 519 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/924800625825559102/C3C13E9EE35451018D2880936F889E0D8309BFDB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761889070/DA01A9923E38E4072B341E148F0AA02BA1A3A706/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 0a44f5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.02512121 + posY: 1.43444741 + posZ: -0.380124867 + rotX: 0.001903061 + rotY: 180.0 + rotZ: 0.00034604207 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 516 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/924800625825559102/C3C13E9EE35451018D2880936F889E0D8309BFDB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761889070/DA01A9923E38E4072B341E148F0AA02BA1A3A706/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 11b78d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -19.63887 + posY: 1.41001189 + posZ: -62.65031 + rotX: 359.9867 + rotY: 270.032227 + rotZ: 180.081116 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3613 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Creature. + GMNotes: '' + GUID: 7381cd + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Swarm of Rats + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -19.6142921 + posY: 1.42705274 + posZ: 15.2051964 + rotX: 0.012312145 + rotY: 269.997284 + rotZ: 0.0359485969 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3613 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Creature. + GMNotes: '' + GUID: 56e5db + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Swarm of Rats + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -19.7119656 + posY: 1.28121269 + posZ: 15.0893879 + rotX: 0.004087732 + rotY: 269.994171 + rotZ: -0.0020856997 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3619 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: '260768' + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dissonant Voices + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -19.1363125 + posY: 1.231699 + posZ: -7.400251 + rotX: -0.000820844667 + rotY: 270.0089 + rotZ: -0.000237511369 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 516 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/924800625825559102/C3C13E9EE35451018D2880936F889E0D8309BFDB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761889070/DA01A9923E38E4072B341E148F0AA02BA1A3A706/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 223e6d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -19.7943764 + posY: 1.37491286 + posZ: -61.84429 + rotX: 0.00890871 + rotY: 270.0521 + rotZ: 180.0244 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 501 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/924800625825559102/C3C13E9EE35451018D2880936F889E0D8309BFDB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761889070/DA01A9923E38E4072B341E148F0AA02BA1A3A706/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: e046a3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -28.8622189 + posY: 1.72091126 + posZ: -59.7416649 + rotX: 0.00554814143 + rotY: 270.0884 + rotZ: 182.273117 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 266257 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2662': + BackIsHidden: true + BackURL: https://i.imgur.com/h4om3TQ.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87098596225478692/B2438BEE2CDD4D172BAFA5DFDD15C0F29B079D4F/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Human. Criminal. Syndicate. + GMNotes: '' + GUID: a4a1c9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Mobster + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 25.2920151 + posY: 2.54261231 + posZ: 10.6206827 + rotX: 359.920135 + rotY: 269.9995 + rotZ: 0.0168782976 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3618 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: c40f57 + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Frozen in Fear + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -19.6207886 + posY: 1.28169692 + posZ: -10.6840782 + rotX: -3.134726e-05 + rotY: 270.000763 + rotZ: 3.597804e-06 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 519 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/924800625825559102/C3C13E9EE35451018D2880936F889E0D8309BFDB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761889070/DA01A9923E38E4072B341E148F0AA02BA1A3A706/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 9990c8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.02512074 + posY: 1.47644126 + posZ: -0.38012597 + rotX: 0.001364049 + rotY: 180.0 + rotZ: 0.000242917624 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2662': + BackIsHidden: true + BackURL: https://i.imgur.com/h4om3TQ.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87098596225478692/B2438BEE2CDD4D172BAFA5DFDD15C0F29B079D4F/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '5': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/924800625825559102/C3C13E9EE35451018D2880936F889E0D8309BFDB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761889070/DA01A9923E38E4072B341E148F0AA02BA1A3A706/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 517 +- 266257 +- 266258 +- 3617 +- 515 +- 515 +- 3617 +- 3619 +- 517 +- 266258 +- 3617 +- 266256 +- 517 +- 519 +- 3618 +- 266256 +- 501 +- 501 +- 501 +- 515 +- 517 +- 519 +- 515 +- 519 +- 515 +- 501 +- 517 +- 3613 +- 519 +- 516 +- 3613 +- 3613 +- 3619 +- 516 +- 501 +- 266257 +- 3618 +- 519 +Description: Curiosities +GMNotes: '' +GUID: dd5f8a +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Encounter +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.930088 + posY: 1.8143537 + posZ: 5.773024 + rotX: 359.919739 + rotY: 269.99707 + rotZ: 180.016815 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 3 Curiosities 20982e/Deck Set Aside 8b474c.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 3 Curiosities 20982e/Deck Set Aside 8b474c.yaml new file mode 100644 index 000000000..2d79d73a1 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 3 Curiosities 20982e/Deck Set Aside 8b474c.yaml @@ -0,0 +1,229 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 404 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/945091491738376009/4A59A4951DA1B9CAD36DCA09B0C04539C7105434/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761887156/5B7A1753D4189BDD1D5C3629A24866C63AA58F26/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 560cb8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.519876 + posY: 1.378165 + posZ: -70.59194 + rotX: 0.0200619716 + rotY: 269.9855 + rotZ: 0.0160660483 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 518 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/924800625825559102/C3C13E9EE35451018D2880936F889E0D8309BFDB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761889070/DA01A9923E38E4072B341E148F0AA02BA1A3A706/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 11b78d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.59763861 + posY: 1.5233798 + posZ: -70.73763 + rotX: 0.0119980648 + rotY: 270.0011 + rotZ: 0.0169003382 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 143 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/949595632761872450/59BE7A56D5E8FA2960DC2F8FCBC1FA464F90AA20/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761871063/A24C21A215D1AFC997B65C32C4B89664FACBBE3A/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 65948b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.23349786 + posY: 1.53957641 + posZ: -70.22133 + rotX: 0.7737445 + rotY: 269.982025 + rotZ: 358.825684 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 144 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/949595632761872450/59BE7A56D5E8FA2960DC2F8FCBC1FA464F90AA20/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761871063/A24C21A215D1AFC997B65C32C4B89664FACBBE3A/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 4ead3f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.557428 + posY: 1.53112113 + posZ: -70.3423 + rotX: 0.0256723166 + rotY: 270.0002 + rotZ: 0.0586509742 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/949595632761872450/59BE7A56D5E8FA2960DC2F8FCBC1FA464F90AA20/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761871063/A24C21A215D1AFC997B65C32C4B89664FACBBE3A/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + '4': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/945091491738376009/4A59A4951DA1B9CAD36DCA09B0C04539C7105434/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761887156/5B7A1753D4189BDD1D5C3629A24866C63AA58F26/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '5': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/924800625825559102/C3C13E9EE35451018D2880936F889E0D8309BFDB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761889070/DA01A9923E38E4072B341E148F0AA02BA1A3A706/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 404 +- 518 +- 143 +- 144 +Description: Curiosities +GMNotes: '' +GUID: 8b474c +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Set Aside +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 1.69660068 + posY: 1.66137028 + posZ: 14.2787018 + rotX: 359.955139 + rotY: 224.9999 + rotZ: 180.068649 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 4 Shadow Rails 3a3b5a.ttslua b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 4 Shadow Rails 3a3b5a.ttslua new file mode 100644 index 000000000..4acf9ea11 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 4 Shadow Rails 3a3b5a.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 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 4 Shadow Rails 3a3b5a.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 4 Shadow Rails 3a3b5a.yaml new file mode 100644 index 000000000..c675c266b --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 4 Shadow Rails 3a3b5a.yaml @@ -0,0 +1,44 @@ +Autoraise: true +ColorDiffuse: + b: 0.0 + g: 0.366520882 + r: 0.7058823 +ContainedObjects: +- !include 'Bag 4 Shadow Rails 3a3b5a/Deck Act 1e19b2.yaml' +- !include 'Bag 4 Shadow Rails 3a3b5a/Card 2ffc66.yaml' +- !include 'Bag 4 Shadow Rails 3a3b5a/Deck Locations 4f2ee1.yaml' +- !include 'Bag 4 Shadow Rails 3a3b5a/Card Shadow Rails 6bf301.yaml' +- !include 'Bag 4 Shadow Rails 3a3b5a/Deck Agenda 704b7d.yaml' +- !include 'Bag 4 Shadow Rails 3a3b5a/Deck 91259f.yaml' +- !include 'Bag 4 Shadow Rails 3a3b5a/Card Shadow Rails a46fae.yaml' +- !include 'Bag 4 Shadow Rails 3a3b5a/Deck Set Aside cba1b5.yaml' +- !include 'Bag 4 Shadow Rails 3a3b5a/Deck Encounter ee15fa.yaml' +Description: The Approaching Storm +GMNotes: '' +GUID: 3a3b5a +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Bag 4 Shadow Rails 3a3b5a.ttslua' +LuaScriptState: '{"ml":{"1e19b2":{"lock":false,"pos":{"x":-2.6892,"y":1.655,"z":-5.0406},"rot":{"x":359.9197,"y":270.0391,"z":0.0168}},"2ffc66":{"lock":false,"pos":{"x":-23.6767,"y":1.6846,"z":-15.28},"rot":{"x":359.9201,"y":270,"z":180.0169}},"4f2ee1":{"lock":false,"pos":{"x":-17.12,"y":1.6835,"z":-0.03},"rot":{"x":359.9201,"y":270.0001,"z":180.0169}},"6bf301":{"lock":false,"pos":{"x":-3.9585,"y":1.6556,"z":-10.4497},"rot":{"x":359.9197,"y":270.0502,"z":0.0168}},"704b7d":{"lock":false,"pos":{"x":-2.7247,"y":1.6566,"z":0.3735},"rot":{"x":359.9197,"y":270.0194,"z":0.0168}},"91259f":{"lock":false,"pos":{"x":-23.6765,"y":1.6931,"z":-0.03},"rot":{"x":359.9201,"y":269.9974,"z":180.0169}},"a46fae":{"lock":false,"pos":{"x":-50.9244,"y":1.7266,"z":8.1784},"rot":{"x":359.9201,"y":270.0502,"z":0.0168}},"cba1b5":{"lock":false,"pos":{"x":1.6966,"y":1.6651,"z":14.2787},"rot":{"x":359.9552,"y":224.9999,"z":180.0686}},"ee15fa":{"lock":false,"pos":{"x":-3.9277,"y":1.7664,"z":5.7571},"rot":{"x":359.9197,"y":270.0002,"z":180.0168}}}}' +MaterialIndex: -1 +MeshIndex: -1 +Name: Bag +Nickname: 4 Shadow Rails +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 8.159003 + posY: 1.28595924 + posZ: 2.91660023 + rotX: 0.0799697 + rotY: 89.9924545 + rotZ: 359.9831 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 4 Shadow Rails 3a3b5a/Card 2ffc66.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 4 Shadow Rails 3a3b5a/Card 2ffc66.yaml new file mode 100644 index 000000000..f1c3d26d3 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 4 Shadow Rails 3a3b5a/Card 2ffc66.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 150 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/949595632761872450/59BE7A56D5E8FA2960DC2F8FCBC1FA464F90AA20/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761871063/A24C21A215D1AFC997B65C32C4B89664FACBBE3A/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 2ffc66 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -23.6767 + posY: 1.684553 + posZ: -15.2800007 + rotX: 359.9201 + rotY: 269.999969 + rotZ: 180.016861 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 4 Shadow Rails 3a3b5a/Card Shadow Rails 6bf301.yaml new file mode 100644 index 000000000..cedc90e19 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 4 Shadow Rails 3a3b5a/Card Shadow Rails 6bf301.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 149 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/949595632761872450/59BE7A56D5E8FA2960DC2F8FCBC1FA464F90AA20/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761871063/A24C21A215D1AFC997B65C32C4B89664FACBBE3A/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 6bf301 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Shadow Rails +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.95850039 + posY: 1.65564919 + posZ: -10.4497013 + rotX: 359.919739 + rotY: 270.05014 + rotZ: 0.0167710874 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 4 Shadow Rails 3a3b5a/Card Shadow Rails a46fae.yaml new file mode 100644 index 000000000..4254daae0 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 4 Shadow Rails 3a3b5a/Card Shadow Rails a46fae.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 149 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/949595632761872450/59BE7A56D5E8FA2960DC2F8FCBC1FA464F90AA20/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761871063/A24C21A215D1AFC997B65C32C4B89664FACBBE3A/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: a46fae +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Shadow Rails +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -50.92441 + posY: 1.70846307 + posZ: 8.178402 + rotX: 359.9201 + rotY: 270.05014 + rotZ: 0.0168074723 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 4 Shadow Rails 3a3b5a/Deck 91259f.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 4 Shadow Rails 3a3b5a/Deck 91259f.yaml new file mode 100644 index 000000000..5ab632eb2 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 4 Shadow Rails 3a3b5a/Deck 91259f.yaml @@ -0,0 +1,172 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 152 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/949595632761872450/59BE7A56D5E8FA2960DC2F8FCBC1FA464F90AA20/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761871063/A24C21A215D1AFC997B65C32C4B89664FACBBE3A/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 63505d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -17.1177673 + posY: 1.80035067 + posZ: -0.0301945675 + rotX: 358.211121 + rotY: 269.9926 + rotZ: 180.01564 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 151 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/949595632761872450/59BE7A56D5E8FA2960DC2F8FCBC1FA464F90AA20/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761871063/A24C21A215D1AFC997B65C32C4B89664FACBBE3A/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 1538e8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -17.1180153 + posY: 1.78334355 + posZ: -0.03019463 + rotX: 358.219 + rotY: 269.9911 + rotZ: 180.015244 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 153 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/949595632761872450/59BE7A56D5E8FA2960DC2F8FCBC1FA464F90AA20/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761871063/A24C21A215D1AFC997B65C32C4B89664FACBBE3A/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 4ac1fe + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -17.1200752 + posY: 1.67985988 + posZ: -0.0298136622 + rotX: 359.9206 + rotY: 269.998444 + rotZ: 180.017273 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/949595632761872450/59BE7A56D5E8FA2960DC2F8FCBC1FA464F90AA20/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761871063/A24C21A215D1AFC997B65C32C4B89664FACBBE3A/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 152 +- 151 +- 153 +Description: '' +GMNotes: '' +GUID: 91259f +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -23.6765 + posY: 1.6931 + posZ: -0.0299998 + rotX: 359.9201 + rotY: 269.997375 + rotZ: 180.016861 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 4 Shadow Rails 3a3b5a/Deck Act 1e19b2.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 4 Shadow Rails 3a3b5a/Deck Act 1e19b2.yaml new file mode 100644 index 000000000..1e9e4948b --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 4 Shadow Rails 3a3b5a/Deck Act 1e19b2.yaml @@ -0,0 +1,172 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 219 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/949595632761878422/F08C392E92C6AAE7A15BBCD0203D375136E65F2F/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761876244/B85D64D26E719E9AAE7A2B1E21324A3AE395A6E0/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: a6b095 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 1.03128493 + posY: 1.32595372 + posZ: 2.28669572 + rotX: 0.003589021 + rotY: 179.998169 + rotZ: 0.0006945625 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 218 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/949595632761878422/F08C392E92C6AAE7A15BBCD0203D375136E65F2F/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761876244/B85D64D26E719E9AAE7A2B1E21324A3AE395A6E0/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: d7eb6c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.9373664 + posY: 1.47074831 + posZ: 2.20032644 + rotX: -0.00244526216 + rotY: 179.995743 + rotZ: -0.00248421286 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 217 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/949595632761878422/F08C392E92C6AAE7A15BBCD0203D375136E65F2F/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761876244/B85D64D26E719E9AAE7A2B1E21324A3AE395A6E0/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: a6b095 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 1.10170245 + posY: 1.48853683 + posZ: 2.31449461 + rotX: 0.01067719 + rotY: 179.9946 + rotZ: 0.00275711459 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/949595632761878422/F08C392E92C6AAE7A15BBCD0203D375136E65F2F/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761876244/B85D64D26E719E9AAE7A2B1E21324A3AE395A6E0/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 219 +- 218 +- 217 +Description: Shadow Rails +GMNotes: '' +GUID: 1e19b2 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Act +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.68919969 + posY: 1.65500057 + posZ: -5.040601 + rotX: 359.919739 + rotY: 270.039063 + rotZ: 0.0167827979 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 4 Shadow Rails 3a3b5a/Deck Agenda 704b7d.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 4 Shadow Rails 3a3b5a/Deck Agenda 704b7d.yaml new file mode 100644 index 000000000..0fdcfc427 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 4 Shadow Rails 3a3b5a/Deck Agenda 704b7d.yaml @@ -0,0 +1,172 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 222 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/949595632761878422/F08C392E92C6AAE7A15BBCD0203D375136E65F2F/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761876244/B85D64D26E719E9AAE7A2B1E21324A3AE395A6E0/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: a6b095 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.9981225 + posY: 1.32593143 + posZ: 2.634866 + rotX: 0.00540473731 + rotY: 180.0001 + rotZ: 0.000616791 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 221 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/949595632761878422/F08C392E92C6AAE7A15BBCD0203D375136E65F2F/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761876244/B85D64D26E719E9AAE7A2B1E21324A3AE395A6E0/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 847e46 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 1.39331543 + posY: 1.470624 + posZ: 2.60451412 + rotX: 9.491316e-05 + rotY: 180.000916 + rotZ: 0.0126745179 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 220 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/949595632761878422/F08C392E92C6AAE7A15BBCD0203D375136E65F2F/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761876244/B85D64D26E719E9AAE7A2B1E21324A3AE395A6E0/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: a6b095 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 1.14177442 + posY: 1.48847353 + posZ: 2.965122 + rotX: 0.00125302549 + rotY: 179.9999 + rotZ: 0.0005447161 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/949595632761878422/F08C392E92C6AAE7A15BBCD0203D375136E65F2F/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761876244/B85D64D26E719E9AAE7A2B1E21324A3AE395A6E0/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 222 +- 221 +- 220 +Description: Shadow Rails +GMNotes: '' +GUID: 704b7d +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Agenda +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.7247 + posY: 1.65664124 + posZ: 0.373499662 + rotX: 359.919739 + rotY: 270.019379 + rotZ: 0.016810298 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 4 Shadow Rails 3a3b5a/Deck Encounter ee15fa.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 4 Shadow Rails 3a3b5a/Deck Encounter ee15fa.yaml new file mode 100644 index 000000000..7270952b3 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 4 Shadow Rails 3a3b5a/Deck Encounter ee15fa.yaml @@ -0,0 +1,1304 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 515 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/924800625825559102/C3C13E9EE35451018D2880936F889E0D8309BFDB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761889070/DA01A9923E38E4072B341E148F0AA02BA1A3A706/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 8bd27b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -19.3867378 + posY: 1.51401269 + posZ: -63.25279 + rotX: 359.0237 + rotY: 270.02887 + rotZ: 181.770844 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 520 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/924800625825559102/C3C13E9EE35451018D2880936F889E0D8309BFDB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761889070/DA01A9923E38E4072B341E148F0AA02BA1A3A706/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 51e989 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.93540931 + posY: 1.47280872 + posZ: -2.10412741 + rotX: 0.0007880248 + rotY: 179.999985 + rotZ: -0.0007105841 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 520 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/924800625825559102/C3C13E9EE35451018D2880936F889E0D8309BFDB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761889070/DA01A9923E38E4072B341E148F0AA02BA1A3A706/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: e469b2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.08552861 + posY: 1.486747 + posZ: -2.25959587 + rotX: -0.0007481893 + rotY: 180.0 + rotZ: -0.000431649038 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 522 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/924800625825559102/C3C13E9EE35451018D2880936F889E0D8309BFDB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761889070/DA01A9923E38E4072B341E148F0AA02BA1A3A706/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: ab88d6 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.899371 + posY: 1.463572 + posZ: -2.3675673 + rotX: 0.000733661349 + rotY: 180.0 + rotZ: -0.000168888728 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 266960 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2669': + BackIsHidden: true + BackURL: https://i.imgur.com/h4om3TQ.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87098596225478692/B2438BEE2CDD4D172BAFA5DFDD15C0F29B079D4F/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Hex. Terror. + GMNotes: '' + GUID: 92e9e6 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Terror from Beyond + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -44.337944 + posY: 3.50864244 + posZ: -23.5282726 + rotX: 359.9201 + rotY: 269.9996 + rotZ: 0.01687768 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267642 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2676': + BackIsHidden: true + BackURL: https://i.imgur.com/h4om3TQ.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87098596225478692/B2438BEE2CDD4D172BAFA5DFDD15C0F29B079D4F/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Hex. + GMNotes: '' + GUID: '806202' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Visions of Futures Past + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -37.74113 + posY: 3.49832463 + posZ: -27.3282738 + rotX: 359.9201 + rotY: 269.999878 + rotZ: 0.01687804 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267642 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2676': + BackIsHidden: true + BackURL: https://i.imgur.com/h4om3TQ.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87098596225478692/B2438BEE2CDD4D172BAFA5DFDD15C0F29B079D4F/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Hex. + GMNotes: '' + GUID: c92694 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Visions of Futures Past + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -37.741127 + posY: 3.49944329 + posZ: -23.5282745 + rotX: 359.9201 + rotY: 269.9999 + rotZ: 0.016879987 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 266961 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2669': + BackIsHidden: true + BackURL: https://i.imgur.com/h4om3TQ.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87098596225478692/B2438BEE2CDD4D172BAFA5DFDD15C0F29B079D4F/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Hex. Obstacle. + GMNotes: '' + GUID: 5ffe9d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Arcane Barrier + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -44.33801 + posY: 3.50638413 + posZ: -31.1982727 + rotX: 359.9201 + rotY: 269.9977 + rotZ: 0.0168800782 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 522 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/924800625825559102/C3C13E9EE35451018D2880936F889E0D8309BFDB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761889070/DA01A9923E38E4072B341E148F0AA02BA1A3A706/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: a8cabf + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.122184 + posY: 1.48549974 + posZ: -2.34221268 + rotX: 0.0013583611 + rotY: 180.0 + rotZ: 2.94009478e-05 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 522 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/924800625825559102/C3C13E9EE35451018D2880936F889E0D8309BFDB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761889070/DA01A9923E38E4072B341E148F0AA02BA1A3A706/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: f7d796 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.122184 + posY: 1.43444967 + posZ: -2.34221148 + rotX: 0.00179209153 + rotY: 180.0 + rotZ: 4.018882e-05 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 522 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/924800625825559102/C3C13E9EE35451018D2880936F889E0D8309BFDB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761889070/DA01A9923E38E4072B341E148F0AA02BA1A3A706/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 6b3628 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.12218428 + posY: 1.44217789 + posZ: -2.34221148 + rotX: 0.00184404943 + rotY: 180.0 + rotZ: 4.32092529e-05 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267643 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2676': + BackIsHidden: true + BackURL: https://i.imgur.com/h4om3TQ.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87098596225478692/B2438BEE2CDD4D172BAFA5DFDD15C0F29B079D4F/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Hex. + GMNotes: '' + GUID: 7478da + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Beyond the Veil + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -44.33799 + posY: 3.513124 + posZ: -8.30827 + rotX: 359.9201 + rotY: 269.9996 + rotZ: 0.01687748 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 520 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/924800625825559102/C3C13E9EE35451018D2880936F889E0D8309BFDB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761889070/DA01A9923E38E4072B341E148F0AA02BA1A3A706/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 410fd7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.08553052 + posY: 1.47255111 + posZ: -2.259601 + rotX: -0.00206890819 + rotY: 179.999954 + rotZ: -0.00144347583 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 266961 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2669': + BackIsHidden: true + BackURL: https://i.imgur.com/h4om3TQ.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87098596225478692/B2438BEE2CDD4D172BAFA5DFDD15C0F29B079D4F/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Hex. Obstacle. + GMNotes: '' + GUID: 9408a1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Arcane Barrier + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -44.33794 + posY: 3.50526214 + posZ: -35.0082741 + rotX: 359.9201 + rotY: 269.999451 + rotZ: 0.016878143 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 515 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/924800625825559102/C3C13E9EE35451018D2880936F889E0D8309BFDB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761889070/DA01A9923E38E4072B341E148F0AA02BA1A3A706/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 795bd8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -19.7968311 + posY: 1.706357 + posZ: -62.3546524 + rotX: 0.0971272439 + rotY: 270.046936 + rotZ: 180.267441 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 266959 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2669': + BackIsHidden: true + BackURL: https://i.imgur.com/h4om3TQ.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87098596225478692/B2438BEE2CDD4D172BAFA5DFDD15C0F29B079D4F/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Hex. + GMNotes: '' + GUID: 98c40f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Pushed into the Beyond + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -37.7410774 + posY: 3.503925 + posZ: -8.308301 + rotX: 359.9201 + rotY: 269.9994 + rotZ: 0.01687559 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 266959 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2669': + BackIsHidden: true + BackURL: https://i.imgur.com/h4om3TQ.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87098596225478692/B2438BEE2CDD4D172BAFA5DFDD15C0F29B079D4F/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Hex. + GMNotes: '' + GUID: 9d74d1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Pushed into the Beyond + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -37.7411346 + posY: 3.502827 + posZ: -12.0382719 + rotX: 359.9201 + rotY: 269.999573 + rotZ: 0.0168772526 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 520 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/924800625825559102/C3C13E9EE35451018D2880936F889E0D8309BFDB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761889070/DA01A9923E38E4072B341E148F0AA02BA1A3A706/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: ada190 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.08552814 + posY: 1.47582567 + posZ: -2.259595 + rotX: -0.000648052956 + rotY: 180.0 + rotZ: -0.000410682958 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267643 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2676': + BackIsHidden: true + BackURL: https://i.imgur.com/h4om3TQ.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87098596225478692/B2438BEE2CDD4D172BAFA5DFDD15C0F29B079D4F/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Hex. + GMNotes: '' + GUID: 5a900b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Beyond the Veil + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -44.337944 + posY: 3.51202559 + posZ: -12.0382738 + rotX: 359.9201 + rotY: 269.999817 + rotZ: 0.0168775227 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 266960 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2669': + BackIsHidden: true + BackURL: https://i.imgur.com/h4om3TQ.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87098596225478692/B2438BEE2CDD4D172BAFA5DFDD15C0F29B079D4F/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Hex. Terror. + GMNotes: '' + GUID: ec982f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Terror from Beyond + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -44.3379478 + posY: 3.5075233 + posZ: -27.3282738 + rotX: 359.9201 + rotY: 269.999451 + rotZ: 0.0168771185 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267643 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2676': + BackIsHidden: true + BackURL: https://i.imgur.com/h4om3TQ.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87098596225478692/B2438BEE2CDD4D172BAFA5DFDD15C0F29B079D4F/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Hex. + GMNotes: '' + GUID: 4b840f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Beyond the Veil + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -44.3379631 + posY: 3.51088023 + posZ: -15.9286547 + rotX: 359.9201 + rotY: 269.999817 + rotZ: 0.0168775786 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 520 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/924800625825559102/C3C13E9EE35451018D2880936F889E0D8309BFDB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761889070/DA01A9923E38E4072B341E148F0AA02BA1A3A706/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 891dd6 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.08553 + posY: 1.32595062 + posZ: -2.25959849 + rotX: 0.0046174326 + rotY: 180.0 + rotZ: 0.00143394631 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 516 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/924800625825559102/C3C13E9EE35451018D2880936F889E0D8309BFDB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761889070/DA01A9923E38E4072B341E148F0AA02BA1A3A706/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 223e6d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -19.7943764 + posY: 1.37491286 + posZ: -61.84429 + rotX: 0.00890871 + rotY: 270.0521 + rotZ: 180.0244 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 515 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/924800625825559102/C3C13E9EE35451018D2880936F889E0D8309BFDB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761889070/DA01A9923E38E4072B341E148F0AA02BA1A3A706/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: bac473 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -19.7322121 + posY: 1.55983293 + posZ: -62.6359367 + rotX: 0.121660173 + rotY: 270.04776 + rotZ: 180.135757 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 515 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/924800625825559102/C3C13E9EE35451018D2880936F889E0D8309BFDB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761889070/DA01A9923E38E4072B341E148F0AA02BA1A3A706/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: c6cf29 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -19.8851585 + posY: 1.51530015 + posZ: -63.37976 + rotX: 0.9593405 + rotY: 270.0749 + rotZ: 181.94165 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 516 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/924800625825559102/C3C13E9EE35451018D2880936F889E0D8309BFDB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761889070/DA01A9923E38E4072B341E148F0AA02BA1A3A706/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 11b78d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -19.63887 + posY: 1.41001189 + posZ: -62.65031 + rotX: 359.9867 + rotY: 270.032227 + rotZ: 180.081116 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 515 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/924800625825559102/C3C13E9EE35451018D2880936F889E0D8309BFDB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761889070/DA01A9923E38E4072B341E148F0AA02BA1A3A706/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 11b78d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -20.0631847 + posY: 1.52217329 + posZ: -63.2369537 + rotX: 0.998999357 + rotY: 270.0743 + rotZ: 181.733856 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 522 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/924800625825559102/C3C13E9EE35451018D2880936F889E0D8309BFDB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761889070/DA01A9923E38E4072B341E148F0AA02BA1A3A706/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 730bb5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.122184 + posY: 1.48043835 + posZ: -2.34221268 + rotX: 0.00132112089 + rotY: 180.0 + rotZ: 2.66550014e-05 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 267642 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2676': + BackIsHidden: true + BackURL: https://i.imgur.com/h4om3TQ.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87098596225478692/B2438BEE2CDD4D172BAFA5DFDD15C0F29B079D4F/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Hex. + GMNotes: '' + GUID: 3e6fb1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Visions of Futures Past + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -37.7411346 + posY: 3.50058913 + posZ: -19.6382713 + rotX: 359.9201 + rotY: 269.999878 + rotZ: 0.01687554 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2669': + BackIsHidden: true + BackURL: https://i.imgur.com/h4om3TQ.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87098596225478692/B2438BEE2CDD4D172BAFA5DFDD15C0F29B079D4F/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + '2676': + BackIsHidden: true + BackURL: https://i.imgur.com/h4om3TQ.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87098596225478692/B2438BEE2CDD4D172BAFA5DFDD15C0F29B079D4F/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + '5': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/924800625825559102/C3C13E9EE35451018D2880936F889E0D8309BFDB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761889070/DA01A9923E38E4072B341E148F0AA02BA1A3A706/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 515 +- 520 +- 520 +- 522 +- 266960 +- 267642 +- 267642 +- 266961 +- 522 +- 522 +- 522 +- 267643 +- 520 +- 266961 +- 515 +- 266959 +- 266959 +- 520 +- 267643 +- 266960 +- 267643 +- 520 +- 516 +- 515 +- 515 +- 516 +- 515 +- 522 +- 267642 +Description: Shadow Rails +GMNotes: '' +GUID: ee15fa +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Encounter +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.92786837 + posY: 1.76638067 + posZ: 5.75714874 + rotX: 359.919739 + rotY: 270.000366 + rotZ: 180.016815 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 4 Shadow Rails 3a3b5a/Deck Locations 4f2ee1.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 4 Shadow Rails 3a3b5a/Deck Locations 4f2ee1.yaml new file mode 100644 index 000000000..7fa5320a8 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 4 Shadow Rails 3a3b5a/Deck Locations 4f2ee1.yaml @@ -0,0 +1,215 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 154 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/949595632761872450/59BE7A56D5E8FA2960DC2F8FCBC1FA464F90AA20/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761871063/A24C21A215D1AFC997B65C32C4B89664FACBBE3A/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 4110f7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -0.8802547 + posY: 1.44315863 + posZ: -2.5110414 + rotX: 0.000249809877 + rotY: 179.962082 + rotZ: 6.189258 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 155 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/949595632761872450/59BE7A56D5E8FA2960DC2F8FCBC1FA464F90AA20/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761871063/A24C21A215D1AFC997B65C32C4B89664FACBBE3A/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 2cead8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.4708651 + posY: 1.443443 + posZ: -2.51256466 + rotX: -0.000569780532 + rotY: 179.980423 + rotZ: 6.19512033 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 156 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/949595632761872450/59BE7A56D5E8FA2960DC2F8FCBC1FA464F90AA20/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761871063/A24C21A215D1AFC997B65C32C4B89664FACBBE3A/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: e3017e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 1.82694507 + posY: 1.44338083 + posZ: -2.51140428 + rotX: 0.000831763435 + rotY: 179.9648 + rotZ: 6.202886 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 157 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/949595632761872450/59BE7A56D5E8FA2960DC2F8FCBC1FA464F90AA20/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761871063/A24C21A215D1AFC997B65C32C4B89664FACBBE3A/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: f7581c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.18377352 + posY: 1.44333041 + posZ: -2.51175475 + rotX: -0.00174979446 + rotY: 180.000839 + rotZ: 6.190294 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/949595632761872450/59BE7A56D5E8FA2960DC2F8FCBC1FA464F90AA20/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761871063/A24C21A215D1AFC997B65C32C4B89664FACBBE3A/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 154 +- 155 +- 156 +- 157 +Description: Shadow Rails +GMNotes: '' +GUID: 4f2ee1 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Locations +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -17.12 + posY: 1.68345356 + posZ: -0.0299995691 + 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 The Side Missions 791837/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 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 4 Shadow Rails 3a3b5a/Deck Set Aside cba1b5.yaml new file mode 100644 index 000000000..0713ef19e --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 4 Shadow Rails 3a3b5a/Deck Set Aside cba1b5.yaml @@ -0,0 +1,530 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 408 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/945091491738376009/4A59A4951DA1B9CAD36DCA09B0C04539C7105434/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761887156/5B7A1753D4189BDD1D5C3629A24866C63AA58F26/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 560cb8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -1.42403281 + posY: 1.52633 + posZ: -77.01967 + rotX: 0.0153459916 + rotY: 269.999084 + rotZ: 180.010345 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 407 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/945091491738376009/4A59A4951DA1B9CAD36DCA09B0C04539C7105434/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761887156/5B7A1753D4189BDD1D5C3629A24866C63AA58F26/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: c068e1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.718781054 + posY: 1.47079527 + posZ: 1.64053643 + rotX: 0.0108104376 + rotY: 179.999542 + rotZ: -0.003399761 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 406 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/945091491738376009/4A59A4951DA1B9CAD36DCA09B0C04539C7105434/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761887156/5B7A1753D4189BDD1D5C3629A24866C63AA58F26/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 560cb8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.882723 + posY: 1.4883976 + posZ: 1.74056637 + rotX: 0.00200741529 + rotY: 180.00235 + rotZ: 0.0127442786 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 405 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/945091491738376009/4A59A4951DA1B9CAD36DCA09B0C04539C7105434/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761887156/5B7A1753D4189BDD1D5C3629A24866C63AA58F26/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 560cb8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.931865335 + posY: 1.47472155 + posZ: 1.59269464 + rotX: 0.003725915 + rotY: 179.999313 + rotZ: 0.0028593468 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 521 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/924800625825559102/C3C13E9EE35451018D2880936F889E0D8309BFDB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761889070/DA01A9923E38E4072B341E148F0AA02BA1A3A706/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 11b78d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -0.8477063 + posY: 1.51341975 + posZ: -73.53996 + rotX: 0.019967163 + rotY: 269.999329 + rotZ: 0.0166440327 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 266256 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2662': + BackIsHidden: true + BackURL: https://i.imgur.com/h4om3TQ.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87098596225478692/B2438BEE2CDD4D172BAFA5DFDD15C0F29B079D4F/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Human. Criminal. Syndicate. + GMNotes: '' + GUID: 846c53 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: O' Bannion's Thug + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 5.765654 + posY: 2.58842373 + posZ: -38.6685143 + rotX: 359.9201 + rotY: 269.993927 + rotZ: 0.0170403868 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 266256 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2662': + BackIsHidden: true + BackURL: https://i.imgur.com/h4om3TQ.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87098596225478692/B2438BEE2CDD4D172BAFA5DFDD15C0F29B079D4F/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Human. Criminal. Syndicate. + GMNotes: '' + GUID: 4d79ef + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: O' Bannion's Thug + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 8.321029 + posY: 2.58419132 + posZ: -40.9616737 + rotX: 359.9202 + rotY: 270.00058 + rotZ: 0.016459221 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 266257 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2662': + BackIsHidden: true + BackURL: https://i.imgur.com/h4om3TQ.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87098596225478692/B2438BEE2CDD4D172BAFA5DFDD15C0F29B079D4F/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Human. Criminal. Syndicate. + GMNotes: '' + GUID: a4a1c9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Mobster + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 5.12795973 + posY: 2.6731782 + posZ: -36.63426 + rotX: 0.000499244139 + rotY: 269.965363 + rotZ: 356.2167 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 266257 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2662': + BackIsHidden: true + BackURL: https://i.imgur.com/h4om3TQ.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87098596225478692/B2438BEE2CDD4D172BAFA5DFDD15C0F29B079D4F/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Human. Criminal. Syndicate. + GMNotes: '' + GUID: 764e4e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Mobster + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 5.19571447 + posY: 2.704708 + posZ: -35.88916 + rotX: 0.0005167465 + rotY: 269.995 + rotZ: 356.2167 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 266258 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2662': + BackIsHidden: true + BackURL: https://i.imgur.com/h4om3TQ.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87098596225478692/B2438BEE2CDD4D172BAFA5DFDD15C0F29B079D4F/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Tactic. + GMNotes: '' + GUID: e34f18 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Hunted Down + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 5.27424574 + posY: 2.856839 + posZ: -35.9848824 + rotX: 359.9844 + rotY: 269.9805 + rotZ: 356.2265 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 266258 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2662': + BackIsHidden: true + BackURL: https://i.imgur.com/h4om3TQ.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87098596225478692/B2438BEE2CDD4D172BAFA5DFDD15C0F29B079D4F/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Tactic. + GMNotes: '' + GUID: e37e63 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Hunted Down + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 7.295097 + posY: 2.73208213 + posZ: -40.23933 + rotX: 359.9199 + rotY: 269.996826 + rotZ: 0.01753158 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2662': + BackIsHidden: true + BackURL: https://i.imgur.com/h4om3TQ.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87098596225478692/B2438BEE2CDD4D172BAFA5DFDD15C0F29B079D4F/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + '4': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/945091491738376009/4A59A4951DA1B9CAD36DCA09B0C04539C7105434/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761887156/5B7A1753D4189BDD1D5C3629A24866C63AA58F26/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '5': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/924800625825559102/C3C13E9EE35451018D2880936F889E0D8309BFDB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761889070/DA01A9923E38E4072B341E148F0AA02BA1A3A706/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 408 +- 407 +- 406 +- 405 +- 521 +- 266256 +- 266256 +- 266257 +- 266257 +- 266258 +- 266258 +Description: Shadow Rails +GMNotes: '' +GUID: cba1b5 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Set Aside +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 1.69651186 + posY: 1.66507649 + posZ: 14.2787457 + rotX: 359.955139 + rotY: 224.999878 + rotZ: 180.068649 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 5 lair of the Cult 266dcb.ttslua b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 5 lair of the Cult 266dcb.ttslua new file mode 100644 index 000000000..4acf9ea11 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 5 lair of the Cult 266dcb.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 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 5 lair of the Cult 266dcb.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 5 lair of the Cult 266dcb.yaml new file mode 100644 index 000000000..a4601fd73 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 5 lair of the Cult 266dcb.yaml @@ -0,0 +1,48 @@ +Autoraise: true +ColorDiffuse: + b: 0.0 + g: 0.366520882 + r: 0.7058823 +ContainedObjects: +- !include 'Bag 5 lair of the Cult 266dcb/Deck Encounter 033f48.yaml' +- !include 'Bag 5 lair of the Cult 266dcb/Deck Set Aside encounter 040771.yaml' +- !include 'Bag 5 lair of the Cult 266dcb/Custom_Tile 0f956f.yaml' +- !include 'Bag 5 lair of the Cult 266dcb/Card lair of the Cult 331358.yaml' +- !include 'Bag 5 lair of the Cult 266dcb/Card 34fcda.yaml' +- !include 'Bag 5 lair of the Cult 266dcb/DeckCustom Locations 35e962.yaml' +- !include 'Bag 5 lair of the Cult 266dcb/Deck Agenda 4bc608.yaml' +- !include 'Bag 5 lair of the Cult 266dcb/Deck Act 638bd0.yaml' +- !include 'Bag 5 lair of the Cult 266dcb/Card 681d42.yaml' +- !include 'Bag 5 lair of the Cult 266dcb/Custom_Tile 7234af.yaml' +- !include 'Bag 5 lair of the Cult 266dcb/Deck dfe2ba.yaml' +- !include 'Bag 5 lair of the Cult 266dcb/Card e62de4.yaml' +- !include 'Bag 5 lair of the Cult 266dcb/Card lair of the Cult f7581c.yaml' +Description: The Approaching Storm +GMNotes: '' +GUID: 266dcb +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Bag 5 lair of the Cult 266dcb.ttslua' +LuaScriptState: '{"ml":{"033f48":{"lock":false,"pos":{"x":-3.9374,"y":1.7238,"z":5.7636},"rot":{"x":359.9198,"y":269.8966,"z":180.017}},"040771":{"lock":false,"pos":{"x":1.6845,"y":1.7504,"z":14.2929},"rot":{"x":359.9551,"y":225.009,"z":180.0686}},"0f956f":{"lock":false,"pos":{"x":-17.12,"y":1.602,"z":-11.51},"rot":{"x":0.0169,"y":179.9916,"z":0.08}},"331358":{"lock":false,"pos":{"x":-50.9244,"y":1.7294,"z":8.1784},"rot":{"x":359.9201,"y":269.9838,"z":180.0169}},"34fcda":{"lock":false,"pos":{"x":-17.1201,"y":1.6754,"z":-15.28},"rot":{"x":359.9201,"y":270.0149,"z":180.0168}},"35e962":{"lock":false,"pos":{"x":-11.5119,"y":1.6657,"z":7.9554},"rot":{"x":359.9201,"y":270.0151,"z":180.0168}},"4bc608":{"lock":false,"pos":{"x":-2.729,"y":1.6551,"z":0.3688},"rot":{"x":359.9198,"y":269.9243,"z":0.0169}},"638bd0":{"lock":false,"pos":{"x":-2.696,"y":1.655,"z":-5.0398},"rot":{"x":359.9197,"y":270.0367,"z":0.0168}},"681d42":{"lock":false,"pos":{"x":-17.12,"y":1.6799,"z":-0.03},"rot":{"x":359.9201,"y":270.0149,"z":180.0168}},"7234af":{"lock":false,"pos":{"x":-17.12,"y":1.6042,"z":-3.83},"rot":{"x":0.0169,"y":179.9917,"z":0.08}},"dfe2ba":{"lock":false,"pos":{"x":-11.7508,"y":1.6724,"z":11.1724},"rot":{"x":359.9201,"y":270,"z":0.0169}},"e62de4":{"lock":false,"pos":{"x":-17.1201,"y":1.6776,"z":-7.7},"rot":{"x":359.9201,"y":270.0149,"z":180.0168}},"f7581c":{"lock":false,"pos":{"x":-3.9631,"y":1.6585,"z":-10.4426},"rot":{"x":359.9197,"y":269.9838,"z":180.0169}}}}' +MaterialIndex: -1 +MeshIndex: -1 +Name: Bag +Nickname: 5 lair of the Cult +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 8.124103 + posY: 1.28464723 + posZ: -1.70360184 + rotX: 0.07995821 + rotY: 89.99619 + rotZ: 359.9831 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 5 lair of the Cult 266dcb/Card 34fcda.yaml new file mode 100644 index 000000000..136a6223d --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 5 lair of the Cult 266dcb/Card 34fcda.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 162 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/949595632761872450/59BE7A56D5E8FA2960DC2F8FCBC1FA464F90AA20/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761871063/A24C21A215D1AFC997B65C32C4B89664FACBBE3A/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 34fcda +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -17.1201 + posY: 1.67541027 + posZ: -15.2799988 + rotX: 359.9201 + rotY: 270.014923 + rotZ: 180.016846 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 5 lair of the Cult 266dcb/Card 681d42.yaml new file mode 100644 index 000000000..6825a72af --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 5 lair of the Cult 266dcb/Card 681d42.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 161 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/949595632761872450/59BE7A56D5E8FA2960DC2F8FCBC1FA464F90AA20/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761871063/A24C21A215D1AFC997B65C32C4B89664FACBBE3A/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 681d42 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -17.12 + posY: 1.67990065 + posZ: -0.0299996436 + rotX: 359.9201 + rotY: 270.0149 + rotZ: 180.016846 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 5 lair of the Cult 266dcb/Card e62de4.yaml new file mode 100644 index 000000000..220a8463f --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 5 lair of the Cult 266dcb/Card e62de4.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 163 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/949595632761872450/59BE7A56D5E8FA2960DC2F8FCBC1FA464F90AA20/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761871063/A24C21A215D1AFC997B65C32C4B89664FACBBE3A/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: e62de4 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -17.1201 + posY: 1.67764235 + posZ: -7.7 + rotX: 359.9201 + rotY: 270.014862 + rotZ: 180.016846 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 5 lair of the Cult 266dcb/Card lair of the Cult 331358.yaml new file mode 100644 index 000000000..1ede65605 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 5 lair of the Cult 266dcb/Card lair of the Cult 331358.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 158 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/949595632761872450/59BE7A56D5E8FA2960DC2F8FCBC1FA464F90AA20/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761871063/A24C21A215D1AFC997B65C32C4B89664FACBBE3A/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: '331358' +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: lair of the Cult +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -50.92441 + posY: 1.711286 + posZ: 8.178403 + rotX: 359.9201 + rotY: 269.983765 + rotZ: 180.016891 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 5 lair of the Cult 266dcb/Card lair of the Cult f7581c.yaml new file mode 100644 index 000000000..cdec40ca2 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 5 lair of the Cult 266dcb/Card lair of the Cult f7581c.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 158 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/949595632761872450/59BE7A56D5E8FA2960DC2F8FCBC1FA464F90AA20/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761871063/A24C21A215D1AFC997B65C32C4B89664FACBBE3A/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: f7581c +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: lair of the Cult +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.9631 + posY: 1.65848064 + posZ: -10.4426012 + rotX: 359.919739 + rotY: 269.983765 + rotZ: 180.016846 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 5 lair of the Cult 266dcb/Custom_Tile 0f956f.yaml new file mode 100644 index 000000000..3b6be8e62 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 5 lair of the Cult 266dcb/Custom_Tile 0f956f.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 0f956f +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.1199989 + posY: 1.60198379 + posZ: -11.5100012 + rotX: 0.0168836527 + rotY: 179.991653 + rotZ: 0.0799445137 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 5 lair of the Cult 266dcb/Custom_Tile 7234af.yaml new file mode 100644 index 000000000..e2049e9fc --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 5 lair of the Cult 266dcb/Custom_Tile 7234af.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 7234af +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.1199989 + posY: 1.60424519 + posZ: -3.8300004 + rotX: 0.0168835986 + rotY: 179.991623 + rotZ: 0.0799433 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 5 lair of the Cult 266dcb/Deck dfe2ba.yaml new file mode 100644 index 000000000..bdf5dd697 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 5 lair of the Cult 266dcb/Deck dfe2ba.yaml @@ -0,0 +1,179 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 304 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/949595632761884842/A79338A6A80E31D32969AFE1B414FCE03A6FE6D2/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761883941/5DA301AC91C81F2F3FEE7FFE0E03E6AE999EBE8A/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 31da7c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -11.5425806 + posY: 1.67346954 + posZ: 14.2990456 + rotX: 359.917419 + rotY: 269.999878 + rotZ: 0.0157716721 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 160 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/949595632761872450/59BE7A56D5E8FA2960DC2F8FCBC1FA464F90AA20/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761871063/A24C21A215D1AFC997B65C32C4B89664FACBBE3A/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 74fcce + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -11.2849941 + posY: 1.81855822 + posZ: 14.3592472 + rotX: 359.930939 + rotY: 270.000031 + rotZ: 0.00479334546 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 159 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/949595632761872450/59BE7A56D5E8FA2960DC2F8FCBC1FA464F90AA20/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761871063/A24C21A215D1AFC997B65C32C4B89664FACBBE3A/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: cbc1f0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -11.8763876 + posY: 1.83693647 + posZ: 14.6223345 + rotX: 359.918823 + rotY: 269.999634 + rotZ: 0.01335829 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/949595632761872450/59BE7A56D5E8FA2960DC2F8FCBC1FA464F90AA20/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761871063/A24C21A215D1AFC997B65C32C4B89664FACBBE3A/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + '3': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/949595632761884842/A79338A6A80E31D32969AFE1B414FCE03A6FE6D2/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761883941/5DA301AC91C81F2F3FEE7FFE0E03E6AE999EBE8A/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 304 +- 160 +- 159 +Description: '' +GMNotes: '' +GUID: dfe2ba +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -11.7507992 + posY: 1.67242932 + posZ: 11.1723995 + rotX: 359.9201 + rotY: 269.999969 + rotZ: 0.0168764386 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 5 lair of the Cult 266dcb/Deck Act 638bd0.yaml new file mode 100644 index 000000000..f4a40a2fe --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 5 lair of the Cult 266dcb/Deck Act 638bd0.yaml @@ -0,0 +1,172 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 225 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/949595632761878422/F08C392E92C6AAE7A15BBCD0203D375136E65F2F/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761876244/B85D64D26E719E9AAE7A2B1E21324A3AE395A6E0/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: a6b095 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 1.40911758 + posY: 1.3259604 + posZ: 1.934849 + rotX: 0.00416138349 + rotY: 180.000046 + rotZ: 0.0006353596 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 224 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/949595632761878422/F08C392E92C6AAE7A15BBCD0203D375136E65F2F/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761876244/B85D64D26E719E9AAE7A2B1E21324A3AE395A6E0/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 66f1d2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 1.23082387 + posY: 1.47075582 + posZ: 1.91340125 + rotX: -0.00156914012 + rotY: 180.000214 + rotZ: -0.00411950145 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 223 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/949595632761878422/F08C392E92C6AAE7A15BBCD0203D375136E65F2F/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761876244/B85D64D26E719E9AAE7A2B1E21324A3AE395A6E0/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: a6b095 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 1.40581083 + posY: 1.48838627 + posZ: 1.94057453 + rotX: -0.00144560542 + rotY: 180.00238 + rotZ: -0.00359328184 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/949595632761878422/F08C392E92C6AAE7A15BBCD0203D375136E65F2F/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761876244/B85D64D26E719E9AAE7A2B1E21324A3AE395A6E0/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 225 +- 224 +- 223 +Description: lair of the Cult +GMNotes: '' +GUID: 638bd0 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Act +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.69600034 + posY: 1.65501034 + posZ: -5.0398016 + rotX: 359.919739 + rotY: 270.036621 + rotZ: 0.0167862475 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 5 lair of the Cult 266dcb/Deck Agenda 4bc608.yaml new file mode 100644 index 000000000..698119b31 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 5 lair of the Cult 266dcb/Deck Agenda 4bc608.yaml @@ -0,0 +1,215 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 229 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/949595632761878422/F08C392E92C6AAE7A15BBCD0203D375136E65F2F/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761876244/B85D64D26E719E9AAE7A2B1E21324A3AE395A6E0/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: a6b095 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 1.36132085 + posY: 1.32594085 + posZ: 2.36685729 + rotX: 0.004986242 + rotY: 179.9999 + rotZ: 0.0007813986 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 228 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/949595632761878422/F08C392E92C6AAE7A15BBCD0203D375136E65F2F/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761876244/B85D64D26E719E9AAE7A2B1E21324A3AE395A6E0/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 51bac7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 1.46837151 + posY: 1.4706943 + posZ: 2.389824 + rotX: -0.00228646072 + rotY: 179.999847 + rotZ: 0.0005528071 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 227 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/949595632761878422/F08C392E92C6AAE7A15BBCD0203D375136E65F2F/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761876244/B85D64D26E719E9AAE7A2B1E21324A3AE395A6E0/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: a6b095 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 1.36479306 + posY: 1.48847592 + posZ: 2.59128928 + rotX: 0.00130233529 + rotY: 179.999908 + rotZ: 4.057889e-05 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 226 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/949595632761878422/F08C392E92C6AAE7A15BBCD0203D375136E65F2F/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761876244/B85D64D26E719E9AAE7A2B1E21324A3AE395A6E0/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: a6b095 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 1.083021 + posY: 1.47481585 + posZ: 2.28499317 + rotX: 0.0009308213 + rotY: 179.999908 + rotZ: -3.69314948e-05 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/949595632761878422/F08C392E92C6AAE7A15BBCD0203D375136E65F2F/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761876244/B85D64D26E719E9AAE7A2B1E21324A3AE395A6E0/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 229 +- 228 +- 227 +- 226 +Description: lair of the Cult +GMNotes: '' +GUID: 4bc608 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Agenda +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.72900033 + posY: 1.655143 + posZ: 0.3687994 + rotX: 359.919769 + rotY: 269.9243 + rotZ: 0.016943587 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 5 lair of the Cult 266dcb/Deck Encounter 033f48.yaml new file mode 100644 index 000000000..de66d189b --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 5 lair of the Cult 266dcb/Deck Encounter 033f48.yaml @@ -0,0 +1,935 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 501 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/924800625825559102/C3C13E9EE35451018D2880936F889E0D8309BFDB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761889070/DA01A9923E38E4072B341E148F0AA02BA1A3A706/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 9ad58f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -29.4089584 + posY: 1.42222691 + posZ: -58.3754272 + rotX: 0.0168452617 + rotY: 270.083862 + rotZ: 180.092438 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 501 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/924800625825559102/C3C13E9EE35451018D2880936F889E0D8309BFDB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761889070/DA01A9923E38E4072B341E148F0AA02BA1A3A706/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: f882ec + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -28.35116 + posY: 1.37283385 + posZ: -58.585762 + rotX: 0.0151941692 + rotY: 270.083771 + rotZ: 180.021072 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 501 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/924800625825559102/C3C13E9EE35451018D2880936F889E0D8309BFDB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761889070/DA01A9923E38E4072B341E148F0AA02BA1A3A706/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: b3aec3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -29.5229359 + posY: 1.71988416 + posZ: -59.4023056 + rotX: 0.283244938 + rotY: 270.062744 + rotZ: 182.6595 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 501 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/924800625825559102/C3C13E9EE35451018D2880936F889E0D8309BFDB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761889070/DA01A9923E38E4072B341E148F0AA02BA1A3A706/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: e046a3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -28.8622189 + posY: 1.72091126 + posZ: -59.7416649 + rotX: 0.00554814143 + rotY: 270.0884 + rotZ: 182.273117 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 501 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/924800625825559102/C3C13E9EE35451018D2880936F889E0D8309BFDB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761889070/DA01A9923E38E4072B341E148F0AA02BA1A3A706/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: d9ceb2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -28.81821 + posY: 1.50152028 + posZ: -60.0372429 + rotX: 0.008712547 + rotY: 270.095947 + rotZ: 185.615112 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 515 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/924800625825559102/C3C13E9EE35451018D2880936F889E0D8309BFDB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761889070/DA01A9923E38E4072B341E148F0AA02BA1A3A706/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 11b78d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -20.0631847 + posY: 1.52217329 + posZ: -63.2369537 + rotX: 0.998999357 + rotY: 270.0743 + rotZ: 181.733856 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 515 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/924800625825559102/C3C13E9EE35451018D2880936F889E0D8309BFDB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761889070/DA01A9923E38E4072B341E148F0AA02BA1A3A706/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: c6cf29 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -19.8851585 + posY: 1.51530015 + posZ: -63.37976 + rotX: 0.9593405 + rotY: 270.0749 + rotZ: 181.94165 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 515 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/924800625825559102/C3C13E9EE35451018D2880936F889E0D8309BFDB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761889070/DA01A9923E38E4072B341E148F0AA02BA1A3A706/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 8bd27b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -19.3867378 + posY: 1.51401269 + posZ: -63.25279 + rotX: 359.0237 + rotY: 270.02887 + rotZ: 181.770844 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 515 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/924800625825559102/C3C13E9EE35451018D2880936F889E0D8309BFDB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761889070/DA01A9923E38E4072B341E148F0AA02BA1A3A706/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 795bd8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -19.7968311 + posY: 1.706357 + posZ: -62.3546524 + rotX: 0.0971272439 + rotY: 270.046936 + rotZ: 180.267441 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 515 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/924800625825559102/C3C13E9EE35451018D2880936F889E0D8309BFDB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761889070/DA01A9923E38E4072B341E148F0AA02BA1A3A706/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: bac473 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -19.7322121 + posY: 1.55983293 + posZ: -62.6359367 + rotX: 0.121660173 + rotY: 270.04776 + rotZ: 180.135757 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 516 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/924800625825559102/C3C13E9EE35451018D2880936F889E0D8309BFDB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761889070/DA01A9923E38E4072B341E148F0AA02BA1A3A706/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 11b78d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -19.63887 + posY: 1.41001189 + posZ: -62.65031 + rotX: 359.9867 + rotY: 270.032227 + rotZ: 180.081116 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 516 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/924800625825559102/C3C13E9EE35451018D2880936F889E0D8309BFDB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761889070/DA01A9923E38E4072B341E148F0AA02BA1A3A706/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 223e6d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -19.7943764 + posY: 1.37491286 + posZ: -61.84429 + rotX: 0.00890871 + rotY: 270.0521 + rotZ: 180.0244 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3625 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: 6f5b7b + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Mysterious Chanting + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -19.6800156 + posY: 1.38250053 + posZ: -1.33474028 + rotX: 0.0229158234 + rotY: 270.019867 + rotZ: 179.95369 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3625 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: df668b + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Mysterious Chanting + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -19.5443554 + posY: 1.2345134 + posZ: -1.46994078 + rotX: -0.00131354737 + rotY: 270.020233 + rotZ: 180.000565 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3624 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Cultist. + GMNotes: '' + GUID: 159f90 + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Wizard of the Order + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -20.0503387 + posY: 1.23431253 + posZ: -4.35796 + rotX: 359.9875 + rotY: 270.082672 + rotZ: 179.956573 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3623 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Cultist. + GMNotes: '' + GUID: c70e63 + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Acolyte + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -19.79794 + posY: 1.39947391 + posZ: -8.725274 + rotX: 359.928955 + rotY: 270.019775 + rotZ: 180.117462 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3623 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Cultist. + GMNotes: '' + GUID: 4072d7 + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Acolyte + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -19.9280281 + posY: 1.38005173 + posZ: -8.697902 + rotX: 359.993225 + rotY: 270.0205 + rotZ: 180.0073 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3623 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Cultist. + GMNotes: '' + GUID: c70e63 + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Acolyte + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -20.0444756 + posY: 1.23453021 + posZ: -8.332029 + rotX: -0.000678319542 + rotY: 270.020325 + rotZ: 180.000427 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3613 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Creature. + GMNotes: '' + GUID: 56e5db + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Swarm of Rats + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -19.7119656 + posY: 1.28121269 + posZ: 15.0893879 + rotX: 0.004087732 + rotY: 269.994171 + rotZ: -0.0020856997 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3613 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Creature. + GMNotes: '' + GUID: 7381cd + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Swarm of Rats + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -19.6142921 + posY: 1.42705274 + posZ: 15.2051964 + rotX: 0.012312145 + rotY: 269.997284 + rotZ: 0.0359485969 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3613 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Creature. + GMNotes: '' + GUID: bbc9d1 + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Swarm of Rats + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -18.9998322 + posY: 1.23161483 + posZ: 14.9262657 + rotX: -0.00489453 + rotY: 270.002747 + rotZ: -0.00167015032 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '5': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/924800625825559102/C3C13E9EE35451018D2880936F889E0D8309BFDB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761889070/DA01A9923E38E4072B341E148F0AA02BA1A3A706/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 501 +- 501 +- 501 +- 501 +- 501 +- 515 +- 515 +- 515 +- 515 +- 515 +- 516 +- 516 +- 3625 +- 3625 +- 3624 +- 3623 +- 3623 +- 3623 +- 3613 +- 3613 +- 3613 +Description: lair of the Cult +GMNotes: '' +GUID: 033f48 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Encounter +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.9374 + posY: 1.72376037 + posZ: 5.763601 + rotX: 359.919769 + rotY: 269.896545 + rotZ: 180.016968 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 5 lair of the Cult 266dcb/Deck Set Aside encounter 040771.yaml new file mode 100644 index 000000000..b11b016c2 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 5 lair of the Cult 266dcb/Deck Set Aside encounter 040771.yaml @@ -0,0 +1,1204 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 524 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/924800625825559102/C3C13E9EE35451018D2880936F889E0D8309BFDB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761889070/DA01A9923E38E4072B341E148F0AA02BA1A3A706/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 147d52 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 4.806625 + posY: 1.38207614 + posZ: -58.71377 + rotX: 0.0185934268 + rotY: 270.007782 + rotZ: 0.0160137787 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 524 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/924800625825559102/C3C13E9EE35451018D2880936F889E0D8309BFDB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761889070/DA01A9923E38E4072B341E148F0AA02BA1A3A706/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: c79ebf + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 4.53698254 + posY: 1.52712286 + posZ: -58.9051247 + rotX: 0.009087917 + rotY: 270.009338 + rotZ: 0.0213419385 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 524 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/924800625825559102/C3C13E9EE35451018D2880936F889E0D8309BFDB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761889070/DA01A9923E38E4072B341E148F0AA02BA1A3A706/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 1c318a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 4.71850967 + posY: 1.54462874 + posZ: -58.9674835 + rotX: 0.0203270577 + rotY: 270.004883 + rotZ: 0.0180321168 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 523 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/924800625825559102/C3C13E9EE35451018D2880936F889E0D8309BFDB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761889070/DA01A9923E38E4072B341E148F0AA02BA1A3A706/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 11b78d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -4.96008444 + posY: 1.78337348 + posZ: -79.62752 + rotX: 0.0165553242 + rotY: 269.9958 + rotZ: 0.0416381955 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 512 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/924800625825559102/C3C13E9EE35451018D2880936F889E0D8309BFDB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761889070/DA01A9923E38E4072B341E148F0AA02BA1A3A706/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 59a5b6 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -21.2883682 + posY: 1.52512991 + posZ: -64.35317 + rotX: 0.0219048429 + rotY: 270.2441 + rotZ: 180.008347 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 512 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/924800625825559102/C3C13E9EE35451018D2880936F889E0D8309BFDB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761889070/DA01A9923E38E4072B341E148F0AA02BA1A3A706/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: aba734 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -21.6771889 + posY: 1.526294 + posZ: -63.80967 + rotX: 0.000421047152 + rotY: 270.244263 + rotZ: 179.9503 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 512 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/924800625825559102/C3C13E9EE35451018D2880936F889E0D8309BFDB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761889070/DA01A9923E38E4072B341E148F0AA02BA1A3A706/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: '290196' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -22.27814 + posY: 1.52069819 + posZ: -64.45097 + rotX: 1.2304666 + rotY: 270.2807 + rotZ: 182.075378 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 512 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/924800625825559102/C3C13E9EE35451018D2880936F889E0D8309BFDB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761889070/DA01A9923E38E4072B341E148F0AA02BA1A3A706/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 35b546 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -21.4176025 + posY: 1.52268314 + posZ: -63.9953575 + rotX: 0.02604787 + rotY: 270.243378 + rotZ: 179.944382 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 512 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/924800625825559102/C3C13E9EE35451018D2880936F889E0D8309BFDB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761889070/DA01A9923E38E4072B341E148F0AA02BA1A3A706/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 9e9e59 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -21.6217823 + posY: 1.37375522 + posZ: -63.7048721 + rotX: 0.0143707749 + rotY: 270.2439 + rotZ: 180.019363 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 511 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/924800625825559102/C3C13E9EE35451018D2880936F889E0D8309BFDB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761889070/DA01A9923E38E4072B341E148F0AA02BA1A3A706/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 74f7f0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -20.9971371 + posY: 1.84044766 + posZ: -72.58087 + rotX: 0.21728079 + rotY: 270.164551 + rotZ: 186.612915 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 511 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/924800625825559102/C3C13E9EE35451018D2880936F889E0D8309BFDB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761889070/DA01A9923E38E4072B341E148F0AA02BA1A3A706/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: d8898b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -20.7929382 + posY: 1.77574766 + posZ: -73.1488342 + rotX: 0.00705088954 + rotY: 270.237549 + rotZ: 186.576736 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 511 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/924800625825559102/C3C13E9EE35451018D2880936F889E0D8309BFDB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761889070/DA01A9923E38E4072B341E148F0AA02BA1A3A706/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: f19fca + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -20.98784 + posY: 1.71984744 + posZ: -73.49968 + rotX: 0.4688448 + rotY: 270.289124 + rotZ: 187.618 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 511 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/924800625825559102/C3C13E9EE35451018D2880936F889E0D8309BFDB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761889070/DA01A9923E38E4072B341E148F0AA02BA1A3A706/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: bfd162 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -20.7681484 + posY: 1.67908978 + posZ: -73.54637 + rotX: 0.06369505 + rotY: 270.246033 + rotZ: 183.3295 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 514 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/924800625825559102/C3C13E9EE35451018D2880936F889E0D8309BFDB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761889070/DA01A9923E38E4072B341E148F0AA02BA1A3A706/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 9d6b09 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -20.3078957 + posY: 1.63799345 + posZ: -73.87794 + rotX: 0.0409945846 + rotY: 270.240082 + rotZ: 183.729309 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 514 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/924800625825559102/C3C13E9EE35451018D2880936F889E0D8309BFDB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761889070/DA01A9923E38E4072B341E148F0AA02BA1A3A706/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: b2e9d8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -20.7883511 + posY: 1.62315071 + posZ: -73.9645 + rotX: 0.05985595 + rotY: 270.251648 + rotZ: 183.77681 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 514 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/924800625825559102/C3C13E9EE35451018D2880936F889E0D8309BFDB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761889070/DA01A9923E38E4072B341E148F0AA02BA1A3A706/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: e08ba0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -20.8013134 + posY: 1.69972539 + posZ: -72.71083 + rotX: 0.113013446 + rotY: 270.214783 + rotZ: 182.3934 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 514 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/924800625825559102/C3C13E9EE35451018D2880936F889E0D8309BFDB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761889070/DA01A9923E38E4072B341E148F0AA02BA1A3A706/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: '406991' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -20.8643513 + posY: 1.90810585 + posZ: -73.53735 + rotX: 0.06675487 + rotY: 270.24707 + rotZ: 181.955185 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 514 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/924800625825559102/C3C13E9EE35451018D2880936F889E0D8309BFDB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761889070/DA01A9923E38E4072B341E148F0AA02BA1A3A706/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 917cda + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -20.7112236 + posY: 1.74148774 + posZ: -73.379776 + rotX: 0.06308386 + rotY: 270.240784 + rotZ: 183.388321 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 513 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/924800625825559102/C3C13E9EE35451018D2880936F889E0D8309BFDB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761889070/DA01A9923E38E4072B341E148F0AA02BA1A3A706/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 7cfc42 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -20.1863728 + posY: 1.47912848 + posZ: -73.15372 + rotX: 0.352211326 + rotY: 270.272583 + rotZ: 181.54808 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 513 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/924800625825559102/C3C13E9EE35451018D2880936F889E0D8309BFDB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761889070/DA01A9923E38E4072B341E148F0AA02BA1A3A706/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: e84a81 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -20.6905079 + posY: 1.5387094 + posZ: -72.6879654 + rotX: 359.987762 + rotY: 270.365845 + rotZ: 182.689651 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 511 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/924800625825559102/C3C13E9EE35451018D2880936F889E0D8309BFDB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761889070/DA01A9923E38E4072B341E148F0AA02BA1A3A706/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 766b79 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -21.5457268 + posY: 1.62431061 + posZ: -71.70133 + rotX: 0.09125777 + rotY: 270.1123 + rotZ: 172.2589 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 513 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/924800625825559102/C3C13E9EE35451018D2880936F889E0D8309BFDB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761889070/DA01A9923E38E4072B341E148F0AA02BA1A3A706/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: '815946' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -21.1578159 + posY: 1.682726 + posZ: -72.3849 + rotX: 0.09290982 + rotY: 270.256836 + rotZ: 172.25412 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 513 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/924800625825559102/C3C13E9EE35451018D2880936F889E0D8309BFDB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761889070/DA01A9923E38E4072B341E148F0AA02BA1A3A706/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 2244da + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -20.7547321 + posY: 1.60512626 + posZ: -71.78333 + rotX: 0.09139811 + rotY: 270.222534 + rotZ: 182.435486 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 513 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/924800625825559102/C3C13E9EE35451018D2880936F889E0D8309BFDB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761889070/DA01A9923E38E4072B341E148F0AA02BA1A3A706/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: efbaec + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -20.7200775 + posY: 1.5252496 + posZ: -71.68511 + rotX: 0.0169821754 + rotY: 270.244141 + rotZ: 180.028381 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 513 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/924800625825559102/C3C13E9EE35451018D2880936F889E0D8309BFDB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761889070/DA01A9923E38E4072B341E148F0AA02BA1A3A706/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 782f4e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -20.2383614 + posY: 1.53296816 + posZ: -72.53232 + rotX: 0.73143363 + rotY: 270.261749 + rotZ: 181.282654 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 513 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/924800625825559102/C3C13E9EE35451018D2880936F889E0D8309BFDB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761889070/DA01A9923E38E4072B341E148F0AA02BA1A3A706/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: '173716' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -20.14088 + posY: 1.521288 + posZ: -72.4157944 + rotX: 0.0154000875 + rotY: 270.2443 + rotZ: 180.03891 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 513 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/924800625825559102/C3C13E9EE35451018D2880936F889E0D8309BFDB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761889070/DA01A9923E38E4072B341E148F0AA02BA1A3A706/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 56fa0c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -20.1237125 + posY: 1.37194133 + posZ: -72.06247 + rotX: 0.01837676 + rotY: 270.2442 + rotZ: 180.018021 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '5': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/924800625825559102/C3C13E9EE35451018D2880936F889E0D8309BFDB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761889070/DA01A9923E38E4072B341E148F0AA02BA1A3A706/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 524 +- 524 +- 524 +- 523 +- 512 +- 512 +- 512 +- 512 +- 512 +- 511 +- 511 +- 511 +- 511 +- 514 +- 514 +- 514 +- 514 +- 514 +- 513 +- 513 +- 511 +- 513 +- 513 +- 513 +- 513 +- 513 +- 513 +Description: '' +GMNotes: '' +GUID: '040771' +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Set Aside encounter +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 1.68450069 + posY: 1.75036883 + posZ: 14.2929 + rotX: 359.955139 + rotY: 225.009018 + rotZ: 180.068649 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 5 lair of the Cult 266dcb/DeckCustom Locations 35e962.yaml new file mode 100644 index 000000000..61a9b3efd --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 5 lair of the Cult 266dcb/DeckCustom Locations 35e962.yaml @@ -0,0 +1,362 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 302 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/949595632761884842/A79338A6A80E31D32969AFE1B414FCE03A6FE6D2/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761883941/5DA301AC91C81F2F3FEE7FFE0E03E6AE999EBE8A/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 5e8d0d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -12.36683 + posY: 1.83671367 + posZ: 8.505081 + rotX: 359.9226 + rotY: 270.003967 + rotZ: 180.01181 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 301 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/949595632761884842/A79338A6A80E31D32969AFE1B414FCE03A6FE6D2/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761883941/5DA301AC91C81F2F3FEE7FFE0E03E6AE999EBE8A/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 9c3be1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.57674718 + posY: 1.32601845 + posZ: -0.0549732074 + rotX: 0.012996749 + rotY: 180.000961 + rotZ: 0.0160987116 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 300 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/949595632761884842/A79338A6A80E31D32969AFE1B414FCE03A6FE6D2/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761883941/5DA301AC91C81F2F3FEE7FFE0E03E6AE999EBE8A/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 19ef09 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.24705935 + posY: 1.32568967 + posZ: 4.213937 + rotX: 0.016526442 + rotY: 180.000168 + rotZ: 0.004516395 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 303 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/949595632761884842/A79338A6A80E31D32969AFE1B414FCE03A6FE6D2/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761883941/5DA301AC91C81F2F3FEE7FFE0E03E6AE999EBE8A/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 9cd1e0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 5.618484 + posY: 1.326844 + posZ: 3.69401 + rotX: 359.992249 + rotY: 179.982376 + rotZ: 0.0474610068 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 164 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: f7581c + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 4.37476046e-08 + posY: 1.04493034 + posZ: 1.44019054e-07 + rotX: 1.01444812e-06 + rotY: 180.0 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 165 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: f7581c + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 4.37476046e-08 + posY: 1.04493034 + posZ: 1.44019054e-07 + rotX: 1.01444812e-06 + rotY: 180.0 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 166 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: f7581c + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 4.37476046e-08 + posY: 1.04493034 + posZ: 1.44019054e-07 + rotX: 1.01444812e-06 + rotY: 180.0 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 167 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: f7581c + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 4.37476046e-08 + posY: 1.04493034 + posZ: 1.44019054e-07 + rotX: 1.01444812e-06 + rotY: 180.0 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/949595632761872450/59BE7A56D5E8FA2960DC2F8FCBC1FA464F90AA20/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761871063/A24C21A215D1AFC997B65C32C4B89664FACBBE3A/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + '3': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/949595632761884842/A79338A6A80E31D32969AFE1B414FCE03A6FE6D2/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761883941/5DA301AC91C81F2F3FEE7FFE0E03E6AE999EBE8A/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 302 +- 301 +- 300 +- 303 +- 164 +- 165 +- 166 +- 167 +Description: '' +GMNotes: '' +GUID: 35e962 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: DeckCustom +Nickname: Locations +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -11.5119 + posY: 1.66570258 + posZ: 7.95539951 + rotX: 359.9201 + rotY: 270.015045 + rotZ: 180.016846 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 6 Domain of Baal 84cdaf.ttslua b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 6 Domain of Baal 84cdaf.ttslua new file mode 100644 index 000000000..4acf9ea11 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 6 Domain of Baal 84cdaf.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 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 6 Domain of Baal 84cdaf.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 6 Domain of Baal 84cdaf.yaml new file mode 100644 index 000000000..48500d754 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 6 Domain of Baal 84cdaf.yaml @@ -0,0 +1,46 @@ +Autoraise: true +ColorDiffuse: + b: 0.0 + g: 0.366520882 + r: 0.7058823 +ContainedObjects: +- !include 'Bag 6 Domain of Baal 84cdaf/Deck Set Aside 10ce87.yaml' +- !include 'Bag 6 Domain of Baal 84cdaf/Card scenario 19ef09.yaml' +- !include 'Bag 6 Domain of Baal 84cdaf/Card 20b6d1.yaml' +- !include 'Bag 6 Domain of Baal 84cdaf/Custom_Tile 22f69c.yaml' +- !include 'Bag 6 Domain of Baal 84cdaf/Deck Agenda 472846.yaml' +- !include 'Bag 6 Domain of Baal 84cdaf/Card 4e8a38.yaml' +- !include 'Bag 6 Domain of Baal 84cdaf/Custom_Tile 7234af.yaml' +- !include 'Bag 6 Domain of Baal 84cdaf/Deck Encounter 945cf2.yaml' +- !include 'Bag 6 Domain of Baal 84cdaf/Card scenario 9cc274.yaml' +- !include 'Bag 6 Domain of Baal 84cdaf/Card f42e2f.yaml' +- !include 'Bag 6 Domain of Baal 84cdaf/Deck Act f49c18.yaml' +Description: The Approaching Storm +GMNotes: '' +GUID: 84cdaf +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Bag 6 Domain of Baal 84cdaf.ttslua' +LuaScriptState: '{"ml":{"10ce87":{"lock":false,"pos":{"x":1.6958,"y":1.6597,"z":14.2782},"rot":{"x":359.9552,"y":224.9984,"z":180.0687}},"19ef09":{"lock":false,"pos":{"x":-3.956,"y":1.6585,"z":-10.4412},"rot":{"x":359.9197,"y":270.0216,"z":180.0168}},"20b6d1":{"lock":false,"pos":{"x":-17.1201,"y":1.6754,"z":-15.28},"rot":{"x":359.9201,"y":270.0044,"z":180.0169}},"22f69c":{"lock":false,"pos":{"x":-17.12,"y":1.602,"z":-11.51},"rot":{"x":0.0168,"y":180.0165,"z":0.08}},"472846":{"lock":false,"pos":{"x":-2.7269,"y":1.6551,"z":0.3701},"rot":{"x":359.9197,"y":270.0139,"z":0.0168}},"4e8a38":{"lock":false,"pos":{"x":-17.12,"y":1.6799,"z":-0.03},"rot":{"x":359.9201,"y":270.0242,"z":180.0168}},"7234af":{"lock":false,"pos":{"x":-17.12,"y":1.6042,"z":-3.83},"rot":{"x":0.0168,"y":180.0166,"z":0.08}},"945cf2":{"lock":false,"pos":{"x":-3.942,"y":1.8304,"z":5.7487},"rot":{"x":359.9197,"y":270.0869,"z":180.0167}},"9cc274":{"lock":false,"pos":{"x":-50.9244,"y":1.7294,"z":8.1784},"rot":{"x":359.9201,"y":270.0216,"z":180.0168}},"f42e2f":{"lock":false,"pos":{"x":-17.1201,"y":1.6776,"z":-7.7},"rot":{"x":359.9201,"y":270.0048,"z":180.0169}},"f49c18":{"lock":false,"pos":{"x":-2.6925,"y":1.6543,"z":-5.0473},"rot":{"x":359.9197,"y":269.9846,"z":0.0169}}}}' +MaterialIndex: -1 +MeshIndex: -1 +Name: Bag +Nickname: 6 Domain of Baal +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 8.037876 + posY: 1.28343916 + posZ: -6.215186 + rotX: 0.07996433 + rotY: 89.99809 + rotZ: 359.9831 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 6 Domain of Baal 84cdaf/Card 20b6d1.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 6 Domain of Baal 84cdaf/Card 20b6d1.yaml new file mode 100644 index 000000000..37ea9d194 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 6 Domain of Baal 84cdaf/Card 20b6d1.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 309 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '3': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/949595632761884842/A79338A6A80E31D32969AFE1B414FCE03A6FE6D2/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761883941/5DA301AC91C81F2F3FEE7FFE0E03E6AE999EBE8A/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 20b6d1 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -17.1201 + posY: 1.67541027 + posZ: -15.28 + rotX: 359.9201 + rotY: 270.004456 + rotZ: 180.016861 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 6 Domain of Baal 84cdaf/Card 4e8a38.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 6 Domain of Baal 84cdaf/Card 4e8a38.yaml new file mode 100644 index 000000000..657f620f6 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 6 Domain of Baal 84cdaf/Card 4e8a38.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 314 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '3': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/949595632761884842/A79338A6A80E31D32969AFE1B414FCE03A6FE6D2/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761883941/5DA301AC91C81F2F3FEE7FFE0E03E6AE999EBE8A/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 4e8a38 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -17.12 + posY: 1.67990077 + posZ: -0.0299997516 + rotX: 359.9201 + rotY: 270.024261 + rotZ: 180.01683 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 6 Domain of Baal 84cdaf/Card f42e2f.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 6 Domain of Baal 84cdaf/Card f42e2f.yaml new file mode 100644 index 000000000..e0b8c4832 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 6 Domain of Baal 84cdaf/Card f42e2f.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 311 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '3': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/949595632761884842/A79338A6A80E31D32969AFE1B414FCE03A6FE6D2/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761883941/5DA301AC91C81F2F3FEE7FFE0E03E6AE999EBE8A/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: f42e2f +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -17.1201 + posY: 1.67764235 + posZ: -7.7 + rotX: 359.9201 + rotY: 270.004761 + rotZ: 180.016861 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 6 Domain of Baal 84cdaf/Card scenario 19ef09.yaml new file mode 100644 index 000000000..978c9ff8e --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 6 Domain of Baal 84cdaf/Card scenario 19ef09.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 305 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '3': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/949595632761884842/A79338A6A80E31D32969AFE1B414FCE03A6FE6D2/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761883941/5DA301AC91C81F2F3FEE7FFE0E03E6AE999EBE8A/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 19ef09 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: scenario +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.956 + posY: 1.65847111 + posZ: -10.4412022 + rotX: 359.919739 + rotY: 270.0216 + rotZ: 180.0168 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 6 Domain of Baal 84cdaf/Card scenario 9cc274.yaml new file mode 100644 index 000000000..bb2b6ee12 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 6 Domain of Baal 84cdaf/Card scenario 9cc274.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 305 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '3': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/949595632761884842/A79338A6A80E31D32969AFE1B414FCE03A6FE6D2/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761883941/5DA301AC91C81F2F3FEE7FFE0E03E6AE999EBE8A/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 9cc274 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: scenario +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -50.92441 + posY: 1.711286 + posZ: 8.178404 + rotX: 359.9201 + rotY: 270.021637 + rotZ: 180.01683 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 6 Domain of Baal 84cdaf/Custom_Tile 22f69c.yaml new file mode 100644 index 000000000..10335a3f8 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 6 Domain of Baal 84cdaf/Custom_Tile 22f69c.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 22f69c +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.1199989 + posY: 1.60198379 + posZ: -11.5100021 + rotX: 0.0168490577 + rotY: 180.0164 + rotZ: 0.07995417 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 6 Domain of Baal 84cdaf/Custom_Tile 7234af.yaml new file mode 100644 index 000000000..088d617e8 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 6 Domain of Baal 84cdaf/Custom_Tile 7234af.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 7234af +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.1199989 + posY: 1.60424519 + posZ: -3.8300004 + rotX: 0.0168489516 + rotY: 180.016434 + rotZ: 0.0799541548 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 6 Domain of Baal 84cdaf/Deck Act f49c18.yaml new file mode 100644 index 000000000..91fb00776 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 6 Domain of Baal 84cdaf/Deck Act f49c18.yaml @@ -0,0 +1,258 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 234 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/949595632761878422/F08C392E92C6AAE7A15BBCD0203D375136E65F2F/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761876244/B85D64D26E719E9AAE7A2B1E21324A3AE395A6E0/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: a6b095 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 1.94742084 + posY: 1.32593942 + posZ: 2.01303935 + rotX: 0.00316133187 + rotY: 179.994446 + rotZ: 0.00209676567 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/949595632761878422/F08C392E92C6AAE7A15BBCD0203D375136E65F2F/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761876244/B85D64D26E719E9AAE7A2B1E21324A3AE395A6E0/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: ed6432 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 1.70679 + posY: 1.47078228 + posZ: 1.93834317 + rotX: -0.00488023041 + rotY: 179.984222 + rotZ: -0.00136443868 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 232 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/949595632761878422/F08C392E92C6AAE7A15BBCD0203D375136E65F2F/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761876244/B85D64D26E719E9AAE7A2B1E21324A3AE395A6E0/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: a6b095 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 1.75130165 + posY: 1.48845518 + posZ: 2.002393 + rotX: 0.00159639516 + rotY: 179.999939 + rotZ: 0.0008946535 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/949595632761878422/F08C392E92C6AAE7A15BBCD0203D375136E65F2F/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761876244/B85D64D26E719E9AAE7A2B1E21324A3AE395A6E0/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: a6b095 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 1.79333484 + posY: 1.47474444 + posZ: 2.32450128 + rotX: -0.000371967268 + rotY: 179.999847 + rotZ: 0.000368639652 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 230 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/949595632761878422/F08C392E92C6AAE7A15BBCD0203D375136E65F2F/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761876244/B85D64D26E719E9AAE7A2B1E21324A3AE395A6E0/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: a6b095 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 1.80514491 + posY: 1.47272754 + posZ: 2.09845376 + rotX: -0.0005214049 + rotY: 179.999954 + rotZ: 0.0006081386 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/949595632761878422/F08C392E92C6AAE7A15BBCD0203D375136E65F2F/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761876244/B85D64D26E719E9AAE7A2B1E21324A3AE395A6E0/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 234 +- 233 +- 232 +- 231 +- 230 +Description: lair of the Cult +GMNotes: '' +GUID: f49c18 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Act +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.6925 + posY: 1.65433109 + posZ: -5.04730129 + rotX: 359.919739 + rotY: 269.984558 + rotZ: 0.01685916 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 6 Domain of Baal 84cdaf/Deck Agenda 472846.yaml new file mode 100644 index 000000000..82ab3215c --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 6 Domain of Baal 84cdaf/Deck Agenda 472846.yaml @@ -0,0 +1,215 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 238 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/949595632761878422/F08C392E92C6AAE7A15BBCD0203D375136E65F2F/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761876244/B85D64D26E719E9AAE7A2B1E21324A3AE395A6E0/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: a6b095 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.5463562 + posY: 1.32600892 + posZ: 2.08764625 + rotX: 0.00182408409 + rotY: 179.963882 + rotZ: 0.000119907869 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 237 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/949595632761878422/F08C392E92C6AAE7A15BBCD0203D375136E65F2F/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761876244/B85D64D26E719E9AAE7A2B1E21324A3AE395A6E0/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 9bffad + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.44246173 + posY: 1.46481359 + posZ: 2.22939682 + rotX: 0.0108984532 + rotY: 179.999374 + rotZ: -0.00234551029 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 236 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/949595632761878422/F08C392E92C6AAE7A15BBCD0203D375136E65F2F/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761876244/B85D64D26E719E9AAE7A2B1E21324A3AE395A6E0/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: a6b095 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.31260538 + posY: 1.48857808 + posZ: 2.38174438 + rotX: 0.000896416255 + rotY: 179.999985 + rotZ: 0.00240963837 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 235 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/949595632761878422/F08C392E92C6AAE7A15BBCD0203D375136E65F2F/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761876244/B85D64D26E719E9AAE7A2B1E21324A3AE395A6E0/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: a6b095 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.29735637 + posY: 1.47480953 + posZ: 2.41503978 + rotX: 0.000883560569 + rotY: 179.999954 + rotZ: -0.0002689742 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/949595632761878422/F08C392E92C6AAE7A15BBCD0203D375136E65F2F/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761876244/B85D64D26E719E9AAE7A2B1E21324A3AE395A6E0/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 238 +- 237 +- 236 +- 235 +Description: lair of the Cult +GMNotes: '' +GUID: '472846' +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Agenda +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.72689962 + posY: 1.65514052 + posZ: 0.370099783 + rotX: 359.919739 + rotY: 270.0139 + rotZ: 0.016818082 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 6 Domain of Baal 84cdaf/Deck Encounter 945cf2.yaml new file mode 100644 index 000000000..afd2f78fb --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 6 Domain of Baal 84cdaf/Deck Encounter 945cf2.yaml @@ -0,0 +1,1799 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 3619 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: '260768' + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dissonant Voices + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -19.1363125 + posY: 1.231699 + posZ: -7.400251 + rotX: -0.000820844667 + rotY: 270.0089 + rotZ: -0.000237511369 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3617 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: da8001 + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Rotting Remains + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -19.2726822 + posY: 1.23161709 + posZ: -4.69493532 + rotX: -0.00461160857 + rotY: 269.9793 + rotZ: -0.00137890945 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3619 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: f1a34d + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dissonant Voices + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -19.9809151 + posY: 1.28156877 + posZ: -7.79831076 + rotX: 0.011735606 + rotY: 270.009033 + rotZ: 0.00468536 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3618 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: 27c05d + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Frozen in Fear + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -18.967617 + posY: 1.231716 + posZ: -10.49529 + rotX: -3.11068325e-05 + rotY: 270.0013 + rotZ: -7.22032553e-07 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3617 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: 18e09c + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Rotting Remains + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -20.3450146 + posY: 1.28128624 + posZ: -4.537053 + rotX: 0.006250872 + rotY: 269.979126 + rotZ: -0.00126227119 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3618 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: c40f57 + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Frozen in Fear + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -19.6207886 + posY: 1.28169692 + posZ: -10.6840782 + rotX: -3.134726e-05 + rotY: 270.000763 + rotZ: 3.597804e-06 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3617 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: aa3d47 + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Rotting Remains + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -21.5193939 + posY: 1.337018 + posZ: -4.78068352 + rotX: 0.0181244723 + rotY: 269.978149 + rotZ: 0.00253973226 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 515 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/924800625825559102/C3C13E9EE35451018D2880936F889E0D8309BFDB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761889070/DA01A9923E38E4072B341E148F0AA02BA1A3A706/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 11b78d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -20.0631847 + posY: 1.52217329 + posZ: -63.2369537 + rotX: 0.998999357 + rotY: 270.0743 + rotZ: 181.733856 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 515 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/924800625825559102/C3C13E9EE35451018D2880936F889E0D8309BFDB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761889070/DA01A9923E38E4072B341E148F0AA02BA1A3A706/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: c6cf29 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -19.8851585 + posY: 1.51530015 + posZ: -63.37976 + rotX: 0.9593405 + rotY: 270.0749 + rotZ: 181.94165 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 515 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/924800625825559102/C3C13E9EE35451018D2880936F889E0D8309BFDB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761889070/DA01A9923E38E4072B341E148F0AA02BA1A3A706/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 8bd27b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -19.3867378 + posY: 1.51401269 + posZ: -63.25279 + rotX: 359.0237 + rotY: 270.02887 + rotZ: 181.770844 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 515 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/924800625825559102/C3C13E9EE35451018D2880936F889E0D8309BFDB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761889070/DA01A9923E38E4072B341E148F0AA02BA1A3A706/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 795bd8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -19.7968311 + posY: 1.706357 + posZ: -62.3546524 + rotX: 0.0971272439 + rotY: 270.046936 + rotZ: 180.267441 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 515 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/924800625825559102/C3C13E9EE35451018D2880936F889E0D8309BFDB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761889070/DA01A9923E38E4072B341E148F0AA02BA1A3A706/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: bac473 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -19.7322121 + posY: 1.55983293 + posZ: -62.6359367 + rotX: 0.121660173 + rotY: 270.04776 + rotZ: 180.135757 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 516 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/924800625825559102/C3C13E9EE35451018D2880936F889E0D8309BFDB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761889070/DA01A9923E38E4072B341E148F0AA02BA1A3A706/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 11b78d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -19.63887 + posY: 1.41001189 + posZ: -62.65031 + rotX: 359.9867 + rotY: 270.032227 + rotZ: 180.081116 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 516 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/924800625825559102/C3C13E9EE35451018D2880936F889E0D8309BFDB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761889070/DA01A9923E38E4072B341E148F0AA02BA1A3A706/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 223e6d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -19.7943764 + posY: 1.37491286 + posZ: -61.84429 + rotX: 0.00890871 + rotY: 270.0521 + rotZ: 180.0244 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 511 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/924800625825559102/C3C13E9EE35451018D2880936F889E0D8309BFDB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761889070/DA01A9923E38E4072B341E148F0AA02BA1A3A706/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 74f7f0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -20.9971371 + posY: 1.84044766 + posZ: -72.58087 + rotX: 0.21728079 + rotY: 270.164551 + rotZ: 186.612915 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 511 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/924800625825559102/C3C13E9EE35451018D2880936F889E0D8309BFDB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761889070/DA01A9923E38E4072B341E148F0AA02BA1A3A706/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: d8898b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -20.7929382 + posY: 1.77574766 + posZ: -73.1488342 + rotX: 0.00705088954 + rotY: 270.237549 + rotZ: 186.576736 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 511 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/924800625825559102/C3C13E9EE35451018D2880936F889E0D8309BFDB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761889070/DA01A9923E38E4072B341E148F0AA02BA1A3A706/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: f19fca + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -20.98784 + posY: 1.71984744 + posZ: -73.49968 + rotX: 0.4688448 + rotY: 270.289124 + rotZ: 187.618 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 511 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/924800625825559102/C3C13E9EE35451018D2880936F889E0D8309BFDB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761889070/DA01A9923E38E4072B341E148F0AA02BA1A3A706/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: bfd162 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -20.7681484 + posY: 1.67908978 + posZ: -73.54637 + rotX: 0.06369505 + rotY: 270.246033 + rotZ: 183.3295 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 514 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/924800625825559102/C3C13E9EE35451018D2880936F889E0D8309BFDB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761889070/DA01A9923E38E4072B341E148F0AA02BA1A3A706/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 9d6b09 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -20.3078957 + posY: 1.63799345 + posZ: -73.87794 + rotX: 0.0409945846 + rotY: 270.240082 + rotZ: 183.729309 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 514 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/924800625825559102/C3C13E9EE35451018D2880936F889E0D8309BFDB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761889070/DA01A9923E38E4072B341E148F0AA02BA1A3A706/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: b2e9d8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -20.7883511 + posY: 1.62315071 + posZ: -73.9645 + rotX: 0.05985595 + rotY: 270.251648 + rotZ: 183.77681 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 514 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/924800625825559102/C3C13E9EE35451018D2880936F889E0D8309BFDB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761889070/DA01A9923E38E4072B341E148F0AA02BA1A3A706/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: e08ba0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -20.8013134 + posY: 1.69972539 + posZ: -72.71083 + rotX: 0.113013446 + rotY: 270.214783 + rotZ: 182.3934 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 514 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/924800625825559102/C3C13E9EE35451018D2880936F889E0D8309BFDB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761889070/DA01A9923E38E4072B341E148F0AA02BA1A3A706/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: '406991' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -20.8643513 + posY: 1.90810585 + posZ: -73.53735 + rotX: 0.06675487 + rotY: 270.24707 + rotZ: 181.955185 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 514 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/924800625825559102/C3C13E9EE35451018D2880936F889E0D8309BFDB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761889070/DA01A9923E38E4072B341E148F0AA02BA1A3A706/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 917cda + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -20.7112236 + posY: 1.74148774 + posZ: -73.379776 + rotX: 0.06308386 + rotY: 270.240784 + rotZ: 183.388321 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 513 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/924800625825559102/C3C13E9EE35451018D2880936F889E0D8309BFDB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761889070/DA01A9923E38E4072B341E148F0AA02BA1A3A706/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 7cfc42 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -20.1863728 + posY: 1.47912848 + posZ: -73.15372 + rotX: 0.352211326 + rotY: 270.272583 + rotZ: 181.54808 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 513 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/924800625825559102/C3C13E9EE35451018D2880936F889E0D8309BFDB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761889070/DA01A9923E38E4072B341E148F0AA02BA1A3A706/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: e84a81 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -20.6905079 + posY: 1.5387094 + posZ: -72.6879654 + rotX: 359.987762 + rotY: 270.365845 + rotZ: 182.689651 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 511 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/924800625825559102/C3C13E9EE35451018D2880936F889E0D8309BFDB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761889070/DA01A9923E38E4072B341E148F0AA02BA1A3A706/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 766b79 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -21.5457268 + posY: 1.62431061 + posZ: -71.70133 + rotX: 0.09125777 + rotY: 270.1123 + rotZ: 172.2589 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 513 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/924800625825559102/C3C13E9EE35451018D2880936F889E0D8309BFDB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761889070/DA01A9923E38E4072B341E148F0AA02BA1A3A706/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: '815946' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -21.1578159 + posY: 1.682726 + posZ: -72.3849 + rotX: 0.09290982 + rotY: 270.256836 + rotZ: 172.25412 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 513 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/924800625825559102/C3C13E9EE35451018D2880936F889E0D8309BFDB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761889070/DA01A9923E38E4072B341E148F0AA02BA1A3A706/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 2244da + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -20.7547321 + posY: 1.60512626 + posZ: -71.78333 + rotX: 0.09139811 + rotY: 270.222534 + rotZ: 182.435486 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 513 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/924800625825559102/C3C13E9EE35451018D2880936F889E0D8309BFDB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761889070/DA01A9923E38E4072B341E148F0AA02BA1A3A706/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: efbaec + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -20.7200775 + posY: 1.5252496 + posZ: -71.68511 + rotX: 0.0169821754 + rotY: 270.244141 + rotZ: 180.028381 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 513 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/924800625825559102/C3C13E9EE35451018D2880936F889E0D8309BFDB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761889070/DA01A9923E38E4072B341E148F0AA02BA1A3A706/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 782f4e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -20.2383614 + posY: 1.53296816 + posZ: -72.53232 + rotX: 0.73143363 + rotY: 270.261749 + rotZ: 181.282654 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 513 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/924800625825559102/C3C13E9EE35451018D2880936F889E0D8309BFDB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761889070/DA01A9923E38E4072B341E148F0AA02BA1A3A706/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: '173716' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -20.14088 + posY: 1.521288 + posZ: -72.4157944 + rotX: 0.0154000875 + rotY: 270.2443 + rotZ: 180.03891 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 513 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/924800625825559102/C3C13E9EE35451018D2880936F889E0D8309BFDB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761889070/DA01A9923E38E4072B341E148F0AA02BA1A3A706/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 56fa0c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -20.1237125 + posY: 1.37194133 + posZ: -72.06247 + rotX: 0.01837676 + rotY: 270.2442 + rotZ: 180.018021 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 529 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/924800625825559102/C3C13E9EE35451018D2880936F889E0D8309BFDB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761889070/DA01A9923E38E4072B341E148F0AA02BA1A3A706/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: c0d8f1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.97602773 + posY: 1.32627046 + posZ: 4.292746 + rotX: 359.986755 + rotY: 180.15036 + rotZ: 359.991272 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 529 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/924800625825559102/C3C13E9EE35451018D2880936F889E0D8309BFDB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761889070/DA01A9923E38E4072B341E148F0AA02BA1A3A706/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 6a46fa + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.01983571 + posY: 1.51190937 + posZ: 4.57224846 + rotX: 358.1111 + rotY: 180.12468 + rotZ: 359.738525 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 529 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/924800625825559102/C3C13E9EE35451018D2880936F889E0D8309BFDB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761889070/DA01A9923E38E4072B341E148F0AA02BA1A3A706/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 2dc8d6 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.01992965 + posY: 1.51430821 + posZ: 4.5723033 + rotX: 358.33255 + rotY: 180.121872 + rotZ: 0.105628006 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 529 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/924800625825559102/C3C13E9EE35451018D2880936F889E0D8309BFDB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761889070/DA01A9923E38E4072B341E148F0AA02BA1A3A706/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 11b78d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.28837037 + posY: 1.55412221 + posZ: 4.437055 + rotX: 357.788666 + rotY: 180.1668 + rotZ: 358.4977 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 528 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/924800625825559102/C3C13E9EE35451018D2880936F889E0D8309BFDB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761889070/DA01A9923E38E4072B341E148F0AA02BA1A3A706/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 11cb5a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.42003083 + posY: 1.57242346 + posZ: 4.64976168 + rotX: 356.9494 + rotY: 180.18959 + rotZ: 357.055054 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 528 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/924800625825559102/C3C13E9EE35451018D2880936F889E0D8309BFDB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761889070/DA01A9923E38E4072B341E148F0AA02BA1A3A706/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 18ea67 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.328544 + posY: 1.57301891 + posZ: 4.6000824 + rotX: 357.072449 + rotY: 180.175827 + rotZ: 357.3649 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 528 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/924800625825559102/C3C13E9EE35451018D2880936F889E0D8309BFDB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761889070/DA01A9923E38E4072B341E148F0AA02BA1A3A706/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 4a0e04 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.32864022 + posY: 1.5739187 + posZ: 4.60018063 + rotX: 357.155762 + rotY: 180.171677 + rotZ: 357.465942 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 528 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/924800625825559102/C3C13E9EE35451018D2880936F889E0D8309BFDB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761889070/DA01A9923E38E4072B341E148F0AA02BA1A3A706/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: d4e228 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.32878 + posY: 1.57505476 + posZ: 4.60032654 + rotX: 357.261078 + rotY: 180.166336 + rotZ: 357.5936 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 528 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/924800625825559102/C3C13E9EE35451018D2880936F889E0D8309BFDB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761889070/DA01A9923E38E4072B341E148F0AA02BA1A3A706/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 11b78d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.96050024 + posY: 1.58248961 + posZ: 4.212734 + rotX: 356.759125 + rotY: 180.342285 + rotZ: 357.2507 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '5': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/924800625825559102/C3C13E9EE35451018D2880936F889E0D8309BFDB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761889070/DA01A9923E38E4072B341E148F0AA02BA1A3A706/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 3619 +- 3617 +- 3619 +- 3618 +- 3617 +- 3618 +- 3617 +- 515 +- 515 +- 515 +- 515 +- 515 +- 516 +- 516 +- 511 +- 511 +- 511 +- 511 +- 514 +- 514 +- 514 +- 514 +- 514 +- 513 +- 513 +- 511 +- 513 +- 513 +- 513 +- 513 +- 513 +- 513 +- 529 +- 529 +- 529 +- 529 +- 528 +- 528 +- 528 +- 528 +- 528 +Description: lair of the Cult +GMNotes: '' +GUID: 945cf2 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Encounter +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.942 + posY: 1.83035123 + posZ: 5.748701 + rotX: 359.9197 + rotY: 270.086884 + rotZ: 180.0167 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 6 Domain of Baal 84cdaf/Deck Set Aside 10ce87.yaml new file mode 100644 index 000000000..605aeaabf --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag 6 Domain of Baal 84cdaf/Deck Set Aside 10ce87.yaml @@ -0,0 +1,480 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 526 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/924800625825559102/C3C13E9EE35451018D2880936F889E0D8309BFDB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761889070/DA01A9923E38E4072B341E148F0AA02BA1A3A706/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: d64b7f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -6.194784 + posY: 1.373114 + posZ: -75.76188 + rotX: 0.0196131654 + rotY: 269.999878 + rotZ: 0.01631047 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 525 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/924800625825559102/C3C13E9EE35451018D2880936F889E0D8309BFDB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761889070/DA01A9923E38E4072B341E148F0AA02BA1A3A706/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 11b78d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -6.227879 + posY: 1.51829243 + posZ: -75.86552 + rotX: 0.00789118651 + rotY: 269.985535 + rotZ: 0.0183470771 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 527 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/924800625825559102/C3C13E9EE35451018D2880936F889E0D8309BFDB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761889070/DA01A9923E38E4072B341E148F0AA02BA1A3A706/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 11b78d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -5.703914 + posY: 1.53589022 + posZ: -75.79921 + rotX: 0.0215226766 + rotY: 270.0044 + rotZ: 0.015114977 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 315 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/949595632761884842/A79338A6A80E31D32969AFE1B414FCE03A6FE6D2/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761883941/5DA301AC91C81F2F3FEE7FFE0E03E6AE999EBE8A/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: bb6a48 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -6.70501328 + posY: 1.5280056 + posZ: -79.98922 + rotX: 0.009877746 + rotY: 270.0 + rotZ: 180.061661 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 313 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/949595632761884842/A79338A6A80E31D32969AFE1B414FCE03A6FE6D2/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761883941/5DA301AC91C81F2F3FEE7FFE0E03E6AE999EBE8A/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 4c37c4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -6.629157 + posY: 1.52228928 + posZ: -79.76288 + rotX: 0.630573332 + rotY: 269.988739 + rotZ: 179.093231 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 312 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/949595632761884842/A79338A6A80E31D32969AFE1B414FCE03A6FE6D2/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761883941/5DA301AC91C81F2F3FEE7FFE0E03E6AE999EBE8A/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: c21b03 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -6.47698641 + posY: 1.52640831 + posZ: -80.177124 + rotX: 0.311918765 + rotY: 270.0056 + rotZ: 180.491348 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 310 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/949595632761884842/A79338A6A80E31D32969AFE1B414FCE03A6FE6D2/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761883941/5DA301AC91C81F2F3FEE7FFE0E03E6AE999EBE8A/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 5f119f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -6.7460413 + posY: 1.54156339 + posZ: -80.02656 + rotX: 0.0200909115 + rotY: 269.9998 + rotZ: 180.017349 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 307 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/949595632761884842/A79338A6A80E31D32969AFE1B414FCE03A6FE6D2/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761883941/5DA301AC91C81F2F3FEE7FFE0E03E6AE999EBE8A/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: fff558 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -6.245481 + posY: 1.51754367 + posZ: -80.479744 + rotX: 359.354767 + rotY: 269.9903 + rotZ: 181.231522 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 306 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/949595632761884842/A79338A6A80E31D32969AFE1B414FCE03A6FE6D2/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761883941/5DA301AC91C81F2F3FEE7FFE0E03E6AE999EBE8A/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: d03213 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -6.36164665 + posY: 1.37441945 + posZ: -80.02505 + rotX: 0.0100981938 + rotY: 270.002747 + rotZ: 180.0187 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 308 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/949595632761884842/A79338A6A80E31D32969AFE1B414FCE03A6FE6D2/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761883941/5DA301AC91C81F2F3FEE7FFE0E03E6AE999EBE8A/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 0a5b49 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -6.25719 + posY: 1.51835907 + posZ: -75.79664 + rotX: 0.05411486 + rotY: 269.992065 + rotZ: 180.143417 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '3': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/949595632761884842/A79338A6A80E31D32969AFE1B414FCE03A6FE6D2/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761883941/5DA301AC91C81F2F3FEE7FFE0E03E6AE999EBE8A/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + '5': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/924800625825559102/C3C13E9EE35451018D2880936F889E0D8309BFDB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949595632761889070/DA01A9923E38E4072B341E148F0AA02BA1A3A706/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 526 +- 525 +- 527 +- 315 +- 313 +- 312 +- 310 +- 307 +- 306 +- 308 +Description: lair of the Cult +GMNotes: '' +GUID: 10ce87 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Set Aside +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 1.6958009 + posY: 1.65974784 + posZ: 14.2782021 + rotX: 359.95517 + rotY: 224.998428 + rotZ: 180.068649 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag Campaign Guide 4d6544.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag Campaign Guide 4d6544.yaml new file mode 100644 index 000000000..88a299259 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Approaching Storm 0fad66/Bag Campaign Guide 4d6544.yaml @@ -0,0 +1,72 @@ +Autoraise: true +ColorDiffuse: + b: 0.0 + g: 0.0 + r: 0.0 +ContainedObjects: +- 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/1011563197572992242/27EBC63530DDC34AEA20266EF49B77A15DE35BBA/ + Description: '' + GMNotes: '' + GUID: '884358' + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Custom_PDF + Nickname: The Approaching Storm Campaign Guide + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 12.2500086 + posY: 3.497381 + posZ: -12.6657619 + rotX: 359.409332 + rotY: 270.0069 + rotZ: 0.172751769 + scaleX: 2.18 + scaleY: 1.0 + scaleZ: 2.18 + XmlUI: '' +Description: '' +GMNotes: '' +GUID: 4d6544 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +MeshIndex: -1 +Name: Bag +Nickname: Campaign Guide +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 7.999808 + posY: 1.28197515 + posZ: -11.3676891 + rotX: 359.92 + rotY: 270.000549 + rotZ: 0.0169098433 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Approaching Storm 0fad66/Custom_Tile The Approaching Storm 7521a9.ttslua b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Approaching Storm 0fad66/Custom_Tile The Approaching Storm 7521a9.ttslua new file mode 100644 index 000000000..7af28b4f4 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Approaching Storm 0fad66/Custom_Tile The Approaching Storm 7521a9.ttslua @@ -0,0 +1,21 @@ +name = 'Approaching Storm' + +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 The Side Missions 791837/Custom_Model_Bag The Approaching Storm 0fad66/Custom_Tile The Approaching Storm 7521a9.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Approaching Storm 0fad66/Custom_Tile The Approaching Storm 7521a9.yaml new file mode 100644 index 000000000..f016e130a --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Approaching Storm 0fad66/Custom_Tile The Approaching Storm 7521a9.yaml @@ -0,0 +1,42 @@ +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 +GMNotes: '' +GUID: 7521a9 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Tile The Approaching Storm 7521a9.ttslua' +LuaScriptState: '' +Name: Custom_Tile +Nickname: The Approaching Storm +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.58950043 + posY: 1.58215952 + posZ: -14.7357016 + rotX: 359.919739 + rotY: 270.0013 + rotZ: 0.0168359559 + scaleX: 2.2 + scaleY: 1.0 + scaleZ: 2.2 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Blob that Ate Everything 4dee5a.ttslua b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Blob that Ate Everything 4dee5a.ttslua new file mode 100644 index 000000000..5534586ac --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Blob that Ate Everything 4dee5a.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.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 \ No newline at end of file diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Blob that Ate Everything 4dee5a.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Blob that Ate Everything 4dee5a.yaml new file mode 100644 index 000000000..504c95135 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Blob that Ate Everything 4dee5a.yaml @@ -0,0 +1,105 @@ +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 Blob that Ate Everything 4dee5a/Custom_PDF The Blob + that Ate Everything 36b4eb.yaml' +- !include 'Custom_Model_Bag The Blob that Ate Everything 4dee5a/Custom_Tile 2b78cf.yaml' +- !include 'Custom_Model_Bag The Blob that Ate Everything 4dee5a/Bag Epic Multiplayer + 2c10cf.yaml' +- !include 'Custom_Model_Bag The Blob that Ate Everything 4dee5a/Custom_Tile 3a6bb8.yaml' +- !include 'Custom_Model_Bag The Blob that Ate Everything 4dee5a/Custom_Tile 46f500.yaml' +- !include 'Custom_Model_Bag The Blob that Ate Everything 4dee5a/Deck Agenda Deck + 4f9f66.yaml' +- !include 'Custom_Model_Bag The Blob that Ate Everything 4dee5a/Custom_Tile 4ff304.yaml' +- !include 'Custom_Model_Bag The Blob that Ate Everything 4dee5a/Custom_Tile 5d8be3.yaml' +- !include 'Custom_Model_Bag The Blob that Ate Everything 4dee5a/Custom_Tile 6345b1.yaml' +- !include 'Custom_Model_Bag The Blob that Ate Everything 4dee5a/Custom_Tile 69fd89.yaml' +- !include 'Custom_Model_Bag The Blob that Ate Everything 4dee5a/Custom_Tile 71210c.yaml' +- !include 'Custom_Model_Bag The Blob that Ate Everything 4dee5a/Custom_Tile 7234af.yaml' +- !include 'Custom_Model_Bag The Blob that Ate Everything 4dee5a/Custom_Model_Bag + Set-aside 7b0f72.yaml' +- !include 'Custom_Model_Bag The Blob that Ate Everything 4dee5a/Bag Single Group + 830305.yaml' +- !include 'Custom_Model_Bag The Blob that Ate Everything 4dee5a/Card Scenario 8456bc.yaml' +- !include 'Custom_Model_Bag The Blob that Ate Everything 4dee5a/Custom_Tile 88e8cf.yaml' +- !include 'Custom_Model_Bag The Blob that Ate Everything 4dee5a/Deck Quarantine Zones + 98c518.yaml' +- !include 'Custom_Model_Bag The Blob that Ate Everything 4dee5a/Custom_Tile a1af1f.yaml' +- !include 'Custom_Model_Bag The Blob that Ate Everything 4dee5a/Card Fungus Mound + aea880.yaml' +- !include 'Custom_Model_Bag The Blob that Ate Everything 4dee5a/Custom_Tile b76184.yaml' +- !include 'Custom_Model_Bag The Blob that Ate Everything 4dee5a/Custom_Tile The Blob + that Ate Everything bbb70a.yaml' +- !include 'Custom_Model_Bag The Blob that Ate Everything 4dee5a/Deck Encounter Deck + c164a9.yaml' +- !include 'Custom_Model_Bag The Blob that Ate Everything 4dee5a/Custom_Tile c425b7.yaml' +- !include 'Custom_Model_Bag The Blob that Ate Everything 4dee5a/Custom_Tile d7e54e.yaml' +- !include 'Custom_Model_Bag The Blob that Ate Everything 4dee5a/Card The Crater e9889e.yaml' +- !include 'Custom_Model_Bag The Blob that Ate Everything 4dee5a/Custom_Tile f9947f.yaml' +- !include 'Custom_Model_Bag The Blob that Ate Everything 4dee5a/Custom_Tile fb5176.yaml' +- !include 'Custom_Model_Bag The Blob that Ate Everything 4dee5a/Deck Starting Locations + fd7be1.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/784129708171644922/CF8E4B744A65B5C7FEAF46C907D8E470A9E2241F/ + MaterialIndex: 3 + MeshURL: https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj + NormalURL: '' + TypeIndex: 6 +Description: Scenario Pack +GMNotes: '' +GUID: 4dee5a +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Model_Bag The Blob that Ate Everything 4dee5a.ttslua' +LuaScriptState: '{"ml":{"2b78cf":{"lock":false,"pos":{"x":-39.9314,"y":1.6372,"z":-0.0372},"rot":{"x":359.9201,"y":270.0096,"z":0.0169}},"2c10cf":{"lock":false,"pos":{"x":2.353,"y":1.3935,"z":1.3729},"rot":{"x":0.0803,"y":89.9994,"z":359.9831}},"3a6bb8":{"lock":false,"pos":{"x":-23.6764,"y":1.6134,"z":-3.83},"rot":{"x":0.0169,"y":179.9992,"z":0.0799}},"46f500":{"lock":false,"pos":{"x":-36.7731,"y":1.6317,"z":-3.83},"rot":{"x":0.0169,"y":179.9989,"z":0.0799}},"4f9f66":{"lock":false,"pos":{"x":-2.7246,"y":1.6566,"z":0.3735},"rot":{"x":0.0168,"y":180.0012,"z":0.0803}},"4ff304":{"lock":false,"pos":{"x":-30.2242,"y":1.6248,"z":3.86},"rot":{"x":0.0169,"y":179.9991,"z":0.0799}},"5d8be3":{"lock":false,"pos":{"x":-23.6764,"y":1.6157,"z":3.86},"rot":{"x":0.0169,"y":179.9992,"z":0.0799}},"6345b1":{"lock":false,"pos":{"x":-26.8995,"y":1.619,"z":-0.1078},"rot":{"x":359.9201,"y":270.0096,"z":0.0169}},"69fd89":{"lock":false,"pos":{"x":-27.0309,"y":1.617,"z":-7.5875},"rot":{"x":359.9201,"y":270.0096,"z":0.0169}},"71210c":{"lock":false,"pos":{"x":-30.2242,"y":1.6203,"z":-11.51},"rot":{"x":0.0169,"y":179.9994,"z":0.0799}},"7234af":{"lock":false,"pos":{"x":-33.5839,"y":1.6283,"z":0.0616},"rot":{"x":359.9201,"y":270.0096,"z":0.0169}},"7b0f72":{"lock":false,"pos":{"x":1.6966,"y":1.5583,"z":14.2788},"rot":{"x":359.9551,"y":224.9978,"z":0.0687}},"830305":{"lock":false,"pos":{"x":2.2928,"y":1.3929,"z":-1.2197},"rot":{"x":0.0803,"y":89.9991,"z":359.9831}},"8456bc":{"lock":false,"pos":{"x":-3.9559,"y":1.6556,"z":-10.4412},"rot":{"x":359.9197,"y":270,"z":0.0168}},"88e8cf":{"lock":false,"pos":{"x":-26.9009,"y":1.6213,"z":7.7793},"rot":{"x":359.9201,"y":270.0095,"z":0.0169}},"98c518":{"lock":false,"pos":{"x":-12.4828,"y":1.6633,"z":7.5848},"rot":{"x":359.9201,"y":269.9999,"z":0.0169}},"a1af1f":{"lock":false,"pos":{"x":-20.613,"y":1.6102,"z":-0.1764},"rot":{"x":359.9201,"y":270.0096,"z":0.0169}},"aea880":{"lock":false,"pos":{"x":-12.307,"y":1.6796,"z":15.299},"rot":{"x":359.9202,"y":270.0012,"z":0.2651}},"b76184":{"lock":false,"pos":{"x":-33.6393,"y":1.6306,"z":7.5293},"rot":{"x":359.9201,"y":270.0097,"z":0.0169}},"bbb70a":{"lock":false,"pos":{"x":-3.3759,"y":1.5818,"z":-15.0362},"rot":{"x":359.9197,"y":270.0306,"z":0.0168}},"c164a9":{"lock":false,"pos":{"x":-3.9271,"y":1.7717,"z":5.7574},"rot":{"x":359.9197,"y":269.9998,"z":180.0168}},"c425b7":{"lock":false,"pos":{"x":-30.2242,"y":1.6225,"z":-3.83},"rot":{"x":0.0169,"y":179.9993,"z":0.0799}},"d7e54e":{"lock":false,"pos":{"x":-34.2304,"y":1.627,"z":-7.4733},"rot":{"x":359.9201,"y":270.0097,"z":0.0169}},"e9889e":{"lock":false,"pos":{"x":-30.2243,"y":1.6954,"z":-0.03},"rot":{"x":359.9201,"y":270.001,"z":0.0169}},"f9947f":{"lock":false,"pos":{"x":-36.7731,"y":1.6339,"z":3.86},"rot":{"x":0.0169,"y":179.999,"z":0.0799}},"fb5176":{"lock":false,"pos":{"x":-30.2242,"y":1.627,"z":11.46},"rot":{"x":0.0169,"y":179.9993,"z":0.0799}},"fd7be1":{"lock":false,"pos":{"x":-12.3779,"y":1.6807,"z":11.4083},"rot":{"x":359.9201,"y":270.0002,"z":0.0169}}}}' +MaterialIndex: -1 +MeshIndex: -1 +Name: Custom_Model_Bag +Nickname: The Blob that Ate Everything +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 32.29998 + posY: 2.31515551 + posZ: 14.5000067 + rotX: 359.932922 + rotY: 270.0008 + rotZ: 0.0139444722 + scaleX: 2.21 + scaleY: 0.46 + scaleZ: 2.42 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Bag Epic Multiplayer 2c10cf.ttslua b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Bag Epic Multiplayer 2c10cf.ttslua new file mode 100644 index 000000000..f82d90245 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Bag Epic Multiplayer 2c10cf.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 791837/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Bag Epic Multiplayer 2c10cf.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Bag Epic Multiplayer 2c10cf.yaml new file mode 100644 index 000000000..0cdca1342 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Bag Epic Multiplayer 2c10cf.yaml @@ -0,0 +1,37 @@ +Autoraise: true +ColorDiffuse: + b: 0.0 + g: 0.0 + r: 0.0 +ContainedObjects: +- !include 'Bag Epic Multiplayer 2c10cf/CardCustom Subject 8L-08 6a7bfc.yaml' +- !include 'Bag Epic Multiplayer 2c10cf/Deck Act Deck c5100a.yaml' +Description: '' +GMNotes: '' +GUID: 2c10cf +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Bag Epic Multiplayer 2c10cf.ttslua' +LuaScriptState: '{"ml":{"6a7bfc":{"lock":false,"pos":{"x":-11.9662,"y":1.6726,"z":0.0224},"rot":{"x":359.9727,"y":179.9866,"z":0.0799}},"c5100a":{"lock":false,"pos":{"x":-2.6885,"y":1.655,"z":-5.0485},"rot":{"x":0.0168,"y":180,"z":0.0803}}}}' +MaterialIndex: -1 +MeshIndex: -1 +Name: Bag +Nickname: Epic Multiplayer +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 2.353001 + posY: 1.39353669 + posZ: 1.37289929 + rotX: 0.0803449 + rotY: 89.99934 + rotZ: 359.983124 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Bag Epic Multiplayer 2c10cf/CardCustom Subject 8L-08 6a7bfc.yaml new file mode 100644 index 000000000..9a857fd52 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Bag Epic Multiplayer 2c10cf/CardCustom Subject 8L-08 6a7bfc.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 266300 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2663': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784129708172453327/C073D3D7DCADD0F41E927C3102A2BDFE60B8496A/ + NumHeight: 1 + NumWidth: 1 + UniqueBack: false +Description: Extraspacial Anomaly +GMNotes: '' +GUID: 6a7bfc +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: CardCustom +Nickname: Subject 8L-08 +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -11.9661989 + posY: 1.67260337 + posZ: 0.0223998 + rotX: 359.9727 + rotY: 179.986588 + rotZ: 0.07989151 + scaleX: 2.23922753 + scaleY: 1.0 + scaleZ: 2.23922753 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Bag Epic Multiplayer 2c10cf/Deck Act Deck c5100a.yaml new file mode 100644 index 000000000..e20d69d19 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Bag Epic Multiplayer 2c10cf/Deck Act Deck c5100a.yaml @@ -0,0 +1,186 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 234807 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2348': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/784129708171677489/8C336FEC8DF768DFAF70C8F8212BF5F60E7CC9EA/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784129708171809776/A9CE1BED9C22D932C83AA7D75891C8DFEC887A78/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 3 + GMNotes: '' + GUID: ceaf19 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Blackwater's Bane + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 7.88219643 + posY: 1.70866823 + posZ: -7.736949 + rotX: 0.012211795 + rotY: 179.9851 + rotZ: 180.0898 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234706 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2347': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/784129708171677489/8C336FEC8DF768DFAF70C8F8212BF5F60E7CC9EA/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784129708171809776/A9CE1BED9C22D932C83AA7D75891C8DFEC887A78/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 2 + GMNotes: '' + GUID: '612274' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Extraterrestrial Physiology + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.159874 + posY: 1.68143713 + posZ: 7.02893448 + rotX: 0.01695328 + rotY: 180.023163 + rotZ: 0.06831526 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234504 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2345': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/784129708171677489/8C336FEC8DF768DFAF70C8F8212BF5F60E7CC9EA/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784129708171809776/A9CE1BED9C22D932C83AA7D75891C8DFEC887A78/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 1 + GMNotes: '' + GUID: e11f47 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Expose the Anomaly + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 8.018229 + posY: 1.70578527 + posZ: -7.69568443 + rotX: 0.0116562042 + rotY: 180.003616 + rotZ: 0.07863973 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2345': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/784129708171677489/8C336FEC8DF768DFAF70C8F8212BF5F60E7CC9EA/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784129708171809776/A9CE1BED9C22D932C83AA7D75891C8DFEC887A78/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + '2347': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/784129708171677489/8C336FEC8DF768DFAF70C8F8212BF5F60E7CC9EA/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784129708171809776/A9CE1BED9C22D932C83AA7D75891C8DFEC887A78/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + '2348': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/784129708171677489/8C336FEC8DF768DFAF70C8F8212BF5F60E7CC9EA/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784129708171809776/A9CE1BED9C22D932C83AA7D75891C8DFEC887A78/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 234807 +- 234706 +- 234504 +Description: '' +GMNotes: '' +GUID: c5100a +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Act Deck +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.6885 + posY: 1.65499723 + posZ: -5.0485 + rotX: 0.016834965 + rotY: 180.000046 + rotZ: 0.08025754 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Bag Single Group 830305.ttslua b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Bag Single Group 830305.ttslua new file mode 100644 index 000000000..f82d90245 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Bag Single Group 830305.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 791837/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Bag Single Group 830305.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Bag Single Group 830305.yaml new file mode 100644 index 000000000..749bb1858 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Bag Single Group 830305.yaml @@ -0,0 +1,37 @@ +Autoraise: true +ColorDiffuse: + b: 0.0 + g: 0.0 + r: 0.0 +ContainedObjects: +- !include 'Bag Single Group 830305/Deck Act Deck c5100a.yaml' +- !include 'Bag Single Group 830305/CardCustom Subject 8L-08 b7790b.yaml' +Description: '' +GMNotes: '' +GUID: '830305' +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Bag Single Group 830305.ttslua' +LuaScriptState: '{"ml":{"b7790b":{"lock":false,"pos":{"x":-12.012,"y":1.67,"z":0.2354},"rot":{"x":0.0169,"y":180.0095,"z":0.0799}},"c5100a":{"lock":false,"pos":{"x":-2.6885,"y":1.655,"z":-5.0485},"rot":{"x":0.0168,"y":180.0037,"z":0.0803}}}}' +MaterialIndex: -1 +MeshIndex: -1 +Name: Bag +Nickname: Single Group +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 2.292801 + posY: 1.392858 + posZ: -1.21970093 + rotX: 0.0803438649 + rotY: 89.99909 + rotZ: 359.983124 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Bag Single Group 830305/CardCustom Subject 8L-08 b7790b.yaml new file mode 100644 index 000000000..3dcfeb917 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Bag Single Group 830305/CardCustom Subject 8L-08 b7790b.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 266300 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2663': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784129708172472361/0375AB1D7E63664897E53B7AE89CDD1D4D1CB8C5/ + NumHeight: 1 + NumWidth: 1 + UniqueBack: false +Description: Extraspacial Anomaly +GMNotes: '' +GUID: b7790b +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: CardCustom +Nickname: Subject 8L-08 +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -12.0120316 + posY: 1.67003322 + posZ: 0.235442355 + rotX: 0.0168578476 + rotY: 180.009491 + rotZ: 0.07989849 + scaleX: 2.23922753 + scaleY: 1.0 + scaleZ: 2.23922753 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Bag Single Group 830305/Deck Act Deck c5100a.yaml new file mode 100644 index 000000000..56838d68a --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Bag Single Group 830305/Deck Act Deck c5100a.yaml @@ -0,0 +1,186 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 234908 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2349': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/784129708171677489/8C336FEC8DF768DFAF70C8F8212BF5F60E7CC9EA/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784129708171809776/A9CE1BED9C22D932C83AA7D75891C8DFEC887A78/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 3 + GMNotes: '' + GUID: '930942' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Blackwater's Bane + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 15.9864511 + posY: 1.53301418 + posZ: 6.95443439 + rotX: 0.0163070466 + rotY: 180.002441 + rotZ: 0.07748467 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234706 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2347': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/784129708171677489/8C336FEC8DF768DFAF70C8F8212BF5F60E7CC9EA/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784129708171809776/A9CE1BED9C22D932C83AA7D75891C8DFEC887A78/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 2 + GMNotes: '' + GUID: '612274' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Extraterrestrial Physiology + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.159874 + posY: 1.68143713 + posZ: 7.02893448 + rotX: 0.01695328 + rotY: 180.023163 + rotZ: 0.06831526 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234605 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2346': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/784129708171677489/8C336FEC8DF768DFAF70C8F8212BF5F60E7CC9EA/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784129708171809776/A9CE1BED9C22D932C83AA7D75891C8DFEC887A78/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 1 + GMNotes: '' + GUID: b8ce33 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Expose the Anomaly + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 15.7366772 + posY: 1.69917858 + posZ: 7.109102 + rotX: 0.00296614529 + rotY: 179.965866 + rotZ: 0.113253675 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2346': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/784129708171677489/8C336FEC8DF768DFAF70C8F8212BF5F60E7CC9EA/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784129708171809776/A9CE1BED9C22D932C83AA7D75891C8DFEC887A78/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + '2347': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/784129708171677489/8C336FEC8DF768DFAF70C8F8212BF5F60E7CC9EA/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784129708171809776/A9CE1BED9C22D932C83AA7D75891C8DFEC887A78/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + '2349': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/784129708171677489/8C336FEC8DF768DFAF70C8F8212BF5F60E7CC9EA/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784129708171809776/A9CE1BED9C22D932C83AA7D75891C8DFEC887A78/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 234908 +- 234706 +- 234605 +Description: '' +GMNotes: '' +GUID: c5100a +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Act Deck +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.688499 + posY: 1.65499711 + posZ: -5.04853964 + rotX: 0.0168295447 + rotY: 180.003738 + rotZ: 0.0802591443 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Card Fungus Mound aea880.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Card Fungus Mound aea880.yaml new file mode 100644 index 000000000..9c155c734 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Card Fungus Mound aea880.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 234110 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2341': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/784129708171677489/8C336FEC8DF768DFAF70C8F8212BF5F60E7CC9EA/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784129708171809776/A9CE1BED9C22D932C83AA7D75891C8DFEC887A78/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: aea880 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Fungus Mound +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -12.307 + posY: 1.67961442 + posZ: 15.299 + rotX: 359.920227 + rotY: 270.001251 + rotZ: 0.2647436 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Card Scenario 8456bc.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Card Scenario 8456bc.yaml new file mode 100644 index 000000000..7c4b44655 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Card Scenario 8456bc.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 235000 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2350': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/784129708171677489/8C336FEC8DF768DFAF70C8F8212BF5F60E7CC9EA/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784129708171809776/A9CE1BED9C22D932C83AA7D75891C8DFEC887A78/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: The Blob That Ate Everything +GMNotes: '' +GUID: 8456bc +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Scenario +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.9559 + posY: 1.655648 + posZ: -10.4412012 + rotX: 359.919739 + rotY: 270.0 + rotZ: 0.0168408211 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Card The Crater e9889e.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Card The Crater e9889e.yaml new file mode 100644 index 000000000..b9f525172 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Card The Crater e9889e.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 234109 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2341': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/784129708171677489/8C336FEC8DF768DFAF70C8F8212BF5F60E7CC9EA/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784129708171809776/A9CE1BED9C22D932C83AA7D75891C8DFEC887A78/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Oozified. +GMNotes: '' +GUID: e9889e +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: The Crater +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -30.2243 + posY: 1.69535089 + posZ: -0.0300003141 + rotX: 359.9201 + rotY: 270.001038 + rotZ: 0.01687492 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Custom_Model_Bag Set-aside 7b0f72.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Custom_Model_Bag Set-aside 7b0f72.yaml new file mode 100644 index 000000000..980b7fb81 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Custom_Model_Bag Set-aside 7b0f72.yaml @@ -0,0 +1,62 @@ +Autoraise: true +ColorDiffuse: + b: 0.02148666 + g: 0.00100758043 + r: 0.02148666 +ContainedObjects: +- !include 'Custom_Model_Bag Set-aside 7b0f72/Deck Oozewraiths a1d7ff.yaml' +- !include 'Custom_Model_Bag Set-aside 7b0f72/Card Cubic Ooze 442e15.yaml' +- !include 'Custom_Model_Bag Set-aside 7b0f72/Card Grasping Ooze e387e3.yaml' +- !include 'Custom_Model_Bag Set-aside 7b0f72/Card Vulnerable Heart 536d14.yaml' +- !include 'Custom_Model_Bag Set-aside 7b0f72/Deck Mi-Go Drones 67de87.yaml' +- !include 'Custom_Model_Bag Set-aside 7b0f72/Bag Story Cards + Relevant Set-Asides + c40cac.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: '' +GMNotes: '' +GUID: 7b0f72 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +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.69660079 + posY: 1.5583173 + posZ: 14.2788019 + rotX: 359.955139 + rotY: 224.997849 + rotZ: 0.06867242 + scaleX: 2.0 + scaleY: 2.0 + scaleZ: 2.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Custom_Model_Bag Set-aside 7b0f72/Bag Story Cards + Relevant Set-Asides c40cac.yaml new file mode 100644 index 000000000..3eeb0f80f --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Custom_Model_Bag Set-aside 7b0f72/Bag Story Cards + Relevant Set-Asides c40cac.yaml @@ -0,0 +1,41 @@ +Autoraise: true +ColorDiffuse: + b: 0.0 + g: 0.366520882 + r: 0.7058823 +ContainedObjects: +- !include 'Bag Story Cards + Relevant Set-Asides c40cac/Deck Rescue the Chemist d95932.yaml' +- !include 'Bag Story Cards + Relevant Set-Asides c40cac/Deck Recover the Sample 291b2b.yaml' +- !include 'Bag Story Cards + Relevant Set-Asides c40cac/Deck Drive Off the Mi-Go + 476bd6.yaml' +- !include 'Bag Story Cards + Relevant Set-Asides c40cac/Deck Defuse the Explosives + 22337f.yaml' +Description: '' +GMNotes: '' +GUID: c40cac +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +MeshIndex: -1 +Name: Bag +Nickname: Story Cards + Relevant Set-Asides +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 6.58391 + posY: 3.346921 + posZ: 3.83008814 + rotX: 359.960022 + rotY: 0.009215584 + rotZ: 359.8882 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/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 new file mode 100644 index 000000000..90a4e589b --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/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 @@ -0,0 +1,229 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- 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 + UniqueBack: false + Description: Logistical Genius + GMNotes: '' + GUID: 4120f3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Lt. Wilson Stewart + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -0.865001 + posY: 1.74620724 + posZ: 3.54097557 + rotX: 0.07982813 + rotY: 269.998047 + rotZ: 178.584656 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233703 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2337': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784129708171655462/0B7EFEEA9A53B93350FEC7F68F39A20D1D6580A9/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 1afa73 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Military's Plan + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -1.08433151 + posY: 1.86639035 + posZ: 4.052709 + rotX: 356.04187 + rotY: 270.159515 + rotZ: 177.821609 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233710 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2337': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784129708171655462/0B7EFEEA9A53B93350FEC7F68F39A20D1D6580A9/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Mi-Go. Elite. + GMNotes: '' + GUID: 8a86fc + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Mi-Go Meddler + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -0.746013761 + posY: 1.81310308 + posZ: 4.46523571 + rotX: 355.830566 + rotY: 269.9697 + rotZ: 180.157257 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 235423 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2354': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/784129708171677489/8C336FEC8DF768DFAF70C8F8212BF5F60E7CC9EA/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784129708171809776/A9CE1BED9C22D932C83AA7D75891C8DFEC887A78/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 4cce4f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Defuse the Explosives + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -1.2138449 + posY: 1.78184175 + posZ: 4.06123543 + rotX: 2.67344666 + rotY: 269.995667 + rotZ: 0.0162941813 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2336': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/784129708171655462/0B7EFEEA9A53B93350FEC7F68F39A20D1D6580A9/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '2337': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784129708171655462/0B7EFEEA9A53B93350FEC7F68F39A20D1D6580A9/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '2354': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/784129708171677489/8C336FEC8DF768DFAF70C8F8212BF5F60E7CC9EA/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784129708171809776/A9CE1BED9C22D932C83AA7D75891C8DFEC887A78/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 233607 +- 233703 +- 233710 +- 235423 +Description: '' +GMNotes: '' +GUID: 22337f +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Defuse the Explosives +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 4.169422 + posY: 3.41903019 + posZ: 8.049393 + rotX: -0.003949753 + rotY: 269.9993 + rotZ: 359.9692 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/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 new file mode 100644 index 000000000..1e9be4f20 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/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 @@ -0,0 +1,186 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- 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 + UniqueBack: false + Description: Weapon. Science. + GMNotes: '' + GUID: 2fc31c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Mi-Go Weapon + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -1.73262227 + posY: 1.76366758 + posZ: 7.38361025 + rotX: 0.04918409 + rotY: 269.9727 + rotZ: 178.1966 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233702 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2337': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784129708171655462/0B7EFEEA9A53B93350FEC7F68F39A20D1D6580A9/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Servitor. Mi-Go. Elite. + GMNotes: '' + GUID: '015675' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Mi-Go General + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -1.125304 + posY: 1.82536542 + posZ: 7.443284 + rotX: 356.818756 + rotY: 270.0951 + rotZ: 178.2851 + 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: http://cloud-3.steamusercontent.com/ugc/784129708171677489/8C336FEC8DF768DFAF70C8F8212BF5F60E7CC9EA/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784129708171809776/A9CE1BED9C22D932C83AA7D75891C8DFEC887A78/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 91a62b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Drive Off the Mi-Go + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -1.09555948 + posY: 1.825739 + posZ: 7.550427 + rotX: 3.72230554 + rotY: 269.991516 + rotZ: 0.01816158 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2336': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/784129708171655462/0B7EFEEA9A53B93350FEC7F68F39A20D1D6580A9/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '2337': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784129708171655462/0B7EFEEA9A53B93350FEC7F68F39A20D1D6580A9/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '2351': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/784129708171677489/8C336FEC8DF768DFAF70C8F8212BF5F60E7CC9EA/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784129708171809776/A9CE1BED9C22D932C83AA7D75891C8DFEC887A78/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 233606 +- 233702 +- 235122 +Description: '' +GMNotes: '' +GUID: 476bd6 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Drive Off the Mi-Go +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 2.962677 + posY: 3.62545466 + posZ: 9.333603 + rotX: 359.87442 + rotY: 269.9918 + rotZ: 0.105864689 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/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 new file mode 100644 index 000000000..76914a1bf --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/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 @@ -0,0 +1,229 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- 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 + UniqueBack: false + Description: Ally. Monster. Ooze. + GMNotes: '' + GUID: 26398a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Pet Oozeling + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -1.64909875 + posY: 1.73621881 + posZ: 10.368145 + rotX: 359.945343 + rotY: 269.995148 + rotZ: 178.514343 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233701 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2337': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784129708171655462/0B7EFEEA9A53B93350FEC7F68F39A20D1D6580A9/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Item. + GMNotes: '' + GUID: 10f2de + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Meteorite Sample + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -1.74376166 + posY: 1.84062636 + posZ: 10.0288591 + rotX: 357.1252 + rotY: 270.1129 + rotZ: 177.958755 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233709 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2337': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784129708171655462/0B7EFEEA9A53B93350FEC7F68F39A20D1D6580A9/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Mi-Go. Elite. + GMNotes: '' + GUID: f94b52 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Mi-Go Harvester + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -1.73086238 + posY: 1.77991164 + posZ: 10.0833359 + rotX: 356.989166 + rotY: 269.987427 + rotZ: 180.0405 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 235221 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2352': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/784129708171677489/8C336FEC8DF768DFAF70C8F8212BF5F60E7CC9EA/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784129708171809776/A9CE1BED9C22D932C83AA7D75891C8DFEC887A78/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: e643e5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Recover the Sample + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -1.241779 + posY: 1.8111465 + posZ: 9.813527 + rotX: 3.64141941 + rotY: 270.01944 + rotZ: 0.0158062335 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2336': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/784129708171655462/0B7EFEEA9A53B93350FEC7F68F39A20D1D6580A9/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '2337': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784129708171655462/0B7EFEEA9A53B93350FEC7F68F39A20D1D6580A9/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '2352': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/784129708171677489/8C336FEC8DF768DFAF70C8F8212BF5F60E7CC9EA/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784129708171809776/A9CE1BED9C22D932C83AA7D75891C8DFEC887A78/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 233605 +- 233701 +- 233709 +- 235221 +Description: '' +GMNotes: '' +GUID: 291b2b +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Recover the Sample +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 2.693692 + posY: 3.62362242 + posZ: 9.950466 + rotX: 359.925659 + rotY: 270.011536 + rotZ: 359.833374 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/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 new file mode 100644 index 000000000..e71fc9e9b --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/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 @@ -0,0 +1,229 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- 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 + UniqueBack: false + Description: Item. Science. + GMNotes: '' + GUID: 2f1166 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Universal Solvent + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -1.91512871 + posY: 1.73760438 + posZ: 14.2290106 + rotX: 359.940277 + rotY: 269.9896 + rotZ: 177.963837 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233700 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2337': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784129708171655462/0B7EFEEA9A53B93350FEC7F68F39A20D1D6580A9/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Bystander. Miskatonic. + GMNotes: '' + GUID: 41b1e8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: University Chemist + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -0.8629543 + posY: 2.40211487 + posZ: 13.9675941 + rotX: 0.132229164 + rotY: 269.9948 + rotZ: 140.618439 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233711 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2337': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784129708171655462/0B7EFEEA9A53B93350FEC7F68F39A20D1D6580A9/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Mi-Go. Elite. + GMNotes: '' + GUID: d874e6 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Mi-Go Abductor + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -0.963597059 + posY: 1.74551237 + posZ: 14.0674839 + rotX: 0.07978539 + rotY: 269.998047 + rotZ: 178.584656 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 235320 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2353': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/784129708171677489/8C336FEC8DF768DFAF70C8F8212BF5F60E7CC9EA/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784129708171809776/A9CE1BED9C22D932C83AA7D75891C8DFEC887A78/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 77305d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Rescue the Chemist + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -1.9874779 + posY: 1.77271283 + posZ: 13.62674 + rotX: 3.299129 + rotY: 269.992981 + rotZ: 0.0117554544 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2336': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/784129708171655462/0B7EFEEA9A53B93350FEC7F68F39A20D1D6580A9/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '2337': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784129708171655462/0B7EFEEA9A53B93350FEC7F68F39A20D1D6580A9/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '2353': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/784129708171677489/8C336FEC8DF768DFAF70C8F8212BF5F60E7CC9EA/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784129708171809776/A9CE1BED9C22D932C83AA7D75891C8DFEC887A78/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 233604 +- 233700 +- 233711 +- 235320 +Description: '' +GMNotes: '' +GUID: d95932 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Rescue the Chemist +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 2.507652 + posY: 3.54141378 + posZ: 11.0347137 + rotX: 359.9395 + rotY: 270.0075 + rotZ: 359.822754 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Custom_Model_Bag Set-aside 7b0f72/Card Cubic Ooze 442e15.yaml new file mode 100644 index 000000000..45b33cc46 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Custom_Model_Bag Set-aside 7b0f72/Card Cubic Ooze 442e15.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 233719 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2337': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784129708171655462/0B7EFEEA9A53B93350FEC7F68F39A20D1D6580A9/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: Monster. Ooze. Manifold. +GMNotes: '' +GUID: 442e15 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Cubic Ooze +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 6.568742 + posY: 3.60520744 + posZ: 8.355411 + rotX: 359.933228 + rotY: 270.0024 + rotZ: 0.0189663321 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Custom_Model_Bag Set-aside 7b0f72/Card Grasping Ooze e387e3.yaml new file mode 100644 index 000000000..ca3da80a2 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Custom_Model_Bag Set-aside 7b0f72/Card Grasping Ooze e387e3.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 233718 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2337': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784129708171655462/0B7EFEEA9A53B93350FEC7F68F39A20D1D6580A9/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: Monster. Ooze. Manifold. +GMNotes: '' +GUID: e387e3 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Grasping Ooze +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 5.069195 + posY: 3.60761452 + posZ: 8.09507 + rotX: 359.904053 + rotY: 270.029449 + rotZ: 0.0151716676 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Custom_Model_Bag Set-aside 7b0f72/Card Vulnerable Heart 536d14.yaml new file mode 100644 index 000000000..7b0c18ad5 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Custom_Model_Bag Set-aside 7b0f72/Card Vulnerable Heart 536d14.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 233721 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2337': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784129708171655462/0B7EFEEA9A53B93350FEC7F68F39A20D1D6580A9/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: Monster. Ooze. Elite. +GMNotes: '' +GUID: 536d14 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Vulnerable Heart +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 7.16099834 + posY: 3.60444212 + posZ: 7.42485476 + rotX: 359.922 + rotY: 269.971741 + rotZ: 0.0144589571 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Custom_Model_Bag Set-aside 7b0f72/Deck Mi-Go Drones 67de87.yaml new file mode 100644 index 000000000..373255c69 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Custom_Model_Bag Set-aside 7b0f72/Deck Mi-Go Drones 67de87.yaml @@ -0,0 +1,172 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 233708 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2337': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784129708171655462/0B7EFEEA9A53B93350FEC7F68F39A20D1D6580A9/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Mi-Go. + GMNotes: '' + GUID: 935c57 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Mi-Go Drone + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 1.98839581 + posY: 1.75851285 + posZ: 5.93567038 + rotX: 359.9345 + rotY: 270.002747 + rotZ: 182.006287 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233708 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2337': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784129708171655462/0B7EFEEA9A53B93350FEC7F68F39A20D1D6580A9/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Mi-Go. + GMNotes: '' + GUID: bd5c30 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Mi-Go Drone + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 1.8008604 + posY: 1.8533901 + posZ: 6.01750755 + rotX: 359.8394 + rotY: 269.9923 + rotZ: 180.013367 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233708 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2337': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784129708171655462/0B7EFEEA9A53B93350FEC7F68F39A20D1D6580A9/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Mi-Go. + GMNotes: '' + GUID: abeee2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Mi-Go Drone + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.252481 + posY: 1.71796608 + posZ: 6.13256454 + rotX: 359.914063 + rotY: 270.0002 + rotZ: 0.0006654006 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2337': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784129708171655462/0B7EFEEA9A53B93350FEC7F68F39A20D1D6580A9/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 233708 +- 233708 +- 233708 +Description: '' +GMNotes: '' +GUID: 67de87 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Mi-Go Drones +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 12.0810127 + posY: 1.69278932 + posZ: -10.6071253 + rotX: 359.920135 + rotY: 270.002 + rotZ: 0.016873477 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Custom_Model_Bag Set-aside 7b0f72/Deck Oozewraiths a1d7ff.yaml new file mode 100644 index 000000000..16ff60fde --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Custom_Model_Bag Set-aside 7b0f72/Deck Oozewraiths a1d7ff.yaml @@ -0,0 +1,129 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 233720 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2337': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784129708171655462/0B7EFEEA9A53B93350FEC7F68F39A20D1D6580A9/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Ooze. Manifold. + GMNotes: '' + GUID: a571b6 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Oozewraith + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.27741146 + posY: 1.54765427 + posZ: -3.394735 + rotX: 359.920135 + rotY: 270.00058 + rotZ: 0.0168770272 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233720 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2337': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784129708171655462/0B7EFEEA9A53B93350FEC7F68F39A20D1D6580A9/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Ooze. Manifold. + GMNotes: '' + GUID: a83d39 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Oozewraith + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.003869 + posY: 1.70714366 + posZ: -3.168141 + rotX: 0.0796178356 + rotY: 269.999237 + rotZ: 359.983032 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2337': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784129708171655462/0B7EFEEA9A53B93350FEC7F68F39A20D1D6580A9/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 233720 +- 233720 +Description: '' +GMNotes: '' +GUID: a1d7ff +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Oozewraiths +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 6.000793 + posY: 3.6125114 + posZ: 7.44988441 + rotX: 359.957764 + rotY: 270.008 + rotZ: 0.0151308719 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Custom_PDF The Blob that Ate Everything 36b4eb.yaml new file mode 100644 index 000000000..3d32d27df --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Custom_PDF The Blob that Ate Everything 36b4eb.yaml @@ -0,0 +1,37 @@ +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/784129708172267441/DEB96DAC4A9DDB7F8A66AE52710978A7AD7FDA0C/ +Description: Scenario Guide +GMNotes: '' +GUID: 36b4eb +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_PDF +Nickname: The Blob that Ate Everything +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 30.73396 + posY: 1.88716638 + posZ: -0.2834208 + rotX: 359.9515 + rotY: 270.0047 + rotZ: 359.988068 + scaleX: 3.0 + scaleY: 1.0 + scaleZ: 3.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Custom_Tile 2b78cf.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Custom_Tile 2b78cf.yaml new file mode 100644 index 000000000..1e30ac102 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Custom_Tile 2b78cf.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 2b78cf +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: -39.9314 + posY: 1.637171 + posZ: -0.0372002237 + rotX: 359.9201 + rotY: 270.009644 + rotZ: 0.0168866813 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Custom_Tile 3a6bb8.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Custom_Tile 3a6bb8.yaml new file mode 100644 index 000000000..ed47eb4f9 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Custom_Tile 3a6bb8.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 3a6bb8 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.6764 + posY: 1.6133877 + posZ: -3.83 + rotX: 0.0168730151 + rotY: 179.999176 + rotZ: 0.0799356252 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Custom_Tile 46f500.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Custom_Tile 46f500.yaml new file mode 100644 index 000000000..3784e4ba7 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Custom_Tile 46f500.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 46f500 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.63165 + posZ: -3.83000064 + rotX: 0.0168735683 + rotY: 179.9987 + rotZ: 0.0799398348 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Custom_Tile 4ff304.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Custom_Tile 4ff304.yaml new file mode 100644 index 000000000..877443956 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Custom_Tile 4ff304.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 4ff304 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.62478244 + posZ: 3.86000085 + rotX: 0.0168732163 + rotY: 179.999 + rotZ: 0.0799391642 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Custom_Tile 5d8be3.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Custom_Tile 5d8be3.yaml new file mode 100644 index 000000000..406775297 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Custom_Tile 5d8be3.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 5d8be3 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.6764 + posY: 1.615652 + posZ: 3.86 + rotX: 0.0168729722 + rotY: 179.999191 + rotZ: 0.07993959 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Custom_Tile 6345b1.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Custom_Tile 6345b1.yaml new file mode 100644 index 000000000..685cdbb9b --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Custom_Tile 6345b1.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 6345b1 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.8995 + posY: 1.61897814 + posZ: -0.10780023 + rotX: 359.9201 + rotY: 270.009644 + rotZ: 0.0168866515 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Custom_Tile 69fd89.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Custom_Tile 69fd89.yaml new file mode 100644 index 000000000..4c7d8fa97 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Custom_Tile 69fd89.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 69fd89 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.0309 + posY: 1.616959 + posZ: -7.58750057 + rotX: 359.9201 + rotY: 270.009583 + rotZ: 0.0168869775 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Custom_Tile 71210c.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Custom_Tile 71210c.yaml new file mode 100644 index 000000000..397dcdc3e --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Custom_Tile 71210c.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 71210c +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.62025654 + posZ: -11.5100012 + rotX: 0.0168725755 + rotY: 179.999481 + rotZ: 0.07993975 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Custom_Tile 7234af.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Custom_Tile 7234af.yaml new file mode 100644 index 000000000..3b76cc342 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Custom_Tile 7234af.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 7234af +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.5839 + posY: 1.62834907 + posZ: 0.061599724 + rotX: 359.9201 + rotY: 270.009644 + rotZ: 0.0168860871 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Custom_Tile 88e8cf.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Custom_Tile 88e8cf.yaml new file mode 100644 index 000000000..108100463 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Custom_Tile 88e8cf.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 88e8cf +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.9009 + posY: 1.6213026 + posZ: 7.7793 + rotX: 359.9201 + rotY: 270.00943 + rotZ: 0.0168878045 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Custom_Tile a1af1f.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Custom_Tile a1af1f.yaml new file mode 100644 index 000000000..06ba2394d --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Custom_Tile a1af1f.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: a1af1f +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.613 + posY: 1.61019206 + posZ: -0.176400274 + rotX: 359.9201 + rotY: 270.00946 + rotZ: 0.0168870445 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Custom_Tile b76184.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Custom_Tile b76184.yaml new file mode 100644 index 000000000..8f1a5cb85 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Custom_Tile b76184.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: b76184 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.6393 + posY: 1.63062513 + posZ: 7.52930069 + rotX: 359.9201 + rotY: 270.0097 + rotZ: 0.0168862343 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Custom_Tile c425b7.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Custom_Tile c425b7.yaml new file mode 100644 index 000000000..15310565f --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Custom_Tile c425b7.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: c425b7 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.622518 + posZ: -3.83 + rotX: 0.016872894 + rotY: 179.999222 + rotZ: 0.0799393356 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Custom_Tile d7e54e.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Custom_Tile d7e54e.yaml new file mode 100644 index 000000000..2c28d9e30 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Custom_Tile d7e54e.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: d7e54e +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: -34.2304 + posY: 1.62703168 + posZ: -7.473301 + rotX: 359.9201 + rotY: 270.009674 + rotZ: 0.0168835614 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Custom_Tile f9947f.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Custom_Tile f9947f.yaml new file mode 100644 index 000000000..18ad4b9b4 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Custom_Tile f9947f.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: f9947f +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.63391447 + posZ: 3.86000061 + rotX: 0.01687327 + rotY: 179.9989 + rotZ: 0.079938665 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Custom_Tile fb5176.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Custom_Tile fb5176.yaml new file mode 100644 index 000000000..2cd362b5e --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Custom_Tile fb5176.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: fb5176 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.62702024 + posZ: 11.4600019 + rotX: 0.016872827 + rotY: 179.999252 + rotZ: 0.07993881 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Custom_Tile The Blob that Ate Everything bbb70a.ttslua new file mode 100644 index 000000000..ac13f876e --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Custom_Tile The Blob that Ate Everything bbb70a.ttslua @@ -0,0 +1,25 @@ +name = 'The Blob' + +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 + +function standaloneClick() + Global.call('fillContainer', {object=self, key=name, mode='standalone'}) +end \ No newline at end of file diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Custom_Tile The Blob that Ate Everything bbb70a.yaml new file mode 100644 index 000000000..37419bd1c --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Custom_Tile The Blob that Ate Everything bbb70a.yaml @@ -0,0 +1,42 @@ +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: http://cloud-3.steamusercontent.com/ugc/949588657194710961/D864BCCCC1C811EC7F0AED69D1C30C678D3D9FC9/ + ImageURL: http://cloud-3.steamusercontent.com/ugc/965354846165100486/3DC8FCEF364B30758B09EF96AF9458F2B8E64D56/ + WidthScale: 0.0 +Description: click to set chaos token difficulty +GMNotes: '' +GUID: bbb70a +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Tile The Blob that Ate Everything bbb70a.ttslua' +LuaScriptState: '' +Name: Custom_Tile +Nickname: The Blob that Ate Everything +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.37590027 + posY: 1.581772 + posZ: -15.0362005 + rotX: 359.919739 + rotY: 270.030579 + rotZ: 0.0167950243 + scaleX: 2.2 + scaleY: 1.0 + scaleZ: 2.2 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Deck Agenda Deck 4f9f66.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Deck Agenda Deck 4f9f66.yaml new file mode 100644 index 000000000..206cabe13 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Deck Agenda Deck 4f9f66.yaml @@ -0,0 +1,186 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 234403 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2344': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/784129708171677489/8C336FEC8DF768DFAF70C8F8212BF5F60E7CC9EA/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784129708171809776/A9CE1BED9C22D932C83AA7D75891C8DFEC887A78/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 3 + GMNotes: '' + GUID: 885de9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Anomaly Consumes + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 18.6255741 + posY: 1.52840781 + posZ: 3.918691 + rotX: 0.0219238438 + rotY: 179.997452 + rotZ: 0.07746302 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234302 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2343': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/784129708171677489/8C336FEC8DF768DFAF70C8F8212BF5F60E7CC9EA/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784129708171809776/A9CE1BED9C22D932C83AA7D75891C8DFEC887A78/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 2 + GMNotes: '' + GUID: e29d3c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Anomaly Swells + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 18.7836189 + posY: 1.67649984 + posZ: 3.92903686 + rotX: 0.03526809 + rotY: 179.9961 + rotZ: 0.06678854 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234201 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2342': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/784129708171677489/8C336FEC8DF768DFAF70C8F8212BF5F60E7CC9EA/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784129708171809776/A9CE1BED9C22D932C83AA7D75891C8DFEC887A78/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 1 + GMNotes: '' + GUID: cdd1c2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Anomaly Spreads + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 19.01768 + posY: 1.69414973 + posZ: 3.87610316 + rotX: 0.0170810241 + rotY: 179.891678 + rotZ: 0.04567544 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2342': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/784129708171677489/8C336FEC8DF768DFAF70C8F8212BF5F60E7CC9EA/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784129708171809776/A9CE1BED9C22D932C83AA7D75891C8DFEC887A78/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + '2343': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/784129708171677489/8C336FEC8DF768DFAF70C8F8212BF5F60E7CC9EA/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784129708171809776/A9CE1BED9C22D932C83AA7D75891C8DFEC887A78/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + '2344': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/784129708171677489/8C336FEC8DF768DFAF70C8F8212BF5F60E7CC9EA/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784129708171809776/A9CE1BED9C22D932C83AA7D75891C8DFEC887A78/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 234403 +- 234302 +- 234201 +Description: '' +GMNotes: '' +GUID: 4f9f66 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Agenda Deck +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.7246 + posY: 1.65664113 + posZ: 0.3735006 + rotX: 0.0168335 + rotY: 180.001175 + rotZ: 0.08025798 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Deck Encounter Deck c164a9.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Deck Encounter Deck c164a9.yaml new file mode 100644 index 000000000..2ebbedf27 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Deck Encounter Deck c164a9.yaml @@ -0,0 +1,1333 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 233730 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2337': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784129708171655462/0B7EFEEA9A53B93350FEC7F68F39A20D1D6580A9/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: d04e21 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '"It''s got me!"' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 1.7040925 + posY: 2.345853 + posZ: 6.29429626 + rotX: 359.9901 + rotY: 269.98053 + rotZ: 196.100159 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233731 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2337': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784129708171655462/0B7EFEEA9A53B93350FEC7F68F39A20D1D6580A9/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Ooze. Power. + GMNotes: '' + GUID: 06905d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Alien Food Chain + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.37415 + posY: 1.703678 + posZ: -1.196294 + rotX: 359.919647 + rotY: 270.001282 + rotZ: 0.0123873632 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233723 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2337': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784129708171655462/0B7EFEEA9A53B93350FEC7F68F39A20D1D6580A9/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Attack. + GMNotes: '' + GUID: 964cf6 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Devouring Ooze + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 6.719559 + posY: 1.54456687 + posZ: -7.08503866 + rotX: 359.920441 + rotY: 270.000061 + rotZ: 180.018478 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233722 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2337': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784129708171655462/0B7EFEEA9A53B93350FEC7F68F39A20D1D6580A9/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Power. + GMNotes: '' + GUID: c9c781 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Reality Acid + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 6.21902943 + posY: 1.70130026 + posZ: -5.02699 + rotX: 359.91983 + rotY: 270.051819 + rotZ: 0.01628126 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233722 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2337': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784129708171655462/0B7EFEEA9A53B93350FEC7F68F39A20D1D6580A9/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Power. + GMNotes: '' + GUID: c9c781 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Reality Acid + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 6.21902943 + posY: 1.71497309 + posZ: -5.02699 + rotX: 359.91983 + rotY: 270.051819 + rotZ: 0.0162669625 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233726 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2337': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784129708171655462/0B7EFEEA9A53B93350FEC7F68F39A20D1D6580A9/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Attack. + GMNotes: '' + GUID: 1533f2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Wave of Ooze + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 6.276986 + posY: 1.69991183 + posZ: -5.972077 + rotX: 359.9269 + rotY: 269.999939 + rotZ: 180.025467 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233729 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2337': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784129708171655462/0B7EFEEA9A53B93350FEC7F68F39A20D1D6580A9/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Power. + GMNotes: '' + GUID: 37d71c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Replication + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 6.44444561 + posY: 1.54275393 + posZ: -5.00349 + rotX: 359.920258 + rotY: 269.993927 + rotZ: 0.0161249731 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233718 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2337': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784129708171655462/0B7EFEEA9A53B93350FEC7F68F39A20D1D6580A9/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Ooze. Manifold. + GMNotes: '' + GUID: 87e62f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Grasping Ooze + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 6.707704 + posY: 1.54541576 + posZ: -4.45380068 + rotX: 359.918549 + rotY: 269.988251 + rotZ: 180.0231 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233731 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2337': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784129708171655462/0B7EFEEA9A53B93350FEC7F68F39A20D1D6580A9/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Ooze. Power. + GMNotes: '' + GUID: b7dcaf + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Alien Food Chain + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.72312236 + posY: 1.5475477 + posZ: -1.62568009 + rotX: 359.9202 + rotY: 270.001282 + rotZ: 0.016454516 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233715 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2337': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784129708171655462/0B7EFEEA9A53B93350FEC7F68F39A20D1D6580A9/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Ooze. Manifold. + GMNotes: '' + GUID: 3d77ef + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Oozeling + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 1.71929252 + posY: 1.79318488 + posZ: 5.73906326 + rotX: 359.9437 + rotY: 270.042053 + rotZ: 179.977539 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233728 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2337': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784129708171655462/0B7EFEEA9A53B93350FEC7F68F39A20D1D6580A9/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Ooze. Obstacle. + GMNotes: '' + GUID: ba4619 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Sticky Feet + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 5.505119 + posY: 1.69902086 + posZ: -4.40883636 + rotX: 359.9185 + rotY: 270.016632 + rotZ: 0.0145397289 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233724 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2337': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784129708171655462/0B7EFEEA9A53B93350FEC7F68F39A20D1D6580A9/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Attack. + GMNotes: '' + GUID: 0917e4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Corrosive Slime + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 6.659437 + posY: 1.74950886 + posZ: -5.619573 + rotX: 359.936737 + rotY: 270.015625 + rotZ: 177.083237 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233726 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2337': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784129708171655462/0B7EFEEA9A53B93350FEC7F68F39A20D1D6580A9/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Attack. + GMNotes: '' + GUID: 4b6b0c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Wave of Ooze + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.92581 + posY: 1.97158217 + posZ: 5.755468 + rotX: 358.522125 + rotY: 269.980225 + rotZ: 1.26104343 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233727 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2337': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784129708171655462/0B7EFEEA9A53B93350FEC7F68F39A20D1D6580A9/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Ooze. Hazard. + GMNotes: '' + GUID: 50b1ed + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Caustic Dissemination + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 6.60809851 + posY: 1.54268539 + posZ: -4.500131 + rotX: 359.920135 + rotY: 269.9981 + rotZ: 0.0168774985 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233722 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2337': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784129708171655462/0B7EFEEA9A53B93350FEC7F68F39A20D1D6580A9/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Power. + GMNotes: '' + GUID: c9c781 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Reality Acid + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 6.478346 + posY: 1.73748612 + posZ: -5.02958632 + rotX: 359.933716 + rotY: 269.990723 + rotZ: 177.124 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233722 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2337': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784129708171655462/0B7EFEEA9A53B93350FEC7F68F39A20D1D6580A9/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Power. + GMNotes: '' + GUID: 9a67d2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Reality Acid + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 6.21902943 + posY: 1.697612 + posZ: -5.02699 + rotX: 359.918762 + rotY: 270.051819 + rotZ: 0.01345507 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233730 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2337': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784129708171655462/0B7EFEEA9A53B93350FEC7F68F39A20D1D6580A9/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: c3922d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '"It''s got me!"' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 5.982046 + posY: 1.698393 + posZ: -3.84466815 + rotX: 359.919281 + rotY: 270.0124 + rotZ: 0.0115707694 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233723 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2337': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784129708171655462/0B7EFEEA9A53B93350FEC7F68F39A20D1D6580A9/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Attack. + GMNotes: '' + GUID: c2b0d9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Devouring Ooze + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 6.564712 + posY: 1.69919741 + posZ: -7.10105228 + rotX: 359.942322 + rotY: 270.0 + rotZ: 180.020065 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233725 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2337': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784129708171655462/0B7EFEEA9A53B93350FEC7F68F39A20D1D6580A9/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Attack. + GMNotes: '' + GUID: bd696d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Consuming Maw + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 4.896737 + posY: 1.69967663 + posZ: -5.826872 + rotX: 359.922852 + rotY: 269.978149 + rotZ: 0.0146339554 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233719 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2337': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784129708171655462/0B7EFEEA9A53B93350FEC7F68F39A20D1D6580A9/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Ooze. Manifold. + GMNotes: '' + GUID: '864170' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Cubic Ooze + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 6.93788338 + posY: 1.54424965 + posZ: -7.09519958 + rotX: 359.920471 + rotY: 269.999939 + rotZ: 180.019165 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233726 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2337': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784129708171655462/0B7EFEEA9A53B93350FEC7F68F39A20D1D6580A9/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Attack. + GMNotes: '' + GUID: 4b6b0c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Wave of Ooze + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.92770433 + posY: 1.98929358 + posZ: 5.757153 + rotX: 359.918549 + rotY: 270.000061 + rotZ: 180.017334 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233724 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2337': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784129708171655462/0B7EFEEA9A53B93350FEC7F68F39A20D1D6580A9/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Attack. + GMNotes: '' + GUID: eb61b2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Corrosive Slime + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 6.855549 + posY: 1.54496 + posZ: -5.369554 + rotX: 359.919556 + rotY: 269.998535 + rotZ: 180.0147 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233725 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2337': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784129708171655462/0B7EFEEA9A53B93350FEC7F68F39A20D1D6580A9/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Attack. + GMNotes: '' + GUID: '259925' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Consuming Maw + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 4.896737 + posY: 1.71701765 + posZ: -5.826872 + rotX: 359.920624 + rotY: 269.978149 + rotZ: 0.0164380018 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233716 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2337': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784129708171655462/0B7EFEEA9A53B93350FEC7F68F39A20D1D6580A9/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Ooze. Manifold. + GMNotes: '' + GUID: ed9f9c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Oozeling + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 1.46899486 + posY: 1.82533717 + posZ: 6.07875729 + rotX: 0.04182776 + rotY: 269.9803 + rotZ: 180.730652 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233725 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2337': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784129708171655462/0B7EFEEA9A53B93350FEC7F68F39A20D1D6580A9/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Attack. + GMNotes: '' + GUID: '259925' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Consuming Maw + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 4.88049 + posY: 1.5447644 + posZ: -5.542061 + rotX: 359.920349 + rotY: 269.978149 + rotZ: 0.0153961219 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233728 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2337': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784129708171655462/0B7EFEEA9A53B93350FEC7F68F39A20D1D6580A9/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Ooze. Obstacle. + GMNotes: '' + GUID: '983682' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Sticky Feet + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 5.80221558 + posY: 1.54378676 + posZ: -4.51736 + rotX: 359.9203 + rotY: 270.016663 + rotZ: 0.0157058686 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233714 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2337': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784129708171655462/0B7EFEEA9A53B93350FEC7F68F39A20D1D6580A9/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Ooze. Manifold. + GMNotes: '' + GUID: f917d3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Oozeling + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.36932063 + posY: 1.80191815 + posZ: 7.322728 + rotX: 359.9388 + rotY: 269.981262 + rotZ: 179.994644 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233717 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2337': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784129708171655462/0B7EFEEA9A53B93350FEC7F68F39A20D1D6580A9/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Ooze. Manifold. + GMNotes: '' + GUID: '337725' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Oozeling + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.0295527 + posY: 1.78313839 + posZ: 7.201677 + rotX: 359.939423 + rotY: 269.9691 + rotZ: 179.997528 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233727 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2337': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784129708171655462/0B7EFEEA9A53B93350FEC7F68F39A20D1D6580A9/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Ooze. Hazard. + GMNotes: '' + GUID: 63202c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Caustic Dissemination + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 6.277169 + posY: 1.70010948 + posZ: -4.29352951 + rotX: 359.9202 + rotY: 269.998138 + rotZ: 0.0167761631 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 233729 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2337': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784129708171655462/0B7EFEEA9A53B93350FEC7F68F39A20D1D6580A9/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Power. + GMNotes: '' + GUID: dd97de + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Replication + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 6.025188 + posY: 1.69798386 + posZ: -4.64880466 + rotX: 359.919556 + rotY: 269.993958 + rotZ: 0.0122843552 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2337': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784129708171655462/0B7EFEEA9A53B93350FEC7F68F39A20D1D6580A9/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 233730 +- 233731 +- 233723 +- 233722 +- 233722 +- 233726 +- 233729 +- 233718 +- 233731 +- 233715 +- 233728 +- 233724 +- 233726 +- 233727 +- 233722 +- 233722 +- 233730 +- 233723 +- 233725 +- 233719 +- 233726 +- 233724 +- 233725 +- 233716 +- 233725 +- 233728 +- 233714 +- 233717 +- 233727 +- 233729 +Description: '' +GMNotes: '' +GUID: c164a9 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Encounter Deck +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.92710018 + posY: 1.7717092 + posZ: 5.75740051 + 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 The Side Missions 791837/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Deck Quarantine Zones 98c518.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Deck Quarantine Zones 98c518.yaml new file mode 100644 index 000000000..f1a0d6984 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Deck Quarantine Zones 98c518.yaml @@ -0,0 +1,473 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 235518 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2355': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/784129708171677489/8C336FEC8DF768DFAF70C8F8212BF5F60E7CC9EA/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784129708171809776/A9CE1BED9C22D932C83AA7D75891C8DFEC887A78/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Oozified. + GMNotes: '' + GUID: 91dfcd + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Quarantine Zone + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -17.1201458 + posY: 1.68201363 + posZ: 7.57007647 + rotX: 359.922852 + rotY: 270.006561 + rotZ: 180.021759 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 235513 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2355': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/784129708171677489/8C336FEC8DF768DFAF70C8F8212BF5F60E7CC9EA/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784129708171809776/A9CE1BED9C22D932C83AA7D75891C8DFEC887A78/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Oozified. + GMNotes: '' + GUID: a12ccd + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Quarantine Zone + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -17.119112 + posY: 1.82936358 + posZ: 7.5688405 + rotX: 359.0086 + rotY: 269.990845 + rotZ: 181.0276 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 235518 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2355': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/784129708171677489/8C336FEC8DF768DFAF70C8F8212BF5F60E7CC9EA/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784129708171809776/A9CE1BED9C22D932C83AA7D75891C8DFEC887A78/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Oozified. + GMNotes: '' + GUID: d0fd9f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Quarantine Zone + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -17.1188431 + posY: 1.82246339 + posZ: 7.568474 + rotX: 358.8257 + rotY: 269.989166 + rotZ: 181.1657 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 235519 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2355': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/784129708171677489/8C336FEC8DF768DFAF70C8F8212BF5F60E7CC9EA/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784129708171809776/A9CE1BED9C22D932C83AA7D75891C8DFEC887A78/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Oozified. + GMNotes: '' + GUID: 5193e9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Quarantine Zone + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -17.12001 + posY: 1.83635271 + posZ: 3.860006 + rotX: 359.92038 + rotY: 269.9998 + rotZ: 180.018875 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 235517 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2355': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/784129708171677489/8C336FEC8DF768DFAF70C8F8212BF5F60E7CC9EA/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784129708171809776/A9CE1BED9C22D932C83AA7D75891C8DFEC887A78/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Oozified. + GMNotes: '' + GUID: 5f2a9b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Quarantine Zone + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -17.118784 + posY: 1.81605113 + posZ: 3.85864353 + rotX: 358.5247 + rotY: 269.9842 + rotZ: 181.274231 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 235519 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2355': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/784129708171677489/8C336FEC8DF768DFAF70C8F8212BF5F60E7CC9EA/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784129708171809776/A9CE1BED9C22D932C83AA7D75891C8DFEC887A78/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Oozified. + GMNotes: '' + GUID: b3a920 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Quarantine Zone + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -17.1200829 + posY: 1.68096638 + posZ: 3.85989141 + rotX: 359.922424 + rotY: 270.0056 + rotZ: 180.019272 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 235514 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2355': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/784129708171677489/8C336FEC8DF768DFAF70C8F8212BF5F60E7CC9EA/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784129708171809776/A9CE1BED9C22D932C83AA7D75891C8DFEC887A78/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Oozified. + GMNotes: '' + GUID: 2947dc + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Quarantine Zone + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -17.1199627 + posY: 1.83645034 + posZ: 7.56998348 + rotX: 359.934418 + rotY: 270.0001 + rotZ: 180.015259 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 235516 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2355': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/784129708171677489/8C336FEC8DF768DFAF70C8F8212BF5F60E7CC9EA/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784129708171809776/A9CE1BED9C22D932C83AA7D75891C8DFEC887A78/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Oozified. + GMNotes: '' + GUID: 7eb33c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Quarantine Zone + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -17.1185226 + posY: 1.83609045 + posZ: 7.571276 + rotX: 358.580444 + rotY: 270.0115 + rotZ: 178.767975 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 235517 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2355': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/784129708171677489/8C336FEC8DF768DFAF70C8F8212BF5F60E7CC9EA/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784129708171809776/A9CE1BED9C22D932C83AA7D75891C8DFEC887A78/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Oozified. + GMNotes: '' + GUID: 4a8e9c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Quarantine Zone + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -17.1180935 + posY: 1.80337334 + posZ: 3.85975981 + rotX: 358.094757 + rotY: 269.9974 + rotZ: 180.014236 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 235511 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2355': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/784129708171677489/8C336FEC8DF768DFAF70C8F8212BF5F60E7CC9EA/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784129708171809776/A9CE1BED9C22D932C83AA7D75891C8DFEC887A78/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Oozified. + GMNotes: '' + GUID: 1cd828 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Quarantine Zone + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -17.1180439 + posY: 1.79305375 + posZ: 7.56974363 + rotX: 358.04184 + rotY: 269.99823 + rotZ: 180.012955 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2355': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/784129708171677489/8C336FEC8DF768DFAF70C8F8212BF5F60E7CC9EA/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784129708171809776/A9CE1BED9C22D932C83AA7D75891C8DFEC887A78/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 235518 +- 235513 +- 235518 +- 235519 +- 235517 +- 235519 +- 235514 +- 235516 +- 235517 +- 235511 +Description: '' +GMNotes: '' +GUID: 98c518 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Quarantine Zones +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -12.4828005 + posY: 1.66327417 + posZ: 7.58480072 + rotX: 359.9201 + rotY: 269.999939 + rotZ: 0.0168755483 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Deck Starting Locations fd7be1.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Deck Starting Locations fd7be1.yaml new file mode 100644 index 000000000..761ffa606 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Blob that Ate Everything 4dee5a/Deck Starting Locations fd7be1.yaml @@ -0,0 +1,129 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 234112 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2341': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/784129708171677489/8C336FEC8DF768DFAF70C8F8212BF5F60E7CC9EA/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784129708171809776/A9CE1BED9C22D932C83AA7D75891C8DFEC887A78/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: d47065 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Research Site + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -12.4818668 + posY: 1.6738677 + posZ: 11.2376032 + rotX: 359.9207 + rotY: 270.000183 + rotZ: 0.0128860772 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 234115 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2341': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/784129708171677489/8C336FEC8DF768DFAF70C8F8212BF5F60E7CC9EA/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784129708171809776/A9CE1BED9C22D932C83AA7D75891C8DFEC887A78/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: '358172' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Temporary HQ + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -12.1492176 + posY: 1.81891513 + posZ: 11.0700445 + rotX: 359.9386 + rotY: 270.0 + rotZ: 0.00410710042 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2341': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/784129708171677489/8C336FEC8DF768DFAF70C8F8212BF5F60E7CC9EA/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/784129708171809776/A9CE1BED9C22D932C83AA7D75891C8DFEC887A78/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 234112 +- 234115 +Description: '' +GMNotes: '' +GUID: fd7be1 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Starting Locations +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -12.3778992 + posY: 1.68070948 + posZ: 11.4083014 + rotX: 359.9201 + rotY: 270.000122 + rotZ: 0.0168767087 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Collector 9810eb.ttslua b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Collector 9810eb.ttslua new file mode 100644 index 000000000..46067f58e --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Collector 9810eb.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.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.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 791837/Custom_Model_Bag The Collector 9810eb.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Collector 9810eb.yaml new file mode 100644 index 000000000..d6aa13662 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Collector 9810eb.yaml @@ -0,0 +1,79 @@ +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 Collector 9810eb/Deck fa8210.yaml' +- !include 'Custom_Model_Bag The Collector 9810eb/Deck Encounter Deck 010d85.yaml' +- !include 'Custom_Model_Bag The Collector 9810eb/Deck Agenda Deck 98b377.yaml' +- !include 'Custom_Model_Bag The Collector 9810eb/Deck 368ca7.yaml' +- !include 'Custom_Model_Bag The Collector 9810eb/Card Setup f8005d.yaml' +- !include 'Custom_Model_Bag The Collector 9810eb/Custom_Tile The Collector 150603.yaml' +- !include 'Custom_Model_Bag The Collector 9810eb/Card 45a6ec.yaml' +- !include 'Custom_Model_Bag The Collector 9810eb/Custom_Tile 8cf84a.yaml' +- !include 'Custom_Model_Bag The Collector 9810eb/Card 149deb.yaml' +- !include 'Custom_Model_Bag The Collector 9810eb/Card c29eac.yaml' +- !include 'Custom_Model_Bag The Collector 9810eb/Custom_Tile 27dc65.yaml' +- !include 'Custom_Model_Bag The Collector 9810eb/Card 5e7e07.yaml' +- !include 'Custom_Model_Bag The Collector 9810eb/Custom_Tile 6f9258.yaml' +- !include 'Custom_Model_Bag The Collector 9810eb/Custom_Tile 643870.yaml' +- !include 'Custom_Model_Bag The Collector 9810eb/Custom_Tile 7234af.yaml' +- !include 'Custom_Model_Bag The Collector 9810eb/Card abd037.yaml' +- !include 'Custom_Model_Bag The Collector 9810eb/Card d1bab1.yaml' +- !include 'Custom_Model_Bag The Collector 9810eb/Custom_Tile 20314c.yaml' +- !include 'Custom_Model_Bag The Collector 9810eb/Card 8ce0e1.yaml' +- !include 'Custom_Model_Bag The Collector 9810eb/Card Setup 00688d.yaml' +CustomMesh: + CastShadows: true + ColliderURL: '' + Convex: true + DiffuseURL: http://cloud-3.steamusercontent.com/ugc/798737729142920786/52ED9B6276539BF3E1F332C363B21B3D7F6960AA/ + MaterialIndex: 3 + MeshURL: https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj + NormalURL: '' + TypeIndex: 6 +Description: '' +GMNotes: '' +GUID: 9810eb +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Model_Bag The Collector 9810eb.ttslua' +LuaScriptState: '{"ml":{"00688d":{"lock":false,"pos":{"x":-50.9244,"y":1.7266,"z":8.1784},"rot":{"x":359.9201,"y":270,"z":0.0169}},"010d85":{"lock":false,"pos":{"x":-3.9274,"y":1.7344,"z":5.7571},"rot":{"x":359.9197,"y":270.0001,"z":180.0168}},"149deb":{"lock":false,"pos":{"x":-17.1199,"y":1.6799,"z":-0.03},"rot":{"x":359.9201,"y":269.9999,"z":180.0169}},"150603":{"lock":false,"pos":{"x":-4.4609,"y":1.5834,"z":-14.7893},"rot":{"x":359.9197,"y":269.9951,"z":0.0168}},"20314c":{"lock":false,"pos":{"x":-23.6765,"y":1.6134,"z":-3.83},"rot":{"x":0.0169,"y":180,"z":0.0799}},"27dc65":{"lock":false,"pos":{"x":-20.5971,"y":1.6123,"z":7.2097},"rot":{"x":359.9201,"y":269.993,"z":0.0169}},"368ca7":{"lock":false,"pos":{"x":-2.6886,"y":1.6623,"z":-5.0485},"rot":{"x":359.9832,"y":-0.0001,"z":359.9197}},"45a6ec":{"lock":false,"pos":{"x":-17.1199,"y":1.6821,"z":7.57},"rot":{"x":359.9201,"y":269.9998,"z":180.0169}},"5e7e07":{"lock":false,"pos":{"x":-23.6766,"y":1.6935,"z":15.19},"rot":{"x":359.9201,"y":270.0272,"z":180.0168}},"643870":{"lock":false,"pos":{"x":-20.1546,"y":1.6096,"z":0.0507},"rot":{"x":359.9201,"y":269.9931,"z":0.0169}},"6f9258":{"lock":false,"pos":{"x":-20.9414,"y":1.6117,"z":3.308},"rot":{"x":0.0776,"y":120,"z":0.0253}},"7234af":{"lock":false,"pos":{"x":-20.7421,"y":1.6081,"z":-7.8073},"rot":{"x":359.9201,"y":269.9929,"z":0.0169}},"8ce0e1":{"lock":false,"pos":{"x":-23.6765,"y":1.6868,"z":-7.7},"rot":{"x":359.9201,"y":269.9999,"z":180.0169}},"8cf84a":{"lock":false,"pos":{"x":-17.12,"y":1.6065,"z":3.86},"rot":{"x":0.0169,"y":180.0001,"z":0.0799}},"98b377":{"lock":false,"pos":{"x":-2.7248,"y":1.6566,"z":0.3733},"rot":{"x":359.9832,"y":-0.0021,"z":359.9197}},"abd037":{"lock":false,"pos":{"x":-23.6766,"y":1.6913,"z":7.57},"rot":{"x":359.9201,"y":270.0001,"z":180.0169}},"c29eac":{"lock":false,"pos":{"x":-17.12,"y":1.6776,"z":-7.7},"rot":{"x":359.9201,"y":269.9999,"z":180.0169}},"d1bab1":{"lock":false,"pos":{"x":-23.6765,"y":1.689,"z":-0.03},"rot":{"x":359.9201,"y":269.9999,"z":180.0169}},"f8005d":{"lock":false,"pos":{"x":-3.9558,"y":1.6556,"z":-10.4412},"rot":{"x":359.9197,"y":270,"z":0.0168}},"fa8210":{"lock":false,"pos":{"x":1.6965,"y":1.6545,"z":14.2788},"rot":{"x":359.9552,"y":224.9979,"z":0.0687}}}}' +MaterialIndex: -1 +MeshIndex: -1 +Name: Custom_Model_Bag +Nickname: The Collector +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.8136578 + posY: 8.455771 + posZ: -5.49717569 + rotX: 0.02080861 + rotY: 269.999878 + rotZ: 0.01677113 + scaleX: 2.21 + scaleY: 0.2 + scaleZ: 2.46 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Collector 9810eb/Card 149deb.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Collector 9810eb/Card 149deb.yaml new file mode 100644 index 000000000..ef29e5226 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Collector 9810eb/Card 149deb.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 3704 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '37': + BackIsHidden: true + BackURL: https://i.imgur.com/iREKv0H.jpg/ + FaceURL: https://i.imgur.com/uW8uNqG.jpg/ + NumHeight: 2 + NumWidth: 6 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 149deb +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -17.1198959 + posY: 1.67990053 + posZ: -0.0299995728 + rotX: 359.9201 + rotY: 269.9999 + rotZ: 180.016861 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Collector 9810eb/Card 45a6ec.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Collector 9810eb/Card 45a6ec.yaml new file mode 100644 index 000000000..e06420818 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Collector 9810eb/Card 45a6ec.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 3702 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '37': + BackIsHidden: true + BackURL: https://i.imgur.com/iREKv0H.jpg/ + FaceURL: https://i.imgur.com/uW8uNqG.jpg/ + NumHeight: 2 + NumWidth: 6 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 45a6ec +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -17.1198978 + posY: 1.68213844 + posZ: 7.57000065 + rotX: 359.9201 + rotY: 269.999847 + rotZ: 180.016861 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Collector 9810eb/Card 5e7e07.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Collector 9810eb/Card 5e7e07.yaml new file mode 100644 index 000000000..d80e64cac --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Collector 9810eb/Card 5e7e07.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 108802 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '1088': + BackIsHidden: true + BackURL: https://i.imgur.com/hONUji8.jpg/ + FaceURL: https://i.imgur.com/uDAJCIm.jpg/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 5e7e07 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -23.6766 + posY: 1.69352508 + posZ: 15.1900024 + rotX: 359.9201 + rotY: 270.0272 + rotZ: 180.016815 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Collector 9810eb/Card 8ce0e1.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Collector 9810eb/Card 8ce0e1.yaml new file mode 100644 index 000000000..81a0b3406 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Collector 9810eb/Card 8ce0e1.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 3705 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '37': + BackIsHidden: true + BackURL: https://i.imgur.com/iREKv0H.jpg/ + FaceURL: https://i.imgur.com/uW8uNqG.jpg/ + NumHeight: 2 + NumWidth: 6 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 8ce0e1 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -23.6765 + posY: 1.68678474 + posZ: -7.700001 + rotX: 359.9201 + rotY: 269.999878 + rotZ: 180.016861 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Collector 9810eb/Card abd037.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Collector 9810eb/Card abd037.yaml new file mode 100644 index 000000000..d6f273544 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Collector 9810eb/Card abd037.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 3701 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '37': + BackIsHidden: true + BackURL: https://i.imgur.com/iREKv0H.jpg/ + FaceURL: https://i.imgur.com/uW8uNqG.jpg/ + NumHeight: 2 + NumWidth: 6 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: abd037 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -23.6766 + posY: 1.69128132 + posZ: 7.570002 + 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 The Side Missions 791837/Custom_Model_Bag The Collector 9810eb/Card c29eac.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Collector 9810eb/Card c29eac.yaml new file mode 100644 index 000000000..11a261e45 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Collector 9810eb/Card c29eac.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 3700 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '37': + BackIsHidden: true + BackURL: https://i.imgur.com/iREKv0H.jpg/ + FaceURL: https://i.imgur.com/uW8uNqG.jpg/ + NumHeight: 2 + NumWidth: 6 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: c29eac +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -17.1199989 + posY: 1.67764223 + posZ: -7.70000172 + rotX: 359.9201 + rotY: 269.9999 + rotZ: 180.016861 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Collector 9810eb/Card d1bab1.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Collector 9810eb/Card d1bab1.yaml new file mode 100644 index 000000000..bc0dc2653 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Collector 9810eb/Card d1bab1.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 3703 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '37': + BackIsHidden: true + BackURL: https://i.imgur.com/iREKv0H.jpg/ + FaceURL: https://i.imgur.com/uW8uNqG.jpg/ + NumHeight: 2 + NumWidth: 6 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: d1bab1 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -23.6765 + posY: 1.68904328 + posZ: -0.0299993623 + rotX: 359.9201 + rotY: 269.9999 + rotZ: 180.016861 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Collector 9810eb/Card Setup 00688d.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Collector 9810eb/Card Setup 00688d.yaml new file mode 100644 index 000000000..b30283e21 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Collector 9810eb/Card Setup 00688d.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 3806 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '38': + BackIsHidden: true + BackURL: https://i.imgur.com/L9ehcMg.jpg/ + FaceURL: https://i.imgur.com/crSMu5A.jpg/ + NumHeight: 2 + NumWidth: 6 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 00688d +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Setup +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -50.9244 + posY: 1.72662532 + posZ: 8.178399 + rotX: 359.9201 + rotY: 269.999969 + rotZ: 0.016876258 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Collector 9810eb/Card Setup f8005d.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Collector 9810eb/Card Setup f8005d.yaml new file mode 100644 index 000000000..0acbad314 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Collector 9810eb/Card Setup f8005d.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 3806 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '38': + BackIsHidden: true + BackURL: https://i.imgur.com/L9ehcMg.jpg/ + FaceURL: https://i.imgur.com/crSMu5A.jpg/ + NumHeight: 2 + NumWidth: 6 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: f8005d +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Setup +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.95580029 + posY: 1.65564787 + posZ: -10.4412022 + rotX: 359.919739 + rotY: 269.999969 + rotZ: 0.0168408174 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Collector 9810eb/Custom_Tile 20314c.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Collector 9810eb/Custom_Tile 20314c.yaml new file mode 100644 index 000000000..ab6008213 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Collector 9810eb/Custom_Tile 20314c.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 20314c +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.6765 + posY: 1.613388 + posZ: -3.83 + rotX: 0.0168717243 + rotY: 180.000031 + rotZ: 0.07993594 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Collector 9810eb/Custom_Tile 27dc65.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Collector 9810eb/Custom_Tile 27dc65.yaml new file mode 100644 index 000000000..09c873907 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Collector 9810eb/Custom_Tile 27dc65.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 27dc65 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.5971 + posY: 1.61234462 + posZ: 7.20969963 + rotX: 359.9201 + rotY: 269.993042 + rotZ: 0.0169119574 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Collector 9810eb/Custom_Tile 643870.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Collector 9810eb/Custom_Tile 643870.yaml new file mode 100644 index 000000000..40736edca --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Collector 9810eb/Custom_Tile 643870.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: '643870' +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.1546 + posY: 1.60961974 + posZ: 0.0506997854 + rotX: 359.9201 + rotY: 269.993073 + rotZ: 0.0169095527 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Collector 9810eb/Custom_Tile 6f9258.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Collector 9810eb/Custom_Tile 6f9258.yaml new file mode 100644 index 000000000..859c289ae --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Collector 9810eb/Custom_Tile 6f9258.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 6f9258 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.9414 + posY: 1.61167586 + posZ: 3.30800056 + rotX: 0.07763144 + rotY: 120.000046 + rotZ: 0.0253059641 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Collector 9810eb/Custom_Tile 7234af.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Collector 9810eb/Custom_Tile 7234af.yaml new file mode 100644 index 000000000..fc000c09a --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Collector 9810eb/Custom_Tile 7234af.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 7234af +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.7420979 + posY: 1.60812509 + posZ: -7.807301 + rotX: 359.9201 + rotY: 269.99292 + rotZ: 0.0169136077 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Collector 9810eb/Custom_Tile 8cf84a.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Collector 9810eb/Custom_Tile 8cf84a.yaml new file mode 100644 index 000000000..7dcdb74b9 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Collector 9810eb/Custom_Tile 8cf84a.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 8cf84a +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.1199989 + posY: 1.60650969 + posZ: 3.86 + rotX: 0.016871769 + rotY: 180.000122 + rotZ: 0.0799462944 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Collector 9810eb/Custom_Tile The Collector 150603.ttslua b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Collector 9810eb/Custom_Tile The Collector 150603.ttslua new file mode 100644 index 000000000..af63b7201 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Collector 9810eb/Custom_Tile The Collector 150603.ttslua @@ -0,0 +1,21 @@ +name = 'The Collector' + +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 The Side Missions 791837/Custom_Model_Bag The Collector 9810eb/Custom_Tile The Collector 150603.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Collector 9810eb/Custom_Tile The Collector 150603.yaml new file mode 100644 index 000000000..98d3bf251 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Collector 9810eb/Custom_Tile The Collector 150603.yaml @@ -0,0 +1,42 @@ +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 +GMNotes: '' +GUID: '150603' +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Tile The Collector 150603.ttslua' +LuaScriptState: '' +Name: Custom_Tile +Nickname: The Collector +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -4.4609 + posY: 1.58336425 + posZ: -14.7893047 + rotX: 359.919739 + rotY: 269.995117 + rotZ: 0.0168447383 + scaleX: 2.2 + scaleY: 1.0 + scaleZ: 2.2 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Collector 9810eb/Deck 368ca7.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Collector 9810eb/Deck 368ca7.yaml new file mode 100644 index 000000000..86b9a9841 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Collector 9810eb/Deck 368ca7.yaml @@ -0,0 +1,129 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 3801 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '38': + BackIsHidden: true + BackURL: https://i.imgur.com/L9ehcMg.jpg/ + FaceURL: https://i.imgur.com/crSMu5A.jpg/ + NumHeight: 2 + NumWidth: 6 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 869a4a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 1.21678936 + posY: 1.65003717 + posZ: -4.67353344 + rotX: 359.9799 + rotY: -0.000148716237 + rotZ: 359.918243 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3800 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '38': + BackIsHidden: true + BackURL: https://i.imgur.com/L9ehcMg.jpg/ + FaceURL: https://i.imgur.com/crSMu5A.jpg/ + NumHeight: 2 + NumWidth: 6 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 0dd0ff + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 1.443194 + posY: 1.79502654 + posZ: -4.767576 + rotX: 359.985565 + rotY: -8.47556148e-05 + rotZ: 359.905823 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '38': + BackIsHidden: true + BackURL: https://i.imgur.com/L9ehcMg.jpg/ + FaceURL: https://i.imgur.com/crSMu5A.jpg/ + NumHeight: 2 + NumWidth: 6 + UniqueBack: true +DeckIDs: +- 3801 +- 3800 +Description: '' +GMNotes: '' +GUID: 368ca7 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.68859982 + posY: 1.66233373 + posZ: -5.04850149 + rotX: 359.983154 + rotY: -0.000146650331 + rotZ: 359.919739 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Collector 9810eb/Deck fa8210.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Collector 9810eb/Deck fa8210.yaml new file mode 100644 index 000000000..a13a4318d --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Collector 9810eb/Deck fa8210.yaml @@ -0,0 +1,179 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 3420 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '34': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642393244/74ADDF83D8B03DBF4AD5DC7230C2D12E84685317/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 899f2f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Amnesia + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -5.329718 + posY: 1.551674 + posZ: -30.3198528 + rotX: 359.917664 + rotY: 269.999817 + rotZ: 0.0159850046 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3609 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Cultist. + GMNotes: '' + GUID: de24dc + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Victoria Devereux + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -5.36202049 + posY: 1.69236481 + posZ: -30.5950851 + rotX: 359.920349 + rotY: 270.0004 + rotZ: 0.0330179967 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3608 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Cultist. Miskatonic. + GMNotes: '' + GUID: 491a2b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Peter Warren + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -5.56503773 + posY: 1.71016371 + posZ: -30.2647419 + rotX: 359.918671 + rotY: 269.998169 + rotZ: 0.0168192387 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '34': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642393244/74ADDF83D8B03DBF4AD5DC7230C2D12E84685317/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 3420 +- 3609 +- 3608 +Description: '' +GMNotes: '' +GUID: fa8210 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 1.69650078 + posY: 1.65453458 + posZ: 14.2788019 + rotX: 359.95517 + rotY: 224.997879 + rotZ: 0.06865381 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Collector 9810eb/Deck Agenda Deck 98b377.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Collector 9810eb/Deck Agenda Deck 98b377.yaml new file mode 100644 index 000000000..d2099644d --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Collector 9810eb/Deck Agenda Deck 98b377.yaml @@ -0,0 +1,168 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 3804 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '38': + BackIsHidden: true + BackURL: https://i.imgur.com/L9ehcMg.jpg/ + FaceURL: https://i.imgur.com/crSMu5A.jpg/ + NumHeight: 2 + NumWidth: 6 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: c2e26b + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -6.14824438 + posY: 1.11975741 + posZ: 4.89588261 + rotX: 1.53587866 + rotY: 0.176874235 + rotZ: 359.4869 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3803 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '38': + BackIsHidden: true + BackURL: https://i.imgur.com/L9ehcMg.jpg/ + FaceURL: https://i.imgur.com/crSMu5A.jpg/ + NumHeight: 2 + NumWidth: 6 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: d4b426 + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -6.612122 + posY: 1.27295589 + posZ: 4.718351 + rotX: 1.43874943 + rotY: 0.0112201739 + rotZ: 359.6178 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3802 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '38': + BackIsHidden: true + BackURL: https://i.imgur.com/L9ehcMg.jpg/ + FaceURL: https://i.imgur.com/crSMu5A.jpg/ + NumHeight: 2 + NumWidth: 6 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 05412e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -45.01819 + posY: 1.516538 + posZ: -76.76846 + rotX: 359.9819 + rotY: 359.98053 + rotZ: 0.0202696584 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '38': + BackIsHidden: true + BackURL: https://i.imgur.com/L9ehcMg.jpg/ + FaceURL: https://i.imgur.com/crSMu5A.jpg/ + NumHeight: 2 + NumWidth: 6 + UniqueBack: true +DeckIDs: +- 3804 +- 3803 +- 3802 +Description: '' +GMNotes: '' +GUID: 98b377 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Agenda Deck +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.7248 + posY: 1.65664124 + posZ: 0.373300642 + rotX: 359.983154 + rotY: -0.00207352336 + rotZ: 359.919739 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Collector 9810eb/Deck Encounter Deck 010d85.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Collector 9810eb/Deck Encounter Deck 010d85.yaml new file mode 100644 index 000000000..d4ebf6199 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Collector 9810eb/Deck Encounter Deck 010d85.yaml @@ -0,0 +1,986 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 3620 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: 61e841 + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ancient Evils + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 19.3824787 + posY: 1.18931484 + posZ: -13.3795919 + rotX: 0.00182821706 + rotY: 269.9948 + rotZ: 359.993744 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3614 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humaniod. Monster. Ghoul. + GMNotes: '' + GUID: 3e53b0 + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ghoul Minion + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 19.6971931 + posY: 1.17572594 + posZ: -13.6021395 + rotX: -0.00505175674 + rotY: 269.982727 + rotZ: 359.986359 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3617 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: aa3d47 + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Rotting Remains + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 18.6710052 + posY: 1.2032001 + posZ: -13.7852364 + rotX: -0.00367826829 + rotY: 270.0144 + rotZ: 359.986481 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3622 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: 03a265 + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Obscuring Fog + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -9.379279 + posY: 1.28442693 + posZ: 6.30602264 + rotX: 0.007577882 + rotY: 270.000122 + rotZ: 179.996185 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3621 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: fb311c + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Crypt Chill + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 18.9324684 + posY: 1.16444588 + posZ: -13.69984 + rotX: -0.00296821166 + rotY: 269.959747 + rotZ: 359.9839 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3628 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Obstacle. + GMNotes: '' + GUID: 9449d7 + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Locked Door + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 19.2395916 + posY: 1.28037047 + posZ: -14.0063772 + rotX: 0.00369006232 + rotY: 269.995239 + rotZ: -0.00264795055 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3619 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: f1a34d + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dissonant Voices + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 18.4652081 + posY: 1.708862 + posZ: -13.8266706 + rotX: 0.008917239 + rotY: 270.114471 + rotZ: 2.939189 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3616 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: d60f3b + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Grasping Hands + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 18.65272 + posY: 1.152789 + posZ: -13.6274767 + rotX: -0.00548657 + rotY: 269.967133 + rotZ: 359.97583 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3621 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: b78c3b + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Crypt Chill + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 18.4922466 + posY: 1.174136 + posZ: -13.7784042 + rotX: -0.00183132244 + rotY: 269.982178 + rotZ: 359.992554 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3618 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: c40f57 + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Frozen in Fear + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 18.6553268 + posY: 1.21283424 + posZ: -13.4177084 + rotX: 0.000710392545 + rotY: 269.997131 + rotZ: 0.00248223 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3618 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: 27c05d + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Frozen in Fear + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 18.5113373 + posY: 1.5692786 + posZ: -13.8091364 + rotX: 0.01546707 + rotY: 270.004272 + rotZ: 1.9546994 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3628 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Obstacle. + GMNotes: '' + GUID: 1340ff + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Locked Door + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 19.4863071 + posY: 1.27076256 + posZ: -12.6934433 + rotX: 0.000446569466 + rotY: 269.998779 + rotZ: 359.992859 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3620 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: 1921c5 + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ancient Evils + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 19.1227684 + posY: 1.17215085 + posZ: -13.3803835 + rotX: -2.71339413e-05 + rotY: 270.001862 + rotZ: 0.0009340562 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3615 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humaniod. Monster. Ghoul. + GMNotes: '' + GUID: a65f30 + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ravenous Ghoul + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 18.9346733 + posY: 1.181428 + posZ: -13.6587 + rotX: -0.004998241 + rotY: 270.027924 + rotZ: 359.980347 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3614 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humaniod. Monster. Ghoul. + GMNotes: '' + GUID: 4218a0 + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ghoul Minion + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 19.3355579 + posY: 1.17374682 + posZ: -13.42193 + rotX: -8.59818538e-05 + rotY: 269.999359 + rotZ: -3.798594e-05 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3617 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: 18e09c + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Rotting Remains + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 19.1528473 + posY: 1.22689176 + posZ: -13.625803 + rotX: 359.9312 + rotY: 270.095032 + rotZ: 359.9917 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3616 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: 9c193f + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Grasping Hands + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 19.28671 + posY: 1.176407 + posZ: -13.503108 + rotX: -0.002710652 + rotY: 269.982666 + rotZ: 359.988342 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3616 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: 6a13ae + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Grasping Hands + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 18.4606762 + posY: 1.18894017 + posZ: -13.7894354 + rotX: 359.992645 + rotY: 270.016846 + rotZ: 359.985 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3619 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: '260768' + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dissonant Voices + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 19.00248 + posY: 1.26085234 + posZ: -13.312664 + rotX: 0.00131972984 + rotY: 270.0029 + rotZ: 0.00292092375 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3617 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: da8001 + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Rotting Remains + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 18.72681 + posY: 1.25154829 + posZ: -13.46681 + rotX: 0.00358677446 + rotY: 269.9897 + rotZ: 0.0117529882 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3614 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humaniod. Monster. Ghoul. + GMNotes: '' + GUID: d84de0 + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ghoul Minion + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 18.5187283 + posY: 1.15601766 + posZ: -14.2425776 + rotX: -0.0007264449 + rotY: 270.0009 + rotZ: -0.00258884043 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3620 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: e0f4c0 + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ancient Evils + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 19.1410484 + posY: 1.0317136 + posZ: -13.6213675 + rotX: -2.016321e-06 + rotY: 269.998322 + rotZ: 3.2237408e-06 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3622 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: '356046' + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Obscuring Fog + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 18.7642517 + posY: 1.18380249 + posZ: -14.1682663 + rotX: -0.00133660936 + rotY: 269.9839 + rotZ: 359.988 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 3620 +- 3614 +- 3617 +- 3622 +- 3621 +- 3628 +- 3619 +- 3616 +- 3621 +- 3618 +- 3618 +- 3628 +- 3620 +- 3615 +- 3614 +- 3617 +- 3616 +- 3616 +- 3619 +- 3617 +- 3614 +- 3620 +- 3622 +Description: '' +GMNotes: '' +GUID: 010d85 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Encounter Deck +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.92740035 + posY: 1.73440325 + posZ: 5.757101 + rotX: 359.919739 + rotY: 270.0001 + rotZ: 180.016815 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Colour out of Space 5b81ff.ttslua b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Colour out of Space 5b81ff.ttslua new file mode 100644 index 000000000..46067f58e --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Colour out of Space 5b81ff.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.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.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 791837/Custom_Model_Bag The Colour out of Space 5b81ff.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Colour out of Space 5b81ff.yaml new file mode 100644 index 000000000..e72b7f5cc --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Colour out of Space 5b81ff.yaml @@ -0,0 +1,83 @@ +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 Colour out of Space 5b81ff/Deck Set Aside 4c7aff.yaml' +- !include 'Custom_Model_Bag The Colour out of Space 5b81ff/Deck Encounter deck b83079.yaml' +- !include 'Custom_Model_Bag The Colour out of Space 5b81ff/Deck Act 6dca3e.yaml' +- !include 'Custom_Model_Bag The Colour out of Space 5b81ff/Deck Agenda 23d608.yaml' +- !include 'Custom_Model_Bag The Colour out of Space 5b81ff/Card 058b91.yaml' +- !include 'Custom_Model_Bag The Colour out of Space 5b81ff/Custom_Tile The Colour + out of Space 2e887e.yaml' +- !include 'Custom_Model_Bag The Colour out of Space 5b81ff/Deck Made Flesh 6f54e2.yaml' +- !include 'Custom_Model_Bag The Colour out of Space 5b81ff/Deck Unnatural Disturbances + a1b852.yaml' +- !include 'Custom_Model_Bag The Colour out of Space 5b81ff/Deck inhospitable Locality + d46b84.yaml' +- !include 'Custom_Model_Bag The Colour out of Space 5b81ff/Deck locations rural 61b186.yaml' +- !include 'Custom_Model_Bag The Colour out of Space 5b81ff/Deck Setup 407732.yaml' +- !include 'Custom_Model_Bag The Colour out of Space 5b81ff/Card bfb121.yaml' +- !include 'Custom_Model_Bag The Colour out of Space 5b81ff/Custom_Tile eb22de.yaml' +- !include 'Custom_Model_Bag The Colour out of Space 5b81ff/Card 770eca.yaml' +- !include 'Custom_Model_Bag The Colour out of Space 5b81ff/Custom_Tile 7234af.yaml' +- !include 'Custom_Model_Bag The Colour out of Space 5b81ff/Card 2ab9ac.yaml' +- !include 'Custom_Model_Bag The Colour out of Space 5b81ff/Custom_Tile 21c977.yaml' +- !include 'Custom_Model_Bag The Colour out of Space 5b81ff/Custom_Tile ab51fa.yaml' +- !include 'Custom_Model_Bag The Colour out of Space 5b81ff/Custom_Tile c6995b.yaml' +- !include 'Custom_Model_Bag The Colour out of Space 5b81ff/Card 80fb47.yaml' +- !include 'Custom_Model_Bag The Colour out of Space 5b81ff/Card 222582.yaml' +CustomMesh: + CastShadows: true + ColliderURL: '' + Convex: true + DiffuseURL: http://cloud-3.steamusercontent.com/ugc/798737729142919895/4026718A421BE11AC64320BE9BC2515B364D066E/ + MaterialIndex: 3 + MeshURL: https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj + NormalURL: '' + TypeIndex: 6 +Description: '' +GMNotes: '' +GUID: 5b81ff +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Model_Bag The Colour out of Space 5b81ff.ttslua' +LuaScriptState: '{"ml":{"058b91":{"lock":false,"pos":{"x":-3.9559,"y":1.6556,"z":-10.4412},"rot":{"x":359.9197,"y":269.9998,"z":0.0168}},"21c977":{"lock":false,"pos":{"x":-21.0584,"y":1.6119,"z":3.505},"rot":{"x":359.9554,"y":225,"z":0.0684}},"222582":{"lock":false,"pos":{"x":-50.9244,"y":1.7266,"z":8.1784},"rot":{"x":359.9201,"y":269.9999,"z":0.0169}},"23d608":{"lock":false,"pos":{"x":-2.6884,"y":1.6535,"z":-5.0486},"rot":{"x":359.9197,"y":269.9854,"z":0.0169}},"2ab9ac":{"lock":false,"pos":{"x":-17.12,"y":1.6776,"z":-7.7},"rot":{"x":359.9201,"y":269.9964,"z":180.0169}},"2e887e":{"lock":false,"pos":{"x":-3.9083,"y":1.5825,"z":-15.1234},"rot":{"x":359.9197,"y":269.9998,"z":0.0168}},"407732":{"lock":false,"pos":{"x":-9.7271,"y":1.6676,"z":-0.255},"rot":{"x":359.9201,"y":269.9876,"z":0.0169}},"4c7aff":{"lock":false,"pos":{"x":1.6966,"y":1.6584,"z":14.2788},"rot":{"x":359.9552,"y":224.998,"z":0.0687}},"61b186":{"lock":false,"pos":{"x":-11.155,"y":1.6791,"z":7.1548},"rot":{"x":359.9201,"y":269.9855,"z":180.0169}},"6dca3e":{"lock":false,"pos":{"x":-2.7246,"y":1.6551,"z":0.3736},"rot":{"x":359.9197,"y":269.9846,"z":0.0169}},"6f54e2":{"lock":false,"pos":{"x":-11.3147,"y":1.6797,"z":13.0979},"rot":{"x":359.9201,"y":269.9855,"z":180.0169}},"7234af":{"lock":false,"pos":{"x":-17.12,"y":1.6042,"z":-3.83},"rot":{"x":359.9831,"y":359.9919,"z":359.92}},"770eca":{"lock":false,"pos":{"x":-17.12,"y":1.6799,"z":-0.03},"rot":{"x":359.9201,"y":269.9958,"z":180.0169}},"80fb47":{"lock":false,"pos":{"x":-23.6765,"y":1.689,"z":-0.03},"rot":{"x":359.9201,"y":269.9855,"z":180.0169}},"a1b852":{"lock":false,"pos":{"x":-11.2981,"y":1.7087,"z":10.3332},"rot":{"x":359.9201,"y":269.9856,"z":180.0169}},"ab51fa":{"lock":false,"pos":{"x":-20.3744,"y":1.6099,"z":0.0842},"rot":{"x":359.9201,"y":269.9999,"z":0.0169}},"b83079":{"lock":false,"pos":{"x":-3.9275,"y":1.7184,"z":5.7571},"rot":{"x":359.9197,"y":269.9856,"z":180.0168}},"bfb121":{"lock":false,"pos":{"x":-17.12,"y":1.6821,"z":7.57},"rot":{"x":359.9201,"y":269.9953,"z":180.0169}},"c6995b":{"lock":false,"pos":{"x":-21.6704,"y":1.6106,"z":-3.7228},"rot":{"x":359.9316,"y":315.0002,"z":359.9554}},"d46b84":{"lock":false,"pos":{"x":-11.4019,"y":1.6887,"z":15.8439},"rot":{"x":359.9274,"y":269.9868,"z":180.3533}},"eb22de":{"lock":false,"pos":{"x":-17.12,"y":1.6065,"z":3.86},"rot":{"x":359.9831,"y":359.9921,"z":359.9201}}}}' +MaterialIndex: -1 +MeshIndex: -1 +Name: Custom_Model_Bag +Nickname: The Colour out of Space +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.843605 + posY: 8.453166 + posZ: -14.4364462 + rotX: 0.0208086856 + rotY: 270.000122 + rotZ: 0.0167710036 + scaleX: 2.21 + scaleY: 0.46 + scaleZ: 2.42 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Colour out of Space 5b81ff/Card 058b91.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Colour out of Space 5b81ff/Card 058b91.yaml new file mode 100644 index 000000000..6a76cdb45 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Colour out of Space 5b81ff/Card 058b91.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 219 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2': + BackIsHidden: true + BackURL: https://i.imgur.com/JctVOQy.jpg/ + FaceURL: https://i.imgur.com/5lwfXNg.jpg/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 058b91 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.95590067 + posY: 1.655648 + posZ: -10.4412022 + rotX: 359.919739 + rotY: 269.999847 + rotZ: 0.01684159 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Colour out of Space 5b81ff/Card 222582.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Colour out of Space 5b81ff/Card 222582.yaml new file mode 100644 index 000000000..88585c840 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Colour out of Space 5b81ff/Card 222582.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 219 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2': + BackIsHidden: true + BackURL: https://i.imgur.com/JctVOQy.jpg/ + FaceURL: https://i.imgur.com/5lwfXNg.jpg/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: '222582' +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -50.9244 + posY: 1.72662532 + posZ: 8.178398 + rotX: 359.9201 + rotY: 269.999878 + rotZ: 0.016876569 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Colour out of Space 5b81ff/Card 2ab9ac.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Colour out of Space 5b81ff/Card 2ab9ac.yaml new file mode 100644 index 000000000..f62facbca --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Colour out of Space 5b81ff/Card 2ab9ac.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 222 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2': + BackIsHidden: true + BackURL: https://i.imgur.com/JctVOQy.jpg/ + FaceURL: https://i.imgur.com/5lwfXNg.jpg/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 2ab9ac +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -17.12 + posY: 1.67764211 + posZ: -7.70000172 + rotX: 359.9201 + rotY: 269.9964 + rotZ: 180.016876 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Colour out of Space 5b81ff/Card 770eca.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Colour out of Space 5b81ff/Card 770eca.yaml new file mode 100644 index 000000000..87857f3f4 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Colour out of Space 5b81ff/Card 770eca.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 220 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2': + BackIsHidden: true + BackURL: https://i.imgur.com/JctVOQy.jpg/ + FaceURL: https://i.imgur.com/5lwfXNg.jpg/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 770eca +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -17.12 + posY: 1.67990065 + posZ: -0.02999954 + rotX: 359.9201 + rotY: 269.995819 + rotZ: 180.016876 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Colour out of Space 5b81ff/Card 80fb47.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Colour out of Space 5b81ff/Card 80fb47.yaml new file mode 100644 index 000000000..6ae402858 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Colour out of Space 5b81ff/Card 80fb47.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 225 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2': + BackIsHidden: true + BackURL: https://i.imgur.com/JctVOQy.jpg/ + FaceURL: https://i.imgur.com/5lwfXNg.jpg/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 80fb47 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -23.6765 + posY: 1.68904328 + posZ: -0.0299996268 + rotX: 359.9201 + rotY: 269.985474 + rotZ: 180.016891 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Colour out of Space 5b81ff/Card bfb121.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Colour out of Space 5b81ff/Card bfb121.yaml new file mode 100644 index 000000000..e8c3865d6 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Colour out of Space 5b81ff/Card bfb121.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 224 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2': + BackIsHidden: true + BackURL: https://i.imgur.com/JctVOQy.jpg/ + FaceURL: https://i.imgur.com/5lwfXNg.jpg/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: bfb121 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -17.12 + posY: 1.68213856 + posZ: 7.57000065 + rotX: 359.9201 + rotY: 269.9953 + rotZ: 180.016876 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Colour out of Space 5b81ff/Custom_Tile 21c977.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Colour out of Space 5b81ff/Custom_Tile 21c977.yaml new file mode 100644 index 000000000..309b2fad7 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Colour out of Space 5b81ff/Custom_Tile 21c977.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 21c977 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: -21.0584 + posY: 1.611897 + posZ: 3.50500083 + rotX: 359.955444 + rotY: 224.999954 + rotZ: 0.06840204 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Colour out of Space 5b81ff/Custom_Tile 7234af.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Colour out of Space 5b81ff/Custom_Tile 7234af.yaml new file mode 100644 index 000000000..00f53d241 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Colour out of Space 5b81ff/Custom_Tile 7234af.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 7234af +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.1199989 + posY: 1.60424554 + posZ: -3.83 + rotX: 359.983124 + rotY: 359.991943 + rotZ: 359.920044 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Colour out of Space 5b81ff/Custom_Tile ab51fa.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Colour out of Space 5b81ff/Custom_Tile ab51fa.yaml new file mode 100644 index 000000000..acf4c9017 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Colour out of Space 5b81ff/Custom_Tile ab51fa.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: ab51fa +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.3743973 + posY: 1.609936 + posZ: 0.0841995 + rotX: 359.9201 + rotY: 269.9999 + rotZ: 0.0169015117 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Colour out of Space 5b81ff/Custom_Tile c6995b.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Colour out of Space 5b81ff/Custom_Tile c6995b.yaml new file mode 100644 index 000000000..23022b463 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Colour out of Space 5b81ff/Custom_Tile c6995b.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: c6995b +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: -21.6703987 + posY: 1.61062241 + posZ: -3.72280025 + rotX: 359.93158 + rotY: 315.0002 + rotZ: 359.955444 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Colour out of Space 5b81ff/Custom_Tile eb22de.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Colour out of Space 5b81ff/Custom_Tile eb22de.yaml new file mode 100644 index 000000000..8990ef202 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Colour out of Space 5b81ff/Custom_Tile eb22de.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: eb22de +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.1199989 + posY: 1.6065098 + posZ: 3.86000037 + rotX: 359.983124 + rotY: 359.992065 + rotZ: 359.920074 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag The Colour out of Space 5b81ff/Custom_Tile The Colour out of Space 2e887e.ttslua new file mode 100644 index 000000000..dbc84856b --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Colour out of Space 5b81ff/Custom_Tile The Colour out of Space 2e887e.ttslua @@ -0,0 +1,21 @@ +name = 'The Colour out of Space' + +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 The Side Missions 791837/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 791837/Custom_Model_Bag The Colour out of Space 5b81ff/Custom_Tile The Colour out of Space 2e887e.yaml new file mode 100644 index 000000000..8f7bb52f4 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Colour out of Space 5b81ff/Custom_Tile The Colour out of Space 2e887e.yaml @@ -0,0 +1,42 @@ +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 +GMNotes: '' +GUID: 2e887e +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Tile The Colour out of Space 2e887e.ttslua' +LuaScriptState: '' +Name: Custom_Tile +Nickname: The Colour out of Space +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.90830064 + posY: 1.58249211 + posZ: -15.1234016 + rotX: 359.919739 + rotY: 269.9998 + rotZ: 0.0168383569 + scaleX: 2.2 + scaleY: 1.0 + scaleZ: 2.2 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Colour out of Space 5b81ff/Deck Act 6dca3e.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Colour out of Space 5b81ff/Deck Act 6dca3e.yaml new file mode 100644 index 000000000..67b15a726 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Colour out of Space 5b81ff/Deck Act 6dca3e.yaml @@ -0,0 +1,211 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 153710 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4': + BackIsHidden: true + BackURL: https://i.imgur.com/f17WFGr.jpg/ + FaceURL: https://i.imgur.com/rC4H8MT.jpg/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: d484eb + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 5.219574 + posY: 1.03168058 + posZ: -4.86719131 + rotX: 0.00119312864 + rotY: 179.994934 + rotZ: 0.00263130548 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 153709 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4': + BackIsHidden: true + BackURL: https://i.imgur.com/f17WFGr.jpg/ + FaceURL: https://i.imgur.com/rC4H8MT.jpg/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: '871485' + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 4.96103334 + posY: 1.17673981 + posZ: -5.03288126 + rotX: 0.00827860553 + rotY: 180.004456 + rotZ: 0.00665238267 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 153708 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4': + BackIsHidden: true + BackURL: https://i.imgur.com/f17WFGr.jpg/ + FaceURL: https://i.imgur.com/rC4H8MT.jpg/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 63101d + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 5.20904827 + posY: 1.194045 + posZ: -4.90812826 + rotX: -0.000538446242 + rotY: 179.998764 + rotZ: -0.000669827859 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 153707 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4': + BackIsHidden: true + BackURL: https://i.imgur.com/f17WFGr.jpg/ + FaceURL: https://i.imgur.com/rC4H8MT.jpg/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: d484eb + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 4.75687933 + posY: 1.1804235 + posZ: -5.17767954 + rotX: -0.0007499619 + rotY: 179.989044 + rotZ: 0.00265064323 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '1537': + BackIsHidden: true + BackURL: https://i.imgur.com/f17WFGr.jpg/ + FaceURL: https://i.imgur.com/rC4H8MT.jpg/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 153710 +- 153709 +- 153708 +- 153707 +Description: The Colour out of space +GMNotes: '' +GUID: 6dca3e +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Act +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.72460055 + posY: 1.65513837 + posZ: 0.373599142 + rotX: 359.919739 + rotY: 269.984619 + rotZ: 0.01685908 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Colour out of Space 5b81ff/Deck Agenda 23d608.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Colour out of Space 5b81ff/Deck Agenda 23d608.yaml new file mode 100644 index 000000000..60c42899b --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Colour out of Space 5b81ff/Deck Agenda 23d608.yaml @@ -0,0 +1,211 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 153614 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4': + BackIsHidden: true + BackURL: https://i.imgur.com/f17WFGr.jpg/ + FaceURL: https://i.imgur.com/rC4H8MT.jpg/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: d484eb + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -7.35207462 + posY: 1.03161049 + posZ: -5.99439526 + rotX: 0.00449702 + rotY: 179.9981 + rotZ: 0.0007069429 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 153613 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4': + BackIsHidden: true + BackURL: https://i.imgur.com/f17WFGr.jpg/ + FaceURL: https://i.imgur.com/rC4H8MT.jpg/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: '462108' + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -7.765963 + posY: 1.17645907 + posZ: -5.83240747 + rotX: -0.00260380027 + rotY: 179.998108 + rotZ: -0.0006101682 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 153612 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4': + BackIsHidden: true + BackURL: https://i.imgur.com/f17WFGr.jpg/ + FaceURL: https://i.imgur.com/rC4H8MT.jpg/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: d484eb + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -7.71119261 + posY: 1.19408286 + posZ: -6.15027475 + rotX: -0.0006646772 + rotY: 179.993179 + rotZ: 0.00122260489 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 153611 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4': + BackIsHidden: true + BackURL: https://i.imgur.com/f17WFGr.jpg/ + FaceURL: https://i.imgur.com/rC4H8MT.jpg/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: d484eb + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -7.31401348 + posY: 1.18047869 + posZ: -6.05599737 + rotX: 0.00357040437 + rotY: 180.0039 + rotZ: -0.00269458047 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '1536': + BackIsHidden: true + BackURL: https://i.imgur.com/f17WFGr.jpg/ + FaceURL: https://i.imgur.com/rC4H8MT.jpg/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 153614 +- 153613 +- 153612 +- 153611 +Description: The Colour out of space +GMNotes: '' +GUID: 23d608 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Agenda +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.6884 + posY: 1.65349436 + posZ: -5.048603 + rotX: 359.919739 + rotY: 269.985443 + rotZ: 0.0168578289 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Colour out of Space 5b81ff/Deck Encounter deck b83079.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Colour out of Space 5b81ff/Deck Encounter deck b83079.yaml new file mode 100644 index 000000000..50bb8090c --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Colour out of Space 5b81ff/Deck Encounter deck b83079.yaml @@ -0,0 +1,883 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 340 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/qwErffy.jpg/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: a5df9e + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -10.0549059 + posY: 1.3580544 + posZ: -2.04959774 + rotX: 359.884918 + rotY: 179.997955 + rotZ: 180.0116 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 339 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/qwErffy.jpg/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: a5df9e + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -9.854826 + posY: 1.35733068 + posZ: -1.67927945 + rotX: 359.550385 + rotY: 180.006226 + rotZ: 179.335114 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 338 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/qwErffy.jpg/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: a5df9e + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -9.911698 + posY: 1.37189162 + posZ: -1.96654546 + rotX: 0.2901415 + rotY: 179.997284 + rotZ: 179.309937 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 334 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/qwErffy.jpg/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 61e599 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -9.914503 + posY: 1.35762322 + posZ: -2.36601472 + rotX: -0.00267428788 + rotY: 179.9987 + rotZ: 180.247375 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 333 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/qwErffy.jpg/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: a5df9e + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -9.659274 + posY: 1.20969152 + posZ: -1.90634787 + rotX: 0.00439465 + rotY: 179.9979 + rotZ: 180.096466 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 344 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/qwErffy.jpg/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: a5df9e + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -10.1501131 + posY: 1.33010828 + posZ: -2.91197348 + rotX: 359.96698 + rotY: 179.98407 + rotZ: 179.9801 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 332 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/qwErffy.jpg/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: a5df9e + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -9.944136 + posY: 1.1898433 + posZ: -2.2689538 + rotX: 358.792419 + rotY: 180.028473 + rotZ: 178.1896 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 331 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/qwErffy.jpg/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: a5df9e + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -9.567135 + posY: 1.19570673 + posZ: -2.214454 + rotX: -0.00161760335 + rotY: 179.999817 + rotZ: 180.005249 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 330 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/qwErffy.jpg/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: a5df9e + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -10.3481064 + posY: 1.185603 + posZ: -2.21755171 + rotX: 359.9937 + rotY: 180.000122 + rotZ: 179.9782 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 326 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/qwErffy.jpg/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 73438d + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -8.076974 + posY: 1.74258113 + posZ: -2.23394513 + rotX: 359.800751 + rotY: 179.979492 + rotZ: 180.126572 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 309 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/qwErffy.jpg/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: a5df9e + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -8.552736 + posY: 1.03425443 + posZ: -3.58091855 + rotX: 359.9868 + rotY: 180.0024 + rotZ: 179.995834 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 325 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/qwErffy.jpg/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: '522290' + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -8.807243 + posY: 1.68479514 + posZ: -2.704818 + rotX: 359.8083 + rotY: 180.006 + rotZ: 180.10405 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 321 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/qwErffy.jpg/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 366b26 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -8.828821 + posY: 1.491666 + posZ: -3.720789 + rotX: 359.7576 + rotY: 179.982544 + rotZ: 179.966064 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 320 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/qwErffy.jpg/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: cc154a + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -9.098152 + posY: 1.4310509 + posZ: -2.68023252 + rotX: 359.8131 + rotY: 179.975281 + rotZ: 179.961487 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 319 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/qwErffy.jpg/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 656cd7 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -9.174046 + posY: 1.287363 + posZ: -2.55823946 + rotX: 359.8609 + rotY: 180.001266 + rotZ: 180.181549 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 318 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/qwErffy.jpg/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 1e70c5 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -9.470222 + posY: 1.23826945 + posZ: -3.501555 + rotX: 359.9176 + rotY: 180.003235 + rotZ: 180.013138 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 313 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/qwErffy.jpg/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: dfbfe3 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -9.488885 + posY: 1.18020928 + posZ: -2.494298 + rotX: 359.9176 + rotY: 180.00351 + rotZ: 180.013138 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 312 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/qwErffy.jpg/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: ea3a6e + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -8.8429575 + posY: 1.128709 + posZ: -2.49974227 + rotX: 359.820068 + rotY: 179.9796 + rotZ: 179.95871 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 311 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/qwErffy.jpg/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 2a9df4 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -9.22268 + posY: 1.07964456 + posZ: -3.45121527 + rotX: 359.82 + rotY: 180.0206 + rotZ: 179.958679 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 324 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/qwErffy.jpg/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 8753b9 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -9.373125 + posY: 1.63481748 + posZ: -2.93524432 + rotX: 359.815582 + rotY: 179.998169 + rotZ: 180.074921 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '3': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/qwErffy.jpg/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 340 +- 339 +- 338 +- 334 +- 333 +- 344 +- 332 +- 331 +- 330 +- 326 +- 309 +- 325 +- 321 +- 320 +- 319 +- 318 +- 313 +- 312 +- 311 +- 324 +Description: The Colour out of space +GMNotes: '' +GUID: b83079 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Encounter deck +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.9275 + posY: 1.718415 + posZ: 5.75710154 + rotX: 359.919739 + rotY: 269.9856 + rotZ: 180.016846 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Colour out of Space 5b81ff/Deck Made Flesh 6f54e2.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Colour out of Space 5b81ff/Deck Made Flesh 6f54e2.yaml new file mode 100644 index 000000000..32ad5937d --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Colour out of Space 5b81ff/Deck Made Flesh 6f54e2.yaml @@ -0,0 +1,169 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 304 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/qwErffy.jpg/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: '409536' + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.85105777 + posY: 1.20123565 + posZ: -7.380372 + rotX: 359.988 + rotY: 179.999969 + rotZ: 179.96489 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 305 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/qwErffy.jpg/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: cb4b19 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.74621224 + posY: 1.18310249 + posZ: -7.411784 + rotX: 359.9594 + rotY: 180.000931 + rotZ: 179.887161 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 306 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/qwErffy.jpg/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: cecccc + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.37451339 + posY: 1.03441155 + posZ: -7.358951 + rotX: -0.0055167065 + rotY: 180.0 + rotZ: 179.998566 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '3': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/qwErffy.jpg/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 304 +- 305 +- 306 +Description: '' +GMNotes: '' +GUID: 6f54e2 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Made Flesh +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -11.3146973 + posY: 1.679728 + posZ: 13.0979042 + rotX: 359.9201 + rotY: 269.9855 + rotZ: 180.016891 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Colour out of Space 5b81ff/Deck Set Aside 4c7aff.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Colour out of Space 5b81ff/Deck Set Aside 4c7aff.yaml new file mode 100644 index 000000000..6fa4bbea5 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Colour out of Space 5b81ff/Deck Set Aside 4c7aff.yaml @@ -0,0 +1,596 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 232 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2': + BackIsHidden: true + BackURL: https://i.imgur.com/JctVOQy.jpg/ + FaceURL: https://i.imgur.com/5lwfXNg.jpg/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 243cdf + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 8.223146 + posY: 1.03158236 + posZ: 0.902016461 + rotX: 0.005800598 + rotY: 180.285324 + rotZ: 0.00176732859 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2': + BackIsHidden: true + BackURL: https://i.imgur.com/JctVOQy.jpg/ + FaceURL: https://i.imgur.com/5lwfXNg.jpg/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 83a4c9 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 8.120516 + posY: 1.17644155 + posZ: 1.36510336 + rotX: -0.003109219 + rotY: 179.999939 + rotZ: 0.0009723867 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 230 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2': + BackIsHidden: true + BackURL: https://i.imgur.com/JctVOQy.jpg/ + FaceURL: https://i.imgur.com/5lwfXNg.jpg/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 306e4a + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 8.258502 + posY: 1.1940906 + posZ: 1.16454041 + rotX: -0.004223091 + rotY: 180.004089 + rotZ: 0.000795551867 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 229 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2': + BackIsHidden: true + BackURL: https://i.imgur.com/JctVOQy.jpg/ + FaceURL: https://i.imgur.com/5lwfXNg.jpg/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 6a8d1d + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 7.657972 + posY: 1.18030083 + posZ: 0.34020102 + rotX: 0.00252211071 + rotY: 179.999725 + rotZ: 359.986633 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 343 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/qwErffy.jpg/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: a5df9e + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.13035774 + posY: 1.3260107 + posZ: -1.8447721 + rotX: 0.00175156293 + rotY: 180.0 + rotZ: 0.000595699763 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 345 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/qwErffy.jpg/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 65866c + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.0490396 + posY: 1.4648447 + posZ: -1.70436561 + rotX: 0.010356945 + rotY: 180.001083 + rotZ: -0.00488633569 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 349 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/qwErffy.jpg/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: ed369b + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 1.96752012 + posY: 1.48842347 + posZ: -1.56207407 + rotX: -0.0004929198 + rotY: 179.999939 + rotZ: 0.0003065482 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 346 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/qwErffy.jpg/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 3e2a23 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 1.82710338 + posY: 1.47474456 + posZ: -2.032015 + rotX: 4.20553479e-05 + rotY: 179.999954 + rotZ: -0.00406393874 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 348 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/qwErffy.jpg/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 6b0bb4 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.5957396 + posY: 1.47258091 + posZ: -1.938549 + rotX: 0.0007589278 + rotY: 180.000031 + rotZ: 0.0153291561 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 347 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/qwErffy.jpg/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: ca1149 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.35204124 + posY: 1.475445 + posZ: -1.75078583 + rotX: 0.00144796947 + rotY: 180.000168 + rotZ: 0.003043268 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 352 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/qwErffy.jpg/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: d22d25 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: the Colour Out of Space + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -1.77188385 + posY: 1.46349347 + posZ: -2.71354723 + rotX: 0.00122112129 + rotY: 179.999908 + rotZ: 0.00141408877 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 351 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/qwErffy.jpg/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: the Colour out of Space + GMNotes: '' + GUID: b7230c + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: strange Meteor + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -1.8137908 + posY: 1.47322166 + posZ: -2.450348 + rotX: 0.00125582819 + rotY: 179.999939 + rotZ: 0.000193117769 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 350 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/qwErffy.jpg/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: a5df9e + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Samuel Glarde + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.10323572 + posY: 1.48289132 + posZ: -2.3006227 + rotX: 0.000739895157 + rotY: 179.999878 + rotZ: -0.0002744904 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2': + BackIsHidden: true + BackURL: https://i.imgur.com/JctVOQy.jpg/ + FaceURL: https://i.imgur.com/5lwfXNg.jpg/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + '3': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/qwErffy.jpg/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 232 +- 231 +- 230 +- 229 +- 343 +- 345 +- 349 +- 346 +- 348 +- 347 +- 352 +- 351 +- 350 +Description: The Colour out of space +GMNotes: '' +GUID: 4c7aff +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Set Aside +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 1.69660187 + posY: 1.6584065 + posZ: 14.2788048 + rotX: 359.95517 + rotY: 224.997971 + rotZ: 0.06865357 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Colour out of Space 5b81ff/Deck Setup 407732.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Colour out of Space 5b81ff/Deck Setup 407732.yaml new file mode 100644 index 000000000..b66ec845b --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Colour out of Space 5b81ff/Deck Setup 407732.yaml @@ -0,0 +1,298 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 218 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2': + BackIsHidden: true + BackURL: https://i.imgur.com/JctVOQy.jpg/ + FaceURL: https://i.imgur.com/5lwfXNg.jpg/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 058b91 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -1.37409294 + posY: 1.18389308 + posZ: -0.161832854 + rotX: 0.004796412 + rotY: 179.988922 + rotZ: 180.002609 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 217 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2': + BackIsHidden: true + BackURL: https://i.imgur.com/JctVOQy.jpg/ + FaceURL: https://i.imgur.com/5lwfXNg.jpg/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 058b91 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -1.90101373 + posY: 1.18108737 + posZ: -0.113113821 + rotX: -0.00197163713 + rotY: 179.983826 + rotZ: 179.9955 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 216 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2': + BackIsHidden: true + BackURL: https://i.imgur.com/JctVOQy.jpg/ + FaceURL: https://i.imgur.com/5lwfXNg.jpg/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 058b91 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -1.69791734 + posY: 1.18321073 + posZ: -0.09107165 + rotX: -0.00392353535 + rotY: 179.999985 + rotZ: 179.997787 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 215 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2': + BackIsHidden: true + BackURL: https://i.imgur.com/JctVOQy.jpg/ + FaceURL: https://i.imgur.com/5lwfXNg.jpg/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 24191e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -16.8607655 + posY: 1.5143379 + posZ: -72.40566 + rotX: 0.0174839236 + rotY: 269.999756 + rotZ: 0.008508449 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 214 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2': + BackIsHidden: true + BackURL: https://i.imgur.com/JctVOQy.jpg/ + FaceURL: https://i.imgur.com/5lwfXNg.jpg/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 40630f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -9.698111 + posY: 1.86746037 + posZ: -3.31594419 + rotX: 358.882751 + rotY: 270.025482 + rotZ: 180.0143 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 213 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2': + BackIsHidden: true + BackURL: https://i.imgur.com/JctVOQy.jpg/ + FaceURL: https://i.imgur.com/5lwfXNg.jpg/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: a69086 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -9.401831 + posY: 1.68130243 + posZ: -3.641866 + rotX: 357.586639 + rotY: 270.027283 + rotZ: 180.018753 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2': + BackIsHidden: true + BackURL: https://i.imgur.com/JctVOQy.jpg/ + FaceURL: https://i.imgur.com/5lwfXNg.jpg/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 218 +- 217 +- 216 +- 215 +- 214 +- 213 +Description: The Colour out of space +GMNotes: '' +GUID: '407732' +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Setup +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -9.727099 + posY: 1.66756737 + posZ: -0.254999459 + rotX: 359.9201 + rotY: 269.98764 + rotZ: 0.0168842319 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Colour out of Space 5b81ff/Deck Unnatural Disturbances a1b852.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Colour out of Space 5b81ff/Deck Unnatural Disturbances a1b852.yaml new file mode 100644 index 000000000..cd49554dc --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Colour out of Space 5b81ff/Deck Unnatural Disturbances a1b852.yaml @@ -0,0 +1,715 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 314 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/qwErffy.jpg/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: cfe252 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -9.338725 + posY: 1.2665385 + posZ: -3.91689277 + rotX: 0.101006955 + rotY: 179.998779 + rotZ: 180.150116 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 341 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/qwErffy.jpg/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 538fc7 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -9.062222 + posY: 1.03481042 + posZ: -4.525614 + rotX: 0.00779813342 + rotY: 179.981415 + rotZ: 179.979736 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 323 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/qwErffy.jpg/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 2f47f3 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -9.374292 + posY: 1.2012527 + posZ: -4.96878147 + rotX: 359.9936 + rotY: 179.999832 + rotZ: 180.018448 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 308 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/qwErffy.jpg/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 8ab20d + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -9.092463 + posY: 1.55818319 + posZ: -3.72375131 + rotX: 359.4883 + rotY: 179.995209 + rotZ: 180.959824 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 310 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/qwErffy.jpg/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 74171c + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -9.441908 + posY: 1.416153 + posZ: -4.074065 + rotX: -0.00248616049 + rotY: 180.0039 + rotZ: 180.109848 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 335 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/qwErffy.jpg/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: a5df9e + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -1.86209512 + posY: 1.2247442 + posZ: -7.62902975 + rotX: 2.72782981e-05 + rotY: 179.999817 + rotZ: 180.000092 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 302 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/qwErffy.jpg/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 3c20c4 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -8.56339 + posY: 1.19575953 + posZ: -4.350251 + rotX: 0.002210669 + rotY: 179.999908 + rotZ: 179.985336 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 316 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/qwErffy.jpg/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 03122e + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -9.725224 + posY: 1.18539333 + posZ: -3.398536 + rotX: 0.00785481 + rotY: 179.99791 + rotZ: 179.947815 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 322 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/qwErffy.jpg/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: df7969 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -9.435758 + posY: 1.18753767 + posZ: -4.29626274 + rotX: 0.002181876 + rotY: 179.999847 + rotZ: 180.019943 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 315 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/qwErffy.jpg/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: fedce9 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -9.860141 + posY: 1.231644 + posZ: -4.192333 + rotX: 0.007793924 + rotY: 179.998566 + rotZ: 180.085754 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 300 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/qwErffy.jpg/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 540ca2 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -8.96802 + posY: 1.21477664 + posZ: -4.154062 + rotX: -5.02828225e-05 + rotY: 179.999969 + rotZ: 179.975113 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 303 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/qwErffy.jpg/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 55942d + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -9.155907 + posY: 1.18579948 + posZ: -4.975836 + rotX: 359.992584 + rotY: 179.999619 + rotZ: 180.026291 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 342 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/qwErffy.jpg/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 7bec79 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -8.833545 + posY: 1.23575115 + posZ: -4.60667133 + rotX: 0.008601763 + rotY: 179.9376 + rotZ: 177.01886 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 317 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/qwErffy.jpg/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: da3846 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -9.683963 + posY: 1.170882 + posZ: -3.99968123 + rotX: 358.872742 + rotY: 180.027527 + rotZ: 178.154175 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 307 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/qwErffy.jpg/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: f1372a + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -9.866734 + posY: 1.15945339 + posZ: -4.22725868 + rotX: 358.9599 + rotY: 180.027451 + rotZ: 177.908691 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 301 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/qwErffy.jpg/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 11c6fc + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -8.212791 + posY: 1.1840713 + posZ: -3.96836424 + rotX: 358.833832 + rotY: 179.966141 + rotZ: 182.1956 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '3': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/qwErffy.jpg/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 314 +- 341 +- 323 +- 308 +- 310 +- 335 +- 302 +- 316 +- 322 +- 315 +- 300 +- 303 +- 342 +- 317 +- 307 +- 301 +Description: '' +GMNotes: '' +GUID: a1b852 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Unnatural Disturbances +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -11.2980995 + posY: 1.70874047 + posZ: 10.3332052 + rotX: 359.9201 + rotY: 269.9856 + rotZ: 180.016891 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Colour out of Space 5b81ff/Deck inhospitable Locality d46b84.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Colour out of Space 5b81ff/Deck inhospitable Locality d46b84.yaml new file mode 100644 index 000000000..f640582b2 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Colour out of Space 5b81ff/Deck inhospitable Locality d46b84.yaml @@ -0,0 +1,253 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 336 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/qwErffy.jpg/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: a5df9e + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -7.156843 + posY: 1.18720078 + posZ: -7.528409 + rotX: 359.98584 + rotY: 180.000076 + rotZ: 179.952957 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 327 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/qwErffy.jpg/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: fe4c8d + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -7.850896 + posY: 1.02514517 + posZ: -8.030709 + rotX: 0.0571511164 + rotY: 180.000031 + rotZ: 180.164017 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 337 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/qwErffy.jpg/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: a5df9e + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -7.11767673 + posY: 1.18536985 + posZ: -7.11612272 + rotX: 0.00193758949 + rotY: 179.999985 + rotZ: 179.96936 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 328 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/qwErffy.jpg/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: a5df9e + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -7.328081 + posY: 1.17608035 + posZ: -7.342774 + rotX: 359.9525 + rotY: 179.996658 + rotZ: 180.1584 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 329 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/qwErffy.jpg/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 42c8ed + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -7.52814531 + posY: 1.32040763 + posZ: -7.80944872 + rotX: 0.7137785 + rotY: 179.989182 + rotZ: 179.062775 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '3': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/qwErffy.jpg/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 336 +- 327 +- 337 +- 328 +- 329 +Description: '' +GMNotes: '' +GUID: d46b84 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: inhospitable Locality +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -11.4018936 + posY: 1.68868756 + posZ: 15.8438959 + rotX: 359.927368 + rotY: 269.986847 + rotZ: 180.353348 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Colour out of Space 5b81ff/Deck locations rural 61b186.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Colour out of Space 5b81ff/Deck locations rural 61b186.yaml new file mode 100644 index 000000000..0d505c1ce --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Colour out of Space 5b81ff/Deck locations rural 61b186.yaml @@ -0,0 +1,254 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 226 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2': + BackIsHidden: true + BackURL: https://i.imgur.com/JctVOQy.jpg/ + FaceURL: https://i.imgur.com/5lwfXNg.jpg/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 238ded + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -12.7556 + posY: 1.82316923 + posZ: 6.965929 + rotX: 359.933 + rotY: 269.997223 + rotZ: 180.016678 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 223 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2': + BackIsHidden: true + BackURL: https://i.imgur.com/JctVOQy.jpg/ + FaceURL: https://i.imgur.com/5lwfXNg.jpg/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 9f06fe + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 19.168541 + posY: 1.17955613 + posZ: -0.06756503 + rotX: 359.990967 + rotY: 179.978439 + rotZ: 180.002991 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 221 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2': + BackIsHidden: true + BackURL: https://i.imgur.com/JctVOQy.jpg/ + FaceURL: https://i.imgur.com/5lwfXNg.jpg/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 4588c0 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 19.09264 + posY: 1.03452539 + posZ: -0.129167 + rotX: -0.0007141615 + rotY: 179.978821 + rotZ: 180.0007 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 228 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2': + BackIsHidden: true + BackURL: https://i.imgur.com/JctVOQy.jpg/ + FaceURL: https://i.imgur.com/5lwfXNg.jpg/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: b07795 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 18.8801174 + posY: 1.1795522 + posZ: -3.93778849 + rotX: 359.991028 + rotY: 179.979156 + rotZ: 180.003632 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 227 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2': + BackIsHidden: true + BackURL: https://i.imgur.com/JctVOQy.jpg/ + FaceURL: https://i.imgur.com/5lwfXNg.jpg/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: faa3b5 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 18.760994 + posY: 1.03452492 + posZ: -3.98149252 + rotX: -0.000760004 + rotY: 179.979111 + rotZ: 180.000473 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2': + BackIsHidden: true + BackURL: https://i.imgur.com/JctVOQy.jpg/ + FaceURL: https://i.imgur.com/5lwfXNg.jpg/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 226 +- 223 +- 221 +- 228 +- 227 +Description: the Colour out of Space +GMNotes: '' +GUID: 61b186 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: locations rural +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -11.155 + posY: 1.67908084 + posZ: 7.15480137 + rotX: 359.9201 + rotY: 269.985474 + rotZ: 180.016891 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Curse of Amulotep 0d7a8d.ttslua b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Curse of Amulotep 0d7a8d.ttslua new file mode 100644 index 000000000..46067f58e --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Curse of Amulotep 0d7a8d.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.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.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 791837/Custom_Model_Bag The Curse of Amulotep 0d7a8d.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Curse of Amulotep 0d7a8d.yaml new file mode 100644 index 000000000..28866603e --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Curse of Amulotep 0d7a8d.yaml @@ -0,0 +1,71 @@ +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 Curse of Amulotep 0d7a8d/Deck Set Aside 5127f6.yaml' +- !include 'Custom_Model_Bag The Curse of Amulotep 0d7a8d/Deck Encounter deck c6a9ae.yaml' +- !include 'Custom_Model_Bag The Curse of Amulotep 0d7a8d/Deck Act 8075b9.yaml' +- !include 'Custom_Model_Bag The Curse of Amulotep 0d7a8d/Deck Agenda a08daa.yaml' +- !include 'Custom_Model_Bag The Curse of Amulotep 0d7a8d/Card Setup dc50b3.yaml' +- !include 'Custom_Model_Bag The Curse of Amulotep 0d7a8d/Custom_Tile The Curse of + Amultep b3cbc1.yaml' +- !include 'Custom_Model_Bag The Curse of Amulotep 0d7a8d/Deck Carriage locations + 0ce6bb.yaml' +- !include 'Custom_Model_Bag The Curse of Amulotep 0d7a8d/Card 5e4e43.yaml' +- !include 'Custom_Model_Bag The Curse of Amulotep 0d7a8d/Card ecbf8f.yaml' +- !include 'Custom_Model_Bag The Curse of Amulotep 0d7a8d/Card Setup f9fc71.yaml' +CustomMesh: + CastShadows: true + ColliderURL: '' + Convex: true + DiffuseURL: http://cloud-3.steamusercontent.com/ugc/798737729142921541/F138D6DF73FB79AC6D1C420869299A481AFA7B90/ + MaterialIndex: 3 + MeshURL: https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj + NormalURL: '' + TypeIndex: 6 +Description: '' +GMNotes: '' +GUID: 0d7a8d +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Model_Bag The Curse of Amulotep 0d7a8d.ttslua' +LuaScriptState: '{"ml":{"0ce6bb":{"lock":false,"pos":{"x":-12.6932,"y":1.6812,"z":6.9294},"rot":{"x":359.9201,"y":270.0001,"z":180.0169}},"5127f6":{"lock":false,"pos":{"x":1.6965,"y":1.6662,"z":14.2788},"rot":{"x":359.9551,"y":224.9998,"z":180.0686}},"5e4e43":{"lock":false,"pos":{"x":-13.2968,"y":1.6723,"z":-7.7574},"rot":{"x":359.9201,"y":270.028,"z":180.0168}},"8075b9":{"lock":false,"pos":{"x":-2.7246,"y":1.6566,"z":0.3733},"rot":{"x":359.9197,"y":269.9854,"z":0.0169}},"a08daa":{"lock":false,"pos":{"x":-2.6884,"y":1.6535,"z":-5.0485},"rot":{"x":359.9197,"y":269.9855,"z":0.0169}},"b3cbc1":{"lock":false,"pos":{"x":-3.8937,"y":1.5826,"z":-14.6014},"rot":{"x":359.9197,"y":270.0009,"z":0.0168}},"c6a9ae":{"lock":false,"pos":{"x":-3.9274,"y":1.7611,"z":5.7572},"rot":{"x":359.9197,"y":269.9857,"z":180.0168}},"dc50b3":{"lock":false,"pos":{"x":-3.9555,"y":1.6556,"z":-10.4413},"rot":{"x":359.9197,"y":269.9999,"z":0.0168}},"ecbf8f":{"lock":false,"pos":{"x":-17.1201,"y":1.6754,"z":-15.2799},"rot":{"x":359.9201,"y":270.0269,"z":180.0168}},"f9fc71":{"lock":false,"pos":{"x":-50.9244,"y":1.7294,"z":8.1784},"rot":{"x":359.9201,"y":270.0001,"z":180.0169}}}}' +MaterialIndex: -1 +MeshIndex: -1 +Name: Custom_Model_Bag +Nickname: The Curse of Amulotep +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.4053535 + posY: 8.450538 + posZ: -22.8681011 + rotX: 0.0208032764 + rotY: 270.017822 + rotZ: 0.0167776421 + scaleX: 2.21 + scaleY: 0.2 + scaleZ: 2.46 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Curse of Amulotep 0d7a8d/Card 5e4e43.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Curse of Amulotep 0d7a8d/Card 5e4e43.yaml new file mode 100644 index 000000000..55d87de05 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Curse of Amulotep 0d7a8d/Card 5e4e43.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 201 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2': + BackIsHidden: true + BackURL: https://i.imgur.com/JctVOQy.jpg/ + FaceURL: https://i.imgur.com/5lwfXNg.jpg/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 5e4e43 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -13.2967634 + posY: 1.672294 + posZ: -7.75742245 + rotX: 359.9201 + rotY: 270.028 + rotZ: 180.016815 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Curse of Amulotep 0d7a8d/Card ecbf8f.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Curse of Amulotep 0d7a8d/Card ecbf8f.yaml new file mode 100644 index 000000000..8fd48c80a --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Curse of Amulotep 0d7a8d/Card ecbf8f.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 200 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2': + BackIsHidden: true + BackURL: https://i.imgur.com/JctVOQy.jpg/ + FaceURL: https://i.imgur.com/5lwfXNg.jpg/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: ecbf8f +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -17.1200943 + posY: 1.67541027 + posZ: -15.2799025 + rotX: 359.9201 + rotY: 270.026917 + rotZ: 180.016815 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Curse of Amulotep 0d7a8d/Card Setup dc50b3.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Curse of Amulotep 0d7a8d/Card Setup dc50b3.yaml new file mode 100644 index 000000000..db7111fbf --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Curse of Amulotep 0d7a8d/Card Setup dc50b3.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 208 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2': + BackIsHidden: true + BackURL: https://i.imgur.com/JctVOQy.jpg/ + FaceURL: https://i.imgur.com/5lwfXNg.jpg/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: dc50b3 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Setup +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.9555006 + posY: 1.6556474 + posZ: -10.4413023 + rotX: 359.919739 + rotY: 269.999939 + rotZ: 0.0168410745 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Curse of Amulotep 0d7a8d/Card Setup f9fc71.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Curse of Amulotep 0d7a8d/Card Setup f9fc71.yaml new file mode 100644 index 000000000..0aea005f5 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Curse of Amulotep 0d7a8d/Card Setup f9fc71.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 208 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2': + BackIsHidden: true + BackURL: https://i.imgur.com/JctVOQy.jpg/ + FaceURL: https://i.imgur.com/5lwfXNg.jpg/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: f9fc71 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Setup +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -50.9244 + posY: 1.7294482 + posZ: 8.178401 + 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 The Side Missions 791837/Custom_Model_Bag The Curse of Amulotep 0d7a8d/Custom_Tile The Curse of Amultep b3cbc1.ttslua b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Curse of Amulotep 0d7a8d/Custom_Tile The Curse of Amultep b3cbc1.ttslua new file mode 100644 index 000000000..31eb20a69 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Curse of Amulotep 0d7a8d/Custom_Tile The Curse of Amultep b3cbc1.ttslua @@ -0,0 +1,21 @@ +name = 'The Curse of Amultep' + +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 The Side Missions 791837/Custom_Model_Bag The Curse of Amulotep 0d7a8d/Custom_Tile The Curse of Amultep b3cbc1.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Curse of Amulotep 0d7a8d/Custom_Tile The Curse of Amultep b3cbc1.yaml new file mode 100644 index 000000000..7caba1628 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Curse of Amulotep 0d7a8d/Custom_Tile The Curse of Amultep b3cbc1.yaml @@ -0,0 +1,42 @@ +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 +GMNotes: '' +GUID: b3cbc1 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Tile The Curse of Amultep b3cbc1.ttslua' +LuaScriptState: '' +Name: Custom_Tile +Nickname: The Curse of Amultep +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.89370012 + posY: 1.58262491 + posZ: -14.6014023 + rotX: 359.919739 + rotY: 270.000854 + rotZ: 0.0168365221 + scaleX: 2.2 + scaleY: 1.0 + scaleZ: 2.2 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Curse of Amulotep 0d7a8d/Deck Act 8075b9.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Curse of Amulotep 0d7a8d/Deck Act 8075b9.yaml new file mode 100644 index 000000000..dd6346135 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Curse of Amulotep 0d7a8d/Deck Act 8075b9.yaml @@ -0,0 +1,169 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 153702 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4': + BackIsHidden: true + BackURL: https://i.imgur.com/f17WFGr.jpg/ + FaceURL: https://i.imgur.com/rC4H8MT.jpg/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 5b67b6 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 1.04006052 + posY: 1.0316819 + posZ: -6.57859564 + rotX: 0.00134711387 + rotY: 180.027924 + rotZ: 0.000181103329 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 153701 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4': + BackIsHidden: true + BackURL: https://i.imgur.com/f17WFGr.jpg/ + FaceURL: https://i.imgur.com/rC4H8MT.jpg/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: '400851' + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.7540432 + posY: 1.17448008 + posZ: -6.46157 + rotX: 0.008391998 + rotY: 180.036026 + rotZ: -0.00414735125 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 153700 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4': + BackIsHidden: true + BackURL: https://i.imgur.com/f17WFGr.jpg/ + FaceURL: https://i.imgur.com/rC4H8MT.jpg/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: ed068c + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.851625741 + posY: 1.19413686 + posZ: -6.79852438 + rotX: 0.00112353184 + rotY: 180.03949 + rotZ: -3.1784e-05 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '1537': + BackIsHidden: true + BackURL: https://i.imgur.com/f17WFGr.jpg/ + FaceURL: https://i.imgur.com/rC4H8MT.jpg/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 153702 +- 153701 +- 153700 +Description: the Curse of Amulotep +GMNotes: '' +GUID: 8075b9 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Act +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.72460032 + posY: 1.656641 + posZ: 0.373299658 + rotX: 359.919739 + rotY: 269.985443 + rotZ: 0.0168578327 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Curse of Amulotep 0d7a8d/Deck Agenda a08daa.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Curse of Amulotep 0d7a8d/Deck Agenda a08daa.yaml new file mode 100644 index 000000000..396137b4a --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Curse of Amulotep 0d7a8d/Deck Agenda a08daa.yaml @@ -0,0 +1,211 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 153606 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4': + BackIsHidden: true + BackURL: https://i.imgur.com/f17WFGr.jpg/ + FaceURL: https://i.imgur.com/rC4H8MT.jpg/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: d484eb + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.214325 + posY: 1.03168476 + posZ: -4.55904865 + rotX: 0.0013084386 + rotY: 180.025513 + rotZ: 0.000269935845 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 153605 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4': + BackIsHidden: true + BackURL: https://i.imgur.com/f17WFGr.jpg/ + FaceURL: https://i.imgur.com/rC4H8MT.jpg/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 31e3dd + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.53834987 + posY: 1.17520928 + posZ: -4.46891546 + rotX: 0.00776327541 + rotY: 180.01564 + rotZ: 0.03492402 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 153604 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4': + BackIsHidden: true + BackURL: https://i.imgur.com/f17WFGr.jpg/ + FaceURL: https://i.imgur.com/rC4H8MT.jpg/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 3a7148 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.02572513 + posY: 1.19203329 + posZ: -4.20022058 + rotX: 7.996017e-05 + rotY: 180.013641 + rotZ: 0.02203136 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 153603 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4': + BackIsHidden: true + BackURL: https://i.imgur.com/f17WFGr.jpg/ + FaceURL: https://i.imgur.com/rC4H8MT.jpg/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: fbc830 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -1.82731581 + posY: 1.17831528 + posZ: -4.089193 + rotX: 0.008273337 + rotY: 180.046066 + rotZ: 0.0147334635 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '1536': + BackIsHidden: true + BackURL: https://i.imgur.com/f17WFGr.jpg/ + FaceURL: https://i.imgur.com/rC4H8MT.jpg/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 153606 +- 153605 +- 153604 +- 153603 +Description: the Curse of Amulotep +GMNotes: '' +GUID: a08daa +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Agenda +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.6884 + posY: 1.65349424 + posZ: -5.048501 + rotX: 359.919739 + rotY: 269.985535 + rotZ: 0.0168577153 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Curse of Amulotep 0d7a8d/Deck Carriage locations 0ce6bb.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Curse of Amulotep 0d7a8d/Deck Carriage locations 0ce6bb.yaml new file mode 100644 index 000000000..9bda98cec --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Curse of Amulotep 0d7a8d/Deck Carriage locations 0ce6bb.yaml @@ -0,0 +1,253 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 206 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2': + BackIsHidden: true + BackURL: https://i.imgur.com/JctVOQy.jpg/ + FaceURL: https://i.imgur.com/5lwfXNg.jpg/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: ebbc12 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.1671803 + posY: 1.031986 + posZ: -5.67913628 + rotX: 359.991669 + rotY: 179.947571 + rotZ: 0.0196663551 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 205 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2': + BackIsHidden: true + BackURL: https://i.imgur.com/JctVOQy.jpg/ + FaceURL: https://i.imgur.com/5lwfXNg.jpg/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: ca4f69 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.00537515 + posY: 1.22909641 + posZ: -5.636891 + rotX: 359.9915 + rotY: 179.96431 + rotZ: 2.81170535 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 204 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2': + BackIsHidden: true + BackURL: https://i.imgur.com/JctVOQy.jpg/ + FaceURL: https://i.imgur.com/5lwfXNg.jpg/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 274def + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.46579051 + posY: 1.14619112 + posZ: -5.984417 + rotX: -0.0033099514 + rotY: 179.9732 + rotZ: 356.916 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 203 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2': + BackIsHidden: true + BackURL: https://i.imgur.com/JctVOQy.jpg/ + FaceURL: https://i.imgur.com/5lwfXNg.jpg/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: f96252 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 1.51333129 + posY: 1.17700374 + posZ: -5.523969 + rotX: 0.00208611344 + rotY: 180.024673 + rotZ: 0.003772128 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 202 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2': + BackIsHidden: true + BackURL: https://i.imgur.com/JctVOQy.jpg/ + FaceURL: https://i.imgur.com/5lwfXNg.jpg/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 1ee55f + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.22626185 + posY: 1.17523718 + posZ: -5.75594568 + rotX: 0.002359711 + rotY: 180.019928 + rotZ: 0.00525712 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2': + BackIsHidden: true + BackURL: https://i.imgur.com/JctVOQy.jpg/ + FaceURL: https://i.imgur.com/5lwfXNg.jpg/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 206 +- 205 +- 204 +- 203 +- 202 +Description: the Curse of Amulotep +GMNotes: '' +GUID: 0ce6bb +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Carriage locations +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -12.6932 + posY: 1.68115938 + posZ: 6.9294 + 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 The Side Missions 791837/Custom_Model_Bag The Curse of Amulotep 0d7a8d/Deck Encounter deck c6a9ae.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Curse of Amulotep 0d7a8d/Deck Encounter deck c6a9ae.yaml new file mode 100644 index 000000000..37e37a68c --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Curse of Amulotep 0d7a8d/Deck Encounter deck c6a9ae.yaml @@ -0,0 +1,1199 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 306 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/254843371583115523/E82497980946ECE8E95AADC7220B140E4C0066A8/ + NumHeight: 3 + NumWidth: 5 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 5e0a27 + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.76622987 + posY: 1.03174031 + posZ: 1.9328872 + rotX: 0.00119623914 + rotY: 179.9954 + rotZ: 0.0010214512 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 307 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/254843371583115523/E82497980946ECE8E95AADC7220B140E4C0066A8/ + NumHeight: 3 + NumWidth: 5 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: '113033' + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -4.250121 + posY: 1.18227375 + posZ: 1.82911134 + rotX: -0.004281663 + rotY: 179.994781 + rotZ: 0.08178034 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 308 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/254843371583115523/E82497980946ECE8E95AADC7220B140E4C0066A8/ + NumHeight: 3 + NumWidth: 5 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 05fb57 + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -4.47395 + posY: 1.19723308 + posZ: 1.93280756 + rotX: 1.35843929e-05 + rotY: 179.996292 + rotZ: -8.3093e-05 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 309 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/254843371583115523/E82497980946ECE8E95AADC7220B140E4C0066A8/ + NumHeight: 3 + NumWidth: 5 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: b9af55 + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.92754436 + posY: 1.1829586 + posZ: 2.03801513 + rotX: 359.9786 + rotY: 179.998276 + rotZ: 359.9436 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 310 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/254843371583115523/E82497980946ECE8E95AADC7220B140E4C0066A8/ + NumHeight: 3 + NumWidth: 5 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: dd4c83 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 7.671148 + posY: 1.20812607 + posZ: 32.69593 + rotX: 0.00138037081 + rotY: 179.999985 + rotZ: -0.0007976301 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3619 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: '260768' + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dissonant Voices + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -19.1363125 + posY: 1.231699 + posZ: -7.400251 + rotX: -0.000820844667 + rotY: 270.0089 + rotZ: -0.000237511369 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3617 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: da8001 + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Rotting Remains + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -19.2726822 + posY: 1.23161709 + posZ: -4.69493532 + rotX: -0.00461160857 + rotY: 269.9793 + rotZ: -0.00137890945 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3619 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: f1a34d + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dissonant Voices + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -19.9809151 + posY: 1.28156877 + posZ: -7.79831076 + rotX: 0.011735606 + rotY: 270.009033 + rotZ: 0.00468536 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3618 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: 27c05d + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Frozen in Fear + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -18.967617 + posY: 1.231716 + posZ: -10.49529 + rotX: -3.11068325e-05 + rotY: 270.0013 + rotZ: -7.22032553e-07 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3617 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: 18e09c + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Rotting Remains + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -20.3450146 + posY: 1.28128624 + posZ: -4.537053 + rotX: 0.006250872 + rotY: 269.979126 + rotZ: -0.00126227119 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3618 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: c40f57 + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Frozen in Fear + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -19.6207886 + posY: 1.28169692 + posZ: -10.6840782 + rotX: -3.134726e-05 + rotY: 270.000763 + rotZ: 3.597804e-06 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3617 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: aa3d47 + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Rotting Remains + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -21.5193939 + posY: 1.337018 + posZ: -4.78068352 + rotX: 0.0181244723 + rotY: 269.978149 + rotZ: 0.00253973226 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3628 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Obstacle. + GMNotes: '' + GUID: 9449d7 + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Locked Door + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -21.2385483 + posY: 1.231653 + posZ: 10.5873995 + rotX: -0.00300062378 + rotY: 270.038849 + rotZ: -0.00198885379 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3628 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Obstacle. + GMNotes: '' + GUID: 1340ff + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Locked Door + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -21.3002548 + posY: 1.37891018 + posZ: 10.607831 + rotX: 359.985657 + rotY: 270.026245 + rotZ: 0.0447875448 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3636 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: da8001 + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dreams of R'lyeh + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -21.0626354 + posY: 1.23170877 + posZ: -1.44687235 + rotX: -0.0005362527 + rotY: 270.0003 + rotZ: -0.0005294237 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3636 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: 8e441a + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dreams of R'lyeh + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -21.0565968 + posY: 1.37954974 + posZ: -1.35146141 + rotX: -0.00136643345 + rotY: 269.999084 + rotZ: -0.004670003 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3635 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Monster. Deep One. + GMNotes: '' + GUID: 67f705 + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Young Deep One + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -20.22409 + posY: 1.23170567 + posZ: 1.936243 + rotX: -0.0007621244 + rotY: 269.999939 + rotZ: -0.0004609758 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3635 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Monster. Deep One. + GMNotes: '' + GUID: bf03e4 + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Young Deep One + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -20.125206 + posY: 1.37721193 + posZ: 2.32091284 + rotX: 359.99292 + rotY: 269.999817 + rotZ: 359.992157 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3625 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: 6f5b7b + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Mysterious Chanting + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -19.6800156 + posY: 1.38250053 + posZ: -1.33474028 + rotX: 0.0229158234 + rotY: 270.019867 + rotZ: 179.95369 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3625 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: df668b + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Mysterious Chanting + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -19.5443554 + posY: 1.2345134 + posZ: -1.46994078 + rotX: -0.00131354737 + rotY: 270.020233 + rotZ: 180.000565 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3624 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Cultist. + GMNotes: '' + GUID: 159f90 + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Wizard of the Order + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -20.0503387 + posY: 1.23431253 + posZ: -4.35796 + rotX: 359.9875 + rotY: 270.082672 + rotZ: 179.956573 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3623 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Cultist. + GMNotes: '' + GUID: c70e63 + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Acolyte + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -19.79794 + posY: 1.39947391 + posZ: -8.725274 + rotX: 359.928955 + rotY: 270.019775 + rotZ: 180.117462 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3623 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Cultist. + GMNotes: '' + GUID: 4072d7 + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Acolyte + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -19.9280281 + posY: 1.38005173 + posZ: -8.697902 + rotX: 359.993225 + rotY: 270.0205 + rotZ: 180.0073 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3623 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Cultist. + GMNotes: '' + GUID: c70e63 + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Acolyte + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -20.0444756 + posY: 1.23453021 + posZ: -8.332029 + rotX: -0.000678319542 + rotY: 270.020325 + rotZ: 180.000427 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3626 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Nightgaunt. + GMNotes: '' + GUID: '476433' + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Hunting Nightgaunt + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -22.1894913 + posY: 1.23165715 + posZ: 8.126968 + rotX: -0.00287241978 + rotY: 269.726624 + rotZ: -0.000931444752 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3626 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Nightgaunt. + GMNotes: '' + GUID: b124ef + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Hunting Nightgaunt + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -22.37006 + posY: 1.37715232 + posZ: 7.785293 + rotX: 0.00128005829 + rotY: 269.726654 + rotZ: 0.00324654416 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3627 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: dd287a + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: On Wings of Darkness + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -21.2239914 + posY: 1.231599 + posZ: 12.258028 + rotX: 0.00274006533 + rotY: 270.360443 + rotZ: 0.00162735826 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3627 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: b06ff1 + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: On Wings of Darkness + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -21.6091557 + posY: 1.37787735 + posZ: 11.9596348 + rotX: 0.223490238 + rotY: 269.9995 + rotZ: 0.3121837 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '3': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/254843371583115523/E82497980946ECE8E95AADC7220B140E4C0066A8/ + NumHeight: 3 + NumWidth: 5 + UniqueBack: false + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 306 +- 307 +- 308 +- 309 +- 310 +- 3619 +- 3617 +- 3619 +- 3618 +- 3617 +- 3618 +- 3617 +- 3628 +- 3628 +- 3636 +- 3636 +- 3635 +- 3635 +- 3625 +- 3625 +- 3624 +- 3623 +- 3623 +- 3623 +- 3626 +- 3626 +- 3627 +- 3627 +Description: thw Curse os Amulotep +GMNotes: '' +GUID: c6a9ae +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Encounter deck +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.9274 + posY: 1.76105058 + posZ: 5.75720072 + rotX: 359.919739 + rotY: 269.985657 + rotZ: 180.016846 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Curse of Amulotep 0d7a8d/Deck Set Aside 5127f6.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Curse of Amulotep 0d7a8d/Deck Set Aside 5127f6.yaml new file mode 100644 index 000000000..f94aa6fea --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Curse of Amulotep 0d7a8d/Deck Set Aside 5127f6.yaml @@ -0,0 +1,302 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 3624 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Cultist. + GMNotes: '' + GUID: 159f90 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Wizard of the Order + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -10.2367868 + posY: 1.3997227 + posZ: 10.5120125 + rotX: -0.000602587243 + rotY: 180.0 + rotZ: 180.000351 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 212 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2': + BackIsHidden: true + BackURL: https://i.imgur.com/JctVOQy.jpg/ + FaceURL: https://i.imgur.com/5lwfXNg.jpg/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 058b91 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 8.027248 + posY: 1.0320425 + posZ: -2.090732 + rotX: 359.991241 + rotY: 179.944534 + rotZ: 0.02154897 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 211 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2': + BackIsHidden: true + BackURL: https://i.imgur.com/JctVOQy.jpg/ + FaceURL: https://i.imgur.com/5lwfXNg.jpg/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: '451714' + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 7.912696 + posY: 1.22698736 + posZ: -2.18488026 + rotX: 359.993683 + rotY: 180.004959 + rotZ: 2.700692 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 210 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2': + BackIsHidden: true + BackURL: https://i.imgur.com/JctVOQy.jpg/ + FaceURL: https://i.imgur.com/5lwfXNg.jpg/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 7667de + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 8.457997 + posY: 1.194848 + posZ: -1.83282769 + rotX: 359.989258 + rotY: 180.004272 + rotZ: 0.7061461 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 209 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2': + BackIsHidden: true + BackURL: https://i.imgur.com/JctVOQy.jpg/ + FaceURL: https://i.imgur.com/5lwfXNg.jpg/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: c29ab7 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 7.61443233 + posY: 1.23148751 + posZ: -1.96294737 + rotX: -0.005386872 + rotY: 179.968689 + rotZ: 2.74007 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 207 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2': + BackIsHidden: true + BackURL: https://i.imgur.com/JctVOQy.jpg/ + FaceURL: https://i.imgur.com/5lwfXNg.jpg/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 612ad3 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Amulotep + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 8.220671 + posY: 1.17846644 + posZ: -0.8211413 + rotX: 0.000796120032 + rotY: 179.999588 + rotZ: -0.00076509075 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2': + BackIsHidden: true + BackURL: https://i.imgur.com/JctVOQy.jpg/ + FaceURL: https://i.imgur.com/5lwfXNg.jpg/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 3624 +- 212 +- 211 +- 210 +- 209 +- 207 +Description: the Curse of Amulotep +GMNotes: '' +GUID: 5127f6 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Set Aside +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 1.69650233 + posY: 1.666196 + posZ: 14.2788038 + rotX: 359.955139 + rotY: 224.999786 + rotZ: 180.068649 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Dying Star bcfff6.ttslua b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Dying Star bcfff6.ttslua new file mode 100644 index 000000000..46067f58e --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Dying Star bcfff6.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.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.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 791837/Custom_Model_Bag The Dying Star bcfff6.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Dying Star bcfff6.yaml new file mode 100644 index 000000000..048b6b5a1 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Dying Star bcfff6.yaml @@ -0,0 +1,62 @@ +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 Dying Star bcfff6/Bag Part 1 b310b9.yaml' +- !include 'Custom_Model_Bag The Dying Star bcfff6/Bag Part 2 c2a55d.yaml' +- !include 'Custom_Model_Bag The Dying Star bcfff6/Bag Tokens 9ae382.yaml' +CustomMesh: + CastShadows: true + ColliderURL: '' + Convex: true + DiffuseURL: http://cloud-3.steamusercontent.com/ugc/798737729142922162/AD09D68EC542F778CCA3A4F5B33E17EF50AFE31B/ + MaterialIndex: 3 + MeshURL: https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj + NormalURL: '' + TypeIndex: 6 +Description: '' +GMNotes: '' +GUID: bcfff6 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Model_Bag The Dying Star bcfff6.ttslua' +LuaScriptState: '{"ml":{"9ae382":{"lock":false,"pos":{"x":-3.3515,"y":1.4052,"z":13.818},"rot":{"x":359.9832,"y":-0.0001,"z":359.9197}},"b310b9":{"lock":false,"pos":{"x":8.6044,"y":1.2859,"z":4.9796},"rot":{"x":0.08,"y":89.9997,"z":359.9831}},"c2a55d":{"lock":false,"pos":{"x":8.6023,"y":1.2838,"z":-2.2398},"rot":{"x":0.08,"y":89.9987,"z":359.9831}}}}' +MaterialIndex: -1 +MeshIndex: -1 +Name: Custom_Model_Bag +Nickname: The Dying Star +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 58.5486336 + posY: 8.637653 + posZ: -97.5094452 + rotX: 359.983246 + rotY: 270.0 + rotZ: 0.00353678735 + scaleX: 2.21 + scaleY: 0.46 + scaleZ: 2.42 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Dying Star bcfff6/Bag Part 1 b310b9.ttslua b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Dying Star bcfff6/Bag Part 1 b310b9.ttslua new file mode 100644 index 000000000..4acf9ea11 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Dying Star bcfff6/Bag Part 1 b310b9.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 791837/Custom_Model_Bag The Dying Star bcfff6/Bag Part 1 b310b9.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Dying Star bcfff6/Bag Part 1 b310b9.yaml new file mode 100644 index 000000000..3cdb70e35 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Dying Star bcfff6/Bag Part 1 b310b9.yaml @@ -0,0 +1,45 @@ +Autoraise: true +ColorDiffuse: + b: 0.0 + g: 0.366520882 + r: 0.7058823 +ContainedObjects: +- !include 'Bag Part 1 b310b9/Card Al-Khazin 2ea07b.yaml' +- !include 'Bag Part 1 b310b9/Bag 1 Delta File 1 414e12.yaml' +- !include 'Bag Part 1 b310b9/Bag 1 Delta File 2 7dff5b.yaml' +- !include 'Bag Part 1 b310b9/DeckCustom Encounter Deck 37bf35.yaml' +- !include 'Bag Part 1 b310b9/Deck 1 Agenda Deck 749379.yaml' +- !include 'Bag Part 1 b310b9/Deck 1 Act Deck 8cfb70.yaml' +- !include 'Bag Part 1 b310b9/Card Dificulty e43848.yaml' +- !include 'Bag Part 1 b310b9/Custom_Tile The Dying Star 8d62ae.yaml' +- !include 'Bag Part 1 b310b9/Deck 46c729.yaml' +- !include 'Bag Part 1 b310b9/Deck Locations 516099.yaml' +Description: The Dying Star +GMNotes: '' +GUID: b310b9 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Bag Part 1 b310b9.ttslua' +LuaScriptState: '{"ml":{"2ea07b":{"lock":false,"pos":{"x":1.6964,"y":1.655,"z":14.2788},"rot":{"x":359.9552,"y":224.9981,"z":0.0687}},"37bf35":{"lock":false,"pos":{"x":-3.9277,"y":1.857,"z":5.7572},"rot":{"x":359.9198,"y":269.9612,"z":180.0169}},"414e12":{"lock":false,"pos":{"x":-9.705,"y":1.4138,"z":12.8271},"rot":{"x":359.9831,"y":0.002,"z":359.92}},"46c729":{"lock":false,"pos":{"x":-9.2963,"y":1.6522,"z":-0.1895},"rot":{"x":359.9202,"y":269.9999,"z":0.0168}},"516099":{"lock":false,"pos":{"x":-13.6326,"y":1.6929,"z":-0.0771},"rot":{"x":359.9201,"y":269.9896,"z":0.0169}},"749379":{"lock":false,"pos":{"x":-2.7246,"y":1.6566,"z":0.3733},"rot":{"x":359.9832,"y":359.9894,"z":359.9197}},"7dff5b":{"lock":false,"pos":{"x":-8.9396,"y":1.3985,"z":9.056},"rot":{"x":359.9831,"y":0.0049,"z":354.5837}},"8cfb70":{"lock":false,"pos":{"x":-2.6886,"y":1.655,"z":-5.0485},"rot":{"x":359.9832,"y":359.9856,"z":359.9197}},"8d62ae":{"lock":false,"pos":{"x":-3.5101,"y":1.5819,"z":-15.2044},"rot":{"x":359.9197,"y":270.0001,"z":0.0168}},"e43848":{"lock":false,"pos":{"x":-3.9559,"y":1.6556,"z":-10.4412},"rot":{"x":359.9197,"y":269.9855,"z":0.0169}}}}' +MaterialIndex: -1 +MeshIndex: -1 +Name: Bag +Nickname: Part 1 +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 8.604401 + posY: 1.28594744 + posZ: 4.97959948 + rotX: 0.07995989 + rotY: 89.9997 + rotZ: 359.9831 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag The Dying Star bcfff6/Bag Part 1 b310b9/Bag 1 Delta File 1 414e12.yaml new file mode 100644 index 000000000..5ff4f53e3 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Dying Star bcfff6/Bag Part 1 b310b9/Bag 1 Delta File 1 414e12.yaml @@ -0,0 +1,37 @@ +Autoraise: true +ColorDiffuse: + b: 0.0 + g: 0.366520882 + r: 0.7058823 +ContainedObjects: +- !include 'Bag 1 Delta File 1 414e12/Card Agenda 1 be83a3.yaml' +- !include 'Bag 1 Delta File 1 414e12/Deck Locations c83f00.yaml' +Description: '' +GMNotes: '' +GUID: 414e12 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +MeshIndex: -1 +Name: Bag +Nickname: 1 Delta File 1 +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -9.704998 + posY: 1.4137758 + posZ: 12.8271017 + rotX: 359.9831 + rotY: 0.00190903433 + rotZ: 359.92 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag The Dying Star bcfff6/Bag Part 1 b310b9/Bag 1 Delta File 1 414e12/Card Agenda 1 be83a3.yaml new file mode 100644 index 000000000..42a3ee0b4 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Dying Star bcfff6/Bag Part 1 b310b9/Bag 1 Delta File 1 414e12/Card Agenda 1 be83a3.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 606 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '6': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359892882/2A68299B626702E44C443CCE96FC86F1CE8E5EA6/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359893438/EFE1AEB5B18EAF3D06DB1067C92BBFCD91E2022D/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: from delta file 1 +GMNotes: '' +GUID: be83a3 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Agenda 1 +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 12.29983 + posY: 3.04587674 + posZ: -2.38726735 + rotX: 357.687561 + rotY: 359.937134 + rotZ: 1.506065 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag The Dying Star bcfff6/Bag Part 1 b310b9/Bag 1 Delta File 1 414e12/Deck Locations c83f00.yaml new file mode 100644 index 000000000..ef2eb9dc3 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Dying Star bcfff6/Bag Part 1 b310b9/Bag 1 Delta File 1 414e12/Deck Locations c83f00.yaml @@ -0,0 +1,169 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 528 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359888583/7620C813A983CFA8D2F2C1BDA8AE14BCC67E7AFE/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359889397/6D972C2C193DA4D82927C9B90CC1A424E8847621/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: a041e8 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Globe Room + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -4.23333836 + posY: 1.03158951 + posZ: -3.882624 + rotX: 0.00207581744 + rotY: 179.9935 + rotZ: -0.0005014452 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 529 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359888583/7620C813A983CFA8D2F2C1BDA8AE14BCC67E7AFE/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359889397/6D972C2C193DA4D82927C9B90CC1A424E8847621/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: b68582 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: McArthur Household + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -4.076352 + posY: 1.17004848 + posZ: -3.608552 + rotX: 0.00372373126 + rotY: 179.9934 + rotZ: 0.00929096248 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 530 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359888583/7620C813A983CFA8D2F2C1BDA8AE14BCC67E7AFE/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359889397/6D972C2C193DA4D82927C9B90CC1A424E8847621/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 90faef + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Myers Household + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.70731616 + posY: 1.1877439 + posZ: -3.72649336 + rotX: -0.004372664 + rotY: 179.97966 + rotZ: 0.016846085 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '5': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359888583/7620C813A983CFA8D2F2C1BDA8AE14BCC67E7AFE/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359889397/6D972C2C193DA4D82927C9B90CC1A424E8847621/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 528 +- 529 +- 530 +Description: '' +GMNotes: '' +GUID: c83f00 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Locations +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 13.2691116 + posY: 3.01694441 + posZ: -8.652511 + rotX: 2.05504261e-06 + rotY: 269.985565 + rotZ: 7.54448e-06 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag The Dying Star bcfff6/Bag Part 1 b310b9/Bag 1 Delta File 2 7dff5b.yaml new file mode 100644 index 000000000..1b0bba679 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Dying Star bcfff6/Bag Part 1 b310b9/Bag 1 Delta File 2 7dff5b.yaml @@ -0,0 +1,40 @@ +Autoraise: true +ColorDiffuse: + b: 0.0 + g: 0.366520882 + r: 0.7058823 +ContainedObjects: +- !include 'Bag 1 Delta File 2 7dff5b/Card 1 Agenda 2a 7f351d.yaml' +- !include 'Bag 1 Delta File 2 7dff5b/Deck Locations 707f6e.yaml' +- !include 'Bag 1 Delta File 2 7dff5b/Card Dificulty 24a651.yaml' +- !include 'Bag 1 Delta File 2 7dff5b/Deck Encounter d76f6d.yaml' +- !include 'Bag 1 Delta File 2 7dff5b/Card Al-Khazin 1569f4.yaml' +Description: '' +GMNotes: '' +GUID: 7dff5b +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +MeshIndex: -1 +Name: Bag +Nickname: 1 Delta File 2 +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -8.939598 + posY: 1.39849555 + posZ: 9.056002 + rotX: 359.9822 + rotY: 0.00464434549 + rotZ: 354.580139 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag The Dying Star bcfff6/Bag Part 1 b310b9/Bag 1 Delta File 2 7dff5b/Card 1 Agenda 2a 7f351d.yaml new file mode 100644 index 000000000..b72a4ed44 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Dying Star bcfff6/Bag Part 1 b310b9/Bag 1 Delta File 2 7dff5b/Card 1 Agenda 2a 7f351d.yaml @@ -0,0 +1,41 @@ +Autoraise: true +CardID: 607 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '6': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359892882/2A68299B626702E44C443CCE96FC86F1CE8E5EA6/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359893438/EFE1AEB5B18EAF3D06DB1067C92BBFCD91E2022D/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: from Delta file 2 +GMNotes: '' +GUID: 7f351d +Grid: true +GridProjection: false +Hands: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: 1 Agenda 2a +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 0.8420549 + posY: 3.090881 + posZ: 10.0924244 + rotX: 0.495833963 + rotY: 270.012756 + rotZ: 2.10326338 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag The Dying Star bcfff6/Bag Part 1 b310b9/Bag 1 Delta File 2 7dff5b/Card Al-Khazin 1569f4.yaml new file mode 100644 index 000000000..c32180722 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Dying Star bcfff6/Bag Part 1 b310b9/Bag 1 Delta File 2 7dff5b/Card Al-Khazin 1569f4.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 536 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '5': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359888583/7620C813A983CFA8D2F2C1BDA8AE14BCC67E7AFE/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359889397/6D972C2C193DA4D82927C9B90CC1A424E8847621/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 1569f4 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Al-Khazin +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 23.1228619 + posY: 3.0174036 + posZ: -15.1593513 + rotX: 7.77706e-07 + rotY: 269.985565 + rotZ: -8.12507665e-07 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag The Dying Star bcfff6/Bag Part 1 b310b9/Bag 1 Delta File 2 7dff5b/Card Dificulty 24a651.yaml new file mode 100644 index 000000000..77810970b --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Dying Star bcfff6/Bag Part 1 b310b9/Bag 1 Delta File 2 7dff5b/Card Dificulty 24a651.yaml @@ -0,0 +1,41 @@ +Autoraise: true +CardID: 535 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '5': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359888583/7620C813A983CFA8D2F2C1BDA8AE14BCC67E7AFE/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359889397/6D972C2C193DA4D82927C9B90CC1A424E8847621/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 24a651 +Grid: true +GridProjection: false +Hands: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Dificulty +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 4.97689962 + posY: 3.01617336 + posZ: 8.318436 + rotX: 2.78180075 + rotY: 179.886368 + rotZ: 356.800964 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag The Dying Star bcfff6/Bag Part 1 b310b9/Bag 1 Delta File 2 7dff5b/Deck Encounter d76f6d.yaml new file mode 100644 index 000000000..25f3c725c --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Dying Star bcfff6/Bag Part 1 b310b9/Bag 1 Delta File 2 7dff5b/Deck Encounter d76f6d.yaml @@ -0,0 +1,211 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 540 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359888583/7620C813A983CFA8D2F2C1BDA8AE14BCC67E7AFE/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359889397/6D972C2C193DA4D82927C9B90CC1A424E8847621/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 2d3389 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -4.339507 + posY: 1.03168154 + posZ: -4.62028265 + rotX: 0.00126451976 + rotY: 179.980408 + rotZ: 0.0005734454 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 539 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359888583/7620C813A983CFA8D2F2C1BDA8AE14BCC67E7AFE/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359889397/6D972C2C193DA4D82927C9B90CC1A424E8847621/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 4e6f1d + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -4.66866636 + posY: 1.17008889 + posZ: -4.740373 + rotX: 0.0152796237 + rotY: 179.999771 + rotZ: 359.9887 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 538 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359888583/7620C813A983CFA8D2F2C1BDA8AE14BCC67E7AFE/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359889397/6D972C2C193DA4D82927C9B90CC1A424E8847621/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: cd2b35 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -4.23662663 + posY: 1.18770182 + posZ: -4.57978535 + rotX: 0.00152744167 + rotY: 180.001038 + rotZ: 0.004938084 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 537 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359888583/7620C813A983CFA8D2F2C1BDA8AE14BCC67E7AFE/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359889397/6D972C2C193DA4D82927C9B90CC1A424E8847621/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: c39e64 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.9379952 + posY: 1.173934 + posZ: -4.715411 + rotX: 0.0050116186 + rotY: 179.9998 + rotZ: 0.00375403115 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '5': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359888583/7620C813A983CFA8D2F2C1BDA8AE14BCC67E7AFE/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359889397/6D972C2C193DA4D82927C9B90CC1A424E8847621/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 540 +- 539 +- 538 +- 537 +Description: '' +GMNotes: '' +GUID: d76f6d +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Encounter +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 23.8342266 + posY: 3.064101 + posZ: -9.988421 + rotX: 1.30050457 + rotY: 270.048279 + rotZ: 183.3505 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag The Dying Star bcfff6/Bag Part 1 b310b9/Bag 1 Delta File 2 7dff5b/Deck Locations 707f6e.yaml new file mode 100644 index 000000000..d7f19afd0 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Dying Star bcfff6/Bag Part 1 b310b9/Bag 1 Delta File 2 7dff5b/Deck Locations 707f6e.yaml @@ -0,0 +1,210 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 531 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359888583/7620C813A983CFA8D2F2C1BDA8AE14BCC67E7AFE/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359889397/6D972C2C193DA4D82927C9B90CC1A424E8847621/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: c05e53 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Alley + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 1.723061 + posY: 1.03151357 + posZ: -3.10790563 + rotX: 0.00896273 + rotY: 180.00032 + rotZ: 0.00236741663 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 532 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359888583/7620C813A983CFA8D2F2C1BDA8AE14BCC67E7AFE/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359889397/6D972C2C193DA4D82927C9B90CC1A424E8847621/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 8537e1 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Franklin Household + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 1.48397708 + posY: 1.17860007 + posZ: -3.05556 + rotX: 0.0547305681 + rotY: 180.001648 + rotZ: 0.164725944 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 533 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359888583/7620C813A983CFA8D2F2C1BDA8AE14BCC67E7AFE/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359889397/6D972C2C193DA4D82927C9B90CC1A424E8847621/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 3df91e + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Myers Household + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 1.71510732 + posY: 1.1875726 + posZ: -3.11699414 + rotX: -0.000936827 + rotY: 180.007263 + rotZ: -0.000719851465 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 534 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359888583/7620C813A983CFA8D2F2C1BDA8AE14BCC67E7AFE/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359889397/6D972C2C193DA4D82927C9B90CC1A424E8847621/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 3e6b69 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Greenstone Park + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 1.669958 + posY: 1.1740402 + posZ: -3.28449869 + rotX: 0.00168330222 + rotY: 180.0 + rotZ: 0.000443409983 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '5': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359888583/7620C813A983CFA8D2F2C1BDA8AE14BCC67E7AFE/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359889397/6D972C2C193DA4D82927C9B90CC1A424E8847621/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 531 +- 532 +- 533 +- 534 +Description: '' +GMNotes: '' +GUID: 707f6e +Grid: true +GridProjection: false +Hands: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Locations +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 5.460905 + posY: 3.025889 + posZ: 8.2813 + rotX: 3.73618221 + rotY: 179.97522 + rotZ: 359.395264 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Dying Star bcfff6/Bag Part 1 b310b9/Card Al-Khazin 2ea07b.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Dying Star bcfff6/Bag Part 1 b310b9/Card Al-Khazin 2ea07b.yaml new file mode 100644 index 000000000..d0b43b391 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Dying Star bcfff6/Bag Part 1 b310b9/Card Al-Khazin 2ea07b.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 509 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '5': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359888583/7620C813A983CFA8D2F2C1BDA8AE14BCC67E7AFE/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359889397/6D972C2C193DA4D82927C9B90CC1A424E8847621/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 2ea07b +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Al-Khazin +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 1.696401 + posY: 1.65499461 + posZ: 14.2788019 + rotX: 359.95517 + rotY: 224.998062 + rotZ: 0.06866192 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Dying Star bcfff6/Bag Part 1 b310b9/Card Dificulty e43848.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Dying Star bcfff6/Bag Part 1 b310b9/Card Dificulty e43848.yaml new file mode 100644 index 000000000..db07ada77 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Dying Star bcfff6/Bag Part 1 b310b9/Card Dificulty e43848.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 527 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '5': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359888583/7620C813A983CFA8D2F2C1BDA8AE14BCC67E7AFE/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359889397/6D972C2C193DA4D82927C9B90CC1A424E8847621/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: e43848 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Dificulty +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.95590019 + posY: 1.65564811 + posZ: -10.4412022 + rotX: 359.919739 + rotY: 269.985474 + rotZ: 0.0168525539 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag The Dying Star bcfff6/Bag Part 1 b310b9/Custom_Tile The Dying Star 8d62ae.ttslua new file mode 100644 index 000000000..75a63c904 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Dying Star bcfff6/Bag Part 1 b310b9/Custom_Tile The Dying Star 8d62ae.ttslua @@ -0,0 +1,21 @@ +name = 'The Dying Star' + +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 The Side Missions 791837/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 791837/Custom_Model_Bag The Dying Star bcfff6/Bag Part 1 b310b9/Custom_Tile The Dying Star 8d62ae.yaml new file mode 100644 index 000000000..20b7f6136 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Dying Star bcfff6/Bag Part 1 b310b9/Custom_Tile The Dying Star 8d62ae.yaml @@ -0,0 +1,42 @@ +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 +GMNotes: '' +GUID: 8d62ae +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Tile The Dying Star 8d62ae.ttslua' +LuaScriptState: '' +Name: Custom_Tile +Nickname: The Dying Star +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.5101 + posY: 1.58191037 + posZ: -15.204402 + rotX: 359.919739 + rotY: 270.000061 + rotZ: 0.0168355647 + scaleX: 2.2 + scaleY: 1.0 + scaleZ: 2.2 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Dying Star bcfff6/Bag Part 1 b310b9/Deck 46c729.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Dying Star bcfff6/Bag Part 1 b310b9/Deck 46c729.yaml new file mode 100644 index 000000000..745fb1454 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Dying Star bcfff6/Bag Part 1 b310b9/Deck 46c729.yaml @@ -0,0 +1,430 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 508 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359888583/7620C813A983CFA8D2F2C1BDA8AE14BCC67E7AFE/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359889397/6D972C2C193DA4D82927C9B90CC1A424E8847621/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: ec2e15 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -9.56732 + posY: 1.77703035 + posZ: -0.162022084 + rotX: 0.09779772 + rotY: 270.001 + rotZ: 180.308014 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 507 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359888583/7620C813A983CFA8D2F2C1BDA8AE14BCC67E7AFE/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359889397/6D972C2C193DA4D82927C9B90CC1A424E8847621/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: '663165' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -9.699058 + posY: 1.82957876 + posZ: -0.291165173 + rotX: 0.3117816 + rotY: 270.004425 + rotZ: 180.474 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 506 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359888583/7620C813A983CFA8D2F2C1BDA8AE14BCC67E7AFE/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359889397/6D972C2C193DA4D82927C9B90CC1A424E8847621/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 71cd48 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -9.497888 + posY: 1.82422173 + posZ: -0.0148924273 + rotX: 359.931976 + rotY: 269.999664 + rotZ: 180.0071 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 505 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359888583/7620C813A983CFA8D2F2C1BDA8AE14BCC67E7AFE/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359889397/6D972C2C193DA4D82927C9B90CC1A424E8847621/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 59d447 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -9.685767 + posY: 1.76849627 + posZ: -0.1060423 + rotX: 359.929352 + rotY: 270.0071 + rotZ: 182.663116 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 504 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359888583/7620C813A983CFA8D2F2C1BDA8AE14BCC67E7AFE/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359889397/6D972C2C193DA4D82927C9B90CC1A424E8847621/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: cceb44 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -9.802962 + posY: 1.81790209 + posZ: -0.148775712 + rotX: 359.9368 + rotY: 269.9973 + rotZ: 179.896637 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 503 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359888583/7620C813A983CFA8D2F2C1BDA8AE14BCC67E7AFE/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359889397/6D972C2C193DA4D82927C9B90CC1A424E8847621/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: a52d78 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -9.021406 + posY: 1.81768072 + posZ: -0.2657176 + rotX: 359.927216 + rotY: 269.999969 + rotZ: 180.009521 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 502 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359888583/7620C813A983CFA8D2F2C1BDA8AE14BCC67E7AFE/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359889397/6D972C2C193DA4D82927C9B90CC1A424E8847621/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 664cac + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -9.175297 + posY: 1.83184016 + posZ: -0.141577646 + rotX: 359.929138 + rotY: 269.998962 + rotZ: 179.962738 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 501 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359888583/7620C813A983CFA8D2F2C1BDA8AE14BCC67E7AFE/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359889397/6D972C2C193DA4D82927C9B90CC1A424E8847621/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 2a9702 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -9.292303 + posY: 1.8136133 + posZ: -0.0371242836 + rotX: 359.936035 + rotY: 270.0059 + rotZ: 179.994247 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 500 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359888583/7620C813A983CFA8D2F2C1BDA8AE14BCC67E7AFE/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359889397/6D972C2C193DA4D82927C9B90CC1A424E8847621/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 442e88 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -9.490518 + posY: 1.66901493 + posZ: -0.127001464 + rotX: 359.9082 + rotY: 270.001465 + rotZ: 179.998886 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '5': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359888583/7620C813A983CFA8D2F2C1BDA8AE14BCC67E7AFE/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359889397/6D972C2C193DA4D82927C9B90CC1A424E8847621/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 508 +- 507 +- 506 +- 505 +- 504 +- 503 +- 502 +- 501 +- 500 +Description: '' +GMNotes: '' +GUID: 46c729 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -9.2963 + posY: 1.65221262 + posZ: -0.189499855 + rotX: 359.920227 + rotY: 269.999939 + rotZ: 0.0167923979 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag The Dying Star bcfff6/Bag Part 1 b310b9/Deck 1 Act Deck 8cfb70.yaml new file mode 100644 index 000000000..8917a36f2 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Dying Star bcfff6/Bag Part 1 b310b9/Deck 1 Act Deck 8cfb70.yaml @@ -0,0 +1,169 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 605 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '6': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359892882/2A68299B626702E44C443CCE96FC86F1CE8E5EA6/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359893438/EFE1AEB5B18EAF3D06DB1067C92BBFCD91E2022D/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: be83a3 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 1.69672573 + posY: 1.030596 + posZ: -3.82701659 + rotX: 0.0310797319 + rotY: 270.001648 + rotZ: 0.008361563 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 604 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '6': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359892882/2A68299B626702E44C443CCE96FC86F1CE8E5EA6/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359893438/EFE1AEB5B18EAF3D06DB1067C92BBFCD91E2022D/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: a69e62 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.007814 + posY: 1.031103 + posZ: -7.65425253 + rotX: 0.008325971 + rotY: 270.0003 + rotZ: 0.0024879016 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 603 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '6': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359892882/2A68299B626702E44C443CCE96FC86F1CE8E5EA6/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359893438/EFE1AEB5B18EAF3D06DB1067C92BBFCD91E2022D/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: be83a3 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.331319 + posY: 1.169332 + posZ: -7.668506 + rotX: -0.004223937 + rotY: 270.0001 + rotZ: 0.004386844 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '6': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359892882/2A68299B626702E44C443CCE96FC86F1CE8E5EA6/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359893438/EFE1AEB5B18EAF3D06DB1067C92BBFCD91E2022D/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 605 +- 604 +- 603 +Description: '' +GMNotes: '' +GUID: 8cfb70 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: 1 Act Deck +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.6886 + posY: 1.65499747 + posZ: -5.048501 + rotX: 359.983154 + rotY: 359.9856 + rotZ: 359.919739 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag The Dying Star bcfff6/Bag Part 1 b310b9/Deck 1 Agenda Deck 749379.yaml new file mode 100644 index 000000000..eed69fefb --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Dying Star bcfff6/Bag Part 1 b310b9/Deck 1 Agenda Deck 749379.yaml @@ -0,0 +1,169 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 602 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '6': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359892882/2A68299B626702E44C443CCE96FC86F1CE8E5EA6/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359893438/EFE1AEB5B18EAF3D06DB1067C92BBFCD91E2022D/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: be83a3 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.876002967 + posY: 1.029247 + posZ: -5.88280344 + rotX: 0.0157930646 + rotY: 270.000275 + rotZ: 0.00475618057 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 601 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '6': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359892882/2A68299B626702E44C443CCE96FC86F1CE8E5EA6/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359893438/EFE1AEB5B18EAF3D06DB1067C92BBFCD91E2022D/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 0534e6 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.66380453 + posY: 1.03113639 + posZ: -6.86434746 + rotX: 0.00677276962 + rotY: 270.0003 + rotZ: 0.00202856446 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 600 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '6': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359892882/2A68299B626702E44C443CCE96FC86F1CE8E5EA6/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359893438/EFE1AEB5B18EAF3D06DB1067C92BBFCD91E2022D/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: be83a3 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.57760334 + posY: 1.16936362 + posZ: -6.80068 + rotX: -0.00302288472 + rotY: 270.0004 + rotZ: 0.0072340616 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '6': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359892882/2A68299B626702E44C443CCE96FC86F1CE8E5EA6/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359893438/EFE1AEB5B18EAF3D06DB1067C92BBFCD91E2022D/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 602 +- 601 +- 600 +Description: '' +GMNotes: '' +GUID: '749379' +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: 1 Agenda Deck +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.7246 + posY: 1.656641 + posZ: 0.373299658 + rotX: 359.983154 + rotY: 359.989441 + rotZ: 359.919739 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Dying Star bcfff6/Bag Part 1 b310b9/Deck Locations 516099.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Dying Star bcfff6/Bag Part 1 b310b9/Deck Locations 516099.yaml new file mode 100644 index 000000000..444bddd43 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Dying Star bcfff6/Bag Part 1 b310b9/Deck Locations 516099.yaml @@ -0,0 +1,757 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 526 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359888583/7620C813A983CFA8D2F2C1BDA8AE14BCC67E7AFE/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359889397/6D972C2C193DA4D82927C9B90CC1A424E8847621/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: bc9446 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Library + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 12.8723879 + posY: 1.03150129 + posZ: -6.79990864 + rotX: 0.009577927 + rotY: 180.012619 + rotZ: 0.00259979488 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 525 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359888583/7620C813A983CFA8D2F2C1BDA8AE14BCC67E7AFE/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359889397/6D972C2C193DA4D82927C9B90CC1A424E8847621/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: '136467' + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Hiden comparment + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 12.5612326 + posY: 1.1791873 + posZ: -6.898218 + rotX: 359.988556 + rotY: 179.998672 + rotZ: 0.117477134 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 524 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359888583/7620C813A983CFA8D2F2C1BDA8AE14BCC67E7AFE/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359889397/6D972C2C193DA4D82927C9B90CC1A424E8847621/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 532f32 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Globe Room + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 12.7412634 + posY: 1.18771636 + posZ: -6.60475874 + rotX: 0.001227179 + rotY: 180.009125 + rotZ: -0.00102616043 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 523 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359888583/7620C813A983CFA8D2F2C1BDA8AE14BCC67E7AFE/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359889397/6D972C2C193DA4D82927C9B90CC1A424E8847621/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: df5511 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Basement Landing + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 9.610464 + posY: 1.17401552 + posZ: -5.94310474 + rotX: 0.001559473 + rotY: 179.999969 + rotZ: 0.00019733209 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 522 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359888583/7620C813A983CFA8D2F2C1BDA8AE14BCC67E7AFE/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359889397/6D972C2C193DA4D82927C9B90CC1A424E8847621/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: f1d383 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Streets + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 9.169412 + posY: 1.17195082 + posZ: -6.32347441 + rotX: 0.00107955921 + rotY: 180.012985 + rotZ: 359.990936 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 521 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359888583/7620C813A983CFA8D2F2C1BDA8AE14BCC67E7AFE/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359889397/6D972C2C193DA4D82927C9B90CC1A424E8847621/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 05e7a1 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Streets + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 9.319623 + posY: 1.17459893 + posZ: -5.83672333 + rotX: -0.0008573743 + rotY: 180.017883 + rotZ: -0.00237043668 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 520 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359888583/7620C813A983CFA8D2F2C1BDA8AE14BCC67E7AFE/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359889397/6D972C2C193DA4D82927C9B90CC1A424E8847621/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 4778f8 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Streets + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 9.286199 + posY: 1.17967129 + posZ: -6.4101305 + rotX: 0.00138356455 + rotY: 180.008438 + rotZ: -0.004394323 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 519 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359888583/7620C813A983CFA8D2F2C1BDA8AE14BCC67E7AFE/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359889397/6D972C2C193DA4D82927C9B90CC1A424E8847621/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 4534a2 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Church + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 9.893779 + posY: 1.18598485 + posZ: -6.110355 + rotX: 0.00186176307 + rotY: 180.010834 + rotZ: 0.00315477652 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 518 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359888583/7620C813A983CFA8D2F2C1BDA8AE14BCC67E7AFE/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359889397/6D972C2C193DA4D82927C9B90CC1A424E8847621/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 1e6a36 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Franks Cornerstore + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 9.428581 + posY: 1.14348793 + posZ: -6.702193 + rotX: 0.0011658601 + rotY: 180.010071 + rotZ: -0.00107104622 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 517 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359888583/7620C813A983CFA8D2F2C1BDA8AE14BCC67E7AFE/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359889397/6D972C2C193DA4D82927C9B90CC1A424E8847621/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: '479529' + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Greenstone Park + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 9.23116 + posY: 1.15309584 + posZ: -6.637772 + rotX: 0.00228695455 + rotY: 180.00914 + rotZ: -0.00221982482 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 516 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359888583/7620C813A983CFA8D2F2C1BDA8AE14BCC67E7AFE/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359889397/6D972C2C193DA4D82927C9B90CC1A424E8847621/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: b8a689 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Franklin Household + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 9.381087 + posY: 1.16272986 + posZ: -6.10700035 + rotX: -0.000621737563 + rotY: 180.017487 + rotZ: -0.000895477133 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 515 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359888583/7620C813A983CFA8D2F2C1BDA8AE14BCC67E7AFE/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359889397/6D972C2C193DA4D82927C9B90CC1A424E8847621/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 5e3f14 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: McArthur Household + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 9.149571 + posY: 1.17230833 + posZ: -6.349993 + rotX: -0.001439444 + rotY: 180.018127 + rotZ: -0.0028013757 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 514 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359888583/7620C813A983CFA8D2F2C1BDA8AE14BCC67E7AFE/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359889397/6D972C2C193DA4D82927C9B90CC1A424E8847621/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 5ba62c + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Myers Household + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 9.717647 + posY: 1.18204248 + posZ: -6.113216 + rotX: -0.000704256352 + rotY: 179.99942 + rotZ: 0.00140989292 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 513 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359888583/7620C813A983CFA8D2F2C1BDA8AE14BCC67E7AFE/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359889397/6D972C2C193DA4D82927C9B90CC1A424E8847621/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 816cee + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Alley + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 9.210497 + posY: 1.19166815 + posZ: -5.752472 + rotX: -0.00100379041 + rotY: 180.017746 + rotZ: -0.00264835637 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 512 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359888583/7620C813A983CFA8D2F2C1BDA8AE14BCC67E7AFE/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359889397/6D972C2C193DA4D82927C9B90CC1A424E8847621/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: a1d25f + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Alley + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 9.452949 + posY: 1.20139706 + posZ: -5.65773726 + rotX: 0.000531935832 + rotY: 179.9894 + rotZ: 0.0009844634 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 511 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359888583/7620C813A983CFA8D2F2C1BDA8AE14BCC67E7AFE/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359889397/6D972C2C193DA4D82927C9B90CC1A424E8847621/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: e47aad + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Alley + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 9.376215 + posY: 1.21108544 + posZ: -6.276587 + rotX: -0.001741502 + rotY: 180.010818 + rotZ: -0.00110407779 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 510 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359888583/7620C813A983CFA8D2F2C1BDA8AE14BCC67E7AFE/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359889397/6D972C2C193DA4D82927C9B90CC1A424E8847621/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: cf0d17 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Alley + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 6.91297674 + posY: 1.2207 + posZ: -0.6065362 + rotX: -0.000296128623 + rotY: 180.0325 + rotZ: -0.00179175113 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '5': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359888583/7620C813A983CFA8D2F2C1BDA8AE14BCC67E7AFE/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359889397/6D972C2C193DA4D82927C9B90CC1A424E8847621/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 526 +- 525 +- 524 +- 523 +- 522 +- 521 +- 520 +- 519 +- 518 +- 517 +- 516 +- 515 +- 514 +- 513 +- 512 +- 511 +- 510 +Description: '' +GMNotes: '' +GUID: '516099' +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Locations +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -13.6326 + posY: 1.69293535 + posZ: -0.0770996958 + rotX: 359.9201 + rotY: 269.989624 + rotZ: 0.0168849 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Dying Star bcfff6/Bag Part 1 b310b9/DeckCustom Encounter Deck 37bf35.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Dying Star bcfff6/Bag Part 1 b310b9/DeckCustom Encounter Deck 37bf35.yaml new file mode 100644 index 000000000..5fc380c27 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Dying Star bcfff6/Bag Part 1 b310b9/DeckCustom Encounter Deck 37bf35.yaml @@ -0,0 +1,1667 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 700 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '7': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359895085/A6A8BCF2B1073D90985D9596AEC119211461BCBF/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: c08261 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.662694752 + posY: 1.50371444 + posZ: -6.158035 + rotX: -0.0007199763 + rotY: 180.000824 + rotZ: 180.001724 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 701 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359895085/A6A8BCF2B1073D90985D9596AEC119211461BCBF/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 8d3812 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -0.2740369 + posY: 1.61000049 + posZ: 3.09213686 + rotX: -0.000367840985 + rotY: 180.0 + rotZ: 179.999878 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 702 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: c08261 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.09409654e-06 + posY: 1.04493368 + posZ: 8.31211651e-07 + rotX: 1.451921e-07 + rotY: 179.999924 + rotZ: 180.0001 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 703 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: c08261 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.09409654e-06 + posY: 1.04493368 + posZ: 8.31211651e-07 + rotX: 1.451921e-07 + rotY: 179.999924 + rotZ: 180.0001 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 704 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: c08261 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.09409654e-06 + posY: 1.04493368 + posZ: 8.31211651e-07 + rotX: 1.451921e-07 + rotY: 179.999924 + rotZ: 180.0001 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 705 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: c08261 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.09409654e-06 + posY: 1.04493368 + posZ: 8.31211651e-07 + rotX: 1.451921e-07 + rotY: 179.999924 + rotZ: 180.0001 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 706 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: c08261 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.09409654e-06 + posY: 1.04493368 + posZ: 8.31211651e-07 + rotX: 1.451921e-07 + rotY: 179.999924 + rotZ: 180.0001 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 707 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: c08261 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.09409654e-06 + posY: 1.04493368 + posZ: 8.31211651e-07 + rotX: 1.451921e-07 + rotY: 179.999924 + rotZ: 180.0001 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 708 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: c08261 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.09409654e-06 + posY: 1.04493368 + posZ: 8.31211651e-07 + rotX: 1.451921e-07 + rotY: 179.999924 + rotZ: 180.0001 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 709 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: c08261 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.09409654e-06 + posY: 1.04493368 + posZ: 8.31211651e-07 + rotX: 1.451921e-07 + rotY: 179.999924 + rotZ: 180.0001 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 710 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: c08261 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.09409654e-06 + posY: 1.04493368 + posZ: 8.31211651e-07 + rotX: 1.451921e-07 + rotY: 179.999924 + rotZ: 180.0001 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 711 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: c08261 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.09409654e-06 + posY: 1.04493368 + posZ: 8.31211651e-07 + rotX: 1.451921e-07 + rotY: 179.999924 + rotZ: 180.0001 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 712 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: c08261 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.09409654e-06 + posY: 1.04493368 + posZ: 8.31211651e-07 + rotX: 1.451921e-07 + rotY: 179.999924 + rotZ: 180.0001 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 713 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: c08261 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.09409654e-06 + posY: 1.04493368 + posZ: 8.31211651e-07 + rotX: 1.451921e-07 + rotY: 179.999924 + rotZ: 180.0001 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 714 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: c08261 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.09409654e-06 + posY: 1.04493368 + posZ: 8.31211651e-07 + rotX: 1.451921e-07 + rotY: 179.999924 + rotZ: 180.0001 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 715 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: c08261 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.09409654e-06 + posY: 1.04493368 + posZ: 8.31211651e-07 + rotX: 1.451921e-07 + rotY: 179.999924 + rotZ: 180.0001 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 716 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: c08261 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.09409654e-06 + posY: 1.04493368 + posZ: 8.31211651e-07 + rotX: 1.451921e-07 + rotY: 179.999924 + rotZ: 180.0001 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 717 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: c08261 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.09409654e-06 + posY: 1.04493368 + posZ: 8.31211651e-07 + rotX: 1.451921e-07 + rotY: 179.999924 + rotZ: 180.0001 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 718 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: c08261 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.09409654e-06 + posY: 1.04493368 + posZ: 8.31211651e-07 + rotX: 1.451921e-07 + rotY: 179.999924 + rotZ: 180.0001 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 719 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: c08261 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.09409654e-06 + posY: 1.04493368 + posZ: 8.31211651e-07 + rotX: 1.451921e-07 + rotY: 179.999924 + rotZ: 180.0001 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 720 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: c08261 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.09409654e-06 + posY: 1.04493368 + posZ: 8.31211651e-07 + rotX: 1.451921e-07 + rotY: 179.999924 + rotZ: 180.0001 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 721 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: c08261 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.09409654e-06 + posY: 1.04493368 + posZ: 8.31211651e-07 + rotX: 1.451921e-07 + rotY: 179.999924 + rotZ: 180.0001 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 722 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: c08261 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.09409654e-06 + posY: 1.04493368 + posZ: 8.31211651e-07 + rotX: 1.451921e-07 + rotY: 179.999924 + rotZ: 180.0001 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 723 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: c08261 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.09409654e-06 + posY: 1.04493368 + posZ: 8.31211651e-07 + rotX: 1.451921e-07 + rotY: 179.999924 + rotZ: 180.0001 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 724 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: c08261 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.09409654e-06 + posY: 1.04493368 + posZ: 8.31211651e-07 + rotX: 1.451921e-07 + rotY: 179.999924 + rotZ: 180.0001 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 725 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: c08261 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.09409654e-06 + posY: 1.04493368 + posZ: 8.31211651e-07 + rotX: 1.451921e-07 + rotY: 179.999924 + rotZ: 180.0001 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 726 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: c08261 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.09409654e-06 + posY: 1.04493368 + posZ: 8.31211651e-07 + rotX: 1.451921e-07 + rotY: 179.999924 + rotZ: 180.0001 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 727 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: c08261 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.09409654e-06 + posY: 1.04493368 + posZ: 8.31211651e-07 + rotX: 1.451921e-07 + rotY: 179.999924 + rotZ: 180.0001 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 728 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: c08261 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.09409654e-06 + posY: 1.04493368 + posZ: 8.31211651e-07 + rotX: 1.451921e-07 + rotY: 179.999924 + rotZ: 180.0001 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 729 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: c08261 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.09409654e-06 + posY: 1.04493368 + posZ: 8.31211651e-07 + rotX: 1.451921e-07 + rotY: 179.999924 + rotZ: 180.0001 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 730 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: c08261 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.09409654e-06 + posY: 1.04493368 + posZ: 8.31211651e-07 + rotX: 1.451921e-07 + rotY: 179.999924 + rotZ: 180.0001 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 731 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: c08261 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.09409654e-06 + posY: 1.04493368 + posZ: 8.31211651e-07 + rotX: 1.451921e-07 + rotY: 179.999924 + rotZ: 180.0001 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 732 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: c08261 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.09409654e-06 + posY: 1.04493368 + posZ: 8.31211651e-07 + rotX: 1.451921e-07 + rotY: 179.999924 + rotZ: 180.0001 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 733 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: c08261 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.09409654e-06 + posY: 1.04493368 + posZ: 8.31211651e-07 + rotX: 1.451921e-07 + rotY: 179.999924 + rotZ: 180.0001 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 734 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: c08261 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.09409654e-06 + posY: 1.04493368 + posZ: 8.31211651e-07 + rotX: 1.451921e-07 + rotY: 179.999924 + rotZ: 180.0001 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 735 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: c08261 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.09409654e-06 + posY: 1.04493368 + posZ: 8.31211651e-07 + rotX: 1.451921e-07 + rotY: 179.999924 + rotZ: 180.0001 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 736 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: c08261 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.09409654e-06 + posY: 1.04493368 + posZ: 8.31211651e-07 + rotX: 1.451921e-07 + rotY: 179.999924 + rotZ: 180.0001 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 737 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: c08261 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.09409654e-06 + posY: 1.04493368 + posZ: 8.31211651e-07 + rotX: 1.451921e-07 + rotY: 179.999924 + rotZ: 180.0001 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 738 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: c08261 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.09409654e-06 + posY: 1.04493368 + posZ: 8.31211651e-07 + rotX: 1.451921e-07 + rotY: 179.999924 + rotZ: 180.0001 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 739 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: c08261 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.09409654e-06 + posY: 1.04493368 + posZ: 8.31211651e-07 + rotX: 1.451921e-07 + rotY: 179.999924 + rotZ: 180.0001 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 740 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: c08261 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.09409654e-06 + posY: 1.04493368 + posZ: 8.31211651e-07 + rotX: 1.451921e-07 + rotY: 179.999924 + rotZ: 180.0001 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 741 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: c08261 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.09409654e-06 + posY: 1.04493368 + posZ: 8.31211651e-07 + rotX: 1.451921e-07 + rotY: 179.999924 + rotZ: 180.0001 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 742 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: c08261 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.09409654e-06 + posY: 1.04493368 + posZ: 8.31211651e-07 + rotX: 1.451921e-07 + rotY: 179.999924 + rotZ: 180.0001 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 743 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: c08261 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.09409654e-06 + posY: 1.04493368 + posZ: 8.31211651e-07 + rotX: 1.451921e-07 + rotY: 179.999924 + rotZ: 180.0001 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 744 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: c08261 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.09409654e-06 + posY: 1.04493368 + posZ: 8.31211651e-07 + rotX: 1.451921e-07 + rotY: 179.999924 + rotZ: 180.0001 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 745 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: c08261 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.09409654e-06 + posY: 1.04493368 + posZ: 8.31211651e-07 + rotX: 1.451921e-07 + rotY: 179.999924 + rotZ: 180.0001 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '7': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359895085/A6A8BCF2B1073D90985D9596AEC119211461BCBF/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 700 +- 701 +- 702 +- 703 +- 704 +- 705 +- 706 +- 707 +- 708 +- 709 +- 710 +- 711 +- 712 +- 713 +- 714 +- 715 +- 716 +- 717 +- 718 +- 719 +- 720 +- 721 +- 722 +- 723 +- 724 +- 725 +- 726 +- 727 +- 728 +- 729 +- 730 +- 731 +- 732 +- 733 +- 734 +- 735 +- 736 +- 737 +- 738 +- 739 +- 740 +- 741 +- 742 +- 743 +- 744 +- 745 +Description: '' +GMNotes: '' +GUID: 37bf35 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: DeckCustom +Nickname: Encounter Deck +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.92770028 + posY: 1.8569814 + posZ: 5.7572 + rotX: 359.919769 + rotY: 269.961151 + rotZ: 180.0169 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Dying Star bcfff6/Bag Part 2 c2a55d.ttslua b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Dying Star bcfff6/Bag Part 2 c2a55d.ttslua new file mode 100644 index 000000000..4acf9ea11 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Dying Star bcfff6/Bag Part 2 c2a55d.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 791837/Custom_Model_Bag The Dying Star bcfff6/Bag Part 2 c2a55d.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Dying Star bcfff6/Bag Part 2 c2a55d.yaml new file mode 100644 index 000000000..5ccf1cbdd --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Dying Star bcfff6/Bag Part 2 c2a55d.yaml @@ -0,0 +1,47 @@ +Autoraise: true +ColorDiffuse: + b: 0.0 + g: 0.366520882 + r: 0.7058823 +ContainedObjects: +- !include 'Bag Part 2 c2a55d/Deck 073778.yaml' +- !include 'Bag Part 2 c2a55d/Bag Doppelganger 3e2f9c.yaml' +- !include 'Bag Part 2 c2a55d/Deck 2 Agenda Deck 4c28a9.yaml' +- !include 'Bag Part 2 c2a55d/Deck Diary 4cd3ab.yaml' +- !include 'Bag Part 2 c2a55d/Card Dificulty 4db945.yaml' +- !include 'Bag Part 2 c2a55d/Deck 2 Act Deck 6200cb.yaml' +- !include 'Bag Part 2 c2a55d/Bag extra locations 6c8cf1.yaml' +- !include 'Bag Part 2 c2a55d/Deck Locations 851506.yaml' +- !include 'Bag Part 2 c2a55d/Custom_Tile The Dying Star a148f2.yaml' +- !include 'Bag Part 2 c2a55d/Bag Dream Journeys ba503d.yaml' +- !include 'Bag Part 2 c2a55d/Card Dificulty c95716.yaml' +- !include 'Bag Part 2 c2a55d/Bag Iridescent e382bb.yaml' +Description: The Dying Star +GMNotes: '' +GUID: c2a55d +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Bag Part 2 c2a55d.ttslua' +LuaScriptState: '{"ml":{"073778":{"lock":false,"pos":{"x":-9.1476,"y":1.6649,"z":0.3483},"rot":{"x":359.9204,"y":269.9829,"z":0.0169}},"3e2f9c":{"lock":false,"pos":{"x":-10.6769,"y":1.4126,"z":4.2867},"rot":{"x":359.9831,"y":359.9901,"z":359.92}},"4c28a9":{"lock":false,"pos":{"x":-2.7246,"y":1.6566,"z":0.3733},"rot":{"x":359.9832,"y":359.9856,"z":359.9197}},"4cd3ab":{"lock":false,"pos":{"x":1.6964,"y":1.6368,"z":14.2788},"rot":{"x":359.9552,"y":224.9981,"z":0.0687}},"4db945":{"lock":false,"pos":{"x":-3.9559,"y":1.6556,"z":-10.4412},"rot":{"x":359.9197,"y":269.9856,"z":0.0169}},"6200cb":{"lock":false,"pos":{"x":-2.6872,"y":1.6535,"z":-5.0419},"rot":{"x":359.9832,"y":-0.0056,"z":359.9197}},"6c8cf1":{"lock":false,"pos":{"x":-10.8516,"y":1.4138,"z":7.5199},"rot":{"x":359.9831,"y":0.0001,"z":359.92}},"851506":{"lock":false,"pos":{"x":-12.9354,"y":1.705,"z":0.1838},"rot":{"x":359.9201,"y":269.9855,"z":0.0169}},"a148f2":{"lock":false,"pos":{"x":-3.4667,"y":1.5821,"z":-14.2764},"rot":{"x":359.9197,"y":270.0001,"z":0.0168}},"ba503d":{"lock":false,"pos":{"x":-10.7099,"y":1.4157,"z":14.4419},"rot":{"x":359.9831,"y":359.9904,"z":359.92}},"c95716":{"lock":false,"pos":{"x":-50.9244,"y":1.7266,"z":8.1784},"rot":{"x":359.9201,"y":269.9856,"z":0.0169}},"e382bb":{"lock":false,"pos":{"x":-10.8115,"y":1.4147,"z":10.8723},"rot":{"x":359.9831,"y":0,"z":359.92}}}}' +MaterialIndex: -1 +MeshIndex: -1 +Name: Bag +Nickname: Part 2 +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 8.602303 + posY: 1.28382277 + posZ: -2.239803 + rotX: 0.07996411 + rotY: 89.9987259 + rotZ: 359.9831 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Dying Star bcfff6/Bag Part 2 c2a55d/Bag Doppelganger 3e2f9c.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Dying Star bcfff6/Bag Part 2 c2a55d/Bag Doppelganger 3e2f9c.yaml new file mode 100644 index 000000000..58d781476 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Dying Star bcfff6/Bag Part 2 c2a55d/Bag Doppelganger 3e2f9c.yaml @@ -0,0 +1,582 @@ +Autoraise: true +ColorDiffuse: + b: 0.0 + g: 0.0234856755 + r: 0.7019608 +ContainedObjects: +- Autoraise: true + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: + - Autoraise: true + CardID: 747 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '7': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359895085/A6A8BCF2B1073D90985D9596AEC119211461BCBF/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 554fdb + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.981788 + posY: 3.86618161 + posZ: -14.37867 + rotX: 5.75057832e-08 + rotY: 180.0 + rotZ: 1.955732e-06 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' + - Autoraise: true + CardID: 757 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '7': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359895085/A6A8BCF2B1073D90985D9596AEC119211461BCBF/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 6194a7 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.57171416 + posY: 3.03284836 + posZ: -14.37867 + rotX: 5.75057832e-08 + rotY: 180.0 + rotZ: 1.955732e-06 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' + - Autoraise: true + CardID: 756 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '7': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359895085/A6A8BCF2B1073D90985D9596AEC119211461BCBF/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: e3d822 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.916364 + posY: 3.11618161 + posZ: -14.37867 + rotX: 5.75057832e-08 + rotY: 180.0 + rotZ: 1.955732e-06 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' + - Autoraise: true + CardID: 755 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '7': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359895085/A6A8BCF2B1073D90985D9596AEC119211461BCBF/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 858e90 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.26101375 + posY: 3.199515 + posZ: -14.37867 + rotX: 5.75057832e-08 + rotY: 180.0 + rotZ: 1.955732e-06 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' + - Autoraise: true + CardID: 754 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '7': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359895085/A6A8BCF2B1073D90985D9596AEC119211461BCBF/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: ed290f + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -1.60566354 + posY: 3.28284836 + posZ: -14.37867 + rotX: 5.75057832e-08 + rotY: 180.0 + rotZ: 1.955732e-06 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' + - Autoraise: true + CardID: 753 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '7': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359895085/A6A8BCF2B1073D90985D9596AEC119211461BCBF/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: f21731 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -0.9503133 + posY: 3.36618161 + posZ: -14.37867 + rotX: 5.75057832e-08 + rotY: 180.0 + rotZ: 1.955732e-06 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' + - Autoraise: true + CardID: 752 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '7': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359895085/A6A8BCF2B1073D90985D9596AEC119211461BCBF/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: e34d90 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -0.294963121 + posY: 3.449515 + posZ: -14.37867 + rotX: 5.75057832e-08 + rotY: 180.0 + rotZ: 1.955732e-06 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' + - Autoraise: true + CardID: 751 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '7': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359895085/A6A8BCF2B1073D90985D9596AEC119211461BCBF/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: c20c78 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.3603871 + posY: 3.53284836 + posZ: -14.37867 + rotX: 5.75057832e-08 + rotY: 180.0 + rotZ: 1.955732e-06 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' + - Autoraise: true + CardID: 750 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '7': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359895085/A6A8BCF2B1073D90985D9596AEC119211461BCBF/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 6754a5 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 1.0157373 + posY: 3.61618161 + posZ: -14.37867 + rotX: 5.75057832e-08 + rotY: 180.0 + rotZ: 1.955732e-06 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' + - Autoraise: true + CardID: 749 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '7': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359895085/A6A8BCF2B1073D90985D9596AEC119211461BCBF/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 001386 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 1.6710875 + posY: 3.699515 + posZ: -14.37867 + rotX: 5.75057832e-08 + rotY: 180.0 + rotZ: 1.955732e-06 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' + - Autoraise: true + CardID: 748 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '7': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359895085/A6A8BCF2B1073D90985D9596AEC119211461BCBF/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: c689c7 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.32643771 + posY: 3.78284836 + posZ: -14.37867 + rotX: 5.75057832e-08 + rotY: 180.0 + rotZ: 1.955732e-06 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' + - Autoraise: true + CardID: 746 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '7': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359895085/A6A8BCF2B1073D90985D9596AEC119211461BCBF/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: c08261 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.63713813 + posY: 3.949515 + posZ: -14.37867 + rotX: 5.75057832e-08 + rotY: 180.0 + rotZ: 1.955732e-06 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' + CustomDeck: + '7': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359895085/A6A8BCF2B1073D90985D9596AEC119211461BCBF/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + DeckIDs: + - 747 + - 757 + - 756 + - 755 + - 754 + - 753 + - 752 + - 751 + - 750 + - 749 + - 748 + - 746 + Description: '' + GMNotes: '' + GUID: 32bcd1 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Deck + Nickname: Encounter Doppelganger + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 8.691902 + posY: 3.099228 + posZ: -0.849248 + rotX: 357.859741 + rotY: 270.014374 + rotZ: 179.094849 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +Description: '' +GMNotes: '' +GUID: 3e2f9c +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +MeshIndex: -1 +Name: Bag +Nickname: Doppelganger +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -10.6769 + posY: 1.41261721 + posZ: 4.286701 + rotX: 359.9831 + rotY: 359.990143 + rotZ: 359.92 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Dying Star bcfff6/Bag Part 2 c2a55d/Bag Dream Journeys ba503d.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Dying Star bcfff6/Bag Part 2 c2a55d/Bag Dream Journeys ba503d.yaml new file mode 100644 index 000000000..4844e65e1 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Dying Star bcfff6/Bag Part 2 c2a55d/Bag Dream Journeys ba503d.yaml @@ -0,0 +1,876 @@ +Autoraise: true +ColorDiffuse: + b: 0.7019608 + g: 0.0 + r: 0.190494925 +ContainedObjects: +- Autoraise: true + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: + - Autoraise: true + CardID: 118 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359895612/F7731D44F7F1C149F782E027A55E5A8770FD6BE2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 074082 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.26270819 + posY: 1.24295533 + posZ: -7.33981276 + rotX: -0.0006736604 + rotY: 179.999222 + rotZ: 179.997574 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' + - Autoraise: true + CardID: 117 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359895612/F7731D44F7F1C149F782E027A55E5A8770FD6BE2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: edbd65 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.23010969 + posY: 3.931676 + posZ: -14.3788872 + rotX: 0.0 + rotY: 180.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' + - Autoraise: true + CardID: 115 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359895612/F7731D44F7F1C149F782E027A55E5A8770FD6BE2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: f15dba + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.430759 + posY: 3.82641315 + posZ: -14.3788872 + rotX: 0.0 + rotY: 180.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' + - Autoraise: true + CardID: 116 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359895612/F7731D44F7F1C149F782E027A55E5A8770FD6BE2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 4c3999 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.83043432 + posY: 3.87904429 + posZ: -14.3788872 + rotX: 0.0 + rotY: 180.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' + - Autoraise: true + CardID: 114 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359895612/F7731D44F7F1C149F782E027A55E5A8770FD6BE2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 431ca3 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.03108358 + posY: 3.7737813 + posZ: -14.3788872 + rotX: 0.0 + rotY: 180.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' + - Autoraise: true + CardID: 113 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359895612/F7731D44F7F1C149F782E027A55E5A8770FD6BE2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: '782689' + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 1.63140821 + posY: 3.72115 + posZ: -14.3788872 + rotX: 0.0 + rotY: 180.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' + - Autoraise: true + CardID: 112 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359895612/F7731D44F7F1C149F782E027A55E5A8770FD6BE2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: ce4c5b + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 1.23173285 + posY: 3.6685183 + posZ: -14.3788872 + rotX: 0.0 + rotY: 180.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' + - Autoraise: true + CardID: 111 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359895612/F7731D44F7F1C149F782E027A55E5A8770FD6BE2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: d3ef55 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.832057357 + posY: 3.61588645 + posZ: -14.3788872 + rotX: 0.0 + rotY: 180.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' + - Autoraise: true + CardID: 109 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359895612/F7731D44F7F1C149F782E027A55E5A8770FD6BE2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: f033ed + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.0327062532 + posY: 3.51062369 + posZ: -14.3788872 + rotX: 0.0 + rotY: 180.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' + - Autoraise: true + CardID: 110 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359895612/F7731D44F7F1C149F782E027A55E5A8770FD6BE2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: bf2242 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.4323817 + posY: 3.56325483 + posZ: -14.3788872 + rotX: 0.0 + rotY: 180.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' + - Autoraise: true + CardID: 108 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359895612/F7731D44F7F1C149F782E027A55E5A8770FD6BE2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: dadfec + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -0.366969168 + posY: 3.45799184 + posZ: -14.3788872 + rotX: 0.0 + rotY: 180.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' + - Autoraise: true + CardID: 107 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359895612/F7731D44F7F1C149F782E027A55E5A8770FD6BE2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 90890d + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -0.7666446 + posY: 3.40536022 + posZ: -14.3788872 + rotX: 0.0 + rotY: 180.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' + - Autoraise: true + CardID: 106 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359895612/F7731D44F7F1C149F782E027A55E5A8770FD6BE2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: c8bb92 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -1.1663202 + posY: 3.35272884 + posZ: -14.3788872 + rotX: 0.0 + rotY: 180.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' + - Autoraise: true + CardID: 105 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359895612/F7731D44F7F1C149F782E027A55E5A8770FD6BE2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: '446432' + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -1.56599569 + posY: 3.300097 + posZ: -14.3788872 + rotX: 0.0 + rotY: 180.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' + - Autoraise: true + CardID: 104 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359895612/F7731D44F7F1C149F782E027A55E5A8770FD6BE2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: c318b5 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -1.96567106 + posY: 3.24746537 + posZ: -14.3788872 + rotX: 0.0 + rotY: 180.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' + - Autoraise: true + CardID: 103 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359895612/F7731D44F7F1C149F782E027A55E5A8770FD6BE2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 8b5d81 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.41263318 + posY: 1.23804891 + posZ: -6.96956635 + rotX: 359.4831 + rotY: 180.0078 + rotZ: 359.2544 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' + - Autoraise: true + CardID: 102 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359895612/F7731D44F7F1C149F782E027A55E5A8770FD6BE2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: '347794' + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -1.96720183 + posY: 1.35936856 + posZ: -7.080889 + rotX: 359.993958 + rotY: 180.0633 + rotZ: 353.595367 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' + - Autoraise: true + CardID: 101 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359895612/F7731D44F7F1C149F782E027A55E5A8770FD6BE2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: b641e9 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 1.34237313 + posY: 1.03117537 + posZ: -7.051819 + rotX: 0.0249904841 + rotY: 179.997 + rotZ: 0.009927208 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' + - Autoraise: true + CardID: 100 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359895612/F7731D44F7F1C149F782E027A55E5A8770FD6BE2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: '653499' + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 1.27085757 + posY: 1.1697 + posZ: -6.88347 + rotX: 359.951965 + rotY: 179.994583 + rotZ: 359.890442 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' + CustomDeck: + '1': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359895612/F7731D44F7F1C149F782E027A55E5A8770FD6BE2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + DeckIDs: + - 118 + - 117 + - 115 + - 116 + - 114 + - 113 + - 112 + - 111 + - 109 + - 110 + - 108 + - 107 + - 106 + - 105 + - 104 + - 103 + - 102 + - 101 + - 100 + Description: Dream Journeys + GMNotes: '' + GUID: 5d69a3 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Deck + Nickname: Encounter Dream Journeys + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 14.3534822 + posY: 3.11965275 + posZ: -10.5479546 + rotX: 2.51703882 + rotY: 270.030365 + rotZ: 181.197037 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +Description: '' +GMNotes: '' +GUID: ba503d +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +MeshIndex: -1 +Name: Bag +Nickname: Dream Journeys +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -10.709897 + posY: 1.41565371 + posZ: 14.4419041 + rotX: 359.9831 + rotY: 359.990479 + rotZ: 359.920044 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Dying Star bcfff6/Bag Part 2 c2a55d/Bag Iridescent e382bb.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Dying Star bcfff6/Bag Part 2 c2a55d/Bag Iridescent e382bb.yaml new file mode 100644 index 000000000..0acf0e704 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Dying Star bcfff6/Bag Part 2 c2a55d/Bag Iridescent e382bb.yaml @@ -0,0 +1,505 @@ +Autoraise: true +ColorDiffuse: + b: 0.0 + g: 0.696741641 + r: 0.7019608 +ContainedObjects: +- Autoraise: true + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: + - Autoraise: true + CardID: 119 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359895612/F7731D44F7F1C149F782E027A55E5A8770FD6BE2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 074082 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -6.70277929 + posY: 1.17521119 + posZ: -2.632899 + rotX: 0.000667684 + rotY: 180.000061 + rotZ: 180.000763 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' + - Autoraise: true + CardID: 120 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: 074082 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.09409654e-06 + posY: 1.04493368 + posZ: 8.31211651e-07 + rotX: 1.451921e-07 + rotY: 179.999924 + rotZ: 180.0001 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' + - Autoraise: true + CardID: 121 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: 074082 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.09409654e-06 + posY: 1.04493368 + posZ: 8.31211651e-07 + rotX: 1.451921e-07 + rotY: 179.999924 + rotZ: 180.0001 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' + - Autoraise: true + CardID: 122 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: 074082 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.09409654e-06 + posY: 1.04493368 + posZ: 8.31211651e-07 + rotX: 1.451921e-07 + rotY: 179.999924 + rotZ: 180.0001 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' + - Autoraise: true + CardID: 123 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: 074082 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.09409654e-06 + posY: 1.04493368 + posZ: 8.31211651e-07 + rotX: 1.451921e-07 + rotY: 179.999924 + rotZ: 180.0001 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' + - Autoraise: true + CardID: 124 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: 074082 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.09409654e-06 + posY: 1.04493368 + posZ: 8.31211651e-07 + rotX: 1.451921e-07 + rotY: 179.999924 + rotZ: 180.0001 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' + - Autoraise: true + CardID: 125 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: 074082 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.09409654e-06 + posY: 1.04493368 + posZ: 8.31211651e-07 + rotX: 1.451921e-07 + rotY: 179.999924 + rotZ: 180.0001 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' + - Autoraise: true + CardID: 126 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: 074082 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.09409654e-06 + posY: 1.04493368 + posZ: 8.31211651e-07 + rotX: 1.451921e-07 + rotY: 179.999924 + rotZ: 180.0001 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' + - Autoraise: true + CardID: 127 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: 074082 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.09409654e-06 + posY: 1.04493368 + posZ: 8.31211651e-07 + rotX: 1.451921e-07 + rotY: 179.999924 + rotZ: 180.0001 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' + - Autoraise: true + CardID: 128 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: 074082 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.09409654e-06 + posY: 1.04493368 + posZ: 8.31211651e-07 + rotX: 1.451921e-07 + rotY: 179.999924 + rotZ: 180.0001 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' + - Autoraise: true + CardID: 129 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: 074082 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.09409654e-06 + posY: 1.04493368 + posZ: 8.31211651e-07 + rotX: 1.451921e-07 + rotY: 179.999924 + rotZ: 180.0001 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' + - Autoraise: true + CardID: 130 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: 074082 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.09409654e-06 + posY: 1.04493368 + posZ: 8.31211651e-07 + rotX: 1.451921e-07 + rotY: 179.999924 + rotZ: 180.0001 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' + CustomDeck: + '1': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359895612/F7731D44F7F1C149F782E027A55E5A8770FD6BE2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + DeckIDs: + - 119 + - 120 + - 121 + - 122 + - 123 + - 124 + - 125 + - 126 + - 127 + - 128 + - 129 + - 130 + Description: Iridescent + GMNotes: '' + GUID: d6e1f4 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: DeckCustom + Nickname: Encounter Iridescent + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 8.520229 + posY: 3.084072 + posZ: -6.860988 + rotX: 2.26962376 + rotY: 269.993835 + rotZ: 181.95015 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +Description: '' +GMNotes: '' +GUID: e382bb +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +MeshIndex: -1 +Name: Bag +Nickname: Iridescent +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -10.8114986 + posY: 1.41474319 + posZ: 10.8723011 + rotX: 359.983124 + rotY: -4.183531e-05 + rotZ: 359.920044 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Dying Star bcfff6/Bag Part 2 c2a55d/Bag extra locations 6c8cf1.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Dying Star bcfff6/Bag Part 2 c2a55d/Bag extra locations 6c8cf1.yaml new file mode 100644 index 000000000..e9fde383d --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Dying Star bcfff6/Bag Part 2 c2a55d/Bag extra locations 6c8cf1.yaml @@ -0,0 +1,162 @@ +Autoraise: true +ColorDiffuse: + b: 0.0 + g: 0.366520882 + r: 0.7058823 +ContainedObjects: +- Autoraise: true + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: + - Autoraise: true + CardID: 153600 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359890444/201797044FDA7B3949DA73776119D97008AB5CEE/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359891415/86284BF9DBC59A436D6C8F16E59648C71A5EEAD2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 4db945 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Font of Visions + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -4.96651554 + posY: 1.03165245 + posZ: -2.02510118 + rotX: 0.00186277949 + rotY: 179.999054 + rotZ: 0.0007099037 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' + - Autoraise: true + CardID: 153601 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359890444/201797044FDA7B3949DA73776119D97008AB5CEE/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359891415/86284BF9DBC59A436D6C8F16E59648C71A5EEAD2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 399a78 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Vyrd Creche + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -4.71849966 + posY: 1.16998458 + posZ: -2.23245716 + rotX: 0.0191268846 + rotY: 179.9941 + rotZ: 0.0131608937 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' + CustomDeck: + '1536': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359890444/201797044FDA7B3949DA73776119D97008AB5CEE/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359891415/86284BF9DBC59A436D6C8F16E59648C71A5EEAD2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + DeckIDs: + - 153600 + - 153601 + Description: '' + GMNotes: '' + GUID: 9a76f9 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Deck + Nickname: extra Locations + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 12.7542944 + posY: 3.102511 + posZ: -4.63646555 + rotX: 1.29863489 + rotY: 270.004639 + rotZ: 0.997719765 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +Description: '' +GMNotes: '' +GUID: 6c8cf1 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +MeshIndex: -1 +Name: Bag +Nickname: extra locations +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -10.8515978 + posY: 1.41381216 + posZ: 7.51990032 + rotX: 359.983124 + rotY: 9.160797e-05 + rotZ: 359.92 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Dying Star bcfff6/Bag Part 2 c2a55d/Card Dificulty 4db945.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Dying Star bcfff6/Bag Part 2 c2a55d/Card Dificulty 4db945.yaml new file mode 100644 index 000000000..861b7770e --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Dying Star bcfff6/Bag Part 2 c2a55d/Card Dificulty 4db945.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 153715 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '1537': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359890444/201797044FDA7B3949DA73776119D97008AB5CEE/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359891415/86284BF9DBC59A436D6C8F16E59648C71A5EEAD2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: for part 2 +GMNotes: '' +GUID: 4db945 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Dificulty +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.95590067 + posY: 1.655648 + posZ: -10.4412041 + rotX: 359.919739 + rotY: 269.9856 + rotZ: 0.0168612469 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Dying Star bcfff6/Bag Part 2 c2a55d/Card Dificulty c95716.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Dying Star bcfff6/Bag Part 2 c2a55d/Card Dificulty c95716.yaml new file mode 100644 index 000000000..edcbd2a75 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Dying Star bcfff6/Bag Part 2 c2a55d/Card Dificulty c95716.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 153715 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '1537': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359890444/201797044FDA7B3949DA73776119D97008AB5CEE/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359891415/86284BF9DBC59A436D6C8F16E59648C71A5EEAD2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: for part 2 +GMNotes: '' +GUID: c95716 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Dificulty +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -50.9244 + posY: 1.72662532 + posZ: 8.178398 + rotX: 359.9201 + rotY: 269.9856 + rotZ: 0.0168965757 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag The Dying Star bcfff6/Bag Part 2 c2a55d/Custom_Tile The Dying Star a148f2.ttslua new file mode 100644 index 000000000..75a63c904 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Dying Star bcfff6/Bag Part 2 c2a55d/Custom_Tile The Dying Star a148f2.ttslua @@ -0,0 +1,21 @@ +name = 'The Dying Star' + +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 The Side Missions 791837/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 791837/Custom_Model_Bag The Dying Star bcfff6/Bag Part 2 c2a55d/Custom_Tile The Dying Star a148f2.yaml new file mode 100644 index 000000000..d76602d54 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Dying Star bcfff6/Bag Part 2 c2a55d/Custom_Tile The Dying Star a148f2.yaml @@ -0,0 +1,42 @@ +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 +GMNotes: '' +GUID: a148f2 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Tile The Dying Star a148f2.ttslua' +LuaScriptState: '' +Name: Custom_Tile +Nickname: The Dying Star +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.46670055 + posY: 1.58212233 + posZ: -14.2764034 + rotX: 359.919739 + rotY: 270.000031 + rotZ: 0.0168378949 + scaleX: 2.2 + scaleY: 1.0 + scaleZ: 2.2 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Dying Star bcfff6/Bag Part 2 c2a55d/Deck 073778.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Dying Star bcfff6/Bag Part 2 c2a55d/Deck 073778.yaml new file mode 100644 index 000000000..094fbf3d3 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Dying Star bcfff6/Bag Part 2 c2a55d/Deck 073778.yaml @@ -0,0 +1,258 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 153614 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1536': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359890444/201797044FDA7B3949DA73776119D97008AB5CEE/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359891415/86284BF9DBC59A436D6C8F16E59648C71A5EEAD2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 55a0ad + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -9.371471 + posY: 1.67121029 + posZ: 2.17446136 + rotX: 358.974731 + rotY: 270.0415 + rotZ: 359.988678 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 153613 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1536': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359890444/201797044FDA7B3949DA73776119D97008AB5CEE/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359891415/86284BF9DBC59A436D6C8F16E59648C71A5EEAD2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 30abe1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -8.607037 + posY: 1.77000856 + posZ: -0.8060038 + rotX: 359.9324 + rotY: 269.991852 + rotZ: 182.419174 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 153612 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1536': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359890444/201797044FDA7B3949DA73776119D97008AB5CEE/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359891415/86284BF9DBC59A436D6C8F16E59648C71A5EEAD2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 42a756 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -9.007715 + posY: 1.83149517 + posZ: -0.5017092 + rotX: 359.936432 + rotY: 269.998352 + rotZ: 179.976486 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 153611 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1536': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359890444/201797044FDA7B3949DA73776119D97008AB5CEE/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359891415/86284BF9DBC59A436D6C8F16E59648C71A5EEAD2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 658fcc + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -9.144828 + posY: 1.78084147 + posZ: -0.138693631 + rotX: 359.9194 + rotY: 270.0171 + rotZ: 182.693939 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 153610 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1536': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359890444/201797044FDA7B3949DA73776119D97008AB5CEE/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359891415/86284BF9DBC59A436D6C8F16E59648C71A5EEAD2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 68e63e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -8.965834 + posY: 1.6682837 + posZ: -0.5065376 + rotX: 359.908936 + rotY: 270.023682 + rotZ: 180.034286 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '1536': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359890444/201797044FDA7B3949DA73776119D97008AB5CEE/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359891415/86284BF9DBC59A436D6C8F16E59648C71A5EEAD2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 153614 +- 153613 +- 153612 +- 153611 +- 153610 +Description: '' +GMNotes: '' +GUID: 073778 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -9.1476 + posY: 1.66494143 + posZ: 0.348300159 + rotX: 359.920258 + rotY: 269.982819 + rotZ: 0.0169893 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag The Dying Star bcfff6/Bag Part 2 c2a55d/Deck 2 Act Deck 6200cb.yaml new file mode 100644 index 000000000..fef5a4059 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Dying Star bcfff6/Bag Part 2 c2a55d/Deck 2 Act Deck 6200cb.yaml @@ -0,0 +1,211 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 611 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '6': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359892882/2A68299B626702E44C443CCE96FC86F1CE8E5EA6/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359893438/EFE1AEB5B18EAF3D06DB1067C92BBFCD91E2022D/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: be83a3 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.71824551 + posY: 1.03068686 + posZ: -6.233809 + rotX: 0.047552824 + rotY: 270.001038 + rotZ: 0.0136282165 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 610 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '6': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359892882/2A68299B626702E44C443CCE96FC86F1CE8E5EA6/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359893438/EFE1AEB5B18EAF3D06DB1067C92BBFCD91E2022D/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: e1a8c8 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -0.4032397 + posY: 1.02594459 + posZ: -8.716595 + rotX: 0.005719329 + rotY: 269.998718 + rotZ: 0.00252902 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 609 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '6': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359892882/2A68299B626702E44C443CCE96FC86F1CE8E5EA6/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359893438/EFE1AEB5B18EAF3D06DB1067C92BBFCD91E2022D/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 76d37e + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.07470472 + posY: 1.16487479 + posZ: -8.489016 + rotX: 0.0101693785 + rotY: 270.0036 + rotZ: 0.0126234517 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 608 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '6': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359892882/2A68299B626702E44C443CCE96FC86F1CE8E5EA6/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359893438/EFE1AEB5B18EAF3D06DB1067C92BBFCD91E2022D/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: be83a3 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -0.405389249 + posY: 1.18756664 + posZ: -8.252638 + rotX: 0.00216353266 + rotY: 269.999451 + rotZ: 359.9915 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '6': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359892882/2A68299B626702E44C443CCE96FC86F1CE8E5EA6/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359893438/EFE1AEB5B18EAF3D06DB1067C92BBFCD91E2022D/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 611 +- 610 +- 609 +- 608 +Description: for part 2 +GMNotes: '' +GUID: 6200cb +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: 2 Act Deck +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.68719983 + posY: 1.65349472 + posZ: -5.041901 + rotX: 359.983154 + rotY: -0.005572657 + rotZ: 359.919739 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag The Dying Star bcfff6/Bag Part 2 c2a55d/Deck 2 Agenda Deck 4c28a9.yaml new file mode 100644 index 000000000..d1aa550a0 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Dying Star bcfff6/Bag Part 2 c2a55d/Deck 2 Agenda Deck 4c28a9.yaml @@ -0,0 +1,169 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 614 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '6': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359892882/2A68299B626702E44C443CCE96FC86F1CE8E5EA6/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359893438/EFE1AEB5B18EAF3D06DB1067C92BBFCD91E2022D/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 9095b8 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -7.63195372 + posY: 1.0257597 + posZ: -3.739854 + rotX: 0.0140659092 + rotY: 269.999939 + rotZ: 0.00425542751 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 613 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '6': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359892882/2A68299B626702E44C443CCE96FC86F1CE8E5EA6/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359893438/EFE1AEB5B18EAF3D06DB1067C92BBFCD91E2022D/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 4670c3 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -7.21131 + posY: 1.163633 + posZ: -3.99843764 + rotX: 359.993134 + rotY: 269.999329 + rotZ: 0.0297868084 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 612 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '6': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359892882/2A68299B626702E44C443CCE96FC86F1CE8E5EA6/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359893438/EFE1AEB5B18EAF3D06DB1067C92BBFCD91E2022D/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: be83a3 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -7.69465 + posY: 1.18757319 + posZ: -3.83406234 + rotX: -0.00053886394 + rotY: 270.0002 + rotZ: 0.005027478 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '6': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359892882/2A68299B626702E44C443CCE96FC86F1CE8E5EA6/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359893438/EFE1AEB5B18EAF3D06DB1067C92BBFCD91E2022D/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 614 +- 613 +- 612 +Description: for part 2 +GMNotes: '' +GUID: 4c28a9 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: 2 Agenda Deck +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.7245996 + posY: 1.65664113 + posZ: 0.373300642 + rotX: 359.983154 + rotY: 359.985626 + rotZ: 359.919739 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Dying Star bcfff6/Bag Part 2 c2a55d/Deck Diary 4cd3ab.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Dying Star bcfff6/Bag Part 2 c2a55d/Deck Diary 4cd3ab.yaml new file mode 100644 index 000000000..ac460e581 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Dying Star bcfff6/Bag Part 2 c2a55d/Deck Diary 4cd3ab.yaml @@ -0,0 +1,379 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 153909 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359890444/201797044FDA7B3949DA73776119D97008AB5CEE/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359891415/86284BF9DBC59A436D6C8F16E59648C71A5EEAD2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: f582e6 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Diary + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -0.6755531 + posY: 1.03156924 + posZ: -2.26924443 + rotX: 0.006424375 + rotY: 179.999847 + rotZ: 0.0019914615 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 153908 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359890444/201797044FDA7B3949DA73776119D97008AB5CEE/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359891415/86284BF9DBC59A436D6C8F16E59648C71A5EEAD2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: ddb034 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -0.799359858 + posY: 1.16986084 + posZ: -2.117776 + rotX: -0.00320724258 + rotY: 179.999924 + rotZ: 0.00295228 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 153907 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359890444/201797044FDA7B3949DA73776119D97008AB5CEE/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359891415/86284BF9DBC59A436D6C8F16E59648C71A5EEAD2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: fdc42b + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -0.342392385 + posY: 1.18745685 + posZ: -2.37649369 + rotX: 0.0006895949 + rotY: 179.960052 + rotZ: 0.0373638272 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 153906 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359890444/201797044FDA7B3949DA73776119D97008AB5CEE/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359891415/86284BF9DBC59A436D6C8F16E59648C71A5EEAD2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 18aadc + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -1.05308843 + posY: 1.17406714 + posZ: -2.24320269 + rotX: 0.00653555 + rotY: 180.013351 + rotZ: 0.0192284379 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 153905 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359890444/201797044FDA7B3949DA73776119D97008AB5CEE/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359891415/86284BF9DBC59A436D6C8F16E59648C71A5EEAD2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: f9900e + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -0.8148409 + posY: 1.17203021 + posZ: -1.92041445 + rotX: 0.001007066 + rotY: 179.996475 + rotZ: -0.002381149 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 153904 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359890444/201797044FDA7B3949DA73776119D97008AB5CEE/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359891415/86284BF9DBC59A436D6C8F16E59648C71A5EEAD2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: e56caf + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.11299786 + posY: 1.174355 + posZ: -2.24189973 + rotX: 359.981171 + rotY: 179.9983 + rotZ: 0.0260003339 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 153903 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359890444/201797044FDA7B3949DA73776119D97008AB5CEE/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359891415/86284BF9DBC59A436D6C8F16E59648C71A5EEAD2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: c9734f + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -0.0220587645 + posY: 1.17930758 + posZ: -2.3036437 + rotX: 0.009985382 + rotY: 180.002762 + rotZ: 0.01765782 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 153902 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359890444/201797044FDA7B3949DA73776119D97008AB5CEE/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359891415/86284BF9DBC59A436D6C8F16E59648C71A5EEAD2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 890e83 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -0.334400237 + posY: 1.18583882 + posZ: -2.48729014 + rotX: 0.000902406056 + rotY: 179.99765 + rotZ: 0.0104924943 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '1539': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359890444/201797044FDA7B3949DA73776119D97008AB5CEE/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359891415/86284BF9DBC59A436D6C8F16E59648C71A5EEAD2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 153909 +- 153908 +- 153907 +- 153906 +- 153905 +- 153904 +- 153903 +- 153902 +Description: '' +GMNotes: '' +GUID: 4cd3ab +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Diary +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 1.69640124 + posY: 1.63675427 + posZ: 14.2788029 + rotX: 359.95517 + rotY: 224.998062 + rotZ: 0.0686539039 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Dying Star bcfff6/Bag Part 2 c2a55d/Deck Locations 851506.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Dying Star bcfff6/Bag Part 2 c2a55d/Deck Locations 851506.yaml new file mode 100644 index 000000000..b802e4996 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Dying Star bcfff6/Bag Part 2 c2a55d/Deck Locations 851506.yaml @@ -0,0 +1,883 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 153830 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359890444/201797044FDA7B3949DA73776119D97008AB5CEE/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359891415/86284BF9DBC59A436D6C8F16E59648C71A5EEAD2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 55c178 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Black river + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 1.30589068 + posY: 1.03132665 + posZ: -2.08339381 + rotX: 0.00406454876 + rotY: 180.000122 + rotZ: 0.00104460365 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 153835 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359890444/201797044FDA7B3949DA73776119D97008AB5CEE/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359891415/86284BF9DBC59A436D6C8F16E59648C71A5EEAD2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 7190fd + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Visionary Perch + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 1.328194 + posY: 1.16945827 + posZ: -2.44078016 + rotX: 0.005419081 + rotY: 179.98201 + rotZ: 0.008217378 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 153834 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359890444/201797044FDA7B3949DA73776119D97008AB5CEE/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359891415/86284BF9DBC59A436D6C8F16E59648C71A5EEAD2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: db73e3 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Sculpture + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 1.31534636 + posY: 1.18762314 + posZ: -2.515704 + rotX: -0.00548562733 + rotY: 179.989014 + rotZ: -0.00220765127 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 153833 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359890444/201797044FDA7B3949DA73776119D97008AB5CEE/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359891415/86284BF9DBC59A436D6C8F16E59648C71A5EEAD2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 3bd848 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Mines + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 1.42246842 + posY: 1.17398286 + posZ: -2.08094454 + rotX: 0.00243154913 + rotY: 179.999954 + rotZ: -0.00193031132 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 153832 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359890444/201797044FDA7B3949DA73776119D97008AB5CEE/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359891415/86284BF9DBC59A436D6C8F16E59648C71A5EEAD2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 9ac375 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Spiralling Pathways + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 1.41975737 + posY: 1.1719768 + posZ: -2.07836223 + rotX: 0.00249676546 + rotY: 180.026672 + rotZ: 0.00412961747 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 153831 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359890444/201797044FDA7B3949DA73776119D97008AB5CEE/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359891415/86284BF9DBC59A436D6C8F16E59648C71A5EEAD2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 406fba + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Mind in the Hive + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 1.12630451 + posY: 1.17469966 + posZ: -2.28316474 + rotX: 0.00125970587 + rotY: 180.0 + rotZ: -0.000632959534 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 153829 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359890444/201797044FDA7B3949DA73776119D97008AB5CEE/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359891415/86284BF9DBC59A436D6C8F16E59648C71A5EEAD2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: b47a93 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Cyclopean Bridge + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 1.86072755 + posY: 1.17898345 + posZ: -2.06403947 + rotX: 359.981934 + rotY: 180.0002 + rotZ: 0.0472246781 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 153828 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359890444/201797044FDA7B3949DA73776119D97008AB5CEE/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359891415/86284BF9DBC59A436D6C8F16E59648C71A5EEAD2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: f559fe + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Breeding Grounds + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 1.64683092 + posY: 1.18582547 + posZ: -2.14454651 + rotX: 0.000187715443 + rotY: 180.000015 + rotZ: 0.0118759228 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 153827 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359890444/201797044FDA7B3949DA73776119D97008AB5CEE/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359891415/86284BF9DBC59A436D6C8F16E59648C71A5EEAD2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: a59517 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Trecheraus Archive + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 1.69248652 + posY: 1.14330328 + posZ: -1.95589674 + rotX: -0.00123784028 + rotY: 180.00087 + rotZ: 0.00603586249 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 153826 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359890444/201797044FDA7B3949DA73776119D97008AB5CEE/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359891415/86284BF9DBC59A436D6C8F16E59648C71A5EEAD2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: b95b0c + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Barren Islet + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 1.2683239 + posY: 1.15314209 + posZ: -2.35888362 + rotX: 0.00169382209 + rotY: 179.998474 + rotZ: -0.000307724549 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 153825 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359890444/201797044FDA7B3949DA73776119D97008AB5CEE/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359891415/86284BF9DBC59A436D6C8F16E59648C71A5EEAD2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: f368c2 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Wide Open Space + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.9575851 + posY: 1.16275334 + posZ: -2.102207 + rotX: 0.00167910079 + rotY: 179.991257 + rotZ: 0.00150724291 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 153824 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359890444/201797044FDA7B3949DA73776119D97008AB5CEE/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359891415/86284BF9DBC59A436D6C8F16E59648C71A5EEAD2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 644d5e + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Path of Mirrors + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 1.09727919 + posY: 1.17239547 + posZ: -2.364494 + rotX: 0.00016756948 + rotY: 180.0003 + rotZ: -0.002740575 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 153823 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359890444/201797044FDA7B3949DA73776119D97008AB5CEE/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359891415/86284BF9DBC59A436D6C8F16E59648C71A5EEAD2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 470f51 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: the Mouth of Lunacy + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 1.167325 + posY: 1.18212855 + posZ: -2.105521 + rotX: 0.000929157832 + rotY: 179.9854 + rotZ: -0.000321325264 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 153822 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359890444/201797044FDA7B3949DA73776119D97008AB5CEE/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359891415/86284BF9DBC59A436D6C8F16E59648C71A5EEAD2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: b4850c + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Bone Pit + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 1.28698611 + posY: 1.19167614 + posZ: -2.12759471 + rotX: -0.00035365345 + rotY: 180.000992 + rotZ: -0.000829623954 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 153821 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359890444/201797044FDA7B3949DA73776119D97008AB5CEE/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359891415/86284BF9DBC59A436D6C8F16E59648C71A5EEAD2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: db4a07 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: the Howling Winds + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 1.5526588 + posY: 1.201423 + posZ: -1.968514 + rotX: 0.002060576 + rotY: 179.999924 + rotZ: 0.002882987 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 153820 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359890444/201797044FDA7B3949DA73776119D97008AB5CEE/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359891415/86284BF9DBC59A436D6C8F16E59648C71A5EEAD2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: a5c84b + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: the Enraptured Face + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 1.10259223 + posY: 1.2111094 + posZ: -2.24366236 + rotX: 0.000826177362 + rotY: 180.000275 + rotZ: 0.00126016152 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 153819 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359890444/201797044FDA7B3949DA73776119D97008AB5CEE/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359891415/86284BF9DBC59A436D6C8F16E59648C71A5EEAD2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 5c6106 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dark Landscape + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 1.574566 + posY: 1.2207377 + posZ: -1.88476622 + rotX: 0.00163414178 + rotY: 180.006668 + rotZ: 0.00291838031 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 153818 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359890444/201797044FDA7B3949DA73776119D97008AB5CEE/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359891415/86284BF9DBC59A436D6C8F16E59648C71A5EEAD2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 987eca + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dark Glade + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 1.34664047 + posY: 1.23042154 + posZ: -1.99916315 + rotX: 0.00113625883 + rotY: 179.986572 + rotZ: 0.00104033446 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 153817 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359890444/201797044FDA7B3949DA73776119D97008AB5CEE/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359891415/86284BF9DBC59A436D6C8F16E59648C71A5EEAD2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: cc528c + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Shard + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 1.42690992 + posY: 1.24016333 + posZ: -2.22878528 + rotX: 0.001191595 + rotY: 179.9886 + rotZ: 0.0046961084 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 153816 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359890444/201797044FDA7B3949DA73776119D97008AB5CEE/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359891415/86284BF9DBC59A436D6C8F16E59648C71A5EEAD2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: d0c5fa + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Black Desert + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 1.31712651 + posY: 1.24974072 + posZ: -2.15489078 + rotX: 0.00107555592 + rotY: 180.000229 + rotZ: 0.0009050605 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '1538': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359890444/201797044FDA7B3949DA73776119D97008AB5CEE/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359891415/86284BF9DBC59A436D6C8F16E59648C71A5EEAD2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 153830 +- 153835 +- 153834 +- 153833 +- 153832 +- 153831 +- 153829 +- 153828 +- 153827 +- 153826 +- 153825 +- 153824 +- 153823 +- 153822 +- 153821 +- 153820 +- 153819 +- 153818 +- 153817 +- 153816 +Description: '' +GMNotes: '' +GUID: '851506' +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Locations +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -12.9353991 + posY: 1.70503175 + posZ: 0.183799177 + rotX: 359.9201 + rotY: 269.985474 + rotZ: 0.01689925 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Dying Star bcfff6/Bag Tokens 9ae382.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Dying Star bcfff6/Bag Tokens 9ae382.yaml new file mode 100644 index 000000000..4229c2898 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Dying Star bcfff6/Bag Tokens 9ae382.yaml @@ -0,0 +1,44 @@ +Autoraise: true +ColorDiffuse: + b: 0.881754756 + g: 0.9096991 + r: 0.93554014 +ContainedObjects: +- !include 'Bag Tokens 9ae382/Custom_Token Knocked Out de5014.yaml' +- !include 'Bag Tokens 9ae382/Custom_Token patrol token d43169.yaml' +- !include 'Bag Tokens 9ae382/Custom_Token Patrol token 7069f1.yaml' +- !include 'Bag Tokens 9ae382/Custom_Tile 1bdfa5.yaml' +- !include 'Bag Tokens 9ae382/Custom_Token Vigilance token 13c6ab.yaml' +- !include 'Bag Tokens 9ae382/Custom_Tile e54bfb.yaml' +- !include 'Bag Tokens 9ae382/Custom_Tile 47eb0e.yaml' +- !include 'Bag Tokens 9ae382/Custom_Tile c71665.yaml' +- !include 'Bag Tokens 9ae382/Custom_Tile d29153.yaml' +Description: '' +GMNotes: '' +GUID: 9ae382 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +MeshIndex: -1 +Name: Bag +Nickname: Tokens +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.3514998 + posY: 1.40518141 + posZ: 13.8180027 + rotX: 359.983154 + rotY: -5.01171671e-05 + rotZ: 359.919678 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Dying Star bcfff6/Bag Tokens 9ae382/Custom_Tile 1bdfa5.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Dying Star bcfff6/Bag Tokens 9ae382/Custom_Tile 1bdfa5.yaml new file mode 100644 index 000000000..082342f30 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Dying Star bcfff6/Bag Tokens 9ae382/Custom_Tile 1bdfa5.yaml @@ -0,0 +1,42 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.2 + Type: 0 + ImageScalar: 1.0 + ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/778493732359900188/4176483DC0DC9A4BFF6D5CED743A1EF795E77D63/ + ImageURL: http://cloud-3.steamusercontent.com/ugc/778493732359899830/1AFBEE602BBFEC1D37D2D8D65ED1E32C1F515E5E/ + WidthScale: 0.0 +Description: '' +GMNotes: '' +GUID: 1bdfa5 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Tile +Nickname: '' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 17.92262 + posY: 3.643355 + posZ: 26.0739479 + rotX: 359.920135 + rotY: 269.996857 + rotZ: 180.016876 + scaleX: 0.901293039 + scaleY: 1.0 + scaleZ: 0.901293039 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Dying Star bcfff6/Bag Tokens 9ae382/Custom_Tile 47eb0e.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Dying Star bcfff6/Bag Tokens 9ae382/Custom_Tile 47eb0e.yaml new file mode 100644 index 000000000..df94460bf --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Dying Star bcfff6/Bag Tokens 9ae382/Custom_Tile 47eb0e.yaml @@ -0,0 +1,42 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.2 + Type: 2 + ImageScalar: 1.0 + ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/778493732359898138/CFF09DA209AE9D16249CBEC74636EB2E07E56789/ + ImageURL: http://cloud-3.steamusercontent.com/ugc/778493732359899418/49F8DF2DE1A4E835D5593EFBCACA767D4003771E/ + WidthScale: 0.0 +Description: '' +GMNotes: '' +GUID: 47eb0e +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Tile +Nickname: '' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 17.76369 + posY: 3.64455462 + posZ: 29.3972549 + rotX: 359.9201 + rotY: 270.000549 + rotZ: 180.016876 + scaleX: 0.92564106 + scaleY: 1.0 + scaleZ: 0.92564106 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Dying Star bcfff6/Bag Tokens 9ae382/Custom_Tile c71665.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Dying Star bcfff6/Bag Tokens 9ae382/Custom_Tile c71665.yaml new file mode 100644 index 000000000..f44172deb --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Dying Star bcfff6/Bag Tokens 9ae382/Custom_Tile c71665.yaml @@ -0,0 +1,42 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.2 + Type: 2 + ImageScalar: 1.0 + ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/778493732359898991/091F51CCB4EF632F6CAF744345FE71F798479C6B/ + ImageURL: http://cloud-3.steamusercontent.com/ugc/778493732359899418/49F8DF2DE1A4E835D5593EFBCACA767D4003771E/ + WidthScale: 0.0 +Description: '' +GMNotes: '' +GUID: c71665 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Tile +Nickname: '' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 14.5989885 + posY: 3.64898062 + posZ: 29.445406 + rotX: 359.9201 + rotY: 270.001465 + rotZ: 180.016876 + scaleX: 0.92564106 + scaleY: 1.0 + scaleZ: 0.92564106 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Dying Star bcfff6/Bag Tokens 9ae382/Custom_Tile d29153.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Dying Star bcfff6/Bag Tokens 9ae382/Custom_Tile d29153.yaml new file mode 100644 index 000000000..bd09d7c6c --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Dying Star bcfff6/Bag Tokens 9ae382/Custom_Tile d29153.yaml @@ -0,0 +1,42 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.2 + Type: 2 + ImageScalar: 1.0 + ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/778493732359898585/99039B6DECA3F6476B1558406971B6AC8B6A5E57/ + ImageURL: http://cloud-3.steamusercontent.com/ugc/778493732359899418/49F8DF2DE1A4E835D5593EFBCACA767D4003771E/ + WidthScale: 0.0 +Description: '' +GMNotes: '' +GUID: d29153 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Tile +Nickname: '' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 14.672719 + posY: 3.6788187 + posZ: 32.0175972 + rotX: 358.635223 + rotY: 270.0591 + rotZ: 175.305511 + scaleX: 0.92564106 + scaleY: 1.0 + scaleZ: 0.92564106 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Dying Star bcfff6/Bag Tokens 9ae382/Custom_Tile e54bfb.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Dying Star bcfff6/Bag Tokens 9ae382/Custom_Tile e54bfb.yaml new file mode 100644 index 000000000..f1e81f5df --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Dying Star bcfff6/Bag Tokens 9ae382/Custom_Tile e54bfb.yaml @@ -0,0 +1,42 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.2 + Type: 2 + ImageScalar: 1.0 + ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/778493732359897686/06301A7B4ACB813F7B399C5ED3A987906FEA5E40/ + ImageURL: http://cloud-3.steamusercontent.com/ugc/778493732359899418/49F8DF2DE1A4E835D5593EFBCACA767D4003771E/ + WidthScale: 0.0 +Description: '' +GMNotes: '' +GUID: e54bfb +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Tile +Nickname: '' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 17.820467 + posY: 3.64518023 + posZ: 31.7912083 + rotX: 359.9201 + rotY: 270.000427 + rotZ: 180.016876 + scaleX: 0.92564106 + scaleY: 1.0 + scaleZ: 0.92564106 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Dying Star bcfff6/Bag Tokens 9ae382/Custom_Token Knocked Out de5014.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Dying Star bcfff6/Bag Tokens 9ae382/Custom_Token Knocked Out de5014.yaml new file mode 100644 index 000000000..a902c52f1 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Dying Star bcfff6/Bag Tokens 9ae382/Custom_Token Knocked Out de5014.yaml @@ -0,0 +1,41 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +CustomImage: + CustomToken: + MergeDistancePixels: 15.0 + Stackable: false + Thickness: 0.2 + ImageScalar: 1.0 + ImageSecondaryURL: '' + ImageURL: http://cloud-3.steamusercontent.com/ugc/778493732359896483/E4514FE5BD4F9C84E6F759040B18A4C80BD5A17E/ + WidthScale: 0.0 +Description: '' +GMNotes: '' +GUID: de5014 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Token +Nickname: Knocked Out +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 12.3008661 + posY: 3.54953957 + posZ: 20.4641228 + rotX: 359.920135 + rotY: 269.999939 + rotZ: 0.0168698449 + scaleX: 0.8062451 + scaleY: 1.0 + scaleZ: 0.8062451 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Dying Star bcfff6/Bag Tokens 9ae382/Custom_Token Patrol token 7069f1.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Dying Star bcfff6/Bag Tokens 9ae382/Custom_Token Patrol token 7069f1.yaml new file mode 100644 index 000000000..44ba1935b --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Dying Star bcfff6/Bag Tokens 9ae382/Custom_Token Patrol token 7069f1.yaml @@ -0,0 +1,41 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +CustomImage: + CustomToken: + MergeDistancePixels: 15.0 + Stackable: false + Thickness: 0.2 + ImageScalar: 1.0 + ImageSecondaryURL: '' + ImageURL: http://cloud-3.steamusercontent.com/ugc/778493732359897302/B636316523AB9CBDCA793132B00450C59741CD03/ + WidthScale: 0.0 +Description: '' +GMNotes: '' +GUID: 7069f1 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Token +Nickname: Patrol token +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 18.2413254 + posY: 3.541864 + posZ: 22.5223522 + rotX: 359.920135 + rotY: 270.000519 + rotZ: 180.016876 + scaleX: 0.783099234 + scaleY: 1.0 + scaleZ: 0.783099234 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Dying Star bcfff6/Bag Tokens 9ae382/Custom_Token Vigilance token 13c6ab.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Dying Star bcfff6/Bag Tokens 9ae382/Custom_Token Vigilance token 13c6ab.yaml new file mode 100644 index 000000000..e77e72884 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Dying Star bcfff6/Bag Tokens 9ae382/Custom_Token Vigilance token 13c6ab.yaml @@ -0,0 +1,41 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +CustomImage: + CustomToken: + MergeDistancePixels: 15.0 + Stackable: false + Thickness: 0.2 + ImageScalar: 1.0 + ImageSecondaryURL: '' + ImageURL: http://cloud-3.steamusercontent.com/ugc/778493732359900944/1A5AC6F7E9ABD70C89A4C2C8D75ECDAE6B1C8E09/ + WidthScale: 0.0 +Description: '' +GMNotes: '' +GUID: 13c6ab +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Token +Nickname: Vigilance token +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 14.6103029 + posY: 3.54803562 + posZ: 26.2904644 + rotX: 359.9201 + rotY: 269.996674 + rotZ: 0.0168707184 + scaleX: 0.434757948 + scaleY: 1.0 + scaleZ: 0.434757948 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Dying Star bcfff6/Bag Tokens 9ae382/Custom_Token patrol token d43169.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Dying Star bcfff6/Bag Tokens 9ae382/Custom_Token patrol token d43169.yaml new file mode 100644 index 000000000..51fedd9da --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Dying Star bcfff6/Bag Tokens 9ae382/Custom_Token patrol token d43169.yaml @@ -0,0 +1,41 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +CustomImage: + CustomToken: + MergeDistancePixels: 15.0 + Stackable: false + Thickness: 0.2 + ImageScalar: 1.0 + ImageSecondaryURL: '' + ImageURL: http://cloud-3.steamusercontent.com/ugc/778493732359896911/D18E11BFEDE67B4E850C6E1DE8BC093A3DD7635A/ + WidthScale: 0.0 +Description: '' +GMNotes: '' +GUID: d43169 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Token +Nickname: patrol token +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 17.8359566 + posY: 3.5411377 + posZ: 18.1364288 + rotX: 359.920135 + rotY: 270.000153 + rotZ: 180.016876 + scaleX: 0.7375908 + scaleY: 1.0 + scaleZ: 0.7375908 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Festival 29d22a.ttslua b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Festival 29d22a.ttslua new file mode 100644 index 000000000..46067f58e --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Festival 29d22a.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.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.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 791837/Custom_Model_Bag The Festival 29d22a.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Festival 29d22a.yaml new file mode 100644 index 000000000..46a740896 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Festival 29d22a.yaml @@ -0,0 +1,95 @@ +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 Festival 29d22a/Custom_Model_Bag Set-aside a45247.yaml' +- !include 'Custom_Model_Bag The Festival 29d22a/Deck Encounter Deck 3d2a1a.yaml' +- !include 'Custom_Model_Bag The Festival 29d22a/Deck Agenda Deck ce35ae.yaml' +- !include 'Custom_Model_Bag The Festival 29d22a/Deck Act Deck 8ce4d8.yaml' +- !include 'Custom_Model_Bag The Festival 29d22a/Card Scenario 9e71b4.yaml' +- !include 'Custom_Model_Bag The Festival 29d22a/Custom_Tile The Festival 4b81f6.yaml' +- !include 'Custom_Model_Bag The Festival 29d22a/Deck Cloaked Figures 27bf6a.yaml' +- !include 'Custom_Model_Bag The Festival 29d22a/Card The Strange High House in the + Mist d0c475.yaml' +- !include 'Custom_Model_Bag The Festival 29d22a/Custom_Tile 4591d4.yaml' +- !include 'Custom_Model_Bag The Festival 29d22a/Card Burying Ground f0d16a.yaml' +- !include 'Custom_Model_Bag The Festival 29d22a/Custom_Tile 28272f.yaml' +- !include 'Custom_Model_Bag The Festival 29d22a/Card Orange Point 6bc393.yaml' +- !include 'Custom_Model_Bag The Festival 29d22a/Deck 3eef2e.yaml' +- !include 'Custom_Model_Bag The Festival 29d22a/Card The White Church b5096d.yaml' +- !include 'Custom_Model_Bag The Festival 29d22a/Custom_Tile da1f25.yaml' +- !include 'Custom_Model_Bag The Festival 29d22a/Card Central Hill 259b7b.yaml' +- !include 'Custom_Model_Bag The Festival 29d22a/Custom_Tile db49f3.yaml' +- !include 'Custom_Model_Bag The Festival 29d22a/Card Circle Court 7bdc6b.yaml' +- !include 'Custom_Model_Bag The Festival 29d22a/Custom_Tile c2da92.yaml' +- !include 'Custom_Model_Bag The Festival 29d22a/Card Market Square 50ffd3.yaml' +- !include 'Custom_Model_Bag The Festival 29d22a/Custom_Tile f591c7.yaml' +- !include 'Custom_Model_Bag The Festival 29d22a/Custom_Tile daa95d.yaml' +- !include 'Custom_Model_Bag The Festival 29d22a/Custom_Tile f108e3.yaml' +- !include 'Custom_Model_Bag The Festival 29d22a/Custom_Tile 68ba2e.yaml' +- !include 'Custom_Model_Bag The Festival 29d22a/Custom_Tile a19bdb.yaml' +- !include 'Custom_Model_Bag The Festival 29d22a/Card Back Street d7fc4c.yaml' +- !include 'Custom_Model_Bag The Festival 29d22a/Custom_Tile c41b7b.yaml' +- !include 'Custom_Model_Bag The Festival 29d22a/Card Ship Street 299ea1.yaml' +- !include 'Custom_Model_Bag The Festival 29d22a/Custom_Tile 7b9e37.yaml' +- !include 'Custom_Model_Bag The Festival 29d22a/Card Water Street 1e3988.yaml' +- !include 'Custom_Model_Bag The Festival 29d22a/Custom_Tile 447fd2.yaml' +- !include 'Custom_Model_Bag The Festival 29d22a/Custom_Tile 7234af.yaml' +- !include 'Custom_Model_Bag The Festival 29d22a/Custom_Tile 2c792a.yaml' +- !include 'Custom_Model_Bag The Festival 29d22a/Card Green Lane be3ac9.yaml' +- !include 'Custom_Model_Bag The Festival 29d22a/Card Scenario 7d6343.yaml' +CustomMesh: + CastShadows: true + ColliderURL: '' + Convex: true + DiffuseURL: http://cloud-3.steamusercontent.com/ugc/798737729142936385/DCE942F9A1172E9C55A36E4593F5CDC71D9BC3AD/ + MaterialIndex: 3 + MeshURL: https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj + NormalURL: '' + TypeIndex: 6 +Description: '' +GMNotes: '' +GUID: 29d22a +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Model_Bag The Festival 29d22a.ttslua' +LuaScriptState: '{"ml":{"1e3988":{"lock":false,"pos":{"x":-30.2243,"y":1.6959,"z":-7.7},"rot":{"x":359.9201,"y":270.0014,"z":180.0169}},"259b7b":{"lock":false,"pos":{"x":-20.746,"y":1.685,"z":-0.0446},"rot":{"x":359.9201,"y":270.0016,"z":180.0169}},"27bf6a":{"lock":false,"pos":{"x":-10.5675,"y":1.6537,"z":13.5759},"rot":{"x":359.9201,"y":270.0211,"z":0.0168}},"28272f":{"lock":false,"pos":{"x":-27.0195,"y":1.6235,"z":14.5832},"rot":{"x":359.9201,"y":270.0063,"z":0.0169}},"299ea1":{"lock":false,"pos":{"x":-30.223,"y":1.6982,"z":-0.0301},"rot":{"x":359.9201,"y":270.024,"z":180.0168}},"2c792a":{"lock":false,"pos":{"x":-34.0171,"y":1.6278,"z":-3.8093},"rot":{"x":0.0684,"y":134.9883,"z":0.0445}},"3d2a1a":{"lock":false,"pos":{"x":-3.9275,"y":1.7504,"z":5.7571},"rot":{"x":359.9197,"y":270.0001,"z":180.0168}},"3eef2e":{"lock":false,"pos":{"x":-9.6732,"y":1.6648,"z":0.0646},"rot":{"x":359.9201,"y":269.9858,"z":0.0169}},"447fd2":{"lock":false,"pos":{"x":-34.1668,"y":1.6303,"z":3.8209},"rot":{"x":0.0253,"y":29.9808,"z":359.9224}},"4591d4":{"lock":false,"pos":{"x":-20.7985,"y":1.615,"z":15.1153},"rot":{"x":359.9201,"y":270.0109,"z":0.0169}},"4b81f6":{"lock":false,"pos":{"x":-3.8815,"y":1.5826,"z":-14.612},"rot":{"x":359.9197,"y":270.0021,"z":0.0168}},"50ffd3":{"lock":false,"pos":{"x":-23.6765,"y":1.6902,"z":3.8601},"rot":{"x":359.9201,"y":270.0026,"z":180.0169}},"68ba2e":{"lock":false,"pos":{"x":-26.8859,"y":1.6172,"z":-6.0034},"rot":{"x":359.9554,"y":224.9895,"z":0.0684}},"6bc393":{"lock":false,"pos":{"x":-30.2243,"y":1.7027,"z":15.19},"rot":{"x":359.9201,"y":270.0014,"z":180.0169}},"7234af":{"lock":false,"pos":{"x":-33.4411,"y":1.6281,"z":-0.1151},"rot":{"x":359.9201,"y":270.0092,"z":0.0169}},"7b9e37":{"lock":false,"pos":{"x":-30.2243,"y":1.6225,"z":-3.83},"rot":{"x":0.0169,"y":179.9999,"z":0.0799}},"7bdc6b":{"lock":false,"pos":{"x":-23.6765,"y":1.6879,"z":-3.83},"rot":{"x":359.9201,"y":270.0012,"z":180.0169}},"7d6343":{"lock":false,"pos":{"x":-50.9244,"y":1.7266,"z":8.1784},"rot":{"x":359.9201,"y":269.9982,"z":0.0169}},"8ce4d8":{"lock":false,"pos":{"x":-2.6885,"y":1.6535,"z":-5.0485},"rot":{"x":0.0168,"y":179.9982,"z":0.0803}},"9e71b4":{"lock":false,"pos":{"x":-3.956,"y":1.6556,"z":-10.4402},"rot":{"x":359.9197,"y":269.9982,"z":0.0168}},"a19bdb":{"lock":false,"pos":{"x":-30.2243,"y":1.627,"z":11.46},"rot":{"x":0.0169,"y":180.0077,"z":0.0799}},"a45247":{"lock":false,"pos":{"x":1.697,"y":1.5583,"z":14.2784},"rot":{"x":359.9551,"y":224.998,"z":0.0687}},"b5096d":{"lock":false,"pos":{"x":-13.5542,"y":1.6749,"z":-0.1164},"rot":{"x":359.9201,"y":270.0067,"z":180.0168}},"be3ac9":{"lock":false,"pos":{"x":-36.7732,"y":1.7073,"z":-0.03},"rot":{"x":359.9201,"y":269.9733,"z":180.0169}},"c2da92":{"lock":false,"pos":{"x":-20.9563,"y":1.61,"z":-2.6211},"rot":{"x":0.0253,"y":29.9999,"z":359.9224}},"c41b7b":{"lock":false,"pos":{"x":-30.2243,"y":1.6248,"z":3.86},"rot":{"x":359.9831,"y":359.9757,"z":359.9201}},"ce35ae":{"lock":false,"pos":{"x":-2.7247,"y":1.6551,"z":0.3733},"rot":{"x":0.0168,"y":180.0006,"z":0.0803}},"d0c475":{"lock":false,"pos":{"x":-17.12,"y":1.6844,"z":15.19},"rot":{"x":359.9201,"y":270.0072,"z":180.0168}},"d7fc4c":{"lock":false,"pos":{"x":-30.2198,"y":1.7004,"z":7.5731},"rot":{"x":359.9201,"y":270.0274,"z":180.0168}},"da1f25":{"lock":false,"pos":{"x":-17.1199,"y":1.6054,"z":-0.03},"rot":{"x":359.9201,"y":270.0272,"z":0.0169}},"daa95d":{"lock":false,"pos":{"x":-27.1008,"y":1.6199,"z":2.1469},"rot":{"x":359.9554,"y":224.9999,"z":0.0684}},"db49f3":{"lock":false,"pos":{"x":-21.1809,"y":1.6117,"z":2.132},"rot":{"x":0.0684,"y":134.9832,"z":0.0445}},"f0d16a":{"lock":false,"pos":{"x":-23.6765,"y":1.6935,"z":15.19},"rot":{"x":359.9201,"y":270.011,"z":180.0168}},"f108e3":{"lock":false,"pos":{"x":-27.3214,"y":1.6189,"z":-2.4573},"rot":{"x":359.9316,"y":315.0002,"z":359.9554}},"f591c7":{"lock":false,"pos":{"x":-26.9568,"y":1.6207,"z":5.6374},"rot":{"x":0.0684,"y":134.9882,"z":0.0445}}}}' +MaterialIndex: -1 +MeshIndex: -1 +Name: Custom_Model_Bag +Nickname: The Festival +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 12.8444109 + posY: 4.37142229 + posZ: -96.2696838 + rotX: 0.02080851 + rotY: 269.999969 + rotZ: 0.0167711433 + scaleX: 2.21 + scaleY: 0.2 + scaleZ: 2.46 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Festival 29d22a/Card Back Street d7fc4c.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Festival 29d22a/Card Back Street d7fc4c.yaml new file mode 100644 index 000000000..d9ba50925 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Festival 29d22a/Card Back Street d7fc4c.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 231808 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/jpoSNPO.jpg + FaceURL: https://i.imgur.com/jJZbh5y.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: d7fc4c +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Back Street +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -30.2198 + posY: 1.70040619 + posZ: 7.57309961 + rotX: 359.9201 + rotY: 270.027374 + rotZ: 180.016815 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Festival 29d22a/Card Burying Ground f0d16a.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Festival 29d22a/Card Burying Ground f0d16a.yaml new file mode 100644 index 000000000..c890bda31 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Festival 29d22a/Card Burying Ground f0d16a.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 231806 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/jpoSNPO.jpg + FaceURL: https://i.imgur.com/jJZbh5y.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: f0d16a +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Burying Ground +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -23.6765 + posY: 1.69352484 + posZ: 15.1900005 + rotX: 359.9201 + rotY: 270.011 + rotZ: 180.016846 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Festival 29d22a/Card Central Hill 259b7b.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Festival 29d22a/Card Central Hill 259b7b.yaml new file mode 100644 index 000000000..86596f039 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Festival 29d22a/Card Central Hill 259b7b.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 231814 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/jpoSNPO.jpg + FaceURL: https://i.imgur.com/jJZbh5y.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 259b7b +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Central Hill +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -20.746 + posY: 1.68495262 + posZ: -0.04459924 + rotX: 359.9201 + rotY: 270.001648 + rotZ: 180.016861 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Festival 29d22a/Card Circle Court 7bdc6b.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Festival 29d22a/Card Circle Court 7bdc6b.yaml new file mode 100644 index 000000000..bf55784ff --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Festival 29d22a/Card Circle Court 7bdc6b.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 231812 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/jpoSNPO.jpg + FaceURL: https://i.imgur.com/jJZbh5y.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 7bdc6b +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Circle Court +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -23.6765 + posY: 1.68792427 + posZ: -3.829999 + rotX: 359.9201 + rotY: 270.00116 + rotZ: 180.016861 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Festival 29d22a/Card Green Lane be3ac9.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Festival 29d22a/Card Green Lane be3ac9.yaml new file mode 100644 index 000000000..53c258331 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Festival 29d22a/Card Green Lane be3ac9.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 231813 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/jpoSNPO.jpg + FaceURL: https://i.imgur.com/jJZbh5y.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: be3ac9 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Green Lane +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -36.7732162 + posY: 1.70730579 + posZ: -0.0299936347 + rotX: 359.9201 + rotY: 269.973328 + rotZ: 180.0169 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Festival 29d22a/Card Market Square 50ffd3.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Festival 29d22a/Card Market Square 50ffd3.yaml new file mode 100644 index 000000000..a8b901ae1 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Festival 29d22a/Card Market Square 50ffd3.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 231811 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/jpoSNPO.jpg + FaceURL: https://i.imgur.com/jJZbh5y.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 50ffd3 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Market Square +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -23.6765 + posY: 1.69018877 + posZ: 3.86010027 + rotX: 359.9201 + rotY: 270.002563 + rotZ: 180.016861 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Festival 29d22a/Card Orange Point 6bc393.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Festival 29d22a/Card Orange Point 6bc393.yaml new file mode 100644 index 000000000..6d1fed758 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Festival 29d22a/Card Orange Point 6bc393.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 231805 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/jpoSNPO.jpg + FaceURL: https://i.imgur.com/jJZbh5y.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 6bc393 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Orange Point +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -30.2243 + posY: 1.70265543 + posZ: 15.1900053 + rotX: 359.9201 + rotY: 270.0014 + rotZ: 180.016861 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Festival 29d22a/Card Scenario 7d6343.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Festival 29d22a/Card Scenario 7d6343.yaml new file mode 100644 index 000000000..742e7882f --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Festival 29d22a/Card Scenario 7d6343.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 231804 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/jpoSNPO.jpg + FaceURL: https://i.imgur.com/jJZbh5y.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 7d6343 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Scenario +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 15.8390694 + posY: 1.76647449 + posZ: 39.9591446 + rotX: -0.004012053 + rotY: 269.999451 + rotZ: 0.005042108 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Festival 29d22a/Card Scenario 9e71b4.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Festival 29d22a/Card Scenario 9e71b4.yaml new file mode 100644 index 000000000..ca916f8b7 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Festival 29d22a/Card Scenario 9e71b4.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 231804 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/jpoSNPO.jpg + FaceURL: https://i.imgur.com/jJZbh5y.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 9e71b4 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Scenario +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.95600057 + posY: 1.65564847 + posZ: -10.4402037 + rotX: 359.919739 + rotY: 269.9982 + rotZ: 0.0168436244 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Festival 29d22a/Card Ship Street 299ea1.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Festival 29d22a/Card Ship Street 299ea1.yaml new file mode 100644 index 000000000..cb80aca96 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Festival 29d22a/Card Ship Street 299ea1.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 231809 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/jpoSNPO.jpg + FaceURL: https://i.imgur.com/jJZbh5y.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 299ea1 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Ship Street +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -30.223 + posY: 1.69817185 + posZ: -0.0300993267 + rotX: 359.9201 + rotY: 270.024048 + rotZ: 180.01683 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Festival 29d22a/Card The Strange High House in the Mist d0c475.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Festival 29d22a/Card The Strange High House in the Mist d0c475.yaml new file mode 100644 index 000000000..21eab7b29 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Festival 29d22a/Card The Strange High House in the Mist d0c475.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 231807 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/jpoSNPO.jpg + FaceURL: https://i.imgur.com/jJZbh5y.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: d0c475 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: The Strange High House in the Mist +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -17.1200027 + posY: 1.68438232 + posZ: 15.1900005 + rotX: 359.9201 + rotY: 270.007233 + rotZ: 180.016846 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Festival 29d22a/Card The White Church b5096d.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Festival 29d22a/Card The White Church b5096d.yaml new file mode 100644 index 000000000..13ea9be09 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Festival 29d22a/Card The White Church b5096d.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 231815 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/jpoSNPO.jpg + FaceURL: https://i.imgur.com/jJZbh5y.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: b5096d +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: The White Church +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -13.5542011 + posY: 1.67490292 + posZ: -0.11639981 + rotX: 359.9201 + rotY: 270.006683 + rotZ: 180.016846 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Festival 29d22a/Card Water Street 1e3988.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Festival 29d22a/Card Water Street 1e3988.yaml new file mode 100644 index 000000000..3728c46b8 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Festival 29d22a/Card Water Street 1e3988.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 231810 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/jpoSNPO.jpg + FaceURL: https://i.imgur.com/jJZbh5y.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 1e3988 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Water Street +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -30.2243 + posY: 1.69591522 + posZ: -7.69999933 + rotX: 359.9201 + rotY: 270.001373 + rotZ: 180.016861 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Festival 29d22a/Custom_Model_Bag Set-aside a45247.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Festival 29d22a/Custom_Model_Bag Set-aside a45247.yaml new file mode 100644 index 000000000..d2fdc5924 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Festival 29d22a/Custom_Model_Bag Set-aside a45247.yaml @@ -0,0 +1,61 @@ +Autoraise: true +ColorDiffuse: + b: 0.02148666 + g: 0.00100758043 + r: 0.02148666 +ContainedObjects: +- !include 'Custom_Model_Bag Set-aside a45247/Deck Enemies 6cc720.yaml' +- !include 'Custom_Model_Bag Set-aside a45247/Card Blessing of Nodens 251712.yaml' +- !include 'Custom_Model_Bag Set-aside a45247/Deck Grimoires 1f037b.yaml' +- !include 'Custom_Model_Bag Set-aside a45247/Card The Terrible Old Man e79d88.yaml' +- !include 'Custom_Model_Bag Set-aside a45247/Card Bland-Faced Man c28797.yaml' +- !include 'Custom_Model_Bag Set-aside a45247/Card Stygian Grotto e6a643.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: '' +GMNotes: '' +GUID: a45247 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +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.69700074 + posY: 1.55831587 + posZ: 14.2784023 + rotX: 359.955139 + rotY: 224.998 + rotZ: 0.06867351 + scaleX: 2.0 + scaleY: 2.0 + scaleZ: 2.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag The Festival 29d22a/Custom_Model_Bag Set-aside a45247/Card Bland-Faced Man c28797.yaml new file mode 100644 index 000000000..3c6731e16 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Festival 29d22a/Custom_Model_Bag Set-aside a45247/Card Bland-Faced Man c28797.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 231819 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/jpoSNPO.jpg + FaceURL: https://i.imgur.com/jJZbh5y.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: c28797 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Bland-Faced Man +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -28.8021412 + posY: 3.541774 + posZ: -19.5847187 + rotX: 359.920135 + rotY: 269.9995 + rotZ: 0.0168714859 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag The Festival 29d22a/Custom_Model_Bag Set-aside a45247/Card Blessing of Nodens 251712.yaml new file mode 100644 index 000000000..fa151707d --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Festival 29d22a/Custom_Model_Bag Set-aside a45247/Card Blessing of Nodens 251712.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 231817 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/jpoSNPO.jpg + FaceURL: https://i.imgur.com/jJZbh5y.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: '251712' +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Blessing of Nodens +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -28.1435719 + posY: 3.572451 + posZ: -19.7798786 + rotX: 359.914734 + rotY: 270.0076 + rotZ: 356.0862 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag The Festival 29d22a/Custom_Model_Bag Set-aside a45247/Card Stygian Grotto e6a643.yaml new file mode 100644 index 000000000..00b25dce5 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Festival 29d22a/Custom_Model_Bag Set-aside a45247/Card Stygian Grotto e6a643.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 231816 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/jpoSNPO.jpg + FaceURL: https://i.imgur.com/jJZbh5y.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: e6a643 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Stygian Grotto +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -26.746109 + posY: 3.638215 + posZ: -19.07739 + rotX: 359.9196 + rotY: 270.007935 + rotZ: 180.016937 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag The Festival 29d22a/Custom_Model_Bag Set-aside a45247/Card The Terrible Old Man e79d88.yaml new file mode 100644 index 000000000..6c95c5fb6 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Festival 29d22a/Custom_Model_Bag Set-aside a45247/Card The Terrible Old Man e79d88.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 231818 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/jpoSNPO.jpg + FaceURL: https://i.imgur.com/jJZbh5y.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: e79d88 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: The Terrible Old Man +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -28.80468 + posY: 3.63736677 + posZ: -22.2348042 + rotX: 359.919769 + rotY: 269.999817 + rotZ: 0.0166696515 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Festival 29d22a/Custom_Model_Bag Set-aside a45247/Deck Enemies 6cc720.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Festival 29d22a/Custom_Model_Bag Set-aside a45247/Deck Enemies 6cc720.yaml new file mode 100644 index 000000000..6de141f13 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Festival 29d22a/Custom_Model_Bag Set-aside a45247/Deck Enemies 6cc720.yaml @@ -0,0 +1,215 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 231820 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/jpoSNPO.jpg + FaceURL: https://i.imgur.com/jJZbh5y.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: c3761c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -22.6551952 + posY: 1.58000326 + posZ: -16.2312737 + rotX: 359.918579 + rotY: 269.9998 + rotZ: 0.0161857512 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231824 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/jpoSNPO.jpg + FaceURL: https://i.imgur.com/jJZbh5y.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 5f2df9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -22.8069744 + posY: 1.72093165 + posZ: -16.04436 + rotX: 359.912323 + rotY: 269.999329 + rotZ: 0.00180570339 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231825 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/jpoSNPO.jpg + FaceURL: https://i.imgur.com/jJZbh5y.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 93d597 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -23.03568 + posY: 1.73613966 + posZ: -16.4089642 + rotX: 0.054491505 + rotY: 270.000732 + rotZ: 0.143238142 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231826 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/jpoSNPO.jpg + FaceURL: https://i.imgur.com/jJZbh5y.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: e15764 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -22.7902088 + posY: 1.72463167 + posZ: -16.29051 + rotX: 359.933228 + rotY: 269.998383 + rotZ: 0.0128443921 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/jpoSNPO.jpg + FaceURL: https://i.imgur.com/jJZbh5y.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 231820 +- 231824 +- 231825 +- 231826 +Description: '' +GMNotes: '' +GUID: 6cc720 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Enemies +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -27.7631435 + posY: 3.6338048 + posZ: -22.7088814 + rotX: 359.87677 + rotY: 270.008759 + rotZ: 0.0302548539 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Festival 29d22a/Custom_Model_Bag Set-aside a45247/Deck Grimoires 1f037b.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Festival 29d22a/Custom_Model_Bag Set-aside a45247/Deck Grimoires 1f037b.yaml new file mode 100644 index 000000000..b9949dad3 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Festival 29d22a/Custom_Model_Bag Set-aside a45247/Deck Grimoires 1f037b.yaml @@ -0,0 +1,172 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 231822 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/jpoSNPO.jpg + FaceURL: https://i.imgur.com/jJZbh5y.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 7b9f35 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -22.6690979 + posY: 1.5788672 + posZ: -19.5596581 + rotX: 359.91 + rotY: 270.0003 + rotZ: 0.0129876165 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231821 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/jpoSNPO.jpg + FaceURL: https://i.imgur.com/jJZbh5y.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 2e0a6a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -22.7480717 + posY: 1.57838213 + posZ: -21.8776932 + rotX: 359.914429 + rotY: 269.999756 + rotZ: 0.014876998 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231823 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/jpoSNPO.jpg + FaceURL: https://i.imgur.com/jJZbh5y.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 52da6a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -23.0059872 + posY: 1.71927083 + posZ: -21.8051949 + rotX: 359.9358 + rotY: 270.0 + rotZ: 0.008419661 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/jpoSNPO.jpg + FaceURL: https://i.imgur.com/jJZbh5y.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 231822 +- 231821 +- 231823 +Description: '' +GMNotes: '' +GUID: 1f037b +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Grimoires +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -27.9096355 + posY: 3.54061031 + posZ: -26.1218739 + rotX: 359.920135 + rotY: 269.989868 + rotZ: 0.016881071 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Festival 29d22a/Custom_Tile 28272f.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Festival 29d22a/Custom_Tile 28272f.yaml new file mode 100644 index 000000000..7ac708205 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Festival 29d22a/Custom_Tile 28272f.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 28272f +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.0195 + posY: 1.6234715 + posZ: 14.5832014 + rotX: 359.9201 + rotY: 270.0063 + rotZ: 0.0168878548 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Festival 29d22a/Custom_Tile 2c792a.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Festival 29d22a/Custom_Tile 2c792a.yaml new file mode 100644 index 000000000..44cc0339f --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Festival 29d22a/Custom_Tile 2c792a.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 2c792a +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Custom_Tile + Nickname: '' + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -33.94415 + posY: 1.62542272 + posZ: -11.5814629 + rotX: 0.0168049186 + rotY: 180.0469 + rotZ: 0.0799832344 + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: -34.0171 + posY: 1.62781322 + posZ: -3.80930018 + rotX: 0.06844023 + rotY: 134.988251 + rotZ: 0.0445478931 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Festival 29d22a/Custom_Tile 447fd2.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Festival 29d22a/Custom_Tile 447fd2.yaml new file mode 100644 index 000000000..55cafac33 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Festival 29d22a/Custom_Tile 447fd2.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 447fd2 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Custom_Tile + Nickname: '' + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -33.94415 + posY: 1.62542272 + posZ: -11.5814629 + rotX: 0.0168049186 + rotY: 180.0469 + rotZ: 0.0799832344 + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: -34.1668 + posY: 1.630269 + posZ: 3.82090116 + rotX: 0.02531303 + rotY: 29.9808 + rotZ: 359.922363 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Festival 29d22a/Custom_Tile 4591d4.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Festival 29d22a/Custom_Tile 4591d4.yaml new file mode 100644 index 000000000..6e1aae438 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Festival 29d22a/Custom_Tile 4591d4.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 4591d4 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.7985 + posY: 1.61495328 + posZ: 15.1153011 + rotX: 359.9201 + rotY: 270.010864 + rotZ: 0.0168904327 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Festival 29d22a/Custom_Tile 68ba2e.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Festival 29d22a/Custom_Tile 68ba2e.yaml new file mode 100644 index 000000000..6396e2d56 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Festival 29d22a/Custom_Tile 68ba2e.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 68ba2e +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.8859 + posY: 1.61722314 + posZ: -6.00340033 + rotX: 359.955444 + rotY: 224.989471 + rotZ: 0.0684122741 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Festival 29d22a/Custom_Tile 7234af.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Festival 29d22a/Custom_Tile 7234af.yaml new file mode 100644 index 000000000..02306f988 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Festival 29d22a/Custom_Tile 7234af.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 7234af +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.4411 + posY: 1.62809789 + posZ: -0.115100227 + rotX: 359.9201 + rotY: 270.0092 + rotZ: 0.0168871414 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Festival 29d22a/Custom_Tile 7b9e37.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Festival 29d22a/Custom_Tile 7b9e37.yaml new file mode 100644 index 000000000..a8cc9bbc4 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Festival 29d22a/Custom_Tile 7b9e37.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 7b9e37 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.6225183 + posZ: -3.82999969 + rotX: 0.01687191 + rotY: 179.999939 + rotZ: 0.0799450353 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Festival 29d22a/Custom_Tile a19bdb.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Festival 29d22a/Custom_Tile a19bdb.yaml new file mode 100644 index 000000000..6794105cd --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Festival 29d22a/Custom_Tile a19bdb.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: a19bdb +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.62702072 + posZ: 11.4600019 + rotX: 0.016860893 + rotY: 180.00769 + rotZ: 0.07994155 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Festival 29d22a/Custom_Tile c2da92.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Festival 29d22a/Custom_Tile c2da92.yaml new file mode 100644 index 000000000..866553457 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Festival 29d22a/Custom_Tile c2da92.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: c2da92 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Custom_Tile + Nickname: '' + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -33.94415 + posY: 1.62542272 + posZ: -11.5814629 + rotX: 0.0168049186 + rotY: 180.0469 + rotZ: 0.0799832344 + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.9562988 + posY: 1.609951 + posZ: -2.62109923 + rotX: 0.0253393147 + rotY: 29.99992 + rotZ: 359.922363 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Festival 29d22a/Custom_Tile c41b7b.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Festival 29d22a/Custom_Tile c41b7b.yaml new file mode 100644 index 000000000..dd45da89e --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Festival 29d22a/Custom_Tile c41b7b.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: c41b7b +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.62478292 + posZ: 3.86000061 + rotX: 359.9831 + rotY: 359.975739 + rotZ: 359.920074 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Festival 29d22a/Custom_Tile da1f25.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Festival 29d22a/Custom_Tile da1f25.yaml new file mode 100644 index 000000000..a7cb7353a --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Festival 29d22a/Custom_Tile da1f25.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: da1f25 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Custom_Tile + Nickname: '' + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -33.94415 + posY: 1.62542272 + posZ: -11.5814629 + rotX: 0.0168049186 + rotY: 180.0469 + rotZ: 0.0799832344 + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.1199 + posY: 1.60536408 + posZ: -0.0300002042 + rotX: 359.9201 + rotY: 270.027161 + rotZ: 0.0168628581 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Festival 29d22a/Custom_Tile daa95d.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Festival 29d22a/Custom_Tile daa95d.yaml new file mode 100644 index 000000000..430b0bcb8 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Festival 29d22a/Custom_Tile daa95d.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: daa95d +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.1008 + posY: 1.61992276 + posZ: 2.14690042 + rotX: 359.955444 + rotY: 224.999939 + rotZ: 0.068403706 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Festival 29d22a/Custom_Tile db49f3.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Festival 29d22a/Custom_Tile db49f3.yaml new file mode 100644 index 000000000..abf4f883c --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Festival 29d22a/Custom_Tile db49f3.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: db49f3 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Custom_Tile + Nickname: '' + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -33.94415 + posY: 1.62542272 + posZ: -11.5814629 + rotX: 0.0168049186 + rotY: 180.0469 + rotZ: 0.0799832344 + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: -21.1808987 + posY: 1.6116637 + posZ: 2.13199973 + rotX: 0.0684456453 + rotY: 134.983246 + rotZ: 0.0445421077 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Festival 29d22a/Custom_Tile f108e3.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Festival 29d22a/Custom_Tile f108e3.yaml new file mode 100644 index 000000000..2d3970329 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Festival 29d22a/Custom_Tile f108e3.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: f108e3 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.3214 + posY: 1.61887479 + posZ: -2.45730019 + rotX: 359.93158 + rotY: 315.000183 + rotZ: 359.955444 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Festival 29d22a/Custom_Tile f591c7.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Festival 29d22a/Custom_Tile f591c7.yaml new file mode 100644 index 000000000..938096a8a --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Festival 29d22a/Custom_Tile f591c7.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: f591c7 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Custom_Tile + Nickname: '' + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -33.94415 + posY: 1.62542272 + posZ: -11.5814629 + rotX: 0.0168049186 + rotY: 180.0469 + rotZ: 0.0799832344 + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.9568 + posY: 1.62074971 + posZ: 5.63739967 + rotX: 0.06844005 + rotY: 134.98822 + rotZ: 0.0445491225 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Festival 29d22a/Custom_Tile The Festival 4b81f6.ttslua b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Festival 29d22a/Custom_Tile The Festival 4b81f6.ttslua new file mode 100644 index 000000000..392b969e5 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Festival 29d22a/Custom_Tile The Festival 4b81f6.ttslua @@ -0,0 +1,21 @@ +name = 'The Festival' + +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 The Side Missions 791837/Custom_Model_Bag The Festival 29d22a/Custom_Tile The Festival 4b81f6.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Festival 29d22a/Custom_Tile The Festival 4b81f6.yaml new file mode 100644 index 000000000..728c14950 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Festival 29d22a/Custom_Tile The Festival 4b81f6.yaml @@ -0,0 +1,42 @@ +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 +GMNotes: '' +GUID: 4b81f6 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Tile The Festival 4b81f6.ttslua' +LuaScriptState: '' +Name: Custom_Tile +Nickname: The Festival +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.8815 + posY: 1.58260477 + posZ: -14.6120024 + rotX: 359.919739 + rotY: 270.002136 + rotZ: 0.0168349035 + scaleX: 2.2 + scaleY: 1.0 + scaleZ: 2.2 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Festival 29d22a/Deck 3eef2e.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Festival 29d22a/Deck 3eef2e.yaml new file mode 100644 index 000000000..03d296f0b --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Festival 29d22a/Deck 3eef2e.yaml @@ -0,0 +1,222 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 231803 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/jpoSNPO.jpg + FaceURL: https://i.imgur.com/jJZbh5y.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: '478100' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -9.673378 + posY: 1.66669822 + posZ: 0.06461913 + rotX: 359.9195 + rotY: 270.0003 + rotZ: 0.0184406117 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231802 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/jpoSNPO.jpg + FaceURL: https://i.imgur.com/jJZbh5y.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: e0f8c2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -9.852794 + posY: 1.81239915 + posZ: -0.04467102 + rotX: 359.942932 + rotY: 269.999817 + rotZ: 0.0234157164 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231801 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/jpoSNPO.jpg + FaceURL: https://i.imgur.com/jJZbh5y.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 5302ac + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -9.875281 + posY: 1.77495706 + posZ: -3.28249168 + rotX: 359.921936 + rotY: 269.991943 + rotZ: 182.199661 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231900 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2319': + BackIsHidden: true + BackURL: https://i.imgur.com/jJZbh5y.jpg + FaceURL: https://i.imgur.com/jpoSNPO.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 84110a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -10.0487938 + posY: 1.67213619 + posZ: -3.326415 + rotX: 359.8876 + rotY: 269.9984 + rotZ: 179.880814 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/jpoSNPO.jpg + FaceURL: https://i.imgur.com/jJZbh5y.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + '2319': + BackIsHidden: true + BackURL: https://i.imgur.com/jJZbh5y.jpg + FaceURL: https://i.imgur.com/jpoSNPO.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 231803 +- 231802 +- 231801 +- 231900 +Description: '' +GMNotes: '' +GUID: 3eef2e +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -9.673201 + posY: 1.66475856 + posZ: 0.06460039 + rotX: 359.9201 + rotY: 269.9858 + rotZ: 0.0168871582 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Festival 29d22a/Deck Act Deck 8ce4d8.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Festival 29d22a/Deck Act Deck 8ce4d8.yaml new file mode 100644 index 000000000..613bf649b --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Festival 29d22a/Deck Act Deck 8ce4d8.yaml @@ -0,0 +1,215 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 231507 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2315': + BackIsHidden: true + BackURL: https://i.imgur.com/WxS5Mz2.jpg + FaceURL: https://i.imgur.com/WOwUAGI.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 38e8b0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -28.5756645 + posY: 1.59482 + posZ: 6.35434246 + rotX: 0.0113981711 + rotY: 179.999969 + rotZ: 0.07800008 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231506 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2315': + BackIsHidden: true + BackURL: https://i.imgur.com/WxS5Mz2.jpg + FaceURL: https://i.imgur.com/WOwUAGI.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 52d30e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -28.6240959 + posY: 1.73531616 + posZ: 6.15419674 + rotX: 0.01787915 + rotY: 179.999664 + rotZ: 0.06566833 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231505 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2315': + BackIsHidden: true + BackURL: https://i.imgur.com/WxS5Mz2.jpg + FaceURL: https://i.imgur.com/WOwUAGI.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 38e8b0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -28.4568386 + posY: 1.75283754 + posZ: 6.065697 + rotX: 0.01373257 + rotY: 180.000183 + rotZ: 0.06976296 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231504 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2315': + BackIsHidden: true + BackURL: https://i.imgur.com/WxS5Mz2.jpg + FaceURL: https://i.imgur.com/WOwUAGI.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 38e8b0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -28.8454456 + posY: 1.73950827 + posZ: 5.977223 + rotX: 0.0156831164 + rotY: 179.9997 + rotZ: 0.06682937 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2315': + BackIsHidden: true + BackURL: https://i.imgur.com/WxS5Mz2.jpg + FaceURL: https://i.imgur.com/WOwUAGI.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 231507 +- 231506 +- 231505 +- 231504 +Description: '' +GMNotes: '' +GUID: 8ce4d8 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Act Deck +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.6885 + posY: 1.65349448 + posZ: -5.048501 + rotX: 0.0168377943 + rotY: 179.998169 + rotZ: 0.08025727 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Festival 29d22a/Deck Agenda Deck ce35ae.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Festival 29d22a/Deck Agenda Deck ce35ae.yaml new file mode 100644 index 000000000..e63a46046 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Festival 29d22a/Deck Agenda Deck ce35ae.yaml @@ -0,0 +1,215 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 231503 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2315': + BackIsHidden: true + BackURL: https://i.imgur.com/WxS5Mz2.jpg + FaceURL: https://i.imgur.com/WOwUAGI.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 38e8b0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -28.758213 + posY: 1.59409809 + posZ: 2.74866319 + rotX: 0.0154920286 + rotY: 179.999878 + rotZ: 0.07929069 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231502 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2315': + BackIsHidden: true + BackURL: https://i.imgur.com/WxS5Mz2.jpg + FaceURL: https://i.imgur.com/WOwUAGI.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 7e68b7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -28.6762848 + posY: 1.73471451 + posZ: 2.68282247 + rotX: 0.00504778046 + rotY: 179.9999 + rotZ: 0.07372481 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231501 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2315': + BackIsHidden: true + BackURL: https://i.imgur.com/WxS5Mz2.jpg + FaceURL: https://i.imgur.com/WOwUAGI.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: ffa494 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -28.8829155 + posY: 1.75248265 + posZ: 3.01199555 + rotX: 0.0136593087 + rotY: 179.999283 + rotZ: 0.06945503 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231500 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2315': + BackIsHidden: true + BackURL: https://i.imgur.com/WxS5Mz2.jpg + FaceURL: https://i.imgur.com/WOwUAGI.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 38e8b0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -28.7333145 + posY: 1.73848808 + posZ: 3.01810813 + rotX: 0.0212911088 + rotY: 180.006134 + rotZ: 0.08939739 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2315': + BackIsHidden: true + BackURL: https://i.imgur.com/WxS5Mz2.jpg + FaceURL: https://i.imgur.com/WOwUAGI.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 231503 +- 231502 +- 231501 +- 231500 +Description: '' +GMNotes: '' +GUID: ce35ae +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Agenda Deck +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.72469974 + posY: 1.65513837 + posZ: 0.3733006 + rotX: 0.0168341585 + rotY: 180.000626 + rotZ: 0.0802578852 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Festival 29d22a/Deck Cloaked Figures 27bf6a.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Festival 29d22a/Deck Cloaked Figures 27bf6a.yaml new file mode 100644 index 000000000..be4a739d9 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Festival 29d22a/Deck Cloaked Figures 27bf6a.yaml @@ -0,0 +1,387 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 231828 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/jpoSNPO.jpg + FaceURL: https://i.imgur.com/jJZbh5y.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 85797e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -28.96661 + posY: 1.59056437 + posZ: -9.977174 + rotX: 359.914856 + rotY: 270.000366 + rotZ: 0.01460362 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231829 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/jpoSNPO.jpg + FaceURL: https://i.imgur.com/jJZbh5y.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 4d1ac7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -29.0751057 + posY: 1.73120427 + posZ: -9.918561 + rotX: 359.938751 + rotY: 269.9994 + rotZ: 0.00600120472 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231830 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/jpoSNPO.jpg + FaceURL: https://i.imgur.com/jJZbh5y.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 166a8a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -29.2028713 + posY: 1.74630046 + posZ: -9.5292 + rotX: 0.5681029 + rotY: 269.994751 + rotZ: 359.263916 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231831 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/jpoSNPO.jpg + FaceURL: https://i.imgur.com/jJZbh5y.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: c34fcf + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -29.0799446 + posY: 1.73899174 + posZ: -9.428411 + rotX: 359.925873 + rotY: 269.9928 + rotZ: 359.8788 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231832 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/jpoSNPO.jpg + FaceURL: https://i.imgur.com/jJZbh5y.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 7b3be4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -29.3561974 + posY: 1.73730433 + posZ: -9.646188 + rotX: 359.933075 + rotY: 269.99585 + rotZ: 0.122276112 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231833 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/jpoSNPO.jpg + FaceURL: https://i.imgur.com/jJZbh5y.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 959a66 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -29.2865143 + posY: 1.74020994 + posZ: -9.515488 + rotX: 359.937561 + rotY: 269.9992 + rotZ: 359.975067 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231834 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/jpoSNPO.jpg + FaceURL: https://i.imgur.com/jJZbh5y.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 36ddcf + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -29.2765369 + posY: 1.74483693 + posZ: -9.794265 + rotX: 359.935272 + rotY: 269.9973 + rotZ: 0.124007605 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231827 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/jpoSNPO.jpg + FaceURL: https://i.imgur.com/jJZbh5y.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: eb6983 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -29.0857849 + posY: 1.747258 + posZ: -9.953669 + rotX: 359.919037 + rotY: 270.003876 + rotZ: 0.0165866055 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/jpoSNPO.jpg + FaceURL: https://i.imgur.com/jJZbh5y.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 231828 +- 231829 +- 231830 +- 231831 +- 231832 +- 231833 +- 231834 +- 231827 +Description: '' +GMNotes: '' +GUID: 27bf6a +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Cloaked Figures +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -10.5675011 + posY: 1.65370643 + posZ: 13.5759048 + rotX: 359.9201 + rotY: 270.021118 + rotZ: 0.0168401934 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Festival 29d22a/Deck Encounter Deck 3d2a1a.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Festival 29d22a/Deck Encounter Deck 3d2a1a.yaml new file mode 100644 index 000000000..85bad7b7e --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Festival 29d22a/Deck Encounter Deck 3d2a1a.yaml @@ -0,0 +1,1168 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 3617 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: aa3d47 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Rotting Remains + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -22.1420727 + posY: 1.58623672 + posZ: 7.62811041 + rotX: 359.915039 + rotY: 269.9996 + rotZ: 0.0149194142 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3618 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: c40f57 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Frozen in Fear + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -22.193327 + posY: 1.72683048 + posZ: 7.61650467 + rotX: 359.9351 + rotY: 269.9993 + rotZ: 0.00478508 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3617 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: 18e09c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Rotting Remains + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -22.4950352 + posY: 1.74490821 + posZ: 7.754491 + rotX: 359.933441 + rotY: 269.999878 + rotZ: 0.0163128544 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3618 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: 27c05d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Frozen in Fear + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -22.2555237 + posY: 1.73091686 + posZ: 7.608979 + rotX: 359.933472 + rotY: 269.9987 + rotZ: 0.0111038759 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3619 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: f1a34d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dissonant Voices + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -22.3525372 + posY: 1.72901487 + posZ: 7.554768 + rotX: 359.93338 + rotY: 270.0011 + rotZ: 0.01842868 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3617 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: da8001 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Rotting Remains + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -22.059864 + posY: 1.73135328 + posZ: 7.710873 + rotX: 359.9348 + rotY: 270.0176 + rotZ: 0.0439414419 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3619 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: '260768' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dissonant Voices + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -22.23348 + posY: 1.73656285 + posZ: 7.6930294 + rotX: 359.933533 + rotY: 269.9989 + rotZ: 0.01255747 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3621 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: fb311c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Crypt Chill + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -22.1610565 + posY: 1.7428863 + posZ: 7.738603 + rotX: 359.9315 + rotY: 269.999634 + rotZ: 0.0114840167 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3621 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: b78c3b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Crypt Chill + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -21.9582081 + posY: 1.7000109 + posZ: 7.67492 + rotX: 359.9328 + rotY: 270.003967 + rotZ: 0.0122973882 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3622 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: '356046' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Obscuring Fog + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -22.0749035 + posY: 1.70986485 + posZ: 7.77793932 + rotX: 359.933 + rotY: 270.004 + rotZ: 0.0107873939 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3622 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: 03a265 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Obscuring Fog + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -22.1307125 + posY: 1.71965587 + posZ: 7.934062 + rotX: 359.931549 + rotY: 270.003662 + rotZ: 0.009992793 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3628 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Obstacle. + GMNotes: '' + GUID: 1340ff + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Locked Door + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -22.1255913 + posY: 1.72914016 + posZ: 7.43282747 + rotX: 359.9322 + rotY: 270.018066 + rotZ: 0.0364717171 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3628 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Obstacle. + GMNotes: '' + GUID: 9449d7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Locked Door + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -22.0293255 + posY: 1.73872292 + posZ: 7.55089855 + rotX: 359.932922 + rotY: 270.0039 + rotZ: 0.0152763287 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3620 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: 61e841 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ancient Evils + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -22.2059078 + posY: 1.74868715 + posZ: 7.954876 + rotX: 359.9336 + rotY: 270.0038 + rotZ: 0.0119642569 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3620 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: e0f4c0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ancient Evils + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -22.1318569 + posY: 1.75828266 + posZ: 7.61930561 + rotX: 359.931946 + rotY: 270.0036 + rotZ: 0.0139143774 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3620 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: 1921c5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ancient Evils + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -22.3409748 + posY: 1.76809561 + posZ: 7.5622406 + rotX: 359.933 + rotY: 270.0074 + rotZ: 0.0242524 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231835 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/jpoSNPO.jpg + FaceURL: https://i.imgur.com/jJZbh5y.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 0f0096 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -24.2672157 + posY: 1.58805442 + posZ: 3.784782 + rotX: 359.91452 + rotY: 269.994446 + rotZ: 0.0160745811 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231836 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/jpoSNPO.jpg + FaceURL: https://i.imgur.com/jJZbh5y.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: f9e1f9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -24.3362637 + posY: 1.72833848 + posZ: 3.54614377 + rotX: 359.936249 + rotY: 269.998138 + rotZ: 0.0173419062 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231844 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/jpoSNPO.jpg + FaceURL: https://i.imgur.com/jJZbh5y.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: d4be06 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -24.34643 + posY: 1.74589634 + posZ: 3.22672534 + rotX: 359.9304 + rotY: 269.9917 + rotZ: 0.0329919979 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231843 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/jpoSNPO.jpg + FaceURL: https://i.imgur.com/jJZbh5y.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 9a6e9c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -24.5251389 + posY: 1.7340585 + posZ: 3.65796447 + rotX: 359.936432 + rotY: 269.997284 + rotZ: 0.00479629 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231842 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/jpoSNPO.jpg + FaceURL: https://i.imgur.com/jJZbh5y.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: c17c39 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -24.4366913 + posY: 1.73049986 + posZ: 3.38796353 + rotX: 359.934753 + rotY: 269.995148 + rotZ: 0.00966258347 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231841 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/jpoSNPO.jpg + FaceURL: https://i.imgur.com/jJZbh5y.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: b79e1d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -24.45098 + posY: 1.73309731 + posZ: 3.3163197 + rotX: 359.934937 + rotY: 269.9991 + rotZ: 0.0204160716 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231840 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/jpoSNPO.jpg + FaceURL: https://i.imgur.com/jJZbh5y.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 6062c3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -24.317297 + posY: 1.73842835 + posZ: 3.71084857 + rotX: 359.93512 + rotY: 269.997 + rotZ: 0.0112430258 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231839 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/jpoSNPO.jpg + FaceURL: https://i.imgur.com/jJZbh5y.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 63b6f1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -24.5663548 + posY: 1.74503112 + posZ: 3.56912827 + rotX: 359.935577 + rotY: 269.999725 + rotZ: 0.0190197155 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231837 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/jpoSNPO.jpg + FaceURL: https://i.imgur.com/jJZbh5y.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: f92f59 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -24.3273869 + posY: 1.587986 + posZ: 2.630585 + rotX: 359.9166 + rotY: 270.03717 + rotZ: 359.985748 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231838 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/jpoSNPO.jpg + FaceURL: https://i.imgur.com/jJZbh5y.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 55d7ba + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -24.129221 + posY: 1.727655 + posZ: 3.04320049 + rotX: 359.916565 + rotY: 269.94574 + rotZ: 359.8821 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2318': + BackIsHidden: true + BackURL: https://i.imgur.com/jpoSNPO.jpg + FaceURL: https://i.imgur.com/jJZbh5y.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 3617 +- 3618 +- 3617 +- 3618 +- 3619 +- 3617 +- 3619 +- 3621 +- 3621 +- 3622 +- 3622 +- 3628 +- 3628 +- 3620 +- 3620 +- 3620 +- 231835 +- 231836 +- 231844 +- 231843 +- 231842 +- 231841 +- 231840 +- 231839 +- 231837 +- 231838 +Description: '' +GMNotes: '' +GUID: 3d2a1a +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Encounter Deck +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.92750025 + posY: 1.75039184 + posZ: 5.75710249 + rotX: 359.919739 + rotY: 270.000061 + rotZ: 180.016815 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Grand Oak Hotel 4255b1.ttslua b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Grand Oak Hotel 4255b1.ttslua new file mode 100644 index 000000000..46067f58e --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Grand Oak Hotel 4255b1.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.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.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 791837/Custom_Model_Bag The Grand Oak Hotel 4255b1.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Grand Oak Hotel 4255b1.yaml new file mode 100644 index 000000000..722300672 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Grand Oak Hotel 4255b1.yaml @@ -0,0 +1,79 @@ +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 Grand Oak Hotel 4255b1/Deck locations Set Aside e9ae84.yaml' +- !include 'Custom_Model_Bag The Grand Oak Hotel 4255b1/Deck Set Aside b57f89.yaml' +- !include 'Custom_Model_Bag The Grand Oak Hotel 4255b1/Deck Encounter Deck 2fe933.yaml' +- !include 'Custom_Model_Bag The Grand Oak Hotel 4255b1/Deck 245765.yaml' +- !include 'Custom_Model_Bag The Grand Oak Hotel 4255b1/Deck Agenda 03fc1c.yaml' +- !include 'Custom_Model_Bag The Grand Oak Hotel 4255b1/Deck Act c11ba5.yaml' +- !include 'Custom_Model_Bag The Grand Oak Hotel 4255b1/Card 37c889.yaml' +- !include 'Custom_Model_Bag The Grand Oak Hotel 4255b1/Custom_Tile Core Difficulty + 9cd1ad.yaml' +- !include 'Custom_Model_Bag The Grand Oak Hotel 4255b1/Card 109907.yaml' +- !include 'Custom_Model_Bag The Grand Oak Hotel 4255b1/Card a96e74.yaml' +- !include 'Custom_Model_Bag The Grand Oak Hotel 4255b1/Card 65aae9.yaml' +- !include 'Custom_Model_Bag The Grand Oak Hotel 4255b1/Card 884951.yaml' +- !include 'Custom_Model_Bag The Grand Oak Hotel 4255b1/Card 634aa3.yaml' +- !include 'Custom_Model_Bag The Grand Oak Hotel 4255b1/Card Elevator c37bc0.yaml' +- !include 'Custom_Model_Bag The Grand Oak Hotel 4255b1/Card c35463.yaml' +- !include 'Custom_Model_Bag The Grand Oak Hotel 4255b1/Card e0e56d.yaml' +- !include 'Custom_Model_Bag The Grand Oak Hotel 4255b1/Card 893c58.yaml' +- !include 'Custom_Model_Bag The Grand Oak Hotel 4255b1/Card efba6c.yaml' +- !include 'Custom_Model_Bag The Grand Oak Hotel 4255b1/Deck Setup bfeb71.yaml' +CustomMesh: + CastShadows: true + ColliderURL: '' + Convex: true + DiffuseURL: http://cloud-3.steamusercontent.com/ugc/798737729142935568/34A42BC3AEF7764F8D7BB242DB08FD36B8EC6DCB/ + MaterialIndex: 3 + MeshURL: https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj + NormalURL: '' + TypeIndex: 6 +Description: '' +GMNotes: '' +GUID: 4255b1 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Model_Bag The Grand Oak Hotel 4255b1.ttslua' +LuaScriptState: '{"ml":{"03fc1c":{"lock":false,"pos":{"x":-2.7246,"y":1.6551,"z":0.3733},"rot":{"x":359.9197,"y":269.9996,"z":0.0168}},"109907":{"lock":false,"pos":{"x":-17.12,"y":1.6821,"z":7.57},"rot":{"x":359.9201,"y":269.9846,"z":180.0169}},"245765":{"lock":false,"pos":{"x":-11.097,"y":1.6708,"z":13.7077},"rot":{"x":359.9201,"y":269.9857,"z":0.0169}},"2fe933":{"lock":false,"pos":{"x":-3.9273,"y":1.7877,"z":5.7571},"rot":{"x":359.9197,"y":269.986,"z":180.0168}},"37c889":{"lock":false,"pos":{"x":-3.9559,"y":1.6585,"z":-10.4409},"rot":{"x":359.9197,"y":270.0001,"z":180.0168}},"634aa3":{"lock":false,"pos":{"x":-23.6765,"y":1.689,"z":-0.03},"rot":{"x":359.9201,"y":269.9964,"z":180.0169}},"65aae9":{"lock":false,"pos":{"x":-17.12,"y":1.6799,"z":-0.03},"rot":{"x":359.9201,"y":269.9969,"z":180.0169}},"884951":{"lock":false,"pos":{"x":-23.6766,"y":1.6913,"z":7.57},"rot":{"x":359.9201,"y":269.9958,"z":180.0169}},"893c58":{"lock":false,"pos":{"x":-30.2243,"y":1.6982,"z":-0.03},"rot":{"x":359.9201,"y":269.9956,"z":180.0169}},"9cd1ad":{"lock":false,"pos":{"x":-4.0559,"y":1.5827,"z":-15.1513},"rot":{"x":359.9197,"y":270,"z":0.0168}},"a96e74":{"lock":false,"pos":{"x":-17.12,"y":1.681,"z":3.86},"rot":{"x":359.9201,"y":269.9844,"z":180.0169}},"b57f89":{"lock":false,"pos":{"x":1.6965,"y":1.6368,"z":14.2789},"rot":{"x":359.9552,"y":224.998,"z":0.0687}},"bfeb71":{"lock":false,"pos":{"x":-9.6538,"y":1.6654,"z":-0.6313},"rot":{"x":359.9201,"y":269.9998,"z":0.0169}},"c11ba5":{"lock":false,"pos":{"x":-2.6884,"y":1.6535,"z":-5.0485},"rot":{"x":359.9197,"y":269.997,"z":0.0168}},"c35463":{"lock":false,"pos":{"x":-30.2243,"y":1.7004,"z":7.57},"rot":{"x":359.9201,"y":269.9971,"z":180.0169}},"c37bc0":{"lock":false,"pos":{"x":-23.6764,"y":1.6879,"z":-3.83},"rot":{"x":359.9201,"y":269.9999,"z":180.0169}},"e0e56d":{"lock":false,"pos":{"x":-30.2243,"y":1.6993,"z":3.86},"rot":{"x":359.9201,"y":269.9972,"z":180.0169}},"e9ae84":{"lock":false,"pos":{"x":-4.2177,"y":1.6697,"z":14.5874},"rot":{"x":359.9197,"y":269.9857,"z":180.0168}},"efba6c":{"lock":false,"pos":{"x":-50.9244,"y":1.7294,"z":8.1784},"rot":{"x":359.9201,"y":270.0001,"z":180.0169}}}}' +MaterialIndex: -1 +MeshIndex: -1 +Name: Custom_Model_Bag +Nickname: The Grand Oak Hotel +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 37.5734062 + posY: 8.461627 + posZ: -7.527312 + rotX: 0.02080851 + rotY: 270.000061 + rotZ: 0.01677106 + scaleX: 2.21 + scaleY: 0.2 + scaleZ: 2.46 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Grand Oak Hotel 4255b1/Card 109907.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Grand Oak Hotel 4255b1/Card 109907.yaml new file mode 100644 index 000000000..31d18ed5c --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Grand Oak Hotel 4255b1/Card 109907.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 149216 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '1492': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359901725/12540B9ECA8BEE2F461F1EB4C92601C0015D6D37/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359902486/A01E94E1619E84C6049A6A8ECF63ED0C603A8768/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: '109907' +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -17.12 + posY: 1.68213856 + posZ: 7.57000065 + rotX: 359.9201 + rotY: 269.9846 + rotZ: 180.016891 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Grand Oak Hotel 4255b1/Card 37c889.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Grand Oak Hotel 4255b1/Card 37c889.yaml new file mode 100644 index 000000000..2affe6f38 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Grand Oak Hotel 4255b1/Card 37c889.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 149203 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '1492': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359901725/12540B9ECA8BEE2F461F1EB4C92601C0015D6D37/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359902486/A01E94E1619E84C6049A6A8ECF63ED0C603A8768/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 37c889 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.95590043 + posY: 1.658471 + posZ: -10.4409018 + rotX: 359.919739 + rotY: 270.000061 + rotZ: 180.01683 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Grand Oak Hotel 4255b1/Card 634aa3.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Grand Oak Hotel 4255b1/Card 634aa3.yaml new file mode 100644 index 000000000..4fd7df249 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Grand Oak Hotel 4255b1/Card 634aa3.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 149211 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '1492': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359901725/12540B9ECA8BEE2F461F1EB4C92601C0015D6D37/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359902486/A01E94E1619E84C6049A6A8ECF63ED0C603A8768/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 634aa3 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -23.6765 + posY: 1.68904328 + posZ: -0.0299997 + rotX: 359.9201 + rotY: 269.9964 + rotZ: 180.016876 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Grand Oak Hotel 4255b1/Card 65aae9.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Grand Oak Hotel 4255b1/Card 65aae9.yaml new file mode 100644 index 000000000..31de0c8bc --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Grand Oak Hotel 4255b1/Card 65aae9.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 149214 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '1492': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359901725/12540B9ECA8BEE2F461F1EB4C92601C0015D6D37/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359902486/A01E94E1619E84C6049A6A8ECF63ED0C603A8768/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 65aae9 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -17.12 + posY: 1.67990065 + posZ: -0.0299998913 + rotX: 359.9201 + rotY: 269.9969 + rotZ: 180.016861 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Grand Oak Hotel 4255b1/Card 884951.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Grand Oak Hotel 4255b1/Card 884951.yaml new file mode 100644 index 000000000..40c889eab --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Grand Oak Hotel 4255b1/Card 884951.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 149210 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '1492': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359901725/12540B9ECA8BEE2F461F1EB4C92601C0015D6D37/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359902486/A01E94E1619E84C6049A6A8ECF63ED0C603A8768/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: '884951' +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -23.6766 + posY: 1.69128132 + posZ: 7.57000065 + rotX: 359.9201 + rotY: 269.995819 + rotZ: 180.016876 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Grand Oak Hotel 4255b1/Card 893c58.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Grand Oak Hotel 4255b1/Card 893c58.yaml new file mode 100644 index 000000000..163a49fc0 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Grand Oak Hotel 4255b1/Card 893c58.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 149209 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '1492': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359901725/12540B9ECA8BEE2F461F1EB4C92601C0015D6D37/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359902486/A01E94E1619E84C6049A6A8ECF63ED0C603A8768/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 893c58 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -30.2243 + posY: 1.69817376 + posZ: -0.0299996883 + rotX: 359.9201 + rotY: 269.995636 + rotZ: 180.016876 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Grand Oak Hotel 4255b1/Card a96e74.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Grand Oak Hotel 4255b1/Card a96e74.yaml new file mode 100644 index 000000000..fa355d674 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Grand Oak Hotel 4255b1/Card a96e74.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 149215 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '1492': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359901725/12540B9ECA8BEE2F461F1EB4C92601C0015D6D37/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359902486/A01E94E1619E84C6049A6A8ECF63ED0C603A8768/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: a96e74 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -17.1199989 + posY: 1.68104613 + posZ: 3.86000013 + rotX: 359.9201 + rotY: 269.984436 + rotZ: 180.016891 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Grand Oak Hotel 4255b1/Card c35463.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Grand Oak Hotel 4255b1/Card c35463.yaml new file mode 100644 index 000000000..1cd736645 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Grand Oak Hotel 4255b1/Card c35463.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 149208 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '1492': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359901725/12540B9ECA8BEE2F461F1EB4C92601C0015D6D37/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359902486/A01E94E1619E84C6049A6A8ECF63ED0C603A8768/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: c35463 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -30.2243 + posY: 1.70041156 + posZ: 7.57 + rotX: 359.9201 + rotY: 269.99707 + rotZ: 180.016861 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Grand Oak Hotel 4255b1/Card e0e56d.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Grand Oak Hotel 4255b1/Card e0e56d.yaml new file mode 100644 index 000000000..47927af39 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Grand Oak Hotel 4255b1/Card e0e56d.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 149207 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '1492': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359901725/12540B9ECA8BEE2F461F1EB4C92601C0015D6D37/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359902486/A01E94E1619E84C6049A6A8ECF63ED0C603A8768/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: e0e56d +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -30.2243 + posY: 1.69931912 + posZ: 3.86000085 + rotX: 359.9201 + rotY: 269.997162 + rotZ: 180.016861 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Grand Oak Hotel 4255b1/Card efba6c.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Grand Oak Hotel 4255b1/Card efba6c.yaml new file mode 100644 index 000000000..d90cfd874 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Grand Oak Hotel 4255b1/Card efba6c.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 149203 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '1492': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359901725/12540B9ECA8BEE2F461F1EB4C92601C0015D6D37/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359902486/A01E94E1619E84C6049A6A8ECF63ED0C603A8768/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: efba6c +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -50.9244 + posY: 1.7294482 + posZ: 8.1784 + 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 The Side Missions 791837/Custom_Model_Bag The Grand Oak Hotel 4255b1/Card Elevator c37bc0.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Grand Oak Hotel 4255b1/Card Elevator c37bc0.yaml new file mode 100644 index 000000000..7b23edf63 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Grand Oak Hotel 4255b1/Card Elevator c37bc0.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 260717 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2607': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359901725/12540B9ECA8BEE2F461F1EB4C92601C0015D6D37/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359902486/A01E94E1619E84C6049A6A8ECF63ED0C603A8768/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: c37bc0 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Elevator +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -23.6763973 + posY: 1.68792415 + posZ: -3.82999969 + 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 The Side Missions 791837/Custom_Model_Bag The Grand Oak Hotel 4255b1/Custom_Tile Core Difficulty 9cd1ad.ttslua b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Grand Oak Hotel 4255b1/Custom_Tile Core Difficulty 9cd1ad.ttslua new file mode 100644 index 000000000..c7ea585c8 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Grand Oak Hotel 4255b1/Custom_Tile Core Difficulty 9cd1ad.ttslua @@ -0,0 +1,21 @@ +name = 'Core Set' + +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 The Side Missions 791837/Custom_Model_Bag The Grand Oak Hotel 4255b1/Custom_Tile Core Difficulty 9cd1ad.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Grand Oak Hotel 4255b1/Custom_Tile Core Difficulty 9cd1ad.yaml new file mode 100644 index 000000000..be525efdd --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Grand Oak Hotel 4255b1/Custom_Tile Core Difficulty 9cd1ad.yaml @@ -0,0 +1,42 @@ +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 +GMNotes: '' +GUID: 9cd1ad +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Tile Core Difficulty 9cd1ad.ttslua' +LuaScriptState: '' +Name: Custom_Tile +Nickname: Core Difficulty +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -4.05590057 + posY: 1.58269072 + posZ: -15.1513023 + rotX: 359.919739 + rotY: 270.000031 + rotZ: 0.0168378688 + scaleX: 2.2 + scaleY: 1.0 + scaleZ: 2.2 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Grand Oak Hotel 4255b1/Deck 245765.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Grand Oak Hotel 4255b1/Deck 245765.yaml new file mode 100644 index 000000000..ff713b1d2 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Grand Oak Hotel 4255b1/Deck 245765.yaml @@ -0,0 +1,211 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 149200 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1133': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359901725/12540B9ECA8BEE2F461F1EB4C92601C0015D6D37/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359902486/A01E94E1619E84C6049A6A8ECF63ED0C603A8768/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: dc794a + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 5.238776 + posY: 1.0315665 + posZ: -9.491042 + rotX: 0.006569371 + rotY: 179.999619 + rotZ: 0.00203503435 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 149200 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1133': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359901725/12540B9ECA8BEE2F461F1EB4C92601C0015D6D37/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359902486/A01E94E1619E84C6049A6A8ECF63ED0C603A8768/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: d5cc66 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 5.23877144 + posY: 1.16677892 + posZ: -9.491035 + rotX: -0.00294340472 + rotY: 179.999619 + rotZ: -0.0020888478 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 149200 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1133': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359901725/12540B9ECA8BEE2F461F1EB4C92601C0015D6D37/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359902486/A01E94E1619E84C6049A6A8ECF63ED0C603A8768/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 1daed6 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 5.238769 + posY: 1.19584954 + posZ: -9.491032 + rotX: -0.0005894483 + rotY: 179.999649 + rotZ: -0.000369916874 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 149200 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1133': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359901725/12540B9ECA8BEE2F461F1EB4C92601C0015D6D37/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359902486/A01E94E1619E84C6049A6A8ECF63ED0C603A8768/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 79f7c6 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 4.853816 + posY: 1.18043637 + posZ: -9.908839 + rotX: 0.0020866734 + rotY: 179.999619 + rotZ: -0.001754542 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '1492': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359901725/12540B9ECA8BEE2F461F1EB4C92601C0015D6D37/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359902486/A01E94E1619E84C6049A6A8ECF63ED0C603A8768/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 149200 +- 149200 +- 149200 +- 149200 +Description: '' +GMNotes: '' +GUID: '245765' +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -11.0970039 + posY: 1.67076135 + posZ: 13.7077026 + rotX: 359.9201 + rotY: 269.985748 + rotZ: 0.01689647 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Grand Oak Hotel 4255b1/Deck Act c11ba5.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Grand Oak Hotel 4255b1/Deck Act c11ba5.yaml new file mode 100644 index 000000000..2d79c8c8a --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Grand Oak Hotel 4255b1/Deck Act c11ba5.yaml @@ -0,0 +1,212 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 153606 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1132': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359903282/DC0CAF4CDFB1E6F342FCBA49A3C080933AC1D457/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359903787/CBAFD4E88B79E21F8B7812B558C0458FA69082FE/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: e06d2e + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.92191315 + posY: 1.2818346 + posZ: 12.8041849 + rotX: 0.01655061 + rotY: 180.003571 + rotZ: -0.0015279263 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 153605 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1132': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359903282/DC0CAF4CDFB1E6F342FCBA49A3C080933AC1D457/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359903787/CBAFD4E88B79E21F8B7812B558C0458FA69082FE/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 573b03 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.853871 + posY: 1.3310864 + posZ: 11.56452 + rotX: 0.0165376328 + rotY: 180.00354 + rotZ: -0.00152793829 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 153604 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1132': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359903282/DC0CAF4CDFB1E6F342FCBA49A3C080933AC1D457/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359903787/CBAFD4E88B79E21F8B7812B558C0458FA69082FE/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 7161e8 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.85390639 + posY: 1.231655 + posZ: 11.5644474 + rotX: -0.002898146 + rotY: 180.002716 + rotZ: -0.0005425437 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 153603 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1536': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359903282/DC0CAF4CDFB1E6F342FCBA49A3C080933AC1D457/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359903787/CBAFD4E88B79E21F8B7812B558C0458FA69082FE/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 7ead88 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -46.5051079 + posY: 1.504823 + posZ: -68.39559 + rotX: 0.0199059881 + rotY: 269.998016 + rotZ: 0.0159178954 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '1536': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359903282/DC0CAF4CDFB1E6F342FCBA49A3C080933AC1D457/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359903787/CBAFD4E88B79E21F8B7812B558C0458FA69082FE/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 153606 +- 153605 +- 153604 +- 153603 +Description: the Grand Oak Hotel +GMNotes: '' +GUID: c11ba5 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Act +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.68839979 + posY: 1.65349436 + posZ: -5.04850149 + rotX: 359.919739 + rotY: 269.997 + rotZ: 0.0168417841 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Grand Oak Hotel 4255b1/Deck Agenda 03fc1c.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Grand Oak Hotel 4255b1/Deck Agenda 03fc1c.yaml new file mode 100644 index 000000000..da6b96a90 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Grand Oak Hotel 4255b1/Deck Agenda 03fc1c.yaml @@ -0,0 +1,211 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 153710 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1132': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359903282/DC0CAF4CDFB1E6F342FCBA49A3C080933AC1D457/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359903787/CBAFD4E88B79E21F8B7812B558C0458FA69082FE/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: de6597 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -1.22677529 + posY: 1.23165727 + posZ: 12.4532185 + rotX: -0.00273672165 + rotY: 180.0 + rotZ: -0.000489113852 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 153709 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1132': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359903282/DC0CAF4CDFB1E6F342FCBA49A3C080933AC1D457/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359903787/CBAFD4E88B79E21F8B7812B558C0458FA69082FE/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 52d56f + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -1.01930726 + posY: 1.37667537 + posZ: 12.0253611 + rotX: 359.993164 + rotY: 180.0 + rotZ: 0.00157925463 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 153708 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1132': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359903282/DC0CAF4CDFB1E6F342FCBA49A3C080933AC1D457/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359903787/CBAFD4E88B79E21F8B7812B558C0458FA69082FE/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 0d80ff + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -1.3874588 + posY: 1.39415836 + posZ: 12.3474836 + rotX: -0.0007618145 + rotY: 180.0 + rotZ: -0.00046050208 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 153707 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1132': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359903282/DC0CAF4CDFB1E6F342FCBA49A3C080933AC1D457/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359903787/CBAFD4E88B79E21F8B7812B558C0458FA69082FE/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 43c1fc + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -1.068832 + posY: 1.38040292 + posZ: 12.6029949 + rotX: 9.467104e-05 + rotY: 180.000031 + rotZ: 0.000530014 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '1537': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359903282/DC0CAF4CDFB1E6F342FCBA49A3C080933AC1D457/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359903787/CBAFD4E88B79E21F8B7812B558C0458FA69082FE/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 153710 +- 153709 +- 153708 +- 153707 +Description: the Grand Oak Hotel +GMNotes: '' +GUID: 03fc1c +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Agenda +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.7246 + posY: 1.65513825 + posZ: 0.373299778 + rotX: 359.919739 + rotY: 269.999573 + rotZ: 0.0168381426 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Grand Oak Hotel 4255b1/Deck Encounter Deck 2fe933.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Grand Oak Hotel 4255b1/Deck Encounter Deck 2fe933.yaml new file mode 100644 index 000000000..0bb9f81fd --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Grand Oak Hotel 4255b1/Deck Encounter Deck 2fe933.yaml @@ -0,0 +1,1429 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 149227 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1133': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359901725/12540B9ECA8BEE2F461F1EB4C92601C0015D6D37/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359902486/A01E94E1619E84C6049A6A8ECF63ED0C603A8768/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: ec61c7 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.50638962 + posY: 1.03157043 + posZ: -2.86957431 + rotX: 0.00658587972 + rotY: 179.999985 + rotZ: 0.00204405724 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 149227 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1133': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359901725/12540B9ECA8BEE2F461F1EB4C92601C0015D6D37/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359902486/A01E94E1619E84C6049A6A8ECF63ED0C603A8768/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 7e2eb3 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.506387 + posY: 1.16678309 + posZ: -2.86957121 + rotX: -0.002945537 + rotY: 179.999954 + rotZ: -0.00204980583 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 149227 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1133': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359901725/12540B9ECA8BEE2F461F1EB4C92601C0015D6D37/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359902486/A01E94E1619E84C6049A6A8ECF63ED0C603A8768/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: c70ff7 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.222554 + posY: 1.19410157 + posZ: -2.86982942 + rotX: 0.00161296676 + rotY: 179.9998 + rotZ: 0.00065821514 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 149228 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1133': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359901725/12540B9ECA8BEE2F461F1EB4C92601C0015D6D37/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359902486/A01E94E1619E84C6049A6A8ECF63ED0C603A8768/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 76f270 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.45420623 + posY: 1.18046355 + posZ: -2.58827925 + rotX: 0.0008965994 + rotY: 179.999619 + rotZ: 3.10092728e-05 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 149228 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1133': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359901725/12540B9ECA8BEE2F461F1EB4C92601C0015D6D37/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359902486/A01E94E1619E84C6049A6A8ECF63ED0C603A8768/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: c94814 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.5466032 + posY: 1.17843139 + posZ: -2.86721253 + rotX: 0.00183026993 + rotY: 179.999435 + rotZ: 0.00136065786 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 149221 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1133': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359901725/12540B9ECA8BEE2F461F1EB4C92601C0015D6D37/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359902486/A01E94E1619E84C6049A6A8ECF63ED0C603A8768/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: d3d223 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.92218351 + posY: 1.031566 + posZ: -8.451393 + rotX: 0.00658094324 + rotY: 179.999847 + rotZ: 0.00203872868 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 149221 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1133': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359901725/12540B9ECA8BEE2F461F1EB4C92601C0015D6D37/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359902486/A01E94E1619E84C6049A6A8ECF63ED0C603A8768/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: af34b1 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.92218351 + posY: 1.16677868 + posZ: -8.451396 + rotX: -0.00294859055 + rotY: 179.9998 + rotZ: -0.00206431863 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 149221 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1133': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359901725/12540B9ECA8BEE2F461F1EB4C92601C0015D6D37/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359902486/A01E94E1619E84C6049A6A8ECF63ED0C603A8768/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 7a97b4 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.92217827 + posY: 1.19584489 + posZ: -8.451384 + rotX: -0.0006030203 + rotY: 179.999878 + rotZ: -0.000368865265 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 149221 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1133': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359901725/12540B9ECA8BEE2F461F1EB4C92601C0015D6D37/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359902486/A01E94E1619E84C6049A6A8ECF63ED0C603A8768/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: c3bd45 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.92217779 + posY: 1.18492067 + posZ: -8.451384 + rotX: -0.0005079897 + rotY: 179.999878 + rotZ: -0.000294602854 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 149221 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1133': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359901725/12540B9ECA8BEE2F461F1EB4C92601C0015D6D37/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359902486/A01E94E1619E84C6049A6A8ECF63ED0C603A8768/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 391dca + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.92217827 + posY: 1.18332171 + posZ: -8.451384 + rotX: -0.000459735136 + rotY: 179.999878 + rotZ: -0.000292112672 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 149221 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1133': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359901725/12540B9ECA8BEE2F461F1EB4C92601C0015D6D37/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359902486/A01E94E1619E84C6049A6A8ECF63ED0C603A8768/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: cf31ef + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.80414224 + posY: 1.1810993 + posZ: -8.451311 + rotX: 0.00136093318 + rotY: 179.999969 + rotZ: 0.0016031136 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 149220 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1133': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359901725/12540B9ECA8BEE2F461F1EB4C92601C0015D6D37/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359902486/A01E94E1619E84C6049A6A8ECF63ED0C603A8768/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: a629bc + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.38946986 + posY: 1.03157043 + posZ: -9.590936 + rotX: 0.00658348436 + rotY: 179.999878 + rotZ: 0.00204448053 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 149220 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1133': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359901725/12540B9ECA8BEE2F461F1EB4C92601C0015D6D37/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359902486/A01E94E1619E84C6049A6A8ECF63ED0C603A8768/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 68771f + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.38947153 + posY: 1.166783 + posZ: -9.59093952 + rotX: -0.00294361636 + rotY: 179.999847 + rotZ: -0.00205432018 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 149220 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1133': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359901725/12540B9ECA8BEE2F461F1EB4C92601C0015D6D37/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359902486/A01E94E1619E84C6049A6A8ECF63ED0C603A8768/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 26757d + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.2247746 + posY: 1.19407427 + posZ: -9.693965 + rotX: -0.0002861812 + rotY: 179.999619 + rotZ: -0.002160187 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 149226 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1133': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359901725/12540B9ECA8BEE2F461F1EB4C92601C0015D6D37/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359902486/A01E94E1619E84C6049A6A8ECF63ED0C603A8768/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 9133b1 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.255755 + posY: 1.031566 + posZ: -9.658044 + rotX: 0.00658163056 + rotY: 179.999878 + rotZ: 0.00204170262 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 149226 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1133': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359901725/12540B9ECA8BEE2F461F1EB4C92601C0015D6D37/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359902486/A01E94E1619E84C6049A6A8ECF63ED0C603A8768/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 42533a + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.25575614 + posY: 1.16677868 + posZ: -9.658048 + rotX: -0.00294683431 + rotY: 179.999832 + rotZ: -0.00205965317 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 149226 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1133': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359901725/12540B9ECA8BEE2F461F1EB4C92601C0015D6D37/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359902486/A01E94E1619E84C6049A6A8ECF63ED0C603A8768/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: c06704 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.25575018 + posY: 1.1958524 + posZ: -9.658035 + rotX: -0.0005988336 + rotY: 179.999908 + rotZ: -0.0003520215 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 149226 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1133': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359901725/12540B9ECA8BEE2F461F1EB4C92601C0015D6D37/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359902486/A01E94E1619E84C6049A6A8ECF63ED0C603A8768/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: deca8b + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.55839014 + posY: 1.18038476 + posZ: -8.919958 + rotX: 0.0003601881 + rotY: 179.999878 + rotZ: 0.005308709 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 149229 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1133': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359901725/12540B9ECA8BEE2F461F1EB4C92601C0015D6D37/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359902486/A01E94E1619E84C6049A6A8ECF63ED0C603A8768/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 6d1f73 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.51949883 + posY: 1.24648166 + posZ: -2.72352171 + rotX: -0.0028182182 + rotY: 179.991623 + rotZ: 0.000361284037 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 149229 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1133': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359901725/12540B9ECA8BEE2F461F1EB4C92601C0015D6D37/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359902486/A01E94E1619E84C6049A6A8ECF63ED0C603A8768/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 5516bd + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.31190872 + posY: 1.25616562 + posZ: -2.39456582 + rotX: 0.000432952133 + rotY: 179.999878 + rotZ: -0.000507054268 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 149225 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1133': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359901725/12540B9ECA8BEE2F461F1EB4C92601C0015D6D37/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359902486/A01E94E1619E84C6049A6A8ECF63ED0C603A8768/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: fc2ebf + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.27502322 + posY: 1.03166676 + posZ: -8.519417 + rotX: 0.00189098087 + rotY: 179.999924 + rotZ: 0.000634910655 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 149225 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1133': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359901725/12540B9ECA8BEE2F461F1EB4C92601C0015D6D37/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359902486/A01E94E1619E84C6049A6A8ECF63ED0C603A8768/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: b5571e + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.27823162 + posY: 1.16723657 + posZ: -8.4532795 + rotX: 0.013444419 + rotY: 179.999725 + rotZ: -0.000782830233 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 149225 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1133': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359901725/12540B9ECA8BEE2F461F1EB4C92601C0015D6D37/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359902486/A01E94E1619E84C6049A6A8ECF63ED0C603A8768/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 7e646d + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.27823257 + posY: 1.19585347 + posZ: -8.453256 + rotX: -0.000580101449 + rotY: 179.999939 + rotZ: -0.0002911633 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 149225 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1133': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359901725/12540B9ECA8BEE2F461F1EB4C92601C0015D6D37/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359902486/A01E94E1619E84C6049A6A8ECF63ED0C603A8768/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 5a5a1e + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.58693933 + posY: 1.18042624 + posZ: -8.33871651 + rotX: 0.00197472982 + rotY: 180.0001 + rotZ: 0.004615684 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 149224 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1133': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359901725/12540B9ECA8BEE2F461F1EB4C92601C0015D6D37/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359902486/A01E94E1619E84C6049A6A8ECF63ED0C603A8768/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: d36ea7 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.3015852 + posY: 1.30446267 + posZ: -2.68230534 + rotX: -0.00156480609 + rotY: 179.996872 + rotZ: -0.000327024231 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 149224 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1133': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359901725/12540B9ECA8BEE2F461F1EB4C92601C0015D6D37/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359902486/A01E94E1619E84C6049A6A8ECF63ED0C603A8768/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: '062405' + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.098908 + posY: 1.31409025 + posZ: -2.67016149 + rotX: -0.00042069066 + rotY: 179.999878 + rotZ: -0.000359103433 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 149218 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1133': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359901725/12540B9ECA8BEE2F461F1EB4C92601C0015D6D37/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359902486/A01E94E1619E84C6049A6A8ECF63ED0C603A8768/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 3604d9 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 4.410786 + posY: 1.03156614 + posZ: -8.74657249 + rotX: 0.00658458238 + rotY: 179.999878 + rotZ: 0.00203709421 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 149218 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1133': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359901725/12540B9ECA8BEE2F461F1EB4C92601C0015D6D37/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359902486/A01E94E1619E84C6049A6A8ECF63ED0C603A8768/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: df4fea + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 4.410782 + posY: 1.1667788 + posZ: -8.746566 + rotX: -0.00295050116 + rotY: 179.999847 + rotZ: -0.00206634472 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 149218 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1133': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359901725/12540B9ECA8BEE2F461F1EB4C92601C0015D6D37/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359902486/A01E94E1619E84C6049A6A8ECF63ED0C603A8768/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 4872de + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 4.41078 + posY: 1.1958493 + posZ: -8.746562 + rotX: -0.000598325569 + rotY: 179.9999 + rotZ: -0.0003554773 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 149218 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1133': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359901725/12540B9ECA8BEE2F461F1EB4C92601C0015D6D37/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359902486/A01E94E1619E84C6049A6A8ECF63ED0C603A8768/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: c21c7b + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 4.287032 + posY: 1.18047464 + posZ: -8.843272 + rotX: 0.0008944635 + rotY: 180.0 + rotZ: 0.000167830411 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 149223 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1133': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359901725/12540B9ECA8BEE2F461F1EB4C92601C0015D6D37/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359902486/A01E94E1619E84C6049A6A8ECF63ED0C603A8768/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: be7f6b + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 4.91735029 + posY: 1.0315665 + posZ: -8.282526 + rotX: 0.006570025 + rotY: 179.999878 + rotZ: 0.00203486625 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 149223 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1133': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359901725/12540B9ECA8BEE2F461F1EB4C92601C0015D6D37/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359902486/A01E94E1619E84C6049A6A8ECF63ED0C603A8768/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 7849ff + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 4.917345 + posY: 1.16677892 + posZ: -8.282519 + rotX: -0.00294342753 + rotY: 179.999863 + rotZ: -0.00204985728 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 149223 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1133': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359901725/12540B9ECA8BEE2F461F1EB4C92601C0015D6D37/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359902486/A01E94E1619E84C6049A6A8ECF63ED0C603A8768/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 8ece8b + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 4.98422575 + posY: 1.19409609 + posZ: -7.59373474 + rotX: 0.001155377 + rotY: 179.9999 + rotZ: 0.001328658 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '1492': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359901725/12540B9ECA8BEE2F461F1EB4C92601C0015D6D37/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359902486/A01E94E1619E84C6049A6A8ECF63ED0C603A8768/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 149227 +- 149227 +- 149227 +- 149228 +- 149228 +- 149221 +- 149221 +- 149221 +- 149221 +- 149221 +- 149221 +- 149220 +- 149220 +- 149220 +- 149226 +- 149226 +- 149226 +- 149226 +- 149229 +- 149229 +- 149225 +- 149225 +- 149225 +- 149225 +- 149224 +- 149224 +- 149218 +- 149218 +- 149218 +- 149218 +- 149223 +- 149223 +- 149223 +Description: the Grand Oak Hotel +GMNotes: '' +GUID: 2fe933 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Encounter Deck +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.9273 + posY: 1.78769779 + posZ: 5.75710058 + rotX: 359.919739 + rotY: 269.985962 + rotZ: 180.016846 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Grand Oak Hotel 4255b1/Deck Set Aside b57f89.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Grand Oak Hotel 4255b1/Deck Set Aside b57f89.yaml new file mode 100644 index 000000000..243717352 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Grand Oak Hotel 4255b1/Deck Set Aside b57f89.yaml @@ -0,0 +1,379 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 149201 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1133': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359901725/12540B9ECA8BEE2F461F1EB4C92601C0015D6D37/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359902486/A01E94E1619E84C6049A6A8ECF63ED0C603A8768/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 1159bc + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.467356 + posY: 1.031566 + posZ: -7.8237195 + rotX: 0.0065815337 + rotY: 179.999969 + rotZ: 0.00204203348 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 149201 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1133': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359901725/12540B9ECA8BEE2F461F1EB4C92601C0015D6D37/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359902486/A01E94E1619E84C6049A6A8ECF63ED0C603A8768/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 746eda + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.46735764 + posY: 1.16677868 + posZ: -7.823723 + rotX: -0.00294763548 + rotY: 179.999908 + rotZ: -0.00205965154 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 149201 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1133': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359901725/12540B9ECA8BEE2F461F1EB4C92601C0015D6D37/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359902486/A01E94E1619E84C6049A6A8ECF63ED0C603A8768/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 8faa32 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.46735215 + posY: 1.19584489 + posZ: -7.82371044 + rotX: -0.000602018961 + rotY: 179.999985 + rotZ: -0.000360962527 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 149201 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1133': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359901725/12540B9ECA8BEE2F461F1EB4C92601C0015D6D37/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359902486/A01E94E1619E84C6049A6A8ECF63ED0C603A8768/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 70a1ff + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.67949748 + posY: 1.18045068 + posZ: -7.777471 + rotX: 0.00157223362 + rotY: 180.000153 + rotZ: 0.00287939562 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 149219 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1133': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359901725/12540B9ECA8BEE2F461F1EB4C92601C0015D6D37/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359902486/A01E94E1619E84C6049A6A8ECF63ED0C603A8768/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: ae7612 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.89560843 + posY: 1.0316577 + posZ: -5.728371 + rotX: 0.00222108327 + rotY: 179.999924 + rotZ: 0.000773706 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 149222 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1133': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359901725/12540B9ECA8BEE2F461F1EB4C92601C0015D6D37/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359902486/A01E94E1619E84C6049A6A8ECF63ED0C603A8768/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 47dcf8 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.72472978 + posY: 1.17658663 + posZ: -5.72118139 + rotX: 0.008685058 + rotY: 179.999985 + rotZ: 0.007016918 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 149205 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1133': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359901725/12540B9ECA8BEE2F461F1EB4C92601C0015D6D37/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359902486/A01E94E1619E84C6049A6A8ECF63ED0C603A8768/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 7c8143 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: the Missing Room + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.86017251 + posY: 1.19405425 + posZ: -5.82940865 + rotX: -0.000368644745 + rotY: 179.999969 + rotZ: -0.0007509826 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 149202 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1133': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359901725/12540B9ECA8BEE2F461F1EB4C92601C0015D6D37/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359902486/A01E94E1619E84C6049A6A8ECF63ED0C603A8768/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: '659144' + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: William Hebb + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.306454867 + posY: 1.1923933 + posZ: -0.910322 + rotX: -0.000445154583 + rotY: 179.998962 + rotZ: 0.000359698519 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '1492': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359901725/12540B9ECA8BEE2F461F1EB4C92601C0015D6D37/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359902486/A01E94E1619E84C6049A6A8ECF63ED0C603A8768/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 149201 +- 149201 +- 149201 +- 149201 +- 149219 +- 149222 +- 149205 +- 149202 +Description: the Grand Oak Hotel +GMNotes: '' +GUID: b57f89 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Set Aside +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 1.69650054 + posY: 1.636754 + posZ: 14.2789011 + rotX: 359.95517 + rotY: 224.997971 + rotZ: 0.0686541349 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Grand Oak Hotel 4255b1/Deck Setup bfeb71.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Grand Oak Hotel 4255b1/Deck Setup bfeb71.yaml new file mode 100644 index 000000000..85b197a02 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Grand Oak Hotel 4255b1/Deck Setup bfeb71.yaml @@ -0,0 +1,258 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 260834 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2608': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359901725/12540B9ECA8BEE2F461F1EB4C92601C0015D6D37/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359902486/A01E94E1619E84C6049A6A8ECF63ED0C603A8768/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: '835479' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -32.8901863 + posY: 1.51334071 + posZ: -59.29526 + rotX: 0.0117040845 + rotY: 269.995026 + rotZ: 180.018814 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 260833 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2608': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359901725/12540B9ECA8BEE2F461F1EB4C92601C0015D6D37/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359902486/A01E94E1619E84C6049A6A8ECF63ED0C603A8768/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: ac3584 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -32.78517 + posY: 1.51569676 + posZ: -59.15755 + rotX: 0.0155765265 + rotY: 269.9976 + rotZ: 179.9561 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 260832 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2608': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359901725/12540B9ECA8BEE2F461F1EB4C92601C0015D6D37/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359902486/A01E94E1619E84C6049A6A8ECF63ED0C603A8768/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: fcfb32 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -32.8322868 + posY: 1.5289464 + posZ: -59.37108 + rotX: 0.01578279 + rotY: 270.000061 + rotZ: 180.012131 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 260831 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2608': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359901725/12540B9ECA8BEE2F461F1EB4C92601C0015D6D37/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359902486/A01E94E1619E84C6049A6A8ECF63ED0C603A8768/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: '929838' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -10.1704063 + posY: 1.8162719 + posZ: -0.897161961 + rotX: 359.938171 + rotY: 270.000183 + rotZ: 0.0188874267 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 260830 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2608': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359901725/12540B9ECA8BEE2F461F1EB4C92601C0015D6D37/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359902486/A01E94E1619E84C6049A6A8ECF63ED0C603A8768/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 0409b6 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -9.846546 + posY: 1.81399119 + posZ: -0.5109938 + rotX: 359.936584 + rotY: 269.9998 + rotZ: 0.0137835173 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2608': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359901725/12540B9ECA8BEE2F461F1EB4C92601C0015D6D37/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359902486/A01E94E1619E84C6049A6A8ECF63ED0C603A8768/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 260834 +- 260833 +- 260832 +- 260831 +- 260830 +Description: '' +GMNotes: '' +GUID: bfeb71 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Setup +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -9.653797 + posY: 1.66535735 + posZ: -0.6312993 + rotX: 359.9201 + rotY: 269.999756 + rotZ: 0.0168672372 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Grand Oak Hotel 4255b1/Deck locations Set Aside e9ae84.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Grand Oak Hotel 4255b1/Deck locations Set Aside e9ae84.yaml new file mode 100644 index 000000000..bf253d591 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Grand Oak Hotel 4255b1/Deck locations Set Aside e9ae84.yaml @@ -0,0 +1,211 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 149204 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1133': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359901725/12540B9ECA8BEE2F461F1EB4C92601C0015D6D37/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359902486/A01E94E1619E84C6049A6A8ECF63ED0C603A8768/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 7b0c1a + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.65941358 + posY: 1.18319976 + posZ: -2.29165936 + rotX: 0.0001640227 + rotY: 180.001114 + rotZ: 179.9969 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 149206 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1133': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359901725/12540B9ECA8BEE2F461F1EB4C92601C0015D6D37/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359902486/A01E94E1619E84C6049A6A8ECF63ED0C603A8768/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: d770f3 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.98946834 + posY: 1.23452568 + posZ: 4.04307127 + rotX: -0.0006574887 + rotY: 179.999435 + rotZ: 180.000381 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 149212 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1133': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359901725/12540B9ECA8BEE2F461F1EB4C92601C0015D6D37/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359902486/A01E94E1619E84C6049A6A8ECF63ED0C603A8768/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 2dff06 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -6.01220226 + posY: 1.38403726 + posZ: 5.179458 + rotX: 359.9932 + rotY: 179.999527 + rotZ: 180.0034 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 149213 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1133': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359901725/12540B9ECA8BEE2F461F1EB4C92601C0015D6D37/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359902486/A01E94E1619E84C6049A6A8ECF63ED0C603A8768/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 4499d8 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -6.01221132 + posY: 1.2345258 + posZ: 5.179441 + rotX: -0.0006560285 + rotY: 179.999557 + rotZ: 180.000381 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '1492': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359901725/12540B9ECA8BEE2F461F1EB4C92601C0015D6D37/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359902486/A01E94E1619E84C6049A6A8ECF63ED0C603A8768/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 149204 +- 149206 +- 149212 +- 149213 +Description: '' +GMNotes: '' +GUID: e9ae84 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: locations Set Aside +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -4.2177 + posY: 1.66974509 + posZ: 14.5874023 + rotX: 359.919739 + rotY: 269.985718 + rotZ: 180.016846 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Labyrinths of Lunacy 4c173f.ttslua b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Labyrinths of Lunacy 4c173f.ttslua new file mode 100644 index 000000000..46067f58e --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Labyrinths of Lunacy 4c173f.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.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.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 791837/Custom_Model_Bag The Labyrinths of Lunacy 4c173f.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Labyrinths of Lunacy 4c173f.yaml new file mode 100644 index 000000000..c748e2d26 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Labyrinths of Lunacy 4c173f.yaml @@ -0,0 +1,68 @@ +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 Labyrinths of Lunacy 4c173f/Bag Single Group B 14808b.yaml' +- !include 'Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group C 76b476.yaml' +- !include 'Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group A 2ea2a2.yaml' +- !include 'Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group A 79b534.yaml' +- !include 'Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group B c7c4c1.yaml' +- !include 'Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group C c352ac.yaml' +- !include 'Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Custom_Tile The Labyrinths + of Lunacy f4dcee.yaml' +- !include 'Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Tablet Rules 5ef0ce.yaml' +CustomMesh: + CastShadows: true + ColliderURL: '' + Convex: true + DiffuseURL: http://cloud-3.steamusercontent.com/ugc/798737729142912455/15B44AE6487546376FD9DED67A1BC9D613163511/ + MaterialIndex: 3 + MeshURL: https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj + NormalURL: '' + TypeIndex: 6 +Description: Beyond the Veil +GMNotes: '' +GUID: 4c173f +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Model_Bag The Labyrinths of Lunacy 4c173f.ttslua' +LuaScriptState: '{"ml":{"14808b":{"lock":false,"pos":{"x":9.7604,"y":1.2864,"z":11.7484},"rot":{"x":0.0799,"y":89.9983,"z":359.9831}},"2ea2a2":{"lock":false,"pos":{"x":9.5356,"y":1.2881,"z":16.2747},"rot":{"x":0.0799,"y":89.9969,"z":359.9831}},"5ef0ce":{"lock":false,"pos":{"x":-8.6494,"y":1.7726,"z":-27.1446},"rot":{"x":359.9201,"y":269.9999,"z":0.0169}},"76b476":{"lock":false,"pos":{"x":9.7067,"y":1.2852,"z":7.2515},"rot":{"x":0.0799,"y":89.9911,"z":359.9831}},"79b534":{"lock":false,"pos":{"x":10.0441,"y":1.2826,"z":0.5236},"rot":{"x":0.0799,"y":89.9995,"z":359.9831}},"c352ac":{"lock":false,"pos":{"x":9.4217,"y":1.2811,"z":-7.7254},"rot":{"x":0.0799,"y":89.9979,"z":359.9831}},"c7c4c1":{"lock":false,"pos":{"x":9.6417,"y":1.2822,"z":-3.4464},"rot":{"x":0.0799,"y":89.991,"z":359.9831}},"f4dcee":{"lock":false,"pos":{"x":-3.7547,"y":1.5823,"z":-14.8894},"rot":{"x":359.9197,"y":270.0037,"z":0.0168}}}}' +MaterialIndex: -1 +MeshIndex: -1 +Name: Custom_Model_Bag +Nickname: The Labyrinths of Lunacy +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 77.73716 + posY: 8.690302 + posZ: -44.0936546 + rotX: -9.841099e-07 + rotY: 270.0 + rotZ: -3.35735e-06 + scaleX: 2.21 + scaleY: 0.2 + scaleZ: 2.46 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group A 79b534.ttslua b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group A 79b534.ttslua new file mode 100644 index 000000000..4acf9ea11 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group A 79b534.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 791837/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group A 79b534.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group A 79b534.yaml new file mode 100644 index 000000000..be53736fc --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group A 79b534.yaml @@ -0,0 +1,44 @@ +Autoraise: true +ColorDiffuse: + b: 0.0 + g: 0.366520882 + r: 0.7058823 +ContainedObjects: +- !include 'Bag Epic Group A 79b534/Custom_Model_Bag Set-aside 17a731.yaml' +- !include 'Bag Epic Group A 79b534/Deck Encounter Deck e82e35.yaml' +- !include 'Bag Epic Group A 79b534/Deck Agenda Deck bca98b.yaml' +- !include 'Bag Epic Group A 79b534/Deck Act Deck 81c2f9.yaml' +- !include 'Bag Epic Group A 79b534/Card Scenario c69095.yaml' +- !include 'Bag Epic Group A 79b534/Deck Story Cards 0b6efa.yaml' +- !include 'Bag Epic Group A 79b534/Card Eixodolon''s Note 817446.yaml' +- !include 'Bag Epic Group A 79b534/Deck Chamber of Secrets 64e243.yaml' +- !include 'Bag Epic Group A 79b534/Card Scenario b711b7.yaml' +Description: The Labyrinths of Lunacy +GMNotes: '' +GUID: 79b534 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Bag Epic Group A 79b534.ttslua' +LuaScriptState: '{"ml":{"0b6efa":{"lock":false,"pos":{"x":-11.5922,"y":1.6725,"z":7.5505},"rot":{"x":359.9201,"y":269.9959,"z":0.0169}},"17a731":{"lock":false,"pos":{"x":1.6955,"y":1.5583,"z":14.2789},"rot":{"x":359.9551,"y":224.998,"z":0.0687}},"64e243":{"lock":false,"pos":{"x":-17.12,"y":1.6766,"z":-0.03},"rot":{"x":359.9201,"y":270.0001,"z":0.0169}},"817446":{"lock":false,"pos":{"x":-17.12,"y":1.6793,"z":7.57},"rot":{"x":359.9201,"y":270.0002,"z":0.0169}},"81c2f9":{"lock":false,"pos":{"x":-2.6885,"y":1.655,"z":-5.0485},"rot":{"x":0.0169,"y":179.9874,"z":0.0803}},"b711b7":{"lock":false,"pos":{"x":-50.9244,"y":1.7266,"z":8.1784},"rot":{"x":359.9201,"y":269.9883,"z":0.0169}},"bca98b":{"lock":false,"pos":{"x":-2.7247,"y":1.6566,"z":0.3733},"rot":{"x":0.0168,"y":180.0032,"z":0.0803}},"c69095":{"lock":false,"pos":{"x":-3.956,"y":1.6556,"z":-10.4412},"rot":{"x":359.9197,"y":269.9883,"z":0.0169}},"e82e35":{"lock":false,"pos":{"x":-3.9275,"y":1.7397,"z":5.7571},"rot":{"x":359.9197,"y":270,"z":180.0168}}}}' +MaterialIndex: -1 +MeshIndex: -1 +Name: Bag +Nickname: Epic Group A +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 10.0441351 + posY: 1.28264654 + posZ: 0.5235799 + rotX: 0.07993185 + rotY: 89.99948 + rotZ: 359.9831 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group A 79b534/Card Eixodolon's Note 817446.yaml new file mode 100644 index 000000000..e4d7f19ce --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group A 79b534/Card Eixodolon's Note 817446.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 265100 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false +Description: Item. Script. +GMNotes: '' +GUID: '817446' +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Eixodolon's Note +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -17.1200314 + posY: 1.67931569 + posZ: 7.56999826 + rotX: 359.9201 + rotY: 270.000183 + rotZ: 0.0168761835 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group A 79b534/Card Scenario b711b7.yaml new file mode 100644 index 000000000..daf997242 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group A 79b534/Card Scenario b711b7.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 12300 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: The Labyrinths of Lunacy Epic Group A +GMNotes: '' +GUID: b711b7 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Scenario +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -50.9243851 + posY: 1.72662532 + posZ: 8.17843151 + rotX: 359.9201 + rotY: 269.988281 + rotZ: 0.016894618 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group A 79b534/Card Scenario c69095.yaml new file mode 100644 index 000000000..b388f8497 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group A 79b534/Card Scenario c69095.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 12300 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: The Labyrinths of Lunacy Epic Group A +GMNotes: '' +GUID: c69095 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Scenario +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.95599461 + posY: 1.65564823 + posZ: -10.4411516 + rotX: 359.919739 + rotY: 269.988281 + rotZ: 0.0168577228 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group A 79b534/Custom_Model_Bag Set-aside 17a731.yaml new file mode 100644 index 000000000..e0c8518f0 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group A 79b534/Custom_Model_Bag Set-aside 17a731.yaml @@ -0,0 +1,65 @@ +Autoraise: true +ColorDiffuse: + b: 0.02148666 + g: 0.00100758043 + r: 0.02148666 +ContainedObjects: +- !include 'Custom_Model_Bag Set-aside 17a731/Bag Set-Aside Locations 372583.yaml' +- !include 'Custom_Model_Bag Set-aside 17a731/Card Mysterious Syringe 817446.yaml' +- !include 'Custom_Model_Bag Set-aside 17a731/Deck Faceless Abductors ffcb3e.yaml' +- !include 'Custom_Model_Bag Set-aside 17a731/Card Eixodolon''s Pet 817446.yaml' +- !include 'Custom_Model_Bag Set-aside 17a731/Card Rot Diagram 817446.yaml' +- !include 'Custom_Model_Bag Set-aside 17a731/Card Hunger Diagram a5e76a.yaml' +- !include 'Custom_Model_Bag Set-aside 17a731/Card Eixodolon 817446.yaml' +- !include 'Custom_Model_Bag Set-aside 17a731/Card Key of Mysteries 7399a5.yaml' +- !include 'Custom_Model_Bag Set-aside 17a731/Card Decay Diagram 817446.yaml' +- !include 'Custom_Model_Bag Set-aside 17a731/Card The Jailor 817446.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 Labyrinths of Lunacy Epic Group A +GMNotes: '' +GUID: 17a731 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +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.69546509 + posY: 1.55831778 + posZ: 14.278883 + rotX: 359.955139 + rotY: 224.998016 + rotZ: 0.0686741546 + scaleX: 2.0 + scaleY: 2.0 + scaleZ: 2.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/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 new file mode 100644 index 000000000..8844177d0 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/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 @@ -0,0 +1,45 @@ +Autoraise: true +ColorDiffuse: + b: 0.0 + g: 0.366520882 + r: 0.7058823 +ContainedObjects: +- !include 'Bag Set-Aside Locations 372583/Card Chamber of Poison 8d4c1e.yaml' +- !include 'Bag Set-Aside Locations 372583/Card Chamber of Night 803008.yaml' +- !include 'Bag Set-Aside Locations 372583/Card Abandoned Warehouse 774c0b.yaml' +- !include 'Bag Set-Aside Locations 372583/Card Chamber of Rot 76a7f5.yaml' +- !include 'Bag Set-Aside Locations 372583/Card Chamber of Decay 839314.yaml' +- !include 'Bag Set-Aside Locations 372583/Card Chamber of Hunger 945939.yaml' +- !include 'Bag Set-Aside Locations 372583/Card Chamber of Regret 6c7570.yaml' +- !include 'Bag Set-Aside Locations 372583/Card Chamber of Rain aa6ad6.yaml' +- !include 'Bag Set-Aside Locations 372583/Card Chamber of Sorrows 6a0757.yaml' +- !include 'Bag Set-Aside Locations 372583/Deck Labyrinthine Halls 0d1a68.yaml' +Description: '' +GMNotes: '' +GUID: '372583' +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +MeshIndex: -1 +Name: Bag +Nickname: Set-Aside Locations +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 30.5979042 + posY: 3.30160618 + posZ: -8.426154 + rotX: 359.989716 + rotY: 0.0003020338 + rotZ: 359.9392 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/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 new file mode 100644 index 000000000..719a9a662 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/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 @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 12331 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Distortion. +GMNotes: '' +GUID: 774c0b +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Abandoned Warehouse +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 23.2025661 + posY: 3.50232649 + posZ: -3.019861 + rotX: 359.9201 + rotY: 270.0 + rotZ: 0.01686962 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/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 new file mode 100644 index 000000000..29099ca03 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/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 @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 12328 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Distortion. +GMNotes: '' +GUID: '839314' +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Chamber of Decay +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.2669258 + posY: 3.50696087 + posZ: -5.912597 + rotX: 359.920135 + rotY: 269.999847 + rotZ: 0.0168671273 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/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 new file mode 100644 index 000000000..d9dfa2b50 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/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 @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 12327 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Distortion. +GMNotes: '' +GUID: '945939' +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Chamber of Hunger +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 22.7167625 + posY: 3.57708764 + posZ: -15.5725346 + rotX: 2.78019428 + rotY: 270.0193 + rotZ: 0.0171191022 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/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 new file mode 100644 index 000000000..2fed896b1 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/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 @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 12321 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Prison. +GMNotes: '' +GUID: '803008' +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Chamber of Night +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 23.0585518 + posY: 3.50180435 + posZ: -5.47366333 + rotX: 359.920135 + rotY: 270.00238 + rotZ: 0.01686782 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/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 new file mode 100644 index 000000000..47951e574 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/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 @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 12330 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 8d4c1e +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Chamber of Poison +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 18.9456825 + posY: 3.53806615 + posZ: -10.7097235 + rotX: 357.47168 + rotY: 270.0486 + rotZ: 358.559357 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/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 new file mode 100644 index 000000000..657833614 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/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 @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 12318 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Distortion. +GMNotes: '' +GUID: aa6ad6 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Chamber of Rain +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 23.2458763 + posY: 3.58624768 + posZ: -10.6953812 + rotX: 359.9197 + rotY: 269.981873 + rotZ: 355.421875 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/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 new file mode 100644 index 000000000..5608167a7 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/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 @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 12323 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Distortion. +GMNotes: '' +GUID: 6c7570 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Chamber of Regret +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 18.9640083 + posY: 3.50476837 + posZ: -14.7932949 + rotX: 359.920135 + rotY: 269.999878 + rotZ: 0.0168708712 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/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 new file mode 100644 index 000000000..2d6a35c59 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/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 @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 12329 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Distortion. +GMNotes: '' +GUID: 76a7f5 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Chamber of Rot +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 22.1226082 + posY: 3.50102854 + posZ: -12.52452 + rotX: 359.920166 + rotY: 269.9875 + rotZ: 0.016468592 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/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 new file mode 100644 index 000000000..15e741ed5 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/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 @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 12319 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Prison. +GMNotes: '' +GUID: 6a0757 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Chamber of Sorrows +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 25.64963 + posY: 3.49517441 + posZ: -15.71666 + rotX: 359.920258 + rotY: 269.999969 + rotZ: 0.0165826511 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/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 new file mode 100644 index 000000000..505f94802 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/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 @@ -0,0 +1,172 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 12324 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: d13692 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Labyrinthine Halls + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 25.0891647 + posY: 1.51714706 + posZ: -4.625513 + rotX: 359.931458 + rotY: 269.9495 + rotZ: 0.03132211 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12326 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: '323435' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Labyrinthine Halls + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 24.8545074 + posY: 1.67247283 + posZ: -4.92986155 + rotX: 359.931824 + rotY: 269.94278 + rotZ: 0.7975825 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12325 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 5eb4c2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Labyrinthine Halls + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 24.842392 + posY: 1.6752702 + posZ: -4.79064369 + rotX: 359.918854 + rotY: 270.0017 + rotZ: 0.0166205931 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 12324 +- 12326 +- 12325 +Description: '' +GMNotes: '' +GUID: 0d1a68 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Labyrinthine Halls +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 22.5693073 + posY: 3.50136375 + posZ: -7.72521448 + rotX: 359.920135 + rotY: 269.9792 + rotZ: 0.01690108 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group A 79b534/Custom_Model_Bag Set-aside 17a731/Card Decay Diagram 817446.yaml new file mode 100644 index 000000000..346b40727 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group A 79b534/Custom_Model_Bag Set-aside 17a731/Card Decay Diagram 817446.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 265107 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false +Description: Item. Script. +GMNotes: '' +GUID: '817446' +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Decay Diagram +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 116.121185 + posY: 2.42614365 + posZ: -44.66714 + rotX: 359.987427 + rotY: 269.9953 + rotZ: 359.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group A 79b534/Custom_Model_Bag Set-aside 17a731/Card Eixodolon 817446.yaml new file mode 100644 index 000000000..09022be98 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group A 79b534/Custom_Model_Bag Set-aside 17a731/Card Eixodolon 817446.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 265109 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false +Description: Your Anguish Is My Power +GMNotes: '' +GUID: '817446' +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Eixodolon +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 114.89135 + posY: 2.4002223 + posZ: -48.85682 + rotX: 359.987427 + rotY: 270.0003 + rotZ: 359.984528 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/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 new file mode 100644 index 000000000..213fddfe3 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/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 @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 265110 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false +Description: You Are Not Its First Victim, Or Its Last +GMNotes: '' +GUID: '817446' +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Eixodolon's Pet +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 111.990471 + posY: 2.39991117 + posZ: -46.31781 + rotX: 359.987427 + rotY: 269.995331 + rotZ: 359.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group A 79b534/Custom_Model_Bag Set-aside 17a731/Card Hunger Diagram a5e76a.yaml new file mode 100644 index 000000000..cb492bd2b --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group A 79b534/Custom_Model_Bag Set-aside 17a731/Card Hunger Diagram a5e76a.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 265105 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false +Description: Item. Script. +GMNotes: '' +GUID: a5e76a +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Hunger Diagram +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 112.382164 + posY: 2.426502 + posZ: -42.56695 + rotX: 359.987427 + rotY: 269.9953 + rotZ: 359.984528 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/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 new file mode 100644 index 000000000..e78502e5d --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/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 @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 265101 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false +Description: Item. Key. +GMNotes: '' +GUID: 7399a5 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Key of Mysteries +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 115.1883 + posY: 2.42625546 + posZ: -44.3115044 + rotX: 359.987427 + rotY: 270.0002 + rotZ: 359.984528 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group A 79b534/Custom_Model_Bag Set-aside 17a731/Card Mysterious Syringe 817446.yaml new file mode 100644 index 000000000..630901509 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group A 79b534/Custom_Model_Bag Set-aside 17a731/Card Mysterious Syringe 817446.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 265102 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false +Description: Item. +GMNotes: '' +GUID: '817446' +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Mysterious Syringe +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 108.496719 + posY: 2.42720366 + posZ: -42.003212 + rotX: 359.987427 + rotY: 270.000275 + rotZ: 359.984528 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group A 79b534/Custom_Model_Bag Set-aside 17a731/Card Rot Diagram 817446.yaml new file mode 100644 index 000000000..aef719782 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group A 79b534/Custom_Model_Bag Set-aside 17a731/Card Rot Diagram 817446.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 265103 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false +Description: Item. Script. +GMNotes: '' +GUID: '817446' +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Rot Diagram +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 111.723267 + posY: 2.42690873 + posZ: -43.54012 + rotX: 359.987427 + rotY: 269.99527 + rotZ: 359.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group A 79b534/Custom_Model_Bag Set-aside 17a731/Card The Jailor 817446.yaml new file mode 100644 index 000000000..ac0a991f5 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group A 79b534/Custom_Model_Bag Set-aside 17a731/Card The Jailor 817446.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 265112 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false +Description: Monster. Elite. +GMNotes: '' +GUID: '817446' +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: The Jailor +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 115.301659 + posY: 2.42611313 + posZ: -43.5008545 + rotX: 359.987427 + rotY: 269.995361 + rotZ: 359.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group A 79b534/Custom_Model_Bag Set-aside 17a731/Deck Faceless Abductors ffcb3e.yaml new file mode 100644 index 000000000..1fb0eae07 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group A 79b534/Custom_Model_Bag Set-aside 17a731/Deck Faceless Abductors ffcb3e.yaml @@ -0,0 +1,129 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 265113 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false + Description: Monster. Nightgaunt. + GMNotes: '' + GUID: '598744' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Faceless Abductor + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 107.018974 + posY: 1.41541934 + posZ: -36.5547562 + rotX: 359.987427 + rotY: 270.000427 + rotZ: 359.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265113 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false + Description: Monster. Nightgaunt. + GMNotes: '' + GUID: '817446' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Faceless Abductor + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 107.219559 + posY: 1.56080449 + posZ: -37.04752 + rotX: 359.987579 + rotY: 270.000732 + rotZ: 359.984131 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false +DeckIDs: +- 265113 +- 265113 +Description: '' +GMNotes: '' +GUID: ffcb3e +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Faceless Abductors +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 113.045967 + posY: 2.40649486 + posZ: -47.9697876 + rotX: 359.987427 + rotY: 270.0005 + rotZ: 359.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group A 79b534/Deck Act Deck 81c2f9.yaml new file mode 100644 index 000000000..6f40d6407 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group A 79b534/Deck Act Deck 81c2f9.yaml @@ -0,0 +1,172 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 12313 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 3 + GMNotes: '' + GUID: 53cf0a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: 'The Escape ' + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -21.9319077 + posY: 1.06138027 + posZ: 36.99266 + rotX: -2.11097948e-08 + rotY: 90.0 + rotZ: 4.895357e-08 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12310 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 2 + GMNotes: '' + GUID: 7d3634 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Distortions in Time (Group A) + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 13.37215 + posY: 1.03166032 + posZ: -4.01541948 + rotX: -0.002657699 + rotY: 180.018768 + rotZ: -0.001073579 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12306 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 1 + GMNotes: '' + GUID: ae9723 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Sealed In (Group A) + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -21.9011326 + posY: 1.22642171 + posZ: 36.44581 + rotX: -0.0008924603 + rotY: 90.01153 + rotZ: 359.048279 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 12313 +- 12310 +- 12306 +Description: '' +GMNotes: '' +GUID: 81c2f9 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Act Deck +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.6885016 + posY: 1.65499711 + posZ: -5.048539 + rotX: 0.0168526582 + rotY: 179.987366 + rotZ: 0.08025484 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group A 79b534/Deck Agenda Deck bca98b.yaml new file mode 100644 index 000000000..19a65fb72 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group A 79b534/Deck Agenda Deck bca98b.yaml @@ -0,0 +1,172 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 12305 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 3 + GMNotes: '' + GUID: 2a9dcc + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Mastermind + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 7.2867074 + posY: 1.0453285 + posZ: 7.18152761 + rotX: 0.109707333 + rotY: 180.0272 + rotZ: 359.8172 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12303 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 2 + GMNotes: '' + GUID: '107633' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Agony and Despair + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 10.37864 + posY: 1.03853178 + posZ: 3.89812827 + rotX: 0.108587012 + rotY: 180.003082 + rotZ: 359.79483 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12301 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 1 + GMNotes: '' + GUID: e7d7cc + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Awakening + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 12.8101664 + posY: 1.69706535 + posZ: 12.5322285 + rotX: 0.0159889534 + rotY: 180.000885 + rotZ: 0.07920604 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 12305 +- 12303 +- 12301 +Description: '' +GMNotes: '' +GUID: bca98b +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Agenda Deck +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.72468185 + posY: 1.656641 + posZ: 0.3733156 + rotX: 0.01683065 + rotY: 180.003174 + rotZ: 0.08025873 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group A 79b534/Deck Chamber of Secrets 64e243.yaml new file mode 100644 index 000000000..f86c60ca3 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group A 79b534/Deck Chamber of Secrets 64e243.yaml @@ -0,0 +1,172 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 12317 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Prison. Distortion. + GMNotes: '' + GUID: 2ce8bf + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Chamber of Secrets + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.13919 + posY: 1.53205061 + posZ: 4.50808144 + rotX: 359.920135 + rotY: 269.999969 + rotZ: 0.0168706216 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12316 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Prison. Distortion. + GMNotes: '' + GUID: 8fcb18 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Chamber of Secrets + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.4440365 + posY: 1.53294277 + posZ: 8.981547 + rotX: 359.920135 + rotY: 270.0001 + rotZ: 0.01687187 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12315 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Prison. Distortion. + GMNotes: '' + GUID: f97fe2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Chamber of Secrets + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.27948 + posY: 1.53253281 + posZ: 6.810268 + rotX: 359.920135 + rotY: 269.999969 + rotZ: 0.0168711059 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 12317 +- 12316 +- 12315 +Description: The Labyrinths of Lunacy Epic Group A +GMNotes: '' +GUID: 64e243 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Chamber of Secrets +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -17.11996 + posY: 1.67661774 + posZ: -0.03000899 + rotX: 359.9201 + rotY: 270.000061 + rotZ: 0.0168756824 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group A 79b534/Deck Encounter Deck e82e35.yaml new file mode 100644 index 000000000..86cd290ca --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group A 79b534/Deck Encounter Deck e82e35.yaml @@ -0,0 +1,1075 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 265120 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: '817446' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Paradox Effect + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 100.245293 + posY: 1.40682054 + posZ: 0.511827052 + rotX: 359.982819 + rotY: 269.9997 + rotZ: 359.983 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265120 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: 1f26ea + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Paradox Effect + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 100.1343 + posY: 1.55180228 + posZ: 0.456080019 + rotX: 359.9916 + rotY: 269.9994 + rotZ: 359.9822 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265120 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: '817446' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Paradox Effect + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 100.125427 + posY: 1.56691492 + posZ: 0.458712041 + rotX: 359.987457 + rotY: 269.999969 + rotZ: 359.9844 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265122 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: 3bf255 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Harvested Pain + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 100.304947 + posY: 1.40837359 + posZ: -5.14877033 + rotX: 359.9848 + rotY: 270.0 + rotZ: 359.983429 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265122 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: 2927c6 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Harvested Pain + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 100.304947 + posY: 1.55442476 + posZ: -5.18531656 + rotX: 359.98175 + rotY: 269.999969 + rotZ: 359.969971 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265122 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: '817446' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Harvested Pain + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 100.306816 + posY: 1.57090247 + posZ: -4.69011068 + rotX: 359.9873 + rotY: 269.999634 + rotZ: 359.984375 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265119 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false + Description: Trap. + GMNotes: '' + GUID: '817446' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Blood and Rust + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 100.267433 + posY: 1.40541661 + posZ: 5.20540237 + rotX: 359.987457 + rotY: 270.000061 + rotZ: 359.9844 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265119 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false + Description: Trap. + GMNotes: '' + GUID: 8b2c36 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Blood and Rust + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 100.61058 + posY: 1.5512836 + posZ: 5.16832256 + rotX: 359.987457 + rotY: 270.0001 + rotZ: 359.984375 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265119 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false + Description: Trap. + GMNotes: '' + GUID: 6fc896 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Blood and Rust + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 100.610588 + posY: 1.56516159 + posZ: 5.16833353 + rotX: 359.9869 + rotY: 270.0 + rotZ: 359.984741 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265118 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false + Description: Trap. + GMNotes: '' + GUID: '817446' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dreadful Mechanism + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 101.021744 + posY: 1.40585113 + posZ: 3.80202127 + rotX: 359.987427 + rotY: 270.0001 + rotZ: 359.984528 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265118 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false + Description: Trap. + GMNotes: '' + GUID: 4fa340 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dreadful Mechanism + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 101.785805 + posY: 1.45584965 + posZ: 3.75804973 + rotX: 359.987366 + rotY: 270.000061 + rotZ: 359.984528 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265118 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false + Description: Trap. + GMNotes: '' + GUID: 0872f7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dreadful Mechanism + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 101.170105 + posY: 1.50584924 + posZ: 3.71445131 + rotX: 359.987366 + rotY: 270.005432 + rotZ: 359.984528 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265117 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false + Description: Trap. Poison. + GMNotes: '' + GUID: '817446' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Poisonous Gas + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 100.692337 + posY: 1.40558171 + posZ: 5.06883669 + rotX: 359.987427 + rotY: 269.999939 + rotZ: 359.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265117 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false + Description: Trap. Poison. + GMNotes: '' + GUID: 47bd50 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Poisonous Gas + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 101.103378 + posY: 1.54470325 + posZ: 5.00585747 + rotX: 359.987183 + rotY: 269.989258 + rotZ: 359.989227 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265117 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false + Description: Trap. Poison. + GMNotes: '' + GUID: '817446' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Poisonous Gas + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 101.400818 + posY: 1.56518042 + posZ: 4.86478567 + rotX: 359.987427 + rotY: 269.999969 + rotZ: 359.984528 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265116 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false + Description: Injury. Poison. + GMNotes: '' + GUID: bf90c6 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Unnatural Weariness + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 100.859726 + posY: 2.85669827 + posZ: 4.73798227 + rotX: 0.0 + rotY: 270.0 + rotZ: 58.6256943 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265116 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false + Description: Injury. Poison. + GMNotes: '' + GUID: '817446' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Unnatural Weariness + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 100.777832 + posY: 2.59425187 + posZ: 4.79823 + rotX: 0.0 + rotY: 270.0 + rotZ: 58.6256943 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265116 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false + Description: Injury. Poison. + GMNotes: '' + GUID: 24e15d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Unnatural Weariness + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 101.294968 + posY: 2.59410381 + posZ: 4.926104 + rotX: 0.0 + rotY: 270.0 + rotZ: 58.6256943 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265115 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false + Description: Monster. Mi-Go. + GMNotes: '' + GUID: '817446' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Mi-Go Guard + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 101.116432 + posY: 1.57105386 + posZ: 4.485176 + rotX: 359.990143 + rotY: 269.999969 + rotZ: 179.987747 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265115 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false + Description: Monster. Mi-Go. + GMNotes: '' + GUID: '817446' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Mi-Go Guard + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 101.245293 + posY: 1.40459144 + posZ: 4.58944225 + rotX: 359.985565 + rotY: 270.003876 + rotZ: 359.980865 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265115 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false + Description: Monster. Mi-Go. + GMNotes: '' + GUID: 774f5f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Mi-Go Guard + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 101.699791 + posY: 1.550271 + posZ: 4.99789762 + rotX: 359.985565 + rotY: 270.0039 + rotZ: 359.980865 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265114 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false + Description: Humanoid. Extradimensional. + GMNotes: '' + GUID: '817446' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Tortured Victim + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 100.877541 + posY: 1.40432525 + posZ: 6.088623 + rotX: 359.987335 + rotY: 269.999542 + rotZ: 359.984833 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265114 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false + Description: Humanoid. Extradimensional. + GMNotes: '' + GUID: d18a7d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Tortured Victim + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 101.400978 + posY: 1.45432484 + posZ: 5.97300529 + rotX: 359.987335 + rotY: 269.9995 + rotZ: 359.984833 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265114 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false + Description: Humanoid. Extradimensional. + GMNotes: '' + GUID: 7a1943 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Tortured Victim + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 101.400986 + posY: 1.60057485 + posZ: 5.9730196 + rotX: 359.987335 + rotY: 269.999573 + rotZ: 359.984833 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false +DeckIDs: +- 265120 +- 265120 +- 265120 +- 265122 +- 265122 +- 265122 +- 265119 +- 265119 +- 265119 +- 265118 +- 265118 +- 265118 +- 265117 +- 265117 +- 265117 +- 265116 +- 265116 +- 265116 +- 265115 +- 265115 +- 265115 +- 265114 +- 265114 +- 265114 +Description: '' +GMNotes: '' +GUID: e82e35 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Encounter Deck +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.92754555 + posY: 1.739733 + posZ: 5.75705671 + rotX: 359.919739 + rotY: 270.000031 + rotZ: 180.016815 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group A 79b534/Deck Story Cards 0b6efa.yaml new file mode 100644 index 000000000..1da825c9b --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group A 79b534/Deck Story Cards 0b6efa.yaml @@ -0,0 +1,301 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 12337 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 2. + GMNotes: '' + GUID: b634cc + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Encrypted Glyphs + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -20.681076 + posY: 1.1699909 + posZ: 33.7492828 + rotX: -0.00219334452 + rotY: 269.9993 + rotZ: 181.9923 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12336 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 2. + GMNotes: '' + GUID: a88055 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Gate + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -20.7145424 + posY: 1.17255723 + posZ: 33.93921 + rotX: 0.000748866238 + rotY: 269.983643 + rotZ: 182.050339 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12335 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 2. + GMNotes: '' + GUID: 5499a4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Dilemma + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -20.7432671 + posY: 1.16466856 + posZ: 33.9429359 + rotX: 0.0001037335 + rotY: 269.9973 + rotZ: 177.4824 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12334 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 1. Act 2. + GMNotes: '' + GUID: 9dc445 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Vent + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 14.5038481 + posY: 1.67748845 + posZ: 0.101173446 + rotX: 359.932159 + rotY: 270.000031 + rotZ: 0.0202693511 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12332 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 1. + GMNotes: '' + GUID: 2b4513 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Arcane Runes + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 14.1577549 + posY: 1.67591178 + posZ: 0.10011217 + rotX: 359.9185 + rotY: 270.002136 + rotZ: 0.0178325959 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12333 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 1. Act 2. + GMNotes: '' + GUID: f5b434 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Rift + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 14.30825 + posY: 1.67846549 + posZ: 0.692599058 + rotX: 359.91922 + rotY: 270.0014 + rotZ: 0.0168646611 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 12337 +- 12336 +- 12335 +- 12334 +- 12332 +- 12333 +Description: The Labyrinths of Lunacy Epic Group A +GMNotes: '' +GUID: 0b6efa +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Story Cards +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -11.5922136 + posY: 1.67246664 + posZ: 7.550461 + rotX: 359.9201 + rotY: 269.995941 + rotZ: 0.0168820415 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group B c7c4c1.ttslua b/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/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 791837/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group B c7c4c1.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group B c7c4c1.yaml new file mode 100644 index 000000000..95889a6b8 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group B c7c4c1.yaml @@ -0,0 +1,45 @@ +Autoraise: true +ColorDiffuse: + b: 0.0 + g: 0.366520882 + r: 0.7058823 +ContainedObjects: +- !include 'Bag Epic Group B c7c4c1/Custom_Model_Bag Set-aside 04a162.yaml' +- !include 'Bag Epic Group B c7c4c1/Deck Encounter Deck 397fe8.yaml' +- !include 'Bag Epic Group B c7c4c1/Deck Agenda Deck bca98b.yaml' +- !include 'Bag Epic Group B c7c4c1/Deck Act Deck 9ed94a.yaml' +- !include 'Bag Epic Group B c7c4c1/Card Scenario c69095.yaml' +- !include 'Bag Epic Group B c7c4c1/Deck Story Cards 0b6efa.yaml' +- !include 'Bag Epic Group B c7c4c1/Card Eixodolon''s Note 817446.yaml' +- !include 'Bag Epic Group B c7c4c1/Card Chamber of Rain aa6ad6.yaml' +- !include 'Bag Epic Group B c7c4c1/Card Chamber of Sorrows 6a0757.yaml' +- !include 'Bag Epic Group B c7c4c1/Card Scenario 078f41.yaml' +Description: The Labyrinths of Lunacy +GMNotes: '' +GUID: c7c4c1 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Bag Epic Group B c7c4c1.ttslua' +LuaScriptState: '{"ml":{"04a162":{"lock":false,"pos":{"x":1.6955,"y":1.5583,"z":14.279},"rot":{"x":359.9551,"y":224.998,"z":0.0687}},"078f41":{"lock":false,"pos":{"x":-50.9244,"y":1.7266,"z":8.1784},"rot":{"x":359.9201,"y":270.0154,"z":0.0169}},"0b6efa":{"lock":false,"pos":{"x":-11.2956,"y":1.6722,"z":8.1598},"rot":{"x":359.9201,"y":270.0205,"z":0.0168}},"397fe8":{"lock":false,"pos":{"x":-3.9275,"y":1.7397,"z":5.7571},"rot":{"x":359.9197,"y":270,"z":180.0168}},"6a0757":{"lock":false,"pos":{"x":-17.1201,"y":1.6748,"z":-7.7},"rot":{"x":359.9201,"y":269.9999,"z":0.0169}},"817446":{"lock":false,"pos":{"x":-17.12,"y":1.6793,"z":7.57},"rot":{"x":359.9201,"y":270.0002,"z":0.0169}},"9ed94a":{"lock":false,"pos":{"x":-2.6885,"y":1.655,"z":-5.0485},"rot":{"x":0.0168,"y":179.9918,"z":0.0803}},"aa6ad6":{"lock":false,"pos":{"x":-17.12,"y":1.6771,"z":-0.03},"rot":{"x":359.9201,"y":269.9999,"z":0.0169}},"bca98b":{"lock":false,"pos":{"x":-2.7247,"y":1.6566,"z":0.3733},"rot":{"x":0.0168,"y":180.0028,"z":0.0803}},"c69095":{"lock":false,"pos":{"x":-3.956,"y":1.6556,"z":-10.4412},"rot":{"x":359.9197,"y":270.0154,"z":0.0168}}}}' +MaterialIndex: -1 +MeshIndex: -1 +Name: Bag +Nickname: Epic Group B +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 9.641678 + posY: 1.282153 + posZ: -3.4463582 + rotX: 0.07991884 + rotY: 89.99098 + rotZ: 359.9831 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group B c7c4c1/Card Chamber of Rain aa6ad6.yaml new file mode 100644 index 000000000..b17f5e161 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group B c7c4c1/Card Chamber of Rain aa6ad6.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 12318 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Distortion. +GMNotes: '' +GUID: aa6ad6 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Chamber of Rain +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -17.12003 + posY: 1.67707777 + posZ: -0.0299945418 + rotX: 359.9201 + rotY: 269.999939 + rotZ: 0.0168767385 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group B c7c4c1/Card Chamber of Sorrows 6a0757.yaml new file mode 100644 index 000000000..e984f1554 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group B c7c4c1/Card Chamber of Sorrows 6a0757.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 12319 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Prison. +GMNotes: '' +GUID: 6a0757 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Chamber of Sorrows +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -17.1200981 + posY: 1.67481935 + posZ: -7.69999552 + rotX: 359.9201 + rotY: 269.9999 + rotZ: 0.0168763585 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group B c7c4c1/Card Eixodolon's Note 817446.yaml new file mode 100644 index 000000000..c53515c64 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group B c7c4c1/Card Eixodolon's Note 817446.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 265100 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false +Description: Item. Script. +GMNotes: '' +GUID: '817446' +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Eixodolon's Note +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -17.1200275 + posY: 1.67931569 + posZ: 7.569998 + rotX: 359.9201 + rotY: 270.000244 + rotZ: 0.01687659 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group B c7c4c1/Card Scenario 078f41.yaml new file mode 100644 index 000000000..ab9bee0b3 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group B c7c4c1/Card Scenario 078f41.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 12300 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: The Labyrinths of Lunacy Epic Group B +GMNotes: '' +GUID: 078f41 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Scenario +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -50.9243851 + posY: 1.72662532 + posZ: 8.17843151 + rotX: 359.9201 + rotY: 270.0154 + rotZ: 0.0168572869 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group B c7c4c1/Card Scenario c69095.yaml new file mode 100644 index 000000000..bb193db2e --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group B c7c4c1/Card Scenario c69095.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 12300 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: The Labyrinths of Lunacy Epic Group B +GMNotes: '' +GUID: c69095 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Scenario +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.95597029 + posY: 1.65564811 + posZ: -10.44116 + rotX: 359.919739 + rotY: 270.015381 + rotZ: 0.016821174 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group B c7c4c1/Custom_Model_Bag Set-aside 04a162.yaml new file mode 100644 index 000000000..c11e3f364 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group B c7c4c1/Custom_Model_Bag Set-aside 04a162.yaml @@ -0,0 +1,65 @@ +Autoraise: true +ColorDiffuse: + b: 0.02148666 + g: 0.00100758043 + r: 0.02148666 +ContainedObjects: +- !include 'Custom_Model_Bag Set-aside 04a162/Bag Set-Aside Locations 372583.yaml' +- !include 'Custom_Model_Bag Set-aside 04a162/Card Key of Mysteries 7399a5.yaml' +- !include 'Custom_Model_Bag Set-aside 04a162/Deck Faceless Abductors b27351.yaml' +- !include 'Custom_Model_Bag Set-aside 04a162/Card Eixodolon''s Pet 817446.yaml' +- !include 'Custom_Model_Bag Set-aside 04a162/Card Eixodolon 817446.yaml' +- !include 'Custom_Model_Bag Set-aside 04a162/Card Mysterious Syringe 817446.yaml' +- !include 'Custom_Model_Bag Set-aside 04a162/Card Rot Diagram 817446.yaml' +- !include 'Custom_Model_Bag Set-aside 04a162/Card Hunger Diagram a5e76a.yaml' +- !include 'Custom_Model_Bag Set-aside 04a162/Card Decay Diagram 817446.yaml' +- !include 'Custom_Model_Bag Set-aside 04a162/Card The Jailor 817446.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 Labyrinths of Lunacy Epic Group B +GMNotes: '' +GUID: 04a162 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +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.69552135 + posY: 1.55831861 + posZ: 14.2789564 + rotX: 359.955139 + rotY: 224.998016 + rotZ: 0.06867254 + scaleX: 2.0 + scaleY: 2.0 + scaleZ: 2.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/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 new file mode 100644 index 000000000..eb34870c1 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/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 @@ -0,0 +1,43 @@ +Autoraise: true +ColorDiffuse: + b: 0.0 + g: 0.366520882 + r: 0.7058823 +ContainedObjects: +- !include 'Bag Set-Aside Locations 372583/Card Chamber of Hunger 945939.yaml' +- !include 'Bag Set-Aside Locations 372583/Card Chamber of Poison 8d4c1e.yaml' +- !include 'Bag Set-Aside Locations 372583/Deck Chamber of Secrets 512c73.yaml' +- !include 'Bag Set-Aside Locations 372583/Deck Labyrinthine Halls 77559d.yaml' +- !include 'Bag Set-Aside Locations 372583/Card Chamber of Rot 76a7f5.yaml' +- !include 'Bag Set-Aside Locations 372583/Card Abandoned Warehouse 774c0b.yaml' +- !include 'Bag Set-Aside Locations 372583/Card Chamber of Night 803008.yaml' +- !include 'Bag Set-Aside Locations 372583/Card Chamber of Decay 839314.yaml' +Description: The Labyrinths of Lunacy Epic Group B +GMNotes: '' +GUID: '372583' +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +MeshIndex: -1 +Name: Bag +Nickname: Set-Aside Locations +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 33.41801 + posY: 2.31767535 + posZ: -34.426487 + rotX: -0.00354051567 + rotY: 0.000744728663 + rotZ: 359.983215 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/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 new file mode 100644 index 000000000..99ddbbbe5 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/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 @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 12331 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Distortion. +GMNotes: '' +GUID: 774c0b +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Abandoned Warehouse +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 43.5928268 + posY: 3.55379677 + posZ: -15.2565355 + rotX: 1.01505506 + rotY: 270.0223 + rotZ: 181.333313 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/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 new file mode 100644 index 000000000..9dd0679e8 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/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 @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 12328 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Distortion. +GMNotes: '' +GUID: '839314' +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Chamber of Decay +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 43.43893 + posY: 3.518587 + posZ: -15.2216339 + rotX: 3.35317326 + rotY: 270.1581 + rotZ: 184.807312 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/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 new file mode 100644 index 000000000..3d2fe3672 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/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 @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 12327 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Distortion. +GMNotes: '' +GUID: '945939' +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Chamber of Hunger +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 43.4397354 + posY: 3.54296875 + posZ: -14.7219143 + rotX: 1.23537457 + rotY: 269.9658 + rotZ: 178.372543 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/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 new file mode 100644 index 000000000..06de2e160 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/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 @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 12321 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Prison. +GMNotes: '' +GUID: '803008' +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Chamber of Night +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 43.5968628 + posY: 3.53126645 + posZ: -15.5551214 + rotX: 2.483657 + rotY: 270.02887 + rotZ: 181.433975 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/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 new file mode 100644 index 000000000..5d71f1959 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/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 @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 12330 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 8d4c1e +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Chamber of Poison +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 43.7851563 + posY: 3.55796671 + posZ: -15.0050583 + rotX: 1.4278934 + rotY: 269.984924 + rotZ: 179.0521 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/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 new file mode 100644 index 000000000..2b64e82e4 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/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 @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 12329 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Distortion. +GMNotes: '' +GUID: 76a7f5 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Chamber of Rot +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 43.34903 + posY: 3.54478741 + posZ: -15.0426645 + rotX: 1.66956067 + rotY: 269.999817 + rotZ: 180.038727 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/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 new file mode 100644 index 000000000..2fbf0144f --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/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 @@ -0,0 +1,215 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 12323 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Distortion. + GMNotes: '' + GUID: 6c7570 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Chamber of Regret + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 25.1965656 + posY: 1.66263235 + posZ: -9.3814 + rotX: 359.918579 + rotY: 269.9987 + rotZ: 180.0184 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12317 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Prison. Distortion. + GMNotes: '' + GUID: 2ce8bf + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Chamber of Secrets + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 25.006155 + posY: 1.67662942 + posZ: -9.109675 + rotX: 359.933319 + rotY: 270.000061 + rotZ: 180.01593 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12316 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Prison. Distortion. + GMNotes: '' + GUID: 8fcb18 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Chamber of Secrets + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 24.9785538 + posY: 1.65881681 + posZ: -9.211089 + rotX: 359.923218 + rotY: 269.9981 + rotZ: 180.015808 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12315 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Prison. Distortion. + GMNotes: '' + GUID: f97fe2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Chamber of Secrets + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 25.0260048 + posY: 1.518346 + posZ: -9.171155 + rotX: 359.914856 + rotY: 270.001923 + rotZ: 180.017334 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 12323 +- 12317 +- 12316 +- 12315 +Description: '' +GMNotes: '' +GUID: 512c73 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Chamber of Secrets +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 43.4824142 + posY: 3.520636 + posZ: -15.5961752 + rotX: 1.24931192 + rotY: 270.0603 + rotZ: 183.18898 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/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 new file mode 100644 index 000000000..c0c05bf4d --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/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 @@ -0,0 +1,172 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 12324 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: d13692 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Labyrinthine Halls + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 33.6497154 + posY: 1.67211366 + posZ: 0.111760661 + rotX: 359.710327 + rotY: 270.108521 + rotZ: 179.965485 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12326 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: '323435' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Labyrinthine Halls + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 33.73473 + posY: 1.64947951 + posZ: 0.335074455 + rotX: 359.918732 + rotY: 270.010132 + rotZ: 180.018539 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12325 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 5eb4c2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Labyrinthine Halls + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 33.9631958 + posY: 1.5086385 + posZ: 0.112138949 + rotX: 359.9132 + rotY: 269.998352 + rotZ: 180.020462 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 12324 +- 12326 +- 12325 +Description: '' +GMNotes: '' +GUID: 77559d +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Labyrinthine Halls +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 43.49715 + posY: 3.54366422 + posZ: -15.36776 + rotX: 1.41333759 + rotY: 270.068359 + rotZ: 182.183044 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group B c7c4c1/Custom_Model_Bag Set-aside 04a162/Card Decay Diagram 817446.yaml new file mode 100644 index 000000000..443ac201a --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group B c7c4c1/Custom_Model_Bag Set-aside 04a162/Card Decay Diagram 817446.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 265107 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false +Description: Item. Script. +GMNotes: '' +GUID: '817446' +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Decay Diagram +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 113.49482 + posY: 2.399101 + posZ: -50.9554024 + rotX: 359.987427 + rotY: 269.9953 + rotZ: 359.984528 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group B c7c4c1/Custom_Model_Bag Set-aside 04a162/Card Eixodolon 817446.yaml new file mode 100644 index 000000000..3162edb53 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group B c7c4c1/Custom_Model_Bag Set-aside 04a162/Card Eixodolon 817446.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 265109 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false +Description: Your Anguish Is My Power +GMNotes: '' +GUID: '817446' +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Eixodolon +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 111.993156 + posY: 2.39884329 + posZ: -49.9706535 + rotX: 359.987427 + rotY: 270.000183 + rotZ: 359.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/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 new file mode 100644 index 000000000..6da58b8ae --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/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 @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 265110 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false +Description: You Are Not Its First Victim, Or Its Last +GMNotes: '' +GUID: '817446' +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Eixodolon's Pet +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 111.196815 + posY: 2.39817333 + posZ: -51.273056 + rotX: 359.987427 + rotY: 269.995361 + rotZ: 359.984528 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group B c7c4c1/Custom_Model_Bag Set-aside 04a162/Card Hunger Diagram a5e76a.yaml new file mode 100644 index 000000000..65271b194 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group B c7c4c1/Custom_Model_Bag Set-aside 04a162/Card Hunger Diagram a5e76a.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 265105 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false +Description: Item. Script. +GMNotes: '' +GUID: a5e76a +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Hunger Diagram +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 113.456627 + posY: 2.39852715 + posZ: -52.8642578 + rotX: 359.987427 + rotY: 269.995178 + rotZ: 359.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/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 new file mode 100644 index 000000000..b8a147ad0 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/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 @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 265101 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false +Description: Item. Key. +GMNotes: '' +GUID: 7399a5 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Key of Mysteries +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 108.768188 + posY: 2.39852428 + posZ: -47.0609322 + rotX: 359.987427 + rotY: 270.000244 + rotZ: 359.984528 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group B c7c4c1/Custom_Model_Bag Set-aside 04a162/Card Mysterious Syringe 817446.yaml new file mode 100644 index 000000000..5c06fdfca --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group B c7c4c1/Custom_Model_Bag Set-aside 04a162/Card Mysterious Syringe 817446.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 265102 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false +Description: Item. +GMNotes: '' +GUID: '817446' +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Mysterious Syringe +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 112.213341 + posY: 2.39933538 + posZ: -48.56027 + rotX: 359.987427 + rotY: 270.0002 + rotZ: 359.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group B c7c4c1/Custom_Model_Bag Set-aside 04a162/Card Rot Diagram 817446.yaml new file mode 100644 index 000000000..a8e4ace73 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group B c7c4c1/Custom_Model_Bag Set-aside 04a162/Card Rot Diagram 817446.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 265103 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false +Description: Item. Script. +GMNotes: '' +GUID: '817446' +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Rot Diagram +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 112.941437 + posY: 2.39876342 + posZ: -51.41916 + rotX: 359.987427 + rotY: 269.995178 + rotZ: 359.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group B c7c4c1/Custom_Model_Bag Set-aside 04a162/Card The Jailor 817446.yaml new file mode 100644 index 000000000..b50e0fe6d --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group B c7c4c1/Custom_Model_Bag Set-aside 04a162/Card The Jailor 817446.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 265112 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false +Description: Monster. Elite. +GMNotes: '' +GUID: '817446' +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: The Jailor +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 113.238487 + posY: 2.39936233 + posZ: -49.7453842 + rotX: 359.987427 + rotY: 269.995361 + rotZ: 359.984528 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group B c7c4c1/Custom_Model_Bag Set-aside 04a162/Deck Faceless Abductors b27351.yaml new file mode 100644 index 000000000..7ebf02963 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group B c7c4c1/Custom_Model_Bag Set-aside 04a162/Deck Faceless Abductors b27351.yaml @@ -0,0 +1,129 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 265113 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false + Description: Monster. Nightgaunt. + GMNotes: '' + GUID: '598744' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Faceless Abductor + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 106.273193 + posY: 1.38717616 + posZ: -46.38734 + rotX: 0.02080797 + rotY: 270.000244 + rotZ: 0.016771229 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265113 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false + Description: Monster. Nightgaunt. + GMNotes: '' + GUID: '817446' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Faceless Abductor + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 106.307686 + posY: 1.53265011 + posZ: -46.529438 + rotX: 0.01228932 + rotY: 270.011932 + rotZ: 0.0182685815 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false +DeckIDs: +- 265113 +- 265113 +Description: '' +GMNotes: '' +GUID: b27351 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Faceless Abductors +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 111.295547 + posY: 2.404651 + posZ: -54.18632 + rotX: 0.0208082888 + rotY: 270.000183 + rotZ: 0.01677495 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group B c7c4c1/Deck Act Deck 9ed94a.yaml new file mode 100644 index 000000000..c5efbdf3d --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group B c7c4c1/Deck Act Deck 9ed94a.yaml @@ -0,0 +1,172 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 12313 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 3 + GMNotes: '' + GUID: 53cf0a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: 'The Escape ' + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -53.53308 + posY: 1.06138027 + posZ: 35.4235458 + rotX: -4.21700079e-08 + rotY: 89.98837 + rotZ: -2.0525367e-07 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12307 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 1 + GMNotes: '' + GUID: 02cc53 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Watery Grave (Group B) + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -53.7771263 + posY: 1.2517761 + posZ: 35.69622 + rotX: 359.97995 + rotY: 90.0234756 + rotZ: 2.623313 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12311 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 2 + GMNotes: '' + GUID: 2c450f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Seeping Death (Group B) + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -53.31844 + posY: 1.20037508 + posZ: 35.7440948 + rotX: -0.00023923596 + rotY: 89.99582 + rotZ: -0.0008090447 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 12313 +- 12307 +- 12311 +Description: The Labyrinths of Lunacy Epic Group B +GMNotes: '' +GUID: 9ed94a +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: 'Act Deck ' +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.6885 + posY: 1.65499711 + posZ: -5.04853964 + rotX: 0.0168466028 + rotY: 179.991791 + rotZ: 0.08025605 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group B c7c4c1/Deck Agenda Deck bca98b.yaml new file mode 100644 index 000000000..55acc8575 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group B c7c4c1/Deck Agenda Deck bca98b.yaml @@ -0,0 +1,172 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 12305 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 3 + GMNotes: '' + GUID: 2a9dcc + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Mastermind + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 7.2867074 + posY: 1.0453285 + posZ: 7.18152761 + rotX: 0.109707333 + rotY: 180.0272 + rotZ: 359.8172 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12303 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 2 + GMNotes: '' + GUID: '107633' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Agony and Despair + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 10.37864 + posY: 1.03853178 + posZ: 3.89812827 + rotX: 0.108587012 + rotY: 180.003082 + rotZ: 359.79483 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12301 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 1 + GMNotes: '' + GUID: e7d7cc + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Awakening + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 10.7556477 + posY: 1.18637288 + posZ: 3.677581 + rotX: 0.0820614547 + rotY: 180.002274 + rotZ: 359.71402 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 12305 +- 12303 +- 12301 +Description: The Labyrinths of Lunacy Epic Group B +GMNotes: '' +GUID: bca98b +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Agenda Deck +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.72468352 + posY: 1.656641 + posZ: 0.373316258 + rotX: 0.016831059 + rotY: 180.002777 + rotZ: 0.0802592263 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group B c7c4c1/Deck Encounter Deck 397fe8.yaml new file mode 100644 index 000000000..d19bfda4b --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group B c7c4c1/Deck Encounter Deck 397fe8.yaml @@ -0,0 +1,1075 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 265122 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: 3bf255 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Harvested Pain + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 100.304947 + posY: 1.40837359 + posZ: -5.14877033 + rotX: 359.9848 + rotY: 270.0 + rotZ: 359.983429 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265122 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: 2927c6 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Harvested Pain + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 100.304947 + posY: 1.55442476 + posZ: -5.18531656 + rotX: 359.98175 + rotY: 269.999969 + rotZ: 359.969971 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265122 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: '817446' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Harvested Pain + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 100.306816 + posY: 1.57090247 + posZ: -4.69011068 + rotX: 359.9873 + rotY: 269.999634 + rotZ: 359.984375 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265119 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false + Description: Trap. + GMNotes: '' + GUID: '817446' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Blood and Rust + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 100.267433 + posY: 1.40541661 + posZ: 5.20540237 + rotX: 359.987457 + rotY: 270.000061 + rotZ: 359.9844 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265119 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false + Description: Trap. + GMNotes: '' + GUID: 8b2c36 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Blood and Rust + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 100.61058 + posY: 1.5512836 + posZ: 5.16832256 + rotX: 359.987457 + rotY: 270.0001 + rotZ: 359.984375 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265119 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false + Description: Trap. + GMNotes: '' + GUID: 6fc896 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Blood and Rust + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 100.610588 + posY: 1.56516159 + posZ: 5.16833353 + rotX: 359.9869 + rotY: 270.0 + rotZ: 359.984741 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265118 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false + Description: Trap. + GMNotes: '' + GUID: '817446' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dreadful Mechanism + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 101.021744 + posY: 1.40585113 + posZ: 3.80202127 + rotX: 359.987427 + rotY: 270.0001 + rotZ: 359.984528 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265118 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false + Description: Trap. + GMNotes: '' + GUID: 4fa340 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dreadful Mechanism + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 101.785805 + posY: 1.45584965 + posZ: 3.75804973 + rotX: 359.987366 + rotY: 270.000061 + rotZ: 359.984528 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265118 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false + Description: Trap. + GMNotes: '' + GUID: 0872f7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dreadful Mechanism + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 101.170105 + posY: 1.50584924 + posZ: 3.71445131 + rotX: 359.987366 + rotY: 270.005432 + rotZ: 359.984528 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265117 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false + Description: Trap. Poison. + GMNotes: '' + GUID: '817446' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Poisonous Gas + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 100.692337 + posY: 1.40558171 + posZ: 5.06883669 + rotX: 359.987427 + rotY: 269.999939 + rotZ: 359.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265117 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false + Description: Trap. Poison. + GMNotes: '' + GUID: 47bd50 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Poisonous Gas + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 101.103378 + posY: 1.54470325 + posZ: 5.00585747 + rotX: 359.987183 + rotY: 269.989258 + rotZ: 359.989227 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265117 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false + Description: Trap. Poison. + GMNotes: '' + GUID: '817446' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Poisonous Gas + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 101.400818 + posY: 1.56518042 + posZ: 4.86478567 + rotX: 359.987427 + rotY: 269.999969 + rotZ: 359.984528 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265116 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false + Description: Injury. Poison. + GMNotes: '' + GUID: bf90c6 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Unnatural Weariness + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 100.859726 + posY: 2.85669827 + posZ: 4.73798227 + rotX: 0.0 + rotY: 270.0 + rotZ: 58.6256943 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265116 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false + Description: Injury. Poison. + GMNotes: '' + GUID: '817446' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Unnatural Weariness + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 100.777832 + posY: 2.59425187 + posZ: 4.79823 + rotX: 0.0 + rotY: 270.0 + rotZ: 58.6256943 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265116 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false + Description: Injury. Poison. + GMNotes: '' + GUID: 24e15d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Unnatural Weariness + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 101.294968 + posY: 2.59410381 + posZ: 4.926104 + rotX: 0.0 + rotY: 270.0 + rotZ: 58.6256943 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265115 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false + Description: Monster. Mi-Go. + GMNotes: '' + GUID: '817446' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Mi-Go Guard + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 101.116432 + posY: 1.57105386 + posZ: 4.485176 + rotX: 359.990143 + rotY: 269.999969 + rotZ: 179.987747 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265115 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false + Description: Monster. Mi-Go. + GMNotes: '' + GUID: '817446' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Mi-Go Guard + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 101.245293 + posY: 1.40459144 + posZ: 4.58944225 + rotX: 359.985565 + rotY: 270.003876 + rotZ: 359.980865 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265115 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false + Description: Monster. Mi-Go. + GMNotes: '' + GUID: 774f5f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Mi-Go Guard + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 101.699791 + posY: 1.550271 + posZ: 4.99789762 + rotX: 359.985565 + rotY: 270.0039 + rotZ: 359.980865 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265114 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false + Description: Humanoid. Extradimensional. + GMNotes: '' + GUID: '817446' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Tortured Victim + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 100.877541 + posY: 1.40432525 + posZ: 6.088623 + rotX: 359.987335 + rotY: 269.999542 + rotZ: 359.984833 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265114 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false + Description: Humanoid. Extradimensional. + GMNotes: '' + GUID: d18a7d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Tortured Victim + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 101.400978 + posY: 1.45432484 + posZ: 5.97300529 + rotX: 359.987335 + rotY: 269.9995 + rotZ: 359.984833 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265114 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false + Description: Humanoid. Extradimensional. + GMNotes: '' + GUID: 7a1943 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Tortured Victim + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 101.400986 + posY: 1.60057485 + posZ: 5.9730196 + rotX: 359.987335 + rotY: 269.999573 + rotZ: 359.984833 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265120 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: '817446' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Paradox Effect + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 100.245293 + posY: 1.40682054 + posZ: 0.511827052 + rotX: 359.982819 + rotY: 269.9997 + rotZ: 359.983 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265120 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: 1f26ea + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Paradox Effect + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 100.1343 + posY: 1.55180228 + posZ: 0.456080019 + rotX: 359.9916 + rotY: 269.9994 + rotZ: 359.9822 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265120 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: '817446' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Paradox Effect + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 100.125427 + posY: 1.56691492 + posZ: 0.458712041 + rotX: 359.987457 + rotY: 269.999969 + rotZ: 359.9844 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false +DeckIDs: +- 265122 +- 265122 +- 265122 +- 265119 +- 265119 +- 265119 +- 265118 +- 265118 +- 265118 +- 265117 +- 265117 +- 265117 +- 265116 +- 265116 +- 265116 +- 265115 +- 265115 +- 265115 +- 265114 +- 265114 +- 265114 +- 265120 +- 265120 +- 265120 +Description: '' +GMNotes: '' +GUID: 397fe8 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Encounter Deck +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.92754531 + posY: 1.739733 + posZ: 5.75705671 + rotX: 359.919739 + rotY: 270.000031 + rotZ: 180.016815 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group B c7c4c1/Deck Story Cards 0b6efa.yaml new file mode 100644 index 000000000..778cd1ab5 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group B c7c4c1/Deck Story Cards 0b6efa.yaml @@ -0,0 +1,301 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 12337 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 2. + GMNotes: '' + GUID: b634cc + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Encrypted Glyphs + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -20.681076 + posY: 1.1699909 + posZ: 33.7492828 + rotX: -0.00219334452 + rotY: 269.9993 + rotZ: 181.9923 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12336 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 2. + GMNotes: '' + GUID: a88055 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Gate + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -20.7145424 + posY: 1.17255723 + posZ: 33.93921 + rotX: 0.000748866238 + rotY: 269.983643 + rotZ: 182.050339 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12335 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 2. + GMNotes: '' + GUID: 5499a4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Dilemma + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -20.7432671 + posY: 1.16466856 + posZ: 33.9429359 + rotX: 0.0001037335 + rotY: 269.9973 + rotZ: 177.4824 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12334 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 1. Act 2. + GMNotes: '' + GUID: 9dc445 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Vent + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -20.5400562 + posY: 1.18275356 + posZ: 33.8947449 + rotX: -0.0008695685 + rotY: 269.9974 + rotZ: 177.563889 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12333 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 1. Act 2. + GMNotes: '' + GUID: f5b434 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Rift + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 9.602298 + posY: 1.68243909 + posZ: 0.6778279 + rotX: 359.919159 + rotY: 269.9687 + rotZ: 0.0359393768 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12332 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 1. + GMNotes: '' + GUID: 2b4513 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Arcane Runes + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 10.2110786 + posY: 1.85061157 + posZ: 0.5184586 + rotX: 359.903961 + rotY: 269.9811 + rotZ: 350.9136 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 12337 +- 12336 +- 12335 +- 12334 +- 12333 +- 12332 +Description: The Labyrinths of Lunacy Epic Group B +GMNotes: '' +GUID: 0b6efa +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Story Cards +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -11.295619 + posY: 1.67223251 + posZ: 8.159784 + rotX: 359.9201 + rotY: 270.020477 + rotZ: 0.0168481618 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group C c352ac.ttslua b/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/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 791837/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group C c352ac.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group C c352ac.yaml new file mode 100644 index 000000000..6bce7c271 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group C c352ac.yaml @@ -0,0 +1,45 @@ +Autoraise: true +ColorDiffuse: + b: 0.0 + g: 0.366520882 + r: 0.7058823 +ContainedObjects: +- !include 'Bag Epic Group C c352ac/Custom_Model_Bag Set-aside fce372.yaml' +- !include 'Bag Epic Group C c352ac/Deck Encounter Deck 5f4b00.yaml' +- !include 'Bag Epic Group C c352ac/Deck Agenda bca98b.yaml' +- !include 'Bag Epic Group C c352ac/Deck Act 7d512a.yaml' +- !include 'Bag Epic Group C c352ac/Card Scenario c69095.yaml' +- !include 'Bag Epic Group C c352ac/Deck Story Cards 0b6efa.yaml' +- !include 'Bag Epic Group C c352ac/Card Eixodolon''s Note 817446.yaml' +- !include 'Bag Epic Group C c352ac/Card Chamber of Night 803008.yaml' +- !include 'Bag Epic Group C c352ac/Card Chamber of Regret 6c7570.yaml' +- !include 'Bag Epic Group C c352ac/Card Scenario d89e46.yaml' +Description: The Labyrinths of Lunacy +GMNotes: '' +GUID: c352ac +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Bag Epic Group C c352ac.ttslua' +LuaScriptState: '{"ml":{"0b6efa":{"lock":false,"pos":{"x":-12.0161,"y":1.6728,"z":6.7037},"rot":{"x":359.9201,"y":270.0052,"z":0.0169}},"5f4b00":{"lock":false,"pos":{"x":-3.9276,"y":1.7397,"z":5.7571},"rot":{"x":359.9197,"y":270,"z":180.0168}},"6c7570":{"lock":false,"pos":{"x":-17.1201,"y":1.6748,"z":-7.7},"rot":{"x":359.9201,"y":269.9999,"z":0.0169}},"7d512a":{"lock":false,"pos":{"x":-2.6885,"y":1.655,"z":-5.0485},"rot":{"x":0.0168,"y":180.0061,"z":0.0803}},"803008":{"lock":false,"pos":{"x":-17.12,"y":1.6771,"z":-0.03},"rot":{"x":359.9201,"y":269.9999,"z":0.0169}},"817446":{"lock":false,"pos":{"x":-17.12,"y":1.6793,"z":7.5762},"rot":{"x":359.9201,"y":269.9754,"z":0.0169}},"bca98b":{"lock":false,"pos":{"x":-2.7264,"y":1.6566,"z":0.3753},"rot":{"x":0.0167,"y":180.0867,"z":0.0803}},"c69095":{"lock":false,"pos":{"x":-3.956,"y":1.6556,"z":-10.4412},"rot":{"x":359.9197,"y":269.9889,"z":0.0169}},"d89e46":{"lock":false,"pos":{"x":-50.9244,"y":1.7266,"z":8.1784},"rot":{"x":359.9201,"y":269.9889,"z":0.0169}},"fce372":{"lock":false,"pos":{"x":1.6964,"y":1.5583,"z":14.2788},"rot":{"x":359.9551,"y":225.0074,"z":0.0687}}}}' +MaterialIndex: -1 +MeshIndex: -1 +Name: Bag +Nickname: Epic Group C +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 9.421737 + posY: 1.28106833 + posZ: -7.725406 + rotX: 0.07993633 + rotY: 89.99793 + rotZ: 359.9831 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group C c352ac/Card Chamber of Night 803008.yaml new file mode 100644 index 000000000..7e471296e --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group C c352ac/Card Chamber of Night 803008.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 12321 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Prison. +GMNotes: '' +GUID: '803008' +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Chamber of Night +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -17.12003 + posY: 1.67707777 + posZ: -0.0299942754 + rotX: 359.9201 + rotY: 269.9999 + rotZ: 0.016876122 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group C c352ac/Card Chamber of Regret 6c7570.yaml new file mode 100644 index 000000000..6ac9ffe13 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group C c352ac/Card Chamber of Regret 6c7570.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 12323 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Distortion. +GMNotes: '' +GUID: 6c7570 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Chamber of Regret +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -17.1200981 + posY: 1.67481935 + posZ: -7.69999552 + rotX: 359.9201 + rotY: 269.9999 + rotZ: 0.0168771017 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group C c352ac/Card Eixodolon's Note 817446.yaml new file mode 100644 index 000000000..b2fd86451 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group C c352ac/Card Eixodolon's Note 817446.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 265100 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false +Description: Item. Script. +GMNotes: '' +GUID: '817446' +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Eixodolon's Note +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -17.12003 + posY: 1.67931724 + posZ: 7.576189 + rotX: 359.9201 + rotY: 269.975433 + rotZ: 0.0169100948 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group C c352ac/Card Scenario c69095.yaml new file mode 100644 index 000000000..56f619536 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group C c352ac/Card Scenario c69095.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 12300 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: The Labyrinths of Lunacy Epic Group C +GMNotes: '' +GUID: c69095 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Scenario +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.95599413 + posY: 1.65564811 + posZ: -10.4411516 + rotX: 359.919739 + rotY: 269.9889 + rotZ: 0.0168578122 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group C c352ac/Card Scenario d89e46.yaml new file mode 100644 index 000000000..6bb7f5ed1 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group C c352ac/Card Scenario d89e46.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 12300 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: The Labyrinths of Lunacy Epic Group C +GMNotes: '' +GUID: d89e46 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Scenario +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -50.9243851 + posY: 1.72662556 + posZ: 8.17843151 + rotX: 359.9201 + rotY: 269.9889 + rotZ: 0.0168938041 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group C c352ac/Custom_Model_Bag Set-aside fce372.yaml new file mode 100644 index 000000000..9908038a5 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group C c352ac/Custom_Model_Bag Set-aside fce372.yaml @@ -0,0 +1,65 @@ +Autoraise: true +ColorDiffuse: + b: 0.02148666 + g: 0.00100758043 + r: 0.02148666 +ContainedObjects: +- !include 'Custom_Model_Bag Set-aside fce372/Card Decay Diagram 817446.yaml' +- !include 'Custom_Model_Bag Set-aside fce372/Card Key of Mysteries 7399a5.yaml' +- !include 'Custom_Model_Bag Set-aside fce372/Deck Faceless Abductors 262cb3.yaml' +- !include 'Custom_Model_Bag Set-aside fce372/Card Eixodolon''s Pet 817446.yaml' +- !include 'Custom_Model_Bag Set-aside fce372/Card Eixodolon 817446.yaml' +- !include 'Custom_Model_Bag Set-aside fce372/Card Mysterious Syringe 817446.yaml' +- !include 'Custom_Model_Bag Set-aside fce372/Card Rot Diagram 817446.yaml' +- !include 'Custom_Model_Bag Set-aside fce372/Card Hunger Diagram a5e76a.yaml' +- !include 'Custom_Model_Bag Set-aside fce372/Card The Jailor 817446.yaml' +- !include 'Custom_Model_Bag Set-aside fce372/Bag Set-Aside Locations 372583.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 Labyrinths of Lunacy Epic Group C +GMNotes: '' +GUID: fce372 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +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.69640625 + posY: 1.55831718 + posZ: 14.2788334 + rotX: 359.955139 + rotY: 225.00737 + rotZ: 0.0686647147 + scaleX: 2.0 + scaleY: 2.0 + scaleZ: 2.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/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 new file mode 100644 index 000000000..0d3d5d4a6 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/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 @@ -0,0 +1,44 @@ +Autoraise: true +ColorDiffuse: + b: 0.0 + g: 0.366520882 + r: 0.7058823 +ContainedObjects: +- !include 'Bag Set-Aside Locations 372583/Card Chamber of Rot 76a7f5.yaml' +- !include 'Bag Set-Aside Locations 372583/Card Chamber of Sorrows 6a0757.yaml' +- !include 'Bag Set-Aside Locations 372583/Card Chamber of Rain aa6ad6.yaml' +- !include 'Bag Set-Aside Locations 372583/Card Abandoned Warehouse 774c0b.yaml' +- !include 'Bag Set-Aside Locations 372583/Card Chamber of Poison 8d4c1e.yaml' +- !include 'Bag Set-Aside Locations 372583/Card Chamber of Decay 839314.yaml' +- !include 'Bag Set-Aside Locations 372583/Card Chamber of Hunger 945939.yaml' +- !include 'Bag Set-Aside Locations 372583/Deck Chamber of Secrets 616a5f.yaml' +- !include 'Bag Set-Aside Locations 372583/Deck Labyrinthine Halls 87d61c.yaml' +Description: The Labyrinths of Lunacy Epic Group C +GMNotes: '' +GUID: '372583' +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +MeshIndex: -1 +Name: Bag +Nickname: Set-Aside Locations +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 28.4489746 + posY: 3.30353975 + posZ: -7.00777054 + rotX: 359.968262 + rotY: 0.0006675325 + rotZ: 359.952667 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/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 new file mode 100644 index 000000000..4da83644c --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/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 @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 12331 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Distortion. +GMNotes: '' +GUID: 774c0b +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Abandoned Warehouse +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 24.9771423 + posY: 3.485693 + posZ: -3.44033432 + rotX: 359.920135 + rotY: 270.0014 + rotZ: 0.0168663058 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/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 new file mode 100644 index 000000000..ea979db53 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/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 @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 12328 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Distortion. +GMNotes: '' +GUID: '839314' +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Chamber of Decay +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 20.0274677 + posY: 3.48974848 + posZ: -13.1076908 + rotX: 359.920135 + rotY: 269.9977 + rotZ: 0.0168735739 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/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 new file mode 100644 index 000000000..7ed161159 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/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 @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 12327 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Distortion. +GMNotes: '' +GUID: '945939' +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Chamber of Hunger +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 22.58867 + posY: 3.48528385 + posZ: -16.1419773 + rotX: 359.920135 + rotY: 270.000366 + rotZ: 0.0168695431 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/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 new file mode 100644 index 000000000..a62c69214 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/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 @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 12330 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 8d4c1e +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Chamber of Poison +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 26.20603 + posY: 3.48269057 + posZ: -7.82241774 + rotX: 359.920135 + rotY: 270.001556 + rotZ: 0.0168692935 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/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 new file mode 100644 index 000000000..d0aa1bd18 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/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 @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 12318 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Distortion. +GMNotes: '' +GUID: aa6ad6 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Chamber of Rain +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.5995312 + posY: 3.49204636 + posZ: -7.32362938 + rotX: 359.920135 + rotY: 269.99646 + rotZ: 0.0168712921 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/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 new file mode 100644 index 000000000..14282539d --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/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 @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 12329 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Distortion. +GMNotes: '' +GUID: 76a7f5 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Chamber of Rot +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 25.9857025 + posY: 3.50943685 + posZ: -13.4396172 + rotX: 2.25402927 + rotY: 269.9642 + rotZ: 357.7738 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/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 new file mode 100644 index 000000000..8c2964f11 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/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 @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 12319 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Prison. +GMNotes: '' +GUID: 6a0757 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Chamber of Sorrows +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 19.0972881 + posY: 3.491909 + posZ: -10.1691294 + rotX: 359.920135 + rotY: 269.971863 + rotZ: 0.01691103 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/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 new file mode 100644 index 000000000..192d9e3a4 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/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 @@ -0,0 +1,172 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 12316 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Prison. Distortion. + GMNotes: '' + GUID: 8fcb18 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Chamber of Secrets + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 17.36437 + posY: 1.530055 + posZ: 3.50176573 + rotX: 359.9203 + rotY: 269.5793 + rotZ: 0.0200006645 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12317 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Prison. Distortion. + GMNotes: '' + GUID: 2ce8bf + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Chamber of Secrets + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 15.2832441 + posY: 1.62196589 + posZ: 5.27707863 + rotX: 359.921356 + rotY: 269.995422 + rotZ: 355.297577 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12315 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Prison. Distortion. + GMNotes: '' + GUID: f97fe2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Chamber of Secrets + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 17.3644943 + posY: 1.52928925 + posZ: 0.930943847 + rotX: 359.920227 + rotY: 269.638123 + rotZ: 0.01736924 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 12316 +- 12317 +- 12315 +Description: '' +GMNotes: '' +GUID: 616a5f +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Chamber of Secrets +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 18.9421711 + posY: 3.494238 + posZ: -1.43456376 + rotX: 359.920258 + rotY: 269.996246 + rotZ: 0.01745628 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/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 new file mode 100644 index 000000000..9d69718f3 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/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 @@ -0,0 +1,172 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 12325 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 5eb4c2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Labyrinthine Halls + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 22.2373371 + posY: 1.52524936 + posZ: 10.2819328 + rotX: 359.920135 + rotY: 270.0063 + rotZ: 0.01685744 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12326 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: '323435' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Labyrinthine Halls + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 21.5344143 + posY: 1.52534723 + posZ: 7.287031 + rotX: 359.920135 + rotY: 270.004761 + rotZ: 0.0168599933 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12324 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: d13692 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Labyrinthine Halls + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 22.1697216 + posY: 1.52355063 + posZ: 4.19316626 + rotX: 359.9201 + rotY: 270.025574 + rotZ: 0.0168365575 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 12325 +- 12326 +- 12324 +Description: '' +GMNotes: '' +GUID: 87d61c +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Labyrinthine Halls +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 22.91545 + posY: 3.48926258 + posZ: 0.477911919 + rotX: 359.9201 + rotY: 270.006256 + rotZ: 0.0168582536 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group C c352ac/Custom_Model_Bag Set-aside fce372/Card Decay Diagram 817446.yaml new file mode 100644 index 000000000..55b864643 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group C c352ac/Custom_Model_Bag Set-aside fce372/Card Decay Diagram 817446.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 265107 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false +Description: Item. Script. +GMNotes: '' +GUID: '817446' +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Decay Diagram +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 102.276566 + posY: 2.3957684 + posZ: -48.4202 + rotX: 359.987427 + rotY: 269.995422 + rotZ: 359.984528 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group C c352ac/Custom_Model_Bag Set-aside fce372/Card Eixodolon 817446.yaml new file mode 100644 index 000000000..03d200ad8 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group C c352ac/Custom_Model_Bag Set-aside fce372/Card Eixodolon 817446.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 265109 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false +Description: Your Anguish Is My Power +GMNotes: '' +GUID: '817446' +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Eixodolon +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 104.930771 + posY: 2.39689732 + posZ: -47.8549652 + rotX: 359.987427 + rotY: 270.002136 + rotZ: 359.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/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 new file mode 100644 index 000000000..12af95e7b --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/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 @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 265110 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false +Description: You Are Not Its First Victim, Or Its Last +GMNotes: '' +GUID: '817446' +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Eixodolon's Pet +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 104.770935 + posY: 2.3964293 + posZ: -49.2575226 + rotX: 359.987427 + rotY: 269.9955 + rotZ: 359.984528 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group C c352ac/Custom_Model_Bag Set-aside fce372/Card Hunger Diagram a5e76a.yaml new file mode 100644 index 000000000..5495cc0ab --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group C c352ac/Custom_Model_Bag Set-aside fce372/Card Hunger Diagram a5e76a.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 265105 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false +Description: Item. Script. +GMNotes: '' +GUID: a5e76a +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Hunger Diagram +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 106.973404 + posY: 2.3970685 + posZ: -49.80606 + rotX: 359.987427 + rotY: 269.995361 + rotZ: 359.984528 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/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 new file mode 100644 index 000000000..e382ec662 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/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 @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 265101 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false +Description: Item. Key. +GMNotes: '' +GUID: 7399a5 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Key of Mysteries +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 102.930435 + posY: 2.3965807 + posZ: -46.45836 + rotX: 359.987427 + rotY: 270.002075 + rotZ: 359.984528 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group C c352ac/Custom_Model_Bag Set-aside fce372/Card Mysterious Syringe 817446.yaml new file mode 100644 index 000000000..c66bb9561 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group C c352ac/Custom_Model_Bag Set-aside fce372/Card Mysterious Syringe 817446.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 265102 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false +Description: Item. +GMNotes: '' +GUID: '817446' +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Mysterious Syringe +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 104.1216 + posY: 2.39697242 + posZ: -46.59701 + rotX: 359.987427 + rotY: 270.002075 + rotZ: 359.984528 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group C c352ac/Custom_Model_Bag Set-aside fce372/Card Rot Diagram 817446.yaml new file mode 100644 index 000000000..22f974070 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group C c352ac/Custom_Model_Bag Set-aside fce372/Card Rot Diagram 817446.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 265103 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false +Description: Item. Script. +GMNotes: '' +GUID: '817446' +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Rot Diagram +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 106.2418 + posY: 2.39629078 + posZ: -51.5546455 + rotX: 359.987427 + rotY: 269.995178 + rotZ: 359.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group C c352ac/Custom_Model_Bag Set-aside fce372/Card The Jailor 817446.yaml new file mode 100644 index 000000000..ab06abad5 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group C c352ac/Custom_Model_Bag Set-aside fce372/Card The Jailor 817446.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 265112 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false +Description: Monster. Elite. +GMNotes: '' +GUID: '817446' +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: The Jailor +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 106.453209 + posY: 2.39727044 + posZ: -48.4689751 + rotX: 359.987427 + rotY: 269.995544 + rotZ: 359.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group C c352ac/Custom_Model_Bag Set-aside fce372/Deck Faceless Abductors 262cb3.yaml new file mode 100644 index 000000000..23862b726 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group C c352ac/Custom_Model_Bag Set-aside fce372/Deck Faceless Abductors 262cb3.yaml @@ -0,0 +1,129 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 265113 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false + Description: Monster. Nightgaunt. + GMNotes: '' + GUID: '598744' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Faceless Abductor + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 100.603859 + posY: 1.4104377 + posZ: -44.18631 + rotX: 359.987427 + rotY: 270.003052 + rotZ: 1.26096249 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265113 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false + Description: Monster. Nightgaunt. + GMNotes: '' + GUID: '817446' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Faceless Abductor + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 100.840958 + posY: 1.512406 + posZ: -44.3874626 + rotX: 359.986267 + rotY: 270.002441 + rotZ: 3.29169 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false +DeckIDs: +- 265113 +- 265113 +Description: '' +GMNotes: '' +GUID: 262cb3 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Faceless Abductors +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 104.744911 + posY: 2.42612481 + posZ: -52.6777725 + rotX: 359.987427 + rotY: 270.003448 + rotZ: 1.26176834 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group C c352ac/Deck Act 7d512a.yaml new file mode 100644 index 000000000..620c0933d --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group C c352ac/Deck Act 7d512a.yaml @@ -0,0 +1,172 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 12313 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 3 + GMNotes: '' + GUID: 53cf0a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: 'The Escape ' + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -56.0544739 + posY: 1.06138039 + posZ: 9.142853 + rotX: 4.47349862e-07 + rotY: 90.02594 + rotZ: 6.58017768e-07 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12312 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 2 + GMNotes: '' + GUID: f1962b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Pet (Group C) + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -56.3098 + posY: 1.20656741 + posZ: 9.272712 + rotX: -0.0002775845 + rotY: 89.99831 + rotZ: 0.00140549464 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12308 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 1 + GMNotes: '' + GUID: 33dafa + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Levers (Group C) + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 23.0360317 + posY: 1.68133008 + posZ: 7.69292068 + rotX: 0.01249531 + rotY: 179.9997 + rotZ: 0.0603442 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 12313 +- 12312 +- 12308 +Description: The Labyrinths of Lunacy Epic Group C +GMNotes: '' +GUID: 7d512a +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Act +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.6885004 + posY: 1.65499711 + posZ: -5.048539 + rotX: 0.0168264657 + rotY: 180.006119 + rotZ: 0.08025962 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group C c352ac/Deck Agenda bca98b.yaml new file mode 100644 index 000000000..155bceaa3 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group C c352ac/Deck Agenda bca98b.yaml @@ -0,0 +1,172 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 12305 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 3 + GMNotes: '' + GUID: 2a9dcc + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Mastermind + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 7.2867074 + posY: 1.0453285 + posZ: 7.18152761 + rotX: 0.109707333 + rotY: 180.0272 + rotZ: 359.8172 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12303 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 2 + GMNotes: '' + GUID: '107633' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Agony and Despair + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 10.37864 + posY: 1.03853178 + posZ: 3.89812827 + rotX: 0.108587012 + rotY: 180.003082 + rotZ: 359.79483 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12301 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 1 + GMNotes: '' + GUID: e7d7cc + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Awakening + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 10.7556477 + posY: 1.18637288 + posZ: 3.677581 + rotX: 0.0820614547 + rotY: 180.002274 + rotZ: 359.71402 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 12305 +- 12303 +- 12301 +Description: The Labyrinths of Lunacy Epic Group C +GMNotes: '' +GUID: bca98b +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Agenda +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.7264266 + posY: 1.65664411 + posZ: 0.375277162 + rotX: 0.0166895632 + rotY: 180.08667 + rotZ: 0.08025252 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group C c352ac/Deck Encounter Deck 5f4b00.yaml new file mode 100644 index 000000000..58e61190b --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group C c352ac/Deck Encounter Deck 5f4b00.yaml @@ -0,0 +1,1075 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 265122 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: 3bf255 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Harvested Pain + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 100.304947 + posY: 1.40837359 + posZ: -5.14877033 + rotX: 359.9848 + rotY: 270.0 + rotZ: 359.983429 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265122 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: 2927c6 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Harvested Pain + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 100.304947 + posY: 1.55442476 + posZ: -5.18531656 + rotX: 359.98175 + rotY: 269.999969 + rotZ: 359.969971 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265122 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: '817446' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Harvested Pain + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 100.306816 + posY: 1.57090247 + posZ: -4.69011068 + rotX: 359.9873 + rotY: 269.999634 + rotZ: 359.984375 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265119 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false + Description: Trap. + GMNotes: '' + GUID: '817446' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Blood and Rust + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 100.267433 + posY: 1.40541661 + posZ: 5.20540237 + rotX: 359.987457 + rotY: 270.000061 + rotZ: 359.9844 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265119 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false + Description: Trap. + GMNotes: '' + GUID: 8b2c36 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Blood and Rust + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 100.61058 + posY: 1.5512836 + posZ: 5.16832256 + rotX: 359.987457 + rotY: 270.0001 + rotZ: 359.984375 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265119 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false + Description: Trap. + GMNotes: '' + GUID: 6fc896 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Blood and Rust + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 100.610588 + posY: 1.56516159 + posZ: 5.16833353 + rotX: 359.9869 + rotY: 270.0 + rotZ: 359.984741 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265118 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false + Description: Trap. + GMNotes: '' + GUID: '817446' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dreadful Mechanism + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 101.021744 + posY: 1.40585113 + posZ: 3.80202127 + rotX: 359.987427 + rotY: 270.0001 + rotZ: 359.984528 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265118 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false + Description: Trap. + GMNotes: '' + GUID: 4fa340 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dreadful Mechanism + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 101.785805 + posY: 1.45584965 + posZ: 3.75804973 + rotX: 359.987366 + rotY: 270.000061 + rotZ: 359.984528 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265118 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false + Description: Trap. + GMNotes: '' + GUID: 0872f7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dreadful Mechanism + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 101.170105 + posY: 1.50584924 + posZ: 3.71445131 + rotX: 359.987366 + rotY: 270.005432 + rotZ: 359.984528 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265117 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false + Description: Trap. Poison. + GMNotes: '' + GUID: '817446' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Poisonous Gas + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 100.692337 + posY: 1.40558171 + posZ: 5.06883669 + rotX: 359.987427 + rotY: 269.999939 + rotZ: 359.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265117 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false + Description: Trap. Poison. + GMNotes: '' + GUID: 47bd50 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Poisonous Gas + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 101.103378 + posY: 1.54470325 + posZ: 5.00585747 + rotX: 359.987183 + rotY: 269.989258 + rotZ: 359.989227 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265117 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false + Description: Trap. Poison. + GMNotes: '' + GUID: '817446' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Poisonous Gas + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 101.400818 + posY: 1.56518042 + posZ: 4.86478567 + rotX: 359.987427 + rotY: 269.999969 + rotZ: 359.984528 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265116 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false + Description: Injury. Poison. + GMNotes: '' + GUID: bf90c6 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Unnatural Weariness + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 100.859726 + posY: 2.85669827 + posZ: 4.73798227 + rotX: 0.0 + rotY: 270.0 + rotZ: 58.6256943 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265116 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false + Description: Injury. Poison. + GMNotes: '' + GUID: '817446' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Unnatural Weariness + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 100.777832 + posY: 2.59425187 + posZ: 4.79823 + rotX: 0.0 + rotY: 270.0 + rotZ: 58.6256943 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265116 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false + Description: Injury. Poison. + GMNotes: '' + GUID: 24e15d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Unnatural Weariness + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 101.294968 + posY: 2.59410381 + posZ: 4.926104 + rotX: 0.0 + rotY: 270.0 + rotZ: 58.6256943 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265115 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false + Description: Monster. Mi-Go. + GMNotes: '' + GUID: '817446' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Mi-Go Guard + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 101.116432 + posY: 1.57105386 + posZ: 4.485176 + rotX: 359.990143 + rotY: 269.999969 + rotZ: 179.987747 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265115 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false + Description: Monster. Mi-Go. + GMNotes: '' + GUID: '817446' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Mi-Go Guard + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 101.245293 + posY: 1.40459144 + posZ: 4.58944225 + rotX: 359.985565 + rotY: 270.003876 + rotZ: 359.980865 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265115 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false + Description: Monster. Mi-Go. + GMNotes: '' + GUID: 774f5f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Mi-Go Guard + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 101.699791 + posY: 1.550271 + posZ: 4.99789762 + rotX: 359.985565 + rotY: 270.0039 + rotZ: 359.980865 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265114 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false + Description: Humanoid. Extradimensional. + GMNotes: '' + GUID: '817446' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Tortured Victim + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 100.877541 + posY: 1.40432525 + posZ: 6.088623 + rotX: 359.987335 + rotY: 269.999542 + rotZ: 359.984833 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265114 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false + Description: Humanoid. Extradimensional. + GMNotes: '' + GUID: d18a7d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Tortured Victim + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 101.400978 + posY: 1.45432484 + posZ: 5.97300529 + rotX: 359.987335 + rotY: 269.9995 + rotZ: 359.984833 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265114 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false + Description: Humanoid. Extradimensional. + GMNotes: '' + GUID: 7a1943 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Tortured Victim + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 101.400986 + posY: 1.60057485 + posZ: 5.9730196 + rotX: 359.987335 + rotY: 269.999573 + rotZ: 359.984833 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265120 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: '817446' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Paradox Effect + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 100.245293 + posY: 1.40682054 + posZ: 0.511827052 + rotX: 359.982819 + rotY: 269.9997 + rotZ: 359.983 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265120 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: 1f26ea + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Paradox Effect + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 100.1343 + posY: 1.55180228 + posZ: 0.456080019 + rotX: 359.9916 + rotY: 269.9994 + rotZ: 359.9822 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265120 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: '817446' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Paradox Effect + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 100.125427 + posY: 1.56691492 + posZ: 0.458712041 + rotX: 359.987457 + rotY: 269.999969 + rotZ: 359.9844 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false +DeckIDs: +- 265122 +- 265122 +- 265122 +- 265119 +- 265119 +- 265119 +- 265118 +- 265118 +- 265118 +- 265117 +- 265117 +- 265117 +- 265116 +- 265116 +- 265116 +- 265115 +- 265115 +- 265115 +- 265114 +- 265114 +- 265114 +- 265120 +- 265120 +- 265120 +Description: '' +GMNotes: '' +GUID: 5f4b00 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Encounter Deck +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.927577 + posY: 1.739733 + posZ: 5.75707436 + rotX: 359.919739 + rotY: 269.999969 + rotZ: 180.016815 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group C c352ac/Deck Story Cards 0b6efa.yaml new file mode 100644 index 000000000..3bf1fccdb --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Epic Group C c352ac/Deck Story Cards 0b6efa.yaml @@ -0,0 +1,301 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 12337 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 2. + GMNotes: '' + GUID: b634cc + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Encrypted Glyphs + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -20.681076 + posY: 1.1699909 + posZ: 33.7492828 + rotX: -0.00219334452 + rotY: 269.9993 + rotZ: 181.9923 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12336 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 2. + GMNotes: '' + GUID: a88055 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Gate + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -20.7145424 + posY: 1.17255723 + posZ: 33.93921 + rotX: 0.000748866238 + rotY: 269.983643 + rotZ: 182.050339 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12335 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 2. + GMNotes: '' + GUID: 5499a4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Dilemma + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -20.7432671 + posY: 1.16466856 + posZ: 33.9429359 + rotX: 0.0001037335 + rotY: 269.9973 + rotZ: 177.4824 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12334 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 1. Act 2. + GMNotes: '' + GUID: 9dc445 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Vent + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -20.5400562 + posY: 1.18275356 + posZ: 33.8947449 + rotX: -0.0008695685 + rotY: 269.9974 + rotZ: 177.563889 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12333 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 1. Act 2. + GMNotes: '' + GUID: f5b434 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Rift + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 17.0922565 + posY: 1.67277169 + posZ: 2.4107666 + rotX: 359.895172 + rotY: 269.963867 + rotZ: 0.0512777641 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12332 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 1. + GMNotes: '' + GUID: 2b4513 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Arcane Runes + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 17.39103 + posY: 1.6748265 + posZ: 2.35978842 + rotX: 359.912628 + rotY: 270.022278 + rotZ: 0.00387096056 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 12337 +- 12336 +- 12335 +- 12334 +- 12333 +- 12332 +Description: The Labyrinths of Lunacy Epic Group C +GMNotes: '' +GUID: 0b6efa +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Story Cards +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -12.0161057 + posY: 1.67280841 + posZ: 6.703742 + rotX: 359.9201 + rotY: 270.005219 + rotZ: 0.0168700553 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group A 2ea2a2.ttslua b/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/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 791837/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group A 2ea2a2.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group A 2ea2a2.yaml new file mode 100644 index 000000000..45095de7d --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group A 2ea2a2.yaml @@ -0,0 +1,44 @@ +Autoraise: true +ColorDiffuse: + b: 0.0 + g: 0.366520882 + r: 0.7058823 +ContainedObjects: +- !include 'Bag Single Group A 2ea2a2/Custom_Model_Bag Set-aside a45247.yaml' +- !include 'Bag Single Group A 2ea2a2/Deck Encounter Deck 66b85c.yaml' +- !include 'Bag Single Group A 2ea2a2/Deck Agenda Deck 300c56.yaml' +- !include 'Bag Single Group A 2ea2a2/Deck Act Deck 6bb098.yaml' +- !include 'Bag Single Group A 2ea2a2/Card Scenario c69095.yaml' +- !include 'Bag Single Group A 2ea2a2/Card Key of Mysteries 7399a5.yaml' +- !include 'Bag Single Group A 2ea2a2/Card Eixodolon''s Note 817446.yaml' +- !include 'Bag Single Group A 2ea2a2/Deck Chamber of Secrets 148730.yaml' +- !include 'Bag Single Group A 2ea2a2/Card Scenario cf5c1d.yaml' +Description: The Labyrinths of Lunacy +GMNotes: '' +GUID: 2ea2a2 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Bag Single Group A 2ea2a2.ttslua' +LuaScriptState: '{"ml":{"148730":{"lock":false,"pos":{"x":-17.12,"y":1.6766,"z":-0.03},"rot":{"x":359.9201,"y":269.9937,"z":0.0169}},"300c56":{"lock":false,"pos":{"x":-2.7247,"y":1.6566,"z":0.3733},"rot":{"x":0.0168,"y":180,"z":0.0803}},"66b85c":{"lock":false,"pos":{"x":-3.9278,"y":1.7397,"z":5.7572},"rot":{"x":359.9197,"y":269.9961,"z":180.0168}},"6bb098":{"lock":false,"pos":{"x":-2.6885,"y":1.655,"z":-5.0485},"rot":{"x":0.0168,"y":179.9947,"z":0.0803}},"7399a5":{"lock":false,"pos":{"x":-11.6077,"y":1.6725,"z":10.5839},"rot":{"x":359.9201,"y":270.0002,"z":0.0169}},"817446":{"lock":false,"pos":{"x":-12.1298,"y":1.6721,"z":6.8296},"rot":{"x":359.9201,"y":270.0002,"z":0.0169}},"a45247":{"lock":false,"pos":{"x":1.6955,"y":1.5583,"z":14.2789},"rot":{"x":359.9551,"y":224.998,"z":0.0687}},"c69095":{"lock":false,"pos":{"x":-3.956,"y":1.6556,"z":-10.4412},"rot":{"x":359.9197,"y":270.0003,"z":0.0168}},"cf5c1d":{"lock":false,"pos":{"x":-50.9244,"y":1.7266,"z":8.1784},"rot":{"x":359.9201,"y":270.0003,"z":0.0169}}}}' +MaterialIndex: -1 +MeshIndex: -1 +Name: Bag +Nickname: Single Group A +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 9.535572 + posY: 1.28807306 + posZ: 16.2746983 + rotX: 0.0799266547 + rotY: 89.99689 + rotZ: 359.9831 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group A 2ea2a2/Card Eixodolon's Note 817446.yaml new file mode 100644 index 000000000..67f3b3d62 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group A 2ea2a2/Card Eixodolon's Note 817446.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 265100 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false +Description: Item. Script. +GMNotes: '' +GUID: '817446' +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Eixodolon's Note +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -12.12975 + posY: 1.672139 + posZ: 6.829638 + rotX: 359.9201 + rotY: 270.000183 + rotZ: 0.0168762971 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group A 2ea2a2/Card Key of Mysteries 7399a5.yaml new file mode 100644 index 000000000..d2ceb42f7 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group A 2ea2a2/Card Key of Mysteries 7399a5.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 265101 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false +Description: Item. Key. +GMNotes: '' +GUID: 7399a5 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Key of Mysteries +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -11.60771 + posY: 1.67251658 + posZ: 10.5838642 + rotX: 359.9201 + rotY: 270.000183 + rotZ: 0.0168760866 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group A 2ea2a2/Card Scenario c69095.yaml new file mode 100644 index 000000000..c881a91ee --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group A 2ea2a2/Card Scenario c69095.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 12300 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: The Labyrinths of Lunacy +GMNotes: '' +GUID: c69095 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Scenario +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.95599627 + posY: 1.65564823 + posZ: -10.4412184 + rotX: 359.919739 + rotY: 270.0003 + rotZ: 0.0168405138 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group A 2ea2a2/Card Scenario cf5c1d.yaml new file mode 100644 index 000000000..f7729e8e4 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group A 2ea2a2/Card Scenario cf5c1d.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 12300 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: The Labyrinths of Lunacy +GMNotes: '' +GUID: cf5c1d +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Scenario +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -50.9243851 + posY: 1.72662532 + posZ: 8.178431 + rotX: 359.9201 + rotY: 270.0003 + rotZ: 0.0168754216 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group A 2ea2a2/Custom_Model_Bag Set-aside a45247.yaml new file mode 100644 index 000000000..618d57379 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group A 2ea2a2/Custom_Model_Bag Set-aside a45247.yaml @@ -0,0 +1,63 @@ +Autoraise: true +ColorDiffuse: + b: 0.02148666 + g: 0.00100758043 + r: 0.02148666 +ContainedObjects: +- !include 'Custom_Model_Bag Set-aside a45247/Bag Set-Aside Locations 372583.yaml' +- !include 'Custom_Model_Bag Set-aside a45247/Deck Faceless Abductors 68a27e.yaml' +- !include 'Custom_Model_Bag Set-aside a45247/Card Hunger Diagram bc2822.yaml' +- !include 'Custom_Model_Bag Set-aside a45247/Card Decay Diagram 817446.yaml' +- !include 'Custom_Model_Bag Set-aside a45247/Card Rot Diagram 817446.yaml' +- !include 'Custom_Model_Bag Set-aside a45247/Card Eixodolon''s Pet 817446.yaml' +- !include 'Custom_Model_Bag Set-aside a45247/Card Eixodolon 817446.yaml' +- !include 'Custom_Model_Bag Set-aside a45247/Card Mysterious Syringe 817446.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 Labyrinths of Lunacy Single Group A +GMNotes: '' +GUID: a45247 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +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.69551265 + posY: 1.55831742 + posZ: 14.2789345 + rotX: 359.955139 + rotY: 224.998016 + rotZ: 0.06867341 + scaleX: 2.0 + scaleY: 2.0 + scaleZ: 2.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/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 new file mode 100644 index 000000000..3f88c84de --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/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 @@ -0,0 +1,47 @@ +Autoraise: true +ColorDiffuse: + b: 0.0 + g: 0.366520882 + r: 0.7058823 +ContainedObjects: +- !include 'Bag Set-Aside Locations 372583/Card Abandoned Warehouse 774c0b.yaml' +- !include 'Bag Set-Aside Locations 372583/Card Labyrinthine Halls 323435.yaml' +- !include 'Bag Set-Aside Locations 372583/Card Labyrinthine Halls d13692.yaml' +- !include 'Bag Set-Aside Locations 372583/Card Chamber of Hunger 945939.yaml' +- !include 'Bag Set-Aside Locations 372583/Card Labyrinthine Halls 5eb4c2.yaml' +- !include 'Bag Set-Aside Locations 372583/Card Chamber of Poison 8d4c1e.yaml' +- !include 'Bag Set-Aside Locations 372583/Card Chamber of Decay 839314.yaml' +- !include 'Bag Set-Aside Locations 372583/Card Chamber of Night 38826f.yaml' +- !include 'Bag Set-Aside Locations 372583/Card Chamber of Sorrows 9f6ed8.yaml' +- !include 'Bag Set-Aside Locations 372583/Card Chamber of Rot 76a7f5.yaml' +- !include 'Bag Set-Aside Locations 372583/Card Chamber of Rain aa6ad6.yaml' +- !include 'Bag Set-Aside Locations 372583/Card Chamber of Regret 6c7570.yaml' +Description: '' +GMNotes: '' +GUID: '372583' +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +MeshIndex: -1 +Name: Bag +Nickname: Set-Aside Locations +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 39.1576767 + posY: 3.29060721 + posZ: -5.16580343 + rotX: 359.9933 + rotY: -0.000107322157 + rotZ: 359.9355 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/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 new file mode 100644 index 000000000..fffb07c53 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/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 @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 12331 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Distortion. +GMNotes: '' +GUID: 774c0b +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Abandoned Warehouse +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 31.2945213 + posY: 3.55052948 + posZ: -5.83563 + rotX: 1.763565 + rotY: 270.068542 + rotZ: 6.02724743 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/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 new file mode 100644 index 000000000..7bcacd929 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/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 @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 12328 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Distortion. +GMNotes: '' +GUID: '839314' +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Chamber of Decay +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 30.9008179 + posY: 3.52991557 + posZ: -5.55602264 + rotX: 2.962749 + rotY: 269.974365 + rotZ: 359.371155 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/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 new file mode 100644 index 000000000..27a99b381 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/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 @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 12327 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Distortion. +GMNotes: '' +GUID: '945939' +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Chamber of Hunger +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 31.2932835 + posY: 3.54464221 + posZ: -5.349874 + rotX: 1.96991873 + rotY: 269.925446 + rotZ: 357.19397 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/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 new file mode 100644 index 000000000..f8f06059a --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/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 @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 12322 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Prison. +GMNotes: '' +GUID: 38826f +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Chamber of Night +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 31.75139 + posY: 3.57257533 + posZ: -5.705337 + rotX: 359.8254 + rotY: 269.983582 + rotZ: 0.922801554 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/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 new file mode 100644 index 000000000..1d35bf312 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/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 @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 12330 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 8d4c1e +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Chamber of Poison +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 31.5692482 + posY: 3.569668 + posZ: -5.556289 + rotX: 0.9500356 + rotY: 269.9749 + rotZ: 358.913849 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/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 new file mode 100644 index 000000000..9b0f060bc --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/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 @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 12318 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Distortion. +GMNotes: '' +GUID: aa6ad6 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Chamber of Rain +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 30.7417831 + posY: 3.51762176 + posZ: -5.33384466 + rotX: 2.69817281 + rotY: 269.934723 + rotZ: 358.2239 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/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 new file mode 100644 index 000000000..8f6957428 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/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 @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 12323 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Distortion. +GMNotes: '' +GUID: 6c7570 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Chamber of Regret +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 31.4199924 + posY: 3.56406713 + posZ: -5.63867569 + rotX: 1.79771674 + rotY: 269.9995 + rotZ: 359.988953 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/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 new file mode 100644 index 000000000..d224b1f82 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/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 @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 12329 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Distortion. +GMNotes: '' +GUID: 76a7f5 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Chamber of Rot +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 31.14743 + posY: 3.54612565 + posZ: -5.635891 + rotX: 2.717977 + rotY: 269.998 + rotZ: 359.967255 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/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 new file mode 100644 index 000000000..fa6f2d0ed --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/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 @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 12320 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Prison. +GMNotes: '' +GUID: 9f6ed8 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Chamber of Sorrows +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 31.1221218 + posY: 3.51848483 + posZ: -6.214652 + rotX: 1.80660272 + rotY: 270.092834 + rotZ: 3.579617 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/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 new file mode 100644 index 000000000..e35c82be2 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/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 @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 12326 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: '323435' +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Labyrinthine Halls +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 30.775404 + posY: 3.515024 + posZ: -5.20259237 + rotX: 2.42908573 + rotY: 269.91217 + rotZ: 357.622 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/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 new file mode 100644 index 000000000..814e43806 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/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 @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 12325 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 5eb4c2 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Labyrinthine Halls +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 31.04437 + posY: 3.53875375 + posZ: -5.5686183 + rotX: 2.85988879 + rotY: 270.004852 + rotZ: 359.3784 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/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 new file mode 100644 index 000000000..3d05fcc7b --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/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 @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 12324 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: d13692 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Labyrinthine Halls +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 31.0379314 + posY: 3.522998 + posZ: -5.17208672 + rotX: 2.12292957 + rotY: 269.907776 + rotZ: 356.92157 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group A 2ea2a2/Custom_Model_Bag Set-aside a45247/Card Decay Diagram 817446.yaml new file mode 100644 index 000000000..afe6501d4 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group A 2ea2a2/Custom_Model_Bag Set-aside a45247/Card Decay Diagram 817446.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 265108 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false +Description: Item. Script. +GMNotes: '' +GUID: '817446' +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Decay Diagram +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 115.294174 + posY: 2.40007138 + posZ: -49.87113 + rotX: 359.987427 + rotY: 270.002533 + rotZ: 359.984528 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group A 2ea2a2/Custom_Model_Bag Set-aside a45247/Card Eixodolon 817446.yaml new file mode 100644 index 000000000..3ef2c7449 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group A 2ea2a2/Custom_Model_Bag Set-aside a45247/Card Eixodolon 817446.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 265109 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false +Description: Your Anguish Is My Power +GMNotes: '' +GUID: '817446' +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Eixodolon +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 119.157928 + posY: 2.40052247 + posZ: -53.1229 + rotX: 359.987427 + rotY: 270.0003 + rotZ: 359.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/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 new file mode 100644 index 000000000..49b2bdf73 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/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 @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 265111 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false +Description: You Are Not Its First Victim, Or Its Last +GMNotes: '' +GUID: '817446' +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Eixodolon's Pet +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 120.284561 + posY: 2.4992764 + posZ: -57.5437469 + rotX: 359.987427 + rotY: 270.002563 + rotZ: 359.984528 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group A 2ea2a2/Custom_Model_Bag Set-aside a45247/Card Hunger Diagram bc2822.yaml new file mode 100644 index 000000000..8bfa8d83e --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group A 2ea2a2/Custom_Model_Bag Set-aside a45247/Card Hunger Diagram bc2822.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 265106 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false +Description: Item. Script. +GMNotes: '' +GUID: bc2822 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Hunger Diagram +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 114.361862 + posY: 2.399167 + posZ: -51.80553 + rotX: 359.987427 + rotY: 270.002441 + rotZ: 359.984528 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group A 2ea2a2/Custom_Model_Bag Set-aside a45247/Card Mysterious Syringe 817446.yaml new file mode 100644 index 000000000..57b3e0b15 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group A 2ea2a2/Custom_Model_Bag Set-aside a45247/Card Mysterious Syringe 817446.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 265102 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false +Description: Item. +GMNotes: '' +GUID: '817446' +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Mysterious Syringe +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 119.701279 + posY: 2.40174437 + posZ: -49.62487 + rotX: 359.987427 + rotY: 270.000244 + rotZ: 359.984528 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group A 2ea2a2/Custom_Model_Bag Set-aside a45247/Card Rot Diagram 817446.yaml new file mode 100644 index 000000000..71e03815f --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group A 2ea2a2/Custom_Model_Bag Set-aside a45247/Card Rot Diagram 817446.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 265104 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false +Description: Item. Script. +GMNotes: '' +GUID: '817446' +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Rot Diagram +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 120.217278 + posY: 2.498505 + posZ: -60.1935 + rotX: 359.987427 + rotY: 270.002441 + rotZ: 359.984528 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group A 2ea2a2/Custom_Model_Bag Set-aside a45247/Deck Faceless Abductors 68a27e.yaml new file mode 100644 index 000000000..769349e39 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group A 2ea2a2/Custom_Model_Bag Set-aside a45247/Deck Faceless Abductors 68a27e.yaml @@ -0,0 +1,129 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 265113 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false + Description: Monster. Nightgaunt. + GMNotes: '' + GUID: '598744' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Faceless Abductor + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 105.442314 + posY: 1.41625679 + posZ: -38.3752 + rotX: 359.987427 + rotY: 270.000366 + rotZ: 359.984528 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265113 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false + Description: Monster. Nightgaunt. + GMNotes: '' + GUID: '817446' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Faceless Abductor + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 105.448166 + posY: 1.56175053 + posZ: -38.3265 + rotX: 359.9825 + rotY: 269.986481 + rotZ: 359.987366 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false +DeckIDs: +- 265113 +- 265113 +Description: '' +GMNotes: '' +GUID: 68a27e +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Faceless Abductors +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 115.140579 + posY: 2.40535235 + posZ: -54.2842751 + rotX: 359.987427 + rotY: 270.000244 + rotZ: 359.984528 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group A 2ea2a2/Deck Act Deck 6bb098.yaml new file mode 100644 index 000000000..eb9c1e346 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group A 2ea2a2/Deck Act Deck 6bb098.yaml @@ -0,0 +1,172 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 12314 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 3 + GMNotes: '' + GUID: '318613' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: 'The Escape ' + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -16.893158 + posY: 1.06138027 + posZ: 33.9050636 + rotX: -3.47957524e-07 + rotY: 179.990662 + rotZ: 9.022214e-07 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12310 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 2 + GMNotes: '' + GUID: 7d3634 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Distortions in Time (Group A) + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -25.2336178 + posY: 1.06138015 + posZ: 35.41119 + rotX: -2.52295263e-06 + rotY: 179.903137 + rotZ: -2.93713128e-07 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12306 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 1 + GMNotes: '' + GUID: ae9723 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Sealed In (Group A) + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -24.7399979 + posY: 1.20657778 + posZ: 35.4558754 + rotX: 0.0002800713 + rotY: 179.983826 + rotZ: -4.43046774e-05 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 12314 +- 12310 +- 12306 +Description: The Labyrinths of Lunacy Single Group A +GMNotes: '' +GUID: 6bb098 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Act Deck +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.68850732 + posY: 1.65499735 + posZ: -5.048504 + rotX: 0.0168427043 + rotY: 179.994659 + rotZ: 0.08025626 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group A 2ea2a2/Deck Agenda Deck 300c56.yaml new file mode 100644 index 000000000..fcb89ed47 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group A 2ea2a2/Deck Agenda Deck 300c56.yaml @@ -0,0 +1,172 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 12305 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 3 + GMNotes: '' + GUID: c30682 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Mastermind + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -25.8253517 + posY: 1.06138027 + posZ: 38.9641876 + rotX: -5.977163e-07 + rotY: 180.000214 + rotZ: 3.81947359e-07 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12304 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 2 + GMNotes: '' + GUID: 8d52dd + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Agony and Despair + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -25.9357567 + posY: 1.20038235 + posZ: 39.2535973 + rotX: -0.000432104222 + rotY: 179.998566 + rotZ: 0.0008023538 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12302 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 1 + GMNotes: '' + GUID: bce775 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Awakening + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -25.5488377 + posY: 1.22383022 + posZ: 38.8992271 + rotX: 2.82206129e-05 + rotY: 180.00029 + rotZ: -0.0007466273 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 12305 +- 12304 +- 12302 +Description: The Labyrinths of Lunacy Single Group A +GMNotes: '' +GUID: 300c56 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Agenda Deck +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.72468257 + posY: 1.65664124 + posZ: 0.373315156 + rotX: 0.016835032 + rotY: 180.0 + rotZ: 0.0802579746 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group A 2ea2a2/Deck Chamber of Secrets 148730.yaml new file mode 100644 index 000000000..bd1108714 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group A 2ea2a2/Deck Chamber of Secrets 148730.yaml @@ -0,0 +1,172 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 12315 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Prison. Distortion. + GMNotes: '' + GUID: f97fe2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Chamber of Secrets + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 12.6474257 + posY: 1.53735852 + posZ: 6.001896 + rotX: 359.920135 + rotY: 269.993774 + rotZ: 0.0168811977 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12317 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Prison. Distortion. + GMNotes: '' + GUID: 2ce8bf + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Chamber of Secrets + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 13.160675 + posY: 1.53587341 + posZ: 3.38926983 + rotX: 359.920135 + rotY: 269.999939 + rotZ: 0.016870195 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12316 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Prison. Distortion. + GMNotes: '' + GUID: 8fcb18 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Chamber of Secrets + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -17.1182232 + posY: 1.83086348 + posZ: -0.0316372663 + rotX: 358.581726 + rotY: 269.979462 + rotZ: 1.26306522 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 12315 +- 12317 +- 12316 +Description: The Labyrinths of Lunacy Single Group A +GMNotes: '' +GUID: '148730' +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Chamber of Secrets +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -17.119997 + posY: 1.67661774 + posZ: -0.0300008189 + rotX: 359.9201 + rotY: 269.993652 + rotZ: 0.0168857183 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group A 2ea2a2/Deck Encounter Deck 66b85c.yaml new file mode 100644 index 000000000..6ac4c7399 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group A 2ea2a2/Deck Encounter Deck 66b85c.yaml @@ -0,0 +1,1075 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 265121 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: '817446' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Paradox Effect + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 101.089371 + posY: 1.39607489 + posZ: 2.254506 + rotX: 359.989929 + rotY: 270.000031 + rotZ: 359.9876 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265121 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: d50777 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Paradox Effect + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 100.856 + posY: 1.54211807 + posZ: 2.49619722 + rotX: 359.989929 + rotY: 270.0 + rotZ: 359.987579 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265121 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: 86ca2a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Paradox Effect + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 100.856018 + posY: 1.56403816 + posZ: 2.49620557 + rotX: 359.986755 + rotY: 269.999969 + rotZ: 359.982239 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265122 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: 3bf255 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Harvested Pain + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 100.304947 + posY: 1.40837359 + posZ: -5.14877033 + rotX: 359.9848 + rotY: 270.0 + rotZ: 359.983429 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265122 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: 2927c6 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Harvested Pain + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 100.304947 + posY: 1.55442476 + posZ: -5.18531656 + rotX: 359.98175 + rotY: 269.999969 + rotZ: 359.969971 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265122 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: '817446' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Harvested Pain + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 100.306816 + posY: 1.57090247 + posZ: -4.69011068 + rotX: 359.9873 + rotY: 269.999634 + rotZ: 359.984375 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265119 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false + Description: Trap. + GMNotes: '' + GUID: '817446' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Blood and Rust + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 100.267433 + posY: 1.40541661 + posZ: 5.20540237 + rotX: 359.987457 + rotY: 270.000061 + rotZ: 359.9844 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265119 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false + Description: Trap. + GMNotes: '' + GUID: 8b2c36 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Blood and Rust + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 100.61058 + posY: 1.5512836 + posZ: 5.16832256 + rotX: 359.987457 + rotY: 270.0001 + rotZ: 359.984375 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265119 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false + Description: Trap. + GMNotes: '' + GUID: 6fc896 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Blood and Rust + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 100.610588 + posY: 1.56516159 + posZ: 5.16833353 + rotX: 359.9869 + rotY: 270.0 + rotZ: 359.984741 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265118 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false + Description: Trap. + GMNotes: '' + GUID: '817446' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dreadful Mechanism + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 101.021744 + posY: 1.40585113 + posZ: 3.80202127 + rotX: 359.987427 + rotY: 270.0001 + rotZ: 359.984528 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265118 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false + Description: Trap. + GMNotes: '' + GUID: 4fa340 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dreadful Mechanism + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 101.785805 + posY: 1.45584965 + posZ: 3.75804973 + rotX: 359.987366 + rotY: 270.000061 + rotZ: 359.984528 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265118 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false + Description: Trap. + GMNotes: '' + GUID: 0872f7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dreadful Mechanism + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 101.170105 + posY: 1.50584924 + posZ: 3.71445131 + rotX: 359.987366 + rotY: 270.005432 + rotZ: 359.984528 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265117 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false + Description: Trap. Poison. + GMNotes: '' + GUID: '817446' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Poisonous Gas + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 100.692337 + posY: 1.40558171 + posZ: 5.06883669 + rotX: 359.987427 + rotY: 269.999939 + rotZ: 359.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265117 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false + Description: Trap. Poison. + GMNotes: '' + GUID: 47bd50 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Poisonous Gas + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 101.103378 + posY: 1.54470325 + posZ: 5.00585747 + rotX: 359.987183 + rotY: 269.989258 + rotZ: 359.989227 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265117 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false + Description: Trap. Poison. + GMNotes: '' + GUID: '817446' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Poisonous Gas + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 101.400818 + posY: 1.56518042 + posZ: 4.86478567 + rotX: 359.987427 + rotY: 269.999969 + rotZ: 359.984528 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265116 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false + Description: Injury. Poison. + GMNotes: '' + GUID: bf90c6 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Unnatural Weariness + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 100.859726 + posY: 2.85669827 + posZ: 4.73798227 + rotX: 0.0 + rotY: 270.0 + rotZ: 58.6256943 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265116 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false + Description: Injury. Poison. + GMNotes: '' + GUID: '817446' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Unnatural Weariness + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 100.777832 + posY: 2.59425187 + posZ: 4.79823 + rotX: 0.0 + rotY: 270.0 + rotZ: 58.6256943 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265116 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false + Description: Injury. Poison. + GMNotes: '' + GUID: 24e15d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Unnatural Weariness + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 101.294968 + posY: 2.59410381 + posZ: 4.926104 + rotX: 0.0 + rotY: 270.0 + rotZ: 58.6256943 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265115 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false + Description: Monster. Mi-Go. + GMNotes: '' + GUID: '817446' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Mi-Go Guard + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 101.116432 + posY: 1.57105386 + posZ: 4.485176 + rotX: 359.990143 + rotY: 269.999969 + rotZ: 179.987747 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265115 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false + Description: Monster. Mi-Go. + GMNotes: '' + GUID: '817446' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Mi-Go Guard + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 101.245293 + posY: 1.40459144 + posZ: 4.58944225 + rotX: 359.985565 + rotY: 270.003876 + rotZ: 359.980865 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265115 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false + Description: Monster. Mi-Go. + GMNotes: '' + GUID: 774f5f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Mi-Go Guard + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 101.699791 + posY: 1.550271 + posZ: 4.99789762 + rotX: 359.985565 + rotY: 270.0039 + rotZ: 359.980865 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265114 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false + Description: Humanoid. Extradimensional. + GMNotes: '' + GUID: '817446' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Tortured Victim + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 100.877541 + posY: 1.40432525 + posZ: 6.088623 + rotX: 359.987335 + rotY: 269.999542 + rotZ: 359.984833 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265114 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false + Description: Humanoid. Extradimensional. + GMNotes: '' + GUID: d18a7d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Tortured Victim + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 101.400978 + posY: 1.45432484 + posZ: 5.97300529 + rotX: 359.987335 + rotY: 269.9995 + rotZ: 359.984833 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265114 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false + Description: Humanoid. Extradimensional. + GMNotes: '' + GUID: 7a1943 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Tortured Victim + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 101.400986 + posY: 1.60057485 + posZ: 5.9730196 + rotX: 359.987335 + rotY: 269.999573 + rotZ: 359.984833 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false +DeckIDs: +- 265121 +- 265121 +- 265121 +- 265122 +- 265122 +- 265122 +- 265119 +- 265119 +- 265119 +- 265118 +- 265118 +- 265118 +- 265117 +- 265117 +- 265117 +- 265116 +- 265116 +- 265116 +- 265115 +- 265115 +- 265115 +- 265114 +- 265114 +- 265114 +Description: '' +GMNotes: '' +GUID: 66b85c +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Encounter Deck +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.92777228 + posY: 1.73973322 + posZ: 5.75716925 + rotX: 359.919739 + rotY: 269.996124 + rotZ: 180.01683 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group B 14808b.ttslua b/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/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 791837/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group B 14808b.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group B 14808b.yaml new file mode 100644 index 000000000..d6031620b --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group B 14808b.yaml @@ -0,0 +1,44 @@ +Autoraise: true +ColorDiffuse: + b: 0.0 + g: 0.366520882 + r: 0.7058823 +ContainedObjects: +- !include 'Bag Single Group B 14808b/Custom_Model_Bag Set-aside 350b61.yaml' +- !include 'Bag Single Group B 14808b/Deck Encounter Deck a5ba22.yaml' +- !include 'Bag Single Group B 14808b/Deck Agenda Deck 300c56.yaml' +- !include 'Bag Single Group B 14808b/Deck Act Deck 018291.yaml' +- !include 'Bag Single Group B 14808b/Card Scenario c69095.yaml' +- !include 'Bag Single Group B 14808b/Card Eixodolon''s Note 817446.yaml' +- !include 'Bag Single Group B 14808b/Card Chamber of Rain aa6ad6.yaml' +- !include 'Bag Single Group B 14808b/Card Chamber of Sorrows 9f6ed8.yaml' +- !include 'Bag Single Group B 14808b/Card Scenario 99eeeb.yaml' +Description: The Labyrinths of Lunacy +GMNotes: '' +GUID: 14808b +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Bag Single Group B 14808b.ttslua' +LuaScriptState: '{"ml":{"018291":{"lock":false,"pos":{"x":-2.6885,"y":1.655,"z":-5.0485},"rot":{"x":0.0169,"y":179.9646,"z":0.0802}},"300c56":{"lock":false,"pos":{"x":-2.7247,"y":1.6566,"z":0.3733},"rot":{"x":0.0168,"y":179.9967,"z":0.0803}},"350b61":{"lock":false,"pos":{"x":1.6955,"y":1.5583,"z":14.2789},"rot":{"x":359.9551,"y":224.998,"z":0.0687}},"817446":{"lock":false,"pos":{"x":-17.12,"y":1.6793,"z":7.57},"rot":{"x":359.9201,"y":270.0002,"z":0.0169}},"99eeeb":{"lock":false,"pos":{"x":-50.9244,"y":1.7266,"z":8.1784},"rot":{"x":359.9201,"y":269.9983,"z":0.0169}},"9f6ed8":{"lock":false,"pos":{"x":-17.1201,"y":1.6748,"z":-7.7},"rot":{"x":359.9201,"y":269.9999,"z":0.0169}},"a5ba22":{"lock":false,"pos":{"x":-3.9276,"y":1.7397,"z":5.7571},"rot":{"x":359.9197,"y":270,"z":180.0168}},"aa6ad6":{"lock":false,"pos":{"x":-17.12,"y":1.6771,"z":-0.03},"rot":{"x":359.9201,"y":269.9998,"z":0.0169}},"c69095":{"lock":false,"pos":{"x":-3.956,"y":1.6556,"z":-10.4411},"rot":{"x":359.9197,"y":269.9983,"z":0.0168}}}}' +MaterialIndex: -1 +MeshIndex: -1 +Name: Bag +Nickname: Single Group B +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 9.760397 + posY: 1.28637385 + posZ: 11.7483826 + rotX: 0.07992961 + rotY: 89.9983 + rotZ: 359.9831 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group B 14808b/Card Chamber of Rain aa6ad6.yaml new file mode 100644 index 000000000..120b81eca --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group B 14808b/Card Chamber of Rain aa6ad6.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 12318 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Distortion. +GMNotes: '' +GUID: aa6ad6 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Chamber of Rain +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -17.1200275 + posY: 1.67707777 + posZ: -0.0299945511 + rotX: 359.9201 + rotY: 269.999817 + rotZ: 0.0168769062 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group B 14808b/Card Chamber of Sorrows 9f6ed8.yaml new file mode 100644 index 000000000..e12deb075 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group B 14808b/Card Chamber of Sorrows 9f6ed8.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 12320 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Prison. +GMNotes: '' +GUID: 9f6ed8 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Chamber of Sorrows +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -17.1200981 + posY: 1.67481935 + posZ: -7.699995 + rotX: 359.9201 + rotY: 269.999939 + rotZ: 0.016876379 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group B 14808b/Card Eixodolon's Note 817446.yaml new file mode 100644 index 000000000..b389fb732 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group B 14808b/Card Eixodolon's Note 817446.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 265100 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false +Description: Item. Script. +GMNotes: '' +GUID: '817446' +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Eixodolon's Note +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -17.12003 + posY: 1.67931569 + posZ: 7.569999 + rotX: 359.9201 + rotY: 270.000183 + rotZ: 0.0168757979 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group B 14808b/Card Scenario 99eeeb.yaml new file mode 100644 index 000000000..df5e25f64 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group B 14808b/Card Scenario 99eeeb.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 12300 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: The Labyrinths of Lunacy +GMNotes: '' +GUID: 99eeeb +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Scenario +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -50.9243851 + posY: 1.72662532 + posZ: 8.17843151 + rotX: 359.9201 + rotY: 269.9983 + rotZ: 0.01687863 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group B 14808b/Card Scenario c69095.yaml new file mode 100644 index 000000000..dd6282ccf --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group B 14808b/Card Scenario c69095.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 12300 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: The Labyrinths of Lunacy +GMNotes: '' +GUID: c69095 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Scenario +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.95600653 + posY: 1.65564847 + posZ: -10.4411478 + rotX: 359.919739 + rotY: 269.9983 + rotZ: 0.0168446116 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group B 14808b/Custom_Model_Bag Set-aside 350b61.yaml new file mode 100644 index 000000000..86b98ee9f --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group B 14808b/Custom_Model_Bag Set-aside 350b61.yaml @@ -0,0 +1,64 @@ +Autoraise: true +ColorDiffuse: + b: 0.02148666 + g: 0.00100758043 + r: 0.02148666 +ContainedObjects: +- !include 'Custom_Model_Bag Set-aside 350b61/Bag Set-Aside Locations 372583.yaml' +- !include 'Custom_Model_Bag Set-aside 350b61/Deck Faceless Abductors 4e91a9.yaml' +- !include 'Custom_Model_Bag Set-aside 350b61/Card Rot Diagram 817446.yaml' +- !include 'Custom_Model_Bag Set-aside 350b61/Card Key of Mysteries 7399a5.yaml' +- !include 'Custom_Model_Bag Set-aside 350b61/Card Decay Diagram 817446.yaml' +- !include 'Custom_Model_Bag Set-aside 350b61/Card Hunger Diagram bc2822.yaml' +- !include 'Custom_Model_Bag Set-aside 350b61/Card Eixodolon''s Pet 817446.yaml' +- !include 'Custom_Model_Bag Set-aside 350b61/Card Eixodolon 817446.yaml' +- !include 'Custom_Model_Bag Set-aside 350b61/Card Mysterious Syringe 817446.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 Labyrinths of Lunacy Single Group B +GMNotes: '' +GUID: 350b61 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +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.69549012 + posY: 1.55831826 + posZ: 14.2789087 + rotX: 359.955139 + rotY: 224.998016 + rotZ: 0.06867324 + scaleX: 2.0 + scaleY: 2.0 + scaleZ: 2.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/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 new file mode 100644 index 000000000..d25b36651 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/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 @@ -0,0 +1,44 @@ +Autoraise: true +ColorDiffuse: + b: 0.0 + g: 0.366520882 + r: 0.7058823 +ContainedObjects: +- !include 'Bag Set-Aside Locations 372583/Card Chamber of Decay 839314.yaml' +- !include 'Bag Set-Aside Locations 372583/Card Abandoned Warehouse 774c0b.yaml' +- !include 'Bag Set-Aside Locations 372583/Card Chamber of Poison 8d4c1e.yaml' +- !include 'Bag Set-Aside Locations 372583/Card Chamber of Regret 6c7570.yaml' +- !include 'Bag Set-Aside Locations 372583/Deck Chamber of Secrets 5f58cd.yaml' +- !include 'Bag Set-Aside Locations 372583/Card Chamber of Rot 76a7f5.yaml' +- !include 'Bag Set-Aside Locations 372583/Deck Labyrinthine Halls c22a79.yaml' +- !include 'Bag Set-Aside Locations 372583/Card Chamber of Hunger 945939.yaml' +- !include 'Bag Set-Aside Locations 372583/Card Chamber of Night 38826f.yaml' +Description: '' +GMNotes: '' +GUID: '372583' +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +MeshIndex: -1 +Name: Bag +Nickname: Set-Aside Locations +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 37.985672 + posY: 3.29153776 + posZ: -7.789857 + rotX: 359.9851 + rotY: 0.00435258541 + rotZ: 359.938354 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/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 new file mode 100644 index 000000000..16ad8a702 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/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 @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 12331 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Distortion. +GMNotes: '' +GUID: 774c0b +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Abandoned Warehouse +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 30.538517 + posY: 3.48395348 + posZ: 0.6072215 + rotX: 359.920135 + rotY: 269.999939 + rotZ: 0.0168661959 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/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 new file mode 100644 index 000000000..e0ec96dfa --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/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 @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 12328 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Distortion. +GMNotes: '' +GUID: '839314' +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Chamber of Decay +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 30.66237 + posY: 3.508583 + posZ: -8.228242 + rotX: 357.48587 + rotY: 269.942871 + rotZ: 1.71466255 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/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 new file mode 100644 index 000000000..b9d74d79e --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/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 @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 12327 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Distortion. +GMNotes: '' +GUID: '945939' +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Chamber of Hunger +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 29.1706886 + posY: 3.56947613 + posZ: -7.70177126 + rotX: 1.28734708 + rotY: 269.978729 + rotZ: 358.7333 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/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 new file mode 100644 index 000000000..6f2858344 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/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 @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 12322 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Prison. +GMNotes: '' +GUID: 38826f +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Chamber of Night +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 29.3933315 + posY: 3.480069 + posZ: -10.2015715 + rotX: 359.920135 + rotY: 269.999939 + rotZ: 0.0168679319 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/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 new file mode 100644 index 000000000..4c879d515 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/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 @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 12330 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 8d4c1e +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Chamber of Poison +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 30.6962261 + posY: 3.48286462 + posZ: -2.34567428 + rotX: 359.920135 + rotY: 270.0 + rotZ: 0.0168705061 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/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 new file mode 100644 index 000000000..b6f1cee4f --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/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 @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 12323 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Distortion. +GMNotes: '' +GUID: 6c7570 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Chamber of Regret +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 30.78567 + posY: 3.48028827 + posZ: -10.6671362 + rotX: 359.920135 + rotY: 270.0 + rotZ: 0.016867375 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/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 new file mode 100644 index 000000000..7f3d5e708 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/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 @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 12329 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Distortion. +GMNotes: '' +GUID: 76a7f5 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Chamber of Rot +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 29.2708988 + posY: 3.545433 + posZ: -7.372909 + rotX: 0.4738458 + rotY: 269.973724 + rotZ: 355.9659 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/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 new file mode 100644 index 000000000..586938536 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/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 @@ -0,0 +1,172 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 12317 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Prison. Distortion. + GMNotes: '' + GUID: 2ce8bf + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Chamber of Secrets + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 4.23194 + posY: 1.031291 + posZ: 4.65191174 + rotX: 359.978333 + rotY: 270.008942 + rotZ: 359.993958 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12316 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Prison. Distortion. + GMNotes: '' + GUID: 8fcb18 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Chamber of Secrets + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 4.278675 + posY: 1.03195429 + posZ: 7.136062 + rotX: 0.005884989 + rotY: 269.971252 + rotZ: 359.982819 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12315 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Prison. Distortion. + GMNotes: '' + GUID: f97fe2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Chamber of Secrets + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 4.35326433 + posY: 1.14595437 + posZ: 7.05320454 + rotX: -0.00226479466 + rotY: 270.0046 + rotZ: 1.50677872 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 12317 +- 12316 +- 12315 +Description: '' +GMNotes: '' +GUID: 5f58cd +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Chamber of Secrets +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 32.0402069 + posY: 3.47957635 + posZ: -5.585189 + rotX: 359.920135 + rotY: 269.999939 + rotZ: 0.0168685075 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/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 new file mode 100644 index 000000000..a74c9b779 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/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 @@ -0,0 +1,172 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 12324 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: d13692 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Labyrinthine Halls + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 4.157674 + posY: 1.03260434 + posZ: -5.54292774 + rotX: 0.0192153 + rotY: 270.0701 + rotZ: 359.936432 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12325 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 5eb4c2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Labyrinthine Halls + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 4.115971 + posY: 1.18805337 + posZ: -5.70437145 + rotX: 359.98233 + rotY: 270.027954 + rotZ: 359.2211 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12326 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: '323435' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Labyrinthine Halls + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 4.246885 + posY: 1.19408929 + posZ: -5.54449 + rotX: 0.00275225355 + rotY: 270.0342 + rotZ: 0.0230518561 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 12324 +- 12325 +- 12326 +Description: '' +GMNotes: '' +GUID: c22a79 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Labyrinthine Halls +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 28.8971767 + posY: 3.48086715 + posZ: -4.78153753 + rotX: 359.920135 + rotY: 269.999969 + rotZ: 0.0168725159 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group B 14808b/Custom_Model_Bag Set-aside 350b61/Card Decay Diagram 817446.yaml new file mode 100644 index 000000000..8c7785ef9 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group B 14808b/Custom_Model_Bag Set-aside 350b61/Card Decay Diagram 817446.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 265108 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false +Description: Item. Script. +GMNotes: '' +GUID: '817446' +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Decay Diagram +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 119.411568 + posY: 2.49912381 + posZ: -56.636322 + rotX: 359.987427 + rotY: 270.002716 + rotZ: 359.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group B 14808b/Custom_Model_Bag Set-aside 350b61/Card Eixodolon 817446.yaml new file mode 100644 index 000000000..5efe1bc5a --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group B 14808b/Custom_Model_Bag Set-aside 350b61/Card Eixodolon 817446.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 265109 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false +Description: Your Anguish Is My Power +GMNotes: '' +GUID: '817446' +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Eixodolon +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 124.546219 + posY: 3.642976 + posZ: -60.8289566 + rotX: 359.987427 + rotY: 270.000336 + rotZ: 359.984528 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/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 new file mode 100644 index 000000000..635ac8a15 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/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 @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 265111 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false +Description: You Are Not Its First Victim, Or Its Last +GMNotes: '' +GUID: '817446' +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Eixodolon's Pet +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 125.505295 + posY: 3.64295149 + posZ: -67.04814 + rotX: 359.987427 + rotY: 270.0028 + rotZ: 359.984528 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group B 14808b/Custom_Model_Bag Set-aside 350b61/Card Hunger Diagram bc2822.yaml new file mode 100644 index 000000000..ce697ae99 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group B 14808b/Custom_Model_Bag Set-aside 350b61/Card Hunger Diagram bc2822.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 265106 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false +Description: Item. Script. +GMNotes: '' +GUID: bc2822 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Hunger Diagram +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 124.02626 + posY: 2.398194 + posZ: -67.12005 + rotX: 359.987427 + rotY: 270.002625 + rotZ: 359.984528 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/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 new file mode 100644 index 000000000..07f7f7719 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/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 @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 265101 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false +Description: Item. Key. +GMNotes: '' +GUID: 7399a5 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Key of Mysteries +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 119.23513 + posY: 2.496812 + posZ: -64.31887 + rotX: 359.987427 + rotY: 270.000244 + rotZ: 359.984528 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group B 14808b/Custom_Model_Bag Set-aside 350b61/Card Mysterious Syringe 817446.yaml new file mode 100644 index 000000000..6488d3748 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group B 14808b/Custom_Model_Bag Set-aside 350b61/Card Mysterious Syringe 817446.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 265102 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false +Description: Item. +GMNotes: '' +GUID: '817446' +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Mysterious Syringe +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 124.526085 + posY: 3.64296436 + posZ: -57.9982567 + rotX: 359.987427 + rotY: 270.0003 + rotZ: 359.984528 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group B 14808b/Custom_Model_Bag Set-aside 350b61/Card Rot Diagram 817446.yaml new file mode 100644 index 000000000..21caeadd7 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group B 14808b/Custom_Model_Bag Set-aside 350b61/Card Rot Diagram 817446.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 265104 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false +Description: Item. Script. +GMNotes: '' +GUID: '817446' +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Rot Diagram +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 118.780312 + posY: 2.49737215 + posZ: -61.8367958 + rotX: 359.987427 + rotY: 270.002563 + rotZ: 359.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group B 14808b/Custom_Model_Bag Set-aside 350b61/Deck Faceless Abductors 4e91a9.yaml new file mode 100644 index 000000000..51f8548d2 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group B 14808b/Custom_Model_Bag Set-aside 350b61/Deck Faceless Abductors 4e91a9.yaml @@ -0,0 +1,129 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 265113 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false + Description: Monster. Nightgaunt. + GMNotes: '' + GUID: '598744' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Faceless Abductor + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 114.1994 + posY: 1.415566 + posZ: -42.9447 + rotX: 359.987427 + rotY: 270.000427 + rotZ: 359.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265113 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false + Description: Monster. Nightgaunt. + GMNotes: '' + GUID: '817446' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Faceless Abductor + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 114.105927 + posY: 1.56090713 + posZ: -43.0390663 + rotX: 359.983521 + rotY: 270.016632 + rotZ: 359.9719 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false +DeckIDs: +- 265113 +- 265113 +Description: '' +GMNotes: '' +GUID: 4e91a9 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Faceless Abductors +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 118.964661 + posY: 2.50373459 + posZ: -65.72195 + rotX: 359.987427 + rotY: 270.000458 + rotZ: 359.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group B 14808b/Deck Act Deck 018291.yaml new file mode 100644 index 000000000..81b960aa7 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group B 14808b/Deck Act Deck 018291.yaml @@ -0,0 +1,172 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 12314 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 3 + GMNotes: '' + GUID: '318613' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: 'The Escape ' + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -51.4327965 + posY: 1.06138039 + posZ: 20.9896 + rotX: -6.072141e-07 + rotY: 89.9999542 + rotZ: 3.91701178e-07 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12311 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 2 + GMNotes: '' + GUID: 2c450f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Seeping Death (Group B) + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 10.2088995 + posY: 1.031709 + posZ: -5.52045345 + rotX: -0.0004157994 + rotY: 180.019073 + rotZ: -0.00038394038 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12307 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 1 + GMNotes: '' + GUID: 02cc53 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Watery Grave (Group B) + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 21.74739 + posY: 1.677686 + posZ: -10.8052187 + rotX: 0.0115384534 + rotY: 179.997208 + rotZ: 0.0777768 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 12314 +- 12311 +- 12307 +Description: The Labyrinths of Lunacy Single Group B +GMNotes: '' +GUID: 018291 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Act Deck +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.68849945 + posY: 1.65499723 + posZ: -5.04853964 + rotX: 0.01688463 + rotY: 179.96463 + rotZ: 0.08024735 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group B 14808b/Deck Agenda Deck 300c56.yaml new file mode 100644 index 000000000..feafccd5b --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group B 14808b/Deck Agenda Deck 300c56.yaml @@ -0,0 +1,172 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 12305 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 3 + GMNotes: '' + GUID: c30682 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Mastermind + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -25.8253517 + posY: 1.06138027 + posZ: 38.9641876 + rotX: -5.977163e-07 + rotY: 180.000214 + rotZ: 3.81947359e-07 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12304 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 2 + GMNotes: '' + GUID: 8d52dd + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Agony and Despair + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -25.9357567 + posY: 1.20038235 + posZ: 39.2535973 + rotX: -0.000432104222 + rotY: 179.998566 + rotZ: 0.0008023538 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12302 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 1 + GMNotes: '' + GUID: bce775 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Awakening + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 21.8359814 + posY: 1.67855644 + posZ: -6.755071 + rotX: 0.008892534 + rotY: 179.997116 + rotZ: 0.0614743829 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 12305 +- 12304 +- 12302 +Description: The Labyrinths of Lunacy Single Group B +GMNotes: '' +GUID: 300c56 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Agenda Deck +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.72468257 + posY: 1.656641 + posZ: 0.37331602 + rotX: 0.0168396588 + rotY: 179.996674 + rotZ: 0.08025731 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group B 14808b/Deck Encounter Deck a5ba22.yaml new file mode 100644 index 000000000..f59f9c0d1 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group B 14808b/Deck Encounter Deck a5ba22.yaml @@ -0,0 +1,1075 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 265121 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: '817446' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Paradox Effect + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 101.089371 + posY: 1.39607489 + posZ: 2.254506 + rotX: 359.989929 + rotY: 270.000031 + rotZ: 359.9876 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265121 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: d50777 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Paradox Effect + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 100.856 + posY: 1.54211807 + posZ: 2.49619722 + rotX: 359.989929 + rotY: 270.0 + rotZ: 359.987579 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265121 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: 86ca2a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Paradox Effect + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 100.856018 + posY: 1.56403816 + posZ: 2.49620557 + rotX: 359.986755 + rotY: 269.999969 + rotZ: 359.982239 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265122 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: 3bf255 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Harvested Pain + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 100.304947 + posY: 1.40837359 + posZ: -5.14877033 + rotX: 359.9848 + rotY: 270.0 + rotZ: 359.983429 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265122 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: 2927c6 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Harvested Pain + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 100.304947 + posY: 1.55442476 + posZ: -5.18531656 + rotX: 359.98175 + rotY: 269.999969 + rotZ: 359.969971 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265122 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: '817446' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Harvested Pain + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 100.306816 + posY: 1.57090247 + posZ: -4.69011068 + rotX: 359.9873 + rotY: 269.999634 + rotZ: 359.984375 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265119 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false + Description: Trap. + GMNotes: '' + GUID: '817446' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Blood and Rust + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 100.267433 + posY: 1.40541661 + posZ: 5.20540237 + rotX: 359.987457 + rotY: 270.000061 + rotZ: 359.9844 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265119 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false + Description: Trap. + GMNotes: '' + GUID: 8b2c36 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Blood and Rust + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 100.61058 + posY: 1.5512836 + posZ: 5.16832256 + rotX: 359.987457 + rotY: 270.0001 + rotZ: 359.984375 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265119 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false + Description: Trap. + GMNotes: '' + GUID: 6fc896 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Blood and Rust + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 100.610588 + posY: 1.56516159 + posZ: 5.16833353 + rotX: 359.9869 + rotY: 270.0 + rotZ: 359.984741 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265118 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false + Description: Trap. + GMNotes: '' + GUID: '817446' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dreadful Mechanism + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 101.021744 + posY: 1.40585113 + posZ: 3.80202127 + rotX: 359.987427 + rotY: 270.0001 + rotZ: 359.984528 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265118 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false + Description: Trap. + GMNotes: '' + GUID: 4fa340 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dreadful Mechanism + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 101.785805 + posY: 1.45584965 + posZ: 3.75804973 + rotX: 359.987366 + rotY: 270.000061 + rotZ: 359.984528 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265118 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false + Description: Trap. + GMNotes: '' + GUID: 0872f7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dreadful Mechanism + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 101.170105 + posY: 1.50584924 + posZ: 3.71445131 + rotX: 359.987366 + rotY: 270.005432 + rotZ: 359.984528 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265117 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false + Description: Trap. Poison. + GMNotes: '' + GUID: '817446' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Poisonous Gas + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 100.692337 + posY: 1.40558171 + posZ: 5.06883669 + rotX: 359.987427 + rotY: 269.999939 + rotZ: 359.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265117 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false + Description: Trap. Poison. + GMNotes: '' + GUID: 47bd50 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Poisonous Gas + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 101.103378 + posY: 1.54470325 + posZ: 5.00585747 + rotX: 359.987183 + rotY: 269.989258 + rotZ: 359.989227 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265117 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false + Description: Trap. Poison. + GMNotes: '' + GUID: '817446' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Poisonous Gas + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 101.400818 + posY: 1.56518042 + posZ: 4.86478567 + rotX: 359.987427 + rotY: 269.999969 + rotZ: 359.984528 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265116 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false + Description: Injury. Poison. + GMNotes: '' + GUID: bf90c6 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Unnatural Weariness + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 100.859726 + posY: 2.85669827 + posZ: 4.73798227 + rotX: 0.0 + rotY: 270.0 + rotZ: 58.6256943 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265116 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false + Description: Injury. Poison. + GMNotes: '' + GUID: '817446' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Unnatural Weariness + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 100.777832 + posY: 2.59425187 + posZ: 4.79823 + rotX: 0.0 + rotY: 270.0 + rotZ: 58.6256943 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265116 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false + Description: Injury. Poison. + GMNotes: '' + GUID: 24e15d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Unnatural Weariness + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 101.294968 + posY: 2.59410381 + posZ: 4.926104 + rotX: 0.0 + rotY: 270.0 + rotZ: 58.6256943 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265115 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false + Description: Monster. Mi-Go. + GMNotes: '' + GUID: '817446' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Mi-Go Guard + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 101.116432 + posY: 1.57105386 + posZ: 4.485176 + rotX: 359.990143 + rotY: 269.999969 + rotZ: 179.987747 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265115 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false + Description: Monster. Mi-Go. + GMNotes: '' + GUID: '817446' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Mi-Go Guard + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 101.245293 + posY: 1.40459144 + posZ: 4.58944225 + rotX: 359.985565 + rotY: 270.003876 + rotZ: 359.980865 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265115 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false + Description: Monster. Mi-Go. + GMNotes: '' + GUID: 774f5f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Mi-Go Guard + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 101.699791 + posY: 1.550271 + posZ: 4.99789762 + rotX: 359.985565 + rotY: 270.0039 + rotZ: 359.980865 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265114 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false + Description: Humanoid. Extradimensional. + GMNotes: '' + GUID: '817446' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Tortured Victim + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 100.877541 + posY: 1.40432525 + posZ: 6.088623 + rotX: 359.987335 + rotY: 269.999542 + rotZ: 359.984833 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265114 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false + Description: Humanoid. Extradimensional. + GMNotes: '' + GUID: d18a7d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Tortured Victim + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 101.400978 + posY: 1.45432484 + posZ: 5.97300529 + rotX: 359.987335 + rotY: 269.9995 + rotZ: 359.984833 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265114 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false + Description: Humanoid. Extradimensional. + GMNotes: '' + GUID: 7a1943 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Tortured Victim + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 101.400986 + posY: 1.60057485 + posZ: 5.9730196 + rotX: 359.987335 + rotY: 269.999573 + rotZ: 359.984833 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false +DeckIDs: +- 265121 +- 265121 +- 265121 +- 265122 +- 265122 +- 265122 +- 265119 +- 265119 +- 265119 +- 265118 +- 265118 +- 265118 +- 265117 +- 265117 +- 265117 +- 265116 +- 265116 +- 265116 +- 265115 +- 265115 +- 265115 +- 265114 +- 265114 +- 265114 +Description: '' +GMNotes: '' +GUID: a5ba22 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Encounter Deck +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.927578 + posY: 1.739733 + posZ: 5.757073 + rotX: 359.919739 + rotY: 270.0 + rotZ: 180.016815 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group C 76b476.ttslua b/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/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 791837/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group C 76b476.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group C 76b476.yaml new file mode 100644 index 000000000..23c3da36a --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group C 76b476.yaml @@ -0,0 +1,44 @@ +Autoraise: true +ColorDiffuse: + b: 0.0 + g: 0.366520882 + r: 0.7058823 +ContainedObjects: +- !include 'Bag Single Group C 76b476/Custom_Model_Bag Set-aside 412475.yaml' +- !include 'Bag Single Group C 76b476/Deck Encounter Deck b59d21.yaml' +- !include 'Bag Single Group C 76b476/Deck Agenda Deck 300c56.yaml' +- !include 'Bag Single Group C 76b476/Deck Act Deck 99a909.yaml' +- !include 'Bag Single Group C 76b476/Card Scenario c69095.yaml' +- !include 'Bag Single Group C 76b476/Card Eixodolon''s Note 817446.yaml' +- !include 'Bag Single Group C 76b476/Deck Chamber of Secrets 61d2f2.yaml' +- !include 'Bag Single Group C 76b476/Card Chamber of Night 38826f.yaml' +- !include 'Bag Single Group C 76b476/Card Scenario 025095.yaml' +Description: The Labyrinths of Lunacy +GMNotes: '' +GUID: 76b476 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Bag Single Group C 76b476.ttslua' +LuaScriptState: '{"ml":{"025095":{"lock":false,"pos":{"x":-50.9244,"y":1.7266,"z":8.1784},"rot":{"x":359.9201,"y":269.9998,"z":0.0169}},"300c56":{"lock":false,"pos":{"x":-2.7247,"y":1.6566,"z":0.3733},"rot":{"x":0.0168,"y":180.0144,"z":0.0803}},"38826f":{"lock":false,"pos":{"x":-17.1201,"y":1.6748,"z":-7.7},"rot":{"x":359.9201,"y":269.9998,"z":0.0169}},"412475":{"lock":false,"pos":{"x":1.6955,"y":1.5583,"z":14.2789},"rot":{"x":359.9551,"y":224.998,"z":0.0687}},"61d2f2":{"lock":false,"pos":{"x":-17.12,"y":1.6751,"z":-0.03},"rot":{"x":359.9201,"y":270.0101,"z":0.0169}},"817446":{"lock":false,"pos":{"x":-17.12,"y":1.6793,"z":7.57},"rot":{"x":359.9201,"y":270.0002,"z":0.0169}},"99a909":{"lock":false,"pos":{"x":-2.6885,"y":1.655,"z":-5.0485},"rot":{"x":0.0168,"y":179.9981,"z":0.0803}},"b59d21":{"lock":false,"pos":{"x":-3.9275,"y":1.7397,"z":5.7571},"rot":{"x":359.9197,"y":270.0001,"z":180.0168}},"c69095":{"lock":false,"pos":{"x":-3.956,"y":1.6556,"z":-10.4411},"rot":{"x":359.9197,"y":269.9998,"z":0.0168}}}}' +MaterialIndex: -1 +MeshIndex: -1 +Name: Bag +Nickname: Single Group C +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 9.706694 + posY: 1.285165 + posZ: 7.251548 + rotX: 0.07992903 + rotY: 89.99107 + rotZ: 359.9831 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group C 76b476/Card Chamber of Night 38826f.yaml new file mode 100644 index 000000000..95970145a --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group C 76b476/Card Chamber of Night 38826f.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 12322 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Prison. +GMNotes: '' +GUID: 38826f +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Chamber of Night +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -17.1200981 + posY: 1.67481935 + posZ: -7.699995 + rotX: 359.9201 + rotY: 269.999847 + rotZ: 0.01687664 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group C 76b476/Card Eixodolon's Note 817446.yaml new file mode 100644 index 000000000..e6a5ceec5 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group C 76b476/Card Eixodolon's Note 817446.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 265100 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false +Description: Item. Script. +GMNotes: '' +GUID: '817446' +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Eixodolon's Note +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -17.1200314 + posY: 1.67931569 + posZ: 7.57000065 + rotX: 359.9201 + rotY: 270.000183 + rotZ: 0.0168762039 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group C 76b476/Card Scenario 025095.yaml new file mode 100644 index 000000000..a15859564 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group C 76b476/Card Scenario 025095.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 12300 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: The Labyrinths of Lunacy Single Group C +GMNotes: '' +GUID: 025095 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Scenario +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -50.9243851 + posY: 1.72662532 + posZ: 8.178431 + rotX: 359.9201 + rotY: 269.999756 + rotZ: 0.0168771483 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group C 76b476/Card Scenario c69095.yaml new file mode 100644 index 000000000..875e75042 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group C 76b476/Card Scenario c69095.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 12300 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: The Labyrinths of Lunacy Single Group C +GMNotes: '' +GUID: c69095 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Scenario +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.95600057 + posY: 1.65564811 + posZ: -10.4411383 + rotX: 359.919739 + rotY: 269.9998 + rotZ: 0.01684286 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group C 76b476/Custom_Model_Bag Set-aside 412475.yaml new file mode 100644 index 000000000..1c7ef83da --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group C 76b476/Custom_Model_Bag Set-aside 412475.yaml @@ -0,0 +1,64 @@ +Autoraise: true +ColorDiffuse: + b: 0.02148666 + g: 0.00100758043 + r: 0.02148666 +ContainedObjects: +- !include 'Custom_Model_Bag Set-aside 412475/Bag Set-Aside Locations 372583.yaml' +- !include 'Custom_Model_Bag Set-aside 412475/Card Key of Mysteries 7399a5.yaml' +- !include 'Custom_Model_Bag Set-aside 412475/Deck Faceless Abductors c0b1fc.yaml' +- !include 'Custom_Model_Bag Set-aside 412475/Card Decay Diagram 817446.yaml' +- !include 'Custom_Model_Bag Set-aside 412475/Card Hunger Diagram bc2822.yaml' +- !include 'Custom_Model_Bag Set-aside 412475/Card Rot Diagram 817446.yaml' +- !include 'Custom_Model_Bag Set-aside 412475/Card Eixodolon''s Pet 817446.yaml' +- !include 'Custom_Model_Bag Set-aside 412475/Card Eixodolon 817446.yaml' +- !include 'Custom_Model_Bag Set-aside 412475/Card Mysterious Syringe 817446.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 Labyrinths of Lunacy Single Group C +GMNotes: '' +GUID: '412475' +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +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.69546568 + posY: 1.5583179 + posZ: 14.2788839 + rotX: 359.955139 + rotY: 224.998 + rotZ: 0.06867313 + scaleX: 2.0 + scaleY: 2.0 + scaleZ: 2.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/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 new file mode 100644 index 000000000..018e0caf6 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/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 @@ -0,0 +1,43 @@ +Autoraise: true +ColorDiffuse: + b: 0.0 + g: 0.366520882 + r: 0.7058823 +ContainedObjects: +- !include 'Bag Set-Aside Locations 372583/Card Chamber of Poison 8d4c1e.yaml' +- !include 'Bag Set-Aside Locations 372583/Card Abandoned Warehouse 774c0b.yaml' +- !include 'Bag Set-Aside Locations 372583/Card Chamber of Rot 76a7f5.yaml' +- !include 'Bag Set-Aside Locations 372583/Deck Labyrinthine Halls 682bcd.yaml' +- !include 'Bag Set-Aside Locations 372583/Card Chamber of Decay 839314.yaml' +- !include 'Bag Set-Aside Locations 372583/Card Chamber of Sorrows 9f6ed8.yaml' +- !include 'Bag Set-Aside Locations 372583/Card Chamber of Rain aa6ad6.yaml' +- !include 'Bag Set-Aside Locations 372583/Card Chamber of Hunger 945939.yaml' +Description: The Labyrinths of Lunacy Single Group C +GMNotes: '' +GUID: '372583' +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +MeshIndex: -1 +Name: Bag +Nickname: Set-Aside Locations +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 33.12592 + posY: 3.2994132 + posZ: -3.85547328 + rotX: -0.004782517 + rotY: 0.00201013638 + rotZ: 359.937042 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/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 new file mode 100644 index 000000000..a66f2ad81 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/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 @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 12331 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Distortion. +GMNotes: '' +GUID: 774c0b +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Abandoned Warehouse +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 31.3851013 + posY: 3.47793841 + posZ: -11.3334475 + rotX: 359.91745 + rotY: 269.994751 + rotZ: 0.0154597433 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/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 new file mode 100644 index 000000000..7334caeba --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/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 @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 12328 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Distortion. +GMNotes: '' +GUID: '839314' +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Chamber of Decay +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 31.6242046 + posY: 3.53982973 + posZ: -13.6363354 + rotX: 2.500669 + rotY: 269.795471 + rotZ: 358.146851 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/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 new file mode 100644 index 000000000..9dd6144c7 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/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 @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 12327 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Distortion. +GMNotes: '' +GUID: '945939' +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Chamber of Hunger +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 27.7517719 + posY: 3.47963119 + posZ: -14.14752 + rotX: 359.920135 + rotY: 270.000183 + rotZ: 0.0168696456 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/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 new file mode 100644 index 000000000..2e06c6fd9 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/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 @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 12330 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 8d4c1e +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Chamber of Poison +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 31.5727539 + posY: 3.5353024 + posZ: -14.089633 + rotX: 2.43030429 + rotY: 270.072327 + rotZ: 2.188302 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/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 new file mode 100644 index 000000000..7569aaf78 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/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 @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 12318 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Distortion. +GMNotes: '' +GUID: aa6ad6 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Chamber of Rain +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 25.462101 + posY: 3.55748415 + posZ: -11.9077129 + rotX: 2.64409876 + rotY: 270.010162 + rotZ: 0.0230686571 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/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 new file mode 100644 index 000000000..62b2227fc --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/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 @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 12329 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Distortion. +GMNotes: '' +GUID: 76a7f5 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Chamber of Rot +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 34.3181763 + posY: 3.55192161 + posZ: -10.0649824 + rotX: 357.0621 + rotY: 269.988129 + rotZ: 0.00939489249 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/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 new file mode 100644 index 000000000..c164a30fd --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/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 @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 12320 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Prison. +GMNotes: '' +GUID: 9f6ed8 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Chamber of Sorrows +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 28.5447388 + posY: 3.47927237 + posZ: -11.4813108 + rotX: 359.915741 + rotY: 269.858154 + rotZ: 0.017681459 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/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 new file mode 100644 index 000000000..c2d624b01 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/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 @@ -0,0 +1,172 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 12325 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 5eb4c2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Labyrinthine Halls + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 22.3513775 + posY: 2.271938 + posZ: -15.9578934 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12324 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: d13692 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Labyrinthine Halls + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 24.7727642 + posY: 2.26954675 + posZ: -12.6157341 + rotX: 0.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12326 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: '323435' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Labyrinthine Halls + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 22.3928566 + posY: 1.67912579 + posZ: -15.1889505 + rotX: 359.927246 + rotY: 269.97287 + rotZ: 358.9575 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 12325 +- 12324 +- 12326 +Description: '' +GMNotes: '' +GUID: 682bcd +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Labyrinthine Halls +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 26.714 + posY: 3.48342848 + posZ: -13.3854418 + rotX: 359.9201 + rotY: 270.024841 + rotZ: 0.0168363973 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group C 76b476/Custom_Model_Bag Set-aside 412475/Card Decay Diagram 817446.yaml new file mode 100644 index 000000000..8ebb34f02 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group C 76b476/Custom_Model_Bag Set-aside 412475/Card Decay Diagram 817446.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 265108 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false +Description: Item. Script. +GMNotes: '' +GUID: '817446' +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Decay Diagram +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 109.674553 + posY: 2.39798141 + posZ: -50.0393639 + rotX: 359.987427 + rotY: 270.0025 + rotZ: 359.984528 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group C 76b476/Custom_Model_Bag Set-aside 412475/Card Eixodolon 817446.yaml new file mode 100644 index 000000000..ab5c68ecd --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group C 76b476/Custom_Model_Bag Set-aside 412475/Card Eixodolon 817446.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 265109 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false +Description: Your Anguish Is My Power +GMNotes: '' +GUID: '817446' +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Eixodolon +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 114.094879 + posY: 2.40076733 + posZ: -46.006813 + rotX: 359.987427 + rotY: 270.000122 + rotZ: 359.984528 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/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 new file mode 100644 index 000000000..76bd350af --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/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 @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 265111 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false +Description: You Are Not Its First Victim, Or Its Last +GMNotes: '' +GUID: '817446' +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Eixodolon's Pet +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 112.080261 + posY: 2.39828277 + posZ: -51.993618 + rotX: 359.987427 + rotY: 270.0025 + rotZ: 359.984528 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group C 76b476/Custom_Model_Bag Set-aside 412475/Card Hunger Diagram bc2822.yaml new file mode 100644 index 000000000..60acf3a80 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group C 76b476/Custom_Model_Bag Set-aside 412475/Card Hunger Diagram bc2822.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 265106 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false +Description: Item. Script. +GMNotes: '' +GUID: bc2822 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Hunger Diagram +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 109.430244 + posY: 2.39860344 + posZ: -47.6108246 + rotX: 359.987427 + rotY: 270.002441 + rotZ: 359.984528 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/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 new file mode 100644 index 000000000..be05e1fa7 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/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 @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 265101 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false +Description: Item. Key. +GMNotes: '' +GUID: 7399a5 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Key of Mysteries +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 111.200363 + posY: 2.398962 + posZ: -48.58278 + rotX: 359.987427 + rotY: 270.0002 + rotZ: 359.984528 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group C 76b476/Custom_Model_Bag Set-aside 412475/Card Mysterious Syringe 817446.yaml new file mode 100644 index 000000000..ce31068b0 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group C 76b476/Custom_Model_Bag Set-aside 412475/Card Mysterious Syringe 817446.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 265102 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false +Description: Item. +GMNotes: '' +GUID: '817446' +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Mysterious Syringe +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 114.264595 + posY: 2.42660546 + posZ: -44.8615456 + rotX: 359.987427 + rotY: 270.000183 + rotZ: 359.984528 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group C 76b476/Custom_Model_Bag Set-aside 412475/Card Rot Diagram 817446.yaml new file mode 100644 index 000000000..25f078ade --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group C 76b476/Custom_Model_Bag Set-aside 412475/Card Rot Diagram 817446.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 265104 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false +Description: Item. Script. +GMNotes: '' +GUID: '817446' +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Rot Diagram +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 112.1399 + posY: 2.397568 + posZ: -54.5090828 + rotX: 359.987427 + rotY: 270.002441 + rotZ: 359.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group C 76b476/Custom_Model_Bag Set-aside 412475/Deck Faceless Abductors c0b1fc.yaml new file mode 100644 index 000000000..cad251bb4 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group C 76b476/Custom_Model_Bag Set-aside 412475/Deck Faceless Abductors c0b1fc.yaml @@ -0,0 +1,129 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 265113 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false + Description: Monster. Nightgaunt. + GMNotes: '' + GUID: '598744' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Faceless Abductor + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 104.158714 + posY: 1.41763461 + posZ: -42.4382439 + rotX: 359.987427 + rotY: 270.000061 + rotZ: 359.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265113 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false + Description: Monster. Nightgaunt. + GMNotes: '' + GUID: '817446' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Faceless Abductor + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 104.617 + posY: 1.562912 + posZ: -42.60566 + rotX: 359.9874 + rotY: 270.001038 + rotZ: 359.985718 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false +DeckIDs: +- 265113 +- 265113 +Description: '' +GMNotes: '' +GUID: c0b1fc +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Faceless Abductors +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 109.329147 + posY: 2.40427518 + posZ: -50.7656326 + rotX: 359.987427 + rotY: 270.0 + rotZ: 359.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group C 76b476/Deck Act Deck 99a909.yaml new file mode 100644 index 000000000..a5fe62a64 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group C 76b476/Deck Act Deck 99a909.yaml @@ -0,0 +1,172 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 12314 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 3 + GMNotes: '' + GUID: '318613' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: 'The Escape ' + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -52.8227348 + posY: 1.06138027 + posZ: 19.95879 + rotX: -1.0171733e-06 + rotY: 89.99951 + rotZ: -3.07382066e-07 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12312 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 2 + GMNotes: '' + GUID: 119a43 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Pet (Group C) + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 7.46902752 + posY: 1.03166246 + posZ: -7.329862 + rotX: -0.0011785978 + rotY: 180.027039 + rotZ: 359.9932 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12309 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 1 + GMNotes: '' + GUID: 9e2b9c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Levers (Group C) + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 7.878858 + posY: 1.1771543 + posZ: -6.87013149 + rotX: 0.00279826857 + rotY: 180.0438 + rotZ: 359.993134 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 12314 +- 12312 +- 12309 +Description: The Labyrinths of Lunacy +GMNotes: '' +GUID: 99a909 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Act Deck +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.68850064 + posY: 1.65499711 + posZ: -5.04853964 + rotX: 0.0168375056 + rotY: 179.998077 + rotZ: 0.08025791 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group C 76b476/Deck Agenda Deck 300c56.yaml new file mode 100644 index 000000000..9cc3a5a6e --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group C 76b476/Deck Agenda Deck 300c56.yaml @@ -0,0 +1,172 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 12305 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 3 + GMNotes: '' + GUID: c30682 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Mastermind + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -25.8253517 + posY: 1.06138027 + posZ: 38.9641876 + rotX: -5.977163e-07 + rotY: 180.000214 + rotZ: 3.81947359e-07 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12304 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 2 + GMNotes: '' + GUID: 8d52dd + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Agony and Despair + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -25.9357567 + posY: 1.20038235 + posZ: 39.2535973 + rotX: -0.000432104222 + rotY: 179.998566 + rotZ: 0.0008023538 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12302 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 1 + GMNotes: '' + GUID: bce775 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Awakening + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 21.6716518 + posY: 1.6990937 + posZ: 4.24535275 + rotX: 0.653278232 + rotY: 180.015625 + rotZ: 0.08003079 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 12305 +- 12304 +- 12302 +Description: '' +GMNotes: '' +GUID: 300c56 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Agenda Deck +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.72468114 + posY: 1.656641 + posZ: 0.373315722 + rotX: 0.0168145075 + rotY: 180.014389 + rotZ: 0.08026248 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group C 76b476/Deck Chamber of Secrets 61d2f2.yaml new file mode 100644 index 000000000..18aecc97d --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group C 76b476/Deck Chamber of Secrets 61d2f2.yaml @@ -0,0 +1,215 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 12317 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Prison. Distortion. + GMNotes: '' + GUID: 2ce8bf + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Chamber of Secrets + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 12.674634 + posY: 1.53427577 + posZ: -4.5921526 + rotX: 359.9227 + rotY: 270.0101 + rotZ: 0.0166940652 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12316 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Prison. Distortion. + GMNotes: '' + GUID: 8fcb18 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Chamber of Secrets + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 12.1639509 + posY: 1.58323693 + posZ: -4.666873 + rotX: 0.0810070038 + rotY: 269.911652 + rotZ: 0.136877686 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12323 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Distortion. + GMNotes: '' + GUID: 6c7570 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Chamber of Regret + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 12.4056654 + posY: 1.72930384 + posZ: -5.233029 + rotX: 0.08340683 + rotY: 270.023224 + rotZ: 0.218772218 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12315 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Prison. Distortion. + GMNotes: '' + GUID: f97fe2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Chamber of Secrets + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 12.5038357 + posY: 1.78283751 + posZ: -6.001105 + rotX: 0.07492048 + rotY: 270.001129 + rotZ: 0.259238183 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '123': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/915801999159346692/3BB153DDF540EA4A58C7D4D8C595A2A3F29D2307/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/915801999159348883/618307711EA45B63A29CE7C499ADCB2365311ACB/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 12317 +- 12316 +- 12323 +- 12315 +Description: The Labyrinths of Lunacy Single Group C +GMNotes: '' +GUID: 61d2f2 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Chamber of Secrets +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -17.11996 + posY: 1.67511487 + posZ: -0.0300091058 + rotX: 359.9201 + rotY: 270.010132 + rotZ: 0.0168622881 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group C 76b476/Deck Encounter Deck b59d21.yaml new file mode 100644 index 000000000..fe44fde5c --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Bag Single Group C 76b476/Deck Encounter Deck b59d21.yaml @@ -0,0 +1,1075 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 265121 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: '817446' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Paradox Effect + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 101.089371 + posY: 1.39607489 + posZ: 2.254506 + rotX: 359.989929 + rotY: 270.000031 + rotZ: 359.9876 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265121 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: d50777 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Paradox Effect + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 100.856 + posY: 1.54211807 + posZ: 2.49619722 + rotX: 359.989929 + rotY: 270.0 + rotZ: 359.987579 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265121 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: 86ca2a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Paradox Effect + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 100.856018 + posY: 1.56403816 + posZ: 2.49620557 + rotX: 359.986755 + rotY: 269.999969 + rotZ: 359.982239 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265122 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: 3bf255 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Harvested Pain + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 100.304947 + posY: 1.40837359 + posZ: -5.14877033 + rotX: 359.9848 + rotY: 270.0 + rotZ: 359.983429 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265122 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: 2927c6 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Harvested Pain + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 100.304947 + posY: 1.55442476 + posZ: -5.18531656 + rotX: 359.98175 + rotY: 269.999969 + rotZ: 359.969971 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265122 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: '817446' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Harvested Pain + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 100.306816 + posY: 1.57090247 + posZ: -4.69011068 + rotX: 359.9873 + rotY: 269.999634 + rotZ: 359.984375 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265119 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false + Description: Trap. + GMNotes: '' + GUID: '817446' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Blood and Rust + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 100.267433 + posY: 1.40541661 + posZ: 5.20540237 + rotX: 359.987457 + rotY: 270.000061 + rotZ: 359.9844 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265119 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false + Description: Trap. + GMNotes: '' + GUID: 8b2c36 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Blood and Rust + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 100.61058 + posY: 1.5512836 + posZ: 5.16832256 + rotX: 359.987457 + rotY: 270.0001 + rotZ: 359.984375 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265119 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false + Description: Trap. + GMNotes: '' + GUID: 6fc896 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Blood and Rust + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 100.610588 + posY: 1.56516159 + posZ: 5.16833353 + rotX: 359.9869 + rotY: 270.0 + rotZ: 359.984741 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265118 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false + Description: Trap. + GMNotes: '' + GUID: '817446' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dreadful Mechanism + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 101.021744 + posY: 1.40585113 + posZ: 3.80202127 + rotX: 359.987427 + rotY: 270.0001 + rotZ: 359.984528 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265118 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false + Description: Trap. + GMNotes: '' + GUID: 4fa340 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dreadful Mechanism + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 101.785805 + posY: 1.45584965 + posZ: 3.75804973 + rotX: 359.987366 + rotY: 270.000061 + rotZ: 359.984528 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265118 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false + Description: Trap. + GMNotes: '' + GUID: 0872f7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dreadful Mechanism + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 101.170105 + posY: 1.50584924 + posZ: 3.71445131 + rotX: 359.987366 + rotY: 270.005432 + rotZ: 359.984528 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265117 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false + Description: Trap. Poison. + GMNotes: '' + GUID: '817446' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Poisonous Gas + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 100.692337 + posY: 1.40558171 + posZ: 5.06883669 + rotX: 359.987427 + rotY: 269.999939 + rotZ: 359.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265117 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false + Description: Trap. Poison. + GMNotes: '' + GUID: 47bd50 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Poisonous Gas + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 101.103378 + posY: 1.54470325 + posZ: 5.00585747 + rotX: 359.987183 + rotY: 269.989258 + rotZ: 359.989227 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265117 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false + Description: Trap. Poison. + GMNotes: '' + GUID: '817446' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Poisonous Gas + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 101.400818 + posY: 1.56518042 + posZ: 4.86478567 + rotX: 359.987427 + rotY: 269.999969 + rotZ: 359.984528 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265116 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false + Description: Injury. Poison. + GMNotes: '' + GUID: bf90c6 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Unnatural Weariness + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 100.859726 + posY: 2.85669827 + posZ: 4.73798227 + rotX: 0.0 + rotY: 270.0 + rotZ: 58.6256943 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265116 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false + Description: Injury. Poison. + GMNotes: '' + GUID: '817446' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Unnatural Weariness + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 100.777832 + posY: 2.59425187 + posZ: 4.79823 + rotX: 0.0 + rotY: 270.0 + rotZ: 58.6256943 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265116 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false + Description: Injury. Poison. + GMNotes: '' + GUID: 24e15d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Unnatural Weariness + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 101.294968 + posY: 2.59410381 + posZ: 4.926104 + rotX: 0.0 + rotY: 270.0 + rotZ: 58.6256943 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265115 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false + Description: Monster. Mi-Go. + GMNotes: '' + GUID: '817446' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Mi-Go Guard + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 101.116432 + posY: 1.57105386 + posZ: 4.485176 + rotX: 359.990143 + rotY: 269.999969 + rotZ: 179.987747 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265115 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false + Description: Monster. Mi-Go. + GMNotes: '' + GUID: '817446' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Mi-Go Guard + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 101.245293 + posY: 1.40459144 + posZ: 4.58944225 + rotX: 359.985565 + rotY: 270.003876 + rotZ: 359.980865 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265115 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false + Description: Monster. Mi-Go. + GMNotes: '' + GUID: 774f5f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Mi-Go Guard + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 101.699791 + posY: 1.550271 + posZ: 4.99789762 + rotX: 359.985565 + rotY: 270.0039 + rotZ: 359.980865 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265114 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false + Description: Humanoid. Extradimensional. + GMNotes: '' + GUID: '817446' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Tortured Victim + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 100.877541 + posY: 1.40432525 + posZ: 6.088623 + rotX: 359.987335 + rotY: 269.999542 + rotZ: 359.984833 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265114 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false + Description: Humanoid. Extradimensional. + GMNotes: '' + GUID: d18a7d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Tortured Victim + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 101.400978 + posY: 1.45432484 + posZ: 5.97300529 + rotX: 359.987335 + rotY: 269.9995 + rotZ: 359.984833 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 265114 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false + Description: Humanoid. Extradimensional. + GMNotes: '' + GUID: 7a1943 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Tortured Victim + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 101.400986 + posY: 1.60057485 + posZ: 5.9730196 + rotX: 359.987335 + rotY: 269.999573 + rotZ: 359.984833 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2651': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: https://i.imgur.com/URbV3ol.jpg + NumHeight: 4 + NumWidth: 6 + UniqueBack: false +DeckIDs: +- 265121 +- 265121 +- 265121 +- 265122 +- 265122 +- 265122 +- 265119 +- 265119 +- 265119 +- 265118 +- 265118 +- 265118 +- 265117 +- 265117 +- 265117 +- 265116 +- 265116 +- 265116 +- 265115 +- 265115 +- 265115 +- 265114 +- 265114 +- 265114 +Description: '' +GMNotes: '' +GUID: b59d21 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Encounter Deck +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.92754555 + posY: 1.739733 + posZ: 5.75705671 + rotX: 359.919739 + rotY: 270.000061 + rotZ: 180.016815 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Custom_Tile The Labyrinths of Lunacy f4dcee.ttslua b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Custom_Tile The Labyrinths of Lunacy f4dcee.ttslua new file mode 100644 index 000000000..91793b491 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Custom_Tile The Labyrinths of Lunacy f4dcee.ttslua @@ -0,0 +1,21 @@ +name = 'The Labyrinths of Lunacy' + +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 791837/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Custom_Tile The Labyrinths of Lunacy f4dcee.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Custom_Tile The Labyrinths of Lunacy f4dcee.yaml new file mode 100644 index 000000000..d465e4488 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Custom_Tile The Labyrinths of Lunacy f4dcee.yaml @@ -0,0 +1,42 @@ +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 +GMNotes: '' +GUID: f4dcee +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Tile The Labyrinths of Lunacy f4dcee.ttslua' +LuaScriptState: '' +Name: Custom_Tile +Nickname: The Labyrinths of Lunacy +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.75470448 + posY: 1.5823456 + posZ: -14.88942 + rotX: 359.919739 + rotY: 270.0037 + rotZ: 0.0168331973 + scaleX: 2.2 + scaleY: 1.0 + scaleZ: 2.2 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Tablet Rules 5ef0ce.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Tablet Rules 5ef0ce.yaml new file mode 100644 index 000000000..af1f55975 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Labyrinths of Lunacy 4c173f/Tablet Rules 5ef0ce.yaml @@ -0,0 +1,34 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +Description: '' +GMNotes: '' +GUID: 5ef0ce +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Tablet +Nickname: Rules +Snap: true +Sticky: true +Tablet: + PageURL: https://docs.google.com/viewer?url=https://images-cdn.fantasyflightgames.com/filer_public/3a/bc/3abc09ae-b9f5-4426-863f-540c548870ee/the_labyrinths_of_lunacy_rules.pdf +Tooltip: true +Transform: + posX: -8.649389 + posY: 1.77257538 + posZ: -27.1446037 + rotX: 359.9201 + rotY: 269.999878 + rotZ: 0.0168707184 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Limens of Belief ad7b6c.ttslua b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Limens of Belief ad7b6c.ttslua new file mode 100644 index 000000000..46067f58e --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Limens of Belief ad7b6c.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.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.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 791837/Custom_Model_Bag The Limens of Belief ad7b6c.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Limens of Belief ad7b6c.yaml new file mode 100644 index 000000000..c01bd8342 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Limens of Belief ad7b6c.yaml @@ -0,0 +1,81 @@ +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 Limens of Belief ad7b6c/Deck dfe73c.yaml' +- !include 'Custom_Model_Bag The Limens of Belief ad7b6c/Deck d9ea71.yaml' +- !include 'Custom_Model_Bag The Limens of Belief ad7b6c/Deck Encounter Deck #1 2c09f9.yaml' +- !include 'Custom_Model_Bag The Limens of Belief ad7b6c/Deck Encounter Deck #2 e77e17.yaml' +- !include 'Custom_Model_Bag The Limens of Belief ad7b6c/Deck ef8801.yaml' +- !include 'Custom_Model_Bag The Limens of Belief ad7b6c/Deck bec360.yaml' +- !include 'Custom_Model_Bag The Limens of Belief ad7b6c/Card fad3fb.yaml' +- !include 'Custom_Model_Bag The Limens of Belief ad7b6c/Custom_Tile The Limens of + Belief d734ce.yaml' +- !include 'Custom_Model_Bag The Limens of Belief ad7b6c/Deck fc6384.yaml' +- !include 'Custom_Model_Bag The Limens of Belief ad7b6c/Custom_Model Lita 442f2f.yaml' +- !include 'Custom_Model_Bag The Limens of Belief ad7b6c/Card 98469c.yaml' +- !include 'Custom_Model_Bag The Limens of Belief ad7b6c/Custom_Tile 7234af.yaml' +- !include 'Custom_Model_Bag The Limens of Belief ad7b6c/Card db824e.yaml' +- !include 'Custom_Model_Bag The Limens of Belief ad7b6c/Custom_Tile 5a4e88.yaml' +- !include 'Custom_Model_Bag The Limens of Belief ad7b6c/Card d28eab.yaml' +- !include 'Custom_Model_Bag The Limens of Belief ad7b6c/Custom_Tile 3720e2.yaml' +- !include 'Custom_Model_Bag The Limens of Belief ad7b6c/Card f015e3.yaml' +- !include 'Custom_Model_Bag The Limens of Belief ad7b6c/Card 00ae28.yaml' +- !include 'Custom_Model_Bag The Limens of Belief ad7b6c/Card 06360a.yaml' +- !include 'Custom_Model_Bag The Limens of Belief ad7b6c/Deck Lita Chantler Deck (add + basic weakness) 8394d1.yaml' +CustomMesh: + CastShadows: true + ColliderURL: '' + Convex: true + DiffuseURL: http://cloud-3.steamusercontent.com/ugc/798737729142985677/CD1EC453A1C66868D5C60C362583EA0AF5E333EF/ + MaterialIndex: 3 + MeshURL: https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj + NormalURL: '' + TypeIndex: 6 +Description: A solo adventure with Lita Chantler +GMNotes: '' +GUID: ad7b6c +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Model_Bag The Limens of Belief ad7b6c.ttslua' +LuaScriptState: '{"ml":{"00ae28":{"lock":false,"pos":{"x":-50.9244,"y":1.7266,"z":8.1784},"rot":{"x":359.9201,"y":269.9856,"z":0.0169}},"06360a":{"lock":false,"pos":{"x":-54.9973,"y":1.7324,"z":8.511},"rot":{"x":0.0169,"y":180.0033,"z":0.0799}},"2c09f9":{"lock":false,"pos":{"x":-3.9276,"y":1.7237,"z":5.7571},"rot":{"x":359.9197,"y":269.9893,"z":180.0168}},"3720e2":{"lock":false,"pos":{"x":-23.6765,"y":1.6134,"z":-3.83},"rot":{"x":359.9831,"y":0.0001,"z":359.92}},"442f2f":{"lock":false,"pos":{"x":-17.3144,"y":1.5927,"z":2.4149},"rot":{"x":359.9199,"y":269.9969,"z":0.017}},"5a4e88":{"lock":false,"pos":{"x":-23.6765,"y":1.6157,"z":3.86},"rot":{"x":359.9831,"y":0.0001,"z":359.92}},"7234af":{"lock":false,"pos":{"x":-20.4526,"y":1.6101,"z":0.2935},"rot":{"x":359.9201,"y":269.9936,"z":0.0169}},"8394d1":{"lock":false,"pos":{"x":-54.952,"y":1.8531,"z":4.4543},"rot":{"x":359.9201,"y":269.9859,"z":180.0169}},"98469c":{"lock":false,"pos":{"x":-17.12,"y":1.6771,"z":-0.03},"rot":{"x":359.9201,"y":269.9964,"z":0.0169}},"bec360":{"lock":false,"pos":{"x":-2.6885,"y":1.6543,"z":-5.0485},"rot":{"x":0.0169,"y":179.9856,"z":0.0803}},"d28eab":{"lock":false,"pos":{"x":-23.6764,"y":1.6862,"z":-0.03},"rot":{"x":359.9201,"y":269.9964,"z":0.0169}},"d734ce":{"lock":false,"pos":{"x":-3.9325,"y":1.5825,"z":-15.1891},"rot":{"x":359.9197,"y":270.0023,"z":0.0168}},"d9ea71":{"lock":false,"pos":{"x":-3.5326,"y":1.6528,"z":14.4692},"rot":{"x":359.9197,"y":270.0029,"z":0.0168}},"db824e":{"lock":false,"pos":{"x":-23.6766,"y":1.6885,"z":7.57},"rot":{"x":359.9201,"y":269.9782,"z":0.0169}},"dfe73c":{"lock":false,"pos":{"x":1.6964,"y":1.6619,"z":14.2789},"rot":{"x":359.9552,"y":224.9991,"z":0.0687}},"e77e17":{"lock":false,"pos":{"x":0.9322,"y":1.7009,"z":5.4931},"rot":{"x":359.9197,"y":270.0091,"z":180.0168}},"ef8801":{"lock":false,"pos":{"x":-2.7247,"y":1.6566,"z":0.3733},"rot":{"x":0.0169,"y":179.9893,"z":0.0803}},"f015e3":{"lock":false,"pos":{"x":-23.6765,"y":1.684,"z":-7.7},"rot":{"x":359.9201,"y":269.9967,"z":0.0169}},"fad3fb":{"lock":false,"pos":{"x":-3.956,"y":1.6556,"z":-10.4412},"rot":{"x":359.9197,"y":269.9856,"z":0.0169}},"fc6384":{"lock":false,"pos":{"x":-10.9349,"y":1.6665,"z":0.1183},"rot":{"x":359.9201,"y":270.0008,"z":0.0169}}}}' +MaterialIndex: -1 +MeshIndex: -1 +Name: Custom_Model_Bag +Nickname: The Limens of Belief +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -0.9631663 + posY: 8.482174 + posZ: -149.087357 + rotX: 0.0208087172 + rotY: 270.000031 + rotZ: 0.0167711023 + scaleX: 2.21 + scaleY: 0.46 + scaleZ: 2.42 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Limens of Belief ad7b6c/Card 00ae28.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Limens of Belief ad7b6c/Card 00ae28.yaml new file mode 100644 index 000000000..1cc7a888f --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Limens of Belief ad7b6c/Card 00ae28.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 2107 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '21': + BackIsHidden: true + BackURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfQkRJVUpiOHdUM1E + FaceURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfMUZZdmlIR0JCenM + NumHeight: 2 + NumWidth: 4 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 00ae28 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -50.9244 + posY: 1.72662532 + posZ: 8.178399 + rotX: 359.9201 + rotY: 269.9856 + rotZ: 0.0168962963 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Limens of Belief ad7b6c/Card 06360a.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Limens of Belief ad7b6c/Card 06360a.yaml new file mode 100644 index 000000000..082457b24 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Limens of Belief ad7b6c/Card 06360a.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 1907 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '19': + BackIsHidden: true + BackURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfWUJTNW9Wcml3WVE + FaceURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfa0ZiZjk0T19weU0 + NumHeight: 3 + NumWidth: 3 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 06360a +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '' +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -54.9973 + posY: 1.73240173 + posZ: 8.511 + rotX: 0.0168657564 + rotY: 180.00325 + rotZ: 0.0798870251 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Limens of Belief ad7b6c/Card 98469c.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Limens of Belief ad7b6c/Card 98469c.yaml new file mode 100644 index 000000000..863a63c9a --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Limens of Belief ad7b6c/Card 98469c.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 2100 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '21': + BackIsHidden: true + BackURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfQkRJVUpiOHdUM1E + FaceURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfMUZZdmlIR0JCenM + NumHeight: 2 + NumWidth: 4 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 98469c +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -17.12 + posY: 1.67707777 + posZ: -0.0300002489 + rotX: 359.9201 + rotY: 269.9964 + rotZ: 0.0168817453 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Limens of Belief ad7b6c/Card d28eab.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Limens of Belief ad7b6c/Card d28eab.yaml new file mode 100644 index 000000000..4e1b5fd89 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Limens of Belief ad7b6c/Card d28eab.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 606 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '6': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/254843371583117987/F8BED6AE3D324F4D7BA6AB2BC297C70FB92F59FE/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/254843371583118543/45CE9DAB4D791C54E824BC9E9165F3597486317D/ + NumHeight: 4 + NumWidth: 6 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: d28eab +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -23.6764 + posY: 1.68622029 + posZ: -0.030000411 + rotX: 359.9201 + rotY: 269.9964 + rotZ: 0.01688121 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Limens of Belief ad7b6c/Card db824e.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Limens of Belief ad7b6c/Card db824e.yaml new file mode 100644 index 000000000..c88192112 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Limens of Belief ad7b6c/Card db824e.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 610 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '6': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/254843371583117987/F8BED6AE3D324F4D7BA6AB2BC297C70FB92F59FE/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/254843371583118543/45CE9DAB4D791C54E824BC9E9165F3597486317D/ + NumHeight: 4 + NumWidth: 6 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: db824e +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -23.6766 + posY: 1.68845844 + posZ: 7.56999969 + rotX: 359.9201 + rotY: 269.978149 + rotZ: 0.0169067942 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Limens of Belief ad7b6c/Card f015e3.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Limens of Belief ad7b6c/Card f015e3.yaml new file mode 100644 index 000000000..02872f0be --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Limens of Belief ad7b6c/Card f015e3.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 614 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '6': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/254843371583117987/F8BED6AE3D324F4D7BA6AB2BC297C70FB92F59FE/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/254843371583118543/45CE9DAB4D791C54E824BC9E9165F3597486317D/ + NumHeight: 4 + NumWidth: 6 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: f015e3 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -23.6765 + posY: 1.68396187 + posZ: -7.70000029 + rotX: 359.9201 + rotY: 269.996674 + rotZ: 0.01688094 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Limens of Belief ad7b6c/Card fad3fb.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Limens of Belief ad7b6c/Card fad3fb.yaml new file mode 100644 index 000000000..fc36b4d49 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Limens of Belief ad7b6c/Card fad3fb.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 2107 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '21': + BackIsHidden: true + BackURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfQkRJVUpiOHdUM1E + FaceURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfMUZZdmlIR0JCenM + NumHeight: 2 + NumWidth: 4 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: fad3fb +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.95600033 + posY: 1.65564823 + posZ: -10.4412012 + rotX: 359.919739 + rotY: 269.9856 + rotZ: 0.0168610513 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Limens of Belief ad7b6c/Custom_Model Lita 442f2f.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Limens of Belief ad7b6c/Custom_Model Lita 442f2f.yaml new file mode 100644 index 000000000..2c75ad4a1 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Limens of Belief ad7b6c/Custom_Model Lita 442f2f.yaml @@ -0,0 +1,41 @@ +Autoraise: true +ColorDiffuse: + b: 0.112999521 + g: 0.3919995 + r: 0.9559999 +CustomMesh: + CastShadows: true + ColliderURL: '' + Convex: true + DiffuseURL: '' + MaterialIndex: 1 + MeshURL: http://pastebin.com/raw.php?i=zcySnbEy + NormalURL: '' + TypeIndex: 1 +Description: '' +GMNotes: '' +GUID: 442f2f +Grid: false +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Model +Nickname: Lita +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -17.3144 + posY: 1.592716 + posZ: 2.41489935 + rotX: 359.919922 + rotY: 269.996918 + rotZ: 0.01695629 + scaleX: 1.50000048 + scaleY: 1.50000048 + scaleZ: 1.50000048 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Limens of Belief ad7b6c/Custom_Tile 3720e2.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Limens of Belief ad7b6c/Custom_Tile 3720e2.yaml new file mode 100644 index 000000000..69398a2c0 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Limens of Belief ad7b6c/Custom_Tile 3720e2.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 3720e2 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.613388 + posZ: -3.83000064 + rotX: 359.983124 + rotY: 0.00016356702 + rotZ: 359.920044 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Limens of Belief ad7b6c/Custom_Tile 5a4e88.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Limens of Belief ad7b6c/Custom_Tile 5a4e88.yaml new file mode 100644 index 000000000..3f68926f3 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Limens of Belief ad7b6c/Custom_Tile 5a4e88.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 5a4e88 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.61565256 + posZ: 3.86 + rotX: 359.983124 + rotY: 0.000165313584 + rotZ: 359.920044 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Limens of Belief ad7b6c/Custom_Tile 7234af.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Limens of Belief ad7b6c/Custom_Tile 7234af.yaml new file mode 100644 index 000000000..79f8383f6 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Limens of Belief ad7b6c/Custom_Tile 7234af.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 7234af +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.4525986 + posY: 1.61010671 + posZ: 0.293499768 + rotX: 359.9201 + rotY: 269.993561 + rotZ: 0.0169090517 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Limens of Belief ad7b6c/Custom_Tile The Limens of Belief d734ce.ttslua b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Limens of Belief ad7b6c/Custom_Tile The Limens of Belief d734ce.ttslua new file mode 100644 index 000000000..e0ea5b609 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Limens of Belief ad7b6c/Custom_Tile The Limens of Belief d734ce.ttslua @@ -0,0 +1,21 @@ +name = 'The Limens of Belief' + +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 The Side Missions 791837/Custom_Model_Bag The Limens of Belief ad7b6c/Custom_Tile The Limens of Belief d734ce.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Limens of Belief ad7b6c/Custom_Tile The Limens of Belief d734ce.yaml new file mode 100644 index 000000000..35057c3fe --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Limens of Belief ad7b6c/Custom_Tile The Limens of Belief d734ce.yaml @@ -0,0 +1,42 @@ +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 +GMNotes: '' +GUID: d734ce +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Tile The Limens of Belief d734ce.ttslua' +LuaScriptState: '' +Name: Custom_Tile +Nickname: The Limens of Belief +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.93250012 + posY: 1.58250666 + posZ: -15.1891022 + rotX: 359.919739 + rotY: 270.0023 + rotZ: 0.0168345664 + scaleX: 2.2 + scaleY: 1.0 + scaleZ: 2.2 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Limens of Belief ad7b6c/Deck bec360.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Limens of Belief ad7b6c/Deck bec360.yaml new file mode 100644 index 000000000..e051768fa --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Limens of Belief ad7b6c/Deck bec360.yaml @@ -0,0 +1,248 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 1904 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '19': + BackIsHidden: true + BackURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfWUJTNW9Wcml3WVE + FaceURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfa0ZiZjk0T19weU0 + NumHeight: 3 + NumWidth: 3 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 7ea08b + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.85896754 + posY: 1.03161192 + posZ: 12.4116364 + rotX: -0.00115550193 + rotY: 90.0094 + rotZ: -0.00281370827 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 1901 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '19': + BackIsHidden: true + BackURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfWUJTNW9Wcml3WVE + FaceURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfa0ZiZjk0T19weU0 + NumHeight: 3 + NumWidth: 3 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: c394d4 + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.512929 + posY: 1.17622638 + posZ: 12.4312344 + rotX: 0.00563494628 + rotY: 90.02498 + rotZ: 359.991058 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 1908 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '19': + BackIsHidden: true + BackURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfWUJTNW9Wcml3WVE + FaceURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfa0ZiZjk0T19weU0 + NumHeight: 3 + NumWidth: 3 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: a4f67e + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.86720657 + posY: 1.19385946 + posZ: 12.3861265 + rotX: -0.00120125513 + rotY: 90.00503 + rotZ: 0.00239928439 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 1905 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '19': + BackIsHidden: true + BackURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfWUJTNW9Wcml3WVE + FaceURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfa0ZiZjk0T19weU0 + NumHeight: 3 + NumWidth: 3 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 21bf09 + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.035947 + posY: 1.03161216 + posZ: 12.2841892 + rotX: -0.00510522537 + rotY: 90.00496 + rotZ: -0.00191650237 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 1902 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '19': + BackIsHidden: true + BackURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfWUJTNW9Wcml3WVE + FaceURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfa0ZiZjk0T19weU0 + NumHeight: 3 + NumWidth: 3 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: '197965' + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -1.81795657 + posY: 1.17616129 + posZ: 12.0598745 + rotX: 0.00388672529 + rotY: 90.0049744 + rotZ: 359.9887 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '19': + BackIsHidden: true + BackURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfWUJTNW9Wcml3WVE + FaceURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfa0ZiZjk0T19weU0 + NumHeight: 3 + NumWidth: 3 + UniqueBack: true +DeckIDs: +- 1904 +- 1901 +- 1908 +- 1905 +- 1902 +Description: '' +GMNotes: '' +GUID: bec360 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: '' +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.68849969 + posY: 1.65432513 + posZ: -5.04850054 + rotX: 0.0168551765 + rotY: 179.985565 + rotZ: 0.08025334 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Limens of Belief ad7b6c/Deck d9ea71.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Limens of Belief ad7b6c/Deck d9ea71.yaml new file mode 100644 index 000000000..03842507a --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Limens of Belief ad7b6c/Deck d9ea71.yaml @@ -0,0 +1,467 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 603 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '6': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/254843371583117987/F8BED6AE3D324F4D7BA6AB2BC297C70FB92F59FE/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/254843371583118543/45CE9DAB4D791C54E824BC9E9165F3597486317D/ + NumHeight: 4 + NumWidth: 6 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 8b71bd + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 21.309166 + posY: 1.0317136 + posZ: -7.09385157 + rotX: 2.42745472e-07 + rotY: 180.000015 + rotZ: -1.63702623e-06 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 601 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '6': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/254843371583117987/F8BED6AE3D324F4D7BA6AB2BC297C70FB92F59FE/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/254843371583118543/45CE9DAB4D791C54E824BC9E9165F3597486317D/ + NumHeight: 4 + NumWidth: 6 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: df0e22 + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 23.81271 + posY: 1.0317136 + posZ: -7.11118174 + rotX: 4.303698e-08 + rotY: 180.000015 + rotZ: 8.625901e-07 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 2106 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '21': + BackIsHidden: true + BackURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfQkRJVUpiOHdUM1E + FaceURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfMUZZdmlIR0JCenM + NumHeight: 2 + NumWidth: 4 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 70988f + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 26.290226 + posY: 1.0317136 + posZ: -7.230229 + rotX: -4.1200704e-07 + rotY: 180.000015 + rotZ: 1.51740409e-07 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 2102 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '21': + BackIsHidden: true + BackURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfQkRJVUpiOHdUM1E + FaceURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfMUZZdmlIR0JCenM + NumHeight: 2 + NumWidth: 4 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 5565bc + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 28.8039818 + posY: 1.0317136 + posZ: -7.21446276 + rotX: -3.965736e-07 + rotY: 179.999969 + rotZ: 3.70762478e-07 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 2103 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '21': + BackIsHidden: true + BackURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfQkRJVUpiOHdUM1E + FaceURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfMUZZdmlIR0JCenM + NumHeight: 2 + NumWidth: 4 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: fc37c0 + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 31.50615 + posY: 1.0317136 + posZ: -7.06877375 + rotX: -6.057407e-07 + rotY: 180.000015 + rotZ: 6.58483145e-07 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 2003 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '20': + BackIsHidden: true + BackURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfdElXQkFGa1ctRFE + FaceURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfMGE4RHNUc09jMzA + NumHeight: 2 + NumWidth: 2 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: '559563' + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 21.5433331 + posY: 1.0317136 + posZ: -11.6191816 + rotX: 5.493812e-07 + rotY: 180.000092 + rotZ: 1.23263749e-06 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 2101 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '21': + BackIsHidden: true + BackURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfQkRJVUpiOHdUM1E + FaceURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfMUZZdmlIR0JCenM + NumHeight: 2 + NumWidth: 4 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: a5a692 + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 24.1413174 + posY: 1.0317136 + posZ: -11.7392273 + rotX: 2.77308885e-07 + rotY: 179.999954 + rotZ: 2.06425185e-07 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 2105 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '21': + BackIsHidden: true + BackURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfQkRJVUpiOHdUM1E + FaceURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfMUZZdmlIR0JCenM + NumHeight: 2 + NumWidth: 4 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: a49c99 + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 26.5576 + posY: 1.0317136 + posZ: -11.8059616 + rotX: 4.56959754e-07 + rotY: 180.000076 + rotZ: -1.44143394e-06 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 2002 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '20': + BackIsHidden: true + BackURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfdElXQkFGa1ctRFE + FaceURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfMGE4RHNUc09jMzA + NumHeight: 2 + NumWidth: 2 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: b4edea + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 21.7575474 + posY: 1.03171325 + posZ: -16.8689785 + rotX: -3.952949e-07 + rotY: 180.000031 + rotZ: -8.752637e-07 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 2104 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '21': + BackIsHidden: true + BackURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfQkRJVUpiOHdUM1E + FaceURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfMUZZdmlIR0JCenM + NumHeight: 2 + NumWidth: 4 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: d16efd + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 24.19827 + posY: 1.03171384 + posZ: -16.88434 + rotX: -6.05047262e-07 + rotY: 180.0 + rotZ: 7.32009653e-07 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '20': + BackIsHidden: true + BackURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfdElXQkFGa1ctRFE + FaceURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfMGE4RHNUc09jMzA + NumHeight: 2 + NumWidth: 2 + UniqueBack: true + '21': + BackIsHidden: true + BackURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfQkRJVUpiOHdUM1E + FaceURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfMUZZdmlIR0JCenM + NumHeight: 2 + NumWidth: 4 + UniqueBack: true + '6': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/254843371583117987/F8BED6AE3D324F4D7BA6AB2BC297C70FB92F59FE/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/254843371583118543/45CE9DAB4D791C54E824BC9E9165F3597486317D/ + NumHeight: 4 + NumWidth: 6 + UniqueBack: true +DeckIDs: +- 603 +- 601 +- 2106 +- 2102 +- 2103 +- 2003 +- 2101 +- 2105 +- 2002 +- 2104 +Description: '' +GMNotes: '' +GUID: d9ea71 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.53260064 + posY: 1.65279531 + posZ: 14.469202 + rotX: 359.919739 + rotY: 270.002869 + rotZ: 0.0168367065 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Limens of Belief ad7b6c/Deck dfe73c.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Limens of Belief ad7b6c/Deck dfe73c.yaml new file mode 100644 index 000000000..60f737122 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Limens of Belief ad7b6c/Deck dfe73c.yaml @@ -0,0 +1,125 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 2001 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '20': + BackIsHidden: true + BackURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfdElXQkFGa1ctRFE + FaceURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfMGE4RHNUc09jMzA + NumHeight: 2 + NumWidth: 2 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: b3b5d8 + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -33.4851151 + posY: 1.03162 + posZ: 0.456155032 + rotX: -0.005345893 + rotY: 180.000244 + rotZ: -0.0028660472 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 2000 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '20': + BackIsHidden: true + BackURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfdElXQkFGa1ctRFE + FaceURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfMGE4RHNUc09jMzA + NumHeight: 2 + NumWidth: 2 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: b62e8a + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -36.102356 + posY: 1.03166664 + posZ: 0.5536462 + rotX: -0.002395665 + rotY: 179.999878 + rotZ: -0.0009563644 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '20': + BackIsHidden: true + BackURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfdElXQkFGa1ctRFE + FaceURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfMGE4RHNUc09jMzA + NumHeight: 2 + NumWidth: 2 + UniqueBack: true +DeckIDs: +- 2001 +- 2000 +Description: '' +GMNotes: '' +GUID: dfe73c +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 1.69640052 + posY: 1.661871 + posZ: 14.2789021 + rotX: 359.95517 + rotY: 224.999084 + rotZ: 0.0686527938 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Limens of Belief ad7b6c/Deck ef8801.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Limens of Belief ad7b6c/Deck ef8801.yaml new file mode 100644 index 000000000..41b27bf16 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Limens of Belief ad7b6c/Deck ef8801.yaml @@ -0,0 +1,166 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 1906 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '19': + BackIsHidden: true + BackURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfWUJTNW9Wcml3WVE + FaceURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfa0ZiZjk0T19weU0 + NumHeight: 3 + NumWidth: 3 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 7cb101 + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -5.91341448 + posY: 1.03165436 + posZ: 15.3971376 + rotX: 0.000117103 + rotY: 90.02752 + rotZ: 0.00137885788 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 1903 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '19': + BackIsHidden: true + BackURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfWUJTNW9Wcml3WVE + FaceURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfa0ZiZjk0T19weU0 + NumHeight: 3 + NumWidth: 3 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 81c2af + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -5.887136 + posY: 1.17669916 + posZ: 15.3528547 + rotX: 0.000171220076 + rotY: 90.0335 + rotZ: -0.0009935191 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 1900 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '19': + BackIsHidden: true + BackURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfWUJTNW9Wcml3WVE + FaceURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfa0ZiZjk0T19weU0 + NumHeight: 3 + NumWidth: 3 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 9b5d98 + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -6.018551 + posY: 1.19384313 + posZ: 15.3999214 + rotX: 0.00033895293 + rotY: 90.02815 + rotZ: -0.00173862232 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '19': + BackIsHidden: true + BackURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfWUJTNW9Wcml3WVE + FaceURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfa0ZiZjk0T19weU0 + NumHeight: 3 + NumWidth: 3 + UniqueBack: true +DeckIDs: +- 1906 +- 1903 +- 1900 +Description: '' +GMNotes: '' +GUID: ef8801 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: '' +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.72469974 + posY: 1.65664113 + posZ: 0.373300284 + rotX: 0.0168500561 + rotY: 179.989334 + rotZ: 0.08025437 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Limens of Belief ad7b6c/Deck fc6384.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Limens of Belief ad7b6c/Deck fc6384.yaml new file mode 100644 index 000000000..506e9c070 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Limens of Belief ad7b6c/Deck fc6384.yaml @@ -0,0 +1,215 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 2203 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '22': + BackIsHidden: true + BackURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfZkRMd05zc24taDQ + FaceURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfYVBWMzZSRmpXVXc + NumHeight: 2 + NumWidth: 2 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 6c88ba + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -11.4639158 + posY: 1.669526 + posZ: 1.0612601 + rotX: 359.920044 + rotY: 270.000061 + rotZ: 0.0176922921 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 2202 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '22': + BackIsHidden: true + BackURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfZkRMd05zc24taDQ + FaceURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfYVBWMzZSRmpXVXc + NumHeight: 2 + NumWidth: 2 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 427d13 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -9.797094 + posY: 1.8303324 + posZ: -2.99196839 + rotX: 359.2186 + rotY: 269.978882 + rotZ: 180.641617 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 2201 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '22': + BackIsHidden: true + BackURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfZkRMd05zc24taDQ + FaceURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfYVBWMzZSRmpXVXc + NumHeight: 2 + NumWidth: 2 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 90e357 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -10.4860258 + posY: 1.81906939 + posZ: -2.97549677 + rotX: 359.858429 + rotY: 270.002869 + rotZ: 179.747513 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 2200 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '22': + BackIsHidden: true + BackURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfZkRMd05zc24taDQ + FaceURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfYVBWMzZSRmpXVXc + NumHeight: 2 + NumWidth: 2 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: a0aeb0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -10.2574177 + posY: 1.670844 + posZ: -2.81494141 + rotX: 359.8204 + rotY: 270.0028 + rotZ: 179.899063 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '22': + BackIsHidden: true + BackURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfZkRMd05zc24taDQ + FaceURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfYVBWMzZSRmpXVXc + NumHeight: 2 + NumWidth: 2 + UniqueBack: true +DeckIDs: +- 2203 +- 2202 +- 2201 +- 2200 +Description: '' +GMNotes: '' +GUID: fc6384 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -10.9349 + posY: 1.66653383 + posZ: 0.118299611 + rotX: 359.9201 + rotY: 270.000763 + rotZ: 0.0168751087 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Limens of Belief ad7b6c/Deck Encounter Deck #1 2c09f9.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Limens of Belief ad7b6c/Deck Encounter Deck #1 2c09f9.yaml new file mode 100644 index 000000000..3b730ef6f --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Limens of Belief ad7b6c/Deck Encounter Deck #1 2c09f9.yaml @@ -0,0 +1,904 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 514 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/254843371583117031/BA3E0B3DEDCCADEBE723B1582E6E331D84FE1822/ + NumHeight: 5 + NumWidth: 5 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: e6fab7 + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -30.5475712 + posY: 1.031671 + posZ: -4.489874 + rotX: -0.002197367 + rotY: 179.999908 + rotZ: -0.000811629 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 514 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/254843371583117031/BA3E0B3DEDCCADEBE723B1582E6E331D84FE1822/ + NumHeight: 5 + NumWidth: 5 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 120d30 + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -30.6736012 + posY: 1.1765815 + posZ: -4.47222471 + rotX: -0.005561187 + rotY: 180.0012 + rotZ: 359.983215 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 513 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/254843371583117031/BA3E0B3DEDCCADEBE723B1582E6E331D84FE1822/ + NumHeight: 5 + NumWidth: 5 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 5f1590 + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -30.4481468 + posY: 1.1941545 + posZ: -4.58712673 + rotX: -0.0009892288 + rotY: 180.000031 + rotZ: 0.00044820417 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 513 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/254843371583117031/BA3E0B3DEDCCADEBE723B1582E6E331D84FE1822/ + NumHeight: 5 + NumWidth: 5 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 3f1dc0 + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -30.47752 + posY: 1.18042183 + posZ: -4.481168 + rotX: -0.00128062 + rotY: 180.000046 + rotZ: 0.00261996756 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 512 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/254843371583117031/BA3E0B3DEDCCADEBE723B1582E6E331D84FE1822/ + NumHeight: 5 + NumWidth: 5 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 7e4a4b + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -23.3501282 + posY: 1.03163612 + posZ: -4.71642542 + rotX: -0.00309311762 + rotY: 180.002625 + rotZ: -0.00249027438 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 512 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/254843371583117031/BA3E0B3DEDCCADEBE723B1582E6E331D84FE1822/ + NumHeight: 5 + NumWidth: 5 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: '564575' + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -23.2178879 + posY: 1.1765002 + posZ: -4.73570347 + rotX: -0.005207366 + rotY: 179.9986 + rotZ: 0.011770403 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 511 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/254843371583117031/BA3E0B3DEDCCADEBE723B1582E6E331D84FE1822/ + NumHeight: 5 + NumWidth: 5 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: e08596 + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -23.2934761 + posY: 1.19415307 + posZ: -4.87689 + rotX: -0.0009899004 + rotY: 180.000031 + rotZ: 0.000193071319 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 510 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/254843371583117031/BA3E0B3DEDCCADEBE723B1582E6E331D84FE1822/ + NumHeight: 5 + NumWidth: 5 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 222f25 + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -23.3648548 + posY: 1.18047929 + posZ: -4.7994256 + rotX: 0.0023747473 + rotY: 180.021332 + rotZ: 359.987549 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 510 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/254843371583117031/BA3E0B3DEDCCADEBE723B1582E6E331D84FE1822/ + NumHeight: 5 + NumWidth: 5 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 9035ea + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -23.3479862 + posY: 1.17839289 + posZ: -4.76369238 + rotX: 0.000604535337 + rotY: 180.000046 + rotZ: -0.00187814236 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 510 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/254843371583117031/BA3E0B3DEDCCADEBE723B1582E6E331D84FE1822/ + NumHeight: 5 + NumWidth: 5 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 9035ea + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -23.2610416 + posY: 1.18113554 + posZ: -4.895944 + rotX: -0.0008479521 + rotY: 180.000092 + rotZ: 0.0002602645 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 505 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/254843371583117031/BA3E0B3DEDCCADEBE723B1582E6E331D84FE1822/ + NumHeight: 5 + NumWidth: 5 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 7ca836 + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -6.050116 + posY: 1.03164268 + posZ: -1.24083948 + rotX: -0.003534565 + rotY: 180.0 + rotZ: -0.00127180666 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 506 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/254843371583117031/BA3E0B3DEDCCADEBE723B1582E6E331D84FE1822/ + NumHeight: 5 + NumWidth: 5 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 18713c + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -6.006896 + posY: 1.176434 + posZ: -1.06548381 + rotX: -0.000609241542 + rotY: 180.000214 + rotZ: 0.00328493561 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 504 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/254843371583117031/BA3E0B3DEDCCADEBE723B1582E6E331D84FE1822/ + NumHeight: 5 + NumWidth: 5 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 336bb3 + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -5.877554 + posY: 1.19415247 + posZ: -1.03719866 + rotX: -0.00107938179 + rotY: 180.0001 + rotZ: 0.000220973685 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 506 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/254843371583117031/BA3E0B3DEDCCADEBE723B1582E6E331D84FE1822/ + NumHeight: 5 + NumWidth: 5 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 90d2be + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -5.97694254 + posY: 1.18048143 + posZ: -1.00655842 + rotX: -0.00101684046 + rotY: 180.000122 + rotZ: -6.89693843e-05 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 505 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/254843371583117031/BA3E0B3DEDCCADEBE723B1582E6E331D84FE1822/ + NumHeight: 5 + NumWidth: 5 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: d35c3c + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -5.965112 + posY: 1.178682 + posZ: -0.888619363 + rotX: 0.00318836723 + rotY: 179.9949 + rotZ: 359.9936 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 504 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/254843371583117031/BA3E0B3DEDCCADEBE723B1582E6E331D84FE1822/ + NumHeight: 5 + NumWidth: 5 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 336bb3 + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -6.110575 + posY: 1.181142 + posZ: -1.34325731 + rotX: -0.00131786847 + rotY: 179.995087 + rotZ: 0.002577671 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 504 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/254843371583117031/BA3E0B3DEDCCADEBE723B1582E6E331D84FE1822/ + NumHeight: 5 + NumWidth: 5 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: a1ae06 + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -5.950328 + posY: 1.18607593 + posZ: -1.24151111 + rotX: -0.00117600407 + rotY: 180.000122 + rotZ: 0.00245644082 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 522 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/254843371583117031/BA3E0B3DEDCCADEBE723B1582E6E331D84FE1822/ + NumHeight: 5 + NumWidth: 5 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 17dc7f + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 4.219727 + posY: 1.03170145 + posZ: 1.61309123 + rotX: -0.000562302943 + rotY: 180.000031 + rotZ: -0.000172942571 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 522 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/254843371583117031/BA3E0B3DEDCCADEBE723B1582E6E331D84FE1822/ + NumHeight: 5 + NumWidth: 5 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 6f2a6a + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 4.26633263 + posY: 1.1779635 + posZ: 1.480249 + rotX: 6.77745959e-07 + rotY: 180.000046 + rotZ: -5.010131e-07 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 523 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/254843371583117031/BA3E0B3DEDCCADEBE723B1582E6E331D84FE1822/ + NumHeight: 5 + NumWidth: 5 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 8a350c + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 4.467632 + posY: 1.19698286 + posZ: 1.6776135 + rotX: 359.963531 + rotY: 179.973557 + rotZ: 0.0606841035 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 523 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/254843371583117031/BA3E0B3DEDCCADEBE723B1582E6E331D84FE1822/ + NumHeight: 5 + NumWidth: 5 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 53bcdb + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 4.77856636 + posY: 1.182632 + posZ: 1.24030507 + rotX: 0.0767821 + rotY: 180.0455 + rotZ: 0.116034374 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '5': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/254843371583117031/BA3E0B3DEDCCADEBE723B1582E6E331D84FE1822/ + NumHeight: 5 + NumWidth: 5 + UniqueBack: false +DeckIDs: +- 514 +- 514 +- 513 +- 513 +- 512 +- 512 +- 511 +- 510 +- 510 +- 510 +- 505 +- 506 +- 504 +- 506 +- 505 +- 504 +- 504 +- 522 +- 522 +- 523 +- 523 +Description: '' +GMNotes: '' +GUID: 2c09f9 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: 'Encounter Deck #1' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.92760015 + posY: 1.72374463 + posZ: 5.757101 + rotX: 359.919739 + rotY: 269.989319 + rotZ: 180.01683 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Limens of Belief ad7b6c/Deck Encounter Deck #2 e77e17.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Limens of Belief ad7b6c/Deck Encounter Deck #2 e77e17.yaml new file mode 100644 index 000000000..f18844064 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Limens of Belief ad7b6c/Deck Encounter Deck #2 e77e17.yaml @@ -0,0 +1,788 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 501 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/254843371583117031/BA3E0B3DEDCCADEBE723B1582E6E331D84FE1822/ + NumHeight: 5 + NumWidth: 5 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: ce2dd2 + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -1.4430548 + posY: 1.03164458 + posZ: 2.22969818 + rotX: -0.00542069972 + rotY: 180.002182 + rotZ: 359.993744 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 502 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/254843371583117031/BA3E0B3DEDCCADEBE723B1582E6E331D84FE1822/ + NumHeight: 5 + NumWidth: 5 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: d565cc + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -1.240638 + posY: 1.176467 + posZ: 2.15103173 + rotX: -0.0009706814 + rotY: 179.984711 + rotZ: 359.986542 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 501 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/254843371583117031/BA3E0B3DEDCCADEBE723B1582E6E331D84FE1822/ + NumHeight: 5 + NumWidth: 5 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: adc5e2 + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -1.44500768 + posY: 1.19415641 + posZ: 2.19852161 + rotX: -0.0009532708 + rotY: 180.000031 + rotZ: -0.0005652172 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 503 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/254843371583117031/BA3E0B3DEDCCADEBE723B1582E6E331D84FE1822/ + NumHeight: 5 + NumWidth: 5 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: '109526' + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -1.38503671 + posY: 1.1804812 + posZ: 2.12488127 + rotX: -0.00194453157 + rotY: 180.0046 + rotZ: 0.00585991237 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 503 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/254843371583117031/BA3E0B3DEDCCADEBE723B1582E6E331D84FE1822/ + NumHeight: 5 + NumWidth: 5 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: e553d5 + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -1.42388 + posY: 1.17847753 + posZ: 2.208557 + rotX: -0.000911845069 + rotY: 180.0 + rotZ: -0.0004209296 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 503 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/254843371583117031/BA3E0B3DEDCCADEBE723B1582E6E331D84FE1822/ + NumHeight: 5 + NumWidth: 5 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: '109526' + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -1.46649086 + posY: 1.18113363 + posZ: 2.29159522 + rotX: -0.00103711244 + rotY: 180.000946 + rotZ: -0.0008529599 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 501 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/254843371583117031/BA3E0B3DEDCCADEBE723B1582E6E331D84FE1822/ + NumHeight: 5 + NumWidth: 5 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: adc5e2 + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -1.3430779 + posY: 1.18605924 + posZ: 2.20774674 + rotX: 0.0005023033 + rotY: 180.000031 + rotZ: -0.00126420765 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 302 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/254843371583115523/E82497980946ECE8E95AADC7220B140E4C0066A8/ + NumHeight: 3 + NumWidth: 5 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 623f88 + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.982392669 + posY: 1.03170216 + posZ: -1.36668158 + rotX: -0.0007485266 + rotY: 179.999786 + rotZ: -0.000187413156 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 303 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/254843371583115523/E82497980946ECE8E95AADC7220B140E4C0066A8/ + NumHeight: 3 + NumWidth: 5 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: b1da52 + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.9804734 + posY: 1.1765132 + posZ: -1.309232 + rotX: 359.990936 + rotY: 179.9992 + rotZ: -0.003491655 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 500 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/254843371583117031/BA3E0B3DEDCCADEBE723B1582E6E331D84FE1822/ + NumHeight: 5 + NumWidth: 5 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: c9fb36 + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -1.34864283 + posY: 1.03166676 + posZ: 5.66873 + rotX: -0.002509048 + rotY: 179.999985 + rotZ: -0.00110050349 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 500 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/254843371583117031/BA3E0B3DEDCCADEBE723B1582E6E331D84FE1822/ + NumHeight: 5 + NumWidth: 5 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 6396b0 + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -1.38091791 + posY: 1.17658043 + posZ: 5.65812969 + rotX: -0.00530741224 + rotY: 180.000183 + rotZ: 359.983978 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 500 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/254843371583117031/BA3E0B3DEDCCADEBE723B1582E6E331D84FE1822/ + NumHeight: 5 + NumWidth: 5 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 41b7b0 + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -1.44306421 + posY: 1.19407082 + posZ: 5.51987553 + rotX: 0.00153010117 + rotY: 179.998947 + rotZ: -0.0032687285 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 508 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/254843371583117031/BA3E0B3DEDCCADEBE723B1582E6E331D84FE1822/ + NumHeight: 5 + NumWidth: 5 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 2b8359 + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -5.78579235 + posY: 1.031724 + posZ: 5.878419 + rotX: -0.00138084847 + rotY: 180.001175 + rotZ: -0.004225834 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 509 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/254843371583117031/BA3E0B3DEDCCADEBE723B1582E6E331D84FE1822/ + NumHeight: 5 + NumWidth: 5 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 6b4f8d + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -5.800246 + posY: 1.17676115 + posZ: 5.87503433 + rotX: 359.988281 + rotY: 180.004974 + rotZ: 359.9846 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 508 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/254843371583117031/BA3E0B3DEDCCADEBE723B1582E6E331D84FE1822/ + NumHeight: 5 + NumWidth: 5 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 45009b + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -5.721299 + posY: 1.19415855 + posZ: 5.9428587 + rotX: -0.000892300741 + rotY: 180.000015 + rotZ: -0.000151254673 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 509 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/254843371583117031/BA3E0B3DEDCCADEBE723B1582E6E331D84FE1822/ + NumHeight: 5 + NumWidth: 5 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: fca5db + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -5.755039 + posY: 1.18048418 + posZ: 6.046784 + rotX: -0.00131260452 + rotY: 179.9999 + rotZ: -0.0009135167 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 515 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/254843371583117031/BA3E0B3DEDCCADEBE723B1582E6E331D84FE1822/ + NumHeight: 5 + NumWidth: 5 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 86e3f9 + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -20.6017227 + posY: 1.03168774 + posZ: -4.67599154 + rotX: -0.00135842315 + rotY: 180.000031 + rotZ: -0.0005932838 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 515 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '5': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/254843371583117031/BA3E0B3DEDCCADEBE723B1582E6E331D84FE1822/ + NumHeight: 5 + NumWidth: 5 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: a37006 + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -20.5644417 + posY: 1.17672718 + posZ: -4.79970741 + rotX: 359.991547 + rotY: 180.000031 + rotZ: 0.00125296926 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '3': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/254843371583115523/E82497980946ECE8E95AADC7220B140E4C0066A8/ + NumHeight: 3 + NumWidth: 5 + UniqueBack: false + '5': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/254843371583117031/BA3E0B3DEDCCADEBE723B1582E6E331D84FE1822/ + NumHeight: 5 + NumWidth: 5 + UniqueBack: false +DeckIDs: +- 501 +- 502 +- 501 +- 503 +- 503 +- 503 +- 501 +- 302 +- 303 +- 500 +- 500 +- 500 +- 508 +- 509 +- 508 +- 509 +- 515 +- 515 +Description: '' +GMNotes: '' +GUID: e77e17 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: 'Encounter Deck #2' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 0.9322 + posY: 1.70087159 + posZ: 5.493102 + rotX: 359.919739 + rotY: 270.0091 + rotZ: 180.016815 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Limens of Belief ad7b6c/Deck Lita Chantler Deck (add basic weakness) 8394d1.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Limens of Belief ad7b6c/Deck Lita Chantler Deck (add basic weakness) 8394d1.yaml new file mode 100644 index 000000000..6a2dbeada --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Limens of Belief ad7b6c/Deck Lita Chantler Deck (add basic weakness) 8394d1.yaml @@ -0,0 +1,1380 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 3501 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '35': + BackIsHidden: true + BackURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfdElXQkFGa1ctRFE + FaceURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfMGE4RHNUc09jMzA + NumHeight: 2 + NumWidth: 2 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 37320d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -10.0886765 + posY: 1.37494969 + posZ: -17.569622 + rotX: -0.000777854933 + rotY: 179.999878 + rotZ: 179.99675 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3600 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfdElXQkFGa1ctRFE + FaceURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfMGE4RHNUc09jMzA + NumHeight: 2 + NumWidth: 2 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: da132f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -10.148056 + posY: 1.36532545 + posZ: -18.0762634 + rotX: -0.00045060573 + rotY: 180.000046 + rotZ: 179.996964 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 816 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '8': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/254843371583140523/C6EAEDD3176555E03AF4E905D2C6EC6258288621/ + NumHeight: 5 + NumWidth: 7 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: a5fcdd + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Emergency Cache (event) -Supply + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -68.47604 + posY: 7.265851 + posZ: 15.61345 + rotX: 1.611575e-06 + rotY: 179.9894 + rotZ: 1.53139354e-06 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 816 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '8': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/254843371583140523/C6EAEDD3176555E03AF4E905D2C6EC6258288621/ + NumHeight: 5 + NumWidth: 7 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 8f2425 + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Emergency Cache (event) -Supply + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -68.47604 + posY: 7.412102 + posZ: 15.6134462 + rotX: 4.582078e-06 + rotY: 179.9894 + rotZ: -2.97392035e-06 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 817 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '8': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/254843371583140523/C6EAEDD3176555E03AF4E905D2C6EC6258288621/ + NumHeight: 5 + NumWidth: 7 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 8fdf94 + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Guts (skill) -Innate + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -68.53167 + posY: 7.42942429 + posZ: 15.65023 + rotX: 8.99002259e-07 + rotY: 179.989075 + rotZ: 9.251248e-06 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 819 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '8': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/254843371583140523/C6EAEDD3176555E03AF4E905D2C6EC6258288621/ + NumHeight: 5 + NumWidth: 7 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: ec773f + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Overpower (skill) -Practiced + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -68.7913742 + posY: 7.415722 + posZ: 15.6689425 + rotX: -8.82376469e-07 + rotY: 179.984329 + rotZ: -1.56121564e-06 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 821 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '8': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/254843371583140523/C6EAEDD3176555E03AF4E905D2C6EC6258288621/ + NumHeight: 5 + NumWidth: 7 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: f127cc + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Unexpected Courage (skill) -Innate + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -68.12373 + posY: 7.413718 + posZ: 15.5579214 + rotX: 5.78728668e-06 + rotY: 179.988571 + rotZ: 2.777129e-06 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 821 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '8': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/254843371583140523/C6EAEDD3176555E03AF4E905D2C6EC6258288621/ + NumHeight: 5 + NumWidth: 7 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: dbe9d2 + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Unexpected Courage (skill) -Innate + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -68.27232 + posY: 7.41636324 + posZ: 15.5581274 + rotX: 359.9787 + rotY: 179.988022 + rotZ: 359.8245 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 714 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '7': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/254843371583119710/AD96B4B42C36A9EB08CBC13E4B125D8A6AA5607D/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 02ede7 + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Machete (asset) -Item.Weapon.Melee + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -68.81906 + posY: 7.421385 + posZ: -6.497049 + rotX: -3.054187e-08 + rotY: 179.99527 + rotZ: -4.037677e-06 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 714 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '7': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/254843371583119710/AD96B4B42C36A9EB08CBC13E4B125D8A6AA5607D/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: eaf043 + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Machete (asset) -Item.Weapon.Melee + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -68.81906 + posY: 7.42767859 + posZ: -6.497049 + rotX: -3.054187e-08 + rotY: 179.99527 + rotZ: -4.037677e-06 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 715 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '7': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/254843371583119710/AD96B4B42C36A9EB08CBC13E4B125D8A6AA5607D/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: daca42 + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Guard Dog (asset) -Ally.Creature + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -68.81897 + posY: 7.38513136 + posZ: -6.71615648 + rotX: -6.111917e-07 + rotY: 179.987289 + rotZ: 9.86813848e-06 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 715 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '7': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/254843371583119710/AD96B4B42C36A9EB08CBC13E4B125D8A6AA5607D/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 3d74ac + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Guard Dog (asset) -Ally.Creature + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -68.81897 + posY: 7.394794 + posZ: -6.71615648 + rotX: -6.111917e-07 + rotY: 179.987289 + rotZ: 9.86813848e-06 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 717 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '7': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/254843371583119710/AD96B4B42C36A9EB08CBC13E4B125D8A6AA5607D/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 46c0d7 + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dodge (event) -Tactic + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -68.89236 + posY: 7.404465 + posZ: -6.618708 + rotX: 3.53746532e-06 + rotY: 179.98877 + rotZ: 1.46437048e-06 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 719 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '7': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/254843371583119710/AD96B4B42C36A9EB08CBC13E4B125D8A6AA5607D/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: f27d1e + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Vicious Blow (skill) -Practiced + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -68.99026 + posY: 7.414152 + posZ: -6.49682426 + rotX: -8.02015563e-07 + rotY: 179.988373 + rotZ: 3.39361759e-06 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 719 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '7': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/254843371583119710/AD96B4B42C36A9EB08CBC13E4B125D8A6AA5607D/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 6042ed + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Vicious Blow (skill) -Practiced + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -68.99235 + posY: 7.41523647 + posZ: -6.49898529 + rotX: 1.689357 + rotY: 179.924988 + rotZ: 357.247925 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 730 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '7': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/254843371583119710/AD96B4B42C36A9EB08CBC13E4B125D8A6AA5607D/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: f4045b + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Mind over Matter (event) -Insight + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -68.81901 + posY: 7.43346262 + posZ: -6.667486 + rotX: 1.13438114e-06 + rotY: 179.988617 + rotZ: -5.02438661e-06 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 730 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '7': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/254843371583119710/AD96B4B42C36A9EB08CBC13E4B125D8A6AA5607D/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: a9450f + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Mind over Matter (event) -Insight + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -68.81901 + posY: 7.443095 + posZ: -6.66748667 + rotX: 1.13438114e-06 + rotY: 179.988617 + rotZ: -5.02438661e-06 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 752 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '7': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/254843371583119710/AD96B4B42C36A9EB08CBC13E4B125D8A6AA5607D/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 676a49 + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Forbidden Knowledge (asset) -Talent + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -68.8038559 + posY: 7.446635 + posZ: -6.734842 + rotX: 1.28856564 + rotY: 179.949371 + rotZ: 358.242462 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 752 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '7': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/254843371583119710/AD96B4B42C36A9EB08CBC13E4B125D8A6AA5607D/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 5e9340 + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Forbidden Knowledge (asset) -Talent + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -68.80251 + posY: 7.4624176 + posZ: -6.73324966 + rotX: 4.370641e-07 + rotY: 179.986572 + rotZ: 5.56146369e-06 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 755 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '7': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/254843371583119710/AD96B4B42C36A9EB08CBC13E4B125D8A6AA5607D/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 3a0bbd + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Scrying (asset) -Spell + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -69.22327 + posY: 7.472078 + posZ: -6.63294458 + rotX: 2.585877e-06 + rotY: 179.9892 + rotZ: 7.579906e-07 + scaleX: 0.975 + scaleY: 1.0 + scaleZ: 0.975 + XmlUI: '' +- Autoraise: true + CardID: 755 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '7': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/254843371583119710/AD96B4B42C36A9EB08CBC13E4B125D8A6AA5607D/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: d7b4b0 + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Scrying (asset) -Spell + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -69.22326 + posY: 7.48174953 + posZ: -6.63294458 + rotX: 2.585877e-06 + rotY: 179.9892 + rotZ: 7.579906e-07 + scaleX: 0.975 + scaleY: 1.0 + scaleZ: 0.975 + XmlUI: '' +- Autoraise: true + CardID: 753 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '7': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/254843371583119710/AD96B4B42C36A9EB08CBC13E4B125D8A6AA5607D/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: '217149' + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Holy Rosary (asset) -Item.Charm + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -68.5550842 + posY: 7.491395 + posZ: -6.7335763 + rotX: -4.474268e-08 + rotY: 179.98616 + rotZ: -5.07847653e-06 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 753 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '7': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/254843371583119710/AD96B4B42C36A9EB08CBC13E4B125D8A6AA5607D/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: ed2108 + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Holy Rosary (asset) -Item.Charm + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -68.6045456 + posY: 7.501056 + posZ: -6.5838604 + rotX: -4.474268e-08 + rotY: 179.98616 + rotZ: -5.07847653e-06 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 756 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '7': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/254843371583119710/AD96B4B42C36A9EB08CBC13E4B125D8A6AA5607D/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: '159559' + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Arcane Studies (asset) -Talent + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -68.62932 + posY: 7.510722 + posZ: -6.73347569 + rotX: 3.24408165e-06 + rotY: 179.992233 + rotZ: 9.578947e-07 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 756 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '7': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/254843371583119710/AD96B4B42C36A9EB08CBC13E4B125D8A6AA5607D/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 5c470c + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Arcane Studies (asset) -Talent + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -68.62932 + posY: 7.52037525 + posZ: -6.73347569 + rotX: 3.24408165e-06 + rotY: 179.992233 + rotZ: 9.578947e-07 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 754 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '7': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/254843371583119710/AD96B4B42C36A9EB08CBC13E4B125D8A6AA5607D/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 78e33a + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Shrivelling (asset) -Spell + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -68.55521 + posY: 7.530034 + posZ: -7.20674 + rotX: -7.150176e-06 + rotY: 179.988922 + rotZ: 1.87817182e-06 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 754 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '7': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/254843371583119710/AD96B4B42C36A9EB08CBC13E4B125D8A6AA5607D/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: fa6ded + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Shrivelling (asset) -Spell + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -68.55521 + posY: 7.539694 + posZ: -7.18186569 + rotX: -7.150176e-06 + rotY: 179.988922 + rotZ: 1.87817182e-06 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 760 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '7': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/254843371583119710/AD96B4B42C36A9EB08CBC13E4B125D8A6AA5607D/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 11c1b5 + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Blinding Light (event) -Spell + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -68.70354 + posY: 7.54937124 + posZ: -6.8081646 + rotX: 2.01171315e-06 + rotY: 179.985672 + rotZ: 6.40289136e-06 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 734 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '7': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/254843371583119710/AD96B4B42C36A9EB08CBC13E4B125D8A6AA5607D/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: cb9b87 + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Magnifying Glass (asset) -Item.Tool + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -69.09782 + posY: 7.265852 + posZ: -20.0262413 + rotX: -1.23524183e-06 + rotY: 179.97522 + rotZ: 3.31196475e-06 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 736 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '7': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/254843371583119710/AD96B4B42C36A9EB08CBC13E4B125D8A6AA5607D/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 447d2e + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Encyclopedia (asset) -Item.Tome + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -66.2482 + posY: 7.26585245 + posZ: -19.9392376 + rotX: -9.313717e-07 + rotY: 180.012 + rotZ: -8.91199e-06 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 763 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '7': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/254843371583119710/AD96B4B42C36A9EB08CBC13E4B125D8A6AA5607D/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: '799185' + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Blinding Light (event) -Spell + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -63.4294128 + posY: 7.26585245 + posZ: -19.9187 + rotX: -7.13147438e-06 + rotY: 180.032471 + rotZ: -9.52259853e-08 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 765 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '7': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/254843371583119710/AD96B4B42C36A9EB08CBC13E4B125D8A6AA5607D/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: c9338c + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Grotesque Statue (asset) -Item.Relic + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -61.03765 + posY: 7.26585245 + posZ: -19.9816647 + rotX: -7.804392e-06 + rotY: 180.0048 + rotZ: -1.66736811e-06 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '35': + BackIsHidden: true + BackURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfdElXQkFGa1ctRFE + FaceURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfMGE4RHNUc09jMzA + NumHeight: 2 + NumWidth: 2 + UniqueBack: true + '36': + BackIsHidden: true + BackURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfdElXQkFGa1ctRFE + FaceURL: https://drive.google.com/uc?export=download&id=0B_N3oaTpdDRfMGE4RHNUc09jMzA + NumHeight: 2 + NumWidth: 2 + UniqueBack: true + '7': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/254843371583119710/AD96B4B42C36A9EB08CBC13E4B125D8A6AA5607D/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '8': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/254843371583140523/C6EAEDD3176555E03AF4E905D2C6EC6258288621/ + NumHeight: 5 + NumWidth: 7 + UniqueBack: false +DeckIDs: +- 3501 +- 3600 +- 816 +- 816 +- 817 +- 819 +- 821 +- 821 +- 714 +- 714 +- 715 +- 715 +- 717 +- 719 +- 719 +- 730 +- 730 +- 752 +- 752 +- 755 +- 755 +- 753 +- 753 +- 756 +- 756 +- 754 +- 754 +- 760 +- 734 +- 736 +- 763 +- 765 +Description: '' +GMNotes: '' +GUID: 8394d1 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Lita Chantler Deck (add basic weakness) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -54.952 + posY: 1.85314453 + posZ: 4.4543 + rotX: 359.9201 + rotY: 269.98587 + rotZ: 180.016876 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The London set 0f96ac.ttslua b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The London set 0f96ac.ttslua new file mode 100644 index 000000000..46067f58e --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The London set 0f96ac.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.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.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 791837/Custom_Model_Bag The London set 0f96ac.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The London set 0f96ac.yaml new file mode 100644 index 000000000..edb55f781 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The London set 0f96ac.yaml @@ -0,0 +1,63 @@ +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 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 + ColliderURL: '' + Convex: true + DiffuseURL: http://cloud-3.steamusercontent.com/ugc/798737729142939236/70113DAB44263CD5EA5A0913B4325A57B8113A4C/ + MaterialIndex: 3 + MeshURL: https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj + NormalURL: '' + TypeIndex: 6 +Description: '' +GMNotes: '' +GUID: 0f96ac +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +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 +MeshIndex: -1 +Name: Custom_Model_Bag +Nickname: The London set +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 5.62818432 + posY: 8.450624 + posZ: -5.4807725 + rotX: 0.02080862 + rotY: 270.0 + rotZ: 0.01677125 + scaleX: 2.21 + scaleY: 0.2 + scaleZ: 2.46 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The London set 0f96ac/Bag 1 A Loving Spouse 4c5c55.ttslua b/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/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 791837/Custom_Model_Bag The London set 0f96ac/Bag 1 A Loving Spouse 4c5c55.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The London set 0f96ac/Bag 1 A Loving Spouse 4c5c55.yaml new file mode 100644 index 000000000..f6b49255e --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The London set 0f96ac/Bag 1 A Loving Spouse 4c5c55.yaml @@ -0,0 +1,56 @@ +Autoraise: true +ColorDiffuse: + b: 0.0712403 + g: 0.07767408 + r: 0.08362358 +ContainedObjects: +- !include 'Bag 1 A Loving Spouse 4c5c55/Custom_Model_Bag Set-aside a45247.yaml' +- !include 'Bag 1 A Loving Spouse 4c5c55/Deck Encounter Deck c1b848.yaml' +- !include 'Bag 1 A Loving Spouse 4c5c55/Deck Agenda Deck ea8e80.yaml' +- !include 'Bag 1 A Loving Spouse 4c5c55/Deck Act Deck bef698.yaml' +- !include 'Bag 1 A Loving Spouse 4c5c55/Custom_Tile A Loving Spouse ea41d9.yaml' +- !include 'Bag 1 A Loving Spouse 4c5c55/Deck Healing Deck V2 1cb460.yaml' +- !include 'Bag 1 A Loving Spouse 4c5c55/Deck NPCs b5432c.yaml' +- !include 'Bag 1 A Loving Spouse 4c5c55/Deck SetupResolution 2b5207.yaml' +- !include 'Bag 1 A Loving Spouse 4c5c55/Card Back Gate afb02d.yaml' +- !include 'Bag 1 A Loving Spouse 4c5c55/Card Dining Room 6b5785.yaml' +- !include 'Bag 1 A Loving Spouse 4c5c55/Custom_Tile ae2582.yaml' +- !include 'Bag 1 A Loving Spouse 4c5c55/Custom_Tile 7234af.yaml' +- !include 'Bag 1 A Loving Spouse 4c5c55/Custom_Tile c53e86.yaml' +- !include 'Bag 1 A Loving Spouse 4c5c55/Card Lounge ce7d99.yaml' +- !include 'Bag 1 A Loving Spouse 4c5c55/Custom_Tile 8bfbdf.yaml' +- !include 'Bag 1 A Loving Spouse 4c5c55/Card Office 4a6c2e.yaml' +- !include 'Bag 1 A Loving Spouse 4c5c55/Custom_Tile 60c42d.yaml' +- !include 'Bag 1 A Loving Spouse 4c5c55/Card Hall 0de6ae.yaml' +- !include 'Bag 1 A Loving Spouse 4c5c55/Custom_Tile c8c57a.yaml' +- !include 'Bag 1 A Loving Spouse 4c5c55/Card Closet 011eb3.yaml' +- !include 'Bag 1 A Loving Spouse 4c5c55/Card Kitchen 107646.yaml' +Description: the London set +GMNotes: '' +GUID: 4c5c55 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Bag 1 A Loving Spouse 4c5c55.ttslua' +LuaScriptState: '{"ml":{"011eb3":{"lock":false,"pos":{"x":-30.2243,"y":1.6931,"z":-7.7001},"rot":{"x":359.9201,"y":269.9992,"z":0.0169}},"0de6ae":{"lock":false,"pos":{"x":-30.2242,"y":1.6954,"z":-0.03},"rot":{"x":359.9201,"y":269.999,"z":0.0169}},"107646":{"lock":false,"pos":{"x":-23.6764,"y":1.6885,"z":7.5699},"rot":{"x":359.9201,"y":269.9969,"z":0.0169}},"1cb460":{"lock":false,"pos":{"x":-11.4245,"y":1.6759,"z":11.019},"rot":{"x":359.9201,"y":269.9897,"z":0.0169}},"2b5207":{"lock":false,"pos":{"x":-10.4261,"y":1.6714,"z":0.2753},"rot":{"x":359.9201,"y":270.0288,"z":0.0168}},"4a6c2e":{"lock":false,"pos":{"x":-30.2243,"y":1.6976,"z":7.57},"rot":{"x":359.9201,"y":270.0002,"z":0.0169}},"60c42d":{"lock":false,"pos":{"x":-30.2242,"y":1.6248,"z":3.86},"rot":{"x":0.0169,"y":180,"z":0.0799}},"6b5785":{"lock":false,"pos":{"x":-17.12,"y":1.6771,"z":-0.03},"rot":{"x":359.9201,"y":270.0003,"z":0.0169}},"7234af":{"lock":false,"pos":{"x":-19.9096,"y":1.6093,"z":0.17},"rot":{"x":359.9201,"y":269.9955,"z":0.0169}},"8bfbdf":{"lock":false,"pos":{"x":-27.0339,"y":1.6192,"z":0.1143},"rot":{"x":359.9201,"y":269.9955,"z":0.0169}},"a45247":{"lock":false,"pos":{"x":1.6909,"y":1.5583,"z":14.2757},"rot":{"x":359.9551,"y":224.9793,"z":0.0687}},"ae2582":{"lock":false,"pos":{"x":-20.6953,"y":1.6124,"z":7.0916},"rot":{"x":359.9201,"y":269.9955,"z":0.0169}},"afb02d":{"lock":false,"pos":{"x":-17.12,"y":1.6793,"z":7.57},"rot":{"x":359.9201,"y":269.9993,"z":0.0169}},"b5432c":{"lock":false,"pos":{"x":-11.1725,"y":1.6779,"z":7.6917},"rot":{"x":359.9201,"y":269.9934,"z":0.0169}},"bef698":{"lock":false,"pos":{"x":-2.6885,"y":1.655,"z":-5.0485},"rot":{"x":359.9197,"y":269.9648,"z":0.0169}},"c1b848":{"lock":false,"pos":{"x":-3.9276,"y":1.6918,"z":5.7571},"rot":{"x":359.9197,"y":270.0002,"z":180.0168}},"c53e86":{"lock":false,"pos":{"x":-23.6765,"y":1.6157,"z":3.86},"rot":{"x":0.0169,"y":180,"z":0.0799}},"c8c57a":{"lock":false,"pos":{"x":-30.2244,"y":1.6225,"z":-3.83},"rot":{"x":0.0169,"y":179.9835,"z":0.08}},"ce7d99":{"lock":false,"pos":{"x":-23.6765,"y":1.6862,"z":-0.0301},"rot":{"x":359.9201,"y":269.9977,"z":0.0169}},"ea41d9":{"lock":false,"pos":{"x":-4.1758,"y":1.5829,"z":-15.1198},"rot":{"x":359.9197,"y":269.9853,"z":0.0169}},"ea8e80":{"lock":false,"pos":{"x":-2.7247,"y":1.6566,"z":0.3733},"rot":{"x":359.9197,"y":270.0002,"z":0.0168}}}}' +MaterialIndex: -1 +MeshIndex: -1 +Name: Bag +Nickname: '1: A Loving Spouse' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 8.048902 + posY: 1.28734577 + posZ: 7.10290051 + rotX: 0.0799590945 + rotY: 89.99617 + rotZ: 359.9831 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag The London set 0f96ac/Bag 1 A Loving Spouse 4c5c55/Card Back Gate afb02d.yaml new file mode 100644 index 000000000..be1ed66e7 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The London set 0f96ac/Bag 1 A Loving Spouse 4c5c55/Card Back Gate afb02d.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 308 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '3': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949597721086400107/928389C7E2C980E18CAA4776C8DAE9156E0DA5F4/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949597721086398069/79E19B382F20F2D6C8511CB89A9109EB0597F48A/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: afb02d +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Back Gate +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -17.1200371 + posY: 1.67931569 + posZ: 7.570001 + rotX: 359.9201 + rotY: 269.9993 + rotZ: 0.0168765616 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag The London set 0f96ac/Bag 1 A Loving Spouse 4c5c55/Card Closet 011eb3.yaml new file mode 100644 index 000000000..39f8639b6 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The London set 0f96ac/Bag 1 A Loving Spouse 4c5c55/Card Closet 011eb3.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 314 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '3': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949597721086400107/928389C7E2C980E18CAA4776C8DAE9156E0DA5F4/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949597721086398069/79E19B382F20F2D6C8511CB89A9109EB0597F48A/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 011eb3 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Closet +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -30.2243328 + posY: 1.69309235 + posZ: -7.70006132 + rotX: 359.9201 + rotY: 269.9992 + rotZ: 0.0168774687 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag The London set 0f96ac/Bag 1 A Loving Spouse 4c5c55/Card Dining Room 6b5785.yaml new file mode 100644 index 000000000..079150e5b --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The London set 0f96ac/Bag 1 A Loving Spouse 4c5c55/Card Dining Room 6b5785.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 309 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '3': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949597721086400107/928389C7E2C980E18CAA4776C8DAE9156E0DA5F4/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949597721086398069/79E19B382F20F2D6C8511CB89A9109EB0597F48A/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 6b5785 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Dining Room +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -17.1199646 + posY: 1.67707777 + posZ: -0.0300075468 + rotX: 359.9201 + rotY: 270.000336 + rotZ: 0.01687474 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag The London set 0f96ac/Bag 1 A Loving Spouse 4c5c55/Card Hall 0de6ae.yaml new file mode 100644 index 000000000..a28ef59b1 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The London set 0f96ac/Bag 1 A Loving Spouse 4c5c55/Card Hall 0de6ae.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 310 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '3': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949597721086400107/928389C7E2C980E18CAA4776C8DAE9156E0DA5F4/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949597721086398069/79E19B382F20F2D6C8511CB89A9109EB0597F48A/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 0de6ae +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Hall +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -30.2241726 + posY: 1.69535065 + posZ: -0.03004152 + rotX: 359.9201 + rotY: 269.999023 + rotZ: 0.0168776177 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag The London set 0f96ac/Bag 1 A Loving Spouse 4c5c55/Card Kitchen 107646.yaml new file mode 100644 index 000000000..0fc847864 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The London set 0f96ac/Bag 1 A Loving Spouse 4c5c55/Card Kitchen 107646.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 311 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '3': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949597721086400107/928389C7E2C980E18CAA4776C8DAE9156E0DA5F4/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949597721086398069/79E19B382F20F2D6C8511CB89A9109EB0597F48A/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: '107646' +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Kitchen +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -23.67644 + posY: 1.6884582 + posZ: 7.569899 + rotX: 359.9201 + rotY: 269.996948 + rotZ: 0.0168797467 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag The London set 0f96ac/Bag 1 A Loving Spouse 4c5c55/Card Lounge ce7d99.yaml new file mode 100644 index 000000000..0aff84d84 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The London set 0f96ac/Bag 1 A Loving Spouse 4c5c55/Card Lounge ce7d99.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 312 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '3': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949597721086400107/928389C7E2C980E18CAA4776C8DAE9156E0DA5F4/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949597721086398069/79E19B382F20F2D6C8511CB89A9109EB0597F48A/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: ce7d99 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Lounge +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -23.676548 + posY: 1.68622041 + posZ: -0.03008356 + rotX: 359.9201 + rotY: 269.9977 + rotZ: 0.0168794729 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag The London set 0f96ac/Bag 1 A Loving Spouse 4c5c55/Card Office 4a6c2e.yaml new file mode 100644 index 000000000..fe9a84294 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The London set 0f96ac/Bag 1 A Loving Spouse 4c5c55/Card Office 4a6c2e.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 313 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '3': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949597721086400107/928389C7E2C980E18CAA4776C8DAE9156E0DA5F4/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949597721086398069/79E19B382F20F2D6C8511CB89A9109EB0597F48A/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 4a6c2e +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Office +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -30.2242851 + posY: 1.69758868 + posZ: 7.5700016 + rotX: 359.9201 + rotY: 270.000153 + rotZ: 0.0168761071 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag The London set 0f96ac/Bag 1 A Loving Spouse 4c5c55/Custom_Model_Bag Set-aside a45247.yaml new file mode 100644 index 000000000..b11236cd3 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The London set 0f96ac/Bag 1 A Loving Spouse 4c5c55/Custom_Model_Bag Set-aside a45247.yaml @@ -0,0 +1,58 @@ +Autoraise: true +ColorDiffuse: + b: 0.02148666 + g: 0.00100758043 + r: 0.02148666 +ContainedObjects: +- !include 'Custom_Model_Bag Set-aside a45247/Card Det. James Barrington f4ee7f.yaml' +- !include 'Custom_Model_Bag Set-aside a45247/Deck Scotland Yard''s Finest d8c74a.yaml' +- !include 'Custom_Model_Bag Set-aside a45247/Deck Treachery 0eef55.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: A Loving Spouse +GMNotes: '' +GUID: a45247 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +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.69090748 + posY: 1.55832267 + posZ: 14.2757034 + rotX: 359.955139 + rotY: 224.979309 + rotZ: 0.06868733 + scaleX: 2.0 + scaleY: 2.0 + scaleZ: 2.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/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 new file mode 100644 index 000000000..3ab5e6395 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/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 @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 200 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949597535528318308/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949597721086393134/AB39B59FE76C6E6E5C504BEEB9FEEF8788BC61F1/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: Scotland Yard +GMNotes: '' +GUID: f4ee7f +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Det. James Barrington +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 0.711595535 + posY: 3.392908 + posZ: 71.03793 + rotX: 0.0206804425 + rotY: 269.98764 + rotZ: 0.05466247 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/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 new file mode 100644 index 000000000..c81c88df6 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/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 @@ -0,0 +1,215 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 403 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949597535528321567/A372A735C4BCA35FE128AD9388BD116ECDC282F0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949597721086404355/EA8548B72B473EAD7ECBED9DE2D9E303B54BAAAE/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Scotland Yard's Finest + GMNotes: '' + GUID: 5085bd + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Beat Bobby + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.61344576 + posY: 1.340708 + posZ: 62.25167 + rotX: 0.01975144 + rotY: 269.9956 + rotZ: 0.0181812439 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 402 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949597535528321567/A372A735C4BCA35FE128AD9388BD116ECDC282F0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949597721086404355/EA8548B72B473EAD7ECBED9DE2D9E303B54BAAAE/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Scotland Yard's Finest + GMNotes: '' + GUID: a771d6 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Beat Bobby + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.54416 + posY: 1.48105681 + posZ: 62.52048 + rotX: 0.0160498824 + rotY: 269.990082 + rotZ: -0.0004002189 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 404 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949597535528321567/A372A735C4BCA35FE128AD9388BD116ECDC282F0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949597721086404355/EA8548B72B473EAD7ECBED9DE2D9E303B54BAAAE/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Scotland Yard's Finest + GMNotes: '' + GUID: 9899ce + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Beat Bobby + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.41966271 + posY: 1.49856234 + posZ: 62.5426979 + rotX: 0.0186929163 + rotY: 269.9928 + rotZ: 0.016886713 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 405 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949597535528321567/A372A735C4BCA35FE128AD9388BD116ECDC282F0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949597721086404355/EA8548B72B473EAD7ECBED9DE2D9E303B54BAAAE/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Scotland Yard's Finest + GMNotes: '' + GUID: 261ab2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Police Sergeant + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.26028466 + posY: 1.48482656 + posZ: 62.4813576 + rotX: 0.0178039987 + rotY: 269.99942 + rotZ: 0.0149467466 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '4': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949597535528321567/A372A735C4BCA35FE128AD9388BD116ECDC282F0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949597721086404355/EA8548B72B473EAD7ECBED9DE2D9E303B54BAAAE/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 403 +- 402 +- 404 +- 405 +Description: '' +GMNotes: '' +GUID: d8c74a +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Scotland Yard's Finest +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 1.19929528 + posY: 3.39103556 + posZ: 70.96738 + rotX: 0.0208906867 + rotY: 270.002747 + rotZ: 0.016906349 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag The London set 0f96ac/Bag 1 A Loving Spouse 4c5c55/Custom_Model_Bag Set-aside a45247/Deck Treachery 0eef55.yaml new file mode 100644 index 000000000..47dcf695a --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The London set 0f96ac/Bag 1 A Loving Spouse 4c5c55/Custom_Model_Bag Set-aside a45247/Deck Treachery 0eef55.yaml @@ -0,0 +1,265 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 12113 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '121': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Creature. + GMNotes: '' + GUID: 56e5db + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Swarm of Rats + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.86850739 + posY: 1.34069121 + posZ: 61.9534645 + rotX: 0.0182469 + rotY: 269.99588 + rotZ: 0.0172220655 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12113 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '121': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Creature. + GMNotes: '' + GUID: bbc9d1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Swarm of Rats + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.083458 + posY: 1.48073113 + posZ: 61.5328941 + rotX: 0.0008585978 + rotY: 269.998016 + rotZ: 0.0367988274 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12113 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '121': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Creature. + GMNotes: '' + GUID: 7381cd + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Swarm of Rats + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.732219 + posY: 1.49849164 + posZ: 61.906826 + rotX: 0.0189743526 + rotY: 270.001343 + rotZ: 0.0148491487 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3628 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Obstacle. + GMNotes: '' + GUID: 1340ff + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Locked Door + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.95720625 + posY: 1.48490381 + posZ: 61.869957 + rotX: 0.0198317021 + rotY: 269.9986 + rotZ: 0.0163268521 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3628 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Obstacle. + GMNotes: '' + GUID: 9449d7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Locked Door + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.50900722 + posY: 1.48278451 + posZ: 62.3355255 + rotX: 0.0227489863 + rotY: 269.99765 + rotZ: 0.03072715 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '121': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 12113 +- 12113 +- 12113 +- 3628 +- 3628 +Description: '' +GMNotes: '' +GUID: 0eef55 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Treachery +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 1.16551149 + posY: 3.39195514 + posZ: 71.3535 + rotX: 0.0209920015 + rotY: 269.973816 + rotZ: 0.0169892963 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag The London set 0f96ac/Bag 1 A Loving Spouse 4c5c55/Custom_Tile 60c42d.yaml new file mode 100644 index 000000000..8020e9967 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The London set 0f96ac/Bag 1 A Loving Spouse 4c5c55/Custom_Tile 60c42d.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 60c42d +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.2242241 + posY: 1.62478244 + posZ: 3.85999918 + rotX: 0.0168718882 + rotY: 180.0 + rotZ: 0.07994073 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag The London set 0f96ac/Bag 1 A Loving Spouse 4c5c55/Custom_Tile 7234af.yaml new file mode 100644 index 000000000..199b274b5 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The London set 0f96ac/Bag 1 A Loving Spouse 4c5c55/Custom_Tile 7234af.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 7234af +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: -19.9096031 + posY: 1.609313 + posZ: 0.169964969 + rotX: 359.9201 + rotY: 269.995544 + rotZ: 0.0169219133 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag The London set 0f96ac/Bag 1 A Loving Spouse 4c5c55/Custom_Tile 8bfbdf.yaml new file mode 100644 index 000000000..6d63f1da7 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The London set 0f96ac/Bag 1 A Loving Spouse 4c5c55/Custom_Tile 8bfbdf.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 8bfbdf +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.033926 + posY: 1.61923087 + posZ: 0.114282683 + rotX: 359.9201 + rotY: 269.995544 + rotZ: 0.0169154257 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag The London set 0f96ac/Bag 1 A Loving Spouse 4c5c55/Custom_Tile ae2582.yaml new file mode 100644 index 000000000..30c037c8d --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The London set 0f96ac/Bag 1 A Loving Spouse 4c5c55/Custom_Tile ae2582.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: ae2582 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.6952915 + posY: 1.61244655 + posZ: 7.09162045 + rotX: 359.9201 + rotY: 269.995544 + rotZ: 0.0169159528 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag The London set 0f96ac/Bag 1 A Loving Spouse 4c5c55/Custom_Tile c53e86.yaml new file mode 100644 index 000000000..6132b69e8 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The London set 0f96ac/Bag 1 A Loving Spouse 4c5c55/Custom_Tile c53e86.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: c53e86 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.6764545 + posY: 1.61565208 + posZ: 3.85998583 + rotX: 0.016871769 + rotY: 180.000015 + rotZ: 0.07994586 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag The London set 0f96ac/Bag 1 A Loving Spouse 4c5c55/Custom_Tile c8c57a.yaml new file mode 100644 index 000000000..220d0f477 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The London set 0f96ac/Bag 1 A Loving Spouse 4c5c55/Custom_Tile c8c57a.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: c8c57a +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.224411 + posY: 1.62251842 + posZ: -3.82996273 + rotX: 0.0168952011 + rotY: 179.983475 + rotZ: 0.07996659 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag The London set 0f96ac/Bag 1 A Loving Spouse 4c5c55/Custom_Tile A Loving Spouse ea41d9.ttslua new file mode 100644 index 000000000..7ad001427 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The London set 0f96ac/Bag 1 A Loving Spouse 4c5c55/Custom_Tile A Loving Spouse ea41d9.ttslua @@ -0,0 +1,21 @@ +name = 'London Set 1' + +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 791837/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 791837/Custom_Model_Bag The London set 0f96ac/Bag 1 A Loving Spouse 4c5c55/Custom_Tile A Loving Spouse ea41d9.yaml new file mode 100644 index 000000000..b3378aa83 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The London set 0f96ac/Bag 1 A Loving Spouse 4c5c55/Custom_Tile A Loving Spouse ea41d9.yaml @@ -0,0 +1,42 @@ +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 +GMNotes: '' +GUID: ea41d9 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Tile A Loving Spouse ea41d9.ttslua' +LuaScriptState: '' +Name: Custom_Tile +Nickname: A Loving Spouse +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -4.17575932 + posY: 1.5828675 + posZ: -15.1198444 + rotX: 359.919739 + rotY: 269.985321 + rotZ: 0.0168586262 + scaleX: 2.2 + scaleY: 1.0 + scaleZ: 2.2 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag The London set 0f96ac/Bag 1 A Loving Spouse 4c5c55/Deck Act Deck bef698.yaml new file mode 100644 index 000000000..d9d753615 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The London set 0f96ac/Bag 1 A Loving Spouse 4c5c55/Deck Act Deck bef698.yaml @@ -0,0 +1,172 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 269905 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2693': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/949597721086385616/40C0CABC1714C5035727026AFCE33FB395B075B0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949597721086383974/CD174DC425DCDE9B0C5B8A60F7E12BC54F36CEE8/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 3 + GMNotes: '' + GUID: '169085' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: No gentleman! + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -14.298667 + posY: 1.33305657 + posZ: 57.1217957 + rotX: 0.0181615427 + rotY: 269.957977 + rotZ: 0.0161120053 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 269904 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2693': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/949597721086385616/40C0CABC1714C5035727026AFCE33FB395B075B0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949597721086383974/CD174DC425DCDE9B0C5B8A60F7E12BC54F36CEE8/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 2 + GMNotes: '' + GUID: b4a1b3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Something's Wrong + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -14.2846451 + posY: 1.47337437 + posZ: 57.1693153 + rotX: 0.0146401171 + rotY: 270.000916 + rotZ: 0.00741689373 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 269903 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2693': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/949597721086385616/40C0CABC1714C5035727026AFCE33FB395B075B0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949597721086383974/CD174DC425DCDE9B0C5B8A60F7E12BC54F36CEE8/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 1 + GMNotes: '' + GUID: d1bdbb + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: A Cautious Investigation + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -14.4745188 + posY: 1.49083316 + posZ: 57.1554947 + rotX: 0.0212722067 + rotY: 269.998322 + rotZ: 0.0138610182 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2699': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/949597721086385616/40C0CABC1714C5035727026AFCE33FB395B075B0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949597721086383974/CD174DC425DCDE9B0C5B8A60F7E12BC54F36CEE8/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 269905 +- 269904 +- 269903 +Description: A Loving Spouse +GMNotes: '' +GUID: bef698 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Act Deck +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.68847656 + posY: 1.65499723 + posZ: -5.04854155 + rotX: 359.919739 + rotY: 269.964844 + rotZ: 0.0168866981 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag The London set 0f96ac/Bag 1 A Loving Spouse 4c5c55/Deck Agenda Deck ea8e80.yaml new file mode 100644 index 000000000..1ae18781f --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The London set 0f96ac/Bag 1 A Loving Spouse 4c5c55/Deck Agenda Deck ea8e80.yaml @@ -0,0 +1,172 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 269802 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2693': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/949597721086385616/40C0CABC1714C5035727026AFCE33FB395B075B0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949597721086383974/CD174DC425DCDE9B0C5B8A60F7E12BC54F36CEE8/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 3 + GMNotes: '' + GUID: b66bbb + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Police! + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -12.9278545 + posY: 1.333601 + posZ: 57.051 + rotX: 0.017337298 + rotY: 270.002228 + rotZ: 0.0200381987 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 269801 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2693': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/949597721086385616/40C0CABC1714C5035727026AFCE33FB395B075B0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949597721086383974/CD174DC425DCDE9B0C5B8A60F7E12BC54F36CEE8/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 2 + GMNotes: '' + GUID: d26b53 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Alone at last! + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -12.6732178 + posY: 1.47418141 + posZ: 57.416153 + rotX: 0.00355648925 + rotY: 270.009338 + rotZ: 0.0214974377 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 269800 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2693': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/949597721086385616/40C0CABC1714C5035727026AFCE33FB395B075B0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949597721086383974/CD174DC425DCDE9B0C5B8A60F7E12BC54F36CEE8/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 1 + GMNotes: '' + GUID: 5d19c4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Poor Timing! + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -13.0621176 + posY: 1.49138308 + posZ: 56.9468651 + rotX: 0.0187181327 + rotY: 270.039124 + rotZ: 0.017087264 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2698': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/949597721086385616/40C0CABC1714C5035727026AFCE33FB395B075B0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949597721086383974/CD174DC425DCDE9B0C5B8A60F7E12BC54F36CEE8/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 269802 +- 269801 +- 269800 +Description: A Loving Spouse +GMNotes: '' +GUID: ea8e80 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Agenda Deck +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.724656 + posY: 1.65664113 + posZ: 0.373314142 + rotX: 359.919739 + rotY: 270.000183 + rotZ: 0.01683728 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag The London set 0f96ac/Bag 1 A Loving Spouse 4c5c55/Deck Encounter Deck c1b848.yaml new file mode 100644 index 000000000..4165bd931 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The London set 0f96ac/Bag 1 A Loving Spouse 4c5c55/Deck Encounter Deck c1b848.yaml @@ -0,0 +1,695 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 12120 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '121': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: e0f4c0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ancient Evils + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 1.68800735 + posY: 1.43340838 + posZ: 82.67936 + rotX: 3.22157025 + rotY: 269.165741 + rotZ: 0.0171837378 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 406 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949597535528321567/A372A735C4BCA35FE128AD9388BD116ECDC282F0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949597721086404355/EA8548B72B473EAD7ECBED9DE2D9E303B54BAAAE/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 27fb6f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Pea-Souper + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 10.3184557 + posY: 1.34485459 + posZ: 66.70092 + rotX: 0.0208098 + rotY: 269.999817 + rotZ: 0.0167722963 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 407 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949597535528321567/A372A735C4BCA35FE128AD9388BD116ECDC282F0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949597721086404355/EA8548B72B473EAD7ECBED9DE2D9E303B54BAAAE/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 29b321 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Pea-Souper + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 6.535244 + posY: 1.34353173 + posZ: 66.87574 + rotX: 0.0208086986 + rotY: 269.999939 + rotZ: 0.0167724825 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 408 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949597535528321567/A372A735C4BCA35FE128AD9388BD116ECDC282F0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949597721086404355/EA8548B72B473EAD7ECBED9DE2D9E303B54BAAAE/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 644a25 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Stagnant Air + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 6.44379139 + posY: 1.34432709 + posZ: 69.7068 + rotX: 0.02062125 + rotY: 270.636627 + rotZ: 0.0170041975 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 409 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949597535528321567/A372A735C4BCA35FE128AD9388BD116ECDC282F0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949597721086404355/EA8548B72B473EAD7ECBED9DE2D9E303B54BAAAE/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 238e38 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Stagnant Air + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 6.46081448 + posY: 1.34542215 + posZ: 73.4263 + rotX: 0.020808138 + rotY: 269.999176 + rotZ: 0.0167736579 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 411 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949597535528321567/A372A735C4BCA35FE128AD9388BD116ECDC282F0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949597721086404355/EA8548B72B473EAD7ECBED9DE2D9E303B54BAAAE/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: e87984 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Twitching Curtains + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 10.3431044 + posY: 1.34765947 + posZ: 76.25269 + rotX: 0.0208082851 + rotY: 269.999847 + rotZ: 0.0167740118 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 410 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949597535528321567/A372A735C4BCA35FE128AD9388BD116ECDC282F0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949597721086404355/EA8548B72B473EAD7ECBED9DE2D9E303B54BAAAE/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: aa0e4d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Twitching Curtains + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 6.717463 + posY: 1.34633887 + posZ: 76.23967 + rotX: 0.0208086185 + rotY: 269.998383 + rotZ: 0.016776178 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 412 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949597535528321567/A372A735C4BCA35FE128AD9388BD116ECDC282F0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949597721086404355/EA8548B72B473EAD7ECBED9DE2D9E303B54BAAAE/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: a9b913 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Malicious Rumours + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 10.5465288 + posY: 1.34852469 + posZ: 78.95648 + rotX: 0.0208103079 + rotY: 269.999634 + rotZ: 0.016771391 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 413 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949597535528321567/A372A735C4BCA35FE128AD9388BD116ECDC282F0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949597721086404355/EA8548B72B473EAD7ECBED9DE2D9E303B54BAAAE/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 822d49 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Malicious Rumours + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 7.058061 + posY: 1.34717643 + posZ: 79.07333 + rotX: 0.0141022 + rotY: 269.9759 + rotZ: 0.01821332 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12121 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '121': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: fb311c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Crypt Chill + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 10.5170984 + posY: 1.34929407 + posZ: 81.62115 + rotX: 0.020808626 + rotY: 269.999573 + rotZ: 0.0167711917 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12122 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '121': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: '356046' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Obscuring Fog + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 6.94828129 + posY: 1.34822774 + posZ: 81.24989 + rotX: 0.03372402 + rotY: 269.906067 + rotZ: 0.0123017384 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12121 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '121': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: b78c3b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Crypt Chill + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 10.6335325 + posY: 1.350006 + posZ: 83.90902 + rotX: 0.0208028611 + rotY: 269.999817 + rotZ: 0.0167713128 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12122 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '121': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: 03a265 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Obscuring Fog + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 6.911372 + posY: 1.34851348 + posZ: 83.5276642 + rotX: 0.01955569 + rotY: 269.999756 + rotZ: 0.0165862627 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12120 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '121': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: 61e841 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ancient Evils + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 4.30647 + posY: 1.43483639 + posZ: 82.81967 + rotX: 3.238441 + rotY: 269.872772 + rotZ: 0.0194862727 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12120 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '121': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: 1921c5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ancient Evils + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 1.72657549 + posY: 1.50745308 + posZ: 80.58021 + rotX: 3.13710713 + rotY: 270.116943 + rotZ: 4.10935974 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '121': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '4': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949597535528321567/A372A735C4BCA35FE128AD9388BD116ECDC282F0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949597721086404355/EA8548B72B473EAD7ECBED9DE2D9E303B54BAAAE/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 12120 +- 406 +- 407 +- 408 +- 409 +- 411 +- 410 +- 412 +- 413 +- 12121 +- 12122 +- 12121 +- 12122 +- 12120 +- 12120 +Description: A Loving Spouse +GMNotes: '' +GUID: c1b848 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Encounter Deck +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.92764664 + posY: 1.69176793 + posZ: 5.757147 + rotX: 359.919739 + rotY: 270.000183 + rotZ: 180.016815 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag The London set 0f96ac/Bag 1 A Loving Spouse 4c5c55/Deck Healing Deck V2 1cb460.yaml new file mode 100644 index 000000000..6a76e028d --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The London set 0f96ac/Bag 1 A Loving Spouse 4c5c55/Deck Healing Deck V2 1cb460.yaml @@ -0,0 +1,351 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 414 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949597535528321567/A372A735C4BCA35FE128AD9388BD116ECDC282F0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949597721086404355/EA8548B72B473EAD7ECBED9DE2D9E303B54BAAAE/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 261ab2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.69847512 + posY: 1.03162253 + posZ: 2.10678124 + rotX: -0.00308616855 + rotY: 179.999924 + rotZ: -0.00110360328 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 415 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949597535528321567/A372A735C4BCA35FE128AD9388BD116ECDC282F0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949597721086404355/EA8548B72B473EAD7ECBED9DE2D9E303B54BAAAE/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: c0de31 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.87449336 + posY: 1.17650783 + posZ: 2.10798025 + rotX: 359.9936 + rotY: 180.000137 + rotZ: 0.00675888965 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 416 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949597535528321567/A372A735C4BCA35FE128AD9388BD116ECDC282F0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949597721086404355/EA8548B72B473EAD7ECBED9DE2D9E303B54BAAAE/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 261ab2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.04187846 + posY: 1.19088221 + posZ: 1.775323 + rotX: 0.6826309 + rotY: 179.990326 + rotZ: 359.1072 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 417 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949597535528321567/A372A735C4BCA35FE128AD9388BD116ECDC282F0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949597721086404355/EA8548B72B473EAD7ECBED9DE2D9E303B54BAAAE/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 261ab2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.64276838 + posY: 1.13111043 + posZ: 2.10637832 + rotX: 0.00230805 + rotY: 180.0137 + rotZ: 357.34317 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 418 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949597535528321567/A372A735C4BCA35FE128AD9388BD116ECDC282F0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949597721086404355/EA8548B72B473EAD7ECBED9DE2D9E303B54BAAAE/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 261ab2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.10911536 + posY: 1.17839611 + posZ: 2.106778 + rotX: -0.00179639936 + rotY: 180.000015 + rotZ: 0.003106028 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 419 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949597535528321567/A372A735C4BCA35FE128AD9388BD116ECDC282F0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949597721086404355/EA8548B72B473EAD7ECBED9DE2D9E303B54BAAAE/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 261ab2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -12.03158 + posY: 1.81688964 + posZ: -10.4952917 + rotX: 359.933777 + rotY: 269.999 + rotZ: 0.0118760895 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 307 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949597721086400107/928389C7E2C980E18CAA4776C8DAE9156E0DA5F4/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949597721086398069/79E19B382F20F2D6C8511CB89A9109EB0597F48A/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: cdc26d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -11.9890289 + posY: 1.82139909 + posZ: -11.1491442 + rotX: 359.920746 + rotY: 269.99707 + rotZ: 0.02010548 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '3': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949597721086400107/928389C7E2C980E18CAA4776C8DAE9156E0DA5F4/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949597721086398069/79E19B382F20F2D6C8511CB89A9109EB0597F48A/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + '4': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949597535528321567/A372A735C4BCA35FE128AD9388BD116ECDC282F0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949597721086404355/EA8548B72B473EAD7ECBED9DE2D9E303B54BAAAE/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 414 +- 415 +- 416 +- 417 +- 418 +- 419 +- 307 +Description: A Loving Spouse +GMNotes: '' +GUID: 1cb460 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Healing Deck V2 +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -11.4245129 + posY: 1.67591786 + posZ: 11.019002 + rotX: 359.9201 + rotY: 269.9897 + rotZ: 0.016891202 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag The London set 0f96ac/Bag 1 A Loving Spouse 4c5c55/Deck NPCs b5432c.yaml new file mode 100644 index 000000000..f5681c696 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The London set 0f96ac/Bag 1 A Loving Spouse 4c5c55/Deck NPCs b5432c.yaml @@ -0,0 +1,129 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 400 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949597535528321567/A372A735C4BCA35FE128AD9388BD116ECDC282F0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949597721086404355/EA8548B72B473EAD7ECBED9DE2D9E303B54BAAAE/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Human. Elite. + GMNotes: '' + GUID: 261ab2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Alderman Whitney + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 8.979857 + posY: 1.345041 + posZ: 69.1255646 + rotX: 0.0188563336 + rotY: 270.0027 + rotZ: 0.0159593672 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 401 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949597535528321567/A372A735C4BCA35FE128AD9388BD116ECDC282F0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949597721086404355/EA8548B72B473EAD7ECBED9DE2D9E303B54BAAAE/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Human. Elite. + GMNotes: '' + GUID: d5e422 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Capt. Thomas Landgridge + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 8.700283 + posY: 1.48534775 + posZ: 69.18895 + rotX: 0.0130212987 + rotY: 270.0025 + rotZ: 0.008629036 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '4': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949597535528321567/A372A735C4BCA35FE128AD9388BD116ECDC282F0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949597721086404355/EA8548B72B473EAD7ECBED9DE2D9E303B54BAAAE/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 400 +- 401 +Description: A Loving Spouse +GMNotes: '' +GUID: b5432c +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: NPCs +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -11.1725445 + posY: 1.67793429 + posZ: 7.69167328 + rotX: 359.9201 + rotY: 269.993439 + rotZ: 0.0168855228 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag The London set 0f96ac/Bag 1 A Loving Spouse 4c5c55/Deck SetupResolution 2b5207.yaml new file mode 100644 index 000000000..0c46885eb --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The London set 0f96ac/Bag 1 A Loving Spouse 4c5c55/Deck SetupResolution 2b5207.yaml @@ -0,0 +1,344 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 306 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949597721086400107/928389C7E2C980E18CAA4776C8DAE9156E0DA5F4/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949597721086398069/79E19B382F20F2D6C8511CB89A9109EB0597F48A/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 011eb3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 19.597456 + posY: 1.68516839 + posZ: 3.42824578 + rotX: 359.9515 + rotY: 269.998047 + rotZ: 180.043243 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 305 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949597721086400107/928389C7E2C980E18CAA4776C8DAE9156E0DA5F4/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949597721086398069/79E19B382F20F2D6C8511CB89A9109EB0597F48A/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 7d5763 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 19.4965649 + posY: 1.679272 + posZ: 3.6544373 + rotX: 359.918549 + rotY: 269.9988 + rotZ: 180.046677 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 304 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949597721086400107/928389C7E2C980E18CAA4776C8DAE9156E0DA5F4/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949597721086398069/79E19B382F20F2D6C8511CB89A9109EB0597F48A/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 0569c7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 19.7959366 + posY: 1.676676 + posZ: 3.44042778 + rotX: 359.936035 + rotY: 270.001 + rotZ: 180.009323 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 303 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949597721086400107/928389C7E2C980E18CAA4776C8DAE9156E0DA5F4/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949597721086398069/79E19B382F20F2D6C8511CB89A9109EB0597F48A/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: b40021 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 19.62997 + posY: 1.67706275 + posZ: 3.29300165 + rotX: 359.7066 + rotY: 269.997437 + rotZ: 180.405075 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 302 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949597721086400107/928389C7E2C980E18CAA4776C8DAE9156E0DA5F4/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949597721086398069/79E19B382F20F2D6C8511CB89A9109EB0597F48A/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 858b8d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -9.798764 + posY: 1.8336432 + posZ: -4.17494869 + rotX: 359.8304 + rotY: 269.9957 + rotZ: 180.023773 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 301 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949597721086400107/928389C7E2C980E18CAA4776C8DAE9156E0DA5F4/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949597721086398069/79E19B382F20F2D6C8511CB89A9109EB0597F48A/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 65bbe0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -10.1410017 + posY: 1.81687546 + posZ: -4.66963243 + rotX: 359.821259 + rotY: 270.006927 + rotZ: 180.067474 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 300 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949597721086400107/928389C7E2C980E18CAA4776C8DAE9156E0DA5F4/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949597721086398069/79E19B382F20F2D6C8511CB89A9109EB0597F48A/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: '635281' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -10.1451912 + posY: 1.67080593 + posZ: -4.54220724 + rotX: 359.792175 + rotY: 270.070679 + rotZ: 180.058762 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '3': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949597721086400107/928389C7E2C980E18CAA4776C8DAE9156E0DA5F4/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949597721086398069/79E19B382F20F2D6C8511CB89A9109EB0597F48A/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 306 +- 305 +- 304 +- 303 +- 302 +- 301 +- 300 +Description: A Loving Spouse +GMNotes: '' +GUID: 2b5207 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Setup/Resolution +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -10.426115 + posY: 1.67136228 + posZ: 0.27529794 + rotX: 359.9201 + rotY: 270.0288 + rotZ: 0.0168284234 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The London set 0f96ac/Bag 2 Mrs Tillywingers Cat c56f66.ttslua b/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/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 791837/Custom_Model_Bag The London set 0f96ac/Bag 2 Mrs Tillywingers Cat c56f66.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The London set 0f96ac/Bag 2 Mrs Tillywingers Cat c56f66.yaml new file mode 100644 index 000000000..c9987f5ab --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The London set 0f96ac/Bag 2 Mrs Tillywingers Cat c56f66.yaml @@ -0,0 +1,62 @@ +Autoraise: true +ColorDiffuse: + b: 3.34721e-07 + g: 0.0 + r: 0.7019608 +ContainedObjects: +- !include 'Bag 2 Mrs Tillywingers Cat c56f66/Custom_Model_Bag Set-aside 5309ba.yaml' +- !include 'Bag 2 Mrs Tillywingers Cat c56f66/Deck Encounter Deck 0cd4b6.yaml' +- !include 'Bag 2 Mrs Tillywingers Cat c56f66/Deck Agenda Deck d2e2cb.yaml' +- !include 'Bag 2 Mrs Tillywingers Cat c56f66/Deck Act Deck 386975.yaml' +- !include 'Bag 2 Mrs Tillywingers Cat c56f66/Custom_Tile Mrs Tillywingers Cat 0ae91a.yaml' +- !include 'Bag 2 Mrs Tillywingers Cat c56f66/Deck NPCs 9e0519.yaml' +- !include 'Bag 2 Mrs Tillywingers Cat c56f66/Card Dining Room 6b5785.yaml' +- !include 'Bag 2 Mrs Tillywingers Cat c56f66/Deck 33cfb9.yaml' +- !include 'Bag 2 Mrs Tillywingers Cat c56f66/Card Mrs Tillywinger''s Kitchen 293045.yaml' +- !include 'Bag 2 Mrs Tillywingers Cat c56f66/Custom_Tile 79e8f6.yaml' +- !include 'Bag 2 Mrs Tillywingers Cat c56f66/Card Back Gate afb02d.yaml' +- !include 'Bag 2 Mrs Tillywingers Cat c56f66/Custom_Tile 7234af.yaml' +- !include 'Bag 2 Mrs Tillywingers Cat c56f66/Card Closet b05277.yaml' +- !include 'Bag 2 Mrs Tillywingers Cat c56f66/Custom_Tile 2fe44c.yaml' +- !include 'Bag 2 Mrs Tillywingers Cat c56f66/Card Hall 0de6ae.yaml' +- !include 'Bag 2 Mrs Tillywingers Cat c56f66/Custom_Tile 7a19e5.yaml' +- !include 'Bag 2 Mrs Tillywingers Cat c56f66/Card Lounge ce7d99.yaml' +- !include 'Bag 2 Mrs Tillywingers Cat c56f66/Custom_Tile a4066f.yaml' +- !include 'Bag 2 Mrs Tillywingers Cat c56f66/Card Kitchen 107646.yaml' +- !include 'Bag 2 Mrs Tillywingers Cat c56f66/Custom_Tile 115cf0.yaml' +- !include 'Bag 2 Mrs Tillywingers Cat c56f66/Custom_Tile 84b8e4.yaml' +- !include 'Bag 2 Mrs Tillywingers Cat c56f66/Card Office 4a6c2e.yaml' +- !include 'Bag 2 Mrs Tillywingers Cat c56f66/Card Garden Path 28f641.yaml' +- !include 'Bag 2 Mrs Tillywingers Cat c56f66/Custom_Tile 3cde65.yaml' +- !include 'Bag 2 Mrs Tillywingers Cat c56f66/Card Back Garden db2f11.yaml' +- !include 'Bag 2 Mrs Tillywingers Cat c56f66/Custom_Tile c83d0d.yaml' +- !include 'Bag 2 Mrs Tillywingers Cat c56f66/Card Old Tree 011eb3.yaml' +Description: the London set +GMNotes: '' +GUID: c56f66 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Bag 2 Mrs Tillywingers Cat c56f66.ttslua' +LuaScriptState: '{"ml":{"011eb3":{"lock":false,"pos":{"x":-30.2243,"y":1.6909,"z":-15.28},"rot":{"x":359.9201,"y":269.9946,"z":0.0169}},"0ae91a":{"lock":false,"pos":{"x":-3.7523,"y":1.5824,"z":-14.8086},"rot":{"x":359.9197,"y":270.0077,"z":0.0168}},"0cd4b6":{"lock":false,"pos":{"x":-3.9276,"y":1.7237,"z":5.7571},"rot":{"x":359.9197,"y":270.0001,"z":180.0168}},"0de6ae":{"lock":false,"pos":{"x":-23.6766,"y":1.6885,"z":7.57},"rot":{"x":359.9201,"y":269.9933,"z":0.0169}},"107646":{"lock":false,"pos":{"x":-23.6765,"y":1.684,"z":-7.7},"rot":{"x":359.9201,"y":269.9932,"z":0.0169}},"115cf0":{"lock":false,"pos":{"x":-26.9022,"y":1.6212,"z":7.5617},"rot":{"x":359.9201,"y":269.9945,"z":0.0169}},"28f641":{"lock":false,"pos":{"x":-30.2243,"y":1.6954,"z":-0.03},"rot":{"x":359.9201,"y":269.9941,"z":0.0169}},"293045":{"lock":false,"pos":{"x":-17.12,"y":1.6771,"z":-0.03},"rot":{"x":359.9201,"y":269.9734,"z":0.0169}},"2fe44c":{"lock":false,"pos":{"x":-23.6765,"y":1.6179,"z":11.46},"rot":{"x":0.0169,"y":180,"z":0.08}},"33cfb9":{"lock":false,"pos":{"x":-10.7528,"y":1.668,"z":0.8496},"rot":{"x":359.9201,"y":270.0762,"z":0.0168}},"386975":{"lock":false,"pos":{"x":-2.6885,"y":1.6623,"z":-5.0485},"rot":{"x":359.9197,"y":269.9669,"z":0.0169}},"3cde65":{"lock":false,"pos":{"x":-30.2243,"y":1.6225,"z":-3.83},"rot":{"x":0.0169,"y":180.0062,"z":0.0799}},"4a6c2e":{"lock":false,"pos":{"x":-30.2243,"y":1.6976,"z":7.57},"rot":{"x":359.9201,"y":269.9936,"z":0.0169}},"5309ba":{"lock":false,"pos":{"x":1.6948,"y":1.5583,"z":14.2792},"rot":{"x":359.9551,"y":224.998,"z":0.0687}},"6b5785":{"lock":false,"pos":{"x":-13.3231,"y":1.6733,"z":4.9753},"rot":{"x":359.9201,"y":269.9731,"z":0.0169}},"7234af":{"lock":false,"pos":{"x":-20.6527,"y":1.6079,"z":-8.0711},"rot":{"x":359.9201,"y":269.9945,"z":0.0169}},"79e8f6":{"lock":false,"pos":{"x":-17.12,"y":1.6042,"z":-3.83},"rot":{"x":359.9831,"y":-0.0001,"z":359.92}},"7a19e5":{"lock":false,"pos":{"x":-23.6765,"y":1.6157,"z":3.86},"rot":{"x":0.0169,"y":179.9804,"z":0.08}},"84b8e4":{"lock":false,"pos":{"x":-27.37,"y":1.6196,"z":-0.0822},"rot":{"x":359.9201,"y":269.9945,"z":0.0169}},"9e0519":{"lock":false,"pos":{"x":-11.8029,"y":1.6805,"z":13.582},"rot":{"x":359.9201,"y":269.9985,"z":0.0169}},"a4066f":{"lock":false,"pos":{"x":-23.6765,"y":1.6134,"z":-3.83},"rot":{"x":359.9831,"y":0.0001,"z":359.92}},"afb02d":{"lock":false,"pos":{"x":-17.1201,"y":1.6748,"z":-7.7},"rot":{"x":359.9201,"y":269.9933,"z":0.0169}},"b05277":{"lock":false,"pos":{"x":-23.6765,"y":1.6907,"z":15.19},"rot":{"x":359.9201,"y":269.9927,"z":0.0169}},"c83d0d":{"lock":false,"pos":{"x":-30.2243,"y":1.6203,"z":-11.51},"rot":{"x":359.9831,"y":0,"z":359.92}},"ce7d99":{"lock":false,"pos":{"x":-23.6765,"y":1.6862,"z":-0.03},"rot":{"x":359.9201,"y":269.9923,"z":0.0169}},"d2e2cb":{"lock":false,"pos":{"x":-2.7246,"y":1.664,"z":0.3733},"rot":{"x":359.9197,"y":269.9995,"z":0.0168}},"db2f11":{"lock":false,"pos":{"x":-30.2242,"y":1.6931,"z":-7.7},"rot":{"x":359.9201,"y":269.9928,"z":0.0169}}}}' +MaterialIndex: -1 +MeshIndex: -1 +Name: Bag +Nickname: 2 Mrs Tillywingers Cat +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 8.294902 + posY: 1.2856648 + posZ: 2.55609941 + rotX: 0.07996588 + rotY: 89.99611 + rotZ: 359.9831 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag The London set 0f96ac/Bag 2 Mrs Tillywingers Cat c56f66/Card Back Garden db2f11.yaml new file mode 100644 index 000000000..937e4b494 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The London set 0f96ac/Bag 2 Mrs Tillywingers Cat c56f66/Card Back Garden db2f11.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 316 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '3': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949597721086400107/928389C7E2C980E18CAA4776C8DAE9156E0DA5F4/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949597721086398069/79E19B382F20F2D6C8511CB89A9109EB0597F48A/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: db2f11 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Back Garden +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -30.224226 + posY: 1.69309223 + posZ: -7.700027 + rotX: 359.9201 + rotY: 269.992828 + rotZ: 0.0168870967 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag The London set 0f96ac/Bag 2 Mrs Tillywingers Cat c56f66/Card Back Gate afb02d.yaml new file mode 100644 index 000000000..a2b8f7460 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The London set 0f96ac/Bag 2 Mrs Tillywingers Cat c56f66/Card Back Gate afb02d.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 308 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '3': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949597721086400107/928389C7E2C980E18CAA4776C8DAE9156E0DA5F4/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949597721086398069/79E19B382F20F2D6C8511CB89A9109EB0597F48A/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: afb02d +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Back Gate +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -17.1200981 + posY: 1.67481935 + posZ: -7.69999552 + rotX: 359.9201 + rotY: 269.9933 + rotZ: 0.0168857761 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag The London set 0f96ac/Bag 2 Mrs Tillywingers Cat c56f66/Card Closet b05277.yaml new file mode 100644 index 000000000..15ebea594 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The London set 0f96ac/Bag 2 Mrs Tillywingers Cat c56f66/Card Closet b05277.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 314 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '3': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949597721086400107/928389C7E2C980E18CAA4776C8DAE9156E0DA5F4/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949597721086398069/79E19B382F20F2D6C8511CB89A9109EB0597F48A/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: b05277 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Closet +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -23.6764927 + posY: 1.69070208 + posZ: 15.1899776 + rotX: 359.9201 + rotY: 269.992676 + rotZ: 0.0168847889 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag The London set 0f96ac/Bag 2 Mrs Tillywingers Cat c56f66/Card Dining Room 6b5785.yaml new file mode 100644 index 000000000..834afff9a --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The London set 0f96ac/Bag 2 Mrs Tillywingers Cat c56f66/Card Dining Room 6b5785.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 309 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '3': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949597721086400107/928389C7E2C980E18CAA4776C8DAE9156E0DA5F4/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949597721086398069/79E19B382F20F2D6C8511CB89A9109EB0597F48A/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 6b5785 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Dining Room +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -13.3231363 + posY: 1.67325723 + posZ: 4.975279 + rotX: 359.9201 + rotY: 269.973145 + rotZ: 0.0169136487 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag The London set 0f96ac/Bag 2 Mrs Tillywingers Cat c56f66/Card Garden Path 28f641.yaml new file mode 100644 index 000000000..c2dcea5ad --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The London set 0f96ac/Bag 2 Mrs Tillywingers Cat c56f66/Card Garden Path 28f641.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 317 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '3': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949597721086400107/928389C7E2C980E18CAA4776C8DAE9156E0DA5F4/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949597721086398069/79E19B382F20F2D6C8511CB89A9109EB0597F48A/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 28f641 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Garden Path +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -30.2242641 + posY: 1.69535077 + posZ: -0.0299998354 + rotX: 359.9201 + rotY: 269.99408 + rotZ: 0.0168845765 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag The London set 0f96ac/Bag 2 Mrs Tillywingers Cat c56f66/Card Hall 0de6ae.yaml new file mode 100644 index 000000000..4c825a4f2 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The London set 0f96ac/Bag 2 Mrs Tillywingers Cat c56f66/Card Hall 0de6ae.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 310 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '3': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949597721086400107/928389C7E2C980E18CAA4776C8DAE9156E0DA5F4/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949597721086398069/79E19B382F20F2D6C8511CB89A9109EB0597F48A/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 0de6ae +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Hall +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -23.6765633 + posY: 1.68845832 + posZ: 7.569997 + rotX: 359.9201 + rotY: 269.993317 + rotZ: 0.01688574 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag The London set 0f96ac/Bag 2 Mrs Tillywingers Cat c56f66/Card Kitchen 107646.yaml new file mode 100644 index 000000000..6a52d01fc --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The London set 0f96ac/Bag 2 Mrs Tillywingers Cat c56f66/Card Kitchen 107646.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 311 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '3': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949597721086400107/928389C7E2C980E18CAA4776C8DAE9156E0DA5F4/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949597721086398069/79E19B382F20F2D6C8511CB89A9109EB0597F48A/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: '107646' +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Kitchen +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -23.676506 + posY: 1.68396187 + posZ: -7.700039 + rotX: 359.9201 + rotY: 269.993164 + rotZ: 0.0168857649 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag The London set 0f96ac/Bag 2 Mrs Tillywingers Cat c56f66/Card Lounge ce7d99.yaml new file mode 100644 index 000000000..8a2aaeefe --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The London set 0f96ac/Bag 2 Mrs Tillywingers Cat c56f66/Card Lounge ce7d99.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 312 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '3': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949597721086400107/928389C7E2C980E18CAA4776C8DAE9156E0DA5F4/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949597721086398069/79E19B382F20F2D6C8511CB89A9109EB0597F48A/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: ce7d99 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Lounge +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -23.676548 + posY: 1.68622041 + posZ: -0.0300044846 + rotX: 359.9201 + rotY: 269.9923 + rotZ: 0.01688696 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag The London set 0f96ac/Bag 2 Mrs Tillywingers Cat c56f66/Card Mrs Tillywinger's Kitchen 293045.yaml new file mode 100644 index 000000000..f866eac99 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The London set 0f96ac/Bag 2 Mrs Tillywingers Cat c56f66/Card Mrs Tillywinger's Kitchen 293045.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 315 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '3': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949597721086400107/928389C7E2C980E18CAA4776C8DAE9156E0DA5F4/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949597721086398069/79E19B382F20F2D6C8511CB89A9109EB0597F48A/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: '293045' +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Mrs Tillywinger's Kitchen +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -17.12003 + posY: 1.67707777 + posZ: -0.030036604 + rotX: 359.9201 + rotY: 269.973358 + rotZ: 0.0169137679 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag The London set 0f96ac/Bag 2 Mrs Tillywingers Cat c56f66/Card Office 4a6c2e.yaml new file mode 100644 index 000000000..3b88b384f --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The London set 0f96ac/Bag 2 Mrs Tillywingers Cat c56f66/Card Office 4a6c2e.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 313 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '3': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949597721086400107/928389C7E2C980E18CAA4776C8DAE9156E0DA5F4/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949597721086398069/79E19B382F20F2D6C8511CB89A9109EB0597F48A/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 4a6c2e +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Office +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -30.2242832 + posY: 1.69758868 + posZ: 7.570006 + rotX: 359.9201 + rotY: 269.993561 + rotZ: 0.0168854073 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag The London set 0f96ac/Bag 2 Mrs Tillywingers Cat c56f66/Card Old Tree 011eb3.yaml new file mode 100644 index 000000000..59e9c7de9 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The London set 0f96ac/Bag 2 Mrs Tillywingers Cat c56f66/Card Old Tree 011eb3.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 318 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '3': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949597721086400107/928389C7E2C980E18CAA4776C8DAE9156E0DA5F4/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949597721086398069/79E19B382F20F2D6C8511CB89A9109EB0597F48A/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: A Lookout Spot +GMNotes: '' +GUID: 011eb3 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Old Tree +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -30.2242756 + posY: 1.69086039 + posZ: -15.2800274 + rotX: 359.9201 + rotY: 269.994629 + rotZ: 0.016884774 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag The London set 0f96ac/Bag 2 Mrs Tillywingers Cat c56f66/Custom_Model_Bag Set-aside 5309ba.yaml new file mode 100644 index 000000000..1edfa179d --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The London set 0f96ac/Bag 2 Mrs Tillywingers Cat c56f66/Custom_Model_Bag Set-aside 5309ba.yaml @@ -0,0 +1,57 @@ +Autoraise: true +ColorDiffuse: + b: 0.02148666 + g: 0.00100758043 + r: 0.02148666 +ContainedObjects: +- !include 'Custom_Model_Bag Set-aside 5309ba/Deck For 3 to 4 PLayers a5f57e.yaml' +- !include 'Custom_Model_Bag Set-aside 5309ba/Card Fluffykins 261ab2.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: Mrs Tillywingers Cat +GMNotes: '' +GUID: 5309ba +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +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.6947813 + posY: 1.55831885 + posZ: 14.2792253 + rotX: 359.955139 + rotY: 224.998032 + rotZ: 0.06867317 + scaleX: 2.0 + scaleY: 2.0 + scaleZ: 2.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag The London set 0f96ac/Bag 2 Mrs Tillywingers Cat c56f66/Custom_Model_Bag Set-aside 5309ba/Card Fluffykins 261ab2.yaml new file mode 100644 index 000000000..69960fe14 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The London set 0f96ac/Bag 2 Mrs Tillywingers Cat c56f66/Custom_Model_Bag Set-aside 5309ba/Card Fluffykins 261ab2.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 420 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '4': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949597535528321567/A372A735C4BCA35FE128AD9388BD116ECDC282F0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949597721086404355/EA8548B72B473EAD7ECBED9DE2D9E303B54BAAAE/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: Mrs Tillywinger's Little Darling +GMNotes: '' +GUID: 261ab2 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Fluffykins +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 8.325331 + posY: 3.39017129 + posZ: 52.51885 + rotX: 0.0209585112 + rotY: 269.999756 + rotZ: 0.0168691929 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/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 new file mode 100644 index 000000000..e4ce77d37 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/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 @@ -0,0 +1,387 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 3629 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Byakhee. + GMNotes: '' + GUID: da8001 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Screeching Byakhee + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 15.4514036 + posY: 1.3766346 + posZ: 49.8168068 + rotX: 359.910553 + rotY: 269.961426 + rotZ: 359.920135 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3629 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Byakhee. + GMNotes: '' + GUID: '401760' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Screeching Byakhee + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 15.1804695 + posY: 1.34059536 + posZ: 49.2784729 + rotX: 359.970734 + rotY: 269.968475 + rotZ: -0.00309612462 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3630 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: d98d0d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Yellow Sign + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 15.3473883 + posY: 1.52310848 + posZ: 49.9477768 + rotX: 359.72 + rotY: 269.9748 + rotZ: 359.813965 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3630 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: fd620f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Yellow Sign + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 15.4229565 + posY: 1.660408 + posZ: 49.674263 + rotX: 359.632629 + rotY: 269.9696 + rotZ: 359.869659 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3626 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Nightgaunt. + GMNotes: '' + GUID: b124ef + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Hunting Nightgaunt + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 15.2970114 + posY: 1.48378527 + posZ: 49.67859 + rotX: 0.0184161812 + rotY: 270.000916 + rotZ: 0.03997488 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3626 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Nightgaunt. + GMNotes: '' + GUID: '476433' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Hunting Nightgaunt + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 15.2947645 + posY: 1.494381 + posZ: 50.3457336 + rotX: 0.155367389 + rotY: 270.001953 + rotZ: 0.217387438 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3627 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: b06ff1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: On Wings of Darkness + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 15.2033739 + posY: 1.49198246 + posZ: 50.3498077 + rotX: 0.022661414 + rotY: 269.9981 + rotZ: 0.009057894 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3627 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: dd287a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: On Wings of Darkness + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 15.49239 + posY: 1.49803567 + posZ: 50.2643967 + rotX: 0.01686859 + rotY: 269.9831 + rotZ: 0.02796745 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 3629 +- 3629 +- 3630 +- 3630 +- 3626 +- 3626 +- 3627 +- 3627 +Description: Mrs Tillywingers Cat +GMNotes: '' +GUID: a5f57e +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: For 3 to 4 PLayers +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 8.154825 + posY: 3.383677 + posZ: 50.5925179 + rotX: 0.0209235 + rotY: 270.0 + rotZ: 180.0168 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag The London set 0f96ac/Bag 2 Mrs Tillywingers Cat c56f66/Custom_Tile 115cf0.yaml new file mode 100644 index 000000000..16433aaf3 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The London set 0f96ac/Bag 2 Mrs Tillywingers Cat c56f66/Custom_Tile 115cf0.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 115cf0 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.9022 + posY: 1.62124026 + posZ: 7.561715 + rotX: 359.9201 + rotY: 269.9945 + rotZ: 0.0169153064 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag The London set 0f96ac/Bag 2 Mrs Tillywingers Cat c56f66/Custom_Tile 2fe44c.yaml new file mode 100644 index 000000000..add0f32bb --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The London set 0f96ac/Bag 2 Mrs Tillywingers Cat c56f66/Custom_Tile 2fe44c.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 2fe44c +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.67655 + posY: 1.61789 + posZ: 11.4600086 + rotX: 0.0168720819 + rotY: 179.999985 + rotZ: 0.07997423 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag The London set 0f96ac/Bag 2 Mrs Tillywingers Cat c56f66/Custom_Tile 3cde65.yaml new file mode 100644 index 000000000..ff1da2f04 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The London set 0f96ac/Bag 2 Mrs Tillywingers Cat c56f66/Custom_Tile 3cde65.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 3cde65 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.2242641 + posY: 1.62251806 + posZ: -3.82999468 + rotX: 0.01686313 + rotY: 180.00618 + rotZ: 0.0799382851 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag The London set 0f96ac/Bag 2 Mrs Tillywingers Cat c56f66/Custom_Tile 7234af.yaml new file mode 100644 index 000000000..742aef679 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The London set 0f96ac/Bag 2 Mrs Tillywingers Cat c56f66/Custom_Tile 7234af.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 7234af +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.6526814 + posY: 1.60792243 + posZ: -8.071087 + rotX: 359.9201 + rotY: 269.9945 + rotZ: 0.0169095118 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag The London set 0f96ac/Bag 2 Mrs Tillywingers Cat c56f66/Custom_Tile 79e8f6.yaml new file mode 100644 index 000000000..6b5939fe2 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The London set 0f96ac/Bag 2 Mrs Tillywingers Cat c56f66/Custom_Tile 79e8f6.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 79e8f6 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.1200314 + posY: 1.60424542 + posZ: -3.82999444 + rotX: 359.983124 + rotY: -0.000110379508 + rotZ: 359.920044 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag The London set 0f96ac/Bag 2 Mrs Tillywingers Cat c56f66/Custom_Tile 7a19e5.yaml new file mode 100644 index 000000000..9d5c8a597 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The London set 0f96ac/Bag 2 Mrs Tillywingers Cat c56f66/Custom_Tile 7a19e5.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 7a19e5 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.676548 + posY: 1.61565208 + posZ: 3.85998631 + rotX: 0.0168990735 + rotY: 179.980423 + rotZ: 0.07995498 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag The London set 0f96ac/Bag 2 Mrs Tillywingers Cat c56f66/Custom_Tile 84b8e4.yaml new file mode 100644 index 000000000..431f9f073 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The London set 0f96ac/Bag 2 Mrs Tillywingers Cat c56f66/Custom_Tile 84b8e4.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 84b8e4 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.3699932 + posY: 1.61964166 + posZ: -0.08215188 + rotX: 359.9201 + rotY: 269.9945 + rotZ: 0.0169142 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag The London set 0f96ac/Bag 2 Mrs Tillywingers Cat c56f66/Custom_Tile a4066f.yaml new file mode 100644 index 000000000..db6ca65c9 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The London set 0f96ac/Bag 2 Mrs Tillywingers Cat c56f66/Custom_Tile a4066f.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: a4066f +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.6765461 + posY: 1.61338842 + posZ: -3.82999372 + rotX: 359.983124 + rotY: 9.696651e-05 + rotZ: 359.920044 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag The London set 0f96ac/Bag 2 Mrs Tillywingers Cat c56f66/Custom_Tile c83d0d.yaml new file mode 100644 index 000000000..c9f00b42e --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The London set 0f96ac/Bag 2 Mrs Tillywingers Cat c56f66/Custom_Tile c83d0d.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: c83d0d +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.22426 + posY: 1.620257 + posZ: -11.5099955 + rotX: 359.983124 + rotY: -1.37242168e-05 + rotZ: 359.920044 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag The London set 0f96ac/Bag 2 Mrs Tillywingers Cat c56f66/Custom_Tile Mrs Tillywingers Cat 0ae91a.ttslua new file mode 100644 index 000000000..562cf43bf --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The London set 0f96ac/Bag 2 Mrs Tillywingers Cat c56f66/Custom_Tile Mrs Tillywingers Cat 0ae91a.ttslua @@ -0,0 +1,21 @@ +name = 'London Set 2' + +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 791837/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 791837/Custom_Model_Bag The London set 0f96ac/Bag 2 Mrs Tillywingers Cat c56f66/Custom_Tile Mrs Tillywingers Cat 0ae91a.yaml new file mode 100644 index 000000000..cf0abaa1a --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The London set 0f96ac/Bag 2 Mrs Tillywingers Cat c56f66/Custom_Tile Mrs Tillywingers Cat 0ae91a.yaml @@ -0,0 +1,42 @@ +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 +GMNotes: '' +GUID: 0ae91a +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Tile Mrs Tillywingers Cat 0ae91a.ttslua' +LuaScriptState: '' +Name: Custom_Tile +Nickname: Mrs Tillywingers Cat +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.75229931 + posY: 1.58236587 + posZ: -14.8086081 + rotX: 359.919739 + rotY: 270.00766 + rotZ: 0.0168265 + scaleX: 2.2 + scaleY: 1.0 + scaleZ: 2.2 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The London set 0f96ac/Bag 2 Mrs Tillywingers Cat c56f66/Deck 33cfb9.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The London set 0f96ac/Bag 2 Mrs Tillywingers Cat c56f66/Deck 33cfb9.yaml new file mode 100644 index 000000000..cafa0c08e --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The London set 0f96ac/Bag 2 Mrs Tillywingers Cat c56f66/Deck 33cfb9.yaml @@ -0,0 +1,172 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 321 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949597721086400107/928389C7E2C980E18CAA4776C8DAE9156E0DA5F4/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949597721086398069/79E19B382F20F2D6C8511CB89A9109EB0597F48A/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: db971e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -10.7527561 + posY: 1.66842091 + posZ: 0.8496371 + rotX: 359.921478 + rotY: 270.0761 + rotZ: 0.007111927 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 320 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949597721086400107/928389C7E2C980E18CAA4776C8DAE9156E0DA5F4/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949597721086398069/79E19B382F20F2D6C8511CB89A9109EB0597F48A/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 27e606 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -10.5751066 + posY: 1.802984 + posZ: 0.5225794 + rotX: 359.244965 + rotY: 270.0015 + rotZ: 1.33826756 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 319 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949597721086400107/928389C7E2C980E18CAA4776C8DAE9156E0DA5F4/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949597721086398069/79E19B382F20F2D6C8511CB89A9109EB0597F48A/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 011eb3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -10.4700756 + posY: 1.84659326 + posZ: 0.8850867 + rotX: 359.936462 + rotY: 270.0 + rotZ: 0.013267342 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '3': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949597721086400107/928389C7E2C980E18CAA4776C8DAE9156E0DA5F4/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949597721086398069/79E19B382F20F2D6C8511CB89A9109EB0597F48A/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 321 +- 320 +- 319 +Description: '' +GMNotes: '' +GUID: 33cfb9 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -10.7527771 + posY: 1.66799808 + posZ: 0.8496157 + rotX: 359.920074 + rotY: 270.076172 + rotZ: 0.0167712215 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag The London set 0f96ac/Bag 2 Mrs Tillywingers Cat c56f66/Deck Act Deck 386975.yaml new file mode 100644 index 000000000..b4f6dea51 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The London set 0f96ac/Bag 2 Mrs Tillywingers Cat c56f66/Deck Act Deck 386975.yaml @@ -0,0 +1,129 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 269907 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2693': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/949597721086385616/40C0CABC1714C5035727026AFCE33FB395B075B0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949597721086383974/CD174DC425DCDE9B0C5B8A60F7E12BC54F36CEE8/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 2 + GMNotes: '' + GUID: e20eb6 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Get him Home! + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -6.83483934 + posY: 1.33612251 + posZ: 57.28033 + rotX: 0.00737557467 + rotY: 269.967346 + rotZ: 0.01570806 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 269906 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2693': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/949597721086385616/40C0CABC1714C5035727026AFCE33FB395B075B0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949597721086383974/CD174DC425DCDE9B0C5B8A60F7E12BC54F36CEE8/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 1 + GMNotes: '' + GUID: 6294d9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Find the cat + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -6.693337 + posY: 1.4758929 + posZ: 57.21549 + rotX: 359.963 + rotY: 270.050568 + rotZ: 0.0130793359 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2699': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/949597721086385616/40C0CABC1714C5035727026AFCE33FB395B075B0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949597721086383974/CD174DC425DCDE9B0C5B8A60F7E12BC54F36CEE8/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 269907 +- 269906 +Description: Mrs Tillywingers Cat +GMNotes: '' +GUID: '386975' +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Act Deck +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.6884644 + posY: 1.66233337 + posZ: -5.04854155 + rotX: 359.919739 + rotY: 269.966919 + rotZ: 0.0168841 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag The London set 0f96ac/Bag 2 Mrs Tillywingers Cat c56f66/Deck Agenda Deck d2e2cb.yaml new file mode 100644 index 000000000..03f8fa96d --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The London set 0f96ac/Bag 2 Mrs Tillywingers Cat c56f66/Deck Agenda Deck d2e2cb.yaml @@ -0,0 +1,129 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 269809 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2693': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/949597721086385616/40C0CABC1714C5035727026AFCE33FB395B075B0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949597721086383974/CD174DC425DCDE9B0C5B8A60F7E12BC54F36CEE8/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 2 + GMNotes: '' + GUID: 9cc30c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Save the Cat! + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -5.66495228 + posY: 1.33458138 + posZ: 51.61132 + rotX: 0.0178991817 + rotY: 269.9998 + rotZ: 0.0161141418 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 269808 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2693': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/949597721086385616/40C0CABC1714C5035727026AFCE33FB395B075B0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949597721086383974/CD174DC425DCDE9B0C5B8A60F7E12BC54F36CEE8/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 1 + GMNotes: '' + GUID: 37fa58 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: A Haunted Night + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -5.39046764 + posY: 1.47492111 + posZ: 51.84988 + rotX: 0.0185187943 + rotY: 269.999756 + rotZ: 0.008588559 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2698': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/949597721086385616/40C0CABC1714C5035727026AFCE33FB395B075B0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949597721086383974/CD174DC425DCDE9B0C5B8A60F7E12BC54F36CEE8/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 269809 +- 269808 +Description: Mrs Tillywingers Cat +GMNotes: '' +GUID: d2e2cb +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Agenda Deck +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.72464824 + posY: 1.66397715 + posZ: 0.373312831 + rotX: 359.919739 + rotY: 269.999451 + rotZ: 0.01683858 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag The London set 0f96ac/Bag 2 Mrs Tillywingers Cat c56f66/Deck Encounter Deck 0cd4b6.yaml new file mode 100644 index 000000000..3b2dd987d --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The London set 0f96ac/Bag 2 Mrs Tillywingers Cat c56f66/Deck Encounter Deck 0cd4b6.yaml @@ -0,0 +1,953 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 12117 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '121': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: 18e09c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Rotting Remains + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 7.943852 + posY: 1.57057214 + posZ: 66.876236 + rotX: 0.0246719234 + rotY: 270.0225 + rotZ: 6.76655674 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12117 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '121': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: da8001 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Rotting Remains + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 7.631819 + posY: 1.61467588 + posZ: 68.50824 + rotX: 0.0232453756 + rotY: 269.700745 + rotZ: 356.9742 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12118 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '121': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: 27c05d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Frozen in Fear + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 7.82170343 + posY: 1.65066111 + posZ: 68.07302 + rotX: 0.08777389 + rotY: 269.7066 + rotZ: 1.54724193 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12120 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '121': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: e0f4c0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ancient Evils + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 6.97756338 + posY: 1.79472888 + posZ: 68.0418549 + rotX: 0.07663266 + rotY: 270.539581 + rotZ: 1.5504638 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12117 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '121': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: aa3d47 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Rotting Remains + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 7.93471241 + posY: 1.4478662 + posZ: 65.8406448 + rotX: -0.0051773903 + rotY: 270.013031 + rotZ: 0.99744916 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12113 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '121': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Creature. + GMNotes: '' + GUID: 7381cd + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Swarm of Rats + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 7.76275444 + posY: 2.011848 + posZ: 65.96545 + rotX: 359.990753 + rotY: 270.0852 + rotZ: 23.2207336 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12118 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '121': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: c40f57 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Frozen in Fear + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 7.95631361 + posY: 1.6257689 + posZ: 67.15603 + rotX: 0.0248142779 + rotY: 269.7837 + rotZ: 0.213772118 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12119 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '121': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: f1a34d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dissonant Voices + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 7.915483 + posY: 1.83312571 + posZ: 67.64507 + rotX: 0.0424844623 + rotY: 270.0448 + rotZ: 0.185682252 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12119 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '121': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: '260768' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dissonant Voices + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 7.90983534 + posY: 1.80452681 + posZ: 66.66874 + rotX: 0.278172076 + rotY: 270.096863 + rotZ: 1.7656951 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12113 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '121': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Creature. + GMNotes: '' + GUID: 56e5db + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Swarm of Rats + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 7.629957 + posY: 2.01334214 + posZ: 67.44456 + rotX: 359.99295 + rotY: 269.950653 + rotZ: 358.696167 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12113 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '121': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Creature. + GMNotes: '' + GUID: bbc9d1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Swarm of Rats + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 7.59330273 + posY: 2.05428267 + posZ: 66.62356 + rotX: 359.919464 + rotY: 270.1275 + rotZ: 1.06471109 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12120 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '121': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: 61e841 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ancient Evils + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 7.58868742 + posY: 2.204702 + posZ: 66.62257 + rotX: 359.8982 + rotY: 269.839417 + rotZ: 1.10112977 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12120 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '121': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: 1921c5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ancient Evils + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 7.46760035 + posY: 2.32279158 + posZ: 66.80437 + rotX: 359.934143 + rotY: 270.061279 + rotZ: 2.84245038 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 406 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949597535528321567/A372A735C4BCA35FE128AD9388BD116ECDC282F0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949597721086404355/EA8548B72B473EAD7ECBED9DE2D9E303B54BAAAE/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 27fb6f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Pea-Souper + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 12.1031313 + posY: 1.34441173 + posZ: 62.9742 + rotX: 0.02079743 + rotY: 270.023468 + rotZ: 0.0167899281 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 409 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949597535528321567/A372A735C4BCA35FE128AD9388BD116ECDC282F0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949597721086404355/EA8548B72B473EAD7ECBED9DE2D9E303B54BAAAE/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 238e38 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Stagnant Air + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 5.875264 + posY: 1.34233463 + posZ: 63.60507 + rotX: 0.0207734928 + rotY: 270.112518 + rotZ: 0.0168151725 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 411 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949597535528321567/A372A735C4BCA35FE128AD9388BD116ECDC282F0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949597721086404355/EA8548B72B473EAD7ECBED9DE2D9E303B54BAAAE/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: e87984 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Twitching Curtains + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 8.192573 + posY: 1.3422302 + posZ: 60.3732529 + rotX: 0.0207751784 + rotY: 270.112854 + rotZ: 0.016815193 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 407 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949597535528321567/A372A735C4BCA35FE128AD9388BD116ECDC282F0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949597721086404355/EA8548B72B473EAD7ECBED9DE2D9E303B54BAAAE/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 29b321 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Pea-Souper + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 12.2673321 + posY: 1.34359848 + posZ: 59.9910927 + rotX: 0.02075408 + rotY: 270.000122 + rotZ: 0.0167122446 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 412 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949597535528321567/A372A735C4BCA35FE128AD9388BD116ECDC282F0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949597721086404355/EA8548B72B473EAD7ECBED9DE2D9E303B54BAAAE/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: a9b913 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Malicious Rumours + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.69751358 + posY: 1.340454 + posZ: 59.88197 + rotX: 0.0208315887 + rotY: 269.920258 + rotZ: 0.016743619 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 410 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949597535528321567/A372A735C4BCA35FE128AD9388BD116ECDC282F0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949597721086404355/EA8548B72B473EAD7ECBED9DE2D9E303B54BAAAE/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: aa0e4d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Twitching Curtains + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 8.212333 + posY: 1.34145832 + posZ: 57.7117 + rotX: 0.020801669 + rotY: 270.019257 + rotZ: 0.0167808514 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 408 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949597535528321567/A372A735C4BCA35FE128AD9388BD116ECDC282F0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949597721086404355/EA8548B72B473EAD7ECBED9DE2D9E303B54BAAAE/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 644a25 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Stagnant Air + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.13515377 + posY: 1.34092963 + posZ: 63.4453163 + rotX: 0.0207998082 + rotY: 270.028961 + rotZ: 0.01678219 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 413 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949597535528321567/A372A735C4BCA35FE128AD9388BD116ECDC282F0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949597721086404355/EA8548B72B473EAD7ECBED9DE2D9E303B54BAAAE/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 822d49 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Malicious Rumours + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 4.11088467 + posY: 1.33972359 + posZ: 56.8741837 + rotX: 0.0208046734 + rotY: 270.0121 + rotZ: 0.0167784281 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '121': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '4': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949597535528321567/A372A735C4BCA35FE128AD9388BD116ECDC282F0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949597721086404355/EA8548B72B473EAD7ECBED9DE2D9E303B54BAAAE/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 12117 +- 12117 +- 12118 +- 12120 +- 12117 +- 12113 +- 12118 +- 12119 +- 12119 +- 12113 +- 12113 +- 12120 +- 12120 +- 406 +- 409 +- 411 +- 407 +- 412 +- 410 +- 408 +- 413 +Description: Mrs Tillywingers Cat +GMNotes: '' +GUID: 0cd4b6 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Encounter Deck +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.92758775 + posY: 1.72374475 + posZ: 5.75713634 + rotX: 359.919739 + rotY: 270.0001 + rotZ: 180.016815 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag The London set 0f96ac/Bag 2 Mrs Tillywingers Cat c56f66/Deck NPCs 9e0519.yaml new file mode 100644 index 000000000..3bfdbf0ac --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The London set 0f96ac/Bag 2 Mrs Tillywingers Cat c56f66/Deck NPCs 9e0519.yaml @@ -0,0 +1,129 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 400 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949597535528321567/A372A735C4BCA35FE128AD9388BD116ECDC282F0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949597721086404355/EA8548B72B473EAD7ECBED9DE2D9E303B54BAAAE/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Human. Elite. + GMNotes: '' + GUID: 003bab + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Alderman Whitney + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 17.8173428 + posY: 1.345631 + posZ: 60.0809 + rotX: 0.0171126369 + rotY: 269.998566 + rotZ: 0.00604795665 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 401 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949597535528321567/A372A735C4BCA35FE128AD9388BD116ECDC282F0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949597721086404355/EA8548B72B473EAD7ECBED9DE2D9E303B54BAAAE/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Human. Elite. + GMNotes: '' + GUID: d5e422 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Capt. Thomas Landgridge + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 17.7646351 + posY: 1.48586738 + posZ: 59.8291435 + rotX: 0.0010321 + rotY: 270.021484 + rotZ: 0.00789343752 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '4': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949597535528321567/A372A735C4BCA35FE128AD9388BD116ECDC282F0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949597721086404355/EA8548B72B473EAD7ECBED9DE2D9E303B54BAAAE/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 400 +- 401 +Description: Mrs Tillywingers Cat +GMNotes: '' +GUID: 9e0519 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: NPCs +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -11.8029079 + posY: 1.6805476 + posZ: 13.5819521 + rotX: 359.9201 + rotY: 269.998474 + rotZ: 0.0168795865 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The London set 0f96ac/Bag 3 Disgracing Alderman Whitn 905ad3.ttslua b/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/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 791837/Custom_Model_Bag The London set 0f96ac/Bag 3 Disgracing Alderman Whitn 905ad3.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The London set 0f96ac/Bag 3 Disgracing Alderman Whitn 905ad3.yaml new file mode 100644 index 000000000..7fb747a9c --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The London set 0f96ac/Bag 3 Disgracing Alderman Whitn 905ad3.yaml @@ -0,0 +1,64 @@ +Autoraise: true +ColorDiffuse: + b: 0.7019608 + g: 0.03653279 + r: 0.0 +ContainedObjects: +- !include 'Bag 3 Disgracing Alderman Whitn 905ad3/Custom_Model_Bag Set-aside 033221.yaml' +- !include 'Bag 3 Disgracing Alderman Whitn 905ad3/DeckCustom Healing deck v1 66f72a.yaml' +- !include 'Bag 3 Disgracing Alderman Whitn 905ad3/DeckCustom Encounter Deck 173db8.yaml' +- !include 'Bag 3 Disgracing Alderman Whitn 905ad3/Deck Agenda Deck 8ba9f5.yaml' +- !include 'Bag 3 Disgracing Alderman Whitn 905ad3/Card Light Conversation 50e60c.yaml' +- !include 'Bag 3 Disgracing Alderman Whitn 905ad3/Custom_Tile Disgracing Alderman + Whitney c2736e.yaml' +- !include 'Bag 3 Disgracing Alderman Whitn 905ad3/Deck SetupResolution 976f2f.yaml' +- !include 'Bag 3 Disgracing Alderman Whitn 905ad3/Card The Lounge 9a473c.yaml' +- !include 'Bag 3 Disgracing Alderman Whitn 905ad3/Custom_Tile 3ff3b1.yaml' +- !include 'Bag 3 Disgracing Alderman Whitn 905ad3/Card The Bar 6af709.yaml' +- !include 'Bag 3 Disgracing Alderman Whitn 905ad3/Custom_Tile 65f357.yaml' +- !include 'Bag 3 Disgracing Alderman Whitn 905ad3/Card Games Room 5778d0.yaml' +- !include 'Bag 3 Disgracing Alderman Whitn 905ad3/Custom_Tile 6f3431.yaml' +- !include 'Bag 3 Disgracing Alderman Whitn 905ad3/Custom_Tile b772b0.yaml' +- !include 'Bag 3 Disgracing Alderman Whitn 905ad3/Custom_Tile 07be44.yaml' +- !include 'Bag 3 Disgracing Alderman Whitn 905ad3/Custom_Tile 7234af.yaml' +- !include 'Bag 3 Disgracing Alderman Whitn 905ad3/Card The Library 6d4103.yaml' +- !include 'Bag 3 Disgracing Alderman Whitn 905ad3/Custom_Tile a0392b.yaml' +- !include 'Bag 3 Disgracing Alderman Whitn 905ad3/Card Great Hall 309add.yaml' +- !include 'Bag 3 Disgracing Alderman Whitn 905ad3/Custom_Tile 85e9d4.yaml' +- !include 'Bag 3 Disgracing Alderman Whitn 905ad3/Card The Theatre 5b1e07.yaml' +- !include 'Bag 3 Disgracing Alderman Whitn 905ad3/Custom_Tile 103c28.yaml' +- !include 'Bag 3 Disgracing Alderman Whitn 905ad3/Custom_Tile 838b75.yaml' +- !include 'Bag 3 Disgracing Alderman Whitn 905ad3/Card The Trophy Room 8c42b7.yaml' +- !include 'Bag 3 Disgracing Alderman Whitn 905ad3/Custom_Tile 44b0c5.yaml' +- !include 'Bag 3 Disgracing Alderman Whitn 905ad3/Card The Lobby 0572b6.yaml' +- !include 'Bag 3 Disgracing Alderman Whitn 905ad3/Custom_Tile 03248d.yaml' +- !include 'Bag 3 Disgracing Alderman Whitn 905ad3/Card Club Offices e4c61d.yaml' +Description: the London set +GMNotes: '' +GUID: 905ad3 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Bag 3 Disgracing Alderman Whitn 905ad3.ttslua' +LuaScriptState: '{"ml":{"03248d":{"lock":false,"pos":{"x":-30.2242,"y":1.6225,"z":-3.83},"rot":{"x":359.9831,"y":0.0002,"z":359.9201}},"033221":{"lock":false,"pos":{"x":1.6949,"y":1.5583,"z":14.2794},"rot":{"x":359.9551,"y":224.998,"z":0.0687}},"0572b6":{"lock":false,"pos":{"x":-30.2243,"y":1.6954,"z":-0.0301},"rot":{"x":359.9201,"y":270.0008,"z":0.0169}},"07be44":{"lock":false,"pos":{"x":-20.5346,"y":1.6102,"z":0.1387},"rot":{"x":359.9201,"y":269.9999,"z":0.0169}},"103c28":{"lock":false,"pos":{"x":-27.0591,"y":1.6215,"z":7.5884},"rot":{"x":359.9201,"y":270,"z":0.0169}},"173db8":{"lock":false,"pos":{"x":-3.9276,"y":1.7024,"z":5.7571},"rot":{"x":359.9197,"y":270.0002,"z":180.0168}},"309add":{"lock":false,"pos":{"x":-23.6765,"y":1.6862,"z":-0.0301},"rot":{"x":359.9201,"y":269.9994,"z":0.0169}},"3ff3b1":{"lock":false,"pos":{"x":-17.12,"y":1.6065,"z":3.86},"rot":{"x":359.9831,"y":0.0003,"z":359.9201}},"44b0c5":{"lock":false,"pos":{"x":-30.2242,"y":1.6248,"z":3.86},"rot":{"x":0.0169,"y":180,"z":0.0799}},"50e60c":{"lock":false,"pos":{"x":-2.6885,"y":1.6555,"z":-5.0485},"rot":{"x":359.9197,"y":269.9995,"z":0.0168}},"5778d0":{"lock":false,"pos":{"x":-17.12,"y":1.6748,"z":-7.7},"rot":{"x":359.9201,"y":270.0001,"z":0.0169}},"5b1e07":{"lock":false,"pos":{"x":-23.6766,"y":1.6839,"z":-7.7781},"rot":{"x":359.9201,"y":270.0031,"z":0.0169}},"65f357":{"lock":false,"pos":{"x":-17.12,"y":1.6042,"z":-3.83},"rot":{"x":359.9831,"y":0.0001,"z":359.92}},"66f72a":{"lock":false,"pos":{"x":-4.0239,"y":1.6666,"z":14.5018},"rot":{"x":359.9197,"y":270.0198,"z":0.0168}},"6af709":{"lock":false,"pos":{"x":-17.12,"y":1.6771,"z":-0.0301},"rot":{"x":359.9201,"y":270.0052,"z":0.0169}},"6d4103":{"lock":false,"pos":{"x":-23.6766,"y":1.6885,"z":7.5699},"rot":{"x":359.9201,"y":269.9974,"z":0.0169}},"6f3431":{"lock":false,"pos":{"x":-20.2168,"y":1.6119,"z":7.4941},"rot":{"x":359.9201,"y":270,"z":0.0169}},"7234af":{"lock":false,"pos":{"x":-20.6706,"y":1.6094,"z":-3.1371},"rot":{"x":359.9454,"y":329.9895,"z":359.9392}},"838b75":{"lock":false,"pos":{"x":-26.7256,"y":1.6187,"z":-0.0794},"rot":{"x":359.9201,"y":270,"z":0.0169}},"85e9d4":{"lock":false,"pos":{"x":-23.6765,"y":1.6134,"z":-3.83},"rot":{"x":359.9831,"y":0.0002,"z":359.9201}},"8ba9f5":{"lock":false,"pos":{"x":-2.7247,"y":1.6551,"z":0.3733},"rot":{"x":359.9197,"y":269.9742,"z":0.0169}},"8c42b7":{"lock":false,"pos":{"x":-30.2243,"y":1.6976,"z":7.57},"rot":{"x":359.9201,"y":270.0002,"z":0.0169}},"976f2f":{"lock":false,"pos":{"x":-10.1271,"y":1.6682,"z":-0.1136},"rot":{"x":359.9201,"y":270.0089,"z":0.0169}},"9a473c":{"lock":false,"pos":{"x":-17.12,"y":1.6793,"z":7.57},"rot":{"x":359.9201,"y":269.9898,"z":0.0169}},"a0392b":{"lock":false,"pos":{"x":-23.6765,"y":1.6157,"z":3.86},"rot":{"x":359.9831,"y":0,"z":359.9201}},"b772b0":{"lock":false,"pos":{"x":-20.4017,"y":1.6111,"z":3.7488},"rot":{"x":0.0446,"y":45.0094,"z":359.9316}},"c2736e":{"lock":false,"pos":{"x":-3.7192,"y":1.5823,"z":-14.8503},"rot":{"x":359.9197,"y":270.0052,"z":0.0168}},"e4c61d":{"lock":false,"pos":{"x":-30.2242,"y":1.6931,"z":-7.7001},"rot":{"x":359.9201,"y":269.9993,"z":0.0169}}}}' +MaterialIndex: -1 +MeshIndex: -1 +Name: Bag +Nickname: '3: Disgracing Alderman Whitn' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 8.426802 + posY: 1.28381181 + posZ: -3.11010122 + rotX: 0.0799639449 + rotY: 89.98935 + rotZ: 359.983063 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag The London set 0f96ac/Bag 3 Disgracing Alderman Whitn 905ad3/Card Club Offices e4c61d.yaml new file mode 100644 index 000000000..2da4bef82 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The London set 0f96ac/Bag 3 Disgracing Alderman Whitn 905ad3/Card Club Offices e4c61d.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 322 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '3': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949597721086400107/928389C7E2C980E18CAA4776C8DAE9156E0DA5F4/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949597721086398069/79E19B382F20F2D6C8511CB89A9109EB0597F48A/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: e4c61d +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Club Offices +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -30.2242 + posY: 1.69309211 + posZ: -7.700101 + rotX: 359.9201 + rotY: 269.999268 + rotZ: 0.0168772731 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag The London set 0f96ac/Bag 3 Disgracing Alderman Whitn 905ad3/Card Games Room 5778d0.yaml new file mode 100644 index 000000000..e938b2469 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The London set 0f96ac/Bag 3 Disgracing Alderman Whitn 905ad3/Card Games Room 5778d0.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 330 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '3': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949597721086400107/928389C7E2C980E18CAA4776C8DAE9156E0DA5F4/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949597721086398069/79E19B382F20F2D6C8511CB89A9109EB0597F48A/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 5778d0 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Games Room +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -17.12 + posY: 1.67481923 + posZ: -7.700001 + rotX: 359.9201 + rotY: 270.000122 + rotZ: 0.016876895 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag The London set 0f96ac/Bag 3 Disgracing Alderman Whitn 905ad3/Card Great Hall 309add.yaml new file mode 100644 index 000000000..db8a9fcdc --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The London set 0f96ac/Bag 3 Disgracing Alderman Whitn 905ad3/Card Great Hall 309add.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 324 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '3': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949597721086400107/928389C7E2C980E18CAA4776C8DAE9156E0DA5F4/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949597721086398069/79E19B382F20F2D6C8511CB89A9109EB0597F48A/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 309add +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Great Hall +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -23.6765 + posY: 1.68622029 + posZ: -0.030100327 + rotX: 359.9201 + rotY: 269.9994 + rotZ: 0.0168771651 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag The London set 0f96ac/Bag 3 Disgracing Alderman Whitn 905ad3/Card Light Conversation 50e60c.yaml new file mode 100644 index 000000000..074c53016 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The London set 0f96ac/Bag 3 Disgracing Alderman Whitn 905ad3/Card Light Conversation 50e60c.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 269910 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2699': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/949597721086385616/40C0CABC1714C5035727026AFCE33FB395B075B0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949597721086383974/CD174DC425DCDE9B0C5B8A60F7E12BC54F36CEE8/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Act 1 +GMNotes: '' +GUID: 50e60c +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Light Conversation +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.68850017 + posY: 1.6554575 + posZ: -5.04850149 + rotX: 359.919739 + rotY: 269.9995 + rotZ: 0.0168380588 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag The London set 0f96ac/Bag 3 Disgracing Alderman Whitn 905ad3/Card The Bar 6af709.yaml new file mode 100644 index 000000000..8c900c5f5 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The London set 0f96ac/Bag 3 Disgracing Alderman Whitn 905ad3/Card The Bar 6af709.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 325 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '3': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949597721086400107/928389C7E2C980E18CAA4776C8DAE9156E0DA5F4/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949597721086398069/79E19B382F20F2D6C8511CB89A9109EB0597F48A/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 6af709 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: The Bar +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -17.12 + posY: 1.67707777 + posZ: -0.0301001091 + rotX: 359.9201 + rotY: 270.0052 + rotZ: 0.0168686286 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag The London set 0f96ac/Bag 3 Disgracing Alderman Whitn 905ad3/Card The Library 6d4103.yaml new file mode 100644 index 000000000..4d57cb636 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The London set 0f96ac/Bag 3 Disgracing Alderman Whitn 905ad3/Card The Library 6d4103.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 323 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '3': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949597721086400107/928389C7E2C980E18CAA4776C8DAE9156E0DA5F4/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949597721086398069/79E19B382F20F2D6C8511CB89A9109EB0597F48A/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 6d4103 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: The Library +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -23.6766 + posY: 1.68845832 + posZ: 7.56989956 + rotX: 359.9201 + rotY: 269.997437 + rotZ: 0.0168799646 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag The London set 0f96ac/Bag 3 Disgracing Alderman Whitn 905ad3/Card The Lobby 0572b6.yaml new file mode 100644 index 000000000..65e9f27ac --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The London set 0f96ac/Bag 3 Disgracing Alderman Whitn 905ad3/Card The Lobby 0572b6.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 326 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '3': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949597721086400107/928389C7E2C980E18CAA4776C8DAE9156E0DA5F4/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949597721086398069/79E19B382F20F2D6C8511CB89A9109EB0597F48A/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 0572b6 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: The Lobby +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -30.2243 + posY: 1.69535077 + posZ: -0.030100394 + rotX: 359.9201 + rotY: 270.0008 + rotZ: 0.0168753825 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag The London set 0f96ac/Bag 3 Disgracing Alderman Whitn 905ad3/Card The Lounge 9a473c.yaml new file mode 100644 index 000000000..1f98b9f15 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The London set 0f96ac/Bag 3 Disgracing Alderman Whitn 905ad3/Card The Lounge 9a473c.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 327 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '3': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949597721086400107/928389C7E2C980E18CAA4776C8DAE9156E0DA5F4/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949597721086398069/79E19B382F20F2D6C8511CB89A9109EB0597F48A/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 9a473c +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: The Lounge +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -17.12 + posY: 1.67931569 + posZ: 7.57 + rotX: 359.9201 + rotY: 269.989838 + rotZ: 0.0168901216 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag The London set 0f96ac/Bag 3 Disgracing Alderman Whitn 905ad3/Card The Theatre 5b1e07.yaml new file mode 100644 index 000000000..557b7abc2 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The London set 0f96ac/Bag 3 Disgracing Alderman Whitn 905ad3/Card The Theatre 5b1e07.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 328 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '3': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949597721086400107/928389C7E2C980E18CAA4776C8DAE9156E0DA5F4/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949597721086398069/79E19B382F20F2D6C8511CB89A9109EB0597F48A/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 5b1e07 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: The Theatre +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -23.6765747 + posY: 1.68393886 + posZ: -7.77814054 + rotX: 359.9201 + rotY: 270.0031 + rotZ: 0.0168720726 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag The London set 0f96ac/Bag 3 Disgracing Alderman Whitn 905ad3/Card The Trophy Room 8c42b7.yaml new file mode 100644 index 000000000..d38654ab4 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The London set 0f96ac/Bag 3 Disgracing Alderman Whitn 905ad3/Card The Trophy Room 8c42b7.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 329 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '3': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949597721086400107/928389C7E2C980E18CAA4776C8DAE9156E0DA5F4/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949597721086398069/79E19B382F20F2D6C8511CB89A9109EB0597F48A/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 8c42b7 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: The Trophy Room +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -30.2243 + posY: 1.69758868 + posZ: 7.57000065 + rotX: 359.9201 + rotY: 270.000244 + rotZ: 0.0168758854 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag The London set 0f96ac/Bag 3 Disgracing Alderman Whitn 905ad3/Custom_Model_Bag Set-aside 033221.yaml new file mode 100644 index 000000000..9a973e364 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The London set 0f96ac/Bag 3 Disgracing Alderman Whitn 905ad3/Custom_Model_Bag Set-aside 033221.yaml @@ -0,0 +1,58 @@ +Autoraise: true +ColorDiffuse: + b: 0.02148666 + g: 0.00100758043 + r: 0.02148666 +ContainedObjects: +- !include 'Custom_Model_Bag Set-aside 033221/Deck Evidence & Red Herring cae4de.yaml' +- !include 'Custom_Model_Bag Set-aside 033221/Deck NPCs 922553.yaml' +- !include 'Custom_Model_Bag Set-aside 033221/Deck Dark Cult a257a6.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: '' +GMNotes: '' +GUID: '033221' +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +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.694901 + posY: 1.55831957 + posZ: 14.2794018 + rotX: 359.955139 + rotY: 224.998047 + rotZ: 0.06867407 + scaleX: 2.0 + scaleY: 2.0 + scaleZ: 2.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag The London set 0f96ac/Bag 3 Disgracing Alderman Whitn 905ad3/Custom_Model_Bag Set-aside 033221/Deck Dark Cult a257a6.yaml new file mode 100644 index 000000000..27cf801d4 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The London set 0f96ac/Bag 3 Disgracing Alderman Whitn 905ad3/Custom_Model_Bag Set-aside 033221/Deck Dark Cult a257a6.yaml @@ -0,0 +1,301 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 3623 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Cultist. + GMNotes: '' + GUID: c70e63 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Acolyte + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.8462448 + posY: 1.49462759 + posZ: 67.60548 + rotX: 0.0155736953 + rotY: 269.999146 + rotZ: 180.041351 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3623 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Cultist. + GMNotes: '' + GUID: 4072d7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Acolyte + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.96863 + posY: 1.51181448 + posZ: 67.54232 + rotX: 0.0199563075 + rotY: 270.000244 + rotZ: 180.0193 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3623 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Cultist. + GMNotes: '' + GUID: c70e63 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Acolyte + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.9685669 + posY: 1.49421251 + posZ: 67.5486145 + rotX: 0.0142310215 + rotY: 270.0003 + rotZ: 180.004318 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3624 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Cultist. + GMNotes: '' + GUID: 159f90 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Wizard of the Order + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.9503975 + posY: 1.3502568 + posZ: 67.5018 + rotX: 0.0177290067 + rotY: 270.000183 + rotZ: 180.017975 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3625 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: df668b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Mysterious Chanting + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.2962837 + posY: 1.48944151 + posZ: 67.43542 + rotX: 0.0104796886 + rotY: 269.99707 + rotZ: 0.0253430028 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3625 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: 6f5b7b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Mysterious Chanting + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.1026 + posY: 1.49176669 + posZ: 67.0285 + rotX: 0.0154802417 + rotY: 270.010437 + rotZ: 0.0280999057 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 3623 +- 3623 +- 3623 +- 3624 +- 3625 +- 3625 +Description: Disgracing Alderman Whitney +GMNotes: '' +GUID: a257a6 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Dark Cult +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 18.5194759 + posY: 3.4068048 + posZ: 58.4386368 + rotX: 0.0209522918 + rotY: 270.000061 + rotZ: 180.016876 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/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 new file mode 100644 index 000000000..6638bdfe9 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/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 @@ -0,0 +1,430 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 429 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949597535528321567/A372A735C4BCA35FE128AD9388BD116ECDC282F0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949597721086404355/EA8548B72B473EAD7ECBED9DE2D9E303B54BAAAE/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Evidence + GMNotes: '' + GUID: ad68f3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Stolen Deed + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 9.444139 + posY: 1.34458077 + posZ: 66.85049 + rotX: 0.0208078772 + rotY: 269.9999 + rotZ: 0.0167745538 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 421 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949597535528321567/A372A735C4BCA35FE128AD9388BD116ECDC282F0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949597721086404355/EA8548B72B473EAD7ECBED9DE2D9E303B54BAAAE/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Evidence + GMNotes: '' + GUID: 301ab3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Locked Diary + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 9.613516 + posY: 1.34360158 + posZ: 63.29505 + rotX: 0.020810144 + rotY: 270.0 + rotZ: 0.0167722274 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 426 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949597535528321567/A372A735C4BCA35FE128AD9388BD116ECDC282F0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949597721086404355/EA8548B72B473EAD7ECBED9DE2D9E303B54BAAAE/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 261ab2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Trapped Drawer + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 9.595386 + posY: 1.342624 + posZ: 59.9779129 + rotX: 0.020807188 + rotY: 269.999878 + rotZ: 0.01677257 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 428 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949597535528321567/A372A735C4BCA35FE128AD9388BD116ECDC282F0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949597721086404355/EA8548B72B473EAD7ECBED9DE2D9E303B54BAAAE/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Evidence + GMNotes: '' + GUID: 44b0dd + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Betting Slip + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 6.0452 + posY: 1.34324312 + posZ: 66.49796 + rotX: 0.0208083224 + rotY: 269.999756 + rotZ: 0.016771907 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 427 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949597535528321567/A372A735C4BCA35FE128AD9388BD116ECDC282F0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949597721086404355/EA8548B72B473EAD7ECBED9DE2D9E303B54BAAAE/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Evidence + GMNotes: '' + GUID: e04cbc + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Forged Letter + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 6.15067339 + posY: 1.342234 + posZ: 62.91979 + rotX: 0.0208070111 + rotY: 269.999481 + rotZ: 0.0167711973 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 424 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949597535528321567/A372A735C4BCA35FE128AD9388BD116ECDC282F0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949597721086404355/EA8548B72B473EAD7ECBED9DE2D9E303B54BAAAE/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: f39749 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Burglar Alarm + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 9.374113 + posY: 1.34182119 + posZ: 57.50986 + rotX: 0.0208093151 + rotY: 269.9998 + rotZ: 0.0167722646 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 425 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949597535528321567/A372A735C4BCA35FE128AD9388BD116ECDC282F0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949597721086404355/EA8548B72B473EAD7ECBED9DE2D9E303B54BAAAE/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 2bbe98 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Observant Servant + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 5.81704235 + posY: 1.34127808 + posZ: 60.06765 + rotX: 0.0208096951 + rotY: 269.9995 + rotZ: 0.0167726111 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 423 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949597535528321567/A372A735C4BCA35FE128AD9388BD116ECDC282F0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949597721086404355/EA8548B72B473EAD7ECBED9DE2D9E303B54BAAAE/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Evidence + GMNotes: '' + GUID: 54ab9f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Bank Draft + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 6.066131 + posY: 1.34042871 + posZ: 56.85691 + rotX: 0.0208078139 + rotY: 269.9998 + rotZ: 0.0167712 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 422 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949597535528321567/A372A735C4BCA35FE128AD9388BD116ECDC282F0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949597721086404355/EA8548B72B473EAD7ECBED9DE2D9E303B54BAAAE/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Evidence + GMNotes: '' + GUID: 142b74 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Incriminating Photograph + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 9.988708 + posY: 1.34102738 + posZ: 54.03517 + rotX: 0.0208073761 + rotY: 269.999969 + rotZ: 0.01677363 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '4': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949597535528321567/A372A735C4BCA35FE128AD9388BD116ECDC282F0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949597721086404355/EA8548B72B473EAD7ECBED9DE2D9E303B54BAAAE/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 429 +- 421 +- 426 +- 428 +- 427 +- 424 +- 425 +- 423 +- 422 +Description: Disgracing Alderman Whitney +GMNotes: '' +GUID: cae4de +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Evidence & Red Herring +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 18.0728378 + posY: 3.39508319 + posZ: 59.1758347 + rotX: 0.0209293533 + rotY: 270.0001 + rotZ: 180.016708 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag The London set 0f96ac/Bag 3 Disgracing Alderman Whitn 905ad3/Custom_Model_Bag Set-aside 033221/Deck NPCs 922553.yaml new file mode 100644 index 000000000..235053681 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The London set 0f96ac/Bag 3 Disgracing Alderman Whitn 905ad3/Custom_Model_Bag Set-aside 033221/Deck NPCs 922553.yaml @@ -0,0 +1,172 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 3610 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Cultist. + GMNotes: '' + GUID: da8001 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ruth Turner + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 17.0447865 + posY: 1.34617162 + posZ: 62.66872 + rotX: 0.0130296005 + rotY: 270.005829 + rotZ: 0.007828637 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3609 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Cultist. + GMNotes: '' + GUID: de24dc + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Victoria Devereux + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.9326172 + posY: 1.48639071 + posZ: 62.42168 + rotX: 359.983948 + rotY: 270.040161 + rotZ: 0.0169172231 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3607 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Cultist. + GMNotes: '' + GUID: ecf8ce + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Herman Collins + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 17.2377148 + posY: 1.50386047 + posZ: 62.52892 + rotX: 0.0207031574 + rotY: 270.00058 + rotZ: 0.02027984 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 3610 +- 3609 +- 3607 +Description: '' +GMNotes: '' +GUID: '922553' +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: NPCs +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 17.9329834 + posY: 3.39505577 + posZ: 58.8006821 + rotX: 0.0209635422 + rotY: 270.0021 + rotZ: 0.01690862 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag The London set 0f96ac/Bag 3 Disgracing Alderman Whitn 905ad3/Custom_Tile 03248d.yaml new file mode 100644 index 000000000..11eba6b8c --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The London set 0f96ac/Bag 3 Disgracing Alderman Whitn 905ad3/Custom_Tile 03248d.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 03248d +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.000163583391 + rotZ: 359.920074 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag The London set 0f96ac/Bag 3 Disgracing Alderman Whitn 905ad3/Custom_Tile 07be44.yaml new file mode 100644 index 000000000..276b3c759 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The London set 0f96ac/Bag 3 Disgracing Alderman Whitn 905ad3/Custom_Tile 07be44.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 07be44 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.5346 + posY: 1.61017525 + posZ: 0.13869971 + rotX: 359.9201 + rotY: 269.9999 + rotZ: 0.01690039 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag The London set 0f96ac/Bag 3 Disgracing Alderman Whitn 905ad3/Custom_Tile 103c28.yaml new file mode 100644 index 000000000..696b9fc32 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The London set 0f96ac/Bag 3 Disgracing Alderman Whitn 905ad3/Custom_Tile 103c28.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 103c28 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.0591 + posY: 1.62146688 + posZ: 7.5884 + rotX: 359.9201 + rotY: 270.0 + rotZ: 0.01689985 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag The London set 0f96ac/Bag 3 Disgracing Alderman Whitn 905ad3/Custom_Tile 3ff3b1.yaml new file mode 100644 index 000000000..9f7e99e8b --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The London set 0f96ac/Bag 3 Disgracing Alderman Whitn 905ad3/Custom_Tile 3ff3b1.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 3ff3b1 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.1199989 + posY: 1.6065098 + posZ: 3.86 + rotX: 359.983124 + rotY: 0.000345604232 + rotZ: 359.920074 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag The London set 0f96ac/Bag 3 Disgracing Alderman Whitn 905ad3/Custom_Tile 44b0c5.yaml new file mode 100644 index 000000000..15a2ca111 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The London set 0f96ac/Bag 3 Disgracing Alderman Whitn 905ad3/Custom_Tile 44b0c5.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 44b0c5 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Tile +Nickname: '' +Snap: true +States: + '1': + 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: '' + GMNotes: '' + GUID: 3bd96a + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Custom_Tile + Nickname: '' + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -30.2242413 + posY: 1.62478292 + posZ: 3.8599596 + rotX: 359.9831 + rotY: 359.966583 + rotZ: 359.920044 + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.62478244 + posZ: 3.86000037 + rotX: 0.0168717653 + rotY: 180.000031 + rotZ: 0.07993907 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag The London set 0f96ac/Bag 3 Disgracing Alderman Whitn 905ad3/Custom_Tile 65f357.yaml new file mode 100644 index 000000000..5b20b31e7 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The London set 0f96ac/Bag 3 Disgracing Alderman Whitn 905ad3/Custom_Tile 65f357.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 65f357 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.1199932 + posY: 1.60424542 + posZ: -3.83000088 + rotX: 359.983124 + rotY: 7.681225e-05 + rotZ: 359.920044 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag The London set 0f96ac/Bag 3 Disgracing Alderman Whitn 905ad3/Custom_Tile 6f3431.yaml new file mode 100644 index 000000000..6a0ebb766 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The London set 0f96ac/Bag 3 Disgracing Alderman Whitn 905ad3/Custom_Tile 6f3431.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 6f3431 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.2168026 + posY: 1.611898 + posZ: 7.49409962 + rotX: 359.9201 + rotY: 270.000031 + rotZ: 0.0168999676 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag The London set 0f96ac/Bag 3 Disgracing Alderman Whitn 905ad3/Custom_Tile 7234af.yaml new file mode 100644 index 000000000..68da16c36 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The London set 0f96ac/Bag 3 Disgracing Alderman Whitn 905ad3/Custom_Tile 7234af.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 7234af +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.670599 + posY: 1.60940051 + posZ: -3.1371 + rotX: 359.945435 + rotY: 329.989532 + rotZ: 359.9392 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag The London set 0f96ac/Bag 3 Disgracing Alderman Whitn 905ad3/Custom_Tile 838b75.yaml new file mode 100644 index 000000000..2935766e1 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The London set 0f96ac/Bag 3 Disgracing Alderman Whitn 905ad3/Custom_Tile 838b75.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 838b75 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.7256 + posY: 1.6187439 + posZ: -0.07940024 + rotX: 359.9201 + rotY: 270.000031 + rotZ: 0.0168998 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag The London set 0f96ac/Bag 3 Disgracing Alderman Whitn 905ad3/Custom_Tile 85e9d4.yaml new file mode 100644 index 000000000..ae26bdb6f --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The London set 0f96ac/Bag 3 Disgracing Alderman Whitn 905ad3/Custom_Tile 85e9d4.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 85e9d4 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.6765 + posY: 1.613388 + posZ: -3.8300004 + rotX: 359.983124 + rotY: 0.000197638336 + rotZ: 359.920074 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag The London set 0f96ac/Bag 3 Disgracing Alderman Whitn 905ad3/Custom_Tile a0392b.yaml new file mode 100644 index 000000000..5154586c1 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The London set 0f96ac/Bag 3 Disgracing Alderman Whitn 905ad3/Custom_Tile a0392b.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: a0392b +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.6765 + posY: 1.61565232 + posZ: 3.86000013 + rotX: 359.983124 + rotY: 1.570283e-05 + rotZ: 359.920074 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag The London set 0f96ac/Bag 3 Disgracing Alderman Whitn 905ad3/Custom_Tile b772b0.yaml new file mode 100644 index 000000000..ee68b898f --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The London set 0f96ac/Bag 3 Disgracing Alderman Whitn 905ad3/Custom_Tile b772b0.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: b772b0 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.4017 + posY: 1.61105311 + posZ: 3.74880075 + rotX: 0.0445767157 + rotY: 45.0093536 + rotZ: 359.9316 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag The London set 0f96ac/Bag 3 Disgracing Alderman Whitn 905ad3/Custom_Tile Disgracing Alderman Whitney c2736e.ttslua new file mode 100644 index 000000000..83121ac95 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The London set 0f96ac/Bag 3 Disgracing Alderman Whitn 905ad3/Custom_Tile Disgracing Alderman Whitney c2736e.ttslua @@ -0,0 +1,21 @@ +name = 'London Set 3' + +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 791837/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 791837/Custom_Model_Bag The London set 0f96ac/Bag 3 Disgracing Alderman Whitn 905ad3/Custom_Tile Disgracing Alderman Whitney c2736e.yaml new file mode 100644 index 000000000..d763df06d --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The London set 0f96ac/Bag 3 Disgracing Alderman Whitn 905ad3/Custom_Tile Disgracing Alderman Whitney c2736e.yaml @@ -0,0 +1,42 @@ +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 +GMNotes: '' +GUID: c2736e +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Tile Disgracing Alderman Whitney c2736e.ttslua' +LuaScriptState: '' +Name: Custom_Tile +Nickname: Disgracing Alderman Whitney +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.719184 + posY: 1.58230746 + posZ: -14.8503094 + rotX: 359.919739 + rotY: 270.005249 + rotZ: 0.016830476 + scaleX: 2.2 + scaleY: 1.0 + scaleZ: 2.2 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag The London set 0f96ac/Bag 3 Disgracing Alderman Whitn 905ad3/Deck Agenda Deck 8ba9f5.yaml new file mode 100644 index 000000000..d43f2dc2d --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The London set 0f96ac/Bag 3 Disgracing Alderman Whitn 905ad3/Deck Agenda Deck 8ba9f5.yaml @@ -0,0 +1,215 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 269814 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2694': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/949597721086385616/40C0CABC1714C5035727026AFCE33FB395B075B0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949597721086383974/CD174DC425DCDE9B0C5B8A60F7E12BC54F36CEE8/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 4 + GMNotes: '' + GUID: d9a032 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Would You Please Leave? + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -7.299728 + posY: 1.34082878 + posZ: 74.91869 + rotX: 0.0191373322 + rotY: 269.9817 + rotZ: 0.01641033 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 269813 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2694': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/949597721086385616/40C0CABC1714C5035727026AFCE33FB395B075B0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949597721086383974/CD174DC425DCDE9B0C5B8A60F7E12BC54F36CEE8/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 3 + GMNotes: '' + GUID: 812f39 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Well I never! + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -7.364042 + posY: 1.4762063 + posZ: 74.77021 + rotX: 0.008849723 + rotY: 269.981567 + rotZ: 0.019303035 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 269812 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2694': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/949597721086385616/40C0CABC1714C5035727026AFCE33FB395B075B0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949597721086383974/CD174DC425DCDE9B0C5B8A60F7E12BC54F36CEE8/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 2 + GMNotes: '' + GUID: d15642 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: A Unwelcome Visitor + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -7.419939 + posY: 1.49862933 + posZ: 74.71696 + rotX: 0.0195750427 + rotY: 269.978516 + rotZ: 0.0170411654 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 269811 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2694': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/949597721086385616/40C0CABC1714C5035727026AFCE33FB395B075B0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949597721086383974/CD174DC425DCDE9B0C5B8A60F7E12BC54F36CEE8/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 1 + GMNotes: '' + GUID: f5342c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Crane Club + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -0.0278717279 + posY: 1.48786056 + posZ: 75.53151 + rotX: 0.0198857468 + rotY: 269.9706 + rotZ: 0.0191382989 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2698': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/949597721086385616/40C0CABC1714C5035727026AFCE33FB395B075B0/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949597721086383974/CD174DC425DCDE9B0C5B8A60F7E12BC54F36CEE8/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 269814 +- 269813 +- 269812 +- 269811 +Description: Disgracing Alderman Whitney +GMNotes: '' +GUID: 8ba9f5 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Agenda Deck +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.72470021 + posY: 1.65513849 + posZ: 0.373299718 + rotX: 359.919739 + rotY: 269.974243 + rotZ: 0.0168736037 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag The London set 0f96ac/Bag 3 Disgracing Alderman Whitn 905ad3/Deck SetupResolution 976f2f.yaml new file mode 100644 index 000000000..f17796396 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The London set 0f96ac/Bag 3 Disgracing Alderman Whitn 905ad3/Deck SetupResolution 976f2f.yaml @@ -0,0 +1,301 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 336 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949597721086400107/928389C7E2C980E18CAA4776C8DAE9156E0DA5F4/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949597721086398069/79E19B382F20F2D6C8511CB89A9109EB0597F48A/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 011eb3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -13.6749048 + posY: 1.1835252 + posZ: 13.0030766 + rotX: 6.975168e-05 + rotY: 180.000244 + rotZ: 180.001434 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 335 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949597721086400107/928389C7E2C980E18CAA4776C8DAE9156E0DA5F4/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949597721086398069/79E19B382F20F2D6C8511CB89A9109EB0597F48A/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 17c517 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -14.3775282 + posY: 1.18116307 + posZ: 12.5332928 + rotX: 0.00403149333 + rotY: 179.999954 + rotZ: 179.992737 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 334 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949597721086400107/928389C7E2C980E18CAA4776C8DAE9156E0DA5F4/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949597721086398069/79E19B382F20F2D6C8511CB89A9109EB0597F48A/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 011eb3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -13.8915567 + posY: 1.18329179 + posZ: 12.3065939 + rotX: -0.0009376738 + rotY: 180.0 + rotZ: 179.999237 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 333 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949597721086400107/928389C7E2C980E18CAA4776C8DAE9156E0DA5F4/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949597721086398069/79E19B382F20F2D6C8511CB89A9109EB0597F48A/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 011eb3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -14.0774393 + posY: 1.19693589 + posZ: 12.7012568 + rotX: -0.0019226264 + rotY: 179.999985 + rotZ: 179.995987 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 332 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949597721086400107/928389C7E2C980E18CAA4776C8DAE9156E0DA5F4/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949597721086398069/79E19B382F20F2D6C8511CB89A9109EB0597F48A/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 921fa2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 25.0801163 + posY: 1.49364555 + posZ: 71.08616 + rotX: 0.0155741768 + rotY: 269.999847 + rotZ: 0.0135137327 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 331 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949597721086400107/928389C7E2C980E18CAA4776C8DAE9156E0DA5F4/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949597721086398069/79E19B382F20F2D6C8511CB89A9109EB0597F48A/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 011eb3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -10.1592894 + posY: 1.817214 + posZ: -0.252672583 + rotX: 359.940643 + rotY: 269.9939 + rotZ: 0.0234039575 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '3': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949597721086400107/928389C7E2C980E18CAA4776C8DAE9156E0DA5F4/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949597721086398069/79E19B382F20F2D6C8511CB89A9109EB0597F48A/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 336 +- 335 +- 334 +- 333 +- 332 +- 331 +Description: Disgracing Alderman Whitney +GMNotes: '' +GUID: 976f2f +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Setup/Resolution +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -10.1271009 + posY: 1.66816688 + posZ: -0.113599636 + rotX: 359.9201 + rotY: 270.008881 + rotZ: 0.01685499 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag The London set 0f96ac/Bag 3 Disgracing Alderman Whitn 905ad3/DeckCustom Encounter Deck 173db8.yaml new file mode 100644 index 000000000..51a480609 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The London set 0f96ac/Bag 3 Disgracing Alderman Whitn 905ad3/DeckCustom Encounter Deck 173db8.yaml @@ -0,0 +1,781 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 12120 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '121': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: e0f4c0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ancient Evils + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 115.309677 + posY: 1.40331125 + posZ: 1.5845021 + rotX: 359.987427 + rotY: 270.0 + rotZ: 359.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12120 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '121': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: 1921c5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ancient Evils + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 115.318665 + posY: 1.5414474 + posZ: 1.587292 + rotX: 359.989929 + rotY: 270.000031 + rotZ: 359.9876 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12120 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '121': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: 61e841 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ancient Evils + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 114.991905 + posY: 1.59937644 + posZ: 1.31244183 + rotX: 1.97711754 + rotY: 270.070251 + rotZ: 359.990356 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12122 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '121': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: '356046' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Obscuring Fog + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 114.345848 + posY: 1.40365446 + posZ: 1.09680057 + rotX: 359.987427 + rotY: 270.0 + rotZ: 359.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12122 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '121': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: 03a265 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Obscuring Fog + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 114.314957 + posY: 1.54512763 + posZ: 0.6048646 + rotX: 359.989929 + rotY: 270.0 + rotZ: 359.98764 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12121 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '121': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: b78c3b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Crypt Chill + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 114.196693 + posY: 1.5660888 + posZ: 0.6905602 + rotX: 0.678696752 + rotY: 270.054779 + rotZ: 1.15300965 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12121 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '121': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: fb311c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Crypt Chill + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 114.522324 + posY: 1.55249166 + posZ: 0.8631874 + rotX: 359.9873 + rotY: 270.023346 + rotZ: 359.9829 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3628 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Obstacle. + GMNotes: '' + GUID: 9449d7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Locked Door + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 99.5096054 + posY: 1.40344727 + posZ: 13.9449472 + rotX: 359.987427 + rotY: 269.999969 + rotZ: 359.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3628 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Obstacle. + GMNotes: '' + GUID: 1340ff + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Locked Door + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 99.57202 + posY: 1.54880774 + posZ: 13.6603928 + rotX: 359.990143 + rotY: 270.0007 + rotZ: 359.987 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12119 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '121': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: f1a34d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dissonant Voices + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 116.318008 + posY: 1.40297079 + posZ: 2.02551055 + rotX: 359.987427 + rotY: 270.046936 + rotZ: 359.984528 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12119 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '121': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: '260768' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dissonant Voices + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 116.206024 + posY: 1.54851818 + posZ: 1.69081855 + rotX: 0.453712761 + rotY: 270.0 + rotZ: 0.605071843 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12118 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '121': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: 27c05d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Frozen in Fear + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 116.299973 + posY: 1.569287 + posZ: 1.46156657 + rotX: 359.989929 + rotY: 270.000061 + rotZ: 359.987671 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12118 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '121': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: c40f57 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Frozen in Fear + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 116.363129 + posY: 1.55607748 + posZ: 1.91277838 + rotX: 359.809937 + rotY: 270.046265 + rotZ: 0.250917822 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12117 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '121': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: aa3d47 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Rotting Remains + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 116.843185 + posY: 1.54545975 + posZ: 1.48686087 + rotX: 359.989929 + rotY: 270.0 + rotZ: 359.98764 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12117 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '121': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: da8001 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Rotting Remains + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 116.950279 + posY: 1.5376091 + posZ: 1.28928447 + rotX: 358.786469 + rotY: 270.025024 + rotZ: 2.07151151 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12117 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '121': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: 18e09c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Rotting Remains + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 117.053131 + posY: 1.56189775 + posZ: 1.68414187 + rotX: 359.987427 + rotY: 270.047 + rotZ: 359.984528 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3608 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Cultist. Miskatonic. + GMNotes: '' + GUID: 491a2b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Peter Warren + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 12.8576927 + posY: 2.17888951 + posZ: 62.86248 + rotX: 0.0207454674 + rotY: 270.0016 + rotZ: 0.0170885585 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '121': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 12120 +- 12120 +- 12120 +- 12122 +- 12122 +- 12121 +- 12121 +- 3628 +- 3628 +- 12119 +- 12119 +- 12118 +- 12118 +- 12117 +- 12117 +- 12117 +- 3608 +Description: Disgracing Alderman Whitney +GMNotes: '' +GUID: 173db8 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: DeckCustom +Nickname: Encounter Deck +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.9276 + posY: 1.70242679 + posZ: 5.757101 + rotX: 359.919739 + rotY: 270.0002 + rotZ: 180.016815 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag The London set 0f96ac/Bag 3 Disgracing Alderman Whitn 905ad3/DeckCustom Healing deck v1 66f72a.yaml new file mode 100644 index 000000000..f04147432 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The London set 0f96ac/Bag 3 Disgracing Alderman Whitn 905ad3/DeckCustom Healing deck v1 66f72a.yaml @@ -0,0 +1,303 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 201 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: f4ee7f + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.43280738e-08 + posY: 1.04493046 + posZ: -8.510506e-08 + rotX: 2.42704459e-07 + rotY: 180.0 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 202 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: f4ee7f + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.43280738e-08 + posY: 1.04493046 + posZ: -8.510506e-08 + rotX: 2.42704459e-07 + rotY: 180.0 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 203 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: f4ee7f + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.43280738e-08 + posY: 1.04493046 + posZ: -8.510506e-08 + rotX: 2.42704459e-07 + rotY: 180.0 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 204 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: f4ee7f + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.43280738e-08 + posY: 1.04493046 + posZ: -8.510506e-08 + rotX: 2.42704459e-07 + rotY: 180.0 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 205 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: f4ee7f + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.43280738e-08 + posY: 1.04493046 + posZ: -8.510506e-08 + rotX: 2.42704459e-07 + rotY: 180.0 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 206 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: f4ee7f + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.43280738e-08 + posY: 1.04493046 + posZ: -8.510506e-08 + rotX: 2.42704459e-07 + rotY: 180.0 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 307 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949597721086400107/928389C7E2C980E18CAA4776C8DAE9156E0DA5F4/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949597721086398069/79E19B382F20F2D6C8511CB89A9109EB0597F48A/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: '391496' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -14.9983273 + posY: 1.187127 + posZ: 12.3567734 + rotX: 0.463611782 + rotY: 179.973785 + rotZ: 0.6918599 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949597535528318308/B1BF31EBC5D92EC3A51B6D3B56ABFB232D2636C5/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949597721086393134/AB39B59FE76C6E6E5C504BEEB9FEEF8788BC61F1/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '3': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949597721086400107/928389C7E2C980E18CAA4776C8DAE9156E0DA5F4/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949597721086398069/79E19B382F20F2D6C8511CB89A9109EB0597F48A/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 201 +- 202 +- 203 +- 204 +- 205 +- 206 +- 307 +Description: Disgracing Alderman Whitney +GMNotes: '' +GUID: 66f72a +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: DeckCustom +Nickname: Healing deck v1 +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -4.02390051 + posY: 1.6666013 + posZ: 14.5018024 + rotX: 359.919739 + rotY: 270.019775 + rotZ: 0.0168138668 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Nephew Calls 3ddd12.ttslua b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Nephew Calls 3ddd12.ttslua new file mode 100644 index 000000000..46067f58e --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Nephew Calls 3ddd12.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.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.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 791837/Custom_Model_Bag The Nephew Calls 3ddd12.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Nephew Calls 3ddd12.yaml new file mode 100644 index 000000000..03eed7213 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Nephew Calls 3ddd12.yaml @@ -0,0 +1,76 @@ +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 Nephew Calls 3ddd12/Deck Set Aside a8f47c.yaml' +- !include 'Custom_Model_Bag The Nephew Calls 3ddd12/Deck Encounter Deck 4ed173.yaml' +- !include 'Custom_Model_Bag The Nephew Calls 3ddd12/Deck Agenda Deck 2e8f0a.yaml' +- !include 'Custom_Model_Bag The Nephew Calls 3ddd12/Deck Act deck 3c18ed.yaml' +- !include 'Custom_Model_Bag The Nephew Calls 3ddd12/Card db443b.yaml' +- !include 'Custom_Model_Bag The Nephew Calls 3ddd12/Custom_Tile The Nephew Calls + 54707a.yaml' +- !include 'Custom_Model_Bag The Nephew Calls 3ddd12/Deck a9c518.yaml' +- !include 'Custom_Model_Bag The Nephew Calls 3ddd12/Card 7b5228.yaml' +- !include 'Custom_Model_Bag The Nephew Calls 3ddd12/Card 9e9bdd.yaml' +- !include 'Custom_Model_Bag The Nephew Calls 3ddd12/Custom_Tile 5ca1a9.yaml' +- !include 'Custom_Model_Bag The Nephew Calls 3ddd12/Custom_Tile b874a8.yaml' +- !include 'Custom_Model_Bag The Nephew Calls 3ddd12/Card e67855.yaml' +- !include 'Custom_Model_Bag The Nephew Calls 3ddd12/Custom_Tile 4369ca.yaml' +- !include 'Custom_Model_Bag The Nephew Calls 3ddd12/Custom_Tile 7234af.yaml' +- !include 'Custom_Model_Bag The Nephew Calls 3ddd12/Card a41e13.yaml' +- !include 'Custom_Model_Bag The Nephew Calls 3ddd12/Card 4fa9f9.yaml' +CustomMesh: + CastShadows: true + ColliderURL: '' + Convex: true + DiffuseURL: http://cloud-3.steamusercontent.com/ugc/798737729142940439/EE68DD668C18F8F8C61B0F2BABA6D548B17A6EA7/ + MaterialIndex: 3 + MeshURL: https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj + NormalURL: '' + TypeIndex: 6 +Description: '' +GMNotes: '' +GUID: 3ddd12 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Model_Bag The Nephew Calls 3ddd12.ttslua' +LuaScriptState: '{"ml":{"2e8f0a":{"lock":false,"pos":{"x":-2.7247,"y":1.6566,"z":0.3733},"rot":{"x":359.9197,"y":269.9843,"z":0.0169}},"3c18ed":{"lock":false,"pos":{"x":-2.6885,"y":1.655,"z":-5.0482},"rot":{"x":359.9197,"y":269.9865,"z":0.0169}},"4369ca":{"lock":false,"pos":{"x":-20.9201,"y":1.6118,"z":3.8653},"rot":{"x":359.9747,"y":210,"z":0.0776}},"4ed173":{"lock":false,"pos":{"x":-3.9276,"y":1.7237,"z":5.7571},"rot":{"x":359.9197,"y":269.9888,"z":180.0168}},"4fa9f9":{"lock":false,"pos":{"x":-50.9244,"y":1.7266,"z":8.1784},"rot":{"x":359.9201,"y":269.9998,"z":0.0169}},"54707a":{"lock":false,"pos":{"x":-4.0348,"y":1.5826,"z":-15.3238},"rot":{"x":359.9197,"y":270.0002,"z":0.0168}},"5ca1a9":{"lock":false,"pos":{"x":-17.12,"y":1.6065,"z":3.86},"rot":{"x":359.9831,"y":359.9848,"z":359.9201}},"7234af":{"lock":false,"pos":{"x":-20.5116,"y":1.6101,"z":-0.1741},"rot":{"x":359.9201,"y":269.9943,"z":0.0169}},"7b5228":{"lock":false,"pos":{"x":-17.12,"y":1.6821,"z":7.57},"rot":{"x":359.9201,"y":270,"z":180.0169}},"9e9bdd":{"lock":false,"pos":{"x":-17.12,"y":1.6799,"z":-0.03},"rot":{"x":359.9201,"y":269.9998,"z":180.0169}},"a41e13":{"lock":false,"pos":{"x":-23.6765,"y":1.689,"z":-0.03},"rot":{"x":359.9201,"y":269.9998,"z":180.0169}},"a8f47c":{"lock":false,"pos":{"x":1.6965,"y":1.6368,"z":14.2789},"rot":{"x":359.9552,"y":224.9986,"z":0.0687}},"a9c518":{"lock":false,"pos":{"x":-11.5089,"y":1.6766,"z":1.4197},"rot":{"x":359.9201,"y":269.999,"z":0.0169}},"b874a8":{"lock":false,"pos":{"x":-17.1199,"y":1.6042,"z":-3.83},"rot":{"x":0.0169,"y":179.9998,"z":0.0799}},"db443b":{"lock":false,"pos":{"x":-3.956,"y":1.6556,"z":-10.4412},"rot":{"x":359.9197,"y":269.9998,"z":0.0168}},"e67855":{"lock":false,"pos":{"x":-17.1201,"y":1.6776,"z":-7.7},"rot":{"x":359.9201,"y":269.9982,"z":180.0169}}}}' +MaterialIndex: -1 +MeshIndex: -1 +Name: Custom_Model_Bag +Nickname: The Nephew Calls +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 40.8594627 + posY: 8.675957 + posZ: -50.91717 + rotX: 359.983276 + rotY: 269.999969 + rotZ: 0.003535346 + scaleX: 2.21 + scaleY: 0.2 + scaleZ: 2.46 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Nephew Calls 3ddd12/Card 4fa9f9.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Nephew Calls 3ddd12/Card 4fa9f9.yaml new file mode 100644 index 000000000..2853a446d --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Nephew Calls 3ddd12/Card 4fa9f9.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 26126 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '261': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359959635/83C92E33D82CEA787A3A176767BF178ECFB91A64/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359960093/7FCD9609B234430CFE6B07F24C299276A187F87E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 4fa9f9 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -50.9244 + posY: 1.72662532 + posZ: 8.178399 + rotX: 359.9201 + rotY: 269.999756 + rotZ: 0.01687676 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Nephew Calls 3ddd12/Card 7b5228.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Nephew Calls 3ddd12/Card 7b5228.yaml new file mode 100644 index 000000000..be651395a --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Nephew Calls 3ddd12/Card 7b5228.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 26130 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '261': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359959635/83C92E33D82CEA787A3A176767BF178ECFB91A64/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359960093/7FCD9609B234430CFE6B07F24C299276A187F87E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 7b5228 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -17.12 + posY: 1.68213856 + posZ: 7.57000065 + 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 The Side Missions 791837/Custom_Model_Bag The Nephew Calls 3ddd12/Card 9e9bdd.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Nephew Calls 3ddd12/Card 9e9bdd.yaml new file mode 100644 index 000000000..9b1a1e61c --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Nephew Calls 3ddd12/Card 9e9bdd.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 26129 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '261': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359959635/83C92E33D82CEA787A3A176767BF178ECFB91A64/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359960093/7FCD9609B234430CFE6B07F24C299276A187F87E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 9e9bdd +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -17.1199989 + posY: 1.67990065 + posZ: -0.02999991 + 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 The Side Missions 791837/Custom_Model_Bag The Nephew Calls 3ddd12/Card a41e13.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Nephew Calls 3ddd12/Card a41e13.yaml new file mode 100644 index 000000000..4bfdb72eb --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Nephew Calls 3ddd12/Card a41e13.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 26131 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '261': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359959635/83C92E33D82CEA787A3A176767BF178ECFB91A64/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359960093/7FCD9609B234430CFE6B07F24C299276A187F87E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: a41e13 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -23.6765 + posY: 1.68904328 + posZ: -0.0299995616 + rotX: 359.9201 + rotY: 269.9998 + rotZ: 180.016861 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Nephew Calls 3ddd12/Card db443b.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Nephew Calls 3ddd12/Card db443b.yaml new file mode 100644 index 000000000..8c64b4856 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Nephew Calls 3ddd12/Card db443b.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 26126 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '261': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359959635/83C92E33D82CEA787A3A176767BF178ECFB91A64/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359960093/7FCD9609B234430CFE6B07F24C299276A187F87E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: db443b +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.95600033 + posY: 1.65564811 + posZ: -10.4412012 + rotX: 359.919739 + rotY: 269.999756 + rotZ: 0.0168415383 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Nephew Calls 3ddd12/Card e67855.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Nephew Calls 3ddd12/Card e67855.yaml new file mode 100644 index 000000000..d67415b4b --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Nephew Calls 3ddd12/Card e67855.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 26128 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '261': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359959635/83C92E33D82CEA787A3A176767BF178ECFB91A64/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359960093/7FCD9609B234430CFE6B07F24C299276A187F87E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: e67855 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -17.1201 + posY: 1.67764235 + posZ: -7.700001 + rotX: 359.9201 + rotY: 269.99823 + rotZ: 180.016861 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Nephew Calls 3ddd12/Custom_Tile 4369ca.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Nephew Calls 3ddd12/Custom_Tile 4369ca.yaml new file mode 100644 index 000000000..bd359b1a6 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Nephew Calls 3ddd12/Custom_Tile 4369ca.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 4369ca +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.9201 + posY: 1.61181021 + posZ: 3.86530042 + rotX: 359.97467 + rotY: 210.000015 + rotZ: 0.07763078 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Nephew Calls 3ddd12/Custom_Tile 5ca1a9.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Nephew Calls 3ddd12/Custom_Tile 5ca1a9.yaml new file mode 100644 index 000000000..11f6100f8 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Nephew Calls 3ddd12/Custom_Tile 5ca1a9.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 5ca1a9 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.60650992 + posZ: 3.86 + rotX: 359.9831 + rotY: 359.9848 + rotZ: 359.920074 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Nephew Calls 3ddd12/Custom_Tile 7234af.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Nephew Calls 3ddd12/Custom_Tile 7234af.yaml new file mode 100644 index 000000000..0f59f62a5 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Nephew Calls 3ddd12/Custom_Tile 7234af.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 7234af +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.5116 + posY: 1.610051 + posZ: -0.174100235 + rotX: 359.9201 + rotY: 269.994324 + rotZ: 0.01690843 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Nephew Calls 3ddd12/Custom_Tile b874a8.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Nephew Calls 3ddd12/Custom_Tile b874a8.yaml new file mode 100644 index 000000000..aa320dcbe --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Nephew Calls 3ddd12/Custom_Tile b874a8.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: b874a8 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.1198978 + posY: 1.604245 + posZ: -3.8300004 + rotX: 0.0168722 + rotY: 179.999832 + rotZ: 0.07994582 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Nephew Calls 3ddd12/Custom_Tile The Nephew Calls 54707a.ttslua b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Nephew Calls 3ddd12/Custom_Tile The Nephew Calls 54707a.ttslua new file mode 100644 index 000000000..8849d7feb --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Nephew Calls 3ddd12/Custom_Tile The Nephew Calls 54707a.ttslua @@ -0,0 +1,21 @@ +name = 'The Nephew Calls' + +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 The Side Missions 791837/Custom_Model_Bag The Nephew Calls 3ddd12/Custom_Tile The Nephew Calls 54707a.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Nephew Calls 3ddd12/Custom_Tile The Nephew Calls 54707a.yaml new file mode 100644 index 000000000..faf6322fb --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Nephew Calls 3ddd12/Custom_Tile The Nephew Calls 54707a.yaml @@ -0,0 +1,42 @@ +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 +GMNotes: '' +GUID: 54707a +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Tile The Nephew Calls 54707a.ttslua' +LuaScriptState: '' +Name: Custom_Tile +Nickname: The Nephew Calls +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -4.03480053 + posY: 1.58261025 + posZ: -15.323801 + rotX: 359.919739 + rotY: 270.000183 + rotZ: 0.0168376323 + scaleX: 2.2 + scaleY: 1.0 + scaleZ: 2.2 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Nephew Calls 3ddd12/Deck a9c518.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Nephew Calls 3ddd12/Deck a9c518.yaml new file mode 100644 index 000000000..3ed42f282 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Nephew Calls 3ddd12/Deck a9c518.yaml @@ -0,0 +1,129 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 26125 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '261': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359959635/83C92E33D82CEA787A3A176767BF178ECFB91A64/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359960093/7FCD9609B234430CFE6B07F24C299276A187F87E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: b11b23 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -11.508873 + posY: 1.66939235 + posZ: 1.4197042 + rotX: 359.922821 + rotY: 269.999054 + rotZ: -0.00209625321 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 26124 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '261': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359959635/83C92E33D82CEA787A3A176767BF178ECFB91A64/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359960093/7FCD9609B234430CFE6B07F24C299276A187F87E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: '714913' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -11.6949892 + posY: 1.81436312 + posZ: 0.9435173 + rotX: 359.964264 + rotY: 269.9998 + rotZ: 0.0248958357 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '261': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359959635/83C92E33D82CEA787A3A176767BF178ECFB91A64/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359960093/7FCD9609B234430CFE6B07F24C299276A187F87E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 26125 +- 26124 +Description: '' +GMNotes: '' +GUID: a9c518 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -11.5088587 + posY: 1.67655635 + posZ: 1.41967821 + rotX: 359.9201 + rotY: 269.999023 + rotZ: 0.0168772563 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Nephew Calls 3ddd12/Deck Act deck 3c18ed.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Nephew Calls 3ddd12/Deck Act deck 3c18ed.yaml new file mode 100644 index 000000000..10b1f5883 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Nephew Calls 3ddd12/Deck Act deck 3c18ed.yaml @@ -0,0 +1,169 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 26202 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '261': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359960755/8B43F182603445BF44E7B649A485E9B3C9303F04/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359961382/DCF88C48D38C8DAF34F256E2B0DA6BB35C48583A/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 06645d + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 6.797448 + posY: 1.03165138 + posZ: 1.98015487 + rotX: 0.00259761023 + rotY: 179.998825 + rotZ: 0.000376772834 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 26201 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '261': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359960755/8B43F182603445BF44E7B649A485E9B3C9303F04/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359961382/DCF88C48D38C8DAF34F256E2B0DA6BB35C48583A/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: ec0834 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 6.9410944 + posY: 1.17017579 + posZ: 2.12878513 + rotX: 0.0129119987 + rotY: 179.9987 + rotZ: 0.0055145584 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 26200 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '261': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359960755/8B43F182603445BF44E7B649A485E9B3C9303F04/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359961382/DCF88C48D38C8DAF34F256E2B0DA6BB35C48583A/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: d45786 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 6.93159771 + posY: 1.18770266 + posZ: 2.15170574 + rotX: 0.00177466485 + rotY: 179.998734 + rotZ: 0.000681012345 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '262': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359960755/8B43F182603445BF44E7B649A485E9B3C9303F04/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359961382/DCF88C48D38C8DAF34F256E2B0DA6BB35C48583A/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 26202 +- 26201 +- 26200 +Description: the Nephew Calls +GMNotes: '' +GUID: 3c18ed +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Act deck +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.6885 + posY: 1.65499747 + posZ: -5.048201 + rotX: 359.919739 + rotY: 269.9865 + rotZ: 0.0168563947 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Nephew Calls 3ddd12/Deck Agenda Deck 2e8f0a.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Nephew Calls 3ddd12/Deck Agenda Deck 2e8f0a.yaml new file mode 100644 index 000000000..cad03a276 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Nephew Calls 3ddd12/Deck Agenda Deck 2e8f0a.yaml @@ -0,0 +1,169 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 26305 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '261': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359960755/8B43F182603445BF44E7B649A485E9B3C9303F04/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359961382/DCF88C48D38C8DAF34F256E2B0DA6BB35C48583A/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 06645d + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.148086 + posY: 1.03156173 + posZ: 2.28252316 + rotX: 0.006741067 + rotY: 179.999634 + rotZ: 0.00103691767 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 26304 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '261': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359960755/8B43F182603445BF44E7B649A485E9B3C9303F04/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359961382/DCF88C48D38C8DAF34F256E2B0DA6BB35C48583A/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 6f217a + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.34003615 + posY: 1.16971207 + posZ: 2.24175334 + rotX: -0.000825956638 + rotY: 179.998962 + rotZ: 0.0114715789 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 26303 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '261': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359960755/8B43F182603445BF44E7B649A485E9B3C9303F04/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359961382/DCF88C48D38C8DAF34F256E2B0DA6BB35C48583A/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 06645d + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.02456617 + posY: 1.1877321 + posZ: 2.40471029 + rotX: 0.005611108 + rotY: 180.014282 + rotZ: 0.00452644425 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '263': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359960755/8B43F182603445BF44E7B649A485E9B3C9303F04/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359961382/DCF88C48D38C8DAF34F256E2B0DA6BB35C48583A/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 26305 +- 26304 +- 26303 +Description: the Nephew Calls +GMNotes: '' +GUID: 2e8f0a +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Agenda Deck +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.7247 + posY: 1.65664124 + posZ: 0.3733001 + rotX: 359.919739 + rotY: 269.9843 + rotZ: 0.0168594532 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Nephew Calls 3ddd12/Deck Encounter Deck 4ed173.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Nephew Calls 3ddd12/Deck Encounter Deck 4ed173.yaml new file mode 100644 index 000000000..8ac436eb4 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Nephew Calls 3ddd12/Deck Encounter Deck 4ed173.yaml @@ -0,0 +1,925 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 26122 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '261': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359959635/83C92E33D82CEA787A3A176767BF178ECFB91A64/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359960093/7FCD9609B234430CFE6B07F24C299276A187F87E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: a41e13 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -7.03034735 + posY: 1.281492 + posZ: -2.20699334 + rotX: 0.00630145054 + rotY: 180.001434 + rotZ: 180.013229 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 26100 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '261': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359959635/83C92E33D82CEA787A3A176767BF178ECFB91A64/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359960093/7FCD9609B234430CFE6B07F24C299276A187F87E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 9eec39 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.55476618 + posY: 3.05606127 + posZ: -14.3826523 + rotX: 0.0 + rotY: 180.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 26101 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '261': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359959635/83C92E33D82CEA787A3A176767BF178ECFB91A64/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359960093/7FCD9609B234430CFE6B07F24C299276A187F87E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 10a7af + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.228629 + posY: 3.09953952 + posZ: -14.3826523 + rotX: 0.0 + rotY: 180.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 26102 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '261': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359959635/83C92E33D82CEA787A3A176767BF178ECFB91A64/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359960093/7FCD9609B234430CFE6B07F24C299276A187F87E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 322e08 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.902492 + posY: 3.14301753 + posZ: -14.3826523 + rotX: 0.0 + rotY: 180.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 26103 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '261': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359959635/83C92E33D82CEA787A3A176767BF178ECFB91A64/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359960093/7FCD9609B234430CFE6B07F24C299276A187F87E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: dff5bb + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.57635474 + posY: 3.186496 + posZ: -14.3826523 + rotX: 0.0 + rotY: 180.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 26104 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '261': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359959635/83C92E33D82CEA787A3A176767BF178ECFB91A64/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359960093/7FCD9609B234430CFE6B07F24C299276A187F87E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 2ea87f + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.250218 + posY: 3.22997427 + posZ: -14.3826523 + rotX: 0.0 + rotY: 180.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 26105 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '261': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359959635/83C92E33D82CEA787A3A176767BF178ECFB91A64/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359960093/7FCD9609B234430CFE6B07F24C299276A187F87E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: ea7f95 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -1.92408085 + posY: 3.27345276 + posZ: -14.3826523 + rotX: 0.0 + rotY: 180.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 26106 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '261': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359959635/83C92E33D82CEA787A3A176767BF178ECFB91A64/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359960093/7FCD9609B234430CFE6B07F24C299276A187F87E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 450c70 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -1.59794378 + posY: 3.31693053 + posZ: -14.3826523 + rotX: 0.0 + rotY: 180.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 26107 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '261': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359959635/83C92E33D82CEA787A3A176767BF178ECFB91A64/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359960093/7FCD9609B234430CFE6B07F24C299276A187F87E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: bc9758 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -1.27180672 + posY: 3.360409 + posZ: -14.3826523 + rotX: 0.0 + rotY: 180.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 26108 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '261': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359959635/83C92E33D82CEA787A3A176767BF178ECFB91A64/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359960093/7FCD9609B234430CFE6B07F24C299276A187F87E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 525c1c + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -0.945669651 + posY: 3.403887 + posZ: -14.3826523 + rotX: 0.0 + rotY: 180.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 26109 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '261': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359959635/83C92E33D82CEA787A3A176767BF178ECFB91A64/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359960093/7FCD9609B234430CFE6B07F24C299276A187F87E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: '820770' + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -0.6195325 + posY: 3.44736576 + posZ: -14.3826523 + rotX: 0.0 + rotY: 180.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 26110 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '261': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359959635/83C92E33D82CEA787A3A176767BF178ECFB91A64/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359960093/7FCD9609B234430CFE6B07F24C299276A187F87E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: ff614b + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -0.29339546 + posY: 3.49084377 + posZ: -14.3826523 + rotX: 0.0 + rotY: 180.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 26111 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '261': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359959635/83C92E33D82CEA787A3A176767BF178ECFB91A64/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359960093/7FCD9609B234430CFE6B07F24C299276A187F87E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 44771e + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.0327416621 + posY: 3.53432226 + posZ: -14.3826523 + rotX: 0.0 + rotY: 180.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 26112 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '261': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359959635/83C92E33D82CEA787A3A176767BF178ECFB91A64/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359960093/7FCD9609B234430CFE6B07F24C299276A187F87E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 94b9a5 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.3588788 + posY: 3.57780027 + posZ: -14.3826523 + rotX: 0.0 + rotY: 180.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 26113 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '261': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359959635/83C92E33D82CEA787A3A176767BF178ECFB91A64/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359960093/7FCD9609B234430CFE6B07F24C299276A187F87E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 21cb1f + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.685015857 + posY: 3.62127876 + posZ: -14.3826523 + rotX: 0.0 + rotY: 180.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 26116 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '261': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359959635/83C92E33D82CEA787A3A176767BF178ECFB91A64/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359960093/7FCD9609B234430CFE6B07F24C299276A187F87E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 5ddfbb + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 1.663427 + posY: 3.75171351 + posZ: -14.3826523 + rotX: 0.0 + rotY: 180.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 26117 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '261': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359959635/83C92E33D82CEA787A3A176767BF178ECFB91A64/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359960093/7FCD9609B234430CFE6B07F24C299276A187F87E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 60b9d1 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 1.98956406 + posY: 3.79519176 + posZ: -14.3826523 + rotX: 0.0 + rotY: 180.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 26118 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '261': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359959635/83C92E33D82CEA787A3A176767BF178ECFB91A64/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359960093/7FCD9609B234430CFE6B07F24C299276A187F87E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 01468c + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.31570125 + posY: 3.83867 + posZ: -14.3826523 + rotX: 0.0 + rotY: 180.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 26119 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '261': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359959635/83C92E33D82CEA787A3A176767BF178ECFB91A64/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359960093/7FCD9609B234430CFE6B07F24C299276A187F87E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: '164494' + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.64183831 + posY: 3.88214827 + posZ: -14.3826523 + rotX: 0.0 + rotY: 180.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 26120 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '261': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359959635/83C92E33D82CEA787A3A176767BF178ECFB91A64/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359960093/7FCD9609B234430CFE6B07F24C299276A187F87E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 63c4ec + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.96797562 + posY: 3.92562652 + posZ: -14.3826523 + rotX: 0.0 + rotY: 180.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 26121 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '261': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359959635/83C92E33D82CEA787A3A176767BF178ECFB91A64/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359960093/7FCD9609B234430CFE6B07F24C299276A187F87E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: b76479 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.29411244 + posY: 3.96910453 + posZ: -14.3826523 + rotX: 0.0 + rotY: 180.0 + rotZ: 0.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '261': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359959635/83C92E33D82CEA787A3A176767BF178ECFB91A64/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359960093/7FCD9609B234430CFE6B07F24C299276A187F87E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 26122 +- 26100 +- 26101 +- 26102 +- 26103 +- 26104 +- 26105 +- 26106 +- 26107 +- 26108 +- 26109 +- 26110 +- 26111 +- 26112 +- 26113 +- 26116 +- 26117 +- 26118 +- 26119 +- 26120 +- 26121 +Description: the Nephew Calls +GMNotes: '' +GUID: 4ed173 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Encounter Deck +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.9276 + posY: 1.72374463 + posZ: 5.75710058 + rotX: 359.919739 + rotY: 269.98877 + rotZ: 180.016846 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Nephew Calls 3ddd12/Deck Set Aside a8f47c.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Nephew Calls 3ddd12/Deck Set Aside a8f47c.yaml new file mode 100644 index 000000000..dee5f398e --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Nephew Calls 3ddd12/Deck Set Aside a8f47c.yaml @@ -0,0 +1,379 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 26115 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '261': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359959635/83C92E33D82CEA787A3A176767BF178ECFB91A64/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359960093/7FCD9609B234430CFE6B07F24C299276A187F87E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 19a0bd + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -4.97925568 + posY: 1.03219986 + posZ: -2.35257983 + rotX: 359.985535 + rotY: 180.337158 + rotZ: 0.0238076337 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 26123 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '261': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359959635/83C92E33D82CEA787A3A176767BF178ECFB91A64/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359960093/7FCD9609B234430CFE6B07F24C299276A187F87E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: a41e13 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -4.81965 + posY: 1.21284688 + posZ: -2.38723636 + rotX: 0.004504342 + rotY: 179.987854 + rotZ: 2.373913 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 26114 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '261': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359959635/83C92E33D82CEA787A3A176767BF178ECFB91A64/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359960093/7FCD9609B234430CFE6B07F24C299276A187F87E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: b5fee6 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -4.302571 + posY: 1.187581 + posZ: -2.60671878 + rotX: 359.989136 + rotY: 180.008133 + rotZ: 0.0496306047 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 26134 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '261': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359959635/83C92E33D82CEA787A3A176767BF178ECFB91A64/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359960093/7FCD9609B234430CFE6B07F24C299276A187F87E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 6eae64 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -6.07291365 + posY: 1.49320018 + posZ: -2.65217233 + rotX: 0.0485785678 + rotY: 180.0047 + rotZ: 179.952484 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 26133 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '261': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359959635/83C92E33D82CEA787A3A176767BF178ECFB91A64/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359960093/7FCD9609B234430CFE6B07F24C299276A187F87E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: '680101' + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -5.84362 + posY: 1.23463142 + posZ: -2.37457752 + rotX: 0.06489081 + rotY: 180.0011 + rotZ: 179.997223 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 26135 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '261': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359959635/83C92E33D82CEA787A3A176767BF178ECFB91A64/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359960093/7FCD9609B234430CFE6B07F24C299276A187F87E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: a91e9a + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -5.62247 + posY: 1.28593421 + posZ: -3.02608967 + rotX: 0.06487095 + rotY: 180.003235 + rotZ: 179.997208 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 26127 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '261': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359959635/83C92E33D82CEA787A3A176767BF178ECFB91A64/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359960093/7FCD9609B234430CFE6B07F24C299276A187F87E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 1054a6 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -5.984119 + posY: 1.34766 + posZ: -2.21767449 + rotX: 0.0614932664 + rotY: 179.990753 + rotZ: 179.95697 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 26132 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '261': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359959635/83C92E33D82CEA787A3A176767BF178ECFB91A64/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359960093/7FCD9609B234430CFE6B07F24C299276A187F87E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: a41e13 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -5.30445242 + posY: 1.18277 + posZ: -2.03015852 + rotX: 0.0260440428 + rotY: 180.001877 + rotZ: 180.045212 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '261': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359959635/83C92E33D82CEA787A3A176767BF178ECFB91A64/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359960093/7FCD9609B234430CFE6B07F24C299276A187F87E/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 26115 +- 26123 +- 26114 +- 26134 +- 26133 +- 26135 +- 26127 +- 26132 +Description: the Nephew Calls +GMNotes: '' +GUID: a8f47c +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Set Aside +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 1.6965003 + posY: 1.636754 + posZ: 14.2789011 + rotX: 359.95517 + rotY: 224.998566 + rotZ: 0.06865362 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Outsider 3c175c.ttslua b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Outsider 3c175c.ttslua new file mode 100644 index 000000000..46067f58e --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Outsider 3c175c.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.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.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 791837/Custom_Model_Bag The Outsider 3c175c.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Outsider 3c175c.yaml new file mode 100644 index 000000000..7d9c15da1 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Outsider 3c175c.yaml @@ -0,0 +1,63 @@ +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 Outsider 3c175c/Bag Part 1 526ff9.yaml' +- !include 'Custom_Model_Bag The Outsider 3c175c/Bag Part 2 5b3ac7.yaml' +- !include 'Custom_Model_Bag The Outsider 3c175c/Bag Part 3 d166f2.yaml' +- !include 'Custom_Model_Bag The Outsider 3c175c/Custom_Tile The Outsider d5b06c.yaml' +CustomMesh: + CastShadows: true + ColliderURL: '' + Convex: true + DiffuseURL: http://cloud-3.steamusercontent.com/ugc/798737729142944372/7F67F8FDAD99C9C2A6A6A5E98C548681117D092C/ + MaterialIndex: 3 + MeshURL: https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj + NormalURL: '' + TypeIndex: 6 +Description: '' +GMNotes: '' +GUID: 3c175c +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Model_Bag The Outsider 3c175c.ttslua' +LuaScriptState: '{"ml":{"526ff9":{"lock":false,"pos":{"x":9.7361,"y":1.2851,"z":7.604},"rot":{"x":0.0799,"y":89.999,"z":359.9831}},"5b3ac7":{"lock":false,"pos":{"x":9.9267,"y":1.2833,"z":1.7477},"rot":{"x":0.0799,"y":89.9971,"z":359.9831}},"d166f2":{"lock":false,"pos":{"x":9.8646,"y":1.2814,"z":-4.5878},"rot":{"x":0.0799,"y":89.9959,"z":359.9831}},"d5b06c":{"lock":false,"pos":{"x":-4.3545,"y":1.5833,"z":-14.5586},"rot":{"x":359.9197,"y":270.0016,"z":0.0168}}}}' +MaterialIndex: -1 +MeshIndex: -1 +Name: Custom_Model_Bag +Nickname: The Outsider +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 34.98637 + posY: 8.681304 + posZ: -60.5672722 + rotX: 359.983246 + rotY: 270.0 + rotZ: 0.00353657571 + scaleX: 2.21 + scaleY: 0.2 + scaleZ: 2.46 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Outsider 3c175c/Bag Part 1 526ff9.ttslua b/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/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 791837/Custom_Model_Bag The Outsider 3c175c/Bag Part 1 526ff9.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Outsider 3c175c/Bag Part 1 526ff9.yaml new file mode 100644 index 000000000..e92b7d5ab --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Outsider 3c175c/Bag Part 1 526ff9.yaml @@ -0,0 +1,46 @@ +Autoraise: true +ColorDiffuse: + b: 0.2420935 + g: 0.3554007 + r: 0.299378932 +ContainedObjects: +- !include 'Bag Part 1 526ff9/Deck Set Aside c7985e.yaml' +- !include 'Bag Part 1 526ff9/Deck Encounter deck 7778b2.yaml' +- !include 'Bag Part 1 526ff9/Deck Agenda 3ac9dc.yaml' +- !include 'Bag Part 1 526ff9/Deck Act deck 68cf11.yaml' +- !include 'Bag Part 1 526ff9/Card 74c0a6.yaml' +- !include 'Bag Part 1 526ff9/Deck bfa819.yaml' +- !include 'Bag Part 1 526ff9/Card 1bf221.yaml' +- !include 'Bag Part 1 526ff9/Card 66bd6a.yaml' +- !include 'Bag Part 1 526ff9/Custom_Tile 7234af.yaml' +- !include 'Bag Part 1 526ff9/Card 8bf28c.yaml' +- !include 'Bag Part 1 526ff9/Card 47720a.yaml' +Description: The Outsider +GMNotes: '' +GUID: 526ff9 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Bag Part 1 526ff9.ttslua' +LuaScriptState: '{"ml":{"1bf221":{"lock":false,"pos":{"x":-11.0752,"y":1.6688,"z":0.4465},"rot":{"x":359.9201,"y":269.9987,"z":0.0169}},"3ac9dc":{"lock":false,"pos":{"x":-2.7247,"y":1.6566,"z":0.3733},"rot":{"x":359.9197,"y":269.9896,"z":0.0169}},"47720a":{"lock":false,"pos":{"x":-50.9854,"y":1.7267,"z":8.1774},"rot":{"x":359.9201,"y":270.0225,"z":0.0168}},"66bd6a":{"lock":false,"pos":{"x":-17.12,"y":1.6771,"z":-0.03},"rot":{"x":359.9201,"y":270.0303,"z":0.0168}},"68cf11":{"lock":false,"pos":{"x":-2.6885,"y":1.655,"z":-5.0485},"rot":{"x":359.9197,"y":269.9871,"z":0.0169}},"7234af":{"lock":false,"pos":{"x":-20.3105,"y":1.6098,"z":0.0068},"rot":{"x":359.9201,"y":269.9943,"z":0.0169}},"74c0a6":{"lock":false,"pos":{"x":-3.956,"y":1.6556,"z":-10.4412},"rot":{"x":359.9197,"y":270.0225,"z":0.0168}},"7778b2":{"lock":false,"pos":{"x":-3.9276,"y":1.7024,"z":5.7571},"rot":{"x":359.9197,"y":269.9848,"z":180.0168}},"8bf28c":{"lock":false,"pos":{"x":-23.6765,"y":1.689,"z":-0.03},"rot":{"x":359.9201,"y":270.0002,"z":180.0169}},"bfa819":{"lock":false,"pos":{"x":-12.6228,"y":1.6843,"z":7.6789},"rot":{"x":359.9201,"y":270.0172,"z":180.0168}},"c7985e":{"lock":false,"pos":{"x":1.6965,"y":1.6368,"z":14.2788},"rot":{"x":359.9552,"y":224.998,"z":0.0687}}}}' +MaterialIndex: -1 +MeshIndex: -1 +Name: Bag +Nickname: Part 1 +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 9.73613 + posY: 1.28514266 + posZ: 7.60399961 + rotX: 0.07994035 + rotY: 89.999 + rotZ: 359.9831 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Outsider 3c175c/Bag Part 1 526ff9/Card 1bf221.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Outsider 3c175c/Bag Part 1 526ff9/Card 1bf221.yaml new file mode 100644 index 000000000..cd327d3e7 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Outsider 3c175c/Bag Part 1 526ff9/Card 1bf221.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 208 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359987171/5B8E62D3E35AB18D51DB409507BC7B1A3682FF4E/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359988993/6A0F93A4E591541DB289AF42DA881D5B7C28FA88/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 1bf221 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -11.0751982 + posY: 1.668789 + posZ: 0.446483821 + rotX: 359.9201 + rotY: 269.998657 + rotZ: 0.0168778077 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Outsider 3c175c/Bag Part 1 526ff9/Card 47720a.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Outsider 3c175c/Bag Part 1 526ff9/Card 47720a.yaml new file mode 100644 index 000000000..67bd795da --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Outsider 3c175c/Bag Part 1 526ff9/Card 47720a.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 149609 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '1496': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359987171/5B8E62D3E35AB18D51DB409507BC7B1A3682FF4E/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359988993/6A0F93A4E591541DB289AF42DA881D5B7C28FA88/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 47720a +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -50.9853668 + posY: 1.72671008 + posZ: 8.177393 + rotX: 359.9201 + rotY: 270.022461 + rotZ: 0.0168478 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Outsider 3c175c/Bag Part 1 526ff9/Card 66bd6a.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Outsider 3c175c/Bag Part 1 526ff9/Card 66bd6a.yaml new file mode 100644 index 000000000..b37254820 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Outsider 3c175c/Bag Part 1 526ff9/Card 66bd6a.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 149700 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '1497': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359987171/5B8E62D3E35AB18D51DB409507BC7B1A3682FF4E/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359988993/6A0F93A4E591541DB289AF42DA881D5B7C28FA88/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 66bd6a +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -17.1200218 + posY: 1.67707777 + posZ: -0.03000366 + rotX: 359.9201 + rotY: 270.0303 + rotZ: 0.0168338269 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Outsider 3c175c/Bag Part 1 526ff9/Card 74c0a6.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Outsider 3c175c/Bag Part 1 526ff9/Card 74c0a6.yaml new file mode 100644 index 000000000..2ba264e56 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Outsider 3c175c/Bag Part 1 526ff9/Card 74c0a6.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 149609 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '1496': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359987171/5B8E62D3E35AB18D51DB409507BC7B1A3682FF4E/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359988993/6A0F93A4E591541DB289AF42DA881D5B7C28FA88/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 74c0a6 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.95598078 + posY: 1.65564811 + posZ: -10.441206 + rotX: 359.919739 + rotY: 270.0225 + rotZ: 0.0168092735 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Outsider 3c175c/Bag Part 1 526ff9/Card 8bf28c.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Outsider 3c175c/Bag Part 1 526ff9/Card 8bf28c.yaml new file mode 100644 index 000000000..6016d798a --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Outsider 3c175c/Bag Part 1 526ff9/Card 8bf28c.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 149701 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '1497': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359987171/5B8E62D3E35AB18D51DB409507BC7B1A3682FF4E/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359988993/6A0F93A4E591541DB289AF42DA881D5B7C28FA88/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 8bf28c +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -23.676548 + posY: 1.68904328 + posZ: -0.0299938433 + rotX: 359.9201 + rotY: 270.0002 + rotZ: 180.016861 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Outsider 3c175c/Bag Part 1 526ff9/Custom_Tile 7234af.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Outsider 3c175c/Bag Part 1 526ff9/Custom_Tile 7234af.yaml new file mode 100644 index 000000000..df88ac5e5 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Outsider 3c175c/Bag Part 1 526ff9/Custom_Tile 7234af.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 7234af +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.3105183 + posY: 1.609824 + posZ: 0.006786275 + rotX: 359.9201 + rotY: 269.994263 + rotZ: 0.0169032365 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Outsider 3c175c/Bag Part 1 526ff9/Deck bfa819.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Outsider 3c175c/Bag Part 1 526ff9/Deck bfa819.yaml new file mode 100644 index 000000000..7e293d2c8 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Outsider 3c175c/Bag Part 1 526ff9/Deck bfa819.yaml @@ -0,0 +1,301 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 149807 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1498': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359987171/5B8E62D3E35AB18D51DB409507BC7B1A3682FF4E/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359988993/6A0F93A4E591541DB289AF42DA881D5B7C28FA88/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: a3d1dc + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -15.0211487 + posY: 1.84402645 + posZ: 5.72184944 + rotX: 359.9225 + rotY: 270.0048 + rotZ: 180.02095 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 149804 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1498': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359987171/5B8E62D3E35AB18D51DB409507BC7B1A3682FF4E/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359988993/6A0F93A4E591541DB289AF42DA881D5B7C28FA88/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 7a249f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -14.4238691 + posY: 1.8253051 + posZ: 6.372945 + rotX: 359.927979 + rotY: 270.013763 + rotZ: 180.000763 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 149805 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1498': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359987171/5B8E62D3E35AB18D51DB409507BC7B1A3682FF4E/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359988993/6A0F93A4E591541DB289AF42DA881D5B7C28FA88/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 02a509 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -15.0638676 + posY: 1.8280679 + posZ: 6.79272652 + rotX: 359.941254 + rotY: 269.998138 + rotZ: 180.004547 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 149802 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1498': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359987171/5B8E62D3E35AB18D51DB409507BC7B1A3682FF4E/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359988993/6A0F93A4E591541DB289AF42DA881D5B7C28FA88/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: cc43d7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -14.0852108 + posY: 1.84060347 + posZ: 6.56371927 + rotX: 359.933868 + rotY: 269.999878 + rotZ: 180.01593 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 149806 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1498': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359987171/5B8E62D3E35AB18D51DB409507BC7B1A3682FF4E/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359988993/6A0F93A4E591541DB289AF42DA881D5B7C28FA88/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: cd3ad8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -14.6400509 + posY: 1.82359 + posZ: 6.22405529 + rotX: 359.942322 + rotY: 269.989136 + rotZ: 180.035217 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 149803 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1498': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359987171/5B8E62D3E35AB18D51DB409507BC7B1A3682FF4E/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359988993/6A0F93A4E591541DB289AF42DA881D5B7C28FA88/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 0f46a4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -14.5231752 + posY: 1.6780864 + posZ: 6.26953173 + rotX: 359.9182 + rotY: 269.997925 + rotZ: 180.020554 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '1498': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359987171/5B8E62D3E35AB18D51DB409507BC7B1A3682FF4E/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359988993/6A0F93A4E591541DB289AF42DA881D5B7C28FA88/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 149807 +- 149804 +- 149805 +- 149802 +- 149806 +- 149803 +Description: '' +GMNotes: '' +GUID: bfa819 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -12.6227789 + posY: 1.684278 + posZ: 7.678868 + rotX: 359.9201 + rotY: 270.0172 + rotZ: 180.01683 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Outsider 3c175c/Bag Part 1 526ff9/Deck Act deck 68cf11.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Outsider 3c175c/Bag Part 1 526ff9/Deck Act deck 68cf11.yaml new file mode 100644 index 000000000..1a5a227f6 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Outsider 3c175c/Bag Part 1 526ff9/Deck Act deck 68cf11.yaml @@ -0,0 +1,169 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 100 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359989415/95849B1329E5D61949208055685311A857943F9A/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359990290/453BEFA063ABAF49DEA5969D8A770DA8AFD998BE/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 57b83a + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.18192744 + posY: 1.18082714 + posZ: -3.077169 + rotX: 0.00112267979 + rotY: 179.999985 + rotZ: 0.000237930944 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 102 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359989415/95849B1329E5D61949208055685311A857943F9A/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359990290/453BEFA063ABAF49DEA5969D8A770DA8AFD998BE/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: c24256 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.34421134 + posY: 1.03166616 + posZ: -3.04999876 + rotX: 0.00140384573 + rotY: 180.014069 + rotZ: 0.000298866 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 101 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359989415/95849B1329E5D61949208055685311A857943F9A/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359990290/453BEFA063ABAF49DEA5969D8A770DA8AFD998BE/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: fd6371 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.524962 + posY: 1.166434 + posZ: -2.97792268 + rotX: 0.0122476518 + rotY: 180.021652 + rotZ: -0.00286555686 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359989415/95849B1329E5D61949208055685311A857943F9A/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359990290/453BEFA063ABAF49DEA5969D8A770DA8AFD998BE/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 100 +- 102 +- 101 +Description: the Outsider part 1 +GMNotes: '' +GUID: 68cf11 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Act deck +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.68847513 + posY: 1.65499723 + posZ: -5.048541 + rotX: 359.919739 + rotY: 269.987122 + rotZ: 0.0168555789 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Outsider 3c175c/Bag Part 1 526ff9/Deck Agenda 3ac9dc.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Outsider 3c175c/Bag Part 1 526ff9/Deck Agenda 3ac9dc.yaml new file mode 100644 index 000000000..ea0f673f8 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Outsider 3c175c/Bag Part 1 526ff9/Deck Agenda 3ac9dc.yaml @@ -0,0 +1,169 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 260603 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359989415/95849B1329E5D61949208055685311A857943F9A/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359990290/453BEFA063ABAF49DEA5969D8A770DA8AFD998BE/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 44f61b + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.5667833 + posY: 1.18758917 + posZ: -3.8186934 + rotX: 0.000105584179 + rotY: 179.999969 + rotZ: 0.00197980553 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 260604 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359989415/95849B1329E5D61949208055685311A857943F9A/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359990290/453BEFA063ABAF49DEA5969D8A770DA8AFD998BE/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 67c64d + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.5381105 + posY: 1.16621888 + posZ: -3.542624 + rotX: -0.004271565 + rotY: 180.003662 + rotZ: 0.02823814 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 260605 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359989415/95849B1329E5D61949208055685311A857943F9A/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359990290/453BEFA063ABAF49DEA5969D8A770DA8AFD998BE/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 9e4ebf + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.3851633 + posY: 1.03153145 + posZ: -3.629144 + rotX: 0.008200901 + rotY: 180.0003 + rotZ: 0.0010731481 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2606': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359989415/95849B1329E5D61949208055685311A857943F9A/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359990290/453BEFA063ABAF49DEA5969D8A770DA8AFD998BE/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 260603 +- 260604 +- 260605 +Description: the Outsider part 1 +GMNotes: '' +GUID: 3ac9dc +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Agenda +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.724657 + posY: 1.65664113 + posZ: 0.373314053 + rotX: 359.919739 + rotY: 269.989563 + rotZ: 0.0168520436 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Outsider 3c175c/Bag Part 1 526ff9/Deck Encounter deck 7778b2.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Outsider 3c175c/Bag Part 1 526ff9/Deck Encounter deck 7778b2.yaml new file mode 100644 index 000000000..b2db53b78 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Outsider 3c175c/Bag Part 1 526ff9/Deck Encounter deck 7778b2.yaml @@ -0,0 +1,742 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 3620 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: 61e841 + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ancient Evils + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -21.9496078 + posY: 1.33434 + posZ: 7.916971 + rotX: 0.0176143516 + rotY: 269.9864 + rotZ: 359.993561 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3620 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: e0f4c0 + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ancient Evils + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -20.9346027 + posY: 1.28129983 + posZ: 7.54924154 + rotX: 0.006723375 + rotY: 269.9994 + rotZ: -0.000132751375 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3622 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: 03a265 + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Obscuring Fog + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -17.4148483 + posY: 1.23167741 + posZ: 5.99956274 + rotX: -0.000976656 + rotY: 269.9857 + rotZ: 0.005132819 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3620 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: 1921c5 + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ancient Evils + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -19.6564026 + posY: 1.23160839 + posZ: 7.971792 + rotX: -0.005002445 + rotY: 269.9994 + rotZ: -0.0014756727 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3613 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Creature. + GMNotes: '' + GUID: bbc9d1 + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Swarm of Rats + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -18.9998322 + posY: 1.23161483 + posZ: 14.9262657 + rotX: -0.00489453 + rotY: 270.002747 + rotZ: -0.00167015032 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3621 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: fb311c + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Crypt Chill + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -21.2322311 + posY: 1.37918484 + posZ: 7.16166067 + rotX: 359.988861 + rotY: 269.991547 + rotZ: 0.0295213945 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3617 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: aa3d47 + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Rotting Remains + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -21.5193939 + posY: 1.337018 + posZ: -4.78068352 + rotX: 0.0181244723 + rotY: 269.978149 + rotZ: 0.00253973226 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3617 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: da8001 + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Rotting Remains + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -19.2726822 + posY: 1.23161709 + posZ: -4.69493532 + rotX: -0.00461160857 + rotY: 269.9793 + rotZ: -0.00137890945 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3619 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: '260768' + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dissonant Voices + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -19.1363125 + posY: 1.231699 + posZ: -7.400251 + rotX: -0.000820844667 + rotY: 270.0089 + rotZ: -0.000237511369 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3613 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Creature. + GMNotes: '' + GUID: 56e5db + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Swarm of Rats + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 11.1713667 + posY: 1.230008 + posZ: -5.903001 + rotX: -0.0009529327 + rotY: 180.000046 + rotZ: 179.9983 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3618 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: 27c05d + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Frozen in Fear + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -18.967617 + posY: 1.231716 + posZ: -10.49529 + rotX: -3.11068325e-05 + rotY: 270.0013 + rotZ: -7.22032553e-07 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3621 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: b78c3b + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Crypt Chill + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -20.9259262 + posY: 1.23167884 + posZ: 6.982535 + rotX: -0.00255119917 + rotY: 269.983215 + rotZ: -0.000175039211 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3617 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: 18e09c + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Rotting Remains + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -20.3450146 + posY: 1.28128624 + posZ: -4.537053 + rotX: 0.006250872 + rotY: 269.979126 + rotZ: -0.00126227119 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3622 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: '356046' + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Obscuring Fog + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -17.4060268 + posY: 1.37945676 + posZ: 6.40290833 + rotX: -0.0007180891 + rotY: 270.000427 + rotZ: 0.00573350256 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3613 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Creature. + GMNotes: '' + GUID: 7381cd + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Swarm of Rats + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -19.6142921 + posY: 1.42705274 + posZ: 15.2051964 + rotX: 0.012312145 + rotY: 269.997284 + rotZ: 0.0359485969 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3619 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: f1a34d + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dissonant Voices + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -19.9809151 + posY: 1.28156877 + posZ: -7.79831076 + rotX: 0.011735606 + rotY: 270.009033 + rotZ: 0.00468536 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3618 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: c40f57 + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Frozen in Fear + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -19.6207886 + posY: 1.28169692 + posZ: -10.6840782 + rotX: -3.134726e-05 + rotY: 270.000763 + rotZ: 3.597804e-06 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 3620 +- 3620 +- 3622 +- 3620 +- 3613 +- 3621 +- 3617 +- 3617 +- 3619 +- 3613 +- 3618 +- 3621 +- 3617 +- 3622 +- 3613 +- 3619 +- 3618 +Description: the Outsider part 1 +GMNotes: '' +GUID: 7778b2 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Encounter deck +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.927626 + posY: 1.70242691 + posZ: 5.757143 + rotX: 359.919739 + rotY: 269.984833 + rotZ: 180.016846 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Outsider 3c175c/Bag Part 1 526ff9/Deck Set Aside c7985e.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Outsider 3c175c/Bag Part 1 526ff9/Deck Set Aside c7985e.yaml new file mode 100644 index 000000000..4f0eba867 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Outsider 3c175c/Bag Part 1 526ff9/Deck Set Aside c7985e.yaml @@ -0,0 +1,379 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 3614 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humaniod. Monster. Ghoul. + GMNotes: '' + GUID: d84de0 + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ghoul Minion + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -19.7288685 + posY: 1.23164022 + posZ: 5.061393 + rotX: -0.00355166267 + rotY: 269.99884 + rotZ: -0.00106878171 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3616 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: d60f3b + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Grasping Hands + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -21.5892124 + posY: 1.335341 + posZ: -0.10275472 + rotX: 0.0121570369 + rotY: 269.993347 + rotZ: -0.0005436771 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3616 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: 6a13ae + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Grasping Hands + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -20.7329159 + posY: 1.2813586 + posZ: -0.0925612152 + rotX: 0.00429656 + rotY: 270.022278 + rotZ: -0.000649601454 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3616 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: 9c193f + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Grasping Hands + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -19.6770039 + posY: 1.23163879 + posZ: -0.0248187073 + rotX: -0.00361831323 + rotY: 270.0224 + rotZ: -0.00109177944 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3614 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humaniod. Monster. Ghoul. + GMNotes: '' + GUID: 4218a0 + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ghoul Minion + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -20.6391163 + posY: 1.28146374 + posZ: 5.01242638 + rotX: 0.004181641 + rotY: 269.9984 + rotZ: -0.0005332415 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 149900 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1133': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359991078/91AE8AEEBDD48D6B589702370C079CAF11E37249/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: ad42fd + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 39.6077461 + posY: 1.21561182 + posZ: -38.0173264 + rotX: 0.00352590438 + rotY: 179.999939 + rotZ: -0.00301894918 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3615 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humaniod. Monster. Ghoul. + GMNotes: '' + GUID: a65f30 + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ravenous Ghoul + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -19.8181629 + posY: 1.23171639 + posZ: 2.487658 + rotX: -2.3016848e-05 + rotY: 269.999939 + rotZ: -2.027022e-06 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3614 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humaniod. Monster. Ghoul. + GMNotes: '' + GUID: 3e53b0 + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ghoul Minion + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -21.6324978 + posY: 1.33485162 + posZ: 4.96905327 + rotX: 0.0129893105 + rotY: 269.997925 + rotZ: -3.80091878e-05 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '1499': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359991078/91AE8AEEBDD48D6B589702370C079CAF11E37249/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 3614 +- 3616 +- 3616 +- 3616 +- 3614 +- 149900 +- 3615 +- 3614 +Description: the Outsider part 1 +GMNotes: '' +GUID: c7985e +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Set Aside +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 1.6964649 + posY: 1.63675392 + posZ: 14.2788343 + rotX: 359.95517 + rotY: 224.997971 + rotZ: 0.06865341 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Outsider 3c175c/Bag Part 2 5b3ac7.ttslua b/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/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 791837/Custom_Model_Bag The Outsider 3c175c/Bag Part 2 5b3ac7.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Outsider 3c175c/Bag Part 2 5b3ac7.yaml new file mode 100644 index 000000000..ca2646616 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Outsider 3c175c/Bag Part 2 5b3ac7.yaml @@ -0,0 +1,45 @@ +Autoraise: true +ColorDiffuse: + b: 0.0 + g: 0.366520882 + r: 0.7058823 +ContainedObjects: +- !include 'Bag Part 2 5b3ac7/Card the Key 22d44e.yaml' +- !include 'Bag Part 2 5b3ac7/Deck Barricades 732e77.yaml' +- !include 'Bag Part 2 5b3ac7/Card 39f252.yaml' +- !include 'Bag Part 2 5b3ac7/Deck Encounter deck b8835d.yaml' +- !include 'Bag Part 2 5b3ac7/Deck locations 1a5389.yaml' +- !include 'Bag Part 2 5b3ac7/Card 6abf04.yaml' +- !include 'Bag Part 2 5b3ac7/Deck Agenda 15aea9.yaml' +- !include 'Bag Part 2 5b3ac7/Deck Act deck 069c0e.yaml' +- !include 'Bag Part 2 5b3ac7/Card 74c0a6.yaml' +- !include 'Bag Part 2 5b3ac7/Card a17577.yaml' +Description: The Outsider +GMNotes: '' +GUID: 5b3ac7 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Bag Part 2 5b3ac7.ttslua' +LuaScriptState: '{"ml":{"069c0e":{"lock":false,"pos":{"x":-2.6885,"y":1.655,"z":-5.0486},"rot":{"x":359.9197,"y":269.9856,"z":0.0169}},"15aea9":{"lock":false,"pos":{"x":-2.7248,"y":1.664,"z":0.3752},"rot":{"x":359.9197,"y":269.9871,"z":0.0169}},"1a5389":{"lock":false,"pos":{"x":-12.2377,"y":1.6868,"z":5.5191},"rot":{"x":359.9201,"y":269.9902,"z":180.0169}},"22d44e":{"lock":false,"pos":{"x":1.6964,"y":1.655,"z":14.2788},"rot":{"x":359.9552,"y":224.998,"z":0.0687}},"39f252":{"lock":false,"pos":{"x":-11.2701,"y":1.6729,"z":13.4063},"rot":{"x":359.9201,"y":269.9742,"z":0.0169}},"6abf04":{"lock":false,"pos":{"x":-12.0712,"y":1.6706,"z":1.9793},"rot":{"x":359.9201,"y":270,"z":0.0169}},"732e77":{"lock":false,"pos":{"x":-3.8398,"y":1.6625,"z":14.8495},"rot":{"x":359.9197,"y":269.9346,"z":0.0169}},"74c0a6":{"lock":false,"pos":{"x":-3.9564,"y":1.6557,"z":-10.4355},"rot":{"x":359.9198,"y":269.693,"z":0.0173}},"a17577":{"lock":false,"pos":{"x":-17.1199,"y":1.6799,"z":-0.03},"rot":{"x":359.9201,"y":269.9972,"z":180.0169}},"b8835d":{"lock":false,"pos":{"x":-3.9276,"y":1.7131,"z":5.7571},"rot":{"x":359.9197,"y":269.9856,"z":180.0168}}}}' +MaterialIndex: -1 +MeshIndex: -1 +Name: Bag +Nickname: Part 2 +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 9.92668 + posY: 1.28325212 + posZ: 1.74766994 + rotX: 0.0799360946 + rotY: 89.99714 + rotZ: 359.9831 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Outsider 3c175c/Bag Part 2 5b3ac7/Card 39f252.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Outsider 3c175c/Bag Part 2 5b3ac7/Card 39f252.yaml new file mode 100644 index 000000000..f1c6faecd --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Outsider 3c175c/Bag Part 2 5b3ac7/Card 39f252.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 154400 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '1544': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359991078/91AE8AEEBDD48D6B589702370C079CAF11E37249/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 39f252 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -11.2700815 + posY: 1.672877 + posZ: 13.40627 + rotX: 359.9201 + rotY: 269.974182 + rotZ: 0.0169063639 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Outsider 3c175c/Bag Part 2 5b3ac7/Card 6abf04.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Outsider 3c175c/Bag Part 2 5b3ac7/Card 6abf04.yaml new file mode 100644 index 000000000..876efe319 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Outsider 3c175c/Bag Part 2 5b3ac7/Card 6abf04.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 319 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '3': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359987171/5B8E62D3E35AB18D51DB409507BC7B1A3682FF4E/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359988993/6A0F93A4E591541DB289AF42DA881D5B7C28FA88/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 6abf04 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -12.0711727 + posY: 1.67062926 + posZ: 1.97932315 + rotX: 359.9201 + rotY: 269.999969 + rotZ: 0.0168758966 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Outsider 3c175c/Bag Part 2 5b3ac7/Card 74c0a6.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Outsider 3c175c/Bag Part 2 5b3ac7/Card 74c0a6.yaml new file mode 100644 index 000000000..3d6fc945e --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Outsider 3c175c/Bag Part 2 5b3ac7/Card 74c0a6.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 154520 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '1545': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359987171/5B8E62D3E35AB18D51DB409507BC7B1A3682FF4E/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359988993/6A0F93A4E591541DB289AF42DA881D5B7C28FA88/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 74c0a6 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.95643234 + posY: 1.6556505 + posZ: -10.4355459 + rotX: 359.91983 + rotY: 269.693 + rotZ: 0.0172710847 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Outsider 3c175c/Bag Part 2 5b3ac7/Card a17577.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Outsider 3c175c/Bag Part 2 5b3ac7/Card a17577.yaml new file mode 100644 index 000000000..df3dfd09c --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Outsider 3c175c/Bag Part 2 5b3ac7/Card a17577.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 154611 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '1546': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359987171/5B8E62D3E35AB18D51DB409507BC7B1A3682FF4E/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359988993/6A0F93A4E591541DB289AF42DA881D5B7C28FA88/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: a17577 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -17.1199341 + posY: 1.67990053 + posZ: -0.0300137438 + rotX: 359.9201 + rotY: 269.997162 + rotZ: 180.016861 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Outsider 3c175c/Bag Part 2 5b3ac7/Card the Key 22d44e.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Outsider 3c175c/Bag Part 2 5b3ac7/Card the Key 22d44e.yaml new file mode 100644 index 000000000..1e291d873 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Outsider 3c175c/Bag Part 2 5b3ac7/Card the Key 22d44e.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 154710 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '1547': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359987171/5B8E62D3E35AB18D51DB409507BC7B1A3682FF4E/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359988993/6A0F93A4E591541DB289AF42DA881D5B7C28FA88/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: the Outsider +GMNotes: '' +GUID: 22d44e +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: the Key +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 1.69642508 + posY: 1.65499473 + posZ: 14.2788391 + rotX: 359.95517 + rotY: 224.998032 + rotZ: 0.06865328 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Outsider 3c175c/Bag Part 2 5b3ac7/Deck Act deck 069c0e.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Outsider 3c175c/Bag Part 2 5b3ac7/Deck Act deck 069c0e.yaml new file mode 100644 index 000000000..9d29543cf --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Outsider 3c175c/Bag Part 2 5b3ac7/Deck Act deck 069c0e.yaml @@ -0,0 +1,169 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 108 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359989415/95849B1329E5D61949208055685311A857943F9A/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359990290/453BEFA063ABAF49DEA5969D8A770DA8AFD998BE/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 31de6b + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.08083582 + posY: 1.03169584 + posZ: 2.997865 + rotX: 0.0006091696 + rotY: 180.030151 + rotZ: 0.000177480935 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 107 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359989415/95849B1329E5D61949208055685311A857943F9A/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359990290/453BEFA063ABAF49DEA5969D8A770DA8AFD998BE/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 6b5db5 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.949875 + posY: 1.1703285 + posZ: 2.52775931 + rotX: 0.0196274277 + rotY: 179.992645 + rotZ: 0.009442551 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 106 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359989415/95849B1329E5D61949208055685311A857943F9A/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359990290/453BEFA063ABAF49DEA5969D8A770DA8AFD998BE/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 15d75c + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.94273424 + posY: 1.18086052 + posZ: 3.31979227 + rotX: 0.000486770266 + rotY: 180.0 + rotZ: 0.000142083736 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359989415/95849B1329E5D61949208055685311A857943F9A/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359990290/453BEFA063ABAF49DEA5969D8A770DA8AFD998BE/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 108 +- 107 +- 106 +Description: the Outsider part 2 +GMNotes: '' +GUID: 069c0e +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Act deck +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.68845272 + posY: 1.65499735 + posZ: -5.048551 + rotX: 359.919739 + rotY: 269.9856 + rotZ: 0.0168579 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Outsider 3c175c/Bag Part 2 5b3ac7/Deck Agenda 15aea9.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Outsider 3c175c/Bag Part 2 5b3ac7/Deck Agenda 15aea9.yaml new file mode 100644 index 000000000..c75957202 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Outsider 3c175c/Bag Part 2 5b3ac7/Deck Agenda 15aea9.yaml @@ -0,0 +1,127 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 110 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359989415/95849B1329E5D61949208055685311A857943F9A/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359990290/453BEFA063ABAF49DEA5969D8A770DA8AFD998BE/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 9e4ebf + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.70775461 + posY: 1.03168535 + posZ: 4.451557 + rotX: 0.000145247512 + rotY: 179.998566 + rotZ: -0.0002497677 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 109 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359989415/95849B1329E5D61949208055685311A857943F9A/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359990290/453BEFA063ABAF49DEA5969D8A770DA8AFD998BE/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: bdbd74 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.462233 + posY: 1.1700238 + posZ: 3.95736027 + rotX: 0.0201966241 + rotY: 179.985565 + rotZ: 0.003547476 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359989415/95849B1329E5D61949208055685311A857943F9A/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359990290/453BEFA063ABAF49DEA5969D8A770DA8AFD998BE/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 110 +- 109 +Description: the Outsider part 2 +GMNotes: '' +GUID: 15aea9 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Agenda +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.72475386 + posY: 1.66397774 + posZ: 0.3752473 + rotX: 359.919739 + rotY: 269.987122 + rotZ: 0.0168551486 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Outsider 3c175c/Bag Part 2 5b3ac7/Deck Barricades 732e77.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Outsider 3c175c/Bag Part 2 5b3ac7/Deck Barricades 732e77.yaml new file mode 100644 index 000000000..e46dabbd4 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Outsider 3c175c/Bag Part 2 5b3ac7/Deck Barricades 732e77.yaml @@ -0,0 +1,169 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 201 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359991078/91AE8AEEBDD48D6B589702370C079CAF11E37249/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 189e30 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 37.3344154 + posY: 1.22565722 + posZ: -39.2389641 + rotX: -0.00367504917 + rotY: 180.0005 + rotZ: 180.003479 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 203 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359991078/91AE8AEEBDD48D6B589702370C079CAF11E37249/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 3238c5 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 37.1155167 + posY: 1.20821261 + posZ: -39.27426 + rotX: 359.9881 + rotY: 180.000519 + rotZ: 180.008423 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 202 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359991078/91AE8AEEBDD48D6B589702370C079CAF11E37249/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 37b85f + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 50.59299 + posY: 1.21705508 + posZ: -19.3212051 + rotX: 0.0018499518 + rotY: 179.99762 + rotZ: 359.972321 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359991078/91AE8AEEBDD48D6B589702370C079CAF11E37249/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 201 +- 203 +- 202 +Description: the Outsider +GMNotes: '' +GUID: 732e77 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Barricades +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.83978271 + posY: 1.66245675 + posZ: 14.8495274 + rotX: 359.919739 + rotY: 269.9346 + rotZ: 0.016946923 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Outsider 3c175c/Bag Part 2 5b3ac7/Deck Encounter deck b8835d.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Outsider 3c175c/Bag Part 2 5b3ac7/Deck Encounter deck b8835d.yaml new file mode 100644 index 000000000..2b386ce1b --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Outsider 3c175c/Bag Part 2 5b3ac7/Deck Encounter deck b8835d.yaml @@ -0,0 +1,841 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 205 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359991078/91AE8AEEBDD48D6B589702370C079CAF11E37249/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 2fdfed + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 4.339679 + posY: 1.02973831 + posZ: -5.5644536 + rotX: 0.00360177923 + rotY: 179.996628 + rotZ: 0.00447711674 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 206 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359991078/91AE8AEEBDD48D6B589702370C079CAF11E37249/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: ce1094 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 4.18978834 + posY: 1.17337012 + posZ: -5.838801 + rotX: 0.001521335 + rotY: 179.986176 + rotZ: -0.00543383 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 204 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359991078/91AE8AEEBDD48D6B589702370C079CAF11E37249/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 603fa3 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 4.90976 + posY: 1.18740642 + posZ: -5.711768 + rotX: 0.0102574164 + rotY: 180.000031 + rotZ: 0.00950961653 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 210 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359991078/91AE8AEEBDD48D6B589702370C079CAF11E37249/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 521af8 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -1.06110525 + posY: 1.0315938 + posZ: -3.13112855 + rotX: 0.00522005651 + rotY: 179.9998 + rotZ: 0.00148544961 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 209 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359991078/91AE8AEEBDD48D6B589702370C079CAF11E37249/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 662b90 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -0.7880473 + posY: 1.16993082 + posZ: -2.90766215 + rotX: 0.0152464444 + rotY: 179.9997 + rotZ: 0.0321575142 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 212 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359991078/91AE8AEEBDD48D6B589702370C079CAF11E37249/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: b6c2e0 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.6772083 + posY: 1.03168464 + posZ: -9.976873 + rotX: 0.00105460046 + rotY: 179.999619 + rotZ: 0.000365297747 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 211 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359991078/91AE8AEEBDD48D6B589702370C079CAF11E37249/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 3127cd + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.8167608 + posY: 1.17007673 + posZ: -10.332571 + rotX: 0.0184375141 + rotY: 179.999588 + rotZ: 0.00757541461 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 214 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359991078/91AE8AEEBDD48D6B589702370C079CAF11E37249/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 4160c3 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 1.17273569 + posY: 1.03159976 + posZ: -6.148077 + rotX: 0.00503435871 + rotY: 179.999786 + rotZ: 0.00160437752 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 213 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359991078/91AE8AEEBDD48D6B589702370C079CAF11E37249/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 3db0c2 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 1.09591889 + posY: 1.1698246 + posZ: -6.26935339 + rotX: -0.000485778146 + rotY: 179.99968 + rotZ: 359.991333 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 216 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359991078/91AE8AEEBDD48D6B589702370C079CAF11E37249/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: f50738 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -7.52748156 + posY: 1.03157544 + posZ: -6.02190638 + rotX: 0.00621965 + rotY: 179.999878 + rotZ: 0.0019172678 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 215 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359991078/91AE8AEEBDD48D6B589702370C079CAF11E37249/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: d8584b + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -7.838218 + posY: 1.169759 + posZ: -5.9838047 + rotX: -0.00449582562 + rotY: 180.0001 + rotZ: 359.993774 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 218 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359991078/91AE8AEEBDD48D6B589702370C079CAF11E37249/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: f2b550 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -4.6822176 + posY: 1.03159833 + posZ: -6.399916 + rotX: 0.00519576529 + rotY: 179.999786 + rotZ: 0.00186375959 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 217 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359991078/91AE8AEEBDD48D6B589702370C079CAF11E37249/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 76b30a + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -5.091202 + posY: 1.16960657 + posZ: -6.48343563 + rotX: 0.0001974118 + rotY: 179.999359 + rotZ: 359.9473 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 220 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359991078/91AE8AEEBDD48D6B589702370C079CAF11E37249/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: f3c140 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 6.62089825 + posY: 1.03132129 + posZ: -1.84582007 + rotX: 0.0179547276 + rotY: 179.9993 + rotZ: 0.00633090548 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 219 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359991078/91AE8AEEBDD48D6B589702370C079CAF11E37249/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: a573bf + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 6.54107571 + posY: 1.17669666 + posZ: -1.89789736 + rotX: 0.102442369 + rotY: 179.999222 + rotZ: 359.707825 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 208 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359991078/91AE8AEEBDD48D6B589702370C079CAF11E37249/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 00c573 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 6.512794 + posY: 1.03165412 + posZ: -9.64184952 + rotX: 0.002229685 + rotY: 179.979691 + rotZ: 0.000794893 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 207 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359991078/91AE8AEEBDD48D6B589702370C079CAF11E37249/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: a2811f + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 6.59101772 + posY: 1.17017245 + posZ: -9.56564 + rotX: 0.0132652335 + rotY: 179.9802 + rotZ: 0.0112512438 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 222 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359991078/91AE8AEEBDD48D6B589702370C079CAF11E37249/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 93c906 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 1.95945466 + posY: 1.03158927 + posZ: -2.794343 + rotX: 0.0054585943 + rotY: 180.000122 + rotZ: 0.00140572828 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 221 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359991078/91AE8AEEBDD48D6B589702370C079CAF11E37249/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 6e63c5 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.032713 + posY: 1.169756 + posZ: -2.97075558 + rotX: 0.00151253387 + rotY: 180.001053 + rotZ: 0.0158880781 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359991078/91AE8AEEBDD48D6B589702370C079CAF11E37249/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 205 +- 206 +- 204 +- 210 +- 209 +- 212 +- 211 +- 214 +- 213 +- 216 +- 215 +- 218 +- 217 +- 220 +- 219 +- 208 +- 207 +- 222 +- 221 +Description: the Outsider part 2 +GMNotes: '' +GUID: b8835d +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Encounter deck +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.92761827 + posY: 1.71308577 + posZ: 5.75712872 + rotX: 359.919739 + rotY: 269.985565 + rotZ: 180.016846 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Outsider 3c175c/Bag Part 2 5b3ac7/Deck locations 1a5389.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Outsider 3c175c/Bag Part 2 5b3ac7/Deck locations 1a5389.yaml new file mode 100644 index 000000000..9ae38b341 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Outsider 3c175c/Bag Part 2 5b3ac7/Deck locations 1a5389.yaml @@ -0,0 +1,337 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 154617 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359987171/5B8E62D3E35AB18D51DB409507BC7B1A3682FF4E/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359988993/6A0F93A4E591541DB289AF42DA881D5B7C28FA88/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: f4cb45 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 1.29514253 + posY: 1.13724327 + posZ: -7.690079 + rotX: -0.000734869 + rotY: 178.991974 + rotZ: 5.48057032 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 154618 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359987171/5B8E62D3E35AB18D51DB409507BC7B1A3682FF4E/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359988993/6A0F93A4E591541DB289AF42DA881D5B7C28FA88/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 0b0672 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.01371765 + posY: 1.13579035 + posZ: -7.6769 + rotX: -0.00149109238 + rotY: 179.006058 + rotZ: 5.4622736 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 154615 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359987171/5B8E62D3E35AB18D51DB409507BC7B1A3682FF4E/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359988993/6A0F93A4E591541DB289AF42DA881D5B7C28FA88/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 2e6ef1 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -0.1474122 + posY: 1.13790739 + posZ: -7.71440935 + rotX: 0.000698677 + rotY: 179.058319 + rotZ: 5.57113171 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 154616 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359987171/5B8E62D3E35AB18D51DB409507BC7B1A3682FF4E/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359988993/6A0F93A4E591541DB289AF42DA881D5B7C28FA88/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 6d1c5a + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.574868441 + posY: 1.13741589 + posZ: -7.70102167 + rotX: -0.0005602423 + rotY: 179.0035 + rotZ: 5.54454041 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 154613 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359987171/5B8E62D3E35AB18D51DB409507BC7B1A3682FF4E/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359988993/6A0F93A4E591541DB289AF42DA881D5B7C28FA88/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: c7f55b + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -1.58864415 + posY: 1.14027178 + posZ: -7.73988438 + rotX: 0.00114511058 + rotY: 179.071381 + rotZ: 5.696711 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 154614 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359987171/5B8E62D3E35AB18D51DB409507BC7B1A3682FF4E/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359988993/6A0F93A4E591541DB289AF42DA881D5B7C28FA88/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 3d189a + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -0.865797341 + posY: 1.13908744 + posZ: -7.72703743 + rotX: 0.0007743027 + rotY: 179.01857 + rotZ: 5.637812 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 154612 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359987171/5B8E62D3E35AB18D51DB409507BC7B1A3682FF4E/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359988993/6A0F93A4E591541DB289AF42DA881D5B7C28FA88/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 4b5860 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.306236 + posY: 1.13895392 + posZ: -7.75344563 + rotX: -0.004393126 + rotY: 179.035431 + rotZ: 5.566909 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '1546': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359987171/5B8E62D3E35AB18D51DB409507BC7B1A3682FF4E/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359988993/6A0F93A4E591541DB289AF42DA881D5B7C28FA88/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 154617 +- 154618 +- 154615 +- 154616 +- 154613 +- 154614 +- 154612 +Description: the Outsider +GMNotes: '' +GUID: 1a5389 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: locations +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -12.2377329 + posY: 1.68676794 + posZ: 5.519065 + rotX: 359.9201 + rotY: 269.990173 + rotZ: 180.016876 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Outsider 3c175c/Bag Part 3 d166f2.ttslua b/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/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 791837/Custom_Model_Bag The Outsider 3c175c/Bag Part 3 d166f2.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Outsider 3c175c/Bag Part 3 d166f2.yaml new file mode 100644 index 000000000..b47ec3190 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Outsider 3c175c/Bag Part 3 d166f2.yaml @@ -0,0 +1,63 @@ +Autoraise: true +ColorDiffuse: + b: 0.0 + g: 0.366520882 + r: 0.7058823 +ContainedObjects: +- !include 'Bag Part 3 d166f2/Card 9bf7f7.yaml' +- !include 'Bag Part 3 d166f2/Deck Set Aside a890ff.yaml' +- !include 'Bag Part 3 d166f2/DeckCustom Encounter deck 81cfd0.yaml' +- !include 'Bag Part 3 d166f2/Deck Agenda 85162c.yaml' +- !include 'Bag Part 3 d166f2/Deck Act deck 17db9c.yaml' +- !include 'Bag Part 3 d166f2/Card 0c7cb7.yaml' +- !include 'Bag Part 3 d166f2/Deck f56146.yaml' +- !include 'Bag Part 3 d166f2/Card 9ee9b3.yaml' +- !include 'Bag Part 3 d166f2/Custom_Tile 49a48d.yaml' +- !include 'Bag Part 3 d166f2/Card 5b6a3e.yaml' +- !include 'Bag Part 3 d166f2/Card 0f1ac9.yaml' +- !include 'Bag Part 3 d166f2/Custom_Tile d21dcc.yaml' +- !include 'Bag Part 3 d166f2/Card the Castle 712716.yaml' +- !include 'Bag Part 3 d166f2/Custom_Tile e37679.yaml' +- !include 'Bag Part 3 d166f2/Custom_Tile 7234af.yaml' +- !include 'Bag Part 3 d166f2/Custom_Tile 87ca77.yaml' +- !include 'Bag Part 3 d166f2/Custom_Tile 1c6fa6.yaml' +- !include 'Bag Part 3 d166f2/Custom_Tile e98e39.yaml' +- !include 'Bag Part 3 d166f2/Card 48182d.yaml' +- !include 'Bag Part 3 d166f2/Custom_Tile 3c4916.yaml' +- !include 'Bag Part 3 d166f2/Card 259cf3.yaml' +- !include 'Bag Part 3 d166f2/Custom_Tile 4ffff6.yaml' +- !include 'Bag Part 3 d166f2/Card 958ae4.yaml' +- !include 'Bag Part 3 d166f2/Custom_Tile 44b0c5.yaml' +- !include 'Bag Part 3 d166f2/Custom_Tile c98d4d.yaml' +- !include 'Bag Part 3 d166f2/Custom_Tile dd44d6.yaml' +- !include 'Bag Part 3 d166f2/Card 4c90c4.yaml' +- !include 'Bag Part 3 d166f2/Card 60479c.yaml' +Description: The Outsider +GMNotes: '' +GUID: d166f2 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Bag Part 3 d166f2.ttslua' +LuaScriptState: '{"ml":{"0c7cb7":{"lock":false,"pos":{"x":-3.956,"y":1.6556,"z":-10.4412},"rot":{"x":359.9197,"y":269.9853,"z":0.0169}},"0f1ac9":{"lock":false,"pos":{"x":-17.1199,"y":1.6799,"z":-0.0299},"rot":{"x":359.9201,"y":269.9959,"z":180.0169}},"17db9c":{"lock":false,"pos":{"x":-2.6887,"y":1.655,"z":-5.0534},"rot":{"x":359.9197,"y":269.988,"z":0.0169}},"1c6fa6":{"lock":false,"pos":{"x":-20.4923,"y":1.6078,"z":-7.5955},"rot":{"x":359.9201,"y":269.9947,"z":0.0169}},"259cf3":{"lock":false,"pos":{"x":-23.6765,"y":1.689,"z":-0.0298},"rot":{"x":359.9201,"y":269.9853,"z":180.0169}},"3c4916":{"lock":false,"pos":{"x":-24.6779,"y":1.6169,"z":3.3941},"rot":{"x":359.9831,"y":0.0002,"z":359.92}},"44b0c5":{"lock":false,"pos":{"x":-27.1403,"y":1.6227,"z":11.4079},"rot":{"x":0.0253,"y":29.9999,"z":359.9224}},"48182d":{"lock":false,"pos":{"x":-23.6765,"y":1.6913,"z":7.5701},"rot":{"x":359.9201,"y":269.998,"z":180.0169}},"49a48d":{"lock":false,"pos":{"x":-20.456,"y":1.6133,"z":11.0039},"rot":{"x":359.9454,"y":330.0001,"z":359.9392}},"4c90c4":{"lock":false,"pos":{"x":-30.2243,"y":1.7004,"z":7.57},"rot":{"x":359.9201,"y":269.9832,"z":180.0169}},"4ffff6":{"lock":false,"pos":{"x":-23.6765,"y":1.6134,"z":-3.83},"rot":{"x":359.9831,"y":0,"z":359.9201}},"5b6a3e":{"lock":false,"pos":{"x":-17.1199,"y":1.6821,"z":7.57},"rot":{"x":359.9201,"y":269.9971,"z":180.0169}},"60479c":{"lock":false,"pos":{"x":-50.9244,"y":1.7266,"z":8.1784},"rot":{"x":359.9201,"y":269.9853,"z":0.0169}},"712716":{"lock":false,"pos":{"x":-17.1201,"y":1.6776,"z":-7.7},"rot":{"x":359.9201,"y":269.983,"z":180.0169}},"7234af":{"lock":false,"pos":{"x":-20.2757,"y":1.6097,"z":-0.1469},"rot":{"x":359.9201,"y":269.9946,"z":0.0169}},"81cfd0":{"lock":false,"pos":{"x":-3.9275,"y":1.7344,"z":5.7571},"rot":{"x":359.9197,"y":269.9904,"z":180.0168}},"85162c":{"lock":false,"pos":{"x":-2.7248,"y":1.6566,"z":0.376},"rot":{"x":359.9197,"y":269.9747,"z":0.0169}},"87ca77":{"lock":false,"pos":{"x":-19.4346,"y":1.6074,"z":-3.9882},"rot":{"x":0.0446,"y":44.9998,"z":359.9316}},"958ae4":{"lock":false,"pos":{"x":-23.6766,"y":1.6868,"z":-7.7},"rot":{"x":359.9201,"y":269.9962,"z":180.0169}},"9bf7f7":{"lock":false,"pos":{"x":-4.5813,"y":1.6639,"z":14.6068},"rot":{"x":359.9197,"y":269.9856,"z":0.0169}},"9ee9b3":{"lock":false,"pos":{"x":-23.6766,"y":1.6935,"z":15.19},"rot":{"x":359.9201,"y":269.9973,"z":180.0169}},"a890ff":{"lock":false,"pos":{"x":1.6971,"y":1.6545,"z":14.2909},"rot":{"x":359.9551,"y":225.0642,"z":0.0686}},"c98d4d":{"lock":false,"pos":{"x":-27.175,"y":1.6216,"z":7.4327},"rot":{"x":0.0799,"y":89.9678,"z":359.9831}},"d21dcc":{"lock":false,"pos":{"x":-17.1199,"y":1.6042,"z":-3.83},"rot":{"x":359.9831,"y":0,"z":359.92}},"dd44d6":{"lock":false,"pos":{"x":-28.2992,"y":1.6219,"z":3.0842},"rot":{"x":359.9316,"y":315.0104,"z":359.9554}},"e37679":{"lock":false,"pos":{"x":-20.8988,"y":1.6128,"z":7.3295},"rot":{"x":359.9201,"y":270.0333,"z":0.0169}},"e98e39":{"lock":false,"pos":{"x":-21.6665,"y":1.6108,"z":-2.9587},"rot":{"x":359.9316,"y":315.0323,"z":359.9554}},"f56146":{"lock":false,"pos":{"x":-12.3746,"y":1.6693,"z":2.5663},"rot":{"x":359.9201,"y":269.9806,"z":0.0169}}}}' +MaterialIndex: -1 +MeshIndex: -1 +Name: Bag +Nickname: Part 3 +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 9.864621 + posY: 1.28138113 + posZ: -4.58780432 + rotX: 0.0799354762 + rotY: 89.99588 + rotZ: 359.9831 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Outsider 3c175c/Bag Part 3 d166f2/Card 0c7cb7.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Outsider 3c175c/Bag Part 3 d166f2/Card 0c7cb7.yaml new file mode 100644 index 000000000..e39624cd8 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Outsider 3c175c/Bag Part 3 d166f2/Card 0c7cb7.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 149609 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '1496': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359987171/5B8E62D3E35AB18D51DB409507BC7B1A3682FF4E/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359988993/6A0F93A4E591541DB289AF42DA881D5B7C28FA88/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 0c7cb7 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.95597863 + posY: 1.65564823 + posZ: -10.4411964 + rotX: 359.919739 + rotY: 269.9853 + rotZ: 0.016861394 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Outsider 3c175c/Bag Part 3 d166f2/Card 0f1ac9.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Outsider 3c175c/Bag Part 3 d166f2/Card 0f1ac9.yaml new file mode 100644 index 000000000..27f98dc7c --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Outsider 3c175c/Bag Part 3 d166f2/Card 0f1ac9.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 154725 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '1547': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359987171/5B8E62D3E35AB18D51DB409507BC7B1A3682FF4E/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359988993/6A0F93A4E591541DB289AF42DA881D5B7C28FA88/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 0f1ac9 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -17.1199284 + posY: 1.67990053 + posZ: -0.0299495924 + rotX: 359.9201 + rotY: 269.99588 + rotZ: 180.016876 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Outsider 3c175c/Bag Part 3 d166f2/Card 259cf3.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Outsider 3c175c/Bag Part 3 d166f2/Card 259cf3.yaml new file mode 100644 index 000000000..798b7d136 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Outsider 3c175c/Bag Part 3 d166f2/Card 259cf3.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 154731 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '1547': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359987171/5B8E62D3E35AB18D51DB409507BC7B1A3682FF4E/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359988993/6A0F93A4E591541DB289AF42DA881D5B7C28FA88/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 259cf3 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -23.6765461 + posY: 1.6890434 + posZ: -0.0298328809 + rotX: 359.9201 + rotY: 269.98526 + rotZ: 180.016891 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Outsider 3c175c/Bag Part 3 d166f2/Card 48182d.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Outsider 3c175c/Bag Part 3 d166f2/Card 48182d.yaml new file mode 100644 index 000000000..60ea7f6d4 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Outsider 3c175c/Bag Part 3 d166f2/Card 48182d.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 154726 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '1547': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359987171/5B8E62D3E35AB18D51DB409507BC7B1A3682FF4E/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359988993/6A0F93A4E591541DB289AF42DA881D5B7C28FA88/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 48182d +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -23.6765385 + posY: 1.69128132 + posZ: 7.570053 + rotX: 359.9201 + rotY: 269.998047 + rotZ: 180.016861 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Outsider 3c175c/Bag Part 3 d166f2/Card 4c90c4.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Outsider 3c175c/Bag Part 3 d166f2/Card 4c90c4.yaml new file mode 100644 index 000000000..2367cfc09 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Outsider 3c175c/Bag Part 3 d166f2/Card 4c90c4.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 154729 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '1547': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359987171/5B8E62D3E35AB18D51DB409507BC7B1A3682FF4E/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359988993/6A0F93A4E591541DB289AF42DA881D5B7C28FA88/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 4c90c4 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -30.2242832 + posY: 1.70041156 + posZ: 7.57000732 + rotX: 359.9201 + rotY: 269.983215 + rotZ: 180.016891 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Outsider 3c175c/Bag Part 3 d166f2/Card 5b6a3e.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Outsider 3c175c/Bag Part 3 d166f2/Card 5b6a3e.yaml new file mode 100644 index 000000000..75406bae4 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Outsider 3c175c/Bag Part 3 d166f2/Card 5b6a3e.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 154727 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '1547': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359987171/5B8E62D3E35AB18D51DB409507BC7B1A3682FF4E/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359988993/6A0F93A4E591541DB289AF42DA881D5B7C28FA88/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 5b6a3e +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -17.1199341 + posY: 1.68213844 + posZ: 7.569989 + rotX: 359.9201 + rotY: 269.9971 + rotZ: 180.016861 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Outsider 3c175c/Bag Part 3 d166f2/Card 60479c.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Outsider 3c175c/Bag Part 3 d166f2/Card 60479c.yaml new file mode 100644 index 000000000..e5e586570 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Outsider 3c175c/Bag Part 3 d166f2/Card 60479c.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 149609 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '1496': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359987171/5B8E62D3E35AB18D51DB409507BC7B1A3682FF4E/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359988993/6A0F93A4E591541DB289AF42DA881D5B7C28FA88/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 60479c +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -50.9243851 + posY: 1.72662532 + posZ: 8.17843151 + rotX: 359.9201 + rotY: 269.98526 + rotZ: 0.0168967135 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Outsider 3c175c/Bag Part 3 d166f2/Card 958ae4.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Outsider 3c175c/Bag Part 3 d166f2/Card 958ae4.yaml new file mode 100644 index 000000000..fc78ff691 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Outsider 3c175c/Bag Part 3 d166f2/Card 958ae4.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 154728 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '1547': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359987171/5B8E62D3E35AB18D51DB409507BC7B1A3682FF4E/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359988993/6A0F93A4E591541DB289AF42DA881D5B7C28FA88/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 958ae4 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -23.6766167 + posY: 1.686785 + posZ: -7.69999552 + rotX: 359.9201 + rotY: 269.996155 + rotZ: 180.016876 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Outsider 3c175c/Bag Part 3 d166f2/Card 9bf7f7.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Outsider 3c175c/Bag Part 3 d166f2/Card 9bf7f7.yaml new file mode 100644 index 000000000..661fa790b --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Outsider 3c175c/Bag Part 3 d166f2/Card 9bf7f7.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 154300 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '1543': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359991078/91AE8AEEBDD48D6B589702370C079CAF11E37249/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: '' +GMNotes: '' +GUID: 9bf7f7 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -4.581326 + posY: 1.6638844 + posZ: 14.6067657 + rotX: 359.919739 + rotY: 269.985565 + rotZ: 0.0168624483 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Outsider 3c175c/Bag Part 3 d166f2/Card 9ee9b3.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Outsider 3c175c/Bag Part 3 d166f2/Card 9ee9b3.yaml new file mode 100644 index 000000000..0684d7aa6 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Outsider 3c175c/Bag Part 3 d166f2/Card 9ee9b3.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 154730 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '1547': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359987171/5B8E62D3E35AB18D51DB409507BC7B1A3682FF4E/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359988993/6A0F93A4E591541DB289AF42DA881D5B7C28FA88/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 9ee9b3 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -23.6765957 + posY: 1.693525 + posZ: 15.1900072 + rotX: 359.9201 + rotY: 269.997284 + rotZ: 180.016861 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Outsider 3c175c/Bag Part 3 d166f2/Card the Castle 712716.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Outsider 3c175c/Bag Part 3 d166f2/Card the Castle 712716.yaml new file mode 100644 index 000000000..076e0b7c2 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Outsider 3c175c/Bag Part 3 d166f2/Card the Castle 712716.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 154824 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '1548': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359987171/5B8E62D3E35AB18D51DB409507BC7B1A3682FF4E/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359988993/6A0F93A4E591541DB289AF42DA881D5B7C28FA88/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: the Outsider +GMNotes: '' +GUID: '712716' +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: the Castle +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -17.120079 + posY: 1.67764223 + posZ: -7.70001745 + rotX: 359.9201 + rotY: 269.983032 + rotZ: 180.016891 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Outsider 3c175c/Bag Part 3 d166f2/Custom_Tile 1c6fa6.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Outsider 3c175c/Bag Part 3 d166f2/Custom_Tile 1c6fa6.yaml new file mode 100644 index 000000000..e4366c99a --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Outsider 3c175c/Bag Part 3 d166f2/Custom_Tile 1c6fa6.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 1c6fa6 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.4922771 + posY: 1.60783887 + posZ: -7.595531 + rotX: 359.9201 + rotY: 269.994659 + rotZ: 0.0169149153 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Outsider 3c175c/Bag Part 3 d166f2/Custom_Tile 3c4916.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Outsider 3c175c/Bag Part 3 d166f2/Custom_Tile 3c4916.yaml new file mode 100644 index 000000000..4a620fa87 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Outsider 3c175c/Bag Part 3 d166f2/Custom_Tile 3c4916.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 3c4916 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Tile +Nickname: '' +Snap: true +States: + '1': + 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: '' + GMNotes: '' + GUID: d72fce + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Custom_Tile + Nickname: '' + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -25.32461 + posY: 1.61785316 + posZ: 3.52895617 + rotX: 359.983124 + rotY: 9.226916e-05 + rotZ: 359.920044 + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: -24.67792 + posY: 1.61691165 + posZ: 3.39412355 + rotX: 359.983124 + rotY: 0.000176840418 + rotZ: 359.920044 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Outsider 3c175c/Bag Part 3 d166f2/Custom_Tile 44b0c5.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Outsider 3c175c/Bag Part 3 d166f2/Custom_Tile 44b0c5.yaml new file mode 100644 index 000000000..90a877892 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Outsider 3c175c/Bag Part 3 d166f2/Custom_Tile 44b0c5.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 44b0c5 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Tile +Nickname: '' +Snap: true +States: + '1': + 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: '' + GMNotes: '' + GUID: 21db6a + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Custom_Tile + Nickname: '' + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -20.4579411 + posY: 1.61218321 + posZ: 7.320965 + rotX: 359.9201 + rotY: 269.994354 + rotZ: 0.0169074778 + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.1403484 + posY: 1.6227051 + posZ: 11.40789 + rotX: 0.0253418237 + rotY: 29.9999428 + rotZ: 359.922363 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Outsider 3c175c/Bag Part 3 d166f2/Custom_Tile 49a48d.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Outsider 3c175c/Bag Part 3 d166f2/Custom_Tile 49a48d.yaml new file mode 100644 index 000000000..52361cdb1 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Outsider 3c175c/Bag Part 3 d166f2/Custom_Tile 49a48d.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 49a48d +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.4559784 + posY: 1.61326516 + posZ: 11.0038671 + rotX: 359.945435 + rotY: 330.0001 + rotZ: 359.9392 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Outsider 3c175c/Bag Part 3 d166f2/Custom_Tile 4ffff6.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Outsider 3c175c/Bag Part 3 d166f2/Custom_Tile 4ffff6.yaml new file mode 100644 index 000000000..9cf982696 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Outsider 3c175c/Bag Part 3 d166f2/Custom_Tile 4ffff6.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 4ffff6 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.6764526 + posY: 1.61338806 + posZ: -3.83001566 + rotX: 359.983124 + rotY: 1.95497723e-05 + rotZ: 359.920074 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Outsider 3c175c/Bag Part 3 d166f2/Custom_Tile 7234af.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Outsider 3c175c/Bag Part 3 d166f2/Custom_Tile 7234af.yaml new file mode 100644 index 000000000..de2bde2c0 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Outsider 3c175c/Bag Part 3 d166f2/Custom_Tile 7234af.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 7234af +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.2756824 + posY: 1.60973024 + posZ: -0.146896273 + rotX: 359.9201 + rotY: 269.994629 + rotZ: 0.016912071 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Outsider 3c175c/Bag Part 3 d166f2/Custom_Tile 87ca77.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Outsider 3c175c/Bag Part 3 d166f2/Custom_Tile 87ca77.yaml new file mode 100644 index 000000000..23145088d --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Outsider 3c175c/Bag Part 3 d166f2/Custom_Tile 87ca77.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 87ca77 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: -19.4345665 + posY: 1.60742629 + posZ: -3.98815918 + rotX: 0.04456554 + rotY: 44.9997749 + rotZ: 359.9316 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Outsider 3c175c/Bag Part 3 d166f2/Custom_Tile c98d4d.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Outsider 3c175c/Bag Part 3 d166f2/Custom_Tile c98d4d.yaml new file mode 100644 index 000000000..0eb403a27 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Outsider 3c175c/Bag Part 3 d166f2/Custom_Tile c98d4d.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: c98d4d +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.1750088 + posY: 1.62158275 + posZ: 7.432746 + rotX: 0.07988485 + rotY: 89.96785 + rotZ: 359.983063 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Outsider 3c175c/Bag Part 3 d166f2/Custom_Tile d21dcc.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Outsider 3c175c/Bag Part 3 d166f2/Custom_Tile d21dcc.yaml new file mode 100644 index 000000000..98404cff8 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Outsider 3c175c/Bag Part 3 d166f2/Custom_Tile d21dcc.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: d21dcc +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.1199379 + posY: 1.60424542 + posZ: -3.83001614 + rotX: 359.983124 + rotY: -4.07268544e-06 + rotZ: 359.920044 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Outsider 3c175c/Bag Part 3 d166f2/Custom_Tile dd44d6.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Outsider 3c175c/Bag Part 3 d166f2/Custom_Tile dd44d6.yaml new file mode 100644 index 000000000..5a3eb2f6f --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Outsider 3c175c/Bag Part 3 d166f2/Custom_Tile dd44d6.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: dd44d6 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: -28.2991924 + posY: 1.62187 + posZ: 3.0842 + rotX: 359.93158 + rotY: 315.010437 + rotZ: 359.9554 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Outsider 3c175c/Bag Part 3 d166f2/Custom_Tile e37679.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Outsider 3c175c/Bag Part 3 d166f2/Custom_Tile e37679.yaml new file mode 100644 index 000000000..dc873ab1d --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Outsider 3c175c/Bag Part 3 d166f2/Custom_Tile e37679.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: e37679 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.89881 + posY: 1.61280048 + posZ: 7.32950735 + rotX: 359.9201 + rotY: 270.033325 + rotZ: 0.0168516263 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Outsider 3c175c/Bag Part 3 d166f2/Custom_Tile e98e39.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Outsider 3c175c/Bag Part 3 d166f2/Custom_Tile e98e39.yaml new file mode 100644 index 000000000..8d8f07405 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Outsider 3c175c/Bag Part 3 d166f2/Custom_Tile e98e39.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: e98e39 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: -21.6664886 + posY: 1.61084187 + posZ: -2.95869946 + rotX: 359.9316 + rotY: 315.032318 + rotZ: 359.955383 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Outsider 3c175c/Bag Part 3 d166f2/Deck f56146.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Outsider 3c175c/Bag Part 3 d166f2/Deck f56146.yaml new file mode 100644 index 000000000..a15487dbf --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Outsider 3c175c/Bag Part 3 d166f2/Deck f56146.yaml @@ -0,0 +1,229 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 154433 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1544': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359987171/5B8E62D3E35AB18D51DB409507BC7B1A3682FF4E/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359988993/6A0F93A4E591541DB289AF42DA881D5B7C28FA88/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: f47c0d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -12.3745613 + posY: 1.6711545 + posZ: 2.56633782 + rotX: 359.9208 + rotY: 269.9807 + rotZ: 0.0121535463 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 154523 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1545': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359987171/5B8E62D3E35AB18D51DB409507BC7B1A3682FF4E/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359988993/6A0F93A4E591541DB289AF42DA881D5B7C28FA88/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 6c39c6 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -11.902524 + posY: 1.81593847 + posZ: 2.36670756 + rotX: 359.9371 + rotY: 269.996368 + rotZ: 0.00436077127 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 154522 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1545': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359987171/5B8E62D3E35AB18D51DB409507BC7B1A3682FF4E/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359988993/6A0F93A4E591541DB289AF42DA881D5B7C28FA88/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: d78a6c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -11.7592878 + posY: 1.81853557 + posZ: -0.799635947 + rotX: 359.9249 + rotY: 269.9922 + rotZ: 179.867264 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 221 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359987171/5B8E62D3E35AB18D51DB409507BC7B1A3682FF4E/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359988993/6A0F93A4E591541DB289AF42DA881D5B7C28FA88/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 74c0a6 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -11.8046265 + posY: 1.67212451 + posZ: -0.899742365 + rotX: 359.921082 + rotY: 269.996063 + rotZ: 180.02243 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '1544': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359987171/5B8E62D3E35AB18D51DB409507BC7B1A3682FF4E/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359988993/6A0F93A4E591541DB289AF42DA881D5B7C28FA88/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + '1545': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359987171/5B8E62D3E35AB18D51DB409507BC7B1A3682FF4E/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359988993/6A0F93A4E591541DB289AF42DA881D5B7C28FA88/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + '2': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359987171/5B8E62D3E35AB18D51DB409507BC7B1A3682FF4E/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359988993/6A0F93A4E591541DB289AF42DA881D5B7C28FA88/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 154433 +- 154523 +- 154522 +- 221 +Description: '' +GMNotes: '' +GUID: f56146 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -12.3745632 + posY: 1.66926217 + posZ: 2.566329 + rotX: 359.9201 + rotY: 269.980621 + rotZ: 0.0169037469 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Outsider 3c175c/Bag Part 3 d166f2/Deck Act deck 17db9c.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Outsider 3c175c/Bag Part 3 d166f2/Deck Act deck 17db9c.yaml new file mode 100644 index 000000000..45e021ae0 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Outsider 3c175c/Bag Part 3 d166f2/Deck Act deck 17db9c.yaml @@ -0,0 +1,169 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 113 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359989415/95849B1329E5D61949208055685311A857943F9A/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359990290/453BEFA063ABAF49DEA5969D8A770DA8AFD998BE/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 9e4ebf + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.33991623 + posY: 1.031547 + posZ: 2.87128663 + rotX: 0.00748157362 + rotY: 179.999817 + rotZ: 0.00116611971 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 112 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359989415/95849B1329E5D61949208055685311A857943F9A/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359990290/453BEFA063ABAF49DEA5969D8A770DA8AFD998BE/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 56cb67 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.51711249 + posY: 1.16985834 + posZ: 3.23136926 + rotX: -0.00378883444 + rotY: 179.999634 + rotZ: 0.00158316968 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 111 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359989415/95849B1329E5D61949208055685311A857943F9A/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359990290/453BEFA063ABAF49DEA5969D8A770DA8AFD998BE/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 0c2c5c + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -1.98362947 + posY: 1.18769562 + posZ: 2.77151585 + rotX: 0.002424594 + rotY: 179.999985 + rotZ: 0.000519462163 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359989415/95849B1329E5D61949208055685311A857943F9A/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359990290/453BEFA063ABAF49DEA5969D8A770DA8AFD998BE/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 113 +- 112 +- 111 +Description: the Outsider part 3 +GMNotes: '' +GUID: 17db9c +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Act deck +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.68865561 + posY: 1.65499616 + posZ: -5.053431 + rotX: 359.919739 + rotY: 269.987976 + rotZ: 0.0168540161 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Outsider 3c175c/Bag Part 3 d166f2/Deck Agenda 85162c.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Outsider 3c175c/Bag Part 3 d166f2/Deck Agenda 85162c.yaml new file mode 100644 index 000000000..cf59d853c --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Outsider 3c175c/Bag Part 3 d166f2/Deck Agenda 85162c.yaml @@ -0,0 +1,169 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 116 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359989415/95849B1329E5D61949208055685311A857943F9A/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359990290/453BEFA063ABAF49DEA5969D8A770DA8AFD998BE/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 9e4ebf + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.21858048 + posY: 1.03153026 + posZ: 3.77294755 + rotX: 0.00295294169 + rotY: 179.984634 + rotZ: 0.0008099929 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 115 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359989415/95849B1329E5D61949208055685311A857943F9A/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359990290/453BEFA063ABAF49DEA5969D8A770DA8AFD998BE/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 9a75dc + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.18357635 + posY: 1.17533815 + posZ: 3.70082855 + rotX: 359.987427 + rotY: 180.012955 + rotZ: 0.004587063 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 114 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359989415/95849B1329E5D61949208055685311A857943F9A/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359990290/453BEFA063ABAF49DEA5969D8A770DA8AFD998BE/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 9e4ebf + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.1260438 + posY: 1.18765831 + posZ: 3.78321886 + rotX: 0.00131821248 + rotY: 180.001266 + rotZ: 0.00169022812 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '1': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359989415/95849B1329E5D61949208055685311A857943F9A/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359990290/453BEFA063ABAF49DEA5969D8A770DA8AFD998BE/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 116 +- 115 +- 114 +Description: the Outsider part 3 +GMNotes: '' +GUID: 85162c +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Agenda +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.72478 + posY: 1.656642 + posZ: 0.375969738 + rotX: 359.919739 + rotY: 269.97467 + rotZ: 0.0168726314 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Outsider 3c175c/Bag Part 3 d166f2/Deck Set Aside a890ff.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Outsider 3c175c/Bag Part 3 d166f2/Deck Set Aside a890ff.yaml new file mode 100644 index 000000000..8c4348f1e --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Outsider 3c175c/Bag Part 3 d166f2/Deck Set Aside a890ff.yaml @@ -0,0 +1,176 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 154924 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359991078/91AE8AEEBDD48D6B589702370C079CAF11E37249/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: ad42fd + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 5.52606964 + posY: 1.03158975 + posZ: -3.07410669 + rotX: 0.00551939569 + rotY: 180.000214 + rotZ: 0.00176182133 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 154925 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359991078/91AE8AEEBDD48D6B589702370C079CAF11E37249/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: f86072 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 5.435164 + posY: 1.1698184 + posZ: -3.1220057 + rotX: -0.001995505 + rotY: 179.999756 + rotZ: 359.989716 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 332 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '3': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359987171/5B8E62D3E35AB18D51DB409507BC7B1A3682FF4E/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359988993/6A0F93A4E591541DB289AF42DA881D5B7C28FA88/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: c306c0 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 5.2511363 + posY: 1.1878953 + posZ: -3.20016718 + rotX: 359.9911 + rotY: 180.000381 + rotZ: -0.00321278977 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '1549': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359991078/91AE8AEEBDD48D6B589702370C079CAF11E37249/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '3': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359987171/5B8E62D3E35AB18D51DB409507BC7B1A3682FF4E/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359988993/6A0F93A4E591541DB289AF42DA881D5B7C28FA88/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 154924 +- 154925 +- 332 +Description: the Outsider +GMNotes: '' +GUID: a890ff +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Set Aside +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 1.69709575 + posY: 1.65453708 + posZ: 14.290926 + rotX: 359.955078 + rotY: 225.064209 + rotZ: 0.06860225 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Outsider 3c175c/Bag Part 3 d166f2/DeckCustom Encounter deck 81cfd0.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Outsider 3c175c/Bag Part 3 d166f2/DeckCustom Encounter deck 81cfd0.yaml new file mode 100644 index 000000000..7f8333033 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Outsider 3c175c/Bag Part 3 d166f2/DeckCustom Encounter deck 81cfd0.yaml @@ -0,0 +1,848 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 154626 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: ad42fd + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.09409654e-06 + posY: 1.04493368 + posZ: 8.31211651e-07 + rotX: 1.451921e-07 + rotY: 179.999924 + rotZ: 180.0001 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 154627 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: ad42fd + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.09409654e-06 + posY: 1.04493368 + posZ: 8.31211651e-07 + rotX: 1.451921e-07 + rotY: 179.999924 + rotZ: 180.0001 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 154628 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: ad42fd + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.09409654e-06 + posY: 1.04493368 + posZ: 8.31211651e-07 + rotX: 1.451921e-07 + rotY: 179.999924 + rotZ: 180.0001 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 154629 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: ad42fd + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.09409654e-06 + posY: 1.04493368 + posZ: 8.31211651e-07 + rotX: 1.451921e-07 + rotY: 179.999924 + rotZ: 180.0001 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 154630 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: ad42fd + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.09409654e-06 + posY: 1.04493368 + posZ: 8.31211651e-07 + rotX: 1.451921e-07 + rotY: 179.999924 + rotZ: 180.0001 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 154631 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: ad42fd + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.09409654e-06 + posY: 1.04493368 + posZ: 8.31211651e-07 + rotX: 1.451921e-07 + rotY: 179.999924 + rotZ: 180.0001 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 154632 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: ad42fd + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.09409654e-06 + posY: 1.04493368 + posZ: 8.31211651e-07 + rotX: 1.451921e-07 + rotY: 179.999924 + rotZ: 180.0001 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 154633 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: ad42fd + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.09409654e-06 + posY: 1.04493368 + posZ: 8.31211651e-07 + rotX: 1.451921e-07 + rotY: 179.999924 + rotZ: 180.0001 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 154634 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: ad42fd + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.09409654e-06 + posY: 1.04493368 + posZ: 8.31211651e-07 + rotX: 1.451921e-07 + rotY: 179.999924 + rotZ: 180.0001 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 154635 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: ad42fd + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.09409654e-06 + posY: 1.04493368 + posZ: 8.31211651e-07 + rotX: 1.451921e-07 + rotY: 179.999924 + rotZ: 180.0001 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 154636 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: ad42fd + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.09409654e-06 + posY: 1.04493368 + posZ: 8.31211651e-07 + rotX: 1.451921e-07 + rotY: 179.999924 + rotZ: 180.0001 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 154637 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: ad42fd + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.09409654e-06 + posY: 1.04493368 + posZ: 8.31211651e-07 + rotX: 1.451921e-07 + rotY: 179.999924 + rotZ: 180.0001 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 154638 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: ad42fd + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.09409654e-06 + posY: 1.04493368 + posZ: 8.31211651e-07 + rotX: 1.451921e-07 + rotY: 179.999924 + rotZ: 180.0001 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 154639 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: ad42fd + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.09409654e-06 + posY: 1.04493368 + posZ: 8.31211651e-07 + rotX: 1.451921e-07 + rotY: 179.999924 + rotZ: 180.0001 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 154640 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: ad42fd + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.09409654e-06 + posY: 1.04493368 + posZ: 8.31211651e-07 + rotX: 1.451921e-07 + rotY: 179.999924 + rotZ: 180.0001 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 154641 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: ad42fd + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.09409654e-06 + posY: 1.04493368 + posZ: 8.31211651e-07 + rotX: 1.451921e-07 + rotY: 179.999924 + rotZ: 180.0001 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 154642 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: ad42fd + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.09409654e-06 + posY: 1.04493368 + posZ: 8.31211651e-07 + rotX: 1.451921e-07 + rotY: 179.999924 + rotZ: 180.0001 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 154643 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: ad42fd + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.09409654e-06 + posY: 1.04493368 + posZ: 8.31211651e-07 + rotX: 1.451921e-07 + rotY: 179.999924 + rotZ: 180.0001 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 154644 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: ad42fd + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.09409654e-06 + posY: 1.04493368 + posZ: 8.31211651e-07 + rotX: 1.451921e-07 + rotY: 179.999924 + rotZ: 180.0001 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 154645 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: ad42fd + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.09409654e-06 + posY: 1.04493368 + posZ: 8.31211651e-07 + rotX: 1.451921e-07 + rotY: 179.999924 + rotZ: 180.0001 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 154646 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: ad42fd + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.09409654e-06 + posY: 1.04493368 + posZ: 8.31211651e-07 + rotX: 1.451921e-07 + rotY: 179.999924 + rotZ: 180.0001 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 154647 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: ad42fd + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.09409654e-06 + posY: 1.04493368 + posZ: 8.31211651e-07 + rotX: 1.451921e-07 + rotY: 179.999924 + rotZ: 180.0001 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 154648 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + ContainedObjects: [] + Description: '' + GMNotes: '' + GUID: ad42fd + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.09409654e-06 + posY: 1.04493368 + posZ: 8.31211651e-07 + rotX: 1.451921e-07 + rotY: 179.999924 + rotZ: 180.0001 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '1546': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359991078/91AE8AEEBDD48D6B589702370C079CAF11E37249/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 154626 +- 154627 +- 154628 +- 154629 +- 154630 +- 154631 +- 154632 +- 154633 +- 154634 +- 154635 +- 154636 +- 154637 +- 154638 +- 154639 +- 154640 +- 154641 +- 154642 +- 154643 +- 154644 +- 154645 +- 154646 +- 154647 +- 154648 +Description: the Outsider part 3 +GMNotes: '' +GUID: 81cfd0 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: DeckCustom +Nickname: Encounter deck +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.927513 + posY: 1.73440337 + posZ: 5.757102 + rotX: 359.919739 + rotY: 269.990356 + rotZ: 180.01683 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Outsider 3c175c/Custom_Tile The Outsider d5b06c.ttslua b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Outsider 3c175c/Custom_Tile The Outsider d5b06c.ttslua new file mode 100644 index 000000000..9686b0f8a --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Outsider 3c175c/Custom_Tile The Outsider d5b06c.ttslua @@ -0,0 +1,21 @@ +name = 'The Outsider' + +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 The Side Missions 791837/Custom_Model_Bag The Outsider 3c175c/Custom_Tile The Outsider d5b06c.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Outsider 3c175c/Custom_Tile The Outsider d5b06c.yaml new file mode 100644 index 000000000..023cdb7b0 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Outsider 3c175c/Custom_Tile The Outsider d5b06c.yaml @@ -0,0 +1,42 @@ +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 +GMNotes: '' +GUID: d5b06c +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Tile The Outsider d5b06c.ttslua' +LuaScriptState: '' +Name: Custom_Tile +Nickname: The Outsider +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -4.354503 + posY: 1.58328307 + posZ: -14.5585928 + rotX: 359.919739 + rotY: 270.001617 + rotZ: 0.0168362018 + scaleX: 2.2 + scaleY: 1.0 + scaleZ: 2.2 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Pensher Wyrm 504f38.ttslua b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Pensher Wyrm 504f38.ttslua new file mode 100644 index 000000000..46067f58e --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Pensher Wyrm 504f38.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.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.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 791837/Custom_Model_Bag The Pensher Wyrm 504f38.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Pensher Wyrm 504f38.yaml new file mode 100644 index 000000000..00582f7e6 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Pensher Wyrm 504f38.yaml @@ -0,0 +1,77 @@ +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 Pensher Wyrm 504f38/Card Robert Wallen 0251e6.yaml' +- !include 'Custom_Model_Bag The Pensher Wyrm 504f38/Deck Agenda Deck 04fdb8.yaml' +- !include 'Custom_Model_Bag The Pensher Wyrm 504f38/Deck Setup 07bfca.yaml' +- !include 'Custom_Model_Bag The Pensher Wyrm 504f38/Card Tea Rooms 1ae75c.yaml' +- !include 'Custom_Model_Bag The Pensher Wyrm 504f38/Card Scenario 22cf16.yaml' +- !include 'Custom_Model_Bag The Pensher Wyrm 504f38/Card 336335.yaml' +- !include 'Custom_Model_Bag The Pensher Wyrm 504f38/Card Scenario 3cf9b8.yaml' +- !include 'Custom_Model_Bag The Pensher Wyrm 504f38/Custom_Tile 7234af.yaml' +- !include 'Custom_Model_Bag The Pensher Wyrm 504f38/Deck Act Deck 909b6f.yaml' +- !include 'Custom_Model_Bag The Pensher Wyrm 504f38/Custom_Model_Bag Set-aside a45247.yaml' +- !include 'Custom_Model_Bag The Pensher Wyrm 504f38/Card afc427.yaml' +- !include 'Custom_Model_Bag The Pensher Wyrm 504f38/Card Train Station b93ec9.yaml' +- !include 'Custom_Model_Bag The Pensher Wyrm 504f38/Custom_Tile The Pensher Wyrm + c606a1.yaml' +- !include 'Custom_Model_Bag The Pensher Wyrm 504f38/Deck Encounter Deck d37670.yaml' +- !include 'Custom_Model_Bag The Pensher Wyrm 504f38/Card e28e5b.yaml' +- !include 'Custom_Model_Bag The Pensher Wyrm 504f38/Card Main Street eb6cf0.yaml' +- !include 'Custom_Model_Bag The Pensher Wyrm 504f38/Custom_Tile f0dbb0.yaml' +CustomMesh: + CastShadows: true + ColliderURL: '' + Convex: true + DiffuseURL: http://cloud-3.steamusercontent.com/ugc/798737729142945578/6BA34FBD61F7AD38DE8B2B9E5D5F067406B7CC77/ + MaterialIndex: 3 + MeshURL: https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj + NormalURL: '' + TypeIndex: 6 +Description: '' +GMNotes: '' +GUID: 504f38 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Model_Bag The Pensher Wyrm 504f38.ttslua' +LuaScriptState: '{"ml":{"0251e6":{"lock":false,"pos":{"x":-58.7691,"y":1.7417,"z":22.2313},"rot":{"x":359.9201,"y":269.9973,"z":0.0169}},"04fdb8":{"lock":false,"pos":{"x":-2.7247,"y":1.6551,"z":0.3733},"rot":{"x":359.9197,"y":270.0046,"z":0.0168}},"07bfca":{"lock":false,"pos":{"x":-11.1535,"y":1.6509,"z":1.3602},"rot":{"x":359.9201,"y":269.9977,"z":0.0169}},"1ae75c":{"lock":false,"pos":{"x":-23.6765,"y":1.684,"z":-7.7},"rot":{"x":359.9201,"y":269.9961,"z":0.0169}},"22cf16":{"lock":false,"pos":{"x":-3.956,"y":1.6556,"z":-10.4412},"rot":{"x":359.9197,"y":269.9969,"z":0.0168}},"336335":{"lock":false,"pos":{"x":-23.6765,"y":1.6828,"z":-11.51},"rot":{"x":359.9201,"y":269.9848,"z":0.0169}},"3cf9b8":{"lock":false,"pos":{"x":-50.9244,"y":1.7266,"z":8.1784},"rot":{"x":359.9201,"y":269.9969,"z":0.0169}},"7234af":{"lock":false,"pos":{"x":-20.5194,"y":1.6101,"z":-0.0446},"rot":{"x":359.9201,"y":270.0053,"z":0.0169}},"909b6f":{"lock":false,"pos":{"x":-2.6885,"y":1.6535,"z":-5.0485},"rot":{"x":359.9197,"y":270.0029,"z":0.0168}},"a45247":{"lock":false,"pos":{"x":1.6951,"y":1.5583,"z":14.2794},"rot":{"x":359.9551,"y":224.998,"z":0.0687}},"afc427":{"lock":false,"pos":{"x":-23.6764,"y":1.6874,"z":3.86},"rot":{"x":359.9201,"y":269.9971,"z":0.0169}},"b93ec9":{"lock":false,"pos":{"x":-17.1199,"y":1.6771,"z":-0.03},"rot":{"x":359.9201,"y":269.9976,"z":0.0169}},"c606a1":{"lock":false,"pos":{"x":-4.0681,"y":1.5827,"z":-15.3226},"rot":{"x":359.9197,"y":270.0012,"z":0.0168}},"d37670":{"lock":false,"pos":{"x":-3.9277,"y":1.6705,"z":5.7572},"rot":{"x":359.9197,"y":270.0103,"z":180.0168}},"e28e5b":{"lock":false,"pos":{"x":-17.1199,"y":1.6782,"z":3.86},"rot":{"x":359.9201,"y":269.9969,"z":0.0169}},"eb6cf0":{"lock":false,"pos":{"x":-23.6765,"y":1.6862,"z":-0.03},"rot":{"x":359.9201,"y":269.9966,"z":0.0169}},"f0dbb0":{"lock":false,"pos":{"x":-23.6765,"y":1.6134,"z":-3.83},"rot":{"x":359.9832,"y":0.0155,"z":359.92}}}}' +MaterialIndex: -1 +MeshIndex: -1 +Name: Custom_Model_Bag +Nickname: The Pensher Wyrm +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 8.809473 + posY: 2.51142883 + posZ: -42.5189552 + rotX: 359.983246 + rotY: 269.999969 + rotZ: 0.00353650819 + scaleX: 2.21 + scaleY: 0.2 + scaleZ: 2.46 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Pensher Wyrm 504f38/Card 336335.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Pensher Wyrm 504f38/Card 336335.yaml new file mode 100644 index 000000000..c384e3ac2 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Pensher Wyrm 504f38/Card 336335.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 262718 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2627': + BackIsHidden: true + BackURL: https://i.imgur.com/njBomd9.jpg + FaceURL: https://i.imgur.com/FxLS0Db.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: '336335' +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -23.6765 + posY: 1.68284 + posZ: -11.5100021 + rotX: 359.9201 + rotY: 269.9848 + rotZ: 0.0168955512 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Pensher Wyrm 504f38/Card afc427.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Pensher Wyrm 504f38/Card afc427.yaml new file mode 100644 index 000000000..166c930fa --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Pensher Wyrm 504f38/Card afc427.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 262718 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2627': + BackIsHidden: true + BackURL: https://i.imgur.com/njBomd9.jpg + FaceURL: https://i.imgur.com/FxLS0Db.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: afc427 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -23.6764 + posY: 1.68736565 + posZ: 3.86000013 + rotX: 359.9201 + rotY: 269.99707 + rotZ: 0.0168804582 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Pensher Wyrm 504f38/Card e28e5b.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Pensher Wyrm 504f38/Card e28e5b.yaml new file mode 100644 index 000000000..46235dbb0 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Pensher Wyrm 504f38/Card e28e5b.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 262718 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2627': + BackIsHidden: true + BackURL: https://i.imgur.com/njBomd9.jpg + FaceURL: https://i.imgur.com/FxLS0Db.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: e28e5b +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -17.1199 + posY: 1.678223 + posZ: 3.86000013 + rotX: 359.9201 + rotY: 269.996857 + rotZ: 0.0168805551 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Pensher Wyrm 504f38/Card Main Street eb6cf0.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Pensher Wyrm 504f38/Card Main Street eb6cf0.yaml new file mode 100644 index 000000000..a44fe8755 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Pensher Wyrm 504f38/Card Main Street eb6cf0.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 262703 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2627': + BackIsHidden: true + BackURL: https://i.imgur.com/njBomd9.jpg + FaceURL: https://i.imgur.com/FxLS0Db.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: true +Description: Pensher +GMNotes: '' +GUID: eb6cf0 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Main Street +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -23.6765 + posY: 1.68622041 + posZ: -0.03000054 + rotX: 359.9201 + rotY: 269.996552 + rotZ: 0.0168811288 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Pensher Wyrm 504f38/Card Robert Wallen 0251e6.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Pensher Wyrm 504f38/Card Robert Wallen 0251e6.yaml new file mode 100644 index 000000000..b5775f1a3 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Pensher Wyrm 504f38/Card Robert Wallen 0251e6.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 262721 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2627': + BackIsHidden: true + BackURL: https://i.imgur.com/njBomd9.jpg + FaceURL: https://i.imgur.com/FxLS0Db.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: true +Description: Convalescing Gentleman +GMNotes: '' +GUID: 0251e6 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Robert Wallen +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -58.7691 + posY: 1.74170065 + posZ: 22.2313 + rotX: 359.9201 + rotY: 269.9972 + rotZ: 0.0168799162 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Pensher Wyrm 504f38/Card Scenario 22cf16.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Pensher Wyrm 504f38/Card Scenario 22cf16.yaml new file mode 100644 index 000000000..c5aebc75c --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Pensher Wyrm 504f38/Card Scenario 22cf16.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 262702 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2627': + BackIsHidden: true + BackURL: https://i.imgur.com/njBomd9.jpg + FaceURL: https://i.imgur.com/FxLS0Db.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 22cf16 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Scenario +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.95600057 + posY: 1.65564823 + posZ: -10.4412012 + rotX: 359.919739 + rotY: 269.9969 + rotZ: 0.0168453325 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Pensher Wyrm 504f38/Card Scenario 3cf9b8.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Pensher Wyrm 504f38/Card Scenario 3cf9b8.yaml new file mode 100644 index 000000000..2479c2379 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Pensher Wyrm 504f38/Card Scenario 3cf9b8.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 262702 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2627': + BackIsHidden: true + BackURL: https://i.imgur.com/njBomd9.jpg + FaceURL: https://i.imgur.com/FxLS0Db.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 3cf9b8 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Scenario +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -50.9244 + posY: 1.72662532 + posZ: 8.178399 + rotX: 359.9201 + rotY: 269.9969 + rotZ: 0.0168804638 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Pensher Wyrm 504f38/Card Tea Rooms 1ae75c.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Pensher Wyrm 504f38/Card Tea Rooms 1ae75c.yaml new file mode 100644 index 000000000..b4e122ec9 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Pensher Wyrm 504f38/Card Tea Rooms 1ae75c.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 262704 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2627': + BackIsHidden: true + BackURL: https://i.imgur.com/njBomd9.jpg + FaceURL: https://i.imgur.com/FxLS0Db.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: true +Description: Pensher +GMNotes: '' +GUID: 1ae75c +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Tea Rooms +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -23.6765 + posY: 1.68396187 + posZ: -7.70000029 + rotX: 359.9201 + rotY: 269.996063 + rotZ: 0.0168817043 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Pensher Wyrm 504f38/Card Train Station b93ec9.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Pensher Wyrm 504f38/Card Train Station b93ec9.yaml new file mode 100644 index 000000000..6b77a8a6e --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Pensher Wyrm 504f38/Card Train Station b93ec9.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 262707 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2627': + BackIsHidden: true + BackURL: https://i.imgur.com/njBomd9.jpg + FaceURL: https://i.imgur.com/FxLS0Db.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: true +Description: Pensher +GMNotes: '' +GUID: b93ec9 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Train Station +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -17.1198978 + posY: 1.67707765 + posZ: -0.03000014 + rotX: 359.9201 + rotY: 269.99765 + rotZ: 0.0168803148 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Pensher Wyrm 504f38/Custom_Model_Bag Set-aside a45247.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Pensher Wyrm 504f38/Custom_Model_Bag Set-aside a45247.yaml new file mode 100644 index 000000000..4a67a0eb1 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Pensher Wyrm 504f38/Custom_Model_Bag Set-aside a45247.yaml @@ -0,0 +1,66 @@ +Autoraise: true +ColorDiffuse: + b: 0.02148666 + g: 0.00100758043 + r: 0.02148666 +ContainedObjects: +- !include 'Custom_Model_Bag Set-aside a45247/Card The Pensher Wyrm 16a8e0.yaml' +- !include 'Custom_Model_Bag Set-aside a45247/Card Pit Foreman e998cb.yaml' +- !include 'Custom_Model_Bag Set-aside a45247/Card Mad Cultist debae4.yaml' +- !include 'Custom_Model_Bag Set-aside a45247/Card Black Obsidian Statue 1b170f.yaml' +- !include 'Custom_Model_Bag Set-aside a45247/Card John Lambton 743487.yaml' +- !include 'Custom_Model_Bag Set-aside a45247/Card Wear River d5b3a4.yaml' +- !include 'Custom_Model_Bag Set-aside a45247/Card Pensher Hill 8f0d2d.yaml' +- !include 'Custom_Model_Bag Set-aside a45247/Deck Mines 2e28c6.yaml' +- !include 'Custom_Model_Bag Set-aside a45247/Deck Down in the Mines 6668d9.yaml' +- !include 'Custom_Model_Bag Set-aside a45247/Deck Miners ed57c8.yaml' +- !include 'Custom_Model_Bag Set-aside a45247/Deck Rats 509a9d.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: '' +GMNotes: '' +GUID: a45247 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +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.69510055 + posY: 1.55831933 + posZ: 14.2794027 + rotX: 359.955139 + rotY: 224.998062 + rotZ: 0.06867421 + scaleX: 2.0 + scaleY: 2.0 + scaleZ: 2.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag The Pensher Wyrm 504f38/Custom_Model_Bag Set-aside a45247/Card Black Obsidian Statue 1b170f.yaml new file mode 100644 index 000000000..d0e241d59 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Pensher Wyrm 504f38/Custom_Model_Bag Set-aside a45247/Card Black Obsidian Statue 1b170f.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 262720 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2627': + BackIsHidden: true + BackURL: https://i.imgur.com/njBomd9.jpg + FaceURL: https://i.imgur.com/FxLS0Db.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: true +Description: Asset +GMNotes: '' +GUID: 1b170f +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Black Obsidian Statue +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -35.22733 + posY: 3.40951538 + posZ: -86.71051 + rotX: 0.0191414263 + rotY: 269.999664 + rotZ: 0.01739772 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag The Pensher Wyrm 504f38/Custom_Model_Bag Set-aside a45247/Card John Lambton 743487.yaml new file mode 100644 index 000000000..1460c9a01 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Pensher Wyrm 504f38/Custom_Model_Bag Set-aside a45247/Card John Lambton 743487.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 262722 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2627': + BackIsHidden: true + BackURL: https://i.imgur.com/njBomd9.jpg + FaceURL: https://i.imgur.com/FxLS0Db.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: true +Description: Cursed Miner +GMNotes: '' +GUID: '743487' +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: John Lambton +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -35.4098167 + posY: 3.31326365 + posZ: -81.06166 + rotX: 0.0208074022 + rotY: 270.00177 + rotZ: 0.016774999 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag The Pensher Wyrm 504f38/Custom_Model_Bag Set-aside a45247/Card Mad Cultist debae4.yaml new file mode 100644 index 000000000..4a7d57dca --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Pensher Wyrm 504f38/Custom_Model_Bag Set-aside a45247/Card Mad Cultist debae4.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 262717 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2627': + BackIsHidden: true + BackURL: https://i.imgur.com/njBomd9.jpg + FaceURL: https://i.imgur.com/FxLS0Db.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: true +Description: Cultist. Elite. +GMNotes: '' +GUID: debae4 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Mad Cultist +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -31.8245525 + posY: 3.31294513 + posZ: -86.5775146 + rotX: 0.0208141 + rotY: 269.979584 + rotZ: 0.01676552 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag The Pensher Wyrm 504f38/Custom_Model_Bag Set-aside a45247/Card Pensher Hill 8f0d2d.yaml new file mode 100644 index 000000000..92c90e118 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Pensher Wyrm 504f38/Custom_Model_Bag Set-aside a45247/Card Pensher Hill 8f0d2d.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 262700 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2627': + BackIsHidden: true + BackURL: https://i.imgur.com/njBomd9.jpg + FaceURL: https://i.imgur.com/FxLS0Db.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 8f0d2d +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Pensher Hill +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -35.8698463 + posY: 3.41195536 + posZ: -87.47716 + rotX: 0.0203451961 + rotY: 270.000244 + rotZ: 180.016342 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag The Pensher Wyrm 504f38/Custom_Model_Bag Set-aside a45247/Card Pit Foreman e998cb.yaml new file mode 100644 index 000000000..69aa0f62e --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Pensher Wyrm 504f38/Custom_Model_Bag Set-aside a45247/Card Pit Foreman e998cb.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 262719 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2627': + BackIsHidden: true + BackURL: https://i.imgur.com/njBomd9.jpg + FaceURL: https://i.imgur.com/FxLS0Db.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: true +Description: Miner. Elite. +GMNotes: '' +GUID: e998cb +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Pit Foreman +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -28.2124214 + posY: 3.31423068 + posZ: -86.66767 + rotX: 0.0208140854 + rotY: 269.9796 + rotZ: 0.0167669374 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag The Pensher Wyrm 504f38/Custom_Model_Bag Set-aside a45247/Card The Pensher Wyrm 16a8e0.yaml new file mode 100644 index 000000000..a40527e05 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Pensher Wyrm 504f38/Custom_Model_Bag Set-aside a45247/Card The Pensher Wyrm 16a8e0.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 262716 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2627': + BackIsHidden: true + BackURL: https://i.imgur.com/njBomd9.jpg + FaceURL: https://i.imgur.com/FxLS0Db.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: true +Description: Elite. Monster. +GMNotes: '' +GUID: 16a8e0 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: The Pensher Wyrm +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -35.31417 + posY: 3.40955949 + posZ: -86.60679 + rotX: 0.0199915729 + rotY: 269.982178 + rotZ: 0.0223288275 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag The Pensher Wyrm 504f38/Custom_Model_Bag Set-aside a45247/Card Wear River d5b3a4.yaml new file mode 100644 index 000000000..2aa2e425d --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Pensher Wyrm 504f38/Custom_Model_Bag Set-aside a45247/Card Wear River d5b3a4.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 262701 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2627': + BackIsHidden: true + BackURL: https://i.imgur.com/njBomd9.jpg + FaceURL: https://i.imgur.com/FxLS0Db.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: d5b3a4 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Wear River +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -36.0965958 + posY: 3.41166449 + posZ: -88.25816 + rotX: 0.0204450842 + rotY: 269.999969 + rotZ: 180.015915 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag The Pensher Wyrm 504f38/Custom_Model_Bag Set-aside a45247/Deck Down in the Mines 6668d9.yaml new file mode 100644 index 000000000..e256dec3f --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Pensher Wyrm 504f38/Custom_Model_Bag Set-aside a45247/Deck Down in the Mines 6668d9.yaml @@ -0,0 +1,387 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 262713 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2627': + BackIsHidden: true + BackURL: https://i.imgur.com/njBomd9.jpg + FaceURL: https://i.imgur.com/FxLS0Db.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 2238e7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -26.56727 + posY: 1.36952269 + posZ: -62.4823074 + rotX: 0.0148228146 + rotY: 269.980835 + rotZ: 0.0136977155 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 262713 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2627': + BackIsHidden: true + BackURL: https://i.imgur.com/njBomd9.jpg + FaceURL: https://i.imgur.com/FxLS0Db.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 9ccc67 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -26.3867035 + posY: 1.50307059 + posZ: -62.09136 + rotX: 0.0176016148 + rotY: 269.981445 + rotZ: 359.9377 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 262713 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2627': + BackIsHidden: true + BackURL: https://i.imgur.com/njBomd9.jpg + FaceURL: https://i.imgur.com/FxLS0Db.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 2238e7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -26.3867168 + posY: 1.51795268 + posZ: -62.0914459 + rotX: 0.0163520332 + rotY: 269.981079 + rotZ: 0.012485384 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 262714 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2627': + BackIsHidden: true + BackURL: https://i.imgur.com/njBomd9.jpg + FaceURL: https://i.imgur.com/FxLS0Db.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: d65c6b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -26.3604259 + posY: 1.51368022 + posZ: -62.6828651 + rotX: 0.020626612 + rotY: 269.988129 + rotZ: 0.0198708419 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 262714 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2627': + BackIsHidden: true + BackURL: https://i.imgur.com/njBomd9.jpg + FaceURL: https://i.imgur.com/FxLS0Db.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: d65c6b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -26.5633144 + posY: 1.51291811 + posZ: -62.2171974 + rotX: 0.0189353265 + rotY: 269.981354 + rotZ: 0.0173489284 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 262714 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2627': + BackIsHidden: true + BackURL: https://i.imgur.com/njBomd9.jpg + FaceURL: https://i.imgur.com/FxLS0Db.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: d65c6b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -26.5633163 + posY: 1.51504886 + posZ: -62.1969261 + rotX: 0.01889121 + rotY: 269.981354 + rotZ: 0.017060006 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 262715 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2627': + BackIsHidden: true + BackURL: https://i.imgur.com/njBomd9.jpg + FaceURL: https://i.imgur.com/FxLS0Db.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: a5fdcb + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -26.4659119 + posY: 1.51931107 + posZ: -62.6404457 + rotX: 0.0210861545 + rotY: 269.9777 + rotZ: 0.01307298 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 262715 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2627': + BackIsHidden: true + BackURL: https://i.imgur.com/njBomd9.jpg + FaceURL: https://i.imgur.com/FxLS0Db.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: a5fdcb + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -26.5355415 + posY: 1.51653 + posZ: -62.6659241 + rotX: 0.0214153789 + rotY: 269.981445 + rotZ: 0.02175158 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2627': + BackIsHidden: true + BackURL: https://i.imgur.com/njBomd9.jpg + FaceURL: https://i.imgur.com/FxLS0Db.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 262713 +- 262713 +- 262713 +- 262714 +- 262714 +- 262714 +- 262715 +- 262715 +Description: '' +GMNotes: '' +GUID: 6668d9 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Down in the Mines +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -36.3355522 + posY: 3.40344858 + posZ: -86.04198 + rotX: 0.0217241757 + rotY: 270.000061 + rotZ: 180.016815 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag The Pensher Wyrm 504f38/Custom_Model_Bag Set-aside a45247/Deck Miners ed57c8.yaml new file mode 100644 index 000000000..af7869d37 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Pensher Wyrm 504f38/Custom_Model_Bag Set-aside a45247/Deck Miners ed57c8.yaml @@ -0,0 +1,430 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 262710 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2627': + BackIsHidden: true + BackURL: https://i.imgur.com/njBomd9.jpg + FaceURL: https://i.imgur.com/FxLS0Db.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 45a468 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -25.4086266 + posY: 1.36761987 + posZ: -70.67786 + rotX: 0.0192453526 + rotY: 270.000031 + rotZ: 0.0159509275 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 262710 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2627': + BackIsHidden: true + BackURL: https://i.imgur.com/njBomd9.jpg + FaceURL: https://i.imgur.com/FxLS0Db.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: aad824 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -25.4083672 + posY: 1.50136781 + posZ: -70.69682 + rotX: 0.00468704 + rotY: 270.0003 + rotZ: 0.0100612836 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 262710 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2627': + BackIsHidden: true + BackURL: https://i.imgur.com/njBomd9.jpg + FaceURL: https://i.imgur.com/FxLS0Db.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 17a913 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -25.4083939 + posY: 1.51544654 + posZ: -70.69682 + rotX: 0.01896124 + rotY: 270.000244 + rotZ: 0.0159164425 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 262712 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2627': + BackIsHidden: true + BackURL: https://i.imgur.com/njBomd9.jpg + FaceURL: https://i.imgur.com/FxLS0Db.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: c915dc + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -25.538353 + posY: 1.51171374 + posZ: -70.74431 + rotX: 0.0199970957 + rotY: 269.98114 + rotZ: 0.0170353558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 262712 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2627': + BackIsHidden: true + BackURL: https://i.imgur.com/njBomd9.jpg + FaceURL: https://i.imgur.com/FxLS0Db.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: c915dc + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -25.8909855 + posY: 1.50281692 + posZ: -70.5017 + rotX: 0.019354742 + rotY: 269.981018 + rotZ: 0.0135970879 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 262712 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2627': + BackIsHidden: true + BackURL: https://i.imgur.com/njBomd9.jpg + FaceURL: https://i.imgur.com/FxLS0Db.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: c915dc + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -25.8909874 + posY: 1.50494647 + posZ: -70.5017 + rotX: 0.0193870012 + rotY: 269.981018 + rotZ: 0.0136762746 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 262711 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2627': + BackIsHidden: true + BackURL: https://i.imgur.com/njBomd9.jpg + FaceURL: https://i.imgur.com/FxLS0Db.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: f46880 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -24.9155922 + posY: 1.50938737 + posZ: -70.7002 + rotX: 0.0178180318 + rotY: 269.981079 + rotZ: 0.0165833551 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 262711 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2627': + BackIsHidden: true + BackURL: https://i.imgur.com/njBomd9.jpg + FaceURL: https://i.imgur.com/FxLS0Db.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 9ce81a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -24.915596 + posY: 1.51444924 + posZ: -70.7002 + rotX: 0.0178376287 + rotY: 269.981079 + rotZ: 0.01657897 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 262711 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2627': + BackIsHidden: true + BackURL: https://i.imgur.com/njBomd9.jpg + FaceURL: https://i.imgur.com/FxLS0Db.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: df854c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -25.3430958 + posY: 1.48127532 + posZ: -70.51221 + rotX: 0.0198688377 + rotY: 269.980652 + rotZ: 0.01636796 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2627': + BackIsHidden: true + BackURL: https://i.imgur.com/njBomd9.jpg + FaceURL: https://i.imgur.com/FxLS0Db.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 262710 +- 262710 +- 262710 +- 262712 +- 262712 +- 262712 +- 262711 +- 262711 +- 262711 +Description: '' +GMNotes: '' +GUID: ed57c8 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Miners +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -36.5738945 + posY: 3.408514 + posZ: -86.78423 + rotX: 0.0210997574 + rotY: 269.999939 + rotZ: 180.016632 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag The Pensher Wyrm 504f38/Custom_Model_Bag Set-aside a45247/Deck Mines 2e28c6.yaml new file mode 100644 index 000000000..a753f86da --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Pensher Wyrm 504f38/Custom_Model_Bag Set-aside a45247/Deck Mines 2e28c6.yaml @@ -0,0 +1,215 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 262706 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2627': + BackIsHidden: true + BackURL: https://i.imgur.com/njBomd9.jpg + FaceURL: https://i.imgur.com/FxLS0Db.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 832d74 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -11.3123369 + posY: 1.37308514 + posZ: -69.43418 + rotX: 0.01866279 + rotY: 270.007446 + rotZ: 0.0169780161 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 262709 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2627': + BackIsHidden: true + BackURL: https://i.imgur.com/njBomd9.jpg + FaceURL: https://i.imgur.com/FxLS0Db.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 018a1f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -11.5177746 + posY: 1.51329362 + posZ: -69.60135 + rotX: 0.012022174 + rotY: 270.004578 + rotZ: 0.0273327045 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 262705 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2627': + BackIsHidden: true + BackURL: https://i.imgur.com/njBomd9.jpg + FaceURL: https://i.imgur.com/FxLS0Db.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: bd3996 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -11.517889 + posY: 1.53088272 + posZ: -69.49264 + rotX: 0.0197593886 + rotY: 270.0021 + rotZ: 0.0212407056 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 262708 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2627': + BackIsHidden: true + BackURL: https://i.imgur.com/njBomd9.jpg + FaceURL: https://i.imgur.com/FxLS0Db.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 8ca949 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -11.4674263 + posY: 1.51713037 + posZ: -69.68361 + rotX: 0.0195518732 + rotY: 270.009125 + rotZ: 0.0182062872 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2627': + BackIsHidden: true + BackURL: https://i.imgur.com/njBomd9.jpg + FaceURL: https://i.imgur.com/FxLS0Db.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 262706 +- 262709 +- 262705 +- 262708 +Description: '' +GMNotes: '' +GUID: 2e28c6 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Mines +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -35.95197 + posY: 3.4072814 + posZ: -86.9552841 + rotX: 0.0205789525 + rotY: 270.004242 + rotZ: 0.0167723838 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag The Pensher Wyrm 504f38/Custom_Model_Bag Set-aside a45247/Deck Rats 509a9d.yaml new file mode 100644 index 000000000..bea614f28 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Pensher Wyrm 504f38/Custom_Model_Bag Set-aside a45247/Deck Rats 509a9d.yaml @@ -0,0 +1,166 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 3613 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Creature. + GMNotes: '' + GUID: 56e5db + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Swarm of Rats + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -19.7119656 + posY: 1.28121269 + posZ: 15.0893879 + rotX: 0.004087732 + rotY: 269.994171 + rotZ: -0.0020856997 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3613 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Creature. + GMNotes: '' + GUID: 7381cd + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Swarm of Rats + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -19.6142921 + posY: 1.42705274 + posZ: 15.2051964 + rotX: 0.012312145 + rotY: 269.997284 + rotZ: 0.0359485969 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3613 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Creature. + GMNotes: '' + GUID: bbc9d1 + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Swarm of Rats + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -18.9998322 + posY: 1.23161483 + posZ: 14.9262657 + rotX: -0.00489453 + rotY: 270.002747 + rotZ: -0.00167015032 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 3613 +- 3613 +- 3613 +Description: Corebox +GMNotes: '' +GUID: 509a9d +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Rats +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -36.10276 + posY: 3.40867066 + posZ: -87.22565 + rotX: 0.02093464 + rotY: 269.999451 + rotZ: 0.0169018432 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Pensher Wyrm 504f38/Custom_Tile 7234af.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Pensher Wyrm 504f38/Custom_Tile 7234af.yaml new file mode 100644 index 000000000..c0496c0bc --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Pensher Wyrm 504f38/Custom_Tile 7234af.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 7234af +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.5193977 + posY: 1.6101 + posZ: -0.044600416 + rotX: 359.9201 + rotY: 270.005249 + rotZ: 0.0168948621 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Pensher Wyrm 504f38/Custom_Tile f0dbb0.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Pensher Wyrm 504f38/Custom_Tile f0dbb0.yaml new file mode 100644 index 000000000..f80d924f0 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Pensher Wyrm 504f38/Custom_Tile f0dbb0.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: f0dbb0 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.6765 + posY: 1.613388 + posZ: -3.83 + rotX: 359.983154 + rotY: 0.01557278 + rotZ: 359.920044 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Pensher Wyrm 504f38/Custom_Tile The Pensher Wyrm c606a1.ttslua b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Pensher Wyrm 504f38/Custom_Tile The Pensher Wyrm c606a1.ttslua new file mode 100644 index 000000000..e71cfb253 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Pensher Wyrm 504f38/Custom_Tile The Pensher Wyrm c606a1.ttslua @@ -0,0 +1,21 @@ +name = 'The Pensher Wyrm' + +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 791837/Custom_Model_Bag The Pensher Wyrm 504f38/Custom_Tile The Pensher Wyrm c606a1.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Pensher Wyrm 504f38/Custom_Tile The Pensher Wyrm c606a1.yaml new file mode 100644 index 000000000..4caaddebe --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Pensher Wyrm 504f38/Custom_Tile The Pensher Wyrm c606a1.yaml @@ -0,0 +1,42 @@ +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 +GMNotes: '' +GUID: c606a1 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Tile The Pensher Wyrm c606a1.ttslua' +LuaScriptState: '' +Name: Custom_Tile +Nickname: The Pensher Wyrm +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -4.06810045 + posY: 1.58265734 + posZ: -15.3226023 + rotX: 359.919739 + rotY: 270.001221 + rotZ: 0.0168362074 + scaleX: 2.2 + scaleY: 1.0 + scaleZ: 2.2 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Pensher Wyrm 504f38/Deck Act Deck 909b6f.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Pensher Wyrm 504f38/Deck Act Deck 909b6f.yaml new file mode 100644 index 000000000..2619f1b6a --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Pensher Wyrm 504f38/Deck Act Deck 909b6f.yaml @@ -0,0 +1,215 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 262507 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2625': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493212055245255/F3916AFF38F57321017DA2B708CC5B71521593BF/ + FaceURL: https://i.imgur.com/PyE851E.jpg + NumHeight: 2 + NumWidth: 4 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 1da86a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -13.9089365 + posY: 1.37174642 + posZ: -70.72948 + rotX: 0.0176202357 + rotY: 270.002472 + rotZ: 0.0161322374 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 262506 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2625': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493212055245255/F3916AFF38F57321017DA2B708CC5B71521593BF/ + FaceURL: https://i.imgur.com/PyE851E.jpg + NumHeight: 2 + NumWidth: 4 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 529efd + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -13.583252 + posY: 1.51198924 + posZ: -70.76235 + rotX: 0.0174845681 + rotY: 269.992828 + rotZ: 0.0173167568 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 262503 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2625': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493212055245255/F3916AFF38F57321017DA2B708CC5B71521593BF/ + FaceURL: https://i.imgur.com/PyE851E.jpg + NumHeight: 2 + NumWidth: 4 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: d305a1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -14.0497284 + posY: 1.52969086 + posZ: -70.51837 + rotX: 0.0199496485 + rotY: 270.008148 + rotZ: 0.0155734951 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 262502 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2625': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493212055245255/F3916AFF38F57321017DA2B708CC5B71521593BF/ + FaceURL: https://i.imgur.com/PyE851E.jpg + NumHeight: 2 + NumWidth: 4 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: bbcb1d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.68844175 + posY: 1.8079766 + posZ: -5.04839 + rotX: 359.911469 + rotY: 269.99884 + rotZ: 359.9594 + scaleX: 0.7 + scaleY: 1.0 + scaleZ: 0.7 + XmlUI: '' +CustomDeck: + '2625': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493212055245255/F3916AFF38F57321017DA2B708CC5B71521593BF/ + FaceURL: https://i.imgur.com/PyE851E.jpg + NumHeight: 2 + NumWidth: 4 + UniqueBack: true +DeckIDs: +- 262507 +- 262506 +- 262503 +- 262502 +Description: '' +GMNotes: '' +GUID: 909b6f +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Act Deck +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.688553 + posY: 1.6534946 + posZ: -5.04849 + rotX: 359.919739 + rotY: 270.003174 + rotZ: 0.0168348979 + scaleX: 0.7 + scaleY: 1.0 + scaleZ: 0.7 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Pensher Wyrm 504f38/Deck Agenda Deck 04fdb8.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Pensher Wyrm 504f38/Deck Agenda Deck 04fdb8.yaml new file mode 100644 index 000000000..52b4c1cdf --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Pensher Wyrm 504f38/Deck Agenda Deck 04fdb8.yaml @@ -0,0 +1,215 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 262505 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2625': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493212055245255/F3916AFF38F57321017DA2B708CC5B71521593BF/ + FaceURL: https://i.imgur.com/PyE851E.jpg + NumHeight: 2 + NumWidth: 4 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 9601e6 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -13.6584044 + posY: 1.3703717 + posZ: -75.7845154 + rotX: 0.0184749179 + rotY: 269.999878 + rotZ: 0.0163815543 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 262504 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2625': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493212055245255/F3916AFF38F57321017DA2B708CC5B71521593BF/ + FaceURL: https://i.imgur.com/PyE851E.jpg + NumHeight: 2 + NumWidth: 4 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: b798d2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -13.8331156 + posY: 1.51062477 + posZ: -76.19994 + rotX: 0.0112566771 + rotY: 269.999939 + rotZ: 0.0226364415 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 262501 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2625': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493212055245255/F3916AFF38F57321017DA2B708CC5B71521593BF/ + FaceURL: https://i.imgur.com/PyE851E.jpg + NumHeight: 2 + NumWidth: 4 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 3d4fdd + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -13.6778507 + posY: 1.52796018 + posZ: -76.61129 + rotX: 0.0190278329 + rotY: 270.0004 + rotZ: 0.0151262293 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 262500 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2625': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493212055245255/F3916AFF38F57321017DA2B708CC5B71521593BF/ + FaceURL: https://i.imgur.com/PyE851E.jpg + NumHeight: 2 + NumWidth: 4 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: bbcb1d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.72463 + posY: 1.80989039 + posZ: 0.3734235 + rotX: 359.919922 + rotY: 269.9999 + rotZ: 359.977936 + scaleX: 0.7 + scaleY: 1.0 + scaleZ: 0.7 + XmlUI: '' +CustomDeck: + '2625': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493212055245255/F3916AFF38F57321017DA2B708CC5B71521593BF/ + FaceURL: https://i.imgur.com/PyE851E.jpg + NumHeight: 2 + NumWidth: 4 + UniqueBack: true +DeckIDs: +- 262505 +- 262504 +- 262501 +- 262500 +Description: '' +GMNotes: '' +GUID: 04fdb8 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Agenda Deck +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.724749 + posY: 1.65513849 + posZ: 0.3733098 + rotX: 359.919739 + rotY: 270.005066 + rotZ: 0.016832212 + scaleX: 0.7 + scaleY: 1.0 + scaleZ: 0.7 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Pensher Wyrm 504f38/Deck Encounter Deck d37670.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Pensher Wyrm 504f38/Deck Encounter Deck d37670.yaml new file mode 100644 index 000000000..7be5d9849 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Pensher Wyrm 504f38/Deck Encounter Deck d37670.yaml @@ -0,0 +1,511 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 3619 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: f1a34d + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dissonant Voices + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -19.9809151 + posY: 1.28156877 + posZ: -7.79831076 + rotX: 0.011735606 + rotY: 270.009033 + rotZ: 0.00468536 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3619 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: '260768' + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dissonant Voices + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -19.1363125 + posY: 1.231699 + posZ: -7.400251 + rotX: -0.000820844667 + rotY: 270.0089 + rotZ: -0.000237511369 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274248 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2742': + BackIsHidden: true + BackURL: https://i.imgur.com/h4om3TQ.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87098596225478692/B2438BEE2CDD4D172BAFA5DFDD15C0F29B079D4F/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Terror. + GMNotes: '' + GUID: 4f8c7a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Sordid and Silent + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.756338 + posY: 2.76345348 + posZ: 3.18449664 + rotX: 359.920135 + rotY: 269.999451 + rotZ: 0.0168756377 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3617 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: 18e09c + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Rotting Remains + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -20.3450146 + posY: 1.28128624 + posZ: -4.537053 + rotX: 0.006250872 + rotY: 269.979126 + rotZ: -0.00126227119 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274248 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2742': + BackIsHidden: true + BackURL: https://i.imgur.com/h4om3TQ.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87098596225478692/B2438BEE2CDD4D172BAFA5DFDD15C0F29B079D4F/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Terror. + GMNotes: '' + GUID: 87710e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Sordid and Silent + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 8.02511 + posY: 2.75637674 + posZ: 4.09337854 + rotX: 359.920135 + rotY: 269.999878 + rotZ: 0.0168759488 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3618 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: c40f57 + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Frozen in Fear + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -19.6207886 + posY: 1.28169692 + posZ: -10.6840782 + rotX: -3.134726e-05 + rotY: 270.000763 + rotZ: 3.597804e-06 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274247 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2742': + BackIsHidden: true + BackURL: https://i.imgur.com/h4om3TQ.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87098596225478692/B2438BEE2CDD4D172BAFA5DFDD15C0F29B079D4F/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Terror. + GMNotes: '' + GUID: 4e44cc + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Unhallowed Country + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 6.923729 + posY: 2.756476 + posZ: -0.850354433 + rotX: 359.920074 + rotY: 270.0028 + rotZ: 0.01656153 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3617 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: aa3d47 + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Rotting Remains + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -21.5193939 + posY: 1.337018 + posZ: -4.78068352 + rotX: 0.0181244723 + rotY: 269.978149 + rotZ: 0.00253973226 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 274247 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2742': + BackIsHidden: true + BackURL: https://i.imgur.com/h4om3TQ.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87098596225478692/B2438BEE2CDD4D172BAFA5DFDD15C0F29B079D4F/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Terror. + GMNotes: '' + GUID: 3b1c28 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Unhallowed Country + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 9.405704 + posY: 2.84140539 + posZ: 0.9428222 + rotX: 359.919434 + rotY: 269.9695 + rotZ: 355.338776 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3617 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: da8001 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Rotting Remains + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.927525 + posY: 1.79896784 + posZ: 5.75710344 + rotX: 359.9358 + rotY: 269.999939 + rotZ: 0.0134916306 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3618 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: 27c05d + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Frozen in Fear + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -18.967617 + posY: 1.231716 + posZ: -10.49529 + rotX: -3.11068325e-05 + rotY: 270.0013 + rotZ: -7.22032553e-07 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2742': + BackIsHidden: true + BackURL: https://i.imgur.com/h4om3TQ.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87098596225478692/B2438BEE2CDD4D172BAFA5DFDD15C0F29B079D4F/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 3619 +- 3619 +- 274248 +- 3617 +- 274248 +- 3618 +- 274247 +- 3617 +- 274247 +- 3617 +- 3618 +Description: '' +GMNotes: '' +GUID: d37670 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Encounter Deck +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.92770028 + posY: 1.67045033 + posZ: 5.75720072 + rotX: 359.919739 + rotY: 269.999 + rotZ: 180.01683 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Pensher Wyrm 504f38/Deck Setup 07bfca.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Pensher Wyrm 504f38/Deck Setup 07bfca.yaml new file mode 100644 index 000000000..45405d791 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Pensher Wyrm 504f38/Deck Setup 07bfca.yaml @@ -0,0 +1,387 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 262730 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2627': + BackIsHidden: true + BackURL: https://i.imgur.com/njBomd9.jpg + FaceURL: https://i.imgur.com/FxLS0Db.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: '743487' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -6.748578 + posY: 1.375199 + posZ: -66.515625 + rotX: -0.00107360992 + rotY: 269.999573 + rotZ: 0.008831983 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 262729 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2627': + BackIsHidden: true + BackURL: https://i.imgur.com/njBomd9.jpg + FaceURL: https://i.imgur.com/FxLS0Db.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 53e3bb + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -6.635102 + posY: 1.37474453 + posZ: -69.33391 + rotX: 0.01447003 + rotY: 270.005829 + rotZ: 0.0121425074 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 262728 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2627': + BackIsHidden: true + BackURL: https://i.imgur.com/njBomd9.jpg + FaceURL: https://i.imgur.com/FxLS0Db.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 0f044e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -6.972148 + posY: 1.373778 + posZ: -72.25852 + rotX: 0.0146983042 + rotY: 269.999725 + rotZ: 0.0134044569 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 262727 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2627': + BackIsHidden: true + BackURL: https://i.imgur.com/njBomd9.jpg + FaceURL: https://i.imgur.com/FxLS0Db.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: d3946e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -12.2774239 + posY: 1.81979787 + posZ: -1.6280539 + rotX: 359.930969 + rotY: 270.007721 + rotZ: 179.980179 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 262726 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2627': + BackIsHidden: true + BackURL: https://i.imgur.com/njBomd9.jpg + FaceURL: https://i.imgur.com/FxLS0Db.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: ba0c93 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -11.1977739 + posY: 1.81988037 + posZ: -1.77688718 + rotX: 359.584564 + rotY: 270.002472 + rotZ: 180.321854 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 262725 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2627': + BackIsHidden: true + BackURL: https://i.imgur.com/njBomd9.jpg + FaceURL: https://i.imgur.com/FxLS0Db.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: c4b75a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -11.2738218 + posY: 1.83406842 + posZ: -1.96946776 + rotX: 359.82782 + rotY: 270.00235 + rotZ: 180.065857 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 262724 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2627': + BackIsHidden: true + BackURL: https://i.imgur.com/njBomd9.jpg + FaceURL: https://i.imgur.com/FxLS0Db.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: '918810' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -11.27924 + posY: 1.81319284 + posZ: -1.68053234 + rotX: 0.4153295 + rotY: 270.03894 + rotZ: 180.865356 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 262723 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2627': + BackIsHidden: true + BackURL: https://i.imgur.com/njBomd9.jpg + FaceURL: https://i.imgur.com/FxLS0Db.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 25836b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -11.3561707 + posY: 1.67111325 + posZ: -1.77879632 + rotX: 359.921631 + rotY: 270.007233 + rotZ: 180.02681 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2627': + BackIsHidden: true + BackURL: https://i.imgur.com/njBomd9.jpg + FaceURL: https://i.imgur.com/FxLS0Db.jpg + NumHeight: 4 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 262730 +- 262729 +- 262728 +- 262727 +- 262726 +- 262725 +- 262724 +- 262723 +Description: '' +GMNotes: '' +GUID: 07bfca +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Setup +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -11.1534967 + posY: 1.65092659 + posZ: 1.36019981 + rotX: 359.9201 + rotY: 269.997681 + rotZ: 0.0168788247 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Red Room fa4327.ttslua b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Red Room fa4327.ttslua new file mode 100644 index 000000000..46067f58e --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Red Room fa4327.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.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.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 791837/Custom_Model_Bag The Red Room fa4327.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Red Room fa4327.yaml new file mode 100644 index 000000000..486d909c6 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Red Room fa4327.yaml @@ -0,0 +1,69 @@ +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 Red Room fa4327/Custom_Model_Bag Set-aside a45247.yaml' +- !include 'Custom_Model_Bag The Red Room fa4327/Deck Encounter deck 023e21.yaml' +- !include 'Custom_Model_Bag The Red Room fa4327/Deck Agenda Deck 26b589.yaml' +- !include 'Custom_Model_Bag The Red Room fa4327/Deck Act Deck cde2d1.yaml' +- !include 'Custom_Model_Bag The Red Room fa4327/Card Scenario 1d2e12.yaml' +- !include 'Custom_Model_Bag The Red Room fa4327/Deck SetupResolution 469d58.yaml' +- !include 'Custom_Model_Bag The Red Room fa4327/Deck Old Servants ce2091.yaml' +- !include 'Custom_Model_Bag The Red Room fa4327/Card Hearth 0a7a51.yaml' +- !include 'Custom_Model_Bag The Red Room fa4327/Tablet The Red Room 64f279.yaml' +- !include 'Custom_Model_Bag The Red Room fa4327/Card Scenario d63331.yaml' +CustomMesh: + CastShadows: true + ColliderURL: '' + Convex: true + DiffuseURL: http://cloud-3.steamusercontent.com/ugc/798737729142946225/F5A6228957B37E945B425681115D09E7B8543BC6/ + MaterialIndex: 3 + MeshURL: https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj + NormalURL: '' + TypeIndex: 6 +Description: '' +GMNotes: '' +GUID: fa4327 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Model_Bag The Red Room fa4327.ttslua' +LuaScriptState: '{"ml":{"023e21":{"lock":false,"pos":{"x":-3.9277,"y":1.6752,"z":5.7572},"rot":{"x":359.9197,"y":269.9987,"z":180.0168}},"0a7a51":{"lock":false,"pos":{"x":-17.1199,"y":1.6799,"z":-0.03},"rot":{"x":359.9201,"y":270,"z":180.0169}},"1d2e12":{"lock":false,"pos":{"x":-3.956,"y":1.6585,"z":-10.4412},"rot":{"x":359.9197,"y":270.0003,"z":180.0168}},"26b589":{"lock":false,"pos":{"x":-2.7247,"y":1.658,"z":0.3733},"rot":{"x":359.9198,"y":269.9589,"z":0.0169}},"469d58":{"lock":false,"pos":{"x":-11.9576,"y":1.6717,"z":3.1538},"rot":{"x":359.9201,"y":269.9781,"z":0.0169}},"64f279":{"lock":false,"pos":{"x":-17.1197,"y":1.889,"z":-11.5094},"rot":{"x":359.9201,"y":269.9996,"z":0.0169}},"a45247":{"lock":false,"pos":{"x":1.6949,"y":1.5583,"z":14.2794},"rot":{"x":359.9551,"y":224.998,"z":0.0687}},"cde2d1":{"lock":false,"pos":{"x":-2.6885,"y":1.6459,"z":-5.0485},"rot":{"x":359.9197,"y":270.0159,"z":0.0168}},"ce2091":{"lock":false,"pos":{"x":-17.12,"y":1.6778,"z":3.86},"rot":{"x":359.9201,"y":269.9993,"z":0.0169}},"d63331":{"lock":false,"pos":{"x":-50.9244,"y":1.7294,"z":8.1784},"rot":{"x":359.9201,"y":270.0003,"z":180.0169}}}}' +MaterialIndex: -1 +MeshIndex: -1 +Name: Custom_Model_Bag +Nickname: The Red Room +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 59.7409859 + posY: 8.639392 + posZ: -85.96119 + rotX: 359.983246 + rotY: 269.999969 + rotZ: 0.00353683834 + scaleX: 2.21 + scaleY: 0.46 + scaleZ: 2.42 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Red Room fa4327/Card Hearth 0a7a51.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Red Room fa4327/Card Hearth 0a7a51.yaml new file mode 100644 index 000000000..7306aeccc --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Red Room fa4327/Card Hearth 0a7a51.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 204 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949596928132957254/585A93B1508B95656B7AF72857464D8221910D0C/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949596928132954185/893753BA81DC939E2CF68370732FC4596627F3C8/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: The Red Room +GMNotes: '' +GUID: 0a7a51 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Hearth +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -17.11993 + posY: 1.67990053 + posZ: -0.0300093722 + 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 The Side Missions 791837/Custom_Model_Bag The Red Room fa4327/Card Scenario 1d2e12.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Red Room fa4327/Card Scenario 1d2e12.yaml new file mode 100644 index 000000000..a7bccdc67 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Red Room fa4327/Card Scenario 1d2e12.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 208 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949596928132957254/585A93B1508B95656B7AF72857464D8221910D0C/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949596928132954185/893753BA81DC939E2CF68370732FC4596627F3C8/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: The Red Room +GMNotes: '' +GUID: 1d2e12 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Scenario +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.95596743 + posY: 1.658471 + posZ: -10.4411888 + rotX: 359.919739 + 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 791837/Custom_Model_Bag The Red Room fa4327/Card Scenario d63331.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Red Room fa4327/Card Scenario d63331.yaml new file mode 100644 index 000000000..457979985 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Red Room fa4327/Card Scenario d63331.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 208 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949596928132957254/585A93B1508B95656B7AF72857464D8221910D0C/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949596928132954185/893753BA81DC939E2CF68370732FC4596627F3C8/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: The Red Room +GMNotes: '' +GUID: d63331 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Scenario +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -50.9243851 + posY: 1.7294482 + posZ: 8.178432 + rotX: 359.9201 + rotY: 270.0003 + rotZ: 180.016861 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Red Room fa4327/Custom_Model_Bag Set-aside a45247.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Red Room fa4327/Custom_Model_Bag Set-aside a45247.yaml new file mode 100644 index 000000000..49aa35103 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Red Room fa4327/Custom_Model_Bag Set-aside a45247.yaml @@ -0,0 +1,59 @@ +Autoraise: true +ColorDiffuse: + b: 0.02148666 + g: 0.00100758043 + r: 0.02148666 +ContainedObjects: +- !include 'Custom_Model_Bag Set-aside a45247/Card Passage 30adbd.yaml' +- !include 'Custom_Model_Bag Set-aside a45247/Card Staircase 8038f1.yaml' +- !include 'Custom_Model_Bag Set-aside a45247/Card Red Room 52328e.yaml' +- !include 'Custom_Model_Bag Set-aside a45247/Card I have seen Death 06e5e4.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 Red Room +GMNotes: '' +GUID: a45247 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +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.69490063 + posY: 1.55831909 + posZ: 14.2793684 + rotX: 359.955139 + rotY: 224.998032 + rotZ: 0.06867476 + scaleX: 2.0 + scaleY: 2.0 + scaleZ: 2.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag The Red Room fa4327/Custom_Model_Bag Set-aside a45247/Card I have seen Death 06e5e4.yaml new file mode 100644 index 000000000..b21675da3 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Red Room fa4327/Custom_Model_Bag Set-aside a45247/Card I have seen Death 06e5e4.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 265313 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2653': + BackIsHidden: false + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949596928132954185/893753BA81DC939E2CF68370732FC4596627F3C8/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +Description: Great Red Room of Lorraine Castle +GMNotes: '' +GUID: 06e5e4 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: I have seen Death +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -15.51348 + posY: 3.3842454 + posZ: 61.9739647 + rotX: 0.0166745838 + rotY: 270.0 + rotZ: 0.0134602068 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag The Red Room fa4327/Custom_Model_Bag Set-aside a45247/Card Passage 30adbd.yaml new file mode 100644 index 000000000..a6c96f3d9 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Red Room fa4327/Custom_Model_Bag Set-aside a45247/Card Passage 30adbd.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 205 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949596928132957254/585A93B1508B95656B7AF72857464D8221910D0C/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949596928132954185/893753BA81DC939E2CF68370732FC4596627F3C8/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 30adbd +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Passage +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -15.0673275 + posY: 3.387683 + posZ: 63.514534 + rotX: 0.02031861 + rotY: 269.9999 + rotZ: 180.016846 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag The Red Room fa4327/Custom_Model_Bag Set-aside a45247/Card Red Room 52328e.yaml new file mode 100644 index 000000000..c84cd8240 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Red Room fa4327/Custom_Model_Bag Set-aside a45247/Card Red Room 52328e.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 206 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949596928132957254/585A93B1508B95656B7AF72857464D8221910D0C/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949596928132954185/893753BA81DC939E2CF68370732FC4596627F3C8/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Tower +GMNotes: '' +GUID: 52328e +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Red Room +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -8.298525 + posY: 3.29359269 + posZ: 68.0225143 + rotX: 0.0208081212 + rotY: 269.9995 + rotZ: 180.016769 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag The Red Room fa4327/Custom_Model_Bag Set-aside a45247/Card Staircase 8038f1.yaml new file mode 100644 index 000000000..e0a937b97 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Red Room fa4327/Custom_Model_Bag Set-aside a45247/Card Staircase 8038f1.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 207 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949596928132957254/585A93B1508B95656B7AF72857464D8221910D0C/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949596928132954185/893753BA81DC939E2CF68370732FC4596627F3C8/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 8038f1 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Staircase +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -11.4405985 + posY: 3.29149461 + posZ: 64.7526245 + rotX: 0.0208079889 + rotY: 269.997 + rotZ: 180.016769 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Red Room fa4327/Deck Act Deck cde2d1.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Red Room fa4327/Deck Act Deck cde2d1.yaml new file mode 100644 index 000000000..74184f894 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Red Room fa4327/Deck Act Deck cde2d1.yaml @@ -0,0 +1,473 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 115 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949596928132949179/F76FBE4A8AA11BE7E8FF416D75E2D68DC914D901/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949596928132947581/E8CEC64A6A35857E1E055370F5D4722A4924C025/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 5a + GMNotes: '' + GUID: e80e5f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Escape! + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -24.4347878 + posY: 1.33294713 + posZ: 70.4166 + rotX: 0.00186997687 + rotY: 270.021149 + rotZ: 0.0129771233 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 114 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949596928132949179/F76FBE4A8AA11BE7E8FF416D75E2D68DC914D901/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949596928132947581/E8CEC64A6A35857E1E055370F5D4722A4924C025/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 4c + GMNotes: '' + GUID: 8bf5ba + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Fire! + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -20.8521385 + posY: 1.33447957 + posZ: 70.21744 + rotX: 0.01544195 + rotY: 270.022461 + rotZ: 0.0150617212 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 113 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949596928132949179/F76FBE4A8AA11BE7E8FF416D75E2D68DC914D901/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949596928132947581/E8CEC64A6A35857E1E055370F5D4722A4924C025/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 4a + GMNotes: '' + GUID: a36834 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Light Vanishes + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -17.1488171 + posY: 1.33587241 + posZ: 70.3484344 + rotX: 0.0160071682 + rotY: 269.921631 + rotZ: 0.0151422732 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 112 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949596928132949179/F76FBE4A8AA11BE7E8FF416D75E2D68DC914D901/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949596928132947581/E8CEC64A6A35857E1E055370F5D4722A4924C025/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 3c + GMNotes: '' + GUID: 458e59 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Creping Darkness + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -27.6201935 + posY: 1.33345819 + posZ: 74.93426 + rotX: 0.01807161 + rotY: 270.021881 + rotZ: 0.015386709 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 111 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949596928132949179/F76FBE4A8AA11BE7E8FF416D75E2D68DC914D901/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949596928132947581/E8CEC64A6A35857E1E055370F5D4722A4924C025/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 3a + GMNotes: '' + GUID: 49c091 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Shadows Lengthen + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -23.7888031 + posY: 1.33477747 + posZ: 74.86562 + rotX: 0.01583102 + rotY: 270.018 + rotZ: 0.0152091859 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 110 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949596928132949179/F76FBE4A8AA11BE7E8FF416D75E2D68DC914D901/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949596928132947581/E8CEC64A6A35857E1E055370F5D4722A4924C025/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 2c + GMNotes: '' + GUID: c606f3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Alcove + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -20.1922913 + posY: 1.33595657 + posZ: 75.17544 + rotX: 0.005859049 + rotY: 270.017853 + rotZ: 0.0137988 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 109 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949596928132949179/F76FBE4A8AA11BE7E8FF416D75E2D68DC914D901/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949596928132947581/E8CEC64A6A35857E1E055370F5D4722A4924C025/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 2a + GMNotes: '' + GUID: 6d56db + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: A Close Inspection + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -16.93225 + posY: 1.33722687 + posZ: 75.58702 + rotX: 0.004708577 + rotY: 270.019958 + rotZ: 0.0138291279 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 108 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949596928132949179/F76FBE4A8AA11BE7E8FF416D75E2D68DC914D901/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949596928132947581/E8CEC64A6A35857E1E055370F5D4722A4924C025/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 1e + GMNotes: '' + GUID: a38da7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Passage + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -23.7809353 + posY: 1.33598387 + posZ: 80.12428 + rotX: 0.00082092674 + rotY: 270.018158 + rotZ: 0.0132075567 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 107 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949596928132949179/F76FBE4A8AA11BE7E8FF416D75E2D68DC914D901/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949596928132947581/E8CEC64A6A35857E1E055370F5D4722A4924C025/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 1c + GMNotes: '' + GUID: b2aea4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: To be sure... + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -20.1798859 + posY: 1.33776987 + posZ: 80.34997 + rotX: 0.0203394126 + rotY: 270.0177 + rotZ: 0.0166067854 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 106 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949596928132949179/F76FBE4A8AA11BE7E8FF416D75E2D68DC914D901/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949596928132947581/E8CEC64A6A35857E1E055370F5D4722A4924C025/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 1a + GMNotes: '' + GUID: 08e915 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Welcome, Stranger. + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -19.8171158 + posY: 1.47823215 + posZ: 80.22083 + rotX: 0.008114806 + rotY: 270.02478 + rotZ: 0.0170258619 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '1': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949596928132949179/F76FBE4A8AA11BE7E8FF416D75E2D68DC914D901/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949596928132947581/E8CEC64A6A35857E1E055370F5D4722A4924C025/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 115 +- 114 +- 113 +- 112 +- 111 +- 110 +- 109 +- 108 +- 107 +- 106 +Description: The Red Room +GMNotes: '' +GUID: cde2d1 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Act Deck +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.688497 + posY: 1.64587784 + posZ: -5.048539 + rotX: 359.919739 + rotY: 270.01593 + rotZ: 0.0168151837 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Red Room fa4327/Deck Agenda Deck 26b589.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Red Room fa4327/Deck Agenda Deck 26b589.yaml new file mode 100644 index 000000000..34e468cea --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Red Room fa4327/Deck Agenda Deck 26b589.yaml @@ -0,0 +1,301 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 105 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949596928132949179/F76FBE4A8AA11BE7E8FF416D75E2D68DC914D901/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949596928132947581/E8CEC64A6A35857E1E055370F5D4722A4924C025/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 6a + GMNotes: '' + GUID: 76c93e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Intolerable Darkness + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -35.0126953 + posY: 1.32807434 + posZ: 66.0736542 + rotX: 0.0133193536 + rotY: 269.996368 + rotZ: 0.0147974752 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 104 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949596928132949179/F76FBE4A8AA11BE7E8FF416D75E2D68DC914D901/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949596928132947581/E8CEC64A6A35857E1E055370F5D4722A4924C025/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 5a + GMNotes: '' + GUID: f94b0e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: In the Dark + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -31.375824 + posY: 1.3293761 + posZ: 66.2727356 + rotX: 0.0102528995 + rotY: 269.9964 + rotZ: 0.0146313012 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 103 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949596928132949179/F76FBE4A8AA11BE7E8FF416D75E2D68DC914D901/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949596928132947581/E8CEC64A6A35857E1E055370F5D4722A4924C025/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 4a + GMNotes: '' + GUID: f88c9d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Darkness Awakens + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -27.3797035 + posY: 1.33085132 + posZ: 66.13824 + rotX: 0.0121232616 + rotY: 269.996277 + rotZ: 0.01436247 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 102 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949596928132949179/F76FBE4A8AA11BE7E8FF416D75E2D68DC914D901/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949596928132947581/E8CEC64A6A35857E1E055370F5D4722A4924C025/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 3a + GMNotes: '' + GUID: 32bf53 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Haunted Room + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -34.2652168 + posY: 1.33096135 + posZ: 76.18955 + rotX: -0.002071608 + rotY: 269.996277 + rotZ: 0.01289861 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 101 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949596928132949179/F76FBE4A8AA11BE7E8FF416D75E2D68DC914D901/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949596928132947581/E8CEC64A6A35857E1E055370F5D4722A4924C025/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 2a + GMNotes: '' + GUID: fd1a1a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Journey + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -30.7904434 + posY: 1.33268416 + posZ: 76.2614441 + rotX: 0.0162277576 + rotY: 269.992432 + rotZ: 0.0162499454 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 100 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949596928132949179/F76FBE4A8AA11BE7E8FF416D75E2D68DC914D901/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949596928132947581/E8CEC64A6A35857E1E055370F5D4722A4924C025/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 1a + GMNotes: '' + GUID: dd51ee + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Waiting + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -31.1046543 + posY: 1.46790886 + posZ: 76.07177 + rotX: 0.00410026731 + rotY: 269.9986 + rotZ: 0.0187994726 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '1': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949596928132949179/F76FBE4A8AA11BE7E8FF416D75E2D68DC914D901/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949596928132947581/E8CEC64A6A35857E1E055370F5D4722A4924C025/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 105 +- 104 +- 103 +- 102 +- 101 +- 100 +Description: The Red Room +GMNotes: '' +GUID: 26b589 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Agenda Deck +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.7246573 + posY: 1.65796614 + posZ: 0.373314142 + rotX: 359.919769 + rotY: 269.958862 + rotZ: 0.0168952122 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Red Room fa4327/Deck Encounter deck 023e21.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Red Room fa4327/Deck Encounter deck 023e21.yaml new file mode 100644 index 000000000..3ebdfbfee --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Red Room fa4327/Deck Encounter deck 023e21.yaml @@ -0,0 +1,344 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 12117 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '121': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: 18e09c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Rotting Remains + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -11.5845232 + posY: 1.4910816 + posZ: 72.09994 + rotX: 0.0152167194 + rotY: 270.0035 + rotZ: 180.0134 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12119 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '121': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: f1a34d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dissonant Voices + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.92765832 + posY: 1.66310287 + posZ: 5.75723839 + rotX: 359.9146 + rotY: 270.0124 + rotZ: 180.019363 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12119 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '121': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: '260768' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dissonant Voices + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.84990931 + posY: 1.80129647 + posZ: 10.3799953 + rotX: 359.918152 + rotY: 269.999573 + rotZ: 0.01625902 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12117 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '121': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: da8001 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Rotting Remains + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.850006 + posY: 1.66159856 + posZ: 10.3800077 + rotX: 359.918427 + rotY: 269.999878 + rotZ: 0.0162331 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12117 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '121': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: aa3d47 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Rotting Remains + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.84987974 + posY: 1.79820752 + posZ: 10.3799982 + rotX: 359.9067 + rotY: 269.99942 + rotZ: 0.0104999775 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12118 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '121': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: c40f57 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Frozen in Fear + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.84991217 + posY: 1.799692 + posZ: 10.3799963 + rotX: 359.918335 + rotY: 269.999451 + rotZ: 0.0162123721 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12118 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '121': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: 27c05d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Frozen in Fear + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -3.84990883 + posY: 1.80182087 + posZ: 10.3799953 + rotX: 359.918274 + rotY: 269.999451 + rotZ: 0.0163153373 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '121': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 12117 +- 12119 +- 12119 +- 12117 +- 12117 +- 12118 +- 12118 +Description: The Red Room +GMNotes: '' +GUID: 023e21 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Encounter deck +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.92768025 + posY: 1.67523253 + posZ: 5.757151 + rotX: 359.919739 + rotY: 269.998718 + rotZ: 180.01683 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Red Room fa4327/Deck Old Servants ce2091.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Red Room fa4327/Deck Old Servants ce2091.yaml new file mode 100644 index 000000000..14441bfd3 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Red Room fa4327/Deck Old Servants ce2091.yaml @@ -0,0 +1,172 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 210 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949596928132957254/585A93B1508B95656B7AF72857464D8221910D0C/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949596928132954185/893753BA81DC939E2CF68370732FC4596627F3C8/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Old Servant + GMNotes: '' + GUID: 47ad31 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Old Man with Shaded Eyes + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.15953755 + posY: 1.33861208 + posZ: 62.25457 + rotX: 0.0006173288 + rotY: 269.999481 + rotZ: 0.009613581 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 211 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949596928132957254/585A93B1508B95656B7AF72857464D8221910D0C/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949596928132954185/893753BA81DC939E2CF68370732FC4596627F3C8/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Old Servant + GMNotes: '' + GUID: 02186e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Old Man with Withered Arm + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.93235588 + posY: 1.33945549 + posZ: 64.75702 + rotX: 0.0198722016 + rotY: 269.999939 + rotZ: 0.01632838 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 212 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949596928132957254/585A93B1508B95656B7AF72857464D8221910D0C/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949596928132954185/893753BA81DC939E2CF68370732FC4596627F3C8/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Old Servant + GMNotes: '' + GUID: '522715' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Old Woman + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.912316 + posY: 1.47985148 + posZ: 64.81804 + rotX: 0.0104995929 + rotY: 269.999268 + rotZ: 0.0149084022 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949596928132957254/585A93B1508B95656B7AF72857464D8221910D0C/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949596928132954185/893753BA81DC939E2CF68370732FC4596627F3C8/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 210 +- 211 +- 212 +Description: The Red Room +GMNotes: '' +GUID: ce2091 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Old Servants +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -17.1200333 + posY: 1.67776322 + posZ: 3.860006 + rotX: 359.9201 + rotY: 269.999329 + rotZ: 0.01687845 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Red Room fa4327/Deck SetupResolution 469d58.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Red Room fa4327/Deck SetupResolution 469d58.yaml new file mode 100644 index 000000000..dc18f4ebb --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Red Room fa4327/Deck SetupResolution 469d58.yaml @@ -0,0 +1,301 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 214 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949596928132957254/585A93B1508B95656B7AF72857464D8221910D0C/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949596928132954185/893753BA81DC939E2CF68370732FC4596627F3C8/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 0300fc + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 9.82580948 + posY: 1.03170264 + posZ: 2.8207984 + rotX: -0.000786121353 + rotY: 180.000015 + rotZ: -0.000549397431 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 209 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949596928132957254/585A93B1508B95656B7AF72857464D8221910D0C/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949596928132954185/893753BA81DC939E2CF68370732FC4596627F3C8/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 4d409d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 9.609754 + posY: 1.17668462 + posZ: 2.912107 + rotX: 359.990143 + rotY: 179.999969 + rotZ: 359.99292 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 203 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949596928132957254/585A93B1508B95656B7AF72857464D8221910D0C/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949596928132954185/893753BA81DC939E2CF68370732FC4596627F3C8/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 3dca40 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 9.744365 + posY: 1.19415307 + posZ: 3.01195145 + rotX: -0.00141439249 + rotY: 179.994125 + rotZ: 0.00660933 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 202 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949596928132957254/585A93B1508B95656B7AF72857464D8221910D0C/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949596928132954185/893753BA81DC939E2CF68370732FC4596627F3C8/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 7356a3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 9.897709 + posY: 1.18040884 + posZ: 2.71923351 + rotX: 0.000556538231 + rotY: 179.999908 + rotZ: -0.00170198327 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 201 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949596928132957254/585A93B1508B95656B7AF72857464D8221910D0C/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949596928132954185/893753BA81DC939E2CF68370732FC4596627F3C8/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: a531f3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -11.8963413 + posY: 1.81814706 + posZ: 0.133959889 + rotX: 359.9232 + rotY: 269.995178 + rotZ: 179.912369 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 200 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949596928132957254/585A93B1508B95656B7AF72857464D8221910D0C/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949596928132954185/893753BA81DC939E2CF68370732FC4596627F3C8/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: ff21c5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -11.9331532 + posY: 1.6724391 + posZ: -0.190449759 + rotX: 359.9218 + rotY: 269.996216 + rotZ: 180.027954 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2': + BackIsHidden: false + BackURL: http://cloud-3.steamusercontent.com/ugc/949596928132957254/585A93B1508B95656B7AF72857464D8221910D0C/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/949596928132954185/893753BA81DC939E2CF68370732FC4596627F3C8/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 214 +- 209 +- 203 +- 202 +- 201 +- 200 +Description: The Red Room +GMNotes: '' +GUID: 469d58 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Setup/Resolution +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -11.9575977 + posY: 1.67168152 + posZ: 3.15376687 + rotX: 359.9201 + rotY: 269.9781 + rotZ: 0.01690835 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Red Room fa4327/Tablet The Red Room 64f279.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Red Room fa4327/Tablet The Red Room 64f279.yaml new file mode 100644 index 000000000..e56db7be3 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Red Room fa4327/Tablet The Red Room 64f279.yaml @@ -0,0 +1,34 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +Description: by H.G. Wells +GMNotes: '' +GUID: 64f279 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Tablet +Nickname: The Red Room +Snap: true +Sticky: true +Tablet: + PageURL: https://drive.google.com/file/d/1jmBwXA5imqZUKIxCo77vWT78zfLBNNbO/view +Tooltip: true +Transform: + posX: -17.1196785 + posY: 1.8889842 + posZ: -11.5093956 + rotX: 359.9201 + rotY: 269.999634 + rotZ: 0.0168639328 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Stolen Baillius bfefd4.ttslua b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Stolen Baillius bfefd4.ttslua new file mode 100644 index 000000000..46067f58e --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Stolen Baillius bfefd4.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.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.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 791837/Custom_Model_Bag The Stolen Baillius bfefd4.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Stolen Baillius bfefd4.yaml new file mode 100644 index 000000000..7b6ef0091 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Stolen Baillius bfefd4.yaml @@ -0,0 +1,78 @@ +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 Stolen Baillius bfefd4/Custom_Model_Bag Set-aside + a45247.yaml' +- !include 'Custom_Model_Bag The Stolen Baillius bfefd4/Deck Encounter deck 0e6c8c.yaml' +- !include 'Custom_Model_Bag The Stolen Baillius bfefd4/Deck Agenda deck 6a9431.yaml' +- !include 'Custom_Model_Bag The Stolen Baillius bfefd4/Deck Act Deck f305a2.yaml' +- !include 'Custom_Model_Bag The Stolen Baillius bfefd4/Card Scenario 00dc67.yaml' +- !include 'Custom_Model_Bag The Stolen Baillius bfefd4/Custom_Tile Core Difficulty + ec7a73.yaml' +- !include 'Custom_Model_Bag The Stolen Baillius bfefd4/Deck SetupResolution 102272.yaml' +- !include 'Custom_Model_Bag The Stolen Baillius bfefd4/Card High Street 40f354.yaml' +- !include 'Custom_Model_Bag The Stolen Baillius bfefd4/Custom_Tile 7234af.yaml' +- !include 'Custom_Model_Bag The Stolen Baillius bfefd4/Card Front Door cb2e63.yaml' +- !include 'Custom_Model_Bag The Stolen Baillius bfefd4/Custom_Tile 631549.yaml' +- !include 'Custom_Model_Bag The Stolen Baillius bfefd4/Custom_Tile 79090a.yaml' +- !include 'Custom_Model_Bag The Stolen Baillius bfefd4/Custom_Tile 82e02f.yaml' +- !include 'Custom_Model_Bag The Stolen Baillius bfefd4/Custom_Tile 33116d.yaml' +- !include 'Custom_Model_Bag The Stolen Baillius bfefd4/Deck edcae4.yaml' +- !include 'Custom_Model_Bag The Stolen Baillius bfefd4/Card Scenario af4e73.yaml' +- !include 'Custom_Model_Bag The Stolen Baillius bfefd4/Card The Stolen Bacillus bf5d39.yaml' +CustomMesh: + CastShadows: true + ColliderURL: '' + Convex: true + DiffuseURL: http://cloud-3.steamusercontent.com/ugc/798737729142943616/2B7B73A110A3EC225C854F85AB009F04859E3806/ + MaterialIndex: 3 + MeshURL: https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj + NormalURL: '' + TypeIndex: 6 +Description: '' +GMNotes: '' +GUID: bfefd4 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Model_Bag The Stolen Baillius bfefd4.ttslua' +LuaScriptState: '{"ml":{"00dc67":{"lock":false,"pos":{"x":-3.956,"y":1.6556,"z":-10.4412},"rot":{"x":359.9197,"y":269.9995,"z":0.0168}},"0e6c8c":{"lock":false,"pos":{"x":-3.9277,"y":1.6971,"z":5.7571},"rot":{"x":359.9197,"y":270.0001,"z":180.0168}},"102272":{"lock":false,"pos":{"x":-10.2894,"y":1.6717,"z":2.0208},"rot":{"x":359.9201,"y":270.0023,"z":0.0169}},"33116d":{"lock":false,"pos":{"x":-27.119,"y":1.6184,"z":-3.2752},"rot":{"x":0.0446,"y":44.9999,"z":359.9316}},"40f354":{"lock":false,"pos":{"x":-17.12,"y":1.6771,"z":-0.03},"rot":{"x":359.9201,"y":270.0001,"z":0.0169}},"631549":{"lock":false,"pos":{"x":-23.6766,"y":1.6157,"z":3.86},"rot":{"x":359.9832,"y":0.0089,"z":359.92}},"6a9431":{"lock":false,"pos":{"x":-2.7247,"y":1.664,"z":0.3733},"rot":{"x":0.0168,"y":180.0034,"z":0.0803}},"7234af":{"lock":false,"pos":{"x":-20.4879,"y":1.61,"z":-0.2199},"rot":{"x":359.9201,"y":269.9942,"z":0.0169}},"79090a":{"lock":false,"pos":{"x":-23.6765,"y":1.6134,"z":-3.83},"rot":{"x":0.0169,"y":180,"z":0.0799}},"82e02f":{"lock":false,"pos":{"x":-26.575,"y":1.6185,"z":-0.1012},"rot":{"x":359.9201,"y":269.9947,"z":0.0169}},"a45247":{"lock":false,"pos":{"x":1.6952,"y":1.5583,"z":14.2788},"rot":{"x":359.9551,"y":224.998,"z":0.0687}},"af4e73":{"lock":false,"pos":{"x":-50.9244,"y":1.7266,"z":8.1784},"rot":{"x":359.9201,"y":269.9997,"z":0.0169}},"bf5d39":{"lock":false,"pos":{"x":-5.9411,"y":1.5569,"z":-25.3389},"rot":{"x":359.9201,"y":270.0001,"z":180.0169}},"cb2e63":{"lock":false,"pos":{"x":-23.6775,"y":1.689,"z":-0.0357},"rot":{"x":359.92,"y":270.3729,"z":180.0163}},"ec7a73":{"lock":false,"pos":{"x":-4.9066,"y":1.684,"z":-14.5418},"rot":{"x":359.9195,"y":270.04,"z":0.0161}},"edcae4":{"lock":false,"pos":{"x":-30.2242,"y":1.6934,"z":-0.0301},"rot":{"x":359.9201,"y":270.0021,"z":0.0169}},"f305a2":{"lock":false,"pos":{"x":-2.6885,"y":1.6535,"z":-5.0485},"rot":{"x":0.0168,"y":179.9978,"z":0.0803}}}}' +MaterialIndex: -1 +MeshIndex: -1 +Name: Custom_Model_Bag +Nickname: The Stolen Baillius +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 7.22945452 + posY: 2.47331977 + posZ: -31.78777 + rotX: 359.983246 + rotY: 270.0 + rotZ: 0.00353812729 + scaleX: 2.21 + scaleY: 0.46 + scaleZ: 2.42 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Stolen Baillius bfefd4/Card Front Door cb2e63.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Stolen Baillius bfefd4/Card Front Door cb2e63.yaml new file mode 100644 index 000000000..588372cf7 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Stolen Baillius bfefd4/Card Front Door cb2e63.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 231724 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2317': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359884868/6F819F1C9F37B76E90756822097576B0CF70DE09/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359885600/F7F5C1342971D3B6F8A195241BAA8B37D5F4D82B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: The Bacteriologist's House +GMNotes: '' +GUID: cb2e63 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Front Door +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -23.6775 + posY: 1.689043 + posZ: -0.03569979 + rotX: 359.919983 + rotY: 270.372925 + rotZ: 180.016342 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Stolen Baillius bfefd4/Card High Street 40f354.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Stolen Baillius bfefd4/Card High Street 40f354.yaml new file mode 100644 index 000000000..cfc248349 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Stolen Baillius bfefd4/Card High Street 40f354.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 231725 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2317': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359884868/6F819F1C9F37B76E90756822097576B0CF70DE09/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359885600/F7F5C1342971D3B6F8A195241BAA8B37D5F4D82B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Haverstock Hill +GMNotes: '' +GUID: 40f354 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: High Street +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -17.1199989 + posY: 1.67707777 + posZ: -0.030000288 + rotX: 359.9201 + rotY: 270.000122 + rotZ: 0.0168767963 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Stolen Baillius bfefd4/Card Scenario 00dc67.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Stolen Baillius bfefd4/Card Scenario 00dc67.yaml new file mode 100644 index 000000000..1a7238ae3 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Stolen Baillius bfefd4/Card Scenario 00dc67.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 231703 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2317': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359884868/6F819F1C9F37B76E90756822097576B0CF70DE09/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359885600/F7F5C1342971D3B6F8A195241BAA8B37D5F4D82B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: The Stolen Bacillus +GMNotes: '' +GUID: 00dc67 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Scenario +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.95600033 + posY: 1.655648 + posZ: -10.4412012 + rotX: 359.919739 + rotY: 269.9995 + rotZ: 0.0168413483 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Stolen Baillius bfefd4/Card Scenario af4e73.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Stolen Baillius bfefd4/Card Scenario af4e73.yaml new file mode 100644 index 000000000..e61c3f377 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Stolen Baillius bfefd4/Card Scenario af4e73.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 231703 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2317': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359884868/6F819F1C9F37B76E90756822097576B0CF70DE09/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359885600/F7F5C1342971D3B6F8A195241BAA8B37D5F4D82B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: The Stolen Bacillus +GMNotes: '' +GUID: af4e73 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Scenario +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -50.9244 + posY: 1.72662532 + posZ: 8.178399 + rotX: 359.9201 + rotY: 269.999725 + rotZ: 0.016876705 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Stolen Baillius bfefd4/Card The Stolen Bacillus bf5d39.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Stolen Baillius bfefd4/Card The Stolen Bacillus bf5d39.yaml new file mode 100644 index 000000000..54d552da7 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Stolen Baillius bfefd4/Card The Stolen Bacillus bf5d39.yaml @@ -0,0 +1,215 @@ +Autoraise: true +CardID: 231900 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359886474/5D0802EC6C51029F3F33B6880B0C3158BF68121E/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359886474/5D0802EC6C51029F3F33B6880B0C3158BF68121E/ + NumHeight: 2 + NumWidth: 3 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: bf5d39 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: The Stolen Bacillus +SidewaysCard: false +Snap: true +States: + '2': + Autoraise: true + CardID: 231901 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359886474/5D0802EC6C51029F3F33B6880B0C3158BF68121E/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359886474/5D0802EC6C51029F3F33B6880B0C3158BF68121E/ + NumHeight: 2 + NumWidth: 3 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: f11669 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -5.94108868 + posY: 1.55686677 + posZ: -25.33879 + rotX: 359.920135 + rotY: 270.000061 + rotZ: 180.016861 + scaleX: 4.0 + scaleY: 1.0 + scaleZ: 4.0 + XmlUI: '' + '3': + Autoraise: true + CardID: 231902 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359886474/5D0802EC6C51029F3F33B6880B0C3158BF68121E/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359886474/5D0802EC6C51029F3F33B6880B0C3158BF68121E/ + NumHeight: 2 + NumWidth: 3 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 3a009c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -5.94108868 + posY: 1.55686688 + posZ: -25.3388519 + rotX: 359.920135 + rotY: 270.000061 + rotZ: 180.016861 + scaleX: 4.0 + scaleY: 1.0 + scaleZ: 4.0 + XmlUI: '' + '4': + Autoraise: true + CardID: 231903 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359886474/5D0802EC6C51029F3F33B6880B0C3158BF68121E/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359886474/5D0802EC6C51029F3F33B6880B0C3158BF68121E/ + NumHeight: 2 + NumWidth: 3 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: a5b5b8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -5.94108868 + posY: 1.55686688 + posZ: -25.3389015 + rotX: 359.920135 + rotY: 270.000061 + rotZ: 180.016861 + scaleX: 4.0 + scaleY: 1.0 + scaleZ: 4.0 + XmlUI: '' + '5': + Autoraise: true + CardID: 231904 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2319': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359886474/5D0802EC6C51029F3F33B6880B0C3158BF68121E/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359886474/5D0802EC6C51029F3F33B6880B0C3158BF68121E/ + NumHeight: 2 + NumWidth: 3 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 0f1bff + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -5.94108868 + posY: 1.55686688 + posZ: -25.3389416 + rotX: 359.920135 + rotY: 270.000061 + rotZ: 180.016861 + scaleX: 4.0 + scaleY: 1.0 + scaleZ: 4.0 + XmlUI: '' +Sticky: true +Tooltip: true +Transform: + posX: -5.941101 + posY: 1.55686688 + posZ: -25.3389 + rotX: 359.920135 + rotY: 270.000061 + rotZ: 180.016861 + scaleX: 4.0 + scaleY: 1.0 + scaleZ: 4.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Stolen Baillius bfefd4/Custom_Model_Bag Set-aside a45247.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Stolen Baillius bfefd4/Custom_Model_Bag Set-aside a45247.yaml new file mode 100644 index 000000000..a89675264 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Stolen Baillius bfefd4/Custom_Model_Bag Set-aside a45247.yaml @@ -0,0 +1,61 @@ +Autoraise: true +ColorDiffuse: + b: 0.02148666 + g: 0.00100758043 + r: 0.02148666 +ContainedObjects: +- !include 'Custom_Model_Bag Set-aside a45247/Card Hackney Cab 908abd.yaml' +- !include 'Custom_Model_Bag Set-aside a45247/Card The Bacteriologist 220f53.yaml' +- !include 'Custom_Model_Bag Set-aside a45247/Card Anarchist''s Cab abd634.yaml' +- !include 'Custom_Model_Bag Set-aside a45247/Deck Weaknesses 2bec59.yaml' +- !include 'Custom_Model_Bag Set-aside a45247/Deck Blue Ruin Treachery 912d1d.yaml' +- !include 'Custom_Model_Bag Set-aside a45247/Deck London Streets e42478.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 Stolen Bacillus +GMNotes: '' +GUID: a45247 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +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.6952008 + posY: 1.55831861 + posZ: 14.2788019 + rotX: 359.955139 + rotY: 224.998032 + rotZ: 0.06867219 + scaleX: 2.0 + scaleY: 2.0 + scaleZ: 2.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag The Stolen Baillius bfefd4/Custom_Model_Bag Set-aside a45247/Card Anarchist's Cab abd634.yaml new file mode 100644 index 000000000..03255acd9 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Stolen Baillius bfefd4/Custom_Model_Bag Set-aside a45247/Card Anarchist's Cab abd634.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 231739 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2317': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359884868/6F819F1C9F37B76E90756822097576B0CF70DE09/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359885600/F7F5C1342971D3B6F8A195241BAA8B37D5F4D82B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '''Arry ''Icks Cab' +GMNotes: '' +GUID: abd634 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Anarchist's Cab +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.96705723 + posY: 3.61034036 + posZ: 7.864057 + rotX: 359.9192 + rotY: 269.998566 + rotZ: 0.0152728716 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag The Stolen Baillius bfefd4/Custom_Model_Bag Set-aside a45247/Card Hackney Cab 908abd.yaml new file mode 100644 index 000000000..7eac7f4b7 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Stolen Baillius bfefd4/Custom_Model_Bag Set-aside a45247/Card Hackney Cab 908abd.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 231708 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2317': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359884868/6F819F1C9F37B76E90756822097576B0CF70DE09/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359885600/F7F5C1342971D3B6F8A195241BAA8B37D5F4D82B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 908abd +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Hackney Cab +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.54892159 + posY: 3.55882645 + posZ: 5.15171 + rotX: 359.91983 + rotY: 269.9911 + rotZ: 4.310326 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag The Stolen Baillius bfefd4/Custom_Model_Bag Set-aside a45247/Card The Bacteriologist 220f53.yaml new file mode 100644 index 000000000..0fb6c241b --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Stolen Baillius bfefd4/Custom_Model_Bag Set-aside a45247/Card The Bacteriologist 220f53.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 231707 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2317': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359884868/6F819F1C9F37B76E90756822097576B0CF70DE09/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359885600/F7F5C1342971D3B6F8A195241BAA8B37D5F4D82B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: An acquaintance of Mr Wells +GMNotes: '' +GUID: 220f53 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: The Bacteriologist +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.603438 + posY: 3.61124873 + posZ: 7.88654327 + rotX: 359.919342 + rotY: 269.9952 + rotZ: 0.000200960509 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag The Stolen Baillius bfefd4/Custom_Model_Bag Set-aside a45247/Deck Blue Ruin Treachery 912d1d.yaml new file mode 100644 index 000000000..b74ead46e --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Stolen Baillius bfefd4/Custom_Model_Bag Set-aside a45247/Deck Blue Ruin Treachery 912d1d.yaml @@ -0,0 +1,387 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 231736 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2317': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359884868/6F819F1C9F37B76E90756822097576B0CF70DE09/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359885600/F7F5C1342971D3B6F8A195241BAA8B37D5F4D82B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 81caf3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Brilliantly Planned + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 9.991308 + posY: 1.53902364 + posZ: -0.580173969 + rotX: 359.9151 + rotY: 269.9996 + rotZ: 0.015095409 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231735 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2317': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359884868/6F819F1C9F37B76E90756822097576B0CF70DE09/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359885600/F7F5C1342971D3B6F8A195241BAA8B37D5F4D82B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 53bf80 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Water Supply + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 9.960255 + posY: 1.6794939 + posZ: -0.628136337 + rotX: 359.922333 + rotY: 269.999451 + rotZ: 0.009327096 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231737 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2317': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359884868/6F819F1C9F37B76E90756822097576B0CF70DE09/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359885600/F7F5C1342971D3B6F8A195241BAA8B37D5F4D82B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 0eade2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: In His Socks! + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 9.909511 + posY: 1.69730937 + posZ: -0.740114748 + rotX: 359.919 + rotY: 269.993561 + rotZ: 0.0215441938 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231731 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2317': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359884868/6F819F1C9F37B76E90756822097576B0CF70DE09/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359885600/F7F5C1342971D3B6F8A195241BAA8B37D5F4D82B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 8898a0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Drivin' a Loonatic + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 10.165947 + posY: 1.68325973 + posZ: -0.591561139 + rotX: 359.921 + rotY: 270.008575 + rotZ: 0.02857296 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231732 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2317': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359884868/6F819F1C9F37B76E90756822097576B0CF70DE09/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359885600/F7F5C1342971D3B6F8A195241BAA8B37D5F4D82B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 2aef7f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Death, death, death! + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 10.6930742 + posY: 1.68056369 + posZ: -0.787656844 + rotX: 359.9166 + rotY: 269.9994 + rotZ: 0.0184340775 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231733 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2317': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359884868/6F819F1C9F37B76E90756822097576B0CF70DE09/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359885600/F7F5C1342971D3B6F8A195241BAA8B37D5F4D82B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 5436be + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Cab Sways + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 10.2802658 + posY: 1.68373 + posZ: -0.927349031 + rotX: 359.9212 + rotY: 270.002655 + rotZ: 359.9857 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231730 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2317': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359884868/6F819F1C9F37B76E90756822097576B0CF70DE09/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359885600/F7F5C1342971D3B6F8A195241BAA8B37D5F4D82B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: af19f7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Awfulness + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 10.8211651 + posY: 1.68802965 + posZ: -0.7092215 + rotX: 359.916321 + rotY: 270.02243 + rotZ: 0.0186949149 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231734 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2317': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359884868/6F819F1C9F37B76E90756822097576B0CF70DE09/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359885600/F7F5C1342971D3B6F8A195241BAA8B37D5F4D82B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: a1a74f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: A 'igh 'at + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 10.269887 + posY: 1.6950717 + posZ: -0.938073039 + rotX: 359.917755 + rotY: 269.998383 + rotZ: 0.0185061712 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2317': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359884868/6F819F1C9F37B76E90756822097576B0CF70DE09/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359885600/F7F5C1342971D3B6F8A195241BAA8B37D5F4D82B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 231736 +- 231735 +- 231737 +- 231731 +- 231732 +- 231733 +- 231730 +- 231734 +Description: The Stolen Bacillus +GMNotes: '' +GUID: 912d1d +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Blue Ruin Treachery +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.94584823 + posY: 3.593338 + posZ: 7.91502666 + rotX: 359.919525 + rotY: 270.033173 + rotZ: 0.0170368943 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag The Stolen Baillius bfefd4/Custom_Model_Bag Set-aside a45247/Deck London Streets e42478.yaml new file mode 100644 index 000000000..0c1034fee --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Stolen Baillius bfefd4/Custom_Model_Bag Set-aside a45247/Deck London Streets e42478.yaml @@ -0,0 +1,387 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 231723 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2317': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359884868/6F819F1C9F37B76E90756822097576B0CF70DE09/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359885600/F7F5C1342971D3B6F8A195241BAA8B37D5F4D82B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Street + GMNotes: '' + GUID: 191eb8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: London Street + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.82653141 + posY: 1.56146836 + posZ: 14.6197443 + rotX: 359.920135 + rotY: 269.9999 + rotZ: 0.0168734286 + 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: http://cloud-3.steamusercontent.com/ugc/778493732359884868/6F819F1C9F37B76E90756822097576B0CF70DE09/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359885600/F7F5C1342971D3B6F8A195241BAA8B37D5F4D82B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Street + GMNotes: '' + GUID: 1fc69d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: London Street + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.83667135 + posY: 1.56070852 + posZ: 11.9916172 + rotX: 359.920135 + rotY: 270.0 + rotZ: 0.0168661028 + 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: http://cloud-3.steamusercontent.com/ugc/778493732359884868/6F819F1C9F37B76E90756822097576B0CF70DE09/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359885600/F7F5C1342971D3B6F8A195241BAA8B37D5F4D82B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Street + GMNotes: '' + GUID: f229f3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: London Street + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -6.348743 + posY: 1.56719208 + posZ: 17.3818722 + rotX: 359.920135 + rotY: 270.0001 + rotZ: 0.0168664511 + 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: http://cloud-3.steamusercontent.com/ugc/778493732359884868/6F819F1C9F37B76E90756822097576B0CF70DE09/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359885600/F7F5C1342971D3B6F8A195241BAA8B37D5F4D82B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Street + GMNotes: '' + GUID: a8ac4a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: London Street + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -6.37617874 + posY: 1.56639767 + posZ: 14.5545292 + rotX: 359.9201 + rotY: 270.000061 + rotZ: 0.0168709457 + 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: http://cloud-3.steamusercontent.com/ugc/778493732359884868/6F819F1C9F37B76E90756822097576B0CF70DE09/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359885600/F7F5C1342971D3B6F8A195241BAA8B37D5F4D82B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Street + GMNotes: '' + GUID: 0d70c9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: London Street + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -6.374902 + posY: 1.56566393 + posZ: 12.0684633 + rotX: 359.920135 + rotY: 269.999939 + rotZ: 0.0168648567 + 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: http://cloud-3.steamusercontent.com/ugc/778493732359884868/6F819F1C9F37B76E90756822097576B0CF70DE09/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359885600/F7F5C1342971D3B6F8A195241BAA8B37D5F4D82B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Street + GMNotes: '' + GUID: 47d8aa + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: London Street + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -6.45583 + posY: 1.56808865 + posZ: 19.920126 + rotX: 359.920135 + rotY: 270.000183 + rotZ: 0.01686956 + 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: http://cloud-3.steamusercontent.com/ugc/778493732359884868/6F819F1C9F37B76E90756822097576B0CF70DE09/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359885600/F7F5C1342971D3B6F8A195241BAA8B37D5F4D82B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Street + GMNotes: '' + GUID: 4a20bc + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: London Street + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.799446 + posY: 1.55992591 + posZ: 9.510285 + rotX: 359.920135 + rotY: 270.0 + rotZ: 0.0168699455 + 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: http://cloud-3.steamusercontent.com/ugc/778493732359884868/6F819F1C9F37B76E90756822097576B0CF70DE09/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359885600/F7F5C1342971D3B6F8A195241BAA8B37D5F4D82B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Street + GMNotes: '' + GUID: cb5d54 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: London Street + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -6.3264246 + posY: 1.56485426 + posZ: 9.548976 + rotX: 359.920135 + rotY: 270.0 + rotZ: 0.0168719161 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2317': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359884868/6F819F1C9F37B76E90756822097576B0CF70DE09/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359885600/F7F5C1342971D3B6F8A195241BAA8B37D5F4D82B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 231723 +- 231722 +- 231720 +- 231719 +- 231718 +- 231721 +- 231717 +- 231716 +Description: The Stolen Bacillus +GMNotes: '' +GUID: e42478 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: London Streets +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.87203121 + posY: 3.59317851 + posZ: 7.646871 + rotX: 359.919525 + rotY: 269.999756 + rotZ: 0.0170892142 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag The Stolen Baillius bfefd4/Custom_Model_Bag Set-aside a45247/Deck Weaknesses 2bec59.yaml new file mode 100644 index 000000000..86fa90e67 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Stolen Baillius bfefd4/Custom_Model_Bag Set-aside a45247/Deck Weaknesses 2bec59.yaml @@ -0,0 +1,172 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 231709 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2317': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359884868/6F819F1C9F37B76E90756822097576B0CF70DE09/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359885600/F7F5C1342971D3B6F8A195241BAA8B37D5F4D82B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: df5859 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Streets of London + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 6.28404 + posY: 1.54521668 + posZ: 2.92604685 + rotX: 359.914673 + rotY: 270.008881 + rotZ: 0.009079859 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231738 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2317': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359884868/6F819F1C9F37B76E90756822097576B0CF70DE09/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359885600/F7F5C1342971D3B6F8A195241BAA8B37D5F4D82B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Weakness + GMNotes: '' + GUID: edd17e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Blue Rain + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 6.33932066 + posY: 1.685481 + posZ: 2.62946367 + rotX: 359.9313 + rotY: 269.990082 + rotZ: 0.0278723389 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231738 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2317': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359884868/6F819F1C9F37B76E90756822097576B0CF70DE09/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359885600/F7F5C1342971D3B6F8A195241BAA8B37D5F4D82B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Weakness + GMNotes: '' + GUID: 142ccd + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Blue Rain + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 6.227158 + posY: 1.70356035 + posZ: 3.00358248 + rotX: 359.918579 + rotY: 270.032562 + rotZ: 359.992035 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2317': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359884868/6F819F1C9F37B76E90756822097576B0CF70DE09/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359885600/F7F5C1342971D3B6F8A195241BAA8B37D5F4D82B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 231709 +- 231738 +- 231738 +Description: '' +GMNotes: '' +GUID: 2bec59 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Weaknesses +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.11195517 + posY: 3.61007214 + posZ: 8.021917 + rotX: 359.918182 + rotY: 270.024933 + rotZ: 0.0174046531 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Stolen Baillius bfefd4/Custom_Tile 33116d.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Stolen Baillius bfefd4/Custom_Tile 33116d.yaml new file mode 100644 index 000000000..273104c03 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Stolen Baillius bfefd4/Custom_Tile 33116d.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 33116d +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.119 + posY: 1.61835182 + posZ: -3.2752 + rotX: 0.0445654355 + rotY: 44.9998627 + rotZ: 359.9316 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Stolen Baillius bfefd4/Custom_Tile 631549.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Stolen Baillius bfefd4/Custom_Tile 631549.yaml new file mode 100644 index 000000000..5a431d144 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Stolen Baillius bfefd4/Custom_Tile 631549.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: '631549' +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.6766 + posY: 1.61565268 + posZ: 3.86000013 + rotX: 359.983154 + rotY: 0.00890091248 + rotZ: 359.920044 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Stolen Baillius bfefd4/Custom_Tile 7234af.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Stolen Baillius bfefd4/Custom_Tile 7234af.yaml new file mode 100644 index 000000000..dfa09a938 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Stolen Baillius bfefd4/Custom_Tile 7234af.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 7234af +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.4879 + posY: 1.61000466 + posZ: -0.219900221 + rotX: 359.9201 + rotY: 269.9942 + rotZ: 0.0169081483 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Stolen Baillius bfefd4/Custom_Tile 79090a.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Stolen Baillius bfefd4/Custom_Tile 79090a.yaml new file mode 100644 index 000000000..468ac98a3 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Stolen Baillius bfefd4/Custom_Tile 79090a.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 79090a +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.6765 + posY: 1.61338782 + posZ: -3.8300004 + rotX: 0.0168718267 + rotY: 179.999985 + rotZ: 0.07994098 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Stolen Baillius bfefd4/Custom_Tile 82e02f.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Stolen Baillius bfefd4/Custom_Tile 82e02f.yaml new file mode 100644 index 000000000..1b17f52b0 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Stolen Baillius bfefd4/Custom_Tile 82e02f.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 82e02f +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.575 + posY: 1.61852765 + posZ: -0.101200275 + rotX: 359.9201 + rotY: 269.99472 + rotZ: 0.01690733 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Stolen Baillius bfefd4/Custom_Tile Core Difficulty ec7a73.ttslua b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Stolen Baillius bfefd4/Custom_Tile Core Difficulty ec7a73.ttslua new file mode 100644 index 000000000..c7ea585c8 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Stolen Baillius bfefd4/Custom_Tile Core Difficulty ec7a73.ttslua @@ -0,0 +1,21 @@ +name = 'Core Set' + +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 The Side Missions 791837/Custom_Model_Bag The Stolen Baillius bfefd4/Custom_Tile Core Difficulty ec7a73.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Stolen Baillius bfefd4/Custom_Tile Core Difficulty ec7a73.yaml new file mode 100644 index 000000000..2c00d829b --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Stolen Baillius bfefd4/Custom_Tile Core Difficulty ec7a73.yaml @@ -0,0 +1,42 @@ +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 +GMNotes: '' +GUID: ec7a73 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Tile Core Difficulty ec7a73.ttslua' +LuaScriptState: '' +Name: Custom_Tile +Nickname: Core Difficulty +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -4.1848197 + posY: 1.58295929 + posZ: -14.8511143 + rotX: 359.919739 + rotY: 270.028961 + rotZ: 0.0167977158 + scaleX: 2.2 + scaleY: 1.0 + scaleZ: 2.2 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Stolen Baillius bfefd4/Deck edcae4.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Stolen Baillius bfefd4/Deck edcae4.yaml new file mode 100644 index 000000000..3df589ecb --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Stolen Baillius bfefd4/Deck edcae4.yaml @@ -0,0 +1,215 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 231726 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2317': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359884868/6F819F1C9F37B76E90756822097576B0CF70DE09/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359885600/F7F5C1342971D3B6F8A195241BAA8B37D5F4D82B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Laboratory + GMNotes: '' + GUID: dac7e2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Laboratory + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -30.2242 + posY: 1.69529319 + posZ: -0.03005521 + rotX: 359.920624 + rotY: 270.0023 + rotZ: 0.0130287651 + 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: http://cloud-3.steamusercontent.com/ugc/778493732359884868/6F819F1C9F37B76E90756822097576B0CF70DE09/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359885600/F7F5C1342971D3B6F8A195241BAA8B37D5F4D82B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Laboratory + GMNotes: '' + GUID: 54de25 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Laboratory + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -30.2242126 + posY: 1.845159 + posZ: -0.0299992487 + rotX: 359.910828 + rotY: 270.000732 + rotZ: 0.0123832142 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231728 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2317': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359884868/6F819F1C9F37B76E90756822097576B0CF70DE09/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359885600/F7F5C1342971D3B6F8A195241BAA8B37D5F4D82B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Laboratory + GMNotes: '' + GUID: b62323 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Laboratory + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -30.2242432 + posY: 1.86263621 + posZ: -0.0300086066 + rotX: 359.92218 + rotY: 270.000854 + rotZ: 0.0141057931 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231729 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2317': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359884868/6F819F1C9F37B76E90756822097576B0CF70DE09/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359885600/F7F5C1342971D3B6F8A195241BAA8B37D5F4D82B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Laboratory + GMNotes: '' + GUID: 716aba + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Laboratory + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -30.2242432 + posY: 1.848991 + posZ: -0.0300091226 + rotX: 359.92215 + rotY: 270.000916 + rotZ: 0.0141727543 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2317': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359884868/6F819F1C9F37B76E90756822097576B0CF70DE09/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359885600/F7F5C1342971D3B6F8A195241BAA8B37D5F4D82B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 231726 +- 231727 +- 231728 +- 231729 +Description: '' +GMNotes: '' +GUID: edcae4 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -30.2242 + posY: 1.69338775 + posZ: -0.0301004946 + rotX: 359.9201 + rotY: 270.0021 + rotZ: 0.01687324 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Stolen Baillius bfefd4/Deck Act Deck f305a2.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Stolen Baillius bfefd4/Deck Act Deck f305a2.yaml new file mode 100644 index 000000000..24d48275e --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Stolen Baillius bfefd4/Deck Act Deck f305a2.yaml @@ -0,0 +1,215 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 231815 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359884868/6F819F1C9F37B76E90756822097576B0CF70DE09/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359885600/F7F5C1342971D3B6F8A195241BAA8B37D5F4D82B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 4 + GMNotes: '' + GUID: a36717 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Very Good, Ma'am! + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 5.65969133 + posY: 1.54938018 + posZ: 14.1362839 + rotX: 0.0107390424 + rotY: 180.000046 + rotZ: 0.077073954 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231814 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359884868/6F819F1C9F37B76E90756822097576B0CF70DE09/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359885600/F7F5C1342971D3B6F8A195241BAA8B37D5F4D82B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 3 + GMNotes: '' + GUID: c6b5b0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Down the Street + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 8.342016 + posY: 1.54566932 + posZ: 14.1719856 + rotX: 0.0110853193 + rotY: 180.000824 + rotZ: 0.07609181 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231813 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359884868/6F819F1C9F37B76E90756822097576B0CF70DE09/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359885600/F7F5C1342971D3B6F8A195241BAA8B37D5F4D82B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 2 + GMNotes: '' + GUID: cd0b63 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Pockets? + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 10.9477558 + posY: 1.54200077 + posZ: 14.0700436 + rotX: 0.01190556 + rotY: 180.000015 + rotZ: 0.07829742 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231812 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359884868/6F819F1C9F37B76E90756822097576B0CF70DE09/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359885600/F7F5C1342971D3B6F8A195241BAA8B37D5F4D82B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 1 + GMNotes: '' + GUID: 2db53e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: In My hand? + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 11.0712347 + posY: 1.68217206 + posZ: 14.1083288 + rotX: 0.0177685712 + rotY: 180.000244 + rotZ: 0.09109935 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2318': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359884868/6F819F1C9F37B76E90756822097576B0CF70DE09/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359885600/F7F5C1342971D3B6F8A195241BAA8B37D5F4D82B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 231815 +- 231814 +- 231813 +- 231812 +Description: The Stolen Bacillus +GMNotes: '' +GUID: f305a2 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Act Deck +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.6885 + posY: 1.65349448 + posZ: -5.0485 + rotX: 0.0168381315 + rotY: 179.997772 + rotZ: 0.08025692 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Stolen Baillius bfefd4/Deck Agenda deck 6a9431.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Stolen Baillius bfefd4/Deck Agenda deck 6a9431.yaml new file mode 100644 index 000000000..9dd2c6ebf --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Stolen Baillius bfefd4/Deck Agenda deck 6a9431.yaml @@ -0,0 +1,129 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 231811 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359884868/6F819F1C9F37B76E90756822097576B0CF70DE09/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359885600/F7F5C1342971D3B6F8A195241BAA8B37D5F4D82B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 2 + GMNotes: '' + GUID: c96242 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Foremost Cab + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 11.2658768 + posY: 1.54323339 + posZ: 19.4570637 + rotX: 0.0160731971 + rotY: 180.00351 + rotZ: 0.0796655 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231810 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2318': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359884868/6F819F1C9F37B76E90756822097576B0CF70DE09/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359885600/F7F5C1342971D3B6F8A195241BAA8B37D5F4D82B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 1 + GMNotes: '' + GUID: a6df58 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Bottled Cholera + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 11.3257837 + posY: 1.68378675 + posZ: 19.5206356 + rotX: 0.00705788331 + rotY: 179.999344 + rotZ: 0.07831224 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2318': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359884868/6F819F1C9F37B76E90756822097576B0CF70DE09/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359885600/F7F5C1342971D3B6F8A195241BAA8B37D5F4D82B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 231811 +- 231810 +Description: The Stolen Bacillus +GMNotes: '' +GUID: 6a9431 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Agenda deck +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.7247 + posY: 1.66397727 + posZ: 0.3733004 + rotX: 0.01683002 + rotY: 180.003387 + rotZ: 0.08025895 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Stolen Baillius bfefd4/Deck Encounter deck 0e6c8c.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Stolen Baillius bfefd4/Deck Encounter deck 0e6c8c.yaml new file mode 100644 index 000000000..77165a393 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Stolen Baillius bfefd4/Deck Encounter deck 0e6c8c.yaml @@ -0,0 +1,738 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 12119 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '121': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: f1a34d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dissonant Voices + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 116.318008 + posY: 1.40297079 + posZ: 2.02551055 + rotX: 359.987427 + rotY: 270.046936 + rotZ: 359.984528 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12119 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '121': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: '260768' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dissonant Voices + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 116.206024 + posY: 1.54851818 + posZ: 1.69081855 + rotX: 0.453712761 + rotY: 270.0 + rotZ: 0.605071843 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12118 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '121': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: 27c05d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Frozen in Fear + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 116.299973 + posY: 1.569287 + posZ: 1.46156657 + rotX: 359.989929 + rotY: 270.000061 + rotZ: 359.987671 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12118 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '121': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: c40f57 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Frozen in Fear + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 116.363129 + posY: 1.55607748 + posZ: 1.91277838 + rotX: 359.809937 + rotY: 270.046265 + rotZ: 0.250917822 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12117 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '121': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: aa3d47 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Rotting Remains + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 116.843185 + posY: 1.54545975 + posZ: 1.48686087 + rotX: 359.989929 + rotY: 270.0 + rotZ: 359.98764 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12117 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '121': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: da8001 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Rotting Remains + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 116.950279 + posY: 1.5376091 + posZ: 1.28928447 + rotX: 358.786469 + rotY: 270.025024 + rotZ: 2.07151151 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12117 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '121': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: 18e09c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Rotting Remains + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 117.053131 + posY: 1.56189775 + posZ: 1.68414187 + rotX: 359.987427 + rotY: 270.047 + rotZ: 359.984528 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12120 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '121': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: e0f4c0 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ancient Evils + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 115.309677 + posY: 1.40331125 + posZ: 1.5845021 + rotX: 359.987427 + rotY: 270.0 + rotZ: 359.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12120 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '121': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: 1921c5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ancient Evils + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 115.318665 + posY: 1.5414474 + posZ: 1.587292 + rotX: 359.989929 + rotY: 270.000031 + rotZ: 359.9876 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12120 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '121': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: 61e841 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ancient Evils + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 114.991905 + posY: 1.59937644 + posZ: 1.31244183 + rotX: 1.97711754 + rotY: 270.070251 + rotZ: 359.990356 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3752 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '37': + BackIsHidden: true + BackURL: https://i.imgur.com/h4om3TQ.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87098596225478692/B2438BEE2CDD4D172BAFA5DFDD15C0F29B079D4F/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Omen. + GMNotes: '' + GUID: 7a814c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Twist of Fate + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 102.541641 + posY: 1.40976667 + posZ: -12.4745493 + rotX: 359.981262 + rotY: 269.998077 + rotZ: 359.984039 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3752 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '37': + BackIsHidden: true + BackURL: https://i.imgur.com/h4om3TQ.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87098596225478692/B2438BEE2CDD4D172BAFA5DFDD15C0F29B079D4F/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Omen. + GMNotes: '' + GUID: '754870' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Twist of Fate + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 102.251732 + posY: 1.54939449 + posZ: -12.6249342 + rotX: -0.003878043 + rotY: 270.001038 + rotZ: 359.993439 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3752 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '37': + BackIsHidden: true + BackURL: https://i.imgur.com/h4om3TQ.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87098596225478692/B2438BEE2CDD4D172BAFA5DFDD15C0F29B079D4F/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Omen. + GMNotes: '' + GUID: f11672 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Twist of Fate + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 102.516029 + posY: 1.53537273 + posZ: -11.9082127 + rotX: 1.18894553 + rotY: 269.99054 + rotZ: 359.979553 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3751 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '37': + BackIsHidden: true + BackURL: https://i.imgur.com/h4om3TQ.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87098596225478692/B2438BEE2CDD4D172BAFA5DFDD15C0F29B079D4F/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Omen. + GMNotes: '' + GUID: 85da91 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Cursed Luck + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 103.125893 + posY: 1.55867076 + posZ: -12.2961349 + rotX: 359.986877 + rotY: 269.996216 + rotZ: 359.9824 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3751 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '37': + BackIsHidden: true + BackURL: https://i.imgur.com/h4om3TQ.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87098596225478692/B2438BEE2CDD4D172BAFA5DFDD15C0F29B079D4F/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Omen. + GMNotes: '' + GUID: 98fea7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Cursed Luck + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 103.118362 + posY: 1.55657685 + posZ: -11.9283237 + rotX: 359.990021 + rotY: 270.003235 + rotZ: 359.99408 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3751 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '37': + BackIsHidden: true + BackURL: https://i.imgur.com/h4om3TQ.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87098596225478692/B2438BEE2CDD4D172BAFA5DFDD15C0F29B079D4F/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Omen. + GMNotes: '' + GUID: cbb71e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Cursed Luck + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 103.040634 + posY: 1.5592804 + posZ: -12.123332 + rotX: 359.987518 + rotY: 270.009247 + rotZ: 359.984558 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '121': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '37': + BackIsHidden: true + BackURL: https://i.imgur.com/h4om3TQ.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87098596225478692/B2438BEE2CDD4D172BAFA5DFDD15C0F29B079D4F/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 12119 +- 12119 +- 12118 +- 12118 +- 12117 +- 12117 +- 12117 +- 12120 +- 12120 +- 12120 +- 3752 +- 3752 +- 3752 +- 3751 +- 3751 +- 3751 +Description: The Stolen Bacillus +GMNotes: '' +GUID: 0e6c8c +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Encounter deck +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.9277 + posY: 1.69709766 + posZ: 5.75710154 + 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 The Side Missions 791837/Custom_Model_Bag The Stolen Baillius bfefd4/Deck SetupResolution 102272.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Stolen Baillius bfefd4/Deck SetupResolution 102272.yaml new file mode 100644 index 000000000..6170e95e9 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Stolen Baillius bfefd4/Deck SetupResolution 102272.yaml @@ -0,0 +1,344 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 231706 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2317': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359884868/6F819F1C9F37B76E90756822097576B0CF70DE09/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359885600/F7F5C1342971D3B6F8A195241BAA8B37D5F4D82B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 89ac1b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -18.4238415 + posY: 1.57836211 + posZ: -1.44924676 + rotX: 359.912384 + rotY: 269.9531 + rotZ: 0.0128032351 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231705 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2317': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359884868/6F819F1C9F37B76E90756822097576B0CF70DE09/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359885600/F7F5C1342971D3B6F8A195241BAA8B37D5F4D82B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 58ff5b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -16.6809158 + posY: 1.57668781 + posZ: 1.82218122 + rotX: 359.901672 + rotY: 269.9968 + rotZ: 0.008882863 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231704 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2317': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359884868/6F819F1C9F37B76E90756822097576B0CF70DE09/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359885600/F7F5C1342971D3B6F8A195241BAA8B37D5F4D82B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 22a242 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -14.2496338 + posY: 1.57436824 + posZ: 4.58182526 + rotX: 359.915253 + rotY: 269.998352 + rotZ: 0.0137420371 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231703 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2317': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359884868/6F819F1C9F37B76E90756822097576B0CF70DE09/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359885600/F7F5C1342971D3B6F8A195241BAA8B37D5F4D82B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 00dc67 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 12.6661015 + posY: 1.77517867 + posZ: 23.6994972 + rotX: 359.938049 + rotY: 270.000854 + rotZ: 356.2802 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231702 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2317': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359884868/6F819F1C9F37B76E90756822097576B0CF70DE09/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359885600/F7F5C1342971D3B6F8A195241BAA8B37D5F4D82B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 85cca8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 12.76847 + posY: 1.70451176 + posZ: 23.7886658 + rotX: 359.9219 + rotY: 270.036743 + rotZ: 358.9323 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231701 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2317': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359884868/6F819F1C9F37B76E90756822097576B0CF70DE09/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359885600/F7F5C1342971D3B6F8A195241BAA8B37D5F4D82B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: '992806' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 12.7597752 + posY: 1.68802416 + posZ: 24.0178356 + rotX: 359.918884 + rotY: 269.999969 + rotZ: 0.01451528 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231700 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2317': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359884868/6F819F1C9F37B76E90756822097576B0CF70DE09/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359885600/F7F5C1342971D3B6F8A195241BAA8B37D5F4D82B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 82cbc4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -10.4981279 + posY: 1.82299471 + posZ: 1.55174875 + rotX: 359.941345 + rotY: 270.000031 + rotZ: 0.0220869817 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2317': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732359884868/6F819F1C9F37B76E90756822097576B0CF70DE09/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732359885600/F7F5C1342971D3B6F8A195241BAA8B37D5F4D82B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 231706 +- 231705 +- 231704 +- 231703 +- 231702 +- 231701 +- 231700 +Description: The Stolen Bacillus +GMNotes: '' +GUID: '102272' +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Setup/Resolution +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -10.2893982 + posY: 1.67168558 + posZ: 2.02080083 + rotX: 359.9201 + rotY: 270.002319 + rotZ: 0.0168646835 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Svalbard Event 7bc42b.ttslua b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Svalbard Event 7bc42b.ttslua new file mode 100644 index 000000000..46067f58e --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Svalbard Event 7bc42b.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.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.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 791837/Custom_Model_Bag The Svalbard Event 7bc42b.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Svalbard Event 7bc42b.yaml new file mode 100644 index 000000000..737bc36b1 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Svalbard Event 7bc42b.yaml @@ -0,0 +1,83 @@ +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 Svalbard Event 7bc42b/Deck Put Aside 7dcc93.yaml' +- !include 'Custom_Model_Bag The Svalbard Event 7bc42b/Deck Encounter deck 9fac8b.yaml' +- !include 'Custom_Model_Bag The Svalbard Event 7bc42b/Deck Agenda f9ae22.yaml' +- !include 'Custom_Model_Bag The Svalbard Event 7bc42b/Deck Act c99e9d.yaml' +- !include 'Custom_Model_Bag The Svalbard Event 7bc42b/Card The Svalbard Event 713671.yaml' +- !include 'Custom_Model_Bag The Svalbard Event 7bc42b/Custom_Tile Core Difficulty + a751fe.yaml' +- !include 'Custom_Model_Bag The Svalbard Event 7bc42b/Deck Instructions 963cfe.yaml' +- !include 'Custom_Model_Bag The Svalbard Event 7bc42b/Card 37ec51.yaml' +- !include 'Custom_Model_Bag The Svalbard Event 7bc42b/Custom_Tile 7234af.yaml' +- !include 'Custom_Model_Bag The Svalbard Event 7bc42b/Card 1a4e64.yaml' +- !include 'Custom_Model_Bag The Svalbard Event 7bc42b/Card 0967ea.yaml' +- !include 'Custom_Model_Bag The Svalbard Event 7bc42b/Custom_Tile b149b1.yaml' +- !include 'Custom_Model_Bag The Svalbard Event 7bc42b/Custom_Tile e10b7c.yaml' +- !include 'Custom_Model_Bag The Svalbard Event 7bc42b/Card ca0e9b.yaml' +- !include 'Custom_Model_Bag The Svalbard Event 7bc42b/Custom_Tile 88005c.yaml' +- !include 'Custom_Model_Bag The Svalbard Event 7bc42b/Card 6a72fc.yaml' +- !include 'Custom_Model_Bag The Svalbard Event 7bc42b/Custom_Tile 4c2b84.yaml' +- !include 'Custom_Model_Bag The Svalbard Event 7bc42b/Card bbe4b0.yaml' +- !include 'Custom_Model_Bag The Svalbard Event 7bc42b/Custom_Tile bc7323.yaml' +- !include 'Custom_Model_Bag The Svalbard Event 7bc42b/Card a8a4b1.yaml' +- !include 'Custom_Model_Bag The Svalbard Event 7bc42b/Custom_Tile 44b0c5.yaml' +- !include 'Custom_Model_Bag The Svalbard Event 7bc42b/Card 5f0185.yaml' +- !include 'Custom_Model_Bag The Svalbard Event 7bc42b/Card The Svalbard Event b11646.yaml' +CustomMesh: + CastShadows: true + ColliderURL: '' + Convex: true + DiffuseURL: http://cloud-3.steamusercontent.com/ugc/798737729142948942/FA97D7EF94B715ADD1EEE40831114451FBED200B/ + MaterialIndex: 3 + MeshURL: https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj + NormalURL: '' + TypeIndex: 6 +Description: '' +GMNotes: '' +GUID: 7bc42b +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Model_Bag The Svalbard Event 7bc42b.ttslua' +LuaScriptState: '{"ml":{"0967ea":{"lock":false,"pos":{"x":-23.6765,"y":1.6885,"z":7.57},"rot":{"x":359.9201,"y":269.9941,"z":0.0169}},"1a4e64":{"lock":false,"pos":{"x":-23.6766,"y":1.6862,"z":-0.03},"rot":{"x":359.9201,"y":269.9746,"z":0.0169}},"37ec51":{"lock":false,"pos":{"x":-17.12,"y":1.6771,"z":-0.03},"rot":{"x":359.9201,"y":269.9792,"z":0.0169}},"44b0c5":{"lock":false,"pos":{"x":-33.6265,"y":1.6284,"z":0.0656},"rot":{"x":359.9201,"y":269.9935,"z":0.0169}},"4c2b84":{"lock":false,"pos":{"x":-30.2242,"y":1.6248,"z":3.86},"rot":{"x":359.9831,"y":0,"z":359.92}},"5f0185":{"lock":false,"pos":{"x":-36.7732,"y":1.7045,"z":-0.03},"rot":{"x":359.9201,"y":269.9952,"z":0.0169}},"6a72fc":{"lock":false,"pos":{"x":-30.2243,"y":1.6976,"z":7.57},"rot":{"x":359.9201,"y":269.9945,"z":0.0169}},"713671":{"lock":false,"pos":{"x":-3.956,"y":1.6556,"z":-10.4412},"rot":{"x":359.9197,"y":269.9929,"z":0.0169}},"7234af":{"lock":false,"pos":{"x":-20.8364,"y":1.6106,"z":0.0223},"rot":{"x":359.9201,"y":269.9936,"z":0.0169}},"7dcc93":{"lock":false,"pos":{"x":1.6965,"y":1.6545,"z":14.2788},"rot":{"x":359.9552,"y":224.998,"z":0.0687}},"88005c":{"lock":false,"pos":{"x":-27.1056,"y":1.6193,"z":0.044},"rot":{"x":359.9201,"y":269.9936,"z":0.0169}},"963cfe":{"lock":false,"pos":{"x":-10.715,"y":1.6678,"z":0.2579},"rot":{"x":359.9201,"y":269.9997,"z":0.0169}},"9fac8b":{"lock":false,"pos":{"x":-3.9277,"y":1.7557,"z":5.7571},"rot":{"x":359.9197,"y":269.9771,"z":180.0169}},"a751fe":{"lock":false,"pos":{"x":-4.1944,"y":1.583,"z":-14.6164},"rot":{"x":359.9197,"y":270.0002,"z":0.0168}},"a8a4b1":{"lock":false,"pos":{"x":-30.2243,"y":1.6931,"z":-7.7},"rot":{"x":359.9201,"y":269.9951,"z":0.0169}},"b11646":{"lock":false,"pos":{"x":-50.9244,"y":1.7266,"z":8.1784},"rot":{"x":359.9201,"y":269.9929,"z":0.0169}},"b149b1":{"lock":false,"pos":{"x":-23.6765,"y":1.6157,"z":3.86},"rot":{"x":359.9831,"y":0.0001,"z":359.92}},"bbe4b0":{"lock":false,"pos":{"x":-30.2242,"y":1.6954,"z":-0.0301},"rot":{"x":359.9201,"y":269.9937,"z":0.0169}},"bc7323":{"lock":false,"pos":{"x":-30.2242,"y":1.6225,"z":-3.83},"rot":{"x":359.9831,"y":0,"z":359.9201}},"c99e9d":{"lock":false,"pos":{"x":-2.6886,"y":1.6623,"z":-5.0485},"rot":{"x":359.9197,"y":269.9824,"z":0.0169}},"ca0e9b":{"lock":false,"pos":{"x":-23.6765,"y":1.684,"z":-7.7},"rot":{"x":359.9201,"y":269.9952,"z":0.0169}},"e10b7c":{"lock":false,"pos":{"x":-23.6765,"y":1.6134,"z":-3.83},"rot":{"x":359.9831,"y":0,"z":359.9201}},"f9ae22":{"lock":false,"pos":{"x":-2.7251,"y":1.6566,"z":0.3733},"rot":{"x":359.9198,"y":269.9414,"z":0.0169}}}}' +MaterialIndex: -1 +MeshIndex: -1 +Name: Custom_Model_Bag +Nickname: The Svalbard Event +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 14.2502775 + posY: 8.491145 + posZ: -137.316177 + rotX: 0.0208086967 + rotY: 270.0 + rotZ: 0.0167711321 + scaleX: 2.21 + scaleY: 0.46 + scaleZ: 2.42 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Svalbard Event 7bc42b/Card 0967ea.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Svalbard Event 7bc42b/Card 0967ea.yaml new file mode 100644 index 000000000..706b2e9db --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Svalbard Event 7bc42b/Card 0967ea.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 206 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360110193/728C77347649B1E31473D71366B50E1B30CAFCA1/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360110636/03AAF5BA7EBD786D13121466A15ED12C316E4ED5/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 0967ea +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -23.6764584 + posY: 1.68845809 + posZ: 7.569957 + rotX: 359.9201 + rotY: 269.994141 + rotZ: 0.0168843362 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Svalbard Event 7bc42b/Card 1a4e64.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Svalbard Event 7bc42b/Card 1a4e64.yaml new file mode 100644 index 000000000..33480ecbe --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Svalbard Event 7bc42b/Card 1a4e64.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 203 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360110193/728C77347649B1E31473D71366B50E1B30CAFCA1/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360110636/03AAF5BA7EBD786D13121466A15ED12C316E4ED5/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 1a4e64 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -23.6765518 + posY: 1.68622053 + posZ: -0.03000858 + rotX: 359.9201 + rotY: 269.97464 + rotZ: 0.01691154 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Svalbard Event 7bc42b/Card 37ec51.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Svalbard Event 7bc42b/Card 37ec51.yaml new file mode 100644 index 000000000..584c0644b --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Svalbard Event 7bc42b/Card 37ec51.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 204 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360110193/728C77347649B1E31473D71366B50E1B30CAFCA1/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360110636/03AAF5BA7EBD786D13121466A15ED12C316E4ED5/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 37ec51 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -17.1199875 + posY: 1.67707765 + posZ: -0.0300008766 + rotX: 359.9201 + rotY: 269.9792 + rotZ: 0.01690449 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Svalbard Event 7bc42b/Card 5f0185.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Svalbard Event 7bc42b/Card 5f0185.yaml new file mode 100644 index 000000000..57011b4e5 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Svalbard Event 7bc42b/Card 5f0185.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 210 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360110193/728C77347649B1E31473D71366B50E1B30CAFCA1/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360110636/03AAF5BA7EBD786D13121466A15ED12C316E4ED5/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 5f0185 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -36.7732162 + posY: 1.70448291 + posZ: -0.0300230682 + rotX: 359.9201 + rotY: 269.995178 + rotZ: 0.01688291 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Svalbard Event 7bc42b/Card 6a72fc.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Svalbard Event 7bc42b/Card 6a72fc.yaml new file mode 100644 index 000000000..bb20d23d5 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Svalbard Event 7bc42b/Card 6a72fc.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 208 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360110193/728C77347649B1E31473D71366B50E1B30CAFCA1/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360110636/03AAF5BA7EBD786D13121466A15ED12C316E4ED5/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 6a72fc +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -30.2242851 + posY: 1.69758868 + posZ: 7.57000637 + rotX: 359.9201 + rotY: 269.994476 + rotZ: 0.0168839041 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Svalbard Event 7bc42b/Card a8a4b1.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Svalbard Event 7bc42b/Card a8a4b1.yaml new file mode 100644 index 000000000..4f9da453c --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Svalbard Event 7bc42b/Card a8a4b1.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 209 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360110193/728C77347649B1E31473D71366B50E1B30CAFCA1/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360110636/03AAF5BA7EBD786D13121466A15ED12C316E4ED5/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: a8a4b1 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -30.2243328 + posY: 1.69309235 + posZ: -7.70001268 + rotX: 359.9201 + rotY: 269.995117 + rotZ: 0.0168828946 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Svalbard Event 7bc42b/Card bbe4b0.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Svalbard Event 7bc42b/Card bbe4b0.yaml new file mode 100644 index 000000000..51e1b68bc --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Svalbard Event 7bc42b/Card bbe4b0.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 207 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360110193/728C77347649B1E31473D71366B50E1B30CAFCA1/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360110636/03AAF5BA7EBD786D13121466A15ED12C316E4ED5/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: bbe4b0 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -30.2241611 + posY: 1.69535065 + posZ: -0.03007803 + rotX: 359.9201 + rotY: 269.993744 + rotZ: 0.0168850329 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Svalbard Event 7bc42b/Card ca0e9b.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Svalbard Event 7bc42b/Card ca0e9b.yaml new file mode 100644 index 000000000..782810552 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Svalbard Event 7bc42b/Card ca0e9b.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 205 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360110193/728C77347649B1E31473D71366B50E1B30CAFCA1/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360110636/03AAF5BA7EBD786D13121466A15ED12C316E4ED5/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: ca0e9b +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: '' +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -23.6765385 + posY: 1.68396187 + posZ: -7.70001745 + rotX: 359.9201 + rotY: 269.9952 + rotZ: 0.0168828424 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Svalbard Event 7bc42b/Card The Svalbard Event 713671.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Svalbard Event 7bc42b/Card The Svalbard Event 713671.yaml new file mode 100644 index 000000000..e03cbadce --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Svalbard Event 7bc42b/Card The Svalbard Event 713671.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 214 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360110193/728C77347649B1E31473D71366B50E1B30CAFCA1/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360110636/03AAF5BA7EBD786D13121466A15ED12C316E4ED5/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: '713671' +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: The Svalbard Event +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.95596 + posY: 1.65564811 + posZ: -10.4411545 + rotX: 359.919739 + rotY: 269.99292 + rotZ: 0.0168527067 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Svalbard Event 7bc42b/Card The Svalbard Event b11646.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Svalbard Event 7bc42b/Card The Svalbard Event b11646.yaml new file mode 100644 index 000000000..3013f0dc0 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Svalbard Event 7bc42b/Card The Svalbard Event b11646.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 214 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360110193/728C77347649B1E31473D71366B50E1B30CAFCA1/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360110636/03AAF5BA7EBD786D13121466A15ED12C316E4ED5/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: b11646 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: The Svalbard Event +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -50.9243851 + posY: 1.72662532 + posZ: 8.17843151 + rotX: 359.9201 + rotY: 269.99292 + rotZ: 0.016887771 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Svalbard Event 7bc42b/Custom_Tile 44b0c5.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Svalbard Event 7bc42b/Custom_Tile 44b0c5.yaml new file mode 100644 index 000000000..a48b078a3 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Svalbard Event 7bc42b/Custom_Tile 44b0c5.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 44b0c5 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Tile +Nickname: '' +Snap: true +States: + '1': + 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: '' + GMNotes: '' + GUID: 814e74 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Custom_Tile + Nickname: '' + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -33.6264572 + posY: 1.62840962 + posZ: 0.06565009 + rotX: 359.9201 + rotY: 269.993561 + rotZ: 0.01692721 + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.6264572 + posY: 1.62840962 + posZ: 0.0656498447 + rotX: 359.9201 + rotY: 269.99353 + rotZ: 0.016908735 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Svalbard Event 7bc42b/Custom_Tile 4c2b84.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Svalbard Event 7bc42b/Custom_Tile 4c2b84.yaml new file mode 100644 index 000000000..473ae856b --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Svalbard Event 7bc42b/Custom_Tile 4c2b84.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 4c2b84 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.2241745 + posY: 1.6247828 + posZ: 3.85998631 + rotX: 359.983124 + rotY: 2.31114373e-05 + rotZ: 359.920044 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Svalbard Event 7bc42b/Custom_Tile 7234af.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Svalbard Event 7bc42b/Custom_Tile 7234af.yaml new file mode 100644 index 000000000..895d0f446 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Svalbard Event 7bc42b/Custom_Tile 7234af.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 7234af +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.8363762 + posY: 1.61056161 + posZ: 0.0222731363 + rotX: 359.9201 + rotY: 269.9936 + rotZ: 0.0169101488 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Svalbard Event 7bc42b/Custom_Tile 88005c.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Svalbard Event 7bc42b/Custom_Tile 88005c.yaml new file mode 100644 index 000000000..c35965040 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Svalbard Event 7bc42b/Custom_Tile 88005c.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 88005c +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.1056042 + posY: 1.61931026 + posZ: 0.0439543054 + rotX: 359.9201 + rotY: 269.993561 + rotZ: 0.0169109832 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Svalbard Event 7bc42b/Custom_Tile b149b1.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Svalbard Event 7bc42b/Custom_Tile b149b1.yaml new file mode 100644 index 000000000..812284cd2 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Svalbard Event 7bc42b/Custom_Tile b149b1.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: b149b1 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.6764565 + posY: 1.61565244 + posZ: 3.85998678 + rotX: 359.983124 + rotY: 5.734619e-05 + rotZ: 359.920044 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Svalbard Event 7bc42b/Custom_Tile bc7323.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Svalbard Event 7bc42b/Custom_Tile bc7323.yaml new file mode 100644 index 000000000..e1a88736c --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Svalbard Event 7bc42b/Custom_Tile bc7323.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: bc7323 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.22417 + posY: 1.6225183 + posZ: -3.830015 + rotX: 359.983124 + rotY: 3.21750267e-05 + rotZ: 359.920074 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Svalbard Event 7bc42b/Custom_Tile e10b7c.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Svalbard Event 7bc42b/Custom_Tile e10b7c.yaml new file mode 100644 index 000000000..cc4407f68 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Svalbard Event 7bc42b/Custom_Tile e10b7c.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: e10b7c +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.67645 + posY: 1.61338806 + posZ: -3.83001518 + rotX: 359.983124 + rotY: 3.62609826e-05 + rotZ: 359.920074 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Svalbard Event 7bc42b/Custom_Tile Core Difficulty a751fe.ttslua b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Svalbard Event 7bc42b/Custom_Tile Core Difficulty a751fe.ttslua new file mode 100644 index 000000000..c7ea585c8 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Svalbard Event 7bc42b/Custom_Tile Core Difficulty a751fe.ttslua @@ -0,0 +1,21 @@ +name = 'Core Set' + +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 The Side Missions 791837/Custom_Model_Bag The Svalbard Event 7bc42b/Custom_Tile Core Difficulty a751fe.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Svalbard Event 7bc42b/Custom_Tile Core Difficulty a751fe.yaml new file mode 100644 index 000000000..69c37a9cd --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Svalbard Event 7bc42b/Custom_Tile Core Difficulty a751fe.yaml @@ -0,0 +1,42 @@ +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 +GMNotes: '' +GUID: a751fe +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Tile Core Difficulty a751fe.ttslua' +LuaScriptState: '' +Name: Custom_Tile +Nickname: Core Difficulty +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -4.194357 + posY: 1.58304167 + posZ: -14.6163521 + rotX: 359.919739 + rotY: 270.0002 + rotZ: 0.01683808 + scaleX: 2.2 + scaleY: 1.0 + scaleZ: 2.2 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Svalbard Event 7bc42b/Deck Act c99e9d.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Svalbard Event 7bc42b/Deck Act c99e9d.yaml new file mode 100644 index 000000000..d0b83f508 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Svalbard Event 7bc42b/Deck Act c99e9d.yaml @@ -0,0 +1,129 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 149301 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1493': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360111286/BC64CB7E242E7AFF3F9F3A68875AAF5B78122FEB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360111889/C34C74097577A0BF1C377778F42F18ECD23E7E76/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: b1c954 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 12.5775032 + posY: 1.03170216 + posZ: -9.609604 + rotX: -0.0007127072 + rotY: 270.012268 + rotZ: -0.000222601026 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 149300 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1493': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360111286/BC64CB7E242E7AFF3F9F3A68875AAF5B78122FEB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360111889/C34C74097577A0BF1C377778F42F18ECD23E7E76/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 292aaa + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 12.8021145 + posY: 1.17048573 + posZ: -9.831781 + rotX: 359.9876 + rotY: 270.000427 + rotZ: 0.0006722287 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '1493': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360111286/BC64CB7E242E7AFF3F9F3A68875AAF5B78122FEB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360111889/C34C74097577A0BF1C377778F42F18ECD23E7E76/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 149301 +- 149300 +Description: '' +GMNotes: '' +GUID: c99e9d +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Act +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.68857026 + posY: 1.66233361 + posZ: -5.04852533 + rotX: 359.919739 + rotY: 269.982361 + rotZ: 0.0168624856 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Svalbard Event 7bc42b/Deck Agenda f9ae22.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Svalbard Event 7bc42b/Deck Agenda f9ae22.yaml new file mode 100644 index 000000000..43cd7e40b --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Svalbard Event 7bc42b/Deck Agenda f9ae22.yaml @@ -0,0 +1,169 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 149204 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360111286/BC64CB7E242E7AFF3F9F3A68875AAF5B78122FEB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360111889/C34C74097577A0BF1C377778F42F18ECD23E7E76/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: f50b4f + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -5.227466 + posY: 1.03171313 + posZ: 2.09661031 + rotX: -1.10731416e-05 + rotY: 180.000031 + rotZ: -1.36601841e-06 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 149203 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360111286/BC64CB7E242E7AFF3F9F3A68875AAF5B78122FEB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360111889/C34C74097577A0BF1C377778F42F18ECD23E7E76/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 78a018 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -5.314662 + posY: 1.17684233 + posZ: 1.97852814 + rotX: -0.002071313 + rotY: 180.000153 + rotZ: -0.00121393427 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 149202 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '4': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360111286/BC64CB7E242E7AFF3F9F3A68875AAF5B78122FEB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360111889/C34C74097577A0BF1C377778F42F18ECD23E7E76/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 292aaa + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -4.940847 + posY: 1.19415951 + posZ: 2.466609 + rotX: -0.0006104791 + rotY: 180.000015 + rotZ: 0.00013664148 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '1492': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360111286/BC64CB7E242E7AFF3F9F3A68875AAF5B78122FEB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360111889/C34C74097577A0BF1C377778F42F18ECD23E7E76/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 149204 +- 149203 +- 149202 +Description: the Svalbard Event +GMNotes: '' +GUID: f9ae22 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Agenda +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.725096 + posY: 1.65664184 + posZ: 0.373325825 + rotX: 359.919769 + rotY: 269.941376 + rotZ: 0.0169195551 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Svalbard Event 7bc42b/Deck Encounter deck 9fac8b.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Svalbard Event 7bc42b/Deck Encounter deck 9fac8b.yaml new file mode 100644 index 000000000..11943fc30 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Svalbard Event 7bc42b/Deck Encounter deck 9fac8b.yaml @@ -0,0 +1,1150 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 3614 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humaniod. Monster. Ghoul. + GMNotes: '' + GUID: d84de0 + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ghoul Minion + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -19.7288685 + posY: 1.23164022 + posZ: 5.061393 + rotX: -0.00355166267 + rotY: 269.99884 + rotZ: -0.00106878171 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3616 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: d60f3b + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Grasping Hands + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -21.5892124 + posY: 1.335341 + posZ: -0.10275472 + rotX: 0.0121570369 + rotY: 269.993347 + rotZ: -0.0005436771 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3616 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: 6a13ae + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Grasping Hands + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -20.7329159 + posY: 1.2813586 + posZ: -0.0925612152 + rotX: 0.00429656 + rotY: 270.022278 + rotZ: -0.000649601454 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3615 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humaniod. Monster. Ghoul. + GMNotes: '' + GUID: a65f30 + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ravenous Ghoul + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -19.8181629 + posY: 1.23171639 + posZ: 2.487658 + rotX: -2.3016848e-05 + rotY: 269.999939 + rotZ: -2.027022e-06 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3616 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: 9c193f + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Grasping Hands + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -19.6770039 + posY: 1.23163879 + posZ: -0.0248187073 + rotX: -0.00361831323 + rotY: 270.0224 + rotZ: -0.00109177944 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3614 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humaniod. Monster. Ghoul. + GMNotes: '' + GUID: 4218a0 + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ghoul Minion + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -20.6391163 + posY: 1.28146374 + posZ: 5.01242638 + rotX: 0.004181641 + rotY: 269.9984 + rotZ: -0.0005332415 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3614 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humaniod. Monster. Ghoul. + GMNotes: '' + GUID: 3e53b0 + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ghoul Minion + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -21.6324978 + posY: 1.33485162 + posZ: 4.96905327 + rotX: 0.0129893105 + rotY: 269.997925 + rotZ: -3.80091878e-05 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3628 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Obstacle. + GMNotes: '' + GUID: 9449d7 + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Locked Door + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -21.2385483 + posY: 1.231653 + posZ: 10.5873995 + rotX: -0.00300062378 + rotY: 270.038849 + rotZ: -0.00198885379 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3628 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Obstacle. + GMNotes: '' + GUID: 1340ff + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Locked Door + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -21.3002548 + posY: 1.37891018 + posZ: 10.607831 + rotX: 359.985657 + rotY: 270.026245 + rotZ: 0.0447875448 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3626 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Nightgaunt. + GMNotes: '' + GUID: '476433' + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Hunting Nightgaunt + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -22.1894913 + posY: 1.23165715 + posZ: 8.126968 + rotX: -0.00287241978 + rotY: 269.726624 + rotZ: -0.000931444752 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3626 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Nightgaunt. + GMNotes: '' + GUID: b124ef + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Hunting Nightgaunt + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -22.37006 + posY: 1.37715232 + posZ: 7.785293 + rotX: 0.00128005829 + rotY: 269.726654 + rotZ: 0.00324654416 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3627 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: dd287a + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: On Wings of Darkness + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -21.2239914 + posY: 1.231599 + posZ: 12.258028 + rotX: 0.00274006533 + rotY: 270.360443 + rotZ: 0.00162735826 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3627 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: b06ff1 + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: On Wings of Darkness + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -21.6091557 + posY: 1.37787735 + posZ: 11.9596348 + rotX: 0.223490238 + rotY: 269.9995 + rotZ: 0.3121837 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3619 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: '260768' + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dissonant Voices + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -19.1363125 + posY: 1.231699 + posZ: -7.400251 + rotX: -0.000820844667 + rotY: 270.0089 + rotZ: -0.000237511369 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3617 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: da8001 + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Rotting Remains + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -19.2726822 + posY: 1.23161709 + posZ: -4.69493532 + rotX: -0.00461160857 + rotY: 269.9793 + rotZ: -0.00137890945 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3619 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: f1a34d + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dissonant Voices + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -19.9809151 + posY: 1.28156877 + posZ: -7.79831076 + rotX: 0.011735606 + rotY: 270.009033 + rotZ: 0.00468536 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3618 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: 27c05d + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Frozen in Fear + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -18.967617 + posY: 1.231716 + posZ: -10.49529 + rotX: -3.11068325e-05 + rotY: 270.0013 + rotZ: -7.22032553e-07 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3617 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: 18e09c + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Rotting Remains + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -20.3450146 + posY: 1.28128624 + posZ: -4.537053 + rotX: 0.006250872 + rotY: 269.979126 + rotZ: -0.00126227119 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3618 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: c40f57 + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Frozen in Fear + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -19.6207886 + posY: 1.28169692 + posZ: -10.6840782 + rotX: -3.134726e-05 + rotY: 270.000763 + rotZ: 3.597804e-06 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3617 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Terror. + GMNotes: '' + GUID: aa3d47 + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Rotting Remains + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -21.5193939 + posY: 1.337018 + posZ: -4.78068352 + rotX: 0.0181244723 + rotY: 269.978149 + rotZ: 0.00253973226 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3622 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: 03a265 + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Obscuring Fog + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -17.4148483 + posY: 1.23167741 + posZ: 5.99956274 + rotX: -0.000976656 + rotY: 269.9857 + rotZ: 0.005132819 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3622 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: '356046' + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Obscuring Fog + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -17.4060268 + posY: 1.37945676 + posZ: 6.40290833 + rotX: -0.0007180891 + rotY: 270.000427 + rotZ: 0.00573350256 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3621 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: b78c3b + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Crypt Chill + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -20.9259262 + posY: 1.23167884 + posZ: 6.982535 + rotX: -0.00255119917 + rotY: 269.983215 + rotZ: -0.000175039211 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3621 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: fb311c + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Crypt Chill + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -21.2322311 + posY: 1.37918484 + posZ: 7.16166067 + rotX: 359.988861 + rotY: 269.991547 + rotZ: 0.0295213945 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3613 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Creature. + GMNotes: '' + GUID: 56e5db + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Swarm of Rats + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -19.7119656 + posY: 1.28121269 + posZ: 15.0893879 + rotX: 0.004087732 + rotY: 269.994171 + rotZ: -0.0020856997 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3613 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Creature. + GMNotes: '' + GUID: 7381cd + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Swarm of Rats + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -19.6142921 + posY: 1.42705274 + posZ: 15.2051964 + rotX: 0.012312145 + rotY: 269.997284 + rotZ: 0.0359485969 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3613 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Creature. + GMNotes: '' + GUID: bbc9d1 + Grid: true + GridProjection: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Swarm of Rats + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -18.9998322 + posY: 1.23161483 + posZ: 14.9262657 + rotX: -0.00489453 + rotY: 270.002747 + rotZ: -0.00167015032 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 3614 +- 3616 +- 3616 +- 3615 +- 3616 +- 3614 +- 3614 +- 3628 +- 3628 +- 3626 +- 3626 +- 3627 +- 3627 +- 3619 +- 3617 +- 3619 +- 3618 +- 3617 +- 3618 +- 3617 +- 3622 +- 3622 +- 3621 +- 3621 +- 3613 +- 3613 +- 3613 +Description: the Svalbard Event +GMNotes: '' +GUID: 9fac8b +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Encounter deck +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.92766 + posY: 1.75572157 + posZ: 5.75713634 + rotX: 359.919739 + rotY: 269.977142 + rotZ: 180.016861 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Svalbard Event 7bc42b/Deck Instructions 963cfe.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Svalbard Event 7bc42b/Deck Instructions 963cfe.yaml new file mode 100644 index 000000000..989dfc1c1 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Svalbard Event 7bc42b/Deck Instructions 963cfe.yaml @@ -0,0 +1,172 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 202 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360110193/728C77347649B1E31473D71366B50E1B30CAFCA1/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360110636/03AAF5BA7EBD786D13121466A15ED12C316E4ED5/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 2a8219 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -43.47454 + posY: 1.35818362 + posZ: -80.40732 + rotX: 0.0178412814 + rotY: 269.999664 + rotZ: 0.0155985467 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 201 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360110193/728C77347649B1E31473D71366B50E1B30CAFCA1/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360110636/03AAF5BA7EBD786D13121466A15ED12C316E4ED5/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 80dc7c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -43.8528938 + posY: 1.49845231 + posZ: -80.2099 + rotX: 0.00942557 + rotY: 269.99942 + rotZ: 359.992157 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 200 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360110193/728C77347649B1E31473D71366B50E1B30CAFCA1/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360110636/03AAF5BA7EBD786D13121466A15ED12C316E4ED5/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: ff7166 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -11.1150475 + posY: 1.83241713 + posZ: -0.0944158658 + rotX: 359.9585 + rotY: 270.00177 + rotZ: 359.9804 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360110193/728C77347649B1E31473D71366B50E1B30CAFCA1/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360110636/03AAF5BA7EBD786D13121466A15ED12C316E4ED5/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 202 +- 201 +- 200 +Description: '' +GMNotes: '' +GUID: 963cfe +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Instructions +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -10.7149572 + posY: 1.6677711 + posZ: 0.2579272 + rotX: 359.9201 + rotY: 269.999664 + rotZ: 0.0168777928 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Svalbard Event 7bc42b/Deck Put Aside 7dcc93.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Svalbard Event 7bc42b/Deck Put Aside 7dcc93.yaml new file mode 100644 index 000000000..8515394ac --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Svalbard Event 7bc42b/Deck Put Aside 7dcc93.yaml @@ -0,0 +1,169 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 212 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360110193/728C77347649B1E31473D71366B50E1B30CAFCA1/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360110636/03AAF5BA7EBD786D13121466A15ED12C316E4ED5/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 37ce45 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 5.454953 + posY: 1.23197007 + posZ: 9.253614 + rotX: 0.0101655368 + rotY: 179.981171 + rotZ: 0.0153827854 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 213 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360110193/728C77347649B1E31473D71366B50E1B30CAFCA1/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360110636/03AAF5BA7EBD786D13121466A15ED12C316E4ED5/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 15a7a0 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 5.693478 + posY: 1.39487183 + posZ: 9.290435 + rotX: 0.004774324 + rotY: 180.002945 + rotZ: 1.022148 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 211 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360110193/728C77347649B1E31473D71366B50E1B30CAFCA1/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360110636/03AAF5BA7EBD786D13121466A15ED12C316E4ED5/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: '501977' + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: '' + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 5.28252363 + posY: 1.39415467 + posZ: 9.11086 + rotX: -0.0007338078 + rotY: 179.9998 + rotZ: -0.00137533119 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/778493732360110193/728C77347649B1E31473D71366B50E1B30CAFCA1/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/778493732360110636/03AAF5BA7EBD786D13121466A15ED12C316E4ED5/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 212 +- 213 +- 211 +Description: the Svalbard Event +GMNotes: '' +GUID: 7dcc93 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Put Aside +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 1.696508 + posY: 1.65453458 + posZ: 14.2788267 + rotX: 359.95517 + rotY: 224.997971 + rotZ: 0.06865339 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Thing in the Woods c90c49.ttslua b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Thing in the Woods c90c49.ttslua new file mode 100644 index 000000000..46067f58e --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Thing in the Woods c90c49.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.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.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 791837/Custom_Model_Bag The Thing in the Woods c90c49.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Thing in the Woods c90c49.yaml new file mode 100644 index 000000000..9a62a2642 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Thing in the Woods c90c49.yaml @@ -0,0 +1,79 @@ +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 Thing in the Woods c90c49/Custom_Model_Bag Set-aside + a45247.yaml' +- !include 'Custom_Model_Bag The Thing in the Woods c90c49/Deck Main Encounter Deck + 491279.yaml' +- !include 'Custom_Model_Bag The Thing in the Woods c90c49/Deck Agenda Deck c6305b.yaml' +- !include 'Custom_Model_Bag The Thing in the Woods c90c49/Deck Act Deck 57318a.yaml' +- !include 'Custom_Model_Bag The Thing in the Woods c90c49/Card Scenario 8480f8.yaml' +- !include 'Custom_Model_Bag The Thing in the Woods c90c49/Custom_Tile Core Difficulty + 2261a5.yaml' +- !include 'Custom_Model_Bag The Thing in the Woods c90c49/Notecard 2ec534.yaml' +- !include 'Custom_Model_Bag The Thing in the Woods c90c49/Custom_Tile Credits 46b65b.yaml' +- !include 'Custom_Model_Bag The Thing in the Woods c90c49/Card Osborn''s General + Store 641bdb.yaml' +- !include 'Custom_Model_Bag The Thing in the Woods c90c49/Custom_Tile 7234af.yaml' +- !include 'Custom_Model_Bag The Thing in the Woods c90c49/Card Country Farm 5942b3.yaml' +- !include 'Custom_Model_Bag The Thing in the Woods c90c49/Card Country Farm 383672.yaml' +- !include 'Custom_Model_Bag The Thing in the Woods c90c49/Custom_Tile 0f3e93.yaml' +- !include 'Custom_Model_Bag The Thing in the Woods c90c49/Card Bishop''s Brook Bridge + 51527f.yaml' +- !include 'Custom_Model_Bag The Thing in the Woods c90c49/Card Scenario 98d4a2.yaml' +CustomMesh: + CastShadows: true + ColliderURL: '' + Convex: true + DiffuseURL: http://cloud-3.steamusercontent.com/ugc/798737729142949442/404A26E158B9EBC1069A5FBA9BA2331CBFD7851B/ + MaterialIndex: 3 + MeshURL: https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj + NormalURL: '' + TypeIndex: 6 +Description: '' +GMNotes: '' +GUID: c90c49 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Model_Bag The Thing in the Woods c90c49.ttslua' +LuaScriptState: '{"ml":{"0f3e93":{"lock":false,"pos":{"x":-26.9859,"y":1.6191,"z":-0.0135},"rot":{"x":359.9201,"y":269.994,"z":0.0169}},"2261a5":{"lock":false,"pos":{"x":-4.7182,"y":1.5837,"z":-14.7432},"rot":{"x":359.9197,"y":270.0041,"z":0.0168}},"2ec534":{"lock":false,"pos":{"x":-12.3654,"y":1.6721,"z":11.366},"rot":{"x":0.0799,"y":90,"z":359.9831}},"383672":{"lock":false,"pos":{"x":-23.6765,"y":1.6851,"z":-3.83},"rot":{"x":359.9201,"y":269.9998,"z":0.0169}},"46b65b":{"lock":false,"pos":{"x":-10.4494,"y":1.5959,"z":-0.6855},"rot":{"x":359.9201,"y":270,"z":0.0169}},"491279":{"lock":false,"pos":{"x":-3.9277,"y":1.7131,"z":5.7571},"rot":{"x":359.9197,"y":269.9995,"z":180.0168}},"51527f":{"lock":false,"pos":{"x":-30.2243,"y":1.6954,"z":-0.03},"rot":{"x":359.9201,"y":269.9985,"z":0.0169}},"57318a":{"lock":false,"pos":{"x":-2.6886,"y":1.6543,"z":-5.0515},"rot":{"x":0.0169,"y":179.9818,"z":0.0803}},"5942b3":{"lock":false,"pos":{"x":-23.6766,"y":1.6874,"z":3.86},"rot":{"x":359.9201,"y":269.9991,"z":0.0169}},"641bdb":{"lock":false,"pos":{"x":-17.12,"y":1.6771,"z":-0.03},"rot":{"x":359.9201,"y":270,"z":0.0169}},"7234af":{"lock":false,"pos":{"x":-20.6314,"y":1.6102,"z":-0.1048},"rot":{"x":359.9201,"y":269.994,"z":0.0169}},"8480f8":{"lock":false,"pos":{"x":-3.956,"y":1.6585,"z":-10.4412},"rot":{"x":359.9197,"y":270,"z":180.0168}},"98d4a2":{"lock":false,"pos":{"x":-50.9244,"y":1.7294,"z":8.1784},"rot":{"x":359.9201,"y":270,"z":180.0169}},"a45247":{"lock":false,"pos":{"x":1.6952,"y":1.5583,"z":14.2788},"rot":{"x":359.9551,"y":224.998,"z":0.0687}},"c6305b":{"lock":false,"pos":{"x":-2.7247,"y":1.6551,"z":0.3733},"rot":{"x":0.0168,"y":179.9938,"z":0.0803}}}}' +MaterialIndex: -1 +MeshIndex: -1 +Name: Custom_Model_Bag +Nickname: The Thing in the Woods +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 54.1220665 + posY: 8.640338 + posZ: -109.351395 + rotX: 359.983246 + rotY: 270.000061 + rotZ: 0.00353690656 + scaleX: 2.21 + scaleY: 0.46 + scaleZ: 2.42 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Thing in the Woods c90c49/Card Bishop's Brook Bridge 51527f.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Thing in the Woods c90c49/Card Bishop's Brook Bridge 51527f.yaml new file mode 100644 index 000000000..57a728fc3 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Thing in the Woods c90c49/Card Bishop's Brook Bridge 51527f.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 231110 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2311': + BackIsHidden: true + BackURL: https://i.imgur.com/KuvQvTG.jpg + FaceURL: https://i.imgur.com/56jmPF0.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Dunwich. +GMNotes: '' +GUID: 51527f +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Bishop's Brook Bridge +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -30.2242661 + posY: 1.69535077 + posZ: -0.0299935732 + rotX: 359.9201 + rotY: 269.998535 + rotZ: 0.0168806482 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Thing in the Woods c90c49/Card Country Farm 383672.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Thing in the Woods c90c49/Card Country Farm 383672.yaml new file mode 100644 index 000000000..2e5a56361 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Thing in the Woods c90c49/Card Country Farm 383672.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 231111 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2311': + BackIsHidden: true + BackURL: https://i.imgur.com/KuvQvTG.jpg + FaceURL: https://i.imgur.com/56jmPF0.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Dunwich. +GMNotes: '' +GUID: '383672' +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Country Farm +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -23.67645 + posY: 1.68510139 + posZ: -3.83002067 + rotX: 359.9201 + rotY: 269.999756 + rotZ: 0.01687656 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Thing in the Woods c90c49/Card Country Farm 5942b3.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Thing in the Woods c90c49/Card Country Farm 5942b3.yaml new file mode 100644 index 000000000..3c25a4a0f --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Thing in the Woods c90c49/Card Country Farm 5942b3.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 231112 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2311': + BackIsHidden: true + BackURL: https://i.imgur.com/KuvQvTG.jpg + FaceURL: https://i.imgur.com/56jmPF0.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Dunwich. +GMNotes: '' +GUID: 5942b3 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Country Farm +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -23.6765537 + posY: 1.687366 + posZ: 3.860006 + rotX: 359.9201 + rotY: 269.999146 + rotZ: 0.01687756 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Thing in the Woods c90c49/Card Osborn's General Store 641bdb.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Thing in the Woods c90c49/Card Osborn's General Store 641bdb.yaml new file mode 100644 index 000000000..20f9e019a --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Thing in the Woods c90c49/Card Osborn's General Store 641bdb.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 231114 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2311': + BackIsHidden: true + BackURL: https://i.imgur.com/KuvQvTG.jpg + FaceURL: https://i.imgur.com/56jmPF0.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Dunwich. +GMNotes: '' +GUID: 641bdb +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Osborn's General Store +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -17.1200275 + posY: 1.67707777 + posZ: -0.0300058443 + rotX: 359.9201 + rotY: 269.999969 + rotZ: 0.0168761387 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Thing in the Woods c90c49/Card Scenario 8480f8.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Thing in the Woods c90c49/Card Scenario 8480f8.yaml new file mode 100644 index 000000000..76e18ba2f --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Thing in the Woods c90c49/Card Scenario 8480f8.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 231100 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2311': + BackIsHidden: true + BackURL: https://i.imgur.com/KuvQvTG.jpg + FaceURL: https://i.imgur.com/56jmPF0.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: The Thing in the Woods +GMNotes: '' +GUID: 8480f8 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Scenario +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.95599341 + posY: 1.65847111 + posZ: -10.4411545 + rotX: 359.919739 + rotY: 269.999969 + rotZ: 180.01683 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Thing in the Woods c90c49/Card Scenario 98d4a2.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Thing in the Woods c90c49/Card Scenario 98d4a2.yaml new file mode 100644 index 000000000..fa3b8fea3 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Thing in the Woods c90c49/Card Scenario 98d4a2.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 231100 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2311': + BackIsHidden: true + BackURL: https://i.imgur.com/KuvQvTG.jpg + FaceURL: https://i.imgur.com/56jmPF0.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: The Thing in the Woods +GMNotes: '' +GUID: 98d4a2 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Scenario +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -39.8687973 + posY: 1.52588391 + posZ: 72.14311 + rotX: 0.0139091555 + rotY: 269.999634 + rotZ: 180.013748 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Thing in the Woods c90c49/Custom_Model_Bag Set-aside a45247.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Thing in the Woods c90c49/Custom_Model_Bag Set-aside a45247.yaml new file mode 100644 index 000000000..a89bcf625 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Thing in the Woods c90c49/Custom_Model_Bag Set-aside a45247.yaml @@ -0,0 +1,65 @@ +Autoraise: true +ColorDiffuse: + b: 0.02148666 + g: 0.00100758043 + r: 0.02148666 +ContainedObjects: +- !include 'Custom_Model_Bag Set-aside a45247/Card Powder of Iban Ghazi 44808e.yaml' +- !include 'Custom_Model_Bag Set-aside a45247/Card Banishing Tome 744c53.yaml' +- !include 'Custom_Model_Bag Set-aside a45247/Card Dr. Henry Armitage a82b6d.yaml' +- !include 'Custom_Model_Bag Set-aside a45247/Card Dr. Francis Morgan f38494.yaml' +- !include 'Custom_Model_Bag Set-aside a45247/Card Caught off Guard 2ffe30.yaml' +- !include 'Custom_Model_Bag Set-aside a45247/Card Wilbur''s Chantings bae9d6.yaml' +- !include 'Custom_Model_Bag Set-aside a45247/Deck Set-aside Enemies 8050fd.yaml' +- !include 'Custom_Model_Bag Set-aside a45247/Deck Set-aside Locations 380a98.yaml' +- !include 'Custom_Model_Bag Set-aside a45247/Deck Wilbur Whately Encounter Deck dff8b5.yaml' +- !include 'Custom_Model_Bag Set-aside a45247/Deck Dunwich Horror Encounter Deck bb89ae.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 Thing in the Woods +GMNotes: '' +GUID: a45247 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +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.69518793 + posY: 1.558318 + posZ: 14.2788191 + rotX: 359.955139 + rotY: 224.998016 + rotZ: 0.06867295 + scaleX: 2.0 + scaleY: 2.0 + scaleZ: 2.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag The Thing in the Woods c90c49/Custom_Model_Bag Set-aside a45247/Card Banishing Tome 744c53.yaml new file mode 100644 index 000000000..68c6b9478 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Thing in the Woods c90c49/Custom_Model_Bag Set-aside a45247/Card Banishing Tome 744c53.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 231151 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2311': + BackIsHidden: true + BackURL: https://i.imgur.com/KuvQvTG.jpg + FaceURL: https://i.imgur.com/56jmPF0.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Wilbur's Diary +GMNotes: '' +GUID: 744c53 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Banishing Tome +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.31756568 + posY: 3.60235357 + posZ: -15.5905666 + rotX: 359.895081 + rotY: 270.003174 + rotZ: 0.0069172387 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag The Thing in the Woods c90c49/Custom_Model_Bag Set-aside a45247/Card Caught off Guard 2ffe30.yaml new file mode 100644 index 000000000..2d8eedcfe --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Thing in the Woods c90c49/Custom_Model_Bag Set-aside a45247/Card Caught off Guard 2ffe30.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 231145 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2311': + BackIsHidden: true + BackURL: https://i.imgur.com/KuvQvTG.jpg + FaceURL: https://i.imgur.com/56jmPF0.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 2ffe30 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Caught off Guard +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.38303542 + posY: 3.602276 + posZ: -16.1890125 + rotX: 359.9202 + rotY: 270.000031 + rotZ: 0.0163749829 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag The Thing in the Woods c90c49/Custom_Model_Bag Set-aside a45247/Card Dr. Francis Morgan f38494.yaml new file mode 100644 index 000000000..a446fc352 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Thing in the Woods c90c49/Custom_Model_Bag Set-aside a45247/Card Dr. Francis Morgan f38494.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 231149 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2311': + BackIsHidden: true + BackURL: https://i.imgur.com/KuvQvTG.jpg + FaceURL: https://i.imgur.com/56jmPF0.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Anthropologist +GMNotes: '' +GUID: f38494 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Dr. Francis Morgan +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 9.071854 + posY: 2.56773639 + posZ: -26.4024734 + rotX: 359.920135 + rotY: 270.015137 + rotZ: 0.0168578066 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag The Thing in the Woods c90c49/Custom_Model_Bag Set-aside a45247/Card Dr. Henry Armitage a82b6d.yaml new file mode 100644 index 000000000..218531fc4 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Thing in the Woods c90c49/Custom_Model_Bag Set-aside a45247/Card Dr. Henry Armitage a82b6d.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 231152 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2311': + BackIsHidden: true + BackURL: https://i.imgur.com/KuvQvTG.jpg + FaceURL: https://i.imgur.com/56jmPF0.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Mythos Scholar +GMNotes: '' +GUID: a82b6d +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Dr. Henry Armitage +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -1.91247535 + posY: 3.60206 + posZ: -15.5255547 + rotX: 359.9079 + rotY: 270.00824 + rotZ: 359.989227 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag The Thing in the Woods c90c49/Custom_Model_Bag Set-aside a45247/Card Powder of Iban Ghazi 44808e.yaml new file mode 100644 index 000000000..e9356acad --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Thing in the Woods c90c49/Custom_Model_Bag Set-aside a45247/Card Powder of Iban Ghazi 44808e.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 231150 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2311': + BackIsHidden: true + BackURL: https://i.imgur.com/KuvQvTG.jpg + FaceURL: https://i.imgur.com/56jmPF0.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Item. Relic. +GMNotes: '' +GUID: 44808e +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Powder of Iban Ghazi +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.37403 + posY: 3.60245 + posZ: -15.5025434 + rotX: 359.919617 + rotY: 270.000061 + rotZ: 0.0170188528 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag The Thing in the Woods c90c49/Custom_Model_Bag Set-aside a45247/Card Wilbur's Chantings bae9d6.yaml new file mode 100644 index 000000000..2e57ad9e1 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Thing in the Woods c90c49/Custom_Model_Bag Set-aside a45247/Card Wilbur's Chantings bae9d6.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 231137 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '2311': + BackIsHidden: true + BackURL: https://i.imgur.com/KuvQvTG.jpg + FaceURL: https://i.imgur.com/56jmPF0.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +Description: Omen. +GMNotes: '' +GUID: bae9d6 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Wilbur's Chantings +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.79264522 + posY: 3.60302353 + posZ: -15.2906847 + rotX: 359.919861 + rotY: 269.9999 + rotZ: 0.0170783661 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag The Thing in the Woods c90c49/Custom_Model_Bag Set-aside a45247/Deck Dunwich Horror Encounter Deck bb89ae.yaml new file mode 100644 index 000000000..d2d9aedd1 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Thing in the Woods c90c49/Custom_Model_Bag Set-aside a45247/Deck Dunwich Horror Encounter Deck bb89ae.yaml @@ -0,0 +1,817 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 231143 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2311': + BackIsHidden: true + BackURL: https://i.imgur.com/KuvQvTG.jpg + FaceURL: https://i.imgur.com/56jmPF0.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 1cd225 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Retreat to the Hills + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -22.7440815 + posY: 1.58120859 + posZ: -12.6396618 + rotX: 359.920135 + rotY: 270.000183 + rotZ: 0.0168688539 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231143 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2311': + BackIsHidden: true + BackURL: https://i.imgur.com/KuvQvTG.jpg + FaceURL: https://i.imgur.com/56jmPF0.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 2d3322 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Retreat to the Hills + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -18.8000965 + posY: 1.57562435 + posZ: -12.9318972 + rotX: 359.920135 + rotY: 270.0 + rotZ: 0.0168706626 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231147 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2311': + BackIsHidden: true + BackURL: https://i.imgur.com/KuvQvTG.jpg + FaceURL: https://i.imgur.com/56jmPF0.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 3e397c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: It Feeds! + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -22.8981018 + posY: 1.58233106 + posZ: -9.55707 + rotX: 359.920135 + rotY: 270.000244 + rotZ: 0.01686495 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231148 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2311': + BackIsHidden: true + BackURL: https://i.imgur.com/KuvQvTG.jpg + FaceURL: https://i.imgur.com/56jmPF0.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Obstacle. + GMNotes: '' + GUID: 0fed3b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Total Destruction + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -18.54897 + posY: 1.57781971 + posZ: -4.28761053 + rotX: 359.920135 + rotY: 270.0 + rotZ: 0.0168701932 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231140 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2311': + BackIsHidden: true + BackURL: https://i.imgur.com/KuvQvTG.jpg + FaceURL: https://i.imgur.com/56jmPF0.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Weather. + GMNotes: '' + GUID: 09f0b4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Calm Night + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -26.945961 + posY: 1.58950734 + posZ: -4.351093 + rotX: 359.920135 + rotY: 270.006775 + rotZ: 0.0168557353 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231139 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2311': + BackIsHidden: true + BackURL: https://i.imgur.com/KuvQvTG.jpg + FaceURL: https://i.imgur.com/56jmPF0.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: fd8fc5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Terrorize the Town + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -18.8502 + posY: 1.57141125 + posZ: -9.745075 + rotX: 359.920135 + rotY: 270.000122 + rotZ: 0.0168127511 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231131 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2311': + BackIsHidden: true + BackURL: https://i.imgur.com/KuvQvTG.jpg + FaceURL: https://i.imgur.com/56jmPF0.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: ed1dce + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Monstrous Footprint + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -27.2870255 + posY: 1.58739471 + posZ: -13.1401539 + rotX: 359.920135 + rotY: 269.9999 + rotZ: 0.0168708153 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231140 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2311': + BackIsHidden: true + BackURL: https://i.imgur.com/KuvQvTG.jpg + FaceURL: https://i.imgur.com/56jmPF0.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Weather. + GMNotes: '' + GUID: 3539c7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Calm Night + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -26.8345165 + posY: 1.58853137 + posZ: -7.13733435 + rotX: 359.920135 + rotY: 270.0069 + rotZ: 0.01686523 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231147 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2311': + BackIsHidden: true + BackURL: https://i.imgur.com/KuvQvTG.jpg + FaceURL: https://i.imgur.com/56jmPF0.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 6812f9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: It Feeds! + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -22.69804 + posY: 1.58279979 + posZ: -7.018251 + rotX: 359.920135 + rotY: 269.999939 + rotZ: 0.0168731976 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231148 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2311': + BackIsHidden: true + BackURL: https://i.imgur.com/KuvQvTG.jpg + FaceURL: https://i.imgur.com/56jmPF0.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Obstacle. + GMNotes: '' + GUID: f379aa + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Total Destruction + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -18.5386887 + posY: 1.578632 + posZ: -1.4804368 + rotX: 359.920135 + rotY: 269.999817 + rotZ: 0.0168663766 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231135 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2311': + BackIsHidden: true + BackURL: https://i.imgur.com/KuvQvTG.jpg + FaceURL: https://i.imgur.com/56jmPF0.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 0947d1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Stars are Right + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -18.8671 + posY: 1.57474172 + posZ: -16.2459564 + rotX: 359.920135 + rotY: 269.999969 + rotZ: 0.0168667473 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231142 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2311': + BackIsHidden: true + BackURL: https://i.imgur.com/KuvQvTG.jpg + FaceURL: https://i.imgur.com/56jmPF0.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Weather. + GMNotes: '' + GUID: e8314c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Freak Weather + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -22.9654064 + posY: 1.58479965 + posZ: -1.492523 + rotX: 359.920135 + rotY: 269.999817 + rotZ: 0.016872244 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231148 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2311': + BackIsHidden: true + BackURL: https://i.imgur.com/KuvQvTG.jpg + FaceURL: https://i.imgur.com/56jmPF0.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Obstacle. + GMNotes: '' + GUID: c4a18e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Total Destruction + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -18.84357 + posY: 1.57736623 + posZ: -7.2223506 + rotX: 359.920135 + rotY: 270.0 + rotZ: 0.0168665964 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231140 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2311': + BackIsHidden: true + BackURL: https://i.imgur.com/KuvQvTG.jpg + FaceURL: https://i.imgur.com/56jmPF0.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Weather. + GMNotes: '' + GUID: 7e4abc + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Calm Night + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -27.2172623 + posY: 1.58829927 + posZ: -9.738023 + rotX: 359.920135 + rotY: 270.000061 + rotZ: 0.0168650355 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231142 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2311': + BackIsHidden: true + BackURL: https://i.imgur.com/KuvQvTG.jpg + FaceURL: https://i.imgur.com/56jmPF0.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Weather. + GMNotes: '' + GUID: 9b67cc + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Freak Weather + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -22.6185074 + posY: 1.583576 + posZ: -4.00565 + rotX: 359.920135 + rotY: 270.000122 + rotZ: 0.0168725476 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231135 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2311': + BackIsHidden: true + BackURL: https://i.imgur.com/KuvQvTG.jpg + FaceURL: https://i.imgur.com/56jmPF0.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 373c08 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Stars are Right + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -22.7187347 + posY: 1.58011329 + posZ: -16.2400341 + rotX: 359.920135 + rotY: 270.000061 + rotZ: 0.0168701615 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231140 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2311': + BackIsHidden: true + BackURL: https://i.imgur.com/KuvQvTG.jpg + FaceURL: https://i.imgur.com/56jmPF0.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Weather. + GMNotes: '' + GUID: 626fe2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Calm Night + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -27.0124645 + posY: 1.59039354 + posZ: -1.656396 + rotX: 359.9201 + rotY: 270.000061 + rotZ: 0.01686911 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231136 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2311': + BackIsHidden: true + BackURL: https://i.imgur.com/KuvQvTG.jpg + FaceURL: https://i.imgur.com/56jmPF0.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 36060d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Trees Knocked Down + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -27.1288757 + posY: 1.58625329 + posZ: -16.2677441 + rotX: 359.920135 + rotY: 269.999939 + rotZ: 0.0168679617 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2311': + BackIsHidden: true + BackURL: https://i.imgur.com/KuvQvTG.jpg + FaceURL: https://i.imgur.com/56jmPF0.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 231143 +- 231143 +- 231147 +- 231148 +- 231140 +- 231139 +- 231131 +- 231140 +- 231147 +- 231148 +- 231135 +- 231142 +- 231148 +- 231140 +- 231142 +- 231135 +- 231140 +- 231136 +Description: The Thing in the Woods +GMNotes: '' +GUID: bb89ae +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Dunwich Horror Encounter Deck +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 5.736799 + posY: 3.64474964 + posZ: 6.488538 + rotX: 359.9203 + rotY: 270.000183 + rotZ: 180.017044 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag The Thing in the Woods c90c49/Custom_Model_Bag Set-aside a45247/Deck Set-aside Enemies 8050fd.yaml new file mode 100644 index 000000000..53692a424 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Thing in the Woods c90c49/Custom_Model_Bag Set-aside a45247/Deck Set-aside Enemies 8050fd.yaml @@ -0,0 +1,394 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 231125 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2311': + BackIsHidden: true + BackURL: https://i.imgur.com/KuvQvTG.jpg + FaceURL: https://i.imgur.com/56jmPF0.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 04654b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Detached Tentacle + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -9.608978 + posY: 1.56411862 + posZ: -7.897988 + rotX: 359.9104 + rotY: 269.999176 + rotZ: 0.0126224635 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231125 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2311': + BackIsHidden: true + BackURL: https://i.imgur.com/KuvQvTG.jpg + FaceURL: https://i.imgur.com/56jmPF0.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 7cfa3c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Detached Tentacle + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -9.928934 + posY: 1.56361234 + posZ: -11.7254019 + rotX: 359.920135 + rotY: 269.999542 + rotZ: 0.01686787 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231125 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2311': + BackIsHidden: true + BackURL: https://i.imgur.com/KuvQvTG.jpg + FaceURL: https://i.imgur.com/56jmPF0.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 3b6e36 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Detached Tentacle + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -9.453228 + posY: 1.70946217 + posZ: -12.07446 + rotX: 359.920135 + rotY: 269.9997 + rotZ: 0.0168699846 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231127 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2311': + BackIsHidden: true + BackURL: https://i.imgur.com/KuvQvTG.jpg + FaceURL: https://i.imgur.com/56jmPF0.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Monster. Spawn. Elite. + GMNotes: '' + GUID: b07ea5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Dunwich Horror + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -10.0754833 + posY: 1.70932412 + posZ: -7.679862 + rotX: 359.921631 + rotY: 269.998718 + rotZ: 0.0109978644 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231128 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2311': + BackIsHidden: true + BackURL: https://i.imgur.com/KuvQvTG.jpg + FaceURL: https://i.imgur.com/56jmPF0.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Humanoid. Elite. + GMNotes: '' + GUID: d0044b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Wizard Whately + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -10.3975077 + posY: 1.70756674 + posZ: -7.857331 + rotX: 359.9316 + rotY: 270.037018 + rotZ: 0.0113354279 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231122 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2311': + BackIsHidden: true + BackURL: https://i.imgur.com/KuvQvTG.jpg + FaceURL: https://i.imgur.com/56jmPF0.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 6f4ddf + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Wilbur Whately Concealed Form + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -10.2018671 + posY: 1.710238 + posZ: -7.35115671 + rotX: 359.9185 + rotY: 270.000061 + rotZ: 0.00919213 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3629 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Byakhee. + GMNotes: '' + GUID: '401760' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Screeching Byakhee + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.5919165 + posY: 1.54439449 + posZ: -26.858057 + rotX: 359.913116 + rotY: 269.970062 + rotZ: 0.0321958065 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3629 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Monster. Byakhee. + GMNotes: '' + GUID: da8001 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Screeching Byakhee + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.541532 + posY: 1.68490541 + posZ: -26.85598 + rotX: 359.917267 + rotY: 270.009857 + rotZ: 0.0441918522 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2311': + BackIsHidden: true + BackURL: https://i.imgur.com/KuvQvTG.jpg + FaceURL: https://i.imgur.com/56jmPF0.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 231125 +- 231125 +- 231125 +- 231127 +- 231128 +- 231122 +- 3629 +- 3629 +Description: '' +GMNotes: '' +GUID: 8050fd +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Set-aside Enemies +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -1.55829251 + posY: 3.58311844 + posZ: -15.7487383 + rotX: 359.919464 + rotY: 270.023956 + rotZ: 0.01701993 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag The Thing in the Woods c90c49/Custom_Model_Bag Set-aside a45247/Deck Set-aside Locations 380a98.yaml new file mode 100644 index 000000000..423d2ab02 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Thing in the Woods c90c49/Custom_Model_Bag Set-aside a45247/Deck Set-aside Locations 380a98.yaml @@ -0,0 +1,387 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 231119 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2311': + BackIsHidden: true + BackURL: https://i.imgur.com/KuvQvTG.jpg + FaceURL: https://i.imgur.com/56jmPF0.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Arkham. + GMNotes: '' + GUID: ffed5b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Science Building + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -8.622353 + posY: 1.56851757 + posZ: 11.119071 + rotX: 359.920135 + rotY: 270.0 + rotZ: 0.0168651156 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231120 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2311': + BackIsHidden: true + BackURL: https://i.imgur.com/KuvQvTG.jpg + FaceURL: https://i.imgur.com/56jmPF0.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Outskirts. + GMNotes: '' + GUID: 7af595 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Cold Spring Glen + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -9.002564 + posY: 1.56820428 + posZ: 8.255148 + rotX: 359.920135 + rotY: 269.9998 + rotZ: 0.0168683138 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231118 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2311': + BackIsHidden: true + BackURL: https://i.imgur.com/KuvQvTG.jpg + FaceURL: https://i.imgur.com/56jmPF0.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Arkham. Central. + GMNotes: '' + GUID: 700e57 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Rivertown + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -12.3565979 + posY: 1.573735 + posZ: 11.1581507 + rotX: 359.920135 + rotY: 269.999664 + rotZ: 0.0168712828 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231116 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2311': + BackIsHidden: true + BackURL: https://i.imgur.com/KuvQvTG.jpg + FaceURL: https://i.imgur.com/56jmPF0.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Dunwich. + GMNotes: '' + GUID: 698b58 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Old Barn + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -9.026894 + posY: 1.56740284 + posZ: 5.418157 + rotX: 359.920135 + rotY: 269.999664 + rotZ: 0.0168694016 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231117 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2311': + BackIsHidden: true + BackURL: https://i.imgur.com/KuvQvTG.jpg + FaceURL: https://i.imgur.com/56jmPF0.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Outskirts. + GMNotes: '' + GUID: eb975d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Sentinel Hill + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -12.4176579 + posY: 1.57211649 + posZ: 5.3726697 + rotX: 359.920135 + rotY: 269.999939 + rotZ: 0.0168698281 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231121 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2311': + BackIsHidden: true + BackURL: https://i.imgur.com/KuvQvTG.jpg + FaceURL: https://i.imgur.com/56jmPF0.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Dunwich. + GMNotes: '' + GUID: 81e8ff + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Whately Farm + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -12.6324005 + posY: 1.57329667 + posZ: 8.363992 + rotX: 359.920135 + rotY: 269.999969 + rotZ: 0.0168709252 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231113 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2311': + BackIsHidden: true + BackURL: https://i.imgur.com/KuvQvTG.jpg + FaceURL: https://i.imgur.com/56jmPF0.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 4964b8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Invisible + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -8.361449 + posY: 1.56554425 + posZ: 2.2571063 + rotX: 359.920135 + rotY: 269.999878 + rotZ: 0.0168658812 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231115 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2311': + BackIsHidden: true + BackURL: https://i.imgur.com/KuvQvTG.jpg + FaceURL: https://i.imgur.com/56jmPF0.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Arkham. + GMNotes: '' + GUID: 02da15 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Miskatonic University + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -8.92936 + posY: 1.72532606 + posZ: 11.1502266 + rotX: 359.9333 + rotY: 269.999969 + rotZ: 0.0136912381 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2311': + BackIsHidden: true + BackURL: https://i.imgur.com/KuvQvTG.jpg + FaceURL: https://i.imgur.com/56jmPF0.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 231119 +- 231120 +- 231118 +- 231116 +- 231117 +- 231121 +- 231113 +- 231115 +Description: '' +GMNotes: '' +GUID: 380a98 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Set-aside Locations +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.17194581 + posY: 3.583987 + posZ: -15.3935175 + rotX: 359.919556 + rotY: 269.9997 + rotZ: 0.0170867369 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag The Thing in the Woods c90c49/Custom_Model_Bag Set-aside a45247/Deck Wilbur Whately Encounter Deck dff8b5.yaml new file mode 100644 index 000000000..a8ed2e15d --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Thing in the Woods c90c49/Custom_Model_Bag Set-aside a45247/Deck Wilbur Whately Encounter Deck dff8b5.yaml @@ -0,0 +1,344 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 231138 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2311': + BackIsHidden: true + BackURL: https://i.imgur.com/KuvQvTG.jpg + FaceURL: https://i.imgur.com/56jmPF0.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Curse. + GMNotes: '' + GUID: 1e1776 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Whither Limb + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -25.48402 + posY: 1.587223 + posZ: -5.187253 + rotX: 359.920135 + rotY: 269.9998 + rotZ: 0.0168701727 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231144 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2311': + BackIsHidden: true + BackURL: https://i.imgur.com/KuvQvTG.jpg + FaceURL: https://i.imgur.com/56jmPF0.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Curse. + GMNotes: '' + GUID: 07c08d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Cause Blindness + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -29.4243164 + posY: 1.592687 + posZ: -5.28694 + rotX: 359.920135 + rotY: 269.999878 + rotZ: 0.0168683529 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231132 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2311': + BackIsHidden: true + BackURL: https://i.imgur.com/KuvQvTG.jpg + FaceURL: https://i.imgur.com/56jmPF0.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 569c85 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Narrow Escape + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -25.3270416 + posY: 1.586092 + posZ: -8.284885 + rotX: 359.920135 + rotY: 270.0 + rotZ: 0.0168701764 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231144 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2311': + BackIsHidden: true + BackURL: https://i.imgur.com/KuvQvTG.jpg + FaceURL: https://i.imgur.com/56jmPF0.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Curse. + GMNotes: '' + GUID: 778d50 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Cause Blindness + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -29.230196 + posY: 1.58607948 + posZ: -8.317293 + rotX: 359.920135 + rotY: 270.000122 + rotZ: 0.0168310329 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231132 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2311': + BackIsHidden: true + BackURL: https://i.imgur.com/KuvQvTG.jpg + FaceURL: https://i.imgur.com/56jmPF0.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: cc3a9e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Narrow Escape + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -25.5311718 + posY: 1.58542252 + posZ: -11.5246611 + rotX: 359.920135 + rotY: 269.9998 + rotZ: 0.0168693122 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231130 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2311': + BackIsHidden: true + BackURL: https://i.imgur.com/KuvQvTG.jpg + FaceURL: https://i.imgur.com/56jmPF0.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Curse. + GMNotes: '' + GUID: dd5825 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Lame Animal + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -33.151062 + posY: 1.59787643 + posZ: -5.30721569 + rotX: 359.920135 + rotY: 269.999939 + rotZ: 0.0168718956 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231130 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2311': + BackIsHidden: true + BackURL: https://i.imgur.com/KuvQvTG.jpg + FaceURL: https://i.imgur.com/56jmPF0.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Curse. + GMNotes: '' + GUID: e2ea2b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Lame Animal + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -33.146492 + posY: 1.59703791 + posZ: -8.132609 + rotX: 359.920135 + rotY: 269.999878 + rotZ: 0.0168693867 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2311': + BackIsHidden: true + BackURL: https://i.imgur.com/KuvQvTG.jpg + FaceURL: https://i.imgur.com/56jmPF0.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 231138 +- 231144 +- 231132 +- 231144 +- 231132 +- 231130 +- 231130 +Description: The Thing in the Woods +GMNotes: '' +GUID: dff8b5 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Wilbur Whately Encounter Deck +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 7.03539228 + posY: 3.616874 + posZ: 6.326383 + rotX: 359.9193 + rotY: 270.000183 + rotZ: 180.0171 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Thing in the Woods c90c49/Custom_Tile 0f3e93.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Thing in the Woods c90c49/Custom_Tile 0f3e93.yaml new file mode 100644 index 000000000..8b22a58e2 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Thing in the Woods c90c49/Custom_Tile 0f3e93.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 0f3e93 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.98591 + posY: 1.6191262 + posZ: -0.0135285892 + rotX: 359.9201 + rotY: 269.993958 + rotZ: 0.0169191845 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Thing in the Woods c90c49/Custom_Tile 7234af.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Thing in the Woods c90c49/Custom_Tile 7234af.yaml new file mode 100644 index 000000000..1f17eaf33 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Thing in the Woods c90c49/Custom_Tile 7234af.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 7234af +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.631403 + posY: 1.61023867 + posZ: -0.104765005 + rotX: 359.9201 + rotY: 269.993958 + rotZ: 0.01690396 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Thing in the Woods c90c49/Custom_Tile Core Difficulty 2261a5.ttslua b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Thing in the Woods c90c49/Custom_Tile Core Difficulty 2261a5.ttslua new file mode 100644 index 000000000..c7ea585c8 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Thing in the Woods c90c49/Custom_Tile Core Difficulty 2261a5.ttslua @@ -0,0 +1,21 @@ +name = 'Core Set' + +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 The Side Missions 791837/Custom_Model_Bag The Thing in the Woods c90c49/Custom_Tile Core Difficulty 2261a5.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Thing in the Woods c90c49/Custom_Tile Core Difficulty 2261a5.yaml new file mode 100644 index 000000000..9a66b0917 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Thing in the Woods c90c49/Custom_Tile Core Difficulty 2261a5.yaml @@ -0,0 +1,42 @@ +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 +GMNotes: '' +GUID: 2261a5 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Tile Core Difficulty 2261a5.ttslua' +LuaScriptState: '' +Name: Custom_Tile +Nickname: Core Difficulty +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -4.718245 + posY: 1.58373821 + posZ: -14.7432137 + rotX: 359.919739 + rotY: 270.00412 + rotZ: 0.01683262 + scaleX: 2.2 + scaleY: 1.0 + scaleZ: 2.2 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Thing in the Woods c90c49/Custom_Tile Credits 46b65b.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Thing in the Woods c90c49/Custom_Tile Credits 46b65b.yaml new file mode 100644 index 000000000..cdbc1e2a0 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Thing in the Woods c90c49/Custom_Tile Credits 46b65b.yaml @@ -0,0 +1,42 @@ +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/qwigB7Q.jpg + ImageURL: https://i.imgur.com/qwigB7Q.jpg + WidthScale: 0.0 +Description: The Thing in the Woods +GMNotes: '' +GUID: 46b65b +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Tile +Nickname: Credits +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -10.4494429 + posY: 1.59586966 + posZ: -0.685486 + rotX: 359.9201 + rotY: 270.000031 + rotZ: 0.0168694686 + scaleX: 1.5 + scaleY: 1.0 + scaleZ: 1.5 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Thing in the Woods c90c49/Deck Act Deck 57318a.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Thing in the Woods c90c49/Deck Act Deck 57318a.yaml new file mode 100644 index 000000000..63a133365 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Thing in the Woods c90c49/Deck Act Deck 57318a.yaml @@ -0,0 +1,258 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 231204 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2312': + BackIsHidden: true + BackURL: https://i.imgur.com/KuvQvTG.jpg + FaceURL: https://i.imgur.com/56jmPF0.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 5 + GMNotes: '' + GUID: 966ffb + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: All Horror breaks loose + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 5.98949957 + posY: 1.5484972 + posZ: 12.4794521 + rotX: 0.0141131338 + rotY: 179.999481 + rotZ: 0.07900955 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231205 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2312': + BackIsHidden: true + BackURL: https://i.imgur.com/KuvQvTG.jpg + FaceURL: https://i.imgur.com/56jmPF0.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 4 + GMNotes: '' + GUID: 1ba290 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Whately Farm + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 6.10089064 + posY: 1.68874943 + posZ: 12.915658 + rotX: 0.01048811 + rotY: 180.0006 + rotZ: 0.08858803 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231203 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2312': + BackIsHidden: true + BackURL: https://i.imgur.com/KuvQvTG.jpg + FaceURL: https://i.imgur.com/56jmPF0.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 3 + GMNotes: '' + GUID: de2d29 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Terror on Campus! + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 5.96495 + posY: 1.70669687 + posZ: 12.9351692 + rotX: 0.0149336569 + rotY: 179.9999 + rotZ: 0.08008976 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231202 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2312': + BackIsHidden: true + BackURL: https://i.imgur.com/KuvQvTG.jpg + FaceURL: https://i.imgur.com/56jmPF0.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 2 + GMNotes: '' + GUID: 95fdb2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Act 2 + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 8.4634285 + posY: 1.69218755 + posZ: 22.896595 + rotX: 0.009618233 + rotY: 180.028351 + rotZ: 0.07518052 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231201 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2312': + BackIsHidden: true + BackURL: https://i.imgur.com/KuvQvTG.jpg + FaceURL: https://i.imgur.com/56jmPF0.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Act 1 + GMNotes: '' + GUID: e145c7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: A Visit to the Countryside + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 5.19349861 + posY: 1.689459 + posZ: 3.62463951 + rotX: 0.01217035 + rotY: 180.000214 + rotZ: 0.0872909054 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2312': + BackIsHidden: true + BackURL: https://i.imgur.com/KuvQvTG.jpg + FaceURL: https://i.imgur.com/56jmPF0.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 231204 +- 231205 +- 231203 +- 231202 +- 231201 +Description: '' +GMNotes: '' +GUID: 57318a +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Act Deck +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.68860626 + posY: 1.65432441 + posZ: -5.051492 + rotX: 0.0168606 + rotY: 179.981827 + rotZ: 0.08025249 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Thing in the Woods c90c49/Deck Agenda Deck c6305b.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Thing in the Woods c90c49/Deck Agenda Deck c6305b.yaml new file mode 100644 index 000000000..887c33e6b --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Thing in the Woods c90c49/Deck Agenda Deck c6305b.yaml @@ -0,0 +1,215 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 231207 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2312': + BackIsHidden: true + BackURL: https://i.imgur.com/KuvQvTG.jpg + FaceURL: https://i.imgur.com/56jmPF0.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 4 + GMNotes: '' + GUID: '966239' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Opener of the Way + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.47891665 + posY: 1.55305672 + posZ: 16.0209541 + rotX: 0.0145265786 + rotY: 179.999023 + rotZ: 0.07900096 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231209 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2312': + BackIsHidden: true + BackURL: https://i.imgur.com/KuvQvTG.jpg + FaceURL: https://i.imgur.com/56jmPF0.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 3 + GMNotes: '' + GUID: 76df88 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Agenda 3 + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.3415668 + posY: 1.693645 + posZ: 16.4248657 + rotX: 0.0117175644 + rotY: 179.998871 + rotZ: 0.0646090657 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231208 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2312': + BackIsHidden: true + BackURL: https://i.imgur.com/KuvQvTG.jpg + FaceURL: https://i.imgur.com/56jmPF0.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 2 + GMNotes: '' + GUID: 8f6b28 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Into the Night + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.40005279 + posY: 1.71133816 + posZ: 16.4025135 + rotX: 0.0412094742 + rotY: 180.079437 + rotZ: 0.106456563 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231206 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2312': + BackIsHidden: true + BackURL: https://i.imgur.com/KuvQvTG.jpg + FaceURL: https://i.imgur.com/56jmPF0.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Agenda 1 + GMNotes: '' + GUID: b9d4af + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Esoteric Agendas + SidewaysCard: true + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 5.37208462 + posY: 1.69237173 + posZ: 8.431536 + rotX: 0.0135076111 + rotY: 180.002045 + rotZ: 0.06822156 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2312': + BackIsHidden: true + BackURL: https://i.imgur.com/KuvQvTG.jpg + FaceURL: https://i.imgur.com/56jmPF0.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: true +DeckIDs: +- 231207 +- 231209 +- 231208 +- 231206 +Description: '' +GMNotes: '' +GUID: c6305b +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Agenda Deck +SidewaysCard: true +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.72468138 + posY: 1.65513825 + posZ: 0.3733245 + rotX: 0.01684383 + rotY: 179.993774 + rotZ: 0.0802559853 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Thing in the Woods c90c49/Deck Main Encounter Deck 491279.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Thing in the Woods c90c49/Deck Main Encounter Deck 491279.yaml new file mode 100644 index 000000000..157048224 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Thing in the Woods c90c49/Deck Main Encounter Deck 491279.yaml @@ -0,0 +1,867 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 231123 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2311': + BackIsHidden: true + BackURL: https://i.imgur.com/KuvQvTG.jpg + FaceURL: https://i.imgur.com/56jmPF0.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Monster. Spawn. + GMNotes: '' + GUID: fa0e19 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Creeping Ooze + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.05115676 + posY: 1.76379263 + posZ: 5.213762 + rotX: 359.9331 + rotY: 269.999878 + rotZ: 180.014786 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231133 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2311': + BackIsHidden: true + BackURL: https://i.imgur.com/KuvQvTG.jpg + FaceURL: https://i.imgur.com/56jmPF0.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Obstacle. + GMNotes: '' + GUID: 979d82 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Overwhelming Stench + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -28.0318718 + posY: 1.59469664 + posZ: 8.1306715 + rotX: 359.920135 + rotY: 269.999481 + rotZ: 0.0168741588 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231129 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2311': + BackIsHidden: true + BackURL: https://i.imgur.com/KuvQvTG.jpg + FaceURL: https://i.imgur.com/56jmPF0.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Creature. + GMNotes: '' + GUID: 6e0583 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Wild Dogs + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -20.4785213 + posY: 1.58230209 + posZ: 1.79969215 + rotX: 359.920135 + rotY: 269.999451 + rotZ: 0.0168698169 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231129 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2311': + BackIsHidden: true + BackURL: https://i.imgur.com/KuvQvTG.jpg + FaceURL: https://i.imgur.com/56jmPF0.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Creature. + GMNotes: '' + GUID: 1911ff + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Wild Dogs + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -20.4853554 + posY: 1.58312082 + posZ: 4.548454 + rotX: 359.920135 + rotY: 269.999481 + rotZ: 0.0168673769 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231134 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2311': + BackIsHidden: true + BackURL: https://i.imgur.com/KuvQvTG.jpg + FaceURL: https://i.imgur.com/56jmPF0.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Omen. + GMNotes: '' + GUID: eef711 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Wail of the Whipporwhills + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -28.1001835 + posY: 1.59377766 + posZ: 4.686868 + rotX: 359.920135 + rotY: 269.999329 + rotZ: 0.0168727525 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231124 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2311': + BackIsHidden: true + BackURL: https://i.imgur.com/KuvQvTG.jpg + FaceURL: https://i.imgur.com/56jmPF0.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Creatures. + GMNotes: '' + GUID: '600971' + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Feast of Crows + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -24.2798023 + posY: 1.58841586 + posZ: 4.565077 + rotX: 359.920135 + rotY: 269.999542 + rotZ: 0.0168660637 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231146 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2311': + BackIsHidden: true + BackURL: https://i.imgur.com/KuvQvTG.jpg + FaceURL: https://i.imgur.com/56jmPF0.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Obstacle. + GMNotes: '' + GUID: 3e7d71 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Black Tar Residue + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -24.1215973 + posY: 1.5892992 + posZ: 8.313727 + rotX: 359.920135 + rotY: 269.999939 + rotZ: 0.01687273 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231141 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2311': + BackIsHidden: true + BackURL: https://i.imgur.com/KuvQvTG.jpg + FaceURL: https://i.imgur.com/56jmPF0.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Obstacle. + GMNotes: '' + GUID: 27b3df + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Foetid Yellow Ichor + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -20.56729 + posY: 1.58432174 + posZ: 8.238645 + rotX: 359.920135 + rotY: 270.0003 + rotZ: 0.0168708283 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3623 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Cultist. + GMNotes: '' + GUID: 4072d7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Acolyte + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -20.9848747 + posY: 1.71500766 + posZ: -26.7436 + rotX: 359.9327 + rotY: 270.000549 + rotZ: 359.983978 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231126 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2311': + BackIsHidden: true + BackURL: https://i.imgur.com/KuvQvTG.jpg + FaceURL: https://i.imgur.com/56jmPF0.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Monster. Spawn. + GMNotes: '' + GUID: 8a6e43 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Gobbling Ooze + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -24.2464581 + posY: 1.58556628 + posZ: -4.72675562 + rotX: 359.9168 + rotY: 269.999756 + rotZ: 0.015515497 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231123 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2311': + BackIsHidden: true + BackURL: https://i.imgur.com/KuvQvTG.jpg + FaceURL: https://i.imgur.com/56jmPF0.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Monster. Spawn. + GMNotes: '' + GUID: 00151a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Creeping Ooze + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -24.2180862 + posY: 1.584931 + posZ: -7.415901 + rotX: 359.908875 + rotY: 269.988037 + rotZ: 0.0200889949 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231124 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2311': + BackIsHidden: true + BackURL: https://i.imgur.com/KuvQvTG.jpg + FaceURL: https://i.imgur.com/56jmPF0.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Creatures. + GMNotes: '' + GUID: 662fe6 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Feast of Crows + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -24.12291 + posY: 1.58674741 + posZ: -0.358001053 + rotX: 359.920135 + rotY: 269.999725 + rotZ: 0.0168696381 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3623 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Cultist. + GMNotes: '' + GUID: c70e63 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Acolyte + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -21.12128 + posY: 1.57465053 + posZ: -27.0020676 + rotX: 359.916565 + rotY: 269.9973 + rotZ: 0.0154842259 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231141 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2311': + BackIsHidden: true + BackURL: https://i.imgur.com/KuvQvTG.jpg + FaceURL: https://i.imgur.com/56jmPF0.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Obstacle. + GMNotes: '' + GUID: 9964b1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Foetid Yellow Ichor + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -20.7071915 + posY: 1.58530462 + posZ: 10.913703 + rotX: 359.920135 + rotY: 270.0 + rotZ: 0.0168664679 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231134 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2311': + BackIsHidden: true + BackURL: https://i.imgur.com/KuvQvTG.jpg + FaceURL: https://i.imgur.com/56jmPF0.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Omen. + GMNotes: '' + GUID: e7d270 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Wail of the Whipporwhills + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -28.0390472 + posY: 1.59298348 + posZ: 2.27885747 + rotX: 359.920135 + rotY: 269.9996 + rotZ: 0.0168708228 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231146 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2311': + BackIsHidden: true + BackURL: https://i.imgur.com/KuvQvTG.jpg + FaceURL: https://i.imgur.com/56jmPF0.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Obstacle. + GMNotes: '' + GUID: b3bf56 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Black Tar Residue + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -24.3321934 + posY: 1.5903163 + posZ: 10.771224 + rotX: 359.920135 + rotY: 269.999939 + rotZ: 0.0168714356 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231126 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2311': + BackIsHidden: true + BackURL: https://i.imgur.com/KuvQvTG.jpg + FaceURL: https://i.imgur.com/56jmPF0.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Monster. Spawn. + GMNotes: '' + GUID: 9dbf6e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Gobbling Ooze + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -24.682497 + posY: 1.72675467 + posZ: -4.866274 + rotX: 359.912262 + rotY: 270.0005 + rotZ: 0.0215894822 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231124 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2311': + BackIsHidden: true + BackURL: https://i.imgur.com/KuvQvTG.jpg + FaceURL: https://i.imgur.com/56jmPF0.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Creatures. + GMNotes: '' + GUID: 08985c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Feast of Crows + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -23.9655476 + posY: 1.587234 + posZ: 2.039077 + rotX: 359.920135 + rotY: 269.9995 + rotZ: 0.0168729965 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 231133 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2311': + BackIsHidden: true + BackURL: https://i.imgur.com/KuvQvTG.jpg + FaceURL: https://i.imgur.com/56jmPF0.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + Description: Obstacle. + GMNotes: '' + GUID: b6e57e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Overwhelming Stench + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -28.0878544 + posY: 1.59553885 + posZ: 10.7262049 + rotX: 359.920135 + rotY: 269.999817 + rotZ: 0.0168689154 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2311': + BackIsHidden: true + BackURL: https://i.imgur.com/KuvQvTG.jpg + FaceURL: https://i.imgur.com/56jmPF0.jpg + NumHeight: 7 + NumWidth: 10 + UniqueBack: true + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 231123 +- 231133 +- 231129 +- 231129 +- 231134 +- 231124 +- 231146 +- 231141 +- 3623 +- 231126 +- 231123 +- 231124 +- 3623 +- 231141 +- 231134 +- 231146 +- 231126 +- 231124 +- 231133 +Description: The Thing in the Woods +GMNotes: '' +GUID: '491279' +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Main Encounter Deck +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.92767477 + posY: 1.713086 + posZ: 5.75714159 + rotX: 359.919739 + rotY: 269.9995 + rotZ: 180.016815 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Thing in the Woods c90c49/Notecard 2ec534.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Thing in the Woods c90c49/Notecard 2ec534.yaml new file mode 100644 index 000000000..34d2078b3 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag The Thing in the Woods c90c49/Notecard 2ec534.yaml @@ -0,0 +1,37 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +Description: "Gobbling ooze x2\r\n\tAcolyte x2\r\n\tCreeping Ooze x2\r\n\r\nWilbur\ + \ Whately Encounter Deck:\r\n\tWither limb x1\r\n\tCause Blindness x2\r\n\tLame\ + \ Animal x2\r\n\tNarrow Escape x2\r\n\r\nDunwich Horror Encounter Deck:\r\n\tFreak\ + \ Weather x2\r\n\tCalm Night x4\r\n\tIt feeds! x2\r\n\tTotal Destruction x3\r\n\t\ + Terrorize the town x1\r\n\tRetreat to the hills x2\r\n\tMonstrous footprints x1\r\ + \n\tThe stars are right x2\r\n\tTrees knocked down x1\r\n\r\nSet asid" +GMNotes: '' +GUID: 2ec534 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Notecard +Nickname: '' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -12.3654089 + posY: 1.67208993 + posZ: 11.3659878 + rotX: 0.07989695 + rotY: 89.99997 + rotZ: 359.983124 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Winter Winds 754057.ttslua b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Winter Winds 754057.ttslua new file mode 100644 index 000000000..46067f58e --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Winter Winds 754057.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.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.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 791837/Custom_Model_Bag Winter Winds 754057.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Winter Winds 754057.yaml new file mode 100644 index 000000000..a1085235d --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Winter Winds 754057.yaml @@ -0,0 +1,63 @@ +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 Winter Winds 754057/Bag Frozen Tracks 11429d.yaml' +- !include 'Custom_Model_Bag Winter Winds 754057/Bag Stranded in the Urals 8077a1.yaml' +- !include 'Custom_Model_Bag Winter Winds 754057/Bag The Forgotten Village ddd10b.yaml' +- !include 'Custom_Model_Bag Winter Winds 754057/Custom_Tile Winter Winds d54710.yaml' +CustomMesh: + CastShadows: true + ColliderURL: '' + Convex: true + DiffuseURL: http://cloud-3.steamusercontent.com/ugc/798737729142974098/BF07864708BDE2804C0495637DDD55E85CC883EA/ + MaterialIndex: 3 + MeshURL: https://raw.githubusercontent.com/RobMayer/TTSLibrary/master/advboxes/tuckbox_h_MSH.obj + NormalURL: '' + TypeIndex: 6 +Description: '' +GMNotes: '' +GUID: '754057' +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Model_Bag Winter Winds 754057.ttslua' +LuaScriptState: '{"ml":{"11429d":{"lock":false,"pos":{"x":9.5267,"y":1.2845,"z":4.5868},"rot":{"x":0.0799,"y":89.9987,"z":359.9831}},"8077a1":{"lock":false,"pos":{"x":9.1666,"y":1.2836,"z":-0.8205},"rot":{"x":0.0799,"y":89.9944,"z":359.9831}},"d54710":{"lock":false,"pos":{"x":-4.0215,"y":1.5826,"z":-15.2289},"rot":{"x":359.9197,"y":269.9984,"z":0.0168}},"ddd10b":{"lock":false,"pos":{"x":8.3252,"y":1.283,"z":-6.4267},"rot":{"x":0.0799,"y":89.996,"z":359.9831}}}}' +MaterialIndex: -1 +MeshIndex: -1 +Name: Custom_Model_Bag +Nickname: Winter Winds +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 13.7256174 + posY: 8.48117352 + posZ: -170.728287 + rotX: 0.0208087768 + rotY: 270.0 + rotZ: 0.01677108 + scaleX: 2.21 + scaleY: 0.46 + scaleZ: 2.42 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Winter Winds 754057/Bag Frozen Tracks 11429d.ttslua b/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/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 791837/Custom_Model_Bag Winter Winds 754057/Bag Frozen Tracks 11429d.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Winter Winds 754057/Bag Frozen Tracks 11429d.yaml new file mode 100644 index 000000000..88e47c5ca --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Winter Winds 754057/Bag Frozen Tracks 11429d.yaml @@ -0,0 +1,45 @@ +Autoraise: true +ColorDiffuse: + b: 0.79671973 + g: 0.835354 + r: 0.8710802 +ContainedObjects: +- !include 'Bag Frozen Tracks 11429d/Bag Set Aside 78e6a9.yaml' +- !include 'Bag Frozen Tracks 11429d/Deck Encounter Deck 6712b5.yaml' +- !include 'Bag Frozen Tracks 11429d/Deck Agenda 77b535.yaml' +- !include 'Bag Frozen Tracks 11429d/Deck Act 3d7392.yaml' +- !include 'Bag Frozen Tracks 11429d/Card Frozen Tracks ba0135.yaml' +- !include 'Bag Frozen Tracks 11429d/Custom_Tile Setup 818319.yaml' +- !include 'Bag Frozen Tracks 11429d/Card Train Car (Cargo Car) 8a34fc.yaml' +- !include 'Bag Frozen Tracks 11429d/Deck Train Car e49f42.yaml' +- !include 'Bag Frozen Tracks 11429d/Card Engine a8dd66.yaml' +- !include 'Bag Frozen Tracks 11429d/Card Frozen Tracks 1d9d5a.yaml' +Description: Winter Winds +GMNotes: '' +GUID: 11429d +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Bag Frozen Tracks 11429d.ttslua' +LuaScriptState: '{"ml":{"1d9d5a":{"lock":false,"pos":{"x":-50.9244,"y":1.7266,"z":8.1784},"rot":{"x":359.9201,"y":270.0136,"z":0.0169}},"3d7392":{"lock":false,"pos":{"x":-2.6959,"y":1.6623,"z":-5.0447},"rot":{"x":359.9197,"y":270.084,"z":0.0167}},"6712b5":{"lock":false,"pos":{"x":-3.9274,"y":1.7824,"z":5.7571},"rot":{"x":359.9197,"y":269.9998,"z":180.0168}},"77b535":{"lock":false,"pos":{"x":-2.7248,"y":1.6566,"z":0.3733},"rot":{"x":359.9197,"y":270.0035,"z":0.0168}},"78e6a9":{"lock":false,"pos":{"x":1.7044,"y":1.3982,"z":14.2786},"rot":{"x":359.9551,"y":224.9978,"z":0.0687}},"818319":{"lock":false,"pos":{"x":-10.3245,"y":1.5966,"z":2.3096},"rot":{"x":359.9201,"y":270.0001,"z":0.0169}},"8a34fc":{"lock":false,"pos":{"x":-17.1201,"y":1.6816,"z":15.19},"rot":{"x":359.9201,"y":269.977,"z":0.0169}},"a8dd66":{"lock":false,"pos":{"x":-17.1201,"y":1.6726,"z":-15.28},"rot":{"x":359.9201,"y":270.0004,"z":0.0169}},"ba0135":{"lock":false,"pos":{"x":-3.9561,"y":1.6556,"z":-10.4412},"rot":{"x":359.9197,"y":270.0136,"z":0.0168}},"e49f42":{"lock":false,"pos":{"x":-17.12,"y":1.6759,"z":-0.03},"rot":{"x":359.9201,"y":269.9961,"z":0.0169}}}}' +MaterialIndex: -1 +MeshIndex: -1 +Name: Bag +Nickname: Frozen Tracks +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 9.526739 + posY: 1.28454447 + posZ: 4.58676338 + rotX: 0.07993512 + rotY: 89.9986954 + rotZ: 359.9831 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Winter Winds 754057/Bag Frozen Tracks 11429d/Bag Set Aside 78e6a9.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Winter Winds 754057/Bag Frozen Tracks 11429d/Bag Set Aside 78e6a9.yaml new file mode 100644 index 000000000..8ea297c9a --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Winter Winds 754057/Bag Frozen Tracks 11429d/Bag Set Aside 78e6a9.yaml @@ -0,0 +1,38 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +ContainedObjects: +- !include 'Bag Set Aside 78e6a9/Card Jewel of the Winter Wind 3a674c.yaml' +- !include 'Bag Set Aside 78e6a9/Card Experienced Passenger ede709.yaml' +- !include 'Bag Set Aside 78e6a9/Card The Ritualist 77acb9.yaml' +Description: '' +GMNotes: '' +GUID: 78e6a9 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +MeshIndex: -1 +Name: Bag +Nickname: Set Aside +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 1.70440781 + posY: 1.39823532 + posZ: 14.2786 + rotX: 359.9551 + rotY: 224.997833 + rotZ: 0.06872297 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Winter Winds 754057/Bag Frozen Tracks 11429d/Bag Set Aside 78e6a9/Card Experienced Passenger ede709.yaml new file mode 100644 index 000000000..2ffba8ad6 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Winter Winds 754057/Bag Frozen Tracks 11429d/Bag Set Aside 78e6a9/Card Experienced Passenger ede709.yaml @@ -0,0 +1,41 @@ +Autoraise: true +CardID: 13620 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '136': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/2433509329550810616/2AEAA709721847713BD7A43770BF62368254F2A5/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/2433509329553562321/9EA326D15B43F26835DB5A9F1D6385FF06164704/ + NumHeight: 7 + NumWidth: 3 + UniqueBack: false +Description: Human. Cultist. +GMNotes: '' +GUID: ede709 +Grid: true +GridProjection: false +Hands: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Experienced Passenger +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -1.3968879 + posY: 3.0923326 + posZ: -18.5392075 + rotX: 0.67485255 + rotY: 270.02002 + rotZ: 2.2891202 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Winter Winds 754057/Bag Frozen Tracks 11429d/Bag Set Aside 78e6a9/Card Jewel of the Winter Wind 3a674c.yaml new file mode 100644 index 000000000..d6d026ed3 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Winter Winds 754057/Bag Frozen Tracks 11429d/Bag Set Aside 78e6a9/Card Jewel of the Winter Wind 3a674c.yaml @@ -0,0 +1,41 @@ +Autoraise: true +CardID: 100707 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '1007': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/2433509660059164071/28E29C91F35BD4B103FA341BFA7CFC5F9F1F4826/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/2433509660059163584/F1698E8E72193D39E320FA0C5FA46BF5B04DAD03/ + NumHeight: 3 + NumWidth: 3 + UniqueBack: true +Description: Item. Amulet. +GMNotes: '' +GUID: 3a674c +Grid: true +GridProjection: false +Hands: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Jewel of the Winter Wind +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -1.99272346 + posY: 3.05215526 + posZ: -17.7473125 + rotX: 1.75986719 + rotY: 269.9273 + rotZ: 357.1774 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Winter Winds 754057/Bag Frozen Tracks 11429d/Bag Set Aside 78e6a9/Card The Ritualist 77acb9.yaml new file mode 100644 index 000000000..ff01161ec --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Winter Winds 754057/Bag Frozen Tracks 11429d/Bag Set Aside 78e6a9/Card The Ritualist 77acb9.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 13619 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '136': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/2433509329550810616/2AEAA709721847713BD7A43770BF62368254F2A5/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/2433509329553562321/9EA326D15B43F26835DB5A9F1D6385FF06164704/ + NumHeight: 7 + NumWidth: 3 + UniqueBack: false +Description: Elite. Cultist. +GMNotes: '' +GUID: 77acb9 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: The Ritualist +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -46.7328529 + posY: 3.39261842 + posZ: -62.3470726 + rotX: 0.6546613 + rotY: 270.034821 + rotZ: 3.15415025 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Winter Winds 754057/Bag Frozen Tracks 11429d/Card Engine a8dd66.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Winter Winds 754057/Bag Frozen Tracks 11429d/Card Engine a8dd66.yaml new file mode 100644 index 000000000..7df4375e6 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Winter Winds 754057/Bag Frozen Tracks 11429d/Card Engine a8dd66.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 100700 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '1007': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/2433509660059164071/28E29C91F35BD4B103FA341BFA7CFC5F9F1F4826/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/2433509660059163584/F1698E8E72193D39E320FA0C5FA46BF5B04DAD03/ + NumHeight: 3 + NumWidth: 3 + UniqueBack: true +Description: Train. +GMNotes: '' +GUID: a8dd66 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Engine +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -17.1201477 + posY: 1.67258751 + posZ: -15.2799959 + rotX: 359.9201 + rotY: 270.000366 + rotZ: 0.0168772228 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Winter Winds 754057/Bag Frozen Tracks 11429d/Card Frozen Tracks 1d9d5a.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Winter Winds 754057/Bag Frozen Tracks 11429d/Card Frozen Tracks 1d9d5a.yaml new file mode 100644 index 000000000..f31ae5ddc --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Winter Winds 754057/Bag Frozen Tracks 11429d/Card Frozen Tracks 1d9d5a.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 100708 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '1007': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/2433509660059164071/28E29C91F35BD4B103FA341BFA7CFC5F9F1F4826/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/2433509660059163584/F1698E8E72193D39E320FA0C5FA46BF5B04DAD03/ + NumHeight: 3 + NumWidth: 3 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 1d9d5a +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Frozen Tracks +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -50.9243851 + posY: 1.72662532 + posZ: 8.178431 + rotX: 359.9201 + rotY: 270.013641 + rotZ: 0.0168574732 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Winter Winds 754057/Bag Frozen Tracks 11429d/Card Frozen Tracks ba0135.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Winter Winds 754057/Bag Frozen Tracks 11429d/Card Frozen Tracks ba0135.yaml new file mode 100644 index 000000000..e47ebb39f --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Winter Winds 754057/Bag Frozen Tracks 11429d/Card Frozen Tracks ba0135.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 100708 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '1007': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/2433509660059164071/28E29C91F35BD4B103FA341BFA7CFC5F9F1F4826/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/2433509660059163584/F1698E8E72193D39E320FA0C5FA46BF5B04DAD03/ + NumHeight: 3 + NumWidth: 3 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: ba0135 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Frozen Tracks +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.956137 + posY: 1.65564847 + posZ: -10.4411831 + rotX: 359.919739 + rotY: 270.0136 + rotZ: 0.0168235935 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Winter Winds 754057/Bag Frozen Tracks 11429d/Card Train Car (Cargo Car) 8a34fc.yaml new file mode 100644 index 000000000..4d06c4467 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Winter Winds 754057/Bag Frozen Tracks 11429d/Card Train Car (Cargo Car) 8a34fc.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 100706 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '1007': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/2433509660059164071/28E29C91F35BD4B103FA341BFA7CFC5F9F1F4826/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/2433509660059163584/F1698E8E72193D39E320FA0C5FA46BF5B04DAD03/ + NumHeight: 3 + NumWidth: 3 + UniqueBack: true +Description: Train. +GMNotes: '' +GUID: 8a34fc +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Train Car (Cargo Car) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -17.120079 + posY: 1.68155956 + posZ: 15.1900072 + rotX: 359.9201 + rotY: 269.976959 + rotZ: 0.0169106238 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Winter Winds 754057/Bag Frozen Tracks 11429d/Custom_Tile Setup 818319.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Winter Winds 754057/Bag Frozen Tracks 11429d/Custom_Tile Setup 818319.yaml new file mode 100644 index 000000000..9524dc8a5 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Winter Winds 754057/Bag Frozen Tracks 11429d/Custom_Tile Setup 818319.yaml @@ -0,0 +1,42 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.1 + Type: 0 + ImageScalar: 1.0 + ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/2433509329553649397/2372332174FD0D014E279A593FF3C37B8393C8C3/ + ImageURL: http://cloud-3.steamusercontent.com/ugc/2433509329553648759/3A9CAC3C075207DB7E98FC97E2071D422617F7DC/ + WidthScale: 0.0 +Description: Resolution on the Back +GMNotes: '' +GUID: '818319' +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Tile +Nickname: Setup +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -10.3245306 + posY: 1.59657729 + posZ: 2.3096478 + rotX: 359.9201 + rotY: 270.000122 + rotZ: 0.0168715287 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Winter Winds 754057/Bag Frozen Tracks 11429d/Deck Act 3d7392.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Winter Winds 754057/Bag Frozen Tracks 11429d/Deck Act 3d7392.yaml new file mode 100644 index 000000000..311ee4520 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Winter Winds 754057/Bag Frozen Tracks 11429d/Deck Act 3d7392.yaml @@ -0,0 +1,127 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 13101 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '131': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/2433509329553550584/5B9DCCD67563025F93433052F4E59AFF2D9C8B5C/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/2433509329553550092/7D2CB57F57ED85FC85A2A904F6D482AE9E7AE7B8/ + NumHeight: 2 + NumWidth: 3 + UniqueBack: true + Description: Act 2 + GMNotes: '' + GUID: ec9779 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Recovering the Jewel + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.45919681 + posY: 1.03164971 + posZ: -13.74549 + rotX: -0.00441831537 + rotY: 270.000122 + rotZ: -0.000904154556 + scaleX: 0.7152412 + scaleY: 1.0 + scaleZ: 0.7152412 + XmlUI: '' +- Autoraise: true + CardID: 13100 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '131': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/2433509329553550584/5B9DCCD67563025F93433052F4E59AFF2D9C8B5C/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/2433509329553550092/7D2CB57F57ED85FC85A2A904F6D482AE9E7AE7B8/ + NumHeight: 2 + NumWidth: 3 + UniqueBack: true + Description: Act 1 + GMNotes: '' + GUID: 02c421 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Question the Passengers + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.46324134 + posY: 1.17644262 + posZ: -13.3719826 + rotX: 359.991333 + rotY: 269.997864 + rotZ: -0.000340094557 + scaleX: 0.7152412 + scaleY: 1.0 + scaleZ: 0.7152412 + XmlUI: '' +CustomDeck: + '131': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/2433509329553550584/5B9DCCD67563025F93433052F4E59AFF2D9C8B5C/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/2433509329553550092/7D2CB57F57ED85FC85A2A904F6D482AE9E7AE7B8/ + NumHeight: 2 + NumWidth: 3 + UniqueBack: true +DeckIDs: +- 13101 +- 13100 +Description: '' +GMNotes: '' +GUID: 3d7392 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Act +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.69587 + posY: 1.662345 + posZ: -5.044671 + rotX: 359.9197 + rotY: 270.084045 + rotZ: 0.0167315286 + scaleX: 0.7152412 + scaleY: 1.0 + scaleZ: 0.7152412 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Winter Winds 754057/Bag Frozen Tracks 11429d/Deck Agenda 77b535.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Winter Winds 754057/Bag Frozen Tracks 11429d/Deck Agenda 77b535.yaml new file mode 100644 index 000000000..cf7c7f32d --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Winter Winds 754057/Bag Frozen Tracks 11429d/Deck Agenda 77b535.yaml @@ -0,0 +1,169 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 13104 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '131': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/2433509329553550584/5B9DCCD67563025F93433052F4E59AFF2D9C8B5C/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/2433509329553550092/7D2CB57F57ED85FC85A2A904F6D482AE9E7AE7B8/ + NumHeight: 2 + NumWidth: 3 + UniqueBack: true + Description: Agenda 3 + GMNotes: '' + GUID: '872638' + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Call the Winter Winds + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 9.432172 + posY: 1.03097165 + posZ: -15.8618374 + rotX: 359.949371 + rotY: 269.999573 + rotZ: 359.9908 + scaleX: 0.7152412 + scaleY: 1.0 + scaleZ: 0.7152412 + XmlUI: '' +- Autoraise: true + CardID: 13103 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '131': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/2433509329553550584/5B9DCCD67563025F93433052F4E59AFF2D9C8B5C/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/2433509329553550092/7D2CB57F57ED85FC85A2A904F6D482AE9E7AE7B8/ + NumHeight: 2 + NumWidth: 3 + UniqueBack: true + Description: Agenda 2 + GMNotes: '' + GUID: a10cd6 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Hostile Takeover + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 8.746051 + posY: 1.03167546 + posZ: -21.2014046 + rotX: -0.00285951328 + rotY: 269.999268 + rotZ: -0.000505713164 + scaleX: 0.7152412 + scaleY: 1.0 + scaleZ: 0.7152412 + XmlUI: '' +- Autoraise: true + CardID: 13102 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '131': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/2433509329553550584/5B9DCCD67563025F93433052F4E59AFF2D9C8B5C/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/2433509329553550092/7D2CB57F57ED85FC85A2A904F6D482AE9E7AE7B8/ + NumHeight: 2 + NumWidth: 3 + UniqueBack: true + Description: Agenda 1 + GMNotes: '' + GUID: 02c421 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: A Killer on the Train + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 8.523183 + posY: 1.17670381 + posZ: -21.2167778 + rotX: 359.989471 + rotY: 269.9988 + rotZ: -0.00275202934 + scaleX: 0.7152412 + scaleY: 1.0 + scaleZ: 0.7152412 + XmlUI: '' +CustomDeck: + '131': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/2433509329553550584/5B9DCCD67563025F93433052F4E59AFF2D9C8B5C/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/2433509329553550092/7D2CB57F57ED85FC85A2A904F6D482AE9E7AE7B8/ + NumHeight: 2 + NumWidth: 3 + UniqueBack: true +DeckIDs: +- 13104 +- 13103 +- 13102 +Description: '' +GMNotes: '' +GUID: 77b535 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Agenda +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.72479558 + posY: 1.65664136 + posZ: 0.3733128 + rotX: 359.919739 + rotY: 270.0035 + rotZ: 0.0168337766 + scaleX: 0.7152412 + scaleY: 1.0 + scaleZ: 0.7152412 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Winter Winds 754057/Bag Frozen Tracks 11429d/Deck Encounter Deck 6712b5.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Winter Winds 754057/Bag Frozen Tracks 11429d/Deck Encounter Deck 6712b5.yaml new file mode 100644 index 000000000..ee6f31d00 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Winter Winds 754057/Bag Frozen Tracks 11429d/Deck Encounter Deck 6712b5.yaml @@ -0,0 +1,1401 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 13200 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '132': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/2433509329550810616/2AEAA709721847713BD7A43770BF62368254F2A5/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/2433509329553562321/9EA326D15B43F26835DB5A9F1D6385FF06164704/ + NumHeight: 7 + NumWidth: 3 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: ede709 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Between the Cars + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 10.5102282 + posY: 1.03161407 + posZ: -8.345625 + rotX: -0.00459306734 + rotY: 270.0224 + rotZ: -0.00108964532 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 13201 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '132': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/2433509329550810616/2AEAA709721847713BD7A43770BF62368254F2A5/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/2433509329553562321/9EA326D15B43F26835DB5A9F1D6385FF06164704/ + NumHeight: 7 + NumWidth: 3 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: 2af598 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Between the Cars + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 10.6710434 + posY: 1.17629206 + posZ: -8.65471649 + rotX: -0.00251994538 + rotY: 270.023865 + rotZ: 0.0271634627 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 13202 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '132': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/2433509329550810616/2AEAA709721847713BD7A43770BF62368254F2A5/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/2433509329553562321/9EA326D15B43F26835DB5A9F1D6385FF06164704/ + NumHeight: 7 + NumWidth: 3 + UniqueBack: false + Description: Hazard. Ritual. + GMNotes: '' + GUID: 8f00d6 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Unnatural Rockslide + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 13.5386314 + posY: 1.11534238 + posZ: -10.4424658 + rotX: 357.5384 + rotY: 269.935455 + rotZ: 0.8682976 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 13203 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '132': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/2433509329550810616/2AEAA709721847713BD7A43770BF62368254F2A5/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/2433509329553562321/9EA326D15B43F26835DB5A9F1D6385FF06164704/ + NumHeight: 7 + NumWidth: 3 + UniqueBack: false + Description: Hazard. Ritual. + GMNotes: '' + GUID: b67891 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Unnatual Rockslide + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 13.8642406 + posY: 1.25968623 + posZ: -10.6329069 + rotX: 358.107941 + rotY: 269.972473 + rotZ: 0.8715951 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 13204 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '132': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/2433509329550810616/2AEAA709721847713BD7A43770BF62368254F2A5/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/2433509329553562321/9EA326D15B43F26835DB5A9F1D6385FF06164704/ + NumHeight: 7 + NumWidth: 3 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: 7d0f81 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Icy Track + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 13.11952 + posY: 1.03164434 + posZ: -14.5551844 + rotX: -0.003655519 + rotY: 270.0122 + rotZ: -0.00153372448 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 13205 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '132': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/2433509329550810616/2AEAA709721847713BD7A43770BF62368254F2A5/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/2433509329553562321/9EA326D15B43F26835DB5A9F1D6385FF06164704/ + NumHeight: 7 + NumWidth: 3 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: 9b4717 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Icy Track + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 13.1586466 + posY: 1.17643011 + posZ: -14.3632669 + rotX: 0.00120737357 + rotY: 270.012329 + rotZ: 359.977631 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 13206 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '132': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/2433509329550810616/2AEAA709721847713BD7A43770BF62368254F2A5/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/2433509329553562321/9EA326D15B43F26835DB5A9F1D6385FF06164704/ + NumHeight: 7 + NumWidth: 3 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: 5d398b + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Pushed Off + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 9.486512 + posY: 1.03149593 + posZ: -17.6714325 + rotX: 359.9888 + rotY: 269.9869 + rotZ: 0.0140888374 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 13207 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '132': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/2433509329550810616/2AEAA709721847713BD7A43770BF62368254F2A5/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/2433509329553562321/9EA326D15B43F26835DB5A9F1D6385FF06164704/ + NumHeight: 7 + NumWidth: 3 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: ea910e + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Pushed Off + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 14.9503279 + posY: 1.03147757 + posZ: -17.91679 + rotX: 359.987823 + rotY: 270.0121 + rotZ: -0.004966685 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 13208 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '132': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/2433509329550810616/2AEAA709721847713BD7A43770BF62368254F2A5/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/2433509329553562321/9EA326D15B43F26835DB5A9F1D6385FF06164704/ + NumHeight: 7 + NumWidth: 3 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: b7ff58 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Onto the Roof + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 11.7398243 + posY: 1.03148031 + posZ: -17.9151783 + rotX: 359.987274 + rotY: 270.011719 + rotZ: -0.005430118 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 13209 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '132': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/2433509329550810616/2AEAA709721847713BD7A43770BF62368254F2A5/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/2433509329553562321/9EA326D15B43F26835DB5A9F1D6385FF06164704/ + NumHeight: 7 + NumWidth: 3 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: '865465' + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Onto the Roof + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 16.1587811 + posY: 1.031698 + posZ: -19.7836514 + rotX: -0.0007825692 + rotY: 270.0121 + rotZ: -0.000225154043 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 13214 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '132': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/2433509329550810616/2AEAA709721847713BD7A43770BF62368254F2A5/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/2433509329553562321/9EA326D15B43F26835DB5A9F1D6385FF06164704/ + NumHeight: 7 + NumWidth: 3 + UniqueBack: false + Description: Human. + GMNotes: '' + GUID: 34b911 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Mysterious Passenger + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 10.8538427 + posY: 1.0331341 + posZ: -27.8758125 + rotX: 0.0053248 + rotY: 269.984741 + rotZ: -0.00275616 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 13216 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '132': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/2433509329550810616/2AEAA709721847713BD7A43770BF62368254F2A5/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/2433509329553562321/9EA326D15B43F26835DB5A9F1D6385FF06164704/ + NumHeight: 7 + NumWidth: 3 + UniqueBack: false + Description: Human. + GMNotes: '' + GUID: e37988 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Mysterious Passenger + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 12.225584 + posY: 1.22484493 + posZ: -27.119236 + rotX: 359.843079 + rotY: 269.984283 + rotZ: 359.8763 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 13215 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '132': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/2433509329550810616/2AEAA709721847713BD7A43770BF62368254F2A5/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/2433509329553562321/9EA326D15B43F26835DB5A9F1D6385FF06164704/ + NumHeight: 7 + NumWidth: 3 + UniqueBack: false + Description: Human. + GMNotes: '' + GUID: 210f98 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Mysterious Passenger + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 11.819416 + posY: 1.08059108 + posZ: -27.58278 + rotX: 359.840759 + rotY: 269.984436 + rotZ: 359.8702 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 13217 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '132': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/2433509329550810616/2AEAA709721847713BD7A43770BF62368254F2A5/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/2433509329553562321/9EA326D15B43F26835DB5A9F1D6385FF06164704/ + NumHeight: 7 + NumWidth: 3 + UniqueBack: false + Description: Human. + GMNotes: '' + GUID: b0feb6 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Observant Passenger + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 13.57659 + posY: 1.03162467 + posZ: -17.0790081 + rotX: -0.00422712043 + rotY: 269.985474 + rotZ: -0.0013482389 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 13218 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '132': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/2433509329550810616/2AEAA709721847713BD7A43770BF62368254F2A5/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/2433509329553562321/9EA326D15B43F26835DB5A9F1D6385FF06164704/ + NumHeight: 7 + NumWidth: 3 + UniqueBack: false + Description: Human. + GMNotes: '' + GUID: f74e7f + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Observant Passenger + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 13.0900087 + posY: 1.176565 + posZ: -17.3480682 + rotX: 359.9929 + rotY: 269.985718 + rotZ: 0.0132343015 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 13210 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '132': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/2433509329550810616/2AEAA709721847713BD7A43770BF62368254F2A5/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/2433509329553562321/9EA326D15B43F26835DB5A9F1D6385FF06164704/ + NumHeight: 7 + NumWidth: 3 + UniqueBack: false + Description: Ritual. + GMNotes: '' + GUID: d5c374 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Gaze of the North + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 27.8899879 + posY: 1.03153634 + posZ: -19.3154221 + rotX: 359.993439 + rotY: 269.9513 + rotZ: 0.0352736861 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 13211 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '132': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/2433509329550810616/2AEAA709721847713BD7A43770BF62368254F2A5/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/2433509329553562321/9EA326D15B43F26835DB5A9F1D6385FF06164704/ + NumHeight: 7 + NumWidth: 3 + UniqueBack: false + Description: Ritual. + GMNotes: '' + GUID: 13fae6 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Biting Breath + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 27.4055729 + posY: 1.17635763 + posZ: -19.4227448 + rotX: 0.00151416427 + rotY: 269.9581 + rotZ: 0.101358652 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 13212 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '132': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/2433509329550810616/2AEAA709721847713BD7A43770BF62368254F2A5/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/2433509329553562321/9EA326D15B43F26835DB5A9F1D6385FF06164704/ + NumHeight: 7 + NumWidth: 3 + UniqueBack: false + Description: Ritual. + GMNotes: '' + GUID: c65380 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Icy Veins + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 27.883564 + posY: 1.19393671 + posZ: -19.0361481 + rotX: -0.0027201646 + rotY: 269.962 + rotZ: 359.9457 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 13213 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '132': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/2433509329550810616/2AEAA709721847713BD7A43770BF62368254F2A5/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/2433509329553562321/9EA326D15B43F26835DB5A9F1D6385FF06164704/ + NumHeight: 7 + NumWidth: 3 + UniqueBack: false + Description: Ritual. + GMNotes: '' + GUID: 82c594 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Shifting Aurora + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 27.87265 + posY: 1.18043482 + posZ: -19.3434925 + rotX: -0.000755445159 + rotY: 269.995728 + rotZ: 0.0009828494 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12121 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '121': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: fb311c + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Crypt Chill + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -1.71423316 + posY: 1.03169024 + posZ: -12.9443426 + rotX: -0.00174733356 + rotY: 270.034454 + rotZ: -0.0011755788 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12121 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '121': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: b78c3b + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Crypt Chill + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -1.52981949 + posY: 1.17628717 + posZ: -12.4871578 + rotX: 359.9812 + rotY: 269.999481 + rotZ: 359.976318 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12122 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '121': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: '356046' + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Obscuring Fog + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -1.42470074 + posY: 1.03167713 + posZ: -15.8986273 + rotX: -0.00186766614 + rotY: 270.0325 + rotZ: -0.0007538253 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12122 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '121': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: 03a265 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Obscuring Fog + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -1.54464078 + posY: 1.17053676 + posZ: -16.0112114 + rotX: 359.985138 + rotY: 269.971527 + rotZ: 0.00247924146 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3623 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Cultist. + GMNotes: '' + GUID: c70e63 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Acolyte + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 9.324065 + posY: 1.19862 + posZ: -3.09369588 + rotX: 359.486053 + rotY: 270.0154 + rotZ: 179.301117 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3623 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Cultist. + GMNotes: '' + GUID: 4072d7 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Acolyte + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 8.92055 + posY: 1.18172359 + posZ: -3.263212 + rotX: 359.947266 + rotY: 270.010468 + rotZ: 179.834869 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3623 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Cultist. + GMNotes: '' + GUID: c70e63 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Acolyte + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 8.955755 + posY: 1.03432441 + posZ: -3.18170285 + rotX: 359.989838 + rotY: 270.009247 + rotZ: 180.004013 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3624 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Cultist. + GMNotes: '' + GUID: 159f90 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Wizard of the Order + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.3881433 + posY: 1.19410753 + posZ: -2.42233348 + rotX: 359.993927 + rotY: 269.9705 + rotZ: 359.9545 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3625 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: 6f5b7b + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Mysterious Chanting + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.497438 + posY: 1.03164768 + posZ: -2.41275716 + rotX: -0.0026828805 + rotY: 269.9992 + rotZ: 0.00774262333 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3625 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: df668b + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Mysterious Chanting + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.78830338 + posY: 1.17654562 + posZ: -2.26493549 + rotX: -0.00101514475 + rotY: 270.018677 + rotZ: 0.0129767042 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12120 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '121': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: e0f4c0 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ancient Evils + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.00385523 + posY: 1.031655 + posZ: -23.845438 + rotX: -0.004642595 + rotY: 269.95694 + rotZ: -0.00403306354 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12120 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '121': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: 1921c5 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ancient Evils + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 1.77903724 + posY: 1.03169167 + posZ: -21.72116 + rotX: -0.00220041536 + rotY: 270.005157 + rotZ: 0.0003692792 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12120 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '121': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Omen. + GMNotes: '' + GUID: 61e841 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ancient Evils + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.05545044 + posY: 1.24616587 + posZ: -21.5521545 + rotX: 359.950653 + rotY: 269.977722 + rotZ: 354.750183 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '121': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '132': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/2433509329550810616/2AEAA709721847713BD7A43770BF62368254F2A5/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/2433509329553562321/9EA326D15B43F26835DB5A9F1D6385FF06164704/ + NumHeight: 7 + NumWidth: 3 + UniqueBack: false + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 13200 +- 13201 +- 13202 +- 13203 +- 13204 +- 13205 +- 13206 +- 13207 +- 13208 +- 13209 +- 13214 +- 13216 +- 13215 +- 13217 +- 13218 +- 13210 +- 13211 +- 13212 +- 13213 +- 12121 +- 12121 +- 12122 +- 12122 +- 3623 +- 3623 +- 3623 +- 3624 +- 3625 +- 3625 +- 12120 +- 12120 +- 12120 +Description: '' +GMNotes: '' +GUID: 6712b5 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Encounter Deck +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.927403 + posY: 1.7823683 + posZ: 5.75713634 + rotX: 359.919739 + rotY: 269.999756 + rotZ: 180.016815 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Winter Winds 754057/Bag Frozen Tracks 11429d/Deck Train Car e49f42.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Winter Winds 754057/Bag Frozen Tracks 11429d/Deck Train Car e49f42.yaml new file mode 100644 index 000000000..725f56314 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Winter Winds 754057/Bag Frozen Tracks 11429d/Deck Train Car e49f42.yaml @@ -0,0 +1,253 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 100701 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1007': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/2433509660059164071/28E29C91F35BD4B103FA341BFA7CFC5F9F1F4826/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/2433509660059163584/F1698E8E72193D39E320FA0C5FA46BF5B04DAD03/ + NumHeight: 3 + NumWidth: 3 + UniqueBack: true + Description: Train. + GMNotes: '' + GUID: 7a8e01 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Train Car + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 10.9742126 + posY: 1.03134382 + posZ: -13.8671932 + rotX: -0.004650283 + rotY: 269.9567 + rotZ: 0.03180685 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 100702 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1007': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/2433509660059164071/28E29C91F35BD4B103FA341BFA7CFC5F9F1F4826/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/2433509660059163584/F1698E8E72193D39E320FA0C5FA46BF5B04DAD03/ + NumHeight: 3 + NumWidth: 3 + UniqueBack: true + Description: Train. + GMNotes: '' + GUID: 25c2a5 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Train Car + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 10.7582169 + posY: 1.17647219 + posZ: -14.0163946 + rotX: 0.0015382 + rotY: 270.0136 + rotZ: 0.11083582 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 100703 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1007': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/2433509660059164071/28E29C91F35BD4B103FA341BFA7CFC5F9F1F4826/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/2433509660059163584/F1698E8E72193D39E320FA0C5FA46BF5B04DAD03/ + NumHeight: 3 + NumWidth: 3 + UniqueBack: true + Description: Train. + GMNotes: '' + GUID: 77ce56 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Train Car + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 10.855052 + posY: 1.19415355 + posZ: -13.7370682 + rotX: -0.000714877562 + rotY: 270.000366 + rotZ: -0.00139965129 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 100704 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1007': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/2433509660059164071/28E29C91F35BD4B103FA341BFA7CFC5F9F1F4826/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/2433509660059163584/F1698E8E72193D39E320FA0C5FA46BF5B04DAD03/ + NumHeight: 3 + NumWidth: 3 + UniqueBack: true + Description: Train. + GMNotes: '' + GUID: f6b8a2 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Train Car + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 11.0029573 + posY: 1.18039513 + posZ: -14.0247822 + rotX: 0.0003343859 + rotY: 270.007874 + rotZ: 0.002412254 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 100705 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '1007': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/2433509660059164071/28E29C91F35BD4B103FA341BFA7CFC5F9F1F4826/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/2433509660059163584/F1698E8E72193D39E320FA0C5FA46BF5B04DAD03/ + NumHeight: 3 + NumWidth: 3 + UniqueBack: true + Description: Train. + GMNotes: '' + GUID: 93893d + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Train Car + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.15554221 + posY: 1.17841291 + posZ: -17.2429752 + rotX: -0.0006533707 + rotY: 269.992859 + rotZ: -0.00436514057 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '1007': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/2433509660059164071/28E29C91F35BD4B103FA341BFA7CFC5F9F1F4826/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/2433509660059163584/F1698E8E72193D39E320FA0C5FA46BF5B04DAD03/ + NumHeight: 3 + NumWidth: 3 + UniqueBack: true +DeckIDs: +- 100701 +- 100702 +- 100703 +- 100704 +- 100705 +Description: '' +GMNotes: '' +GUID: e49f42 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Train Car +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -17.1200275 + posY: 1.67594552 + posZ: -0.02999484 + rotX: 359.9201 + rotY: 269.9961 + rotZ: 0.0168835651 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Winter Winds 754057/Bag Stranded in the Urals 8077a1.ttslua b/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/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 791837/Custom_Model_Bag Winter Winds 754057/Bag Stranded in the Urals 8077a1.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Winter Winds 754057/Bag Stranded in the Urals 8077a1.yaml new file mode 100644 index 000000000..b8537d049 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Winter Winds 754057/Bag Stranded in the Urals 8077a1.yaml @@ -0,0 +1,44 @@ +Autoraise: true +ColorDiffuse: + b: 0.790965 + g: 0.8398302 + r: 0.8850174 +ContainedObjects: +- !include 'Bag Stranded in the Urals 8077a1/Bag Set Aside 78e6a9.yaml' +- !include 'Bag Stranded in the Urals 8077a1/Deck Encounter Deck d0fe7b.yaml' +- !include 'Bag Stranded in the Urals 8077a1/Deck Agenda f4149c.yaml' +- !include 'Bag Stranded in the Urals 8077a1/Deck Act 7a7819.yaml' +- !include 'Bag Stranded in the Urals 8077a1/Card Stranded in the Urals c2daa0.yaml' +- !include 'Bag Stranded in the Urals 8077a1/Deck Starting Location f957fa.yaml' +- !include 'Bag Stranded in the Urals 8077a1/Custom_Tile Setup 10a86b.yaml' +- !include 'Bag Stranded in the Urals 8077a1/Card Rail-Side Ridge cdb1f6.yaml' +- !include 'Bag Stranded in the Urals 8077a1/Card Stranded in the Urals c4b865.yaml' +Description: Winter Winds +GMNotes: '' +GUID: 8077a1 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Bag Stranded in the Urals 8077a1.ttslua' +LuaScriptState: '{"ml":{"10a86b":{"lock":false,"pos":{"x":-10.975,"y":1.5973,"z":1.6777},"rot":{"x":359.9201,"y":269.9915,"z":0.0169}},"78e6a9":{"lock":false,"pos":{"x":1.7123,"y":1.3982,"z":14.2795},"rot":{"x":359.9551,"y":224.995,"z":0.0687}},"7a7819":{"lock":false,"pos":{"x":-3.7391,"y":1.6639,"z":-4.6163},"rot":{"x":359.9197,"y":270.0114,"z":0.0168}},"c2daa0":{"lock":false,"pos":{"x":-3.956,"y":1.6556,"z":-10.4412},"rot":{"x":359.9197,"y":270.023,"z":0.0168}},"c4b865":{"lock":false,"pos":{"x":-50.9244,"y":1.7266,"z":8.1784},"rot":{"x":359.9201,"y":270.023,"z":0.0168}},"cdb1f6":{"lock":false,"pos":{"x":-17.1199,"y":1.6771,"z":-0.03},"rot":{"x":359.9201,"y":269.9873,"z":0.0169}},"d0fe7b":{"lock":false,"pos":{"x":-3.9278,"y":1.7131,"z":5.7571},"rot":{"x":359.9197,"y":270.0013,"z":180.0168}},"f4149c":{"lock":false,"pos":{"x":-2.7247,"y":1.664,"z":0.3733},"rot":{"x":359.9197,"y":270.0512,"z":0.0168}},"f957fa":{"lock":false,"pos":{"x":-11.5779,"y":1.6783,"z":7.1616},"rot":{"x":359.9201,"y":269.9909,"z":0.0169}}}}' +MaterialIndex: -1 +MeshIndex: -1 +Name: Bag +Nickname: Stranded in the Urals +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 9.166584 + posY: 1.2836194 + posZ: -0.8205363 + rotX: 0.0799213052 + rotY: 89.9943542 + rotZ: 359.9831 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Winter Winds 754057/Bag Stranded in the Urals 8077a1/Bag Set Aside 78e6a9.yaml new file mode 100644 index 000000000..53b924beb --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Winter Winds 754057/Bag Stranded in the Urals 8077a1/Bag Set Aside 78e6a9.yaml @@ -0,0 +1,44 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +ContainedObjects: +- !include 'Bag Set Aside 78e6a9/Deck Beast-Scarred e786f6.yaml' +- !include 'Bag Set Aside 78e6a9/Card Mysterious Predator d6b469.yaml' +- !include 'Bag Set Aside 78e6a9/Deck Encounter Deck (Aside) d31305.yaml' +- !include 'Bag Set Aside 78e6a9/Card Awakened Bear 65dc35.yaml' +- !include 'Bag Set Aside 78e6a9/Deck Story Asset fb056a.yaml' +- !include 'Bag Set Aside 78e6a9/Card Dark Woods 840896.yaml' +- !include 'Bag Set Aside 78e6a9/Deck Deep Woods cb97ce.yaml' +- !include 'Bag Set Aside 78e6a9/Deck Snowy Woods 12ec4b.yaml' +- !include 'Bag Set Aside 78e6a9/Card Vantage Point 5ff6b5.yaml' +Description: '' +GMNotes: '' +GUID: 78e6a9 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +MeshIndex: -1 +Name: Bag +Nickname: Set Aside +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 1.71226311 + posY: 1.39822388 + posZ: 14.279501 + rotX: 359.955139 + rotY: 224.994965 + rotZ: 0.06872208 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Winter Winds 754057/Bag Stranded in the Urals 8077a1/Bag Set Aside 78e6a9/Card Awakened Bear 65dc35.yaml new file mode 100644 index 000000000..acccab467 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Winter Winds 754057/Bag Stranded in the Urals 8077a1/Bag Set Aside 78e6a9/Card Awakened Bear 65dc35.yaml @@ -0,0 +1,41 @@ +Autoraise: true +CardID: 16100 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '161': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/2433509329550810616/2AEAA709721847713BD7A43770BF62368254F2A5/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/2433509660050683859/1848BCBDD89A1B781E260679096470A3BC67EC03/ + NumHeight: 4 + NumWidth: 6 + UniqueBack: false +Description: Beast. +GMNotes: '' +GUID: 65dc35 +Grid: true +GridProjection: false +Hands: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Awakened Bear +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 16.6054478 + posY: 3.05367351 + posZ: -12.1138792 + rotX: 2.06798315 + rotY: 270.069855 + rotZ: 2.393525 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Winter Winds 754057/Bag Stranded in the Urals 8077a1/Bag Set Aside 78e6a9/Card Dark Woods 840896.yaml new file mode 100644 index 000000000..3968f5ec3 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Winter Winds 754057/Bag Stranded in the Urals 8077a1/Bag Set Aside 78e6a9/Card Dark Woods 840896.yaml @@ -0,0 +1,41 @@ +Autoraise: true +CardID: 13310 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '133': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/2433509660059344909/58AF5A15D7D836CCAB4332E613AC297A3D9AB3BB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/2433509660059344364/2831B26D5860809691504F968F1E6E0131463ECC/ + NumHeight: 3 + NumWidth: 4 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: '840896' +Grid: true +GridProjection: false +Hands: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Dark Woods +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 1.44725049 + posY: 3.05783725 + posZ: -25.71609 + rotX: 1.57806945 + rotY: 270.065979 + rotZ: 3.09587169 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Winter Winds 754057/Bag Stranded in the Urals 8077a1/Bag Set Aside 78e6a9/Card Mysterious Predator d6b469.yaml new file mode 100644 index 000000000..127bb0d48 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Winter Winds 754057/Bag Stranded in the Urals 8077a1/Bag Set Aside 78e6a9/Card Mysterious Predator d6b469.yaml @@ -0,0 +1,41 @@ +Autoraise: true +CardID: 17503 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '175': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/2433509329550810616/2AEAA709721847713BD7A43770BF62368254F2A5/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/2433509660050683859/1848BCBDD89A1B781E260679096470A3BC67EC03/ + NumHeight: 4 + NumWidth: 6 + UniqueBack: false +Description: Beast. Monster. Elite. +GMNotes: '' +GUID: d6b469 +Grid: true +GridProjection: false +Hands: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Mysterious Predator +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 17.5116653 + posY: 3.09721518 + posZ: -11.7993078 + rotX: 359.496124 + rotY: 269.9724 + rotZ: 1.698531 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Winter Winds 754057/Bag Stranded in the Urals 8077a1/Bag Set Aside 78e6a9/Card Vantage Point 5ff6b5.yaml new file mode 100644 index 000000000..42126fc23 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Winter Winds 754057/Bag Stranded in the Urals 8077a1/Bag Set Aside 78e6a9/Card Vantage Point 5ff6b5.yaml @@ -0,0 +1,41 @@ +Autoraise: true +CardID: 13305 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '133': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/2433509660059344909/58AF5A15D7D836CCAB4332E613AC297A3D9AB3BB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/2433509660059344364/2831B26D5860809691504F968F1E6E0131463ECC/ + NumHeight: 3 + NumWidth: 4 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: 5ff6b5 +Grid: true +GridProjection: false +Hands: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Vantage Point +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 2.17346358 + posY: 3.07265115 + posZ: -24.6990662 + rotX: 359.399719 + rotY: 270.031464 + rotZ: 356.4238 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Winter Winds 754057/Bag Stranded in the Urals 8077a1/Bag Set Aside 78e6a9/Deck Beast-Scarred e786f6.yaml new file mode 100644 index 000000000..4d889ddfe --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Winter Winds 754057/Bag Stranded in the Urals 8077a1/Bag Set Aside 78e6a9/Deck Beast-Scarred e786f6.yaml @@ -0,0 +1,210 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 14804 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '148': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/2433509660050602265/8E49038EFACAFB1B4ABAC4CA2632430C9BA15557/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/2433509660050601833/9C05EF6C3BA30780B57426B705018E61041FF816/ + NumHeight: 2 + NumWidth: 4 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 6fa3f0 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Beast-Scarred + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 10.8678341 + posY: 1.03159249 + posZ: -23.8553867 + rotX: 359.993378 + rotY: 269.998474 + rotZ: -0.002072115 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 14805 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '148': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/2433509660050602265/8E49038EFACAFB1B4ABAC4CA2632430C9BA15557/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/2433509660050601833/9C05EF6C3BA30780B57426B705018E61041FF816/ + NumHeight: 2 + NumWidth: 4 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 8a6e1e + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Beast-Scarred + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 10.3832235 + posY: 1.17636013 + posZ: -23.6382179 + rotX: 0.003643 + rotY: 269.998169 + rotZ: 359.98642 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 14806 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '148': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/2433509660050602265/8E49038EFACAFB1B4ABAC4CA2632430C9BA15557/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/2433509660050601833/9C05EF6C3BA30780B57426B705018E61041FF816/ + NumHeight: 2 + NumWidth: 4 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 8fb5c5 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Beast-Scarred + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 10.9598055 + posY: 1.19408429 + posZ: -23.7319851 + rotX: 0.0006138074 + rotY: 270.0099 + rotZ: -0.00274992036 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 14807 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '148': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/2433509660050602265/8E49038EFACAFB1B4ABAC4CA2632430C9BA15557/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/2433509660050601833/9C05EF6C3BA30780B57426B705018E61041FF816/ + NumHeight: 2 + NumWidth: 4 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 2849a0 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Beast-Scarred + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 10.9514856 + posY: 1.19564819 + posZ: -23.1519432 + rotX: 359.43335 + rotY: 270.031464 + rotZ: 359.993439 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '148': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/2433509660050602265/8E49038EFACAFB1B4ABAC4CA2632430C9BA15557/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/2433509660050601833/9C05EF6C3BA30780B57426B705018E61041FF816/ + NumHeight: 2 + NumWidth: 4 + UniqueBack: false +DeckIDs: +- 14804 +- 14805 +- 14806 +- 14807 +Description: '' +GMNotes: '' +GUID: e786f6 +Grid: true +GridProjection: false +Hands: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Beast-Scarred +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 16.2611752 + posY: 3.04755926 + posZ: -11.5840378 + rotX: 2.60780072 + rotY: 269.9864 + rotZ: 359.710052 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Winter Winds 754057/Bag Stranded in the Urals 8077a1/Bag Set Aside 78e6a9/Deck Deep Woods cb97ce.yaml new file mode 100644 index 000000000..0fb640699 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Winter Winds 754057/Bag Stranded in the Urals 8077a1/Bag Set Aside 78e6a9/Deck Deep Woods cb97ce.yaml @@ -0,0 +1,168 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 13309 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '133': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/2433509660059344909/58AF5A15D7D836CCAB4332E613AC297A3D9AB3BB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/2433509660059344364/2831B26D5860809691504F968F1E6E0131463ECC/ + NumHeight: 3 + NumWidth: 4 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 457e6e + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Deep Woods + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 12.8014393 + posY: 1.03161585 + posZ: -3.96207976 + rotX: -0.00467104651 + rotY: 269.982819 + rotZ: -0.00157286471 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 13308 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '133': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/2433509660059344909/58AF5A15D7D836CCAB4332E613AC297A3D9AB3BB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/2433509660059344364/2831B26D5860809691504F968F1E6E0131463ECC/ + NumHeight: 3 + NumWidth: 4 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 2fbb95 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Deep Woods + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 12.8027363 + posY: 1.1762774 + posZ: -4.384776 + rotX: 359.989532 + rotY: 269.982727 + rotZ: 0.00607593963 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 13304 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '133': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/2433509660059344909/58AF5A15D7D836CCAB4332E613AC297A3D9AB3BB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/2433509660059344364/2831B26D5860809691504F968F1E6E0131463ECC/ + NumHeight: 3 + NumWidth: 4 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 4bef38 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Deep Woods + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -2.22256923 + posY: 1.30816424 + posZ: -21.9080219 + rotX: 2.33912182 + rotY: 270.00946 + rotZ: 0.08732495 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '133': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/2433509660059344909/58AF5A15D7D836CCAB4332E613AC297A3D9AB3BB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/2433509660059344364/2831B26D5860809691504F968F1E6E0131463ECC/ + NumHeight: 3 + NumWidth: 4 + UniqueBack: true +DeckIDs: +- 13309 +- 13308 +- 13304 +Description: '' +GMNotes: '' +GUID: cb97ce +Grid: true +GridProjection: false +Hands: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Deep Woods +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 1.97830665 + posY: 3.102295 + posZ: -25.09972 + rotX: 3.11626029 + rotY: 270.021118 + rotZ: 359.2461 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Winter Winds 754057/Bag Stranded in the Urals 8077a1/Bag Set Aside 78e6a9/Deck Encounter Deck (Aside) d31305.yaml new file mode 100644 index 000000000..c1a944c1d --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Winter Winds 754057/Bag Stranded in the Urals 8077a1/Bag Set Aside 78e6a9/Deck Encounter Deck (Aside) d31305.yaml @@ -0,0 +1,511 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 19517 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '195': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/2433509329550810616/2AEAA709721847713BD7A43770BF62368254F2A5/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/2433509660050683859/1848BCBDD89A1B781E260679096470A3BC67EC03/ + NumHeight: 4 + NumWidth: 6 + UniqueBack: false + Description: Darkness. + GMNotes: '' + GUID: 637fcb + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dark Forest + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.142472938 + posY: 1.18124032 + posZ: -5.576077 + rotX: 0.000385577965 + rotY: 270.000031 + rotZ: 180.0 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 19516 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '195': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/2433509329550810616/2AEAA709721847713BD7A43770BF62368254F2A5/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/2433509660050683859/1848BCBDD89A1B781E260679096470A3BC67EC03/ + NumHeight: 4 + NumWidth: 6 + UniqueBack: false + Description: Darkness. + GMNotes: '' + GUID: 18ef99 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dark Forest + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.369125634 + posY: 1.36190581 + posZ: -5.58128548 + rotX: 0.0310099125 + rotY: 270.050964 + rotZ: 168.132156 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 19515 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '195': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/2433509329550810616/2AEAA709721847713BD7A43770BF62368254F2A5/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/2433509660050683859/1848BCBDD89A1B781E260679096470A3BC67EC03/ + NumHeight: 4 + NumWidth: 6 + UniqueBack: false + Description: Darkness. + GMNotes: '' + GUID: 0c28e3 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dark Forest + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.543026268 + posY: 1.03159833 + posZ: -5.64573431 + rotX: 359.993927 + rotY: 270.000244 + rotZ: -0.00299406517 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 19502 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '195': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/2433509329550810616/2AEAA709721847713BD7A43770BF62368254F2A5/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/2433509660050683859/1848BCBDD89A1B781E260679096470A3BC67EC03/ + NumHeight: 4 + NumWidth: 6 + UniqueBack: false + Description: Beast. Hunger. + GMNotes: '' + GUID: 6d2f2d + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Hungry Wolves + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.08491755 + posY: 1.0317024 + posZ: -3.138727 + rotX: -0.000734186848 + rotY: 269.993225 + rotZ: -0.0004571173 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 19501 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '195': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/2433509329550810616/2AEAA709721847713BD7A43770BF62368254F2A5/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/2433509660050683859/1848BCBDD89A1B781E260679096470A3BC67EC03/ + NumHeight: 4 + NumWidth: 6 + UniqueBack: false + Description: Beast. Hunger. + GMNotes: '' + GUID: cb0c1a + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Hungry Wolves + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.254808 + posY: 1.170506 + posZ: -3.20962143 + rotX: 359.988129 + rotY: 269.9997 + rotZ: -0.0008809489 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 17518 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '175': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/2433509329550810616/2AEAA709721847713BD7A43770BF62368254F2A5/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/2433509660050683859/1848BCBDD89A1B781E260679096470A3BC67EC03/ + NumHeight: 4 + NumWidth: 6 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 084294 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Signs of the Beast + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -1.34963989 + posY: 1.18888879 + posZ: -11.2352085 + rotX: -0.000925045635 + rotY: 270.000061 + rotZ: 180.005188 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 17520 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '175': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/2433509329550810616/2AEAA709721847713BD7A43770BF62368254F2A5/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/2433509660050683859/1848BCBDD89A1B781E260679096470A3BC67EC03/ + NumHeight: 4 + NumWidth: 6 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: e77752 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Signs of the Beast + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -0.9055802 + posY: 1.14766085 + posZ: -10.7649784 + rotX: -0.001829637 + rotY: 270.005585 + rotZ: 182.099579 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 17521 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '175': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/2433509329550810616/2AEAA709721847713BD7A43770BF62368254F2A5/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/2433509660050683859/1848BCBDD89A1B781E260679096470A3BC67EC03/ + NumHeight: 4 + NumWidth: 6 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: a6e9c8 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Hunting the Prey + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -1.11455131 + posY: 1.18134487 + posZ: -11.3881416 + rotX: 0.00182387978 + rotY: 269.986847 + rotZ: 180.016418 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 17519 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '175': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/2433509329550810616/2AEAA709721847713BD7A43770BF62368254F2A5/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/2433509660050683859/1848BCBDD89A1B781E260679096470A3BC67EC03/ + NumHeight: 4 + NumWidth: 6 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: a73db5 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Hunting the Prey + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -0.8308225 + posY: 1.24001122 + posZ: -11.0067472 + rotX: 0.005495741 + rotY: 270.013275 + rotZ: 176.961838 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 17522 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '175': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/2433509329550810616/2AEAA709721847713BD7A43770BF62368254F2A5/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/2433509660050683859/1848BCBDD89A1B781E260679096470A3BC67EC03/ + NumHeight: 4 + NumWidth: 6 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 6e22c1 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Unnerving Roar + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -1.17240143 + posY: 1.19703341 + posZ: -10.9641867 + rotX: -0.00072705315 + rotY: 269.999939 + rotZ: 179.997757 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 17523 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '175': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/2433509329550810616/2AEAA709721847713BD7A43770BF62368254F2A5/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/2433509660050683859/1848BCBDD89A1B781E260679096470A3BC67EC03/ + NumHeight: 4 + NumWidth: 6 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 0cb77c + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Unnerving Roar + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -0.6752495 + posY: 1.14079976 + posZ: -11.1923189 + rotX: -0.0006155708 + rotY: 270.0224 + rotZ: 182.004333 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '175': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/2433509329550810616/2AEAA709721847713BD7A43770BF62368254F2A5/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/2433509660050683859/1848BCBDD89A1B781E260679096470A3BC67EC03/ + NumHeight: 4 + NumWidth: 6 + UniqueBack: false + '195': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/2433509329550810616/2AEAA709721847713BD7A43770BF62368254F2A5/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/2433509660050683859/1848BCBDD89A1B781E260679096470A3BC67EC03/ + NumHeight: 4 + NumWidth: 6 + UniqueBack: false +DeckIDs: +- 19517 +- 19516 +- 19515 +- 19502 +- 19501 +- 17518 +- 17520 +- 17521 +- 17519 +- 17522 +- 17523 +Description: '' +GMNotes: '' +GUID: d31305 +Grid: true +GridProjection: false +Hands: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Encounter Deck (Aside) +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 16.9008961 + posY: 3.082304 + posZ: -11.3442392 + rotX: 1.99262917 + rotY: 269.9393 + rotZ: 177.652969 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Winter Winds 754057/Bag Stranded in the Urals 8077a1/Bag Set Aside 78e6a9/Deck Snowy Woods 12ec4b.yaml new file mode 100644 index 000000000..4709d1802 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Winter Winds 754057/Bag Stranded in the Urals 8077a1/Bag Set Aside 78e6a9/Deck Snowy Woods 12ec4b.yaml @@ -0,0 +1,168 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 13307 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '133': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/2433509660059344909/58AF5A15D7D836CCAB4332E613AC297A3D9AB3BB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/2433509660059344364/2831B26D5860809691504F968F1E6E0131463ECC/ + NumHeight: 3 + NumWidth: 4 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 033d6f + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Snowy Woods + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 7.057056 + posY: 1.03164685 + posZ: 0.4595139 + rotX: -0.00307783531 + rotY: 269.982758 + rotZ: -0.00088763173 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 13306 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '133': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/2433509660059344909/58AF5A15D7D836CCAB4332E613AC297A3D9AB3BB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/2433509660059344364/2831B26D5860809691504F968F1E6E0131463ECC/ + NumHeight: 3 + NumWidth: 4 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: df9686 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Snowy Woods + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 6.48448753 + posY: 1.08151174 + posZ: 0.460016549 + rotX: 0.003244599 + rotY: 269.98233 + rotZ: 0.00121619739 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 13303 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '133': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/2433509660059344909/58AF5A15D7D836CCAB4332E613AC297A3D9AB3BB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/2433509660059344364/2831B26D5860809691504F968F1E6E0131463ECC/ + NumHeight: 3 + NumWidth: 4 + UniqueBack: true + Description: '' + GMNotes: '' + GUID: 68f877 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Snowy Woods + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 5.36599064 + posY: 1.14372265 + posZ: 0.173698068 + rotX: 0.0123283612 + rotY: 269.980316 + rotZ: 0.005671118 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '133': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/2433509660059344909/58AF5A15D7D836CCAB4332E613AC297A3D9AB3BB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/2433509660059344364/2831B26D5860809691504F968F1E6E0131463ECC/ + NumHeight: 3 + NumWidth: 4 + UniqueBack: true +DeckIDs: +- 13307 +- 13306 +- 13303 +Description: '' +GMNotes: '' +GUID: 12ec4b +Grid: true +GridProjection: false +Hands: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Snowy Woods +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 2.43829226 + posY: 3.087233 + posZ: -25.21223 + rotX: 357.944855 + rotY: 269.983582 + rotZ: 0.4686706 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Winter Winds 754057/Bag Stranded in the Urals 8077a1/Bag Set Aside 78e6a9/Deck Story Asset fb056a.yaml new file mode 100644 index 000000000..1f0da01f8 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Winter Winds 754057/Bag Stranded in the Urals 8077a1/Bag Set Aside 78e6a9/Deck Story Asset fb056a.yaml @@ -0,0 +1,210 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 14500 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '145': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/2433509660050602265/8E49038EFACAFB1B4ABAC4CA2632430C9BA15557/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/2433509660050601833/9C05EF6C3BA30780B57426B705018E61041FF816/ + NumHeight: 2 + NumWidth: 4 + UniqueBack: false + Description: Item. + GMNotes: '' + GUID: e191a3 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Winter Gear + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 8.560706 + posY: 1.03167164 + posZ: -22.635746 + rotX: -0.0023084248 + rotY: 270.000244 + rotZ: -0.00111155782 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 14501 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '145': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/2433509660050602265/8E49038EFACAFB1B4ABAC4CA2632430C9BA15557/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/2433509660050601833/9C05EF6C3BA30780B57426B705018E61041FF816/ + NumHeight: 2 + NumWidth: 4 + UniqueBack: false + Description: Item. + GMNotes: '' + GUID: 7a3f87 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Rations + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 8.5700655 + posY: 1.17673635 + posZ: -22.5560188 + rotX: -0.00568715157 + rotY: 269.999817 + rotZ: 359.975769 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 14502 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '145': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/2433509660050602265/8E49038EFACAFB1B4ABAC4CA2632430C9BA15557/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/2433509660050601833/9C05EF6C3BA30780B57426B705018E61041FF816/ + NumHeight: 2 + NumWidth: 4 + UniqueBack: false + Description: Item. + GMNotes: '' + GUID: '805002' + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Ural Map + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 8.476665 + posY: 1.19412315 + posZ: -22.341959 + rotX: 0.0002528971 + rotY: 270.055359 + rotZ: 359.958862 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 14503 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '145': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/2433509660050602265/8E49038EFACAFB1B4ABAC4CA2632430C9BA15557/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/2433509660050601833/9C05EF6C3BA30780B57426B705018E61041FF816/ + NumHeight: 2 + NumWidth: 4 + UniqueBack: false + Description: Item. + GMNotes: '' + GUID: a75981 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Emergency Flares + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 8.684938 + posY: 1.18039775 + posZ: -22.5359135 + rotX: 359.982941 + rotY: 269.946472 + rotZ: 359.970917 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '145': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/2433509660050602265/8E49038EFACAFB1B4ABAC4CA2632430C9BA15557/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/2433509660050601833/9C05EF6C3BA30780B57426B705018E61041FF816/ + NumHeight: 2 + NumWidth: 4 + UniqueBack: false +DeckIDs: +- 14500 +- 14501 +- 14502 +- 14503 +Description: '' +GMNotes: '' +GUID: fb056a +Grid: true +GridProjection: false +Hands: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Story Asset +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 17.09929 + posY: 3.04834175 + posZ: -10.8763924 + rotX: 0.73957175 + rotY: 269.975433 + rotZ: 356.412445 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Winter Winds 754057/Bag Stranded in the Urals 8077a1/Card Rail-Side Ridge cdb1f6.yaml new file mode 100644 index 000000000..e8fdfa259 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Winter Winds 754057/Bag Stranded in the Urals 8077a1/Card Rail-Side Ridge cdb1f6.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 13302 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '133': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/2433509660059344909/58AF5A15D7D836CCAB4332E613AC297A3D9AB3BB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/2433509660059344364/2831B26D5860809691504F968F1E6E0131463ECC/ + NumHeight: 3 + NumWidth: 4 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: cdb1f6 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Rail-Side Ridge +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -17.1199322 + posY: 1.67707741 + posZ: -0.0300097764 + rotX: 359.9201 + rotY: 269.9873 + rotZ: 0.0168960281 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Winter Winds 754057/Bag Stranded in the Urals 8077a1/Card Stranded in the Urals c2daa0.yaml new file mode 100644 index 000000000..9b22cbb3d --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Winter Winds 754057/Bag Stranded in the Urals 8077a1/Card Stranded in the Urals c2daa0.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 13311 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '133': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/2433509660059344909/58AF5A15D7D836CCAB4332E613AC297A3D9AB3BB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/2433509660059344364/2831B26D5860809691504F968F1E6E0131463ECC/ + NumHeight: 3 + NumWidth: 4 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: c2daa0 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Stranded in the Urals +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.95599413 + posY: 1.65564823 + posZ: -10.4411783 + rotX: 359.919739 + rotY: 270.023 + rotZ: 0.01680918 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Winter Winds 754057/Bag Stranded in the Urals 8077a1/Card Stranded in the Urals c4b865.yaml new file mode 100644 index 000000000..6a4bb9a43 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Winter Winds 754057/Bag Stranded in the Urals 8077a1/Card Stranded in the Urals c4b865.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 13311 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '133': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/2433509660059344909/58AF5A15D7D836CCAB4332E613AC297A3D9AB3BB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/2433509660059344364/2831B26D5860809691504F968F1E6E0131463ECC/ + NumHeight: 3 + NumWidth: 4 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: c4b865 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Stranded in the Urals +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -50.9243851 + posY: 1.72662532 + posZ: 8.17843151 + rotX: 359.9201 + rotY: 270.023 + rotZ: 0.0168456472 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Winter Winds 754057/Bag Stranded in the Urals 8077a1/Custom_Tile Setup 10a86b.yaml new file mode 100644 index 000000000..f7b8c6956 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Winter Winds 754057/Bag Stranded in the Urals 8077a1/Custom_Tile Setup 10a86b.yaml @@ -0,0 +1,42 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.1 + Type: 0 + ImageScalar: 1.0 + ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/2433509660050677424/477B94124DDE9E4EB02ADA1D4BE2D7A9AFB3ADA8/ + ImageURL: http://cloud-3.steamusercontent.com/ugc/2433509660050677004/8CA9F44318273191FF95EE19B6E0B8CAE6F6FF8F/ + WidthScale: 0.0 +Description: Resolution on the Back +GMNotes: '' +GUID: 10a86b +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Tile +Nickname: Setup +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -10.97498 + posY: 1.59729815 + posZ: 1.677695 + rotX: 359.9201 + rotY: 269.991516 + rotZ: 0.0168828554 + scaleX: 1.99470782 + scaleY: 1.0 + scaleZ: 1.99470782 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Winter Winds 754057/Bag Stranded in the Urals 8077a1/Deck Act 7a7819.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Winter Winds 754057/Bag Stranded in the Urals 8077a1/Deck Act 7a7819.yaml new file mode 100644 index 000000000..55616ea62 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Winter Winds 754057/Bag Stranded in the Urals 8077a1/Deck Act 7a7819.yaml @@ -0,0 +1,127 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 14301 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '143': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/2433509660050664759/B64755C547D3391BDD5B489E17674BF94C8BB577/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/2433509660050665367/4C80FCEBD7EB3E86AD89C4F980FE9A16F8199797/ + NumHeight: 2 + NumWidth: 2 + UniqueBack: true + Description: Act 2 + GMNotes: '' + GUID: 9d879c + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: A Light In The Darkness + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 18.6079922 + posY: 1.03165579 + posZ: -17.45364 + rotX: -0.00462674024 + rotY: 270.009644 + rotZ: -0.00100867753 + scaleX: 0.7152412 + scaleY: 1.0 + scaleZ: 0.7152412 + XmlUI: '' +- Autoraise: true + CardID: 14300 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '143': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/2433509660050664759/B64755C547D3391BDD5B489E17674BF94C8BB577/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/2433509660050665367/4C80FCEBD7EB3E86AD89C4F980FE9A16F8199797/ + NumHeight: 2 + NumWidth: 2 + UniqueBack: true + Description: Act 1 + GMNotes: '' + GUID: e8a6ee + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Regrouping + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 18.3147564 + posY: 1.17656446 + posZ: -17.0900688 + rotX: 359.990784 + rotY: 270.009766 + rotZ: 359.984772 + scaleX: 0.7152412 + scaleY: 1.0 + scaleZ: 0.7152412 + XmlUI: '' +CustomDeck: + '143': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/2433509660050664759/B64755C547D3391BDD5B489E17674BF94C8BB577/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/2433509660050665367/4C80FCEBD7EB3E86AD89C4F980FE9A16F8199797/ + NumHeight: 2 + NumWidth: 2 + UniqueBack: true +DeckIDs: +- 14301 +- 14300 +Description: '' +GMNotes: '' +GUID: 7a7819 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Act +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.739089 + posY: 1.663932 + posZ: -4.61630726 + rotX: 359.919739 + rotY: 270.0114 + rotZ: 0.0168227386 + scaleX: 0.7152412 + scaleY: 1.0 + scaleZ: 0.7152412 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Winter Winds 754057/Bag Stranded in the Urals 8077a1/Deck Agenda f4149c.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Winter Winds 754057/Bag Stranded in the Urals 8077a1/Deck Agenda f4149c.yaml new file mode 100644 index 000000000..62a3c72d4 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Winter Winds 754057/Bag Stranded in the Urals 8077a1/Deck Agenda f4149c.yaml @@ -0,0 +1,127 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 14303 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '143': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/2433509660050664759/B64755C547D3391BDD5B489E17674BF94C8BB577/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/2433509660050665367/4C80FCEBD7EB3E86AD89C4F980FE9A16F8199797/ + NumHeight: 2 + NumWidth: 2 + UniqueBack: true + Description: Agenda 2 + GMNotes: '' + GUID: 97ea68 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Stalked in the Night + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 15.5700941 + posY: 1.03161561 + posZ: -17.0584278 + rotX: 359.993347 + rotY: 270.009735 + rotZ: -0.00104816933 + scaleX: 0.7152412 + scaleY: 1.0 + scaleZ: 0.7152412 + XmlUI: '' +- Autoraise: true + CardID: 14302 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '143': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/2433509660050664759/B64755C547D3391BDD5B489E17674BF94C8BB577/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/2433509660050665367/4C80FCEBD7EB3E86AD89C4F980FE9A16F8199797/ + NumHeight: 2 + NumWidth: 2 + UniqueBack: true + Description: Agenda 1 + GMNotes: '' + GUID: 395c3f + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Setting Sun + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 15.4115505 + posY: 1.17647612 + posZ: -17.1725388 + rotX: 0.00331569114 + rotY: 270.010071 + rotZ: -0.00236508786 + scaleX: 0.7152412 + scaleY: 1.0 + scaleZ: 0.7152412 + XmlUI: '' +CustomDeck: + '143': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/2433509660050664759/B64755C547D3391BDD5B489E17674BF94C8BB577/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/2433509660050665367/4C80FCEBD7EB3E86AD89C4F980FE9A16F8199797/ + NumHeight: 2 + NumWidth: 2 + UniqueBack: true +DeckIDs: +- 14303 +- 14302 +Description: '' +GMNotes: '' +GUID: f4149c +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Agenda +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.72469378 + posY: 1.66397738 + posZ: 0.373308361 + rotX: 359.919739 + rotY: 270.0512 + rotZ: 0.0167672429 + scaleX: 0.7152412 + scaleY: 1.0 + scaleZ: 0.7152412 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Winter Winds 754057/Bag Stranded in the Urals 8077a1/Deck Encounter Deck d0fe7b.yaml new file mode 100644 index 000000000..74b8be652 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Winter Winds 754057/Bag Stranded in the Urals 8077a1/Deck Encounter Deck d0fe7b.yaml @@ -0,0 +1,862 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 16104 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '161': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/2433509329550810616/2AEAA709721847713BD7A43770BF62368254F2A5/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/2433509660050683859/1848BCBDD89A1B781E260679096470A3BC67EC03/ + NumHeight: 4 + NumWidth: 6 + UniqueBack: false + Description: Environment. + GMNotes: '' + GUID: 0f6f90 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Lost Bearings + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.31877637 + posY: 1.170931 + posZ: -2.80736852 + rotX: 1.88060212 + rotY: 269.990631 + rotZ: 181.301331 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 16105 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '161': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/2433509329550810616/2AEAA709721847713BD7A43770BF62368254F2A5/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/2433509660050683859/1848BCBDD89A1B781E260679096470A3BC67EC03/ + NumHeight: 4 + NumWidth: 6 + UniqueBack: false + Description: Environment. + GMNotes: '' + GUID: 4e761c + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Lost Bearings + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.80756855 + posY: 1.19534349 + posZ: -2.770593 + rotX: -0.0008723996 + rotY: 270.000153 + rotZ: 179.99675 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 16106 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '161': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/2433509329550810616/2AEAA709721847713BD7A43770BF62368254F2A5/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/2433509660050683859/1848BCBDD89A1B781E260679096470A3BC67EC03/ + NumHeight: 4 + NumWidth: 6 + UniqueBack: false + Description: Environment. + GMNotes: '' + GUID: 8db8e9 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Exhaustion + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.36811614 + posY: 1.137907 + posZ: -2.99176455 + rotX: 0.00306611462 + rotY: 270.0142 + rotZ: 182.602234 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 16107 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '161': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/2433509329550810616/2AEAA709721847713BD7A43770BF62368254F2A5/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/2433509660050683859/1848BCBDD89A1B781E260679096470A3BC67EC03/ + NumHeight: 4 + NumWidth: 6 + UniqueBack: false + Description: Environment. + GMNotes: '' + GUID: 816ecd + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Exhaustion + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.948201 + posY: 1.18398631 + posZ: -2.76795959 + rotX: -0.00115697633 + rotY: 270.000183 + rotZ: 179.993729 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 16108 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '161': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/2433509329550810616/2AEAA709721847713BD7A43770BF62368254F2A5/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/2433509660050683859/1848BCBDD89A1B781E260679096470A3BC67EC03/ + NumHeight: 4 + NumWidth: 6 + UniqueBack: false + Description: Hunger. + GMNotes: '' + GUID: d3d7ec + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Going Hungry + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.46770239 + posY: 1.18130016 + posZ: -2.85143256 + rotX: -0.0008013963 + rotY: 270.0 + rotZ: 180.000671 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 16109 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '161': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/2433509329550810616/2AEAA709721847713BD7A43770BF62368254F2A5/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/2433509660050683859/1848BCBDD89A1B781E260679096470A3BC67EC03/ + NumHeight: 4 + NumWidth: 6 + UniqueBack: false + Description: Hunger. + GMNotes: '' + GUID: e8d413 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Going Hungry + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.15679526 + posY: 1.17644334 + posZ: -2.859901 + rotX: 0.00360350683 + rotY: 269.996216 + rotZ: -0.00308331614 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 16110 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '161': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/2433509329550810616/2AEAA709721847713BD7A43770BF62368254F2A5/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/2433509660050683859/1848BCBDD89A1B781E260679096470A3BC67EC03/ + NumHeight: 4 + NumWidth: 6 + UniqueBack: false + Description: Environment. + GMNotes: '' + GUID: 2bfb6d + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Slippery Slope + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -1.2571435 + posY: 1.10455477 + posZ: -9.77021 + rotX: 357.939423 + rotY: 269.9389 + rotZ: 0.8729092 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 16111 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '161': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/2433509329550810616/2AEAA709721847713BD7A43770BF62368254F2A5/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/2433509660050683859/1848BCBDD89A1B781E260679096470A3BC67EC03/ + NumHeight: 4 + NumWidth: 6 + UniqueBack: false + Description: Environment. + GMNotes: '' + GUID: 92ae12 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Slippery Slope + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -1.17690992 + posY: 1.250278 + posZ: -10.1210718 + rotX: 358.256317 + rotY: 269.917419 + rotZ: 0.9120789 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 17112 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '171': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/2433509329550810616/2AEAA709721847713BD7A43770BF62368254F2A5/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/2433509660050683859/1848BCBDD89A1B781E260679096470A3BC67EC03/ + NumHeight: 4 + NumWidth: 6 + UniqueBack: false + Description: Environment. + GMNotes: '' + GUID: 9966fb + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Snowblind + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -1.55678785 + posY: 1.03160584 + posZ: -13.5061932 + rotX: -0.004945269 + rotY: 269.999664 + rotZ: -0.00220492133 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 17113 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '171': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/2433509329550810616/2AEAA709721847713BD7A43770BF62368254F2A5/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/2433509660050683859/1848BCBDD89A1B781E260679096470A3BC67EC03/ + NumHeight: 4 + NumWidth: 6 + UniqueBack: false + Description: Environment. + GMNotes: '' + GUID: ae5e15 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Snowblind + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -1.86784482 + posY: 1.17642951 + posZ: -13.3554935 + rotX: 0.004352986 + rotY: 269.99942 + rotZ: 359.990051 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 17114 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '171': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/2433509329550810616/2AEAA709721847713BD7A43770BF62368254F2A5/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/2433509660050683859/1848BCBDD89A1B781E260679096470A3BC67EC03/ + NumHeight: 4 + NumWidth: 6 + UniqueBack: false + Description: Environment. + GMNotes: '' + GUID: ffc740 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Snowblind + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -1.56902337 + posY: 1.19408131 + posZ: -13.8108921 + rotX: -0.0018281854 + rotY: 269.998627 + rotZ: 0.002176097 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 20110 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '132': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/2433509329550810616/2AEAA709721847713BD7A43770BF62368254F2A5/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/2433509329553562321/9EA326D15B43F26835DB5A9F1D6385FF06164704/ + NumHeight: 7 + NumWidth: 3 + UniqueBack: false + Description: Ritual. + GMNotes: '' + GUID: d5c374 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Gaze of the North + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 27.8899879 + posY: 1.03153634 + posZ: -19.3154221 + rotX: 359.993439 + rotY: 269.9513 + rotZ: 0.0352736861 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 20111 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '132': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/2433509329550810616/2AEAA709721847713BD7A43770BF62368254F2A5/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/2433509329553562321/9EA326D15B43F26835DB5A9F1D6385FF06164704/ + NumHeight: 7 + NumWidth: 3 + UniqueBack: false + Description: Ritual. + GMNotes: '' + GUID: 13fae6 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Biting Breath + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 27.4055729 + posY: 1.17635763 + posZ: -19.4227448 + rotX: 0.00151416427 + rotY: 269.9581 + rotZ: 0.101358652 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 20112 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '132': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/2433509329550810616/2AEAA709721847713BD7A43770BF62368254F2A5/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/2433509329553562321/9EA326D15B43F26835DB5A9F1D6385FF06164704/ + NumHeight: 7 + NumWidth: 3 + UniqueBack: false + Description: Ritual. + GMNotes: '' + GUID: c65380 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Icy Veins + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 27.883564 + posY: 1.19393671 + posZ: -19.0361481 + rotX: -0.0027201646 + rotY: 269.962 + rotZ: 359.9457 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 20113 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '132': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/2433509329550810616/2AEAA709721847713BD7A43770BF62368254F2A5/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/2433509329553562321/9EA326D15B43F26835DB5A9F1D6385FF06164704/ + NumHeight: 7 + NumWidth: 3 + UniqueBack: false + Description: Ritual. + GMNotes: '' + GUID: 82c594 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Shifting Aurora + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 27.87265 + posY: 1.18043482 + posZ: -19.3434925 + rotX: -0.000755445159 + rotY: 269.995728 + rotZ: 0.0009828494 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12121 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '121': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: fb311c + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Crypt Chill + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 0.996816456 + posY: 1.03160727 + posZ: -2.49671364 + rotX: -0.00516256876 + rotY: 269.999329 + rotZ: -0.00193821313 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12121 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '121': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: b78c3b + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Crypt Chill + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 1.0079695 + posY: 1.1762253 + posZ: -2.91417956 + rotX: 359.987457 + rotY: 269.997742 + rotZ: 0.0291438177 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12122 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '121': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: '356046' + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Obscuring Fog + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 1.36280608 + posY: 1.19408226 + posZ: -2.558201 + rotX: -0.000472621556 + rotY: 269.998444 + rotZ: -1.85840636e-05 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12122 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '121': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: 03a265 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Obscuring Fog + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 1.214485 + posY: 1.18039763 + posZ: -2.73391581 + rotX: -0.000302326545 + rotY: 269.99884 + rotZ: 0.00337873376 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '121': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '161': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/2433509329550810616/2AEAA709721847713BD7A43770BF62368254F2A5/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/2433509660050683859/1848BCBDD89A1B781E260679096470A3BC67EC03/ + NumHeight: 4 + NumWidth: 6 + UniqueBack: false + '171': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/2433509329550810616/2AEAA709721847713BD7A43770BF62368254F2A5/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/2433509660050683859/1848BCBDD89A1B781E260679096470A3BC67EC03/ + NumHeight: 4 + NumWidth: 6 + UniqueBack: false + '201': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/2433509329550810616/2AEAA709721847713BD7A43770BF62368254F2A5/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/2433509329553562321/9EA326D15B43F26835DB5A9F1D6385FF06164704/ + NumHeight: 7 + NumWidth: 3 + UniqueBack: false +DeckIDs: +- 16104 +- 16105 +- 16106 +- 16107 +- 16108 +- 16109 +- 16110 +- 16111 +- 17112 +- 17113 +- 17114 +- 20110 +- 20111 +- 20112 +- 20113 +- 12121 +- 12121 +- 12122 +- 12122 +Description: '' +GMNotes: '' +GUID: d0fe7b +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Encounter Deck +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.92776561 + posY: 1.71308637 + posZ: 5.757146 + rotX: 359.919739 + rotY: 270.001282 + rotZ: 180.016815 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Winter Winds 754057/Bag Stranded in the Urals 8077a1/Deck Starting Location f957fa.yaml new file mode 100644 index 000000000..c9d8cbde9 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Winter Winds 754057/Bag Stranded in the Urals 8077a1/Deck Starting Location f957fa.yaml @@ -0,0 +1,127 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 13300 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '133': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/2433509660059344909/58AF5A15D7D836CCAB4332E613AC297A3D9AB3BB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/2433509660059344364/2831B26D5860809691504F968F1E6E0131463ECC/ + NumHeight: 3 + NumWidth: 4 + UniqueBack: true + Description: disaster. + GMNotes: '' + GUID: c2daa0 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Deep Drift + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 8.733206 + posY: 1.02949262 + posZ: -5.3596344 + rotX: 359.994019 + rotY: 270.000122 + rotZ: -0.0021448487 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 13301 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '133': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/2433509660059344909/58AF5A15D7D836CCAB4332E613AC297A3D9AB3BB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/2433509660059344364/2831B26D5860809691504F968F1E6E0131463ECC/ + NumHeight: 3 + NumWidth: 4 + UniqueBack: true + Description: Disaster. + GMNotes: '' + GUID: de4860 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Overhanging Car + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 8.374131 + posY: 1.174321 + posZ: -5.43522 + rotX: 0.003296154 + rotY: 270.021179 + rotZ: -0.003413726 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '133': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/2433509660059344909/58AF5A15D7D836CCAB4332E613AC297A3D9AB3BB/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/2433509660059344364/2831B26D5860809691504F968F1E6E0131463ECC/ + NumHeight: 3 + NumWidth: 4 + UniqueBack: true +DeckIDs: +- 13300 +- 13301 +Description: '' +GMNotes: '' +GUID: f957fa +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Starting Location +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -11.5778551 + posY: 1.6783433 + posZ: 7.161643 + rotX: 359.9201 + rotY: 269.990936 + rotZ: 0.0168906059 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Winter Winds 754057/Bag The Forgotten Village ddd10b.ttslua b/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/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 791837/Custom_Model_Bag Winter Winds 754057/Bag The Forgotten Village ddd10b.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Winter Winds 754057/Bag The Forgotten Village ddd10b.yaml new file mode 100644 index 000000000..81f8014dd --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Winter Winds 754057/Bag The Forgotten Village ddd10b.yaml @@ -0,0 +1,60 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +ContainedObjects: +- !include 'Bag The Forgotten Village ddd10b/Bag Set Aside 78e6a9.yaml' +- !include 'Bag The Forgotten Village ddd10b/Deck Encounter Deck 9a893a.yaml' +- !include 'Bag The Forgotten Village ddd10b/Deck Agenda 3e28fa.yaml' +- !include 'Bag The Forgotten Village ddd10b/Deck Act 82021c.yaml' +- !include 'Bag The Forgotten Village ddd10b/Card The Forgotten Village 139394.yaml' +- !include 'Bag The Forgotten Village ddd10b/Deck Passenger 2d7592.yaml' +- !include 'Bag The Forgotten Village ddd10b/Deck Hidden Motivations 4ba650.yaml' +- !include 'Bag The Forgotten Village ddd10b/Custom_Tile Setup e6b081.yaml' +- !include 'Bag The Forgotten Village ddd10b/Card Village Road ad8016.yaml' +- !include 'Bag The Forgotten Village ddd10b/Card Decrepit Building 942089.yaml' +- !include 'Bag The Forgotten Village ddd10b/Custom_Tile 2757d7.yaml' +- !include 'Bag The Forgotten Village ddd10b/Card Village Road 00466a.yaml' +- !include 'Bag The Forgotten Village ddd10b/Custom_Tile 8c90b0.yaml' +- !include 'Bag The Forgotten Village ddd10b/Custom_Tile 756064.yaml' +- !include 'Bag The Forgotten Village ddd10b/Custom_Tile 7234af.yaml' +- !include 'Bag The Forgotten Village ddd10b/Custom_Tile e9566b.yaml' +- !include 'Bag The Forgotten Village ddd10b/Card Decrepit Building 0163c6.yaml' +- !include 'Bag The Forgotten Village ddd10b/Custom_Tile 020079.yaml' +- !include 'Bag The Forgotten Village ddd10b/Card Town Square fcf95c.yaml' +- !include 'Bag The Forgotten Village ddd10b/Custom_Tile 855857.yaml' +- !include 'Bag The Forgotten Village ddd10b/Card Decrepit Building fd47fa.yaml' +- !include 'Bag The Forgotten Village ddd10b/Custom_Tile 8b3862.yaml' +- !include 'Bag The Forgotten Village ddd10b/Custom_Tile 526f54.yaml' +- !include 'Bag The Forgotten Village ddd10b/Card Village Road 0edbea.yaml' +- !include 'Bag The Forgotten Village ddd10b/Card The Forgotten Village ea3065.yaml' +Description: Winter Winds +GMNotes: '' +GUID: ddd10b +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Bag The Forgotten Village ddd10b.ttslua' +LuaScriptState: '{"ml":{"00466a":{"lock":false,"pos":{"x":-23.6766,"y":1.684,"z":-7.7},"rot":{"x":359.9201,"y":270.0233,"z":0.0168}},"0163c6":{"lock":false,"pos":{"x":-30.2242,"y":1.6976,"z":7.57},"rot":{"x":359.9201,"y":269.9936,"z":0.0169}},"020079":{"lock":false,"pos":{"x":-30.2243,"y":1.6248,"z":3.86},"rot":{"x":359.9831,"y":0.0004,"z":359.92}},"0edbea":{"lock":false,"pos":{"x":-36.7731,"y":1.7045,"z":-0.0301},"rot":{"x":359.9201,"y":270.0014,"z":0.0169}},"139394":{"lock":false,"pos":{"x":-3.9584,"y":1.6557,"z":-10.4412},"rot":{"x":359.9197,"y":270.018,"z":0.0168}},"2757d7":{"lock":false,"pos":{"x":-23.6765,"y":1.6134,"z":-3.83},"rot":{"x":359.9831,"y":0.0003,"z":359.92}},"2d7592":{"lock":false,"pos":{"x":-11.4453,"y":1.6719,"z":13.0483},"rot":{"x":359.9201,"y":269.9947,"z":0.0169}},"3e28fa":{"lock":false,"pos":{"x":-2.7263,"y":1.6551,"z":0.3733},"rot":{"x":359.9197,"y":270.0089,"z":0.0168}},"4ba650":{"lock":false,"pos":{"x":-11.525,"y":1.6802,"z":9.115},"rot":{"x":359.9201,"y":269.9994,"z":180.0169}},"526f54":{"lock":false,"pos":{"x":-33.7313,"y":1.6274,"z":-3.9543},"rot":{"x":359.9317,"y":315.1167,"z":359.9553}},"7234af":{"lock":false,"pos":{"x":-27.0091,"y":1.6191,"z":-0.1634},"rot":{"x":359.9201,"y":269.9944,"z":0.0169}},"756064":{"lock":false,"pos":{"x":-27.4634,"y":1.621,"z":4.0402},"rot":{"x":359.9554,"y":225,"z":0.0684}},"78e6a9":{"lock":false,"pos":{"x":1.706,"y":1.3982,"z":14.2787},"rot":{"x":359.9551,"y":224.9973,"z":0.0687}},"82021c":{"lock":false,"pos":{"x":-2.6885,"y":1.6543,"z":-5.0485},"rot":{"x":359.9197,"y":269.9929,"z":0.0168}},"855857":{"lock":false,"pos":{"x":-30.2243,"y":1.6225,"z":-3.83},"rot":{"x":359.9832,"y":0.0307,"z":359.92}},"8b3862":{"lock":false,"pos":{"x":-33.3959,"y":1.6281,"z":0.0204},"rot":{"x":359.9201,"y":269.9944,"z":0.0169}},"8c90b0":{"lock":false,"pos":{"x":-27.3038,"y":1.6218,"z":7.4263},"rot":{"x":359.9201,"y":269.9943,"z":0.0169}},"942089":{"lock":false,"pos":{"x":-23.6766,"y":1.6862,"z":-0.03},"rot":{"x":359.9201,"y":269.9793,"z":0.0169}},"9a893a":{"lock":false,"pos":{"x":-3.9328,"y":1.6918,"z":5.7572},"rot":{"x":359.9197,"y":270.0016,"z":180.0168}},"ad8016":{"lock":false,"pos":{"x":-23.6765,"y":1.6885,"z":7.5699},"rot":{"x":359.9201,"y":269.9998,"z":0.0169}},"e6b081":{"lock":false,"pos":{"x":-11.917,"y":1.599,"z":3.083},"rot":{"x":359.9201,"y":269.9984,"z":0.0169}},"e9566b":{"lock":false,"pos":{"x":-27.6083,"y":1.6188,"z":-3.9237},"rot":{"x":0.0684,"y":135,"z":0.0446}},"ea3065":{"lock":false,"pos":{"x":-50.9244,"y":1.7266,"z":8.1784},"rot":{"x":359.9201,"y":270.018,"z":0.0169}},"fcf95c":{"lock":false,"pos":{"x":-30.2243,"y":1.6954,"z":-0.03},"rot":{"x":359.9201,"y":269.9987,"z":0.0169}},"fd47fa":{"lock":false,"pos":{"x":-30.2242,"y":1.6931,"z":-7.7001},"rot":{"x":359.9201,"y":269.994,"z":0.0169}}}}' +MaterialIndex: -1 +MeshIndex: -1 +Name: Bag +Nickname: The Forgotten Village +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 8.325157 + posY: 1.28301024 + posZ: -6.426722 + rotX: 0.07993753 + rotY: 89.99597 + rotZ: 359.9831 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Winter Winds 754057/Bag The Forgotten Village ddd10b/Bag Set Aside 78e6a9.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Winter Winds 754057/Bag The Forgotten Village ddd10b/Bag Set Aside 78e6a9.yaml new file mode 100644 index 000000000..7dc347cfd --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Winter Winds 754057/Bag The Forgotten Village ddd10b/Bag Set Aside 78e6a9.yaml @@ -0,0 +1,41 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +ContainedObjects: +- !include 'Bag Set Aside 78e6a9/Deck Dark Cult 7c2ffc.yaml' +- !include 'Bag Set Aside 78e6a9/Deck Gaze of the North 74d3d2.yaml' +- !include 'Bag Set Aside 78e6a9/Deck Blizzard ab8878.yaml' +- !include 'Bag Set Aside 78e6a9/Card Gnoph-Keh ab6851.yaml' +- !include 'Bag Set Aside 78e6a9/Deck Village Outskirts 10d474.yaml' +- !include 'Bag Set Aside 78e6a9/Deck Destoryed Structure 2844b0.yaml' +Description: '' +GMNotes: '' +GUID: 78e6a9 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +MeshIndex: -1 +Name: Bag +Nickname: Set Aside +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 1.705986 + posY: 1.3982327 + posZ: 14.278676 + rotX: 359.9551 + rotY: 224.997253 + rotZ: 0.06871383 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Winter Winds 754057/Bag The Forgotten Village ddd10b/Bag Set Aside 78e6a9/Card Gnoph-Keh ab6851.yaml new file mode 100644 index 000000000..d33272999 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Winter Winds 754057/Bag The Forgotten Village ddd10b/Bag Set Aside 78e6a9/Card Gnoph-Keh ab6851.yaml @@ -0,0 +1,41 @@ +Autoraise: true +CardID: 20600 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '206': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/2433509329550810616/2AEAA709721847713BD7A43770BF62368254F2A5/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/2433509660059488098/09DAEBBADE56CE1D75AFBF72BD550059552DA357/ + NumHeight: 4 + NumWidth: 5 + UniqueBack: false +Description: Beast. Monster. Elite. +GMNotes: '' +GUID: ab6851 +Grid: true +GridProjection: false +Hands: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Gnoph-Keh +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 4.68567276 + posY: 3.082253 + posZ: 1.66411829 + rotX: 1.45392108 + rotY: 270.027344 + rotZ: 2.52301288 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Winter Winds 754057/Bag The Forgotten Village ddd10b/Bag Set Aside 78e6a9/Deck Blizzard ab8878.yaml new file mode 100644 index 000000000..90458cbcb --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Winter Winds 754057/Bag The Forgotten Village ddd10b/Bag Set Aside 78e6a9/Deck Blizzard ab8878.yaml @@ -0,0 +1,252 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 20609 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '206': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/2433509329550810616/2AEAA709721847713BD7A43770BF62368254F2A5/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/2433509660059488098/09DAEBBADE56CE1D75AFBF72BD550059552DA357/ + NumHeight: 4 + NumWidth: 5 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: ab6851 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Heavy Snowfall + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.82902074 + posY: 1.18127382 + posZ: -18.0053158 + rotX: -7.11963e-05 + rotY: 269.999939 + rotZ: 179.9965 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 20610 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '206': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/2433509329550810616/2AEAA709721847713BD7A43770BF62368254F2A5/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/2433509660059488098/09DAEBBADE56CE1D75AFBF72BD550059552DA357/ + NumHeight: 4 + NumWidth: 5 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 91f700 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Heavy Snowfall + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.73612666 + posY: 1.18341124 + posZ: -17.8844872 + rotX: 359.9784 + rotY: 270.095642 + rotZ: 179.957138 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 20611 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '206': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/2433509329550810616/2AEAA709721847713BD7A43770BF62368254F2A5/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/2433509660059488098/09DAEBBADE56CE1D75AFBF72BD550059552DA357/ + NumHeight: 4 + NumWidth: 5 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: ab6851 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Heavy Snowfall + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.88160944 + posY: 1.19701087 + posZ: -17.9620724 + rotX: -0.00124569749 + rotY: 270.000519 + rotZ: 179.986328 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 20612 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '206': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/2433509329550810616/2AEAA709721847713BD7A43770BF62368254F2A5/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/2433509660059488098/09DAEBBADE56CE1D75AFBF72BD550059552DA357/ + NumHeight: 4 + NumWidth: 5 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: b0ecce + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Snowed In + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.22448587 + posY: 1.1299063 + posZ: -17.9984112 + rotX: 0.00333814835 + rotY: 269.98056 + rotZ: 177.397369 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 20613 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '206': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/2433509329550810616/2AEAA709721847713BD7A43770BF62368254F2A5/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/2433509660059488098/09DAEBBADE56CE1D75AFBF72BD550059552DA357/ + NumHeight: 4 + NumWidth: 5 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: ab6851 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Snowed In + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.57538271 + posY: 1.034705 + posZ: -17.9978428 + rotX: 0.00487888046 + rotY: 269.991 + rotZ: 180.009247 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '206': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/2433509329550810616/2AEAA709721847713BD7A43770BF62368254F2A5/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/2433509660059488098/09DAEBBADE56CE1D75AFBF72BD550059552DA357/ + NumHeight: 4 + NumWidth: 5 + UniqueBack: false +DeckIDs: +- 20609 +- 20610 +- 20611 +- 20612 +- 20613 +Description: '' +GMNotes: '' +GUID: ab8878 +Grid: true +GridProjection: false +Hands: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Blizzard +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 4.51188231 + posY: 3.075771 + posZ: 1.53828263 + rotX: 1.73450959 + rotY: 270.066772 + rotZ: 182.849548 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Winter Winds 754057/Bag The Forgotten Village ddd10b/Bag Set Aside 78e6a9/Deck Dark Cult 7c2ffc.yaml new file mode 100644 index 000000000..1ac87c1bd --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Winter Winds 754057/Bag The Forgotten Village ddd10b/Bag Set Aside 78e6a9/Deck Dark Cult 7c2ffc.yaml @@ -0,0 +1,294 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 3623 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Cultist. + GMNotes: '' + GUID: c70e63 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Acolyte + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 9.324065 + posY: 1.19862 + posZ: -3.09369588 + rotX: 359.486053 + rotY: 270.0154 + rotZ: 179.301117 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3623 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Cultist. + GMNotes: '' + GUID: 4072d7 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Acolyte + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 8.92055 + posY: 1.18172359 + posZ: -3.263212 + rotX: 359.947266 + rotY: 270.010468 + rotZ: 179.834869 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3623 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Cultist. + GMNotes: '' + GUID: c70e63 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Acolyte + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 8.955755 + posY: 1.03432441 + posZ: -3.18170285 + rotX: 359.989838 + rotY: 270.009247 + rotZ: 180.004013 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3624 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Humanoid. Cultist. + GMNotes: '' + GUID: 159f90 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Wizard of the Order + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.3881433 + posY: 1.19410753 + posZ: -2.42233348 + rotX: 359.993927 + rotY: 269.9705 + rotZ: 359.9545 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3625 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: 6f5b7b + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Mysterious Chanting + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.497438 + posY: 1.03164768 + posZ: -2.41275716 + rotX: -0.0026828805 + rotY: 269.9992 + rotZ: 0.00774262333 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 3625 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hex. + GMNotes: '' + GUID: df668b + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Mysterious Chanting + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 2.78830338 + posY: 1.17654562 + posZ: -2.26493549 + rotX: -0.00101514475 + rotY: 270.018677 + rotZ: 0.0129767042 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '36': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 3623 +- 3623 +- 3623 +- 3624 +- 3625 +- 3625 +Description: '' +GMNotes: '' +GUID: 7c2ffc +Grid: true +GridProjection: false +Hands: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Dark Cult +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 4.3801055 + posY: 3.07982588 + posZ: 1.67077851 + rotX: 2.24276066 + rotY: 270.059631 + rotZ: 182.002487 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Winter Winds 754057/Bag The Forgotten Village ddd10b/Bag Set Aside 78e6a9/Deck Destoryed Structure 2844b0.yaml new file mode 100644 index 000000000..8d17f3612 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Winter Winds 754057/Bag The Forgotten Village ddd10b/Bag Set Aside 78e6a9/Deck Destoryed Structure 2844b0.yaml @@ -0,0 +1,168 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 20810 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '208': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/2433509660059528137/C128A88CCCFBA8947A36683189379E32CBF12801/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/2433509660059527556/72151CB0DF88AC38163743005687BEA809A9806B/ + NumHeight: 2 + NumWidth: 7 + UniqueBack: true + Description: Exterior. + GMNotes: '' + GUID: c55947 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Destroyed Structure + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 9.791113 + posY: 1.03124845 + posZ: -1.59141767 + rotX: 359.977478 + rotY: 270.000916 + rotZ: 359.9916 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 20811 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '208': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/2433509660059528137/C128A88CCCFBA8947A36683189379E32CBF12801/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/2433509660059527556/72151CB0DF88AC38163743005687BEA809A9806B/ + NumHeight: 2 + NumWidth: 7 + UniqueBack: true + Description: Exterior. + GMNotes: '' + GUID: 11c986 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Destroyed Structure + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 7.67890644 + posY: 1.03158474 + posZ: 1.320048 + rotX: 359.9942 + rotY: 269.994629 + rotZ: -0.00183945592 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 20812 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '208': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/2433509660059528137/C128A88CCCFBA8947A36683189379E32CBF12801/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/2433509660059527556/72151CB0DF88AC38163743005687BEA809A9806B/ + NumHeight: 2 + NumWidth: 7 + UniqueBack: true + Description: Exterior. + GMNotes: '' + GUID: 990beb + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Destroyed Structure + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 7.73339224 + posY: 1.17619538 + posZ: 0.947600245 + rotX: -0.00115357828 + rotY: 270.02002 + rotZ: 0.0357025228 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '208': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/2433509660059528137/C128A88CCCFBA8947A36683189379E32CBF12801/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/2433509660059527556/72151CB0DF88AC38163743005687BEA809A9806B/ + NumHeight: 2 + NumWidth: 7 + UniqueBack: true +DeckIDs: +- 20810 +- 20811 +- 20812 +Description: '' +GMNotes: '' +GUID: 2844b0 +Grid: true +GridProjection: false +Hands: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Destoryed Structure +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 5.299407 + posY: 3.09188652 + posZ: 1.82868588 + rotX: 358.467957 + rotY: 269.973816 + rotZ: 1.18266952 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Winter Winds 754057/Bag The Forgotten Village ddd10b/Bag Set Aside 78e6a9/Deck Gaze of the North 74d3d2.yaml new file mode 100644 index 000000000..b17ca8625 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Winter Winds 754057/Bag The Forgotten Village ddd10b/Bag Set Aside 78e6a9/Deck Gaze of the North 74d3d2.yaml @@ -0,0 +1,210 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 20710 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '132': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/2433509329550810616/2AEAA709721847713BD7A43770BF62368254F2A5/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/2433509329553562321/9EA326D15B43F26835DB5A9F1D6385FF06164704/ + NumHeight: 7 + NumWidth: 3 + UniqueBack: false + Description: Ritual. + GMNotes: '' + GUID: d5c374 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Gaze of the North + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 27.8899879 + posY: 1.03153634 + posZ: -19.3154221 + rotX: 359.993439 + rotY: 269.9513 + rotZ: 0.0352736861 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 20711 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '132': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/2433509329550810616/2AEAA709721847713BD7A43770BF62368254F2A5/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/2433509329553562321/9EA326D15B43F26835DB5A9F1D6385FF06164704/ + NumHeight: 7 + NumWidth: 3 + UniqueBack: false + Description: Ritual. + GMNotes: '' + GUID: 13fae6 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Biting Breath + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 27.4055729 + posY: 1.17635763 + posZ: -19.4227448 + rotX: 0.00151416427 + rotY: 269.9581 + rotZ: 0.101358652 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 20712 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '132': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/2433509329550810616/2AEAA709721847713BD7A43770BF62368254F2A5/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/2433509329553562321/9EA326D15B43F26835DB5A9F1D6385FF06164704/ + NumHeight: 7 + NumWidth: 3 + UniqueBack: false + Description: Ritual. + GMNotes: '' + GUID: c65380 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Icy Veins + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 27.883564 + posY: 1.19393671 + posZ: -19.0361481 + rotX: -0.0027201646 + rotY: 269.962 + rotZ: 359.9457 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 20713 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '132': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/2433509329550810616/2AEAA709721847713BD7A43770BF62368254F2A5/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/2433509329553562321/9EA326D15B43F26835DB5A9F1D6385FF06164704/ + NumHeight: 7 + NumWidth: 3 + UniqueBack: false + Description: Ritual. + GMNotes: '' + GUID: 82c594 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Shifting Aurora + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 27.87265 + posY: 1.18043482 + posZ: -19.3434925 + rotX: -0.000755445159 + rotY: 269.995728 + rotZ: 0.0009828494 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '207': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/2433509329550810616/2AEAA709721847713BD7A43770BF62368254F2A5/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/2433509329553562321/9EA326D15B43F26835DB5A9F1D6385FF06164704/ + NumHeight: 7 + NumWidth: 3 + UniqueBack: false +DeckIDs: +- 20710 +- 20711 +- 20712 +- 20713 +Description: '' +GMNotes: '' +GUID: 74d3d2 +Grid: true +GridProjection: false +Hands: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Gaze of the North +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 5.400322 + posY: 3.086827 + posZ: 2.19826412 + rotX: 358.2667 + rotY: 270.050354 + rotZ: 177.711441 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Winter Winds 754057/Bag The Forgotten Village ddd10b/Bag Set Aside 78e6a9/Deck Village Outskirts 10d474.yaml new file mode 100644 index 000000000..e939a08d8 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Winter Winds 754057/Bag The Forgotten Village ddd10b/Bag Set Aside 78e6a9/Deck Village Outskirts 10d474.yaml @@ -0,0 +1,168 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 20809 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '208': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/2433509660059528137/C128A88CCCFBA8947A36683189379E32CBF12801/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/2433509660059527556/72151CB0DF88AC38163743005687BEA809A9806B/ + NumHeight: 2 + NumWidth: 7 + UniqueBack: true + Description: Outskirts. Interior. + GMNotes: '' + GUID: c799c9 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Village Outskirts + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 9.925958 + posY: 1.03118742 + posZ: -2.53591323 + rotX: 359.976074 + rotY: 270.00058 + rotZ: 359.9925 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 20807 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '208': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/2433509660059528137/C128A88CCCFBA8947A36683189379E32CBF12801/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/2433509660059527556/72151CB0DF88AC38163743005687BEA809A9806B/ + NumHeight: 2 + NumWidth: 7 + UniqueBack: true + Description: Outskirts. Interior. + GMNotes: '' + GUID: fac701 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Village Outskirts + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 9.944654 + posY: 1.031514 + posZ: 0.2518699 + rotX: 359.990753 + rotY: 270.023254 + rotZ: -0.00300862943 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 20808 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '208': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/2433509660059528137/C128A88CCCFBA8947A36683189379E32CBF12801/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/2433509660059527556/72151CB0DF88AC38163743005687BEA809A9806B/ + NumHeight: 2 + NumWidth: 7 + UniqueBack: true + Description: Outskirts. Interior. + GMNotes: '' + GUID: 47ca73 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Village Outskirts + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 9.809435 + posY: 1.16975141 + posZ: -0.171851173 + rotX: 0.00737426151 + rotY: 269.9795 + rotZ: 0.01583234 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '208': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/2433509660059528137/C128A88CCCFBA8947A36683189379E32CBF12801/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/2433509660059527556/72151CB0DF88AC38163743005687BEA809A9806B/ + NumHeight: 2 + NumWidth: 7 + UniqueBack: true +DeckIDs: +- 20809 +- 20807 +- 20808 +Description: '' +GMNotes: '' +GUID: 10d474 +Grid: true +GridProjection: false +Hands: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Village Outskirts +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 5.3951807 + posY: 3.08850217 + posZ: 1.98903644 + rotX: 358.058075 + rotY: 270.027679 + rotZ: 359.511658 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Winter Winds 754057/Bag The Forgotten Village ddd10b/Card Decrepit Building 0163c6.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Winter Winds 754057/Bag The Forgotten Village ddd10b/Card Decrepit Building 0163c6.yaml new file mode 100644 index 000000000..2f9a22c72 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Winter Winds 754057/Bag The Forgotten Village ddd10b/Card Decrepit Building 0163c6.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 20802 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '208': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/2433509660059528137/C128A88CCCFBA8947A36683189379E32CBF12801/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/2433509660059527556/72151CB0DF88AC38163743005687BEA809A9806B/ + NumHeight: 2 + NumWidth: 7 + UniqueBack: true +Description: Interior. +GMNotes: '' +GUID: 0163c6 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Decrepit Building +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -30.2241917 + posY: 1.69758856 + posZ: 7.56997776 + rotX: 359.9201 + rotY: 269.9936 + rotZ: 0.01688515 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Winter Winds 754057/Bag The Forgotten Village ddd10b/Card Decrepit Building 942089.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Winter Winds 754057/Bag The Forgotten Village ddd10b/Card Decrepit Building 942089.yaml new file mode 100644 index 000000000..8c5bbd9bd --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Winter Winds 754057/Bag The Forgotten Village ddd10b/Card Decrepit Building 942089.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 20801 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '208': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/2433509660059528137/C128A88CCCFBA8947A36683189379E32CBF12801/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/2433509660059527556/72151CB0DF88AC38163743005687BEA809A9806B/ + NumHeight: 2 + NumWidth: 7 + UniqueBack: true +Description: Interior. +GMNotes: '' +GUID: '942089' +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Decrepit Building +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -23.6765671 + posY: 1.68622041 + posZ: -0.03000543 + rotX: 359.9201 + rotY: 269.979279 + rotZ: 0.01690513 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Winter Winds 754057/Bag The Forgotten Village ddd10b/Card Decrepit Building fd47fa.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Winter Winds 754057/Bag The Forgotten Village ddd10b/Card Decrepit Building fd47fa.yaml new file mode 100644 index 000000000..e7bbec4f5 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Winter Winds 754057/Bag The Forgotten Village ddd10b/Card Decrepit Building fd47fa.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 20803 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '208': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/2433509660059528137/C128A88CCCFBA8947A36683189379E32CBF12801/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/2433509660059527556/72151CB0DF88AC38163743005687BEA809A9806B/ + NumHeight: 2 + NumWidth: 7 + UniqueBack: true +Description: Interior. +GMNotes: '' +GUID: fd47fa +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Decrepit Building +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -30.2242413 + posY: 1.69309223 + posZ: -7.70006561 + rotX: 359.9201 + rotY: 269.994049 + rotZ: 0.0168844312 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Winter Winds 754057/Bag The Forgotten Village ddd10b/Card The Forgotten Village 139394.yaml new file mode 100644 index 000000000..c6afeb34f --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Winter Winds 754057/Bag The Forgotten Village ddd10b/Card The Forgotten Village 139394.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 20813 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '208': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/2433509660059528137/C128A88CCCFBA8947A36683189379E32CBF12801/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/2433509660059527556/72151CB0DF88AC38163743005687BEA809A9806B/ + NumHeight: 2 + NumWidth: 7 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: '139394' +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: The Forgotten Village +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.95835352 + posY: 1.65565145 + posZ: -10.4411783 + rotX: 359.919739 + rotY: 270.017975 + rotZ: 0.01681631 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/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 791837/Custom_Model_Bag Winter Winds 754057/Bag The Forgotten Village ddd10b/Card The Forgotten Village ea3065.yaml new file mode 100644 index 000000000..d31c16740 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Winter Winds 754057/Bag The Forgotten Village ddd10b/Card The Forgotten Village ea3065.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 20813 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '208': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/2433509660059528137/C128A88CCCFBA8947A36683189379E32CBF12801/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/2433509660059527556/72151CB0DF88AC38163743005687BEA809A9806B/ + NumHeight: 2 + NumWidth: 7 + UniqueBack: true +Description: '' +GMNotes: '' +GUID: ea3065 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: The Forgotten Village +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -50.9243851 + posY: 1.72662532 + posZ: 8.17843151 + rotX: 359.9201 + rotY: 270.017975 + rotZ: 0.0168533511 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Winter Winds 754057/Bag The Forgotten Village ddd10b/Card Town Square fcf95c.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Winter Winds 754057/Bag The Forgotten Village ddd10b/Card Town Square fcf95c.yaml new file mode 100644 index 000000000..27eca1811 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Winter Winds 754057/Bag The Forgotten Village ddd10b/Card Town Square fcf95c.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 20800 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '208': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/2433509660059528137/C128A88CCCFBA8947A36683189379E32CBF12801/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/2433509660059527556/72151CB0DF88AC38163743005687BEA809A9806B/ + NumHeight: 2 + NumWidth: 7 + UniqueBack: true +Description: Exterior. +GMNotes: '' +GUID: fcf95c +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Town Square +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -30.2242832 + posY: 1.69535077 + posZ: -0.0300161261 + rotX: 359.9201 + rotY: 269.998657 + rotZ: 0.0168779455 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Winter Winds 754057/Bag The Forgotten Village ddd10b/Card Village Road 00466a.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Winter Winds 754057/Bag The Forgotten Village ddd10b/Card Village Road 00466a.yaml new file mode 100644 index 000000000..db46f18d6 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Winter Winds 754057/Bag The Forgotten Village ddd10b/Card Village Road 00466a.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 20804 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '208': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/2433509660059528137/C128A88CCCFBA8947A36683189379E32CBF12801/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/2433509660059527556/72151CB0DF88AC38163743005687BEA809A9806B/ + NumHeight: 2 + NumWidth: 7 + UniqueBack: true +Description: Exterior. Road. +GMNotes: '' +GUID: 00466a +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Village Road +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -23.6766014 + posY: 1.683962 + posZ: -7.70002031 + rotX: 359.9201 + rotY: 270.0233 + rotZ: 0.0168438423 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Winter Winds 754057/Bag The Forgotten Village ddd10b/Card Village Road 0edbea.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Winter Winds 754057/Bag The Forgotten Village ddd10b/Card Village Road 0edbea.yaml new file mode 100644 index 000000000..0329dbe5e --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Winter Winds 754057/Bag The Forgotten Village ddd10b/Card Village Road 0edbea.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 20806 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '208': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/2433509660059528137/C128A88CCCFBA8947A36683189379E32CBF12801/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/2433509660059527556/72151CB0DF88AC38163743005687BEA809A9806B/ + NumHeight: 2 + NumWidth: 7 + UniqueBack: true +Description: Exterior. Road. +GMNotes: '' +GUID: 0edbea +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Village Road +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -36.7731171 + posY: 1.70448279 + posZ: -0.030094821 + rotX: 359.9201 + rotY: 270.001434 + rotZ: 0.0168741569 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Winter Winds 754057/Bag The Forgotten Village ddd10b/Card Village Road ad8016.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Winter Winds 754057/Bag The Forgotten Village ddd10b/Card Village Road ad8016.yaml new file mode 100644 index 000000000..39cf54a4a --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Winter Winds 754057/Bag The Forgotten Village ddd10b/Card Village Road ad8016.yaml @@ -0,0 +1,42 @@ +Autoraise: true +CardID: 20805 +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +CustomDeck: + '208': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/2433509660059528137/C128A88CCCFBA8947A36683189379E32CBF12801/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/2433509660059527556/72151CB0DF88AC38163743005687BEA809A9806B/ + NumHeight: 2 + NumWidth: 7 + UniqueBack: true +Description: Exterior. Road. +GMNotes: '' +GUID: ad8016 +Grid: true +GridProjection: false +Hands: true +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Card +Nickname: Village Road +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -23.6765461 + posY: 1.68845832 + posZ: 7.569865 + rotX: 359.9201 + rotY: 269.999847 + rotZ: 0.0168765858 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Winter Winds 754057/Bag The Forgotten Village ddd10b/Custom_Tile 020079.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Winter Winds 754057/Bag The Forgotten Village ddd10b/Custom_Tile 020079.yaml new file mode 100644 index 000000000..5179d3838 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Winter Winds 754057/Bag The Forgotten Village ddd10b/Custom_Tile 020079.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 020079 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.22427 + posY: 1.6247828 + posZ: 3.86001468 + rotX: 359.983124 + rotY: 0.000407458981 + rotZ: 359.920044 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Winter Winds 754057/Bag The Forgotten Village ddd10b/Custom_Tile 2757d7.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Winter Winds 754057/Bag The Forgotten Village ddd10b/Custom_Tile 2757d7.yaml new file mode 100644 index 000000000..15dd4f449 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Winter Winds 754057/Bag The Forgotten Village ddd10b/Custom_Tile 2757d7.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 2757d7 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.67655 + posY: 1.61338806 + posZ: -3.82998776 + rotX: 359.983124 + rotY: 0.000294395257 + rotZ: 359.920044 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Winter Winds 754057/Bag The Forgotten Village ddd10b/Custom_Tile 526f54.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Winter Winds 754057/Bag The Forgotten Village ddd10b/Custom_Tile 526f54.yaml new file mode 100644 index 000000000..9a342879b --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Winter Winds 754057/Bag The Forgotten Village ddd10b/Custom_Tile 526f54.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 526f54 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.7312546 + posY: 1.62737215 + posZ: -3.95432067 + rotX: 359.931671 + rotY: 315.1167 + rotZ: 359.9553 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Winter Winds 754057/Bag The Forgotten Village ddd10b/Custom_Tile 7234af.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Winter Winds 754057/Bag The Forgotten Village ddd10b/Custom_Tile 7234af.yaml new file mode 100644 index 000000000..3e8784dfc --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Winter Winds 754057/Bag The Forgotten Village ddd10b/Custom_Tile 7234af.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 7234af +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.0091228 + posY: 1.61911476 + posZ: -0.163350329 + rotX: 359.9201 + rotY: 269.9944 + rotZ: 0.0169178862 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Winter Winds 754057/Bag The Forgotten Village ddd10b/Custom_Tile 756064.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Winter Winds 754057/Bag The Forgotten Village ddd10b/Custom_Tile 756064.yaml new file mode 100644 index 000000000..092d64aa4 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Winter Winds 754057/Bag The Forgotten Village ddd10b/Custom_Tile 756064.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: '756064' +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.4634457 + posY: 1.62098587 + posZ: 4.04015541 + rotX: 359.955444 + rotY: 225.000031 + rotZ: 0.06840549 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Winter Winds 754057/Bag The Forgotten Village ddd10b/Custom_Tile 855857.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Winter Winds 754057/Bag The Forgotten Village ddd10b/Custom_Tile 855857.yaml new file mode 100644 index 000000000..53cc1ce2e --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Winter Winds 754057/Bag The Forgotten Village ddd10b/Custom_Tile 855857.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: '855857' +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.2242661 + posY: 1.62251842 + posZ: -3.82998657 + rotX: 359.9832 + rotY: 0.0307132434 + rotZ: 359.920044 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Winter Winds 754057/Bag The Forgotten Village ddd10b/Custom_Tile 8b3862.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Winter Winds 754057/Bag The Forgotten Village ddd10b/Custom_Tile 8b3862.yaml new file mode 100644 index 000000000..615ef91ea --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Winter Winds 754057/Bag The Forgotten Village ddd10b/Custom_Tile 8b3862.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 8b3862 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.3959427 + posY: 1.62807477 + posZ: 0.0203911 + rotX: 359.9201 + rotY: 269.994354 + rotZ: 0.0169086829 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Winter Winds 754057/Bag The Forgotten Village ddd10b/Custom_Tile 8c90b0.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Winter Winds 754057/Bag The Forgotten Village ddd10b/Custom_Tile 8c90b0.yaml new file mode 100644 index 000000000..ff8936a85 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Winter Winds 754057/Bag The Forgotten Village ddd10b/Custom_Tile 8c90b0.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: 8c90b0 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.3037548 + posY: 1.62176025 + posZ: 7.4262557 + rotX: 359.9201 + rotY: 269.994324 + rotZ: 0.016916547 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Winter Winds 754057/Bag The Forgotten Village ddd10b/Custom_Tile e9566b.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Winter Winds 754057/Bag The Forgotten Village ddd10b/Custom_Tile e9566b.yaml new file mode 100644 index 000000000..b63407c04 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Winter Winds 754057/Bag The Forgotten Village ddd10b/Custom_Tile e9566b.yaml @@ -0,0 +1,129 @@ +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: '' +GMNotes: '' +GUID: e9566b +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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.6083336 + posY: 1.618843 + posZ: -3.92374539 + rotX: 0.06843238 + rotY: 135.000015 + rotZ: 0.04456394 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Winter Winds 754057/Bag The Forgotten Village ddd10b/Custom_Tile Setup e6b081.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Winter Winds 754057/Bag The Forgotten Village ddd10b/Custom_Tile Setup e6b081.yaml new file mode 100644 index 000000000..0738ef6fb --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Winter Winds 754057/Bag The Forgotten Village ddd10b/Custom_Tile Setup e6b081.yaml @@ -0,0 +1,42 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.1 + Type: 0 + ImageScalar: 1.0 + ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/2433509660059479211/13C8E85EBAABA1C4E00056D80967FB6004F47A1F/ + ImageURL: http://cloud-3.steamusercontent.com/ugc/2433509660059478802/752454D0A46B8FAE67B20D64F7887A2BF9555159/ + WidthScale: 0.0 +Description: Resolution in the Back +GMNotes: '' +GUID: e6b081 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Custom_Tile +Nickname: Setup +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -11.91696 + posY: 1.59902549 + posZ: 3.08297467 + rotX: 359.9201 + rotY: 269.9984 + rotZ: 0.016874427 + scaleX: 1.99723673 + scaleY: 1.0 + scaleZ: 1.99723673 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Winter Winds 754057/Bag The Forgotten Village ddd10b/Deck Act 82021c.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Winter Winds 754057/Bag The Forgotten Village ddd10b/Deck Act 82021c.yaml new file mode 100644 index 000000000..e8e6d706c --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Winter Winds 754057/Bag The Forgotten Village ddd10b/Deck Act 82021c.yaml @@ -0,0 +1,253 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 20104 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '201': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/2433509660059455593/CFA66996C48E7EC5E2FBD2DD12810B5398ECB307/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/2433509660059454210/F216301FE05B8880E9D70B96813019FDDA200E4B/ + NumHeight: 3 + NumWidth: 3 + UniqueBack: true + Description: Act 3 + GMNotes: '' + GUID: 88343d + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Finding the Entrance + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -4.76710939 + posY: 1.03159714 + posZ: -17.2317677 + rotX: 359.991882 + rotY: 269.973938 + rotZ: -0.001687052 + scaleX: 0.7152412 + scaleY: 1.0 + scaleZ: 0.7152412 + XmlUI: '' +- Autoraise: true + CardID: 20103 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '201': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/2433509660059455593/CFA66996C48E7EC5E2FBD2DD12810B5398ECB307/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/2433509660059454210/F216301FE05B8880E9D70B96813019FDDA200E4B/ + NumHeight: 3 + NumWidth: 3 + UniqueBack: true + Description: Act 3 + GMNotes: '' + GUID: aea7ff + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Finding the Entrance + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -4.788034 + posY: 1.17008173 + posZ: -17.1056156 + rotX: 0.00477022631 + rotY: 269.973175 + rotZ: -0.00324421143 + scaleX: 0.7152412 + scaleY: 1.0 + scaleZ: 0.7152412 + XmlUI: '' +- Autoraise: true + CardID: 20102 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '201': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/2433509660059455593/CFA66996C48E7EC5E2FBD2DD12810B5398ECB307/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/2433509660059454210/F216301FE05B8880E9D70B96813019FDDA200E4B/ + NumHeight: 3 + NumWidth: 3 + UniqueBack: true + Description: Act 3 + GMNotes: '' + GUID: 88343d + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Finding the Entrance + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -4.65762043 + posY: 1.1941576 + posZ: -17.2117481 + rotX: -0.00134176738 + rotY: 269.9741 + rotZ: 0.0003050564 + scaleX: 0.7152412 + scaleY: 1.0 + scaleZ: 0.7152412 + XmlUI: '' +- Autoraise: true + CardID: 20101 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '201': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/2433509660059455593/CFA66996C48E7EC5E2FBD2DD12810B5398ECB307/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/2433509660059454210/F216301FE05B8880E9D70B96813019FDDA200E4B/ + NumHeight: 3 + NumWidth: 3 + UniqueBack: true + Description: Act 2 + GMNotes: '' + GUID: a53a5b + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Who Can You Trust? + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -4.767083 + posY: 1.18044651 + posZ: -17.1220436 + rotX: -0.00105519465 + rotY: 269.9736 + rotZ: 0.000909131137 + scaleX: 0.7152412 + scaleY: 1.0 + scaleZ: 0.7152412 + XmlUI: '' +- Autoraise: true + CardID: 20100 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '201': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/2433509660059455593/CFA66996C48E7EC5E2FBD2DD12810B5398ECB307/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/2433509660059454210/F216301FE05B8880E9D70B96813019FDDA200E4B/ + NumHeight: 3 + NumWidth: 3 + UniqueBack: true + Description: Act 1 + GMNotes: '' + GUID: 88343d + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Gathered Together + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -5.047994 + posY: 1.17852926 + posZ: -17.2386837 + rotX: -0.00124192552 + rotY: 270.0139 + rotZ: 359.97934 + scaleX: 0.7152412 + scaleY: 1.0 + scaleZ: 0.7152412 + XmlUI: '' +CustomDeck: + '201': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/2433509660059455593/CFA66996C48E7EC5E2FBD2DD12810B5398ECB307/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/2433509660059454210/F216301FE05B8880E9D70B96813019FDDA200E4B/ + NumHeight: 3 + NumWidth: 3 + UniqueBack: true +DeckIDs: +- 20104 +- 20103 +- 20102 +- 20101 +- 20100 +Description: '' +GMNotes: '' +GUID: 82021c +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Act +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.68848944 + posY: 1.65432513 + posZ: -5.0485425 + rotX: 359.919739 + rotY: 269.9929 + rotZ: 0.0168486219 + scaleX: 0.7152412 + scaleY: 1.0 + scaleZ: 0.7152412 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Winter Winds 754057/Bag The Forgotten Village ddd10b/Deck Agenda 3e28fa.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Winter Winds 754057/Bag The Forgotten Village ddd10b/Deck Agenda 3e28fa.yaml new file mode 100644 index 000000000..00e8147eb --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Winter Winds 754057/Bag The Forgotten Village ddd10b/Deck Agenda 3e28fa.yaml @@ -0,0 +1,211 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 20108 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '201': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/2433509660059455593/CFA66996C48E7EC5E2FBD2DD12810B5398ECB307/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/2433509660059454210/F216301FE05B8880E9D70B96813019FDDA200E4B/ + NumHeight: 3 + NumWidth: 3 + UniqueBack: true + Description: Agenda 4 + GMNotes: '' + GUID: 88343d + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: From Beneath + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -0.8360257 + posY: 1.03157878 + posZ: -17.7681236 + rotX: 359.991241 + rotY: 269.973663 + rotZ: -0.00152278622 + scaleX: 0.7152412 + scaleY: 1.0 + scaleZ: 0.7152412 + XmlUI: '' +- Autoraise: true + CardID: 20107 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '201': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/2433509660059455593/CFA66996C48E7EC5E2FBD2DD12810B5398ECB307/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/2433509660059454210/F216301FE05B8880E9D70B96813019FDDA200E4B/ + NumHeight: 3 + NumWidth: 3 + UniqueBack: true + Description: Agenda 3 + GMNotes: '' + GUID: 5824fb + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Driven By Rage + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -1.22497964 + posY: 1.17642951 + posZ: -18.01837 + rotX: 0.004908347 + rotY: 270.001434 + rotZ: 0.00103986345 + scaleX: 0.7152412 + scaleY: 1.0 + scaleZ: 0.7152412 + XmlUI: '' +- Autoraise: true + CardID: 20106 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '201': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/2433509660059455593/CFA66996C48E7EC5E2FBD2DD12810B5398ECB307/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/2433509660059454210/F216301FE05B8880E9D70B96813019FDDA200E4B/ + NumHeight: 3 + NumWidth: 3 + UniqueBack: true + Description: Agenda 2 + GMNotes: '' + GUID: '360185' + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Hunted Once More + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -1.17433274 + posY: 1.19422591 + posZ: -17.8954372 + rotX: 359.9884 + rotY: 269.968384 + rotZ: 0.00513902958 + scaleX: 0.7152412 + scaleY: 1.0 + scaleZ: 0.7152412 + XmlUI: '' +- Autoraise: true + CardID: 20105 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '201': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/2433509660059455593/CFA66996C48E7EC5E2FBD2DD12810B5398ECB307/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/2433509660059454210/F216301FE05B8880E9D70B96813019FDDA200E4B/ + NumHeight: 3 + NumWidth: 3 + UniqueBack: true + Description: Agenda 1 + GMNotes: '' + GUID: f5638b + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Hidden in Plain Sight + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -0.844349146 + posY: 1.18045187 + posZ: -17.36532 + rotX: -0.0006865625 + rotY: 269.973816 + rotZ: -0.00186603365 + scaleX: 0.7152412 + scaleY: 1.0 + scaleZ: 0.7152412 + XmlUI: '' +CustomDeck: + '201': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/2433509660059455593/CFA66996C48E7EC5E2FBD2DD12810B5398ECB307/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/2433509660059454210/F216301FE05B8880E9D70B96813019FDDA200E4B/ + NumHeight: 3 + NumWidth: 3 + UniqueBack: true +DeckIDs: +- 20108 +- 20107 +- 20106 +- 20105 +Description: '' +GMNotes: '' +GUID: 3e28fa +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Agenda +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -2.726264 + posY: 1.65514064 + posZ: 0.3733261 + rotX: 359.919739 + rotY: 270.008881 + rotZ: 0.01682624 + scaleX: 0.7152412 + scaleY: 1.0 + scaleZ: 0.7152412 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Winter Winds 754057/Bag The Forgotten Village ddd10b/Deck Encounter Deck 9a893a.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Winter Winds 754057/Bag The Forgotten Village ddd10b/Deck Encounter Deck 9a893a.yaml new file mode 100644 index 000000000..04c612dec --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Winter Winds 754057/Bag The Forgotten Village ddd10b/Deck Encounter Deck 9a893a.yaml @@ -0,0 +1,680 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 20601 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '206': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/2433509329550810616/2AEAA709721847713BD7A43770BF62368254F2A5/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/2433509660059488098/09DAEBBADE56CE1D75AFBF72BD550059552DA357/ + NumHeight: 4 + NumWidth: 5 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: ad9d2b + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Hunting in the Snow + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.74654245 + posY: 1.19527173 + posZ: -18.505003 + rotX: 0.000534614548 + rotY: 269.999878 + rotZ: 179.997559 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 20602 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '206': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/2433509329550810616/2AEAA709721847713BD7A43770BF62368254F2A5/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/2433509660059488098/09DAEBBADE56CE1D75AFBF72BD550059552DA357/ + NumHeight: 4 + NumWidth: 5 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: ab6851 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Hunting in the Snow + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.2142 + posY: 1.15219 + posZ: -18.30764 + rotX: 0.004557871 + rotY: 270.0252 + rotZ: 182.536575 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 20603 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '206': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/2433509329550810616/2AEAA709721847713BD7A43770BF62368254F2A5/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/2433509660059488098/09DAEBBADE56CE1D75AFBF72BD550059552DA357/ + NumHeight: 4 + NumWidth: 5 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: ab6851 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Hunting in the Snow + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.76053143 + posY: 1.20307779 + posZ: -18.2390366 + rotX: 0.721530735 + rotY: 269.9934 + rotZ: 179.977173 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 20604 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '206': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/2433509329550810616/2AEAA709721847713BD7A43770BF62368254F2A5/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/2433509660059488098/09DAEBBADE56CE1D75AFBF72BD550059552DA357/ + NumHeight: 4 + NumWidth: 5 + UniqueBack: false + Description: Madness. + GMNotes: '' + GUID: ab6851 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Rising Suspisions + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.80402613 + posY: 1.18125665 + posZ: -18.1829529 + rotX: 0.000570632867 + rotY: 269.999847 + rotZ: 179.99469 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 20605 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '206': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/2433509329550810616/2AEAA709721847713BD7A43770BF62368254F2A5/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/2433509660059488098/09DAEBBADE56CE1D75AFBF72BD550059552DA357/ + NumHeight: 4 + NumWidth: 5 + UniqueBack: false + Description: Madness. + GMNotes: '' + GUID: ab6851 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Rising Suspisions + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.4020555 + posY: 1.18354332 + posZ: -18.6242867 + rotX: -0.0005844531 + rotY: 270.000183 + rotZ: 179.962189 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 20606 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '206': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/2433509329550810616/2AEAA709721847713BD7A43770BF62368254F2A5/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/2433509660059488098/09DAEBBADE56CE1D75AFBF72BD550059552DA357/ + NumHeight: 4 + NumWidth: 5 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: ab6851 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Unexpected Movements + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.62124252 + posY: 1.19817853 + posZ: -18.2754688 + rotX: 359.990173 + rotY: 269.9947 + rotZ: 179.892776 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 20607 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '206': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/2433509329550810616/2AEAA709721847713BD7A43770BF62368254F2A5/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/2433509660059488098/09DAEBBADE56CE1D75AFBF72BD550059552DA357/ + NumHeight: 4 + NumWidth: 5 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: 7e8741 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Unexpected Movements + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.94027257 + posY: 1.178297 + posZ: -18.3648014 + rotX: 0.008848391 + rotY: 270.006836 + rotZ: 180.107468 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 20608 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '206': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/2433509329550810616/2AEAA709721847713BD7A43770BF62368254F2A5/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/2433509660059488098/09DAEBBADE56CE1D75AFBF72BD550059552DA357/ + NumHeight: 4 + NumWidth: 5 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: ab6851 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dark Design + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 3.91960454 + posY: 1.03429043 + posZ: -18.52981 + rotX: 359.987244 + rotY: 270.001953 + rotZ: 180.003662 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12121 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '121': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: fb311c + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Crypt Chill + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -1.71423316 + posY: 1.03169024 + posZ: -12.9443426 + rotX: -0.00174733356 + rotY: 270.034454 + rotZ: -0.0011755788 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12121 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '121': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: b78c3b + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Crypt Chill + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -1.52981949 + posY: 1.17628717 + posZ: -12.4871578 + rotX: 359.9812 + rotY: 269.999481 + rotZ: 359.976318 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12122 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '121': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: '356046' + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Obscuring Fog + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -1.42470074 + posY: 1.03167713 + posZ: -15.8986273 + rotX: -0.00186766614 + rotY: 270.0325 + rotZ: -0.0007538253 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12122 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '121': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Hazard. + GMNotes: '' + GUID: 03a265 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Obscuring Fog + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -1.54464078 + posY: 1.17053676 + posZ: -16.0112114 + rotX: 359.985138 + rotY: 269.971527 + rotZ: 0.00247924146 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12113 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '121': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Creature. + GMNotes: '' + GUID: 7381cd + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Swarm of Rats + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -5.168816 + posY: 1.0316999 + posZ: 8.366819 + rotX: -0.0007705624 + rotY: 269.999969 + rotZ: -0.000388128974 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12113 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '121': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Creature. + GMNotes: '' + GUID: bbc9d1 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Swarm of Rats + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -5.082863 + posY: 1.17674422 + posZ: 8.217518 + rotX: 359.99115 + rotY: 270.000366 + rotZ: 0.00112278154 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 12113 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '121': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Creature. + GMNotes: '' + GUID: 56e5db + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Swarm of Rats + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -5.16888762 + posY: 1.194109 + posZ: 8.11904049 + rotX: -0.00128748291 + rotY: 270.0002 + rotZ: -0.00139563438 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '121': + BackIsHidden: true + BackURL: https://i.imgur.com/sRsWiSG.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/87094793642521937/9A33F34C05DAD0F4FE68E12C309B203F8E22B6F2/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '206': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/2433509329550810616/2AEAA709721847713BD7A43770BF62368254F2A5/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/2433509660059488098/09DAEBBADE56CE1D75AFBF72BD550059552DA357/ + NumHeight: 4 + NumWidth: 5 + UniqueBack: false +DeckIDs: +- 20601 +- 20602 +- 20603 +- 20604 +- 20605 +- 20606 +- 20607 +- 20608 +- 12121 +- 12121 +- 12122 +- 12122 +- 12113 +- 12113 +- 12113 +Description: '' +GMNotes: '' +GUID: 9a893a +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Encounter Deck +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -3.932813 + posY: 1.6917752 + posZ: 5.757158 + rotX: 359.919739 + rotY: 270.0016 + rotZ: 180.01683 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Winter Winds 754057/Bag The Forgotten Village ddd10b/Deck Hidden Motivations 4ba650.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Winter Winds 754057/Bag The Forgotten Village ddd10b/Deck Hidden Motivations 4ba650.yaml new file mode 100644 index 000000000..1f275f2b0 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Winter Winds 754057/Bag The Forgotten Village ddd10b/Deck Hidden Motivations 4ba650.yaml @@ -0,0 +1,253 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 20614 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '206': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/2433509329550810616/2AEAA709721847713BD7A43770BF62368254F2A5/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/2433509660059488098/09DAEBBADE56CE1D75AFBF72BD550059552DA357/ + NumHeight: 4 + NumWidth: 5 + UniqueBack: false + Description: Motivation. + GMNotes: '' + GUID: ab6851 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Hidden Loyalty + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 6.843341 + posY: 1.18096423 + posZ: -23.6237965 + rotX: 0.000429528183 + rotY: 270.026245 + rotZ: 180.057251 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 20615 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '206': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/2433509329550810616/2AEAA709721847713BD7A43770BF62368254F2A5/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/2433509660059488098/09DAEBBADE56CE1D75AFBF72BD550059552DA357/ + NumHeight: 4 + NumWidth: 5 + UniqueBack: false + Description: Motivation. + GMNotes: '' + GUID: ab6851 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Hidden Loyalty + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 6.42323065 + posY: 1.14765191 + posZ: -23.0886173 + rotX: 0.00313591072 + rotY: 270.0179 + rotZ: 182.1205 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 20616 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '206': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/2433509329550810616/2AEAA709721847713BD7A43770BF62368254F2A5/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/2433509660059488098/09DAEBBADE56CE1D75AFBF72BD550059552DA357/ + NumHeight: 4 + NumWidth: 5 + UniqueBack: false + Description: Motivation. + GMNotes: '' + GUID: 6f8bec + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Hidden Hostility + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 6.879832 + posY: 1.031673 + posZ: -23.20675 + rotX: -0.00222213473 + rotY: 270.0002 + rotZ: -0.00101234217 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 20617 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '206': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/2433509329550810616/2AEAA709721847713BD7A43770BF62368254F2A5/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/2433509660059488098/09DAEBBADE56CE1D75AFBF72BD550059552DA357/ + NumHeight: 4 + NumWidth: 5 + UniqueBack: false + Description: Motivation. + GMNotes: '' + GUID: ddd1a5 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Hidden Hostility + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 7.283403 + posY: 1.176451 + posZ: -23.17347 + rotX: -0.004002673 + rotY: 270.0004 + rotZ: 359.9931 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 20618 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '206': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/2433509329550810616/2AEAA709721847713BD7A43770BF62368254F2A5/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/2433509660059488098/09DAEBBADE56CE1D75AFBF72BD550059552DA357/ + NumHeight: 4 + NumWidth: 5 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: c19c46 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Hidden Machinations + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 6.2795763 + posY: 1.19413424 + posZ: -23.31235 + rotX: -0.0009929821 + rotY: 270.000854 + rotZ: -0.0002697376 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '206': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/2433509329550810616/2AEAA709721847713BD7A43770BF62368254F2A5/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/2433509660059488098/09DAEBBADE56CE1D75AFBF72BD550059552DA357/ + NumHeight: 4 + NumWidth: 5 + UniqueBack: false +DeckIDs: +- 20614 +- 20615 +- 20616 +- 20617 +- 20618 +Description: '' +GMNotes: '' +GUID: 4ba650 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Hidden Motivations +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -11.5250435 + posY: 1.68017423 + posZ: 9.115015 + rotX: 359.9201 + rotY: 269.9994 + rotZ: 180.016861 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Winter Winds 754057/Bag The Forgotten Village ddd10b/Deck Passenger 2d7592.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Winter Winds 754057/Bag The Forgotten Village ddd10b/Deck Passenger 2d7592.yaml new file mode 100644 index 000000000..fe47f6381 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Winter Winds 754057/Bag The Forgotten Village ddd10b/Deck Passenger 2d7592.yaml @@ -0,0 +1,253 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 20204 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '202': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/2433509660050602265/8E49038EFACAFB1B4ABAC4CA2632430C9BA15557/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/2433509660059469110/7F72B62BD18DCEC3F2AE2B28602CA860299567DC/ + NumHeight: 2 + NumWidth: 3 + UniqueBack: false + Description: Passenger. Ally. + GMNotes: '' + GUID: 9b2c6d + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Darya Kabluov + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -0.6509223 + posY: 1.03173876 + posZ: -22.8700123 + rotX: 0.00124677015 + rotY: 269.98114 + rotZ: 0.0131853083 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 20203 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '202': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/2433509660050602265/8E49038EFACAFB1B4ABAC4CA2632430C9BA15557/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/2433509660059469110/7F72B62BD18DCEC3F2AE2B28602CA860299567DC/ + NumHeight: 2 + NumWidth: 3 + UniqueBack: false + Description: Passenger. Ally. + GMNotes: '' + GUID: 687bc6 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Artyom Durov + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -0.6874235 + posY: 1.19111049 + posZ: -22.6164188 + rotX: 0.00188625278 + rotY: 270.001953 + rotZ: 0.7888479 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 20202 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '202': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/2433509660050602265/8E49038EFACAFB1B4ABAC4CA2632430C9BA15557/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/2433509660059469110/7F72B62BD18DCEC3F2AE2B28602CA860299567DC/ + NumHeight: 2 + NumWidth: 3 + UniqueBack: false + Description: Passenger. Ally. + GMNotes: '' + GUID: 9b2c6d + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Boris Galkin + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -1.15610969 + posY: 1.19405663 + posZ: -22.6019421 + rotX: 0.0009187842 + rotY: 269.9998 + rotZ: -0.00291927415 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 20201 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '202': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/2433509660050602265/8E49038EFACAFB1B4ABAC4CA2632430C9BA15557/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/2433509660059469110/7F72B62BD18DCEC3F2AE2B28602CA860299567DC/ + NumHeight: 2 + NumWidth: 3 + UniqueBack: false + Description: Passenger. Ally. + GMNotes: '' + GUID: a089b1 + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Anastasiya Petrov + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -1.22653329 + posY: 1.18045545 + posZ: -22.9020958 + rotX: -0.00105078984 + rotY: 269.9998 + rotZ: -0.0004673542 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 20200 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '202': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/2433509660050602265/8E49038EFACAFB1B4ABAC4CA2632430C9BA15557/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/2433509660059469110/7F72B62BD18DCEC3F2AE2B28602CA860299567DC/ + NumHeight: 2 + NumWidth: 3 + UniqueBack: false + Description: Passenger. Ally. + GMNotes: '' + GUID: 9b2c6d + Grid: true + GridProjection: false + Hands: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Vladimir Ulman + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -0.6530962 + posY: 1.17841458 + posZ: -23.0867538 + rotX: -0.00116954488 + rotY: 270.000061 + rotZ: 0.003048486 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '202': + BackIsHidden: true + BackURL: http://cloud-3.steamusercontent.com/ugc/2433509660050602265/8E49038EFACAFB1B4ABAC4CA2632430C9BA15557/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/2433509660059469110/7F72B62BD18DCEC3F2AE2B28602CA860299567DC/ + NumHeight: 2 + NumWidth: 3 + UniqueBack: false +DeckIDs: +- 20204 +- 20203 +- 20202 +- 20201 +- 20200 +Description: '' +GMNotes: '' +GUID: 2d7592 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Passenger +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -11.4453392 + posY: 1.67188358 + posZ: 13.0483475 + rotX: 359.9201 + rotY: 269.99472 + rotZ: 0.0168840289 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Winter Winds 754057/Custom_Tile Winter Winds d54710.ttslua b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Winter Winds 754057/Custom_Tile Winter Winds d54710.ttslua new file mode 100644 index 000000000..600057539 --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Winter Winds 754057/Custom_Tile Winter Winds d54710.ttslua @@ -0,0 +1,21 @@ +name = 'Winter Winds' + +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 The Side Missions 791837/Custom_Model_Bag Winter Winds 754057/Custom_Tile Winter Winds d54710.yaml b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Winter Winds 754057/Custom_Tile Winter Winds d54710.yaml new file mode 100644 index 000000000..1618d726c --- /dev/null +++ b/unpacked/Custom_Model_Bag The Side Missions 791837/Custom_Model_Bag Winter Winds 754057/Custom_Tile Winter Winds d54710.yaml @@ -0,0 +1,42 @@ +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 +GMNotes: '' +GUID: d54710 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Tile Winter Winds d54710.ttslua' +LuaScriptState: '' +Name: Custom_Tile +Nickname: Winter Winds +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -4.02145338 + posY: 1.58261955 + posZ: -15.2289486 + rotX: 359.919739 + rotY: 269.998352 + rotZ: 0.0168408863 + scaleX: 2.2 + scaleY: 1.0 + scaleZ: 2.2 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Trash 147e80.yaml b/unpacked/Custom_Model_Bag Trash 147e80.yaml new file mode 100644 index 000000000..16867db39 --- /dev/null +++ b/unpacked/Custom_Model_Bag Trash 147e80.yaml @@ -0,0 +1,44 @@ +Autoraise: true +ColorDiffuse: + b: 0.997964561 + g: 0.9962315 + r: 1.0 +CustomMesh: + CastShadows: true + ColliderURL: '' + Convex: true + DiffuseURL: '' + MaterialIndex: 0 + MeshURL: https://drive.google.com/uc?export=download&id=0B_R2Mm1ALT39aUJnN20yb1pmbEU + NormalURL: '' + TypeIndex: 6 +Description: '' +GMNotes: '' +GUID: 147e80 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: true +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +MeshIndex: -1 +Name: Custom_Model_Bag +Nickname: Trash +Number: 0 +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -47.73 + posY: 1.67424858 + posZ: 4.050823 + rotX: 359.918274 + rotY: 285.000061 + rotZ: -0.004346376 + scaleX: 0.3 + scaleY: 0.3 + scaleZ: 0.3 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Trash 4b8594.yaml b/unpacked/Custom_Model_Bag Trash 4b8594.yaml new file mode 100644 index 000000000..12ae32102 --- /dev/null +++ b/unpacked/Custom_Model_Bag Trash 4b8594.yaml @@ -0,0 +1,44 @@ +Autoraise: true +ColorDiffuse: + b: 0.997964561 + g: 0.9962315 + r: 1.0 +CustomMesh: + CastShadows: true + ColliderURL: '' + Convex: true + DiffuseURL: '' + MaterialIndex: 0 + MeshURL: https://drive.google.com/uc?export=download&id=0B_R2Mm1ALT39aUJnN20yb1pmbEU + NormalURL: '' + TypeIndex: 6 +Description: '' +GMNotes: '' +GUID: 4b8594 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: true +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +MeshIndex: -1 +Name: Custom_Model_Bag +Nickname: Trash +Number: 0 +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -37.496666 + posY: 1.65307927 + posZ: -19.3745327 + rotX: 359.918274 + rotY: 284.999939 + rotZ: -0.004370635 + scaleX: 0.3 + scaleY: 0.3 + scaleZ: 0.3 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Trash 5f896a.yaml b/unpacked/Custom_Model_Bag Trash 5f896a.yaml new file mode 100644 index 000000000..c51645934 --- /dev/null +++ b/unpacked/Custom_Model_Bag Trash 5f896a.yaml @@ -0,0 +1,44 @@ +Autoraise: true +ColorDiffuse: + b: 0.997964561 + g: 0.9962315 + r: 1.0 +CustomMesh: + CastShadows: true + ColliderURL: '' + Convex: true + DiffuseURL: '' + MaterialIndex: 0 + MeshURL: https://drive.google.com/uc?export=download&id=0B_R2Mm1ALT39aUJnN20yb1pmbEU + NormalURL: '' + TypeIndex: 6 +Description: '' +GMNotes: '' +GUID: 5f896a +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: true +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +MeshIndex: -1 +Name: Custom_Model_Bag +Nickname: Trash +Number: 0 +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -37.42401 + posY: 1.66436124 + posZ: 19.2838554 + rotX: 359.918243 + rotY: 284.9995 + rotZ: -0.004348584 + scaleX: 0.3 + scaleY: 0.3 + scaleZ: 0.3 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Trash 70b9f6.yaml b/unpacked/Custom_Model_Bag Trash 70b9f6.yaml new file mode 100644 index 000000000..c6b139e8e --- /dev/null +++ b/unpacked/Custom_Model_Bag Trash 70b9f6.yaml @@ -0,0 +1,44 @@ +Autoraise: true +ColorDiffuse: + b: 0.997964561 + g: 0.9962315 + r: 1.0 +CustomMesh: + CastShadows: true + ColliderURL: '' + Convex: true + DiffuseURL: '' + MaterialIndex: 0 + MeshURL: https://drive.google.com/uc?export=download&id=0B_R2Mm1ALT39aUJnN20yb1pmbEU + NormalURL: '' + TypeIndex: 6 +Description: '' +GMNotes: '' +GUID: 70b9f6 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: true +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +MeshIndex: -1 +Name: Custom_Model_Bag +Nickname: Trash +Number: 0 +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 0.493258446 + posY: 1.65577781 + posZ: 0.0232055485 + rotX: 359.919525 + rotY: 269.998138 + rotZ: 0.01692197 + scaleX: 0.4 + scaleY: 0.3 + scaleZ: 0.4 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Trash f7b6c8.yaml b/unpacked/Custom_Model_Bag Trash f7b6c8.yaml new file mode 100644 index 000000000..c1e1a9174 --- /dev/null +++ b/unpacked/Custom_Model_Bag Trash f7b6c8.yaml @@ -0,0 +1,44 @@ +Autoraise: true +ColorDiffuse: + b: 0.997964561 + g: 0.9962315 + r: 1.0 +CustomMesh: + CastShadows: true + ColliderURL: '' + Convex: true + DiffuseURL: '' + MaterialIndex: 0 + MeshURL: https://drive.google.com/uc?export=download&id=0B_R2Mm1ALT39aUJnN20yb1pmbEU + NormalURL: '' + TypeIndex: 6 +Description: '' +GMNotes: '' +GUID: f7b6c8 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: true +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +MeshIndex: -1 +Name: Custom_Model_Bag +Nickname: Trash +Number: 0 +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -47.73 + posY: 1.67191529 + posZ: -3.93108964 + rotX: 359.918274 + rotY: 284.999878 + rotZ: -0.00434086937 + scaleX: 0.3 + scaleY: 0.3 + scaleZ: 0.3 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Weakness decks 750fdd.ttslua b/unpacked/Custom_Model_Bag Weakness decks 750fdd.ttslua new file mode 100644 index 000000000..ba2c9c0f7 --- /dev/null +++ b/unpacked/Custom_Model_Bag Weakness decks 750fdd.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,0,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 + 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=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,0,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,0,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.9,0,2}, rotation={0,0,0}, height=350, width=750, + 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.9,0,2}, rotation={0,0,0}, height=350, width=800, + font_size=250, color={0,0,0}, font_color={1,1,1} + }) +-- self.createButton({ +-- label="Setup", click_function="buttonClick_setup", function_owner=self, +-- position={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.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 \ No newline at end of file diff --git a/unpacked/Custom_Model_Bag Weakness decks 750fdd.yaml b/unpacked/Custom_Model_Bag Weakness decks 750fdd.yaml new file mode 100644 index 000000000..4efab007d --- /dev/null +++ b/unpacked/Custom_Model_Bag Weakness decks 750fdd.yaml @@ -0,0 +1,66 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +ContainedObjects: +- !include 'Custom_Model_Bag Weakness decks 750fdd/Custom_Model_Bag Weakness decks + 296ec4.yaml' +- !include 'Custom_Model_Bag Weakness decks 750fdd/Deck Return to the Dunwich Legacy + 0b361d.yaml' +- !include 'Custom_Model_Bag Weakness decks 750fdd/Deck The Dunwich Legacy 0da7f2.yaml' +- !include 'Custom_Model_Bag Weakness decks 750fdd/Deck The Path to Carcosa 193ddf.yaml' +- !include 'Custom_Model_Bag Weakness decks 750fdd/Deck The Forgotten Age 62c248.yaml' +- !include 'Custom_Model_Bag Weakness decks 750fdd/Deck Core 728f7e.yaml' +- !include 'Custom_Model_Bag Weakness decks 750fdd/Deck Return to The Path to Carcosa + 9c5822.yaml' +- !include 'Custom_Model_Bag Weakness decks 750fdd/Deck The Dream-Eaters c97be9.yaml' +- !include 'Custom_Model_Bag Weakness decks 750fdd/Deck All Weaknesses d95bd6.yaml' +- !include 'Custom_Model_Bag Weakness decks 750fdd/Deck Advanced ee093b.yaml' +- !include 'Custom_Model_Bag Weakness decks 750fdd/Deck The Circle Undone f9215d.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/952965722516372129/745E93331A66C547C69B39EAD5044A72B8D732D3/ + MaterialIndex: 3 + MeshURL: https://pastebin.com/raw/ALrYhQGb + NormalURL: '' + TypeIndex: 6 +Description: '' +GMNotes: '' +GUID: 750fdd +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: true +LuaScript: !include 'Custom_Model_Bag Weakness decks 750fdd.ttslua' +LuaScriptState: '{"ml":{"0b361d":{"lock":false,"pos":{"x":-20.9389,"y":1.3516,"z":83.3067},"rot":{"x":0.0208,"y":270.0185,"z":180.0168}},"0da7f2":{"lock":false,"pos":{"x":-20.9389,"y":1.3502,"z":85.6067},"rot":{"x":0.0208,"y":270.0016,"z":180.0168}},"193ddf":{"lock":false,"pos":{"x":-20.9389,"y":1.3434,"z":78.7067},"rot":{"x":0.0208,"y":270.0115,"z":180.0168}},"62c248":{"lock":false,"pos":{"x":-20.9389,"y":1.3482,"z":71.8067},"rot":{"x":0.0208,"y":270.0056,"z":180.0168}},"728f7e":{"lock":false,"pos":{"x":-24.544,"y":1.3425,"z":85.5946},"rot":{"x":0.0208,"y":269.9995,"z":180.0168}},"9c5822":{"lock":false,"pos":{"x":-20.9389,"y":1.3432,"z":76.4067},"rot":{"x":0.0208,"y":270.0131,"z":180.0168}},"c97be9":{"lock":false,"pos":{"x":-20.9389,"y":1.3387,"z":62.6066},"rot":{"x":0.0208,"y":270.0144,"z":180.0168}},"d95bd6":{"lock":false,"pos":{"x":-24.5466,"y":1.4737,"z":78.6946},"rot":{"x":0.0208,"y":270.0463,"z":180.0168}},"ee093b":{"lock":false,"pos":{"x":-24.5413,"y":1.3439,"z":83.2945},"rot":{"x":0.0208,"y":269.9633,"z":180.0168}},"f9215d":{"lock":false,"pos":{"x":-20.9389,"y":1.34,"z":67.2067},"rot":{"x":0.0208,"y":270.0142,"z":180.0168}}}}' +MaterialIndex: -1 +MeshIndex: -1 +Name: Custom_Model_Bag +Nickname: Weakness decks +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -20.858654 + posY: 1.3891027 + posZ: 91.58723 + rotX: 0.0208074935 + rotY: 270.011719 + rotZ: 0.016774619 + scaleX: 1.2 + scaleY: 1.2 + scaleZ: 1.2 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Weakness decks 750fdd/Custom_Model_Bag Weakness decks 296ec4.ttslua b/unpacked/Custom_Model_Bag Weakness decks 750fdd/Custom_Model_Bag Weakness decks 296ec4.ttslua new file mode 100644 index 000000000..ae681fad2 --- /dev/null +++ b/unpacked/Custom_Model_Bag Weakness decks 750fdd/Custom_Model_Bag Weakness decks 296ec4.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,0,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 + 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=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,0,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,0,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.9,0,2}, rotation={0,0,0}, height=350, width=750, + 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.9,0,2}, rotation={0,0,0}, height=350, width=800, + font_size=250, color={0,0,0}, font_color={1,1,1} + }) +-- self.createButton({ +-- label="Setup", click_function="buttonClick_setup", function_owner=self, +-- position={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.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 Weakness decks 750fdd/Custom_Model_Bag Weakness decks 296ec4.yaml b/unpacked/Custom_Model_Bag Weakness decks 750fdd/Custom_Model_Bag Weakness decks 296ec4.yaml new file mode 100644 index 000000000..e1633105b --- /dev/null +++ b/unpacked/Custom_Model_Bag Weakness decks 750fdd/Custom_Model_Bag Weakness decks 296ec4.yaml @@ -0,0 +1,64 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +ContainedObjects: +- !include 'Custom_Model_Bag Weakness decks 296ec4/Deck Return to the Dunwich Legacy + 0b361d.yaml' +- !include 'Custom_Model_Bag Weakness decks 296ec4/Deck The Dunwich Legacy 0da7f2.yaml' +- !include 'Custom_Model_Bag Weakness decks 296ec4/Deck The Path to Carcosa 193ddf.yaml' +- !include 'Custom_Model_Bag Weakness decks 296ec4/Deck The Forgotten Age 62c248.yaml' +- !include 'Custom_Model_Bag Weakness decks 296ec4/Deck Core 728f7e.yaml' +- !include 'Custom_Model_Bag Weakness decks 296ec4/Deck Return to The Path to Carcosa + 9c5822.yaml' +- !include 'Custom_Model_Bag Weakness decks 296ec4/Deck The Dream-Eaters c97be9.yaml' +- !include 'Custom_Model_Bag Weakness decks 296ec4/Deck All Weaknesses d95bd6.yaml' +- !include 'Custom_Model_Bag Weakness decks 296ec4/Deck Advanced ee093b.yaml' +- !include 'Custom_Model_Bag Weakness decks 296ec4/Deck The Circle Undone f9215d.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/952965722516372129/745E93331A66C547C69B39EAD5044A72B8D732D3/ + MaterialIndex: 3 + MeshURL: https://pastebin.com/raw/ALrYhQGb + NormalURL: '' + TypeIndex: 6 +Description: '' +GMNotes: '' +GUID: 296ec4 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: false +LuaScript: !include 'Custom_Model_Bag Weakness decks 296ec4.ttslua' +LuaScriptState: '{"ml":{"0b361d":{"lock":false,"pos":{"x":-20.9389,"y":1.3516,"z":83.3067},"rot":{"x":0.0208,"y":270.0185,"z":180.0168}},"0da7f2":{"lock":false,"pos":{"x":-20.9389,"y":1.3502,"z":85.6067},"rot":{"x":0.0208,"y":270.0016,"z":180.0168}},"193ddf":{"lock":false,"pos":{"x":-20.9389,"y":1.3434,"z":78.7067},"rot":{"x":0.0208,"y":270.0115,"z":180.0168}},"62c248":{"lock":false,"pos":{"x":-20.9389,"y":1.3482,"z":71.8067},"rot":{"x":0.0208,"y":270.0056,"z":180.0168}},"728f7e":{"lock":false,"pos":{"x":-24.544,"y":1.3425,"z":85.5946},"rot":{"x":0.0208,"y":269.9995,"z":180.0168}},"9c5822":{"lock":false,"pos":{"x":-20.9389,"y":1.3432,"z":76.4067},"rot":{"x":0.0208,"y":270.0131,"z":180.0168}},"c97be9":{"lock":false,"pos":{"x":-20.9389,"y":1.3387,"z":62.6066},"rot":{"x":0.0208,"y":270.0144,"z":180.0168}},"d95bd6":{"lock":false,"pos":{"x":-24.5466,"y":1.4737,"z":78.6946},"rot":{"x":0.0208,"y":270.0463,"z":180.0168}},"ee093b":{"lock":false,"pos":{"x":-24.5413,"y":1.3439,"z":83.2945},"rot":{"x":0.0208,"y":269.9633,"z":180.0168}},"f9215d":{"lock":false,"pos":{"x":-20.9389,"y":1.34,"z":67.2067},"rot":{"x":0.0208,"y":270.0142,"z":180.0168}}}}' +MaterialIndex: -1 +MeshIndex: -1 +Name: Custom_Model_Bag +Nickname: Weakness decks +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -20.8025684 + posY: 1.64157569 + posZ: 91.59856 + rotX: 0.01764995 + rotY: 270.011749 + rotZ: 0.006663645 + scaleX: 1.2 + scaleY: 1.2 + scaleZ: 1.2 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Weakness decks 750fdd/Custom_Model_Bag Weakness decks 296ec4/Deck Advanced ee093b.yaml b/unpacked/Custom_Model_Bag Weakness decks 750fdd/Custom_Model_Bag Weakness decks 296ec4/Deck Advanced ee093b.yaml new file mode 100644 index 000000000..35d10ecd1 --- /dev/null +++ b/unpacked/Custom_Model_Bag Weakness decks 750fdd/Custom_Model_Bag Weakness decks 296ec4/Deck Advanced ee093b.yaml @@ -0,0 +1,172 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 266512 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2623': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Add to deck only when instructed + GMNotes: '' + GUID: dc5b38 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Price of Failure + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 81.01915 + posY: 1.37645161 + posZ: 87.31495 + rotX: 0.0153112262 + rotY: 269.999878 + rotZ: 0.0150623685 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 266508 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2623': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Add to deck only when instructed + GMNotes: '' + GUID: 85e7d9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Accursed Fate + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 80.7112961 + posY: 1.53448844 + posZ: 87.59596 + rotX: -0.00521308836 + rotY: 270.0744 + rotZ: 359.934631 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 266509 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2623': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Add to deck only when instructed + GMNotes: '' + GUID: 6cbc01 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Bell Tolls + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 81.3106155 + posY: 1.51620781 + posZ: 86.91421 + rotX: 0.0124601545 + rotY: 269.999084 + rotZ: 0.0615436137 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2665': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 266512 +- 266508 +- 266509 +Description: '' +GMNotes: '' +GUID: ee093b +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Advanced +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -24.5413 + posY: 1.343931 + posZ: 83.2945 + rotX: 0.020819148 + rotY: 269.9633 + rotZ: 180.016754 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Weakness decks 750fdd/Custom_Model_Bag Weakness decks 296ec4/Deck All Weaknesses d95bd6.yaml b/unpacked/Custom_Model_Bag Weakness decks 750fdd/Custom_Model_Bag Weakness decks 296ec4/Deck All Weaknesses d95bd6.yaml new file mode 100644 index 000000000..7380ca0e8 --- /dev/null +++ b/unpacked/Custom_Model_Bag Weakness decks 750fdd/Custom_Model_Bag Weakness decks 296ec4/Deck All Weaknesses d95bd6.yaml @@ -0,0 +1,1569 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: e42f12 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The 13th Vision + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 66.89174 + posY: 2.369952 + posZ: 45.3254356 + rotX: 0.0208055452 + rotY: 270.0067 + rotZ: 0.01677739 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 291019 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2659': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Basic Weakness + GMNotes: '' + GUID: 31f72f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Through the Gates + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 81.1103439 + posY: 1.37475467 + posZ: 81.38222 + rotX: 0.0155774252 + rotY: 269.998871 + rotZ: 0.0148439659 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 290804 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2623': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Basic Weakness + GMNotes: '' + GUID: 88ee43 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Hypochondria + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 58.93588 + posY: 1.36254549 + posZ: 67.02983 + rotX: 0.01864637 + rotY: 270.010132 + rotZ: 0.0065060514 + 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 + UniqueBack: false + Description: Basic Weakness + GMNotes: '' + GUID: ea0fa1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Unspeakable Oath (Cowardice) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 80.61448 + posY: 1.53051329 + posZ: 73.92056 + rotX: 359.5608 + rotY: 270.008331 + rotZ: 0.0357966721 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 290807 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2623': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Basic Weakness + GMNotes: '' + GUID: eeb330 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Chronophobia + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 77.61771 + posY: 1.37417972 + posZ: 83.3862152 + rotX: 0.02080846 + rotY: 269.998749 + rotZ: 0.0167724155 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 291019 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2659': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Basic Weakness + GMNotes: '' + GUID: fd9c56 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Through the Gates + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 81.04702 + posY: 1.51482713 + posZ: 81.20772 + rotX: 0.0230280347 + rotY: 269.9986 + rotZ: 0.0147677548 + 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 + UniqueBack: false + Description: Basic Weakness + GMNotes: '' + GUID: eff3c8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Self-Centered + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 82.3005 + posY: 1.37097037 + posZ: 66.61211 + rotX: 0.0208081 + rotY: 269.999756 + rotZ: 0.0167713575 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 290800 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2623': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Basic Weakness + GMNotes: '' + GUID: 2210c1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Amnesia + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 60.0020523 + posY: 1.35961318 + posZ: 55.47854 + rotX: 0.0208090711 + rotY: 269.9957 + rotZ: 0.0167709384 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 290818 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2623': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Enemy + GMNotes: '' + GUID: 4ea68b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Stubborn Detective + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 59.32571 + posY: 1.3645314 + posZ: 73.1198349 + rotX: 0.0208079163 + rotY: 269.999237 + rotZ: 0.0167740583 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 290810 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2623': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Basic Weakness + GMNotes: '' + GUID: 29766c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Overzealous + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 84.76986 + posY: 1.37477219 + posZ: 76.5368347 + rotX: 0.0208052341 + rotY: 270.008362 + rotZ: 0.01677476 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 290810 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2623': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Basic Weakness + GMNotes: '' + GUID: 88a9b3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Overzealous + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 81.0201 + posY: 1.373406 + posZ: 76.52217 + rotX: 0.0208056755 + rotY: 270.00824 + rotZ: 0.016777223 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 290803 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2623': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Basic Weakness + GMNotes: '' + GUID: d83baf + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Psychosis + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 59.276104 + posY: 1.36351478 + posZ: 69.70881 + rotX: 0.0208085179 + rotY: 269.998138 + rotZ: 0.0167739056 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 290813 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2623': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Basic Weakness + GMNotes: '' + GUID: dd3d09 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dark Pact + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 73.7898941 + posY: 1.50798833 + posZ: 66.88923 + rotX: 0.0198830087 + rotY: 269.998352 + rotZ: 0.0241802726 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 290805 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2623': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Basic Weakness + GMNotes: '' + GUID: 8df93a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Indebted + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 74.0187149 + posY: 1.37291312 + posZ: 83.52449 + rotX: 0.0208078064 + rotY: 269.9976 + rotZ: 0.0167761613 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 290806 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2623': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Basic Weakness + GMNotes: '' + GUID: 4fb446 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Internal Injury + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 84.63887 + posY: 1.376687 + posZ: 83.34652 + rotX: 0.0193456579 + rotY: 269.996979 + rotZ: 0.0182021931 + 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 + UniqueBack: false + Description: Basic Weakness + GMNotes: '' + GUID: 447a08 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Kleptomania + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 80.45187 + posY: 1.51685083 + posZ: 58.63176 + rotX: 0.02240032 + rotY: 270.002625 + rotZ: 0.00697853556 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 290811 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2623': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Basic Weakness + GMNotes: '' + GUID: 3b3c0a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Drawing the Sign + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 73.2821045 + posY: 1.37064064 + posZ: 76.67514 + rotX: 0.0208085366 + rotY: 269.999329 + rotZ: 0.0167736318 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 290814 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2623': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Basic Weakness + GMNotes: '' + GUID: ba2ae1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Doomed + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 73.57277 + posY: 1.367833 + posZ: 67.00315 + rotX: 0.0171475261 + rotY: 269.999878 + rotZ: 0.014829508 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 290806 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2623': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Basic Weakness + GMNotes: '' + GUID: d28be6 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Internal Injury + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 84.6602859 + posY: 1.47444046 + posZ: 84.9897461 + rotX: 0.0185761936 + rotY: 269.8689 + rotZ: 354.901 + 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 + UniqueBack: false + Description: Basic Weakness + GMNotes: '' + GUID: a5be8b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Unspeakable Oath (Bloodthirst) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 80.46176 + posY: 1.37253177 + posZ: 73.76154 + rotX: 0.0148119656 + rotY: 270.004944 + rotZ: 0.0242835376 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 290817 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2623': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Enemy + GMNotes: '' + GUID: 16a89d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Silver Twilight Acolyte + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 59.2340546 + posY: 1.36607194 + posZ: 78.4964752 + rotX: 0.0208077766 + rotY: 269.999542 + rotZ: 0.016773073 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 290815 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2623': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Enemy + GMNotes: '' + GUID: da227d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Thing That Follows + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 77.00673 + posY: 1.37194359 + posZ: 76.50519 + rotX: 0.0208081231 + rotY: 269.999054 + rotZ: 0.0167726167 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: cebf6a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The 13th Vision + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 66.63284 + posY: 2.37017584 + posZ: 46.429985 + rotX: 0.0208064131 + rotY: 270.002472 + rotZ: 0.0167786125 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 290816 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2623': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Enemy + GMNotes: '' + GUID: b239d7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Mob Enforcer + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 59.38398 + posY: 1.36537349 + posZ: 75.9246 + rotX: 0.02080847 + rotY: 269.999084 + rotZ: 0.0167746339 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 290807 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2623': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Basic Weakness + GMNotes: '' + GUID: 016e3c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Chronophobia + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 80.96729 + posY: 1.37533462 + posZ: 83.17558 + rotX: 0.0208096765 + rotY: 269.9989 + rotZ: 0.016768232 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 290801 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2623': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Basic Weakness + GMNotes: '' + GUID: c17498 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Paranoia + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 59.77021 + posY: 1.36098135 + posZ: 60.4401855 + rotX: 0.02080495 + rotY: 270.007172 + rotZ: 0.0167757 + 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 + UniqueBack: false + Description: Circumstances Beyond Your Control + GMNotes: '' + GUID: d5c93d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: "The Tower \u2022 XVI" + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -65.1514359 + posY: 3.57692623 + posZ: 6.00838327 + rotX: 0.0208086111 + rotY: 269.999878 + rotZ: 0.0167732742 + 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 + UniqueBack: false + Description: Basic Weakness + GMNotes: '' + GUID: f6aba5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Unspeakable Oath (Curiosity) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 80.29785 + posY: 1.53495085 + posZ: 73.75409 + rotX: 0.02094236 + rotY: 269.999878 + rotZ: 0.0147951907 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 290800 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2623': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Basic Weakness + GMNotes: '' + GUID: 8598a4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Amnesia + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 59.72087 + posY: 1.36020052 + posZ: 57.8339 + rotX: 0.0208095219 + rotY: 269.9957 + rotZ: 0.01677148 + 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 + UniqueBack: false + Description: Circumstances Beyond Your Control + GMNotes: '' + GUID: cc65f3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: "The Tower \u2022 XVI" + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -61.4137726 + posY: 3.57692623 + posZ: 5.186873 + rotX: 0.0208082758 + rotY: 269.9998 + rotZ: 0.0167729743 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 290802 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2908': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Basic Weakness + GMNotes: '' + GUID: 249d83 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Haunted + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 73.63656 + posY: 1.66826892 + posZ: 51.2949 + rotX: 0.01472312 + rotY: 269.998657 + rotZ: 180.026688 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 290801 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2623': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Basic Weakness + GMNotes: '' + GUID: 3575a3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Paranoia + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 60.2334442 + posY: 1.36171019 + posZ: 62.84418 + rotX: 0.0131824408 + rotY: 269.998535 + rotZ: 0.0226880386 + 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 + UniqueBack: false + Description: Basic Weakness + GMNotes: '' + GUID: 57e648 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Narcolepsy + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 82.24709 + posY: 1.371798 + posZ: 69.50579 + rotX: 0.0208078641 + rotY: 269.9998 + rotZ: 0.01677146 + 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 + UniqueBack: false + Description: Basic Weakness + GMNotes: '' + GUID: 406ab2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Your Worst Nightmare + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 80.44901 + posY: 1.53057539 + posZ: 58.7713966 + rotX: 0.0195846576 + rotY: 269.9999 + rotZ: 0.0153481439 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 290805 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2623': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Basic Weakness + GMNotes: '' + GUID: b2ef43 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Indebted + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 69.6492 + posY: 1.37130547 + posZ: 83.45329 + rotX: 0.02080887 + rotY: 269.997437 + rotZ: 0.0167718846 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2903': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '2908': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '2910': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '4381': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 290321 +- 291019 +- 290804 +- 438122 +- 290807 +- 291019 +- 438125 +- 290800 +- 290818 +- 290810 +- 290810 +- 290803 +- 290813 +- 290805 +- 290806 +- 438126 +- 290811 +- 290814 +- 290806 +- 438124 +- 290817 +- 290815 +- 290321 +- 290816 +- 290807 +- 290801 +- 290320 +- 438123 +- 290800 +- 290320 +- 290802 +- 290801 +- 438127 +- 438128 +- 290805 +Description: '' +GMNotes: '' +GUID: d95bd6 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: All Weaknesses +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -24.5466 + posY: 1.4736917 + posZ: 78.6946 + rotX: 0.0207949989 + rotY: 270.046326 + rotZ: 180.0168 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Weakness decks 750fdd/Custom_Model_Bag Weakness decks 296ec4/Deck Core 728f7e.yaml b/unpacked/Custom_Model_Bag Weakness decks 750fdd/Custom_Model_Bag Weakness decks 296ec4/Deck Core 728f7e.yaml new file mode 100644 index 000000000..9bd09a718 --- /dev/null +++ b/unpacked/Custom_Model_Bag Weakness decks 750fdd/Custom_Model_Bag Weakness decks 296ec4/Deck Core 728f7e.yaml @@ -0,0 +1,473 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 266616 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2623': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Enemy + GMNotes: '' + GUID: b239d7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Mob Enforcer + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 59.38398 + posY: 1.36537349 + posZ: 75.9246 + rotX: 0.02080847 + rotY: 269.999084 + rotZ: 0.0167746339 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 266617 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2623': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Enemy + GMNotes: '' + GUID: 16a89d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Silver Twilight Acolyte + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 59.2340546 + posY: 1.36607194 + posZ: 78.4964752 + rotX: 0.0208077766 + rotY: 269.999542 + rotZ: 0.016773073 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 266618 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2623': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Enemy + GMNotes: '' + GUID: 4ea68b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Stubborn Detective + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 59.32571 + posY: 1.3645314 + posZ: 73.1198349 + rotX: 0.0208079163 + rotY: 269.999237 + rotZ: 0.0167740583 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 266603 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2623': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Basic Weakness + GMNotes: '' + GUID: d83baf + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Psychosis + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 59.276104 + posY: 1.36351478 + posZ: 69.70881 + rotX: 0.0208085179 + rotY: 269.998138 + rotZ: 0.0167739056 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 266604 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2623': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Basic Weakness + GMNotes: '' + GUID: 88ee43 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Hypochondria + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 58.93588 + posY: 1.36254549 + posZ: 67.02983 + rotX: 0.01864637 + rotY: 270.010132 + rotZ: 0.0065060514 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 266602 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2623': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Basic Weakness + GMNotes: '' + GUID: 249d83 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Haunted + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 59.11796 + posY: 1.48062611 + posZ: 64.84444 + rotX: 0.06331021 + rotY: 269.989655 + rotZ: 358.374146 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 266601 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2623': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Basic Weakness + GMNotes: '' + GUID: 3575a3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Paranoia + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 60.2334442 + posY: 1.36171019 + posZ: 62.84418 + rotX: 0.0131824408 + rotY: 269.998535 + rotZ: 0.0226880386 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 266601 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2623': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Basic Weakness + GMNotes: '' + GUID: c17498 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Paranoia + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 59.77021 + posY: 1.36098135 + posZ: 60.4401855 + rotX: 0.02080495 + rotY: 270.007172 + rotZ: 0.0167757 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 266600 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2623': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Basic Weakness + GMNotes: '' + GUID: 8598a4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Amnesia + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 59.72087 + posY: 1.36020052 + posZ: 57.8339 + rotX: 0.0208095219 + rotY: 269.9957 + rotZ: 0.01677148 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 266600 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2623': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Basic Weakness + GMNotes: '' + GUID: 2210c1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Amnesia + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 60.0020523 + posY: 1.35961318 + posZ: 55.47854 + rotX: 0.0208090711 + rotY: 269.9957 + rotZ: 0.0167709384 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2666': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 266616 +- 266617 +- 266618 +- 266603 +- 266604 +- 266602 +- 266601 +- 266601 +- 266600 +- 266600 +Description: '' +GMNotes: '' +GUID: 728f7e +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Core +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -24.544 + posY: 1.34247613 + posZ: 85.5946 + rotX: 0.020808436 + rotY: 269.999481 + rotZ: 180.016769 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Weakness decks 750fdd/Custom_Model_Bag Weakness decks 296ec4/Deck Return to The Path to Carcosa 9c5822.yaml b/unpacked/Custom_Model_Bag Weakness decks 750fdd/Custom_Model_Bag Weakness decks 296ec4/Deck Return to The Path to Carcosa 9c5822.yaml new file mode 100644 index 000000000..c5560daed --- /dev/null +++ b/unpacked/Custom_Model_Bag Weakness decks 750fdd/Custom_Model_Bag Weakness decks 296ec4/Deck Return to The Path to Carcosa 9c5822.yaml @@ -0,0 +1,172 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- 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 + UniqueBack: false + Description: Basic Weakness + GMNotes: '' + GUID: a5be8b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Unspeakable Oath (Bloodthirst) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 80.46176 + posY: 1.37253177 + posZ: 73.76154 + rotX: 0.0148119656 + rotY: 270.004944 + rotZ: 0.0242835376 + 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 + UniqueBack: false + Description: Basic Weakness + GMNotes: '' + GUID: ea0fa1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Unspeakable Oath (Cowardice) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 80.61448 + posY: 1.53051329 + posZ: 73.92056 + rotX: 359.5608 + rotY: 270.008331 + rotZ: 0.0357966721 + 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 + UniqueBack: false + Description: Basic Weakness + GMNotes: '' + GUID: f6aba5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Unspeakable Oath (Curiosity) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 80.29785 + posY: 1.53495085 + posZ: 73.75409 + rotX: 0.02094236 + rotY: 269.999878 + rotZ: 0.0147951907 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '4381': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 438124 +- 438122 +- 438123 +Description: '' +GMNotes: '' +GUID: 9c5822 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Return to The Path to Carcosa +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -20.9389 + posY: 1.34322321 + posZ: 76.4067 + rotX: 0.0208047032 + rotY: 270.013123 + rotZ: 180.016785 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Weakness decks 750fdd/Custom_Model_Bag Weakness decks 296ec4/Deck Return to the Dunwich Legacy 0b361d.yaml b/unpacked/Custom_Model_Bag Weakness decks 750fdd/Custom_Model_Bag Weakness decks 296ec4/Deck Return to the Dunwich Legacy 0b361d.yaml new file mode 100644 index 000000000..246d3f12d --- /dev/null +++ b/unpacked/Custom_Model_Bag Weakness decks 750fdd/Custom_Model_Bag Weakness decks 296ec4/Deck Return to the Dunwich Legacy 0b361d.yaml @@ -0,0 +1,129 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 266619 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2659': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Basic Weakness + GMNotes: '' + GUID: 31f72f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Through the Gates + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 80.6700058 + posY: 1.5195359 + posZ: 80.590004 + rotX: 0.020808259 + rotY: 270.0 + rotZ: 180.016769 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 266619 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2659': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Basic Weakness + GMNotes: '' + GUID: fd9c56 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Through the Gates + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 80.6700058 + posY: 1.319536 + posZ: 80.590004 + rotX: 0.020808259 + rotY: 270.0 + rotZ: 180.016769 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2666': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 266619 +- 266619 +Description: '' +GMNotes: '' +GUID: 0b361d +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Return to the Dunwich Legacy +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -20.9389 + posY: 1.35158014 + posZ: 83.3067 + rotX: 0.02080293 + rotY: 270.018524 + rotZ: 180.016785 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Weakness decks 750fdd/Custom_Model_Bag Weakness decks 296ec4/Deck The Circle Undone f9215d.yaml b/unpacked/Custom_Model_Bag Weakness decks 750fdd/Custom_Model_Bag Weakness decks 296ec4/Deck The Circle Undone f9215d.yaml new file mode 100644 index 000000000..2b19aa1c1 --- /dev/null +++ b/unpacked/Custom_Model_Bag Weakness decks 750fdd/Custom_Model_Bag Weakness decks 296ec4/Deck The Circle Undone f9215d.yaml @@ -0,0 +1,215 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: c1ce8e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The 13th Vision + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 73.4997559 + posY: 1.51956129 + posZ: 58.73982 + rotX: 0.165745556 + rotY: 270.0014 + rotZ: 180.12236 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: cebf6a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The 13th Vision + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 73.50002 + posY: 1.515151 + posZ: 58.74 + rotX: 0.0141672948 + rotY: 269.999756 + rotZ: 0.0134400167 + 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 + UniqueBack: false + Description: Circumstances Beyond Your Control + GMNotes: '' + GUID: cc65f3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: "The Tower \u2022 XVI" + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 77.49475 + posY: 1.3667146 + posZ: 58.34255 + rotX: 0.0165024456 + rotY: 270.0011 + rotZ: 0.0143494187 + 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 + UniqueBack: false + Description: Circumstances Beyond Your Control + GMNotes: '' + GUID: d5c93d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: "The Tower \u2022 XVI" + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 77.45068 + posY: 1.511687 + posZ: 58.2785454 + rotX: 0.0232664831 + rotY: 269.999329 + rotZ: 0.008670142 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2903': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 290321 +- 290321 +- 290320 +- 290320 +Description: '' +GMNotes: '' +GUID: f9215d +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: The Circle Undone +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -20.9389 + posY: 1.34002638 + posZ: 67.2067 + rotX: 0.02080428 + rotY: 270.014221 + rotZ: 180.016785 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Weakness decks 750fdd/Custom_Model_Bag Weakness decks 296ec4/Deck The Dream-Eaters c97be9.yaml b/unpacked/Custom_Model_Bag Weakness decks 750fdd/Custom_Model_Bag Weakness decks 296ec4/Deck The Dream-Eaters c97be9.yaml new file mode 100644 index 000000000..daacab4ff --- /dev/null +++ b/unpacked/Custom_Model_Bag Weakness decks 750fdd/Custom_Model_Bag Weakness decks 296ec4/Deck The Dream-Eaters c97be9.yaml @@ -0,0 +1,215 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- 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 + UniqueBack: false + Description: Basic Weakness + GMNotes: '' + GUID: eff3c8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Self-Centered + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 82.3005 + posY: 1.37097037 + posZ: 66.61211 + rotX: 0.0208081 + rotY: 269.999756 + rotZ: 0.0167713575 + 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 + UniqueBack: false + Description: Basic Weakness + GMNotes: '' + GUID: 57e648 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Narcolepsy + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 82.24709 + posY: 1.371798 + posZ: 69.50579 + rotX: 0.0208078641 + rotY: 269.9998 + rotZ: 0.01677146 + 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 + UniqueBack: false + Description: Basic Weakness + GMNotes: '' + GUID: 406ab2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Your Worst Nightmare + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 80.44901 + posY: 1.53057539 + posZ: 58.7713966 + rotX: 0.0195846576 + rotY: 269.9999 + rotZ: 0.0153481439 + 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 + UniqueBack: false + Description: Basic Weakness + GMNotes: '' + GUID: 447a08 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Kleptomania + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 80.45187 + posY: 1.51685083 + posZ: 58.63176 + rotX: 0.02240032 + rotY: 270.002625 + rotZ: 0.00697853556 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '4381': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 438125 +- 438127 +- 438128 +- 438126 +Description: '' +GMNotes: '' +GUID: c97be9 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: The Dream-Eaters +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -20.9389 + posY: 1.33867991 + posZ: 62.6066 + rotX: 0.0208040942 + rotY: 270.014435 + rotZ: 180.016785 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Weakness decks 750fdd/Custom_Model_Bag Weakness decks 296ec4/Deck The Dunwich Legacy 0da7f2.yaml b/unpacked/Custom_Model_Bag Weakness decks 750fdd/Custom_Model_Bag Weakness decks 296ec4/Deck The Dunwich Legacy 0da7f2.yaml new file mode 100644 index 000000000..3bbd550ae --- /dev/null +++ b/unpacked/Custom_Model_Bag Weakness decks 750fdd/Custom_Model_Bag Weakness decks 296ec4/Deck The Dunwich Legacy 0da7f2.yaml @@ -0,0 +1,301 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 266706 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2623': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Basic Weakness + GMNotes: '' + GUID: d28be6 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Internal Injury + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 84.6602859 + posY: 1.47444046 + posZ: 84.9897461 + rotX: 0.0185761936 + rotY: 269.8689 + rotZ: 354.901 + 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: + '2623': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Basic Weakness + GMNotes: '' + GUID: 4fb446 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Internal Injury + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 84.63887 + posY: 1.376687 + posZ: 83.34652 + rotX: 0.0193456579 + rotY: 269.996979 + rotZ: 0.0182021931 + 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: + '2623': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Basic Weakness + GMNotes: '' + GUID: 016e3c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Chronophobia + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 80.96729 + posY: 1.37533462 + posZ: 83.17558 + rotX: 0.0208096765 + rotY: 269.9989 + rotZ: 0.016768232 + 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: + '2623': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Basic Weakness + GMNotes: '' + GUID: eeb330 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Chronophobia + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 77.61771 + posY: 1.37417972 + posZ: 83.3862152 + rotX: 0.02080846 + rotY: 269.998749 + rotZ: 0.0167724155 + 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: + '2623': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Basic Weakness + GMNotes: '' + GUID: 8df93a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Indebted + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 74.0187149 + posY: 1.37291312 + posZ: 83.52449 + rotX: 0.0208078064 + rotY: 269.9976 + rotZ: 0.0167761613 + 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: + '2623': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Basic Weakness + GMNotes: '' + GUID: b2ef43 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Indebted + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 69.6492 + posY: 1.37130547 + posZ: 83.45329 + rotX: 0.02080887 + rotY: 269.997437 + rotZ: 0.0167718846 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2667': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 266706 +- 266706 +- 266707 +- 266707 +- 266705 +- 266705 +Description: '' +GMNotes: '' +GUID: 0da7f2 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: The Dunwich Legacy +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -20.9389 + posY: 1.35023785 + posZ: 85.6067 + rotX: 0.0208079088 + rotY: 270.0016 + rotZ: 180.016769 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Weakness decks 750fdd/Custom_Model_Bag Weakness decks 296ec4/Deck The Forgotten Age 62c248.yaml b/unpacked/Custom_Model_Bag Weakness decks 750fdd/Custom_Model_Bag Weakness decks 296ec4/Deck The Forgotten Age 62c248.yaml new file mode 100644 index 000000000..86d9757b2 --- /dev/null +++ b/unpacked/Custom_Model_Bag Weakness decks 750fdd/Custom_Model_Bag Weakness decks 296ec4/Deck The Forgotten Age 62c248.yaml @@ -0,0 +1,129 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 449214 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2623': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Basic Weakness + GMNotes: '' + GUID: ba2ae1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Doomed + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 73.57277 + posY: 1.367833 + posZ: 67.00315 + rotX: 0.0171475261 + rotY: 269.999878 + rotZ: 0.014829508 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 449213 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2623': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Basic Weakness + GMNotes: '' + GUID: dd3d09 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dark Pact + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 73.7898941 + posY: 1.50798833 + posZ: 66.88923 + rotX: 0.0198830087 + rotY: 269.998352 + rotZ: 0.0241802726 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '4492': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 449214 +- 449213 +Description: '' +GMNotes: '' +GUID: 62c248 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: The Forgotten Age +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -20.9389 + posY: 1.34821391 + posZ: 71.8067 + rotX: 0.0208066776 + rotY: 270.005554 + rotZ: 180.016769 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Weakness decks 750fdd/Custom_Model_Bag Weakness decks 296ec4/Deck The Path to Carcosa 193ddf.yaml b/unpacked/Custom_Model_Bag Weakness decks 750fdd/Custom_Model_Bag Weakness decks 296ec4/Deck The Path to Carcosa 193ddf.yaml new file mode 100644 index 000000000..984c4c26d --- /dev/null +++ b/unpacked/Custom_Model_Bag Weakness decks 750fdd/Custom_Model_Bag Weakness decks 296ec4/Deck The Path to Carcosa 193ddf.yaml @@ -0,0 +1,215 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 440510 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2623': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Basic Weakness + GMNotes: '' + GUID: 29766c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Overzealous + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 84.76986 + posY: 1.37477219 + posZ: 76.5368347 + rotX: 0.0208052341 + rotY: 270.008362 + rotZ: 0.01677476 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 440510 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2623': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Basic Weakness + GMNotes: '' + GUID: 88a9b3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Overzealous + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 81.0201 + posY: 1.373406 + posZ: 76.52217 + rotX: 0.0208056755 + rotY: 270.00824 + rotZ: 0.016777223 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 440515 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2623': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Enemy + GMNotes: '' + GUID: da227d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Thing That Follows + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 77.00673 + posY: 1.37194359 + posZ: 76.50519 + rotX: 0.0208081231 + rotY: 269.999054 + rotZ: 0.0167726167 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 440511 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2623': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Basic Weakness + GMNotes: '' + GUID: 3b3c0a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Drawing the Sign + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 73.2821045 + posY: 1.37064064 + posZ: 76.67514 + rotX: 0.0208085366 + rotY: 269.999329 + rotZ: 0.0167736318 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '4405': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 440510 +- 440510 +- 440515 +- 440511 +Description: '' +GMNotes: '' +GUID: 193ddf +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: The Path to Carcosa +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -20.9389 + posY: 1.34339261 + posZ: 78.7067 + rotX: 0.02080511 + rotY: 270.011475 + rotZ: 180.016785 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Weakness decks 750fdd/Deck Advanced ee093b.yaml b/unpacked/Custom_Model_Bag Weakness decks 750fdd/Deck Advanced ee093b.yaml new file mode 100644 index 000000000..cd7b2d420 --- /dev/null +++ b/unpacked/Custom_Model_Bag Weakness decks 750fdd/Deck Advanced ee093b.yaml @@ -0,0 +1,172 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 266512 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2623': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Add to deck only when instructed + GMNotes: '' + GUID: dc5b38 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Price of Failure + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 81.01915 + posY: 1.37645161 + posZ: 87.31495 + rotX: 0.0153112262 + rotY: 269.999878 + rotZ: 0.0150623685 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 266508 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2623': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Add to deck only when instructed + GMNotes: '' + GUID: 85e7d9 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Accursed Fate + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 80.7112961 + posY: 1.53448844 + posZ: 87.59596 + rotX: -0.00521308836 + rotY: 270.0744 + rotZ: 359.934631 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 266509 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2623': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Add to deck only when instructed + GMNotes: '' + GUID: 6cbc01 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Bell Tolls + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 81.3106155 + posY: 1.51620781 + posZ: 86.91421 + rotX: 0.0124601545 + rotY: 269.999084 + rotZ: 0.0615436137 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2665': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 266512 +- 266508 +- 266509 +Description: '' +GMNotes: '' +GUID: ee093b +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Advanced +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -24.5413 + posY: 1.343931 + posZ: 83.2945 + rotX: 0.0208191574 + rotY: 269.9633 + rotZ: 180.016754 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +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 new file mode 100644 index 000000000..317e57e2d --- /dev/null +++ b/unpacked/Custom_Model_Bag Weakness decks 750fdd/Deck All Weaknesses d95bd6.yaml @@ -0,0 +1,1569 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: e42f12 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The 13th Vision + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 66.89174 + posY: 2.369952 + posZ: 45.3254356 + rotX: 0.0208055452 + rotY: 270.0067 + rotZ: 0.01677739 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 291019 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2659': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Basic Weakness + GMNotes: '' + GUID: 31f72f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Through the Gates + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 81.1103439 + posY: 1.37475467 + posZ: 81.38222 + rotX: 0.0155774252 + rotY: 269.998871 + rotZ: 0.0148439659 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 290804 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2623': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Basic Weakness + GMNotes: '' + GUID: 88ee43 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Hypochondria + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 58.93588 + posY: 1.36254549 + posZ: 67.02983 + rotX: 0.01864637 + rotY: 270.010132 + rotZ: 0.0065060514 + 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 + UniqueBack: false + Description: Basic Weakness + GMNotes: '' + GUID: ea0fa1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Unspeakable Oath (Cowardice) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 80.61448 + posY: 1.53051329 + posZ: 73.92056 + rotX: 359.5608 + rotY: 270.008331 + rotZ: 0.0357966721 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 290807 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2623': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Basic Weakness + GMNotes: '' + GUID: eeb330 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Chronophobia + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 77.61771 + posY: 1.37417972 + posZ: 83.3862152 + rotX: 0.02080846 + rotY: 269.998749 + rotZ: 0.0167724155 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 291019 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2659': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Basic Weakness + GMNotes: '' + GUID: fd9c56 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Through the Gates + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 81.04702 + posY: 1.51482713 + posZ: 81.20772 + rotX: 0.0230280347 + rotY: 269.9986 + rotZ: 0.0147677548 + 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 + UniqueBack: false + Description: Basic Weakness + GMNotes: '' + GUID: eff3c8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Self-Centered + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 82.3005 + posY: 1.37097037 + posZ: 66.61211 + rotX: 0.0208081 + rotY: 269.999756 + rotZ: 0.0167713575 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 290800 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2623': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Basic Weakness + GMNotes: '' + GUID: 2210c1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Amnesia + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 60.0020523 + posY: 1.35961318 + posZ: 55.47854 + rotX: 0.0208090711 + rotY: 269.9957 + rotZ: 0.0167709384 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 290818 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2623': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Enemy + GMNotes: '' + GUID: 4ea68b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Stubborn Detective + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 59.32571 + posY: 1.3645314 + posZ: 73.1198349 + rotX: 0.0208079163 + rotY: 269.999237 + rotZ: 0.0167740583 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 290810 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2623': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Basic Weakness + GMNotes: '' + GUID: 29766c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Overzealous + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 84.76986 + posY: 1.37477219 + posZ: 76.5368347 + rotX: 0.0208052341 + rotY: 270.008362 + rotZ: 0.01677476 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 290810 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2623': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Basic Weakness + GMNotes: '' + GUID: 88a9b3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Overzealous + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 81.0201 + posY: 1.373406 + posZ: 76.52217 + rotX: 0.0208056755 + rotY: 270.00824 + rotZ: 0.016777223 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 290803 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2623': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Basic Weakness + GMNotes: '' + GUID: d83baf + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Psychosis + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 59.276104 + posY: 1.36351478 + posZ: 69.70881 + rotX: 0.0208085179 + rotY: 269.998138 + rotZ: 0.0167739056 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 290813 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2623': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Basic Weakness + GMNotes: '' + GUID: dd3d09 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dark Pact + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 73.7898941 + posY: 1.50798833 + posZ: 66.88923 + rotX: 0.0198830087 + rotY: 269.998352 + rotZ: 0.0241802726 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 290805 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2623': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Basic Weakness + GMNotes: '' + GUID: 8df93a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Indebted + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 74.0187149 + posY: 1.37291312 + posZ: 83.52449 + rotX: 0.0208078064 + rotY: 269.9976 + rotZ: 0.0167761613 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 290806 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2623': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Basic Weakness + GMNotes: '' + GUID: 4fb446 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Internal Injury + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 84.63887 + posY: 1.376687 + posZ: 83.34652 + rotX: 0.0193456579 + rotY: 269.996979 + rotZ: 0.0182021931 + 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 + UniqueBack: false + Description: Basic Weakness + GMNotes: '' + GUID: 447a08 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Kleptomania + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 80.45187 + posY: 1.51685083 + posZ: 58.63176 + rotX: 0.02240032 + rotY: 270.002625 + rotZ: 0.00697853556 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 290811 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2623': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Basic Weakness + GMNotes: '' + GUID: 3b3c0a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Drawing the Sign + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 73.2821045 + posY: 1.37064064 + posZ: 76.67514 + rotX: 0.0208085366 + rotY: 269.999329 + rotZ: 0.0167736318 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 290814 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2623': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Basic Weakness + GMNotes: '' + GUID: ba2ae1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Doomed + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 73.57277 + posY: 1.367833 + posZ: 67.00315 + rotX: 0.0171475261 + rotY: 269.999878 + rotZ: 0.014829508 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 290806 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2623': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Basic Weakness + GMNotes: '' + GUID: d28be6 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Internal Injury + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 84.6602859 + posY: 1.47444046 + posZ: 84.9897461 + rotX: 0.0185761936 + rotY: 269.8689 + rotZ: 354.901 + 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 + UniqueBack: false + Description: Basic Weakness + GMNotes: '' + GUID: a5be8b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Unspeakable Oath (Bloodthirst) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 80.46176 + posY: 1.37253177 + posZ: 73.76154 + rotX: 0.0148119656 + rotY: 270.004944 + rotZ: 0.0242835376 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 290817 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2623': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Enemy + GMNotes: '' + GUID: 16a89d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Silver Twilight Acolyte + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 59.2340546 + posY: 1.36607194 + posZ: 78.4964752 + rotX: 0.0208077766 + rotY: 269.999542 + rotZ: 0.016773073 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 290815 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2623': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Enemy + GMNotes: '' + GUID: da227d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Thing That Follows + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 77.00673 + posY: 1.37194359 + posZ: 76.50519 + rotX: 0.0208081231 + rotY: 269.999054 + rotZ: 0.0167726167 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: cebf6a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The 13th Vision + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 66.63284 + posY: 2.37017584 + posZ: 46.429985 + rotX: 0.0208064131 + rotY: 270.002472 + rotZ: 0.0167786125 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 290816 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2623': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Enemy + GMNotes: '' + GUID: b239d7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Mob Enforcer + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 59.38398 + posY: 1.36537349 + posZ: 75.9246 + rotX: 0.02080847 + rotY: 269.999084 + rotZ: 0.0167746339 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 290807 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2623': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Basic Weakness + GMNotes: '' + GUID: 016e3c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Chronophobia + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 80.96729 + posY: 1.37533462 + posZ: 83.17558 + rotX: 0.0208096765 + rotY: 269.9989 + rotZ: 0.016768232 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 290801 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2623': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Basic Weakness + GMNotes: '' + GUID: c17498 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Paranoia + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 59.77021 + posY: 1.36098135 + posZ: 60.4401855 + rotX: 0.02080495 + rotY: 270.007172 + rotZ: 0.0167757 + 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 + UniqueBack: false + Description: Circumstances Beyond Your Control + GMNotes: '' + GUID: d5c93d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: "The Tower \u2022 XVI" + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -65.1514359 + posY: 3.57692623 + posZ: 6.00838327 + rotX: 0.0208086111 + rotY: 269.999878 + rotZ: 0.0167732742 + 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 + UniqueBack: false + Description: Basic Weakness + GMNotes: '' + GUID: f6aba5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Unspeakable Oath (Curiosity) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 80.29785 + posY: 1.53495085 + posZ: 73.75409 + rotX: 0.02094236 + rotY: 269.999878 + rotZ: 0.0147951907 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 290800 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2623': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Basic Weakness + GMNotes: '' + GUID: 8598a4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Amnesia + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 59.72087 + posY: 1.36020052 + posZ: 57.8339 + rotX: 0.0208095219 + rotY: 269.9957 + rotZ: 0.01677148 + 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 + UniqueBack: false + Description: Circumstances Beyond Your Control + GMNotes: '' + GUID: cc65f3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: "The Tower \u2022 XVI" + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -61.4137726 + posY: 3.57692623 + posZ: 5.186873 + rotX: 0.0208082758 + rotY: 269.9998 + rotZ: 0.0167729743 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 290802 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2908': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Basic Weakness + GMNotes: '' + GUID: 249d83 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Haunted + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 73.63656 + posY: 1.66826892 + posZ: 51.2949 + rotX: 0.01472312 + rotY: 269.998657 + rotZ: 180.026688 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 290801 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2623': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Basic Weakness + GMNotes: '' + GUID: 3575a3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Paranoia + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 60.2334442 + posY: 1.36171019 + posZ: 62.84418 + rotX: 0.0131824408 + rotY: 269.998535 + rotZ: 0.0226880386 + 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 + UniqueBack: false + Description: Basic Weakness + GMNotes: '' + GUID: 57e648 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Narcolepsy + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 82.24709 + posY: 1.371798 + posZ: 69.50579 + rotX: 0.0208078641 + rotY: 269.9998 + rotZ: 0.01677146 + 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 + UniqueBack: false + Description: Basic Weakness + GMNotes: '' + GUID: 406ab2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Your Worst Nightmare + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 80.44901 + posY: 1.53057539 + posZ: 58.7713966 + rotX: 0.0195846576 + rotY: 269.9999 + rotZ: 0.0153481439 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 290805 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2623': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Basic Weakness + GMNotes: '' + GUID: b2ef43 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Indebted + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 69.6492 + posY: 1.37130547 + posZ: 83.45329 + rotX: 0.02080887 + rotY: 269.997437 + rotZ: 0.0167718846 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2903': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '2908': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '2910': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + '4381': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 290321 +- 291019 +- 290804 +- 438122 +- 290807 +- 291019 +- 438125 +- 290800 +- 290818 +- 290810 +- 290810 +- 290803 +- 290813 +- 290805 +- 290806 +- 438126 +- 290811 +- 290814 +- 290806 +- 438124 +- 290817 +- 290815 +- 290321 +- 290816 +- 290807 +- 290801 +- 290320 +- 438123 +- 290800 +- 290320 +- 290802 +- 290801 +- 438127 +- 438128 +- 290805 +Description: '' +GMNotes: '' +GUID: d95bd6 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: All Weaknesses +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -24.5466 + posY: 1.4736917 + posZ: 78.6946 + rotX: 0.0207950156 + rotY: 270.046326 + rotZ: 180.0168 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Weakness decks 750fdd/Deck Core 728f7e.yaml b/unpacked/Custom_Model_Bag Weakness decks 750fdd/Deck Core 728f7e.yaml new file mode 100644 index 000000000..1501c2f31 --- /dev/null +++ b/unpacked/Custom_Model_Bag Weakness decks 750fdd/Deck Core 728f7e.yaml @@ -0,0 +1,473 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 266616 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2623': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Enemy + GMNotes: '' + GUID: b239d7 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Mob Enforcer + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 59.38398 + posY: 1.36537349 + posZ: 75.9246 + rotX: 0.02080847 + rotY: 269.999084 + rotZ: 0.0167746339 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 266617 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2623': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Enemy + GMNotes: '' + GUID: 16a89d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Silver Twilight Acolyte + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 59.2340546 + posY: 1.36607194 + posZ: 78.4964752 + rotX: 0.0208077766 + rotY: 269.999542 + rotZ: 0.016773073 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 266618 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2623': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Enemy + GMNotes: '' + GUID: 4ea68b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Stubborn Detective + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 59.32571 + posY: 1.3645314 + posZ: 73.1198349 + rotX: 0.0208079163 + rotY: 269.999237 + rotZ: 0.0167740583 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 266603 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2623': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Basic Weakness + GMNotes: '' + GUID: d83baf + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Psychosis + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 59.276104 + posY: 1.36351478 + posZ: 69.70881 + rotX: 0.0208085179 + rotY: 269.998138 + rotZ: 0.0167739056 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 266604 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2623': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Basic Weakness + GMNotes: '' + GUID: 88ee43 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Hypochondria + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 58.93588 + posY: 1.36254549 + posZ: 67.02983 + rotX: 0.01864637 + rotY: 270.010132 + rotZ: 0.0065060514 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 266602 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2623': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Basic Weakness + GMNotes: '' + GUID: 249d83 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Haunted + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 59.11796 + posY: 1.48062611 + posZ: 64.84444 + rotX: 0.06331021 + rotY: 269.989655 + rotZ: 358.374146 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 266601 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2623': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Basic Weakness + GMNotes: '' + GUID: 3575a3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Paranoia + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 60.2334442 + posY: 1.36171019 + posZ: 62.84418 + rotX: 0.0131824408 + rotY: 269.998535 + rotZ: 0.0226880386 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 266601 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2623': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Basic Weakness + GMNotes: '' + GUID: c17498 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Paranoia + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 59.77021 + posY: 1.36098135 + posZ: 60.4401855 + rotX: 0.02080495 + rotY: 270.007172 + rotZ: 0.0167757 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 266600 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2623': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Basic Weakness + GMNotes: '' + GUID: 8598a4 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Amnesia + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 59.72087 + posY: 1.36020052 + posZ: 57.8339 + rotX: 0.0208095219 + rotY: 269.9957 + rotZ: 0.01677148 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 266600 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2623': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Basic Weakness + GMNotes: '' + GUID: 2210c1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Amnesia + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 60.0020523 + posY: 1.35961318 + posZ: 55.47854 + rotX: 0.0208090711 + rotY: 269.9957 + rotZ: 0.0167709384 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2666': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 266616 +- 266617 +- 266618 +- 266603 +- 266604 +- 266602 +- 266601 +- 266601 +- 266600 +- 266600 +Description: '' +GMNotes: '' +GUID: 728f7e +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Core +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -24.544 + posY: 1.34247613 + posZ: 85.5946 + rotX: 0.0208085459 + rotY: 269.999481 + rotZ: 180.016769 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Weakness decks 750fdd/Deck Return to The Path to Carcosa 9c5822.yaml b/unpacked/Custom_Model_Bag Weakness decks 750fdd/Deck Return to The Path to Carcosa 9c5822.yaml new file mode 100644 index 000000000..65700f450 --- /dev/null +++ b/unpacked/Custom_Model_Bag Weakness decks 750fdd/Deck Return to The Path to Carcosa 9c5822.yaml @@ -0,0 +1,172 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- 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 + UniqueBack: false + Description: Basic Weakness + GMNotes: '' + GUID: a5be8b + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Unspeakable Oath (Bloodthirst) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 80.46176 + posY: 1.37253177 + posZ: 73.76154 + rotX: 0.0148119656 + rotY: 270.004944 + rotZ: 0.0242835376 + 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 + UniqueBack: false + Description: Basic Weakness + GMNotes: '' + GUID: ea0fa1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Unspeakable Oath (Cowardice) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 80.61448 + posY: 1.53051329 + posZ: 73.92056 + rotX: 359.5608 + rotY: 270.008331 + rotZ: 0.0357966721 + 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 + UniqueBack: false + Description: Basic Weakness + GMNotes: '' + GUID: f6aba5 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Unspeakable Oath (Curiosity) + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 80.29785 + posY: 1.53495085 + posZ: 73.75409 + rotX: 0.02094236 + rotY: 269.999878 + rotZ: 0.0147951907 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '4381': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 438124 +- 438122 +- 438123 +Description: '' +GMNotes: '' +GUID: 9c5822 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Return to The Path to Carcosa +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -20.9389 + posY: 1.34322309 + posZ: 76.4067 + rotX: 0.020804463 + rotY: 270.013123 + rotZ: 180.016785 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' 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 new file mode 100644 index 000000000..b25906410 --- /dev/null +++ b/unpacked/Custom_Model_Bag Weakness decks 750fdd/Deck Return to the Dunwich Legacy 0b361d.yaml @@ -0,0 +1,129 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 266619 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2659': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Basic Weakness + GMNotes: '' + GUID: 31f72f + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Through the Gates + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 80.6700058 + posY: 1.5195359 + posZ: 80.590004 + rotX: 0.020808259 + rotY: 270.0 + rotZ: 180.016769 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 266619 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2659': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Basic Weakness + GMNotes: '' + GUID: fd9c56 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Through the Gates + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 80.6700058 + posY: 1.319536 + posZ: 80.590004 + rotX: 0.020808259 + rotY: 270.0 + rotZ: 180.016769 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2666': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 266619 +- 266619 +Description: '' +GMNotes: '' +GUID: 0b361d +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: Return to the Dunwich Legacy +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -20.9389 + posY: 1.35158014 + posZ: 83.3067 + rotX: 0.0208029114 + rotY: 270.018524 + rotZ: 180.016785 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' 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 new file mode 100644 index 000000000..4b24c8305 --- /dev/null +++ b/unpacked/Custom_Model_Bag Weakness decks 750fdd/Deck The Circle Undone f9215d.yaml @@ -0,0 +1,215 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: c1ce8e + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The 13th Vision + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 73.4997559 + posY: 1.51956129 + posZ: 58.73982 + rotX: 0.165745556 + rotY: 270.0014 + rotZ: 180.12236 + 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 + UniqueBack: false + Description: '' + GMNotes: '' + GUID: cebf6a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The 13th Vision + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 73.50002 + posY: 1.515151 + posZ: 58.74 + rotX: 0.0141672948 + rotY: 269.999756 + rotZ: 0.0134400167 + 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 + UniqueBack: false + Description: Circumstances Beyond Your Control + GMNotes: '' + GUID: cc65f3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: "The Tower \u2022 XVI" + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 77.49475 + posY: 1.3667146 + posZ: 58.34255 + rotX: 0.0165024456 + rotY: 270.0011 + rotZ: 0.0143494187 + 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 + UniqueBack: false + Description: Circumstances Beyond Your Control + GMNotes: '' + GUID: d5c93d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: "The Tower \u2022 XVI" + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 77.45068 + posY: 1.511687 + posZ: 58.2785454 + rotX: 0.0232664831 + rotY: 269.999329 + rotZ: 0.008670142 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2903': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 290321 +- 290321 +- 290320 +- 290320 +Description: '' +GMNotes: '' +GUID: f9215d +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: The Circle Undone +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -20.9389019 + posY: 1.34002638 + posZ: 67.2067 + rotX: 0.0208058339 + rotY: 270.014221 + rotZ: 180.016769 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' 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 new file mode 100644 index 000000000..a55106977 --- /dev/null +++ b/unpacked/Custom_Model_Bag Weakness decks 750fdd/Deck The Dream-Eaters c97be9.yaml @@ -0,0 +1,215 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- 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 + UniqueBack: false + Description: Basic Weakness + GMNotes: '' + GUID: eff3c8 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Self-Centered + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 82.3005 + posY: 1.37097037 + posZ: 66.61211 + rotX: 0.0208081 + rotY: 269.999756 + rotZ: 0.0167713575 + 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 + UniqueBack: false + Description: Basic Weakness + GMNotes: '' + GUID: 57e648 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Narcolepsy + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 82.24709 + posY: 1.371798 + posZ: 69.50579 + rotX: 0.0208078641 + rotY: 269.9998 + rotZ: 0.01677146 + 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 + UniqueBack: false + Description: Basic Weakness + GMNotes: '' + GUID: 406ab2 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Your Worst Nightmare + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 80.44901 + posY: 1.53057539 + posZ: 58.7713966 + rotX: 0.0195846576 + rotY: 269.9999 + rotZ: 0.0153481439 + 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 + UniqueBack: false + Description: Basic Weakness + GMNotes: '' + GUID: 447a08 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Kleptomania + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 80.45187 + posY: 1.51685083 + posZ: 58.63176 + rotX: 0.02240032 + rotY: 270.002625 + rotZ: 0.00697853556 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '4381': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 438125 +- 438127 +- 438128 +- 438126 +Description: '' +GMNotes: '' +GUID: c97be9 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: The Dream-Eaters +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -20.9389 + posY: 1.33867991 + posZ: 62.6066 + rotX: 0.0208044257 + rotY: 270.014435 + rotZ: 180.016785 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Weakness decks 750fdd/Deck The Dunwich Legacy 0da7f2.yaml b/unpacked/Custom_Model_Bag Weakness decks 750fdd/Deck The Dunwich Legacy 0da7f2.yaml new file mode 100644 index 000000000..33ba4063f --- /dev/null +++ b/unpacked/Custom_Model_Bag Weakness decks 750fdd/Deck The Dunwich Legacy 0da7f2.yaml @@ -0,0 +1,301 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 266706 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2623': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Basic Weakness + GMNotes: '' + GUID: d28be6 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Internal Injury + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 84.6602859 + posY: 1.47444046 + posZ: 84.9897461 + rotX: 0.0185761936 + rotY: 269.8689 + rotZ: 354.901 + 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: + '2623': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Basic Weakness + GMNotes: '' + GUID: 4fb446 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Internal Injury + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 84.63887 + posY: 1.376687 + posZ: 83.34652 + rotX: 0.0193456579 + rotY: 269.996979 + rotZ: 0.0182021931 + 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: + '2623': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Basic Weakness + GMNotes: '' + GUID: 016e3c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Chronophobia + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 80.96729 + posY: 1.37533462 + posZ: 83.17558 + rotX: 0.0208096765 + rotY: 269.9989 + rotZ: 0.016768232 + 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: + '2623': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Basic Weakness + GMNotes: '' + GUID: eeb330 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Chronophobia + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 77.61771 + posY: 1.37417972 + posZ: 83.3862152 + rotX: 0.02080846 + rotY: 269.998749 + rotZ: 0.0167724155 + 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: + '2623': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Basic Weakness + GMNotes: '' + GUID: 8df93a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Indebted + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 74.0187149 + posY: 1.37291312 + posZ: 83.52449 + rotX: 0.0208078064 + rotY: 269.9976 + rotZ: 0.0167761613 + 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: + '2623': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Basic Weakness + GMNotes: '' + GUID: b2ef43 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Indebted + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 69.6492 + posY: 1.37130547 + posZ: 83.45329 + rotX: 0.02080887 + rotY: 269.997437 + rotZ: 0.0167718846 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '2667': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 266706 +- 266706 +- 266707 +- 266707 +- 266705 +- 266705 +Description: '' +GMNotes: '' +GUID: 0da7f2 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: The Dunwich Legacy +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -20.9389 + posY: 1.35023785 + posZ: 85.6067 + rotX: 0.0208079219 + rotY: 270.0016 + rotZ: 180.016769 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Bag Weakness decks 750fdd/Deck The Forgotten Age 62c248.yaml b/unpacked/Custom_Model_Bag Weakness decks 750fdd/Deck The Forgotten Age 62c248.yaml new file mode 100644 index 000000000..9b571149b --- /dev/null +++ b/unpacked/Custom_Model_Bag Weakness decks 750fdd/Deck The Forgotten Age 62c248.yaml @@ -0,0 +1,129 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 449214 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2623': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Basic Weakness + GMNotes: '' + GUID: ba2ae1 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Doomed + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 73.57277 + posY: 1.367833 + posZ: 67.00315 + rotX: 0.0171475261 + rotY: 269.999878 + rotZ: 0.014829508 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 449213 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2623': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Basic Weakness + GMNotes: '' + GUID: dd3d09 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Dark Pact + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 73.7898941 + posY: 1.50798833 + posZ: 66.88923 + rotX: 0.0198830087 + rotY: 269.998352 + rotZ: 0.0241802726 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '4492': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 449214 +- 449213 +Description: '' +GMNotes: '' +GUID: 62c248 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: The Forgotten Age +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -20.9389 + posY: 1.34821379 + posZ: 71.8067 + rotX: 0.0208067466 + rotY: 270.005554 + rotZ: 180.016769 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' 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 new file mode 100644 index 000000000..a453ac0ff --- /dev/null +++ b/unpacked/Custom_Model_Bag Weakness decks 750fdd/Deck The Path to Carcosa 193ddf.yaml @@ -0,0 +1,215 @@ +Autoraise: true +ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 +ContainedObjects: +- Autoraise: true + CardID: 440510 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2623': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Basic Weakness + GMNotes: '' + GUID: 29766c + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Overzealous + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 84.76986 + posY: 1.37477219 + posZ: 76.5368347 + rotX: 0.0208052341 + rotY: 270.008362 + rotZ: 0.01677476 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 440510 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2623': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Basic Weakness + GMNotes: '' + GUID: 88a9b3 + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Overzealous + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 81.0201 + posY: 1.373406 + posZ: 76.52217 + rotX: 0.0208056755 + rotY: 270.00824 + rotZ: 0.016777223 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 440515 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2623': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Enemy + GMNotes: '' + GUID: da227d + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: The Thing That Follows + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 77.00673 + posY: 1.37194359 + posZ: 76.50519 + rotX: 0.0208081231 + rotY: 269.999054 + rotZ: 0.0167726167 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +- Autoraise: true + CardID: 440511 + ColorDiffuse: + b: 0.713235259 + g: 0.713235259 + r: 0.713235259 + CustomDeck: + '2623': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false + Description: Basic Weakness + GMNotes: '' + GUID: 3b3c0a + Grid: true + GridProjection: false + Hands: true + HideWhenFaceDown: true + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Card + Nickname: Drawing the Sign + SidewaysCard: false + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: 73.2821045 + posY: 1.37064064 + posZ: 76.67514 + rotX: 0.0208085366 + rotY: 269.999329 + rotZ: 0.0167736318 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomDeck: + '4405': + BackIsHidden: true + BackURL: https://i.imgur.com/EcbhVuh.jpg/ + FaceURL: http://cloud-3.steamusercontent.com/ugc/775107869048626382/DA1F5817A4067A74D883201F1AFAC096646A455B/ + NumHeight: 7 + NumWidth: 10 + UniqueBack: false +DeckIDs: +- 440510 +- 440510 +- 440515 +- 440511 +Description: '' +GMNotes: '' +GUID: 193ddf +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: false +LuaScript: '' +LuaScriptState: '' +Name: Deck +Nickname: The Path to Carcosa +SidewaysCard: false +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -20.9389 + posY: 1.34339261 + posZ: 78.7067 + rotX: 0.0208049621 + rotY: 270.011475 + rotZ: 180.016785 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Infinite_Bag Clue tokens 11e0cf.yaml b/unpacked/Custom_Model_Infinite_Bag Clue tokens 11e0cf.yaml new file mode 100644 index 000000000..4d1712780 --- /dev/null +++ b/unpacked/Custom_Model_Infinite_Bag Clue tokens 11e0cf.yaml @@ -0,0 +1,85 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +ContainedObjects: +- Autoraise: true + ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 + CustomImage: + CustomToken: + MergeDistancePixels: 5.0 + Stackable: true + Thickness: 0.1 + ImageScalar: 1.0 + ImageSecondaryURL: '' + ImageURL: https://i.imgur.com/wfCaVU0.png + WidthScale: 0.0 + Description: '' + GMNotes: '' + GUID: 0aff9d + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Custom_Token + Nickname: Clue + Snap: false + Sticky: true + Tooltip: true + Transform: + posX: 3.093334 + posY: 1.86752594 + posZ: -9.04332352 + rotX: 359.9743 + rotY: 0.03363436 + rotZ: 0.00401721243 + scaleX: 0.15 + scaleY: 1.0 + scaleZ: 0.15 + XmlUI: '' +CustomMesh: + CastShadows: true + ColliderURL: '' + Convex: true + DiffuseURL: https://i.imgur.com/czHrerS.jpg + MaterialIndex: 3 + MeshURL: https://pastebin.com/raw/ALrYhQGb + NormalURL: '' + TypeIndex: 7 +Description: '' +GMNotes: '' +GUID: 11e0cf +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: true +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +MeshIndex: -1 +Name: Custom_Model_Infinite_Bag +Nickname: Clue tokens +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 2.85741735 + posY: 1.67485678 + posZ: -8.856166 + rotX: 359.919739 + rotY: 269.999146 + rotZ: 0.0168434978 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Infinite_Bag Clue tokens 31fa39.yaml b/unpacked/Custom_Model_Infinite_Bag Clue tokens 31fa39.yaml new file mode 100644 index 000000000..435ff9578 --- /dev/null +++ b/unpacked/Custom_Model_Infinite_Bag Clue tokens 31fa39.yaml @@ -0,0 +1,85 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +ContainedObjects: +- Autoraise: true + ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 + CustomImage: + CustomToken: + MergeDistancePixels: 5.0 + Stackable: true + Thickness: 0.1 + ImageScalar: 1.0 + ImageSecondaryURL: '' + ImageURL: https://i.imgur.com/wfCaVU0.png + WidthScale: 0.0 + Description: '' + GMNotes: '' + GUID: 0aff9d + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Custom_Token + Nickname: Clue + Snap: false + Sticky: true + Tooltip: true + Transform: + posX: 3.093334 + posY: 1.86752594 + posZ: -9.04332352 + rotX: 359.9743 + rotY: 0.03363436 + rotZ: 0.00401721243 + scaleX: 0.15 + scaleY: 1.0 + scaleZ: 0.15 + XmlUI: '' +CustomMesh: + CastShadows: true + ColliderURL: '' + Convex: true + DiffuseURL: https://i.imgur.com/czHrerS.jpg + MaterialIndex: 3 + MeshURL: https://pastebin.com/raw/ALrYhQGb + NormalURL: '' + TypeIndex: 7 +Description: '' +GMNotes: '' +GUID: 31fa39 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: true +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +MeshIndex: -1 +Name: Custom_Model_Infinite_Bag +Nickname: Clue tokens +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -55.57024 + posY: 1.638615 + posZ: -1.23971236 + rotX: 359.9201 + rotY: 270.011841 + rotZ: 0.0168667957 + scaleX: 0.8 + scaleY: 0.8 + scaleZ: 0.8 +XmlUI: '' diff --git a/unpacked/Custom_Model_Infinite_Bag Clue tokens 3b2550.yaml b/unpacked/Custom_Model_Infinite_Bag Clue tokens 3b2550.yaml new file mode 100644 index 000000000..3332a9d71 --- /dev/null +++ b/unpacked/Custom_Model_Infinite_Bag Clue tokens 3b2550.yaml @@ -0,0 +1,85 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +ContainedObjects: +- Autoraise: true + ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 + CustomImage: + CustomToken: + MergeDistancePixels: 5.0 + Stackable: true + Thickness: 0.1 + ImageScalar: 1.0 + ImageSecondaryURL: '' + ImageURL: https://i.imgur.com/wfCaVU0.png + WidthScale: 0.0 + Description: '' + GMNotes: '' + GUID: 0aff9d + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Custom_Token + Nickname: Clue + Snap: false + Sticky: true + Tooltip: true + Transform: + posX: 3.093334 + posY: 1.86752594 + posZ: -9.04332352 + rotX: 359.9743 + rotY: 0.03363436 + rotZ: 0.00401721243 + scaleX: 0.15 + scaleY: 1.0 + scaleZ: 0.15 + XmlUI: '' +CustomMesh: + CastShadows: true + ColliderURL: '' + Convex: true + DiffuseURL: https://i.imgur.com/czHrerS.jpg + MaterialIndex: 3 + MeshURL: https://pastebin.com/raw/ALrYhQGb + NormalURL: '' + TypeIndex: 7 +Description: '' +GMNotes: '' +GUID: 3b2550 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: true +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +MeshIndex: -1 +Name: Custom_Model_Infinite_Bag +Nickname: Clue tokens +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -42.2273026 + posY: 1.611197 + posZ: -31.18165 + rotX: 0.0168775618 + rotY: 179.99321 + rotZ: 0.07987877 + scaleX: 0.8 + scaleY: 0.8 + scaleZ: 0.8 +XmlUI: '' diff --git a/unpacked/Custom_Model_Infinite_Bag Clue tokens fae2f6.yaml b/unpacked/Custom_Model_Infinite_Bag Clue tokens fae2f6.yaml new file mode 100644 index 000000000..f5e4ffde6 --- /dev/null +++ b/unpacked/Custom_Model_Infinite_Bag Clue tokens fae2f6.yaml @@ -0,0 +1,85 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +ContainedObjects: +- Autoraise: true + ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 + CustomImage: + CustomToken: + MergeDistancePixels: 5.0 + Stackable: true + Thickness: 0.1 + ImageScalar: 1.0 + ImageSecondaryURL: '' + ImageURL: https://i.imgur.com/wfCaVU0.png + WidthScale: 0.0 + Description: '' + GMNotes: '' + GUID: 0aff9d + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Custom_Token + Nickname: Clue + Snap: false + Sticky: true + Tooltip: true + Transform: + posX: 3.093334 + posY: 1.86752594 + posZ: -9.04332352 + rotX: 359.9743 + rotY: 0.03363436 + rotZ: 0.00401721243 + scaleX: 0.15 + scaleY: 1.0 + scaleZ: 0.15 + XmlUI: '' +CustomMesh: + CastShadows: true + ColliderURL: '' + Convex: true + DiffuseURL: https://i.imgur.com/czHrerS.jpg + MaterialIndex: 3 + MeshURL: https://pastebin.com/raw/ALrYhQGb + NormalURL: '' + TypeIndex: 7 +Description: '' +GMNotes: '' +GUID: fae2f6 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: true +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +MeshIndex: -1 +Name: Custom_Model_Infinite_Bag +Nickname: Clue tokens +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -44.10082 + posY: 1.63218 + posZ: 31.20747 + rotX: 359.983124 + rotY: -0.00267021521 + rotZ: 359.9201 + scaleX: 0.8 + scaleY: 0.8 + scaleZ: 0.8 +XmlUI: '' diff --git a/unpacked/Custom_Model_Infinite_Bag Connection markers 170f10.yaml b/unpacked/Custom_Model_Infinite_Bag Connection markers 170f10.yaml new file mode 100644 index 000000000..20c19a5b0 --- /dev/null +++ b/unpacked/Custom_Model_Infinite_Bag Connection markers 170f10.yaml @@ -0,0 +1,173 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +ContainedObjects: +- 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: '' + GMNotes: '' + GUID: 7234af + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: -50.3689461 + posY: 1.746232 + posZ: -0.169697866 + rotX: 3.9723378e-05 + rotY: 0.0600646921 + rotZ: 0.000624399632 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomMesh: + CastShadows: true + ColliderURL: '' + Convex: true + DiffuseURL: http://cloud-3.steamusercontent.com/ugc/949588657208009702/1786DA3A72B61BF39ADE9577B177797450011602/ + MaterialIndex: 3 + MeshURL: https://pastebin.com/raw/ALrYhQGb + NormalURL: '' + TypeIndex: 7 +Description: '' +GMNotes: '' +GUID: 170f10 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: true +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +MeshIndex: -1 +Name: Custom_Model_Infinite_Bag +Nickname: Connection markers +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -51.1129532 + posY: 1.65308774 + posZ: 1.09164929 + rotX: 359.9201 + rotY: 270.013916 + rotZ: 0.0168568641 + scaleX: 0.8 + scaleY: 1.0 + scaleZ: 0.8 +XmlUI: '' diff --git a/unpacked/Custom_Model_Infinite_Bag Connection markers 5dcccb.yaml b/unpacked/Custom_Model_Infinite_Bag Connection markers 5dcccb.yaml new file mode 100644 index 000000000..8032a1aa2 --- /dev/null +++ b/unpacked/Custom_Model_Infinite_Bag Connection markers 5dcccb.yaml @@ -0,0 +1,173 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +ContainedObjects: +- 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: '' + GMNotes: '' + GUID: 7234af + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: -50.3689461 + posY: 1.746232 + posZ: -0.169697866 + rotX: 3.9723378e-05 + rotY: 0.0600646921 + rotZ: 0.000624399632 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomMesh: + CastShadows: true + ColliderURL: '' + Convex: true + DiffuseURL: http://cloud-3.steamusercontent.com/ugc/949588657208009702/1786DA3A72B61BF39ADE9577B177797450011602/ + MaterialIndex: 3 + MeshURL: https://pastebin.com/raw/ALrYhQGb + NormalURL: '' + TypeIndex: 7 +Description: '' +GMNotes: '' +GUID: 5dcccb +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: true +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +MeshIndex: -1 +Name: Custom_Model_Infinite_Bag +Nickname: Connection markers +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -44.55864 + posY: 1.63575983 + posZ: -26.7243786 + rotX: 0.0168766864 + rotY: 179.993347 + rotZ: 0.0798778757 + scaleX: 0.8 + scaleY: 1.0 + scaleZ: 0.8 +XmlUI: '' diff --git a/unpacked/Custom_Model_Infinite_Bag Connection markers b118af.yaml b/unpacked/Custom_Model_Infinite_Bag Connection markers b118af.yaml new file mode 100644 index 000000000..9efe87e7d --- /dev/null +++ b/unpacked/Custom_Model_Infinite_Bag Connection markers b118af.yaml @@ -0,0 +1,173 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +ContainedObjects: +- 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: '' + GMNotes: '' + GUID: 7234af + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 44b0c5 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: '' + GMNotes: '' + GUID: 5b38c6 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + 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: -50.3689461 + posY: 1.746232 + posZ: -0.169697866 + rotX: 3.9723378e-05 + rotY: 0.0600646921 + rotZ: 0.000624399632 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 + XmlUI: '' +CustomMesh: + CastShadows: true + ColliderURL: '' + Convex: true + DiffuseURL: http://cloud-3.steamusercontent.com/ugc/949588657208009702/1786DA3A72B61BF39ADE9577B177797450011602/ + MaterialIndex: 3 + MeshURL: https://pastebin.com/raw/ALrYhQGb + NormalURL: '' + TypeIndex: 7 +Description: '' +GMNotes: '' +GUID: b118af +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: true +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +MeshIndex: -1 +Name: Custom_Model_Infinite_Bag +Nickname: Connection markers +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -41.7694435 + posY: 1.64761746 + posZ: 26.7502 + rotX: 359.983154 + rotY: 0.01408644 + rotZ: 359.9201 + scaleX: 0.8 + scaleY: 1.0 + scaleZ: 0.8 +XmlUI: '' diff --git a/unpacked/Custom_Model_Infinite_Bag Damage Tokens 480bda.yaml b/unpacked/Custom_Model_Infinite_Bag Damage Tokens 480bda.yaml new file mode 100644 index 000000000..0fb26f043 --- /dev/null +++ b/unpacked/Custom_Model_Infinite_Bag Damage Tokens 480bda.yaml @@ -0,0 +1,430 @@ +Autoraise: true +ColorDiffuse: + b: 0.0 + g: 0.00426460849 + r: 0.695122 +ContainedObjects: +- Autoraise: true + ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 + CustomImage: + CustomToken: + MergeDistancePixels: 5.0 + Stackable: false + Thickness: 0.1 + ImageScalar: 1.0 + ImageSecondaryURL: '' + ImageURL: https://i.imgur.com/XIJHw3J.png + WidthScale: 0.0 + Description: '' + GMNotes: '' + GUID: 142b55 + Grid: false + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Custom_Token + Nickname: Damage + Snap: false + States: + '2': + Autoraise: true + ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 + CustomImage: + CustomToken: + MergeDistancePixels: 5.0 + Stackable: false + Thickness: 0.1 + ImageScalar: 1.0 + ImageSecondaryURL: '' + ImageURL: https://i.imgur.com/55w514N.png + WidthScale: 0.0 + Description: '' + GMNotes: '' + GUID: c6ddbe + Grid: false + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Custom_Token + Nickname: Damage + Snap: false + Sticky: true + Tooltip: true + Transform: + posX: -28.3444748 + posY: 1.112169 + posZ: 19.0119534 + rotX: 0.000318417122 + rotY: 270.007721 + rotZ: 359.99176 + scaleX: 0.25 + scaleY: 1.0 + scaleZ: 0.25 + XmlUI: '' + '3': + Autoraise: true + ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 + CustomImage: + CustomToken: + MergeDistancePixels: 5.0 + Stackable: false + Thickness: 0.1 + ImageScalar: 1.0 + ImageSecondaryURL: '' + ImageURL: https://i.imgur.com/eqRC712.png + WidthScale: 0.0 + Description: '' + GMNotes: '' + GUID: a0f2a0 + Grid: false + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Custom_Token + Nickname: Damage + Snap: false + Sticky: true + Tooltip: true + Transform: + posX: -28.3444748 + posY: 1.11216891 + posZ: 19.0119534 + rotX: 0.0003119017 + rotY: 270.007874 + rotZ: 359.99173 + scaleX: 0.25 + scaleY: 1.0 + scaleZ: 0.25 + XmlUI: '' + '4': + Autoraise: true + ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 + CustomImage: + CustomToken: + MergeDistancePixels: 5.0 + Stackable: false + Thickness: 0.1 + ImageScalar: 1.0 + ImageSecondaryURL: '' + ImageURL: https://i.imgur.com/2j2uZm4.png + WidthScale: 0.0 + Description: '' + GMNotes: '' + GUID: 24c940 + Grid: false + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Custom_Token + Nickname: Damage + Snap: false + Sticky: true + Tooltip: true + Transform: + posX: -28.3444748 + posY: 1.11216891 + posZ: 19.0119534 + rotX: 0.0003254045 + rotY: 270.008026 + rotZ: 359.99173 + scaleX: 0.25 + scaleY: 1.0 + scaleZ: 0.25 + XmlUI: '' + '5': + Autoraise: true + ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 + CustomImage: + CustomToken: + MergeDistancePixels: 5.0 + Stackable: false + Thickness: 0.1 + ImageScalar: 1.0 + ImageSecondaryURL: '' + ImageURL: https://i.imgur.com/TA30vp2.png + WidthScale: 0.0 + Description: '' + GMNotes: '' + GUID: ec79a1 + Grid: false + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Custom_Token + Nickname: Damage + Snap: false + Sticky: true + Tooltip: true + Transform: + posX: -28.3444748 + posY: 1.11216879 + posZ: 19.0119534 + rotX: 0.000309352879 + rotY: 270.008 + rotZ: 359.99173 + scaleX: 0.25 + scaleY: 1.0 + scaleZ: 0.25 + XmlUI: '' + '6': + Autoraise: true + ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 + CustomImage: + CustomToken: + MergeDistancePixels: 5.0 + Stackable: false + Thickness: 0.1 + ImageScalar: 1.0 + ImageSecondaryURL: '' + ImageURL: https://i.imgur.com/3KcFeRP.png + WidthScale: 0.0 + Description: '' + GMNotes: '' + GUID: afe500 + Grid: false + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Custom_Token + Nickname: Damage + Snap: false + Sticky: true + Tooltip: true + Transform: + posX: -28.3444729 + posY: 1.11216879 + posZ: 19.0119514 + rotX: 0.00031043886 + rotY: 270.008423 + rotZ: 359.99176 + scaleX: 0.25 + scaleY: 1.0 + scaleZ: 0.25 + XmlUI: '' + '7': + Autoraise: true + ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 + CustomImage: + CustomToken: + MergeDistancePixels: 5.0 + Stackable: false + Thickness: 0.1 + ImageScalar: 1.0 + ImageSecondaryURL: '' + ImageURL: https://i.imgur.com/1ebIZMK.png + WidthScale: 0.0 + Description: '' + GMNotes: '' + GUID: c7cbd1 + Grid: false + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Custom_Token + Nickname: Damage + Snap: false + Sticky: true + Tooltip: true + Transform: + posX: -28.3444729 + posY: 1.11216891 + posZ: 19.0119514 + rotX: 0.000295429461 + rotY: 270.00824 + rotZ: 359.99176 + scaleX: 0.25 + scaleY: 1.0 + scaleZ: 0.25 + XmlUI: '' + '8': + Autoraise: true + ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 + CustomImage: + CustomToken: + MergeDistancePixels: 5.0 + Stackable: false + Thickness: 0.1 + ImageScalar: 1.0 + ImageSecondaryURL: '' + ImageURL: https://i.imgur.com/Rsb9QIq.png + WidthScale: 0.0 + Description: '' + GMNotes: '' + GUID: 67b357 + Grid: false + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Custom_Token + Nickname: Damage + Snap: false + Sticky: true + Tooltip: true + Transform: + posX: -28.3444729 + posY: 1.11216891 + posZ: 19.01195 + rotX: 0.000306701084 + rotY: 270.0082 + rotZ: 359.99173 + scaleX: 0.25 + scaleY: 1.0 + scaleZ: 0.25 + XmlUI: '' + '9': + Autoraise: true + ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 + CustomImage: + CustomToken: + MergeDistancePixels: 5.0 + Stackable: false + Thickness: 0.1 + ImageScalar: 1.0 + ImageSecondaryURL: '' + ImageURL: https://i.imgur.com/vysRt4N.png + WidthScale: 0.0 + Description: '' + GMNotes: '' + GUID: 582a00 + Grid: false + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Custom_Token + Nickname: Damage + Snap: false + Sticky: true + Tooltip: true + Transform: + posX: -28.2681675 + posY: 1.21000624 + posZ: 14.044548 + rotX: -3.58944635e-05 + rotY: 270.006958 + rotZ: -1.48946117e-06 + scaleX: 0.25 + scaleY: 1.0 + scaleZ: 0.25 + XmlUI: '' + Sticky: true + Tooltip: true + Transform: + posX: -26.1982861 + posY: 1.312179 + posZ: 18.8184547 + rotX: -0.0003153145 + rotY: 0.0234753378 + rotZ: 0.008287305 + scaleX: 0.25 + scaleY: 1.0 + scaleZ: 0.25 + XmlUI: '' +CustomMesh: + CastShadows: true + ColliderURL: '' + Convex: true + CustomShader: + FresnelStrength: 0.1 + SpecularColor: + b: 0.745098054 + g: 0.8117647 + r: 0.8745098 + SpecularIntensity: 0.05 + SpecularSharpness: 3.000001 + DiffuseURL: https://i.imgur.com/M9Mnhub.jpg + MaterialIndex: 1 + MeshURL: https://pastebin.com/raw/ALrYhQGb + NormalURL: '' + TypeIndex: 7 +Description: '' +GMNotes: '' +GUID: 480bda +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: true +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +MeshIndex: -1 +Name: Custom_Model_Infinite_Bag +Nickname: Damage Tokens +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -53.3474922 + posY: 1.65620267 + posZ: 1.09091377 + rotX: 359.9201 + rotY: 270.0152 + rotZ: 0.0168580543 + scaleX: 0.8 + scaleY: 1.0 + scaleZ: 0.8 +XmlUI: '' diff --git a/unpacked/Custom_Model_Infinite_Bag Damage Tokens 93f4a0.yaml b/unpacked/Custom_Model_Infinite_Bag Damage Tokens 93f4a0.yaml new file mode 100644 index 000000000..f52fd90e9 --- /dev/null +++ b/unpacked/Custom_Model_Infinite_Bag Damage Tokens 93f4a0.yaml @@ -0,0 +1,430 @@ +Autoraise: true +ColorDiffuse: + b: 0.0 + g: 0.00426460849 + r: 0.695122 +ContainedObjects: +- Autoraise: true + ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 + CustomImage: + CustomToken: + MergeDistancePixels: 5.0 + Stackable: false + Thickness: 0.1 + ImageScalar: 1.0 + ImageSecondaryURL: '' + ImageURL: https://i.imgur.com/XIJHw3J.png + WidthScale: 0.0 + Description: '' + GMNotes: '' + GUID: 142b55 + Grid: false + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Custom_Token + Nickname: Damage + Snap: false + States: + '2': + Autoraise: true + ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 + CustomImage: + CustomToken: + MergeDistancePixels: 5.0 + Stackable: false + Thickness: 0.1 + ImageScalar: 1.0 + ImageSecondaryURL: '' + ImageURL: https://i.imgur.com/55w514N.png + WidthScale: 0.0 + Description: '' + GMNotes: '' + GUID: c6ddbe + Grid: false + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Custom_Token + Nickname: Damage + Snap: false + Sticky: true + Tooltip: true + Transform: + posX: -28.3444748 + posY: 1.112169 + posZ: 19.0119534 + rotX: 0.000318417122 + rotY: 270.007721 + rotZ: 359.99176 + scaleX: 0.25 + scaleY: 1.0 + scaleZ: 0.25 + XmlUI: '' + '3': + Autoraise: true + ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 + CustomImage: + CustomToken: + MergeDistancePixels: 5.0 + Stackable: false + Thickness: 0.1 + ImageScalar: 1.0 + ImageSecondaryURL: '' + ImageURL: https://i.imgur.com/eqRC712.png + WidthScale: 0.0 + Description: '' + GMNotes: '' + GUID: a0f2a0 + Grid: false + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Custom_Token + Nickname: Damage + Snap: false + Sticky: true + Tooltip: true + Transform: + posX: -28.3444748 + posY: 1.11216891 + posZ: 19.0119534 + rotX: 0.0003119017 + rotY: 270.007874 + rotZ: 359.99173 + scaleX: 0.25 + scaleY: 1.0 + scaleZ: 0.25 + XmlUI: '' + '4': + Autoraise: true + ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 + CustomImage: + CustomToken: + MergeDistancePixels: 5.0 + Stackable: false + Thickness: 0.1 + ImageScalar: 1.0 + ImageSecondaryURL: '' + ImageURL: https://i.imgur.com/2j2uZm4.png + WidthScale: 0.0 + Description: '' + GMNotes: '' + GUID: 24c940 + Grid: false + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Custom_Token + Nickname: Damage + Snap: false + Sticky: true + Tooltip: true + Transform: + posX: -28.3444748 + posY: 1.11216891 + posZ: 19.0119534 + rotX: 0.0003254045 + rotY: 270.008026 + rotZ: 359.99173 + scaleX: 0.25 + scaleY: 1.0 + scaleZ: 0.25 + XmlUI: '' + '5': + Autoraise: true + ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 + CustomImage: + CustomToken: + MergeDistancePixels: 5.0 + Stackable: false + Thickness: 0.1 + ImageScalar: 1.0 + ImageSecondaryURL: '' + ImageURL: https://i.imgur.com/TA30vp2.png + WidthScale: 0.0 + Description: '' + GMNotes: '' + GUID: ec79a1 + Grid: false + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Custom_Token + Nickname: Damage + Snap: false + Sticky: true + Tooltip: true + Transform: + posX: -28.3444748 + posY: 1.11216879 + posZ: 19.0119534 + rotX: 0.000309352879 + rotY: 270.008 + rotZ: 359.99173 + scaleX: 0.25 + scaleY: 1.0 + scaleZ: 0.25 + XmlUI: '' + '6': + Autoraise: true + ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 + CustomImage: + CustomToken: + MergeDistancePixels: 5.0 + Stackable: false + Thickness: 0.1 + ImageScalar: 1.0 + ImageSecondaryURL: '' + ImageURL: https://i.imgur.com/3KcFeRP.png + WidthScale: 0.0 + Description: '' + GMNotes: '' + GUID: afe500 + Grid: false + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Custom_Token + Nickname: Damage + Snap: false + Sticky: true + Tooltip: true + Transform: + posX: -28.3444729 + posY: 1.11216879 + posZ: 19.0119514 + rotX: 0.00031043886 + rotY: 270.008423 + rotZ: 359.99176 + scaleX: 0.25 + scaleY: 1.0 + scaleZ: 0.25 + XmlUI: '' + '7': + Autoraise: true + ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 + CustomImage: + CustomToken: + MergeDistancePixels: 5.0 + Stackable: false + Thickness: 0.1 + ImageScalar: 1.0 + ImageSecondaryURL: '' + ImageURL: https://i.imgur.com/1ebIZMK.png + WidthScale: 0.0 + Description: '' + GMNotes: '' + GUID: c7cbd1 + Grid: false + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Custom_Token + Nickname: Damage + Snap: false + Sticky: true + Tooltip: true + Transform: + posX: -28.3444729 + posY: 1.11216891 + posZ: 19.0119514 + rotX: 0.000295429461 + rotY: 270.00824 + rotZ: 359.99176 + scaleX: 0.25 + scaleY: 1.0 + scaleZ: 0.25 + XmlUI: '' + '8': + Autoraise: true + ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 + CustomImage: + CustomToken: + MergeDistancePixels: 5.0 + Stackable: false + Thickness: 0.1 + ImageScalar: 1.0 + ImageSecondaryURL: '' + ImageURL: https://i.imgur.com/Rsb9QIq.png + WidthScale: 0.0 + Description: '' + GMNotes: '' + GUID: 67b357 + Grid: false + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Custom_Token + Nickname: Damage + Snap: false + Sticky: true + Tooltip: true + Transform: + posX: -28.3444729 + posY: 1.11216891 + posZ: 19.01195 + rotX: 0.000306701084 + rotY: 270.0082 + rotZ: 359.99173 + scaleX: 0.25 + scaleY: 1.0 + scaleZ: 0.25 + XmlUI: '' + '9': + Autoraise: true + ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 + CustomImage: + CustomToken: + MergeDistancePixels: 5.0 + Stackable: false + Thickness: 0.1 + ImageScalar: 1.0 + ImageSecondaryURL: '' + ImageURL: https://i.imgur.com/vysRt4N.png + WidthScale: 0.0 + Description: '' + GMNotes: '' + GUID: 582a00 + Grid: false + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Custom_Token + Nickname: Damage + Snap: false + Sticky: true + Tooltip: true + Transform: + posX: -28.2681675 + posY: 1.21000624 + posZ: 14.044548 + rotX: -3.58944635e-05 + rotY: 270.006958 + rotZ: -1.48946117e-06 + scaleX: 0.25 + scaleY: 1.0 + scaleZ: 0.25 + XmlUI: '' + Sticky: true + Tooltip: true + Transform: + posX: -26.1982861 + posY: 1.312179 + posZ: 18.8184547 + rotX: -0.0003153145 + rotY: 0.0234753378 + rotZ: 0.008287305 + scaleX: 0.25 + scaleY: 1.0 + scaleZ: 0.25 + XmlUI: '' +CustomMesh: + CastShadows: true + ColliderURL: '' + Convex: true + CustomShader: + FresnelStrength: 0.1 + SpecularColor: + b: 0.745098054 + g: 0.8117647 + r: 0.8745098 + SpecularIntensity: 0.05 + SpecularSharpness: 3.000001 + DiffuseURL: https://i.imgur.com/M9Mnhub.jpg + MaterialIndex: 1 + MeshURL: https://pastebin.com/raw/ALrYhQGb + NormalURL: '' + TypeIndex: 7 +Description: '' +GMNotes: '' +GUID: 93f4a0 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: true +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +MeshIndex: -1 +Name: Custom_Model_Infinite_Bag +Nickname: Damage Tokens +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -44.5578957 + posY: 1.6351006 + posZ: -28.9589272 + rotX: 0.016877912 + rotY: 179.9944 + rotZ: 0.07987839 + scaleX: 0.8 + scaleY: 1.0 + scaleZ: 0.8 +XmlUI: '' diff --git a/unpacked/Custom_Model_Infinite_Bag Damage Tokens b0ef6c.yaml b/unpacked/Custom_Model_Infinite_Bag Damage Tokens b0ef6c.yaml new file mode 100644 index 000000000..f5eddae1e --- /dev/null +++ b/unpacked/Custom_Model_Infinite_Bag Damage Tokens b0ef6c.yaml @@ -0,0 +1,430 @@ +Autoraise: true +ColorDiffuse: + b: 0.0 + g: 0.00426460849 + r: 0.695122 +ContainedObjects: +- Autoraise: true + ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 + CustomImage: + CustomToken: + MergeDistancePixels: 5.0 + Stackable: false + Thickness: 0.1 + ImageScalar: 1.0 + ImageSecondaryURL: '' + ImageURL: https://i.imgur.com/XIJHw3J.png + WidthScale: 0.0 + Description: '' + GMNotes: '' + GUID: 142b55 + Grid: false + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Custom_Token + Nickname: Damage + Snap: false + States: + '2': + Autoraise: true + ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 + CustomImage: + CustomToken: + MergeDistancePixels: 5.0 + Stackable: false + Thickness: 0.1 + ImageScalar: 1.0 + ImageSecondaryURL: '' + ImageURL: https://i.imgur.com/55w514N.png + WidthScale: 0.0 + Description: '' + GMNotes: '' + GUID: c6ddbe + Grid: false + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Custom_Token + Nickname: Damage + Snap: false + Sticky: true + Tooltip: true + Transform: + posX: -28.3444748 + posY: 1.112169 + posZ: 19.0119534 + rotX: 0.000318417122 + rotY: 270.007721 + rotZ: 359.99176 + scaleX: 0.25 + scaleY: 1.0 + scaleZ: 0.25 + XmlUI: '' + '3': + Autoraise: true + ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 + CustomImage: + CustomToken: + MergeDistancePixels: 5.0 + Stackable: false + Thickness: 0.1 + ImageScalar: 1.0 + ImageSecondaryURL: '' + ImageURL: https://i.imgur.com/eqRC712.png + WidthScale: 0.0 + Description: '' + GMNotes: '' + GUID: a0f2a0 + Grid: false + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Custom_Token + Nickname: Damage + Snap: false + Sticky: true + Tooltip: true + Transform: + posX: -28.3444748 + posY: 1.11216891 + posZ: 19.0119534 + rotX: 0.0003119017 + rotY: 270.007874 + rotZ: 359.99173 + scaleX: 0.25 + scaleY: 1.0 + scaleZ: 0.25 + XmlUI: '' + '4': + Autoraise: true + ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 + CustomImage: + CustomToken: + MergeDistancePixels: 5.0 + Stackable: false + Thickness: 0.1 + ImageScalar: 1.0 + ImageSecondaryURL: '' + ImageURL: https://i.imgur.com/2j2uZm4.png + WidthScale: 0.0 + Description: '' + GMNotes: '' + GUID: 24c940 + Grid: false + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Custom_Token + Nickname: Damage + Snap: false + Sticky: true + Tooltip: true + Transform: + posX: -28.3444748 + posY: 1.11216891 + posZ: 19.0119534 + rotX: 0.0003254045 + rotY: 270.008026 + rotZ: 359.99173 + scaleX: 0.25 + scaleY: 1.0 + scaleZ: 0.25 + XmlUI: '' + '5': + Autoraise: true + ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 + CustomImage: + CustomToken: + MergeDistancePixels: 5.0 + Stackable: false + Thickness: 0.1 + ImageScalar: 1.0 + ImageSecondaryURL: '' + ImageURL: https://i.imgur.com/TA30vp2.png + WidthScale: 0.0 + Description: '' + GMNotes: '' + GUID: ec79a1 + Grid: false + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Custom_Token + Nickname: Damage + Snap: false + Sticky: true + Tooltip: true + Transform: + posX: -28.3444748 + posY: 1.11216879 + posZ: 19.0119534 + rotX: 0.000309352879 + rotY: 270.008 + rotZ: 359.99173 + scaleX: 0.25 + scaleY: 1.0 + scaleZ: 0.25 + XmlUI: '' + '6': + Autoraise: true + ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 + CustomImage: + CustomToken: + MergeDistancePixels: 5.0 + Stackable: false + Thickness: 0.1 + ImageScalar: 1.0 + ImageSecondaryURL: '' + ImageURL: https://i.imgur.com/3KcFeRP.png + WidthScale: 0.0 + Description: '' + GMNotes: '' + GUID: afe500 + Grid: false + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Custom_Token + Nickname: Damage + Snap: false + Sticky: true + Tooltip: true + Transform: + posX: -28.3444729 + posY: 1.11216879 + posZ: 19.0119514 + rotX: 0.00031043886 + rotY: 270.008423 + rotZ: 359.99176 + scaleX: 0.25 + scaleY: 1.0 + scaleZ: 0.25 + XmlUI: '' + '7': + Autoraise: true + ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 + CustomImage: + CustomToken: + MergeDistancePixels: 5.0 + Stackable: false + Thickness: 0.1 + ImageScalar: 1.0 + ImageSecondaryURL: '' + ImageURL: https://i.imgur.com/1ebIZMK.png + WidthScale: 0.0 + Description: '' + GMNotes: '' + GUID: c7cbd1 + Grid: false + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Custom_Token + Nickname: Damage + Snap: false + Sticky: true + Tooltip: true + Transform: + posX: -28.3444729 + posY: 1.11216891 + posZ: 19.0119514 + rotX: 0.000295429461 + rotY: 270.00824 + rotZ: 359.99176 + scaleX: 0.25 + scaleY: 1.0 + scaleZ: 0.25 + XmlUI: '' + '8': + Autoraise: true + ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 + CustomImage: + CustomToken: + MergeDistancePixels: 5.0 + Stackable: false + Thickness: 0.1 + ImageScalar: 1.0 + ImageSecondaryURL: '' + ImageURL: https://i.imgur.com/Rsb9QIq.png + WidthScale: 0.0 + Description: '' + GMNotes: '' + GUID: 67b357 + Grid: false + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Custom_Token + Nickname: Damage + Snap: false + Sticky: true + Tooltip: true + Transform: + posX: -28.3444729 + posY: 1.11216891 + posZ: 19.01195 + rotX: 0.000306701084 + rotY: 270.0082 + rotZ: 359.99173 + scaleX: 0.25 + scaleY: 1.0 + scaleZ: 0.25 + XmlUI: '' + '9': + Autoraise: true + ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 + CustomImage: + CustomToken: + MergeDistancePixels: 5.0 + Stackable: false + Thickness: 0.1 + ImageScalar: 1.0 + ImageSecondaryURL: '' + ImageURL: https://i.imgur.com/vysRt4N.png + WidthScale: 0.0 + Description: '' + GMNotes: '' + GUID: 582a00 + Grid: false + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Custom_Token + Nickname: Damage + Snap: false + Sticky: true + Tooltip: true + Transform: + posX: -28.2681675 + posY: 1.21000624 + posZ: 14.044548 + rotX: -3.58944635e-05 + rotY: 270.006958 + rotZ: -1.48946117e-06 + scaleX: 0.25 + scaleY: 1.0 + scaleZ: 0.25 + XmlUI: '' + Sticky: true + Tooltip: true + Transform: + posX: -26.1982861 + posY: 1.312179 + posZ: 18.8184547 + rotX: -0.0003153145 + rotY: 0.0234753378 + rotZ: 0.008287305 + scaleX: 0.25 + scaleY: 1.0 + scaleZ: 0.25 + XmlUI: '' +CustomMesh: + CastShadows: true + ColliderURL: '' + Convex: true + CustomShader: + FresnelStrength: 0.1 + SpecularColor: + b: 0.745098054 + g: 0.8117647 + r: 0.8745098 + SpecularIntensity: 0.05 + SpecularSharpness: 3.000001 + DiffuseURL: https://i.imgur.com/M9Mnhub.jpg + MaterialIndex: 1 + MeshURL: https://pastebin.com/raw/ALrYhQGb + NormalURL: '' + TypeIndex: 7 +Description: '' +GMNotes: '' +GUID: b0ef6c +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: true +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +MeshIndex: -1 +Name: Custom_Model_Infinite_Bag +Nickname: Damage Tokens +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -41.7701874 + posY: 1.64827657 + posZ: 28.9847412 + rotX: 359.983154 + rotY: 0.0133616813 + rotZ: 359.9201 + scaleX: 0.8 + scaleY: 1.0 + scaleZ: 0.8 +XmlUI: '' diff --git a/unpacked/Custom_Model_Infinite_Bag Doom tokens 16724b.yaml b/unpacked/Custom_Model_Infinite_Bag Doom tokens 16724b.yaml new file mode 100644 index 000000000..dc1f1b4da --- /dev/null +++ b/unpacked/Custom_Model_Infinite_Bag Doom tokens 16724b.yaml @@ -0,0 +1,86 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +ContainedObjects: +- Autoraise: true + ColorDiffuse: + b: 0.0 + g: 0.0 + r: 0.0 + CustomImage: + CustomTile: + Stackable: true + Stretch: true + Thickness: 0.1 + Type: 2 + ImageScalar: 1.0 + ImageSecondaryURL: '' + ImageURL: https://i.imgur.com/TE72fED.png + WidthScale: 0.0 + Description: '' + GMNotes: '' + GUID: 9ffa21 + Grid: false + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Custom_Tile + Nickname: Doom + Snap: false + Sticky: true + Tooltip: true + Transform: + posX: 2.75448537 + posY: 1.81637335 + posZ: 8.667457 + rotX: 359.9744 + rotY: 359.994171 + rotZ: 0.00416618 + scaleX: 0.35 + scaleY: 1.0 + scaleZ: 0.35 + XmlUI: '' +CustomMesh: + CastShadows: true + ColliderURL: '' + Convex: true + DiffuseURL: https://i.imgur.com/5Uy4hlP.jpg + MaterialIndex: 3 + MeshURL: https://pastebin.com/raw/ALrYhQGb + NormalURL: '' + TypeIndex: 7 +Description: '' +GMNotes: '' +GUID: 16724b +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: true +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +MeshIndex: -1 +Name: Custom_Model_Infinite_Bag +Nickname: Doom tokens +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -41.77022 + posY: 1.64893091 + posZ: 31.2073479 + rotX: 359.983124 + rotY: -0.0039583575 + rotZ: 359.920135 + scaleX: 0.8 + scaleY: 1.0 + scaleZ: 0.8 +XmlUI: '' diff --git a/unpacked/Custom_Model_Infinite_Bag Doom tokens 16fcd6.yaml b/unpacked/Custom_Model_Infinite_Bag Doom tokens 16fcd6.yaml new file mode 100644 index 000000000..a9ef252e5 --- /dev/null +++ b/unpacked/Custom_Model_Infinite_Bag Doom tokens 16fcd6.yaml @@ -0,0 +1,86 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +ContainedObjects: +- Autoraise: true + ColorDiffuse: + b: 0.0 + g: 0.0 + r: 0.0 + CustomImage: + CustomTile: + Stackable: true + Stretch: true + Thickness: 0.1 + Type: 2 + ImageScalar: 1.0 + ImageSecondaryURL: '' + ImageURL: https://i.imgur.com/TE72fED.png + WidthScale: 0.0 + Description: '' + GMNotes: '' + GUID: 9ffa21 + Grid: false + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Custom_Tile + Nickname: Doom + Snap: false + Sticky: true + Tooltip: true + Transform: + posX: 2.75448537 + posY: 1.81637335 + posZ: 8.667457 + rotX: 359.9744 + rotY: 359.994171 + rotZ: 0.00416618 + scaleX: 0.35 + scaleY: 1.0 + scaleZ: 0.35 + XmlUI: '' +CustomMesh: + CastShadows: true + ColliderURL: '' + Convex: true + DiffuseURL: https://i.imgur.com/5Uy4hlP.jpg + MaterialIndex: 3 + MeshURL: https://pastebin.com/raw/ALrYhQGb + NormalURL: '' + TypeIndex: 7 +Description: '' +GMNotes: '' +GUID: 16fcd6 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: true +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +MeshIndex: -1 +Name: Custom_Model_Infinite_Bag +Nickname: Doom tokens +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -44.5578766 + posY: 1.63444614 + posZ: -31.1815338 + rotX: 0.0168784056 + rotY: 179.994308 + rotZ: 0.0798786655 + scaleX: 0.8 + scaleY: 1.0 + scaleZ: 0.8 +XmlUI: '' diff --git a/unpacked/Custom_Model_Infinite_Bag Doom tokens 47ffc3.yaml b/unpacked/Custom_Model_Infinite_Bag Doom tokens 47ffc3.yaml new file mode 100644 index 000000000..474b8e5e9 --- /dev/null +++ b/unpacked/Custom_Model_Infinite_Bag Doom tokens 47ffc3.yaml @@ -0,0 +1,86 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +ContainedObjects: +- Autoraise: true + ColorDiffuse: + b: 0.0 + g: 0.0 + r: 0.0 + CustomImage: + CustomTile: + Stackable: true + Stretch: true + Thickness: 0.1 + Type: 2 + ImageScalar: 1.0 + ImageSecondaryURL: '' + ImageURL: https://i.imgur.com/TE72fED.png + WidthScale: 0.0 + Description: '' + GMNotes: '' + GUID: 9ffa21 + Grid: false + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Custom_Tile + Nickname: Doom + Snap: false + Sticky: true + Tooltip: true + Transform: + posX: 2.75448537 + posY: 1.81637335 + posZ: 8.667457 + rotX: 359.9744 + rotY: 359.994171 + rotZ: 0.00416618 + scaleX: 0.35 + scaleY: 1.0 + scaleZ: 0.35 + XmlUI: '' +CustomMesh: + CastShadows: true + ColliderURL: '' + Convex: true + DiffuseURL: https://i.imgur.com/5Uy4hlP.jpg + MaterialIndex: 3 + MeshURL: https://pastebin.com/raw/ALrYhQGb + NormalURL: '' + TypeIndex: 7 +Description: '' +GMNotes: '' +GUID: 47ffc3 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: true +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +MeshIndex: -1 +Name: Custom_Model_Infinite_Bag +Nickname: Doom tokens +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -55.5701027 + posY: 1.65930128 + posZ: 1.09087777 + rotX: 359.9201 + rotY: 270.0118 + rotZ: 0.0168705266 + scaleX: 0.8 + scaleY: 1.0 + scaleZ: 0.8 +XmlUI: '' diff --git a/unpacked/Custom_Model_Infinite_Bag Doom tokens b015d8.yaml b/unpacked/Custom_Model_Infinite_Bag Doom tokens b015d8.yaml new file mode 100644 index 000000000..6c72c5d9c --- /dev/null +++ b/unpacked/Custom_Model_Infinite_Bag Doom tokens b015d8.yaml @@ -0,0 +1,86 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +ContainedObjects: +- Autoraise: true + ColorDiffuse: + b: 0.0 + g: 0.0 + r: 0.0 + CustomImage: + CustomTile: + Stackable: true + Stretch: true + Thickness: 0.1 + Type: 2 + ImageScalar: 1.0 + ImageSecondaryURL: '' + ImageURL: https://i.imgur.com/TE72fED.png + WidthScale: 0.0 + Description: '' + GMNotes: '' + GUID: 9ffa21 + Grid: false + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Custom_Tile + Nickname: Doom + Snap: false + Sticky: true + Tooltip: true + Transform: + posX: 2.75448537 + posY: 1.81637335 + posZ: 8.667457 + rotX: 359.9744 + rotY: 359.994171 + rotZ: 0.00416618 + scaleX: 0.35 + scaleY: 1.0 + scaleZ: 0.35 + XmlUI: '' +CustomMesh: + CastShadows: true + ColliderURL: '' + Convex: true + DiffuseURL: https://i.imgur.com/5Uy4hlP.jpg + MaterialIndex: 3 + MeshURL: https://pastebin.com/raw/ALrYhQGb + NormalURL: '' + TypeIndex: 7 +Description: '' +GMNotes: '' +GUID: b015d8 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: true +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +MeshIndex: -1 +Name: Custom_Model_Infinite_Bag +Nickname: Doom tokens +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 2.76030445 + posY: 1.680186 + posZ: 8.817138 + rotX: 359.919739 + rotY: 269.999939 + rotZ: 0.0168426409 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Model_Infinite_Bag Horror tokens 7bd2a0.yaml b/unpacked/Custom_Model_Infinite_Bag Horror tokens 7bd2a0.yaml new file mode 100644 index 000000000..c0e49570d --- /dev/null +++ b/unpacked/Custom_Model_Infinite_Bag Horror tokens 7bd2a0.yaml @@ -0,0 +1,422 @@ +Autoraise: true +ColorDiffuse: + b: 0.4512195 + g: 0.2481721 + r: 0.192522347 +ContainedObjects: +- Autoraise: true + ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 + CustomImage: + CustomToken: + MergeDistancePixels: 5.0 + Stackable: false + Thickness: 0.1 + ImageScalar: 1.0 + ImageSecondaryURL: '' + ImageURL: https://i.imgur.com/Bh0BO47.png + WidthScale: 0.0 + Description: '' + GMNotes: '' + GUID: 36be72 + Grid: false + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Custom_Token + Nickname: Horror + Snap: false + States: + '2': + Autoraise: true + ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 + CustomImage: + CustomToken: + MergeDistancePixels: 5.0 + Stackable: false + Thickness: 0.1 + ImageScalar: 1.0 + ImageSecondaryURL: '' + ImageURL: https://i.imgur.com/NM2enxD.png + WidthScale: 0.0 + Description: '' + GMNotes: '' + GUID: 5c2361 + Grid: false + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Custom_Token + Nickname: Horror + Snap: false + Sticky: true + Tooltip: true + Transform: + posX: -27.7533741 + posY: 1.210006 + posZ: 15.9442654 + rotX: -2.02706469e-05 + rotY: 270.015259 + rotZ: 2.20759175e-05 + scaleX: 0.25 + scaleY: 1.0 + scaleZ: 0.25 + XmlUI: '' + '3': + Autoraise: true + ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 + CustomImage: + CustomToken: + MergeDistancePixels: 5.0 + Stackable: false + Thickness: 0.1 + ImageScalar: 1.0 + ImageSecondaryURL: '' + ImageURL: https://i.imgur.com/pZvTKA7.png + WidthScale: 0.0 + Description: '' + GMNotes: '' + GUID: 3a3415 + Grid: false + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Custom_Token + Nickname: Horror + Snap: false + Sticky: true + Tooltip: true + Transform: + posX: -27.7533741 + posY: 1.210006 + posZ: 15.9442368 + rotX: -1.04253941e-05 + rotY: 270.015137 + rotZ: 1.02804506e-05 + scaleX: 0.25 + scaleY: 1.0 + scaleZ: 0.25 + XmlUI: '' + '4': + Autoraise: true + ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 + CustomImage: + CustomToken: + MergeDistancePixels: 5.0 + Stackable: false + Thickness: 0.1 + ImageScalar: 1.0 + ImageSecondaryURL: '' + ImageURL: https://i.imgur.com/T7nvZBP.png + WidthScale: 0.0 + Description: '' + GMNotes: '' + GUID: 4a91a8 + Grid: false + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Custom_Token + Nickname: Horror + Snap: false + Sticky: true + Tooltip: true + Transform: + posX: -27.7533741 + posY: 1.21000612 + posZ: 15.9442348 + rotX: 1.89065361e-06 + rotY: 270.01532 + rotZ: 1.59575811e-05 + scaleX: 0.25 + scaleY: 1.0 + scaleZ: 0.25 + XmlUI: '' + '5': + Autoraise: true + ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 + CustomImage: + CustomToken: + MergeDistancePixels: 5.0 + Stackable: false + Thickness: 0.1 + ImageScalar: 1.0 + ImageSecondaryURL: '' + ImageURL: https://i.imgur.com/mOmg6pc.png + WidthScale: 0.0 + Description: '' + GMNotes: '' + GUID: 887aae + Grid: false + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Custom_Token + Nickname: Horror + Snap: false + Sticky: true + Tooltip: true + Transform: + posX: -27.7533741 + posY: 1.21000612 + posZ: 15.9442024 + rotX: -3.432232e-05 + rotY: 270.016 + rotZ: -3.73151761e-06 + scaleX: 0.25 + scaleY: 1.0 + scaleZ: 0.25 + XmlUI: '' + '6': + Autoraise: true + ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 + CustomImage: + CustomToken: + MergeDistancePixels: 5.0 + Stackable: false + Thickness: 0.1 + ImageScalar: 1.0 + ImageSecondaryURL: '' + ImageURL: https://i.imgur.com/eZcWjw1.png + WidthScale: 0.0 + Description: '' + GMNotes: '' + GUID: baa831 + Grid: false + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Custom_Token + Nickname: Horror + Snap: false + Sticky: true + Tooltip: true + Transform: + posX: -27.7533741 + posY: 1.21000624 + posZ: 15.94415 + rotX: -2.49414188e-05 + rotY: 270.0157 + rotZ: 2.92043842e-06 + scaleX: 0.25 + scaleY: 1.0 + scaleZ: 0.25 + XmlUI: '' + '7': + Autoraise: true + ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 + CustomImage: + CustomToken: + MergeDistancePixels: 5.0 + Stackable: false + Thickness: 0.1 + ImageScalar: 1.0 + ImageSecondaryURL: '' + ImageURL: https://i.imgur.com/r4zrAr7.png + WidthScale: 0.0 + Description: '' + GMNotes: '' + GUID: da94da + Grid: false + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Custom_Token + Nickname: Horror + Snap: false + Sticky: true + Tooltip: true + Transform: + posX: -27.7533741 + posY: 1.21000612 + posZ: 15.944108 + rotX: -2.33948358e-05 + rotY: 270.015656 + rotZ: 2.18774017e-06 + scaleX: 0.25 + scaleY: 1.0 + scaleZ: 0.25 + XmlUI: '' + '8': + Autoraise: true + ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 + CustomImage: + CustomToken: + MergeDistancePixels: 5.0 + Stackable: false + Thickness: 0.1 + ImageScalar: 1.0 + ImageSecondaryURL: '' + ImageURL: https://i.imgur.com/nFG5R0W.png + WidthScale: 0.0 + Description: '' + GMNotes: '' + GUID: 2e1687 + Grid: false + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Custom_Token + Nickname: Horror + Snap: false + Sticky: true + Tooltip: true + Transform: + posX: -27.753376 + posY: 1.210006 + posZ: 15.9440966 + rotX: -1.57902083e-08 + rotY: 270.016541 + rotZ: -2.19759459e-05 + scaleX: 0.25 + scaleY: 1.0 + scaleZ: 0.25 + XmlUI: '' + '9': + Autoraise: true + ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 + CustomImage: + CustomToken: + MergeDistancePixels: 5.0 + Stackable: false + Thickness: 0.1 + ImageScalar: 1.0 + ImageSecondaryURL: '' + ImageURL: https://i.imgur.com/Ud4OpBD.png + WidthScale: 0.0 + Description: '' + GMNotes: '' + GUID: a6f1e0 + Grid: false + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Custom_Token + Nickname: Horror + Snap: false + Sticky: true + Tooltip: true + Transform: + posX: -27.753376 + posY: 1.21000612 + posZ: 15.9440622 + rotX: -2.09277514e-05 + rotY: 270.016724 + rotZ: 4.970206e-05 + scaleX: 0.25 + scaleY: 1.0 + scaleZ: 0.25 + XmlUI: '' + Sticky: true + Tooltip: true + Transform: + posX: -26.4036713 + posY: 1.41001534 + posZ: 15.7281322 + rotX: 5.372964e-06 + rotY: 0.0300562512 + rotZ: 1.32273317e-05 + scaleX: 0.25 + scaleY: 1.0 + scaleZ: 0.25 + XmlUI: '' +CustomMesh: + CastShadows: true + ColliderURL: '' + Convex: true + DiffuseURL: https://i.imgur.com/thxMNGK.jpg + MaterialIndex: 1 + MeshURL: https://pastebin.com/raw/ALrYhQGb + NormalURL: '' + TypeIndex: 7 +Description: '' +GMNotes: '' +GUID: 7bd2a0 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: true +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +MeshIndex: -1 +Name: Custom_Model_Infinite_Bag +Nickname: Horror tokens +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -42.2273254 + posY: 1.63185155 + posZ: -28.958992 + rotX: 0.0168765113 + rotY: 179.994064 + rotZ: 0.07987546 + scaleX: 0.8 + scaleY: 1.0 + scaleZ: 0.8 +XmlUI: '' diff --git a/unpacked/Custom_Model_Infinite_Bag Horror tokens ae1a4e.yaml b/unpacked/Custom_Model_Infinite_Bag Horror tokens ae1a4e.yaml new file mode 100644 index 000000000..4a501ca11 --- /dev/null +++ b/unpacked/Custom_Model_Infinite_Bag Horror tokens ae1a4e.yaml @@ -0,0 +1,422 @@ +Autoraise: true +ColorDiffuse: + b: 0.4512195 + g: 0.2481721 + r: 0.192522347 +ContainedObjects: +- Autoraise: true + ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 + CustomImage: + CustomToken: + MergeDistancePixels: 5.0 + Stackable: false + Thickness: 0.1 + ImageScalar: 1.0 + ImageSecondaryURL: '' + ImageURL: https://i.imgur.com/Bh0BO47.png + WidthScale: 0.0 + Description: '' + GMNotes: '' + GUID: 36be72 + Grid: false + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Custom_Token + Nickname: Horror + Snap: false + States: + '2': + Autoraise: true + ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 + CustomImage: + CustomToken: + MergeDistancePixels: 5.0 + Stackable: false + Thickness: 0.1 + ImageScalar: 1.0 + ImageSecondaryURL: '' + ImageURL: https://i.imgur.com/NM2enxD.png + WidthScale: 0.0 + Description: '' + GMNotes: '' + GUID: 5c2361 + Grid: false + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Custom_Token + Nickname: Horror + Snap: false + Sticky: true + Tooltip: true + Transform: + posX: -27.7533741 + posY: 1.210006 + posZ: 15.9442654 + rotX: -2.02706469e-05 + rotY: 270.015259 + rotZ: 2.20759175e-05 + scaleX: 0.25 + scaleY: 1.0 + scaleZ: 0.25 + XmlUI: '' + '3': + Autoraise: true + ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 + CustomImage: + CustomToken: + MergeDistancePixels: 5.0 + Stackable: false + Thickness: 0.1 + ImageScalar: 1.0 + ImageSecondaryURL: '' + ImageURL: https://i.imgur.com/pZvTKA7.png + WidthScale: 0.0 + Description: '' + GMNotes: '' + GUID: 3a3415 + Grid: false + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Custom_Token + Nickname: Horror + Snap: false + Sticky: true + Tooltip: true + Transform: + posX: -27.7533741 + posY: 1.210006 + posZ: 15.9442368 + rotX: -1.04253941e-05 + rotY: 270.015137 + rotZ: 1.02804506e-05 + scaleX: 0.25 + scaleY: 1.0 + scaleZ: 0.25 + XmlUI: '' + '4': + Autoraise: true + ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 + CustomImage: + CustomToken: + MergeDistancePixels: 5.0 + Stackable: false + Thickness: 0.1 + ImageScalar: 1.0 + ImageSecondaryURL: '' + ImageURL: https://i.imgur.com/T7nvZBP.png + WidthScale: 0.0 + Description: '' + GMNotes: '' + GUID: 4a91a8 + Grid: false + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Custom_Token + Nickname: Horror + Snap: false + Sticky: true + Tooltip: true + Transform: + posX: -27.7533741 + posY: 1.21000612 + posZ: 15.9442348 + rotX: 1.89065361e-06 + rotY: 270.01532 + rotZ: 1.59575811e-05 + scaleX: 0.25 + scaleY: 1.0 + scaleZ: 0.25 + XmlUI: '' + '5': + Autoraise: true + ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 + CustomImage: + CustomToken: + MergeDistancePixels: 5.0 + Stackable: false + Thickness: 0.1 + ImageScalar: 1.0 + ImageSecondaryURL: '' + ImageURL: https://i.imgur.com/mOmg6pc.png + WidthScale: 0.0 + Description: '' + GMNotes: '' + GUID: 887aae + Grid: false + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Custom_Token + Nickname: Horror + Snap: false + Sticky: true + Tooltip: true + Transform: + posX: -27.7533741 + posY: 1.21000612 + posZ: 15.9442024 + rotX: -3.432232e-05 + rotY: 270.016 + rotZ: -3.73151761e-06 + scaleX: 0.25 + scaleY: 1.0 + scaleZ: 0.25 + XmlUI: '' + '6': + Autoraise: true + ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 + CustomImage: + CustomToken: + MergeDistancePixels: 5.0 + Stackable: false + Thickness: 0.1 + ImageScalar: 1.0 + ImageSecondaryURL: '' + ImageURL: https://i.imgur.com/eZcWjw1.png + WidthScale: 0.0 + Description: '' + GMNotes: '' + GUID: baa831 + Grid: false + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Custom_Token + Nickname: Horror + Snap: false + Sticky: true + Tooltip: true + Transform: + posX: -27.7533741 + posY: 1.21000624 + posZ: 15.94415 + rotX: -2.49414188e-05 + rotY: 270.0157 + rotZ: 2.92043842e-06 + scaleX: 0.25 + scaleY: 1.0 + scaleZ: 0.25 + XmlUI: '' + '7': + Autoraise: true + ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 + CustomImage: + CustomToken: + MergeDistancePixels: 5.0 + Stackable: false + Thickness: 0.1 + ImageScalar: 1.0 + ImageSecondaryURL: '' + ImageURL: https://i.imgur.com/r4zrAr7.png + WidthScale: 0.0 + Description: '' + GMNotes: '' + GUID: da94da + Grid: false + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Custom_Token + Nickname: Horror + Snap: false + Sticky: true + Tooltip: true + Transform: + posX: -27.7533741 + posY: 1.21000612 + posZ: 15.944108 + rotX: -2.33948358e-05 + rotY: 270.015656 + rotZ: 2.18774017e-06 + scaleX: 0.25 + scaleY: 1.0 + scaleZ: 0.25 + XmlUI: '' + '8': + Autoraise: true + ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 + CustomImage: + CustomToken: + MergeDistancePixels: 5.0 + Stackable: false + Thickness: 0.1 + ImageScalar: 1.0 + ImageSecondaryURL: '' + ImageURL: https://i.imgur.com/nFG5R0W.png + WidthScale: 0.0 + Description: '' + GMNotes: '' + GUID: 2e1687 + Grid: false + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Custom_Token + Nickname: Horror + Snap: false + Sticky: true + Tooltip: true + Transform: + posX: -27.753376 + posY: 1.210006 + posZ: 15.9440966 + rotX: -1.57902083e-08 + rotY: 270.016541 + rotZ: -2.19759459e-05 + scaleX: 0.25 + scaleY: 1.0 + scaleZ: 0.25 + XmlUI: '' + '9': + Autoraise: true + ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 + CustomImage: + CustomToken: + MergeDistancePixels: 5.0 + Stackable: false + Thickness: 0.1 + ImageScalar: 1.0 + ImageSecondaryURL: '' + ImageURL: https://i.imgur.com/Ud4OpBD.png + WidthScale: 0.0 + Description: '' + GMNotes: '' + GUID: a6f1e0 + Grid: false + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Custom_Token + Nickname: Horror + Snap: false + Sticky: true + Tooltip: true + Transform: + posX: -27.753376 + posY: 1.21000612 + posZ: 15.9440622 + rotX: -2.09277514e-05 + rotY: 270.016724 + rotZ: 4.970206e-05 + scaleX: 0.25 + scaleY: 1.0 + scaleZ: 0.25 + XmlUI: '' + Sticky: true + Tooltip: true + Transform: + posX: -26.4036713 + posY: 1.41001534 + posZ: 15.7281322 + rotX: 5.372964e-06 + rotY: 0.0300562512 + rotZ: 1.32273317e-05 + scaleX: 0.25 + scaleY: 1.0 + scaleZ: 0.25 + XmlUI: '' +CustomMesh: + CastShadows: true + ColliderURL: '' + Convex: true + DiffuseURL: https://i.imgur.com/thxMNGK.jpg + MaterialIndex: 1 + MeshURL: https://pastebin.com/raw/ALrYhQGb + NormalURL: '' + TypeIndex: 7 +Description: '' +GMNotes: '' +GUID: ae1a4e +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: true +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +MeshIndex: -1 +Name: Custom_Model_Infinite_Bag +Nickname: Horror tokens +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -44.10078 + posY: 1.6515255 + posZ: 28.98482 + rotX: 359.983154 + rotY: 0.00610282272 + rotZ: 359.9201 + scaleX: 0.8 + scaleY: 1.0 + scaleZ: 0.8 +XmlUI: '' diff --git a/unpacked/Custom_Model_Infinite_Bag Horror tokens c3ecf4.yaml b/unpacked/Custom_Model_Infinite_Bag Horror tokens c3ecf4.yaml new file mode 100644 index 000000000..e454a52cc --- /dev/null +++ b/unpacked/Custom_Model_Infinite_Bag Horror tokens c3ecf4.yaml @@ -0,0 +1,422 @@ +Autoraise: true +ColorDiffuse: + b: 0.4512195 + g: 0.2481721 + r: 0.192522347 +ContainedObjects: +- Autoraise: true + ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 + CustomImage: + CustomToken: + MergeDistancePixels: 5.0 + Stackable: false + Thickness: 0.1 + ImageScalar: 1.0 + ImageSecondaryURL: '' + ImageURL: https://i.imgur.com/Bh0BO47.png + WidthScale: 0.0 + Description: '' + GMNotes: '' + GUID: 36be72 + Grid: false + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Custom_Token + Nickname: Horror + Snap: false + States: + '2': + Autoraise: true + ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 + CustomImage: + CustomToken: + MergeDistancePixels: 5.0 + Stackable: false + Thickness: 0.1 + ImageScalar: 1.0 + ImageSecondaryURL: '' + ImageURL: https://i.imgur.com/NM2enxD.png + WidthScale: 0.0 + Description: '' + GMNotes: '' + GUID: 5c2361 + Grid: false + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Custom_Token + Nickname: Horror + Snap: false + Sticky: true + Tooltip: true + Transform: + posX: -27.7533741 + posY: 1.210006 + posZ: 15.9442654 + rotX: -2.02706469e-05 + rotY: 270.015259 + rotZ: 2.20759175e-05 + scaleX: 0.25 + scaleY: 1.0 + scaleZ: 0.25 + XmlUI: '' + '3': + Autoraise: true + ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 + CustomImage: + CustomToken: + MergeDistancePixels: 5.0 + Stackable: false + Thickness: 0.1 + ImageScalar: 1.0 + ImageSecondaryURL: '' + ImageURL: https://i.imgur.com/pZvTKA7.png + WidthScale: 0.0 + Description: '' + GMNotes: '' + GUID: 3a3415 + Grid: false + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Custom_Token + Nickname: Horror + Snap: false + Sticky: true + Tooltip: true + Transform: + posX: -27.7533741 + posY: 1.210006 + posZ: 15.9442368 + rotX: -1.04253941e-05 + rotY: 270.015137 + rotZ: 1.02804506e-05 + scaleX: 0.25 + scaleY: 1.0 + scaleZ: 0.25 + XmlUI: '' + '4': + Autoraise: true + ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 + CustomImage: + CustomToken: + MergeDistancePixels: 5.0 + Stackable: false + Thickness: 0.1 + ImageScalar: 1.0 + ImageSecondaryURL: '' + ImageURL: https://i.imgur.com/T7nvZBP.png + WidthScale: 0.0 + Description: '' + GMNotes: '' + GUID: 4a91a8 + Grid: false + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Custom_Token + Nickname: Horror + Snap: false + Sticky: true + Tooltip: true + Transform: + posX: -27.7533741 + posY: 1.21000612 + posZ: 15.9442348 + rotX: 1.89065361e-06 + rotY: 270.01532 + rotZ: 1.59575811e-05 + scaleX: 0.25 + scaleY: 1.0 + scaleZ: 0.25 + XmlUI: '' + '5': + Autoraise: true + ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 + CustomImage: + CustomToken: + MergeDistancePixels: 5.0 + Stackable: false + Thickness: 0.1 + ImageScalar: 1.0 + ImageSecondaryURL: '' + ImageURL: https://i.imgur.com/mOmg6pc.png + WidthScale: 0.0 + Description: '' + GMNotes: '' + GUID: 887aae + Grid: false + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Custom_Token + Nickname: Horror + Snap: false + Sticky: true + Tooltip: true + Transform: + posX: -27.7533741 + posY: 1.21000612 + posZ: 15.9442024 + rotX: -3.432232e-05 + rotY: 270.016 + rotZ: -3.73151761e-06 + scaleX: 0.25 + scaleY: 1.0 + scaleZ: 0.25 + XmlUI: '' + '6': + Autoraise: true + ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 + CustomImage: + CustomToken: + MergeDistancePixels: 5.0 + Stackable: false + Thickness: 0.1 + ImageScalar: 1.0 + ImageSecondaryURL: '' + ImageURL: https://i.imgur.com/eZcWjw1.png + WidthScale: 0.0 + Description: '' + GMNotes: '' + GUID: baa831 + Grid: false + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Custom_Token + Nickname: Horror + Snap: false + Sticky: true + Tooltip: true + Transform: + posX: -27.7533741 + posY: 1.21000624 + posZ: 15.94415 + rotX: -2.49414188e-05 + rotY: 270.0157 + rotZ: 2.92043842e-06 + scaleX: 0.25 + scaleY: 1.0 + scaleZ: 0.25 + XmlUI: '' + '7': + Autoraise: true + ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 + CustomImage: + CustomToken: + MergeDistancePixels: 5.0 + Stackable: false + Thickness: 0.1 + ImageScalar: 1.0 + ImageSecondaryURL: '' + ImageURL: https://i.imgur.com/r4zrAr7.png + WidthScale: 0.0 + Description: '' + GMNotes: '' + GUID: da94da + Grid: false + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Custom_Token + Nickname: Horror + Snap: false + Sticky: true + Tooltip: true + Transform: + posX: -27.7533741 + posY: 1.21000612 + posZ: 15.944108 + rotX: -2.33948358e-05 + rotY: 270.015656 + rotZ: 2.18774017e-06 + scaleX: 0.25 + scaleY: 1.0 + scaleZ: 0.25 + XmlUI: '' + '8': + Autoraise: true + ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 + CustomImage: + CustomToken: + MergeDistancePixels: 5.0 + Stackable: false + Thickness: 0.1 + ImageScalar: 1.0 + ImageSecondaryURL: '' + ImageURL: https://i.imgur.com/nFG5R0W.png + WidthScale: 0.0 + Description: '' + GMNotes: '' + GUID: 2e1687 + Grid: false + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Custom_Token + Nickname: Horror + Snap: false + Sticky: true + Tooltip: true + Transform: + posX: -27.753376 + posY: 1.210006 + posZ: 15.9440966 + rotX: -1.57902083e-08 + rotY: 270.016541 + rotZ: -2.19759459e-05 + scaleX: 0.25 + scaleY: 1.0 + scaleZ: 0.25 + XmlUI: '' + '9': + Autoraise: true + ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 + CustomImage: + CustomToken: + MergeDistancePixels: 5.0 + Stackable: false + Thickness: 0.1 + ImageScalar: 1.0 + ImageSecondaryURL: '' + ImageURL: https://i.imgur.com/Ud4OpBD.png + WidthScale: 0.0 + Description: '' + GMNotes: '' + GUID: a6f1e0 + Grid: false + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Custom_Token + Nickname: Horror + Snap: false + Sticky: true + Tooltip: true + Transform: + posX: -27.753376 + posY: 1.21000612 + posZ: 15.9440622 + rotX: -2.09277514e-05 + rotY: 270.016724 + rotZ: 4.970206e-05 + scaleX: 0.25 + scaleY: 1.0 + scaleZ: 0.25 + XmlUI: '' + Sticky: true + Tooltip: true + Transform: + posX: -26.4036713 + posY: 1.41001534 + posZ: 15.7281322 + rotX: 5.372964e-06 + rotY: 0.0300562512 + rotZ: 1.32273317e-05 + scaleX: 0.25 + scaleY: 1.0 + scaleZ: 0.25 + XmlUI: '' +CustomMesh: + CastShadows: true + ColliderURL: '' + Convex: true + DiffuseURL: https://i.imgur.com/thxMNGK.jpg + MaterialIndex: 1 + MeshURL: https://pastebin.com/raw/ALrYhQGb + NormalURL: '' + TypeIndex: 7 +Description: '' +GMNotes: '' +GUID: c3ecf4 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: true +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +MeshIndex: -1 +Name: Custom_Model_Infinite_Bag +Nickname: Horror tokens +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -53.3476067 + posY: 1.65551651 + posZ: -1.23968494 + rotX: 359.9201 + rotY: 270.013245 + rotZ: 0.0168617871 + scaleX: 0.8 + scaleY: 1.0 + scaleZ: 0.8 +XmlUI: '' diff --git a/unpacked/Custom_Model_Infinite_Bag Resource tokens 0168ae.yaml b/unpacked/Custom_Model_Infinite_Bag Resource tokens 0168ae.yaml new file mode 100644 index 000000000..f50a28bf6 --- /dev/null +++ b/unpacked/Custom_Model_Infinite_Bag Resource tokens 0168ae.yaml @@ -0,0 +1,170 @@ +Autoraise: true +ColorDiffuse: + b: 0.07053403 + g: 0.07053403 + r: 0.282277673 +ContainedObjects: +- Autoraise: true + ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 + CustomImage: + CustomToken: + MergeDistancePixels: 5.0 + Stackable: false + Thickness: 0.1 + ImageScalar: 1.0 + ImageSecondaryURL: '' + ImageURL: https://i.imgur.com/c7b94hv.png + WidthScale: 0.0 + Description: '' + GMNotes: '' + GUID: 038906 + Grid: false + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Custom_Token + Nickname: Resources + Snap: false + States: + '2': + Autoraise: true + ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 + CustomImage: + CustomToken: + MergeDistancePixels: 5.0 + Stackable: false + Thickness: 0.1 + ImageScalar: 1.0 + ImageSecondaryURL: '' + ImageURL: https://i.imgur.com/le5gb9M.png + WidthScale: 0.0 + Description: '' + GMNotes: '' + GUID: 32a06a + Grid: false + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Custom_Token + Nickname: Resources + Snap: false + Sticky: true + Tooltip: true + Transform: + posX: -64.1392746 + posY: 1.62164152 + posZ: 2.4275 + rotX: 359.920227 + rotY: 270.0255 + rotZ: 0.016780857 + scaleX: 0.2 + scaleY: 1.0 + scaleZ: 0.2 + XmlUI: '' + '3': + Autoraise: true + ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 + CustomImage: + CustomToken: + MergeDistancePixels: 5.0 + Stackable: false + Thickness: 0.1 + ImageScalar: 1.0 + ImageSecondaryURL: '' + ImageURL: https://i.imgur.com/4dbb10f.png + WidthScale: 0.0 + Description: '' + GMNotes: '' + GUID: ebbc3d + Grid: false + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Custom_Token + Nickname: Resources + Snap: false + Sticky: true + Tooltip: true + Transform: + posX: -64.13942 + posY: 1.62164187 + posZ: 2.42749381 + rotX: 359.9201 + rotY: 270.025452 + rotZ: 0.0168974362 + scaleX: 0.2 + scaleY: 1.0 + scaleZ: 0.2 + XmlUI: '' + Sticky: true + Tooltip: true + Transform: + posX: -59.7861481 + posY: 1.80872619 + posZ: -0.1920484 + rotX: 0.00185385626 + rotY: 359.9842 + rotZ: 0.00215036981 + scaleX: 0.2 + scaleY: 1.0 + scaleZ: 0.2 + XmlUI: '' +CustomMesh: + CastShadows: true + ColliderURL: '' + Convex: true + DiffuseURL: https://i.imgur.com/bOfuh02.jpg + MaterialIndex: 1 + MeshURL: https://pastebin.com/raw/ALrYhQGb + NormalURL: '' + TypeIndex: 7 +Description: '' +GMNotes: '' +GUID: 0168ae +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: true +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +MeshIndex: -1 +Name: Custom_Model_Infinite_Bag +Nickname: Resource tokens +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -44.1050529 + posY: 1.65087342 + posZ: 26.7502632 + rotX: 359.983124 + rotY: 0.00106751383 + rotZ: 359.9201 + scaleX: 0.8 + scaleY: 1.0 + scaleZ: 0.8 +XmlUI: '' diff --git a/unpacked/Custom_Model_Infinite_Bag Resource tokens 9fadf9.yaml b/unpacked/Custom_Model_Infinite_Bag Resource tokens 9fadf9.yaml new file mode 100644 index 000000000..b25eac5ab --- /dev/null +++ b/unpacked/Custom_Model_Infinite_Bag Resource tokens 9fadf9.yaml @@ -0,0 +1,170 @@ +Autoraise: true +ColorDiffuse: + b: 0.07053403 + g: 0.07053403 + r: 0.282277673 +ContainedObjects: +- Autoraise: true + ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 + CustomImage: + CustomToken: + MergeDistancePixels: 5.0 + Stackable: false + Thickness: 0.1 + ImageScalar: 1.0 + ImageSecondaryURL: '' + ImageURL: https://i.imgur.com/c7b94hv.png + WidthScale: 0.0 + Description: '' + GMNotes: '' + GUID: 038906 + Grid: false + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Custom_Token + Nickname: Resources + Snap: false + States: + '2': + Autoraise: true + ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 + CustomImage: + CustomToken: + MergeDistancePixels: 5.0 + Stackable: false + Thickness: 0.1 + ImageScalar: 1.0 + ImageSecondaryURL: '' + ImageURL: https://i.imgur.com/le5gb9M.png + WidthScale: 0.0 + Description: '' + GMNotes: '' + GUID: 32a06a + Grid: false + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Custom_Token + Nickname: Resources + Snap: false + Sticky: true + Tooltip: true + Transform: + posX: -64.1392746 + posY: 1.62164152 + posZ: 2.4275 + rotX: 359.920227 + rotY: 270.0255 + rotZ: 0.016780857 + scaleX: 0.2 + scaleY: 1.0 + scaleZ: 0.2 + XmlUI: '' + '3': + Autoraise: true + ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 + CustomImage: + CustomToken: + MergeDistancePixels: 5.0 + Stackable: false + Thickness: 0.1 + ImageScalar: 1.0 + ImageSecondaryURL: '' + ImageURL: https://i.imgur.com/4dbb10f.png + WidthScale: 0.0 + Description: '' + GMNotes: '' + GUID: ebbc3d + Grid: false + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Custom_Token + Nickname: Resources + Snap: false + Sticky: true + Tooltip: true + Transform: + posX: -64.13942 + posY: 1.62164187 + posZ: 2.42749381 + rotX: 359.9201 + rotY: 270.025452 + rotZ: 0.0168974362 + scaleX: 0.2 + scaleY: 1.0 + scaleZ: 0.2 + XmlUI: '' + Sticky: true + Tooltip: true + Transform: + posX: -59.7861481 + posY: 1.80872619 + posZ: -0.1920484 + rotX: 0.00185385626 + rotY: 359.9842 + rotZ: 0.00215036981 + scaleX: 0.2 + scaleY: 1.0 + scaleZ: 0.2 + XmlUI: '' +CustomMesh: + CastShadows: true + ColliderURL: '' + Convex: true + DiffuseURL: https://i.imgur.com/bOfuh02.jpg + MaterialIndex: 1 + MeshURL: https://pastebin.com/raw/ALrYhQGb + NormalURL: '' + TypeIndex: 7 +Description: '' +GMNotes: '' +GUID: 9fadf9 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: true +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +MeshIndex: -1 +Name: Custom_Model_Infinite_Bag +Nickname: Resource tokens +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -51.1130333 + posY: 1.65240014 + posZ: -1.24395728 + rotX: 359.9201 + rotY: 270.012 + rotZ: 0.0168651044 + scaleX: 0.8 + scaleY: 1.0 + scaleZ: 0.8 +XmlUI: '' diff --git a/unpacked/Custom_Model_Infinite_Bag Resource tokens fd617a.yaml b/unpacked/Custom_Model_Infinite_Bag Resource tokens fd617a.yaml new file mode 100644 index 000000000..66acf0a5a --- /dev/null +++ b/unpacked/Custom_Model_Infinite_Bag Resource tokens fd617a.yaml @@ -0,0 +1,170 @@ +Autoraise: true +ColorDiffuse: + b: 0.07053403 + g: 0.07053403 + r: 0.282277673 +ContainedObjects: +- Autoraise: true + ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 + CustomImage: + CustomToken: + MergeDistancePixels: 5.0 + Stackable: false + Thickness: 0.1 + ImageScalar: 1.0 + ImageSecondaryURL: '' + ImageURL: https://i.imgur.com/c7b94hv.png + WidthScale: 0.0 + Description: '' + GMNotes: '' + GUID: 038906 + Grid: false + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Custom_Token + Nickname: Resources + Snap: false + States: + '2': + Autoraise: true + ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 + CustomImage: + CustomToken: + MergeDistancePixels: 5.0 + Stackable: false + Thickness: 0.1 + ImageScalar: 1.0 + ImageSecondaryURL: '' + ImageURL: https://i.imgur.com/le5gb9M.png + WidthScale: 0.0 + Description: '' + GMNotes: '' + GUID: 32a06a + Grid: false + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Custom_Token + Nickname: Resources + Snap: false + Sticky: true + Tooltip: true + Transform: + posX: -64.1392746 + posY: 1.62164152 + posZ: 2.4275 + rotX: 359.920227 + rotY: 270.0255 + rotZ: 0.016780857 + scaleX: 0.2 + scaleY: 1.0 + scaleZ: 0.2 + XmlUI: '' + '3': + Autoraise: true + ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 + CustomImage: + CustomToken: + MergeDistancePixels: 5.0 + Stackable: false + Thickness: 0.1 + ImageScalar: 1.0 + ImageSecondaryURL: '' + ImageURL: https://i.imgur.com/4dbb10f.png + WidthScale: 0.0 + Description: '' + GMNotes: '' + GUID: ebbc3d + Grid: false + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Custom_Token + Nickname: Resources + Snap: false + Sticky: true + Tooltip: true + Transform: + posX: -64.13942 + posY: 1.62164187 + posZ: 2.42749381 + rotX: 359.9201 + rotY: 270.025452 + rotZ: 0.0168974362 + scaleX: 0.2 + scaleY: 1.0 + scaleZ: 0.2 + XmlUI: '' + Sticky: true + Tooltip: true + Transform: + posX: -59.7861481 + posY: 1.80872619 + posZ: -0.1920484 + rotX: 0.00185385626 + rotY: 359.9842 + rotZ: 0.00215036981 + scaleX: 0.2 + scaleY: 1.0 + scaleZ: 0.2 + XmlUI: '' +CustomMesh: + CastShadows: true + ColliderURL: '' + Convex: true + DiffuseURL: https://i.imgur.com/bOfuh02.jpg + MaterialIndex: 1 + MeshURL: https://pastebin.com/raw/ALrYhQGb + NormalURL: '' + TypeIndex: 7 +Description: '' +GMNotes: '' +GUID: fd617a +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: true +LuaScript: '' +LuaScriptState: '' +MaterialIndex: -1 +MeshIndex: -1 +Name: Custom_Model_Infinite_Bag +Nickname: Resource tokens +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -42.22304 + posY: 1.63250351 + posZ: -26.72445 + rotX: 0.0168756675 + rotY: 179.993073 + rotZ: 0.07987996 + scaleX: 0.8 + scaleY: 1.0 + scaleZ: 0.8 +XmlUI: '' diff --git a/unpacked/Custom_PDF d99993.yaml b/unpacked/Custom_PDF d99993.yaml new file mode 100644 index 000000000..e4c12ac13 --- /dev/null +++ b/unpacked/Custom_PDF d99993.yaml @@ -0,0 +1,37 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +CustomPDF: + PDFPage: 0 + PDFPageOffset: 0 + PDFPassword: '' + PDFUrl: https://images-cdn.fantasyflightgames.com/filer_public/c4/b0/c4b0d66c-d79e-411b-bdb5-b5d8c457d4bc/ahc01_rules_reference_web.pdf +Description: '' +GMNotes: '' +GUID: d99993 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: true +LuaScript: '' +LuaScriptState: '' +Name: Custom_PDF +Nickname: '' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -60.5741 + posY: 1.24861372 + posZ: 70.86582 + rotX: 0.020812653 + rotY: 269.9855 + rotZ: 0.0167659577 + scaleX: 4.5 + scaleY: 1.0 + scaleZ: 4.5 +XmlUI: '' diff --git a/unpacked/Custom_Tile 23a43c.yaml b/unpacked/Custom_Tile 23a43c.yaml new file mode 100644 index 000000000..d95dd9a47 --- /dev/null +++ b/unpacked/Custom_Tile 23a43c.yaml @@ -0,0 +1,42 @@ +Autoraise: true +ColorDiffuse: + b: 0.0 + g: 0.0 + r: 0.0 +CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.495000154 + Type: 0 + ImageScalar: 1.0 + ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/273974515701259432/A09A20BE6300EAB285858E76A03BD781EE3845B5/ + ImageURL: http://cloud-3.steamusercontent.com/ugc/273974515701259432/A09A20BE6300EAB285858E76A03BD781EE3845B5/ + WidthScale: 0.0 +Description: '' +GMNotes: '' +GUID: 23a43c +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: true +LuaScript: '' +LuaScriptState: '' +Name: Custom_Tile +Nickname: '' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 43.96703 + posY: 0.791617334 + posZ: 70.9967957 + rotX: 0.0167712849 + rotY: 180.000015 + rotZ: 359.9792 + scaleX: 18.7858 + scaleY: 1.0 + scaleZ: 27.34747 +XmlUI: '' diff --git a/unpacked/Custom_Tile 2eca7c.yaml b/unpacked/Custom_Tile 2eca7c.yaml new file mode 100644 index 000000000..048f4cc19 --- /dev/null +++ b/unpacked/Custom_Tile 2eca7c.yaml @@ -0,0 +1,42 @@ +Autoraise: true +ColorDiffuse: + b: 0.0 + g: 0.0 + r: 0.0 +CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.1 + Type: 3 + ImageScalar: 1.0 + ImageSecondaryURL: https://i.imgur.com/tpN1bvg.jpg + ImageURL: https://i.imgur.com/8SxnJvQ.jpg + WidthScale: 0.0 +Description: '' +GMNotes: '' +GUID: 2eca7c +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: true +LuaScript: '' +LuaScriptState: '' +Name: Custom_Tile +Nickname: '' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -43.2100029 + posY: 1.46049821 + posZ: 22.3684216 + rotX: 359.920135 + rotY: 269.999939 + rotZ: 0.01687152 + scaleX: 3.3 + scaleY: 1.0 + scaleZ: 3.3 +XmlUI: '' diff --git a/unpacked/Custom_Tile 463022.yaml b/unpacked/Custom_Tile 463022.yaml new file mode 100644 index 000000000..8e88733d2 --- /dev/null +++ b/unpacked/Custom_Tile 463022.yaml @@ -0,0 +1,42 @@ +Autoraise: true +ColorDiffuse: + b: 0.0 + g: 0.0 + r: 0.0 +CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.495000154 + Type: 0 + ImageScalar: 1.0 + ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/273974515701259432/A09A20BE6300EAB285858E76A03BD781EE3845B5/ + ImageURL: http://cloud-3.steamusercontent.com/ugc/273974515701259432/A09A20BE6300EAB285858E76A03BD781EE3845B5/ + WidthScale: 0.0 +Description: '' +GMNotes: '' +GUID: '463022' +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: true +LuaScript: '' +LuaScriptState: '' +Name: Custom_Tile +Nickname: '' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 77.98891 + posY: 0.7427461 + posZ: 1.1765784 + rotX: 359.987427 + rotY: 269.995636 + rotZ: 359.984558 + scaleX: 57.41503 + scaleY: 1.0 + scaleZ: 2.25577 +XmlUI: '' diff --git a/unpacked/Custom_Tile 5450cc.yaml b/unpacked/Custom_Tile 5450cc.yaml new file mode 100644 index 000000000..c0be6c120 --- /dev/null +++ b/unpacked/Custom_Tile 5450cc.yaml @@ -0,0 +1,42 @@ +Autoraise: true +ColorDiffuse: + b: 0.0 + g: 0.0 + r: 0.0 +CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.495000154 + Type: 0 + ImageScalar: 1.0 + ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/273974515701259432/A09A20BE6300EAB285858E76A03BD781EE3845B5/ + ImageURL: http://cloud-3.steamusercontent.com/ugc/273974515701259432/A09A20BE6300EAB285858E76A03BD781EE3845B5/ + WidthScale: 0.0 +Description: '' +GMNotes: '' +GUID: 5450cc +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: true +LuaScript: '' +LuaScriptState: '' +Name: Custom_Tile +Nickname: '' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -29.7312641 + posY: 0.7648518 + posZ: 70.99587 + rotX: 0.0167712849 + rotY: 180.000015 + rotZ: 359.9792 + scaleX: 25.0004768 + scaleY: 1.0 + scaleZ: 27.3458424 +XmlUI: '' diff --git a/unpacked/Custom_Tile 6161b4.yaml b/unpacked/Custom_Tile 6161b4.yaml new file mode 100644 index 000000000..5570d4aa0 --- /dev/null +++ b/unpacked/Custom_Tile 6161b4.yaml @@ -0,0 +1,42 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.01 + Type: 0 + ImageScalar: 1.0 + ImageSecondaryURL: '' + ImageURL: http://cloud-3.steamusercontent.com/ugc/254843371583102491/71731F2E30413A4D27B0805A54B1D87DC415F8DF/ + WidthScale: 0.0 +Description: '' +GMNotes: '' +GUID: 6161b4 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: true +LuaScript: '' +LuaScriptState: '' +Name: Custom_Tile +Nickname: '' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 31.89164 + posY: 1.42788148 + posZ: -29.0409451 + rotX: 359.9169 + rotY: 288.432739 + rotZ: 359.990143 + scaleX: 8.965088 + scaleY: 1.0 + scaleZ: 8.97 +XmlUI: '' diff --git a/unpacked/Custom_Tile 91dd9b.yaml b/unpacked/Custom_Tile 91dd9b.yaml new file mode 100644 index 000000000..4d45fd3bd --- /dev/null +++ b/unpacked/Custom_Tile 91dd9b.yaml @@ -0,0 +1,42 @@ +Autoraise: true +ColorDiffuse: + b: 0.0 + g: 0.0 + r: 0.0 +CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.495000154 + Type: 0 + ImageScalar: 1.0 + ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/273974515701259432/A09A20BE6300EAB285858E76A03BD781EE3845B5/ + ImageURL: http://cloud-3.steamusercontent.com/ugc/273974515701259432/A09A20BE6300EAB285858E76A03BD781EE3845B5/ + WidthScale: 0.0 +Description: '' +GMNotes: '' +GUID: 91dd9b +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: true +LuaScript: '' +LuaScriptState: '' +Name: Custom_Tile +Nickname: '' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -28.8442612 + posY: 0.8000289 + posZ: -69.50212 + rotX: 0.0167712849 + rotY: 180.000015 + rotZ: 359.9792 + scaleX: 25.4725533 + scaleY: 1.0 + scaleZ: 26.6207123 +XmlUI: '' diff --git a/unpacked/Custom_Tile 9487a4.yaml b/unpacked/Custom_Tile 9487a4.yaml new file mode 100644 index 000000000..799e26359 --- /dev/null +++ b/unpacked/Custom_Tile 9487a4.yaml @@ -0,0 +1,42 @@ +Autoraise: true +ColorDiffuse: + b: 0.0 + g: 0.0 + r: 0.0 +CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.495000154 + Type: 0 + ImageScalar: 1.0 + ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/273974515701259432/A09A20BE6300EAB285858E76A03BD781EE3845B5/ + ImageURL: http://cloud-3.steamusercontent.com/ugc/273974515701259432/A09A20BE6300EAB285858E76A03BD781EE3845B5/ + WidthScale: 0.0 +Description: '' +GMNotes: '' +GUID: 9487a4 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: true +LuaScript: '' +LuaScriptState: '' +Name: Custom_Tile +Nickname: '' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 44.01549 + posY: 0.7910718 + posZ: -69.54986 + rotX: 0.0167712849 + rotY: 180.000015 + rotZ: 359.9792 + scaleX: 18.7642155 + scaleY: 1.0 + scaleZ: 26.580267 +XmlUI: '' diff --git a/unpacked/Custom_Tile 9f334f.yaml b/unpacked/Custom_Tile 9f334f.yaml new file mode 100644 index 000000000..0007ba9dd --- /dev/null +++ b/unpacked/Custom_Tile 9f334f.yaml @@ -0,0 +1,59 @@ +AttachedSnapPoints: +- Position: + x: 2.19106555 + y: 0.0999799445 + z: -0.461800128 + Rotation: + x: 1.5196905e-06 + y: 314.985077 + z: -5.45631974e-06 +- Position: + x: 0.8801381 + y: 0.100821659 + z: 0.402956575 + Rotation: + x: -5.51997061e-07 + y: -0.000491957937 + z: 180.0 +Autoraise: true +ColorDiffuse: + b: 0.0 + g: 0.0 + r: 0.0 +CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.1 + Type: 0 + ImageScalar: 1.0 + ImageSecondaryURL: '' + ImageURL: http://cloud-3.steamusercontent.com/ugc/952965089462071147/F586DAA07E810B16A62C23AE2EA526BE3C7FD7FB/ + WidthScale: 0.0 +Description: '' +GMNotes: '' +GUID: 9f334f +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: true +LuaScript: '' +LuaScriptState: '' +Name: Custom_Tile +Nickname: '' +Snap: true +Sticky: true +Tooltip: false +Transform: + posX: -1.30933762 + posY: 1.4833051 + posZ: 0.0343867 + rotX: 359.919739 + rotY: 270.01297 + rotZ: 0.01681804 + scaleX: 6.501476 + scaleY: 1.0 + scaleZ: 6.501476 +XmlUI: '' diff --git a/unpacked/Custom_Tile b9140e.yaml b/unpacked/Custom_Tile b9140e.yaml new file mode 100644 index 000000000..ab3506088 --- /dev/null +++ b/unpacked/Custom_Tile b9140e.yaml @@ -0,0 +1,172 @@ +Autoraise: true +ColorDiffuse: + b: 0.0 + g: 0.008296312 + r: 0.10625457 +CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.2 + Type: 2 + ImageScalar: 1.0 + ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/933819604050849524/797528309EFBAC7485283048AAB9DA68B8A31891/ + ImageURL: http://cloud-3.steamusercontent.com/ugc/933819604050849085/9E22AFD7B0157140FC177DBCCBCB1D61D6A0329F/ + WidthScale: 0.0 +Description: '' +GMNotes: '' +GUID: b9140e +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: true +LuaScript: '' +LuaScriptState: '' +Name: Custom_Tile +Nickname: '' +Snap: true +States: + '2': + Autoraise: true + ColorDiffuse: + b: 0.0009864086 + g: 0.11324013 + r: 0.04146433 + CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.2 + Type: 2 + ImageScalar: 1.0 + ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/933819604050886219/5987AB68E0D2609CC3831F1311E9070D7189FBA8/ + ImageURL: http://cloud-3.steamusercontent.com/ugc/933819604050885611/845B5AA915F30492B5F34864698B9C3627FA5763/ + WidthScale: 0.0 + Description: '' + GMNotes: '' + GUID: 247cf2 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Custom_Tile + Nickname: '' + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -58.72564 + posY: 1.56337225 + posZ: -0.0222446267 + rotX: 359.9201 + rotY: 270.019257 + rotZ: 0.01684666 + scaleX: 1.5 + scaleY: 1.0 + scaleZ: 1.5 + XmlUI: '' + '3': + Autoraise: true + ColorDiffuse: + b: 0.0 + g: 0.0 + r: 0.235191256 + CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.2 + Type: 2 + ImageScalar: 1.0 + ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/982233321870235526/32D11CE67CBFB6E1197E540F9CA08F871A500C85/ + ImageURL: http://cloud-3.steamusercontent.com/ugc/982233321870235122/492996D07ABF6DDA4B605A3013C4892839DCF1F3/ + WidthScale: 0.0 + Description: '' + GMNotes: '' + GUID: 042d56 + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Custom_Tile + Nickname: '' + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -58.72565 + posY: 1.56337237 + posZ: -0.0222447533 + rotX: 359.9201 + rotY: 270.019257 + rotZ: 0.0168469939 + scaleX: 1.5 + scaleY: 1.0 + scaleZ: 1.5 + XmlUI: '' + '4': + Autoraise: true + ColorDiffuse: + b: 0.0 + g: 0.349629879 + r: 0.5313587 + CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.2 + Type: 2 + ImageScalar: 1.0 + ImageSecondaryURL: http://cloud-3.steamusercontent.com/ugc/982233321870237827/81374325F650673C37C89E4E2A1DC25F1C97FED8/ + ImageURL: http://cloud-3.steamusercontent.com/ugc/982233321870237261/C287CAED2423970F33E72D6C7415CBEC6794C533/ + WidthScale: 0.0 + Description: '' + GMNotes: '' + GUID: 44077a + Grid: true + GridProjection: false + Hands: false + HideWhenFaceDown: false + IgnoreFoW: false + Locked: false + LuaScript: '' + LuaScriptState: '' + Name: Custom_Tile + Nickname: '' + Snap: true + Sticky: true + Tooltip: true + Transform: + posX: -58.7256622 + posY: 1.56337249 + posZ: -0.0222448949 + rotX: 359.920135 + rotY: 270.019257 + rotZ: 0.0168455858 + scaleX: 1.5 + scaleY: 1.0 + scaleZ: 1.5 + XmlUI: '' +Sticky: true +Tooltip: true +Transform: + posX: -58.7256622 + posY: 1.56337249 + posZ: -0.0222448949 + rotX: 359.920135 + rotY: 270.019257 + rotZ: 0.0168455876 + scaleX: 1.5 + scaleY: 1.0 + scaleZ: 1.5 +XmlUI: '' diff --git a/unpacked/Custom_Tile fb09d4.yaml b/unpacked/Custom_Tile fb09d4.yaml new file mode 100644 index 000000000..d9159f0f7 --- /dev/null +++ b/unpacked/Custom_Tile fb09d4.yaml @@ -0,0 +1,42 @@ +Autoraise: true +ColorDiffuse: + b: 0.0 + g: 0.0 + r: 0.0 +CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.1 + Type: 3 + ImageScalar: 1.0 + ImageSecondaryURL: https://i.imgur.com/tpN1bvg.jpg + ImageURL: https://i.imgur.com/8SxnJvQ.jpg + WidthScale: 0.0 +Description: '' +GMNotes: '' +GUID: fb09d4 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: true +LuaScript: '' +LuaScriptState: '' +Name: Custom_Tile +Nickname: '' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -43.2099838 + posY: 1.5562458 + posZ: -22.6148987 + rotX: 359.920135 + rotY: 270.000061 + rotZ: 180.016876 + scaleX: 3.3 + scaleY: 1.0 + scaleZ: 3.3 +XmlUI: '' diff --git a/unpacked/Custom_Tile ArkhamDBTile 928c8e.ttslua b/unpacked/Custom_Tile ArkhamDBTile 928c8e.ttslua new file mode 100644 index 000000000..421503482 --- /dev/null +++ b/unpacked/Custom_Tile ArkhamDBTile 928c8e.ttslua @@ -0,0 +1,507 @@ +--[[ Lua code. See documentation: http://berserk-games.com/knowledgebase/scripting/ --]] + +--[[ The onLoad event is called after the game save finishes loading. --]] +function onLoad() + --[[ print('onLoad!') --]] + init() + -- Setup... + publicDeckURL="https://arkhamdb.com/api/public/decklist/" + privateDeckURL="https://arkhamdb.com/api/public/deck/" + cardURL="https://arkhamdb.com/api/public/card/" + tabooListURL="https://arkhamdb.com/api/public/taboos/" + subnameCards={{name="Dream Diary",xp=3},{name="Relic of Ages",xp=0},{name="The Necronomicon",xp=0},{name="Archaic Glyphs",xp=3},{name="Strange Solution",xp=4},{name="Relic of Ages",xp=0}, {name="Ancient Stone",xp=4}, {"Dream Diary",xp=0}} + extraPermanents={["Duke"]=true,["Sophie"]=true} + multiClassCards={{name=".45 Thompson",xp=3},{name="Scroll of Secrets",xp=3},{name="Tennessee Sour Mash",xp=3},{name="Enchanted Blade",xp=3},{name="Grisly Totem",xp=3}} +-- bondedCards={{name="Hallowed Mirror",bondedName="Soothing Melody",bondedCode=05314,copies=3},{name="Occult Lexicon",bondedName="Blood-Rite",bondedCode=05317,copies=3}} + privateDeck = true + permanents = true + + local tileGUID = '928c8e' + tile = getObjectFromGUID(tileGUID) + makeText() + makeButton() + makeCheckboxPP() + makeCheckboxPerms() + + -- Get current taboolist + tabooList = {} + WebRequest.get(tabooListURL, self, 'tabooListCallback') +end + +function spawnZone() + -- Clean up scripting zone + if pcZone then + pcZone.destruct() + end + if weaknessZone then + weaknessZone.destruct() + end + deckPos = LocalPos(self,{-1.85,1.5,1.8}) + permPos = LocalPos(self,{-4.63,1.5,1.8}) + local pcZonePos = LocalPos(self,{4.75, 2.6 , 1.8}) + zoneSpawn = {position = pcZonePos + , scale = { 10.57, 5.1, 10.47 } + , type = 'ScriptingTrigger' +-- , callback = 'zoneCallback' + , callback_owner = self + , rotation = self.getRotation() } + pcZone = spawnObject(zoneSpawn) + + -- get a scripting zone at the weakness deck + --local weaknessZonePosition = self.positionToWorld({-7.5, 2.6 , 1.8}) + local weaknessZonePosition = LocalPos(self, {-7.5, 0 , 1.8}) + weaknessZone = spawnObject({ + position = weaknessZonePosition, + type = 'ScriptingTrigger', + rotation = self.getRotation() + }) + + for i=1,1 do + coroutine.yield(0) + end + + local objectsInZone = pcZone.getObjects() + for i,v in pairs(objectsInZone) do + if v.tag == 'Deck' then + playerCardDeck = v + end + end + + local objectsInZone = weaknessZone.getObjects() + for i,v in pairs(objectsInZone) do + if v.getName() == 'All Weaknesses' then + weaknessDeck = v + end + end + + -- Get deck from ArkhamDB.. + local deckURL + if privateDeck then deckURL = privateDeckURL + else deckURL = publicDeckURL + end + + WebRequest.get(deckURL .. deckID, self, 'deckReadCallback') + + return 1 +end + +function init() + cardList = {} + doneSlots = 0 + playerCardDeck = {} + weaknessDeck = {} + totalCards = 0 + tabooID = 0 +end + +function buttonClicked() + -- Reset + init() + -- Spawn scripting zone + startLuaCoroutine(self, "spawnZone") +end + +function checkboxPPClicked() + buttons = tile.getButtons() + for k,v in pairs(buttons) do + if (v.label == "Private deck") then + local button_parameters = {} + button_parameters.label = "Public deck" + button_parameters.index = v.index + tile.editButton(button_parameters) + privateDeck = false + else + if (v.label == "Public deck") then + local button_parameters = {} + button_parameters.label = "Private deck" + button_parameters.index = v.index + tile.editButton(button_parameters) + privateDeck = true + end + end + end +end + +function checkboxPermsClicked() + buttons = tile.getButtons() + for k,v in pairs(buttons) do + if (v.label == "Permanents") then + local button_parameters = {} + button_parameters.label = "No permanents" + button_parameters.index = v.index + tile.editButton(button_parameters) + permanents = false + else + if (v.label == "No permanents") then + local button_parameters = {} + button_parameters.label = "Permanents" + button_parameters.index = v.index + tile.editButton(button_parameters) + permanents = true + end + end + end +end + +function deckReadCallback(req) + -- Result check.. + if req.is_done and not req.is_error + then + if string.find(req.text, "") + then + broadcastToAll("Private deck "..deckID.." is not shared", {0.5,0.5,0.5}) + return + end + JsonDeckRes = JSON.decode(req.text) + else + print (req.error) + return + end + if (JsonDeckRes == nil) + then + broadcastToAll("Deck not found!", {0.5,0.5,0.5}) + return + else + print("Found decklist: "..JsonDeckRes.name) + end + -- Count number of cards in decklist + numSlots=0 + for cardid,number in + pairs(JsonDeckRes.slots) + do + numSlots = numSlots + 1 + end + + -- Check for taboos + tabooID = JsonDeckRes.taboo_id + if tabooID + then + print("Using List of Taboos from "..tabooList[tabooID].date..".") + end + + -- Save card id, number in table and request card info from ArkhamDB + for cardID,number in pairs(JsonDeckRes.slots) + do + local row = {} + row.cardName = "" + row.cardCount = number + cardList[cardID] = row + WebRequest.get(cardURL .. cardID, self, 'cardReadCallback') + totalCards = totalCards + number + end +end + +function cardReadCallback(req) + -- Result check.. + if req.is_done and not req.is_error + then + -- Find unicode before using JSON.decode since it doesnt handle hex UTF-16 + local tmpText = string.gsub(req.text,"\\u(%w%w%w%w)", convertHexToDec) + JsonCardRes = JSON.decode(tmpText) + else + print(req.error) + return + end + + -- Update card name in table + if(JsonCardRes.xp == nil or JsonCardRes.xp == 0) + then + cardList[JsonCardRes.code].cardName = JsonCardRes.real_name + else + cardList[JsonCardRes.code].cardName = JsonCardRes.real_name .. " (" .. JsonCardRes.xp .. ")" + end + + -- Check for subname + for k,v in pairs(subnameCards) do + if (v.name == JsonCardRes.real_name and (v.xp == JsonCardRes.xp or JsonCardRes.xp == nil)) + then + cardList[JsonCardRes.code].subName = JsonCardRes.subname + end + end + + -- Check for multiclass + for k,v in pairs(multiClassCards) do + if (v.name == JsonCardRes.real_name and (v.xp == JsonCardRes.xp or JsonCardRes.xp == nil)) + then + cardList[JsonCardRes.code].subName = JsonCardRes.faction_name + end + end + + -- Check if card is permanent (if separation is selected) + if permanents then + if (JsonCardRes.permanent == true or extraPermanents[JsonCardRes.real_name]) then + cardList[JsonCardRes.code].permanent = true + else + cardList[JsonCardRes.code].permanent = false + end + else + cardList[JsonCardRes.code].permanent = false + end + + ---- Check for bonded + --for k,v in pairs(bondedCards) do + -- if (v.name == JsonCardRes.real_name) + -- then + -- local row = {} + -- row.cardName = v.bondedName + -- row.cardCount = v.copies + -- row.permanent = true + -- cardList[v.bondedCode] = row + -- end + --end + + -- Check for Taboos (add " (Taboo)" to card name) + if tabooID then + for k,v in pairs(tabooList[tabooID].cards) do + if v.code == JsonCardRes.code + then + cardList[JsonCardRes.code].cardName = cardList[JsonCardRes.code].cardName .. " (Taboo)" + end + end + end + + -- Update number of processed slots, if complete, start building the deck + doneSlots = doneSlots + 1 + if (doneSlots == numSlots) + then + createDeck() + end +end + +function tabooListCallback(req) + -- Result check.. + if req.is_done and not req.is_error + then + -- Find unicode before using JSON.decode since it doesnt handle hex UTF-16 + local tmpText = string.gsub(req.text,"\\u(%w%w%w%w)", convertHexToDec) + JsonTabooRes = JSON.decode(tmpText) + else + print(req.error) + return + end + for k,v in pairs(JsonTabooRes) do + local row = {} + row.date = v.date_start + row.cards = JSON.decode(v.cards) + tabooList[v.id] = row + end +end + +function createDeck() + -- Create clone of playerCardDeck to use for drawing cards + local cloneParams = {} + cloneParams.position = {0,0,50} + tmpDeck = playerCardDeck.clone(cloneParams) + + for k,v in pairs(cardList) do + searchForCard(v.cardName, v.subName, v.cardCount, v.permanent) + end + + tmpDeck.destruct() +end + +function searchForCard(cardName, subName, cardCount, permanent) + if cardName == 'Random Basic Weakness' and weaknessDeck then + -- pull a weakness card instead + weaknessDeck.shuffle() + local taken = weaknessDeck.takeObject({ + position = deckPos, + index = 0, + smooth = false, + params = { cardName, cardCount, false } + }) + -- just special case the one permanent for now + if taken.getName() == 'Indebted' then + taken.setPosition(permPos) + end + broadcastToAll("Drew random basic weakness: " .. taken.getName()) + return + end + allCards = tmpDeck.getObjects() + for k,v in pairs(allCards) do + if (v.nickname == cardName) + then + if(subName == nil or v.description == subName) + then + tmpDeck.takeObject({ + position = {10, 0, 20}, + callback = 'cardTaken', + callback_owner=self, + index = v.index, + smooth = false, + params = { cardName, cardCount, permanent, v.guid } + }) + print('Added '.. cardCount .. ' of ' .. cardName) + return + end + end + end + broadcastToAll("Card not found: "..cardName, {0.5,0.5,0.5}) +end + +function cardTaken(card, params) + -- Check destination deck (permanent?) + local destPos + if (params[3] == true) then -- permanent card + destPos = permPos + else + destPos = deckPos + end + + if (card.getName() == params[1]) then + for i=1,params[2]-1,1 do + local cloneParams = {} + cloneParams.position=destPos + card.clone(cloneParams) + end + card.setPosition(destPos) + else + print('Wrong card: ' .. card.getName()) + tmpDeck.putObject(card) + end +end + +function makeText() + -- Create textbox + local input_parameters = {} + input_parameters.input_function = "inputTyped" + input_parameters.function_owner = self + input_parameters.position = {0.7,0.2,-0.3} + input_parameters.width = 1620 + input_parameters.scale = {0.1,0.1,0.1} + input_parameters.height = 600 + input_parameters.font_size = 500 + input_parameters.tooltip = "*****PLEASE USE A PRIVATE DECK IF JUST FOR TTS TO AVOID FLOODING ARKHAMDB PUBLIC DECK LISTS!*****\nInput deck ID from ArkhamDB URL of the published version of the deck\nExample: For the URL 'https://arkhamdb.com/decklist/view/101/knowledge-overwhelming-solo-deck-1.0', you should input '101'" + input_parameters.alignment = 3 -- (1 = Automatic, 2 = Left, 3 = Center, 4 = Right, 5 = Justified) –Optional + input_parameters.value="" + tile.createInput(input_parameters) +end + +function makeButton() + -- Create Button + local button_parameters = {} + button_parameters.click_function = "buttonClicked" + button_parameters.function_owner = self + button_parameters.position = {-0.26,0.1,0.37} + button_parameters.width = 300 + button_parameters.height = 4 + button_parameters.tooltip = "Click to build your deck!" + tile.createButton(button_parameters) +end + +function makeCheckboxPP() + local checkbox_parameters = {} + checkbox_parameters.click_function = "checkboxPPClicked" + checkbox_parameters.function_owner = self + checkbox_parameters.position = {-0.7,0.2,-0.3} + checkbox_parameters.width = 2200 + checkbox_parameters.height = 500 + checkbox_parameters.tooltip = "Click to toggle Private/Public deck ID" + checkbox_parameters.label = "Private deck" + checkbox_parameters.font_size = 350 + checkbox_parameters.scale = {0.1,0.1,0.1} + tile.createButton(checkbox_parameters) +end + +function makeCheckboxPerms() + local checkbox_parameters = {} + checkbox_parameters.click_function = "checkboxPermsClicked" + checkbox_parameters.function_owner = self + checkbox_parameters.position = {-0.2,0.2,-0.3} + checkbox_parameters.width = 2200 + checkbox_parameters.height = 500 + checkbox_parameters.tooltip = "Click to toggle separate permanents" + checkbox_parameters.label = "Permanents" + checkbox_parameters.font_size = 350 + checkbox_parameters.scale = {0.1,0.1,0.1} + tile.createButton(checkbox_parameters) +end + +-- Function to convert utf-16 hex to actual character since JSON.decode doesn't seem to handle utf-16 hex very well.. +function convertHexToDec(a) + return string.char(tonumber(a,16)) +end +-------------- +-------------- +-- Start of Dzikakulka's positioning script + + +-- Return position "position" in "object"'s frame of reference +-- (most likely the only function you want to directly access) +function LocalPos(object, position) + local rot = object.getRotation() + local lPos = {position[1], position[2], position[3]} + + -- Z-X-Y extrinsic + local zRot = RotMatrix('z', rot['z']) + lPos = RotateVector(zRot, lPos) + local xRot = RotMatrix('x', rot['x']) + lPos = RotateVector(xRot, lPos) + local yRot = RotMatrix('y', rot['y']) + lPos = RotateVector(yRot, lPos) + + return Vect_Sum(lPos, object.getPosition()) +end + +-- Build rotation matrix +-- 1st table = 1st row, 2nd table = 2nd row etc +function RotMatrix(axis, angDeg) + local ang = math.rad(angDeg) + local cs = math.cos + local sn = math.sin + + if axis == 'x' then + return { + { 1, 0, 0 }, + { 0, cs(ang), -1*sn(ang) }, + { 0, sn(ang), cs(ang) } + } + elseif axis == 'y' then + return { + { cs(ang), 0, sn(ang) }, + { 0, 1, 0 }, + { -1*sn(ang), 0, cs(ang) } + } + elseif axis == 'z' then + return { + { cs(ang), -1*sn(ang), 0 }, + { sn(ang), cs(ang), 0 }, + { 0, 0, 1 } + } + end +end + +-- Apply given rotation matrix on given vector +-- (multiply matrix and column vector) +function RotateVector(rotMat, vect) + local out = {0, 0, 0} + for i=1,3,1 do + for j=1,3,1 do + out[i] = out[i] + rotMat[i][j]*vect[j] + end + end + return out +end + +-- Sum of two vectors (of any size) +function Vect_Sum(vec1, vec2) + local out = {} + local k = 1 + while vec1[k] ~= nil and vec2[k] ~= nil do + out[k] = vec1[k] + vec2[k] + k = k+1 + end + return out +end + +-- End Dzikakulka's positioning script + + +function inputTyped(objectInputTyped, playerColorTyped, input_value, selected) + deckID = input_value +end + +--[[ The onUpdate event is called once per frame. --]] +function onUpdate () + --[[ print('onUpdate loop!') --]] +end \ No newline at end of file diff --git a/unpacked/Custom_Tile ArkhamDBTile 928c8e.yaml b/unpacked/Custom_Tile ArkhamDBTile 928c8e.yaml new file mode 100644 index 000000000..ce2fd06b3 --- /dev/null +++ b/unpacked/Custom_Tile ArkhamDBTile 928c8e.yaml @@ -0,0 +1,70 @@ +AttachedSnapPoints: +- Position: + x: -0.344154537 + y: 0.200000376 + z: 0.333494931 +- Position: + x: -0.8470743 + y: 0.20000039 + z: 0.329182535 +- Position: + x: 0.8774674 + y: 0.200000167 + z: 0.333036155 +- Position: + x: -1.35767782 + y: 0.199929371 + z: 0.329480559 +Autoraise: true +ColorDiffuse: + b: 0.0 + g: 0.5110329 + r: 0.7473869 +CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.2 + Type: 3 + ImageScalar: 1.0 + ImageSecondaryURL: '' + ImageURL: https://i.imgur.com/8wYqD7B.jpg + WidthScale: 0.0 +Description: '' +GMNotes: '' +GUID: 928c8e +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: true +IgnoreFoW: false +Locked: true +LuaScript: !include 'Custom_Tile ArkhamDBTile 928c8e.ttslua' +LuaScriptState: '' +Name: Custom_Tile +Nickname: ArkhamDBTile +PhysicsMaterial: + BounceCombine: 0 + Bounciness: 0.0 + DynamicFriction: 0.6 + FrictionCombine: 0 + StaticFriction: 0.6 +Rigidbody: + AngularDrag: 0.1 + Drag: 0.1 + Mass: 1.732545 + UseGravity: true +Snap: true +Sticky: true +Tooltip: false +Transform: + posX: -61.5622177 + posY: 1.25018978 + posZ: -70.42201 + rotX: 0.0208098888 + rotY: 269.995667 + rotZ: 0.0167699326 + scaleX: 5.395272 + scaleY: 1.0 + scaleZ: 5.395272 +XmlUI: '' diff --git a/unpacked/Custom_Tile Data Helper 708279.ttslua b/unpacked/Custom_Tile Data Helper 708279.ttslua new file mode 100644 index 000000000..f669bdcd6 --- /dev/null +++ b/unpacked/Custom_Tile Data Helper 708279.ttslua @@ -0,0 +1,1277 @@ +-- set true to enable debug logging +DEBUG = false + +function log(message) + if DEBUG then + print(message) + end +end + +--[[ +Known locations and clues. We check this to determine if we should +atttempt to spawn clues, first we look for _ and if +we find nothing we look for +format is [location_guid -> clueCount] +]] +LOCATIONS_DATA_JSON = [[ +{ + "Study": {"type": "perPlayer", "value": 2, "clueSide": "back"}, + "Study_670914": {"type": "perPlayer", "value": 1, "clueSide": "back"}, + "Attic_377b20": {"type": "perPlayer", "value": 1, "clueSide": "back"}, + "Attic": {"type": "perPlayer", "value": 2, "clueSide": "back"}, + "Cellar_5d3bcc": {"type": "perPlayer", "value": 1, "clueSide": "back"}, + "Cellar": {"type": "perPlayer", "value": 2, "clueSide": "back"}, + "Bathroom": {"type": "perPlayer", "value": 1, "clueSide": "back"}, + "Bedroom": {"type": "perPlayer", "value": 1, "clueSide": "back"}, + "Far Above Your House": {"type": "perPlayer", "value": 1, "clueSide": "back"}, + "Deep Below Your House": {"type": "perPlayer", "value": 1, "clueSide": "back"}, + + "Northside_86faac": {"type": "perPlayer", "value": 1, "clueSide": "back"}, + "Northside": {"type": "perPlayer", "value": 2, "clueSide": "back"}, + "Graveyard": {"type": "perPlayer", "value": 2, "clueSide": "back"}, + "Miskatonic University_cedb0a": {"type": "perPlayer", "value": 1, "clueSide": "back"}, + "Miskatonic University": {"type": "perPlayer", "value": 2, "clueSide": "back"}, + "Downtown_1aa7cb": {"type": "perPlayer", "value": 2, "clueSide": "back"}, + "Downtown": {"type": "perPlayer", "value": 1, "clueSide": "back"}, + "St. Mary's Hospital": {"type": "perPlayer", "value": 1, "clueSide": "back"}, + "Easttown_88245c": {"type": "perPlayer", "value": 2, "clueSide": "back"}, + "Easttown": {"type": "perPlayer", "value": 1, "clueSide": "back"}, + "Southside": {"type": "perPlayer", "value": 1, "clueSide": "back"}, + "Rivertown": {"type": "perPlayer", "value": 1, "clueSide": "back"}, + "Your House_377b20": {"type": "perPlayer", "value": 1, "clueSide": "back"}, + "Your House_b28633": {"type": "perPlayer", "value": 1, "clueSide": "back"}, + + "Ritual Site": {"type": "perPlayer", "value": 2, "clueSide": "back"}, + "Arkham Woods_e8e04b": {"type": "perPlayer", "value": 0, "clueSide": "back"}, + "Arkham Woods": {"type": "perPlayer", "value": 1, "clueSide": "back"}, + + "New Orleans_5ab18a": {"type": "perPlayer", "value": 0, "clueSide": "back"}, + "New Orleans": {"type": "perPlayer", "value": 1, "clueSide": "back"}, + "Riverside_ab9d69": {"type": "perPlayer", "value": 0, "clueSide": "back"}, + "Riverside": {"type": "perPlayer", "value": 1, "clueSide": "back"}, + "Wilderness_3c5ea8": {"type": "perPlayer", "value": 0, "clueSide": "back"}, + "Wilderness": {"type": "perPlayer", "value": 1, "clueSide": "back"}, + "Unhallowed Land_552a1d": {"type": "perPlayer", "value": 0, "clueSide": "back"}, + "Unhallowed Land": {"type": "perPlayer", "value": 1, "clueSide": "back"}, + "Flooded": {"type": "perPlayer", "value": 1, "clueSide": "back"}, + "Venetian Garden": {"type": "perPlayer", "value": 1, "clueSide": "back"}, + "The Guardian": {"type": "perPlayer", "value": 2, "clueSide": "back"}, + "Canal-side": {"type": "fixed", "value": 1, "clueSide": "back"}, + "Accademia Bridge": {"type": "perPlayer", "value": 1, "clueSide": "back"}, + "Bridge of Sighs": {"type": "fixed", "value": 2, "clueSide": "back"}, + + "Warren Observatory": {"type": "perPlayer", "value": 1, "clueSide": "back"}, + "Science Building": {"type": "perPlayer", "value": 1, "clueSide": "back"}, + "Orne Library": {"type": "perPlayer", "value": 1, "clueSide": "back"}, + "Administration Building": {"type": "perPlayer", "value": 1, "clueSide": "back"}, + "Student Union": {"type": "fixed", "value": 2, "clueSide": "back"}, + "Humanities Building": {"type": "perPlayer", "value": 2, "clueSide": "back"}, + "Dormitories": {"type": "perPlayer", "value": 3, "clueSide": "back"}, + "Faculty Offices": {"type": "perPlayer", "value": 2, "clueSide": "back"}, + "Faculty Offices_1c567d": {"type": "perPlayer", "value": 0, "clueSide": "back"}, + + "La Bella Luna": {"type": "perPlayer", "value": 1, "clueSide": "back"}, + "Back Hall Doorway": {"type": "perPlayer", "value": 1, "clueSide": "back"}, + + "Museum Entrance": {"type": "fixed", "value": 2, "clueSide": "back"}, + "Security Office": {"type": "perPlayer", "value": 2, "clueSide": "back"}, + "Security Office_fcb3e4": {"type": "perPlayer", "value": 1, "clueSide": "back"}, + "Administration Office": {"type": "perPlayer", "value": 2, "clueSide": "back"}, + "Administration Office_d2eb25": {"type": "perPlayer", "value": 1, "clueSide": "back"}, + "Exhibit Hall": {"type": "perPlayer", "value": 1, "clueSide": "back"}, + "Exhibit Hall_563240": {"type": "perPlayer", "value": 2, "clueSide": "back"}, + "Exhibit Hall_f3ffb6": {"type": "perPlayer", "value": 2, "clueSide": "back"}, + "Exhibit Hall_0b0c58": {"type": "perPlayer", "value": 2, "clueSide": "back"}, + "Exhibit Hall_2d87e6": {"type": "perPlayer", "value": 0, "clueSide": "back"}, + "Exhibit Hall_da02ea": {"type": "perPlayer", "value": 0, "clueSide": "back"}, + + "Train Car": {"type": "perPlayer", "value": 1, "clueSide": "back"}, + "Train Car_f3f902": {"type": "perPlayer", "value": 2, "clueSide": "back"}, + "Train Car_905f69": {"type": "perPlayer", "value": 2, "clueSide": "back"}, + "Train Car_a3a321": {"type": "perPlayer", "value": 2, "clueSide": "back"}, + "Train Car_464528": {"type": "perPlayer", "value": 0, "clueSide": "back"}, + "Train Car_3cfca4": {"type": "fixed", "value": 1, "clueSide": "back"}, + "Train Car_64ffb0": {"type": "fixed", "value": 3, "clueSide": "back"}, + "Train Car_0fb5f0": {"type": "perPlayer", "value": 3, "clueSide": "back"}, + "Engine Car": {"type": "perPlayer", "value": 2, "clueSide": "back"}, + + "House in the Reeds": {"type": "perPlayer", "value": 1, "clueSide": "back"}, + "Osborn's General Store": {"type": "perPlayer", "value": 1, "clueSide": "back"}, + "Congregational Church": {"type": "perPlayer", "value": 1, "clueSide": "back"}, + "Bishop's Brook": {"type": "fixed", "value": 2, "clueSide": "back"}, + "Burned Ruins": {"type": "fixed", "value": 3, "clueSide": "back"}, + "Schoolhouse": {"type": "fixed", "value": 1, "clueSide": "back"}, + + "Dunwich Village": {"type": "fixed", "value": 1, "clueSide": "back"}, + "Dunwich Village_ac4427": {"type": "fixed", "value": 3, "clueSide": "back"}, + "Cold Spring Glen": {"type": "fixed", "value": 0, "clueSide": "back"}, + "Cold Spring Glen_e58475": {"type": "fixed", "value": 2, "clueSide": "back"}, + "Ten-Acre Meadow": {"type": "fixed", "value": 3, "clueSide": "back"}, + "Ten-Acre Meadow_05b0dd": {"type": "fixed", "value": 1, "clueSide": "back"}, + "Blasted Heath": {"type": "fixed", "value": 3, "clueSide": "back"}, + "Blasted Heath_995fe7": {"type": "fixed", "value": 2, "clueSide": "back"}, + "Whateley Ruins": {"type": "perPlayer", "value": 2, "clueSide": "back"}, + "Devil's Hop Yard": {"type": "perPlayer", "value": 1, "clueSide": "back"}, + "Devil's Hop Yard_f7dd31": {"type": "fixed", "value": 2, "clueSide": "back"}, + + "Base of the Hill": {"type": "fixed", "value": 3, "clueSide": "back"}, + "Base of the Hill_de3ca2": {"type": "fixed", "value": 0, "clueSide": "back"}, + "Ascending Path": {"type": "fixed", "value": 3, "clueSide": "back"}, + "Ascending Path_0e5289": {"type": "fixed", "value": 0, "clueSide": "back"}, + "Sentinel Peak": {"type": "perPlayer", "value": 2, "clueSide": "back"}, + "Diverging Path": {"type": "perPlayer", "value": 1, "clueSide": "back"}, + "Diverging Path_7239aa": {"type": "fixed", "value": 0, "clueSide": "back"}, + "Altered Path": {"type": "perPlayer", "value": 1, "clueSide": "back"}, + + "The Edge of the Universe": {"type": "perPlayer", "value": 2, "clueSide": "back"}, + "Tear Through Time": {"type": "perPlayer", "value": 2, "clueSide": "back"}, + "Prismatic Cascade": {"type": "fixed", "value": 3, "clueSide": "front"}, + "Towering Luminosity": {"type": "fixed", "value": 4, "clueSide": "front"}, + "Tear Through Space": {"type": "fixed", "value": 1, "clueSide": "front"}, + "Endless Bridge": {"type": "fixed", "value": 2, "clueSide": "front"}, + "Dimensional Doorway": {"type": "perPlayer", "value": 1, "clueSide": "front"}, + "Steps of Y'hagharl": {"type": "perPlayer", "value": 1, "clueSide": "front"}, + "Unstable Vortex": {"type": "perPlayer", "value": 1, "clueSide": "front"}, + "Indecipherable Stairs": {"type": "fixed", "value": 1, "clueSide": "front"}, + + "Backstage Doorway": {"type": "perPlayer", "value": 1, "clueSide": "back"}, + "Backstage Doorway_0797a9": {"type": "fixed", "value": 0, "clueSide": "back"}, + "Lobby Doorway": {"type": "perPlayer", "value": 1, "clueSide": "back"}, + "Lobby Doorway_7605cf": {"type": "fixed", "value": 0, "clueSide": "back"}, + "Lobby": {"type": "fixed", "value": 1, "clueSide": "back"}, + "Backstage": {"type": "fixed", "value": 1, "clueSide": "back"}, + "Balcony": {"type": "perPlayer", "value": 1, "clueSide": "back"}, + + "Foyer": {"type": "perPlayer", "value": 1, "clueSide": "back"}, + + "Historical Society": {"type": "perPlayer", "value": 1, "clueSide": "back"}, + "Historical Society_40f79d": {"type": "perPlayer", "value": 2, "clueSide": "back"}, + "Historical Society_b352f8": {"type": "perPlayer", "value": 2, "clueSide": "back"}, + "Historical Society_0cf5d5": {"type": "perPlayer", "value": 2, "clueSide": "back"}, + "Historical Society_abc0cb": {"type": "perPlayer", "value": 2, "clueSide": "back"}, + "Historical Society_ab6a72": {"type": "fixed", "value": 1, "clueSide": "back"}, + "Hidden Library": {"type": "perPlayer", "value": 3, "clueSide": "back"}, + + "Patient Confinement": {"type": "fixed", "value": 1, "clueSide": "back"}, + "Asylum Halls": {"type": "perPlayer", "value": 1, "clueSide": "back"}, + "Asylum Halls_f99530": {"type": "fixed", "value": 0, "clueSide": "back"}, + "Asylum Halls_576595": {"type": "fixed", "value": 0, "clueSide": "back"}, + "Infirmary": {"type": "perPlayer", "value": 1, "clueSide": "back"}, + "Basement Hall": {"type": "perPlayer", "value": 1, "clueSide": "back"}, + "Yard": {"type": "perPlayer", "value": 1, "clueSide": "back"}, + "Garden": {"type": "perPlayer", "value": 1, "clueSide": "back"}, + "Kitchen": {"type": "perPlayer", "value": 1, "clueSide": "back"}, + "Mess Hall": {"type": "perPlayer", "value": 2, "clueSide": "back"}, + + "Grand Guignol": {"type": "perPlayer", "value": 1, "clueSide": "back"}, + "Montmartre": {"type": "perPlayer", "value": 1, "clueSide": "back"}, + "Montparnasse": {"type": "perPlayer", "value": 1, "clueSide": "back"}, + "Notre-Dame": {"type": "perPlayer", "value": 1, "clueSide": "back"}, + "Gare d'Orsay": {"type": "perPlayer", "value": 1, "clueSide": "back"}, + "Opéra Garnier": {"type": "perPlayer", "value": 1, "clueSide": "back"}, + "Canal Saint-Martin": {"type": "perPlayer", "value": 1, "clueSide": "back"}, + "Le Marais": {"type": "perPlayer", "value": 1, "clueSide": "back"}, + "Gardens of Luxembourg": {"type": "perPlayer", "value": 1, "clueSide": "back"}, + "Père Lachaise Cemetery": {"type": "perPlayer", "value": 2, "clueSide": "back"}, + + "Catacombs": {"type": "perPlayer", "value": 2, "clueSide": "back"}, + "Catacombs_29170f": {"type": "perPlayer", "value": 1, "clueSide": "back"}, + "Catacombs_f1237c": {"type": "perPlayer", "value": 1, "clueSide": "back"}, + "Catacombs_c3151e": {"type": "perPlayer", "value": 1, "clueSide": "back"}, + "Catacombs_14b1cb": {"type": "perPlayer", "value": 1, "clueSide": "back"}, + "Catacombs_81920c": {"type": "perPlayer", "value": 1, "clueSide": "back"}, + "Catacombs_c14c8b": {"type": "perPlayer", "value": 1, "clueSide": "back"}, + "Catacombs_ea2a55": {"type": "fixed", "value": 0, "clueSide": "back"}, + "Catacombs_8bcab3": {"type": "fixed", "value": 0, "clueSide": "back"}, + "Catacombs_7c7f4a": {"type": "fixed", "value": 0, "clueSide": "back"}, + "Catacombs_80cf41": {"type": "fixed", "value": 0, "clueSide": "back"}, + + "Abbey Church": {"type": "perPlayer", "value": 1, "clueSide": "back"}, + "Porte de l'Avancée": {"type": "perPlayer", "value": 1, "clueSide": "back"}, + "Grand Rue": {"type": "perPlayer", "value": 1, "clueSide": "back"}, + "Cloister": {"type": "perPlayer", "value": 1, "clueSide": "back"}, + "Knight's Hall": {"type": "perPlayer", "value": 1, "clueSide": "back"}, + "Chœur Gothique": {"type": "perPlayer", "value": 1, "clueSide": "back"}, + "Outer Wall": {"type": "perPlayer", "value": 1, "clueSide": "back"}, + "Outer Wall_014bd6": {"type": "perPlayer", "value": 2, "clueSide": "back"}, + "North Tower": {"type": "perPlayer", "value": 1, "clueSide": "back"}, + "North Tower_69eae5": {"type": "perPlayer", "value": 2, "clueSide": "back"}, + "Chapel of St. Aubert": {"type": "perPlayer", "value": 3, "clueSide": "back"}, + "Chapel of St. Aubert_e75ba8": {"type": "perPlayer", "value": 2, "clueSide": "back"}, + "Abbey Tower": {"type": "perPlayer", "value": 3, "clueSide": "back"}, + "Abbey Tower_2f3d21": {"type": "perPlayer", "value": 2, "clueSide": "back"}, + + "Shores of Hali": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + "Dark Spires": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + "Palace of the King": {"type": "perPlayer", "value": 3, "clueSide": "front"}, + "Palace of the King_60d758": {"type": "perPlayer", "value": 1, "clueSide": "front"}, + "Ruins of Carcosa": {"type": "perPlayer", "value": 1, "clueSide": "front"}, + "Dim Streets": {"type": "perPlayer", "value": 1, "clueSide": "front"}, + "Depths of Demhe": {"type": "perPlayer", "value": 1, "clueSide": "front"}, + "Bleak Plains": {"type": "perPlayer", "value": 1, "clueSide": "front"}, + "Recesses of Your Own Mind": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + "The Throne Room": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + "Stage of the Ward Theatre": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + + "Serpent’s Haven": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + "Ruins of Eztli": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + "Rope Bridge": {"type": "perPlayer", "value": 1, "clueSide": "front"}, + "Overgrown Ruins": {"type": "perPlayer", "value": 1, "clueSide": "front"}, + "River Canyon": {"type": "perPlayer", "value": 1, "clueSide": "front"}, + "Path of Thorns": {"type": "perPlayer", "value": 1, "clueSide": "front"}, + "Temple of the Fang": {"type": "perPlayer", "value": 1, "clueSide": "front"}, + "Circuitous Trail": {"type": "perPlayer", "value": 1, "clueSide": "front"}, + + "Chamber of Time": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + "Ancient Hall": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + "Grand Chamber": {"type": "perPlayer", "value": 1, "clueSide": "front"}, + "Entryway": {"type": "perPlayer", "value": 1, "clueSide": "back"}, + "Underground Ruins": {"type": "perPlayer", "value": 1, "clueSide": "front"}, + "Burial Pit": {"type": "perPlayer", "value": 1, "clueSide": "front"}, + "Secret Passage": {"type": "perPlayer", "value": 1, "clueSide": "front"}, + + "Town Hall": {"type": "perPlayer", "value": 1, "clueSide": "back"}, + "Curiositie Shoppe": {"type": "perPlayer", "value": 2, "clueSide": "back"}, + "At the Station_7edfb0": {"type": "perPlayer", "value": 1, "clueSide": "back"}, + "At the Station_e2806c": {"type": "perPlayer", "value": 2, "clueSide": "back"}, + "At the Station_28ebe1": {"type": "perPlayer", "value": 2, "clueSide": "back"}, + "At the Station_e59778": {"type": "perPlayer", "value": 2, "clueSide": "back"}, + + "Sacred Woods": {"type": "perPlayer", "value": 1, "clueSide": "front"}, + "Chapultepec Hill": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + "Chapultepec Hill_b5d586": {"type": "perPlayer", "value": 1, "clueSide": "front"}, + "Canals of Tenochtitlán": {"type": "perPlayer", "value": 1, "clueSide": "front"}, + "Lake Xochimilco": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + "Lake Xochimilco_e3a79d": {"type": "perPlayer", "value": 1, "clueSide": "front"}, + "Templo Mayor": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + "Templo Mayor_f3c531": {"type": "perPlayer", "value": 1, "clueSide": "front"}, + "Temples of Tenochtitlán": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + "Temples of Tenochtitlán_c097d8": {"type": "perPlayer", "value": 1, "clueSide": "front"}, + + "Mouth of K'n-yan": {"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"}, + "Perilous Gulch": {"type": "perPlayer", "value": 1, "clueSide": "front"}, + "Dark Hollow": {"type": "perPlayer", "value": 1, "clueSide": "front"}, + "Hall of Idolatry": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + "Crystal Pillars": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + + "Interview Room": {"type": "perPlayer", "value": 1, "clueSide": "back"}, + "Interview Room_508f85": {"type": "perPlayer", "value": 0, "clueSide": "back"}, + "Interview Room_4440de": {"type": "perPlayer", "value": 0, "clueSide": "back"}, + "Halls of Pnakotus": {"type": "fixed", "value": 1, "clueSide": "back"}, + "Deconstruction Room": {"type": "perPlayer", "value": 1, "clueSide": "back"}, + "Towers of Pnakotus": {"type": "perPlayer", "value": 2, "clueSide": "back"}, + "Laboratory of the Great Race": {"type": "perPlayer", "value": 1, "clueSide": "back"}, + "Yithian Orrery": {"type": "perPlayer", "value": 1, "clueSide": "back"}, + "Great Library": {"type": "fixed", "value": 4, "clueSide": "back"}, + + "City of the Serpents": {"type": "perPlayer", "value": 1, "clueSide": "front"}, + "Bridge over N'kai": {"type": "perPlayer", "value": 1, "clueSide": "front"}, + "Abandoned Site": {"type": "perPlayer", "value": 1, "clueSide": "front"}, + "Caverns of Yoth": {"type": "perPlayer", "value": 1, "clueSide": "front"}, + "Hall of Heresy": {"type": "perPlayer", "value": 1, "clueSide": "front"}, + "Bright Canyon": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + "Forked Path": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + + "Nexus of N'kai": {"type": "perPlayer", "value": 1, "clueSide": "back"}, + "A Pocket in Time": {"type": "perPlayer", "value": 1, "clueSide": "front"}, + "City of the Unseen": {"type": "fixed", "value": 1, "clueSide": "front"}, + "Valusia": {"type": "fixed", "value": 2, "clueSide": "front"}, + + "Shores of R’lyeh": {"type": "fixed", "value": 2, "clueSide": "front"}, + "Atlantis": {"type": "fixed", "value": 2, "clueSide": "front"}, + "Pnakotus": {"type": "fixed", "value": 3, "clueSide": "front"}, + "Ruins of New York": {"type": "fixed", "value": 3, "clueSide": "front"}, + "Yuggoth": {"type": "fixed", "value": 3, "clueSide": "front"}, + "Mu": {"type": "fixed", "value": 4, "clueSide": "front"}, + + "Billiards Room": {"type": "perPlayer", "value": 1, "clueSide": "back"}, + "Billiards Room_33990b": {"type": "perPlayer", "value": 0, "clueSide": "back"}, + "Trophy Room": {"type": "perPlayer", "value": 1, "clueSide": "back"}, + "Trophy Room_e9160a": {"type": "perPlayer", "value": 0, "clueSide": "back"}, + "Master Bedroom": {"type": "perPlayer", "value": 1, "clueSide": "back"}, + "Balcony_1b5483": {"type": "fixed", "value": 0, "clueSide": "back"}, + "Office": {"type": "perPlayer", "value": 2, "clueSide": "back"}, + "Office_a1bd9a": {"type": "perPlayer", "value": 1, "clueSide": "back"}, + "Witch-Haunted Woods_1539ea": {"type": "perPlayer", "value": 2, "clueSide": "back"}, + "Witch-Haunted Woods": {"type": "perPlayer", "value": 1, "clueSide": "back"}, + "Witch-Haunted Woods_d3f8c3": {"type": "perPlayer", "value": 2, "clueSide": "back"}, + "Witch-Haunted Woods_eca18e": {"type": "perPlayer", "value": 2, "clueSide": "back"}, + "Paths into Twilight": {"type": "perPlayer", "value": 3, "clueSide": "back"}, + + "The Imperial Entrance": {"type": "fixed", "value": 1, "clueSide": "back"}, + "Dark Stairwell": {"type": "fixed", "value": 1, "clueSide": "back"}, + "Stairway": {"type": "fixed", "value": 1, "clueSide": "back"}, + "The Balcony": {"type": "perPlayer", "value": 1, "clueSide": "back"}, + "The Back Booths": {"type": "perPlayer", "value": 1, "clueSide": "back"}, + "The Lobby": {"type": "perPlayer", "value": 1, "clueSide": "back"}, + "Backroom Door": {"type": "perPlayer", "value": 2, "clueSide": "back"}, + "Backroom Door_ed439d": {"type": "perPlayer", "value": 1, "clueSide": "back"}, + "The Dining Area": {"type": "perPlayer", "value": 2, "clueSide": "back"}, + "The Dance Floor": {"type": "perPlayer", "value": 2, "clueSide": "back"}, + "Gateway to the East": {"type": "fixed", "value": 1, "clueSide": "back"}, + "Back Alley": {"type": "perPlayer", "value": 1, "clueSide": "back"}, + "Mingzhu Laundry": {"type": "perPlayer", "value": 1, "clueSide": "back"}, + "The Dragon's Den": {"type": "perPlayer", "value": 1, "clueSide": "front"}, + "The Phoenix's Nest": {"type": "perPlayer", "value": 1, "clueSide": "back"}, + "Golden Temple of the Heavens": {"type": "perPlayer", "value": 2, "clueSide": "back"}, + "Flea Market": {"type": "perPlayer", "value": 2, "clueSide": "back"}, + "Zihao's House of Fighting Arts": {"type": "perPlayer", "value": 2, "clueSide": "back"}, + "Daiyu's Tea Garden": {"type": "perPlayer", "value": 2, "clueSide": "back"}, + + "Moldy Halls": {"type": "perPlayer", "value": 1, "clueSide": "back"}, + "Decrepit Door": {"type": "perPlayer", "value": 1, "clueSide": "back"}, + "Walter Gilman's Room": {"type": "perPlayer", "value": 1, "clueSide": "back"}, + "Unknown Places_b538f8": {"type": "perPlayer", "value": 0, "clueSide": "back"}, + "Unknown Places_7bea34": {"type": "perPlayer", "value": 0, "clueSide": "back"}, + "Unknown Places": {"type": "perPlayer", "value": 2, "clueSide": "back"}, + "Unknown Places_9a471d": {"type": "perPlayer", "value": 1, "clueSide": "back"}, + "Unknown Places_0ac3ea": {"type": "perPlayer", "value": 1, "clueSide": "back"}, + "Strange Geometry": {"type": "fixed", "value": 1, "clueSide": "front"}, + "Site of the Sacrifice": {"type": "perPlayer", "value": 3, "clueSide": "back"}, + + "Hangman's Brook": {"type": "perPlayer", "value": 1, "clueSide": "back"}, + "Abandoned Chapel": {"type": "perPlayer", "value": 2, "clueSide": "back"}, + "Haunted Fields": {"type": "perPlayer", "value": 2, "clueSide": "back"}, + + "Lobby_1c2dfe": {"type": "perPlayer", "value": 1, "clueSide": "back"}, + "Lobby_bcd556": {"type": "perPlayer", "value": 0, "clueSide": "back"}, + "Lodge Gates_fa6a29": {"type": "perPlayer", "value": 1, "clueSide": "back"}, + "Lodge Gates": {"type": "perPlayer", "value": 0, "clueSide": "back"}, + "Lodge Cellar": {"type": "perPlayer", "value": 0, "clueSide": "back"}, + "Lodge Cellar_8ea4fd": {"type": "perPlayer", "value": 1, "clueSide": "back"}, + "Lounge": {"type": "perPlayer", "value": 2, "clueSide": "back"}, + "Vault": {"type": "perPlayer", "value": 1, "clueSide": "back"}, + "Inner Sanctum": {"type": "perPlayer", "value": 1, "clueSide": "back"}, + "Library": {"type": "perPlayer", "value": 1, "clueSide": "back"}, + "Library_47ccbc": {"type": "perPlayer", "value": 0, "clueSide": "back"}, + "Sanctum Doorway": {"type": "perPlayer", "value": 2, "clueSide": "back"}, + "Sanctum Doorway_4da6c3": {"type": "perPlayer", "value": 1, "clueSide": "back"}, + + "The Geist-Trap": {"type": "perPlayer", "value": 1, "clueSide": "back"}, + "Forbidding Shore": {"type": "perPlayer", "value": 1, "clueSide": "back"}, + "Unvisited Isle": {"type": "perPlayer", "value": 2, "clueSide": "back"}, + + "Rivertown_92ee68": {"type": "fixed", "value": 0, "clueSide": "back"}, + "Rivertown_db4b20": {"type": "fixed", "value": 0, "clueSide": "back"}, + "Southside_c898a0": {"type": "fixed", "value": 0, "clueSide": "back"}, + "Southside_e7f5fa": {"type": "fixed", "value": 0, "clueSide": "back"}, + "Silver Twilight Lodge": {"type": "fixed", "value": 0, "clueSide": "back"}, + "Silver Twilight Lodge_17e686": {"type": "perPlayer", "value": 1, "clueSide": "back"}, + "Hangman's Hill": {"type": "fixed", "value": 0, "clueSide": "back"}, + "Hangman's Hill_5f4d8a": {"type": "perPlayer", "value": 1, "clueSide": "back"}, + + "Cosmic Ingress": {"type": "fixed", "value": 3, "clueSide": "back"}, + "Cosmos": {"type": "fixed", "value": 1, "clueSide": "back"}, + "Cosmos_a89dbf": {"type": "fixed", "value": 2, "clueSide": "back"}, + "Cosmos_1a0ad2": {"type": "fixed", "value": 2, "clueSide": "back"}, + "Cosmos_30fc53": {"type": "fixed", "value": 2, "clueSide": "back"}, + "Cosmos_8f3e16": {"type": "fixed", "value": 2, "clueSide": "back"}, + "Cosmos_4e8ae3": {"type": "fixed", "value": 2, "clueSide": "back"}, + "Cosmos_a8d84d": {"type": "fixed", "value": 4, "clueSide": "back"}, + "Cosmos_7a3ece": {"type": "fixed", "value": 6, "clueSide": "back"}, + "Cosmos_311eb1": {"type": "perPlayer", "value": 2, "clueSide": "back"}, + + "Seventy Steps": {"type": "perPlayer", "value": 1, "clueSide": "back"}, + "Seven Hundred Steps": {"type": "perPlayer", "value": 1, "clueSide": "back"}, + "Base of the Steps": {"type": "perPlayer", "value": 1, "clueSide": "back"}, + "Enchanted Woods": {"type": "perPlayer", "value": 1, "clueSide": "back"}, + + "Stairwell": {"type": "perPlayer", "value": 1, "clueSide": "back"}, + "Basement Door_42fa87": {"type": "perPlayer", "value": 0, "clueSide": "back"}, + "Basement Door": {"type": "perPlayer", "value": 1, "clueSide": "back"}, + "Waiting Room": {"type": "perPlayer", "value": 1, "clueSide": "back"}, + "Emergency Room": {"type": "perPlayer", "value": 1, "clueSide": "back"}, + "Experimental Therapies Ward": {"type": "perPlayer", "value": 2, "clueSide": "back"}, + "Records Office": {"type": "perPlayer", "value": 2, "clueSide": "back"}, + + "Foyer_9a9f9a": {"type": "perPlayer", "value": 1, "clueSide": "back"}, + "Room 245": {"type": "perPlayer", "value": 1, "clueSide": "back"}, + "Hotel Roof": {"type": "perPlayer", "value": 1, "clueSide": "back"}, + "Office_b3ed47": {"type": "perPlayer", "value": 2, "clueSide": "back"}, + "Room 212": {"type": "perPlayer", "value": 2, "clueSide": "back"}, + "Basement": {"type": "perPlayer", "value": 1, "clueSide": "back"}, + "Second Floor Hall": {"type": "perPlayer", "value": 1, "clueSide": "back"}, + "Room 225": {"type": "perPlayer", "value": 1, "clueSide": "back"}, + "Restaurant": {"type": "perPlayer", "value": 1, "clueSide": "back"}, + "Suite Balcony": {"type": "perPlayer", "value": 1, "clueSide": "back"}, + + "Ulthar": {"type": "perPlayer", "value": 1, "clueSide": "front"}, + "Dylath-Leen": {"type": "perPlayer", "value": 1, "clueSide": "front"}, + "Mt. Ngranek": {"type": "perPlayer", "value": 1, "clueSide": "front"}, + "Baharna": {"type": "perPlayer", "value": 1, "clueSide": "front"}, + "Zulan-Thek": {"type": "perPlayer", "value": 1, "clueSide": "front"}, + "Sarnath": {"type": "perPlayer", "value": 1, "clueSide": "front"}, + "City-Which-Appears-On-No-Map": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + "Celephaïs": {"type": "perPlayer", "value": 1, "clueSide": "front"}, + "Nameless Ruins": {"type": "perPlayer", "value": 1, "clueSide": "front"}, + "Kadatheron": {"type": "perPlayer", "value": 1, "clueSide": "front"}, + "Ilek-Vad": {"type": "perPlayer", "value": 1, "clueSide": "front"}, + "Ruins of Ib": {"type": "perPlayer", "value": 1, "clueSide": "front"}, + "Temple of Unattainable Desires": {"type": "perPlayer", "value": 1, "clueSide": "front"}, + "Hazuth-Kleg": {"type": "perPlayer", "value": 1, "clueSide": "front"}, + "Serannian": {"type": "perPlayer", "value": 1, "clueSide": "front"}, + + "Mysterious Stairs": {"type": "perPlayer", "value": 0, "clueSide": "back"}, + "Mysterious Stairs_df1a40": {"type": "perPlayer", "value": 1, "clueSide": "back"}, + "Attic_10faf9": {"type": "perPlayer", "value": 1, "clueSide": "back"}, + "Unmarked Tomb": {"type": "perPlayer", "value": 1, "clueSide": "back"}, + "Upstairs Doorway": {"type": "perPlayer", "value": 1, "clueSide": "back"}, + "Front Porch": {"type": "perPlayer", "value": 1, "clueSide": "back"}, + "Downstairs Doorway": {"type": "perPlayer", "value": 1, "clueSide": "back"}, + "Downstairs Doorway_c93906": {"type": "perPlayer", "value": 2, "clueSide": "back"}, + "Burial Ground": {"type": "perPlayer", "value": 1, "clueSide": "back"}, + + "Temple of the Moon Lizard": {"type": "perPlayer", "value": 1, "clueSide": "back"}, + "City of the Moon-Beasts": {"type": "perPlayer", "value": 1, "clueSide": "back"}, + "Moon-Forest": {"type": "perPlayer", "value": 1, "clueSide": "back"}, + "The Dark Crater": {"type": "perPlayer", "value": 1, "clueSide": "back"}, + "Caverns Beneath the Moon": {"type": "perPlayer", "value": 1, "clueSide": "back"}, + "The Black Core": {"type": "perPlayer", "value": 1, "clueSide": "back"}, + "Light Side of the Moon": {"type": "perPlayer", "value": 1, "clueSide": "back"}, + + "City of Gugs": {"type": "perPlayer", "value": 1, "clueSide": "front"}, + "Vaults of Zin": {"type": "perPlayer", "value": 1, "clueSide": "front"}, + "Plain of the Ghouls": {"type": "perPlayer", "value": 1, "clueSide": "front"}, + "Sea of Bones": {"type": "perPlayer", "value": 1, "clueSide": "front"}, + "Vale of Pnath": {"type": "perPlayer", "value": 1, "clueSide": "front"}, + "Crag of the Ghouls": {"type": "perPlayer", "value": 2, "clueSide": "front"}, + "Sea of Pitch": {"type": "perPlayer", "value": 1, "clueSide": "front"}, + + "Plateau of Leng": {"type": "perPlayer", "value": 1, "clueSide": "back"}, + "Cold Wastes": {"type": "perPlayer", "value": 1, "clueSide": "back"}, + "Monastery of Leng": {"type": "perPlayer", "value": 2, "clueSide": "back"}, + "Onyx Gates": {"type": "fixed", "value": 12, "clueSide": "back"}, + "Forsaken Tower": {"type": "perPlayer", "value": 1, "clueSide": "back"}, + + "The Crater": {"type": "perPlayer", "value": 2, "clueSide": "back"}, + "Quarantine Zone": {"type": "perPlayer", "value": 1, "clueSide": "back"}, + "Quarantine Zone_5f2a9b": {"type": "perPlayer", "value": 0, "clueSide": "back"}, + "Quarantine Zone_4a8e9c": {"type": "perPlayer", "value": 0, "clueSide": "back"}, + "Quarantine Zone_5193e9": {"type": "perPlayer", "value": 2, "clueSide": "back"}, + "Quarantine Zone_b3a920": {"type": "perPlayer", "value": 2, "clueSide": "back"}, + + "The Great Web": {"type": "perPlayer", "value": 1, "clueSide": "back"}, + "The Great Web_39ace3": {"type": "perPlayer", "value": 2, "clueSide": "back"}, + "The Great Web_727790": {"type": "perPlayer", "value": 2, "clueSide": "back"}, + "The Great Web_5c5ec4": {"type": "perPlayer", "value": 2, "clueSide": "back"}, + "The Great Web_361fd7": {"type": "perPlayer", "value": 2, "clueSide": "back"}, + "The Great Web_dfdc8c": {"type": "perPlayer", "value": 2, "clueSide": "back"}, + + "XXXX": {"type": "perPlayer", "value": 2, "clueSide": "back"}, + "xxx": {"type": "perPlayer", "value": 2, "clueSide": "back"} +} +]] + +--[[ +Player cards with token counts and types +]] +PLAYER_CARD_DATA_JSON = [[ +{ + "Flashlight": { + "tokenType": "resource", + "tokenCount": 3 + }, + "Shrivelling": { + "tokenType": "resource", + "tokenCount": 4 + }, + "Shrivelling (3)": { + "tokenType": "resource", + "tokenCount": 4 + }, + "Grotesque Statue (4)": { + "tokenType": "resource", + "tokenCount": 4 + }, + "Forbidden Knowledge": { + "tokenType": "resource", + "tokenCount": 4 + }, + ".45 Automatic": { + "tokenType": "resource", + "tokenCount": 4 + }, + "Shotgun (4)": { + "tokenType": "resource", + "tokenCount": 2 + }, + "Liquid Courage": { + "tokenType": "resource", + "tokenCount": 4 + }, + "Song of the Dead (2)": { + "tokenType": "resource", + "tokenCount": 5 + }, + "Cover Up": { + "tokenType": "clue", + "tokenCount": 3 + }, + "Roland's .38 Special": { + "tokenType": "resource", + "tokenCount": 4 + }, + "First Aid": { + "tokenType": "resource", + "tokenCount": 3 + }, + "Scrying": { + "tokenType": "resource", + "tokenCount": 3 + }, + ".41 Derringer": { + "tokenType": "resource", + "tokenCount": 3 + }, + "Painkillers": { + "tokenType": "resource", + "tokenCount": 3 + }, + "Smoking Pipe": { + "tokenType": "resource", + "tokenCount": 3 + }, + "Clarity of Mind": { + "tokenType": "resource", + "tokenCount": 3 + }, + "Rite of Seeking": { + "tokenType": "resource", + "tokenCount": 3 + }, + "M1918 BAR (4)": { + "tokenType": "resource", + "tokenCount": 8 + }, + "Ornate Bow (3)": { + "tokenType": "resource", + "tokenCount": 1 + }, + ".41 Derringer (2)": { + "tokenType": "resource", + "tokenCount": 3 + }, + "Suggestion (4)": { + "tokenType": "resource", + "tokenCount": 3 + }, + "Chicago Typewriter (4)": { + "tokenType": "resource", + "tokenCount": 4 + }, + "Lupara (3)": { + "tokenType": "resource", + "tokenCount": 2 + }, + "First Aid (3)": { + "tokenType": "resource", + "tokenCount": 4 + }, + "Springfield M1903 (4)": { + "tokenType": "resource", + "tokenCount": 3 + }, + ".32 Colt": { + "tokenType": "resource", + "tokenCount": 6 + }, + "Venturer": { + "tokenType": "resource", + "tokenCount": 3 + }, + "Lockpicks (1)": { + "tokenType": "resource", + "tokenCount": 3 + }, + "Finn's Trusty .38": { + "tokenType": "resource", + "tokenCount": 3 + }, + ".45 Automatic (2)": { + "tokenType": "resource", + "tokenCount": 4 + }, + "Lightning Gun (5)": { + "tokenType": "resource", + "tokenCount": 3 + }, + "Strange Solution (4)": { + "tokenType": "resource", + "tokenCount": 4 + }, + "Strange Solution (4):Empowering Elixir": { + "tokenType": "resource", + "tokenCount": 3 + }, + "Arcane Insight (4)": { + "tokenType": "resource", + "tokenCount": 3 + }, + "Archaic Glyphs (3)": { + "tokenType": "resource", + "tokenCount": 3 + }, + "In the Know (1)": { + "tokenType": "resource", + "tokenCount": 3 + }, + "Rite of Seeking (4)": { + "tokenType": "resource", + "tokenCount": 3 + }, + "Alchemical Transmutation": { + "tokenType": "resource", + "tokenCount": 3 + }, + "Scrying (3)": { + "tokenType": "resource", + "tokenCount": 3 + }, + "Shrivelling (5)": { + "tokenType": "resource", + "tokenCount": 4 + }, + "Mists of R'lyeh": { + "tokenType": "resource", + "tokenCount": 4 + }, + "Mists of R'lyeh (4)": { + "tokenType": "resource", + "tokenCount": 5 + }, + "Colt Vest Pocket": { + "tokenType": "resource", + "tokenCount": 5 + }, + "Old Hunting Rifle (3)": { + "tokenType": "resource", + "tokenCount": 3 + }, + "Thermos": { + "tokenType": "resource", + "tokenCount": 3 + }, + "Feed the Mind (3)": { + "tokenType": "resource", + "tokenCount": 3 + }, + "Seal of the Seventh Sign (5)": { + "tokenType": "resource", + "tokenCount": 7 + }, + "Flamethrower (5)": { + "tokenType": "resource", + "tokenCount": 4 + }, + "Pnakotic Manuscripts (5)": { + "tokenType": "resource", + "tokenCount": 3 + }, + "Kerosene (1)": { + "tokenType": "resource", + "tokenCount": 3 + }, + "Shards of the Void (3)": { + "tokenType": "resource", + "tokenCount": 3 + }, + "Try and Try Again (1)": { + "tokenType": "resource", + "tokenCount": 3 + }, + "Arcane Initiate": { + "tokenType": "doom", + "tokenCount": 1 + }, + "Detective's Colt 1911s": { + "tokenType": "resource", + "tokenCount": 4 + }, + "Extra Ammunition (1)": { + "tokenType": "resource", + "tokenCount": 3 + }, + "Rite of Seeking (2)": { + "tokenType": "resource", + "tokenCount": 3 + }, + "Arcane Initiate (3)": { + "tokenType": "doom", + "tokenCount": 1 + }, + "Clarity of Mind (3)": { + "tokenType": "resource", + "tokenCount": 4 + }, + "Fingerprint Kit": { + "tokenType": "resource", + "tokenCount": 3 + }, + "Truth from Fiction": { + "tokenType": "resource", + "tokenCount": 2 + }, + "Enchanted Blade": { + "tokenType": "resource", + "tokenCount": 3 + }, + "Tennessee Sour Mash": { + "tokenType": "resource", + "tokenCount": 2 + }, + "Scroll of Secrets": { + "tokenType": "resource", + "tokenCount": 3 + }, + ".45 Thompson": { + "tokenType": "resource", + "tokenCount": 5 + }, + "Mr. \"Rook\"": { + "tokenType": "resource", + "tokenCount": 3 + }, + "Scroll of Secrets (3):Seeker": { + "tokenType": "resource", + "tokenCount": 3 + }, + "Scroll of Secrets (3):Mystic": { + "tokenType": "resource", + "tokenCount": 4 + }, + "Enchanted Blade (3):Guardian": { + "tokenType": "resource", + "tokenCount": 3 + }, + "Enchanted Blade (3):Mystic": { + "tokenType": "resource", + "tokenCount": 4 + }, + ".45 Thompson (3)": { + "tokenType": "resource", + "tokenCount": 5 + }, + "Esoteric Atlas (1)": { + "tokenType": "resource", + "tokenCount": 4 + }, + "Tennessee Sour Mash (3):Rogue": { + "tokenType": "resource", + "tokenCount": 2 + }, + "Tennessee Sour Mash (3):Survivor": { + "tokenType": "resource", + "tokenCount": 3 + }, + "Mk1 Grenades (4)": { + "tokenType": "resource", + "tokenCount": 3 + }, + "Dayana Esperence": { + "tokenType": "resource", + "tokenCount": 3 + }, + "Pendant of the Queen": { + "tokenType": "resource", + "tokenCount": 3 + }, + ".32 Colt (2)": { + "tokenType": "resource", + "tokenCount": 6 + }, + "Alchemical Transmutation (2)": { + "tokenType": "resource", + "tokenCount": 4 + }, + "Suggestion (1)": { + "tokenType": "resource", + "tokenCount": 3 + }, + "Gate Box": { + "tokenType": "resource", + "tokenCount": 3 + }, + "Tony's .38 Long Colt": { + "tokenType": "resource", + "tokenCount": 3 + }, + "Gregory Gry": { + "tokenType": "resource", + "tokenCount": 9 + }, + "Scroll of Prophecies": { + "tokenType": "resource", + "tokenCount": 4 + }, + "Healing Words": { + "tokenType": "resource", + "tokenCount": 3 + }, + "Otherworld Codex (2)": { + "tokenType": "resource", + "tokenCount": 3 + }, + ".35 Winchester": { + "tokenType": "resource", + "tokenCount": 5 + }, + "Old Book of Lore (3)": { + "tokenType": "resource", + "tokenCount": 2 + }, + "Sawed-Off Shotgun (5)": { + "tokenType": "resource", + "tokenCount": 2 + }, + "Mind's Eye (2)": { + "tokenType": "resource", + "tokenCount": 3 + }, + "xxx": { + "tokenType": "resource", + "tokenCount": 3 + } +} +]] +LOCATIONS_DATA = JSON.decode(LOCATIONS_DATA_JSON) +PLAYER_CARD_DATA = JSON.decode(PLAYER_CARD_DATA_JSON) + +PLAYER_CARD_TOKEN_OFFSETS = { + [1] = { + { 0, 3, -0.2 }, + }, + [2] = { + { 0.4, 3, -0.2 }, + { -0.4, 3, -0.2 }, + }, + [3] = { + { 0, 3, -0.9 }, + { 0.4, 3, -0.2 }, + { -0.4, 3, -0.2 }, + }, + [4] = { + { 0.4, 3, -0.9 }, + { -0.4, 3, -0.9 }, + { 0.4, 3, -0.2 }, + { -0.4, 3, -0.2 } + }, + [5] = { + { 0.7, 3, -0.9 }, + { 0, 3, -0.9 }, + { -0.7, 3, -0.9 }, + { 0.4, 3, -0.2 }, + { -0.4, 3, -0.2 } + }, + [6] = { + { 0.7, 3, -0.9 }, + { 0, 3, -0.9 }, + { -0.7, 3, -0.9 }, + { 0.7, 3, -0.2 }, + { 0, 3, -0.2 }, + { -0.7, 3, -0.2 }, + }, + [7] = { + { 0.7, 3, -0.9 }, + { 0, 3, -0.9 }, + { -0.7, 3, -0.9 }, + { 0.7, 3, -0.2 }, + { 0, 3, -0.2 }, + { -0.7, 3, -0.2 }, + { 0, 3, 0.5 }, + }, + [8] = { + { 0.7, 3, -0.9 }, + { 0, 3, -0.9 }, + { -0.7, 3, -0.9 }, + { 0.7, 3, -0.2 }, + { 0, 3, -0.2 }, + { -0.7, 3, -0.2 }, + { -0.35, 3, 0.5 }, + { 0.35, 3, 0.5 }, + }, + [9] = { + { 0.7, 3, -0.9 }, + { 0, 3, -0.9 }, + { -0.7, 3, -0.9 }, + { 0.7, 3, -0.2 }, + { 0, 3, -0.2 }, + { -0.7, 3, -0.2 }, + { 0.7, 3, 0.5 }, + { 0, 3, 0.5 }, + { -0.7, 3, 0.5 }, + }, + [12] = { + { 0.7, 3, -0.9 }, + { 0, 3, -0.9 }, + { -0.7, 3, -0.9 }, + { 0.7, 3, -0.2 }, + { 0, 3, -0.2 }, + { -0.7, 3, -0.2 }, + { 0.7, 3, 0.5 }, + { 0, 3, 0.5 }, + { -0.7, 3, 0.5 }, + { 0.7, 3, 1.2 }, + { 0, 3, 1.2 }, + { -0.7, 3, 1.2 }, + } + +} + +modeData = { + ['Core Set'] = { + 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' } }, + hard = { token = { '0', '0', '0', 'm1', 'm1', 'm2', 'm2', 'm3', 'm3', 'm4', 'm5', 'skull', 'skull', 'cultist', 'tablet', 'red', 'blue' } }, + expert = { token = { '0', 'm1', 'm1', 'm2', 'm2', 'm3', 'm3', 'm4', 'm4', 'm5', 'm6', 'm8', 'skull', 'skull', 'cultist', 'tablet', 'red', 'blue' } } + }, + ['The Devourer Below'] = { + easy = { parent = 'Core Set', append = { 'elder' }, message = 'An additional token for the preparation of this scenario has been added to the bag.' }, + normal = { parent = 'Core Set', append = { 'elder' }, message = 'An additional token for the preparation of this scenario has been added to the bag.' }, + hard = { parent = 'Core Set', append = { 'elder' }, message = 'An additional token for the preparation of this scenario has been added to the bag.' }, + expert = { parent = 'Core Set', append = { 'elder' }, message = 'An additional token for the preparation of this scenario has been added to the bag.' } + }, + -----------------The Dunwich Legacy + + ['The Dunwich Legacy'] = { + easy = { token = { 'p1', 'p1', '0', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'skull', 'skull', 'cultist', 'red', 'blue' } }, + normal = { token = { 'p1', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'm3', 'm4', 'skull', 'skull', 'cultist', 'red', 'blue' } }, + hard = { token = { '0', '0', '0', 'm1', 'm1', 'm2', 'm2', 'm3', 'm3', 'm4', 'm5', 'skull', 'skull', 'cultist', 'red', 'blue' } }, + expert = { token = { '0', 'm1', 'm1', 'm2', 'm2', 'm3', 'm3', 'm4', 'm4', 'm5', 'm6', 'm8', 'skull', 'skull', 'cultist', 'red', 'blue' } } + }, + ['The Miskatonic Museum'] = { + standalone = { token = { 'p1', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'm3', 'm4', 'skull', 'skull', 'cultist', 'tablet', 'elder', 'red', 'blue' } } + }, + ['The Essex County Express'] = { + standalone = { token = { 'p1', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'm3', 'm3', 'm4', 'skull', 'skull', 'cultist', 'tablet', 'elder', 'red', 'blue' } } + }, + ['Blood on the Altar'] = { + standalone = { token = { 'p1', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'm3', 'm3', 'm4', 'skull', 'skull', 'cultist', 'tablet', 'elder', 'red', 'blue' } } + }, + ['Undimensioned and Unseen'] = { + standalone = { token = { 'p1', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'm3', 'm3', 'm4', 'skull', 'skull', 'cultist', 'tablet', 'elder', 'red', 'blue' } } + }, + ['Where Doom Awaits'] = { + standalone = { token = { 'p1', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'm3', 'm3', 'm4', 'm5', 'skull', 'skull', 'cultist', 'tablet', 'elder', 'red', 'blue' } } + }, + ['Lost in Time and Space'] = { + standalone = { token = { 'p1', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'm3', 'm3', 'm4', 'm5', 'skull', 'skull', 'cultist', 'tablet', 'elder', 'red', 'blue' } } + }, + -----------------The Path to Carcosa + + ['The Path to Carcosa'] = { + easy = { token = { 'p1', 'p1', '0', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'skull', 'skull', 'skull', 'red', 'blue' } }, + normal = { token = { 'p1', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'm3', 'm4', 'skull', 'skull', 'skull', 'red', 'blue' } }, + hard = { token = { '0', '0', '0', 'm1', 'm1', 'm2', 'm2', 'm3', 'm3', 'm4', 'm5', 'skull', 'skull', 'skull', 'red', 'blue' } }, + expert = { token = { '0', 'm1', 'm1', 'm2', 'm2', 'm3', 'm3', 'm4', 'm4', 'm5', 'm6', 'm8', 'skull', 'skull', 'skull', 'red', 'blue' } } + }, + ['The Last King'] = { + standalone = { token = { 'p1', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'm3', 'm4', 'skull', 'skull', 'skull', 'red', 'blue' }, random = { {'cultist', 'cultist'}, {'tablet', 'tablet'}, {'elder', 'elder'} } } + }, + ['Echoes of the Past'] = { + standalone = { token = { 'p1', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'm3', 'm4', 'skull', 'skull', 'skull', 'red', 'blue' }, random = { {'cultist', 'cultist'}, {'tablet', 'tablet'}, {'elder', 'elder'} } } + }, + ['The Unspeakable Oath'] = { + standalone = { token = { 'p1', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'm3', 'm3', 'm4', 'skull', 'skull', 'skull', 'red', 'blue' }, random = { {'cultist', 'cultist'}, {'tablet', 'tablet'}, {'elder', 'elder'} } } + }, + ['A Phantom of Truth'] = { + standalone = { token = { 'p1', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'm3', 'm3', 'm4', 'skull', 'skull', 'skull', 'red', 'blue' }, random = { {'cultist', 'cultist'}, {'tablet', 'tablet'}, {'elder', 'elder'} } } + }, + ['The Pallid Mask'] = { + standalone = { token = { 'p1', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'm3', 'm3', 'm4', 'skull', 'skull', 'skull', 'red', 'blue' }, random = { {'cultist', 'cultist'}, {'tablet', 'tablet'}, {'elder', 'elder'} } } + }, + ['Black Stars Rise'] = { + standalone = { token = { 'p1', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'm3', 'm3', 'm4', 'm5', 'skull', 'skull', 'skull', 'red', 'blue' }, random = { {'cultist', 'cultist'}, {'tablet', 'tablet'}, {'elder', 'elder'} } } + }, + ['Dim Carcosa'] = { + standalone = { token = { 'p1', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'm3', 'm3', 'm4', 'm5', 'skull', 'skull', 'skull', 'red', 'blue' } } + }, + -----------------The Forgotten Age + + ['The Forgotten Age'] = { + easy = { token = { 'p1', 'p1', '0', '0', '0', 'm1', 'm1', 'm2', 'm3', 'skull', 'skull', 'elder', 'red', 'blue' } }, + normal = { token = { 'p1', '0', '0', '0', 'm1', 'm2', 'm2', 'm3', 'm5', 'skull', 'skull', 'elder', 'red', 'blue' } }, + hard = { token = { 'p1', '0', '0', 'm1', 'm2', 'm3', 'm3', 'm4', 'm6', 'skull', 'skull', 'elder', 'red', 'blue' } }, + expert = { token = { '0', 'm1', 'm2', 'm2', 'm3', 'm3', 'm4', 'm4', 'm6', 'm8', 'skull', 'skull', 'elder', 'red', 'blue' } } + }, + ['The Doom of Eztli'] = { + standalone = { token = { 'p1', '0', '0', '0','m1', 'm2', 'm2', 'm3', 'm5', 'skull', 'skull', 'cultist', 'tablet', 'elder', 'red', 'blue' } } + }, + ['Threads of Fate'] = { + standalone = { token = { 'p1', '0', '0', '0','m1', 'm2', 'm2', 'm3', 'm5', 'skull', 'skull', 'cultist', 'tablet', 'elder', 'red', 'blue' } } + }, + ['The Boundary Beyond'] = { + standalone = { token = { 'p1', '0', '0', '0','m1', 'm2', 'm2', 'm3', 'm5', 'skull', 'skull', 'cultist', 'tablet', 'elder', 'red', 'blue' } } + }, + ['The City of Archives'] = { + standalone = { token = { 'p1', '0', '0', '0','m1', 'm2', 'm2', 'm3', 'm5', 'skull', 'skull', 'cultist', 'tablet', 'elder', 'red', 'blue' } } + }, + ['The Depths of Yoth'] = { + standalone = { token = { 'p1', '0', '0', '0','m1', 'm2', 'm2', 'm3', 'm5', 'skull', 'skull', 'cultist', 'tablet', 'elder', 'red', 'blue' } } + }, + ['Heart of the Elders'] = { + standalone = { token = { 'p1', '0', '0', '0','m1', 'm2', 'm2', 'm3', 'm5', 'skull', 'skull', 'cultist', 'tablet', 'elder', 'red', 'blue' } } + }, + ['Shattered Aeons'] = { + standalone = { token = { 'p1', '0', '0', '0','m1', 'm2', 'm2', 'm3', 'm4', 'm5', 'skull', 'skull', 'elder', 'red', 'blue' } } + }, + + -----------------The Circle Undone + + ['The Circle Undone'] = { + easy = { token = { 'p1', 'p1', '0', '0', '0', 'm1', 'm1', 'm2', 'm3', 'skull', 'skull', 'red', 'blue' } }, + normal = { token = { 'p1', '0', '0', 'm1', 'm1', 'm2', 'm2', 'm3', 'm4', 'skull', 'skull', 'red', 'blue' } }, + hard = { token = { '0', '0', 'm1', 'm1', 'm2', 'm2', 'm3', 'm4', 'm5', 'skull', 'skull', 'red', 'blue' } }, + expert = { token = { '0', 'm1', 'm1', 'm2', 'm2', 'm3', 'm4', 'm6', 'm8', 'skull', 'skull', 'red', 'blue' } } + }, + ['The Witching Hour'] = { + standalone = { token = { 'p1', '0', '0', 'm1','m1', 'm2', 'm2', 'm3', 'm4', 'skull', 'skull', 'tablet', 'elder', 'red', 'blue' } } + }, + ['The Wages of Sin'] = { + standalone = { token = { 'p1', '0', '0', 'm1','m1', 'm2', 'm2', 'm3', 'm4', 'skull', 'skull', 'cultist', 'tablet', 'elder', 'red', 'blue' } } + }, + ['For the Greater Good'] = { + standalone = { token = { 'p1', '0', '0', 'm1','m1', 'm2', 'm2', 'm3', 'm4', 'skull', 'skull', 'cultist', 'tablet', 'elder', 'red', 'blue' } } + }, + + -----------------The Dream-Eaters + + ['TDE_A'] = { + easy = { token = { 'p1', 'p1', '0', '0', '0', 'm1', 'm1', 'm2', 'm2', 'cultist', 'tablet', 'tablet', 'red', 'blue' } }, + normal = { token = { 'p1', '0', '0', 'm1', 'm1', 'm2', 'm2', 'm3', 'm4', 'cultist', 'tablet', 'tablet', 'red', 'blue' } }, + hard = { token = { '0', '0', 'm1', 'm1', 'm2', 'm2', 'm3', 'm3', 'm4', 'm5', 'cultist', 'tablet', 'tablet', 'red', 'blue' } }, + expert = { token = { '0', 'm1', 'm1', 'm2', 'm2', 'm3', 'm4', 'm4', 'm5', 'm6', 'm8', 'cultist', 'tablet', 'tablet', 'red', 'blue' } } + }, + ['TDE_B'] = { + easy = { token = { 'p1', 'p1', '0', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'skull', 'skull', 'cultist', 'elder', 'elder', 'red', 'blue' } }, + normal = { token = { 'p1', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'm3', 'm4', 'skull', 'skull', 'cultist', 'elder', 'elder', 'red', 'blue' } }, + hard = { token = { '0', '0', '0', 'm1', 'm1', 'm2', 'm2', 'm3', 'm3', 'm4', 'm5', 'skull', 'skull', 'cultist', 'elder', 'elder', 'red', 'blue' } }, + expert = { token = { '0', 'm1', 'm1', 'm2', 'm2', 'm3', 'm3', 'm4', 'm4', 'm5', 'm6', 'm8', 'skull', 'skull', 'cultist', 'elder', 'elder', 'red', 'blue' } } + }, + ['The Search For Kadath'] = { + standalone = { token = { 'p1', '0', '0', 'm1', 'm1', 'm2', 'm2', 'm3', 'm4', 'skull', 'skull', 'skull', 'cultist', 'tablet', 'tablet', 'red', 'blue' } } + }, + ['A Thousand Shapes of Horror'] = { + standalone = { token = { 'p1', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'm3', 'm4', 'skull', 'skull', 'cultist', 'elder', 'elder', 'red', 'blue' } } + }, + ['Dark Side of the Moon'] = { + standalone = { token = { 'p1', '0', '0', 'm1', 'm1', 'm2', 'm2', 'm3', 'm4', 'skull', 'skull', 'skull', 'cultist', 'tablet', 'tablet', 'red', 'blue' } } + }, + ['Point of No Return'] = { + standalone = { token = { 'p1', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'm3', 'm4', 'skull', 'skull', 'skull', 'cultist', 'elder', 'elder', 'red', 'blue' } } + }, + ['Where the Gods Dwell'] = { + standalone = { token = { 'p1', '0', '0', 'm1', 'm1', 'm2', 'm2', 'm3', 'm4', 'skull', 'skull', 'skull', 'cultist', 'tablet', 'tablet', 'red', 'blue' } } + }, + ['Weaver of the Cosmos'] = { + standalone = { token = { 'p1', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'm3', 'm4', 'skull', 'skull', 'skull', 'cultist', 'elder', 'elder', 'red', 'blue' } } + }, + + -----------------The Side Missions + --official + ['Curse of the Rougarou'] = { + normal = { token = { 'p1', 'p1', '0', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'm3', 'm3', 'm4', 'm4', 'm5', 'm6', 'skull', 'skull', 'cultist', 'cultist', 'tablet', 'elder', 'red', 'blue' } }, + hard = { token = { 'p1', '0', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'm3', 'm3', 'm4', 'm4', 'm5', 'm5', 'm6', 'm8', 'skull', 'skull', 'skull', 'cultist', 'cultist', 'tablet', 'elder', 'red', 'blue' } } + }, + ['Carnevale of Horrors'] = { + normal = { token = { 'p1', '0', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm3', 'm4', 'm6', 'skull', 'skull', 'skull', 'cultist', 'tablet', 'elder', 'red', 'blue' } }, + hard = { token = { 'p1', '0', '0', '0', 'm1', 'm1', 'm3', 'm4', 'm5', 'm6', 'm7', 'skull', 'skull', 'skull', 'cultist', 'tablet', 'elder', 'red', 'blue' } } + }, + ['The Labyrinths of Lunacy'] = { + normal = { token = { 'p1', '0', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'm3', 'm4', 'm5', 'skull', 'skull', 'red', 'blue' } }, + hard = { token = { 'p1', '0','m1', 'm1', 'm1', 'm2', 'm2', 'm2', 'm3', 'm4', 'm5', 'm6', 'skull', 'skull', 'red', 'blue' } } + }, + ['Guardians of the Abyss'] = { + normal = { token = { 'p1', 'p1', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'm3', 'm3', 'm4', 'm6', 'skull', 'skull', 'skull', 'cultist', 'tablet', 'elder', 'red', 'blue' } }, + hard = { token = { 'p1', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'm2', 'm3', 'm3', 'm4', 'm4', 'm5', 'm7', 'skull', 'skull', 'skull', 'cultist', 'tablet', 'elder', 'red', 'blue' } }, + }, + ['Excelsior'] = { + 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' } }, + }, + --fan-made + ['The Nephew Calls'] = { + easy = { token = { 'p1', 'p1', '0', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'skull', 'skull', 'cultist', 'tablet', 'elder', 'red', 'blue' } }, + normal = { token = { 'p1', '0', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'm3', 'm4', 'skull', 'skull', 'cultist', 'tablet', 'elder', 'red', 'blue' } }, + hard = { token = { '0', '0', '0', 'm1', 'm2', 'm3', 'm3', 'm4', 'm5', 'skull', 'skull', 'cultist', 'tablet', 'elder', 'red', 'blue' } }, + expert = { token = { '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'm3', 'm3', 'm3', 'm4', 'm4', 'm5', 'm6', 'm8', 'skull', 'skull', 'cultist', 'tablet', 'elder', 'red', 'blue' } } + }, + ['The Outsider'] = { + easy = { token = { 'p1', 'p1', '0', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'skull', 'skull', 'cultist', 'tablet', 'elder', 'red', 'blue' } }, + normal = { token = { 'p1', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'm3', 'm4', 'skull', 'skull', 'cultist', 'tablet', 'elder', 'red', 'blue' } } + }, + ['Stranger Things'] = { + normal = { token = { 'p1', '0', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm3', 'm4', 'm5', 'skull', 'skull', 'skull', 'cultist', 'tablet', 'elder', 'red', 'blue' } }, + hard = { token = { 'p1', '0', '0', '0', 'm1', 'm1', 'm2', 'm3', 'm4', 'm5', 'm6', 'skull', 'skull', 'skull', 'cultist', 'tablet', 'elder', 'red', 'blue' } } + }, + ['Winter Winds'] = { + easy = { token = { 'p1', 'p1', '0', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm3', 'skull', 'cultist', 'red', 'blue' } }, + normal = { token = { 'p1', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'm3', 'm4', 'skull', 'cultist', 'red', 'blue' } }, + hard = { token = { '0', '0', 'm1', 'm1', 'm2', 'm2', 'm3', 'm4', 'm5', 'm6', 'skull', 'cultist', 'red', 'blue' } }, + expert = { token = { '0', 'm1', 'm1', 'm2', 'm3', 'm4', 'm5', 'm6', 'm7', 'm8', 'skull', 'cultist', 'red', 'blue' } } + }, + ['The Festival'] = { + normal = { token = { 'p1', '0', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm3', 'm4', 'm6', 'skull', 'skull', 'skull', 'cultist', 'tablet', 'elder', 'red', 'blue' } }, + hard = { token = { 'p1', '0', '0', '0', 'm1', 'm1', 'm3', 'm4', 'm5', 'm6', 'm7', 'skull', 'skull', 'skull', 'cultist', 'tablet', 'elder', 'red', 'blue' } } + }, + ['Forbidding Desert'] = { + easy = { token = { 'p1', 'p1', '0', '0', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'skull', 'skull', 'cultist', 'tablet', 'red', 'blue' } }, + normal = { token = { '0', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'm3', 'm4', 'skull', 'skull', 'cultist', 'tablet', 'tablet', 'red', 'blue' } }, + expert = { token = { '0', 'm1', 'm1', 'm2', 'm2', 'm2', 'm3', 'm3', 'm4', 'm4', 'skull', 'skull', 'cultist', 'tablet', 'tablet', 'red', 'blue' } } + }, + ['Happys Funhouse'] = { + normal = { token = { 'p1', 'p1', '0', '0', '0', 'm1', 'm1', 'm2', 'm2', 'm3', 'm4', 'm5', 'skull', 'skull', 'skull', 'cultist', 'tablet', 'elder', 'red', 'blue' } }, + hard = { token = { 'p1', '0', '0', '0', 'm1', 'm2', 'm3', 'm3', 'm5', 'm7', 'skull', 'skull', 'skull', 'cultist', 'tablet', 'elder', 'red', 'blue' } } + }, + ['Knightfall'] = { + normal = { token = { 'p1', '0', '0', '0', 'm1', 'm1', 'm2', 'm2', 'm3', 'm3', 'm4', 'm4', 'm5', 'm6', 'cultist', 'cultist', 'tablet', 'elder', 'red', 'blue' } }, + hard = { token = { 'p1', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'm3', 'm3', 'm4', 'm4', 'm5', 'm5', 'm6', 'm8', 'cultist', 'cultist', 'cultist', 'tablet', 'elder', 'red', 'blue' } } + }, + ['Last Call at Roxies'] = { + easy = { token = { 'p1', '0', '0', '0', 'm1', 'm1', 'm2', 'm3', 'skull', 'elder', 'cultist', 'tablet', 'red', 'blue' } }, + normal = { token = { 'p1', '0', '0', 'm1', 'm1', 'm2', 'm3', 'm4', 'skull', 'skull', 'cultist', 'cultist', 'tablet', 'tablet', 'elder', 'red', 'blue' } }, + hard = { token = { '0', 'm1', 'm1', 'm2', 'm3', 'm4', 'm5', 'skull', 'skull', 'cultist', 'cultist', 'tablet', 'tablet', 'elder', 'elder', 'red', 'blue' } }, + expert = { token = { '0', 'm1', 'm1', 'm2', 'm3', 'm4', 'm5', 'm6', 'm7', 'skull', 'skull', 'cultist', 'cultist', 'tablet', 'tablet', 'elder', 'elder', 'red', 'blue' } } + }, + ['The Limens of Belief'] = { + easy = { token = { 'p1', 'p1', '0', '0', '0', '0', 'm1', 'm1', 'm1', 'm2', 'cultist', 'tablet', 'red', 'blue' } }, + normal = { token = { '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'skull', 'cultist', 'cultist', 'tablet', 'tablet', 'red', 'blue' } }, + expert = { token = { '0', 'm1', 'm1', 'm2', 'm3', 'm4', 'm5', 'skull', 'cultist', 'cultist', 'tablet', 'tablet', 'red', 'blue' } } + }, + ['Blood Spilled in Salem'] = { + normal = { token = { 'p1', 'p1', '0', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm3', 'm4', 'm5', 'm6', 'skull', 'skull', 'cultist', 'tablet', 'elder', 'red', 'blue' } }, + hard = { token = { 'p1', '0', '0', 'm1', 'm1', 'm2', 'm3', 'm4', 'm5', 'm6', 'm7', 'skull', 'skull', 'skull', 'cultist', 'cultist', 'tablet', 'elder', 'red', 'blue' } } + }, + ['Bread and Circuses'] = { + 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' } }, + hard = { token = { '0', '0', '0', 'm1', 'm1', 'm2', 'm2', 'm3', 'm3', 'm4', 'm5', 'skull', 'skull', 'cultist', 'tablet', 'red', 'blue' } }, + expert = { token = { '0', 'm1', 'm1', 'm2', 'm2', 'm3', 'm3', 'm4', 'm4', 'm5', 'm6', 'm8', 'skull', 'skull', 'cultist', 'tablet', 'red', 'blue' } } + }, + ['Bridge of Sighs'] = { + 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' } }, + hard = { token = { '0', '0', '0', 'm1', 'm1', 'm2', 'm3', 'm3', 'm4', 'm5', 'skull', 'skull', 'cultist', 'tablet', 'red', 'blue' } }, + expert = { token = { '0', 'm1', 'm1', 'm2', 'm2', 'm3', 'm3', 'm4', 'm4', 'm5', 'm6', 'm8', 'skull', 'skull', 'cultist', 'tablet', 'red', 'blue' } } + }, + ['The Collector'] = { + normal = { token = { 'p1', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'm3', 'm4', 'skull', 'skull', 'cultist', 'tablet', 'red', 'blue' } } + }, + ['The Colour out of Space'] = { + normal = { token = { 'p1', '0', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'm3', 'm3', 'm4', 'm5', 'skull', 'skull', 'cultist', 'tablet', 'elder', 'red', 'blue' } }, + hard = { token = { 'p1', '0', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'm3', 'm3', 'm4', 'm4', 'm5', 'm5', 'm6', 'skull', 'skull', 'skull', 'cultist', 'tablet', 'elder', 'red', 'blue' } } + }, + ['The Curse of Amultep'] = { + normal = { token = { 'p1', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'm3', 'm4', 'skull', 'skull', 'cultist', 'tablet', 'red', 'blue' } } + }, + ['The Dying Star'] = { + normal = { token = { 'p1', '0', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'm3', 'm3', 'm4', 'skull', 'skull', 'cultist', 'tablet', 'blue', 'red', 'blue' } }, + hard = { token = { 'p1', '0', '0', '0', 'm1', 'm1', 'm2', 'm3', 'm4', 'm5', 'm6', 'm7', 'skull', 'skull', 'cultist', 'tablet', 'tablet', 'blue', 'red', 'blue' } } + }, + ['Against the Wendigo'] = { + easy = { token = { 'p1', 'p1', '0', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'skull', 'skull', 'cultist', 'tablet', 'elder', 'red', 'blue' } }, + normal = { token = { 'p1', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'm3', 'm4', 'skull', 'skull', 'cultist', 'tablet', 'elder', 'red', 'blue' } }, + hard = { token = { '0', '0', '0', 'm1', 'm1', 'm2', 'm2', 'm3', 'm3', 'm4', 'm5', 'skull', 'skull', 'cultist', 'tablet', 'elder', 'red', 'blue' } }, + expert = { token = { '0', 'm1', 'm1', 'm2', 'm2', 'm3', 'm3', 'm4', 'm4', 'm5', 'm6', 'm7', 'm8', 'skull', 'skull', 'cultist', 'tablet', 'elder', 'red', 'blue' } } + }, + ['The Pensher Wyrm'] = { + 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', 'cultist', 'tablet', 'elder', 'red', 'blue' } }, + hard = { token = { '0', '0', '0', 'm1', 'm1', 'm2', 'm2', 'm3', 'm3', 'm4', 'm5', 'm6', 'skull', 'skull', 'skull', 'cultist', 'cultist', 'tablet', 'elder', 'red', 'blue' } }, + expert = { token = { '0', 'm1', 'm1', 'm2', 'm2', 'm3', 'm3', 'm4', 'm4', 'm5', 'm5', 'm6', 'm8', 'skull', 'skull', 'skull', 'cultist', 'cultist', 'tablet', 'elder', 'elder', 'red', 'blue' } } + }, + ['Approaching Storm'] = { + easy = { token = { 'p1', 'p1', '0', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'skull', 'cultist', 'cultist', 'tablet', 'elder', 'red', 'blue' } }, + normal = { token = { 'p1', '0', '0', 'm1', 'm1', 'm2', 'm2', 'm3', 'm4', 'skull', 'skull', 'cultist', 'cultist', 'tablet', 'elder', 'red', 'blue' } }, + hard = { token = { '0', 'm1', 'm1', 'm2', 'm3', 'm3', 'm4', 'm5', 'skull', 'skull', 'cultist', 'cultist', 'tablet', 'elder', 'red', 'blue' } }, + expert = { token = { '0', 'm1', 'm2', 'm3', 'm3', 'm4', 'm4', 'm5', 'm6', 'skull', 'skull', 'cultist', 'cultist', 'tablet', 'elder', 'red', 'blue' } } + }, + ['Into the Shadowlands'] = { + easy = { token = { 'p1', 'p1', '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' } }, + hard = { token = { '0', '0', '0', 'm1', 'm1', 'm2', 'm2', 'm3', 'm4', 'm5', 'skull', 'skull', 'cultist', 'tablet', 'red', 'blue' } }, + expert = { token = { '0', 'm1', 'm1', 'm2', 'm3', 'm3', 'm4', 'm5', 'm6', 'm7', 'skull', 'skull', 'cultist', 'tablet', 'red', 'blue' } } + }, + ['London Set 1'] = { + easy = { token = { 'p2', 'p1', '0', '0', '0', 'm1', 'm2', 'skull', 'cultist', 'tablet', 'red', 'blue' } }, + normal = { token = { 'p1', '0', '0', 'm2', 'skull', 'skull', 'cultist', 'cultist', 'tablet', 'tablet', 'red', 'blue' } }, + hard = { token = { '0', '0', 'm2', 'm4', 'skull', 'skull', 'cultist', 'cultist', 'tablet', 'tablet', 'red', 'blue' } }, + }, + ['London Set 2'] = { + normal = { token = { 'p1', '0', '0', 'm1', 'm2', 'm3', 'skull', 'skull', 'elder', 'tablet', 'red', 'blue' } }, + hard = { token = { '0', '0', 'm1', 'm2', 'm3', 'skull', 'skull', 'elder', 'elder', 'tablet', 'red', 'blue' } }, + }, + ['London Set 3'] = { + normal = { token = { 'p1', 'p1', '0', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'skull', 'skull', 'cultist', 'tablet', 'red', 'blue' } }, + }, + ['Delta Green'] = { + normal = { token = { 'p1', '0', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'm2', 'skull', 'skull', 'cultist', 'tablet', 'elder', 'red', 'blue' } }, + hard = { token = { '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'm2', 'm3', 'm4', 'm5', 'skull', 'skull', 'cultist', 'cultist', 'tablet', 'elder', 'red', 'blue' } }, + }, + ['Jennys Choice'] = { + easy = { token = { 'p1', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'm3', 'm4','skull', 'skull', 'cultist', 'tablet', 'elder', 'red', 'blue' } }, + hard = { token = { 'p1', '0', 'm1', 'm2', 'm2', 'm3', 'm3', 'm5', 'skull', 'skull', 'skull', 'cultist', 'tablet', 'tablet', 'elder', 'red', 'blue' } } + }, + ['The Blob'] = { + normal = { token = { 'p1', '0', '0', '0', 'm1', 'm2', 'm2', 'm3', 'm4', 'm5', 'skull', 'skull', 'cultist', 'tablet', 'elder', 'red', 'blue' } }, + hard = { token = { '0', '0', '0', 'm1', 'm1', 'm2', 'm3', 'm4', 'm5', 'm6', 'skull', 'skull', 'cultist', 'tablet', 'elder', 'red', 'blue' } }, + }, + ['The Initiation'] = { + easy = { token = { 'p1', 'p1', '0', '0', '0', 'm1', 'm1', 'm2', 'm3', 'skull', 'skull', 'elder', 'red', 'blue' } }, + normal = { token = { 'p1', '0', '0', '0', 'm1', 'm2', 'm2', 'm3', 'm5', 'skull', 'skull', 'elder', 'red', 'blue' } }, + hard = { token = { 'p1', '0', '0', 'm1', 'm2', 'm3', 'm3', 'm4', 'm6', 'skull', 'skull', 'elder', 'red', 'blue' } }, + expert = { token = { '0', 'm1', 'm2', 'm2', 'm3', 'm3', 'm4', 'm4', 'm6', 'm8', 'skull', 'skull', 'elder', 'red', 'blue' } } + }, + ['Consternation'] = { + normal = { token = { 'p1', '0', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'm3', 'm4', 'skull', 'skull', 'skull', 'red', 'blue' } }, + hard = { token = { 'p1', '0', '0', '0', 'm1', 'm1', 'm2', 'm2', 'm3', 'm4', 'm4', 'm4', 'm5', 'm6', 'm7', 'skull', 'skull', 'skull', 'red', 'blue' } }, + }, + ['Of Sphinx'] = { + easy = { token = { 'p1', 'p1', '0', '0', '0', 'm1', 'm1', 'm1', 'm2', 'm2', 'm3', 'skull', 'elder', 'cultist', 'tablet', 'red', 'blue' } }, + normal = { token = { 'p1', '0', '0', 'm1', 'm1', 'm1', 'm1', 'm2', 'm2', 'm3', 'm4', 'skull', 'elder', 'cultist', 'cultist', 'tablet', 'red', 'blue' } }, + hard = { token = { '0', '0', '0', 'm1', 'm1', 'm2', 'm3', 'm4', 'm5', 'skull', 'elder', 'cultist', 'cultist', 'tablet', 'red', 'blue' } }, + expert = { token = { '0', 'm1', 'm1', 'm2', 'm2', 'm3', 'm3', 'm4', 'm4', 'm5', 'm6', 'm8', 'elder', 'skull', 'skull', 'cultist', 'tablet', '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' } }, + hard = { token = { '0', '0', '0', 'm1', 'm1', 'm2', 'm2', 'm3', 'm3', 'm4', 'm5', 'skull', 'skull', 'cultist', 'tablet', 'red', 'blue' } }, + expert = { token = { '0', 'm1', 'm1', 'm2', 'm2', 'm3', 'm3', 'm4', 'm4', 'm5', 'm6', 'm8', 'skull', 'skull', 'cultist', 'tablet', 'red', 'blue' } } + }, + +} + +function onSave() + local globalState = JSON.encode(SPAWNED_PLAYER_CARD_GUIDS) + log('saving global state: ' .. globalState) + self.script_state = globalState +end + +function onload(save_state) + if save_state ~= '' then + log('loading global state: ' .. save_state) + SPAWNED_PLAYER_CARD_GUIDS = JSON.decode(save_state) + else + SPAWNED_PLAYER_CARD_GUIDS = {} + end +end + +function getSpawnedPlayerCardGuid(params) + local guid = params[1] + if SPAWNED_PLAYER_CARD_GUIDS == nil then + return nil + end + return SPAWNED_PLAYER_CARD_GUIDS[guid] +end + +function setSpawnedPlayerCardGuid(params) + local guid = params[1] + local value = params[2] + if SPAWNED_PLAYER_CARD_GUIDS ~= nil then + SPAWNED_PLAYER_CARD_GUIDS[guid] = value + return true + end + return false +end \ No newline at end of file diff --git a/unpacked/Custom_Tile Data Helper 708279.yaml b/unpacked/Custom_Tile Data Helper 708279.yaml new file mode 100644 index 000000000..5a32d7659 --- /dev/null +++ b/unpacked/Custom_Tile Data Helper 708279.yaml @@ -0,0 +1,42 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.01 + Type: 0 + ImageScalar: 1.0 + ImageSecondaryURL: '' + ImageURL: http://cloud-3.steamusercontent.com/ugc/254843371583173230/BECDC34EB4D2C8C5F9F9933C97085F82A2F21AE3/ + WidthScale: 0.0 +Description: '' +GMNotes: '' +GUID: '708279' +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: true +LuaScript: !include 'Custom_Tile Data Helper 708279.ttslua' +LuaScriptState: '{"1186a1":true,"1339b0":true,"462291":true,"529289":true,"682878":true,"a58a8f":true,"bcca6e":true,"ec44aa":true}' +Name: Custom_Tile +Nickname: Data Helper +Snap: true +Sticky: true +Tooltip: false +Transform: + posX: 34.4081154 + posY: 1.43585539 + posZ: -22.8922825 + rotX: 359.920654 + rotY: 254.949371 + rotZ: 0.0371938832 + scaleX: 1.0 + scaleY: 1.0 + scaleZ: 1.0 +XmlUI: '' diff --git a/unpacked/Custom_Tile Playermat 1 Yellow 8b081b.ttslua b/unpacked/Custom_Tile Playermat 1 Yellow 8b081b.ttslua new file mode 100644 index 000000000..b785a01c3 --- /dev/null +++ b/unpacked/Custom_Tile Playermat 1 Yellow 8b081b.ttslua @@ -0,0 +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}) +end \ No newline at end of file diff --git a/unpacked/Custom_Tile Playermat 1 Yellow 8b081b.yaml b/unpacked/Custom_Tile Playermat 1 Yellow 8b081b.yaml new file mode 100644 index 000000000..86465800d --- /dev/null +++ b/unpacked/Custom_Tile Playermat 1 Yellow 8b081b.yaml @@ -0,0 +1,143 @@ +AttachedSnapPoints: +- Position: + x: 0.0710891262 + y: 0.09997102 + z: -0.633720756 + Rotation: + x: -3.66321835e-08 + y: 0.0280849785 + z: -2.18434693e-07 +- Position: + x: 0.5208152 + y: 0.09971385 + z: -0.633939445 + Rotation: + x: -3.6553363e-08 + y: 0.0281122979 + z: -5.402876e-07 +- Position: + x: 0.9804662 + y: 0.09960243 + z: -0.634164751 + Rotation: + x: -3.67513557e-08 + y: 0.0281430352 + z: 2.6679524e-07 +- Position: + x: -0.384615272 + y: 0.09989375 + z: -0.6334956 + Rotation: + x: -3.76656857e-08 + y: 0.0281430352 + z: -2.79978553e-06 +- Position: + x: -0.8354233 + y: 0.09986052 + z: -0.633274555 + Rotation: + x: -3.518123e-08 + y: 0.0281430352 + z: 6.636666e-07 +- Position: + x: -1.4141587 + y: 0.100043312 + z: -0.0068189227 + Rotation: + x: -4.135929e-07 + y: -0.00133871706 + z: -3.96203859e-06 +- Position: + x: -1.42218959 + y: 0.09935715 + z: 0.64343673 + Rotation: + x: -2.06768345e-05 + y: 0.02254304 + z: -2.52870313e-06 +- Position: + x: -0.2365772 + y: 0.09869072 + z: 0.0235388055 +- Position: + x: 0.206866354 + y: 0.09918482 + z: 0.0255362634 +- Position: + x: 0.600492239 + y: 0.0988939852 + z: 0.0372882262 +- Position: + x: 0.9806156 + y: 0.09920918 + z: 0.04775218 +- Position: + x: 1.36469471 + y: 0.09886827 + z: 0.06254863 +- Position: + x: 1.34999776 + y: 0.09848883 + z: 0.585415542 +- Position: + x: 0.976687968 + y: 0.0984851941 + z: 0.569340467 +- Position: + x: 0.5858163 + y: 0.0987631157 + z: 0.567965746 +- Position: + x: 0.197266221 + y: 0.0988299549 + z: 0.5622925 +- Position: + x: -0.257249326 + y: 0.09890287 + z: 0.55316633 +- Position: + x: -0.7834355 + y: 0.09964343 + z: -5.34523824e-05 +Autoraise: true +ColorDiffuse: + b: 0.0 + g: 0.0 + r: 0.0 +CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.1 + Type: 3 + ImageScalar: 1.0 + ImageSecondaryURL: '' + ImageURL: http://cloud-3.steamusercontent.com/ugc/960860672861849661/E2DABD251B439AA352A2BC1B9E3926CE5FBA86EE/ + WidthScale: 0.0 +Description: '' +GMNotes: '' +GUID: 8b081b +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: true +LuaScript: !include 'Custom_Tile Playermat 1 Yellow 8b081b.ttslua' +LuaScriptState: '[]' +Name: Custom_Tile +Nickname: 'Playermat 1: Yellow' +Snap: true +Sticky: true +Tooltip: false +Transform: + posX: -55.0000343 + posY: 1.54401326 + posZ: 13.5500059 + rotX: 359.920135 + rotY: 269.97467 + rotZ: 0.0169066153 + scaleX: 6.43188572 + scaleY: 1.0 + scaleZ: 6.43188572 +XmlUI: '' diff --git a/unpacked/Custom_Tile Playermat 2 Orange bd0ff4.ttslua b/unpacked/Custom_Tile Playermat 2 Orange bd0ff4.ttslua new file mode 100644 index 000000000..b785a01c3 --- /dev/null +++ b/unpacked/Custom_Tile Playermat 2 Orange bd0ff4.ttslua @@ -0,0 +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}) +end \ No newline at end of file diff --git a/unpacked/Custom_Tile Playermat 2 Orange bd0ff4.yaml b/unpacked/Custom_Tile Playermat 2 Orange bd0ff4.yaml new file mode 100644 index 000000000..40a80fee6 --- /dev/null +++ b/unpacked/Custom_Tile Playermat 2 Orange bd0ff4.yaml @@ -0,0 +1,143 @@ +AttachedSnapPoints: +- Position: + x: 0.98182267 + y: 0.100345373 + z: -0.6453976 + Rotation: + x: -4.652415e-06 + y: 359.984253 + z: -1.16087818e-07 +- Position: + x: 0.5309097 + y: 0.100222155 + z: -0.645461738 + Rotation: + x: -4.646251e-06 + y: 359.984283 + z: -3.5311848e-06 +- Position: + x: 0.09502556 + y: 0.100845158 + z: -0.6404293 + Rotation: + x: -4.63924243e-06 + y: 359.984283 + z: -1.3367204e-06 +- Position: + x: -0.377179652 + y: 0.101084784 + z: -0.6412668 + Rotation: + x: -4.639143e-06 + y: 359.984283 + z: -4.69606562e-07 +- Position: + x: -0.826001942 + y: 0.100753441 + z: -0.6393944 + Rotation: + x: -4.62909657e-06 + y: 359.9843 + z: -1.26098442e-07 +- Position: + x: -1.424921 + y: 0.100124031 + z: 0.6519891 + Rotation: + x: 2.44487637e-06 + y: 0.00830551051 + z: -3.89516526e-06 +- Position: + x: -1.4167285 + y: 0.101174667 + z: 0.0017356826 + Rotation: + x: -4.57930537e-06 + y: 359.984467 + z: -2.04710227e-06 +- Position: + x: 0.598060369 + y: 0.09845541 + z: 0.04511485 +- Position: + x: 0.205701485 + y: 0.0988587961 + z: 0.0345927551 +- Position: + x: -0.23914896 + y: 0.09891391 + z: 0.0323976837 +- Position: + x: 1.361944 + y: 0.09895392 + z: 0.06550386 +- Position: + x: 0.9756943 + y: 0.09953574 + z: 0.0568974279 +- Position: + x: 1.34728074 + y: 0.09869872 + z: 0.5946593 +- Position: + x: 0.973980069 + y: 0.09864875 + z: 0.578500867 +- Position: + x: 0.5826086 + y: 0.0990866 + z: 0.5762374 +- Position: + x: 0.194561288 + y: 0.0991737247 + z: 0.571252644 +- Position: + x: -0.259952754 + y: 0.09917315 + z: 0.562021255 +- Position: + x: -0.7860074 + y: 0.09999239 + z: 0.00865832251 +Autoraise: true +ColorDiffuse: + b: 0.0 + g: 0.0 + r: 0.0 +CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.1 + Type: 3 + ImageScalar: 1.0 + ImageSecondaryURL: '' + ImageURL: http://cloud-3.steamusercontent.com/ugc/960860672861849661/E2DABD251B439AA352A2BC1B9E3926CE5FBA86EE/ + WidthScale: 0.0 +Description: '' +GMNotes: '' +GUID: bd0ff4 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: true +LuaScript: !include 'Custom_Tile Playermat 2 Orange bd0ff4.ttslua' +LuaScriptState: '' +Name: Custom_Tile +Nickname: 'Playermat 2: Orange' +Snap: true +Sticky: true +Tooltip: false +Transform: + posX: -55.0009727 + posY: 1.54 + posZ: -13.6100006 + rotX: 359.920135 + rotY: 269.988922 + rotZ: 0.0168871582 + scaleX: 6.43188572 + scaleY: 1.0 + scaleZ: 6.43188572 +XmlUI: '' diff --git a/unpacked/Custom_Tile Playermat 3 Green 383d8b.ttslua b/unpacked/Custom_Tile Playermat 3 Green 383d8b.ttslua new file mode 100644 index 000000000..b785a01c3 --- /dev/null +++ b/unpacked/Custom_Tile Playermat 3 Green 383d8b.ttslua @@ -0,0 +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}) +end \ No newline at end of file diff --git a/unpacked/Custom_Tile Playermat 3 Green 383d8b.yaml b/unpacked/Custom_Tile Playermat 3 Green 383d8b.yaml new file mode 100644 index 000000000..950aed718 --- /dev/null +++ b/unpacked/Custom_Tile Playermat 3 Green 383d8b.yaml @@ -0,0 +1,143 @@ +AttachedSnapPoints: +- Position: + x: -1.423073 + y: 0.100115627 + z: 0.655314565 + Rotation: + x: -8.658569e-07 + y: 359.9785 + z: 180.0 +- Position: + x: 0.979732 + y: 0.100011475 + z: -0.6448661 + Rotation: + x: -1.0187531e-06 + y: 359.979 + z: 5.90129844e-07 +- Position: + x: 0.52419436 + y: 0.100009382 + z: -0.639432847 + Rotation: + x: -6.30483044e-07 + y: 359.979065 + z: -8.650143e-07 +- Position: + x: 0.06841583 + y: 0.100003563 + z: -0.6417436 + Rotation: + x: -1.66020357e-07 + y: 359.979034 + z: -5.438084e-07 +- Position: + x: -0.3868019 + y: 0.100020416 + z: -0.6392662 + Rotation: + x: 5.897871e-07 + y: 359.979034 + z: 1.717093e-06 +- Position: + x: -0.8395884 + y: 0.100020617 + z: -0.636261761 + Rotation: + x: 1.99368444e-07 + y: 359.979 + z: 5.40443239e-07 +- Position: + x: -1.4204073 + y: 0.100205861 + z: -0.008221222 + Rotation: + x: -1.1124e-05 + y: 0.007976667 + z: -2.49724253e-05 +- Position: + x: 1.3694371 + y: 0.0999977 + z: 0.0635197759 +- Position: + x: 1.35434175 + y: 0.10027992 + z: 0.582335055 +- Position: + x: 0.9769904 + y: 0.0991839543 + z: 0.576622963 +- Position: + x: 0.9874815 + y: 0.100389443 + z: 0.0523709059 +- Position: + x: 0.6073384 + y: 0.09933275 + z: 0.0376741737 +- Position: + x: 0.5812786 + y: 0.0992793739 + z: 0.55341506 +- Position: + x: 0.2063277 + y: 0.09913391 + z: 0.557738 +- Position: + x: 0.200694025 + y: 0.100479849 + z: 0.02797139 +- Position: + x: -0.239858314 + y: 0.09975023 + z: 0.0119428588 +- Position: + x: -0.256072134 + y: 0.09937263 + z: 0.53326714 +- Position: + x: -0.77060324 + y: 0.100013316 + z: 0.012126199 +Autoraise: true +ColorDiffuse: + b: 0.0 + g: 0.0 + r: 0.0 +CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.1 + Type: 3 + ImageScalar: 1.0 + ImageSecondaryURL: '' + ImageURL: http://cloud-3.steamusercontent.com/ugc/960860672861849661/E2DABD251B439AA352A2BC1B9E3926CE5FBA86EE/ + WidthScale: 0.0 +Description: '' +GMNotes: '' +GUID: 383d8b +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: true +LuaScript: !include 'Custom_Tile Playermat 3 Green 383d8b.ttslua' +LuaScriptState: '' +Name: Custom_Tile +Nickname: 'Playermat 3: Green' +Snap: true +Sticky: true +Tooltip: false +Transform: + posX: -27.96013 + posY: 1.45470381 + posZ: 26.5419827 + rotX: 359.983154 + rotY: 0.02114531 + rotZ: 359.9201 + scaleX: 6.43188572 + scaleY: 1.0 + scaleZ: 6.43188572 +XmlUI: '' diff --git a/unpacked/Custom_Tile Playermat 4 Red 0840d5.ttslua b/unpacked/Custom_Tile Playermat 4 Red 0840d5.ttslua new file mode 100644 index 000000000..b785a01c3 --- /dev/null +++ b/unpacked/Custom_Tile Playermat 4 Red 0840d5.ttslua @@ -0,0 +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}) +end \ No newline at end of file diff --git a/unpacked/Custom_Tile Playermat 4 Red 0840d5.yaml b/unpacked/Custom_Tile Playermat 4 Red 0840d5.yaml new file mode 100644 index 000000000..f54495d06 --- /dev/null +++ b/unpacked/Custom_Tile Playermat 4 Red 0840d5.yaml @@ -0,0 +1,143 @@ +AttachedSnapPoints: +- Position: + x: -0.836586833 + y: 0.099986054 + z: -0.6408586 + Rotation: + x: 3.56698438e-12 + y: -0.00572369853 + z: 5.177712e-07 +- Position: + x: -0.382650465 + y: 0.0999585539 + z: -0.6459507 + Rotation: + x: -2.7320757e-05 + y: -0.0009972076 + z: 1.814499e-06 +- Position: + x: 0.07118534 + y: 0.09997298 + z: -0.6485886 + Rotation: + x: -5.91789942e-12 + y: -0.001010868 + z: -1.2344143e-06 +- Position: + x: 0.522385657 + y: 0.09995644 + z: -0.6464397 + Rotation: + x: -2.732076e-05 + y: -0.00102452841 + z: 5.147082e-07 +- Position: + x: 0.9795039 + y: 0.100008018 + z: -0.645212948 + Rotation: + x: -2.732076e-05 + y: -0.001010868 + z: 3.418812e-07 +- Position: + x: -1.42581582 + y: 0.100086123 + z: 0.6618034 + Rotation: + x: 1.97815257e-06 + y: 0.006215476 + z: 4.288986e-06 +- Position: + x: -1.42054665 + y: 0.09976705 + z: 0.0174883958 + Rotation: + x: 1.65214067e-06 + y: 0.0061471737 + z: 5.9298136e-06 +- Position: + x: 1.3477366 + y: 0.09958037 + z: 0.586203456 +- Position: + x: 0.977125764 + y: 0.100312516 + z: 0.570426166 +- Position: + x: 0.5853677 + y: 0.100833133 + z: 0.557161 +- Position: + x: 0.1969792 + y: 0.100569315 + z: 0.554218769 +- Position: + x: -0.243458331 + y: 0.100756928 + z: 0.550460041 +- Position: + x: -0.239192441 + y: 0.100161135 + z: 0.0279012527 +- Position: + x: 0.2143801 + y: 0.0991126 + z: 0.0378268324 +- Position: + x: 0.601063967 + y: 0.09999053 + z: 0.0453806 +- Position: + x: 0.9924658 + y: 0.0995117947 + z: 0.05685473 +- Position: + x: 1.36525834 + y: 0.100032739 + z: 0.07223619 +- Position: + x: -0.785984 + y: 0.100090072 + z: 0.009970339 +Autoraise: true +ColorDiffuse: + b: 0.0 + g: 0.0 + r: 0.0 +CustomImage: + CustomTile: + Stackable: false + Stretch: true + Thickness: 0.1 + Type: 3 + ImageScalar: 1.0 + ImageSecondaryURL: '' + ImageURL: http://cloud-3.steamusercontent.com/ugc/960860672861849661/E2DABD251B439AA352A2BC1B9E3926CE5FBA86EE/ + WidthScale: 0.0 +Description: '' +GMNotes: '' +GUID: 0840d5 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: true +LuaScript: !include 'Custom_Tile Playermat 4 Red 0840d5.ttslua' +LuaScriptState: '' +Name: Custom_Tile +Nickname: 'Playermat 4: Red' +Snap: true +Sticky: true +Tooltip: false +Transform: + posX: -27.9600582 + posY: 1.50155449 + posZ: -26.5846672 + rotX: 0.0168873835 + rotY: 179.9888 + rotZ: 0.07987307 + scaleX: 6.43188572 + scaleY: 1.0 + scaleZ: 6.43188572 +XmlUI: '' diff --git a/unpacked/Custom_Token 7bff34.yaml b/unpacked/Custom_Token 7bff34.yaml new file mode 100644 index 000000000..0a577511a --- /dev/null +++ b/unpacked/Custom_Token 7bff34.yaml @@ -0,0 +1,52 @@ +Autoraise: false +ColorDiffuse: + b: 0.802696168 + g: 1.0 + r: 0.926924467 +CustomImage: + CustomToken: + MergeDistancePixels: 15.0 + Stackable: false + Thickness: 0.2 + ImageScalar: 1.0 + ImageSecondaryURL: '' + ImageURL: http://i.imgur.com/sWdnG71.png + WidthScale: 0.0 +Description: '' +GMNotes: '' +GUID: 7bff34 +Grid: false +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: true +LuaScript: '' +LuaScriptState: '' +Name: Custom_Token +Nickname: '' +PhysicsMaterial: + BounceCombine: 0 + Bounciness: 0.0 + DynamicFriction: 0.0 + FrictionCombine: 0 + StaticFriction: 0.0 +Rigidbody: + AngularDrag: 0.0 + Drag: 0.0 + Mass: 0.0 + UseGravity: false +Snap: false +Sticky: false +Tooltip: false +Transform: + posX: 76.39056 + posY: 25.61465 + posZ: 0.5633774 + rotX: 90.0 + rotY: 270.0 + rotZ: 0.0 + scaleX: 20.4048119 + scaleY: 1.0 + scaleZ: 16.79316 +XmlUI: '' diff --git a/unpacked/Custom_Token Damage 1f5a0a.ttslua b/unpacked/Custom_Token Damage 1f5a0a.ttslua new file mode 100644 index 000000000..3a20df99e --- /dev/null +++ b/unpacked/Custom_Token Damage 1f5a0a.ttslua @@ -0,0 +1,132 @@ +MIN_VALUE = -99 +MAX_VALUE = 999 + +function onload(saved_data) + light_mode = true + val = 0 + + if saved_data ~= "" then + local loaded_data = JSON.decode(saved_data) + light_mode = loaded_data[1] + val = loaded_data[2] + end + + createAll() +end + +function updateSave() + local data_to_save = {light_mode, val} + saved_data = JSON.encode(data_to_save) + self.script_state = saved_data +end + +function createAll() + s_color = {0,0,0,100} + + if light_mode then + f_color = {1,1,1,100} + else + f_color = {0,0,0,100} + end + + + + self.createButton({ + label=tostring(val), + click_function="add_subtract", + function_owner=self, + position={0.1,0.05,0.1}, + height=600, + width=1000, + alignment = 3, + scale={x=1.5, y=1.5, z=1.5}, + font_size=600, + font_color=f_color, + color={1,1,1,0} + }) + + + + + if light_mode then + lightButtonText = "[ Set dark ]" + else + lightButtonText = "[ Set light ]" + end + +end + +function removeAll() + self.removeInput(0) + self.removeInput(1) + self.removeButton(0) + self.removeButton(1) + self.removeButton(2) +end + +function reloadAll() + removeAll() + createAll() + + updateSave() +end + +function swap_fcolor(_obj, _color, alt_click) + light_mode = not light_mode + reloadAll() +end + +function swap_align(_obj, _color, alt_click) + center_mode = not center_mode + reloadAll() +end + +function editName(_obj, _string, value) + self.setName(value) + setTooltips() +end + +function add_subtract(_obj, _color, alt_click) + mod = alt_click and -1 or 1 + new_value = math.min(math.max(val + mod, MIN_VALUE), MAX_VALUE) + if val ~= new_value then + val = new_value + updateVal() + updateSave() + end +end + +function updateVal() + + self.editButton({ + index = 0, + label = tostring(val), + + }) +end + +function reset_val() + val = 0 + updateVal() + updateSave() +end + +function setTooltips() + self.editInput({ + index = 0, + value = self.getName(), + tooltip = ttText + }) + self.editButton({ + index = 0, + value = tostring(val), + tooltip = ttText + }) +end + +function null() +end + +function keepSample(_obj, _string, value) + reloadAll() +end \ No newline at end of file diff --git a/unpacked/Custom_Token Damage 1f5a0a.yaml b/unpacked/Custom_Token Damage 1f5a0a.yaml new file mode 100644 index 000000000..b91c6632c --- /dev/null +++ b/unpacked/Custom_Token Damage 1f5a0a.yaml @@ -0,0 +1,45 @@ +Autoraise: false +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +CustomImage: + CustomToken: + MergeDistancePixels: 5.0 + Stackable: false + Thickness: 0.1 + ImageScalar: 1.0 + ImageSecondaryURL: '' + ImageURL: http://cloud-3.steamusercontent.com/ugc/949599153663402915/D881A5A0D8A370851B9A0055DD7834CDCE0F72BE/ + WidthScale: 0.0 +Description: 'Left click - Increase + + Right click - Decrease' +GMNotes: '' +GUID: 1f5a0a +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: true +LuaScript: !include 'Custom_Token Damage 1f5a0a.ttslua' +LuaScriptState: '[true,0]' +Name: Custom_Token +Nickname: 'Damage + + ' +Snap: true +Sticky: true +Tooltip: false +Transform: + posX: -32.30971 + posY: 1.5333128 + posZ: 29.00639 + rotX: 359.941 + rotY: 11.1527271 + rotZ: 0.690226555 + scaleX: 0.2590727 + scaleY: 1.0 + scaleZ: 0.2590727 +XmlUI: '' diff --git a/unpacked/Custom_Token Damage 591a45.ttslua b/unpacked/Custom_Token Damage 591a45.ttslua new file mode 100644 index 000000000..3a20df99e --- /dev/null +++ b/unpacked/Custom_Token Damage 591a45.ttslua @@ -0,0 +1,132 @@ +MIN_VALUE = -99 +MAX_VALUE = 999 + +function onload(saved_data) + light_mode = true + val = 0 + + if saved_data ~= "" then + local loaded_data = JSON.decode(saved_data) + light_mode = loaded_data[1] + val = loaded_data[2] + end + + createAll() +end + +function updateSave() + local data_to_save = {light_mode, val} + saved_data = JSON.encode(data_to_save) + self.script_state = saved_data +end + +function createAll() + s_color = {0,0,0,100} + + if light_mode then + f_color = {1,1,1,100} + else + f_color = {0,0,0,100} + end + + + + self.createButton({ + label=tostring(val), + click_function="add_subtract", + function_owner=self, + position={0.1,0.05,0.1}, + height=600, + width=1000, + alignment = 3, + scale={x=1.5, y=1.5, z=1.5}, + font_size=600, + font_color=f_color, + color={1,1,1,0} + }) + + + + + if light_mode then + lightButtonText = "[ Set dark ]" + else + lightButtonText = "[ Set light ]" + end + +end + +function removeAll() + self.removeInput(0) + self.removeInput(1) + self.removeButton(0) + self.removeButton(1) + self.removeButton(2) +end + +function reloadAll() + removeAll() + createAll() + + updateSave() +end + +function swap_fcolor(_obj, _color, alt_click) + light_mode = not light_mode + reloadAll() +end + +function swap_align(_obj, _color, alt_click) + center_mode = not center_mode + reloadAll() +end + +function editName(_obj, _string, value) + self.setName(value) + setTooltips() +end + +function add_subtract(_obj, _color, alt_click) + mod = alt_click and -1 or 1 + new_value = math.min(math.max(val + mod, MIN_VALUE), MAX_VALUE) + if val ~= new_value then + val = new_value + updateVal() + updateSave() + end +end + +function updateVal() + + self.editButton({ + index = 0, + label = tostring(val), + + }) +end + +function reset_val() + val = 0 + updateVal() + updateSave() +end + +function setTooltips() + self.editInput({ + index = 0, + value = self.getName(), + tooltip = ttText + }) + self.editButton({ + index = 0, + value = tostring(val), + tooltip = ttText + }) +end + +function null() +end + +function keepSample(_obj, _string, value) + reloadAll() +end \ No newline at end of file diff --git a/unpacked/Custom_Token Damage 591a45.yaml b/unpacked/Custom_Token Damage 591a45.yaml new file mode 100644 index 000000000..701c793f4 --- /dev/null +++ b/unpacked/Custom_Token Damage 591a45.yaml @@ -0,0 +1,45 @@ +Autoraise: false +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +CustomImage: + CustomToken: + MergeDistancePixels: 5.0 + Stackable: false + Thickness: 0.1 + ImageScalar: 1.0 + ImageSecondaryURL: '' + ImageURL: http://cloud-3.steamusercontent.com/ugc/949599153663402915/D881A5A0D8A370851B9A0055DD7834CDCE0F72BE/ + WidthScale: 0.0 +Description: 'Left click - Increase + + Right click - Decrease' +GMNotes: '' +GUID: 591a45 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: true +LuaScript: !include 'Custom_Token Damage 591a45.ttslua' +LuaScriptState: '[true,0]' +Name: Custom_Token +Nickname: 'Damage + + ' +Snap: true +Sticky: true +Tooltip: false +Transform: + posX: -23.65974 + posY: 1.55710781 + posZ: -29.0781727 + rotX: 0.00169492 + rotY: 190.737808 + rotZ: 0.08161789 + scaleX: 0.2590727 + scaleY: 1.0 + scaleZ: 0.2590727 +XmlUI: '' diff --git a/unpacked/Custom_Token Damage e64eec.ttslua b/unpacked/Custom_Token Damage e64eec.ttslua new file mode 100644 index 000000000..3a20df99e --- /dev/null +++ b/unpacked/Custom_Token Damage e64eec.ttslua @@ -0,0 +1,132 @@ +MIN_VALUE = -99 +MAX_VALUE = 999 + +function onload(saved_data) + light_mode = true + val = 0 + + if saved_data ~= "" then + local loaded_data = JSON.decode(saved_data) + light_mode = loaded_data[1] + val = loaded_data[2] + end + + createAll() +end + +function updateSave() + local data_to_save = {light_mode, val} + saved_data = JSON.encode(data_to_save) + self.script_state = saved_data +end + +function createAll() + s_color = {0,0,0,100} + + if light_mode then + f_color = {1,1,1,100} + else + f_color = {0,0,0,100} + end + + + + self.createButton({ + label=tostring(val), + click_function="add_subtract", + function_owner=self, + position={0.1,0.05,0.1}, + height=600, + width=1000, + alignment = 3, + scale={x=1.5, y=1.5, z=1.5}, + font_size=600, + font_color=f_color, + color={1,1,1,0} + }) + + + + + if light_mode then + lightButtonText = "[ Set dark ]" + else + lightButtonText = "[ Set light ]" + end + +end + +function removeAll() + self.removeInput(0) + self.removeInput(1) + self.removeButton(0) + self.removeButton(1) + self.removeButton(2) +end + +function reloadAll() + removeAll() + createAll() + + updateSave() +end + +function swap_fcolor(_obj, _color, alt_click) + light_mode = not light_mode + reloadAll() +end + +function swap_align(_obj, _color, alt_click) + center_mode = not center_mode + reloadAll() +end + +function editName(_obj, _string, value) + self.setName(value) + setTooltips() +end + +function add_subtract(_obj, _color, alt_click) + mod = alt_click and -1 or 1 + new_value = math.min(math.max(val + mod, MIN_VALUE), MAX_VALUE) + if val ~= new_value then + val = new_value + updateVal() + updateSave() + end +end + +function updateVal() + + self.editButton({ + index = 0, + label = tostring(val), + + }) +end + +function reset_val() + val = 0 + updateVal() + updateSave() +end + +function setTooltips() + self.editInput({ + index = 0, + value = self.getName(), + tooltip = ttText + }) + self.editButton({ + index = 0, + value = tostring(val), + tooltip = ttText + }) +end + +function null() +end + +function keepSample(_obj, _string, value) + reloadAll() +end \ No newline at end of file diff --git a/unpacked/Custom_Token Damage e64eec.yaml b/unpacked/Custom_Token Damage e64eec.yaml new file mode 100644 index 000000000..2e3a92a0e --- /dev/null +++ b/unpacked/Custom_Token Damage e64eec.yaml @@ -0,0 +1,45 @@ +Autoraise: false +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +CustomImage: + CustomToken: + MergeDistancePixels: 5.0 + Stackable: false + Thickness: 0.1 + ImageScalar: 1.0 + ImageSecondaryURL: '' + ImageURL: http://cloud-3.steamusercontent.com/ugc/949599153663402915/D881A5A0D8A370851B9A0055DD7834CDCE0F72BE/ + WidthScale: 0.0 +Description: 'Left click - Increase + + Right click - Decrease' +GMNotes: '' +GUID: e64eec +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: true +LuaScript: !include 'Custom_Token Damage e64eec.ttslua' +LuaScriptState: '[true,0]' +Name: Custom_Token +Nickname: 'Damage + + ' +Snap: true +Sticky: true +Tooltip: false +Transform: + posX: -57.4903641 + posY: 1.60719967 + posZ: -17.9299984 + rotX: 0.273754537 + rotY: 281.6302 + rotZ: 359.958 + scaleX: 0.2590727 + scaleY: 1.0 + scaleZ: 0.2590727 +XmlUI: '' diff --git a/unpacked/Custom_Token Damage eb08d6.ttslua b/unpacked/Custom_Token Damage eb08d6.ttslua new file mode 100644 index 000000000..3a20df99e --- /dev/null +++ b/unpacked/Custom_Token Damage eb08d6.ttslua @@ -0,0 +1,132 @@ +MIN_VALUE = -99 +MAX_VALUE = 999 + +function onload(saved_data) + light_mode = true + val = 0 + + if saved_data ~= "" then + local loaded_data = JSON.decode(saved_data) + light_mode = loaded_data[1] + val = loaded_data[2] + end + + createAll() +end + +function updateSave() + local data_to_save = {light_mode, val} + saved_data = JSON.encode(data_to_save) + self.script_state = saved_data +end + +function createAll() + s_color = {0,0,0,100} + + if light_mode then + f_color = {1,1,1,100} + else + f_color = {0,0,0,100} + end + + + + self.createButton({ + label=tostring(val), + click_function="add_subtract", + function_owner=self, + position={0.1,0.05,0.1}, + height=600, + width=1000, + alignment = 3, + scale={x=1.5, y=1.5, z=1.5}, + font_size=600, + font_color=f_color, + color={1,1,1,0} + }) + + + + + if light_mode then + lightButtonText = "[ Set dark ]" + else + lightButtonText = "[ Set light ]" + end + +end + +function removeAll() + self.removeInput(0) + self.removeInput(1) + self.removeButton(0) + self.removeButton(1) + self.removeButton(2) +end + +function reloadAll() + removeAll() + createAll() + + updateSave() +end + +function swap_fcolor(_obj, _color, alt_click) + light_mode = not light_mode + reloadAll() +end + +function swap_align(_obj, _color, alt_click) + center_mode = not center_mode + reloadAll() +end + +function editName(_obj, _string, value) + self.setName(value) + setTooltips() +end + +function add_subtract(_obj, _color, alt_click) + mod = alt_click and -1 or 1 + new_value = math.min(math.max(val + mod, MIN_VALUE), MAX_VALUE) + if val ~= new_value then + val = new_value + updateVal() + updateSave() + end +end + +function updateVal() + + self.editButton({ + index = 0, + label = tostring(val), + + }) +end + +function reset_val() + val = 0 + updateVal() + updateSave() +end + +function setTooltips() + self.editInput({ + index = 0, + value = self.getName(), + tooltip = ttText + }) + self.editButton({ + index = 0, + value = tostring(val), + tooltip = ttText + }) +end + +function null() +end + +function keepSample(_obj, _string, value) + reloadAll() +end \ No newline at end of file diff --git a/unpacked/Custom_Token Damage eb08d6.yaml b/unpacked/Custom_Token Damage eb08d6.yaml new file mode 100644 index 000000000..5b806c655 --- /dev/null +++ b/unpacked/Custom_Token Damage eb08d6.yaml @@ -0,0 +1,45 @@ +Autoraise: false +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +CustomImage: + CustomToken: + MergeDistancePixels: 5.0 + Stackable: false + Thickness: 0.1 + ImageScalar: 1.0 + ImageSecondaryURL: '' + ImageURL: http://cloud-3.steamusercontent.com/ugc/949599153663402915/D881A5A0D8A370851B9A0055DD7834CDCE0F72BE/ + WidthScale: 0.0 +Description: 'Left click - Increase + + Right click - Decrease' +GMNotes: '' +GUID: eb08d6 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: true +LuaScript: !include 'Custom_Token Damage eb08d6.ttslua' +LuaScriptState: '[true,0]' +Name: Custom_Token +Nickname: 'Damage + + ' +Snap: true +Sticky: true +Tooltip: false +Transform: + posX: -57.4877739 + posY: 1.61221087 + posZ: 9.183681 + rotX: 0.273754537 + rotY: 281.6302 + rotZ: 359.958 + scaleX: 0.2590727 + scaleY: 1.0 + scaleZ: 0.2590727 +XmlUI: '' diff --git a/unpacked/Custom_Token Doom counter 1235d9.ttslua b/unpacked/Custom_Token Doom counter 1235d9.ttslua new file mode 100644 index 000000000..ee5b7a827 --- /dev/null +++ b/unpacked/Custom_Token Doom counter 1235d9.ttslua @@ -0,0 +1,132 @@ +MIN_VALUE = -99 +MAX_VALUE = 999 + +function onload(saved_data) + light_mode = false + val = 0 + + if saved_data ~= "" then + local loaded_data = JSON.decode(saved_data) + light_mode = loaded_data[1] + val = loaded_data[2] + end + + createAll() +end + +function updateSave() + local data_to_save = {light_mode, val} + saved_data = JSON.encode(data_to_save) + self.script_state = saved_data +end + +function createAll() + s_color = {0.5, 0.5, 0.5, 95} + + if light_mode then + f_color = {1,1,1,95} + else + f_color = {0,0,0,100} + end + + + + self.createButton({ + label=tostring(val), + click_function="add_subtract", + function_owner=self, + position={0,0.05,0}, + height=600, + width=1000, + alignment = 3, + scale={x=1.5, y=1.5, z=1.5}, + font_size=600, + font_color=f_color, + color={0,0,0,0} + }) + + + + + if light_mode then + lightButtonText = "[ Set dark ]" + else + lightButtonText = "[ Set light ]" + end + +end + +function removeAll() + self.removeInput(0) + self.removeInput(1) + self.removeButton(0) + self.removeButton(1) + self.removeButton(2) +end + +function reloadAll() + removeAll() + createAll() + + updateSave() +end + +function swap_fcolor(_obj, _color, alt_click) + light_mode = not light_mode + reloadAll() +end + +function swap_align(_obj, _color, alt_click) + center_mode = not center_mode + reloadAll() +end + +function editName(_obj, _string, value) + self.setName(value) + setTooltips() +end + +function add_subtract(_obj, _color, alt_click) + mod = alt_click and -1 or 1 + new_value = math.min(math.max(val + mod, MIN_VALUE), MAX_VALUE) + if val ~= new_value then + val = new_value + updateVal() + updateSave() + end +end + +function updateVal() + + self.editButton({ + index = 0, + label = tostring(val), + + }) +end + +function reset_val() + val = 0 + updateVal() + updateSave() +end + +function setTooltips() + self.editInput({ + index = 0, + value = self.getName(), + tooltip = ttText + }) + self.editButton({ + index = 0, + value = tostring(val), + tooltip = ttText + }) +end + +function null() +end + +function keepSample(_obj, _string, value) + reloadAll() +end \ No newline at end of file diff --git a/unpacked/Custom_Token Doom counter 1235d9.yaml b/unpacked/Custom_Token Doom counter 1235d9.yaml new file mode 100644 index 000000000..c02bb398d --- /dev/null +++ b/unpacked/Custom_Token Doom counter 1235d9.yaml @@ -0,0 +1,45 @@ +Autoraise: true +ColorDiffuse: + b: 0.750871 + g: 0.750871 + r: 0.750871 +CustomImage: + CustomToken: + MergeDistancePixels: 5.0 + Stackable: false + Thickness: 0.1 + ImageScalar: 1.0 + ImageSecondaryURL: '' + ImageURL: https://i.imgur.com/wfCaVU0.png + WidthScale: 0.0 +Description: 'Left click - Increase + + Right click - Decrease' +GMNotes: '' +GUID: 1235d9 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: true +LuaScript: !include 'Custom_Token Doom counter 1235d9.ttslua' +LuaScriptState: '[true,0]' +Name: Custom_Token +Nickname: 'Doom counter + + ' +Snap: true +Sticky: true +Tooltip: false +Transform: + posX: -5.3199 + posY: 1.6375 + posZ: -4.9639 + rotX: 359.919739 + rotY: 270.034332 + rotZ: 0.0167908818 + scaleX: 0.4 + scaleY: 1.0 + scaleZ: 0.4 +XmlUI: '' diff --git a/unpacked/Custom_Token Doom counter 85c4c6.ttslua b/unpacked/Custom_Token Doom counter 85c4c6.ttslua new file mode 100644 index 000000000..ee5b7a827 --- /dev/null +++ b/unpacked/Custom_Token Doom counter 85c4c6.ttslua @@ -0,0 +1,132 @@ +MIN_VALUE = -99 +MAX_VALUE = 999 + +function onload(saved_data) + light_mode = false + val = 0 + + if saved_data ~= "" then + local loaded_data = JSON.decode(saved_data) + light_mode = loaded_data[1] + val = loaded_data[2] + end + + createAll() +end + +function updateSave() + local data_to_save = {light_mode, val} + saved_data = JSON.encode(data_to_save) + self.script_state = saved_data +end + +function createAll() + s_color = {0.5, 0.5, 0.5, 95} + + if light_mode then + f_color = {1,1,1,95} + else + f_color = {0,0,0,100} + end + + + + self.createButton({ + label=tostring(val), + click_function="add_subtract", + function_owner=self, + position={0,0.05,0}, + height=600, + width=1000, + alignment = 3, + scale={x=1.5, y=1.5, z=1.5}, + font_size=600, + font_color=f_color, + color={0,0,0,0} + }) + + + + + if light_mode then + lightButtonText = "[ Set dark ]" + else + lightButtonText = "[ Set light ]" + end + +end + +function removeAll() + self.removeInput(0) + self.removeInput(1) + self.removeButton(0) + self.removeButton(1) + self.removeButton(2) +end + +function reloadAll() + removeAll() + createAll() + + updateSave() +end + +function swap_fcolor(_obj, _color, alt_click) + light_mode = not light_mode + reloadAll() +end + +function swap_align(_obj, _color, alt_click) + center_mode = not center_mode + reloadAll() +end + +function editName(_obj, _string, value) + self.setName(value) + setTooltips() +end + +function add_subtract(_obj, _color, alt_click) + mod = alt_click and -1 or 1 + new_value = math.min(math.max(val + mod, MIN_VALUE), MAX_VALUE) + if val ~= new_value then + val = new_value + updateVal() + updateSave() + end +end + +function updateVal() + + self.editButton({ + index = 0, + label = tostring(val), + + }) +end + +function reset_val() + val = 0 + updateVal() + updateSave() +end + +function setTooltips() + self.editInput({ + index = 0, + value = self.getName(), + tooltip = ttText + }) + self.editButton({ + index = 0, + value = tostring(val), + tooltip = ttText + }) +end + +function null() +end + +function keepSample(_obj, _string, value) + reloadAll() +end \ No newline at end of file diff --git a/unpacked/Custom_Token Doom counter 85c4c6.yaml b/unpacked/Custom_Token Doom counter 85c4c6.yaml new file mode 100644 index 000000000..1b49c98bd --- /dev/null +++ b/unpacked/Custom_Token Doom counter 85c4c6.yaml @@ -0,0 +1,45 @@ +Autoraise: true +ColorDiffuse: + b: 0.0 + g: 0.0 + r: 1.0 +CustomImage: + CustomToken: + MergeDistancePixels: 5.0 + Stackable: false + Thickness: 0.1 + ImageScalar: 1.0 + ImageSecondaryURL: '' + ImageURL: http://cloud-3.steamusercontent.com/ugc/949592555964782208/CC876694A6684B3C2680CE2FE3259F574AE0AD97/ + WidthScale: 0.0 +Description: 'Left click - Increase + + Right click - Decrease' +GMNotes: '' +GUID: 85c4c6 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: true +LuaScript: !include 'Custom_Token Doom counter 85c4c6.ttslua' +LuaScriptState: '[true,0]' +Name: Custom_Token +Nickname: 'Doom counter + + ' +Snap: true +Sticky: true +Tooltip: false +Transform: + posX: -5.316435 + posY: 1.63901961 + posZ: 0.3783235 + rotX: 359.919739 + rotY: 270.0344 + rotZ: 0.01679835 + scaleX: 0.4 + scaleY: 1.0 + scaleZ: 0.4 +XmlUI: '' diff --git a/unpacked/Custom_Token Horror 0257d9.ttslua b/unpacked/Custom_Token Horror 0257d9.ttslua new file mode 100644 index 000000000..639b2e969 --- /dev/null +++ b/unpacked/Custom_Token Horror 0257d9.ttslua @@ -0,0 +1,132 @@ +MIN_VALUE = -99 +MAX_VALUE = 999 + +function onload(saved_data) + light_mode = true + val = 0 + + if saved_data ~= "" then + local loaded_data = JSON.decode(saved_data) + light_mode = loaded_data[1] + val = loaded_data[2] + end + + createAll() +end + +function updateSave() + local data_to_save = {light_mode, val} + saved_data = JSON.encode(data_to_save) + self.script_state = saved_data +end + +function createAll() + s_color = {0,0,0,100} + + if light_mode then + f_color = {1,1,1,100} + else + f_color = {0,0,0,100} + end + + + + self.createButton({ + label=tostring(val), + click_function="add_subtract", + function_owner=self, + position={-0.025,0.05,-0.025}, + height=600, + width=1000, + alignment = 3, + scale={x=1.5, y=1.5, z=1.5}, + font_size=600, + font_color=f_color, + color={1,1,1,0} + }) + + + + + if light_mode then + lightButtonText = "[ Set dark ]" + else + lightButtonText = "[ Set light ]" + end + +end + +function removeAll() + self.removeInput(0) + self.removeInput(1) + self.removeButton(0) + self.removeButton(1) + self.removeButton(2) +end + +function reloadAll() + removeAll() + createAll() + + updateSave() +end + +function swap_fcolor(_obj, _color, alt_click) + light_mode = not light_mode + reloadAll() +end + +function swap_align(_obj, _color, alt_click) + center_mode = not center_mode + reloadAll() +end + +function editName(_obj, _string, value) + self.setName(value) + setTooltips() +end + +function add_subtract(_obj, _color, alt_click) + mod = alt_click and -1 or 1 + new_value = math.min(math.max(val + mod, MIN_VALUE), MAX_VALUE) + if val ~= new_value then + val = new_value + updateVal() + updateSave() + end +end + +function updateVal() + + self.editButton({ + index = 0, + label = tostring(val), + + }) +end + +function reset_val() + val = 0 + updateVal() + updateSave() +end + +function setTooltips() + self.editInput({ + index = 0, + value = self.getName(), + tooltip = ttText + }) + self.editButton({ + index = 0, + value = tostring(val), + tooltip = ttText + }) +end + +function null() +end + +function keepSample(_obj, _string, value) + reloadAll() +end \ No newline at end of file diff --git a/unpacked/Custom_Token Horror 0257d9.yaml b/unpacked/Custom_Token Horror 0257d9.yaml new file mode 100644 index 000000000..6b70047ef --- /dev/null +++ b/unpacked/Custom_Token Horror 0257d9.yaml @@ -0,0 +1,43 @@ +Autoraise: false +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +CustomImage: + CustomToken: + MergeDistancePixels: 5.0 + Stackable: false + Thickness: 0.1 + ImageScalar: 1.0 + ImageSecondaryURL: '' + ImageURL: http://cloud-3.steamusercontent.com/ugc/949599153663403796/E6FC1B82A5BC3893CFDCDF3CD580D05E9218AE52/ + WidthScale: 0.0 +Description: 'Left click - Increase + + Right click - Decrease' +GMNotes: '' +GUID: 0257d9 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: true +LuaScript: !include 'Custom_Token Horror 0257d9.ttslua' +LuaScriptState: '[true,0]' +Name: Custom_Token +Nickname: Horror +Snap: true +Sticky: true +Tooltip: false +Transform: + posX: -57.861084 + posY: 1.60300422 + posZ: -19.9115582 + rotX: 359.9184 + rotY: 280.06543 + rotZ: 0.002647738 + scaleX: 0.2590727 + scaleY: 1.0 + scaleZ: 0.2590727 +XmlUI: '' diff --git a/unpacked/Custom_Token Horror 468e88.ttslua b/unpacked/Custom_Token Horror 468e88.ttslua new file mode 100644 index 000000000..639b2e969 --- /dev/null +++ b/unpacked/Custom_Token Horror 468e88.ttslua @@ -0,0 +1,132 @@ +MIN_VALUE = -99 +MAX_VALUE = 999 + +function onload(saved_data) + light_mode = true + val = 0 + + if saved_data ~= "" then + local loaded_data = JSON.decode(saved_data) + light_mode = loaded_data[1] + val = loaded_data[2] + end + + createAll() +end + +function updateSave() + local data_to_save = {light_mode, val} + saved_data = JSON.encode(data_to_save) + self.script_state = saved_data +end + +function createAll() + s_color = {0,0,0,100} + + if light_mode then + f_color = {1,1,1,100} + else + f_color = {0,0,0,100} + end + + + + self.createButton({ + label=tostring(val), + click_function="add_subtract", + function_owner=self, + position={-0.025,0.05,-0.025}, + height=600, + width=1000, + alignment = 3, + scale={x=1.5, y=1.5, z=1.5}, + font_size=600, + font_color=f_color, + color={1,1,1,0} + }) + + + + + if light_mode then + lightButtonText = "[ Set dark ]" + else + lightButtonText = "[ Set light ]" + end + +end + +function removeAll() + self.removeInput(0) + self.removeInput(1) + self.removeButton(0) + self.removeButton(1) + self.removeButton(2) +end + +function reloadAll() + removeAll() + createAll() + + updateSave() +end + +function swap_fcolor(_obj, _color, alt_click) + light_mode = not light_mode + reloadAll() +end + +function swap_align(_obj, _color, alt_click) + center_mode = not center_mode + reloadAll() +end + +function editName(_obj, _string, value) + self.setName(value) + setTooltips() +end + +function add_subtract(_obj, _color, alt_click) + mod = alt_click and -1 or 1 + new_value = math.min(math.max(val + mod, MIN_VALUE), MAX_VALUE) + if val ~= new_value then + val = new_value + updateVal() + updateSave() + end +end + +function updateVal() + + self.editButton({ + index = 0, + label = tostring(val), + + }) +end + +function reset_val() + val = 0 + updateVal() + updateSave() +end + +function setTooltips() + self.editInput({ + index = 0, + value = self.getName(), + tooltip = ttText + }) + self.editButton({ + index = 0, + value = tostring(val), + tooltip = ttText + }) +end + +function null() +end + +function keepSample(_obj, _string, value) + reloadAll() +end \ No newline at end of file diff --git a/unpacked/Custom_Token Horror 468e88.yaml b/unpacked/Custom_Token Horror 468e88.yaml new file mode 100644 index 000000000..3264bba94 --- /dev/null +++ b/unpacked/Custom_Token Horror 468e88.yaml @@ -0,0 +1,43 @@ +Autoraise: false +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +CustomImage: + CustomToken: + MergeDistancePixels: 5.0 + Stackable: false + Thickness: 0.1 + ImageScalar: 1.0 + ImageSecondaryURL: '' + ImageURL: http://cloud-3.steamusercontent.com/ugc/949599153663403796/E6FC1B82A5BC3893CFDCDF3CD580D05E9218AE52/ + WidthScale: 0.0 +Description: 'Left click - Increase + + Right click - Decrease' +GMNotes: '' +GUID: 468e88 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: true +LuaScript: !include 'Custom_Token Horror 468e88.ttslua' +LuaScriptState: '[true,0]' +Name: Custom_Token +Nickname: Horror +Snap: true +Sticky: true +Tooltip: false +Transform: + posX: -57.8369827 + posY: 1.60565257 + posZ: 7.19019365 + rotX: 359.9184 + rotY: 280.06543 + rotZ: 0.002647738 + scaleX: 0.2590727 + scaleY: 1.0 + scaleZ: 0.2590727 +XmlUI: '' diff --git a/unpacked/Custom_Token Horror 7b5729.ttslua b/unpacked/Custom_Token Horror 7b5729.ttslua new file mode 100644 index 000000000..639b2e969 --- /dev/null +++ b/unpacked/Custom_Token Horror 7b5729.ttslua @@ -0,0 +1,132 @@ +MIN_VALUE = -99 +MAX_VALUE = 999 + +function onload(saved_data) + light_mode = true + val = 0 + + if saved_data ~= "" then + local loaded_data = JSON.decode(saved_data) + light_mode = loaded_data[1] + val = loaded_data[2] + end + + createAll() +end + +function updateSave() + local data_to_save = {light_mode, val} + saved_data = JSON.encode(data_to_save) + self.script_state = saved_data +end + +function createAll() + s_color = {0,0,0,100} + + if light_mode then + f_color = {1,1,1,100} + else + f_color = {0,0,0,100} + end + + + + self.createButton({ + label=tostring(val), + click_function="add_subtract", + function_owner=self, + position={-0.025,0.05,-0.025}, + height=600, + width=1000, + alignment = 3, + scale={x=1.5, y=1.5, z=1.5}, + font_size=600, + font_color=f_color, + color={1,1,1,0} + }) + + + + + if light_mode then + lightButtonText = "[ Set dark ]" + else + lightButtonText = "[ Set light ]" + end + +end + +function removeAll() + self.removeInput(0) + self.removeInput(1) + self.removeButton(0) + self.removeButton(1) + self.removeButton(2) +end + +function reloadAll() + removeAll() + createAll() + + updateSave() +end + +function swap_fcolor(_obj, _color, alt_click) + light_mode = not light_mode + reloadAll() +end + +function swap_align(_obj, _color, alt_click) + center_mode = not center_mode + reloadAll() +end + +function editName(_obj, _string, value) + self.setName(value) + setTooltips() +end + +function add_subtract(_obj, _color, alt_click) + mod = alt_click and -1 or 1 + new_value = math.min(math.max(val + mod, MIN_VALUE), MAX_VALUE) + if val ~= new_value then + val = new_value + updateVal() + updateSave() + end +end + +function updateVal() + + self.editButton({ + index = 0, + label = tostring(val), + + }) +end + +function reset_val() + val = 0 + updateVal() + updateSave() +end + +function setTooltips() + self.editInput({ + index = 0, + value = self.getName(), + tooltip = ttText + }) + self.editButton({ + index = 0, + value = tostring(val), + tooltip = ttText + }) +end + +function null() +end + +function keepSample(_obj, _string, value) + reloadAll() +end \ No newline at end of file diff --git a/unpacked/Custom_Token Horror 7b5729.yaml b/unpacked/Custom_Token Horror 7b5729.yaml new file mode 100644 index 000000000..779266ab3 --- /dev/null +++ b/unpacked/Custom_Token Horror 7b5729.yaml @@ -0,0 +1,43 @@ +Autoraise: false +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +CustomImage: + CustomToken: + MergeDistancePixels: 5.0 + Stackable: false + Thickness: 0.1 + ImageScalar: 1.0 + ImageSecondaryURL: '' + ImageURL: http://cloud-3.steamusercontent.com/ugc/949599153663403796/E6FC1B82A5BC3893CFDCDF3CD580D05E9218AE52/ + WidthScale: 0.0 +Description: 'Left click - Increase + + Right click - Decrease' +GMNotes: '' +GUID: 7b5729 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: true +LuaScript: !include 'Custom_Token Horror 7b5729.ttslua' +LuaScriptState: '[true,0]' +Name: Custom_Token +Nickname: Horror +Snap: true +Sticky: true +Tooltip: false +Transform: + posX: -34.2341957 + posY: 1.537901 + posZ: 29.3941689 + rotX: 359.9571 + rotY: 9.776765 + rotZ: 0.7526453 + scaleX: 0.2590727 + scaleY: 1.0 + scaleZ: 0.2590727 +XmlUI: '' diff --git a/unpacked/Custom_Token Horror beb964.ttslua b/unpacked/Custom_Token Horror beb964.ttslua new file mode 100644 index 000000000..639b2e969 --- /dev/null +++ b/unpacked/Custom_Token Horror beb964.ttslua @@ -0,0 +1,132 @@ +MIN_VALUE = -99 +MAX_VALUE = 999 + +function onload(saved_data) + light_mode = true + val = 0 + + if saved_data ~= "" then + local loaded_data = JSON.decode(saved_data) + light_mode = loaded_data[1] + val = loaded_data[2] + end + + createAll() +end + +function updateSave() + local data_to_save = {light_mode, val} + saved_data = JSON.encode(data_to_save) + self.script_state = saved_data +end + +function createAll() + s_color = {0,0,0,100} + + if light_mode then + f_color = {1,1,1,100} + else + f_color = {0,0,0,100} + end + + + + self.createButton({ + label=tostring(val), + click_function="add_subtract", + function_owner=self, + position={-0.025,0.05,-0.025}, + height=600, + width=1000, + alignment = 3, + scale={x=1.5, y=1.5, z=1.5}, + font_size=600, + font_color=f_color, + color={1,1,1,0} + }) + + + + + if light_mode then + lightButtonText = "[ Set dark ]" + else + lightButtonText = "[ Set light ]" + end + +end + +function removeAll() + self.removeInput(0) + self.removeInput(1) + self.removeButton(0) + self.removeButton(1) + self.removeButton(2) +end + +function reloadAll() + removeAll() + createAll() + + updateSave() +end + +function swap_fcolor(_obj, _color, alt_click) + light_mode = not light_mode + reloadAll() +end + +function swap_align(_obj, _color, alt_click) + center_mode = not center_mode + reloadAll() +end + +function editName(_obj, _string, value) + self.setName(value) + setTooltips() +end + +function add_subtract(_obj, _color, alt_click) + mod = alt_click and -1 or 1 + new_value = math.min(math.max(val + mod, MIN_VALUE), MAX_VALUE) + if val ~= new_value then + val = new_value + updateVal() + updateSave() + end +end + +function updateVal() + + self.editButton({ + index = 0, + label = tostring(val), + + }) +end + +function reset_val() + val = 0 + updateVal() + updateSave() +end + +function setTooltips() + self.editInput({ + index = 0, + value = self.getName(), + tooltip = ttText + }) + self.editButton({ + index = 0, + value = tostring(val), + tooltip = ttText + }) +end + +function null() +end + +function keepSample(_obj, _string, value) + reloadAll() +end \ No newline at end of file diff --git a/unpacked/Custom_Token Horror beb964.yaml b/unpacked/Custom_Token Horror beb964.yaml new file mode 100644 index 000000000..f4761eee8 --- /dev/null +++ b/unpacked/Custom_Token Horror beb964.yaml @@ -0,0 +1,43 @@ +Autoraise: false +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +CustomImage: + CustomToken: + MergeDistancePixels: 5.0 + Stackable: false + Thickness: 0.1 + ImageScalar: 1.0 + ImageSecondaryURL: '' + ImageURL: http://cloud-3.steamusercontent.com/ugc/949599153663403796/E6FC1B82A5BC3893CFDCDF3CD580D05E9218AE52/ + WidthScale: 0.0 +Description: 'Left click - Increase + + Right click - Decrease' +GMNotes: '' +GUID: beb964 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: true +LuaScript: !include 'Custom_Token Horror beb964.ttslua' +LuaScriptState: '[true,0]' +Name: Custom_Token +Nickname: Horror +Snap: true +Sticky: true +Tooltip: false +Transform: + posX: -21.60743 + posY: 1.569823 + posZ: -29.4809265 + rotX: 0.00312802941 + rotY: 189.729279 + rotZ: 0.0815678239 + scaleX: 0.2590727 + scaleY: 1.0 + scaleZ: 0.2590727 +XmlUI: '' diff --git a/unpacked/Custom_Token Playarea 721ba2.ttslua b/unpacked/Custom_Token Playarea 721ba2.ttslua new file mode 100644 index 000000000..4e0fd7b12 --- /dev/null +++ b/unpacked/Custom_Token Playarea 721ba2.ttslua @@ -0,0 +1,190 @@ +-- 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 + +-- TODO get the log function from global instead +-- log = Global.call('getLogFunction', this) +function getLogFunction(object) + return function (message) + if DEBUG then + print(message) + end + end +end + +log = getLogFunction(self) + +function onload(save_state) + self.interactable = DEBUG + local dataHelper = getObjectFromGUID('708279') + LOCATIONS = dataHelper.getTable('LOCATIONS_DATA') + + TOKEN_PLAYER_ONE = Global.getTable('tokenplayerone') + COUNTER = getObjectFromGUID('f182ee') + log('attempting to load state: ' .. save_state) + if save_state ~= '' then + SPAWNED_LOCATION_GUIDS = JSON.decode(save_state) + end + COLLISION_ENABLED = true +end + +function onSave() + local spawned_locations = JSON.encode(SPAWNED_LOCATION_GUIDS) + self.script_state = spawned_locations +end + +--[[ +records locations we have spawned clues for, we write this to the save +file onsave() so we don't spawn clues again after a load +]] +SPAWNED_LOCATION_GUIDS = {} + +function isAlreadySpawned(object) + return SPAWNED_LOCATION_GUIDS[object.getGUID()] ~= nil +end + +function markSpawned(object) + SPAWNED_LOCATION_GUIDS[object.getGUID()] = 1 +end + +function buildKey(object) + return object.getName() .. '_' .. object.getGUID() +end + +-- try the compound key then the name alone as default +function getLocation(object) + return LOCATIONS[buildKey(object)] or LOCATIONS[object.getName()] +end + +function isLocationWithClues(object) + return getLocation(object) ~= nil +end + +--[[ +Return the number of clues to spawn on this location +]] +function getClueCount(object, isFaceDown, playerCount) + if not isLocationWithClues(object) then + error('attempted to get clue for unexpected object: ' .. object.getName()) + end + local details = getLocation(object) + log(object.getName() .. ' : ' .. details['type'] .. ' : ' .. details['value'] .. ' : ' .. details['clueSide']) + if ((isFaceDown and details['clueSide'] == 'back') + or (not isFaceDown and details['clueSide'] == 'front')) then + if details['type'] == 'fixed' then + return details['value'] + elseif details['type'] == 'perPlayer' then + return details['value'] * playerCount + end + error('unexpected location type: ' .. details['type']) + end + return 0 +end + +function spawnToken(position, number) + local obj_parameters = {} + obj_parameters.type = 'Custom_Token' + obj_parameters.position = position + obj_parameters.rotation = {3.87674022, -90, 0.239081308} + local token = spawnObject(obj_parameters) + local custom = {} + custom.thickness = 0.1 + custom.merge_distance = 5.0 + custom.stackable = true + if number == '1' then + custom.image = TOKEN_PLAYER_ONE.damageone + token.setCustomObject(custom) + token.scale {0.17, 1, 0.17} + return token + end + + if number == '2' then + custom.image = TOKEN_PLAYER_ONE.damagethree + token.setCustomObject(custom) + token.scale {0.18, 1, 0.18} + return token + end + + if number == '3' then + custom.image = TOKEN_PLAYER_ONE.clue + token.setCustomObject(custom) + token.scale {0.15, 1, 0.15} + token.use_snap_points=false + return token + end + + if number == '4' then + custom.image = TOKEN_PLAYER_ONE.doom + token.setCustomObject(custom) + token.scale {0.17, 1, 0.17} + token.use_snap_points=false + return token + end +end + +function spawnCluesAtLocation(clueCount, collision_info) + local object = collision_info.collision_object + if isAlreadySpawned(object) then + error('tried to spawn clue for already spawned location:' .. object.getName()) + end + + local obj_parameters = {} + obj_parameters.type = 'Custom_Token' + obj_parameters.position = { + object.getPosition()[1], + object.getPosition()[2] + 1, + object.getPosition()[3] + } + + log('spawning clues for ' .. object.getName() .. '_' .. object.getGUID()) + local playerCount = COUNTER.getVar('val') + log('player count is ' .. playerCount .. ', clue count is ' .. clueCount) + -- mark this location as spawned, can't happen again + markSpawned(object) + i = 0 + while i < clueCount do + if i < 4 then + obj_parameters.position = { + collision_info.collision_object.getPosition()[1] + 0.3, + collision_info.collision_object.getPosition()[2] + 0.2, + collision_info.collision_object.getPosition()[3] - 0.8 + (0.55 * i) + } + elseif i < 8 then + obj_parameters.position = { + collision_info.collision_object.getPosition()[1] + 0.85, + collision_info.collision_object.getPosition()[2] + 0.2, + collision_info.collision_object.getPosition()[3] - 3 + (0.55 * i) + } + else + obj_parameters.position = { + collision_info.collision_object.getPosition()[1] + 0.575, + collision_info.collision_object.getPosition()[2] + 0.4, + collision_info.collision_object.getPosition()[3] - 5.2 + (0.55 * i)} + end + spawnToken(obj_parameters.position, '3') + i = i + 1 + end +end + +function onCollisionEnter(collision_info) + -- short circuit all collision stuff until we've loaded state + if not COLLISION_ENABLED then + return + end + + -- check if we should spawn clues here + local object = collision_info.collision_object + if isLocationWithClues(object) and not isAlreadySpawned(object) then + -- this isn't an either/or as down/up here means at a relatively low angle + -- local isFaceUp = not object.is_face_down + -- local isFaceDown = (object.getRotation()[3] > 160 and object.getRotation()[3] < 200) + local playerCount = COUNTER.getVar('val') + local clueCount = getClueCount(object, object.is_face_down, playerCount) + if clueCount > 0 then + spawnCluesAtLocation(clueCount, collision_info) + end + end +end \ No newline at end of file diff --git a/unpacked/Custom_Token Playarea 721ba2.yaml b/unpacked/Custom_Token Playarea 721ba2.yaml new file mode 100644 index 000000000..ab6481b89 --- /dev/null +++ b/unpacked/Custom_Token Playarea 721ba2.yaml @@ -0,0 +1,41 @@ +Autoraise: true +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +CustomImage: + CustomToken: + MergeDistancePixels: 15.0 + Stackable: false + Thickness: 0.1 + ImageScalar: 1.0 + ImageSecondaryURL: '' + ImageURL: http://cloud-3.steamusercontent.com/ugc/998015670465071049/FFAE162920D67CF38045EFBD3B85AD0F916147B2/ + WidthScale: 0.0 +Description: '' +GMNotes: '' +GUID: 721ba2 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: true +LuaScript: !include 'Custom_Token Playarea 721ba2.ttslua' +LuaScriptState: '{"46bf2e":1,"4787ca":1,"6442b7":1,"64b0a5":1,"6d3a3b":1,"728f30":1,"7380f1":1,"74b3c0":1,"89a573":1,"9471f2":1,"9f1a49":1,"bdf29a":1,"d8bfce":1,"f2f951":1,"f71821":1}' +Name: Custom_Token +Nickname: Playarea +Snap: true +Sticky: true +Tooltip: false +Transform: + posX: -27.9360771 + posY: 1.57044506 + posZ: -0.03443002 + rotX: 359.9201 + rotY: 270.027771 + rotZ: 0.0168325957 + scaleX: 10.0 + scaleY: 1.0 + scaleZ: 10.0 +XmlUI: '' diff --git a/unpacked/Custom_Token Playmat Swapper b7b45b.ttslua b/unpacked/Custom_Token Playmat Swapper b7b45b.ttslua new file mode 100644 index 000000000..cba82b051 --- /dev/null +++ b/unpacked/Custom_Token Playmat Swapper b7b45b.ttslua @@ -0,0 +1,199 @@ + + +function onSave() + saved_data = JSON.encode({tid=tableImageData, cd=checkData}) + --saved_data = "" + return saved_data +end + +function onload(saved_data) + --Loads the tracking for if the game has started yet + if saved_data ~= "" then + local loaded_data = JSON.decode(saved_data) + tableImageData = loaded_data.tid + checkData = loaded_data.cd + else + tableImageData = {} + checkData = {move=false, scale=false} + end + + --Disables interactable status of objects with GUID in list + for _, guid in ipairs(ref_noninteractable) do + local obj = getObjectFromGUID(guid) + if obj then obj.interactable = false end + end + + + + obj_surface = getObjectFromGUID("721ba2") + + + controlActive = false + createOpenCloseButton() +end + + + +--Activation/deactivation of control panel + + + +--Activated by clicking on +function click_toggleControl(_, color) + if permissionCheck(color) then + if not controlActive then + --Activate control panel + controlActive = true + self.clearButtons() + createOpenCloseButton() + createSurfaceInput() + createSurfaceButtons() + + else + --Deactivate control panel + controlActive = false + self.clearButtons() + self.clearInputs() + createOpenCloseButton() + + end + end +end + + + + +--Table surface control + + + +--Changes table surface +function click_applySurface(_, color) + if permissionCheck(color) then + updateSurface() + broadcastToAll("New Playmat Image Applied", {0.2,0.9,0.2}) + end +end + +--Updates surface from the values in the input field +function updateSurface() + local customInfo = obj_surface.getCustomObject() + customInfo.image = self.getInputs()[1].value + obj_surface.setCustomObject(customInfo) + obj_surface = obj_surface.reload() +end + + + +--Information gathering + + + +--Checks if a color is promoted or host +function permissionCheck(color) + if Player[color].host==true or Player[color].promoted==true then + return true + else + return false + end +end + +--Locates a string saved within memory file +function findInImageDataIndex(...) + for _, str in ipairs({...}) do + for i, v in ipairs(tableImageData) do + if v.url == str or v.name == str then + return i + end + end + end + return nil +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 + +--Locates a button with a helper function +function findButton(obj, func) + if func==nil then error("No func supplied to findButton") end + for _, v in ipairs(obj.getButtons()) do + if func(v) then + return v + end + end + return nil +end + + + +--Creation of buttons/inputs + + + +function createOpenCloseButton() + local tooltip = "Open Playmat Panel" + if controlActive then + tooltip = "Close Playmat Panel" + end + self.createButton({ + click_function="click_toggleControl", function_owner=self, + position={0,0,0}, rotation={-45,0,0}, height=1500, width=1500, + color={1,1,1,0}, tooltip=tooltip + }) +end + +function createSurfaceInput() + local currentURL = obj_surface.getCustomObject().diffuse + local nickname = "" + if findInImageDataIndex(currentURL) ~= nil then + nickname = tableImageData[findInImageDataIndex(currentURL)].name + end + + self.createInput({ + label="URL", input_function="none", function_owner=self, + alignment=3, position={0,0.15,3}, height=224, width=4000, + font_size=200, tooltip="Enter URL for playmat image", + value=currentURL + }) +end + +function createSurfaceButtons() + --Label + self.createButton({ + label="Playmat Image Swapper", click_function="none", + position={0,0.15,2.2}, height=0, width=0, font_size=300, font_color={1,1,1} + }) + --Functional + self.createButton({ + label="Apply Image\nTo Playmat", click_function="click_applySurface", + function_owner=self, tooltip="Apply URL as playmat image", + position={0,0.15,4}, height=440, width=1400, font_size=200, + }) + +end + + + + + + +--Data tables + + + + +ref_noninteractable = { + "afc863","c8edca","393bf7","12c65e","f938a2","9f95fd","35b95f", + "5af8f2","4ee1f2","bd69bd" +} + +ref_playerColor = { + "White", "Brown", "Red", "Orange", "Yellow", + "Green", "Teal", "Blue", "Purple", "Pink", "Black" +} + +--Dummy function, absorbs unwanted triggers +function none() end \ No newline at end of file diff --git a/unpacked/Custom_Token Playmat Swapper b7b45b.yaml b/unpacked/Custom_Token Playmat Swapper b7b45b.yaml new file mode 100644 index 000000000..9cccedbb3 --- /dev/null +++ b/unpacked/Custom_Token Playmat Swapper b7b45b.yaml @@ -0,0 +1,41 @@ +Autoraise: true +ColorDiffuse: + b: 0.374545068 + g: 0.374545068 + r: 0.374545068 +CustomImage: + CustomToken: + MergeDistancePixels: 15.0 + Stackable: false + Thickness: 0.1 + ImageScalar: 1.0 + ImageSecondaryURL: '' + ImageURL: https://i.imgur.com/gs1mtXJ.png + WidthScale: 0.0 +Description: '' +GMNotes: '' +GUID: b7b45b +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: true +LuaScript: !include 'Custom_Token Playmat Swapper b7b45b.ttslua' +LuaScriptState: '{"cd":{"move":false,"scale":false},"tid":[]}' +Name: Custom_Token +Nickname: Playmat Swapper +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -10.5866957 + posY: 1.55933428 + posZ: 16.8771782 + rotX: 359.920074 + rotY: 270.033356 + rotZ: 0.0168266129 + scaleX: 0.5 + scaleY: 1.0 + scaleZ: 0.5 +XmlUI: '' diff --git a/unpacked/Custom_Token Resources 1d8875.ttslua b/unpacked/Custom_Token Resources 1d8875.ttslua new file mode 100644 index 000000000..167a90f72 --- /dev/null +++ b/unpacked/Custom_Token Resources 1d8875.ttslua @@ -0,0 +1,132 @@ +MIN_VALUE = -99 +MAX_VALUE = 999 + +function onload(saved_data) + light_mode = true + val = 0 + + if saved_data ~= "" then + local loaded_data = JSON.decode(saved_data) + light_mode = loaded_data[1] + val = loaded_data[2] + end + + createAll() +end + +function updateSave() + local data_to_save = {light_mode, val} + saved_data = JSON.encode(data_to_save) + self.script_state = saved_data +end + +function createAll() + s_color = {0,0,0,100} + + if light_mode then + f_color = {1,1,1,100} + else + f_color = {0,0,0,100} + end + + + + self.createButton({ + label=tostring(val), + click_function="add_subtract", + function_owner=self, + position={0,0.05,0.1}, + height=600, + width=1000, + alignment = 3, + scale={x=1.5, y=1.5, z=1.5}, + font_size=600, + font_color=f_color, + color={1,1,1,0} + }) + + + + + if light_mode then + lightButtonText = "[ Set dark ]" + else + lightButtonText = "[ Set light ]" + end + +end + +function removeAll() + self.removeInput(0) + self.removeInput(1) + self.removeButton(0) + self.removeButton(1) + self.removeButton(2) +end + +function reloadAll() + removeAll() + createAll() + + updateSave() +end + +function swap_fcolor(_obj, _color, alt_click) + light_mode = not light_mode + reloadAll() +end + +function swap_align(_obj, _color, alt_click) + center_mode = not center_mode + reloadAll() +end + +function editName(_obj, _string, value) + self.setName(value) + setTooltips() +end + +function add_subtract(_obj, _color, alt_click) + mod = alt_click and -1 or 1 + new_value = math.min(math.max(val + mod, MIN_VALUE), MAX_VALUE) + if val ~= new_value then + val = new_value + updateVal() + updateSave() + end +end + +function updateVal() + + self.editButton({ + index = 0, + label = tostring(val), + + }) +end + +function reset_val() + val = 0 + updateVal() + updateSave() +end + +function setTooltips() + self.editInput({ + index = 0, + value = self.getName(), + tooltip = ttText + }) + self.editButton({ + index = 0, + value = tostring(val), + tooltip = ttText + }) +end + +function null() +end + +function keepSample(_obj, _string, value) + reloadAll() +end \ No newline at end of file diff --git a/unpacked/Custom_Token Resources 1d8875.yaml b/unpacked/Custom_Token Resources 1d8875.yaml new file mode 100644 index 000000000..9929a894f --- /dev/null +++ b/unpacked/Custom_Token Resources 1d8875.yaml @@ -0,0 +1,43 @@ +Autoraise: false +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +CustomImage: + CustomToken: + MergeDistancePixels: 5.0 + Stackable: false + Thickness: 0.1 + ImageScalar: 1.0 + ImageSecondaryURL: '' + ImageURL: http://cloud-3.steamusercontent.com/ugc/784129913444610342/7903BA89870C1656A003FD69C79BFA99BD1AAC24/ + WidthScale: 0.0 +Description: 'Left click - Increase + + Right click - Decrease' +GMNotes: '' +GUID: 1d8875 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: true +LuaScript: !include 'Custom_Token Resources 1d8875.ttslua' +LuaScriptState: '[true,0]' +Name: Custom_Token +Nickname: Resources +Snap: true +Sticky: true +Tooltip: false +Transform: + posX: -31.9613514 + posY: 1.53625381 + posZ: 30.9731655 + rotX: -0.0031868373 + rotY: 9.688736 + rotZ: 359.9184 + scaleX: 0.2590727 + scaleY: 1.0 + scaleZ: 0.2590727 +XmlUI: '' diff --git a/unpacked/Custom_Token Resources 25103c.ttslua b/unpacked/Custom_Token Resources 25103c.ttslua new file mode 100644 index 000000000..167a90f72 --- /dev/null +++ b/unpacked/Custom_Token Resources 25103c.ttslua @@ -0,0 +1,132 @@ +MIN_VALUE = -99 +MAX_VALUE = 999 + +function onload(saved_data) + light_mode = true + val = 0 + + if saved_data ~= "" then + local loaded_data = JSON.decode(saved_data) + light_mode = loaded_data[1] + val = loaded_data[2] + end + + createAll() +end + +function updateSave() + local data_to_save = {light_mode, val} + saved_data = JSON.encode(data_to_save) + self.script_state = saved_data +end + +function createAll() + s_color = {0,0,0,100} + + if light_mode then + f_color = {1,1,1,100} + else + f_color = {0,0,0,100} + end + + + + self.createButton({ + label=tostring(val), + click_function="add_subtract", + function_owner=self, + position={0,0.05,0.1}, + height=600, + width=1000, + alignment = 3, + scale={x=1.5, y=1.5, z=1.5}, + font_size=600, + font_color=f_color, + color={1,1,1,0} + }) + + + + + if light_mode then + lightButtonText = "[ Set dark ]" + else + lightButtonText = "[ Set light ]" + end + +end + +function removeAll() + self.removeInput(0) + self.removeInput(1) + self.removeButton(0) + self.removeButton(1) + self.removeButton(2) +end + +function reloadAll() + removeAll() + createAll() + + updateSave() +end + +function swap_fcolor(_obj, _color, alt_click) + light_mode = not light_mode + reloadAll() +end + +function swap_align(_obj, _color, alt_click) + center_mode = not center_mode + reloadAll() +end + +function editName(_obj, _string, value) + self.setName(value) + setTooltips() +end + +function add_subtract(_obj, _color, alt_click) + mod = alt_click and -1 or 1 + new_value = math.min(math.max(val + mod, MIN_VALUE), MAX_VALUE) + if val ~= new_value then + val = new_value + updateVal() + updateSave() + end +end + +function updateVal() + + self.editButton({ + index = 0, + label = tostring(val), + + }) +end + +function reset_val() + val = 0 + updateVal() + updateSave() +end + +function setTooltips() + self.editInput({ + index = 0, + value = self.getName(), + tooltip = ttText + }) + self.editButton({ + index = 0, + value = tostring(val), + tooltip = ttText + }) +end + +function null() +end + +function keepSample(_obj, _string, value) + reloadAll() +end \ No newline at end of file diff --git a/unpacked/Custom_Token Resources 25103c.yaml b/unpacked/Custom_Token Resources 25103c.yaml new file mode 100644 index 000000000..f88b94736 --- /dev/null +++ b/unpacked/Custom_Token Resources 25103c.yaml @@ -0,0 +1,43 @@ +Autoraise: false +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +CustomImage: + CustomToken: + MergeDistancePixels: 5.0 + Stackable: false + Thickness: 0.1 + ImageScalar: 1.0 + ImageSecondaryURL: '' + ImageURL: http://cloud-3.steamusercontent.com/ugc/784129913444610342/7903BA89870C1656A003FD69C79BFA99BD1AAC24/ + WidthScale: 0.0 +Description: 'Left click - Increase + + Right click - Decrease' +GMNotes: '' +GUID: 25103c +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: true +LuaScript: !include 'Custom_Token Resources 25103c.ttslua' +LuaScriptState: '[true,0]' +Name: Custom_Token +Nickname: Resources +Snap: true +Sticky: true +Tooltip: false +Transform: + posX: -23.9880028 + posY: 1.56147873 + posZ: -30.955883 + rotX: 0.0421814434 + rotY: 191.008057 + rotZ: 0.258285433 + scaleX: 0.2590727 + scaleY: 1.0 + scaleZ: 0.2590727 +XmlUI: '' diff --git a/unpacked/Custom_Token Resources 326ec4.ttslua b/unpacked/Custom_Token Resources 326ec4.ttslua new file mode 100644 index 000000000..167a90f72 --- /dev/null +++ b/unpacked/Custom_Token Resources 326ec4.ttslua @@ -0,0 +1,132 @@ +MIN_VALUE = -99 +MAX_VALUE = 999 + +function onload(saved_data) + light_mode = true + val = 0 + + if saved_data ~= "" then + local loaded_data = JSON.decode(saved_data) + light_mode = loaded_data[1] + val = loaded_data[2] + end + + createAll() +end + +function updateSave() + local data_to_save = {light_mode, val} + saved_data = JSON.encode(data_to_save) + self.script_state = saved_data +end + +function createAll() + s_color = {0,0,0,100} + + if light_mode then + f_color = {1,1,1,100} + else + f_color = {0,0,0,100} + end + + + + self.createButton({ + label=tostring(val), + click_function="add_subtract", + function_owner=self, + position={0,0.05,0.1}, + height=600, + width=1000, + alignment = 3, + scale={x=1.5, y=1.5, z=1.5}, + font_size=600, + font_color=f_color, + color={1,1,1,0} + }) + + + + + if light_mode then + lightButtonText = "[ Set dark ]" + else + lightButtonText = "[ Set light ]" + end + +end + +function removeAll() + self.removeInput(0) + self.removeInput(1) + self.removeButton(0) + self.removeButton(1) + self.removeButton(2) +end + +function reloadAll() + removeAll() + createAll() + + updateSave() +end + +function swap_fcolor(_obj, _color, alt_click) + light_mode = not light_mode + reloadAll() +end + +function swap_align(_obj, _color, alt_click) + center_mode = not center_mode + reloadAll() +end + +function editName(_obj, _string, value) + self.setName(value) + setTooltips() +end + +function add_subtract(_obj, _color, alt_click) + mod = alt_click and -1 or 1 + new_value = math.min(math.max(val + mod, MIN_VALUE), MAX_VALUE) + if val ~= new_value then + val = new_value + updateVal() + updateSave() + end +end + +function updateVal() + + self.editButton({ + index = 0, + label = tostring(val), + + }) +end + +function reset_val() + val = 0 + updateVal() + updateSave() +end + +function setTooltips() + self.editInput({ + index = 0, + value = self.getName(), + tooltip = ttText + }) + self.editButton({ + index = 0, + value = tostring(val), + tooltip = ttText + }) +end + +function null() +end + +function keepSample(_obj, _string, value) + reloadAll() +end \ No newline at end of file diff --git a/unpacked/Custom_Token Resources 326ec4.yaml b/unpacked/Custom_Token Resources 326ec4.yaml new file mode 100644 index 000000000..889279cc5 --- /dev/null +++ b/unpacked/Custom_Token Resources 326ec4.yaml @@ -0,0 +1,43 @@ +Autoraise: false +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +CustomImage: + CustomToken: + MergeDistancePixels: 5.0 + Stackable: false + Thickness: 0.1 + ImageScalar: 1.0 + ImageSecondaryURL: '' + ImageURL: http://cloud-3.steamusercontent.com/ugc/784129913444610342/7903BA89870C1656A003FD69C79BFA99BD1AAC24/ + WidthScale: 0.0 +Description: 'Left click - Increase + + Right click - Decrease' +GMNotes: '' +GUID: 326ec4 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: true +LuaScript: !include 'Custom_Token Resources 326ec4.ttslua' +LuaScriptState: '[true,0]' +Name: Custom_Token +Nickname: Resources +Snap: true +Sticky: true +Tooltip: false +Transform: + posX: -59.3811951 + posY: 1.61195064 + posZ: -17.6434288 + rotX: 359.918365 + rotY: 280.047028 + rotZ: 0.00267207739 + scaleX: 0.2590727 + scaleY: 1.0 + scaleZ: 0.2590727 +XmlUI: '' diff --git a/unpacked/Custom_Token Resources 4406f0.ttslua b/unpacked/Custom_Token Resources 4406f0.ttslua new file mode 100644 index 000000000..167a90f72 --- /dev/null +++ b/unpacked/Custom_Token Resources 4406f0.ttslua @@ -0,0 +1,132 @@ +MIN_VALUE = -99 +MAX_VALUE = 999 + +function onload(saved_data) + light_mode = true + val = 0 + + if saved_data ~= "" then + local loaded_data = JSON.decode(saved_data) + light_mode = loaded_data[1] + val = loaded_data[2] + end + + createAll() +end + +function updateSave() + local data_to_save = {light_mode, val} + saved_data = JSON.encode(data_to_save) + self.script_state = saved_data +end + +function createAll() + s_color = {0,0,0,100} + + if light_mode then + f_color = {1,1,1,100} + else + f_color = {0,0,0,100} + end + + + + self.createButton({ + label=tostring(val), + click_function="add_subtract", + function_owner=self, + position={0,0.05,0.1}, + height=600, + width=1000, + alignment = 3, + scale={x=1.5, y=1.5, z=1.5}, + font_size=600, + font_color=f_color, + color={1,1,1,0} + }) + + + + + if light_mode then + lightButtonText = "[ Set dark ]" + else + lightButtonText = "[ Set light ]" + end + +end + +function removeAll() + self.removeInput(0) + self.removeInput(1) + self.removeButton(0) + self.removeButton(1) + self.removeButton(2) +end + +function reloadAll() + removeAll() + createAll() + + updateSave() +end + +function swap_fcolor(_obj, _color, alt_click) + light_mode = not light_mode + reloadAll() +end + +function swap_align(_obj, _color, alt_click) + center_mode = not center_mode + reloadAll() +end + +function editName(_obj, _string, value) + self.setName(value) + setTooltips() +end + +function add_subtract(_obj, _color, alt_click) + mod = alt_click and -1 or 1 + new_value = math.min(math.max(val + mod, MIN_VALUE), MAX_VALUE) + if val ~= new_value then + val = new_value + updateVal() + updateSave() + end +end + +function updateVal() + + self.editButton({ + index = 0, + label = tostring(val), + + }) +end + +function reset_val() + val = 0 + updateVal() + updateSave() +end + +function setTooltips() + self.editInput({ + index = 0, + value = self.getName(), + tooltip = ttText + }) + self.editButton({ + index = 0, + value = tostring(val), + tooltip = ttText + }) +end + +function null() +end + +function keepSample(_obj, _string, value) + reloadAll() +end \ No newline at end of file diff --git a/unpacked/Custom_Token Resources 4406f0.yaml b/unpacked/Custom_Token Resources 4406f0.yaml new file mode 100644 index 000000000..2e5f44232 --- /dev/null +++ b/unpacked/Custom_Token Resources 4406f0.yaml @@ -0,0 +1,43 @@ +Autoraise: false +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +CustomImage: + CustomToken: + MergeDistancePixels: 5.0 + Stackable: false + Thickness: 0.1 + ImageScalar: 1.0 + ImageSecondaryURL: '' + ImageURL: http://cloud-3.steamusercontent.com/ugc/949599153663401115/EAA6D40FC6E15204BBE551BCDED35CC8C75111BF/ + WidthScale: 0.0 +Description: 'Left click - Increase + + Right click - Decrease' +GMNotes: '' +GUID: 4406f0 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: true +LuaScript: !include 'Custom_Token Resources 4406f0.ttslua' +LuaScriptState: '[true,0]' +Name: Custom_Token +Nickname: Resources +Snap: true +Sticky: true +Tooltip: false +Transform: + posX: -59.7736855 + posY: 1.60872948 + posZ: 7.53544474 + rotX: 359.918365 + rotY: 280.047028 + rotZ: 0.00267207739 + scaleX: 0.2590727 + scaleY: 1.0 + scaleZ: 0.2590727 +XmlUI: '' diff --git a/unpacked/Custom_Token Resources 816d84.ttslua b/unpacked/Custom_Token Resources 816d84.ttslua new file mode 100644 index 000000000..167a90f72 --- /dev/null +++ b/unpacked/Custom_Token Resources 816d84.ttslua @@ -0,0 +1,132 @@ +MIN_VALUE = -99 +MAX_VALUE = 999 + +function onload(saved_data) + light_mode = true + val = 0 + + if saved_data ~= "" then + local loaded_data = JSON.decode(saved_data) + light_mode = loaded_data[1] + val = loaded_data[2] + end + + createAll() +end + +function updateSave() + local data_to_save = {light_mode, val} + saved_data = JSON.encode(data_to_save) + self.script_state = saved_data +end + +function createAll() + s_color = {0,0,0,100} + + if light_mode then + f_color = {1,1,1,100} + else + f_color = {0,0,0,100} + end + + + + self.createButton({ + label=tostring(val), + click_function="add_subtract", + function_owner=self, + position={0,0.05,0.1}, + height=600, + width=1000, + alignment = 3, + scale={x=1.5, y=1.5, z=1.5}, + font_size=600, + font_color=f_color, + color={1,1,1,0} + }) + + + + + if light_mode then + lightButtonText = "[ Set dark ]" + else + lightButtonText = "[ Set light ]" + end + +end + +function removeAll() + self.removeInput(0) + self.removeInput(1) + self.removeButton(0) + self.removeButton(1) + self.removeButton(2) +end + +function reloadAll() + removeAll() + createAll() + + updateSave() +end + +function swap_fcolor(_obj, _color, alt_click) + light_mode = not light_mode + reloadAll() +end + +function swap_align(_obj, _color, alt_click) + center_mode = not center_mode + reloadAll() +end + +function editName(_obj, _string, value) + self.setName(value) + setTooltips() +end + +function add_subtract(_obj, _color, alt_click) + mod = alt_click and -1 or 1 + new_value = math.min(math.max(val + mod, MIN_VALUE), MAX_VALUE) + if val ~= new_value then + val = new_value + updateVal() + updateSave() + end +end + +function updateVal() + + self.editButton({ + index = 0, + label = tostring(val), + + }) +end + +function reset_val() + val = 0 + updateVal() + updateSave() +end + +function setTooltips() + self.editInput({ + index = 0, + value = self.getName(), + tooltip = ttText + }) + self.editButton({ + index = 0, + value = tostring(val), + tooltip = ttText + }) +end + +function null() +end + +function keepSample(_obj, _string, value) + reloadAll() +end \ No newline at end of file diff --git a/unpacked/Custom_Token Resources 816d84.yaml b/unpacked/Custom_Token Resources 816d84.yaml new file mode 100644 index 000000000..2279a5100 --- /dev/null +++ b/unpacked/Custom_Token Resources 816d84.yaml @@ -0,0 +1,43 @@ +Autoraise: false +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +CustomImage: + CustomToken: + MergeDistancePixels: 5.0 + Stackable: false + Thickness: 0.1 + ImageScalar: 1.0 + ImageSecondaryURL: '' + ImageURL: http://cloud-3.steamusercontent.com/ugc/949599153663401115/EAA6D40FC6E15204BBE551BCDED35CC8C75111BF/ + WidthScale: 0.0 +Description: 'Left click - Increase + + Right click - Decrease' +GMNotes: '' +GUID: 816d84 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: true +LuaScript: !include 'Custom_Token Resources 816d84.ttslua' +LuaScriptState: '[true,0]' +Name: Custom_Token +Nickname: Resources +Snap: true +Sticky: true +Tooltip: false +Transform: + posX: -59.7711334 + posY: 1.61730909 + posZ: -19.5531578 + rotX: 359.918365 + rotY: 280.047028 + rotZ: 0.00267207739 + scaleX: 0.2590727 + scaleY: 1.0 + scaleZ: 0.2590727 +XmlUI: '' diff --git a/unpacked/Custom_Token Resources a4b60d.ttslua b/unpacked/Custom_Token Resources a4b60d.ttslua new file mode 100644 index 000000000..167a90f72 --- /dev/null +++ b/unpacked/Custom_Token Resources a4b60d.ttslua @@ -0,0 +1,132 @@ +MIN_VALUE = -99 +MAX_VALUE = 999 + +function onload(saved_data) + light_mode = true + val = 0 + + if saved_data ~= "" then + local loaded_data = JSON.decode(saved_data) + light_mode = loaded_data[1] + val = loaded_data[2] + end + + createAll() +end + +function updateSave() + local data_to_save = {light_mode, val} + saved_data = JSON.encode(data_to_save) + self.script_state = saved_data +end + +function createAll() + s_color = {0,0,0,100} + + if light_mode then + f_color = {1,1,1,100} + else + f_color = {0,0,0,100} + end + + + + self.createButton({ + label=tostring(val), + click_function="add_subtract", + function_owner=self, + position={0,0.05,0.1}, + height=600, + width=1000, + alignment = 3, + scale={x=1.5, y=1.5, z=1.5}, + font_size=600, + font_color=f_color, + color={1,1,1,0} + }) + + + + + if light_mode then + lightButtonText = "[ Set dark ]" + else + lightButtonText = "[ Set light ]" + end + +end + +function removeAll() + self.removeInput(0) + self.removeInput(1) + self.removeButton(0) + self.removeButton(1) + self.removeButton(2) +end + +function reloadAll() + removeAll() + createAll() + + updateSave() +end + +function swap_fcolor(_obj, _color, alt_click) + light_mode = not light_mode + reloadAll() +end + +function swap_align(_obj, _color, alt_click) + center_mode = not center_mode + reloadAll() +end + +function editName(_obj, _string, value) + self.setName(value) + setTooltips() +end + +function add_subtract(_obj, _color, alt_click) + mod = alt_click and -1 or 1 + new_value = math.min(math.max(val + mod, MIN_VALUE), MAX_VALUE) + if val ~= new_value then + val = new_value + updateVal() + updateSave() + end +end + +function updateVal() + + self.editButton({ + index = 0, + label = tostring(val), + + }) +end + +function reset_val() + val = 0 + updateVal() + updateSave() +end + +function setTooltips() + self.editInput({ + index = 0, + value = self.getName(), + tooltip = ttText + }) + self.editButton({ + index = 0, + value = tostring(val), + tooltip = ttText + }) +end + +function null() +end + +function keepSample(_obj, _string, value) + reloadAll() +end \ No newline at end of file diff --git a/unpacked/Custom_Token Resources a4b60d.yaml b/unpacked/Custom_Token Resources a4b60d.yaml new file mode 100644 index 000000000..0f8cd2074 --- /dev/null +++ b/unpacked/Custom_Token Resources a4b60d.yaml @@ -0,0 +1,43 @@ +Autoraise: false +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +CustomImage: + CustomToken: + MergeDistancePixels: 5.0 + Stackable: false + Thickness: 0.1 + ImageScalar: 1.0 + ImageSecondaryURL: '' + ImageURL: http://cloud-3.steamusercontent.com/ugc/949599153663401115/EAA6D40FC6E15204BBE551BCDED35CC8C75111BF/ + WidthScale: 0.0 +Description: 'Left click - Increase + + Right click - Decrease' +GMNotes: '' +GUID: a4b60d +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: true +LuaScript: !include 'Custom_Token Resources a4b60d.ttslua' +LuaScriptState: '[true,0]' +Name: Custom_Token +Nickname: Resources +Snap: true +Sticky: true +Tooltip: false +Transform: + posX: -21.9906578 + posY: 1.553584 + posZ: -31.4355965 + rotX: 0.00195219344 + rotY: 190.561584 + rotZ: 0.081622526 + scaleX: 0.2590727 + scaleY: 1.0 + scaleZ: 0.2590727 +XmlUI: '' diff --git a/unpacked/Custom_Token Resources aa9093.ttslua b/unpacked/Custom_Token Resources aa9093.ttslua new file mode 100644 index 000000000..167a90f72 --- /dev/null +++ b/unpacked/Custom_Token Resources aa9093.ttslua @@ -0,0 +1,132 @@ +MIN_VALUE = -99 +MAX_VALUE = 999 + +function onload(saved_data) + light_mode = true + val = 0 + + if saved_data ~= "" then + local loaded_data = JSON.decode(saved_data) + light_mode = loaded_data[1] + val = loaded_data[2] + end + + createAll() +end + +function updateSave() + local data_to_save = {light_mode, val} + saved_data = JSON.encode(data_to_save) + self.script_state = saved_data +end + +function createAll() + s_color = {0,0,0,100} + + if light_mode then + f_color = {1,1,1,100} + else + f_color = {0,0,0,100} + end + + + + self.createButton({ + label=tostring(val), + click_function="add_subtract", + function_owner=self, + position={0,0.05,0.1}, + height=600, + width=1000, + alignment = 3, + scale={x=1.5, y=1.5, z=1.5}, + font_size=600, + font_color=f_color, + color={1,1,1,0} + }) + + + + + if light_mode then + lightButtonText = "[ Set dark ]" + else + lightButtonText = "[ Set light ]" + end + +end + +function removeAll() + self.removeInput(0) + self.removeInput(1) + self.removeButton(0) + self.removeButton(1) + self.removeButton(2) +end + +function reloadAll() + removeAll() + createAll() + + updateSave() +end + +function swap_fcolor(_obj, _color, alt_click) + light_mode = not light_mode + reloadAll() +end + +function swap_align(_obj, _color, alt_click) + center_mode = not center_mode + reloadAll() +end + +function editName(_obj, _string, value) + self.setName(value) + setTooltips() +end + +function add_subtract(_obj, _color, alt_click) + mod = alt_click and -1 or 1 + new_value = math.min(math.max(val + mod, MIN_VALUE), MAX_VALUE) + if val ~= new_value then + val = new_value + updateVal() + updateSave() + end +end + +function updateVal() + + self.editButton({ + index = 0, + label = tostring(val), + + }) +end + +function reset_val() + val = 0 + updateVal() + updateSave() +end + +function setTooltips() + self.editInput({ + index = 0, + value = self.getName(), + tooltip = ttText + }) + self.editButton({ + index = 0, + value = tostring(val), + tooltip = ttText + }) +end + +function null() +end + +function keepSample(_obj, _string, value) + reloadAll() +end \ No newline at end of file diff --git a/unpacked/Custom_Token Resources aa9093.yaml b/unpacked/Custom_Token Resources aa9093.yaml new file mode 100644 index 000000000..9285d3a62 --- /dev/null +++ b/unpacked/Custom_Token Resources aa9093.yaml @@ -0,0 +1,43 @@ +Autoraise: false +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +CustomImage: + CustomToken: + MergeDistancePixels: 5.0 + Stackable: false + Thickness: 0.1 + ImageScalar: 1.0 + ImageSecondaryURL: '' + ImageURL: http://cloud-3.steamusercontent.com/ugc/784129913444610342/7903BA89870C1656A003FD69C79BFA99BD1AAC24/ + WidthScale: 0.0 +Description: 'Left click - Increase + + Right click - Decrease' +GMNotes: '' +GUID: aa9093 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: true +LuaScript: !include 'Custom_Token Resources aa9093.ttslua' +LuaScriptState: '[true,0]' +Name: Custom_Token +Nickname: Resources +Snap: true +Sticky: true +Tooltip: false +Transform: + posX: -59.42443 + posY: 1.60549247 + posZ: 9.432098 + rotX: 359.918365 + rotY: 280.047028 + rotZ: 0.00267207739 + scaleX: 0.2590727 + scaleY: 1.0 + scaleZ: 0.2590727 +XmlUI: '' diff --git a/unpacked/Custom_Token Resources cd15ac.ttslua b/unpacked/Custom_Token Resources cd15ac.ttslua new file mode 100644 index 000000000..167a90f72 --- /dev/null +++ b/unpacked/Custom_Token Resources cd15ac.ttslua @@ -0,0 +1,132 @@ +MIN_VALUE = -99 +MAX_VALUE = 999 + +function onload(saved_data) + light_mode = true + val = 0 + + if saved_data ~= "" then + local loaded_data = JSON.decode(saved_data) + light_mode = loaded_data[1] + val = loaded_data[2] + end + + createAll() +end + +function updateSave() + local data_to_save = {light_mode, val} + saved_data = JSON.encode(data_to_save) + self.script_state = saved_data +end + +function createAll() + s_color = {0,0,0,100} + + if light_mode then + f_color = {1,1,1,100} + else + f_color = {0,0,0,100} + end + + + + self.createButton({ + label=tostring(val), + click_function="add_subtract", + function_owner=self, + position={0,0.05,0.1}, + height=600, + width=1000, + alignment = 3, + scale={x=1.5, y=1.5, z=1.5}, + font_size=600, + font_color=f_color, + color={1,1,1,0} + }) + + + + + if light_mode then + lightButtonText = "[ Set dark ]" + else + lightButtonText = "[ Set light ]" + end + +end + +function removeAll() + self.removeInput(0) + self.removeInput(1) + self.removeButton(0) + self.removeButton(1) + self.removeButton(2) +end + +function reloadAll() + removeAll() + createAll() + + updateSave() +end + +function swap_fcolor(_obj, _color, alt_click) + light_mode = not light_mode + reloadAll() +end + +function swap_align(_obj, _color, alt_click) + center_mode = not center_mode + reloadAll() +end + +function editName(_obj, _string, value) + self.setName(value) + setTooltips() +end + +function add_subtract(_obj, _color, alt_click) + mod = alt_click and -1 or 1 + new_value = math.min(math.max(val + mod, MIN_VALUE), MAX_VALUE) + if val ~= new_value then + val = new_value + updateVal() + updateSave() + end +end + +function updateVal() + + self.editButton({ + index = 0, + label = tostring(val), + + }) +end + +function reset_val() + val = 0 + updateVal() + updateSave() +end + +function setTooltips() + self.editInput({ + index = 0, + value = self.getName(), + tooltip = ttText + }) + self.editButton({ + index = 0, + value = tostring(val), + tooltip = ttText + }) +end + +function null() +end + +function keepSample(_obj, _string, value) + reloadAll() +end \ No newline at end of file diff --git a/unpacked/Custom_Token Resources cd15ac.yaml b/unpacked/Custom_Token Resources cd15ac.yaml new file mode 100644 index 000000000..5cca8e34f --- /dev/null +++ b/unpacked/Custom_Token Resources cd15ac.yaml @@ -0,0 +1,43 @@ +Autoraise: false +ColorDiffuse: + b: 1.0 + g: 1.0 + r: 1.0 +CustomImage: + CustomToken: + MergeDistancePixels: 5.0 + Stackable: false + Thickness: 0.1 + ImageScalar: 1.0 + ImageSecondaryURL: '' + ImageURL: http://cloud-3.steamusercontent.com/ugc/949599153663401115/EAA6D40FC6E15204BBE551BCDED35CC8C75111BF/ + WidthScale: 0.0 +Description: 'Left click - Increase + + Right click - Decrease' +GMNotes: '' +GUID: cd15ac +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: true +LuaScript: !include 'Custom_Token Resources cd15ac.ttslua' +LuaScriptState: '[true,0]' +Name: Custom_Token +Nickname: Resources +Snap: true +Sticky: true +Tooltip: false +Transform: + posX: -33.8892136 + posY: 1.53140509 + posZ: 31.33501 + rotX: 359.98175 + rotY: 9.663422 + rotZ: 0.1043 + scaleX: 0.2590727 + scaleY: 1.0 + scaleZ: 0.2590727 +XmlUI: '' diff --git a/unpacked/Custom_Token set active investigators f182ee.ttslua b/unpacked/Custom_Token set active investigators f182ee.ttslua new file mode 100644 index 000000000..072f29b85 --- /dev/null +++ b/unpacked/Custom_Token set active investigators f182ee.ttslua @@ -0,0 +1,134 @@ +DEBUG = false +MIN_VALUE = 1 +MAX_VALUE = 4 + +function onload(saved_data) + self.interactable = DEBUG + light_mode = false + val = 0 + + if saved_data ~= "" then + local loaded_data = JSON.decode(saved_data) + light_mode = loaded_data[1] + val = loaded_data[2] + end + + createAll() +end + +function updateSave() + local data_to_save = {light_mode, val} + saved_data = JSON.encode(data_to_save) + self.script_state = saved_data +end + +function createAll() + s_color = {0.5, 0.5, 0.5, 95} + + if light_mode then + f_color = {1,1,1,95} + else + f_color = {0,0,0,100} + end + + + + self.createButton({ + label=tostring(val), + click_function="add_subtract", + function_owner=self, + position={0,0.05,0}, + height=600, + width=1000, + alignment = 3, + scale={x=1.5, y=1.5, z=1.5}, + font_size=600, + font_color=f_color, + color={0,0,0,0} + }) + + + + + if light_mode then + lightButtonText = "[ Set dark ]" + else + lightButtonText = "[ Set light ]" + end + +end + +function removeAll() + self.removeInput(0) + self.removeInput(1) + self.removeButton(0) + self.removeButton(1) + self.removeButton(2) +end + +function reloadAll() + removeAll() + createAll() + + updateSave() +end + +function swap_fcolor(_obj, _color, alt_click) + light_mode = not light_mode + reloadAll() +end + +function swap_align(_obj, _color, alt_click) + center_mode = not center_mode + reloadAll() +end + +function editName(_obj, _string, value) + self.setName(value) + setTooltips() +end + +function add_subtract(_obj, _color, alt_click) + mod = alt_click and -1 or 1 + new_value = math.min(math.max(val + mod, MIN_VALUE), MAX_VALUE) + if val ~= new_value then + val = new_value + updateVal() + updateSave() + end +end + +function updateVal() + + self.editButton({ + index = 0, + label = tostring(val), + + }) +end + +function reset_val() + val = 0 + updateVal() + updateSave() +end + +function setTooltips() + self.editInput({ + index = 0, + value = self.getName(), + tooltip = ttText + }) + self.editButton({ + index = 0, + value = tostring(val), + tooltip = ttText + }) +end + +function null() +end + +function keepSample(_obj, _string, value) + reloadAll() +end \ No newline at end of file diff --git a/unpacked/Custom_Token set active investigators f182ee.yaml b/unpacked/Custom_Token set active investigators f182ee.yaml new file mode 100644 index 000000000..b462c85ec --- /dev/null +++ b/unpacked/Custom_Token set active investigators f182ee.yaml @@ -0,0 +1,45 @@ +Autoraise: true +ColorDiffuse: + b: 0.7648083 + g: 0.7648083 + r: 0.7648083 +CustomImage: + CustomToken: + MergeDistancePixels: 5.0 + Stackable: false + Thickness: 0.1 + ImageScalar: 1.0 + ImageSecondaryURL: '' + ImageURL: https://i.imgur.com/Nj9m2tH.png + WidthScale: 0.0 +Description: 'Left click - Increase + + Right click - Decrease' +GMNotes: '' +GUID: f182ee +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: true +LuaScript: !include 'Custom_Token set active investigators f182ee.ttslua' +LuaScriptState: '[true,2]' +Name: Custom_Token +Nickname: 'set active investigators + + ' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -12.095149 + posY: 1.55255568 + posZ: -3.99180365 + rotX: 359.9201 + rotY: 270.000732 + rotZ: 0.0168759245 + scaleX: 0.3 + scaleY: 1.0 + scaleZ: 0.3 +XmlUI: '' diff --git a/unpacked/FogOfWarTrigger 3aab97.yaml b/unpacked/FogOfWarTrigger 3aab97.yaml new file mode 100644 index 000000000..dae18511f --- /dev/null +++ b/unpacked/FogOfWarTrigger 3aab97.yaml @@ -0,0 +1,37 @@ +Autoraise: true +ColorDiffuse: + a: 0.75 + b: 0.167999953 + g: 0.701 + r: 0.191999972 +Description: '' +FogColor: Green +FogHidePointers: false +FogReverseHiding: false +FogSeethrough: true +GMNotes: '' +GUID: 3aab97 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: true +LuaScript: '' +LuaScriptState: '' +Name: FogOfWarTrigger +Nickname: '' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -21.6479263 + posY: 0.87 + posZ: 22.4376678 + rotX: 0.0 + rotY: 180.166916 + rotZ: 0.0 + scaleX: 2.8 + scaleY: 0.55 + scaleZ: 3.8 +XmlUI: '' diff --git a/unpacked/ScriptingTrigger 57c22c.yaml b/unpacked/ScriptingTrigger 57c22c.yaml new file mode 100644 index 000000000..9e3fbe167 --- /dev/null +++ b/unpacked/ScriptingTrigger 57c22c.yaml @@ -0,0 +1,33 @@ +Autoraise: true +ColorDiffuse: + a: 0.509803951 + b: 1.0 + g: 1.0 + r: 1.0 +Description: '' +GMNotes: '' +GUID: 57c22c +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: true +LuaScript: '' +LuaScriptState: '' +Name: ScriptingTrigger +Nickname: '' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -27.9768925 + posY: 4.075676 + posZ: -37.88929 + rotX: 0.0 + rotY: 359.8695 + rotZ: 0.0 + scaleX: 21.38489 + scaleY: 5.1 + scaleZ: 2.21253538 +XmlUI: '' diff --git a/unpacked/ScriptingTrigger 67ce9a.yaml b/unpacked/ScriptingTrigger 67ce9a.yaml new file mode 100644 index 000000000..f1a8c6563 --- /dev/null +++ b/unpacked/ScriptingTrigger 67ce9a.yaml @@ -0,0 +1,33 @@ +Autoraise: true +ColorDiffuse: + a: 0.509803951 + b: 1.0 + g: 1.0 + r: 1.0 +Description: '' +GMNotes: '' +GUID: 67ce9a +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: true +LuaScript: '' +LuaScriptState: '' +Name: ScriptingTrigger +Nickname: '' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -28.04636 + posY: 4.065468 + posZ: 37.6693726 + rotX: 0.0 + rotY: 179.797485 + rotZ: 0.0 + scaleX: 21.32771 + scaleY: 5.1 + scaleZ: 2.00954 +XmlUI: '' diff --git a/unpacked/ScriptingTrigger 83ef06.yaml b/unpacked/ScriptingTrigger 83ef06.yaml new file mode 100644 index 000000000..7ebb15667 --- /dev/null +++ b/unpacked/ScriptingTrigger 83ef06.yaml @@ -0,0 +1,33 @@ +Autoraise: true +ColorDiffuse: + a: 0.509803951 + b: 1.0 + g: 1.0 + r: 1.0 +Description: '' +GMNotes: '' +GUID: 83ef06 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: true +LuaScript: '' +LuaScriptState: '' +Name: ScriptingTrigger +Nickname: '' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: 1.9763689 + posY: 4.121648 + posZ: -14.2564049 + rotX: 0.0 + rotY: 90.00001 + rotZ: 0.0 + scaleX: 6.936467 + scaleY: 5.1 + scaleZ: 5.53268766 +XmlUI: '' diff --git a/unpacked/ScriptingTrigger c506bf.yaml b/unpacked/ScriptingTrigger c506bf.yaml new file mode 100644 index 000000000..6ced8a078 --- /dev/null +++ b/unpacked/ScriptingTrigger c506bf.yaml @@ -0,0 +1,33 @@ +Autoraise: true +ColorDiffuse: + a: 0.509803951 + b: 1.0 + g: 1.0 + r: 1.0 +Description: '' +GMNotes: '' +GUID: c506bf +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: true +LuaScript: '' +LuaScriptState: '' +Name: ScriptingTrigger +Nickname: '' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -66.80443 + posY: 4.13450432 + posZ: 13.5646915 + rotX: 0.0 + rotY: 90.0 + rotZ: 0.0 + scaleX: 21.6898479 + scaleY: 5.1 + scaleZ: 1.11724854 +XmlUI: '' diff --git a/unpacked/ScriptingTrigger cbc751.yaml b/unpacked/ScriptingTrigger cbc751.yaml new file mode 100644 index 000000000..b7ad422fc --- /dev/null +++ b/unpacked/ScriptingTrigger cbc751.yaml @@ -0,0 +1,33 @@ +Autoraise: true +ColorDiffuse: + a: 0.509803951 + b: 1.0 + g: 1.0 + r: 1.0 +Description: '' +GMNotes: '' +GUID: cbc751 +Grid: true +GridProjection: false +Hands: false +HideWhenFaceDown: false +IgnoreFoW: false +Locked: true +LuaScript: '' +LuaScriptState: '' +Name: ScriptingTrigger +Nickname: '' +Snap: true +Sticky: true +Tooltip: true +Transform: + posX: -66.9632 + posY: 4.117094 + posZ: -13.2771788 + rotX: 0.0 + rotY: 90.0001144 + rotZ: 0.0 + scaleX: 20.8838673 + scaleY: 5.1 + scaleZ: 1.29310441 +XmlUI: ''